Preview: seo.sql
Size: 3.37 MB
//var/softaculous/seo/seo.sql
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `seopanel510`
--
-- --------------------------------------------------------
--
-- Table structure for table `alerts`
--
CREATE TABLE `alerts` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`alert_subject` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
`alert_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`alert_category` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'general',
`alert_message` text COLLATE utf8_unicode_ci NOT NULL,
`alert_type` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'success',
`visited` tinyint(1) NOT NULL DEFAULT '0',
`alert_time` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `alert_user_delete` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `analytics_properties`
--
CREATE TABLE `analytics_properties` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`account_name` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`account_id` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`property_name` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`property_id` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`datetime_created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`datetime_updated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `analytics_properties_user_id_delete` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `analytic_sources`
--
CREATE TABLE `analytic_sources` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`source_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `source_name` (`source_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `auditorpagelinks`
--
CREATE TABLE `auditorpagelinks` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`report_id` bigint(20) NOT NULL,
`link_url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`link_anchor` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`link_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`nofollow` tinyint(1) NOT NULL DEFAULT '0',
`extrenal` tinyint(1) NOT NULL DEFAULT '0',
`brocken` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `report_id` (`report_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `auditorprojects`
--
CREATE TABLE `auditorprojects` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`max_links` int(11) NOT NULL DEFAULT '500',
`exclude_links` text COLLATE utf8_unicode_ci NOT NULL,
`exclude_extensions` text COLLATE utf8_unicode_ci,
`sitemap_url` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
`check_pr` tinyint(1) NOT NULL DEFAULT '0',
`check_backlinks` tinyint(1) NOT NULL DEFAULT '0',
`check_indexed` tinyint(1) NOT NULL DEFAULT '0',
`store_links_in_page` tinyint(1) NOT NULL DEFAULT '0',
`check_brocken` tinyint(1) NOT NULL DEFAULT '0',
`score` float NOT NULL DEFAULT '0',
`cron` tinyint(1) NOT NULL DEFAULT '1',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `website_id` (`website_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `auditorreports`
--
CREATE TABLE `auditorreports` (
`id` bigint(24) NOT NULL AUTO_INCREMENT,
`project_id` int(11) NOT NULL,
`page_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`canonical_url` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`discovered_via` enum('crawl','sitemap','robots','canonical','import') COLLATE utf8_unicode_ci DEFAULT 'crawl',
`page_title` varchar(180) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`page_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`page_keywords` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`pagerank` float NOT NULL DEFAULT '0',
`google_backlinks` int(11) NOT NULL DEFAULT '0',
`bing_backlinks` int(11) NOT NULL DEFAULT '0',
`google_indexed` int(11) NOT NULL DEFAULT '0',
`bing_indexed` int(11) NOT NULL DEFAULT '0',
`total_links` int(11) NOT NULL DEFAULT '0',
`external_links` int(11) NOT NULL DEFAULT '0',
`brocken` tinyint(1) NOT NULL DEFAULT '0',
`crawled` tinyint(1) NOT NULL DEFAULT '0',
`score` smallint(6) NOT NULL DEFAULT '0',
`updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`page_authority` float NOT NULL DEFAULT '0',
`spam_score` float NOT NULL DEFAULT '0',
`ai_robot_allowed` tinyint(1) NOT NULL DEFAULT '1',
`mobile_friendly` tinyint(1) NOT NULL DEFAULT '1',
`https_secure` tinyint(1) NOT NULL DEFAULT '0',
`has_og_tags` tinyint(1) NOT NULL DEFAULT '0',
`has_twitter_cards` tinyint(1) NOT NULL DEFAULT '0',
`blocked_by_robots` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `project_id_2` (`project_id`,`page_url`),
KEY `project_id` (`project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `auditorsitemaps`
--
CREATE TABLE `auditorsitemaps` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) NOT NULL,
`sitemap_url` varchar(500) COLLATE utf8_unicode_ci NOT NULL,
`sitemap_type` enum('xml','txt','index') COLLATE utf8_unicode_ci DEFAULT 'xml',
`last_parsed` timestamp NULL DEFAULT NULL,
`urls_found` int(11) NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `project_id` (`project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `backlinkresults`
--
CREATE TABLE `backlinkresults` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`google` int(11) NOT NULL DEFAULT '0',
`msn` int(11) NOT NULL DEFAULT '0',
`alexa` int(11) NOT NULL DEFAULT '0',
`external_pages_to_page` int(11) NOT NULL DEFAULT '0',
`external_pages_to_root_domain` int(11) NOT NULL DEFAULT '0',
`result_time` int(11) NOT NULL DEFAULT '0',
`result_date` date DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `result_date` (`result_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `country`
--
CREATE TABLE `country` (
`country_code` char(2) COLLATE utf8_unicode_ci NOT NULL,
`country_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`country_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `country`
--
INSERT INTO `country` VALUES
('AD', 'Andorra'),
('AE', 'United Arab Emirates'),
('AF', 'Afghanistan'),
('AG', 'Antigua and Barbuda'),
('AI', 'Anguilla'),
('AL', 'Albania'),
('AM', 'Armenia'),
('AN', 'Netherlands Antilles'),
('AO', 'Angola'),
('AP', 'Asia/Pacific Region'),
('AQ', 'Antarctica'),
('AR', 'Argentina'),
('AS', 'American Samoa'),
('AT', 'Austria'),
('AU', 'Australia'),
('AW', 'Aruba'),
('AX', 'Aland Islands'),
('AZ', 'Azerbaijan'),
('BA', 'Bosnia and Herzegovina'),
('BB', 'Barbados'),
('BD', 'Bangladesh'),
('BE', 'Belgium'),
('BF', 'Burkina Faso'),
('BG', 'Bulgaria'),
('BH', 'Bahrain'),
('BI', 'Burundi'),
('BJ', 'Benin'),
('BM', 'Bermuda'),
('BN', 'Brunei Darussalam'),
('BO', 'Bolivia'),
('BR', 'Brazil'),
('BS', 'Bahamas'),
('BT', 'Bhutan'),
('BV', 'Bouvet Island'),
('BW', 'Botswana'),
('BY', 'Belarus'),
('BZ', 'Belize'),
('CA', 'Canada'),
('CC', 'Cocos (Keeling) Islands'),
('CD', 'Congo'),
('CF', 'Central African Republic'),
('CG', 'Congo'),
('CH', 'Switzerland'),
('CI', 'Cote d''Ivoire'),
('CK', 'Cook Islands'),
('CL', 'Chile'),
('CM', 'Cameroon'),
('CN', 'China'),
('CO', 'Colombia'),
('CR', 'Costa Rica'),
('CU', 'Cuba'),
('CV', 'Cape Verde'),
('CX', 'Christmas Island'),
('CY', 'Cyprus'),
('CZ', 'Czech Republic'),
('DE', 'Germany'),
('DJ', 'Djibouti'),
('DK', 'Denmark'),
('DM', 'Dominica'),
('DO', 'Dominican Republic'),
('DZ', 'Algeria'),
('EC', 'Ecuador'),
('EE', 'Estonia'),
('EG', 'Egypt'),
('EH', 'Western Sahara'),
('ER', 'Eritrea'),
('ES', 'Spain'),
('ET', 'Ethiopia'),
('EU', 'Europe'),
('FI', 'Finland'),
('FJ', 'Fiji'),
('FK', 'Falkland Islands (Malvinas)'),
('FM', 'Micronesia Federated States of'),
('FO', 'Faroe Islands'),
('FR', 'France'),
('GA', 'Gabon'),
('GB', 'United Kingdom'),
('GD', 'Grenada'),
('GE', 'Georgia'),
('GF', 'French Guiana'),
('GG', 'Guernsey'),
('GH', 'Ghana'),
('GI', 'Gibraltar'),
('GL', 'Greenland'),
('GM', 'Gambia'),
('GN', 'Guinea'),
('GP', 'Guadeloupe'),
('GQ', 'Equatorial Guinea'),
('GR', 'Greece'),
('GS', 'South Georgia and the South Sandwich Islands'),
('GT', 'Guatemala'),
('GU', 'Guam'),
('GW', 'Guinea-Bissau'),
('GY', 'Guyana'),
('HK', 'Hong Kong'),
('HM', 'Heard Island and McDonald Islands'),
('HN', 'Honduras'),
('HR', 'Croatia'),
('HT', 'Haiti'),
('HU', 'Hungary'),
('ID', 'Indonesia'),
('IE', 'Ireland'),
('IL', 'Israel'),
('IM', 'Isle of Man'),
('IN', 'India'),
('IO', 'British Indian Ocean Territory'),
('IQ', 'Iraq'),
('IR', 'Iran Islamic Republic of'),
('IS', 'Iceland'),
('IT', 'Italy'),
('JE', 'Jersey'),
('JM', 'Jamaica'),
('JO', 'Jordan'),
('JP', 'Japan'),
('KE', 'Kenya'),
('KG', 'Kyrgyzstan'),
('KH', 'Cambodia'),
('KI', 'Kiribati'),
('KM', 'Comoros'),
('KN', 'Saint Kitts and Nevis'),
('KP', 'Korea Democratic People''s Republic of'),
('KR', 'Korea Republic of'),
('KW', 'Kuwait'),
('KY', 'Cayman Islands'),
('KZ', 'Kazakhstan'),
('LA', 'Lao People''s Democratic Republic'),
('LB', 'Lebanon'),
('LC', 'Saint Lucia'),
('LI', 'Liechtenstein'),
('LK', 'Sri Lanka'),
('LR', 'Liberia'),
('LS', 'Lesotho'),
('LT', 'Lithuania'),
('LU', 'Luxembourg'),
('LV', 'Latvia'),
('LY', 'Libyan Arab Jamahiriya'),
('MA', 'Morocco'),
('MC', 'Monaco'),
('MD', 'Moldova Republic of'),
('ME', 'Montenegro'),
('MG', 'Madagascar'),
('MH', 'Marshall Islands'),
('MK', 'Macedonia'),
('ML', 'Mali'),
('MM', 'Myanmar'),
('MN', 'Mongolia'),
('MO', 'Macao'),
('MP', 'Northern Mariana Islands'),
('MQ', 'Martinique'),
('MR', 'Mauritania'),
('MS', 'Montserrat'),
('MT', 'Malta'),
('MU', 'Mauritius'),
('MV', 'Maldives'),
('MW', 'Malawi'),
('MX', 'Mexico'),
('MY', 'Malaysia'),
('MZ', 'Mozambique'),
('NA', 'Namibia'),
('NC', 'New Caledonia'),
('NE', 'Niger'),
('NF', 'Norfolk Island'),
('NG', 'Nigeria'),
('NI', 'Nicaragua'),
('NL', 'Netherlands'),
('NO', 'Norway'),
('NP', 'Nepal'),
('NR', 'Nauru'),
('NU', 'Niue'),
('NZ', 'New Zealand'),
('OM', 'Oman'),
('PA', 'Panama'),
('PE', 'Peru'),
('PF', 'French Polynesia'),
('PG', 'Papua New Guinea'),
('PH', 'Philippines'),
('PK', 'Pakistan'),
('PL', 'Poland'),
('PM', 'Saint Pierre and Miquelon'),
('PN', 'Pitcairn'),
('PR', 'Puerto Rico'),
('PS', 'Palestinian Territory'),
('PT', 'Portugal'),
('PW', 'Palau'),
('PY', 'Paraguay'),
('QA', 'Qatar'),
('RE', 'Reunion'),
('RO', 'Romania'),
('RS', 'Serbia'),
('RU', 'Russian Federation'),
('RW', 'Rwanda'),
('SA', 'Saudi Arabia'),
('SB', 'Solomon Islands'),
('SC', 'Seychelles'),
('SD', 'Sudan'),
('SE', 'Sweden'),
('SG', 'Singapore'),
('SH', 'Saint Helena'),
('SI', 'Slovenia'),
('SJ', 'Svalbard and Jan Mayen'),
('SK', 'Slovakia'),
('SL', 'Sierra Leone'),
('SM', 'San Marino'),
('SN', 'Senegal'),
('SO', 'Somalia'),
('SR', 'Suriname'),
('ST', 'Sao Tome and Principe'),
('SV', 'El Salvador'),
('SY', 'Syrian Arab Republic'),
('SZ', 'Swaziland'),
('TC', 'Turks and Caicos Islands'),
('TD', 'Chad'),
('TF', 'French Southern Territories'),
('TG', 'Togo'),
('TH', 'Thailand'),
('TJ', 'Tajikistan'),
('TK', 'Tokelau'),
('TL', 'Timor-Leste'),
('TM', 'Turkmenistan'),
('TN', 'Tunisia'),
('TO', 'Tonga'),
('TR', 'Turkey'),
('TT', 'Trinidad and Tobago'),
('TV', 'Tuvalu'),
('TW', 'Taiwan'),
('TZ', 'Tanzania United Republic of'),
('UA', 'Ukraine'),
('UG', 'Uganda'),
('UM', 'United States Minor Outlying Islands'),
('US', 'United States'),
('UY', 'Uruguay'),
('UZ', 'Uzbekistan'),
('VA', 'Holy See (Vatican City State)'),
('VC', 'Saint Vincent and the Grenadines'),
('VE', 'Venezuela'),
('VG', 'Virgin Islands British'),
('VI', 'Virgin Islands U.S.'),
('VN', 'Vietnam'),
('VU', 'Vanuatu'),
('WF', 'Wallis and Futuna'),
('WS', 'Samoa'),
('YE', 'Yemen'),
('YT', 'Mayotte'),
('ZA', 'South Africa'),
('ZM', 'Zambia'),
('ZW', 'Zimbabwe');
-- --------------------------------------------------------
--
-- Table structure for table `crawl_engines`
--
CREATE TABLE `crawl_engines` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`engine_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`engine_category` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`regex1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`regex2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`regex3` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`regex4` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`url` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`url_part` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `engine_name` (`engine_name`,`engine_category`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=19 ;
--
-- Dumping data for table `crawl_engines`
--
INSERT INTO `crawl_engines` VALUES
(1, 'alexa', 'rank', '/\\<popularity url\\="(.*?)" TEXT\\="([0-9]+)"/si', NULL, NULL, NULL, '', NULL, 1),
(2, 'bing', 'backlink', '/([0-9\\,]+) results/si', '/id="count".*?>.*?\\(([0-9\\,]+).*?\\)/si', '/id="count".*?>.*?([0-9\\,]+).*?/si', '/class="sb_count".*?>.*?([0-9\\,]+).*?<\\/span>/si', '', NULL, 1),
(3, 'alexa', 'backlink', '/linksin".*?big.*?>(.*?)</si', NULL, NULL, NULL, '', NULL, 1),
(4, 'google', 'backlink', '/about ([0-9\\,]+) result/si', '/<div id=resultStats>([0-9\\,]+) result/si', '/([0-9\\,]+) result/si', '/about <b>([0-9\\,]+)<\\/b> linking/si', '', NULL, 1),
(5, 'google', 'saturation', '/about ([0-9\\,]+) result/si', '/<div id=resultStats>([0-9\\,]+) result/si', '/([0-9\\,]+) result/si', '/about <b>([0-9\\,]+)<\\/b> linking/si', '', NULL, 1),
(6, 'bing', 'saturation', '/([0-9\\,]+) results/si', '/id="count".*?>.*?\\(([0-9\\,]+).*?\\)/si', '/id="count".*?>.*?([0-9\\,]+).*?/si', '/class="sb_count".*?>.*?([0-9\\,]+).*?<\\/span>/si', '', NULL, 1),
(7, 'facebook', 'social_media', '/description".*?content=".*?([\\d,]+) likes/is', '/Total Likes.*?>([\\d,]+).*?Total Follows/is', NULL, NULL, '', '?locale=en_US', 1),
(8, 'twitter', 'social_media', '/followers_count".*?(\\d+)/is', NULL, NULL, NULL, 'https://cdn.syndication.twimg.com/widgets/followbutton/info.json?screen_names={ACC_NAME}', NULL, 1),
(9, 'instagram', 'social_media', '/edge_followed_by.*?"count":(.*?)\\}/is', NULL, NULL, NULL, '', '/?__a=1', 1),
(10, 'linkedin', 'social_media', '/<div.*?follower-count.*?>(.*?)<\\/div>/is', NULL, NULL, NULL, 'https://www.linkedin.com/pages-extensions/FollowCompany?id={CID}&counter=bottom', NULL, 1),
(11, 'pinterest', 'social_media', '/"follower_count":(\\d+)/is', NULL, NULL, NULL, '', NULL, 1),
(12, 'youtube', 'social_media', '/subscriberCountText".*?"(\\d.*?) subscribers"/is', NULL, NULL, NULL, '', '/about', 1),
(13, 'google', 'review', '/<span>([0-9.,]+) Google reviews<\\/span>/is', '/media_result_group.*?"Rated (\\d+\\.\\d+) out/is', NULL, NULL, '', NULL, 1),
(14, 'glassdoor', 'review', '/"reviewCount":([0-9.,]+)/is', '/"overallRating":(\\d+\\.\\d+)/is', NULL, NULL, '', NULL, 1),
(15, 'yelp', 'review', '/reviewCount.*?:(\\d+),/is', '/aggregateRating.*?:([0-9]*\\.?[0-9]+),/is', NULL, NULL, '', NULL, 1),
(16, 'trustpilot', 'review', '/"reviewCount":"(\\d+)"/is', '/"ratingValue":"(\\d+\\.\\d+)"/is', NULL, NULL, '', NULL, 1),
(17, 'tripadvisor', 'review', '/"reviewCount":(\\d+)/is', '/"ratingValue":"(\\d+\\.\\d+)"/is', NULL, NULL, '', NULL, 1),
(18, 'reddit', 'social_media', '/subscribers="(\\d+)"/is', NULL, NULL, NULL, '', NULL, 1);
-- --------------------------------------------------------
--
-- Table structure for table `crawl_log`
--
CREATE TABLE `crawl_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`crawl_type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'other',
`ref_id` text COLLATE utf8_unicode_ci,
`subject` varchar(60) COLLATE utf8_unicode_ci DEFAULT NULL,
`crawl_link` text COLLATE utf8_unicode_ci NOT NULL,
`crawl_referer` text COLLATE utf8_unicode_ci,
`crawl_cookie` text COLLATE utf8_unicode_ci,
`crawl_post_fields` text COLLATE utf8_unicode_ci,
`crawl_useragent` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`crawl_status` tinyint(4) NOT NULL DEFAULT '1',
`proxy_id` int(11) unsigned NOT NULL DEFAULT '0',
`log_message` text COLLATE utf8_unicode_ci,
`crawl_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `crawl_status` (`crawl_status`),
KEY `crawl_type` (`crawl_type`),
KEY `proxy_id` (`proxy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `currency`
--
CREATE TABLE `currency` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(160) COLLATE utf8_unicode_ci NOT NULL,
`iso_code` varchar(3) COLLATE utf8_unicode_ci NOT NULL,
`symbol` varchar(3) COLLATE utf8_unicode_ci NOT NULL,
`unicode` varchar(8) COLLATE utf8_unicode_ci NOT NULL,
`position` varchar(6) COLLATE utf8_unicode_ci NOT NULL,
`paypal` tinyint(1) NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `iso_code` (`iso_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=68 ;
--
-- Dumping data for table `currency`
--
INSERT INTO `currency` VALUES
(1, 'United Arab Emirates Dirham', 'AED', 'د.إ', '', 'after', 0, 1),
(2, 'Netherlands Antillian Guilder', 'ANG', 'ƒ', 'ƒ', 'before', 0, 1),
(3, '', 'AOA', 'AOA', 'AOA', 'before', 0, 1),
(4, 'Argentine Peso', 'ARS', '$', '$', 'before', 0, 1),
(5, 'Australian Dollar', 'AUD', '$', '$', 'before', 1, 1),
(6, '', 'BAM', 'KM', 'KM', 'before', 0, 1),
(7, 'Barbados Dollar', 'BBD', '$', '$', 'before', 0, 1),
(8, '', 'BGL', 'лÐ', 'л&', 'before', 0, 1),
(9, 'Bahraini Dinar', 'BHD', 'BD', 'BD', 'after', 0, 1),
(10, 'Brunei Dollar', 'BND', '$', '$', 'before', 0, 1),
(11, 'Brazilian Real', 'BRL', 'R$', 'R$', 'before', 1, 1),
(12, 'Canadian Dollar', 'CAD', '$', '$', 'before', 1, 1),
(13, 'Swiss Franc', 'CHF', 'Fr', 'Fr', 'before', 1, 1),
(14, 'Chilean Unidades de Fomento', 'CLF', 'UF', 'UF', 'after', 0, 1),
(15, 'Chilean Peso', 'CLP', '$', '$', 'before', 0, 1),
(16, 'Yuan (Chinese) Renminbi', 'CNY', '¥', '¥', 'before', 0, 1),
(17, 'Colombian Peso', 'COP', '$', '$', 'before', 0, 1),
(18, 'Costa Rican Colon', 'CRC', '₡', '₡', 'before', 0, 1),
(19, 'Czech Republic Koruna', 'CZK', 'Kč', 'Kč', 'after', 1, 1),
(20, 'Danish Krone', 'DKK', 'kr', 'kr', 'before', 1, 1),
(21, 'Estonian Kroon (EEK)', 'EEK', 'KR', 'KR', 'before', 0, 1),
(22, 'Egyptian Pound', 'EGP', 'E£', 'E£', 'before', 0, 1),
(23, 'Euro', 'EUR', '€', '€', 'before', 1, 1),
(24, 'Fiji Dollar', 'FJD', 'FJ$', 'FJ$', 'before', 0, 1),
(25, 'British Pound', 'GBP', '£', '£', 'before', 1, 1),
(26, 'Guatemalan Quetzal', 'GTQ', 'Q', 'Q', 'before', 0, 1),
(27, 'Hong Kong Dollar', 'HKD', '$', '$', 'before', 1, 1),
(28, '', 'HRK', 'kn', 'kn', 'before', 0, 1),
(29, 'Hungarian Forint', 'HUF', 'Ft', 'Ft', 'before', 1, 1),
(30, 'Indonesian Rupiah', 'IDR', 'Rp', 'Rp', 'before', 0, 1),
(31, 'Israeli Shekel', 'ILS', '₪', '₪', 'before', 1, 1),
(32, 'Indian Rupee', 'INR', 'Rs', 'Rs', 'before', 0, 1),
(33, 'Jordanian Dinar', 'JOD', 'د.', '', '', 0, 1),
(34, 'Japanese Yen', 'JPY', '¥', '¥', 'before', 1, 1),
(35, 'Kenyan Schilling', 'KES', 'KSh', 'Ksh', 'before', 0, 1),
(36, '(South) Korean Won', 'KRW', '₩', '₩', 'before', 0, 1),
(37, 'Kuwaiti Dinar', 'KWD', 'KD', 'KD', 'after', 0, 1),
(38, 'Cayman Islands Dollar', 'KYD', '$', '$', 'before', 0, 1),
(39, '', 'LTL', 'Lt', 'Lt', 'before', 0, 1),
(40, '', 'LVL', 'Ls', 'Ls', 'before', 0, 1),
(41, 'Moroccan Dirham', 'MAD', 'د.', '', '', 0, 1),
(42, 'Maldive Rufiyaa', 'MVR', 'Rf', 'Rf', 'before', 0, 1),
(43, '', 'MXN', '$', '$', 'before', 1, 1),
(44, 'Malaysian Ringgit', 'MYR', 'RM', 'RM', 'before', 1, 1),
(45, 'Nigerian Naira', 'NGN', '₦', '₦', 'before', 0, 1),
(46, 'Norwegian Kroner', 'NOK', 'kr', 'kr', 'before', 1, 1),
(47, 'New Zealand Dollar', 'NZD', '$', '$', 'before', 1, 1),
(48, 'Omani Rial', 'OMR', '﷼', '﷼', 'after', 0, 1),
(49, 'Peruvian Nuevo Sol', 'PEN', 'S/.', 'S/.', 'before', 0, 1),
(50, 'Philippine Peso', 'PHP', '₱', '₱', 'before', 1, 1),
(51, 'Polish Zloty', 'PLN', 'Zł', 'Zł', 'before', 1, 1),
(52, 'Qatari Rial', 'QAR', 'QAR', '﷼', 'after', 0, 1),
(53, 'Romanian Leu', 'RON', 'lei', 'lei', 'before', 0, 1),
(54, 'Russian Ruble', 'RUB', '₽', 'р&', 'before', 1, 1),
(55, 'Saudi Arabian Riyal', 'SAR', 'SAR', '﷼', 'after', 0, 1),
(56, 'Swedish Krona', 'SEK', 'kr', 'kr', 'before', 1, 1),
(57, 'Singapore Dollar', 'SGD', '$', '$', 'before', 1, 1),
(58, 'Thai Baht', 'THB', 'ł', 'ł', 'before', 1, 1),
(59, 'Turkish Lira', 'TRY', 'TL', 'TL', 'before', 1, 1),
(60, 'Trinidad and Tobago Dollar', 'TTD', '$', '$', 'before', 0, 1),
(61, 'Taiwan Dollar', 'TWD', '$', '$', 'before', 0, 1),
(62, '', 'UAH', 'â‚´', '₴', 'before', 0, 1),
(63, 'US Dollar', 'USD', '$', '$', 'before', 1, 1),
(64, 'Venezualan Bolivar', 'VEF', 'Bs ', 'Bs.', 'before', 0, 1),
(65, 'Vietnamese Dong', 'VND', '₫', '₫', 'before', 0, 1),
(66, 'East Caribbean Dollar', 'XCD', '$', '$', 'before', 0, 1),
(67, 'South African Rand', 'ZAR', 'R', 'R', 'before', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `directories`
--
CREATE TABLE `directories` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`domain` varchar(255) CHARACTER SET latin1 DEFAULT NULL,
`submit_url` varchar(255) CHARACTER SET latin1 DEFAULT NULL,
`captcha_script` varchar(100) CHARACTER SET latin1 NOT NULL DEFAULT 'captcha.php',
`search_script` varchar(100) CHARACTER SET latin1 NOT NULL DEFAULT 'index.php?q=[--keyword--]',
`title_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'TITLE',
`url_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'URL',
`description_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'DESCRIPTION',
`name_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'OWNER_NAME',
`email_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'OWNER_EMAIL',
`category_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'CATEGORY_ID',
`cptcha_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'CAPTCHA',
`imagehash_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'IMAGEHASH',
`imagehashurl_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'imagehash',
`reciprocal_col` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'RECPR_URL',
`extra_val` varchar(255) CHARACTER SET latin1 NOT NULL DEFAULT 'LINK_TYPE=normal&submit=Continue&AGREERULES=on',
`is_captcha` tinyint(1) NOT NULL DEFAULT '0',
`working` tinyint(1) NOT NULL DEFAULT '1',
`google_pagerank` smallint(6) NOT NULL DEFAULT '0',
`alexa_rank` int(11) NOT NULL DEFAULT '-1',
`lang_code` varchar(8) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'en',
`checked` tinyint(1) NOT NULL DEFAULT '0',
`script_type_id` int(11) NOT NULL DEFAULT '1',
`rank` int(11) NOT NULL DEFAULT '0',
`is_reciprocal` tinyint(1) NOT NULL DEFAULT '0',
`pagerank` float NOT NULL DEFAULT '0',
`spam_score` float NOT NULL DEFAULT '0',
`domain_authority` float NOT NULL,
`page_authority` float NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `submit_url` (`submit_url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=160 ;
--
-- Dumping data for table `directories`
--
INSERT INTO `directories` VALUES
(145, 'http://www.listasweb.info', 'http://www.listasweb.info/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(144, 'http://www.oroop.com', 'http://www.oroop.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(143, 'http://www.webdirectorybook.com', 'http://www.webdirectorybook.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(142, 'http://www.westcelt.org', 'http://www.westcelt.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(141, 'http://www.wishdc.org', 'http://www.wishdc.org/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 5.26, 0, 31.92, 43.14),
(140, 'http://www.w3c-software.com', 'http://www.w3c-software.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(139, 'http://www.interactive-directory.com', 'http://www.interactive-directory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(138, 'http://www.go2directory.info', 'http://www.go2directory.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(137, 'http://www.firstfindengine.com', 'http://www.firstfindengine.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.firstfindengine.com', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(136, 'http://www.faceahead.com', 'http://www.faceahead.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(135, 'http://www.extreme-directory.net', 'http://www.extreme-directory.net/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(134, 'http://www.minidirectory.info', 'http://www.minidirectory.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(133, 'http://www.lexormedia.com', 'http://www.lexormedia.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(132, 'http://www.easyadsworld.com', 'http://www.easyadsworld.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(131, 'http://www.corporategoof.com', 'http://www.corporategoof.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(130, 'http://www.seodir.eu', 'http://www.seodir.eu/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(129, 'http://www.directorydr.com', 'http://www.directorydr.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(128, 'http://directorywind.com', 'http://directorywind.com/submit.php?LINK_TYPE=2', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=2&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(127, 'http://www.visuallinkdirectory.com', 'http://www.visuallinkdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(126, 'http://www.thecommercialdirectory.com', 'http://www.thecommercialdirectory.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(125, 'http://www.freeonlineregister.com', 'http://www.freeonlineregister.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.freeonlineregister.com', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(124, 'http://www.vccllc.com', 'http://www.vccllc.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(123, 'http://www.findinfo.ws', 'http://www.findinfo.ws/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(122, 'http://www.devdir.biz', 'http://www.devdir.biz/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.devdir.biz', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(121, 'http://www.stepmind.com', 'http://www.stepmind.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(120, 'http://www.edirectori.com', 'http://www.edirectori.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(119, 'http://www.netnamesindex.com', 'http://www.netnamesindex.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.netnamesindex.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(117, 'http://www.worldurllink.com', 'http://www.worldurllink.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.worldurllink.com', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(116, 'http://www.websitelists.info', 'http://www.websitelists.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(115, 'http://www.urlvault.info', 'http://www.urlvault.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.urlvault.info', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(114, 'http://www.seolistsite.com', 'http://www.seolistsite.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.seolistsite.com', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(113, 'http://www.searchpowertour.com', 'http://www.searchpowertour.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.searchpowertour.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(112, 'http://www.netdirectorylink.com', 'http://www.netdirectorylink.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(111, 'http://www.monsterlinkdirectory.com', 'http://www.monsterlinkdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.monsterlinkdirectory.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(110, 'http://www.inlinkdirectory.com', 'http://www.inlinkdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.inlinkdirectory.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(109, 'http://www.heydirectory.com', 'http://www.heydirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(108, 'http://www.generalnetdirectory.com', 'http://www.generalnetdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(107, 'http://www.freeweblist.info', 'http://www.freeweblist.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(106, 'http://www.freeonlineindex.com', 'http://www.freeonlineindex.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.freeonlineindex.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(104, 'http://www.directoryfreelink.com', 'http://www.directoryfreelink.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.directoryfreelink.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(103, 'http://www.cheapwebdir.com', 'http://www.cheapwebdir.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(102, 'http://www.anyweblist.com', 'http://www.anyweblist.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.anyweblist.com', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(101, 'http://www.zerotres.com', 'http://www.zerotres.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(100, 'http://www.thehdb.com', 'http://www.thehdb.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(99, 'http://www.linkfly.info', 'http://www.linkfly.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(98, 'http://www.jordangreen.info', 'http://www.jordangreen.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(97, 'http://www.ggfb.org', 'http://www.ggfb.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(96, 'http://www.etup.org', 'http://www.etup.org/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(94, 'http://z0p.com', 'http://z0p.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(93, 'http://www.yournetdirectory.com', 'http://www.yournetdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(92, 'http://www.teacherslounge.info', 'http://www.teacherslounge.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(91, 'http://www.homessearchengine.com', 'http://www.homessearchengine.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(90, 'http://www.zzdirectory.com', 'http://www.zzdirectory.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(89, 'http://www.liveurls.net', 'http://www.liveurls.net/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(88, 'http://www.agrieducation.org', 'http://www.agrieducation.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 3, -1, 'en', 1, 1, 0, 0, 5.65, 0, 39.77, 49.86),
(87, 'http://www.freewd.org', 'http://www.freewd.org/submit.php?LINK_TYPE=2', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=2&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(86, 'http://www.coolwebsitelistings.com', 'http://www.coolwebsitelistings.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(85, 'http://www.ns8.biz', 'http://www.ns8.biz/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(84, 'http://www.gfxmedia.us', 'http://www.gfxmedia.us/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(83, 'http://www.biowatchmed.net', 'http://www.biowatchmed.net/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(82, 'http://www.lemurgene.com', 'http://www.lemurgene.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(80, 'http://www.tuenschel.com', 'http://www.tuenschel.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.tuenschel.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(79, 'http://www.migliana.com', 'http://www.migliana.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.migliana.com', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(78, 'http://www.prolificpi.com', 'http://www.prolificpi.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.prolificpi.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(77, 'http://www.mymaxlinks.info', 'http://www.mymaxlinks.info/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(76, 'http://www.counterdeal.com', 'http://www.counterdeal.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(73, 'http://www.mytopdirectory.info', 'http://www.mytopdirectory.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(72, 'http://www.thelivinglink.net', 'http://www.thelivinglink.net/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 4, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(70, 'http://www.towerpromote.com', 'http://www.towerpromote.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(68, 'http://www.picna.com', 'http://www.picna.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.picna.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(67, 'http://www.owdirectory.com', 'http://www.owdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(66, 'http://www.haqj.com', 'http://www.haqj.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(65, 'http://www.gkiv.com', 'http://www.gkiv.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(64, 'http://www.insectuniverse.com', 'http://www.insectuniverse.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.insectuniverse.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(63, 'http://www.greatdir.net', 'http://www.greatdir.net/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(62, 'http://www.jambezi.com', 'http://www.jambezi.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.jambezi.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(61, 'http://www.tkdirectory.com', 'http://www.tkdirectory.com/submit.php?LINK_TYPE=1', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'reciprocal=1&LINK_TYPE=1&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(58, 'http://www.directoryrank.net', 'http://www.directoryrank.net/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(57, 'http://www.submitsitenow.info', 'http://www.submitsitenow.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(56, 'http://www.addyourlnksnow.com', 'http://www.addyourlnksnow.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(54, 'http://www.holidaydig.com', 'http://www.holidaydig.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(55, 'http://www.yrkdirectory.com', 'http://www.yrkdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(53, 'http://www.mymaxlinks.org', 'http://www.mymaxlinks.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(52, 'http://www.sblinks.org', 'http://www.sblinks.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(51, 'http://www.lutonengineering.com', 'http://www.lutonengineering.com/submit.php?LINK_TYPE=2', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=2&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(50, 'http://www.doubledirectory.com', 'http://www.doubledirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(49, 'http://www.boomdirectory.com', 'http://www.boomdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(47, 'http://www.deblinley.com', 'http://www.deblinley.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(48, 'http://www.jhucr.org', 'http://www.jhucr.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(46, 'http://www.directorybin.com', 'http://www.directorybin.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 3, -1, 'en', 1, 1, 0, 0, 5.79, 0, 41.16, 50.57),
(45, 'http://www.magdalyns.com', 'http://www.magdalyns.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(44, 'http://www.goobz.biz', 'http://www.goobz.biz/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(43, 'http://www.gainweb.org', 'http://www.gainweb.org/submit.php?LINK_TYPE=2', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=2&submit=Continue&AGREERULES=on', 0, 1, 4, -1, 'en', 1, 1, 1, 0, 6.09, 0, 41.58, 51),
(42, 'http://www.indiabusinessdirectory.info', 'http://www.indiabusinessdirectory.info/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(41, 'http://www.omega-link.co.uk', 'http://www.omega-link.co.uk/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(40, 'http://www.webslink.info', 'http://www.webslink.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(39, 'http://www.nuclearland.com', 'http://www.nuclearland.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(37, 'http://www.freelistingdirectory.info', 'http://www.freelistingdirectory.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.freelistingdirectory.info', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(35, 'http://www.crazyleafdesign.com/webdirectory', 'http://www.crazyleafdesign.com/webdirectory/submit?LINK_TYPE=1', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=1&submit=Continue&AGREERULES=on', 1, 0, 0, -1, 'en', 1, 1, 2, 0, 6.12, 0, 51.88, 52.77),
(34, 'http://www.linkspremium.com', 'http://www.linkspremium.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(33, 'http://www.hitalyzer.com', 'http://www.hitalyzer.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 3, -1, 'en', 1, 1, 0, 0, 5.48, 0, 38.03, 47.35),
(32, 'http://directory.seoexecutive.com', 'http://directory.seoexecutive.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(31, 'http://directory.allaboutadtips.com', 'http://directory.allaboutadtips.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(30, 'http://www.clickmybrick.com', 'http://www.clickmybrick.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(29, 'http://www.placeyourlinks.com', 'http://www.placeyourlinks.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(28, 'http://www.seocourt.com', 'http://www.seocourt.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 5.8, 0, 46.71, 53.19),
(27, 'http://www.linkedout.info', 'http://www.linkedout.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(26, 'http://www.triplewdirectory.com', 'http://www.triplewdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 0, -1, 'en', 1, 1, 0, 0, 5.56, 0, 40.12, 50.1),
(25, 'http://www.yvir.com', 'http://www.yvir.com/submit.php?LINK_TYPE=2', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'z=1&LINK_TYPE=2&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(23, 'http://www.1abc.org', 'http://www.1abc.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 1, 0, -1, 'en', 1, 1, 0, 0, 6.17, 0, 54.24, 62.04),
(22, 'http://www.pblake.com', 'http://www.pblake.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 4, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(21, 'http://www.aaawebdirectory.com', 'http://www.aaawebdirectory.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(20, 'http://www.sanory.com', 'http://www.sanory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(19, 'http://www.domaining.in', 'http://www.domaining.in/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 0, 4, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(18, 'http://www.miriblack.com', 'http://www.miriblack.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 5.67, 0, 47.02, 54.01),
(17, 'http://www.alistsites.com', 'http://www.alistsites.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 0, -1, 'en', 1, 1, 0, 0, 5.88, 0, 41.57, 51.35),
(16, 'http://www.cheapdirectory.net', 'http://www.cheapdirectory.net/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(15, 'http://www.ewebdir.com', 'http://www.ewebdir.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 4.9, 0, 27.28, 38.47),
(14, 'http://www.tfwd.org', 'http://www.tfwd.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 1, 1, -1, 'en', 1, 1, 0, 0, 4.8, 0, 28.47, 39.2),
(13, 'http://www.pr3plus.com', 'http://www.pr3plus.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 5.49, 0, 34.8, 45.67),
(12, 'http://www.123hitlinks.info', 'http://www.123hitlinks.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 5.8, 0, 44.27, 53.65),
(10, 'http://www.directoryvault.com', 'http://www.directoryvault.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 0, -1, 'en', 1, 1, 0, 0, 6.11, 0, 44.64, 53.95),
(9, 'http://www.skypemedia.com', 'http://www.skypemedia.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(8, 'http://www.webhotlink.com', 'http://www.webhotlink.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 1, 0, -1, 'en', 1, 1, 0, 0, 5.3, 0, 34.91, 45.7),
(6, 'http://www.freewebsitedirectory.com', 'http://www.freewebsitedirectory.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 6.34, 0, 53.58, 61.49),
(5, 'http://www.777media.com', 'http://www.777media.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(3, 'http://www.onpaco.com', 'http://www.onpaco.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 0, -1, 'en', 1, 1, 0, 0, 5.58, 0, 33.32, 44.39),
(2, 'http://www.fat64.net', 'http://www.fat64.net/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 5.79, 0, 43.47, 52.97),
(1, 'http://directory.seopanel.in', 'http://directory.seopanel.in/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 1, 0, 6.65, 0, 47.24, 51.26),
(146, 'http://www.sblinks.info', 'http://www.sblinks.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(147, 'http://www.thehopedirectory.com', 'http://www.thehopedirectory.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(148, 'http://www.clocktowerstudio.com', 'http://www.clocktowerstudio.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(149, 'http://www.infotechwv.com', 'http://www.infotechwv.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(150, 'http://www.dawsoneng.com', 'http://www.dawsoneng.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(151, 'http://www.cafrid.com', 'http://www.cafrid.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 4.64, 0, 29.42, 41.05),
(152, 'http://www.fusionsalcedo.com', 'http://www.fusionsalcedo.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(153, 'http://www.justaskluke.com', 'http://www.justaskluke.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(154, 'http://www.logha.com', 'http://www.logha.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(155, 'http://www.pacdec.org', 'http://www.pacdec.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(156, 'http://www.sitechakra.com', 'http://www.sitechakra.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(157, 'http://www.webbacklinks.com', 'http://www.webbacklinks.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(158, 'http://www.searchnsearch.com', 'http://www.searchnsearch.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 1, -1, 'en', 1, 1, 0, 0, 5.38, 0, 29.48, 38.96);
-- --------------------------------------------------------
--
-- Table structure for table `dirsubmitinfo`
--
CREATE TABLE `dirsubmitinfo` (
`id` bigint(24) unsigned NOT NULL AUTO_INCREMENT,
`website_id` int(11) unsigned NOT NULL,
`directory_id` int(11) unsigned NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`active` tinyint(1) NOT NULL DEFAULT '0',
`submit_time` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `di_directory_meta`
--
CREATE TABLE `di_directory_meta` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL,
`captcha_script` varchar(100) CHARACTER SET latin1 NOT NULL DEFAULT 'captcha.php',
`search_script` varchar(100) CHARACTER SET latin1 NOT NULL DEFAULT 'index.php?q=[--keyword--]',
`title_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'TITLE',
`url_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'URL',
`description_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'DESCRIPTION',
`name_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'OWNER_NAME',
`email_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'OWNER_EMAIL',
`category_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'CATEGORY_ID',
`cptcha_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'CAPTCHA',
`imagehash_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'IMAGEHASH',
`imagehashurl_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'imagehash',
`reciprocal_col` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'RECPR_URL',
`extra_val` varchar(255) CHARACTER SET latin1 NOT NULL DEFAULT 'LINK_TYPE=normal&submit=Continue&AGREERULES=on',
`link_type_col` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'LINK_TYPE',
`normal` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'normal',
`free` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'free',
`reciprocal` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'reciprocal',
`status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `di_directory_meta`
--
INSERT INTO `di_directory_meta` VALUES
(1, 'phpLD', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=[--type--]&submit=Continue&AGREERULES=on', 'LINK_TYPE', 'normal', 'free', 'reciprocal', 1);
-- --------------------------------------------------------
--
-- Table structure for table `featured_directories`
--
CREATE TABLE `featured_directories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`directory_name` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`directory_link` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
`google_pagerank` smallint(6) NOT NULL DEFAULT '0',
`coupon_code` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`coupon_offer` float NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=6 ;
--
-- Dumping data for table `featured_directories`
--
INSERT INTO `featured_directories` VALUES
(1, 'directory.seopanel.in', 'http://directory.seopanel.in/submit.php?LINK_TYPE=featured', 4, '', 0, 1),
(4, 'beta-i.org', 'http://beta-i.org/submit.php?LINK_TYPE=4', 6, '', 0, 0),
(5, 'directorymaximizer.com', 'http://www.directorymaximizer.com/af.php?af=207564&ad=5&p=1', 6, '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `information_list`
--
CREATE TABLE `information_list` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`info_type` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'news',
`content` text COLLATE utf8_unicode_ci NOT NULL,
`update_date` date NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `information_list`
--
INSERT INTO `information_list` VALUES
(1, 'news', ' <a style="text-decoration: none" href="https://www.seopanel.org/aboutus/sponsors/" target="_blank" id=''news_info''>\n <b style="color:red;">New*</b> <b>Donate</b> <b style="color: green">$500</b> \n and become a <b>premium sponsor of Seo Panel</b>. Also get <b>all plugins</b> we develop for Free!\n </a>\n ', '2016-12-16');
-- --------------------------------------------------------
--
-- Table structure for table `keywordcrontracker`
--
CREATE TABLE `keywordcrontracker` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`keyword_id` int(16) DEFAULT NULL,
`searchengine_id` int(11) DEFAULT NULL,
`time` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `keyword_id` (`keyword_id`),
KEY `searchengine_id` (`searchengine_id`),
KEY `time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `keywords`
--
CREATE TABLE `keywords` (
`id` bigint(24) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
`lang_code` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL,
`country_code` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL,
`website_id` int(11) DEFAULT NULL,
`searchengines` varchar(120) CHARACTER SET latin1 DEFAULT NULL,
`status` tinyint(1) DEFAULT '0',
`crawled` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `keyword_analytics`
--
CREATE TABLE `keyword_analytics` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`keyword_id` int(11) NOT NULL,
`clicks` int(11) NOT NULL,
`impressions` int(11) NOT NULL,
`ctr` float NOT NULL,
`average_position` float NOT NULL,
`report_date` date NOT NULL,
`source` enum('google','yahoo','bing','baidu','yandex') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'google',
PRIMARY KEY (`id`),
KEY `keyword_id` (`keyword_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `languages`
--
CREATE TABLE `languages` (
`lang_code` varchar(8) CHARACTER SET latin1 NOT NULL,
`lang_name` varchar(24) COLLATE utf8_unicode_ci DEFAULT NULL,
`lang_show` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`RTL` tinyint(1) NOT NULL DEFAULT '0',
`translated` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`lang_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `languages`
--
INSERT INTO `languages` VALUES
('en', 'English', 'English', 0, 1),
('de', 'German', 'Deutsch', 0, 1),
('fr', 'French', 'Français', 0, 1),
('it', 'Italian', 'italiano', 0, 1),
('es', 'Spanish', 'español', 0, 1),
('pl', 'Polish', 'polski', 0, 1),
('ru', 'Russian', 'Русский язык', 0, 1),
('hi', 'Hindi', 'हिन्दी', 0, 1),
('ar', 'Arabic', 'العربية', 1, 1),
('pt', 'Portuguese', 'português', 0, 1),
('sv', 'Swedish', 'Svenska', 0, 1),
('no', 'Norwegian', 'Norsk', 0, 1),
('da', 'Danish', 'dansk', 0, 1),
('fi', 'Finnish', 'suomi', 0, 1),
('hu', 'Hungarian', 'magyar', 0, 1),
('nl', 'Dutch', 'Nederlands', 0, 1),
('sr', 'Serbian', 'српски', 0, 1),
('bg', 'Bulgarian', 'български', 0, 1),
('uk', 'Ukrainian', 'Українська', 0, 1),
('el', 'Greek', 'ελληνικά', 0, 1),
('he', 'Hebrew', 'עברית / עִבְרִית', 1, 1),
('ko', 'Korean', '한국어 [韓國語]', 0, 1),
('zh', 'Chinese (Simplified)', '中文(简体)', 0, 1),
('ja', 'Japanese', '日本語 ', 0, 1),
('tl', 'Tagalog', 'Tagalog', 0, 1),
('id', 'Indonesian', 'Bahasa Indonesia', 0, 1),
('fa', 'Farsi', 'پارسی', 1, 1),
('th', 'Thai', 'ภาษาไทย', 0, 1),
('ro', 'Romanian', 'română', 0, 1),
('tr', 'Turkish', 'Türkçe', 0, 1),
('hr', 'Croatian', 'Hrvatski', 0, 1),
('mk', 'Macedonian', 'македонски', 0, 1),
('bs', 'Bosnian', 'Bosanski', 0, 1),
('sq', 'Albanian', 'shqip', 0, 1),
('sw', 'Swahili', 'Kiswahili', 0, 1),
('hy', 'Armenian', 'Հայերէն', 0, 1),
('cs', 'Czech', 'čeština', 0, 1),
('sk', 'Slovak', 'slovenčina', 0, 1),
('cn', 'Chinese (Traditional)', '中文(繁體)', 0, 1),
('pt-br', 'Portuguese - Brazil', 'português brasileiro', 0, 1),
('vn', 'Vietnamese', 'Việt', 0, 1),
('es-ar', 'Spanish Argentina', 'español rioplatense', 0, 1),
('sl', 'Slovenian', 'slovenščina', 0, 1),
('lt', 'Lithuanian', 'lietuvių kalba', 0, 1),
('ca', 'Catalan', 'Català', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `mail_logs`
--
CREATE TABLE `mail_logs` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`from_address` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`to_address` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`cc_address` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
`subject` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`log_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`log_message` text COLLATE utf8_unicode_ci,
`mail_category` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'general',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `pagespeeddetails`
--
CREATE TABLE `pagespeeddetails` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`desktop_score_details` text COLLATE utf8_unicode_ci NOT NULL,
`mobile_score_details` text COLLATE utf8_unicode_ci NOT NULL,
`result_date` date NOT NULL,
PRIMARY KEY (`id`),
KEY `result_date` (`result_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `pagespeedresults`
--
CREATE TABLE `pagespeedresults` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`desktop_speed_score` smallint(6) NOT NULL,
`mobile_speed_score` smallint(6) NOT NULL,
`mobile_usability_score` smallint(6) NOT NULL,
`result_date` date NOT NULL,
PRIMARY KEY (`id`),
KEY `result_date` (`result_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `proxylist`
--
CREATE TABLE `proxylist` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`proxy` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`port` int(8) DEFAULT NULL,
`proxy_auth` tinyint(1) NOT NULL DEFAULT '0',
`proxy_username` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`proxy_password` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`checked` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `qwp_settings`
--
CREATE TABLE `qwp_settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`set_label` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`set_name` varchar(64) CHARACTER SET latin1 NOT NULL,
`set_val` text COLLATE utf8_unicode_ci NOT NULL,
`set_type` enum('small','bool','medium','large','text') CHARACTER SET latin1 DEFAULT 'small',
PRIMARY KEY (`id`),
UNIQUE KEY `set_name` (`set_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=5 ;
--
-- Dumping data for table `qwp_settings`
--
INSERT INTO `qwp_settings` VALUES
(2, 'Allow user to access the web proxy', 'QWP_ALLOW_USER_WEB_PROXY', '0', 'bool'),
(3, 'Allow web server to act as a proxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', '1', 'bool'),
(4, 'Blocked Urls In Proxy', 'QWP_PROXY_BLOCK_URLS', '', 'text');
-- --------------------------------------------------------
--
-- Table structure for table `rankresults`
--
CREATE TABLE `rankresults` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`google_pagerank` int(8) NOT NULL DEFAULT '0',
`alexa_rank` int(11) NOT NULL DEFAULT '0',
`moz_rank` float NOT NULL DEFAULT '0',
`spam_score` float NOT NULL DEFAULT '0',
`result_time` int(11) NOT NULL DEFAULT '0',
`domain_authority` float NOT NULL DEFAULT '0',
`page_authority` float NOT NULL DEFAULT '0',
`result_date` date DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `result_date` (`result_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `reports_settings`
--
CREATE TABLE `reports_settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`report_interval` int(11) NOT NULL DEFAULT '1',
`email_notification` tinyint(1) NOT NULL DEFAULT '0',
`last_generated` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `reports_settings`
--
INSERT INTO `reports_settings` VALUES
(1, 1, 1, 1, 1481760000);
-- --------------------------------------------------------
--
-- Table structure for table `review_links`
--
CREATE TABLE `review_links` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`name` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`type` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'google_my_business',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `website_id` (`website_id`,`url`),
KEY `review_links_web_rel` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `review_link_results`
--
CREATE TABLE `review_link_results` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`review_link_id` int(11) NOT NULL,
`reviews` int(11) NOT NULL DEFAULT '0',
`rating` float NOT NULL DEFAULT '0',
`report_date` date NOT NULL,
PRIMARY KEY (`id`),
KEY `review_link_rel` (`review_link_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `saturationresults`
--
CREATE TABLE `saturationresults` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`google` int(11) NOT NULL,
`msn` int(11) NOT NULL,
`result_time` int(11) NOT NULL DEFAULT '0',
`result_date` date DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `result_date` (`result_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `searchengines`
--
CREATE TABLE `searchengines` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`domain` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
`url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`cookie_send` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`no_of_results_page` int(8) DEFAULT NULL,
`start` int(11) NOT NULL DEFAULT '0',
`start_offset` int(8) NOT NULL DEFAULT '0',
`max_results` int(11) NOT NULL DEFAULT '100',
`regex` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`from_pattern` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`to_pattern` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`url_index` int(11) NOT NULL DEFAULT '1',
`title_index` int(11) NOT NULL DEFAULT '2',
`description_index` int(11) NOT NULL DEFAULT '3',
`encoding` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` tinyint(1) DEFAULT '0',
`updated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `searchengines`
--
INSERT INTO `searchengines` VALUES
(1, 'www.google.com', 'https://www.google.com/search?hl=[--lang--]&q=[--keyword--]&start=[--start--]&cr=country[--country--]', '', 100, 0, 100, 100, '<div.*?class="?g.*?>.*?href="(.*?)".*?>.*?<h3.*?>(.*?)<\\/h3>', 'id="search"', 'id="bottomads"', 1, 2, 3, NULL, 1, '[[regtime]]'),
(2, 'www.yahoo.com', 'https://search.yahoo.com/search?p=[--keyword--]&n=[--num--]&b=[--start--]&vl=lang_[--lang--]&fl=1&v=1&vc=[--country--]', 'sB=v=1&n=100&sh=1&rw=new', 100, 1, 100, 100, '<li.*?<h3.*?><a.*?RU=(.*?)\\/.*?>(.*?)<\\/a><\\/h3>.*?<p.*?>(.*?)<\\/p>', NULL, NULL, 1, 2, 3, NULL, 1, '[[regtime]]'),
(3, 'www.bing.com', 'https://www.bing.com/search?q=[--keyword--]&scope=web&first=[--start--]&setmkt=[--lang--]-[--country--]', 'SRCHHPGUSR=NEWWND=0&NRSLT=50&SRCHLANG=[--lang--]', 50, 1, 50, 50, '<li.*?<h2><a.*?href="(.*?)".*?>(.*?)<\\/a><\\/h2>.*?<p.*?>(.*?)<\\/p>', NULL, NULL, 1, 2, 3, NULL, 1, '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `searchresultdetails`
--
CREATE TABLE `searchresultdetails` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`searchresult_id` bigint(24) unsigned DEFAULT NULL,
`url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`title` varchar(160) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `searchresults`
--
CREATE TABLE `searchresults` (
`id` bigint(24) unsigned NOT NULL AUTO_INCREMENT,
`keyword_id` int(16) DEFAULT NULL,
`searchengine_id` int(11) DEFAULT NULL,
`rank` int(8) DEFAULT NULL,
`time` int(11) DEFAULT NULL,
`result_date` date DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `result_date` (`result_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `seoplugins`
--
CREATE TABLE `seoplugins` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`label` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`author` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci,
`version` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL,
`website` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`installed` tinyint(1) NOT NULL DEFAULT '0',
`priority` int(11) NOT NULL DEFAULT '100',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `seoplugins`
--
INSERT INTO `seoplugins` VALUES
(1, 'Meta Tag Generator', 'MetaTagGenerator', 'Geo Varghese', 'Meta Tag Generator', '1.0.0', 'https://www.seopanel.org/plugins/', 1, 1, 100),
(2, 'Test Plugin', 'TestPlugin', 'Geo Varghese', 'Seo Panel Test Plugin: Check the structure of test plugin and it will help you to create new Seo Panel Plugins.', '1.0.0', 'https://www.seopanel.org/plugins/', 0, 1, 100),
(3, 'Quick Web Proxy', 'QuickWebProxy', 'Seo Panel', 'It will help you to create a web proxy server using your hosting server or external proxy servers', '2.1.0', 'https://www.seopanel.org/plugin/l/94/quick-web-proxy/', 1, 1, 100);
-- --------------------------------------------------------
--
-- Table structure for table `seotools`
--
CREATE TABLE `seotools` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`url_section` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`user_access` tinyint(1) NOT NULL DEFAULT '1',
`reportgen` tinyint(1) NOT NULL DEFAULT '1',
`cron` tinyint(1) NOT NULL DEFAULT '0',
`priority` int(11) NOT NULL DEFAULT '100',
`status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=12 ;
--
-- Dumping data for table `seotools`
--
INSERT INTO `seotools` VALUES
(1, 'Keyword Position Checker', 'keyword-position-checker', 1, 1, 1, 10, 1),
(2, 'Site Auditor', 'site-auditor', 1, 1, 0, 100, 1),
(3, 'Rank Checker', 'rank-checker', 1, 1, 1, 100, 1),
(4, 'Backlinks Checker', 'backlink-checker', 1, 1, 1, 100, 1),
(5, 'Directory Submission', 'directory-submission', 1, 1, 0, 100, 1),
(6, 'Search Engine Saturation', 'saturation-checker', 1, 1, 1, 100, 1),
(7, 'PageSpeed Insights', 'pagespeed', 1, 1, 1, 100, 1),
(8, 'Webmaster Tools', 'webmaster-tools', 1, 1, 1, 20, 1),
(9, 'Social Media Checker', 'sm-checker', 1, 1, 1, 100, 1),
(10, 'Website Analytics', 'web-analytics', 1, 1, 1, 100, 1),
(11, 'Review Manager', 'review-manager', 1, 1, 1, 100, 1);
-- --------------------------------------------------------
--
-- Table structure for table `settings`
--
CREATE TABLE `settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`set_label` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`set_name` varchar(64) CHARACTER SET latin1 NOT NULL,
`set_val` text COLLATE utf8_unicode_ci NOT NULL,
`set_category` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'system',
`set_type` enum('small','bool','medium','large','text') CHARACTER SET latin1 DEFAULT 'small',
`display` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `set_name` (`set_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=72 ;
--
-- Dumping data for table `settings`
--
INSERT INTO `settings` VALUES
(1, 'Seo Panel Title', 'SP_TITLE', 'Seo Panel: World''s first open source seo control panel for managing multiple web sites', 'system', 'large', 1),
(2, 'Seo Panel Description', 'SP_DESCRIPTION', 'A complete free control panel for managing search engine optimization of your websites. It\ncontaining lots of hot seo tools to increase and track the performance your websites. Its an open\nsource software and also you can develop your own seo plugins for seo panel.', 'system', 'text', 1),
(3, 'Seo Panel Keywords', 'SP_KEYWORDS', 'Seo Panel,seo control panel,search engine optimization panel,seo tools kit,keyword rank checker,google pagerank checker,alexa rank checker,sitemap generator,meta tag generator,back link checker,Website Submission tool', 'system', 'text', 1),
(4, 'Number of entries per page', 'SP_PAGINGNO', '10', 'system', 'small', 1),
(5, 'Delay between each spider crawl(seconds)', 'SP_CRAWL_DELAY', '5', 'report', 'small', 1),
(6, 'Allow user to generate reports', 'SP_USER_GEN_REPORT', '0', 'report', 'bool', 1),
(7, 'Image hotlink protection enabled', 'SP_HOTLINKING', '1', 'system', 'bool', 0),
(8, 'User registration interface', 'SP_USER_REGISTRATION', '0', 'system', 'bool', 1),
(9, 'Enable Proxy', 'SP_ENABLE_PROXY', '0', 'proxy', 'bool', 1),
(10, 'Default Language', 'SP_DEFAULTLANG', '[[language]]', 'system', 'small', 1),
(11, 'User agent', 'SP_USER_AGENT', 'Mozilla/5.0 (Windows; U; MSIE 9.0; WIndows NT 9.0; en-US))', 'report', 'large', 1),
(12, 'Seo Panel API Key', 'SP_API_KEY', '[[apiKey]]', 'api', 'large', 1),
(13, 'Maximum number of pages allowed per website', 'SA_MAX_NO_PAGES', '500', 'siteauditor', 'small', 1),
(14, 'Site auditor crawl delay', 'SA_CRAWL_DELAY_TIME', '10', 'siteauditor', 'small', 1),
(15, 'Maximum length of page title', 'SA_TITLE_MAX_LENGTH', '80', 'siteauditor', 'small', 0),
(16, 'Minimum length of page title', 'SA_TITLE_MIN_LENGTH', '50', 'siteauditor', 'small', 0),
(17, 'Maximum length of meta description', 'SA_DES_MAX_LENGTH', '200', 'siteauditor', 'small', 0),
(18, 'Minimumlength of meta description', 'SA_DES_MIN_LENGTH', '120', 'siteauditor', 'small', 0),
(19, 'Maximum length of meta keywords', 'SA_KEY_MAX_LENGTH', '200', 'siteauditor', 'small', 0),
(20, 'Minimumlength of meta keyword', 'SA_KEY_MIN_LENGTH', '80', 'siteauditor', 'small', 0),
(21, 'Google pagerank check level first', 'SA_PR_CHECK_LEVEL_FIRST', '3', 'siteauditor', 'small', 0),
(22, 'Backlinks check level', 'SA_BL_CHECK_LEVEL', '25', 'siteauditor', 'small', 0),
(23, 'Google pagerank check level second', 'SA_PR_CHECK_LEVEL_SECOND', '6', 'siteauditor', 'small', 0),
(24, 'Maximum links in a page', 'SA_TOTAL_LINKS_MAX', '50', 'siteauditor', 'small', 0),
(25, 'Enable SMTP', 'SP_SMTP_MAIL', '0', 'mail', 'bool', 1),
(26, 'SMTP Host', 'SP_SMTP_HOST', '', 'mail', 'medium', 1),
(27, 'SMTP Username', 'SP_SMTP_USERNAME', '', 'mail', 'medium', 1),
(28, 'SMTP Password', 'SP_SMTP_PASSWORD', '', 'mail', 'medium', 1),
(29, 'Allow users to schedule reports', 'SP_ALLOW_USER_SCHEDULE_REPORT', '1', 'report', 'bool', 1),
(30, 'System report generation interval', 'SP_SYSTEM_REPORT_INTERVAL', '1', 'report', 'small', 1),
(31, 'Enable report email notification', 'SP_REPORT_EMAIL_NOTIFICATION', '1', 'report', 'bool', 1),
(32, 'Number of keywords needs to be checked in each cron execution', 'SP_NUMBER_KEYWORDS_CRON', '1', 'report', 'small', 0),
(33, 'Crawl relative links in a page', 'SP_RELATIVE_LINK_CRAWL', '1', 'siteauditor', 'bool', 1),
(34, 'Enable HTTP Proxy Tunnel', 'CURLOPT_HTTPPROXYTUNNEL_VAL', '1', 'proxy', 'bool', 1),
(35, 'Deactivate Proxy When Crawling Failed', 'PROXY_DEACTIVATE_CRAWL', '0', 'proxy', 'bool', 1),
(36, 'Check With Another Proxy When Crawling Failed', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', '0', 'proxy', 'bool', 1),
(37, 'SMTP Mail Port', 'SP_SMTP_PORT', '25', 'mail', 'small', 1),
(38, 'Time Zone', 'SP_TIME_ZONE', 'America/New_York', 'system', 'medium', 1),
(39, 'Maximum number of proxies used in single execution', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', '3', 'proxy', 'small', 1),
(40, 'API Secret', 'API_SECRET', '', 'api', 'medium', 1),
(41, 'Company Name', 'SP_COMPANY_NAME', '[[company_name]]', 'system', 'medium', 1),
(42, 'Currency', 'SP_PAYMENT_CURRENCY', 'USD', 'system', 'medium', 1),
(43, 'Seo Panel version', 'SP_VERSION_NUMBER', '5.1.0', 'system', 'medium', 0),
(44, 'Moz API Link', 'SP_MOZ_API_LINK', 'http://lsapi.seomoz.com/linkscape', 'moz', 'medium', 0),
(45, 'Moz API Link', 'SP_MOZ_API_ACCESS_ID', '', 'moz', 'large', 0),
(46, 'Moz API Link', 'SP_MOZ_API_SECRET', '', 'moz', 'large', 1),
(47, 'Page authority check level first', 'SA_PA_CHECK_LEVEL_FIRST', '40', 'siteauditor', 'small', 0),
(48, 'Page authority check level second', 'SA_PA_CHECK_LEVEL_SECOND', '75', 'siteauditor', 'small', 0),
(49, 'Google API Key', 'SP_GOOGLE_API_KEY', '', 'google', 'large', 1),
(50, 'Number of websites needs to be checked in each cron execution', 'SP_NUMBER_WEBSITES_CRON', '1', 'report', 'small', 0),
(51, 'Send custom header with curl request', 'SP_SEND_CUSTOM_HEADER_IN_CURL', '1', 'report', 'bool', 1),
(52, 'Google API Client Id', 'SP_GOOGLE_API_CLIENT_ID', '', 'google', 'large', 1),
(53, 'Google API Client Secret', 'SP_GOOGLE_API_CLIENT_SECRET', '', 'google', 'large', 1),
(54, 'Google Analytics Tracking Code', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', '', 'google', 'text', 1),
(55, 'Enable Proxy for Google API', 'SP_ENABLE_PROXY_GOOGLE_API', '1', 'proxy', 'bool', 1),
(56, 'Mail Encryption', 'SP_MAIL_ENCRYPTION', '', 'mail', 'medium', 1),
(57, 'Enable Sendgrid API', 'SP_SENDGRID_API', '0', 'mail', 'bool', 1),
(58, 'Seo Panel Demo', 'SP_DEMO', '0', 'system', 'large', 0),
(59, 'Seo Panel Hosted Version', 'SP_HOSTED_VERSION', '0', 'system', 'large', 0),
(60, 'Enable reCAPTCHA', 'SP_ENABLE_RECAPTCHA', '0', 'google', 'bool', 1),
(61, 'reCAPTCHA Site Key', 'SP_RECAPTCHA_SITE_KEY', '', 'google', 'large', 1),
(62, 'reCAPTCHA Secret Key', 'SP_RECAPTCHA_SECRET_KEY', '', 'google', 'large', 1),
(63, 'Country', 'SP_DEFAULT_COUNTRY', 'US', 'system', 'small', 1),
(64, 'Enable DataForSEO', 'SP_ENABLE_DFS', '0', 'dataforseo', 'bool', 1),
(65, 'DataForSEO API Login', 'SP_DFS_API_LOGIN', '', 'dataforseo', 'large', 1),
(66, 'DataForSEO API Password', 'SP_DFS_API_PASSWORD', '', 'dataforseo', 'large', 1),
(67, 'DataForSEO Balance', 'SP_DFS_BALANCE', '0', 'dataforseo', 'small', 1),
(68, 'Enable for Backlink and Saturation Checker', 'SP_ENABLE_DFS_BACK_SATU', '0', 'dataforseo', 'bool', 1),
(69, 'Enable Sandbox', 'SP_ENABLE_DFS_SANDBOX', '0', 'dataforseo', 'bool', 1),
(70, 'Use Sample API Data (for testing - saves API credits)', 'SP_USE_SAMPLE_API_DATA', '0', 'system', 'bool', 1),
(71, 'Exclude file extensions (comma-separated)', 'SA_EXCLUDE_FILE_EXTENSIONS', 'zip,gz,tar,png,jpg,jpeg,gif,mp3,flv,pdf,m4a,avi,mov,wmv,mp4,doc,docx,xls,xlsx,ppt,pptx,rar,7z,exe,dmg,iso', 'siteauditor', 'text', 1);
-- --------------------------------------------------------
--
-- Table structure for table `skipdirectories`
--
CREATE TABLE `skipdirectories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`directory_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `website_id` (`website_id`,`directory_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `social_media_links`
--
CREATE TABLE `social_media_links` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`name` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`type` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'facebook',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `website_id` (`website_id`,`url`),
KEY `social_media_links_web_rel` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `social_media_link_results`
--
CREATE TABLE `social_media_link_results` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`sm_link_id` int(11) NOT NULL,
`likes` int(11) NOT NULL DEFAULT '0',
`followers` int(11) NOT NULL DEFAULT '0',
`report_date` date NOT NULL,
PRIMARY KEY (`id`),
KEY `social_media_link_rel` (`sm_link_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sync_searchengines`
--
CREATE TABLE `sync_searchengines` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sync_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`status` tinyint(1) NOT NULL DEFAULT '0',
`result` text COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `testplugin`
--
CREATE TABLE `testplugin` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(64) CHARACTER SET latin1 NOT NULL,
`description` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `texts`
--
CREATE TABLE `texts` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`lang_code` varchar(8) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'en',
`category` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'common',
`label` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8_unicode_ci,
`changed` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `language_id` (`lang_code`,`category`,`label`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=41528 ;
--
-- Dumping data for table `texts`
--
INSERT INTO `texts` VALUES
(1, 'en', 'common', 'lang', 'Language', '2019-08-06 10:09:56'),
(2, 'de', 'common', 'lang', 'Sprache', '2021-06-15 01:46:19'),
(3, 'fr', 'common', 'lang', 'Langue', '2020-02-14 16:05:11'),
(4, 'en', 'common', 'contact', 'Contact', '2019-08-06 10:09:56'),
(5, 'en', 'common', 'help', 'Help', '2019-08-06 10:09:56'),
(6, 'en', 'common', 'forum', 'Forum', '2019-08-06 10:09:56'),
(7, 'en', 'common', 'signin', 'Sign in', '2019-08-06 10:09:56'),
(8, 'en', 'common', 'Sign out', 'Sign out', '2019-08-06 10:09:56'),
(9, 'en', 'common', 'Seo Tools', 'Seo Tools', '2019-08-06 10:09:56'),
(10, 'en', 'common', 'Seo Plugins', 'Seo Plugins', '2019-08-06 10:09:56'),
(11, 'en', 'common', 'Support', 'Support', '2019-08-06 10:09:56'),
(12, 'en', 'common', 'Donate', 'Donate', '2019-08-06 10:09:56'),
(13, 'en', 'common', 'My Account', 'My Account', '2019-08-06 10:09:56'),
(14, 'en', 'common', 'Sign Up', 'Sign Up', '2019-08-06 10:09:56'),
(15, 'fr', 'common', 'Support', 'Support', '2020-02-14 16:05:11'),
(16, 'en', 'common', 'User Panel', 'User Panel', '2019-08-06 10:09:56'),
(17, 'en', 'common', 'Admin Panel', 'Admin Panel', '2019-08-06 10:09:56'),
(18, 'en', 'common', 'copyright', 'Copyright © [year] www.seopanel.org All rights reserved', '2019-08-06 10:09:56'),
(39029, 'hr', 'review', 'No review data available', 'Nema dostupnih podataka o recenzijama. <a href="seo-tools.php?menu_sec=review-manager">Dodajte linkove recenzija</a> da biste počeli pratiti svoje recenzije i ocjene.', '2026-01-19 22:58:50'),
(39030, 'hu', 'review', 'No review data available', 'Nincsenek elérhető értékelési adatok. <a href="seo-tools.php?menu_sec=review-manager">Adjon hozzá értékelési hivatkozásokat</a>, hogy elkezdhesse követni értékeléseit és értékeléseit.', '2026-01-19 22:58:50'),
(39031, 'hy', 'review', 'No review data available', 'Ակնարկների տվյալներ չկան: <a href="seo-tools.php?menu_sec=review-manager">Ավելացրեք ակնարկների հղումներ</a>՝ սկսելու հետևել ձեր ակնարկներին և վարկանիշներին:', '2026-01-19 22:58:50'),
(13906, 'el', 'webmaster', 'Average Position', 'Μέση Θέση', '2019-01-29 11:39:00'),
(13907, 'el', 'subscription', 'Edit Email Template', 'Επεξεργασία Email Template', '2019-11-28 23:11:38'),
(13908, 'el', 'subscription', 'Email Template Manager', 'Διαχείριση Θεμάτων Email', '2019-11-28 23:11:38'),
(22, 'en', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel All Plugin Tool kit</h1> \r\n <p>\r\n It includes most of the plugins developed by seo panel team for just <font class="success bold" size="14">$160</font> includes <b>Membership Subscription</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Search Engines Package</h1> \r\n <p>\r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to provide us required search engine domain list.\r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> seo plugins for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and we will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact Us</h1> \r\n <p>\r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and features</b>. Eg: To set up cron for keyword position checker.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Report Bugs</h1> \r\n <p>\r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2019-08-06 10:02:01'),
(23, 'en', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Help Guide</h1> \r\n <p>\r\n You can view the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>help guide</b>, it contains the <b>documentation</b> for the seo panel tools,plugins and related features.\r\n <br>It is the best place in internet to <b>get help</b> about seo panel. We hope that you <b>contribute</b> to the seo panel help guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel help guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n A place to discuss about world''s first open source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your websites. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel forum</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2019-08-06 10:02:01'),
(24, 'en', 'support', 'support_cont3', '<fieldset>\r\n<legend>Donate to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Donate to Seo Panel - First Open source seo control panel in the world</h1> \r\n <p>\r\n <b>Donate</b> to seo panel to support first open source seo control panel in the world.\r\n We are planning to <b>add and improve</b> features of seo panel in future. \r\n <br>With all your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please donate some amount to seo panel team.\r\n <br>We will <b>publish</b> your name and site information in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2019-08-06 10:02:01'),
(25, 'en', 'login', 'Login', 'Login', '2010-09-09 11:50:01'),
(26, 'en', 'login', 'Password', 'Password', '2010-09-09 11:50:01'),
(27, 'en', 'login', 'Register', 'Register', '2010-09-09 11:50:51'),
(46, 'en', 'login', 'User inactive', 'User inactive', '2010-09-09 12:48:22'),
(29, 'en', 'login', 'Create New Account', 'Create New Account', '2010-09-09 12:01:09'),
(30, 'en', 'login', 'Username', 'Username', '2010-09-09 12:01:09'),
(31, 'en', 'login', 'Confirm Password', 'Confirm Password', '2010-09-09 12:02:29'),
(32, 'en', 'login', 'First Name', 'First Name', '2010-09-09 12:02:29'),
(33, 'en', 'login', 'Last Name', 'Last Name', '2010-09-09 12:03:06'),
(34, 'en', 'login', 'Email', 'Email', '2010-09-09 12:03:06'),
(35, 'en', 'login', 'Enter the code as it is shown', 'Enter the code as it is shown', '2010-09-09 12:03:45'),
(36, 'en', 'login', 'Create my account', 'Create my account', '2010-09-09 12:03:45'),
(37, 'en', 'common', 'hidenews', 'Hide Seo Panel News', '2019-08-06 10:09:56'),
(38, 'en', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2019-08-06 10:09:56'),
(39, 'en', 'common', 'Invalid characters', 'Invalid characters', '2019-08-06 10:09:56'),
(40, 'en', 'common', 'entrynotvalid', 'The entry entered doesn''t seem to be valid', '2019-08-06 10:09:56'),
(41, 'en', 'common', 'Invalid value', 'Invalid value', '2019-08-06 10:09:56'),
(42, 'en', 'common', 'Invalid email address entered', 'Invalid email address entered', '2019-08-06 10:09:56'),
(43, 'en', 'common', 'password632', 'The password string should have a length between 6 and 32', '2019-08-06 10:09:56'),
(44, 'en', 'common', 'passwordnotmatch', 'The passwords do not match', '2019-08-06 10:09:56'),
(45, 'en', 'common', 'Invalid code entered', 'Invalid code entered', '2019-08-06 10:09:56'),
(47, 'en', 'login', 'Password incorrect', 'Password incorrect', '2010-09-09 12:48:22'),
(48, 'en', 'login', 'Login incorrect', 'Login incorrect', '2010-09-09 12:48:40'),
(49, 'en', 'login', 'emailexist', 'Email already exist!', '2010-09-09 12:52:17'),
(50, 'en', 'login', 'usernameexist', 'Username already exist!', '2010-09-09 12:52:17'),
(51, 'en', 'login', 'newaccountsuccess', 'New account created successfully!', '2010-09-09 12:52:56'),
(52, 'en', 'login', 'Sign in to your account', 'Sign in to your account', '2010-09-09 12:52:56'),
(53, 'en', 'home', 'Account Summary', 'Account Summary', '2019-08-06 09:55:20'),
(54, 'en', 'home', 'Website Statistics', 'Website Statistics', '2019-08-06 09:55:20'),
(55, 'en', 'home', 'SiteNameUrl', 'Site Name/Url', '2019-08-06 09:55:20'),
(56, 'en', 'home', 'Ranks', 'Ranks', '2019-08-06 09:55:20'),
(57, 'en', 'home', 'Backlinks', 'Backlinks', '2019-08-06 09:55:20'),
(58, 'en', 'home', 'Pages Indexed', 'Pages Indexed', '2019-08-06 09:55:20'),
(59, 'en', 'home', 'Directory Submission', 'Directory Submission', '2019-08-06 09:55:20'),
(60, 'en', 'common', 'Total', 'Total', '2019-08-06 10:09:56'),
(61, 'en', 'common', 'Active', 'Active', '2019-08-06 10:09:56'),
(62, 'en', 'common', 'nowebsites', 'No Websites Found', '2019-08-06 10:09:56'),
(63, 'en', 'common', 'Id', 'Id', '2019-08-06 10:09:56'),
(64, 'de', 'common', 'Active', 'Aktiv', '2021-06-15 01:46:19'),
(65, 'de', 'common', 'Total', 'Gesamt', '2021-06-15 01:46:19'),
(66, 'en', 'seotools', 'keyword-position-checker', 'Keyword Position Checker', '2010-09-09 13:32:00'),
(67, 'en', 'seotools', 'sitemap-generator', 'Sitemap Generator', '2010-09-09 13:32:00'),
(68, 'en', 'seotools', 'rank-checker', 'Rank Checker', '2010-09-09 13:32:17'),
(69, 'en', 'seotools', 'backlink-checker', 'Backlinks Checker', '2010-09-09 13:32:59'),
(70, 'en', 'seotools', 'directory-submission', 'Directory Submission', '2010-09-09 13:32:59'),
(71, 'en', 'seotools', 'saturation-checker', 'Search Engine Saturation', '2010-09-09 13:33:19'),
(72, 'en', 'common', 'noactivetools', 'No Active Seo Tools Found!', '2019-08-06 10:09:56'),
(73, 'en', 'seotools', 'Keyword Position Summary', 'Keyword Position Summary', '2010-09-09 13:43:22'),
(74, 'en', 'seotools', 'Detailed Position Reports', 'Detailed Position Reports', '2010-09-09 13:43:22'),
(75, 'en', 'seotools', 'Graphical Position Reports', 'Graphical Position Reports', '2010-09-09 13:43:40'),
(76, 'en', 'seotools', 'Quick Position Checker', 'Quick Position Checker', '2010-09-09 13:43:40'),
(77, 'en', 'seotools', 'Keywords Manager', 'Keywords Manager', '2010-09-09 13:44:01'),
(78, 'en', 'seotools', 'Generate Keyword Reports', 'Generate Keyword Reports', '2010-09-09 13:44:01'),
(79, 'en', 'seotools', 'Google Sitemap Generator', 'Google Sitemap Generator', '2010-09-09 13:44:20'),
(80, 'en', 'seotools', 'Quick Rank Checker', 'Quick Rank Checker', '2010-09-09 13:44:20'),
(81, 'en', 'seotools', 'Rank Reports', 'Rank Reports', '2010-09-09 13:47:08'),
(82, 'en', 'seotools', 'Generate Rank Reports', 'Generate Rank Reports', '2010-09-09 13:47:08'),
(83, 'en', 'seotools', 'Quick Backlinks Checker', 'Quick Backlinks Checker', '2010-09-09 13:47:25'),
(84, 'en', 'seotools', 'Backlinks Reports', 'Backlinks Reports', '2010-09-09 13:47:25'),
(86, 'en', 'seotools', 'Generate Backlinks Reports', 'Generate Backlinks Reports', '2010-09-09 13:48:45'),
(87, 'en', 'seotools', 'Automatic Submission', 'Automatic Submission', '2010-09-09 13:48:45'),
(88, 'en', 'seotools', 'Featured Submission', 'Featured Submission', '2010-09-09 13:49:45'),
(89, 'en', 'seotools', 'Skipped Directories', 'Skipped Directories', '2010-09-09 13:49:45'),
(90, 'en', 'seotools', 'Submission Reports', 'Submission Reports', '2010-09-09 13:49:45'),
(91, 'en', 'seotools', 'Check Submission Status', 'Check Submission Status', '2010-09-09 13:49:45'),
(92, 'en', 'seotools', 'Quick Saturation Checker', 'Quick Saturation Checker', '2010-09-09 13:49:45'),
(93, 'en', 'seotools', 'Saturation Reports', 'Saturation Reports', '2010-09-09 13:50:06'),
(94, 'en', 'seotools', 'Generate Saturation Reports', 'Generate Saturation Reports', '2010-09-09 13:50:06'),
(95, 'en', 'common', 'Website', 'Website', '2019-08-06 10:09:56'),
(96, 'en', 'common', 'Keyword', 'Keyword', '2019-08-06 10:09:56'),
(97, 'en', 'common', 'No Keywords Found', 'No Keywords Found', '2019-08-06 10:09:56'),
(98, 'en', 'common', 'No Records Found', 'No Records Found', '2019-08-06 10:09:56'),
(99, 'en', 'common', 'Period', 'Period', '2019-08-06 10:09:56'),
(100, 'en', 'common', 'Search Engine', 'Search Engine', '2019-08-06 10:09:56'),
(101, 'en', 'common', 'Country', 'Country', '2019-08-06 10:09:56'),
(102, 'en', 'keyword', 'Detailed Keyword Position Reports', 'Detailed Keyword Position Reports', '2010-09-10 11:57:06'),
(103, 'en', 'common', 'Results', 'Results', '2019-08-06 10:09:56'),
(104, 'en', 'common', 'Rank', 'Rank', '2019-08-06 10:09:56'),
(105, 'en', 'common', 'Date', 'Date', '2019-08-06 10:09:56'),
(106, 'de', 'common', 'Date', 'Datum', '2021-06-15 01:46:19'),
(107, 'de', 'common', 'Rank', 'Rang', '2021-06-15 01:46:19'),
(108, 'en', 'keyword', 'Graphical Keyword Position Reports', 'Graphical Keyword Position Reports', '2010-09-10 12:26:06'),
(109, 'en', 'keyword', 'Keyword Position Report', 'Keyword Position Report', '2010-09-10 12:35:16'),
(110, 'en', 'keyword', 'Quick Keyword Position Checker', 'Quick Keyword Position Checker', '2010-09-10 12:45:24'),
(111, 'en', 'keyword', 'Show All results', 'Show All results', '2010-09-10 12:46:12'),
(112, 'en', 'seotools', 'clickgeneratereports', 'Click on <b>Proceed</b> to generate reports', '2010-09-10 12:50:57'),
(113, 'en', 'common', 'Details', 'Details', '2019-08-06 10:09:56'),
(114, 'en', 'Common', 'Name', 'Name', '2019-08-06 10:09:56'),
(115, 'en', 'common', 'Status', 'Status', '2019-08-06 10:09:56'),
(116, 'en', 'common', 'Action', 'Action', '2019-08-06 10:09:56'),
(117, 'en', 'common', 'Inactivate', 'Inactivate', '2019-08-06 10:09:56'),
(118, 'en', 'common', 'Activate', 'Activate', '2019-08-06 10:09:56'),
(119, 'en', 'common', 'Select', 'Select', '2019-08-06 10:09:56'),
(120, 'en', 'common', 'Edit', 'Edit', '2019-08-06 10:09:56'),
(121, 'en', 'common', 'Delete', 'Delete', '2019-08-06 10:09:56'),
(122, 'en', 'common', 'Reports', 'Reports', '2019-08-06 10:09:56'),
(123, 'en', 'common', 'All', 'All', '2019-08-06 10:09:56'),
(124, 'en', 'common', 'Inactive', 'Inactive', '2019-08-06 10:09:56'),
(125, 'de', 'common', 'Edit', 'Bearbeiten', '2021-06-15 01:46:19'),
(126, 'de', 'common', 'Delete', 'Löschen', '2021-06-15 01:46:19'),
(127, 'en', 'keyword', 'Edit Keyword', 'Edit Keyword', '2010-09-11 11:46:49'),
(128, 'en', 'keyword', 'Keyword already exist', 'Keyword already exist', '2010-09-11 12:06:04'),
(129, 'en', 'keyword', 'New Keyword', 'New Keyword', '2010-09-11 12:08:04'),
(130, 'en', 'keyword', 'Successfully crawled keyword', 'Successfully crawled keyword', '2010-09-11 12:28:06'),
(131, 'en', 'keyword', 'results from ', 'results from ', '2010-09-11 12:28:06'),
(132, 'en', 'keyword', 'not assigned to required search engines', 'not assigned to required search engines', '2010-09-11 12:32:25'),
(133, 'en', 'keyword', 'Crawling keyword', 'Crawling keyword', '2010-09-11 12:32:44'),
(134, 'en', 'common', 'failed', 'failed', '2019-08-06 10:09:56'),
(135, 'en', 'sitemap', 'processtaketime', 'This process will take time according to number of links in your site. Please wait to get sitemap files', '2010-09-11 12:48:08'),
(136, 'en', 'sitemap', 'clickproceedsitemap', 'Click on <b>Proceed</b> to create sitemap file', '2010-09-11 12:48:34'),
(137, 'en', 'sitemap', 'Exclude Url', 'Exclude Url', '2010-09-11 12:48:34'),
(138, 'en', 'common', 'Priority', 'Priority', '2019-08-06 10:09:56'),
(139, 'en', 'sitemap', 'Change frequency', 'Change frequency', '2010-09-11 12:48:56'),
(140, 'en', 'sitemap', 'Sitemap Type', 'Sitemap Type', '2010-09-11 12:49:10'),
(141, 'en', 'sitemap', 'Download sitemap file from', 'Download sitemap file from', '2010-09-11 13:26:47'),
(142, 'en', 'common', 'Found', 'Found', '2019-08-06 10:09:56'),
(143, 'en', 'rank', 'enterurlproceed', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Google and Alexa rank.', '2010-09-14 12:26:31'),
(144, 'en', 'common', 'Url', 'Url', '2019-08-06 10:09:56'),
(145, 'en', 'common', 'Google Pagerank', 'Google Pagerank', '2019-08-06 10:09:56'),
(146, 'en', 'common', 'Alexa Rank', 'Alexa Rank', '2019-08-06 10:09:56'),
(147, 'en', 'rank', 'Google and Alexa Rank Reports', 'Google and Alexa Rank Reports', '2010-09-14 12:32:24'),
(148, 'en', 'rank', 'Saved rank results of', 'Saved rank results of', '2010-09-14 12:44:40'),
(149, 'en', 'backlink', 'clickproceedbacklink', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Backlinks.', '2010-09-14 12:51:24'),
(150, 'en', 'backlink', 'Saved backlink results of', 'Saved backlink results of', '2010-09-14 13:04:29'),
(151, 'en', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick Search Engine Saturation Checker', '2010-09-14 13:07:59'),
(152, 'en', 'saturation', 'clickproceedsaturation', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Search Engine Saturation Results', '2010-09-14 13:09:39'),
(153, 'en', 'saturation', 'Search Engine Saturation Reports', 'Search Engine Saturation Reports', '2010-09-14 13:12:33'),
(154, 'en', 'saturation', 'GenerateSaturationReports', 'Generate Search Engine Saturation Reports', '2010-09-14 13:16:59'),
(155, 'en', 'saturation', 'Saved Search Engine Saturation results of', 'Saved Search Engine Saturation results of', '2010-09-14 13:19:31'),
(156, 'en', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi Automatic Directory Submission Tool', '2010-09-14 13:24:11'),
(157, 'en', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2010-09-14 13:24:25'),
(158, 'en', 'directory', 'selectwebsiteproceed', 'Select a <b>Website</b> to <b>Proceed</b> directory submission.<br>Check <b>Directories with out captcha</b> to submit to directories with out captcha', '2010-09-14 13:26:51'),
(159, 'en', 'directory', 'Please select a website to proceed', 'Please select a website to proceed', '2010-09-14 13:27:39'),
(160, 'en', 'common', 'Crawl Meta Data', 'Crawl Meta Data', '2019-08-06 10:09:56'),
(161, 'en', 'directory', 'Submission Details', 'Submission Details', '2010-09-15 11:54:18'),
(162, 'en', 'directory', 'Owner Name', 'Owner Name', '2010-09-15 11:54:18'),
(163, 'en', 'directory', 'Owner Email', 'Owner Email', '2010-09-15 11:55:08'),
(164, 'en', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary email address.', '2010-09-15 11:55:08'),
(165, 'en', 'directory', 'Website Category', 'Website Category', '2010-09-15 11:58:00'),
(166, 'en', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. Start with Top priority category.', '2010-09-15 11:58:00'),
(167, 'en', 'directory', 'Website Url', 'Website Url', '2010-09-15 11:58:33'),
(168, 'en', 'directory', 'Submit Title', 'Submit Title', '2010-09-15 11:58:33'),
(169, 'en', 'directory', 'Submit Description', 'Submit Description', '2010-09-15 12:01:23'),
(170, 'en', 'directory', 'Submit Keywords', 'Submit Keywords', '2010-09-15 12:01:23'),
(171, 'en', 'directory', 'optionalnote', 'Optional titles and descriptions to submit random title and description to directories for better results.', '2010-09-15 12:02:11'),
(172, 'en', 'directory', 'desnote', 'Some directories require minimum 150 characters for the description field.', '2010-09-15 12:06:57'),
(173, 'en', 'common', 'Category', 'Category', '2019-08-06 10:09:56'),
(174, 'en', 'directory', 'Enter the code shown', 'Enter the code shown', '2010-09-15 12:15:38'),
(175, 'en', 'directory', 'nodirnote', 'No <b>Active</b> directories Found', '2010-09-15 12:17:08'),
(176, 'en', 'directory', 'nocatnote', 'The submission category not found in submission page. Please click on <b>Reload</b> or <b>Skip</b>', '2010-09-15 12:22:50'),
(177, 'en', 'directory', 'nosuccessnote', 'Didn''t get success message, Please check your mail to find the confirm message', '2010-09-15 12:27:40'),
(179, 'en', 'common', 'Directory', 'Directory', '2019-08-06 10:09:56'),
(181, 'en', 'directory', 'Add back to directory list', 'Add back to directory list', '2010-09-15 12:42:58'),
(182, 'en', 'directory', 'Directory Submission Reports', 'Directory Submission Reports', '2010-09-15 12:43:47'),
(183, 'en', 'directory', 'Confirmation', 'Confirmation', '2010-09-15 12:48:25'),
(184, 'en', 'directory', 'Pending', 'Pending', '2010-09-15 12:49:14'),
(185, 'en', 'directory', 'Approved', 'Approved', '2010-09-15 12:49:14'),
(247, 'en', 'proxy', 'Proxy Username', 'Proxy Username', '2010-09-17 12:26:36'),
(187, 'en', 'common', 'No', 'No', '2019-08-06 10:09:56'),
(188, 'en', 'common', 'Yes', 'Yes', '2019-08-06 10:09:56'),
(189, 'en', 'directory', 'Check Directory Submission Status', 'Check Directory Submission Status', '2010-09-15 12:53:21'),
(190, 'en', 'directory', 'selectwebsiteschecksub', 'Select a <b>Website</b> to <b>Proceed</b> check directory submission.', '2010-09-15 12:56:22'),
(191, 'en', 'panel', 'Website Manager', 'Website Manager', '2010-09-15 13:14:20'),
(192, 'en', 'panel', 'User Manager', 'User Manager', '2010-09-15 13:14:20'),
(193, 'en', 'panel', 'Reports Manager', 'Reports Manager', '2010-09-15 13:14:37'),
(194, 'en', 'panel', 'Seo Tools Manager', 'Seo Tools Manager', '2010-09-15 13:14:37'),
(195, 'en', 'panel', 'Seo Plugins Manager', 'Seo Plugins Manager', '2010-09-15 13:14:56'),
(196, 'en', 'panel', 'Directory Manager', 'Directory Manager', '2010-09-15 13:14:56'),
(197, 'en', 'panel', 'Proxy Manager', 'Proxy Manager', '2010-09-15 13:15:14'),
(198, 'en', 'panel', 'System Settings', 'System Settings', '2010-09-15 13:15:14'),
(199, 'en', 'panel', 'My Profile', 'My Profile', '2010-09-15 13:15:25'),
(200, 'en', 'panel', 'New Website', 'New Website', '2010-09-15 13:24:04'),
(201, 'en', 'panel', 'New User', 'New User', '2010-09-15 13:24:04'),
(202, 'en', 'panel', 'Report Generation Manager', 'Report Generation Manager', '2010-09-15 13:25:41'),
(203, 'en', 'panel', 'New Proxy', 'New Proxy', '2010-09-15 13:25:51'),
(204, 'en', 'panel', 'Check Directory', 'Check Directory', '2010-09-15 13:26:31'),
(205, 'en', 'panel', 'Edit My Profile', 'Edit My Profile', '2010-09-15 13:26:53'),
(206, 'de', 'common', 'Select', 'Wählen', '2021-06-15 01:46:19'),
(207, 'en', 'common', 'User', 'User', '2019-08-06 10:09:56'),
(208, 'en', 'button', 'Cancel', 'Cancel', '2010-09-16 10:19:25'),
(209, 'en', 'button', 'Proceed', 'Proceed', '2010-09-16 10:19:25'),
(210, 'en', 'website', 'plscrtwebsite', 'Please create a website before start to using seo tools and seo plugins.', '2010-09-16 10:29:11'),
(211, 'en', 'website', 'yourwebalreday', 'your website if you have already created one.', '2010-09-16 10:34:08'),
(216, 'en', 'website', 'Website already exist', 'Website already exist', '2010-09-16 11:15:40'),
(213, 'en', 'label', 'Title', 'Title', '2010-09-16 10:43:26'),
(214, 'en', 'label', 'Description', 'Description', '2010-09-16 10:43:50'),
(215, 'en', 'label', 'Keywords', 'Keywords', '2010-09-16 10:43:50'),
(217, 'en', 'website', 'Edit Website', 'Edit Website', '2010-09-16 11:18:48'),
(218, 'en', 'user', 'Edit User', 'Edit User', '2010-09-16 11:40:32'),
(219, 'en', 'keyword', 'pleaseselecttool', 'Please select atleast one Seo Tools', '2010-09-16 12:41:49'),
(230, 'en', 'label', 'Upgrade', 'Upgrade', '2010-09-16 13:18:29'),
(229, 'en', 'label', 'Installation', 'Installation', '2010-09-16 13:15:16'),
(227, 'en', 'label', 'Plugin', 'Plugin', '2010-09-16 13:13:44'),
(228, 'en', 'label', 'Author', 'Author', '2010-09-16 13:14:09'),
(225, 'en', 'label', 'Cron', 'Cron', '2010-09-16 13:05:44'),
(226, 'en', 'seotools', 'User Access', 'User Access', '2010-09-16 13:06:49'),
(231, 'en', 'label', 'Re-install', 'Re-install', '2010-09-16 13:18:29'),
(232, 'en', 'plugin', 'Edit Seo Plugin', 'Edit Seo Plugin', '2010-09-16 13:19:06'),
(233, 'en', 'plugin', 'Plugin Name', 'Plugin Name', '2010-09-16 13:20:15'),
(234, 'en', 'plugin', 'Seo Plugin Details', 'Seo Plugin Details', '2010-09-16 13:26:18'),
(235, 'en', 'label', 'Version', 'Version', '2010-09-16 13:26:52'),
(237, 'en', 'directory', 'Captcha', 'Captcha', '2010-09-16 13:36:37'),
(238, 'en', 'button', 'Show Records', 'Show Records', '2010-09-16 13:38:21'),
(239, 'de', 'common', 'Yes', 'Ja', '2021-06-15 01:46:19'),
(240, 'de', 'common', 'No', 'Nein', '2021-06-15 01:46:19'),
(241, 'en', 'directory', 'Check Directory Status', 'Check Directory Status', '2010-09-16 13:51:36'),
(242, 'en', 'directory', 'clicktoproceeddirsts', 'Click on <b>Proceed</b> to Check Directory Status.', '2010-09-16 13:54:05'),
(243, 'en', 'label', 'Proxy', 'Proxy', '2010-09-17 11:51:18'),
(244, 'en', 'label', 'Port', 'Port', '2010-09-17 11:51:18'),
(245, 'en', 'label', 'Authentication', 'Authentication', '2010-09-17 11:51:41'),
(246, 'en', 'button', 'Check Status', 'Check Status', '2010-09-17 11:53:35'),
(248, 'en', 'proxy', 'Proxy Password', 'Proxy Password', '2010-09-17 12:26:36'),
(249, 'en', 'proxy', 'Proxyalreadyexist', 'Proxy already exist!', '2010-09-17 12:30:31'),
(250, 'en', 'proxy', 'Edit Proxy', 'Edit Proxy', '2010-09-17 12:41:24'),
(251, 'en', 'settings', 'SP_TITLE', 'Seo Panel Title', '2018-01-23 00:59:29'),
(252, 'en', 'settings', 'SP_DESCRIPTION', 'Seo Panel Description', '2018-01-23 00:59:29'),
(253, 'en', 'settings', 'SP_KEYWORDS', 'Seo Panel Keywords', '2018-01-23 00:59:29'),
(254, 'en', 'settings', 'SP_PAGINGNO', 'Number of entries per page', '2018-01-23 00:59:29'),
(255, 'en', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider crawl(seconds)', '2018-01-23 00:59:29'),
(256, 'en', 'settings', 'SP_USER_GEN_REPORT', 'Allow user to generate reports', '2018-01-23 00:59:29'),
(257, 'en', 'settings', 'SP_HOTLINKING', 'Image hotlink protection enabled', '2018-01-23 00:59:29'),
(258, 'en', 'settings', 'SP_USER_REGISTRATION', 'User registration interface', '2018-01-23 00:59:29'),
(259, 'en', 'settings', 'SP_ENABLE_PROXY', 'Enable Proxy', '2018-01-23 00:59:29'),
(260, 'en', 'settings', 'syssettingssaved', 'System settings saved successfully!', '2018-01-23 00:59:29'),
(261, 'en', 'user', 'Saved My Profile Details', 'Saved My Profile Details', '2010-09-17 13:36:33'),
(262, 'en', 'button', 'Show Details', 'Show Details', '2010-09-17 14:22:10'),
(263, 'en', 'button', 'Skip', 'Skip', '2010-09-17 14:25:35'),
(264, 'en', 'button', 'Submit', 'Submit', '2010-09-17 14:25:35'),
(265, 'en', 'button', 'Reload', 'Reload', '2010-09-17 14:25:50'),
(266, 'en', 'label', 'wantproceed', 'Do you really want to proceed?', '2010-09-18 10:53:29'),
(267, 'de', 'label', 'wantproceed', 'Wollen Sie wirklich fortfahren?', '2021-01-06 15:13:08'),
(268, 'en', 'label', 'translation by', 'translation by', '2010-09-18 11:29:51'),
(269, 'en', 'label', 'Download', 'Download', '2010-09-18 11:36:36'),
(270, 'en', 'label', 'noactiveplugins', 'No Active Seo Plugins Found!', '2010-09-18 13:52:57'),
(271, 'de', 'backlink', 'clickproceedbacklink', '<b>Pro Zeile</b> eine URL angeben. Auf <b>Starten</b> klicken um Backlinks zu prüfen.', '2021-06-15 01:47:48'),
(272, 'de', 'backlink', 'Saved backlink results of', 'Backlink-Ergebnisse gespeichert ', '2021-06-15 01:47:48'),
(273, 'es', 'backlink', 'clickproceedbacklink', 'Introduzca las URL, <b>una por línea</b>. Haga clic en <b>Continuar</b> para comprobar los backlinks.', '2012-05-31 14:35:06'),
(274, 'es', 'backlink', 'Saved backlink results of', 'Se han guardado los resultados de ', '2012-05-31 14:35:06'),
(275, 'fr', 'backlink', 'clickproceedbacklink', 'Indiquer <b>une URL par ligne</b>. Cliquer sur <b>Valider</b> pour vérifier les liens entrants.', '2010-09-27 14:14:29'),
(276, 'fr', 'backlink', 'Saved backlink results of', 'Résultats enregistrés des liens entrants de ', '2010-09-27 14:14:29'),
(277, 'fr', 'website', 'Edit Website', 'Editer le site web', '2019-03-28 18:44:58'),
(278, 'fr', 'website', 'plscrtwebsite', 'Merci de créer un site web avant d''utiliser les outils et plugins seo.', '2019-03-28 18:44:58'),
(279, 'fr', 'website', 'Website already exist', 'Le site web existe déjà.', '2019-03-28 18:44:58'),
(280, 'fr', 'website', 'yourwebalreday', 'votre site web si vous en avez déjà créé un.', '2019-03-28 18:44:58'),
(281, 'es', 'button', 'Cancel', 'Cancelar', '2014-01-09 00:34:14'),
(282, 'es', 'button', 'Check Status', 'Comprobar estado', '2014-01-09 00:34:14'),
(283, 'es', 'button', 'Proceed', 'Proceder', '2014-01-09 00:34:14'),
(284, 'es', 'button', 'Reload', 'Reintentar', '2014-01-09 00:34:14'),
(285, 'es', 'button', 'Show Details', 'Mostrar detalles', '2014-01-09 00:34:14'),
(286, 'es', 'button', 'Show Records', 'Mostrar registros', '2014-01-09 00:34:14'),
(287, 'es', 'button', 'Skip', 'Omitir', '2014-01-09 00:34:14'),
(288, 'es', 'button', 'Submit', 'Enviar', '2014-01-09 00:34:14'),
(289, 'es', 'common', 'Action', 'Acción', '2019-05-25 22:49:48'),
(290, 'es', 'common', 'Activate', 'Activar', '2019-05-25 22:49:48'),
(291, 'es', 'common', 'Active', 'Activo', '2019-05-25 22:49:48'),
(292, 'es', 'common', 'Admin Panel', 'Panel de administración', '2019-05-25 22:49:48'),
(293, 'es', 'common', 'Alexa Rank', 'Rango Alexa', '2019-05-25 22:49:48'),
(294, 'es', 'common', 'All', 'Todos', '2019-05-25 22:49:48'),
(295, 'es', 'common', 'Category', 'Categoría', '2019-05-25 22:49:48'),
(296, 'es', 'common', 'contact', 'Contacto', '2019-05-25 22:49:48'),
(297, 'es', 'common', 'copyright', 'Derechos de autor © [year] www.seopanel.in Reservados todos los derechos', '2019-05-25 22:49:48'),
(298, 'es', 'common', 'Country', 'País', '2019-05-25 22:49:48'),
(299, 'es', 'common', 'Crawl Meta Data', 'Rastrear Meta Etiquetas', '2019-05-25 22:49:48'),
(300, 'es', 'common', 'Date', 'Fecha', '2019-05-25 22:49:48'),
(301, 'es', 'common', 'Delete', 'Borrar', '2019-05-25 22:49:48'),
(302, 'es', 'common', 'Details', 'Detalles', '2019-05-25 22:49:48'),
(303, 'es', 'common', 'Directory', 'Directorio', '2019-05-25 22:49:48'),
(304, 'es', 'common', 'Donate', 'Donar', '2019-05-25 22:49:48'),
(305, 'es', 'common', 'Edit', 'Editar', '2019-05-25 22:49:48'),
(306, 'es', 'common', 'Entry cannot be blank', 'La entrada no puede estar en blanco', '2019-05-25 22:49:48'),
(307, 'es', 'common', 'entrynotvalid', 'La entrada realizada parece no ser válida.', '2019-05-25 22:49:48'),
(308, 'es', 'common', 'failed', 'ha fallado', '2019-05-25 22:49:48'),
(309, 'es', 'common', 'forum', 'Foro', '2019-05-25 22:49:48'),
(310, 'es', 'common', 'Found', 'Encontrado', '2019-05-25 22:49:48'),
(311, 'es', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:49:48'),
(312, 'es', 'common', 'help', 'Ayuda', '2019-05-25 22:49:48'),
(313, 'es', 'common', 'hidenews', 'Ocultar las noticias del panel Seo.', '2019-05-25 22:49:48'),
(314, 'es', 'common', 'Id', 'Id', '2019-05-25 22:49:48'),
(315, 'es', 'common', 'Inactivate', 'Desactivar', '2019-05-25 22:49:48'),
(316, 'es', 'common', 'Inactive', 'Inactivo', '2019-05-25 22:49:48'),
(317, 'es', 'common', 'Invalid characters', 'Caracteres no válidos', '2019-05-25 22:49:48'),
(318, 'es', 'common', 'Invalid code entered', 'el código es incorrecto', '2019-05-25 22:49:48'),
(319, 'es', 'common', 'Invalid email address entered', 'Entró una dirección de correo electrónico inválida', '2019-05-25 22:49:48'),
(320, 'es', 'common', 'Invalid value', 'Valor no válido', '2019-05-25 22:49:48'),
(321, 'es', 'common', 'Keyword', 'Palabra clave', '2019-05-25 22:49:48'),
(322, 'es', 'common', 'lang', 'Idioma', '2019-05-25 22:49:48'),
(323, 'es', 'common', 'My Account', 'Mi Cuenta', '2019-05-25 22:49:48'),
(324, 'es', 'common', 'Name', 'Nombre', '2019-05-25 22:49:48'),
(325, 'es', 'common', 'No', 'No', '2019-05-25 22:49:48'),
(326, 'es', 'common', 'No Keywords Found', 'No hay palabras clave encontradas', '2019-05-25 22:49:48'),
(327, 'es', 'common', 'No Records Found', 'No se encontraron registros', '2019-05-25 22:49:48'),
(328, 'es', 'common', 'noactivetools', 'No se encontraron Herramientas Seo activas.', '2019-05-25 22:49:48'),
(329, 'es', 'common', 'nowebsites', 'No se encontraron páginas web', '2019-05-25 22:49:48'),
(330, 'es', 'common', 'password632', 'La contraseña debe tener una longitud de entre 6 y 32', '2019-05-25 22:49:48'),
(331, 'es', 'common', 'passwordnotmatch', 'Las contraseñas no coinciden', '2019-05-25 22:49:48'),
(332, 'es', 'common', 'Period', 'Periodo', '2019-05-25 22:49:48'),
(333, 'es', 'common', 'Priority', 'Prioridad', '2019-05-25 22:49:48'),
(334, 'es', 'common', 'Rank', 'Rango', '2019-05-25 22:49:48'),
(335, 'es', 'common', 'Reports', 'Informes', '2019-05-25 22:49:48'),
(336, 'es', 'common', 'Results', 'Resultados', '2019-05-25 22:49:48'),
(337, 'es', 'common', 'Search Engine', 'Motor de búsqueda', '2019-05-25 22:49:48'),
(338, 'es', 'common', 'Select', 'Seleccionar', '2019-05-25 22:49:48'),
(339, 'es', 'common', 'Seo Plugins', 'Plugins Seo', '2019-05-25 22:49:48'),
(340, 'es', 'common', 'Seo Tools', 'Herramientas Seo', '2019-05-25 22:49:48'),
(341, 'es', 'common', 'Sign out', 'Salir', '2019-05-25 22:49:48'),
(342, 'es', 'common', 'Sign Up', 'Regístrate', '2019-05-25 22:49:48'),
(343, 'es', 'common', 'signin', 'Registrarse', '2019-05-25 22:49:48'),
(344, 'es', 'common', 'Status', 'Estado', '2019-05-25 22:49:48'),
(345, 'es', 'common', 'Support', 'Apoyo', '2019-05-25 22:49:48'),
(346, 'es', 'common', 'Total', 'Total', '2019-05-25 22:49:48'),
(347, 'es', 'common', 'Url', 'Url', '2019-05-25 22:49:48'),
(348, 'es', 'common', 'User', 'Usuario', '2019-05-25 22:49:48'),
(349, 'es', 'common', 'User Panel', 'Panel de usuario', '2019-05-25 22:49:48'),
(350, 'es', 'common', 'Website', 'Página web', '2019-05-25 22:49:48'),
(351, 'es', 'common', 'Yes', 'Sí', '2019-05-25 22:49:48'),
(352, 'es', 'directory', 'Add back to directory list', 'Añadir de nuevo a la lista de directorios', '2012-05-31 14:35:43'),
(353, 'es', 'directory', 'Approved', 'Aprobado', '2012-05-31 14:35:43'),
(354, 'es', 'directory', 'Captcha', 'Código anti-Spam', '2012-05-31 14:35:43'),
(355, 'es', 'directory', 'categorynote', 'Categorías, separadas con comas según la prioridad. Comience con categoría de máxima prioridad.', '2012-05-31 14:35:43'),
(356, 'es', 'directory', 'Check Directory Status', 'Comprobar el estado del directorio', '2012-05-31 14:35:43'),
(357, 'es', 'directory', 'Check Directory Submission Status', 'Comprobar el estado de las páginas enviadas a los directorios', '2012-05-31 14:35:43'),
(358, 'es', 'directory', 'clicktoproceeddirsts', 'Hacer clic en <b>Proceder</b> para comprobar el estado del directorio.', '2012-05-31 14:35:43'),
(359, 'es', 'directory', 'Confirmation', 'Confirmación', '2012-05-31 14:35:43'),
(360, 'es', 'directory', 'desnote', 'Algunos directorios requieren como mínimo 150 caracteres para el campo de descripción.', '2012-05-31 14:35:43'),
(361, 'es', 'directory', 'Directories with out captcha', 'Directorios sin captcha o Anti-spam', '2012-05-31 14:35:43'),
(362, 'es', 'directory', 'Directory Submission Reports', 'Informe de los envios a directorios.', '2012-05-31 14:35:43'),
(363, 'es', 'directory', 'Enter the code shown', 'Introduzca el código que se muestra', '2012-05-31 14:35:43'),
(364, 'es', 'directory', 'nocatnote', 'La categoría que configuró no se encuentra en el directorio de destino. Por favor, haga clic en <b>Recargar</b> o <b>Omitir</b>', '2012-05-31 14:35:43'),
(365, 'es', 'directory', 'nodirnote', 'Ningún directorio <b>Activo</b> fue encontrado', '2012-05-31 14:35:43'),
(366, 'es', 'directory', 'nosuccessnote', '¿No hemos recibido confirmación de que su envío haya sido exitoso, por favor revise su correo para encontrar el mensaje de confirmación.', '2012-05-31 14:35:43'),
(367, 'es', 'directory', 'optionalnote', 'Títulos opcionales y descripciones a presentar.Use diferentes títulos y descripciones que nosotros enviaremos al azar para mejorar los resultados.', '2012-05-31 14:35:43'),
(368, 'es', 'directory', 'Owner Email', 'Correo electrónico del propietario', '2012-05-31 14:35:43'),
(369, 'es', 'directory', 'Owner Name', 'Nombre del propietario', '2012-05-31 14:35:43'),
(370, 'es', 'directory', 'Pending', 'Pendiente', '2012-05-31 14:35:43'),
(371, 'es', 'directory', 'Please select a website to proceed', 'Por favor, seleccione una página web para proceder', '2012-05-31 14:35:43'),
(372, 'es', 'directory', 'selectwebsiteproceed', 'Seleccione una <b>Página web</b> para <b>Proceder</b> a el envio del directorio.<br>Seleccione los <b>Directorios sin\r\ncaptcha</b> para enviar solo a directorios sin captcha o anti-spam', '2012-05-31 14:35:43'),
(373, 'es', 'directory', 'selectwebsiteschecksub', 'Seleccione una <b>página web</b> para <b>Proceder</b> Comprobar el envio al directorio.', '2012-05-31 14:35:43'),
(374, 'es', 'directory', 'Semi Automatic Directory Submission Tool', 'Herramienta semiautomática de envío a los directorios.', '2012-05-31 14:35:43'),
(375, 'es', 'directory', 'spamemailnote', 'Algunos directorios le pueden enviar spam, no recomendamos el uso de su dirección de correo electrónico principal.', '2012-05-31 14:35:43'),
(376, 'es', 'directory', 'Submission Details', 'Envio de los detalles', '2012-05-31 14:35:43'),
(377, 'es', 'directory', 'Submit Description', 'Enviar descripción', '2012-05-31 14:35:43'),
(378, 'es', 'directory', 'Submit Keywords', 'Enviar palabras clave', '2012-05-31 14:35:43'),
(379, 'es', 'directory', 'Submit Title', 'Enviar el título', '2012-05-31 14:35:43'),
(380, 'es', 'directory', 'Website Category', 'Categoría del sitio web', '2012-05-31 14:35:43'),
(381, 'es', 'directory', 'Website Url', 'URL del sitio web', '2012-05-31 14:35:43'),
(382, 'fr', 'user', 'Edit User', 'Editer le profil', '2016-01-02 23:14:56'),
(383, 'fr', 'user', 'Saved My Profile Details', 'Votre profil a été sauvegardé.', '2016-01-02 23:14:56'),
(384, 'fr', 'sitemap', 'Change frequency', 'Modifier la fréquence', '2019-03-28 18:40:01'),
(385, 'fr', 'sitemap', 'clickproceedsitemap', 'Cliquer sur <b>Valider</b> pour créer le fichier sitemap', '2019-03-28 18:40:01'),
(386, 'fr', 'sitemap', 'Download sitemap file from', 'Télécharger le fichier sitemap depuis', '2019-03-28 18:40:01'),
(387, 'fr', 'sitemap', 'Exclude Url', 'URL à exclure', '2019-03-28 18:40:01'),
(388, 'fr', 'sitemap', 'processtaketime', 'Le temps de traitement dépends du nombre de liens sur votre site. Merci de patienter pendant la génération du sitemap.', '2019-03-28 18:40:01'),
(389, 'fr', 'sitemap', 'Sitemap Type', 'Type de sitemap', '2019-03-28 18:40:01'),
(390, 'fr', 'login', 'Confirm Password', 'Confirmer le mot de passe', '2019-03-28 16:14:28'),
(391, 'fr', 'login', 'Create my account', 'Créer mon compte', '2019-03-28 16:14:28'),
(392, 'fr', 'login', 'Create New Account', 'Créer un nouveau compte', '2019-03-28 16:14:28'),
(393, 'fr', 'login', 'Email', 'Email', '2019-03-28 16:14:28'),
(394, 'fr', 'login', 'emailexist', 'L''adresse mail existe déjà !', '2019-03-28 16:14:28'),
(395, 'fr', 'login', 'Enter the code as it is shown', 'Veuillez saisir le code qui apparait', '2019-03-28 16:14:28'),
(396, 'fr', 'login', 'First Name', 'Prénom', '2019-03-28 16:14:28'),
(397, 'fr', 'login', 'Last Name', 'Nom', '2019-03-28 16:14:28'),
(398, 'fr', 'login', 'Login', 'Identifiant', '2019-03-28 16:14:28'),
(399, 'fr', 'login', 'Login incorrect', 'Identifiant incorrect', '2019-03-28 16:14:28'),
(400, 'fr', 'login', 'newaccountsuccess', 'Le nouveau compte a bien été créé !', '2019-03-28 16:14:28'),
(401, 'fr', 'login', 'Password', 'Mot de passe', '2019-03-28 16:14:28'),
(402, 'fr', 'login', 'Password incorrect', 'Mot de passe incorrect', '2019-03-28 16:14:28'),
(403, 'fr', 'login', 'Register', 'S''enregistrer', '2019-03-28 16:14:28'),
(404, 'fr', 'login', 'Sign in to your account', 'Connectez-vous', '2019-03-28 16:14:28'),
(405, 'fr', 'login', 'User inactive', 'Utilisateur inactif', '2019-03-28 16:14:28'),
(406, 'fr', 'login', 'Username', 'Nom d''utilisateur', '2019-03-28 16:14:28'),
(407, 'fr', 'login', 'usernameexist', 'Le nom d''utilisateur existe déjà !', '2019-03-28 16:14:28'),
(408, 'fr', 'label', 'Authentication', 'Authentification', '2020-02-14 16:12:40'),
(409, 'fr', 'label', 'Author', 'Auteur', '2020-02-14 16:12:40'),
(410, 'fr', 'label', 'Cron', 'CRON', '2020-02-14 16:12:40'),
(411, 'fr', 'label', 'Description', 'Description', '2020-02-14 16:12:40'),
(412, 'fr', 'label', 'Download', 'Téléchargement', '2020-02-14 16:12:40'),
(413, 'fr', 'label', 'Installation', 'Installation', '2020-02-14 16:12:40'),
(414, 'fr', 'label', 'Keywords', 'Mots clés', '2020-02-14 16:12:40'),
(415, 'fr', 'label', 'noactiveplugins', 'Aucun plugin SEO actif !', '2020-02-14 16:12:40'),
(416, 'fr', 'label', 'Plugin', 'Plugin', '2020-02-14 16:12:40'),
(417, 'fr', 'label', 'Port', 'Port', '2020-02-14 16:12:40'),
(418, 'fr', 'label', 'Proxy', 'Proxy', '2020-02-14 16:12:40'),
(419, 'fr', 'label', 'Re-install', 'Réinstaller', '2020-02-14 16:12:40'),
(420, 'fr', 'label', 'Title', 'Titre', '2020-02-14 16:12:40'),
(421, 'fr', 'label', 'translation by', 'Traduit par', '2020-02-14 16:12:40'),
(422, 'fr', 'label', 'Upgrade', 'Mise à jour', '2020-02-14 16:12:40'),
(423, 'fr', 'label', 'Version', 'Version', '2020-02-14 16:12:40'),
(424, 'fr', 'label', 'wantproceed', 'Voulez-vous vraiment poursuivre ?', '2020-02-14 16:12:40'),
(425, 'fr', 'button', 'Cancel', 'Annuler', '2018-01-23 03:34:22'),
(426, 'fr', 'button', 'Check Status', 'Vérifier', '2018-01-23 03:34:22'),
(427, 'fr', 'button', 'Proceed', 'Valider', '2018-01-23 03:34:22'),
(428, 'fr', 'button', 'Reload', 'Recharger', '2018-01-23 03:34:22'),
(429, 'fr', 'button', 'Show Details', 'Afficher les détails', '2018-01-23 03:34:22'),
(430, 'fr', 'button', 'Show Records', 'Afficher les enregistrements', '2018-01-23 03:34:22'),
(431, 'fr', 'button', 'Skip', 'Passer', '2018-01-23 03:34:22'),
(432, 'fr', 'button', 'Submit', 'Valider', '2018-01-23 03:34:22'),
(433, 'es', 'keyword', 'Crawling keyword', 'Rastreo de palabras clave', '2011-07-07 14:24:15'),
(434, 'es', 'keyword', 'Detailed Keyword Position Reports', 'Informes detallados de posición de palabras clave', '2011-07-07 14:24:15'),
(435, 'es', 'keyword', 'Edit Keyword', 'Editar palabra clave', '2011-07-07 14:24:15'),
(436, 'es', 'keyword', 'Graphical Keyword Position Reports', 'Informe gráfico de la posición de palabras clave', '2011-07-07 14:24:15'),
(437, 'es', 'keyword', 'Keyword already exist', 'Palabra clave ya existe', '2011-07-07 14:24:15'),
(438, 'es', 'keyword', 'Keyword Position Report', 'Informe de posición palabra clave', '2011-07-07 14:24:15'),
(439, 'es', 'keyword', 'New Keyword', 'Nueva palabra clave.', '2011-07-07 14:24:15'),
(440, 'es', 'keyword', 'not assigned to required search engines', 'no asignados a los motores de búsqueda', '2011-07-07 14:24:15'),
(441, 'es', 'keyword', 'pleaseselecttool', 'Por favor, seleccione al menos una herramienta seo.', '2011-07-07 14:24:15'),
(442, 'es', 'keyword', 'Quick Keyword Position Checker', 'Comprobador rápido de posición.', '2011-07-07 14:24:15'),
(443, 'es', 'keyword', 'results from ', 'los resultados de', '2011-07-07 14:24:15'),
(444, 'es', 'keyword', 'Show All results', 'Mostrar todos los resultados', '2011-07-07 14:24:15'),
(445, 'es', 'keyword', 'Successfully crawled keyword', 'Palabra clave rastreada correctamente', '2011-07-07 14:24:15'),
(446, 'es', 'label', 'Authentication', 'Autenticación', '2012-05-12 14:54:10'),
(447, 'es', 'label', 'Author', 'Autor', '2012-05-12 14:54:10'),
(448, 'es', 'label', 'Cron', 'Cron', '2012-05-12 14:54:10'),
(449, 'es', 'label', 'Description', 'Descripción', '2012-05-12 14:54:10'),
(450, 'es', 'label', 'Download', 'Descargar', '2012-05-12 14:54:10'),
(451, 'es', 'label', 'Installation', 'Instalación', '2012-05-12 14:54:10'),
(452, 'es', 'label', 'Keywords', 'Palabras claves', '2012-05-12 14:54:10'),
(453, 'es', 'label', 'noactiveplugins', 'No se encuentra ningún plugin activo.', '2012-05-12 14:54:10'),
(454, 'es', 'label', 'Plugin', 'Plugin', '2012-05-12 14:54:10'),
(455, 'es', 'label', 'Port', 'Port', '2012-05-12 14:54:10'),
(456, 'es', 'label', 'Proxy', 'Proxy', '2012-05-12 14:54:10'),
(457, 'es', 'label', 'Re-install', 'Vuelva a instalar', '2012-05-12 14:54:10'),
(458, 'es', 'label', 'Title', 'Título', '2012-05-12 14:54:10'),
(459, 'es', 'label', 'translation by', 'traducción realizada por', '2012-05-12 14:54:10'),
(460, 'es', 'label', 'Upgrade', 'Mejorar', '2012-05-12 14:54:10'),
(461, 'es', 'label', 'Version', 'Versión', '2012-05-12 14:54:10'),
(462, 'es', 'label', 'wantproceed', '¿Realmente deseas continuar?', '2012-05-12 14:54:10'),
(463, 'es', 'website', 'Edit Website', 'Editar página web', '2012-05-31 14:35:22'),
(464, 'es', 'website', 'plscrtwebsite', 'Por favor, cree un sitio web antes de comenzar a usar las herramientas y los plugins seo.', '2012-05-31 14:35:22'),
(465, 'es', 'website', 'Website already exist', 'Esta página web ya existe', '2012-05-31 14:35:22'),
(466, 'es', 'website', 'yourwebalreday', 'su sitio web si ya ha creado una.', '2012-05-31 14:35:22'),
(467, 'es', 'user', 'Edit User', 'Editar usuario', '2011-03-12 16:37:16'),
(468, 'es', 'user', 'Saved My Profile Details', 'Guardados los datos de mi perfil', '2011-03-12 16:37:16'),
(469, 'es', 'sitemap', 'Change frequency', 'Cambiar frecuencia', '2011-03-12 16:23:32'),
(470, 'es', 'sitemap', 'clickproceedsitemap', 'Haga clic en <b> Continuar </b> para crear el archivo sitemap', '2011-03-12 16:23:32'),
(471, 'es', 'sitemap', 'Download sitemap file from', 'Descargar archivo sitemap desde', '2011-03-12 16:23:32'),
(472, 'es', 'sitemap', 'Exclude Url', 'Excluir Url', '2011-03-12 16:23:32'),
(473, 'es', 'sitemap', 'processtaketime', 'Este proceso llevará su tiempo según el número de enlaces en su sitio. Por favor, espere el tiempo suficiente para conseguir e archivo sitemap', '2011-03-12 16:23:32'),
(474, 'es', 'sitemap', 'Sitemap Type', 'Mapa del sitio Tipo', '2011-03-12 16:23:32'),
(475, 'es', 'saturation', 'clickproceedsaturation', 'Escriba las URL <b> Una por línea </b>. Haga clic en <b> Continuar </b> para comprobar los resultados de motores de búsqueda Saturación', '2011-03-12 16:06:48'),
(476, 'es', 'saturation', 'GenerateSaturationReports', 'Generar informes de saturación del buscador.', '2011-03-12 16:06:48'),
(477, 'es', 'saturation', 'Quick Search Engine Saturation Checker', 'Comprobador rápido del indice de saturación', '2011-03-12 16:06:48'),
(478, 'es', 'saturation', 'Saved Search Engine Saturation results of', 'Guardados indices de saturación de los buscadores de', '2011-03-12 16:06:48'),
(479, 'es', 'saturation', 'Search Engine Saturation Reports', 'Informes de saturación de los buscadores', '2011-03-12 16:06:48'),
(480, 'es', 'rank', 'enterurlproceed', 'Escriba la URL <b> Una por línea </b>. Haga clic en <b> Continuar o Proceder </b> para comprobar el ranking de Google y Alexa.', '2011-03-12 16:03:38'),
(481, 'es', 'rank', 'Google and Alexa Rank Reports', 'Informe de los rankings de Google y Alexa.', '2011-03-12 16:03:38'),
(482, 'es', 'rank', 'Saved rank results of', 'Resultados guardados de', '2011-03-12 16:03:38'),
(483, 'es', 'plugin', 'Edit Seo Plugin', 'Editar Plugin Seo', '2012-05-12 14:55:24'),
(484, 'es', 'plugin', 'Plugin Name', 'Nombre del Plugin', '2012-05-12 14:55:24'),
(485, 'es', 'plugin', 'Seo Plugin Details', 'Detalles del Plugin Seo ', '2012-05-12 14:55:24'),
(486, 'es', 'home', 'Account Summary', 'Resumen de la cuenta', '2012-05-31 14:36:10'),
(487, 'es', 'home', 'Backlinks', 'Backlinks', '2012-05-31 14:36:10'),
(488, 'es', 'home', 'Directory Submission', 'Envío a directorios', '2012-05-31 14:36:10'),
(4672, 'cs', 'website', 'Edit Website', 'Upravit website', '2011-03-21 18:13:51'),
(4673, 'cs', 'website', 'plscrtwebsite', 'Prosím před tím, než začnete používat seo tools a seo plugins, vytvořte website', '2011-03-21 18:13:51'),
(4674, 'cs', 'website', 'Website already exist', 'Website již existuje', '2011-03-21 18:13:51'),
(4675, 'cs', 'website', 'yourwebalreday', 'vaše website, pokud byla již vytvořena.', '2011-03-21 18:13:51'),
(39025, 'fi', 'review', 'No review data available', 'Arvostelujen tietoja ei ole saatavilla. <a href="seo-tools.php?menu_sec=review-manager">Lisää arvostelulinkkejä</a> aloittaaksesi arvostelujesi ja arviointisi seurannan.', '2026-01-19 22:58:50'),
(39026, 'fr', 'review', 'No review data available', 'Aucune donnée d''avis disponible. <a href="seo-tools.php?menu_sec=review-manager">Ajoutez des liens d''avis</a> pour commencer à suivre vos avis et vos notes.', '2026-01-19 22:58:50'),
(39027, 'he', 'review', 'No review data available', 'אין נתונים זמינים של ביקורות. <a href="seo-tools.php?menu_sec=review-manager">הוסף קישורי ביקורת</a> כדי להתחיל לעקוב אחר הביקורות והדירוגים שלך.', '2026-01-19 22:58:50');
INSERT INTO `texts` VALUES
(39028, 'hi', 'review', 'No review data available', 'कोई समीक्षा डेटा उपलब्ध नहीं है। अपनी समीक्षाओं और रेटिंग को ट्रैक करना शुरू करने के लिए <a href="seo-tools.php?menu_sec=review-manager">समीक्षा लिंक जोड़ें</a>।', '2026-01-19 22:58:50'),
(492, 'es', 'home', 'Pages Indexed', 'Páginas indexadas', '2012-05-31 14:36:11'),
(493, 'es', 'home', 'Ranks', 'Rankings', '2012-05-31 14:36:11'),
(494, 'es', 'home', 'SiteNameUrl', 'Nombre del sitio / URL', '2012-05-31 14:36:11'),
(495, 'es', 'home', 'Website Statistics', 'Estadísticas del Sitio', '2012-05-31 14:36:11'),
(496, 'es', 'panel', 'Check Directory', 'Compruebe Directorio', '2012-05-12 14:55:03'),
(497, 'es', 'panel', 'Directory Manager', 'Administrador de directorios', '2012-05-12 14:55:03'),
(498, 'es', 'panel', 'Edit My Profile', 'Modificar mi perfil', '2012-05-12 14:55:03'),
(499, 'es', 'panel', 'My Profile', 'Mi Perfil', '2012-05-12 14:55:03'),
(500, 'es', 'panel', 'New Proxy', 'Nuevo Proxy', '2012-05-12 14:55:03'),
(501, 'es', 'panel', 'New User', 'Nuevo Usuario', '2012-05-12 14:55:03'),
(502, 'es', 'panel', 'New Website', 'Nuevo Sitio Web', '2012-05-12 14:55:03'),
(503, 'es', 'panel', 'Proxy Manager', 'Administrar Proxy', '2012-05-12 14:55:03'),
(504, 'es', 'panel', 'Report Generation Manager', 'Administrador de la generación de informes ', '2012-05-12 14:55:03'),
(505, 'es', 'panel', 'Reports Manager', 'Administrador de informes', '2012-05-12 14:55:03'),
(506, 'es', 'panel', 'Seo Plugins Manager', 'Administrador de plugins Seo', '2012-05-12 14:55:03'),
(507, 'es', 'panel', 'Seo Tools Manager', 'Administración de herramientas Seo', '2012-05-12 14:55:03'),
(508, 'es', 'panel', 'System Settings', 'Configuración del sistema', '2012-05-12 14:55:03'),
(509, 'es', 'panel', 'User Manager', 'Administrador de usuarios', '2012-05-12 14:55:03'),
(510, 'es', 'panel', 'Website Manager', 'Administrador de sitio web', '2012-05-12 14:55:03'),
(511, 'es', 'proxy', 'Edit Proxy', 'Editar Proxy', '2011-03-12 16:00:44'),
(512, 'es', 'proxy', 'Proxy Password', 'Contraseña proxy', '2011-03-12 16:00:44'),
(513, 'es', 'proxy', 'Proxy Username', 'Nombre de usuario proxy', '2011-03-12 16:00:44'),
(514, 'es', 'proxy', 'Proxyalreadyexist', 'Proxy ya existe!', '2011-03-12 16:00:44'),
(515, 'es', 'seotools', 'Automatic Submission', 'Envío automático', '2011-07-13 23:32:41'),
(516, 'es', 'seotools', 'backlink-checker', 'Verificador de backlinks', '2011-07-13 23:32:41'),
(517, 'es', 'seotools', 'Backlinks Reports', 'Informes de backlinks', '2011-07-13 23:32:41'),
(518, 'es', 'seotools', 'Check Submission Status', 'Comprobar el estado de los envios', '2011-07-13 23:32:41'),
(519, 'es', 'seotools', 'clickgeneratereports', 'Haga clic en <b> Continuar </b> para generar informes', '2011-07-13 23:32:41'),
(520, 'es', 'seotools', 'Detailed Position Reports', 'Informes detallados de posición', '2011-07-13 23:32:41'),
(521, 'es', 'seotools', 'directory-submission', 'Directorio sumisión ', '2011-07-13 23:32:41'),
(522, 'es', 'seotools', 'Featured Submission', 'Directorio destacado', '2011-07-13 23:32:41'),
(523, 'es', 'seotools', 'Generate Backlinks Reports', 'Generar Informes de los backlinks', '2011-07-13 23:32:41'),
(524, 'es', 'seotools', 'Generate Keyword Reports', 'Generar informes de palabras clave', '2011-07-13 23:32:41'),
(525, 'es', 'seotools', 'Generate Rank Reports', 'Generar informes de los rankings', '2011-07-13 23:32:41'),
(526, 'es', 'seotools', 'Generate Saturation Reports', 'Generar informes de saturación', '2011-07-13 23:32:41'),
(527, 'es', 'seotools', 'Google Sitemap Generator', 'Generador de Google Sitemap', '2011-07-13 23:32:41'),
(528, 'es', 'seotools', 'Graphical Position Reports', 'Informe de posición gráfico', '2011-07-13 23:32:41'),
(529, 'es', 'seotools', 'Keyword Position Summary', 'Resumen de posición para palabra clave', '2011-07-13 23:32:41'),
(530, 'es', 'seotools', 'keyword-position-checker', 'Verificador de posición palabra clave.', '2011-07-13 23:32:41'),
(531, 'es', 'seotools', 'Keywords Manager', 'Administrador de palabras clave.', '2011-07-13 23:32:41'),
(532, 'es', 'seotools', 'Quick Backlinks Checker', 'Verificador rápido de backlinks', '2011-07-13 23:32:41'),
(533, 'es', 'seotools', 'Quick Position Checker', 'Verificador rápida de posición', '2011-07-13 23:32:41'),
(534, 'es', 'seotools', 'Quick Rank Checker', 'Verificador rápido rankings', '2011-07-13 23:32:41'),
(535, 'es', 'seotools', 'Quick Saturation Checker', 'Verificador rápida de saturación', '2011-07-13 23:32:41'),
(536, 'es', 'seotools', 'Rank Reports', 'Informes Rankings', '2011-07-13 23:32:41'),
(537, 'es', 'seotools', 'rank-checker', 'Verificador Ranking', '2011-07-13 23:32:41'),
(538, 'es', 'seotools', 'Saturation Reports', 'Informes de saturación', '2011-07-13 23:32:41'),
(539, 'es', 'seotools', 'saturation-checker', 'Saturación del motor de búsqueda', '2011-07-13 23:32:41'),
(540, 'es', 'seotools', 'sitemap-generator', 'Generador de sitemap', '2011-07-13 23:32:41'),
(541, 'es', 'seotools', 'Skipped Directories', 'Directorios omitidos', '2011-07-13 23:32:41'),
(542, 'es', 'seotools', 'Submission Reports', 'Informes de los envíos', '2011-07-13 23:32:41'),
(543, 'es', 'seotools', 'User Access', 'Acceso de usuario', '2011-07-13 23:32:41'),
(544, 'es', 'settings', 'SP_CRAWL_DELAY', 'Tiempo de retardo entre cada rastreo de la araña (segundos)', '2012-05-12 15:03:05'),
(545, 'es', 'settings', 'SP_DESCRIPTION', 'Seo Panel Descripción', '2012-05-12 15:03:05'),
(546, 'es', 'settings', 'SP_ENABLE_PROXY', 'Activar Proxy', '2012-05-12 15:03:05'),
(547, 'es', 'settings', 'SP_HOTLINKING', 'Protección de imágenes hotlink activado', '2012-05-12 15:03:05'),
(548, 'es', 'settings', 'SP_KEYWORDS', 'Palabras claves Seo Panel', '2012-05-12 15:03:05'),
(549, 'es', 'settings', 'SP_PAGINGNO', 'Número de entradas por página', '2012-05-12 15:03:05'),
(550, 'es', 'settings', 'SP_TITLE', 'Título Seo Panel', '2012-05-12 15:03:05'),
(551, 'es', 'settings', 'SP_USER_GEN_REPORT', 'Permite a los usuarios generar informes', '2012-05-12 15:03:05'),
(552, 'es', 'settings', 'SP_USER_REGISTRATION', 'Interfaz de usuario para el registro', '2012-05-12 15:03:05'),
(553, 'es', 'settings', 'syssettingssaved', 'La configuración del sistema se han guardado correctamente!', '2012-05-12 15:03:05'),
(554, 'es', 'login', 'Confirm Password', 'Confirmar contraseña', '2011-03-12 15:53:35'),
(555, 'es', 'login', 'Create my account', 'Crear una cuenta', '2011-03-12 15:53:35'),
(556, 'es', 'login', 'Create New Account', 'Crear una cuenta nueva', '2011-03-12 15:53:35'),
(557, 'es', 'login', 'Email', 'Correo electrónico', '2011-03-12 15:53:35'),
(558, 'es', 'login', 'emailexist', 'Correo electrónico ya existe!', '2011-03-12 15:53:35'),
(559, 'es', 'login', 'Enter the code as it is shown', 'Introduzca el código tal como se muestra', '2011-03-12 15:53:35'),
(560, 'es', 'login', 'First Name', 'Nombre', '2011-03-12 15:53:35'),
(561, 'es', 'login', 'Last Name', 'Apellido', '2011-03-12 15:53:35'),
(562, 'es', 'login', 'Login', 'Inicio de sesión', '2011-03-12 15:53:35'),
(563, 'es', 'login', 'Login incorrect', 'Inicio de sesión incorrecto', '2011-03-12 15:53:35'),
(564, 'es', 'login', 'newaccountsuccess', 'Nueva cuenta creada con éxito!', '2011-03-12 15:53:35'),
(565, 'es', 'login', 'Password', 'Contraseña', '2011-03-12 15:53:35'),
(566, 'es', 'login', 'Password incorrect', 'Contraseña incorrecta', '2011-03-12 15:53:35'),
(567, 'es', 'login', 'Register', 'Registro', '2011-03-12 15:53:35'),
(568, 'es', 'login', 'Sign in to your account', 'Acceda a su cuenta', '2011-03-12 15:53:35'),
(569, 'es', 'login', 'User inactive', 'Usuario inactivo', '2011-03-12 15:53:35'),
(570, 'es', 'login', 'Username', 'Nombre de usuario', '2011-03-12 15:53:35'),
(571, 'es', 'login', 'usernameexist', 'Nombre de usuario ya existe!', '2011-03-12 15:53:35'),
(572, 'es', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Sistema de Soporte</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>1000 Directorios Paquete</h1> \r\n <p>\r\n Estamos proporcionando un paquete con <b>1000 directorios en internet activos y verificados</b>, para que los pueda agregar a su Seo Panel dentro de la herramienta para el envio a directorios.\r\n Le ayudará a aumentar los <b> backlilnks </b> de sus sitios web.\r\n \r\nEn realidad la lista de 1000 directorios se realizó para recoger algo de dinero para el futuro <b>\r\ndesarrollo </b> de Seo Panel.\r\n\r\n Para obtener la lista de directorios 1000 por favor <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">realice una donación de </a>\r\n$10 o más para mejorar las características del seo panel.\r\n Si usted tiene alguna pregunta sobre el paquete de 1000 directorios, por favor <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">contáctenos</a> o abrir un ticket en <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">soporte del sistema</a>. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Visite este enlace para donar a seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Paquete de motores de búsqueda local</h1> \r\n <p>\r\n \r\nAñada <b> motores de búsqueda locales </b> de google, yahoo, msn (<b>por ejemplo, : www.google.de, www.google.fr Etc </b>) para que Seo Panel verifique sus palabras clave en buscadores a nivel local.\r\n\r\n\r\n Para obtener el paquete de búsqueda en motores de busqueda locales (de acuerdo a sus necesidades), por favor <a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">realice una donación de</a> $ 10 o más para mejorar las características de seo panel.\r\n Antes de la donación, por favor <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contactenos</a> para que nos proporcione la lista de los buscadores locales.\r\n <br><br> \r\n También para agregar <b> nuevos motores de búsqueda (por ejemplo: baidu.com) </b> para poder comprobar sus mejoras en estos buscadores con sus palabras clave,\r\npor favor <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contactenos</a> o abra un ticket en<a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">la sección de soporte del sistema</a>. \r\n </p> \r\n <p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Visita este enlace para contactar con nosotros</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Añada <b> plugins SEO </b> a su panel seo para <b> ampliar las características </b> de acuerdo a sus requisitos.\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel plugins</a> son proporcionados por el panel seo\r\ny sitios de terceros.\r\n También es posible <b> desarrollar </b> plugins SEO para su panel de seo.\r\n Usted puede <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">presentar</a> su plugin seo a Seo Panel y\r\nvamos a <b>publicarlo</b> en nuestro sitio web después de nuestra <b> revisión</b>. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Visita este enlace para obtener los plugins de Seo Panel</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contactenos</h1> \r\n <p>\r\n Contacte con nosotros para cualquier pregunta sobre las <b>Herramientas Seo Panel, plugins y otras características </b> mediante el uso de este enlace. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Visita este enlace para contactar con nosotros</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Boletos de Soporte</h1> \r\n <p>\r\n Para obtener <b> apoyo técnico</b> del equipo Seo Panel o para configurar el panel de <b>Herramientas Seo o plugins y\r\n otras características </b>. Por ejemplo: Para configurar el cron para la posición corrector de palabras clave.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Visita este enlace para crear un tiket de soporte</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Informar de bugs</h1> \r\n <p>\r\n Informanos de<b>bugs o errores</b> sobre <b>Seo Panel, las herramientas, plugins o características </b> mediante el uso de link de abajo.\r\n Ayudanos a mejorar las características en las versiones siguientes. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Visita este enlace para informar de los errores</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2011-07-13 23:45:23'),
(573, 'es', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Recursos en linea</legend>\r\n<ul class=\\"infobox\\">\r\n \r\n <li>\r\n <h1>Seo Panel Guía de Ayuda</h1> \r\n <p>\r\n Puede ver la <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">seo panel documentación</a> en el\r\n<b>guía de ayuda</b>, que contiene e <b>documentación</b> para el panel de herramientas seo, plugins y afines\r\ncaracterísticas.\r\n <br>Es el mejor lugar en Internet para obtener <b> ayuda </b> acerca del panel de seo. Esperamos que\r\n<b> contribuir </b> para ayudar a la guía del panel seo, si usted encuentra errores o cosas que faltan. \r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Visita seo panel de guía de ayuda</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Foro</h1> \r\n <p>\r\n Un sitio para hablar sobre la primera fuente abierta del mundo <b> seo panel de control </b>.\r\n Es el mejor lugar para encontrar las <b>respuestas </b> para su <b> preguntas </b> acerca del panel de seo. \r\n <br>Además, puede <b> comparte </b> el <b>experiencia</b>, mientras que usando el panel de SEO para optimizar su\r\nsitios web. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Visita seo panel foro</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2011-07-13 23:45:23'),
(574, 'es', 'support', 'support_cont3', '<fieldset>\r\n<legend>Haz una donación a Seo Panel</legend>\r\n<ul class=\\"infobox\\"> \r\n <li>\r\n <h1>Haz una donación a Seo Panel - El primer Open source seo panel de control en el mundo</h1> \r\n <p>\r\n <b>Realiza una donación a </b> Seo Panel para ayudar al primer portal Open Source para el control SEO del mundo.\r\n Estamos planeando añadir y mejorar <b> características </b> del Seo panel en el futuro.\r\n <br>Solo con sus <b> apoyos </b> podremos alcanzar nuesttros <b>objetivos</b>.\r\n Si usted siente que es el panel seo <b> vale la pena </b> para usted, por favor, realice alguna donación para el equipo de Seo Panel.\r\n <br>Nosostros <b> publicararemos </b> su nombre y pápgina web en la sección de donaciónes de nuestra página web <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">Página de donaciones</a>, una vez que tengamos su donación.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Visita este enlace para donar a seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2011-07-13 23:45:23'),
(575, 'en', 'panel', 'Cron Command', 'Cron Command', '2010-09-23 11:43:06'),
(576, 'en', 'panel', 'Add following command to your cron tab', 'Add following command to your cron tab', '2010-09-23 12:04:03'),
(577, 'es', 'panel', 'Add following command to your cron tab', 'Añadir el siguiente comando para el cron del sistema', '2012-05-12 14:55:03'),
(578, 'es', 'panel', 'Cron Command', 'Comando Cron', '2012-05-12 14:55:03'),
(579, 'en', 'panel', 'alsocheckfollowlink', 'Also check following link if you need more details.', '2010-09-23 12:46:30'),
(580, 'es', 'panel', 'alsocheckfollowlink', 'Verifique este link si Ud. necesitas más detalles', '2012-05-12 14:55:03'),
(581, 'en', 'label', 'Click Here', 'Click Here', '2010-09-23 13:22:08'),
(582, 'en', 'keyword', 'to create new keywords', 'to create new keywords', '2010-09-23 13:23:07'),
(583, 'en', 'keyword', 'Import Keywords', 'Import Keywords', '2010-09-26 11:47:00'),
(584, 'en', 'common', 'Keywords', 'Keywords', '2019-08-06 10:09:56'),
(585, 'en', 'label', 'already exist', 'already exist', '2010-09-26 12:08:07'),
(586, 'en', 'panel', 'About Us', 'About Us', '2010-09-26 13:35:05'),
(587, 'en', 'label', 'Developers', 'Developers', '2010-09-26 14:06:56'),
(588, 'en', 'label', 'Translators', 'Translators', '2010-09-26 14:06:56'),
(589, 'en', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Donate $100</b> and become a <b>sponsor</b> of Seo Panel.', '2018-01-23 00:59:29'),
(590, 'en', 'label', 'Sponsors', 'Sponsors', '2010-09-26 14:18:27'),
(591, 'en', 'settings', 'SP_DEFAULTLANG', 'Default Language', '2018-01-23 00:59:29'),
(592, 'fr', 'common', 'Action', 'Action', '2020-02-14 16:05:11'),
(593, 'fr', 'common', 'Activate', 'Activer', '2020-02-14 16:05:11'),
(594, 'fr', 'common', 'Active', 'Activé', '2020-02-14 16:05:11'),
(595, 'fr', 'common', 'Admin Panel', 'Administration', '2020-02-14 16:05:11'),
(596, 'fr', 'common', 'Alexa Rank', 'Rank Alexa', '2020-02-14 16:05:11'),
(597, 'fr', 'common', 'All', 'Tout', '2020-02-14 16:05:11'),
(598, 'fr', 'common', 'Category', 'Catégorie', '2020-02-14 16:05:11'),
(599, 'fr', 'common', 'contact', 'Contact', '2020-02-14 16:05:11'),
(600, 'fr', 'common', 'copyright', 'Copyright © [year] www.seopanel.org Tous droits réservés.', '2020-02-14 16:05:11'),
(601, 'fr', 'common', 'Country', 'Pays', '2020-02-14 16:05:11'),
(602, 'fr', 'common', 'Crawl Meta Data', 'Exploration des métadonnées', '2020-02-14 16:05:11'),
(603, 'fr', 'common', 'Date', 'Date', '2020-02-14 16:05:11'),
(604, 'fr', 'common', 'Delete', 'Supprimer', '2020-02-14 16:05:11'),
(605, 'fr', 'common', 'Details', 'Détails', '2020-02-14 16:05:11'),
(606, 'fr', 'common', 'Directory', 'Annuaire', '2020-02-14 16:05:11'),
(607, 'fr', 'common', 'Donate', 'Faire un don', '2020-02-14 16:05:11'),
(608, 'fr', 'common', 'Edit', 'Editer', '2020-02-14 16:05:11'),
(609, 'fr', 'common', 'Entry cannot be blank', 'Vous devez saisir quelque chose', '2020-02-14 16:05:11'),
(610, 'fr', 'common', 'entrynotvalid', 'La saisie ne semble pas être valide', '2020-02-14 16:05:11'),
(611, 'fr', 'common', 'failed', 'échoué', '2020-02-14 16:05:11'),
(612, 'fr', 'common', 'forum', 'Forum', '2020-02-14 16:05:11'),
(613, 'fr', 'common', 'Found', 'Trouvé', '2020-02-14 16:05:11'),
(614, 'fr', 'common', 'Google Pagerank', 'Google PageRank', '2020-02-14 16:05:11'),
(615, 'fr', 'common', 'help', 'Aide', '2020-02-14 16:05:11'),
(616, 'fr', 'common', 'hidenews', 'Cacher les nouvelles SeoPanel', '2020-02-14 16:05:11'),
(617, 'fr', 'common', 'Id', 'Id', '2020-02-14 16:05:11'),
(618, 'fr', 'common', 'Inactivate', 'Désactiver', '2020-02-14 16:05:11'),
(619, 'fr', 'common', 'Inactive', 'Désactivé', '2020-02-14 16:05:11'),
(620, 'fr', 'common', 'Invalid characters', 'Caractères invalides', '2020-02-14 16:05:11'),
(621, 'fr', 'common', 'Invalid code entered', 'Code incorrect', '2020-02-14 16:05:11'),
(622, 'fr', 'common', 'Invalid email address entered', 'Adresse mail incorrecte', '2020-02-14 16:05:11'),
(623, 'fr', 'common', 'Invalid value', 'Valeur incorrecte', '2020-02-14 16:05:11'),
(624, 'fr', 'common', 'Keyword', 'Mot clé', '2020-02-14 16:05:11'),
(625, 'fr', 'common', 'Keywords', 'Mots clé', '2020-02-14 16:05:11'),
(626, 'fr', 'common', 'My Account', 'Mon compte', '2020-02-14 16:05:11'),
(627, 'fr', 'common', 'Name', 'Nom', '2020-02-14 16:05:11'),
(628, 'fr', 'common', 'No', 'Non', '2020-02-14 16:05:11'),
(629, 'fr', 'common', 'No Keywords Found', 'Aucun mots clé', '2020-02-14 16:05:11'),
(630, 'fr', 'common', 'No Records Found', 'Aucun élément', '2020-02-14 16:05:11'),
(631, 'fr', 'common', 'noactivetools', 'Aucun outil Seo actif trouvé !', '2020-02-14 16:05:11'),
(632, 'fr', 'common', 'nowebsites', 'Aucun site ', '2020-02-14 16:05:11'),
(633, 'fr', 'common', 'password632', 'Le mot de passe doit contenir entre 6 et 32 caractères', '2020-02-14 16:05:11'),
(634, 'fr', 'common', 'passwordnotmatch', 'Les mots de passe ne correspondent pas', '2020-02-14 16:05:11'),
(635, 'fr', 'common', 'Period', 'Période', '2020-02-14 16:05:11'),
(636, 'fr', 'common', 'Priority', 'Priorité', '2020-02-14 16:05:11'),
(637, 'fr', 'common', 'Rank', 'Rang', '2020-02-14 16:05:11'),
(638, 'fr', 'common', 'Reports', 'Rapports', '2020-02-14 16:05:11'),
(639, 'fr', 'common', 'Results', 'Résultats', '2020-02-14 16:05:11'),
(640, 'fr', 'common', 'Search Engine', 'Moteur de recherche', '2020-02-14 16:05:11'),
(641, 'fr', 'common', 'Select', 'Sélection', '2020-02-14 16:05:11'),
(642, 'fr', 'common', 'Seo Plugins', 'Plugins Seo', '2020-02-14 16:05:11'),
(643, 'fr', 'common', 'Seo Tools', 'Outils Seo', '2020-02-14 16:05:11'),
(644, 'fr', 'common', 'Sign out', 'Déconnecter', '2020-02-14 16:05:11'),
(645, 'fr', 'common', 'Sign Up', 'S''enregistrer', '2020-02-14 16:05:11'),
(646, 'fr', 'common', 'signin', 'Se connecter', '2020-02-14 16:05:11'),
(647, 'fr', 'common', 'Status', 'Statut', '2020-02-14 16:05:11'),
(648, 'fr', 'common', 'Total', 'Total', '2020-02-14 16:05:11'),
(649, 'fr', 'common', 'Url', 'Url', '2020-02-14 16:05:11'),
(650, 'fr', 'common', 'User', 'Utilisateur', '2020-02-14 16:05:11'),
(651, 'fr', 'common', 'User Panel', 'Panneau utilisateur', '2020-02-14 16:05:11'),
(652, 'fr', 'common', 'Website', 'Site web', '2020-02-14 16:05:11'),
(653, 'fr', 'common', 'Yes', 'Oui', '2020-02-14 16:05:11'),
(654, 'fr', 'label', 'already exist', 'déjà existant', '2020-02-14 16:12:40'),
(655, 'fr', 'label', 'Click Here', 'Cliquer ici', '2020-02-14 16:12:40'),
(656, 'fr', 'label', 'Developers', 'Développeurs ', '2020-02-14 16:12:40'),
(657, 'fr', 'label', 'Sponsors', 'Sponsors', '2020-02-14 16:12:40'),
(658, 'fr', 'label', 'Translators', 'Traducteurs', '2020-02-14 16:12:40'),
(659, 'fr', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Faire un don $100</b> et devenir un <b>sponsor</b> de Seo Panel.', '2019-03-28 18:39:30'),
(660, 'fr', 'settings', 'SP_CRAWL_DELAY', 'Délai entre chaque exploration (en secondes)', '2019-03-28 18:39:30'),
(661, 'fr', 'settings', 'SP_DEFAULTLANG', 'Langue par défaut', '2019-03-28 18:39:30'),
(662, 'fr', 'settings', 'SP_DESCRIPTION', 'Description', '2019-03-28 18:39:30'),
(663, 'fr', 'settings', 'SP_ENABLE_PROXY', 'Activer le proxy', '2019-03-28 18:39:30'),
(664, 'fr', 'settings', 'SP_HOTLINKING', 'Protection hotlink des images activée', '2019-03-28 18:39:30'),
(665, 'fr', 'settings', 'SP_KEYWORDS', 'Mots clé Seo Panel', '2019-03-28 18:39:30'),
(666, 'fr', 'settings', 'SP_PAGINGNO', 'Nombre d''éléments par page', '2019-03-28 18:39:30'),
(667, 'fr', 'settings', 'SP_TITLE', 'Titre Seo Panel', '2019-03-28 18:39:30'),
(668, 'fr', 'settings', 'SP_USER_GEN_REPORT', 'Autoriser l''utilisateur à générer un rapport', '2019-03-28 18:39:30'),
(669, 'fr', 'settings', 'SP_USER_REGISTRATION', 'Interface d''enregistrement utilisateur', '2019-03-28 18:39:30'),
(670, 'fr', 'settings', 'syssettingssaved', 'Paramètres bien enregistrés !', '2019-03-28 18:39:30'),
(671, 'fr', 'plugin', 'Edit Seo Plugin', 'Editer le module Seo', '2018-01-23 04:02:55'),
(672, 'fr', 'plugin', 'Plugin Name', 'Nom du module', '2018-01-23 04:02:55'),
(673, 'fr', 'plugin', 'Seo Plugin Details', 'Détails du module Seo', '2018-01-23 04:02:55'),
(674, 'fr', 'panel', 'About Us', 'A propos', '2020-02-14 16:14:52'),
(675, 'fr', 'panel', 'Add following command to your cron tab', 'Ajouter la commande suivante à votre crontab', '2020-02-14 16:14:52'),
(676, 'fr', 'panel', 'alsocheckfollowlink', 'Cliquer sur le lien suivant pour plus de détails.', '2020-02-14 16:14:52'),
(677, 'fr', 'panel', 'Check Directory', 'Vérifier l''annuaire', '2020-02-14 16:14:52'),
(678, 'fr', 'panel', 'Cron Command', 'Commande Cron', '2020-02-14 16:14:52'),
(679, 'fr', 'panel', 'Directory Manager', 'Gestionnaire d''annuaires', '2020-02-14 16:14:52'),
(680, 'fr', 'panel', 'Edit My Profile', 'Editer mon profil', '2020-02-14 16:14:52'),
(681, 'fr', 'panel', 'My Profile', 'Mon profil', '2020-02-14 16:14:52'),
(682, 'fr', 'panel', 'New Proxy', 'Nouveau proxy', '2020-02-14 16:14:52'),
(683, 'fr', 'panel', 'New User', 'Nouvel utilisateur', '2020-02-14 16:14:52'),
(684, 'fr', 'panel', 'New Website', 'Nouveau site web', '2020-02-14 16:14:52'),
(685, 'fr', 'panel', 'Proxy Manager', 'Gestion Proxy', '2020-02-14 16:14:52'),
(686, 'fr', 'panel', 'Report Generation Manager', 'Gestion de la génération des rapports', '2020-02-14 16:14:52'),
(687, 'fr', 'panel', 'Reports Manager', 'Gestion des rapports', '2020-02-14 16:14:52'),
(688, 'fr', 'panel', 'Seo Plugins Manager', 'Gestion des plugins Seo', '2020-02-14 16:14:52'),
(689, 'fr', 'panel', 'Seo Tools Manager', 'Gestion des outils Seo', '2020-02-14 16:14:52'),
(690, 'fr', 'panel', 'System Settings', 'Paramètres système', '2020-02-14 16:14:52'),
(691, 'fr', 'panel', 'User Manager', 'Gestion des utilisateurs', '2020-02-14 16:14:52'),
(692, 'fr', 'panel', 'Website Manager', 'Gestion des sites web', '2020-02-14 16:14:52'),
(693, 'fr', 'home', 'Account Summary', 'Résumé du compte', '2020-02-14 16:07:37'),
(694, 'fr', 'home', 'Backlinks', 'Liens entrants', '2020-02-14 16:07:37'),
(695, 'fr', 'home', 'Directory Submission', 'Soumission', '2020-02-14 16:07:37'),
(39022, 'es', 'review', 'No review data available', 'No hay datos de reseñas disponibles. <a href="seo-tools.php?menu_sec=review-manager">Agregue enlaces de reseñas</a> para comenzar a rastrear sus reseñas y calificaciones.', '2026-01-19 22:58:50'),
(39023, 'es-ar', 'review', 'No review data available', 'No hay datos de reseñas disponibles. <a href="seo-tools.php?menu_sec=review-manager">Agregue enlaces de reseñas</a> para comenzar a rastrear sus reseñas y calificaciones.', '2026-01-19 22:58:50'),
(39024, 'fa', 'review', 'No review data available', 'داده های بررسی در دسترس نیست. <a href="seo-tools.php?menu_sec=review-manager">لینک های بررسی را اضافه کنید</a> تا ردیابی بررسی ها و امتیازات خود را شروع کنید.', '2026-01-19 22:58:50'),
(14057, 'fr', 'home', 'Overall Report Summary', 'Rapport résumé global', '2020-02-14 16:07:37'),
(14058, 'fr', 'myaccount', 'Connect', 'Connexion', '2019-03-28 18:32:19'),
(14059, 'fr', 'myaccount', 'Connected', 'Connecté', '2019-03-28 18:32:19'),
(14060, 'fr', 'myaccount', 'Disconnect', 'Déconnexion', '2019-03-28 18:32:19'),
(14061, 'fr', 'myaccount', 'Disconnected', 'Déconnecté', '2019-03-28 18:32:19'),
(699, 'fr', 'home', 'Pages Indexed', 'Pages indexées', '2020-02-14 16:07:37'),
(700, 'fr', 'home', 'Ranks', 'Rangs', '2020-02-14 16:07:37'),
(701, 'fr', 'home', 'SiteNameUrl', 'Nom du site / URL', '2020-02-14 16:07:37'),
(702, 'fr', 'home', 'Website Statistics', 'Statistiques de vos sites', '2020-02-14 16:07:37'),
(703, 'fr', 'directory', 'Add back to directory list', 'Remettre dans la liste des annuaires', '2012-11-11 01:37:55'),
(704, 'fr', 'directory', 'Approved', 'Approuvé', '2012-11-11 01:37:55'),
(705, 'fr', 'directory', 'Captcha', 'Captcha', '2012-11-11 01:37:55'),
(706, 'fr', 'directory', 'categorynote', 'Catégories, à séparer par des virgules, dans l\\''ordre de priorité. Débuter par la catégorie ayant la priorité la plus haute.', '2012-11-11 01:37:55'),
(707, 'fr', 'directory', 'Check Directory Status', 'Vérifier le statut de l\\''annuaire', '2012-11-11 01:37:55'),
(708, 'fr', 'directory', 'Check Directory Submission Status', 'Vérifier le statut de l\\''envoi', '2012-11-11 01:37:55'),
(709, 'fr', 'directory', 'clicktoproceeddirsts', 'Cliquer sur <b>Valider</b> pour vérifier le statut de l\\''annuaire.', '2012-11-11 01:37:55'),
(710, 'fr', 'directory', 'Confirmation', 'Confirmation', '2012-11-11 01:37:55'),
(711, 'fr', 'directory', 'desnote', 'Certains annuaires requiert un minimum de 150 caractères pour la description.', '2012-11-11 01:37:55'),
(712, 'fr', 'directory', 'Directories with out captcha', 'Annuaires sans captcha', '2012-11-11 01:37:55'),
(713, 'fr', 'directory', 'Directory Submission Reports', 'Rapports d\\''envois aux annuaires', '2012-11-11 01:37:55'),
(714, 'fr', 'directory', 'Enter the code shown', 'Veuillez saisir le code indiqué', '2012-11-11 01:37:55'),
(715, 'fr', 'directory', 'nocatnote', 'Catégorie d\\''envoi non trouvée dans la page d\\''envoi. Veuillez cliquer sur <b>Recharger</a> ou <b>Passer</b>', '2012-11-11 01:37:55'),
(716, 'fr', 'directory', 'nodirnote', 'Aucun annuaire <b>actif</b>', '2012-11-11 01:37:55'),
(717, 'fr', 'directory', 'nosuccessnote', 'Aucune confirmation n\\''a été reçue, veuillez vérifier vos mails', '2012-11-11 01:37:55'),
(718, 'fr', 'directory', 'optionalnote', 'Titres et descriptions optionnels à soumettre aléatoirement aux annuaires pour de meilleurs résultats.', '2012-11-11 01:37:55'),
(719, 'fr', 'directory', 'Owner Email', 'Mail du propriétaire', '2012-11-11 01:37:55'),
(720, 'fr', 'directory', 'Owner Name', 'Nom du propriétaire', '2012-11-11 01:37:55'),
(721, 'fr', 'directory', 'Pending', 'En attente', '2012-11-11 01:37:55'),
(722, 'fr', 'directory', 'Please select a website to proceed', 'Veuillez sélectionner un site', '2012-11-11 01:37:55'),
(723, 'fr', 'directory', 'selectwebsiteproceed', 'Sélectionner un <b>site</b> à envoyer à l\\''annuaire. <br>Cocher l\\''option <b>Annuaires sans captcha</b> pour envoyer aux annuaires sans confirmation humaine.', '2012-11-11 01:37:55'),
(724, 'fr', 'directory', 'selectwebsiteschecksub', 'Sélectionner un <b>site</b> à envoyer à l\\''annuaire.', '2012-11-11 01:37:55'),
(725, 'fr', 'directory', 'Semi Automatic Directory Submission Tool', 'Outil de soumission semi automatique', '2012-11-11 01:37:55'),
(726, 'fr', 'directory', 'spamemailnote', 'Certains annuaires envoient des courriers indésirables, nous vous déconseillons d\\''utiliser votre adresse mail principale.', '2012-11-11 01:37:55'),
(727, 'fr', 'directory', 'Submission Details', 'Détails de l\\''envoi', '2012-11-11 01:37:55'),
(728, 'fr', 'directory', 'Submit Description', 'Description', '2012-11-11 01:37:55'),
(729, 'fr', 'directory', 'Submit Keywords', 'Mots-clés', '2012-11-11 01:37:55'),
(730, 'fr', 'directory', 'Submit Title', 'Titre', '2012-11-11 01:37:55'),
(731, 'fr', 'directory', 'Website Category', 'Catégorie', '2012-11-11 01:37:55'),
(732, 'fr', 'directory', 'Website Url', 'URL du site', '2012-11-11 01:37:55'),
(733, 'fr', 'keyword', 'Crawling keyword', 'Mot clé exploré', '2016-01-02 23:07:27'),
(734, 'fr', 'keyword', 'Detailed Keyword Position Reports', 'Rapports détaillés de position sur mot-clé', '2016-01-02 23:07:27'),
(735, 'fr', 'keyword', 'Edit Keyword', 'Editer le mot-clé', '2016-01-02 23:07:27'),
(736, 'fr', 'keyword', 'Graphical Keyword Position Reports', 'Rapport graphique de position sur mot-clé', '2016-01-02 23:07:27'),
(737, 'fr', 'keyword', 'Import Keywords', 'Importer les mots-clés', '2016-01-02 23:07:27'),
(738, 'fr', 'keyword', 'Keyword already exist', 'Le mot-clé existe déjà', '2016-01-02 23:07:27'),
(739, 'fr', 'keyword', 'Keyword Position Report', 'Rapport de position sur mot-clé', '2016-01-02 23:07:27'),
(740, 'fr', 'keyword', 'New Keyword', 'Nouveau mot-clé', '2016-01-02 23:07:27'),
(741, 'fr', 'keyword', 'not assigned to required search engines', 'non assigné aux moteurs de recherches requis', '2016-01-02 23:07:27'),
(742, 'fr', 'keyword', 'pleaseselecttool', 'Merci de sélectionner au moins un outil Seo', '2016-01-02 23:07:27'),
(743, 'fr', 'keyword', 'Quick Keyword Position Checker', 'Contrôle rapide de position sur mot-clé', '2016-01-02 23:07:27'),
(744, 'fr', 'keyword', 'results from ', 'résultats de', '2016-01-02 23:07:27'),
(745, 'fr', 'keyword', 'Show All results', 'Afficher tous les résultats', '2016-01-02 23:07:27'),
(746, 'fr', 'keyword', 'Successfully crawled keyword', 'Exploration réussie du mot-clé', '2016-01-02 23:07:27'),
(747, 'fr', 'keyword', 'to create new keywords', 'pour créer de nouveaux mots-clés', '2016-01-02 23:07:27'),
(748, 'fr', 'proxy', 'Edit Proxy', 'Editer le proxy', '2016-12-09 23:07:31'),
(749, 'fr', 'proxy', 'Proxy Password', 'Mot de passe', '2016-12-09 23:07:31'),
(750, 'fr', 'proxy', 'Proxy Username', 'Nom d''utilisateur', '2016-12-09 23:07:31'),
(751, 'fr', 'proxy', 'Proxyalreadyexist', 'Le proxy existe déjà !', '2016-12-09 23:07:31'),
(752, 'fr', 'rank', 'enterurlproceed', 'Indiquez <b>une URL par ligne</b>. Cliquer sur <b>Valider</b> pour vérifier les rangs Google et Alexa.', '2010-09-28 13:16:21'),
(753, 'fr', 'rank', 'Google and Alexa Rank Reports', 'Rapport de rangs Google et Alexa', '2010-09-28 13:16:21'),
(754, 'fr', 'rank', 'Saved rank results of', 'Résultats sauvegardés', '2010-09-28 13:16:21'),
(755, 'fr', 'saturation', 'clickproceedsaturation', 'Indiquez <b>une URL par ligne</b>. Cliquez sur <b>valider</b> pour vérifier les résultats de saturation des moteurs de recherche.', '2010-09-28 13:18:11'),
(756, 'fr', 'saturation', 'GenerateSaturationReports', 'Générer les rapports de saturation de moteur de recherche', '2010-09-28 13:18:11'),
(757, 'fr', 'saturation', 'Quick Search Engine Saturation Checker', 'Contrôle rapide de saturation des moteurs de recherche', '2010-09-28 13:18:11'),
(758, 'fr', 'saturation', 'Saved Search Engine Saturation results of', 'Résultats sauvegardés', '2010-09-28 13:18:11'),
(759, 'fr', 'saturation', 'Search Engine Saturation Reports', 'Rapports de saturation des moteurs de recherche', '2010-09-28 13:18:11'),
(760, 'fr', 'seotools', 'Automatic Submission', 'Soumission automatisée', '2019-03-28 18:37:48'),
(761, 'fr', 'seotools', 'backlink-checker', 'Contrôle des liens retour', '2019-03-28 18:37:48'),
(762, 'fr', 'seotools', 'Backlinks Reports', 'Rapports sur les liens retour', '2019-03-28 18:37:48'),
(763, 'fr', 'seotools', 'Check Submission Status', 'Vérifier le statut de la soumission', '2019-03-28 18:37:48'),
(764, 'fr', 'seotools', 'clickgeneratereports', 'Cliquer sur <b>Valider</b> pour générer les rapports', '2019-03-28 18:37:48'),
(765, 'fr', 'seotools', 'Detailed Position Reports', 'Rapports détaillés de position', '2019-03-28 18:37:48'),
(766, 'fr', 'seotools', 'directory-submission', 'Soumission annuaire', '2019-03-28 18:37:48'),
(767, 'fr', 'seotools', 'Featured Submission', 'Soumission active', '2019-03-28 18:37:48'),
(768, 'fr', 'seotools', 'Generate Backlinks Reports', 'Générer les rapports de liens retour', '2019-03-28 18:37:48'),
(769, 'fr', 'seotools', 'Generate Keyword Reports', 'Générer les rapports sur le mot-clé', '2019-03-28 18:37:48'),
(770, 'fr', 'seotools', 'Generate Rank Reports', 'Générer les rapports de rangs', '2019-03-28 18:37:48'),
(771, 'fr', 'seotools', 'Generate Saturation Reports', 'Générer les rapports de saturation', '2019-03-28 18:37:48'),
(772, 'fr', 'seotools', 'Google Sitemap Generator', 'Générateur de sitemap Google', '2019-03-28 18:37:48'),
(773, 'fr', 'seotools', 'Graphical Position Reports', 'Rapports graphiques de position', '2019-03-28 18:37:48'),
(774, 'fr', 'seotools', 'Keyword Position Summary', 'Résumé de position sur mot-clé', '2019-03-28 18:37:48'),
(775, 'fr', 'seotools', 'keyword-position-checker', 'Contrôle de position sur mot-clé', '2019-03-28 18:37:48'),
(776, 'fr', 'seotools', 'Keywords Manager', 'Gestionnaire de mots-clés', '2019-03-28 18:37:48'),
(777, 'fr', 'seotools', 'Quick Backlinks Checker', 'Contrôle rapide des liens retour', '2019-03-28 18:37:48'),
(778, 'fr', 'seotools', 'Quick Position Checker', 'Contrôle rapide de position', '2019-03-28 18:37:48'),
(779, 'fr', 'seotools', 'Quick Rank Checker', 'Contrôle rapide de rang', '2019-03-28 18:37:48'),
(780, 'fr', 'seotools', 'Quick Saturation Checker', 'Contrôle rapide de saturation', '2019-03-28 18:37:48'),
(781, 'fr', 'seotools', 'Rank Reports', 'Rapports de rang', '2019-03-28 18:37:48'),
(782, 'fr', 'seotools', 'rank-checker', 'Contrôle de rang', '2019-03-28 18:37:48'),
(783, 'fr', 'seotools', 'Saturation Reports', 'Rapports de saturation', '2019-03-28 18:37:48'),
(784, 'fr', 'seotools', 'saturation-checker', 'Saturation de moteur de recherche', '2019-03-28 18:37:48'),
(785, 'fr', 'seotools', 'sitemap-generator', 'Générateur de Sitemap', '2019-03-28 18:37:48'),
(786, 'fr', 'seotools', 'Skipped Directories', 'Annuaires non traités', '2019-03-28 18:37:48'),
(787, 'fr', 'seotools', 'Submission Reports', 'Rapports de soumission', '2019-03-28 18:37:48'),
(788, 'fr', 'seotools', 'User Access', 'Accès utilisateur', '2019-03-28 18:37:48'),
(789, 'fr', 'support', 'support_cont1', '<fieldset>\r\n<legend>Support Seo Panel</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>Pack de 1000 annuaires</h1> \r\n <p>\r\n Nous pouvons vous fournir un pack de <b>1000 annuaires gratuits, actifs et vérifiés</b>, à ajouter à votre Seo Panel.\r\n Cela vous aidera à <b>augmenter les liens retour</b> vers vos sites.<br/>\r\n Ce pack a été créé pour <b>financer les prochains dévelopements</b> de Seo Panel.<br/>\r\n Pour obtenir le pack, merci de <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donner</a> 10$ ou plus, pour aider à améliorer Seo Panel.<br>\r\n Si vous avez des questions sur ce pack de 1000 annuaires, n\\''hésitez pas à <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">nous contacter</a> ou à <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">ouvrir un ticket</a>.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Cliquer ici pour aider à financer Seo Panel.</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Pack de moteurs de recherche locaux</h1> \r\n <p>\r\n Ajoutez les moteurs de recherche locaux de Google, Yahoo, MSN (<b>ex: www.google.fr, www.yahoo.fr, ...</b>) au <b>contrôle de position sur mot-clé</b>, pour suivre le référencement local de vos sites.<br/>\r\n Pour obtenir le pack de moteurs de recherche locaux (en fonction de vos besoins), merci de <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donner</a> 10$ ou plus pour aider à améliorer Seo Panel.<br/>\r\n Avant de faire le don, merci de <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">nous contacter</a> afin de nous communiquer la liste des moteurs de recherche souhaités.<br><br>\r\n Si vous souhaitez ajouter de <b>nouveaux moteurs de recherches</b> à votre suivi de position sur mot-clé Seo Panel, merci de <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">nous contacter</a> ou d\\''<a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">ouvrir un ticket</a>.\r\n </p> \r\n <p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Cliquer ici pour nous contacter.</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Plugins Seo Panel</h1> \r\n <p>\r\n Ajouter des <b>plugins</b> à votre Seo Panel, afin d\\''ajouter de <b>nouvelles fonctionnalités</b>, selon vos besoins.<br/>\r\n Les <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">plugins Seo Panel</a> sont disponibles via Seo Panel, ou des tiers.<br/>\r\n Vous pouvez facilement <b>développer</b> des plugins pour votre Seo Panel, et <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">soumettre vos plugins</a> sur le site Seo Panel, où ils seront publiés après <b>validation</b>. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Cliquer ici pour obtenir les plugins disponibles.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Nous contacter</h1> \r\n <p>\r\n N\\''hésitez pas à nous contacter à propos des <b>outils, plugins et fonctionnalités de Seo Panel</b> en utilisant le lien ci-dessous.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Cliquer ici pour nous contacter.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Tickets de Support</h1> \r\n <p>\r\n Pour obtenir un <b>support technique</b> de l\\''équipe Seo Panel sur l\\''<b>installation de Seo Panel, des outils ou des plugins</b>. Ex.: Configurer l\\''exécution périodique (cron) du contrôle de position sur mot-clé, résoudre un dysfonctionnement post-installation, ...\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Cliquer ici pour ouvrir un ticket de support technique.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Signaler un bug</h1> \r\n <p>\r\n Signalez les <b>bugs</b> de <b>Seo Panel, des outils ou des plugins</b> en utilisant le lien ci-dessous.<br/>\r\n Cela nous aidera à améliorer les prochaines versions.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Cliquer ici pour signaler un bug.</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2010-09-28 14:36:44'),
(790, 'fr', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel - Ressources en ligne</legend>\r\n<ul class=\\"infobox\\">\r\n \r\n <li>\r\n <h1>L\\''aide Seo Panel</h1> \r\n <p>\r\n Vous pouvez consulter la <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">documentation</a> pour Seo Panel, ses fonctionnalités, ainsi que les outils et plugins.\r\n <br>C\\''est le meilleur endroit pour <b>avoir de l\\''aide</b> sur Seo Panel. Nous espérons que vous pourrez <b>contribuer</b> au guide Seo Panel, si vous trouvez des erreurs ou des choses qui manquent.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Cliquer ici pour voir l\\''aide Seo Panel.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Le forum Seo Panel</h1> \r\n <p>\r\n Un endroit où discuter du <b>premier panneau de contrôle Seo en open source au monde</b>.<br>C\\''est le meilleur endroit pour trouver des <b>réponses</b> à <b>vos questions</b> à propos de Seo Panel.<br>Vous pouvez aussi y <b>partager vos expériences</b> afin d\\''optimiser le référencement de vos sites internet.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Cliquer ici pour aller sur le forum Seo Panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2010-09-28 14:36:44'),
(791, 'fr', 'support', 'support_cont3', '<fieldset>\r\n<legend>Dons pour Seo Panel</legend>\r\n<ul class=\\"infobox\\"> \r\n <li>\r\n <h1>Donnez pour Seo Panel - Le premier panneau de contrôle open source Seo au monde</h1> \r\n <p>\r\n <b>Donnez</b> à Seo Panel pour financer le premier panneau de contrôle open source Seo au monde.<br/>\r\n Nous prévoyons bien sur des <b>ajouts et améliorations</b> des fonctionnalités de Seo Panel, et grâce à votre support, nous pourrons atteindre les <b>buts fixés</b>.\r\n Si <b>vous appréciez Seo Panel</b>, merci de <b>faire un don</b> à l\\''équipe Seo Panel afin d\\''aider à financer son développement.<br/>\r\n Dès réception de votre don, nous publierons, avec votre accord, votre nom et votre site sur la <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">page de dons</a>.\r\n \r\n \r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Cliquer ici pour faire un don</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2010-09-28 14:36:44'),
(792, 'es', 'common', 'Keywords', 'Palabras clave', '2019-05-25 22:49:48'),
(793, 'es', 'keyword', 'Import Keywords', 'Importación de palabras clave.', '2011-07-07 14:24:15'),
(794, 'es', 'keyword', 'to create new keywords', 'para crear nuevas palabras clave', '2011-07-07 14:24:15'),
(795, 'es', 'label', 'already exist', 'ya existen', '2012-05-12 14:54:10'),
(796, 'es', 'label', 'Click Here', 'Haga clic aquí', '2012-05-12 14:54:10'),
(797, 'es', 'label', 'Developers', 'Desarrolladores', '2012-05-12 14:54:10'),
(798, 'es', 'label', 'Sponsors', 'Patrocinadores', '2012-05-12 14:54:10'),
(799, 'es', 'label', 'Translators', 'Traductores', '2012-05-12 14:54:10'),
(800, 'es', 'panel', 'About Us', 'Quiénes somos', '2012-05-12 14:55:03'),
(801, 'es', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Realiza una donación de 100 usd</b> y conviértete en un <b>sponsor</b> de Seo Panel.', '2012-05-12 15:03:05'),
(802, 'es', 'settings', 'SP_DEFAULTLANG', 'Idioma por defecto', '2012-05-12 15:03:05'),
(803, 'de', 'button', 'Cancel', 'Abbrechen', '2021-06-15 01:29:35'),
(804, 'de', 'button', 'Check Status', 'Status prüfen', '2021-06-15 01:29:35'),
(805, 'de', 'button', 'Proceed', 'Speichern', '2021-06-15 01:29:35'),
(806, 'de', 'button', 'Reload', 'Neu laden', '2021-06-15 01:29:35'),
(807, 'de', 'button', 'Show Details', 'Details', '2021-06-15 01:29:35'),
(808, 'de', 'button', 'Show Records', 'Aufzeichnungen', '2021-06-15 01:29:35'),
(809, 'de', 'button', 'Skip', 'Überspringen', '2021-06-15 01:29:35'),
(810, 'de', 'button', 'Submit', 'Übermitteln', '2021-06-15 01:29:35'),
(811, 'de', 'common', 'Action', 'Aktion', '2021-06-15 01:46:19'),
(812, 'de', 'common', 'Activate', 'Aktivieren', '2021-06-15 01:46:19'),
(813, 'de', 'common', 'Admin Panel', 'Adminbereich', '2021-06-15 01:46:19'),
(814, 'de', 'common', 'Alexa Rank', 'Alexa Rank', '2021-06-15 01:46:19'),
(815, 'de', 'common', 'All', 'Alle', '2021-06-15 01:46:19'),
(816, 'de', 'common', 'Category', 'Kategorie', '2021-06-15 01:46:19'),
(817, 'de', 'common', 'contact', 'Kontakt', '2021-06-15 01:46:19'),
(818, 'de', 'common', 'copyright', 'Copyright © [year] www.seopanel.org. Alle Rechte vorbehalten', '2021-06-15 01:46:19'),
(819, 'de', 'common', 'Country', 'Land', '2021-06-15 01:46:19'),
(820, 'de', 'common', 'Crawl Meta Data', 'Meta-Daten abrufen', '2021-06-15 01:46:19'),
(821, 'de', 'common', 'Details', 'Details', '2021-06-15 01:46:19'),
(822, 'de', 'common', 'Directory', 'Verzeichnis', '2021-06-15 01:46:19'),
(823, 'de', 'common', 'Donate', 'Spenden', '2021-06-15 01:46:19'),
(824, 'de', 'common', 'Entry cannot be blank', 'Eintrag kann nicht leer gelassen werden', '2021-06-15 01:46:19'),
(825, 'de', 'common', 'entrynotvalid', 'Das Eingetragene scheint nicht zu stimmen', '2021-06-15 01:46:19'),
(826, 'de', 'common', 'failed', 'fehlgeschlagen', '2021-06-15 01:46:19'),
(827, 'de', 'common', 'forum', 'Forum', '2021-06-15 01:46:19'),
(828, 'de', 'common', 'Found', 'Gefunden', '2021-06-15 01:46:19'),
(829, 'de', 'common', 'Google Pagerank', 'Google Pagerank', '2021-06-15 01:46:19'),
(830, 'de', 'common', 'help', 'Hilfe', '2021-06-15 01:46:19'),
(831, 'de', 'common', 'hidenews', 'SEO Panel News verbergen', '2021-06-15 01:46:19'),
(832, 'de', 'common', 'Id', 'Id', '2021-06-15 01:46:19'),
(833, 'de', 'common', 'Inactivate', 'Deaktivieren', '2021-06-15 01:46:19'),
(834, 'de', 'common', 'Inactive', 'Inaktiv', '2021-06-15 01:46:19'),
(835, 'de', 'common', 'Invalid characters', 'Ungültige Zeichen', '2021-06-15 01:46:19'),
(836, 'de', 'common', 'Invalid code entered', 'Ungültiger Code', '2021-06-15 01:46:19'),
(837, 'de', 'common', 'Invalid email address entered', 'ungültige Mailadresse', '2021-06-15 01:46:19'),
(838, 'de', 'common', 'Invalid value', 'ungültiger Wert', '2021-06-15 01:46:19'),
(839, 'de', 'common', 'Keyword', 'Keyword', '2021-06-15 01:46:19'),
(840, 'de', 'common', 'Keywords', 'Keywords', '2021-06-15 01:46:19'),
(841, 'de', 'common', 'My Account', 'Mein Account', '2021-06-15 01:46:19'),
(842, 'de', 'common', 'Name', 'Name', '2021-06-15 01:46:19'),
(843, 'de', 'common', 'No Keywords Found', 'Keine Keywords vorhanden', '2021-06-15 01:46:19'),
(844, 'de', 'common', 'No Records Found', 'Keine Aufzeichnungen vorhanden', '2021-06-15 01:46:19'),
(845, 'de', 'common', 'noactivetools', 'Keine aktiven SEO Tools vorhanden!', '2021-06-15 01:46:19'),
(846, 'de', 'common', 'nowebsites', 'Keine Webseiten vorhanden', '2021-06-15 01:46:19'),
(847, 'de', 'common', 'password632', 'Das Passwort sollte aus 6-32 Zeichen bestehen', '2021-06-15 01:46:19'),
(848, 'de', 'common', 'passwordnotmatch', 'Die Passwörter stimmen nicht überein', '2021-06-15 01:46:19'),
(849, 'de', 'common', 'Period', 'Zeitraum', '2021-06-15 01:46:19'),
(850, 'de', 'common', 'Priority', 'Priorität', '2021-06-15 01:46:19'),
(851, 'de', 'common', 'Reports', 'Berichte', '2021-06-15 01:46:19'),
(852, 'de', 'common', 'Results', 'Ergebnisse', '2021-06-15 01:46:19'),
(853, 'de', 'common', 'Search Engine', 'Suchmaschine', '2021-06-15 01:46:19'),
(854, 'de', 'common', 'Seo Plugins', 'SEO Erweiterungen', '2021-06-15 01:46:19'),
(855, 'de', 'common', 'Seo Tools', 'SEO Werkzeuge', '2021-06-15 01:46:19'),
(856, 'de', 'common', 'Sign out', 'Ausloggen', '2021-06-15 01:46:19'),
(857, 'de', 'common', 'Sign Up', 'Registrieren', '2021-06-15 01:46:19'),
(858, 'de', 'common', 'signin', 'Einloggen', '2021-06-15 01:46:19'),
(859, 'de', 'common', 'Status', 'Status', '2021-06-15 01:46:19'),
(860, 'de', 'common', 'Support', 'Support', '2021-06-15 01:46:19'),
(861, 'de', 'common', 'Url', 'URL', '2021-06-15 01:46:19'),
(862, 'de', 'common', 'User', 'Benutzer', '2021-06-15 01:46:19'),
(863, 'de', 'common', 'User Panel', 'Benutzerbereich', '2021-06-15 01:46:19'),
(864, 'de', 'common', 'Website', 'Webseite', '2021-06-15 01:46:19');
INSERT INTO `texts` VALUES
(865, 'de', 'directory', 'Add back to directory list', 'Zur Verzeichnissen hinzufügen', '2021-06-15 01:41:51'),
(866, 'de', 'directory', 'Approved', 'Bestätigt', '2021-06-15 01:41:51'),
(867, 'de', 'directory', 'Captcha', 'Captcha', '2021-06-15 01:41:51'),
(868, 'de', 'directory', 'categorynote', 'Kategorien, durch Komma getrennt. Sortiert nach Wichtigkeit.', '2021-06-15 01:41:51'),
(869, 'de', 'directory', 'Check Directory Status', 'Status prüfen', '2021-06-15 01:41:51'),
(870, 'de', 'directory', 'Check Directory Submission Status', 'Eintragungsstatus prüfen', '2021-06-15 01:41:51'),
(871, 'de', 'directory', 'clicktoproceeddirsts', 'Auf <b>Starten</b> klicken um Status zu überprüfen.', '2021-06-15 01:41:51'),
(872, 'de', 'directory', 'Confirmation', 'Bestätigung', '2021-06-15 01:41:51'),
(873, 'de', 'directory', 'desnote', 'Einige Verzeichnisse verlangen mindestens 150 Zeichen als Beschreibung', '2021-06-15 01:41:51'),
(874, 'de', 'directory', 'Directories with out captcha', 'Verzeichnisse ohne Captcha Abfrage', '2021-06-15 01:41:51'),
(875, 'de', 'directory', 'Directory Submission Reports', 'Eintragungs-Berichte', '2021-06-15 01:41:51'),
(876, 'de', 'directory', 'Enter the code shown', 'Gib den angezeigten Code ein', '2021-06-15 01:41:51'),
(877, 'de', 'directory', 'nocatnote', 'Die gewünschte Kategorie existiert nicht in diesem Verzeichnis. <b>Neu laden</b> oder <b>Überspringen</b> ', '2021-06-15 01:41:51'),
(878, 'de', 'directory', 'nodirnote', 'Keine <b>aktiven</b> Verzeichnisse gefunden', '2021-06-15 01:41:51'),
(879, 'de', 'directory', 'nosuccessnote', 'Keine Bestätigung erhalten - Bitte im Email-Postfach nach der Bestätigungsmail schauen.', '2021-06-15 01:41:51'),
(880, 'de', 'directory', 'optionalnote', 'Verschiedene Beschreibungen und Titel angeben um bessere Ergebnisse zu erzielen (Optional).', '2021-06-15 01:41:51'),
(881, 'de', 'directory', 'Owner Email', 'Email-Adresse', '2021-06-15 01:41:51'),
(882, 'de', 'directory', 'Owner Name', 'Vor- und Nachname', '2021-06-15 01:41:51'),
(883, 'de', 'directory', 'Pending', 'Ausstehend...', '2021-06-15 01:41:51'),
(884, 'de', 'directory', 'Please select a website to proceed', 'Bitte Webseite auswählen', '2021-06-15 01:41:51'),
(885, 'de', 'directory', 'selectwebsiteproceed', 'Wähle eine <b>Webseite</b> und <b>starte</b> die Verzeichniseintragung.<br>Setze einen Haken bei <b>Verzeichnisse ohne Captcha Abfrage</b> um Verzeichnisse mit Captcha Abfrage zu überspringen.', '2021-06-15 01:41:51'),
(886, 'de', 'directory', 'selectwebsiteschecksub', 'Wähle eine <b>Webseite</b> und <b>starte</b> die Überprüfung der Verzeichniseintragung.', '2021-06-15 01:41:51'),
(887, 'de', 'directory', 'Semi Automatic Directory Submission Tool', 'Tool für automatische Verzeichnis-Eintragungen', '2021-06-15 01:41:51'),
(888, 'de', 'directory', 'spamemailnote', 'Einige Verzeichnisse versenden SPAM, wir empfehelen nicht die echte Mailadresse anzugeben.', '2021-06-15 01:41:51'),
(889, 'de', 'directory', 'Submission Details', 'Details', '2021-06-15 01:41:51'),
(890, 'de', 'directory', 'Submit Description', 'Beschreibung', '2021-06-15 01:41:51'),
(891, 'de', 'directory', 'Submit Keywords', 'Keywords', '2021-06-15 01:41:51'),
(892, 'de', 'directory', 'Submit Title', 'Title', '2021-06-15 01:41:51'),
(893, 'de', 'directory', 'Website Category', 'Kategorie', '2021-06-15 01:41:51'),
(894, 'de', 'directory', 'Website Url', 'URL', '2021-06-15 01:41:51'),
(895, 'de', 'home', 'Account Summary', 'Account Zusammenfassung', '2021-06-15 01:27:27'),
(896, 'de', 'home', 'Backlinks', 'Backlinks', '2021-06-15 01:27:27'),
(897, 'de', 'home', 'Directory Submission', 'Verzeichniseintragung', '2021-06-15 01:27:27'),
(39017, 'cn', 'review', 'No review data available', '暂无评论数据。<a href="seo-tools.php?menu_sec=review-manager">添加评论链接</a>以开始跟踪您的评论和评分。', '2026-01-19 22:58:50'),
(39018, 'cs', 'review', 'No review data available', 'Nejsou k dispozici žádná data o recenzích. <a href="seo-tools.php?menu_sec=review-manager">Přidejte odkazy na recenze</a>, abyste mohli začít sledovat své recenze a hodnocení.', '2026-01-19 22:58:50'),
(39019, 'da', 'review', 'No review data available', 'Ingen anmeldelsesdata tilgængelige. <a href="seo-tools.php?menu_sec=review-manager">Tilføj anmeldelseslinks</a> for at begynde at spore dine anmeldelser og bedømmelser.', '2026-01-19 22:58:50'),
(39020, 'de', 'review', 'No review data available', 'Keine Bewertungsdaten verfügbar. <a href="seo-tools.php?menu_sec=review-manager">Fügen Sie Bewertungslinks hinzu</a>, um Ihre Bewertungen und Ratings zu verfolgen.', '2026-01-19 22:58:50'),
(39021, 'el', 'review', 'No review data available', 'Δεν υπάρχουν διαθέσιμα δεδομένα αξιολογήσεων. <a href="seo-tools.php?menu_sec=review-manager">Προσθέστε συνδέσμους αξιολογήσεων</a> για να ξεκινήσετε την παρακολούθηση των αξιολογήσεων και των βαθμολογιών σας.', '2026-01-19 22:58:50'),
(15018, 'de', 'label', 'Access denied', 'Zugriff verweigert', '2021-01-06 15:13:08'),
(15019, 'de', 'label', 'Ago', 'Vor', '2021-01-06 15:13:08'),
(15020, 'de', 'label', 'Clicks', 'Klicks', '2021-01-06 15:13:08'),
(901, 'de', 'home', 'Pages Indexed', 'Indizierte Seiten', '2021-06-15 01:27:27'),
(902, 'de', 'home', 'Ranks', 'Positionen', '2021-06-15 01:27:27'),
(903, 'de', 'home', 'SiteNameUrl', 'Seiten Name / URL', '2021-06-15 01:27:27'),
(904, 'de', 'home', 'Website Statistics', 'Website-Statistiken', '2021-06-15 01:27:27'),
(905, 'de', 'keyword', 'Crawling keyword', 'Überprüfe Keyword', '2021-06-15 01:48:29'),
(906, 'de', 'keyword', 'Detailed Keyword Position Reports', 'Detaillierte Keyword Ranking Berichte', '2021-06-15 01:48:29'),
(907, 'de', 'keyword', 'Edit Keyword', 'Keyword bearbeiten', '2021-06-15 01:48:29'),
(908, 'de', 'keyword', 'Graphical Keyword Position Reports', 'Grafische Keyword Ranking Berichte', '2021-06-15 01:48:29'),
(909, 'de', 'keyword', 'Import Keywords', 'Keywords importieren', '2021-06-15 01:48:29'),
(910, 'de', 'keyword', 'Keyword already exist', 'Keyword bereits vorhanden', '2021-06-15 01:48:29'),
(911, 'de', 'keyword', 'Keyword Position Report', 'Keyword Ranking Bericht', '2021-06-15 01:48:29'),
(912, 'de', 'keyword', 'New Keyword', 'Neues Keyword', '2021-06-15 01:48:29'),
(913, 'de', 'keyword', 'not assigned to required search engines', 'nicht vertreten in relevanten Suchmaschinen', '2021-06-15 01:48:29'),
(914, 'de', 'keyword', 'pleaseselecttool', 'Waehle bitte mindestens 1 SEO Tool', '2021-06-15 01:48:29'),
(915, 'de', 'keyword', 'Quick Keyword Position Checker', 'Schneller Keyword Ranking Check', '2021-06-15 01:48:29'),
(916, 'de', 'keyword', 'results from ', 'Ergebnisse von', '2021-06-15 01:48:29'),
(917, 'de', 'keyword', 'Show All results', 'ALLE Ergebnisse anzeigen', '2021-06-15 01:48:29'),
(918, 'de', 'keyword', 'Successfully crawled keyword', 'Keyword erfolgreich geprueft', '2021-06-15 01:48:29'),
(919, 'de', 'keyword', 'to create new keywords', 'um neues Keyword zu erstellen', '2021-06-15 01:48:29'),
(920, 'de', 'label', 'already exist', 'bereits vorhanden', '2021-01-06 15:13:08'),
(921, 'de', 'label', 'Authentication', 'Authentifizierung', '2021-01-06 15:13:08'),
(922, 'de', 'label', 'Author', 'Autor', '2021-01-06 15:13:08'),
(923, 'de', 'label', 'Click Here', 'Hier klicken', '2021-01-06 15:13:08'),
(924, 'de', 'label', 'Cron', 'Cronjob', '2021-01-06 15:13:08'),
(925, 'de', 'label', 'Description', 'Beschreibung', '2021-01-06 15:13:08'),
(926, 'de', 'label', 'Developers', 'Entwickler', '2021-01-06 15:13:08'),
(927, 'de', 'label', 'Download', 'Download', '2021-01-06 15:13:08'),
(928, 'de', 'label', 'Installation', 'Installation', '2021-01-06 15:13:08'),
(929, 'de', 'label', 'Keywords', 'Keywords', '2021-01-06 15:13:08'),
(930, 'de', 'label', 'noactiveplugins', 'Keine aktiven SEO Erweiterungen gefunden!', '2021-01-06 15:13:08'),
(931, 'de', 'label', 'Plugin', 'Erweiterung', '2021-01-06 15:13:08'),
(932, 'de', 'label', 'Port', 'Port', '2021-01-06 15:13:08'),
(933, 'de', 'label', 'Proxy', 'Proxy', '2021-01-06 15:13:08'),
(934, 'de', 'label', 'Re-install', 'Neu-Installation', '2021-01-06 15:13:08'),
(935, 'de', 'label', 'Sponsors', 'Sponsoren', '2021-01-06 15:13:08'),
(936, 'de', 'label', 'Title', 'Titel', '2021-01-06 15:13:08'),
(937, 'de', 'label', 'translation by', 'Uebersetzung von', '2021-01-06 15:13:08'),
(938, 'de', 'label', 'Translators', 'Uebersetzer', '2021-01-06 15:13:08'),
(939, 'de', 'label', 'Upgrade', 'Aufstufen', '2021-01-06 15:13:08'),
(940, 'de', 'label', 'Version', 'Version', '2021-01-06 15:13:08'),
(941, 'de', 'login', 'Confirm Password', 'Passwort bestätigen', '2021-01-06 15:14:32'),
(942, 'de', 'login', 'Create my account', 'Meinen Account erstellen', '2021-01-06 15:14:32'),
(943, 'de', 'login', 'Create New Account', 'Neuen Account erstellen', '2021-01-06 15:14:32'),
(944, 'de', 'login', 'Email', 'Email', '2021-01-06 15:14:32'),
(945, 'de', 'login', 'emailexist', 'Email bereits vorhanden!', '2021-01-06 15:14:32'),
(946, 'de', 'login', 'Enter the code as it is shown', 'Gib bitte den angezeigten Code ein', '2021-01-06 15:14:32'),
(947, 'de', 'login', 'First Name', 'Vorname', '2021-01-06 15:14:32'),
(948, 'de', 'login', 'Last Name', 'Nachname', '2021-01-06 15:14:32'),
(949, 'de', 'login', 'Login', 'Einloggen', '2021-01-06 15:14:32'),
(950, 'de', 'login', 'Login incorrect', 'Falsche Login Informationen', '2021-01-06 15:14:32'),
(951, 'de', 'login', 'newaccountsuccess', 'Account erfolgreich registriert!', '2021-01-06 15:14:32'),
(952, 'de', 'login', 'Password', 'Passwort', '2021-01-06 15:14:32'),
(953, 'de', 'login', 'Password incorrect', 'Falsches Passwort', '2021-01-06 15:14:32'),
(954, 'de', 'login', 'Register', 'Registrieren', '2021-01-06 15:14:32'),
(955, 'de', 'login', 'Sign in to your account', 'In Account einloggen', '2021-01-06 15:14:32'),
(956, 'de', 'login', 'User inactive', 'Benutzer inaktiv', '2021-01-06 15:14:32'),
(957, 'de', 'login', 'Username', 'Benutzername', '2021-01-06 15:14:32'),
(958, 'de', 'login', 'usernameexist', 'Benutzername bereits vorhanden!', '2021-01-06 15:14:32'),
(959, 'de', 'panel', 'About Us', 'Ueber Uns', '2023-01-03 19:44:32'),
(960, 'de', 'panel', 'Add following command to your cron tab', 'Folgendes Kommando zum Cronjob hinzufuegen', '2023-01-03 19:44:32'),
(961, 'de', 'panel', 'alsocheckfollowlink', 'Folgenden Link klicken, falls mehr Details benoetigt werden.', '2023-01-03 19:44:32'),
(962, 'de', 'panel', 'Check Directory', 'Verzeichnis prüfen', '2023-01-03 19:44:32'),
(963, 'de', 'panel', 'Cron Command', 'Cronjob Kommando', '2023-01-03 19:44:32'),
(964, 'de', 'panel', 'Directory Manager', 'Verzeichnis Manager', '2023-01-03 19:44:32'),
(965, 'de', 'panel', 'Edit My Profile', 'Profil bearbeiten', '2023-01-03 19:44:32'),
(966, 'de', 'panel', 'My Profile', 'Mein Profil', '2023-01-03 19:44:32'),
(967, 'de', 'panel', 'New Proxy', 'Neue Proxy', '2023-01-03 19:44:32'),
(968, 'de', 'panel', 'New User', 'Neuer Benutzer', '2023-01-03 19:44:32'),
(969, 'de', 'panel', 'New Website', 'Neue Webseite', '2023-01-03 19:44:32'),
(970, 'de', 'panel', 'Proxy Manager', 'Proxy Manager', '2023-01-03 19:44:32'),
(971, 'de', 'panel', 'Report Generation Manager', 'Berichterstellung Manager', '2023-01-03 19:44:32'),
(972, 'de', 'panel', 'Reports Manager', 'Berichte Manager', '2023-01-03 19:44:32'),
(973, 'de', 'panel', 'Seo Plugins Manager', 'SEO Erweiterungen Manager', '2023-01-03 19:44:32'),
(974, 'de', 'panel', 'Seo Tools Manager', 'SEO Tools Manager', '2023-01-03 19:44:32'),
(975, 'de', 'panel', 'System Settings', 'System Einstellungen', '2023-01-03 19:44:32'),
(976, 'de', 'panel', 'User Manager', 'Benutzer Manager', '2023-01-03 19:44:32'),
(977, 'de', 'panel', 'Website Manager', 'Webseiten Manager', '2023-01-03 19:44:32'),
(978, 'de', 'plugin', 'Edit Seo Plugin', 'SEO Erweiterungen bearbeiten', '2012-05-14 00:53:16'),
(979, 'de', 'plugin', 'Plugin Name', 'Name der Erweiterung', '2012-05-14 00:53:17'),
(980, 'de', 'plugin', 'Seo Plugin Details', 'SEO Erweiterung - Details', '2012-05-14 00:53:17'),
(981, 'de', 'proxy', 'Edit Proxy', 'Proxy bearbeiten', '2021-01-06 15:21:00'),
(982, 'de', 'proxy', 'Proxy Password', 'Proxy Passwort', '2021-01-06 15:21:00'),
(983, 'de', 'proxy', 'Proxy Username', 'Proxy Benutzername', '2021-01-06 15:21:00'),
(984, 'de', 'proxy', 'Proxyalreadyexist', 'Proxy bereits vorhanden!', '2021-01-06 15:21:00'),
(985, 'de', 'rank', 'enterurlproceed', '<b>Pro Zeile</b> eine URL angeben. Auf <b>Starten</b> klicken um Google und Alexa Rank zu prüfen', '2010-09-30 07:03:32'),
(986, 'de', 'rank', 'Google and Alexa Rank Reports', 'Google und Alexa Rank Berichte', '2010-09-30 07:03:32'),
(987, 'de', 'rank', 'Saved rank results of', 'Erfolgreich Ergebnisse gespeichert fuer', '2010-09-30 07:03:32'),
(988, 'de', 'saturation', 'clickproceedsaturation', '<b>Pro Zeile</b> eine URL angeben. Auf <b>Starten</b> klicken um Suchmaschinensichtbarkeit zu prüfen', '2010-09-30 07:05:34'),
(989, 'de', 'saturation', 'GenerateSaturationReports', 'Suchmaschinensichtbarkeits Berichte erstellen', '2010-09-30 07:05:34'),
(990, 'de', 'saturation', 'Quick Search Engine Saturation Checker', 'Schneller Suchmaschinensichtbarkeits Check', '2010-09-30 07:05:34'),
(991, 'de', 'saturation', 'Saved Search Engine Saturation results of', 'Erfolgreich Suchmaschinensichtbarkeits Egebnisse gespeichert für', '2010-09-30 07:05:34'),
(992, 'de', 'saturation', 'Search Engine Saturation Reports', 'Suchmaschinensichtbarkeits Berichte', '2010-09-30 07:05:34'),
(993, 'de', 'seotools', 'Automatic Submission', 'Automatische Eintragung', '2021-01-07 13:40:24'),
(994, 'de', 'seotools', 'backlink-checker', 'Backlink Checker', '2021-01-07 13:40:24'),
(995, 'de', 'seotools', 'Backlinks Reports', 'Backlink Berichte', '2021-01-07 13:40:24'),
(996, 'de', 'seotools', 'Check Submission Status', 'Eintragungsstatus prüfen', '2021-01-07 13:40:24'),
(997, 'de', 'seotools', 'clickgeneratereports', 'Auf <b>Starten</b> klicken, um Berichte zu erstellen', '2021-01-07 13:40:24'),
(998, 'de', 'seotools', 'Detailed Position Reports', 'Detaillierte Ranking Berichte', '2021-01-07 13:40:24'),
(999, 'de', 'seotools', 'directory-submission', 'Verzeichnis Eintragung', '2021-01-07 13:40:24'),
(1000, 'de', 'seotools', 'Featured Submission', 'Empfohlene Eintragung', '2021-01-07 13:40:24'),
(1001, 'de', 'seotools', 'Generate Backlinks Reports', 'Backlink Berichte erstellen', '2021-01-07 13:40:24'),
(1002, 'de', 'seotools', 'Generate Keyword Reports', 'Keyword Berichte erstellen', '2021-01-07 13:40:24'),
(1003, 'de', 'seotools', 'Generate Rank Reports', 'Rank Berichte erstellen', '2021-01-07 13:40:24'),
(1004, 'de', 'seotools', 'Generate Saturation Reports', 'Suchmaschinensichtbarkeits Berichte erstellen', '2021-01-07 13:40:24'),
(1005, 'de', 'seotools', 'Google Sitemap Generator', 'Google Sitemap Generator', '2021-01-07 13:40:24'),
(1006, 'de', 'seotools', 'Graphical Position Reports', 'Grafische Ranking Berichte', '2021-01-07 13:40:24'),
(1007, 'de', 'seotools', 'Keyword Position Summary', 'Keyword Ranking Zusammenfassung', '2021-01-07 13:40:24'),
(1008, 'de', 'seotools', 'keyword-position-checker', 'Keyword Ranking Checker', '2021-01-07 13:40:24'),
(1009, 'de', 'seotools', 'Keywords Manager', 'Keywords Manager', '2021-01-07 13:40:24'),
(1010, 'de', 'seotools', 'Quick Backlinks Checker', 'Schneller Backlink Check', '2021-01-07 13:40:24'),
(1011, 'de', 'seotools', 'Quick Position Checker', 'Schneller Ranking Check', '2021-01-07 13:40:24'),
(1012, 'de', 'seotools', 'Quick Rank Checker', 'Schneller Rank Ckeck', '2021-01-07 13:40:24'),
(1013, 'de', 'seotools', 'Quick Saturation Checker', 'Schneller Suchmaschinensichtbarkeits Ckeck', '2021-01-07 13:40:24'),
(1014, 'de', 'seotools', 'Rank Reports', 'Rank Berichte', '2021-01-07 13:40:24'),
(1015, 'de', 'seotools', 'rank-checker', 'Rank Checker', '2021-01-07 13:40:24'),
(1016, 'de', 'seotools', 'Saturation Reports', 'Sichtbarkeits Berichte', '2021-01-07 13:40:24'),
(1017, 'de', 'seotools', 'saturation-checker', 'Suchmaschinensichtbarkeit', '2021-01-07 13:40:24'),
(1018, 'de', 'seotools', 'sitemap-generator', 'Sitemap Generator', '2021-01-07 13:40:24'),
(1019, 'de', 'seotools', 'Skipped Directories', 'Übersprungene Verzeichnisse', '2021-01-07 13:40:24'),
(1020, 'de', 'seotools', 'Submission Reports', 'Eintragungs Berichte', '2021-01-07 13:40:24'),
(1021, 'de', 'seotools', 'User Access', 'Benutzer Zugriff', '2021-01-07 13:40:24'),
(1022, 'de', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Spende $100</b> und werde SEO Panel <b>Sponsor</b>.', '2021-01-08 13:28:43'),
(1023, 'de', 'settings', 'SP_CRAWL_DELAY', 'Pause zwischen Crawl Abfragen (in Sekunden)', '2021-01-08 13:28:43'),
(1024, 'de', 'settings', 'SP_DEFAULTLANG', 'Standard Sprache', '2021-01-08 13:28:43'),
(1025, 'de', 'settings', 'SP_DESCRIPTION', 'Seo Panel Beschreibung', '2021-01-08 13:28:43'),
(1026, 'de', 'settings', 'SP_ENABLE_PROXY', 'Proxy aktivieren', '2021-01-08 13:28:43'),
(1027, 'de', 'settings', 'SP_HOTLINKING', 'Hotlink Schutz für Grafiken aktiviert', '2021-01-08 13:28:43'),
(1028, 'de', 'settings', 'SP_KEYWORDS', 'SEO Panel Keywords', '2021-01-08 13:28:43'),
(1029, 'de', 'settings', 'SP_PAGINGNO', 'Anzahl an Einträgen pro Seite', '2021-01-08 13:28:43'),
(1030, 'de', 'settings', 'SP_TITLE', 'SEO Panel Titel', '2021-01-08 13:28:43'),
(1031, 'de', 'settings', 'SP_USER_GEN_REPORT', 'Benutzern erlauben Berichte zu erstellen', '2021-01-08 13:28:43'),
(1032, 'de', 'settings', 'SP_USER_REGISTRATION', 'Oberfläche der Benutzer Registrierung', '2021-01-08 13:28:43'),
(1033, 'de', 'settings', 'syssettingssaved', 'System Einstellungen erfolgreich gespeichert!', '2021-01-08 13:28:43'),
(1034, 'de', 'sitemap', 'Change frequency', 'Frequenz ändern', '2021-01-07 13:49:35'),
(1035, 'de', 'sitemap', 'clickproceedsitemap', 'Auf <b>Starten</b> klicken um Sitemap zu erstellen', '2021-01-07 13:49:35'),
(1036, 'de', 'sitemap', 'Download sitemap file from', 'Sitemap Datei herunterladen von', '2021-01-07 13:49:35'),
(1037, 'de', 'sitemap', 'Exclude Url', 'URL ausschließen', '2021-01-07 13:49:35'),
(1038, 'de', 'sitemap', 'processtaketime', 'Dieser Prozess kann einige Minuten in Anspruch nehmen, abhängig von der Anzahl der Links auf der Webseite. Bitte kurz gedulden.', '2021-01-07 13:49:35'),
(1039, 'de', 'sitemap', 'Sitemap Type', 'Sitemap Typ', '2021-01-07 13:49:35'),
(1040, 'de', 'user', 'Edit User', 'Benutzer bearbeiten', '2016-01-03 04:30:39'),
(1041, 'de', 'user', 'Saved My Profile Details', 'Profil Details gespeichert', '2016-01-03 04:30:39'),
(1042, 'de', 'website', 'Edit Website', 'Webseite bearbeiten', '2021-01-07 13:53:49'),
(1043, 'de', 'website', 'plscrtwebsite', 'Bitte erst Webseite erstellen um SEO Tools und Erweiterungen zu nutzen.', '2021-01-07 13:53:49'),
(1044, 'de', 'website', 'Website already exist', 'Webseite bereits vorhanden', '2021-01-07 13:53:49'),
(1045, 'de', 'website', 'yourwebalreday', 'Deine Webseite, falls bereits eine erstellt wurde.', '2021-01-07 13:53:49'),
(1046, 'de', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel - Alle Erweiterungen</h1> \r\n <p>\r\n Enthaelt die meissten vom SEO Panel Team entwickelten Erweiterungen fuer nur <font class="success bold"\r\nsize="14">$160</font> inklusive <b>Mitglieder Abonnement</b>,<b>Templates</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Hier klicken um zu bestellen</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li> \r\n <h1>Das Lokale-Suchmaschinen-Paket</h1> \r\n <p>\r\n Fuege <b>lokale Suchmaschinendomains</b> fuer google,yahoo,msn(<b>z.B: www.google.de,www.google.fr etc</b>) zum Seo Panel <b>Keyword Ranking Checker</b> hinzu, um das Ranking lokal zu analysieren.\r\n Um lokale Suchmaschinen-Pakete zu erhalten, bitte <a href="<?=SP_DONATE_LINK?>" target="_blank">spende</a> $10 oder mehr um SEO Panel zu verbessern.\r\n Bevor du spendest, nimm bitte <a href="<?=SP_CONTACT_LINK?>" target="_blank">Kontakt</a> auf und nenne uns die benoetigten Suchmaschinen Laenderkennzeichnungen.\r\n <br><br> \r\n Um <b>neue Suchmaschinen(z.B.:baidu.com)</b> hinzuzufuegen, nimm bitte <a href="<?=SP_CONTACT_LINK?>" target="_blank">Kontakt</a> auf oder oeffne ein Ticket im <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Support System</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Hier klicken um Kontakt aufzunehmen.</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Erweiterungen</h1> \r\n <p>\r\n Integriere <b>SEO Erweiterungen</b> in Seo Panel, um die <b>Features zu erweiteren</b> um Sie deinen Anforderungen anzupassen.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo Panel Erweiterungen</a> sind erhaeltlich von Seo Panel und Drittanbietern.\r\n Es ist auch leicht, selbst Erweiterungen fuer Seo Panel zu <b>entwickeln</b>.\r\n Du kannst deine eigene Erweiterung <a href="<?=SP_PLUGINSITE?>" target="_blank">uebermitteln</a> und wir werden es auf der webseite <b>veroeffentlichen</b>. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Hier klicken fuer Seo Panel Erweiterungen</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Kontakt</h1> \r\n <p>\r\n Nimm mit uns Kontakt auf, wenn Fragen zu <b>Seo Panel Tools, Erweiterungen, etc..</b> bestehen. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Hier klicken um Kontakt aufzunehmen.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n Fuer <b>technischen Support</b> vom Seo Panel Team.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Hier klicken um ein Support Ticken zu oeffnen.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Fehler berichten.</h1> \r\n <p>\r\n Berichte uns von <b>Fehlern</b> ueber <b>Seo panel Tools, Erweiterungen, etc. </b> durch klick auf diesen Link. \r\n Bitte unterstuetze uns, Seo Panel in der Zukunft zu verbessern. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Hier klicken um einen Fehler zu berichten.</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>\r\n', '2021-01-29 18:30:54'),
(1047, 'de', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Ressourcen</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Hilfe</h1> \r\n <p>\r\n Schau dir die <a href="<?=SP_HELP_LINK?>" target="_blank">Seo Panel Dokumentation</a> in der <b>Hilfestellung</b> an. Diese beinhaltet die <b>Dokumentation</b> ueber Seo Panel Tools, Erweiterungen und vieles mehr.\r\n <br>Dies ist der beste Platz im Internet um <b>Hilfe</b> fuer Seo Panel zu erhalten. Wir bitten darum im SEO Panel "help guide" darueber zu <b>berichten</b> falls Fehler entdeckt werden. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Hier klicken um zum Hilfe-Bereich zu gelangen.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n Der Platz um ueber das weltweit erste Open Source <b>Seo Control Panel</b> zu diskutieren. \r\n Der beste Platz um <b>Antworten</b> auf <b>deine Fragen</b> ueber Seo Panel zu finden.\r\n <br>Hier koennen auch <b>Erfahrungen ausgetauscht werden</b>. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Hier klicken um zum Seo Panel Forum zu gelangen.</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2021-01-29 18:30:54'),
(1048, 'de', 'support', 'support_cont3', '<fieldset>\r\n<legend>Fuer SEO Panel spenden</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Spende fuer die zukuenftige SEO Panel Entwicklung - Das erste Open Source Seo Control Panel weltweit.</h1> \r\n <p>\r\n <b>Spende</b> an Seo Panel um die weltweit erste Open Source SEO Software zu unterstuetzen.\r\n Es ist geplant in der Zukunft weitere Features <b>hinzuzufügen und zu verbessern</b> . \r\n <br>Nur mit dem <b>Support</b> unserer Benutzer ist es moeglich unsere <b>Ziele</b> zu erreichen.\r\n Bist du der Meinung, Seo Panel ist <b>nuetzlich</b> fuer dich, gib bitte eine kleine Spende ab.\r\n <br>Wir werden deinen Namen und deine Webseite auf unserer <a href="<?=SP_DONATE_LINK?>" target="_blank">Spendenseite</a> <b>veroeffentlichen</b> \r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Hier klicken um fuer Seo Panel zu spenden</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2021-01-29 18:30:54'),
(1049, 'en', 'settings', 'seopanel_title', 'Seo Panel: World''s first open source seo control panel for managing multiple web sites', '2018-01-23 00:59:29'),
(1050, 'en', 'settings', 'seopanel_description', 'A complete free control panel for managing search engine optimization of your websites. It containing lots of hot seo tools to increase and track the performace your websites. Its an open source software and also you can develop your own seo plugins for seo panel.', '2018-01-23 00:59:29'),
(1051, 'de', 'settings', 'seopanel_description', 'Ein vollkommen kostenloses Kontrollzentrum zur Verwaltung der Suchmaschinenoptimierung deiner\r\nWebseiten. Es beinhaltet die wichtigsten SEO Tools um die Leistung deiner Webseiten zu analysieren und verbessern.\r\nEs handelt sich um Open Source Software, du kannst also selbst SEO Erweiterungen für dein SEO Panel entwickeln.', '2021-01-08 13:28:43'),
(1052, 'de', 'settings', 'seopanel_title', 'SEO Panel: Das weltweit erste Open Source Kontrollzentrum zur Verwaltung mehrerer Webseiten.', '2021-01-08 13:28:43'),
(1053, 'es', 'settings', 'seopanel_description', 'Un completo panel de control gratuito para la gestión de la optimización para buscadores de su sitios. Que contiene un montón de herramientas seo de gran utilidad para realizar el seguimiento del rendimiento de su sitios web. Se trata de un software de código abierto y también ud. puede desarrollar sus propios plugins para el panel de control.', '2012-05-12 15:03:05'),
(1054, 'es', 'settings', 'seopanel_title', 'Seo Panel: Primero programa del mundo open source para la gestión Seo de varios sitios web', '2012-05-12 15:03:05'),
(1055, 'fr', 'settings', 'seopanel_description', 'Un outil de contrôle complet, gratuit, pour gérer le référencement de vos sites internet. SEO Panel inclut de nombreux outils SEO pour suivre et améliorer les performances de vos sites. Il s''agit d''un logiciel open source pour lequel vous pouvez développer vos propres extensions.', '2019-03-28 18:39:30'),
(1056, 'fr', 'settings', 'seopanel_title', 'SEO Panel: le premier outil de contrôle de référencement multisite open source au monde', '2019-03-28 18:39:30'),
(1840, 'nl', 'common', 'Invalid code entered', 'Ongeldige code ingevoerd', '2019-05-25 22:06:08'),
(1841, 'nl', 'common', 'Invalid email address entered', 'Ongeldig e-mailadres ingevoerd', '2019-05-25 22:06:08'),
(1839, 'nl', 'common', 'Invalid characters', 'Ongeldige karakters', '2019-05-25 22:06:08'),
(1838, 'nl', 'common', 'Inactive', 'Inactief', '2019-05-25 22:06:08'),
(1837, 'nl', 'common', 'Inactivate', 'Deactiveren', '2019-05-25 22:06:08'),
(1836, 'nl', 'common', 'Id', 'Id', '2019-05-25 22:06:08'),
(1835, 'nl', 'common', 'hidenews', 'Seo Panel Nieuws verbergen', '2019-05-25 22:06:08'),
(1834, 'nl', 'common', 'help', 'Help', '2019-05-25 22:06:08'),
(1833, 'nl', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:06:08'),
(1832, 'nl', 'common', 'Found', 'Gevonden', '2019-05-25 22:06:08'),
(1831, 'nl', 'common', 'forum', 'Forum', '2019-05-25 22:06:08'),
(1830, 'nl', 'common', 'failed', 'mislukt', '2019-05-25 22:06:08'),
(1829, 'nl', 'common', 'entrynotvalid', 'De invoer is niet correct', '2019-05-25 22:06:08'),
(1828, 'nl', 'common', 'Entry cannot be blank', 'Invoer mag niet leeg zijn', '2019-05-25 22:06:08'),
(1827, 'nl', 'common', 'Donate', 'Doneren', '2019-05-25 22:06:08'),
(1826, 'nl', 'common', 'Directory', 'Directory', '2019-05-25 22:06:08'),
(1825, 'nl', 'common', 'Details', 'Details', '2019-05-25 22:06:08'),
(1824, 'nl', 'common', 'Crawl Meta Data', 'Meta-Data opvragen', '2019-05-25 22:06:08'),
(1823, 'nl', 'common', 'Country', 'Land', '2019-05-25 22:06:08'),
(1822, 'nl', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Alle rechten voorbehouden', '2019-05-25 22:06:08'),
(1821, 'nl', 'common', 'contact', 'Contact', '2019-05-25 22:06:08'),
(1820, 'nl', 'common', 'Category', 'Categorie', '2019-05-25 22:06:08'),
(1819, 'nl', 'common', 'All', 'Alle', '2019-05-25 22:06:08'),
(1818, 'nl', 'common', 'Alexa Rank', 'Alexa Rank', '2019-05-25 22:06:08'),
(1817, 'nl', 'common', 'Admin Panel', 'Admin Instellingen', '2019-05-25 22:06:08'),
(2053, 'nl', 'settings', 'seopanel_description', 'Een compleet gratis bedieningspaneel voor het beheren van de zoekmachine optimalisatie van uw websites. Het bevat vele Seo tools om de prestaties van uw websites te verbeteren en op te volgen. Het is open source software en u kunt ook uw eigen Seo plugins voor Seo panel ontwikkelen.', '2014-01-08 02:51:05'),
(1816, 'nl', 'common', 'Activate', 'Activeren', '2019-05-25 22:06:08'),
(1815, 'nl', 'common', 'Action', 'Actie', '2019-05-25 22:06:08'),
(1814, 'nl', 'button', 'Submit', 'Versturen', '2014-01-09 00:25:07'),
(1813, 'nl', 'button', 'Skip', 'Overslaan', '2014-01-09 00:25:07'),
(1812, 'nl', 'button', 'Show Records', 'Toon Rapporten', '2014-01-09 00:25:07'),
(1811, 'nl', 'button', 'Show Details', 'Toon Details', '2014-01-09 00:25:07'),
(1810, 'nl', 'button', 'Reload', 'Herladen', '2014-01-09 00:25:07'),
(1809, 'nl', 'button', 'Proceed', 'Ga verder', '2014-01-09 00:25:07'),
(1808, 'nl', 'button', 'Check Status', 'Status controleren', '2014-01-09 00:25:07'),
(1807, 'nl', 'button', 'Cancel', 'Annuleren', '2014-01-09 00:25:07'),
(1806, 'nl', 'backlink', 'Saved backlink results of', 'Backlink resultaten opgeslagen voor', '2010-10-22 15:58:05'),
(1805, 'nl', 'backlink', 'clickproceedbacklink', 'Geef één URL <b>per regel</b>. Klik op <b>Ga verder</b> om de backlinks te controleren.', '2010-10-22 15:58:05'),
(1804, 'nl', 'label', 'wantproceed', 'Bent u zeker dat u wilt doorgaan?', '2014-01-08 02:37:43'),
(1803, 'nl', 'common', 'No', 'Nr.', '2019-05-25 22:06:08'),
(1802, 'nl', 'common', 'Yes', 'Ja', '2019-05-25 22:06:08'),
(1801, 'nl', 'common', 'Select', 'Selecteer', '2019-05-25 22:06:08'),
(1800, 'nl', 'common', 'Delete', 'Verwijderen', '2019-05-25 22:06:08'),
(1799, 'nl', 'common', 'Edit', 'Bewerken', '2019-05-25 22:06:08'),
(1794, 'nl', 'common', 'lang', 'Taal', '2019-05-25 22:06:08'),
(1795, 'nl', 'common', 'Active', 'Actief', '2019-05-25 22:06:08'),
(1796, 'nl', 'common', 'Total', 'Totaal', '2019-05-25 22:06:08'),
(1797, 'nl', 'common', 'Date', 'Datum', '2019-05-25 22:06:08'),
(1798, 'nl', 'common', 'Rank', 'Rank', '2019-05-25 22:06:08'),
(1845, 'nl', 'common', 'My Account', 'Mijn Account', '2019-05-25 22:06:08'),
(1844, 'nl', 'common', 'Keywords', 'Zoekwoorden', '2019-05-25 22:06:08'),
(1843, 'nl', 'common', 'Keyword', 'Zoekwoord', '2019-05-25 22:06:08'),
(1842, 'nl', 'common', 'Invalid value', 'Ongeldige waarde', '2019-05-25 22:06:08'),
(1131, 'it', 'backlink', 'clickproceedbacklink', 'Inserisci gli Indirizzi Web <b>Uno per riga</b>. Clicca su <b>Continua</b> per controllare i Backlink', '2011-10-15 23:15:58'),
(1132, 'it', 'backlink', 'Saved backlink results of', 'Salva risultati backlink per', '2011-10-15 23:15:59'),
(1133, 'it', 'button', 'Cancel', 'Cancella', '2014-01-09 00:28:28'),
(1134, 'it', 'button', 'Check Status', 'Verifica stato', '2014-01-09 00:28:28'),
(1135, 'it', 'button', 'Proceed', 'Procedi', '2014-01-09 00:28:28'),
(1136, 'it', 'button', 'Reload', 'Ricarica', '2014-01-09 00:28:28'),
(1137, 'it', 'button', 'Show Details', 'Mostra dettagli', '2014-01-09 00:28:28'),
(1138, 'it', 'button', 'Show Records', 'Mostra records', '2014-01-09 00:28:28'),
(1139, 'it', 'button', 'Skip', 'Salta', '2014-01-09 00:28:28'),
(1140, 'it', 'button', 'Submit', 'Invia', '2014-01-09 00:28:28'),
(1141, 'it', 'common', 'Action', 'Azione', '2022-07-11 15:16:48'),
(1142, 'it', 'common', 'Activate', 'Attivare', '2022-07-11 15:16:48'),
(1143, 'it', 'common', 'Active', 'Attivo', '2022-07-11 15:16:48'),
(1144, 'it', 'common', 'Admin Panel', 'Pannello Admin', '2022-07-11 15:16:48'),
(1145, 'it', 'common', 'Alexa Rank', 'Alexa Rank', '2022-07-11 15:16:48'),
(1146, 'it', 'common', 'All', 'Tutto', '2022-07-11 15:16:48'),
(1147, 'it', 'common', 'Category', 'Categoria', '2022-07-11 15:16:48'),
(1148, 'it', 'common', 'contact', 'Contatto', '2022-07-11 15:16:48'),
(1149, 'it', 'common', 'copyright', 'Copyright © [year] www.seopanel.in All rights reserved', '2022-07-11 15:16:48'),
(2885, 'ro', 'panel', 'About Us', 'Despre Noi', '2012-05-19 01:04:43'),
(2886, 'ro', 'panel', 'Add following command to your cron tab', 'Adauga urmatoare comanda la fila cron', '2012-05-19 01:04:43'),
(1150, 'it', 'common', 'Country', 'Paese', '2022-07-11 15:16:48'),
(1151, 'it', 'common', 'Crawl Meta Data', 'Recupera Meta Data ', '2022-07-11 15:16:48'),
(1152, 'it', 'common', 'Date', 'Data', '2022-07-11 15:16:48'),
(1153, 'it', 'common', 'Delete', 'Cancella', '2022-07-11 15:16:48'),
(1154, 'it', 'common', 'Details', 'Dettagli', '2022-07-11 15:16:48'),
(1155, 'it', 'common', 'Directory', 'Directory', '2022-07-11 15:16:48'),
(1156, 'it', 'common', 'Donate', 'Dona', '2022-07-11 15:16:48'),
(1157, 'it', 'common', 'Edit', 'Modifica', '2022-07-11 15:16:48'),
(1158, 'it', 'common', 'Entry cannot be blank', 'La voce non può essere vuota', '2022-07-11 15:16:48'),
(1159, 'it', 'common', 'entrynotvalid', 'La voce inserita non sembra essere valida', '2022-07-11 15:16:48'),
(1160, 'it', 'common', 'failed', 'fallito', '2022-07-11 15:16:48'),
(1161, 'it', 'common', 'forum', 'Forum', '2022-07-11 15:16:48'),
(1162, 'it', 'common', 'Found', 'Trovato', '2022-07-11 15:16:48'),
(1163, 'it', 'common', 'Google Pagerank', 'Google Pagerank', '2022-07-11 15:16:48'),
(1164, 'it', 'common', 'help', 'Aiuto', '2022-07-11 15:16:48'),
(1165, 'it', 'common', 'hidenews', 'Nasconti il pannello news seo', '2022-07-11 15:16:48'),
(1166, 'it', 'common', 'Id', 'ID', '2022-07-11 15:16:48'),
(1167, 'it', 'common', 'Inactivate', 'Inattività', '2022-07-11 15:16:48'),
(1168, 'it', 'common', 'Inactive', 'Inattivo', '2022-07-11 15:16:48'),
(1169, 'it', 'common', 'Invalid characters', 'Caratteri non validi', '2022-07-11 15:16:48'),
(1170, 'it', 'common', 'Invalid code entered', 'Codice inserito non valido', '2022-07-11 15:16:48'),
(1171, 'it', 'common', 'Invalid email address entered', 'Indirizzo email inserito non valido', '2022-07-11 15:16:48'),
(1172, 'it', 'common', 'Invalid value', 'Valore non valido', '2022-07-11 15:16:48'),
(1173, 'it', 'common', 'Keyword', 'Keyword', '2022-07-11 15:16:48'),
(1174, 'it', 'common', 'Keywords', 'Keywords', '2022-07-11 15:16:48'),
(1175, 'it', 'common', 'lang', 'Lingua', '2022-07-11 15:16:48'),
(1176, 'it', 'common', 'My Account', 'Il mio account', '2022-07-11 15:16:48'),
(1177, 'it', 'common', 'Name', 'Nome', '2022-07-11 15:16:48'),
(1178, 'it', 'common', 'No', 'No', '2022-07-11 15:16:48'),
(1179, 'it', 'common', 'No Keywords Found', 'Keywords non trovate', '2022-07-11 15:16:48'),
(1180, 'it', 'common', 'No Records Found', 'Campo non trovato', '2022-07-11 15:16:48'),
(1181, 'it', 'common', 'noactivetools', 'Non sono stati trovati strumenti seo attivi!', '2022-07-11 15:16:48'),
(1182, 'it', 'common', 'nowebsites', 'Nessun sito web trovato', '2022-07-11 15:16:48'),
(1183, 'it', 'common', 'password632', 'La lunghezza della password deve essere tra i 6 e i 32 caratteri', '2022-07-11 15:16:48'),
(1184, 'it', 'common', 'passwordnotmatch', 'La password non corrisponde', '2022-07-11 15:16:48'),
(1185, 'it', 'common', 'Period', 'Periodo', '2022-07-11 15:16:48'),
(1186, 'it', 'common', 'Priority', 'Priorità', '2022-07-11 15:16:48'),
(1187, 'it', 'common', 'Rank', 'Rank', '2022-07-11 15:16:48'),
(1188, 'it', 'common', 'Reports', 'Report', '2022-07-11 15:16:48'),
(1189, 'it', 'common', 'Results', 'Risultati', '2022-07-11 15:16:48'),
(1190, 'it', 'common', 'Search Engine', 'Motore di ricerca', '2022-07-11 15:16:48'),
(1191, 'it', 'common', 'Select', 'Seleziona', '2022-07-11 15:16:48'),
(1192, 'it', 'common', 'Seo Plugins', 'Plugins seo', '2022-07-11 15:16:48'),
(1193, 'it', 'common', 'Seo Tools', 'Strumenti seo', '2022-07-11 15:16:48'),
(1194, 'it', 'common', 'Sign out', 'Esci', '2022-07-11 15:16:48'),
(1195, 'it', 'common', 'Sign Up', 'Iscriviti', '2022-07-11 15:16:48'),
(1196, 'it', 'common', 'signin', 'Entra', '2022-07-11 15:16:48'),
(1197, 'it', 'common', 'Status', 'Stato', '2022-07-11 15:16:48'),
(1198, 'it', 'common', 'Support', 'Supporto', '2022-07-11 15:16:48'),
(1199, 'it', 'common', 'Total', 'Totale', '2022-07-11 15:16:48'),
(1200, 'it', 'common', 'Url', 'Url', '2022-07-11 15:16:48'),
(1201, 'it', 'common', 'User', 'Utente', '2022-07-11 15:16:48'),
(1202, 'it', 'common', 'User Panel', 'Pannello utente', '2022-07-11 15:16:48'),
(1203, 'it', 'common', 'Website', 'Sito web', '2022-07-11 15:16:48'),
(1204, 'it', 'common', 'Yes', 'Si', '2022-07-11 15:16:48'),
(1205, 'it', 'directory', 'Add back to directory list', 'Aggiungi alla fine della lista directory', '2012-11-09 00:50:02'),
(1206, 'it', 'directory', 'Approved', 'Approvato', '2012-11-09 00:50:02'),
(1207, 'it', 'directory', 'Captcha', 'Verifica umana', '2012-11-09 00:50:02'),
(1208, 'it', 'directory', 'categorynote', 'Categorie, separare con una virgola in base alla priorità. Partire con la categoria con maggiore priorità.', '2012-11-09 00:50:02'),
(1209, 'it', 'directory', 'Check Directory Status', 'Verifica stato directory', '2012-11-09 00:50:02'),
(1210, 'it', 'directory', 'Check Directory Submission Status', 'Verifica stato immissione directory', '2012-11-09 00:50:02'),
(1211, 'it', 'directory', 'clicktoproceeddirsts', 'Clicca su <b>Procedi</b> per verificare lo stato delle directory', '2012-11-09 00:50:02'),
(1212, 'it', 'directory', 'Confirmation', 'Conferma', '2012-11-09 00:50:02'),
(1213, 'it', 'directory', 'desnote', 'Alcune directory richiedono un minimo di 150 caratteri per il campo della descrizione.', '2012-11-09 00:50:02'),
(1214, 'it', 'directory', 'Directories with out captcha', 'Directory senza la verifica umana', '2012-11-09 00:50:02'),
(1215, 'it', 'directory', 'Directory Submission Reports', 'Resoconto immissione directory', '2012-11-09 00:50:02'),
(1216, 'it', 'directory', 'Enter the code shown', 'Inserisci il codice mostrato', '2012-11-09 00:50:02'),
(1217, 'it', 'directory', 'nocatnote', 'La categoria inserita non è stata trovata nella pagina di inserimento. Per cortesia cliccare su <b>Ricarica</b> oppure <b>Salta</b>', '2012-11-09 00:50:02'),
(1218, 'it', 'directory', 'nodirnote', 'Nessuna directory <b>Attiva</b> trovata', '2012-11-09 00:50:02'),
(1219, 'it', 'directory', 'nosuccessnote', 'Non hai ricevuto il messaggio di successo. Per cortesia verifica la tua mail per trovare il messagigo di conferma.', '2012-11-09 00:50:02'),
(1220, 'it', 'directory', 'optionalnote', 'Titoli e descrizioni opzionali da inviare in modalità random nel titolo e nella descrizione delle directory per un miglior risultato.', '2012-11-09 00:50:02'),
(1221, 'it', 'directory', 'Owner Email', 'Email del proprietario', '2012-11-09 00:50:02'),
(1222, 'it', 'directory', 'Owner Name', 'Nome del proprietario', '2012-11-09 00:50:02'),
(1223, 'it', 'directory', 'Pending', 'In attesa di approvazione', '2012-11-09 00:50:02'),
(1224, 'it', 'directory', 'Please select a website to proceed', 'Per cortesia seleziona il sito web per procedere', '2012-11-09 00:50:02'),
(1225, 'it', 'directory', 'selectwebsiteproceed', 'Seleziona un <b>Sito web</b> per <b>Procedere</b> con l\\''invio nella directory.<br>Verifica l\\''invio nelle<b>directory senza verifica umana</b> ', '2012-11-09 00:50:02'),
(1226, 'it', 'directory', 'selectwebsiteschecksub', 'Seleziona un <b>Sito web</b> per <b>Procedere</b> con la verifica dell\\''immssione nelle directory', '2012-11-09 00:50:02'),
(1227, 'it', 'directory', 'Semi Automatic Directory Submission Tool', 'Strumento per l\\''invio semi automatico nelle directory', '2012-11-09 00:50:02'),
(1228, 'it', 'directory', 'spamemailnote', 'Alcune directory potrebbero effettuare invii spam, ti consigliamo di non utilizzare il tuo indirizzo email principale.', '2012-11-09 00:50:02'),
(1229, 'it', 'directory', 'Submission Details', 'Dettagli invio', '2012-11-09 00:50:02'),
(1230, 'it', 'directory', 'Submit Description', 'Inserire descrizione', '2012-11-09 00:50:02'),
(1231, 'it', 'directory', 'Submit Keywords', 'Inserire keywords', '2012-11-09 00:50:02'),
(1232, 'it', 'directory', 'Submit Title', 'Inserire titolo', '2012-11-09 00:50:02'),
(1233, 'it', 'directory', 'Website Category', 'Categoria sito web', '2012-11-09 00:50:02'),
(1234, 'it', 'directory', 'Website Url', 'Url del sito web', '2012-11-09 00:50:02'),
(1235, 'it', 'home', 'Account Summary', 'Sommario account', '2022-07-11 15:16:33'),
(1236, 'it', 'home', 'Backlinks', 'Backlinks', '2022-07-11 15:16:33'),
(1237, 'it', 'home', 'Directory Submission', 'Immissione directory', '2022-07-11 15:16:33'),
(39011, 'zh', 'review', 'Review Link Details', '评论链接详情', '2026-01-19 22:58:50'),
(39012, 'en', 'review', 'No review data available', 'No review data available. <a href="seo-tools.php?menu_sec=review-manager">Add review links</a> to start tracking your reviews and ratings.', '2026-01-19 22:58:50'),
(39013, 'ar', 'review', 'No review data available', 'لا توجد بيانات المراجعات. <a href="seo-tools.php?menu_sec=review-manager">أضف روابط المراجعات</a> لبدء تتبع مراجعاتك وتقييماتك.', '2026-01-19 22:58:50'),
(39014, 'bg', 'review', 'No review data available', 'Няма налични данни за отзиви. <a href="seo-tools.php?menu_sec=review-manager">Добавете връзки за отзиви</a>, за да започнете да следите вашите отзиви и оценки.', '2026-01-19 22:58:50'),
(39015, 'bs', 'review', 'No review data available', 'Nema dostupnih podataka o recenzijama. <a href="seo-tools.php?menu_sec=review-manager">Dodajte linkove recenzija</a> da biste počeli pratiti svoje recenzije i ocjene.', '2026-01-19 22:58:50'),
(39016, 'ca', 'review', 'No review data available', 'No hi ha dades de ressenyes disponibles. <a href="seo-tools.php?menu_sec=review-manager">Afegiu enllaços de ressenyes</a> per començar a fer el seguiment de les vostres ressenyes i valoracions.', '2026-01-19 22:58:50'),
(1241, 'it', 'home', 'Pages Indexed', 'Pagine indicizzate', '2022-07-11 15:16:33'),
(1242, 'it', 'home', 'Ranks', 'Ranks', '2022-07-11 15:16:33'),
(1243, 'it', 'home', 'SiteNameUrl', 'Nome sito/Url', '2022-07-11 15:16:33'),
(1244, 'it', 'home', 'Website Statistics', 'Statistiche sito web', '2022-07-11 15:16:33'),
(1245, 'pl', 'website', 'Edit Website', 'Edytuj Stronę', '2010-10-09 09:52:58'),
(1246, 'pl', 'website', 'plscrtwebsite', 'Proszę utworzyć Stronę zanim będziesz mógł używać Narzędzi seo i Pluginów seo.', '2010-10-09 09:52:58'),
(1247, 'pl', 'website', 'Website already exist', 'Taka Strona już istnieje', '2010-10-09 09:52:58'),
(1248, 'pl', 'website', 'yourwebalreday', 'twoją Stronę jeśli już ją stworzyłeś.', '2010-10-09 09:52:58'),
(1249, 'pl', 'user', 'Edit User', 'Edytuj Użytkownika', '2010-10-09 09:53:49'),
(1250, 'pl', 'user', 'Saved My Profile Details', 'Zapisano Profil', '2010-10-09 09:53:49'),
(1251, 'pl', 'support', 'support_cont1', '<fieldset> \r\n<legend>System Wsparcia Seo Panel</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>Pakiet 1000 Katalogów</h1> \r\n <p> \r\n Dostarczamy <b>1000 darmowych aktywnych i zweryfikowanych</b> katalogów internetowych w jednym pakiecie, gotowe do dodania do Twojego panelu Seo <b>Narzędzia do submisji Seo</b>. \r\n Pomoże Ci to <b>powiększyć liczbę backlinków</b> twoich Stron. \r\n Właściwie to lista 1000 Katalogów jest <b>wprowadzona</b> aby zebrać trochę pieniędzy na <b>rozwijanie funkcjonalności</b> Seo Panel. \r\n Aby otrzymać listę 1000 internetowych Katalogów prosimy <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">o złożenie donacji</a>\r\n$10 lub więcej aby pomóc nam rozwinąć funkcjonalność Seo Panel. \r\n Jeżeli masz jakieś pytania dotyczące pakietu 1000 Katalogów, prosimy <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">o kontakt</a> lub utwórz pytanie <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">w systemie wsparcia</a>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Otwórz link aby złożyć donację dla Seo Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Lokalny pakiet Wyszukiwarek</h1> \r\n <p> \r\n Dodaj <b>lokalne wyszukiwarki</b> google,yahoo,msn(<b>np: www.google.de,www.google.fr\r\nitd.</b>) do Seo Panel <b>sprawdzenie pozycji Keyword\\''ów</b>, aby śledzić wydajność twoich Stron w lokalnych wyszukiwarkach. \r\n Aby otrzymać pakiet lokalnych wyszukiwarek (w zależności od twoich wymagań) prosimy <a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">o donację</a> $10 lub więcej aby pomóc w rozwoju funkcjonalności Seo Panel. \r\n Przed złożeniem donacji, prosimy <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">o kontakt</a> aby powiadomić nas o żądanej liście lokalnych wyszukiwarek. \r\n <br><br> \r\n Zawsze dodawaj <b>nowe wyszukiwarki (np:baidu.com)</b> do Sprawdzania pozycji Keyword\\''ów w Seo Panel,\r\nprosimy <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">o kontakt</a> lub utworzenie pytania w <a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">systemie wsparcia</a>. \r\n </p> \r\n <p class=\\"visit\\"> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Otwórz link aby skontaktować się z nami</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Pluginy Seo Panel</h1> \r\n <p> \r\n Dodaj <b>pluginy seo</b> do Twojego Seo Panel by <b>rozszerzyć funkcjonalność</b> według twoich wymagań. \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Pluginy Seo Panel</a> są dostarczane przez Seo Panel oraz zewnętrznych źródeł. \r\n Możesz także równie łatwo <b>tworzyć</b> pluginy Seo dla Twojego Seo Panel. \r\n Możesz także <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">submitować</a> twoje pluginy do Seo Panel a my je <b>opublikujemy</b>na naszej stronie po uprzednim <b>zatwierdzeniu</b>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Otwórz link aby sciągnąć pluginy Seo Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Kontakt</h1> \r\n <p> \r\n Skontaktuj się z Nami jeśli masz pytanie dotyczące <b>Narzędzi Seo Panel, pluginów oraz funkcjonalności itp.</b> prze użycie poniższego linka. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Otwórz link aby skontaktować się z Nami</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>System Zapytań</h1> \r\n <p> \r\n Aby uzyskać <b>pomoc techniczną</b> od teamu Seo Panel odnośnie instalacji i ustawień Narzędzi Seo Panel, pluginów i funkcjonalności</b>. Np: Aby ustawić zadania Cron dla automatycznego sprawdzania pozycji Keyword\\''ów. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Otwórz link aby utworzyć zapytanie</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Raportowanie błędów</h1> \r\n <p> \r\n Raportuj <b>błędy</b> w <b>Narzędziach Seo Panel, pluginach i funkcjonalności itp.</b> używając poniższego linka. \r\n Prosimy o pomoc w usprawnieniu funkcjonalności w nowych wersjach. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Otwórz link aby raportować błąd</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2010-10-25 10:38:20'),
(1252, 'pl', 'support', 'support_cont2', '<fieldset> \r\n<legend>Seo Panel Zasoby Online</legend> \r\n<ul class=\\"infobox\\"> \r\n \r\n <li> \r\n <h1>Pomoc Użytkownika Seo Panel</h1> \r\n <p> \r\n Dokumentacja Seo Panel jest dostępna na <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\"> w\r\n<b>Pomocy Użytkownika</b></a>, zawiera ona <b>dokumentację</b> Narzędzi Seo Panel, plugin\\''ów , i funkcjonalności. \r\n <br>To jest najlepsze miejsce w internecie aby <b>znaleźć pomoc</b> o Seo Panel. mamy nadzieję że pomożesz \r\n<b>udoskonalić</b> Pomoc Użytkownika, jeśli znajdziesz jakiś błąd lub brak czegoś. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Zobacz Pomoc Użytkownika Seo Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Forum Seo Panel</h1> \r\n <p> \r\n To miejsce do dyskusji o pierwszym na świecie opensource\\''owym <b> panelem kontrolym seo</b>. \r\n To najlepsze miejsce by znaleźć <b>odpowiedź</b> na <b>Twoje pytania</b> o Seo Panel. \r\n <br>Możesz także <b>dzielić się</b> twoim <b>doświadczeniem</b> z użytkowanie Seo Panel do optymalizacji twoich Stron. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Odwiedź forum Seo Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2010-10-25 10:38:20');
INSERT INTO `texts` VALUES
(1253, 'pl', 'support', 'support_cont3', '<fieldset> \r\n<legend>Złóż donację dla Seo Panel</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>Złóż donację dla Seo Panel - Pierwszy na świecie Open source\\''owy panel kontrolny seo</h1> \r\n <p> \r\n <b>Złóż donację</b> dla Seo Panel aby wesprzeć pierwszy na świecie open source\\''owy panel kontrolny seo. \r\n Planujemy <b>zwiększać i ulepszać</b> funkcjonalość Seo Panel w przyszłości. \r\n <br>Tylko z Twoim <b>wsparciem</b> możemy osiągnąć nasz <b>cel</b>. \r\n Jeżeli uważasz że Seo Panel jest dla Ciebie <b>cenny</b>, prosimy o donację jakiejkolwiek kwoty dla Seo Panel. \r\n <br>W zamian <b>opublikujemy</b> Twoje Nazwisko i adres twojej strony na <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">stronie donacji</a>, jak tylko otrzymamy donację. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Otwórz tą linkę i złóż donację dla Seo Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2010-10-25 10:38:20'),
(1254, 'pl', 'sitemap', 'Change frequency', 'Zmień częstotliwość', '2010-10-09 10:26:35'),
(1255, 'pl', 'sitemap', 'clickproceedsitemap', 'Kliknij na <b>Proceed</b> aby utworzyć mapę Strony', '2010-10-09 10:26:35'),
(1256, 'pl', 'sitemap', 'Download sitemap file from', 'Ściągnij mapę Strony', '2010-10-09 10:26:35'),
(1257, 'pl', 'sitemap', 'Exclude Url', 'Wyklucz Url', '2010-10-09 10:26:35'),
(1258, 'pl', 'sitemap', 'processtaketime', 'Ten proces może trochę potrwać w zależności od ilości linków na Twojej stronie. Proszę czekać aż mapa zostanie wygenerowana.', '2010-10-09 10:26:35'),
(1259, 'pl', 'sitemap', 'Sitemap Type', 'Typ mapy Strony', '2010-10-09 10:26:35'),
(1260, 'pl', 'login', 'Confirm Password', 'Potwierdź hasło', '2014-01-18 00:04:15'),
(1261, 'pl', 'login', 'Create my account', 'Utwórz moje konto', '2014-01-18 00:04:15'),
(1262, 'pl', 'login', 'Create New Account', 'Utwórz nowe konto', '2014-01-18 00:04:15'),
(1263, 'pl', 'login', 'Email', 'Email', '2014-01-18 00:04:15'),
(1264, 'pl', 'login', 'emailexist', 'Ten email jest już używany!', '2014-01-18 00:04:15'),
(1265, 'pl', 'login', 'Enter the code as it is shown', 'Wprowadź kod', '2014-01-18 00:04:15'),
(1266, 'pl', 'login', 'First Name', 'Imię', '2014-01-18 00:04:15'),
(1267, 'pl', 'login', 'Last Name', 'Nazwisko', '2014-01-18 00:04:15'),
(1268, 'pl', 'login', 'Login', 'Login', '2014-01-18 00:04:15'),
(1269, 'pl', 'login', 'Login incorrect', 'Błędny login', '2014-01-18 00:04:15'),
(1270, 'pl', 'login', 'newaccountsuccess', 'Nowe konto zostało utworzone', '2014-01-18 00:04:15'),
(1271, 'pl', 'login', 'Password', 'Hasło', '2014-01-18 00:04:15'),
(1272, 'pl', 'login', 'Password incorrect', 'Błędne hasło', '2014-01-18 00:04:15'),
(1273, 'pl', 'login', 'Register', 'Rejestruj', '2014-01-18 00:04:15'),
(1274, 'pl', 'login', 'Sign in to your account', 'Zaloguj się na swoje konto', '2014-01-18 00:04:15'),
(1275, 'pl', 'login', 'User inactive', 'Użytkownik nie jest aktywny', '2014-01-18 00:04:15'),
(1276, 'pl', 'login', 'Username', 'Użytkownik', '2014-01-18 00:04:15'),
(1277, 'pl', 'login', 'usernameexist', 'Użytkownik o tej nazwie juz istnieje!', '2014-01-18 00:04:15'),
(1278, 'pl', 'label', 'already exist', 'już istnieje', '2014-05-12 00:04:08'),
(1279, 'pl', 'label', 'Authentication', 'Autentykacja', '2014-05-12 00:04:08'),
(1280, 'pl', 'label', 'Author', 'Autor', '2014-05-12 00:04:08'),
(1281, 'pl', 'label', 'Click Here', 'Kliknij tutaj', '2014-05-12 00:04:08'),
(1282, 'pl', 'label', 'Cron', 'Cron', '2014-05-12 00:04:08'),
(1283, 'pl', 'label', 'Description', 'Opis', '2014-05-12 00:04:08'),
(1284, 'pl', 'label', 'Developers', 'Deweloperzy', '2014-05-12 00:04:08'),
(1285, 'pl', 'label', 'Download', 'Download', '2014-05-12 00:04:08'),
(1286, 'pl', 'label', 'Installation', 'Instalacja', '2014-05-12 00:04:08'),
(1287, 'pl', 'label', 'Keywords', 'Keywordy', '2014-05-12 00:04:08'),
(1288, 'pl', 'label', 'noactiveplugins', 'Nie znaleziono aktywnych pluginów!', '2014-05-12 00:04:08'),
(1289, 'pl', 'label', 'Plugin', 'Plugin', '2014-05-12 00:04:08'),
(1290, 'pl', 'label', 'Port', 'Port', '2014-05-12 00:04:08'),
(1291, 'pl', 'label', 'Proxy', 'Proxy', '2014-05-12 00:04:08'),
(1292, 'pl', 'label', 'Re-install', 'Przeinstaluj', '2014-05-12 00:04:08'),
(1293, 'pl', 'label', 'Sponsors', 'Sponsorzy', '2014-05-12 00:04:08'),
(1294, 'pl', 'label', 'Title', 'Tytuł', '2014-05-12 00:04:08'),
(1295, 'pl', 'label', 'translation by', 'przetłumaczone przez', '2014-05-12 00:04:08'),
(1296, 'pl', 'label', 'Translators', 'Tłumaczenie', '2014-05-12 00:04:08'),
(1297, 'pl', 'label', 'Upgrade', 'Upgrade', '2014-05-12 00:04:08'),
(1298, 'pl', 'label', 'Version', 'Wersja', '2014-05-12 00:04:08'),
(1299, 'pl', 'label', 'wantproceed', 'Czy na pewno chcesz kontynuować?', '2014-05-12 00:04:08'),
(1300, 'pl', 'button', 'Cancel', 'Anuluj', '2014-01-17 23:41:10'),
(1301, 'pl', 'button', 'Check Status', 'Sprawdź status', '2014-01-17 23:41:10'),
(1302, 'pl', 'button', 'Proceed', 'Kontynuuj', '2014-01-17 23:41:10'),
(1303, 'pl', 'button', 'Reload', 'Odśwież', '2014-01-17 23:41:10'),
(1304, 'pl', 'button', 'Show Details', 'Pokaż właściwości', '2014-01-17 23:41:10'),
(1305, 'pl', 'button', 'Show Records', 'Pokaż Rekordy', '2014-01-17 23:41:10'),
(1306, 'pl', 'button', 'Skip', 'Pomiń', '2014-01-17 23:41:10'),
(1307, 'pl', 'button', 'Submit', 'Submituj', '2014-01-17 23:41:10'),
(1308, 'pl', 'common', 'Action', 'Akcja', '2019-05-25 22:43:11'),
(1309, 'pl', 'common', 'Activate', 'Aktywuj', '2019-05-25 22:43:11'),
(1310, 'pl', 'common', 'Active', 'Aktywna', '2019-05-25 22:43:11'),
(1311, 'pl', 'common', 'Admin Panel', 'Admin Panel', '2019-05-25 22:43:11'),
(1312, 'pl', 'common', 'Alexa Rank', 'Alexa Rank', '2019-05-25 22:43:11'),
(1313, 'pl', 'common', 'All', 'Wszystko', '2019-05-25 22:43:11'),
(1314, 'pl', 'common', 'Category', 'Kategoria', '2019-05-25 22:43:11'),
(1315, 'pl', 'common', 'contact', 'Kontakt', '2019-05-25 22:43:11'),
(1316, 'pl', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Wszelkie prawa zastrzeżone', '2019-05-25 22:43:11'),
(1317, 'pl', 'common', 'Country', 'Kraj', '2019-05-25 22:43:11'),
(1318, 'pl', 'common', 'Crawl Meta Data', 'Pobierz dane Meta', '2019-05-25 22:43:11'),
(1319, 'pl', 'common', 'Date', 'Data', '2019-05-25 22:43:11'),
(1320, 'pl', 'common', 'Delete', 'Usuń', '2019-05-25 22:43:11'),
(1321, 'pl', 'common', 'Details', 'Szczegóły', '2019-05-25 22:43:11'),
(1322, 'pl', 'common', 'Directory', 'Folder', '2019-05-25 22:43:11'),
(1323, 'pl', 'common', 'Donate', 'Złóż donację', '2019-05-25 22:43:11'),
(1324, 'pl', 'common', 'Edit', 'Edytuj', '2019-05-25 22:43:11'),
(1325, 'pl', 'common', 'Entry cannot be blank', 'Pole nie może być puste', '2019-05-25 22:43:11'),
(1326, 'pl', 'common', 'entrynotvalid', 'Nieprawidłowa zawartość', '2019-05-25 22:43:11'),
(1327, 'pl', 'common', 'failed', 'nie powiodło się', '2019-05-25 22:43:11'),
(1328, 'pl', 'common', 'forum', 'Forum', '2019-05-25 22:43:11'),
(1329, 'pl', 'common', 'Found', 'Znaleziono', '2019-05-25 22:43:11'),
(1330, 'pl', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:43:11'),
(1331, 'pl', 'common', 'help', 'Pomoc', '2019-05-25 22:43:11'),
(1332, 'pl', 'common', 'hidenews', 'Ukryj wiadomości Seo Panel', '2019-05-25 22:43:11'),
(1333, 'pl', 'common', 'Id', 'Id', '2019-05-25 22:43:11'),
(1334, 'pl', 'common', 'Inactivate', 'Deaktywuj', '2019-05-25 22:43:11'),
(1335, 'pl', 'common', 'Inactive', 'Nie aktywne', '2019-05-25 22:43:11'),
(1336, 'pl', 'common', 'Invalid characters', 'Nieprawidłowe znaki', '2019-05-25 22:43:11'),
(1337, 'pl', 'common', 'Invalid code entered', 'Nieprawidłowy kod', '2019-05-25 22:43:11'),
(1338, 'pl', 'common', 'Invalid email address entered', 'Nieprawidłowy adres email', '2019-05-25 22:43:11'),
(1339, 'pl', 'common', 'Invalid value', 'Nieprawidłowa wartość', '2019-05-25 22:43:11'),
(1340, 'pl', 'common', 'Keyword', 'Słowo kluczowe', '2019-05-25 22:43:11'),
(1341, 'pl', 'common', 'Keywords', 'Słowa kluczowe', '2019-05-25 22:43:11'),
(1342, 'pl', 'common', 'lang', 'Język', '2019-05-25 22:43:11'),
(1343, 'pl', 'common', 'My Account', 'Moje Konto', '2019-05-25 22:43:11'),
(1344, 'pl', 'common', 'Name', 'Imię', '2019-05-25 22:43:11'),
(1345, 'pl', 'common', 'No', 'Nie', '2019-05-25 22:43:11'),
(1346, 'pl', 'common', 'No Keywords Found', 'Nie znaleziono Keyword''ów', '2019-05-25 22:43:11'),
(1347, 'pl', 'common', 'No Records Found', 'Nie znaleziono rekordów', '2019-05-25 22:43:11'),
(1348, 'pl', 'common', 'noactivetools', 'Nie znaleziono aktywnych Narzędzi Seo Panel', '2019-05-25 22:43:11'),
(1349, 'pl', 'common', 'nowebsites', 'Nie znaleziono żadnych Stron', '2019-05-25 22:43:11'),
(1350, 'pl', 'common', 'password632', 'Hasło powinno mieć 6 do 32 znaków długości', '2019-05-25 22:43:11'),
(1351, 'pl', 'common', 'passwordnotmatch', 'Hasła nie są identyczne', '2019-05-25 22:43:11'),
(1352, 'pl', 'common', 'Period', 'Okres', '2019-05-25 22:43:11'),
(1353, 'pl', 'common', 'Priority', 'Priorytet', '2019-05-25 22:43:11'),
(1354, 'pl', 'common', 'Rank', 'Rank', '2019-05-25 22:43:11'),
(1355, 'pl', 'common', 'Reports', 'Raporty', '2019-05-25 22:43:11'),
(1356, 'pl', 'common', 'Results', 'Rezultaty', '2019-05-25 22:43:11'),
(1357, 'pl', 'common', 'Search Engine', 'Wyszukiwarka', '2019-05-25 22:43:11'),
(1358, 'pl', 'common', 'Select', 'Wybierz', '2019-05-25 22:43:11'),
(1359, 'pl', 'common', 'Seo Plugins', 'Pluginy Seo', '2019-05-25 22:43:11'),
(1360, 'pl', 'common', 'Seo Tools', 'Narzędzia Seo', '2019-05-25 22:43:11'),
(1361, 'pl', 'common', 'Sign out', 'Wyloguj się', '2019-05-25 22:43:11'),
(1362, 'pl', 'common', 'Sign Up', 'Zarejestruj się', '2019-05-25 22:43:11'),
(1363, 'pl', 'common', 'signin', 'Zaloguj się', '2019-05-25 22:43:11'),
(1364, 'pl', 'common', 'Status', 'Status', '2019-05-25 22:43:11'),
(1365, 'pl', 'common', 'Support', 'Wsparcie', '2019-05-25 22:43:11'),
(1366, 'pl', 'common', 'Total', 'Suma', '2019-05-25 22:43:11'),
(1367, 'pl', 'common', 'Url', 'Url', '2019-05-25 22:43:11'),
(1368, 'pl', 'common', 'User', 'Użytkownik', '2019-05-25 22:43:11'),
(1369, 'pl', 'common', 'User Panel', 'Panel Użytkownika', '2019-05-25 22:43:11'),
(1370, 'pl', 'common', 'Website', 'Strona', '2019-05-25 22:43:11'),
(1371, 'pl', 'common', 'Yes', 'Tak', '2019-05-25 22:43:11'),
(1372, 'pl', 'directory', 'Add back to directory list', 'Dodaj z powrotem do listy Katalogów', '2014-01-17 23:50:38'),
(1373, 'pl', 'directory', 'Approved', 'Zatwierdzono', '2014-01-17 23:50:38'),
(1374, 'pl', 'directory', 'Captcha', 'Captcha', '2014-01-17 23:50:38'),
(1375, 'pl', 'directory', 'categorynote', 'Kategorie, oddziel je przecinkiem według priorytetu. Zacznij od Kategorii o najwyższym priorytecie.', '2014-01-17 23:50:38'),
(1376, 'pl', 'directory', 'Check Directory Status', 'Sprawdź status Katalogu', '2014-01-17 23:50:38'),
(1377, 'pl', 'directory', 'Check Directory Submission Status', 'Sprawdź status submisji do Katalogu', '2014-01-17 23:50:38'),
(1378, 'pl', 'directory', 'clicktoproceeddirsts', 'Kliknij <b>Proceed</b> aby sprawdzić status Katalogu', '2014-01-17 23:50:38'),
(1379, 'pl', 'directory', 'Confirmation', 'Potwierdzenie', '2014-01-17 23:50:38'),
(1380, 'pl', 'directory', 'desnote', 'Niektóre katalogi wymagają minimum 150 znaków w opisie Strony', '2014-01-17 23:50:38'),
(1381, 'pl', 'directory', 'Directories with out captcha', 'Katalogi bez Captcha', '2014-01-17 23:50:38'),
(1382, 'pl', 'directory', 'Directory Submission Reports', 'Raport submisji do Katalogów', '2014-01-17 23:50:38'),
(1383, 'pl', 'directory', 'Enter the code shown', 'Wprowadź kod', '2014-01-17 23:50:38'),
(1384, 'pl', 'directory', 'nocatnote', 'Kategoria submisji nie została znaleziona na stronie submisji. Kliknij na <b>Przeładuj</b> lub <b>Pomiń</b>', '2014-01-17 23:50:38'),
(1385, 'pl', 'directory', 'nodirnote', 'Nie znaleziono <b>Aktywnych</b> Katalogów', '2014-01-17 23:50:38'),
(1386, 'pl', 'directory', 'nosuccessnote', 'Nie otrzymano potwierdzenia. Proszę sprawdzić twój email by znaleźć wiadomość potwierdzającą.', '2014-01-17 23:50:38'),
(1387, 'pl', 'directory', 'optionalnote', 'Opcjonalne tytuły i opisy aby submitować Stronę z róźnymi tytułami i opisami do Katalogów aby uzyskać lepsze rezultaty.', '2014-01-17 23:50:38'),
(1388, 'pl', 'directory', 'Owner Email', 'Email właściciela', '2014-01-17 23:50:38'),
(1389, 'pl', 'directory', 'Owner Name', 'Imię właściciela', '2014-01-17 23:50:38'),
(1390, 'pl', 'directory', 'Pending', 'Oczekuje', '2014-01-17 23:50:38'),
(1391, 'pl', 'directory', 'Please select a website to proceed', 'Proszę wybrać Stronę aby kontynuować', '2014-01-17 23:50:38'),
(1392, 'pl', 'directory', 'selectwebsiteproceed', 'Wybierz <b>Stronę</b> aby <b>Kontunuować</b> submitowanie. <br>Zaznacz <b>Katalogi bez Captcha</b> aby submitować do Katalogów nie wymagających Captcha w trakcie submisji.', '2014-01-17 23:50:38'),
(1393, 'pl', 'directory', 'selectwebsiteschecksub', 'Wybierz <b>Stronę</b> aby <b>Kontynuować</b> sprawdzanie statusu submisji do Katalogów.', '2014-01-17 23:50:38'),
(1394, 'pl', 'directory', 'Semi Automatic Directory Submission Tool', 'Narzędzie do półautomatycznej submisji Strony do Katalogów', '2014-01-17 23:50:38'),
(1395, 'pl', 'directory', 'spamemailnote', 'Niektóre Katalogi mogą wysyłać spam, zalecamy nie używać swojego głównego adresu email.', '2014-01-17 23:50:38'),
(1396, 'pl', 'directory', 'Submission Details', 'Detale Submisji', '2014-01-17 23:50:38'),
(1397, 'pl', 'directory', 'Submit Description', 'Submituj Opis', '2014-01-17 23:50:38'),
(1398, 'pl', 'directory', 'Submit Keywords', 'Submituj Keyword''y', '2014-01-17 23:50:38'),
(1399, 'pl', 'directory', 'Submit Title', 'Submituj Tytuł', '2014-01-17 23:50:38'),
(1400, 'pl', 'directory', 'Website Category', 'Kategoria Strony', '2014-01-17 23:50:38'),
(1401, 'pl', 'directory', 'Website Url', 'Url Strony', '2014-01-17 23:50:38'),
(1402, 'pl', 'home', 'Account Summary', 'Informacja o Koncie', '2014-01-18 00:53:11'),
(1403, 'pl', 'home', 'Backlinks', 'Backlinki', '2014-01-18 00:53:11'),
(1404, 'pl', 'home', 'Directory Submission', 'Submisja do Katalogu', '2014-01-18 00:53:11'),
(38998, 'ro', 'review', 'Review Link Details', 'Detalii link recenzie', '2026-01-19 22:58:50'),
(38999, 'ru', 'review', 'Review Link Details', 'Детали ссылки на отзыв', '2026-01-19 22:58:50'),
(39000, 'sk', 'review', 'Review Link Details', 'Podrobnosti odkazu na recenziu', '2026-01-19 22:58:50'),
(39001, 'sl', 'review', 'Review Link Details', 'Podrobnosti povezave za mnenje', '2026-01-19 22:58:50'),
(39002, 'sq', 'review', 'Review Link Details', 'Detajet e lidhjes së rishikimit', '2026-01-19 22:58:50'),
(39003, 'sr', 'review', 'Review Link Details', 'Детаљи линка рецензије', '2026-01-19 22:58:50'),
(39004, 'sv', 'review', 'Review Link Details', 'Recensionslänk detaljer', '2026-01-19 22:58:50'),
(39005, 'sw', 'review', 'Review Link Details', 'Maelezo ya Kiungo cha Mapitio', '2026-01-19 22:58:50'),
(39006, 'th', 'review', 'Review Link Details', 'รายละเอียดลิงก์รีวิว', '2026-01-19 22:58:50'),
(39007, 'tl', 'review', 'Review Link Details', 'Mga Detalye ng Review Link', '2026-01-19 22:58:50'),
(39008, 'tr', 'review', 'Review Link Details', 'İnceleme Bağlantı Detayları', '2026-01-19 22:58:50'),
(39009, 'uk', 'review', 'Review Link Details', 'Деталі посилання на відгук', '2026-01-19 22:58:50'),
(39010, 'vn', 'review', 'Review Link Details', 'Chi tiết liên kết đánh giá', '2026-01-19 22:58:50'),
(1408, 'pl', 'home', 'Pages Indexed', 'Zaindexowane Strony', '2014-01-18 00:53:11'),
(1409, 'pl', 'home', 'Ranks', 'Ranking', '2014-01-18 00:53:11'),
(1410, 'pl', 'home', 'SiteNameUrl', 'Nazwa Strony/Url', '2014-01-18 00:53:11'),
(1411, 'pl', 'home', 'Website Statistics', 'Statystyki Strony', '2014-01-18 00:53:11'),
(1412, 'pl', 'keyword', 'Crawling keyword', 'Indeksowanie Keyword''u', '2014-01-17 23:54:55'),
(1413, 'pl', 'keyword', 'Detailed Keyword Position Reports', 'Szczegółowy Raport o Pozycji Keyword''u', '2014-01-17 23:54:55'),
(1414, 'pl', 'keyword', 'Edit Keyword', 'Edytuj Keyword', '2014-01-17 23:54:55'),
(1415, 'pl', 'keyword', 'Graphical Keyword Position Reports', 'Wykres Pozycji Keyword''u', '2014-01-17 23:54:55'),
(1416, 'pl', 'keyword', 'Import Keywords', 'Importuj Keyword''y', '2014-01-17 23:54:55'),
(1417, 'pl', 'keyword', 'Keyword already exist', 'Keyword już istnieje', '2014-01-17 23:54:55'),
(1418, 'pl', 'keyword', 'Keyword Position Report', 'Raport o Pozycji Keyword''u', '2014-01-17 23:54:55'),
(1419, 'pl', 'keyword', 'New Keyword', 'Nowy Keyword', '2014-01-17 23:54:55'),
(1420, 'pl', 'keyword', 'not assigned to required search engines', 'nie przypisane do wymaganych wyszukiwarek', '2014-01-17 23:54:55'),
(1421, 'pl', 'keyword', 'pleaseselecttool', 'Proszę wybrać co najmniej jedno Narzędzie Seo', '2014-01-17 23:54:55'),
(1422, 'pl', 'keyword', 'Quick Keyword Position Checker', 'Szybkie Sprawdzenie Pozycji Keyword''u', '2014-01-17 23:54:55'),
(1423, 'pl', 'keyword', 'results from ', 'rezultaty z', '2014-01-17 23:54:55'),
(1424, 'pl', 'keyword', 'Show All results', 'Pokaż wszystkie rezultaty', '2014-01-17 23:54:55'),
(1425, 'pl', 'keyword', 'Successfully crawled keyword', 'Keyword zaindeksowany pomyślnie', '2014-01-17 23:54:55'),
(1426, 'pl', 'keyword', 'to create new keywords', 'aby utworzyć nowe Keyword''y', '2014-01-17 23:54:55'),
(1427, 'pl', 'panel', 'About Us', 'O Nas', '2014-05-11 23:55:16'),
(1428, 'pl', 'panel', 'Add following command to your cron tab', 'Dodaj Komendę to zakładki Cron', '2014-05-11 23:55:16'),
(1429, 'pl', 'panel', 'alsocheckfollowlink', 'Sprawdź link jeśli chcesz więcej szczegółów', '2014-05-11 23:55:16'),
(1430, 'pl', 'panel', 'Check Directory', 'Sprawdź Katalog', '2014-05-11 23:55:16'),
(1431, 'pl', 'panel', 'Cron Command', 'Komenda Cron', '2014-05-11 23:55:16'),
(1432, 'pl', 'panel', 'Directory Manager', 'Manadżer Katalogów', '2014-05-11 23:55:16'),
(1433, 'pl', 'panel', 'Edit My Profile', 'Edytuj Profil', '2014-05-11 23:55:16'),
(1434, 'pl', 'panel', 'My Profile', 'Mój Profil', '2014-05-11 23:55:16'),
(1435, 'pl', 'panel', 'New Proxy', 'Nowe Proxy', '2014-05-11 23:55:16'),
(1436, 'pl', 'panel', 'New User', 'Nowy Użytkownik', '2014-05-11 23:55:16'),
(1437, 'pl', 'panel', 'New Website', 'Nowa Strona', '2014-05-11 23:55:16'),
(1438, 'pl', 'panel', 'Proxy Manager', 'Manadżer Proxy', '2014-05-11 23:55:16'),
(1439, 'pl', 'panel', 'Report Generation Manager', 'Manadżer Generowania Raportów', '2014-05-11 23:55:16'),
(1440, 'pl', 'panel', 'Reports Manager', 'Manadżer Raportów', '2014-05-11 23:55:16'),
(1441, 'pl', 'panel', 'Seo Plugins Manager', 'Manadżer Pluginów Seo', '2014-05-11 23:55:16'),
(1442, 'pl', 'panel', 'Seo Tools Manager', 'Manadżer Narzędzi Seo', '2014-05-11 23:55:16'),
(1443, 'pl', 'panel', 'System Settings', 'Ustawienia Systemu', '2014-05-11 23:55:16'),
(1444, 'pl', 'panel', 'User Manager', 'Manadżer Użytkowników', '2014-05-11 23:55:16'),
(1445, 'pl', 'panel', 'Website Manager', 'Manadżer Stron', '2014-05-11 23:55:16'),
(1446, 'pl', 'plugin', 'Edit Seo Plugin', 'Edytuj Plugin Seo', '2014-01-18 00:06:52'),
(1447, 'pl', 'plugin', 'Plugin Name', 'Nazwa Pluginu', '2014-01-18 00:06:52'),
(1448, 'pl', 'plugin', 'Seo Plugin Details', 'Szczegóły Pluginu Seo', '2014-01-18 00:06:52'),
(1449, 'pl', 'proxy', 'Edit Proxy', 'Edytuj Proxy', '2014-05-11 23:50:59'),
(1450, 'pl', 'proxy', 'Proxy Password', 'Hasło Proxy', '2014-05-11 23:50:59'),
(1451, 'pl', 'proxy', 'Proxy Username', 'Nazwa Użytkownika Proxy', '2014-05-11 23:50:59'),
(1452, 'pl', 'proxy', 'Proxyalreadyexist', 'Takie Proxy już istnieje', '2014-05-11 23:50:59'),
(1453, 'pl', 'rank', 'enterurlproceed', 'Wprowadź adresy Url <b>Jeden adres na linię</b> Kliknij <b>Kontynuuj</b> by sprawdzić Google Rank i Alexa Rank', '2010-10-09 11:33:20'),
(1454, 'pl', 'rank', 'Google and Alexa Rank Reports', 'raporty Google Rank i Alexa Rank', '2010-10-09 11:33:20'),
(1455, 'pl', 'rank', 'Saved rank results of', 'Zapisane rezultaty', '2010-10-09 11:33:20'),
(1456, 'pl', 'saturation', 'clickproceedsaturation', 'Wprowadź adresy Url <b>Jeden adres na linię</b> Kliknij <b>Kontynuuj</b> by sprawdzić Nasycenie w Wyszukiwarkach (Search Engine Saturation Results)', '2010-10-09 11:36:19'),
(1457, 'pl', 'saturation', 'GenerateSaturationReports', 'Generuj raport Nasycenia w Wyszukiwarkach', '2010-10-09 11:36:19'),
(1458, 'pl', 'saturation', 'Quick Search Engine Saturation Checker', 'Szybkie Sprawdzenie Nasycenia w Wyszukiwarkach', '2010-10-09 11:36:19'),
(1459, 'pl', 'saturation', 'Saved Search Engine Saturation results of', 'Zapisane stany Nasycenia w Wyszukiwarkach', '2010-10-09 11:36:19'),
(1460, 'pl', 'saturation', 'Search Engine Saturation Reports', 'Raporty Nasycenia w Wyszukiwarkach', '2010-10-09 11:36:19'),
(1461, 'pl', 'seotools', 'Automatic Submission', 'Automatyczna submisja', '2014-01-18 00:15:54'),
(1462, 'pl', 'seotools', 'backlink-checker', 'Sprawdzanie backlinków', '2014-01-18 00:15:54'),
(1463, 'pl', 'seotools', 'Backlinks Reports', 'Raporty backlinków', '2014-01-18 00:15:54'),
(1464, 'pl', 'seotools', 'Check Submission Status', 'Sprawdź status submisji', '2014-01-18 00:15:54'),
(1465, 'pl', 'seotools', 'clickgeneratereports', 'Kliknij <b>Kontynuuj</b> aby wygenerować raport', '2014-01-18 00:15:54'),
(1466, 'pl', 'seotools', 'Detailed Position Reports', 'Szczegółowy raport o pozycji', '2014-01-18 00:15:54'),
(1467, 'pl', 'seotools', 'directory-submission', 'Submisja do katalogów', '2014-01-18 00:15:54'),
(1468, 'pl', 'seotools', 'Featured Submission', 'Zintegrowana submisja', '2014-01-18 00:15:54'),
(1469, 'pl', 'seotools', 'Generate Backlinks Reports', 'Generuj raport o backlink''ach', '2014-01-18 00:15:54'),
(1470, 'pl', 'seotools', 'Generate Keyword Reports', 'Generuj raport o keyword''ach', '2014-01-18 00:15:54'),
(1471, 'pl', 'seotools', 'Generate Rank Reports', 'Generuj raport o pozycjach w rankingach', '2014-01-18 00:15:54'),
(1472, 'pl', 'seotools', 'Generate Saturation Reports', 'Generuj raport o nasyceniu w Wyszukiwarkach', '2014-01-18 00:15:54'),
(1473, 'pl', 'seotools', 'Google Sitemap Generator', 'Generator Google map Strony ', '2014-01-18 00:15:54'),
(1474, 'pl', 'seotools', 'Graphical Position Reports', 'Wykres pozycji w rankingach', '2014-01-18 00:15:54'),
(1475, 'pl', 'seotools', 'Keyword Position Summary', 'Podsumowanie pozycji keyword''ów', '2014-01-18 00:15:54'),
(1476, 'pl', 'seotools', 'keyword-position-checker', 'Sprawdzenie pozycji keyword''ów', '2014-01-18 00:15:54'),
(1477, 'pl', 'seotools', 'Keywords Manager', 'Manadżer keyword''ów', '2014-01-18 00:15:54'),
(1478, 'pl', 'seotools', 'Quick Backlinks Checker', 'Szybkie sprawdzenie backlink''ów', '2014-01-18 00:15:54'),
(1479, 'pl', 'seotools', 'Quick Position Checker', 'Szybkie sprawdzenie pozycji ', '2014-01-18 00:15:54'),
(1480, 'pl', 'seotools', 'Quick Rank Checker', 'Szybkie sprawdzenie rankingów', '2014-01-18 00:15:54'),
(1481, 'pl', 'seotools', 'Quick Saturation Checker', 'Szybkie sprawdzenie nasycenia w wyszukiwarkach', '2014-01-18 00:15:54'),
(1482, 'pl', 'seotools', 'Rank Reports', 'Raport rankingów', '2014-01-18 00:15:54'),
(1483, 'pl', 'seotools', 'rank-checker', 'Sprawdzenie rankingów', '2014-01-18 00:15:54'),
(1484, 'pl', 'seotools', 'Saturation Reports', 'Raport nasycenia w wyszukiwarkach', '2014-01-18 00:15:54'),
(1485, 'pl', 'seotools', 'saturation-checker', 'Nasycenie w wyszukiwarkach', '2014-01-18 00:15:54'),
(1486, 'pl', 'seotools', 'sitemap-generator', 'Generator mapy Strony', '2014-01-18 00:15:54'),
(1487, 'pl', 'seotools', 'Skipped Directories', 'Pominięte katalogi', '2014-01-18 00:15:54'),
(1488, 'pl', 'seotools', 'Submission Reports', 'Raporty submisji', '2014-01-18 00:15:54'),
(1489, 'pl', 'seotools', 'User Access', 'Dostęp użytkowników', '2014-01-18 00:15:54'),
(1490, 'pl', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Złóż donację $100</b> i zostań <b>sponsorem</b> Seo Panel.', '2014-05-11 23:49:58'),
(1491, 'pl', 'settings', 'seopanel_description', 'Darmowy kompletny panel do zarządzania Optymalizacją Stron. Zawiera mnóstwo nowych Narzędzi Seo aby kontrolować wydajność twoich Stron. Jest to open source''owy software do którego łatwo możesz pisać własne pluginy Seo.', '2014-05-11 23:49:58'),
(1492, 'pl', 'settings', 'seopanel_title', 'Seo Panel: Pierwszy na świecie open source''owy panel do zarządzania wieloma Stronami', '2014-05-11 23:49:58'),
(1493, 'pl', 'settings', 'SP_CRAWL_DELAY', 'Opóźnienie między każdym indexowaniem robota (w sekundach)', '2014-05-11 23:49:58'),
(1494, 'pl', 'settings', 'SP_DEFAULTLANG', 'Domyślny język', '2014-05-11 23:49:58'),
(1495, 'pl', 'settings', 'SP_DESCRIPTION', 'Opis Seo Panel', '2014-05-11 23:49:58'),
(1496, 'pl', 'settings', 'SP_ENABLE_PROXY', 'Włącz Proxy', '2014-05-11 23:49:58'),
(1497, 'pl', 'settings', 'SP_HOTLINKING', 'Zabezpieczenie hotlinkowania obrazków włączone', '2014-05-11 23:49:58'),
(1498, 'pl', 'settings', 'SP_KEYWORDS', 'Słowa kluczowe Seo Panel', '2014-05-11 23:49:58'),
(1499, 'pl', 'settings', 'SP_PAGINGNO', 'Numer rekordów na stronie', '2014-05-11 23:49:58'),
(1500, 'pl', 'settings', 'SP_TITLE', 'Tytuł Seo Panel', '2014-05-11 23:49:58'),
(1501, 'pl', 'settings', 'SP_USER_GEN_REPORT', 'Pozwól użytkownikowi generować raporty', '2014-05-11 23:49:58'),
(1502, 'pl', 'settings', 'SP_USER_REGISTRATION', 'Interfejs rejestracji użytkownika', '2014-05-11 23:49:58'),
(1503, 'pl', 'settings', 'syssettingssaved', 'Ustawienia Systemu zapisane!', '2014-05-11 23:49:58'),
(1504, 'pl', 'backlink', 'clickproceedbacklink', 'Wprowadź adresy URL <b>każdy w osobnej linii</b>. Kliknij <b>Kontynuuj</b> by sprawdzić Backlinki.', '2014-01-17 23:40:05'),
(1505, 'pl', 'backlink', 'Saved backlink results of', 'Zapisane rezultaty backlink', '2014-01-17 23:40:05'),
(1506, 'hu', 'backlink', 'clickproceedbacklink', 'Soronként <b>Egy</b> weboldal címét írd be. Kattints az <b>Elküldésre</b> a Backlinkek ellenőrzéséhez. ', '2010-10-11 03:45:36'),
(1507, 'hu', 'backlink', 'Saved backlink results of', 'Elmentett Backlinkek:', '2010-10-11 03:45:36'),
(1508, 'hu', 'button', 'Cancel', 'Vissza', '2014-01-09 00:27:48'),
(1509, 'hu', 'button', 'Check Status', 'Állapot ellenőrzése', '2014-01-09 00:27:48'),
(1510, 'hu', 'button', 'Proceed', 'Elküld', '2014-01-09 00:27:48'),
(1511, 'hu', 'button', 'Reload', 'Újra', '2014-01-09 00:27:48'),
(1512, 'hu', 'button', 'Show Details', 'Részletek mutatása', '2014-01-09 00:27:48'),
(1513, 'hu', 'button', 'Show Records', 'Mutasd', '2014-01-09 00:27:48'),
(1514, 'hu', 'button', 'Skip', 'Kihagyás', '2014-01-09 00:27:48'),
(1515, 'hu', 'button', 'Submit', 'Elküld', '2014-01-09 00:27:48'),
(1516, 'hu', 'common', 'Action', 'Művelet', '2019-05-25 22:15:43'),
(1517, 'hu', 'common', 'Activate', 'Aktivál', '2019-05-25 22:15:43'),
(1518, 'hu', 'common', 'Active', 'Aktív', '2019-05-25 22:15:43'),
(1519, 'hu', 'common', 'Admin Panel', 'Admin felület', '2019-05-25 22:15:43'),
(1520, 'hu', 'common', 'Alexa Rank', 'Alexa Rang', '2019-05-25 22:15:43'),
(1521, 'hu', 'common', 'All', 'Összes', '2019-05-25 22:15:43'),
(1522, 'hu', 'common', 'Category', 'Kategória', '2019-05-25 22:15:43'),
(1523, 'hu', 'common', 'contact', 'Kapcsolat', '2019-05-25 22:15:43'),
(1524, 'hu', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Minden jog fenntartva!', '2019-05-25 22:15:43'),
(1525, 'hu', 'common', 'Country', 'Ország', '2019-05-25 22:15:43'),
(1526, 'hu', 'common', 'Crawl Meta Data', 'Meta Adatok Kiolvasása', '2019-05-25 22:15:43'),
(1527, 'hu', 'common', 'Date', 'Dátum', '2019-05-25 22:15:43'),
(1528, 'hu', 'common', 'Delete', 'Törlés', '2019-05-25 22:15:43'),
(1529, 'hu', 'common', 'Details', 'Részletek', '2019-05-25 22:15:43'),
(1530, 'hu', 'common', 'Directory', 'Katalógus', '2019-05-25 22:15:43'),
(1531, 'hu', 'common', 'Donate', 'Seo Panel Támogatása', '2019-05-25 22:15:43'),
(1532, 'hu', 'common', 'Edit', 'Szerkesztés', '2019-05-25 22:15:43'),
(1533, 'hu', 'common', 'Entry cannot be blank', 'Ez a mező nem maradhat üresen!', '2019-05-25 22:15:43'),
(1534, 'hu', 'common', 'entrynotvalid', 'A beírt adatok nem tűnnek valódinak', '2019-05-25 22:15:43'),
(1535, 'hu', 'common', 'failed', 'hiba', '2019-05-25 22:15:43'),
(1536, 'hu', 'common', 'forum', 'Fórum', '2019-05-25 22:15:43'),
(1537, 'hu', 'common', 'Found', 'Találat', '2019-05-25 22:15:43'),
(1538, 'hu', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:15:43'),
(1539, 'hu', 'common', 'help', 'Segítség', '2019-05-25 22:15:43'),
(1540, 'hu', 'common', 'hidenews', 'Seo Panel Hírek Elrejtése', '2019-05-25 22:15:43'),
(1541, 'hu', 'common', 'Id', 'Sorszám', '2019-05-25 22:15:43'),
(1542, 'hu', 'common', 'Inactivate', 'Inaktiválás', '2019-05-25 22:15:43'),
(1543, 'hu', 'common', 'Inactive', 'Inaktív', '2019-05-25 22:15:43'),
(1544, 'hu', 'common', 'Invalid characters', 'Érvénytelen Karakterek', '2019-05-25 22:15:43'),
(1545, 'hu', 'common', 'Invalid code entered', 'Hibás kódot írtál be', '2019-05-25 22:15:43'),
(1546, 'hu', 'common', 'Invalid email address entered', 'Hibás e-mail cím', '2019-05-25 22:15:43'),
(1547, 'hu', 'common', 'Invalid value', 'Érvénytelen érték', '2019-05-25 22:15:43'),
(1548, 'hu', 'common', 'Keyword', 'Kulcsszó', '2019-05-25 22:15:43'),
(1549, 'hu', 'common', 'Keywords', 'Kulcsszavak', '2019-05-25 22:15:43'),
(1550, 'hu', 'common', 'lang', 'Nyelv', '2019-05-25 22:15:43'),
(1551, 'hu', 'common', 'My Account', 'Fiókom', '2019-05-25 22:15:43'),
(1552, 'hu', 'common', 'Name', 'Név', '2019-05-25 22:15:43'),
(1553, 'hu', 'common', 'No', 'Nem', '2019-05-25 22:15:43'),
(1554, 'hu', 'common', 'No Keywords Found', 'Nem Találtunk Kulcsszót', '2019-05-25 22:15:43'),
(1555, 'hu', 'common', 'No Records Found', 'Nincs Találat', '2019-05-25 22:15:43'),
(1556, 'hu', 'common', 'noactivetools', 'Nem találtunk Aktív Seo eszközt!', '2019-05-25 22:15:43'),
(1557, 'hu', 'common', 'nowebsites', 'Nem Találtunk Weboldalt', '2019-05-25 22:15:43'),
(1558, 'hu', 'common', 'password632', 'A jelszónak minimum 6, maximum 32 karakteresnek kell lennie', '2019-05-25 22:15:43'),
(1559, 'hu', 'common', 'passwordnotmatch', 'A jelszavak nem egyeznek', '2019-05-25 22:15:43'),
(1560, 'hu', 'common', 'Period', 'Időszak', '2019-05-25 22:15:43'),
(1561, 'hu', 'common', 'Priority', 'Prioritás', '2019-05-25 22:15:43'),
(1562, 'hu', 'common', 'Rank', 'Rang', '2019-05-25 22:15:43'),
(1563, 'hu', 'common', 'Reports', 'Jelentések', '2019-05-25 22:15:43'),
(1564, 'hu', 'common', 'Results', 'Eredmények', '2019-05-25 22:15:43'),
(1565, 'hu', 'common', 'Search Engine', 'Keresőmotor', '2019-05-25 22:15:43'),
(1566, 'hu', 'common', 'Select', 'Választ', '2019-05-25 22:15:43'),
(1567, 'hu', 'common', 'Seo Plugins', 'Seo Beépülők', '2019-05-25 22:15:43'),
(1568, 'hu', 'common', 'Seo Tools', 'Seo Eszközök', '2019-05-25 22:15:43'),
(1569, 'hu', 'common', 'Sign out', 'Kilépés', '2019-05-25 22:15:43'),
(1570, 'hu', 'common', 'Sign Up', 'Regisztráció', '2019-05-25 22:15:43'),
(1571, 'hu', 'common', 'signin', 'Bejelentkezés', '2019-05-25 22:15:43'),
(1572, 'hu', 'common', 'Status', 'Állapot', '2019-05-25 22:15:43'),
(1573, 'hu', 'common', 'Support', 'Támogatás', '2019-05-25 22:15:43'),
(1574, 'hu', 'common', 'Total', 'Összesen', '2019-05-25 22:15:43'),
(1575, 'hu', 'common', 'Url', 'Url', '2019-05-25 22:15:43'),
(1576, 'hu', 'common', 'User', 'Felhasználó', '2019-05-25 22:15:43'),
(1577, 'hu', 'common', 'User Panel', 'Felhasználói Felület', '2019-05-25 22:15:43'),
(1578, 'hu', 'common', 'Website', 'Weboldal', '2019-05-25 22:15:43'),
(1579, 'hu', 'common', 'Yes', 'Igen', '2019-05-25 22:15:43'),
(1580, 'hu', 'directory', 'Add back to directory list', 'Visszahelyezés a katalóguslistába', '2013-02-06 00:23:52'),
(1581, 'hu', 'directory', 'Approved', 'Elfogadva', '2013-02-06 00:23:52'),
(1582, 'hu', 'directory', 'Captcha', 'Captcha', '2013-02-06 00:23:52'),
(1583, 'hu', 'directory', 'categorynote', 'Kategóriák, vesszővel elválasztva, fontossági sorrendbe. A legfontosabban kezd.', '2013-02-06 00:23:52'),
(1584, 'hu', 'directory', 'Check Directory Status', 'Katalógus Állapotának Ellenőrzése', '2013-02-06 00:23:52'),
(1585, 'hu', 'directory', 'Check Directory Submission Status', 'Katalógus Linkek állapota', '2013-02-06 00:23:52'),
(1586, 'hu', 'directory', 'clicktoproceeddirsts', 'Kattints az <b>Elküldésre</b> ahhoz, hogy ellenőrizd a katalógus állapotát.', '2013-02-06 00:23:52'),
(1587, 'hu', 'directory', 'Confirmation', 'Megerősítés', '2013-02-06 00:23:52'),
(1588, 'hu', 'directory', 'desnote', 'Néhány katalógusba minimum 150 karakteresnek kell lennie a leírásnak. ', '2013-02-06 00:23:52'),
(1589, 'hu', 'directory', 'Directories with out captcha', 'Katalógusok captcha nélkül', '2013-02-06 00:23:52'),
(1590, 'hu', 'directory', 'Directory Submission Reports', 'Jelentés a Linkbeküldésekről', '2013-02-06 00:23:52'),
(1591, 'hu', 'directory', 'Enter the code shown', 'Írd be az alábbi kódot', '2013-02-06 00:23:52'),
(1592, 'hu', 'directory', 'nocatnote', 'Az általad megadott kategóriát nem találtuk a katalógusba. Kérlek kattints az <b>Újra</b> vagy a <b>Tovább</b> feliratra ', '2013-02-06 00:23:52'),
(1593, 'hu', 'directory', 'nodirnote', 'Nem találtunk <b>Aktív</b> katalógust', '2013-02-06 00:23:52'),
(1594, 'hu', 'directory', 'nosuccessnote', 'Ha nem jelenik meg a \\"sikeres beküldés\\" az ajánlás után, akkor ellenőrizd az e-mailjeidet, hogy nem kell-e aktiválni a linket.', '2013-02-06 00:23:52'),
(1595, 'hu', 'directory', 'optionalnote', 'További Cím és leírások melyek automatikusan cserélődni fognak minden linkbeküldésnél.', '2013-02-06 00:23:52'),
(1596, 'hu', 'directory', 'Owner Email', 'Kapcsolattartó E-mail címe', '2013-02-06 00:23:52'),
(1597, 'hu', 'directory', 'Owner Name', 'Kapcsolattartó Neve', '2013-02-06 00:23:52'),
(1598, 'hu', 'directory', 'Pending', 'Függőben', '2013-02-06 00:23:52'),
(1599, 'hu', 'directory', 'Please select a website to proceed', 'Kérlek válassz egy weboldalt elküldésre', '2013-02-06 00:23:52'),
(1600, 'hu', 'directory', 'selectwebsiteproceed', 'Válassz ki egy <b>Weboldalt</b> és kattints az <b>Elküldésre</b>.<br>Válaszd ki a \\"<b>Katalógusok captcha nélkül</b>\\" opciót, hogy meggyorsítsd a linkbeküldést.', '2013-02-06 00:23:52'),
(1601, 'hu', 'directory', 'selectwebsiteschecksub', 'Válassz ki egy <b>Weboldalt</b> és kattints az <b>Elküldésre</b>.', '2013-02-06 00:23:52'),
(1602, 'hu', 'directory', 'Semi Automatic Directory Submission Tool', 'Félautomata Linkbeküldés', '2013-02-06 00:23:52'),
(1603, 'hu', 'directory', 'spamemailnote', 'Néhány katalógus küldhet spam leveleket, ezért ne a fő e-mail címünket használjuk. ', '2013-02-06 00:23:52'),
(1604, 'hu', 'directory', 'Submission Details', 'Linkbeküldése adatai', '2013-02-06 00:23:52'),
(1605, 'hu', 'directory', 'Submit Description', 'Leírás', '2013-02-06 00:23:52'),
(1606, 'hu', 'directory', 'Submit Keywords', 'Kulcsszavak', '2013-02-06 00:23:52'),
(1607, 'hu', 'directory', 'Submit Title', 'Cím', '2013-02-06 00:23:52'),
(1608, 'hu', 'directory', 'Website Category', 'Kategória', '2013-02-06 00:23:52'),
(1609, 'hu', 'directory', 'Website Url', 'URL', '2013-02-06 00:23:52'),
(1610, 'hu', 'home', 'Account Summary', 'Felhasználói Fiók', '2011-07-11 10:51:07'),
(1611, 'hu', 'home', 'Backlinks', 'Backlinkek', '2011-07-11 10:51:07'),
(1612, 'hu', 'home', 'Directory Submission', 'Linkbeküldés', '2011-07-11 10:51:07'),
(38985, 'hu', 'review', 'Review Link Details', 'Értékelési link részletei', '2026-01-19 22:58:50'),
(38986, 'hy', 'review', 'Review Link Details', 'Ակնարկի հղման մանրամասներ', '2026-01-19 22:58:50'),
(38987, 'id', 'review', 'Review Link Details', 'Detail Tautan Ulasan', '2026-01-19 22:58:50'),
(38988, 'it', 'review', 'Review Link Details', 'Dettagli Link Recensione', '2026-01-19 22:58:50'),
(38989, 'ja', 'review', 'Review Link Details', 'レビューリンク詳細', '2026-01-19 22:58:50'),
(38990, 'ko', 'review', 'Review Link Details', '리뷰 링크 세부정보', '2026-01-19 22:58:50'),
(38991, 'lt', 'review', 'Review Link Details', 'Atsiliepimo nuorodos detalės', '2026-01-19 22:58:50'),
(38992, 'mk', 'review', 'Review Link Details', 'Детали на линкот за рецензија', '2026-01-19 22:58:50'),
(38993, 'nl', 'review', 'Review Link Details', 'Beoordelingslink details', '2026-01-19 22:58:50'),
(38994, 'no', 'review', 'Review Link Details', 'Anmeldelseslenke detaljer', '2026-01-19 22:58:50'),
(38995, 'pl', 'review', 'Review Link Details', 'Szczegóły linku recenzji', '2026-01-19 22:58:50'),
(38996, 'pt', 'review', 'Review Link Details', 'Detalhes do link de avaliação', '2026-01-19 22:58:50'),
(38997, 'pt-br', 'review', 'Review Link Details', 'Detalhes do link de avaliação', '2026-01-19 22:58:50'),
(1616, 'hu', 'home', 'Pages Indexed', 'Indexelt oldalak', '2011-07-11 10:51:07'),
(1617, 'hu', 'home', 'Ranks', 'Rang', '2011-07-11 10:51:07'),
(1618, 'hu', 'home', 'SiteNameUrl', 'Oldal Neve/Url', '2011-07-11 10:51:07'),
(1619, 'hu', 'home', 'Website Statistics', 'Weboldal statisztika', '2011-07-11 10:51:07'),
(1620, 'hu', 'keyword', 'Crawling keyword', 'Kulcsszó ellenőrzése', '2011-07-11 10:53:54'),
(1621, 'hu', 'keyword', 'Detailed Keyword Position Reports', 'Részletes Kulcsszó Beszámoló', '2011-07-11 10:53:54'),
(1622, 'hu', 'keyword', 'Edit Keyword', 'Kulcsszó Szerkesztése', '2011-07-11 10:53:54'),
(1623, 'hu', 'keyword', 'Graphical Keyword Position Reports', 'Grafikus Kulcsszó Beszámoló', '2011-07-11 10:53:54'),
(1624, 'hu', 'keyword', 'Import Keywords', 'Kulcsszó importálása', '2011-07-11 10:53:54'),
(1625, 'hu', 'keyword', 'Keyword already exist', 'Ez a Kulcsszó már létezik', '2011-07-11 10:53:54'),
(1626, 'hu', 'keyword', 'Keyword Position Report', 'Beszámoló a Helyezésekről', '2011-07-11 10:53:54'),
(1627, 'hu', 'keyword', 'New Keyword', 'Új Kulcsszó', '2011-07-11 10:53:54'),
(1628, 'hu', 'keyword', 'not assigned to required search engines', 'not assigned to required search engines', '2011-07-11 10:53:54'),
(1629, 'hu', 'keyword', 'pleaseselecttool', 'Kérlek válassz minimum egy Seo eszközt', '2011-07-11 10:53:54'),
(1630, 'hu', 'keyword', 'Quick Keyword Position Checker', 'Gyors Helyezés vizsgáló', '2011-07-11 10:53:54'),
(1631, 'hu', 'keyword', 'results from ', 'eredmények', '2011-07-11 10:53:54'),
(1632, 'hu', 'keyword', 'Show All results', 'Összes eredmény mutatása', '2011-07-11 10:53:54'),
(1633, 'hu', 'keyword', 'Successfully crawled keyword', 'Sikeresen leellenőrzött kulcsszó', '2011-07-11 10:53:54'),
(1634, 'hu', 'keyword', 'to create new keywords', 'egy új kulcsszó hozzáadása', '2011-07-11 10:53:54'),
(1635, 'hu', 'label', 'already exist', 'már létezik', '2013-02-06 00:24:43'),
(1636, 'hu', 'label', 'Authentication', 'Hitelesítés', '2013-02-06 00:24:43'),
(1637, 'hu', 'label', 'Author', 'Szerző', '2013-02-06 00:24:43'),
(1638, 'hu', 'label', 'Click Here', 'Kattints Ide', '2013-02-06 00:24:43'),
(1639, 'hu', 'label', 'Cron', 'Cron', '2013-02-06 00:24:43'),
(1640, 'hu', 'label', 'Description', 'Leírás', '2013-02-06 00:24:43'),
(1641, 'hu', 'label', 'Developers', 'Fejlesztők', '2013-02-06 00:24:43'),
(1642, 'hu', 'label', 'Download', 'Letöltés', '2013-02-06 00:24:43'),
(1643, 'hu', 'label', 'Installation', 'Telepítés', '2013-02-06 00:24:43'),
(1644, 'hu', 'label', 'Keywords', 'Kulcsszavak', '2013-02-06 00:24:43'),
(1645, 'hu', 'label', 'noactiveplugins', 'Nem találtunk aktív Seo beépülőket!', '2013-02-06 00:24:43'),
(1646, 'hu', 'label', 'Plugin', 'Beépülő', '2013-02-06 00:24:43'),
(1647, 'hu', 'label', 'Port', 'Port', '2013-02-06 00:24:43'),
(1648, 'hu', 'label', 'Proxy', 'Proxy', '2013-02-06 00:24:43'),
(1649, 'hu', 'label', 'Re-install', 'Újrainstallálom', '2013-02-06 00:24:43'),
(1650, 'hu', 'label', 'Sponsors', 'Támogatók', '2013-02-06 00:24:43'),
(1651, 'hu', 'label', 'Title', 'Cím', '2013-02-06 00:24:43'),
(1652, 'hu', 'label', 'translation by', 'fordította:', '2013-02-06 00:24:43'),
(1653, 'hu', 'label', 'Translators', 'Fordítók', '2013-02-06 00:24:43'),
(1654, 'hu', 'label', 'Upgrade', 'Frissítés', '2013-02-06 00:24:43'),
(1655, 'hu', 'label', 'Version', 'Verzió', '2013-02-06 00:24:43'),
(1656, 'hu', 'label', 'wantproceed', 'Biztos vagy benne?', '2013-02-06 00:24:43'),
(1657, 'hu', 'login', 'Confirm Password', 'Jelszó megerősítése', '2010-10-11 02:33:10'),
(1658, 'hu', 'login', 'Create my account', 'Felhasználói fiók létrehozása', '2010-10-11 02:33:11'),
(1659, 'hu', 'login', 'Create New Account', 'Új Felhasználói Fiók', '2010-10-11 02:33:11'),
(1660, 'hu', 'login', 'Email', 'E-mail', '2010-10-11 02:33:11'),
(1661, 'hu', 'login', 'emailexist', 'Ez az E-mail cím már létezik!', '2010-10-11 02:33:11'),
(1662, 'hu', 'login', 'Enter the code as it is shown', 'Írd be az alábbi kódot', '2010-10-11 02:33:11'),
(1663, 'hu', 'login', 'First Name', 'Vezetéknév', '2010-10-11 02:33:11'),
(1664, 'hu', 'login', 'Last Name', 'Keresztnév', '2010-10-11 02:33:11'),
(1665, 'hu', 'login', 'Login', 'Bejelentkezés', '2010-10-11 02:33:11'),
(1666, 'hu', 'login', 'Login incorrect', 'Nem sikerült bejelentkezned', '2010-10-11 02:33:11'),
(1667, 'hu', 'login', 'newaccountsuccess', 'Az új felhasználói fiók sikeresen elkészült!', '2010-10-11 02:33:11'),
(1668, 'hu', 'login', 'Password', 'Jelszó', '2010-10-11 02:33:11'),
(1669, 'hu', 'login', 'Password incorrect', 'A Jelszó hibás', '2010-10-11 02:33:11'),
(1670, 'hu', 'login', 'Register', 'Regisztráció', '2010-10-11 02:33:11'),
(1671, 'hu', 'login', 'Sign in to your account', 'Jelentkezz be', '2010-10-11 02:33:11'),
(1672, 'hu', 'login', 'User inactive', 'Inaktív felhasználó', '2010-10-11 02:33:11'),
(1673, 'hu', 'login', 'Username', 'Felhasználónév', '2010-10-11 02:33:11'),
(1674, 'hu', 'login', 'usernameexist', 'Ilyen felhasználónévvel már regisztráltak!', '2010-10-11 02:33:11'),
(1675, 'hu', 'panel', 'About Us', 'A Készítőkről', '2013-02-06 00:25:03'),
(1676, 'hu', 'panel', 'Add following command to your cron tab', 'Add hozzá az alábbi utasítást a cron tabodhoz', '2013-02-06 00:25:03'),
(1677, 'hu', 'panel', 'alsocheckfollowlink', 'Nézd meg az alábbi linket ha szükséged van további részletekre.', '2013-02-06 00:25:03'),
(1678, 'hu', 'panel', 'Check Directory', 'Katalógus ellenőrzése', '2013-02-06 00:25:03'),
(1679, 'hu', 'panel', 'Cron Command', 'Cron Parancs', '2013-02-06 00:25:03'),
(1680, 'hu', 'panel', 'Directory Manager', 'Katalógus Kezelő', '2013-02-06 00:25:03'),
(1681, 'hu', 'panel', 'Edit My Profile', 'profilom Szerkesztése', '2013-02-06 00:25:03'),
(1682, 'hu', 'panel', 'My Profile', 'Profilom', '2013-02-06 00:25:03'),
(1683, 'hu', 'panel', 'New Proxy', 'Új Proxy', '2013-02-06 00:25:03'),
(1684, 'hu', 'panel', 'New User', 'Új Felhasználó', '2013-02-06 00:25:03'),
(1685, 'hu', 'panel', 'New Website', 'Új Weboldal', '2013-02-06 00:25:03'),
(1686, 'hu', 'panel', 'Proxy Manager', 'Proxy Kezelő', '2013-02-06 00:25:03'),
(1687, 'hu', 'panel', 'Report Generation Manager', 'Jelentéskészítő Beállításai', '2013-02-06 00:25:03'),
(1688, 'hu', 'panel', 'Reports Manager', 'Jelentések Kezelése', '2013-02-06 00:25:03'),
(1689, 'hu', 'panel', 'Seo Plugins Manager', 'Seo Beépülők Kezelése', '2013-02-06 00:25:03'),
(1690, 'hu', 'panel', 'Seo Tools Manager', 'Seo kiegészítések kezelése', '2013-02-06 00:25:03'),
(1691, 'hu', 'panel', 'System Settings', 'Rendszerbeállítások', '2013-02-06 00:25:03'),
(1692, 'hu', 'panel', 'User Manager', 'Felhasználókezelő', '2013-02-06 00:25:03'),
(1693, 'hu', 'panel', 'Website Manager', 'Weboldalkezelő', '2013-02-06 00:25:03'),
(1694, 'hu', 'plugin', 'Edit Seo Plugin', 'Seo Beépülő Szerkesztése', '2012-05-23 02:30:42'),
(1695, 'hu', 'plugin', 'Plugin Name', 'Beépülő Neve', '2012-05-23 02:30:42'),
(1696, 'hu', 'plugin', 'Seo Plugin Details', 'Seo Beépülő Leírása', '2012-05-23 02:30:42'),
(1697, 'hu', 'proxy', 'Edit Proxy', 'Proxy Szerkesztése', '2010-10-11 02:42:13'),
(1698, 'hu', 'proxy', 'Proxy Password', 'Proxy Jelszó', '2010-10-11 02:42:14'),
(1699, 'hu', 'proxy', 'Proxy Username', 'Proxy Felhasználónév', '2010-10-11 02:42:14'),
(1700, 'hu', 'proxy', 'Proxyalreadyexist', 'Ez a Proxy már létezik!', '2010-10-11 02:42:14'),
(1701, 'hu', 'rank', 'enterurlproceed', 'Írd be a weboldalak Url-jét <b>egyesével soronként</b>. Kattints az <b>Elküldése</b> feliratra a Google és Alexa rank ellenőrzéséhez.', '2010-10-11 02:45:42'),
(1702, 'hu', 'rank', 'Google and Alexa Rank Reports', 'Google és Alexa Rank Jelentések', '2010-10-11 02:45:42'),
(1703, 'hu', 'rank', 'Saved rank results of', 'Elmentett eredmények:', '2010-10-11 02:45:42'),
(1704, 'hu', 'saturation', 'clickproceedsaturation', 'Írd be az ellenőrizendő weboldalak Url-jét(<b>soronként egyet</b>). Kattints az <b>Elküldés</b> feliratra, hogy ellenőrizd az indexelt oldalak számát.', '2010-10-11 02:52:43'),
(1705, 'hu', 'saturation', 'GenerateSaturationReports', 'Jelentés készítése a keresők által indexelt oldalak számából', '2010-10-11 02:52:43'),
(1706, 'hu', 'saturation', 'Quick Search Engine Saturation Checker', 'Gyors ellenőrzése az indexelt oldalak számának', '2010-10-11 02:52:43'),
(1707, 'hu', 'saturation', 'Saved Search Engine Saturation results of', 'Indexelt oldalak száma elmentve:', '2010-10-11 02:52:43'),
(1708, 'hu', 'saturation', 'Search Engine Saturation Reports', 'Indexelt Oldalak Számának Jelentése', '2010-10-11 02:52:43'),
(1709, 'hu', 'seotools', 'Automatic Submission', 'Automata Linkbeküldés', '2011-07-11 11:00:18'),
(1710, 'hu', 'seotools', 'backlink-checker', 'Backlink Ellenőrző', '2011-07-11 11:00:18'),
(1711, 'hu', 'seotools', 'Backlinks Reports', 'Backlink Jelentések', '2011-07-11 11:00:18'),
(1712, 'hu', 'seotools', 'Check Submission Status', 'Beküldés állapotának ellenőrzése', '2011-07-11 11:00:18'),
(1713, 'hu', 'seotools', 'clickgeneratereports', 'Kattints az <b>Elküldés</b> feliratra, hogy elkészüljön a jelentés\r\n', '2011-07-11 11:00:18'),
(1714, 'hu', 'seotools', 'Detailed Position Reports', 'Részletes Jelentés a Helyezésekről', '2011-07-11 11:00:18'),
(1715, 'hu', 'seotools', 'directory-submission', 'Linkbeküldés', '2011-07-11 11:00:18'),
(1716, 'hu', 'seotools', 'Featured Submission', 'Kiemelt Linkbeküldés', '2011-07-11 11:00:18'),
(1717, 'hu', 'seotools', 'Generate Backlinks Reports', 'Backlink jelentés készítése', '2011-07-11 11:00:18'),
(1718, 'hu', 'seotools', 'Generate Keyword Reports', 'Kulcsszó Jelentés Készítése', '2011-07-11 11:00:18'),
(1719, 'hu', 'seotools', 'Generate Rank Reports', 'Google és Alexa Rank Jelentés', '2011-07-11 11:00:18'),
(1720, 'hu', 'seotools', 'Generate Saturation Reports', 'jelentés az Indexelt Oldalakról', '2011-07-11 11:00:18'),
(1721, 'hu', 'seotools', 'Google Sitemap Generator', 'Google Oldaltérkép Készítése', '2011-07-11 11:00:18'),
(1722, 'hu', 'seotools', 'Graphical Position Reports', 'Grafikus Helyezés Jelentés', '2011-07-11 11:00:18'),
(1723, 'hu', 'seotools', 'Keyword Position Summary', 'Kulcsszavak Pozíciójának Összefoglalója', '2011-07-11 11:00:18'),
(1724, 'hu', 'seotools', 'keyword-position-checker', 'Helyezés Vizsgáló', '2011-07-11 11:00:18'),
(1725, 'hu', 'seotools', 'Keywords Manager', 'Kulcsszókezelő', '2011-07-11 11:00:18'),
(1726, 'hu', 'seotools', 'Quick Backlinks Checker', 'Gyors Backlink Ellenőrző', '2011-07-11 11:00:18'),
(1727, 'hu', 'seotools', 'Quick Position Checker', 'Gyors Helyezés Vizsgáló', '2011-07-11 11:00:18'),
(1728, 'hu', 'seotools', 'Quick Rank Checker', 'Gyors \\"Rang\\" Vizsgáló', '2011-07-11 11:00:18'),
(1729, 'hu', 'seotools', 'Quick Saturation Checker', 'Gyors Indexelés Vizsgáló', '2011-07-11 11:00:18'),
(1730, 'hu', 'seotools', 'Rank Reports', '\\"Rang\\" Jelentések', '2011-07-11 11:00:18'),
(1731, 'hu', 'seotools', 'rank-checker', 'Alexa és Pagerank', '2011-07-11 11:00:18'),
(1732, 'hu', 'seotools', 'Saturation Reports', 'Indexelésről Jelentések', '2011-07-11 11:00:18'),
(1733, 'hu', 'seotools', 'saturation-checker', 'Indexelt Oldalak ', '2011-07-11 11:00:18'),
(1734, 'hu', 'seotools', 'sitemap-generator', 'Oldaltérkép Készítése', '2011-07-11 11:00:18'),
(1735, 'hu', 'seotools', 'Skipped Directories', 'Kihagyott Katalógusok', '2011-07-11 11:00:18'),
(1736, 'hu', 'seotools', 'Submission Reports', 'Jelentés a Linkbeküldésekről', '2011-07-11 11:00:18'),
(1737, 'hu', 'seotools', 'User Access', 'Hozzáférés', '2011-07-11 11:00:18'),
(1738, 'hu', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Támogasd $100-al</b> a Seo Panlelt és válj <b>Támogatóvá</b>.', '2013-02-06 00:25:44'),
(1739, 'hu', 'settings', 'seopanel_description', 'Egy teljesen ingyenes eszköz mely nagy mértékben megkönnyíti a keresőoptimalizálást. Egyszerre több népszerű Seo eszközt foglal magában, hogy Weblapjából a maximumot hozhassa ki. Nyílt forráskódú ezért Ön is fejleszthet hozzá különböző Seo Kiegészítőket.', '2013-02-06 00:25:44'),
(1740, 'hu', 'settings', 'seopanel_title', 'Seo Panel: A világ első nyílt forráskódú Keresőoptimalizáló \\"Panel\\"-je. ', '2013-02-06 00:25:44'),
(1741, 'hu', 'settings', 'SP_CRAWL_DELAY', 'Várakozás a lekérdezések között(másodperc)', '2013-02-06 00:25:44'),
(1742, 'hu', 'settings', 'SP_DEFAULTLANG', 'Alapértelmezett Nyelv', '2013-02-06 00:25:44'),
(1743, 'hu', 'settings', 'SP_DESCRIPTION', 'Seo Panel Leírás', '2013-02-06 00:25:44'),
(1744, 'hu', 'settings', 'SP_ENABLE_PROXY', 'Proxy Engedélyezése', '2013-02-06 00:25:44'),
(1745, 'hu', 'settings', 'SP_HOTLINKING', 'Képek \\"hotlink\\" védelmének engedélyezése', '2013-02-06 00:25:44'),
(1746, 'hu', 'settings', 'SP_KEYWORDS', 'Seo Panel Kulcsszavak', '2013-02-06 00:25:44'),
(1747, 'hu', 'settings', 'SP_PAGINGNO', 'Bejegyzések száma oldalanként', '2013-02-06 00:25:44'),
(1748, 'hu', 'settings', 'SP_TITLE', 'Seo Panel Cím', '2013-02-06 00:25:44'),
(1749, 'hu', 'settings', 'SP_USER_GEN_REPORT', 'Felhasználók készíthetnek-e jelentéseket', '2013-02-06 00:25:44'),
(1750, 'hu', 'settings', 'SP_USER_REGISTRATION', 'Regisztráció engedélyezése', '2013-02-06 00:25:44'),
(1751, 'hu', 'settings', 'syssettingssaved', 'A Beállításokat sikeresen elmentettük!', '2013-02-06 00:25:44');
INSERT INTO `texts` VALUES
(1752, 'hu', 'sitemap', 'Change frequency', 'Frissítés gyakorisága', '2010-10-11 03:31:58'),
(1753, 'hu', 'sitemap', 'clickproceedsitemap', 'Kattints az <b>Elküldés</b> feliratra, hogy az oldaltérképed elkészüljön', '2010-10-11 03:31:58'),
(1754, 'hu', 'sitemap', 'Download sitemap file from', 'Oldaltérkép letöltése', '2010-10-11 03:31:58'),
(1755, 'hu', 'sitemap', 'Exclude Url', 'Kihagyandó URL-ek', '2010-10-11 03:31:58'),
(1756, 'hu', 'sitemap', 'processtaketime', 'Az oldaltérkép elkészítése eltarthat egy ideig, attól függően, hogy az oldalán mennyi link található. Kérem várjon...', '2010-10-11 03:31:58'),
(1757, 'hu', 'sitemap', 'Sitemap Type', 'Oldaltérkép típusa', '2010-10-11 03:31:58'),
(1758, 'hu', 'user', 'Edit User', 'Felhasználó szerkesztése', '2010-10-11 03:35:28'),
(1759, 'hu', 'user', 'Saved My Profile Details', 'A változtatásokat elmentettük', '2010-10-11 03:35:28'),
(1760, 'hu', 'website', 'Edit Website', 'Weboldal Szerkesztése', '2010-10-12 02:15:03'),
(1761, 'hu', 'website', 'plscrtwebsite', 'Kérem először adjon meg egy weboldalt mielőtt elkezdi használni a Seo eszközöket és beépülőket.', '2010-10-12 02:15:03'),
(1762, 'hu', 'website', 'Website already exist', 'Ez a Weboldal már megtalálható az adatbázisunkban.', '2010-10-12 02:15:03'),
(1763, 'hu', 'website', 'yourwebalreday', 'Weboldalad, ha már legalább egyet megadtál.', '2010-10-12 02:15:03'),
(1764, 'it', 'website', 'Edit Website', 'Modifica sito web', '2018-08-21 11:27:14'),
(1765, 'it', 'website', 'plscrtwebsite', 'Per cortesia crea il sito web proma di utilizzareo gli strumenti seo e i plugin seo.', '2018-08-21 11:27:14'),
(1766, 'it', 'website', 'Website already exist', 'Sito web già esistente', '2018-08-21 11:27:14'),
(1767, 'it', 'website', 'yourwebalreday', 'il tuo sito web se ne hai già creato uno.', '2018-08-21 11:27:14'),
(1768, 'it', 'user', 'Edit User', 'Modifica utente', '2018-08-21 11:25:45'),
(1769, 'it', 'user', 'Saved My Profile Details', 'Salva i miei dettagli del profilo', '2018-08-21 11:25:45'),
(1770, 'it', 'sitemap', 'Change frequency', 'Frequenza di aggiornamento', '2010-10-11 07:23:32'),
(1771, 'it', 'sitemap', 'clickproceedsitemap', 'Clicca su <b>Procedi</b> per creare il file sitemap', '2010-10-11 07:23:32'),
(1772, 'it', 'sitemap', 'Download sitemap file from', 'Scarica file sitemap da', '2010-10-11 07:23:32'),
(1773, 'it', 'sitemap', 'Exclude Url', 'Url da escludere', '2010-10-11 07:23:32'),
(1774, 'it', 'sitemap', 'processtaketime', 'Questo processo durerà in base al numero di link presenti nel tuo sito. Per cortesia aspetta per la sitemap.', '2010-10-11 07:23:32'),
(1775, 'it', 'sitemap', 'Sitemap Type', 'Tipo sitemap', '2010-10-11 07:23:32'),
(1776, 'it', 'login', 'Confirm Password', 'Conferma password', '2018-08-21 11:07:40'),
(1777, 'it', 'login', 'Create my account', 'Crea il mio account', '2018-08-21 11:07:40'),
(1778, 'it', 'login', 'Create New Account', 'Crea nuovo account', '2018-08-21 11:07:40'),
(1779, 'it', 'login', 'Email', 'Email', '2018-08-21 11:07:40'),
(1780, 'it', 'login', 'emailexist', 'La mail esiste già!', '2018-08-21 11:07:40'),
(1781, 'it', 'login', 'Enter the code as it is shown', 'Inserisci il codice mostrato', '2018-08-21 11:07:40'),
(1782, 'it', 'login', 'First Name', 'Nome', '2018-08-21 11:07:40'),
(1783, 'it', 'login', 'Last Name', 'Cognome', '2018-08-21 11:07:40'),
(1784, 'it', 'login', 'Login', 'Login', '2018-08-21 11:07:40'),
(1785, 'it', 'login', 'Login incorrect', 'Login errato', '2018-08-21 11:07:40'),
(1786, 'it', 'login', 'newaccountsuccess', 'Nuovo account creato con successo!', '2018-08-21 11:07:40'),
(1787, 'it', 'login', 'Password', 'Password', '2018-08-21 11:07:40'),
(1788, 'it', 'login', 'Password incorrect', 'Password non corretta', '2018-08-21 11:07:40'),
(1789, 'it', 'login', 'Register', 'Registrati', '2018-08-21 11:07:40'),
(1790, 'it', 'login', 'Sign in to your account', 'Collegati con il tuo account', '2018-08-21 11:07:40'),
(1791, 'it', 'login', 'User inactive', 'Utente inattivo', '2018-08-21 11:07:40'),
(1792, 'it', 'login', 'Username', 'Nome utente', '2018-08-21 11:07:40'),
(1793, 'it', 'login', 'usernameexist', 'Nome utente già esistente!', '2018-08-21 11:07:40'),
(1846, 'nl', 'common', 'Name', 'Naam', '2019-05-25 22:06:08'),
(1847, 'nl', 'common', 'No Keywords Found', 'Geen Zoekwoorden gevonden', '2019-05-25 22:06:08'),
(1848, 'nl', 'common', 'No Records Found', 'Geen Rapporten Gevonden', '2019-05-25 22:06:08'),
(1849, 'nl', 'common', 'noactivetools', 'Geen actieve Seo Tools gevonden!', '2019-05-25 22:06:08'),
(1850, 'nl', 'common', 'nowebsites', 'Geen Websites gevonden', '2019-05-25 22:06:08'),
(1851, 'nl', 'common', 'password632', 'Het wachtwoord moet 6 tot 32 tekens lang zijn', '2019-05-25 22:06:08'),
(1852, 'nl', 'common', 'passwordnotmatch', 'De opgegeven wachtwoorden komen niet overeen', '2019-05-25 22:06:08'),
(1853, 'nl', 'common', 'Period', 'Periode', '2019-05-25 22:06:08'),
(1854, 'nl', 'common', 'Priority', 'Prioriteit', '2019-05-25 22:06:08'),
(1855, 'nl', 'common', 'Reports', 'Rapporten', '2019-05-25 22:06:08'),
(1856, 'nl', 'common', 'Results', 'Resultaten', '2019-05-25 22:06:08'),
(1857, 'nl', 'common', 'Search Engine', 'Zoekmachine', '2019-05-25 22:06:08'),
(1858, 'nl', 'common', 'Seo Plugins', 'Seo Plugins', '2019-05-25 22:06:08'),
(1859, 'nl', 'common', 'Seo Tools', 'Seo Tools', '2019-05-25 22:06:08'),
(1860, 'nl', 'common', 'Sign out', 'Uitloggen', '2019-05-25 22:06:08'),
(1861, 'nl', 'common', 'Sign Up', 'Registreren', '2019-05-25 22:06:08'),
(1862, 'nl', 'common', 'signin', 'Inloggen', '2019-05-25 22:06:08'),
(1863, 'nl', 'common', 'Status', 'Status', '2019-05-25 22:06:08'),
(1864, 'nl', 'common', 'Support', 'Support', '2019-05-25 22:06:08'),
(1865, 'nl', 'common', 'Url', 'URL', '2019-05-25 22:06:08'),
(1866, 'nl', 'common', 'User', 'Gebruiker', '2019-05-25 22:06:08'),
(1867, 'nl', 'common', 'User Panel', 'Gebruiker Instellingen', '2019-05-25 22:06:08'),
(1868, 'nl', 'common', 'Website', 'Website', '2019-05-25 22:06:08'),
(1869, 'nl', 'directory', 'Add back to directory list', 'Toevoegen aan de directory lijst', '2014-01-08 02:36:56'),
(1870, 'nl', 'directory', 'Approved', 'Goedgekeurd', '2014-01-08 02:36:56'),
(1871, 'nl', 'directory', 'Captcha', 'Captcha', '2014-01-08 02:36:56'),
(1872, 'nl', 'directory', 'categorynote', 'Categorieën, gescheiden door komma''s in volgorde van belangrijkheid. Start met de meest relevante categorie.', '2014-01-08 02:36:56'),
(1873, 'nl', 'directory', 'Check Directory Status', 'Controleer Directory Status', '2014-01-08 02:36:56'),
(1874, 'nl', 'directory', 'Check Directory Submission Status', 'Controleer Directory Inschrijving Status', '2014-01-08 02:36:56'),
(1875, 'nl', 'directory', 'clicktoproceeddirsts', 'Klik op <b>ga verder</b> om de directory status te controleren.', '2014-01-08 02:36:56'),
(1876, 'nl', 'directory', 'Confirmation', 'Bevestiging', '2014-01-08 02:36:56'),
(1877, 'nl', 'directory', 'desnote', 'Sommige directory''s vereisen ten minste 150 karakters als beschrijving.', '2014-01-08 02:36:56'),
(1878, 'nl', 'directory', 'Directories with out captcha', 'Directory''s zonder captcha', '2014-01-08 02:36:56'),
(1879, 'nl', 'directory', 'Directory Submission Reports', 'Directory Inschrijving Rapporten', '2014-01-08 02:36:56'),
(1880, 'nl', 'directory', 'Enter the code shown', 'Voer de getoonde code in', '2014-01-08 02:36:56'),
(1881, 'nl', 'directory', 'nocatnote', 'De gevraagde categorie bestaat niet in deze map. Klik <b>Vernieuwen</b> of <b>Overslaan</b>.', '2014-01-08 02:36:56'),
(1882, 'nl', 'directory', 'nodirnote', 'Geen <b>actieve</b> directory''s gevonden.', '2014-01-08 02:36:56'),
(1883, 'nl', 'directory', 'nosuccessnote', 'Geen bevestiging ontvangen - Controleer uw e-mail voor een bevestigingsmail.', '2014-01-08 02:36:56'),
(1884, 'nl', 'directory', 'optionalnote', 'Optioneel kunt u verschillende beschrijvingen en titels toevoegen voor wisselende beschrijvingen en titels in de directory''s. Dit om betere resultaten te krijgen.', '2014-01-08 02:36:56'),
(1885, 'nl', 'directory', 'Owner Email', 'Eigenaar E-mail', '2014-01-08 02:36:56'),
(1886, 'nl', 'directory', 'Owner Name', 'Eigenaar Naam', '2014-01-08 02:36:56'),
(1887, 'nl', 'directory', 'Pending', 'In afwachting', '2014-01-08 02:36:56'),
(1888, 'nl', 'directory', 'Please select a website to proceed', 'Selecteer een website om verder te gaan', '2014-01-08 02:36:56'),
(1889, 'nl', 'directory', 'selectwebsiteproceed', 'Selecteer een <b>Website</b> om te <b>starten</b> met de directory inschrijvingen.<br>Zet een vinkje bij <b>Directory''s zonder captcha</b> om directory''s met Captcha over te slaan.', '2014-01-08 02:36:56'),
(1890, 'nl', 'directory', 'selectwebsiteschecksub', 'Selecteer een <b>Website</b> om te <b>starten</b> met de controle van de directory inschrijvingen', '2014-01-08 02:36:56'),
(1891, 'nl', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi-Automatische Directory Inschrijf Tool', '2014-01-08 02:36:56'),
(1892, 'nl', 'directory', 'spamemailnote', 'Sommige directory''s versturen SPAM, wij raden aan niet uw primaire e-mail adres te gebruiken, maar een apart e-mail adres.', '2014-01-08 02:36:56'),
(1893, 'nl', 'directory', 'Submission Details', 'Registratie details', '2014-01-08 02:36:56'),
(1894, 'nl', 'directory', 'Submit Description', 'Omschrijving website ', '2014-01-08 02:36:56'),
(1895, 'nl', 'directory', 'Submit Keywords', 'Zoekwoorden ', '2014-01-08 02:36:56'),
(1896, 'nl', 'directory', 'Submit Title', 'Titel ', '2014-01-08 02:36:56'),
(1897, 'nl', 'directory', 'Website Category', 'Website Categorie', '2014-01-08 02:36:56'),
(1898, 'nl', 'directory', 'Website Url', 'Website URL', '2014-01-08 02:36:56'),
(1899, 'nl', 'home', 'Account Summary', 'Overzicht accounts', '2011-07-06 01:52:28'),
(1900, 'nl', 'home', 'Backlinks', 'Backlinks', '2011-07-06 01:52:28'),
(1901, 'nl', 'home', 'Directory Submission', 'Directory Inschrijving', '2011-07-06 01:52:28'),
(38972, 'cn', 'review', 'Review Link Details', '评论链接详情', '2026-01-19 22:58:50'),
(38973, 'cs', 'review', 'Review Link Details', 'Podrobnosti odkazu na recenzi', '2026-01-19 22:58:50'),
(38974, 'da', 'review', 'Review Link Details', 'Anmeldelseslink detaljer', '2026-01-19 22:58:50'),
(38975, 'de', 'review', 'Review Link Details', 'Bewertungslink-Details', '2026-01-19 22:58:50'),
(38976, 'el', 'review', 'Review Link Details', 'Λεπτομέρειες συνδέσμου αξιολόγησης', '2026-01-19 22:58:50'),
(38977, 'es', 'review', 'Review Link Details', 'Detalles del enlace de reseña', '2026-01-19 22:58:50'),
(38978, 'es-ar', 'review', 'Review Link Details', 'Detalles del enlace de reseña', '2026-01-19 22:58:50'),
(38979, 'fa', 'review', 'Review Link Details', 'جزئیات لینک بررسی', '2026-01-19 22:58:50'),
(38980, 'fi', 'review', 'Review Link Details', 'Arvostelulinkin tiedot', '2026-01-19 22:58:50'),
(38981, 'fr', 'review', 'Review Link Details', 'Détails du lien d''avis', '2026-01-19 22:58:50'),
(38982, 'he', 'review', 'Review Link Details', 'פרטי קישור ביקורת', '2026-01-19 22:58:50'),
(38983, 'hi', 'review', 'Review Link Details', 'समीक्षा लिंक विवरण', '2026-01-19 22:58:50'),
(38984, 'hr', 'review', 'Review Link Details', 'Detalji linka recenzije', '2026-01-19 22:58:50'),
(1905, 'nl', 'home', 'Pages Indexed', 'Geïndexeerde pagina\\''s', '2011-07-06 01:52:28'),
(1906, 'nl', 'home', 'Ranks', 'Ranks', '2011-07-06 01:52:28'),
(1907, 'nl', 'home', 'SiteNameUrl', 'Website Naam / URL', '2011-07-06 01:52:28'),
(1908, 'nl', 'home', 'Website Statistics', 'Website Statistieken', '2011-07-06 01:52:28'),
(1909, 'nl', 'keyword', 'Crawling keyword', 'Zoekwoord aan het controleren', '2011-07-06 01:54:33'),
(1910, 'nl', 'keyword', 'Detailed Keyword Position Reports', 'Gedetailleerd Zoekwoord Positie Rapporten', '2011-07-06 01:54:33'),
(1911, 'nl', 'keyword', 'Edit Keyword', 'Wijzig Zoekwoord', '2011-07-06 01:54:33'),
(1912, 'nl', 'keyword', 'Graphical Keyword Position Reports', 'Grafische Zoekwoord Positie Rapporten ', '2011-07-06 01:54:33'),
(1913, 'nl', 'keyword', 'Import Keywords', 'Zoekwoorden importeren', '2011-07-06 01:54:33'),
(1914, 'nl', 'keyword', 'Keyword already exist', 'Zoekwoord bestaat al', '2011-07-06 01:54:33'),
(1915, 'nl', 'keyword', 'Keyword Position Report', 'Zoekwoord Positie Rapport', '2011-07-06 01:54:33'),
(1916, 'nl', 'keyword', 'New Keyword', 'Nieuw Zoekwoord', '2011-07-06 01:54:33'),
(1917, 'nl', 'keyword', 'not assigned to required search engines', 'niet vertegenwoordigd in relevante zoekmachines', '2011-07-06 01:54:33'),
(1918, 'nl', 'keyword', 'pleaseselecttool', 'Selecteer minstens één Seo Tool', '2011-07-06 01:54:33'),
(1919, 'nl', 'keyword', 'Quick Keyword Position Checker', 'Snelle Zoekwoord Positie controle', '2011-07-06 01:54:33'),
(1920, 'nl', 'keyword', 'results from ', 'Resultaten van', '2011-07-06 01:54:33'),
(1921, 'nl', 'keyword', 'Show All results', 'Alle resultaten weergeven', '2011-07-06 01:54:33'),
(1922, 'nl', 'keyword', 'Successfully crawled keyword', 'Zoekwoord succesvol getest', '2011-07-06 01:54:33'),
(1923, 'nl', 'keyword', 'to create new keywords', 'om nieuwe zoekwoorden te maken', '2011-07-06 01:54:33'),
(1924, 'nl', 'label', 'already exist', 'bestaat al', '2014-01-08 02:37:43'),
(1925, 'nl', 'label', 'Authentication', 'Authenticatie', '2014-01-08 02:37:43'),
(1926, 'nl', 'label', 'Author', 'Auteur', '2014-01-08 02:37:43'),
(1927, 'nl', 'label', 'Click Here', 'Hier klikken', '2014-01-08 02:37:43'),
(1928, 'nl', 'label', 'Cron', 'Cronjob', '2014-01-08 02:37:43'),
(1929, 'nl', 'label', 'Description', 'Beschrijving', '2014-01-08 02:37:43'),
(1930, 'nl', 'label', 'Developers', 'Ontwikkelaars', '2014-01-08 02:37:43'),
(1931, 'nl', 'label', 'Download', 'Download', '2014-01-08 02:37:43'),
(1932, 'nl', 'label', 'Installation', 'Installatie', '2014-01-08 02:37:43'),
(1933, 'nl', 'label', 'Keywords', 'Zoekwoorden', '2014-01-08 02:37:43'),
(1934, 'nl', 'label', 'noactiveplugins', 'Geen actieve Seo plugins gevonden!', '2014-01-08 02:37:43'),
(1935, 'nl', 'label', 'Plugin', 'Plugin', '2014-01-08 02:37:43'),
(1936, 'nl', 'label', 'Port', 'Poort', '2014-01-08 02:37:43'),
(1937, 'nl', 'label', 'Proxy', 'Proxy', '2014-01-08 02:37:43'),
(1938, 'nl', 'label', 'Re-install', 'Opnieuw installeren', '2014-01-08 02:37:43'),
(1939, 'nl', 'label', 'Sponsors', 'Sponsors', '2014-01-08 02:37:43'),
(1940, 'nl', 'label', 'Title', 'Titel', '2014-01-08 02:37:43'),
(1941, 'nl', 'label', 'translation by', 'vertaald door', '2014-01-08 02:37:43'),
(1942, 'nl', 'label', 'Translators', 'Vertalers', '2014-01-08 02:37:43'),
(1943, 'nl', 'label', 'Upgrade', 'Updaten', '2014-01-08 02:37:43'),
(1944, 'nl', 'label', 'Version', 'Versie', '2014-01-08 02:37:43'),
(1945, 'nl', 'login', 'Confirm Password', 'Bevestig wachtwoord', '2014-01-08 02:45:36'),
(1946, 'nl', 'login', 'Create my account', 'Maak mijn account', '2014-01-08 02:45:36'),
(1947, 'nl', 'login', 'Create New Account', 'Maak nieuwe account', '2014-01-08 02:45:36'),
(1948, 'nl', 'login', 'Email', 'E-mail', '2014-01-08 02:45:36'),
(1949, 'nl', 'login', 'emailexist', 'E-mail bestaat al!', '2014-01-08 02:45:36'),
(1950, 'nl', 'login', 'Enter the code as it is shown', 'Vul de afgebeelde code in', '2014-01-08 02:45:36'),
(1951, 'nl', 'login', 'First Name', 'Voornaam', '2014-01-08 02:45:36'),
(1952, 'nl', 'login', 'Last Name', 'Achternaam', '2014-01-08 02:45:36'),
(1953, 'nl', 'login', 'Login', 'Inloggen', '2014-01-08 02:45:36'),
(1954, 'nl', 'login', 'Login incorrect', 'Onjuiste inlog gegevens', '2014-01-08 02:45:36'),
(1955, 'nl', 'login', 'newaccountsuccess', 'Account succesvol geregistreerd!', '2014-01-08 02:45:36'),
(1956, 'nl', 'login', 'Password', 'Wachtwoord', '2014-01-08 02:45:36'),
(1957, 'nl', 'login', 'Password incorrect', 'Onjuist wachtwoord', '2014-01-08 02:45:36'),
(1958, 'nl', 'login', 'Register', 'Registreren', '2014-01-08 02:45:36'),
(1959, 'nl', 'login', 'Sign in to your account', 'Meld u aan bij uw account', '2014-01-08 02:45:36'),
(1960, 'nl', 'login', 'User inactive', 'Gebruiker inactief', '2014-01-08 02:45:36'),
(1961, 'nl', 'login', 'Username', 'Gebruikersnaam', '2014-01-08 02:45:36'),
(1962, 'nl', 'login', 'usernameexist', 'Gebruikersnaam bestaat al!', '2014-01-08 02:45:36'),
(1963, 'nl', 'panel', 'About Us', 'Over ons', '2014-01-08 02:46:33'),
(1964, 'nl', 'panel', 'Add following command to your cron tab', 'Voeg het volgende commando toe aan uw cronjob', '2014-01-08 02:46:33'),
(1965, 'nl', 'panel', 'alsocheckfollowlink', 'Klik op de onderstaande link, voor meer informatie. ', '2014-01-08 02:46:33'),
(1966, 'nl', 'panel', 'Check Directory', 'Controleer directory', '2014-01-08 02:46:33'),
(1967, 'nl', 'panel', 'Cron Command', 'Cronjob commando', '2014-01-08 02:46:33'),
(1968, 'nl', 'panel', 'Directory Manager', 'Directory Manager', '2014-01-08 02:46:33'),
(1969, 'nl', 'panel', 'Edit My Profile', 'Wijzig mijn profiel', '2014-01-08 02:46:33'),
(1970, 'nl', 'panel', 'My Profile', 'Mijn profiel', '2014-01-08 02:46:33'),
(1971, 'nl', 'panel', 'New Proxy', 'Nieuwe Proxy', '2014-01-08 02:46:33'),
(1972, 'nl', 'panel', 'New User', 'Nieuwe gebruiker', '2014-01-08 02:46:33'),
(1973, 'nl', 'panel', 'New Website', 'Nieuwe Website', '2014-01-08 02:46:33'),
(1974, 'nl', 'panel', 'Proxy Manager', 'Proxy Manager', '2014-01-08 02:46:33'),
(1975, 'nl', 'panel', 'Report Generation Manager', 'Rapporten Generatie Manager', '2014-01-08 02:46:33'),
(1976, 'nl', 'panel', 'Reports Manager', 'Rapporten Manager', '2014-01-08 02:46:33'),
(1977, 'nl', 'panel', 'Seo Plugins Manager', 'Seo Plugins Manager', '2014-01-08 02:46:33'),
(1978, 'nl', 'panel', 'Seo Tools Manager', 'Seo Tools Manager', '2014-01-08 02:46:33'),
(1979, 'nl', 'panel', 'System Settings', 'Systeem instellingen', '2014-01-08 02:46:33'),
(1980, 'nl', 'panel', 'User Manager', 'Gebuiker Manager', '2014-01-08 02:46:33'),
(1981, 'nl', 'panel', 'Website Manager', 'Website Manager', '2014-01-08 02:46:33'),
(1982, 'nl', 'plugin', 'Edit Seo Plugin', 'Wijzig Seo Plugin', '2012-05-19 12:28:08'),
(1983, 'nl', 'plugin', 'Plugin Name', 'Plugin Naam', '2012-05-19 12:28:08'),
(1984, 'nl', 'plugin', 'Seo Plugin Details', 'Seo Plugin Details', '2012-05-19 12:28:08'),
(1985, 'nl', 'proxy', 'Edit Proxy', 'Proxy wijzigen', '2014-01-08 02:48:32'),
(1986, 'nl', 'proxy', 'Proxy Password', 'Proxy wachtwoord', '2014-01-08 02:48:32'),
(1987, 'nl', 'proxy', 'Proxy Username', 'Proxy gebruikersnaam', '2014-01-08 02:48:32'),
(1988, 'nl', 'proxy', 'Proxyalreadyexist', 'Proxy bestaat al!', '2014-01-08 02:48:32'),
(1989, 'nl', 'rank', 'enterurlproceed', 'Geef één URL op <b>per regel</b>. Klik op <b>ga verder</b> om de Google en Alexa Rank te controleren.', '2010-10-27 08:25:36'),
(1990, 'nl', 'rank', 'Google and Alexa Rank Reports', 'Google en Alexa Positie rapporten', '2010-10-27 08:25:36'),
(1991, 'nl', 'rank', 'Saved rank results of', 'Rank resultaten opgeslagen voor', '2010-10-27 08:25:36'),
(1992, 'nl', 'saturation', 'clickproceedsaturation', 'Geef één URL op <b>per regel</b>. Klik op <b>ga verder</b> om Zoekmachine Verzadiging te controleren.', '2010-10-27 08:26:25'),
(1993, 'nl', 'saturation', 'GenerateSaturationReports', 'Genereer Zoekmachine Verzadiging Rapporten', '2010-10-27 08:26:25'),
(1994, 'nl', 'saturation', 'Quick Search Engine Saturation Checker', 'Snelle Zoekmachine Verzadiging Controle', '2010-10-27 08:26:25'),
(1995, 'nl', 'saturation', 'Saved Search Engine Saturation results of', 'Resultaten van zoekmachine verzadiging opgeslagen voor', '2010-10-27 08:26:25'),
(1996, 'nl', 'saturation', 'Search Engine Saturation Reports', 'Zoekmachine Verzadiging Rapporten', '2010-10-27 08:26:25'),
(1997, 'nl', 'seotools', 'Automatic Submission', 'Automatische Inschrijving', '2011-07-06 02:20:43'),
(1998, 'nl', 'seotools', 'backlink-checker', 'Backlink Controle', '2011-07-06 02:20:43'),
(1999, 'nl', 'seotools', 'Backlinks Reports', 'Backlink Rapporten', '2011-07-06 02:20:43'),
(2000, 'nl', 'seotools', 'Check Submission Status', 'Controleer Inschrijving Status', '2011-07-06 02:20:43'),
(2001, 'nl', 'seotools', 'clickgeneratereports', 'Klik op <b>ga verder</b> om rapporten te genereren.', '2011-07-06 02:20:43'),
(2002, 'nl', 'seotools', 'Detailed Position Reports', 'Zoekwoord Positie Rapporten', '2011-07-06 02:20:43'),
(2003, 'nl', 'seotools', 'directory-submission', 'Directory Inschrijving', '2011-07-06 02:20:43'),
(2004, 'nl', 'seotools', 'Featured Submission', 'Aanbevolen Inschrijving', '2011-07-06 02:20:43'),
(2005, 'nl', 'seotools', 'Generate Backlinks Reports', 'Genereer Backlink Rapporten', '2011-07-06 02:20:43'),
(2006, 'nl', 'seotools', 'Generate Keyword Reports', 'Genereer Zoekwoord Rapporten', '2011-07-06 02:20:43'),
(2007, 'nl', 'seotools', 'Generate Rank Reports', 'Genereer Rank Rapporten', '2011-07-06 02:20:43'),
(2008, 'nl', 'seotools', 'Generate Saturation Reports', 'Genereer Zoekmachine Verzadiging Rapporten', '2011-07-06 02:20:43'),
(2009, 'nl', 'seotools', 'Google Sitemap Generator', 'Google Sitemap Generator', '2011-07-06 02:20:43'),
(2010, 'nl', 'seotools', 'Graphical Position Reports', 'Grafische Positie Rapporten', '2011-07-06 02:20:43'),
(2011, 'nl', 'seotools', 'Keyword Position Summary', 'Overzicht Zoekwoord Posities', '2011-07-06 02:20:43'),
(2012, 'nl', 'seotools', 'keyword-position-checker', 'Posities van Zoekwoorden', '2011-07-06 02:20:43'),
(2013, 'nl', 'seotools', 'Keywords Manager', 'Zoekwoorden Manager', '2011-07-06 02:20:43'),
(2014, 'nl', 'seotools', 'Quick Backlinks Checker', 'Snelle Backlink Controle', '2011-07-06 02:20:43'),
(2015, 'nl', 'seotools', 'Quick Position Checker', 'Snelle Positie Controle', '2011-07-06 02:20:43'),
(2016, 'nl', 'seotools', 'Quick Rank Checker', 'Snelle Rank Controle', '2011-07-06 02:20:43'),
(2017, 'nl', 'seotools', 'Quick Saturation Checker', 'Snelle Zoekmachine Verzadiging Controle', '2011-07-06 02:20:43'),
(2018, 'nl', 'seotools', 'Rank Reports', 'Rank Rapporten', '2011-07-06 02:20:43'),
(2019, 'nl', 'seotools', 'rank-checker', 'Rank Controle', '2011-07-06 02:20:43'),
(2020, 'nl', 'seotools', 'Saturation Reports', 'Zoekmachine Verzadiging Rapporten', '2011-07-06 02:20:43'),
(2021, 'nl', 'seotools', 'saturation-checker', 'Zoekmachine Verzadiging', '2011-07-06 02:20:43'),
(2022, 'nl', 'seotools', 'sitemap-generator', 'Sitemap Generator', '2011-07-06 02:20:43'),
(2023, 'nl', 'seotools', 'Skipped Directories', 'Overgeslagen Directories', '2011-07-06 02:20:43'),
(2024, 'nl', 'seotools', 'Submission Reports', 'Inschrijving Rapporten', '2011-07-06 02:20:43'),
(2025, 'nl', 'seotools', 'User Access', 'Gebruikers toegang', '2011-07-06 02:20:43'),
(2026, 'nl', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Doneer $100</b> en wordt Seo Panel <b>Sponsor</b>.', '2014-01-08 02:51:05'),
(2027, 'nl', 'settings', 'SP_CRAWL_DELAY', 'Pauze tussen Crawl queries (in seconden)', '2014-01-08 02:51:05'),
(2028, 'nl', 'settings', 'SP_DEFAULTLANG', 'Standaard taal', '2014-01-08 02:51:05'),
(2029, 'nl', 'settings', 'SP_DESCRIPTION', 'Seo Panel Beschrijving', '2014-01-08 02:51:05'),
(2030, 'nl', 'settings', 'SP_ENABLE_PROXY', 'Proxy activeren', '2014-01-08 02:51:05'),
(2031, 'nl', 'settings', 'SP_HOTLINKING', 'Hotlink beveiliging voor grafieken', '2014-01-08 02:51:05'),
(2032, 'nl', 'settings', 'SP_KEYWORDS', 'Seo Panel Zoekwoorden', '2014-01-08 02:51:05'),
(2033, 'nl', 'settings', 'SP_PAGINGNO', 'Aantal records per pagina', '2014-01-08 02:51:05'),
(2034, 'nl', 'settings', 'SP_TITLE', 'Seo Panel Titel', '2014-01-08 02:51:05'),
(2035, 'nl', 'settings', 'SP_USER_GEN_REPORT', 'Gebruikers toestaan rapporten te genereren', '2014-01-08 02:51:05'),
(2036, 'nl', 'settings', 'SP_USER_REGISTRATION', 'Gebruiker registratie scherm', '2014-01-08 02:51:05'),
(2037, 'nl', 'settings', 'syssettingssaved', 'Systeemvoorkeuren succesvol opgeslagen!', '2014-01-08 02:51:05'),
(2038, 'nl', 'sitemap', 'Change frequency', 'Wijzigingsfrequentie', '2010-10-22 17:27:53'),
(2039, 'nl', 'sitemap', 'clickproceedsitemap', 'Klik op <b>ga verder</b> om een sitemap te maken.', '2010-10-22 17:27:53'),
(2040, 'nl', 'sitemap', 'Download sitemap file from', 'Download sitemap bestand van', '2010-10-22 17:27:53'),
(2041, 'nl', 'sitemap', 'Exclude Url', 'URL uitsluiten', '2010-10-22 17:27:53'),
(2042, 'nl', 'sitemap', 'processtaketime', 'Dit proces kan enige minuten duren afhankelijk van het aantal pagina\\''s op de website. Een moment geduld a.u.b. ', '2010-10-22 17:27:53'),
(2043, 'nl', 'sitemap', 'Sitemap Type', 'Sitemap Type', '2010-10-22 17:27:53'),
(2044, 'nl', 'user', 'Edit User', 'Wijzig gebruiker', '2010-10-16 04:42:51'),
(2045, 'nl', 'user', 'Saved My Profile Details', 'Uw profiel gegevens zijn opgeslaan!', '2010-10-16 04:42:51'),
(2046, 'nl', 'website', 'Edit Website', 'Wijzig website', '2014-01-08 02:53:10'),
(2047, 'nl', 'website', 'plscrtwebsite', 'Voeg eerst een website toe om gebruik te maken van de Seo Tools en Seo Plugins.', '2014-01-08 02:53:10'),
(2048, 'nl', 'website', 'Website already exist', 'Website bestaat al', '2014-01-08 02:53:10'),
(2049, 'nl', 'website', 'yourwebalreday', 'uw website, indien u er al een gemaakt heeft.', '2014-01-08 02:53:10'),
(2050, 'nl', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support Systeem</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>1000 Directories Pakket</h1> \r\n <p>\r\n Wij bieden een pakket aan met <b>1000 gratis, actieve en gecontroleerde </b> Directories, ter integratie in uw <b>Directory Inschrijving Tool</b>.\r\n Dit zal helpen het aantal <b>backlinks</b> van uw eigen websites <b>aanzienlijk te verhogen</b>.\r\n Wij bieden deze lijst momenteel aan om geld in te zamelen voor <b>de toekomstige ontwikkelingen</b> van Seo panel. \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Doneer</a> $10 of meer om Seo Panel verder te helpen ontwikkelen en verbeteren.\r\n Als u vragen hebt over het 1000 directories pakket, neem dan gerust<a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contact</a> op of open een ticket in het <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">support</a> systeem.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Klik hier om een donatie aan Seo Panel te doen.</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Het Lokale Zoekmachine Pakket</h1> \r\n <p>\r\n Voeg <b>lokale zoekmachines</b> toe van google,yahoo en msn (<b>Bv.: www.google.nl, www.google.fr etc</b>) aan Seo Panel <b>Posities en Zoekwoorden</b>, om uw site performance lokaal te kunnen controleren. \r\n Om het lokale zoekmachines pakket (op basis van uw behoefte) te ontvangen <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">doneert u</a> $10 of meer om de functies van SEO panel te verbeteren.\r\n Neemt u voordat u doneert <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contact</a> met ons op met een lijst van de gewenste lokale zoekmachine toevoegingen.\r\n <br><br> \r\n Om <b>nieuwe zoekmachines (bijvoorbeeld: baidu.com)</b> toe te voegen, neemt u <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contact</a> met ons op of opent u een ticket in het <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Support System</a>. \r\n </p> \r\n <p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Klik hier om contact op te nemen.</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Voeg <b>Seo plugins</b> toe om uw Seo panel <b>functies uit te breiden</b> volgens uw behoefte. <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel plugins</a> worden geleverd door zowel Seo panel als sites van derden. U kunt zelf ook makkelijk Seo plugins <b>ontwikkelen</b> voor Seo Panel. U kunt uw Seo plugin <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">opsturen naar Seo Panel</a> en wij zullen deze vervolgens publiceren op onze website nadat wij deze <b>getest</b> hebben.\r\n \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Klik hier voor Seo Panel Plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact</h1> \r\n <p>\r\n Neem contact met ons op voor eventuele vragen over <b>Seo Panel Tools, Plugins, Functies, etc..</b> met behulp van de onderstaande link.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Klik hier om contact op te nemen.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n Voor <b>technische Ondersteuning</b> van het Seo Panel Team voor het instellen van <b>Seo Panel tools, plugins en andere functies</b>. Bijvoorbeeld voor het instellen van een Cronjob.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Klik hier om een support ticket aan te maken.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Bugs rapporteren.</h1> \r\n <p>\r\n Help ons door <b>bugs</b> te rapporteren van <b>Seo Panel Tools, Plugins en Functies</b> met behulp van onderstaande link. \r\n \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Klik hier om bugs te rapporteren.</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>\r\n', '2010-10-27 08:56:53'),
(2051, 'nl', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Naslag</legend>\r\n<ul class=\\"infobox\\">\r\n \r\n <li>\r\n <h1>Seo Panel Hulp</h1> \r\n <p>\r\n U kunt de <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Seo panel documentatie</a> in de <b>hulp gids</b> vinden, het bevat de <b>documentatie</b> voor de Seo panel tools, plugins en aanverwante functies.\r\n <br>Het is de beste plek op internet om <b>hulp</b> te krijgen voor Seo panel. We hopen dat u bijdraagt aan de SEO Panel \\"hulp gids\\", indien u fouten vindt of als er zaken ontbreken.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Klik hier om de hulp gids te bekijken.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n De plek om te discussiëren over \\''s werelds eerste open source <b>Seo bedieningspaneel</b>. Het is de beste plek om <b>antwoorden</b> te vinden op uw vragen over Seo Panel.\r\n <br>Ook kunt u uw <b>ervaringen uitwisselen</b> tijdens het gebruik van Seo Panel voor het optimaliseren van uw websites. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Klik hier om naar het Seo Panel Forum te gaan.</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2010-10-27 08:56:53'),
(2052, 'nl', 'support', 'support_cont3', '<fieldset>\r\n<legend>Doneren voor Seo Panel</legend>\r\n<ul class=\\"infobox\\"> \r\n <li>\r\n <h1>Geef een donatie voor de verbetering van - \\''s werelds eerste Open Source Seo Bedieningspaneel.</h1> \r\n <p>\r\n <b>Doneer</b> aan Seo Panel om de \\''s werelds eerste Open Source Seo Software te ondersteunen.\r\n \r\n We zijn van plan om in de toekomst <b>nieuwe functies</b> toe te voegen en Seo Panel te <b>verbeteren</b>.<br>Alleen met uw steun kunnen we onze doelstellingen bereiken. Indien u vindt dat Seo panel voor u de moeite waard is, draag dan a.u.b. een steentje bij.\r\n Zodra wij uw donatie hebben ontavngen zullen wij uw naam en website vernoemen op onze <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donatie pagina</a>.\r\n \r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Klik hier om te doneren aan Seo Panel.</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2010-10-27 08:56:53'),
(2054, 'nl', 'settings', 'seopanel_title', 'Seo Panel: ''s Werelds eerste open source Seo bedieningspaneel voor meerdere websites', '2014-01-08 02:51:05'),
(2055, 'it', 'keyword', 'Crawling keyword', 'Scansiona parole chiave', '2016-12-09 14:18:13'),
(2056, 'it', 'keyword', 'Detailed Keyword Position Reports', 'Dettagli report posizione keywords', '2016-12-09 14:18:13'),
(2057, 'it', 'keyword', 'Edit Keyword', 'Modifica keyword', '2016-12-09 14:18:13'),
(2058, 'it', 'keyword', 'Graphical Keyword Position Reports', 'Report grafico posizione keyword', '2016-12-09 14:18:13'),
(2059, 'it', 'keyword', 'Import Keywords', 'Importa keywords', '2016-12-09 14:18:13'),
(2060, 'it', 'keyword', 'Keyword already exist', 'Keyword già esistente', '2016-12-09 14:18:13'),
(2061, 'it', 'keyword', 'Keyword Position Report', 'Report posizione keyword', '2016-12-09 14:18:13'),
(2062, 'it', 'keyword', 'New Keyword', 'Nuova keyword', '2016-12-09 14:18:13'),
(2063, 'it', 'keyword', 'not assigned to required search engines', 'non assegnato ai motori di ricerca richiesti', '2016-12-09 14:18:13'),
(2064, 'it', 'keyword', 'pleaseselecttool', 'Per cortesia seleziona almeno uno strumento seo', '2016-12-09 14:18:13'),
(2065, 'it', 'keyword', 'Quick Keyword Position Checker', 'Verifica rapida posizione keyword', '2016-12-09 14:18:13'),
(2066, 'it', 'keyword', 'results from ', 'risultati da', '2016-12-09 14:18:13'),
(2067, 'it', 'keyword', 'Show All results', 'Mostra tutti i risultati', '2016-12-09 14:18:13'),
(2068, 'it', 'keyword', 'Successfully crawled keyword', 'Scansione keyword eseguita con successo', '2016-12-09 14:18:13'),
(2069, 'it', 'keyword', 'to create new keywords', 'per creare nuove keyword', '2016-12-09 14:18:13'),
(2070, 'it', 'label', 'already exist', 'già esiste', '2022-07-11 15:17:58'),
(2071, 'it', 'label', 'Authentication', 'Autenticazione', '2022-07-11 15:17:58'),
(2072, 'it', 'label', 'Author', 'Autore', '2022-07-11 15:17:58'),
(2073, 'it', 'label', 'Click Here', 'Clicca quì', '2022-07-11 15:17:58'),
(2074, 'it', 'label', 'Cron', 'Cron', '2022-07-11 15:17:58'),
(2075, 'it', 'label', 'Description', 'Descrizione', '2022-07-11 15:17:58'),
(2076, 'it', 'label', 'Developers', 'Sviluppatori', '2022-07-11 15:17:58'),
(2077, 'it', 'label', 'Download', 'Download', '2022-07-11 15:17:58'),
(2078, 'it', 'label', 'Installation', 'Installazione', '2022-07-11 15:17:58'),
(2079, 'it', 'label', 'Keywords', 'Keyword', '2022-07-11 15:17:58'),
(2080, 'it', 'label', 'noactiveplugins', 'Non è stato trovato alcun Plugin Seo attivo!', '2022-07-11 15:17:58'),
(2081, 'it', 'label', 'Plugin', 'Plugin', '2022-07-11 15:17:58'),
(2082, 'it', 'label', 'Port', 'Porta', '2022-07-11 15:17:58'),
(2083, 'it', 'label', 'Proxy', 'Proxy', '2022-07-11 15:17:58'),
(2084, 'it', 'label', 'Re-install', 'Re-installa', '2022-07-11 15:17:58'),
(2085, 'it', 'label', 'Sponsors', 'Sponsor', '2022-07-11 15:17:58'),
(2086, 'it', 'label', 'Title', 'Titolo', '2022-07-11 15:17:58'),
(2087, 'it', 'label', 'translation by', 'Tradotto da', '2022-07-11 15:17:58'),
(2088, 'it', 'label', 'Translators', 'Traduttori', '2022-07-11 15:17:58'),
(2089, 'it', 'label', 'Upgrade', 'Aggiornamento', '2022-07-11 15:17:58'),
(2090, 'it', 'label', 'Version', 'Versione', '2022-07-11 15:17:58'),
(2091, 'it', 'label', 'wantproceed', 'Vuoi procedere veramente?', '2022-07-11 15:17:58'),
(2092, 'it', 'panel', 'About Us', 'Su di noi', '2022-07-11 15:20:07'),
(2093, 'it', 'panel', 'Add following command to your cron tab', 'Aggiungi i seguenti comandi alle tue azioni pianificate', '2022-07-11 15:20:07'),
(2094, 'it', 'panel', 'alsocheckfollowlink', 'Verificare anche se i seguenti link necessitano di maggiori dettagli.', '2022-07-11 15:20:07'),
(2095, 'it', 'panel', 'Check Directory', 'Verifica directory', '2022-07-11 15:20:07'),
(2096, 'it', 'panel', 'Cron Command', 'Comando azione pianificata', '2022-07-11 15:20:07'),
(2097, 'it', 'panel', 'Directory Manager', 'Gestione directory', '2022-07-11 15:20:07'),
(2098, 'it', 'panel', 'Edit My Profile', 'Modifica il mio profilo', '2022-07-11 15:20:07'),
(2099, 'it', 'panel', 'My Profile', 'Mio profilo', '2022-07-11 15:20:07'),
(2100, 'it', 'panel', 'New Proxy', 'Nuovo proxy', '2022-07-11 15:20:07'),
(2101, 'it', 'panel', 'New User', 'Nuovo utente', '2022-07-11 15:20:07'),
(2102, 'it', 'panel', 'New Website', 'Nuovo sito web', '2022-07-11 15:20:07'),
(2103, 'it', 'panel', 'Proxy Manager', 'Gestione proxy', '2022-07-11 15:20:07'),
(2104, 'it', 'panel', 'Report Generation Manager', 'Gestione generazione report', '2022-07-11 15:20:07'),
(2105, 'it', 'panel', 'Reports Manager', 'Gestione report', '2022-07-11 15:20:07'),
(2106, 'it', 'panel', 'Seo Plugins Manager', 'Gestione plugin seo', '2022-07-11 15:20:07'),
(2107, 'it', 'panel', 'Seo Tools Manager', 'Gestione strumenti seo', '2022-07-11 15:20:07'),
(2108, 'it', 'panel', 'System Settings', 'Impostazioni di sistema', '2022-07-11 15:20:07'),
(2109, 'it', 'panel', 'User Manager', 'Gestione utente', '2022-07-11 15:20:07'),
(2110, 'it', 'panel', 'Website Manager', 'Gestione sito web', '2022-07-11 15:20:07'),
(2111, 'it', 'plugin', 'Edit Seo Plugin', 'Modifica plugin seo', '2012-05-12 14:38:03'),
(2112, 'it', 'plugin', 'Plugin Name', 'Nome plugin', '2012-05-12 14:38:03'),
(2113, 'it', 'plugin', 'Seo Plugin Details', 'Dettagli plugin seo', '2012-05-12 14:38:03'),
(2114, 'it', 'proxy', 'Edit Proxy', 'Modifica proxy', '2016-12-09 14:20:46'),
(2115, 'it', 'proxy', 'Proxy Password', 'Password proxy', '2016-12-09 14:20:46'),
(2116, 'it', 'proxy', 'Proxy Username', 'Nome utente proxy', '2016-12-09 14:20:46'),
(2117, 'it', 'proxy', 'Proxyalreadyexist', 'Il proxy già esiste!', '2016-12-09 14:20:46'),
(2118, 'it', 'rank', 'enterurlproceed', 'Inserisci le URL <b>una per riga</b>. Clicca su <b>Procedi</b> per verificare il rank di Google e Alexa. ', '2010-10-16 00:50:06'),
(2119, 'it', 'rank', 'Google and Alexa Rank Reports', 'Report rank di Google e Alexs', '2010-10-16 00:50:06'),
(2120, 'it', 'rank', 'Saved rank results of', 'Salva i risultati del rank per', '2010-10-16 00:50:06'),
(2121, 'it', 'saturation', 'clickproceedsaturation', 'Inserisci le URL <b>Una per riga</b>. Clicca su <b>Procedi</b> per salvare i risultati di saturazione dei motori di ricerca.', '2010-10-16 00:52:19'),
(2122, 'it', 'saturation', 'GenerateSaturationReports', 'Genera report sulla saturazione dei motori di ricerca', '2010-10-16 00:52:19'),
(2123, 'it', 'saturation', 'Quick Search Engine Saturation Checker', 'Verifica rapida saturazione motori di ricerca', '2010-10-16 00:52:19'),
(2124, 'it', 'saturation', 'Saved Search Engine Saturation results of', 'Salva i risultati della saturazione dei motori di ricerca per', '2010-10-16 00:52:19'),
(2125, 'it', 'saturation', 'Search Engine Saturation Reports', 'Report saturazione motori di ricerca', '2010-10-16 00:52:19'),
(2126, 'it', 'seotools', 'Automatic Submission', 'Invio automatico', '2018-08-21 11:13:41'),
(2127, 'it', 'seotools', 'backlink-checker', 'Verifica backlink', '2018-08-21 11:13:41'),
(2128, 'it', 'seotools', 'Backlinks Reports', 'Report backlink', '2018-08-21 11:13:41'),
(2129, 'it', 'seotools', 'Check Submission Status', 'Verifica stato invio', '2018-08-21 11:13:41'),
(2130, 'it', 'seotools', 'clickgeneratereports', 'Clicca su <b>Procedi</b> per generare il report', '2018-08-21 11:13:41'),
(2131, 'it', 'seotools', 'Detailed Position Reports', 'Dettagli report posizione', '2018-08-21 11:13:41'),
(2132, 'it', 'seotools', 'directory-submission', 'Invio directory', '2018-08-21 11:13:41'),
(2133, 'it', 'seotools', 'Featured Submission', 'Caratteristiche invio', '2018-08-21 11:13:41'),
(2134, 'it', 'seotools', 'Generate Backlinks Reports', 'Genera report dei backlink', '2018-08-21 11:13:41'),
(2135, 'it', 'seotools', 'Generate Keyword Reports', 'Genera report delle keyword', '2018-08-21 11:13:41'),
(2136, 'it', 'seotools', 'Generate Rank Reports', 'Genera raport del rank', '2018-08-21 11:13:41'),
(2137, 'it', 'seotools', 'Generate Saturation Reports', 'Genera report della saturazione', '2018-08-21 11:13:41'),
(2138, 'it', 'seotools', 'Google Sitemap Generator', 'Genera sitemap google', '2018-08-21 11:13:41'),
(2139, 'it', 'seotools', 'Graphical Position Reports', 'Report grafico di posizionamento', '2018-08-21 11:13:41'),
(2140, 'it', 'seotools', 'Keyword Position Summary', 'Sommario posizionamento keyword', '2018-08-21 11:13:41'),
(2141, 'it', 'seotools', 'keyword-position-checker', 'Verifica posizionamento keyword', '2018-08-21 11:13:41'),
(2142, 'it', 'seotools', 'Keywords Manager', 'Gestione keyword', '2018-08-21 11:13:41'),
(2143, 'it', 'seotools', 'Quick Backlinks Checker', 'Verifica rapida backlink', '2018-08-21 11:13:41'),
(2144, 'it', 'seotools', 'Quick Position Checker', 'Verifica rapida posizionamento', '2018-08-21 11:13:41'),
(2145, 'it', 'seotools', 'Quick Rank Checker', 'Verifica rapida rank', '2018-08-21 11:13:41'),
(2146, 'it', 'seotools', 'Quick Saturation Checker', 'Verifica rapida saturazione', '2018-08-21 11:13:41'),
(2147, 'it', 'seotools', 'Rank Reports', 'Report rank', '2018-08-21 11:13:41'),
(2148, 'it', 'seotools', 'rank-checker', 'Verifica rank', '2018-08-21 11:13:41'),
(2149, 'it', 'seotools', 'Saturation Reports', 'Report saturazione', '2018-08-21 11:13:41'),
(2150, 'it', 'seotools', 'saturation-checker', 'Saturazione motori di ricerca', '2018-08-21 11:13:41'),
(2151, 'it', 'seotools', 'sitemap-generator', 'Generatore sitemap', '2018-08-21 11:13:41'),
(2152, 'it', 'seotools', 'Skipped Directories', 'Directory saltate', '2018-08-21 11:13:41'),
(2153, 'it', 'seotools', 'Submission Reports', 'Report di invio', '2018-08-21 11:13:41'),
(2154, 'it', 'seotools', 'User Access', 'Accesso utente', '2018-08-21 11:13:41'),
(2155, 'it', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Dona $100</b> e diventa <b>sponsor</b> del pannello seo.', '2018-08-21 11:16:32'),
(2156, 'it', 'settings', 'seopanel_description', 'Un pannello di controllo gratuito per gestire l''ottimizzazione dei tuoi siti web. Contiene molti tool seo che potranno esserti utili per incrementare e verificare le performance dei tuoi siti web. Si tratta di un progetto open source e puoi sviluppare i tuoi stessi plugin seo per il pannello seo.', '2018-08-21 11:16:32'),
(2157, 'it', 'settings', 'seopanel_title', 'Pannello seo: Il primo pannello di controllo open source per la gestione di più siti web.', '2018-08-21 11:16:32'),
(2158, 'it', 'settings', 'SP_CRAWL_DELAY', 'Ritardo tra ogni scansione degli spider (secondi)', '2018-08-21 11:16:32'),
(2159, 'it', 'settings', 'SP_DEFAULTLANG', 'Lingua di default', '2018-08-21 11:16:32'),
(2160, 'it', 'settings', 'SP_DESCRIPTION', 'Descrizione pannello seo', '2018-08-21 11:16:32'),
(2161, 'it', 'settings', 'SP_ENABLE_PROXY', 'Abilita proxy', '2018-08-21 11:16:32'),
(2162, 'it', 'settings', 'SP_HOTLINKING', 'Protezione immagine hotlink attiva', '2018-08-21 11:16:32'),
(2163, 'it', 'settings', 'SP_KEYWORDS', 'Keyword pannello seo', '2018-08-21 11:16:32'),
(2164, 'it', 'settings', 'SP_PAGINGNO', 'Numero di risultati per pagina', '2018-08-21 11:16:32'),
(2165, 'it', 'settings', 'SP_TITLE', 'Titolo pannello seo', '2018-08-21 11:16:32'),
(2166, 'it', 'settings', 'SP_USER_GEN_REPORT', 'Permetti a tutti gli utenti di generare report', '2018-08-21 11:16:32'),
(2167, 'it', 'settings', 'SP_USER_REGISTRATION', 'Interfaccia registrazione utente', '2018-08-21 11:16:32'),
(2168, 'it', 'settings', 'syssettingssaved', 'Impostazioni di sistema salvate con successo!', '2018-08-21 11:16:32'),
(2169, 'zh', 'backlink', 'clickproceedbacklink', '输入URL,<b>每行一条</b>。单击<b>处理</b>开始检测反向链接', '2011-05-06 12:30:24'),
(2170, 'zh', 'backlink', 'Saved backlink results of', '保存反向链接结果', '2011-05-06 12:30:24'),
(2171, 'zh', 'button', 'Cancel', '取消', '2014-01-09 00:21:34'),
(2172, 'zh', 'button', 'Check Status', '检测状态', '2014-01-09 00:21:34'),
(2173, 'zh', 'button', 'Proceed', '处理', '2014-01-09 00:21:34'),
(2174, 'zh', 'button', 'Reload', '重新载入', '2014-01-09 00:21:34'),
(2175, 'zh', 'button', 'Show Details', '显示细节', '2014-01-09 00:21:34'),
(2176, 'zh', 'button', 'Show Records', '显示记录', '2014-01-09 00:21:34'),
(2177, 'zh', 'button', 'Skip', '跳过', '2014-01-09 00:21:34'),
(2178, 'zh', 'button', 'Submit', '提交', '2014-01-09 00:21:34'),
(2179, 'zh', 'common', 'Action', '执行', '2019-05-25 22:01:23'),
(2180, 'zh', 'common', 'Activate', '激活', '2019-05-25 22:01:23'),
(2181, 'zh', 'common', 'Active', '已激活', '2019-05-25 22:01:23'),
(2182, 'zh', 'common', 'Admin Panel', '管理面板', '2019-05-25 22:01:23'),
(2183, 'zh', 'common', 'Alexa Rank', 'Alexa 排名', '2019-05-25 22:01:23'),
(2184, 'zh', 'common', 'All', '所有', '2019-05-25 22:01:23'),
(2185, 'zh', 'common', 'Category', '类别', '2019-05-25 22:01:23'),
(2186, 'zh', 'common', 'contact', '联系', '2019-05-25 22:01:23'),
(2187, 'zh', 'common', 'copyright', '版权所有 © 【2010】www.seopanel.in 保留所有权利', '2019-05-25 22:01:23'),
(2188, 'zh', 'common', 'Country', '国家', '2019-05-25 22:01:23'),
(2189, 'zh', 'common', 'Crawl Meta Data', '爬取meta信息', '2019-05-25 22:01:23'),
(2190, 'zh', 'common', 'Date', '日期', '2019-05-25 22:01:23'),
(2191, 'zh', 'common', 'Delete', '删除', '2019-05-25 22:01:23'),
(2192, 'zh', 'common', 'Details', '细节', '2019-05-25 22:01:23'),
(2193, 'zh', 'common', 'Directory', '目录', '2019-05-25 22:01:23'),
(2194, 'zh', 'common', 'Donate', '捐赠', '2019-05-25 22:01:23'),
(2195, 'zh', 'common', 'Edit', '编辑', '2019-05-25 22:01:23'),
(2196, 'zh', 'common', 'Entry cannot be blank', '不能输入空值', '2019-05-25 22:01:23'),
(2197, 'zh', 'common', 'entrynotvalid', '输入不合法', '2019-05-25 22:01:23'),
(2198, 'zh', 'common', 'failed', '失败', '2019-05-25 22:01:23'),
(2199, 'zh', 'common', 'forum', '论坛', '2019-05-25 22:01:23'),
(2200, 'zh', 'common', 'Found', '资助', '2019-05-25 22:01:23'),
(2201, 'zh', 'common', 'Google Pagerank', '谷歌 Page Rank', '2019-05-25 22:01:23'),
(2202, 'zh', 'common', 'help', '帮助', '2019-05-25 22:01:23'),
(2203, 'zh', 'common', 'hidenews', '隐藏seopanel新闻', '2019-05-25 22:01:23'),
(2204, 'zh', 'common', 'Id', 'Id', '2019-05-25 22:01:23'),
(2205, 'zh', 'common', 'Inactivate', '关闭', '2019-05-25 22:01:23'),
(2206, 'zh', 'common', 'Inactive', '未激活的', '2019-05-25 22:01:23'),
(2207, 'zh', 'common', 'Invalid characters', '非法字符', '2019-05-25 22:01:23'),
(2208, 'zh', 'common', 'Invalid code entered', '输入的代码不合法', '2019-05-25 22:01:23'),
(2209, 'zh', 'common', 'Invalid email address entered', 'Email 地址不合法', '2019-05-25 22:01:23'),
(2210, 'zh', 'common', 'Invalid value', '无效数值', '2019-05-25 22:01:23'),
(2211, 'zh', 'common', 'Keyword', '关键字', '2019-05-25 22:01:23'),
(2212, 'zh', 'common', 'Keywords', '全部关键字', '2019-05-25 22:01:23'),
(2213, 'zh', 'common', 'lang', '语言', '2019-05-25 22:01:23'),
(2214, 'zh', 'common', 'My Account', '我的账户', '2019-05-25 22:01:23'),
(2215, 'zh', 'common', 'Name', '名字', '2019-05-25 22:01:23'),
(2216, 'zh', 'common', 'No', '没有', '2019-05-25 22:01:23'),
(2217, 'zh', 'common', 'No Keywords Found', '未找到关键字', '2019-05-25 22:01:23'),
(2218, 'zh', 'common', 'No Records Found', '未找到相关记录', '2019-05-25 22:01:23'),
(2219, 'zh', 'common', 'noactivetools', '没有可用的seo工具', '2019-05-25 22:01:23'),
(2220, 'zh', 'common', 'nowebsites', '未发现站点', '2019-05-25 22:01:23'),
(2221, 'zh', 'common', 'password632', '密码长度必须为6-32位', '2019-05-25 22:01:23'),
(2222, 'zh', 'common', 'passwordnotmatch', '密码不匹配', '2019-05-25 22:01:23'),
(2223, 'zh', 'common', 'Period', '一段时间', '2019-05-25 22:01:23'),
(2224, 'zh', 'common', 'Priority', '优先级', '2019-05-25 22:01:23'),
(2225, 'zh', 'common', 'Rank', 'PR/排名', '2019-05-25 22:01:23'),
(2226, 'zh', 'common', 'Reports', '报告', '2019-05-25 22:01:23'),
(2227, 'zh', 'common', 'Results', '结果', '2019-05-25 22:01:23'),
(2228, 'zh', 'common', 'Search Engine', '搜索引擎', '2019-05-25 22:01:23'),
(2229, 'zh', 'common', 'Select', '选择', '2019-05-25 22:01:23'),
(2230, 'zh', 'common', 'Seo Plugins', 'seo插件', '2019-05-25 22:01:23'),
(2231, 'zh', 'common', 'Seo Tools', 'seo工具', '2019-05-25 22:01:23'),
(2232, 'zh', 'common', 'Sign out', '登出', '2019-05-25 22:01:23'),
(2233, 'zh', 'common', 'Sign Up', '注册', '2019-05-25 22:01:23'),
(2234, 'zh', 'common', 'signin', '登录', '2019-05-25 22:01:23'),
(2235, 'zh', 'common', 'Status', '状态', '2019-05-25 22:01:23'),
(2236, 'zh', 'common', 'Support', '支持', '2019-05-25 22:01:23'),
(2237, 'zh', 'common', 'Total', '所有', '2019-05-25 22:01:23'),
(2238, 'zh', 'common', 'Url', 'URL', '2019-05-25 22:01:23'),
(2239, 'zh', 'common', 'User', '用户', '2019-05-25 22:01:23'),
(2240, 'zh', 'common', 'User Panel', '用户面板', '2019-05-25 22:01:23'),
(2241, 'zh', 'common', 'Website', '站点', '2019-05-25 22:01:23'),
(2242, 'zh', 'common', 'Yes', '是', '2019-05-25 22:01:23'),
(2243, 'zh', 'directory', 'Add back to directory list', '增加到目录列表', '2014-01-09 20:03:35'),
(2244, 'zh', 'directory', 'Approved', '通过的', '2014-01-09 20:03:35'),
(2245, 'zh', 'directory', 'Captcha', '验证码', '2014-01-09 20:03:35'),
(2246, 'zh', 'directory', 'categorynote', '根据优先级用逗号隔开的提交的具体目录分类。从优先级最高提交的具体目录分类开始', '2014-01-09 20:03:35'),
(2247, 'zh', 'directory', 'Check Directory Status', '检查目录状态', '2014-01-09 20:03:35'),
(2248, 'zh', 'directory', 'Check Directory Submission Status', '检查目录提交状态', '2014-01-09 20:03:35'),
(2249, 'zh', 'directory', 'clicktoproceeddirsts', '点击<b>处理</b> 以检查目录状态', '2014-01-09 20:03:35'),
(2250, 'zh', 'directory', 'Confirmation', '确认', '2014-01-09 20:03:35'),
(2251, 'zh', 'directory', 'desnote', '有些目录最少需要150字符描述信息', '2014-01-09 20:03:35'),
(2252, 'zh', 'directory', 'Directories with out captcha', '没有验证码的目录', '2014-01-09 20:03:35'),
(2253, 'zh', 'directory', 'Directory Submission Reports', '目录提交报告', '2014-01-09 20:03:35'),
(2254, 'zh', 'directory', 'Enter the code shown', '输入显示的字符', '2014-01-09 20:03:35'),
(2255, 'zh', 'directory', 'nocatnote', '在提交页面未找到提交类别。请点击<b>重载</b>或者<b>跳过</b>', '2014-01-09 20:03:35'),
(2256, 'zh', 'directory', 'nodirnote', '未发现<b>已激活的</b>目录', '2014-01-09 20:03:35'),
(2257, 'zh', 'directory', 'nosuccessnote', '如果没得到成功的信息,请检查邮件中的确认信息', '2014-01-09 20:03:35'),
(2258, 'zh', 'directory', 'optionalnote', '提交标题和描述信息比提交随机信息会获得更好的结果', '2014-01-09 20:03:35'),
(2259, 'zh', 'directory', 'Owner Email', '用户邮件', '2014-01-09 20:03:35'),
(2260, 'zh', 'directory', 'Owner Name', '用户名字', '2014-01-09 20:03:35'),
(2261, 'zh', 'directory', 'Pending', '待定', '2014-01-09 20:03:35');
INSERT INTO `texts` VALUES
(2262, 'zh', 'directory', 'Please select a website to proceed', '请选择一个站点来处理', '2014-01-09 20:03:35'),
(2263, 'zh', 'directory', 'selectwebsiteproceed', '选择一个 <b>站点</b> 来 <b>处理</b> 目录提交。<br>检查 <b>没有验证码的目录</b> 来提交没有验证码的目录', '2014-01-09 20:03:35'),
(2264, 'zh', 'directory', 'selectwebsiteschecksub', '选择一个<b>站点</b> 来 <b>处理</b> 检查目录提交信息', '2014-01-09 20:03:35'),
(2265, 'zh', 'directory', 'Semi Automatic Directory Submission Tool', '半自动目录提交工具', '2014-01-09 20:03:35'),
(2266, 'zh', 'directory', 'spamemailnote', '一些目录可能会发送垃圾邮件,我们建议不要不要使用你常用的邮箱地址', '2014-01-09 20:03:35'),
(2267, 'zh', 'directory', 'Submission Details', '提交细节', '2014-01-09 20:03:35'),
(2268, 'zh', 'directory', 'Submit Description', '提交描述信息', '2014-01-09 20:03:35'),
(2269, 'zh', 'directory', 'Submit Keywords', '提交关键字', '2014-01-09 20:03:35'),
(2270, 'zh', 'directory', 'Submit Title', '提交标题', '2014-01-09 20:03:35'),
(2271, 'zh', 'directory', 'Website Category', '网站目录', '2014-01-09 20:03:35'),
(2272, 'zh', 'directory', 'Website Url', '网站地址', '2014-01-09 20:03:35'),
(2273, 'zh', 'keyword', 'Crawling keyword', '爬取关键字', '2011-07-06 10:03:07'),
(2274, 'zh', 'keyword', 'Detailed Keyword Position Reports', '显示关键字排名报告', '2011-07-06 10:03:07'),
(2275, 'zh', 'keyword', 'Edit Keyword', '编辑关键字', '2011-07-06 10:03:07'),
(2276, 'zh', 'keyword', 'Graphical Keyword Position Reports', '关键字位置图形报表', '2011-07-06 10:03:07'),
(2277, 'zh', 'keyword', 'Import Keywords', '导入关键字', '2011-07-06 10:03:07'),
(2278, 'zh', 'keyword', 'Keyword already exist', '关键字已存在', '2011-07-06 10:03:07'),
(2279, 'zh', 'keyword', 'Keyword Position Report', '关键字位置报告', '2011-07-06 10:03:07'),
(2280, 'zh', 'keyword', 'New Keyword', '新的关键字', '2011-07-06 10:03:07'),
(2281, 'zh', 'keyword', 'not assigned to required search engines', '未设置请求的搜索引擎', '2011-07-06 10:03:07'),
(2282, 'zh', 'keyword', 'pleaseselecttool', '请至少选择一个seo工具', '2011-07-06 10:03:07'),
(2283, 'zh', 'keyword', 'Quick Keyword Position Checker', '快速关键字查询', '2011-07-06 10:03:07'),
(2284, 'zh', 'keyword', 'results from ', '结果来自', '2011-07-06 10:03:07'),
(2285, 'zh', 'keyword', 'Show All results', '显示所有结果', '2011-07-06 10:03:07'),
(2286, 'zh', 'keyword', 'Successfully crawled keyword', '成功爬取关键字', '2011-07-06 10:03:07'),
(2287, 'zh', 'keyword', 'to create new keywords', '创建新关键字', '2011-07-06 10:03:07'),
(2288, 'zh', 'login', 'Confirm Password', '确认密码', '2014-01-09 20:07:15'),
(2289, 'zh', 'login', 'Create my account', '创建我的账户', '2014-01-09 20:07:15'),
(2290, 'zh', 'login', 'Create New Account', '创建一个新账户', '2014-01-09 20:07:15'),
(2291, 'zh', 'login', 'Email', '邮箱', '2014-01-09 20:07:15'),
(2292, 'zh', 'login', 'emailexist', '邮箱已存在', '2014-01-09 20:07:15'),
(2293, 'zh', 'login', 'Enter the code as it is shown', '输入显示的字符', '2014-01-09 20:07:15'),
(2294, 'zh', 'login', 'First Name', '名字', '2014-01-09 20:07:15'),
(2295, 'zh', 'login', 'Last Name', '姓', '2014-01-09 20:07:15'),
(2296, 'zh', 'login', 'Login', '登录', '2014-01-09 20:07:15'),
(2297, 'zh', 'login', 'Login incorrect', '登录信息不正确', '2014-01-09 20:07:15'),
(2298, 'zh', 'login', 'newaccountsuccess', '创建新账户成功', '2014-01-09 20:07:15'),
(2299, 'zh', 'login', 'Password', '密码', '2014-01-09 20:07:15'),
(2300, 'zh', 'login', 'Password incorrect', '密码不正确', '2014-01-09 20:07:15'),
(2301, 'zh', 'login', 'Register', '注册', '2014-01-09 20:07:15'),
(2302, 'zh', 'login', 'Sign in to your account', '登录你的账户', '2014-01-09 20:07:15'),
(2303, 'zh', 'login', 'User inactive', '用户无效', '2014-01-09 20:07:15'),
(2304, 'zh', 'login', 'Username', '用户名', '2014-01-09 20:07:15'),
(2305, 'zh', 'login', 'usernameexist', '用户名已存在', '2014-01-09 20:07:15'),
(2306, 'zh', 'panel', 'About Us', '关于我们', '2014-05-15 21:48:57'),
(2307, 'zh', 'panel', 'Add following command to your cron tab', '加入以下命令到CRON列表', '2014-05-15 21:48:57'),
(2308, 'zh', 'panel', 'alsocheckfollowlink', '如果需要更多细节,请检查一下链接', '2014-05-15 21:48:57'),
(2309, 'zh', 'panel', 'Check Directory', '检查目录', '2014-05-15 21:48:57'),
(2310, 'zh', 'panel', 'Cron Command', 'cron命令', '2014-05-15 21:48:57'),
(2311, 'zh', 'panel', 'Directory Manager', '目录管理', '2014-05-15 21:48:57'),
(2312, 'zh', 'panel', 'Edit My Profile', '编辑我的资料', '2014-05-15 21:48:57'),
(2313, 'zh', 'panel', 'My Profile', '我的资料', '2014-05-15 21:48:57'),
(2314, 'zh', 'panel', 'New Proxy', '新建代理', '2014-05-15 21:48:57'),
(2315, 'zh', 'panel', 'New User', '新建用户', '2014-05-15 21:48:57'),
(2316, 'zh', 'panel', 'New Website', '新的站点', '2014-05-15 21:48:57'),
(2317, 'zh', 'panel', 'Proxy Manager', '代理管理器', '2014-05-15 21:48:57'),
(2318, 'zh', 'panel', 'Report Generation Manager', '报告生成管理', '2014-05-15 21:48:57'),
(2319, 'zh', 'panel', 'Reports Manager', '报告管理', '2014-05-15 21:48:57'),
(2320, 'zh', 'panel', 'Seo Plugins Manager', 'seo插件管理', '2014-05-15 21:48:57'),
(2321, 'zh', 'panel', 'Seo Tools Manager', 'seo工具管理', '2014-05-15 21:48:57'),
(2322, 'zh', 'panel', 'System Settings', '系统设置', '2014-05-15 21:48:57'),
(2323, 'zh', 'panel', 'User Manager', '用户管理', '2014-05-15 21:48:57'),
(2324, 'zh', 'panel', 'Website Manager', '站点管理', '2014-05-15 21:48:57'),
(2325, 'ru', 'backlink', 'clickproceedbacklink', 'Введите URL <b>по одному в каждой строке</b>. Нажмите <b>продолжить</b> для проверки обратных ссылок.', '2012-12-06 00:31:54'),
(2326, 'ru', 'backlink', 'Saved backlink results of', 'Сохранение результатов обратных ссылок', '2012-12-06 00:31:54'),
(2327, 'ru', 'button', 'Cancel', 'Отмена', '2014-01-09 00:33:07'),
(2328, 'ru', 'button', 'Check Status', 'Проверить статус', '2014-01-09 00:33:07'),
(2329, 'ru', 'button', 'Proceed', 'Продолжить', '2014-01-09 00:33:07'),
(2330, 'ru', 'button', 'Reload', 'Перезагрузить', '2014-01-09 00:33:07'),
(2331, 'ru', 'button', 'Show Details', 'Показать детали', '2014-01-09 00:33:07'),
(2332, 'ru', 'button', 'Show Records', 'Показать записи', '2014-01-09 00:33:07'),
(2333, 'ru', 'button', 'Skip', 'Пропустить', '2014-01-09 00:33:07'),
(2334, 'ru', 'button', 'Submit', 'Отправить', '2014-01-09 00:33:07'),
(2335, 'ru', 'common', 'Action', 'Действие', '2024-07-17 15:16:33'),
(2336, 'ru', 'common', 'Activate', 'Включить', '2024-07-17 15:16:33'),
(2337, 'ru', 'common', 'Active', 'Активный', '2024-07-17 15:16:33'),
(2338, 'ru', 'common', 'Admin Panel', 'Панель администратора', '2024-07-17 15:16:33'),
(2339, 'ru', 'common', 'Alexa Rank', 'Alexa Rank', '2024-07-17 15:16:33'),
(2340, 'ru', 'common', 'All', 'Все', '2024-07-17 15:16:33'),
(2341, 'ru', 'common', 'Category', 'Категория', '2024-07-17 15:16:33'),
(2342, 'ru', 'common', 'contact', 'Контакты', '2024-07-17 15:16:33'),
(2343, 'ru', 'common', 'copyright', 'Авторские права © [year] www.seopanel.in. Все права защищены', '2024-07-17 15:16:33'),
(2344, 'ru', 'common', 'Country', 'Страна', '2024-07-17 15:16:33'),
(2345, 'ru', 'common', 'Crawl Meta Data', 'Сканирование метаданных', '2024-07-17 15:16:33'),
(2346, 'ru', 'common', 'Date', 'Дата', '2024-07-17 15:16:33'),
(2347, 'ru', 'common', 'Delete', 'Удалить', '2024-07-17 15:16:33'),
(2348, 'ru', 'common', 'Details', 'Детали', '2024-07-17 15:16:33'),
(2349, 'ru', 'common', 'Directory', 'Каталог', '2024-07-17 15:16:33'),
(2350, 'ru', 'common', 'Donate', 'Пожертвовать', '2024-07-17 15:16:33'),
(2351, 'ru', 'common', 'Edit', 'Редактировать', '2024-07-17 15:16:33'),
(2352, 'ru', 'common', 'Entry cannot be blank', 'Поле не может быть пустым', '2024-07-17 15:16:33'),
(2353, 'ru', 'common', 'entrynotvalid', 'Введена не правильная запись', '2024-07-17 15:16:33'),
(2354, 'ru', 'common', 'failed', 'неудачно', '2024-07-17 15:16:33'),
(2355, 'ru', 'common', 'forum', 'Форум', '2024-07-17 15:16:33'),
(2356, 'ru', 'common', 'Found', 'Найдено', '2024-07-17 15:16:33'),
(2357, 'ru', 'common', 'Google Pagerank', 'Google Pagerank', '2024-07-17 15:16:33'),
(2358, 'ru', 'common', 'help', 'Помощь', '2024-07-17 15:16:33'),
(2359, 'ru', 'common', 'hidenews', 'Скрыть новости Seo panel', '2024-07-17 15:16:33'),
(2360, 'ru', 'common', 'Id', 'Id', '2024-07-17 15:16:33'),
(2361, 'ru', 'common', 'Inactivate', 'Отключить', '2024-07-17 15:16:33'),
(2362, 'ru', 'common', 'Inactive', 'Неактивный', '2024-07-17 15:16:33'),
(2363, 'ru', 'common', 'Invalid characters', 'Недопустимые символы', '2024-07-17 15:16:33'),
(2364, 'ru', 'common', 'Invalid code entered', 'Введен неправильный код', '2024-07-17 15:16:33'),
(2365, 'ru', 'common', 'Invalid email address entered', 'Введен неправильный email', '2024-07-17 15:16:33'),
(2366, 'ru', 'common', 'Invalid value', 'Неправильное значение', '2024-07-17 15:16:33'),
(2367, 'ru', 'common', 'Keyword', 'Ключевое слово', '2024-07-17 15:16:33'),
(2368, 'ru', 'common', 'Keywords', 'Ключевые слова', '2024-07-17 15:16:33'),
(2369, 'ru', 'common', 'lang', 'Язык', '2024-07-17 15:16:33'),
(2370, 'ru', 'common', 'My Account', 'Мой аккаунт', '2024-07-17 15:16:33'),
(2371, 'ru', 'common', 'Name', 'Название', '2024-07-17 15:16:33'),
(2372, 'ru', 'common', 'No', 'Нет', '2024-07-17 15:16:33'),
(2373, 'ru', 'common', 'No Keywords Found', 'Ключевые слова не найдены', '2024-07-17 15:16:33'),
(2374, 'ru', 'common', 'No Records Found', 'Записей не найдено', '2024-07-17 15:16:33'),
(2375, 'ru', 'common', 'noactivetools', 'Нет активных сео-инструментов!', '2024-07-17 15:16:33'),
(2376, 'ru', 'common', 'nowebsites', 'Сайты не найдены!', '2024-07-17 15:16:33'),
(2377, 'ru', 'common', 'password632', 'Длина пароля должна быть от 6 до 32 символов', '2024-07-17 15:16:33'),
(2378, 'ru', 'common', 'passwordnotmatch', 'Пароли не совпадают', '2024-07-17 15:16:33'),
(2379, 'ru', 'common', 'Period', 'Период', '2024-07-17 15:16:33'),
(2380, 'ru', 'common', 'Priority', 'Приоритет', '2024-07-17 15:16:33'),
(2381, 'ru', 'common', 'Rank', 'Rank', '2024-07-17 15:16:33'),
(2382, 'ru', 'common', 'Reports', 'Отчеты', '2024-07-17 15:16:33'),
(2383, 'ru', 'common', 'Results', 'Результаты', '2024-07-17 15:16:33'),
(2384, 'ru', 'common', 'Search Engine', 'Поисковые системы', '2024-07-17 15:16:33'),
(2385, 'ru', 'common', 'Select', 'Выбор', '2024-07-17 15:16:33'),
(2386, 'ru', 'common', 'Seo Plugins', 'Сео-плагины', '2024-07-17 15:16:33'),
(2387, 'ru', 'common', 'Seo Tools', 'Сео-инструменты', '2024-07-17 15:16:33'),
(2388, 'ru', 'common', 'Sign out', 'Выход', '2024-07-17 15:16:33'),
(2389, 'ru', 'common', 'Sign Up', 'Зарегистрироваться', '2024-07-17 15:16:33'),
(2390, 'ru', 'common', 'signin', 'Вход', '2024-07-17 15:16:33'),
(2391, 'ru', 'common', 'Status', 'Статус', '2024-07-17 15:16:33'),
(2392, 'ru', 'common', 'Support', 'Поддержка', '2024-07-17 15:16:33'),
(2393, 'ru', 'common', 'Total', 'Всего', '2024-07-17 15:16:33'),
(2394, 'ru', 'common', 'Url', 'Url', '2024-07-17 15:16:33'),
(2395, 'ru', 'common', 'User', 'Пользователь', '2024-07-17 15:16:33'),
(2396, 'ru', 'common', 'User Panel', 'Панель пользователя', '2024-07-17 15:16:33'),
(2397, 'ru', 'common', 'Website', 'Сайт', '2024-07-17 15:16:33'),
(2398, 'ru', 'common', 'Yes', 'Да', '2024-07-17 15:16:33'),
(2399, 'ru', 'directory', 'Add back to directory list', 'Вернуться к добавлению в список каталогов', '2012-11-09 11:03:15'),
(2400, 'ru', 'directory', 'Approved', 'Утвержденный', '2012-11-09 11:03:15'),
(2401, 'ru', 'directory', 'Captcha', 'Проверочный код', '2012-11-09 11:03:15'),
(2402, 'ru', 'directory', 'categorynote', 'Категории разделите запятой в соответствии с приоритетом. Начните с верхней категории наиболее приоритетной.', '2012-11-09 11:03:15'),
(2403, 'ru', 'directory', 'Check Directory Status', 'Проверить состояния регистра', '2012-11-09 11:03:15'),
(2404, 'ru', 'directory', 'Check Directory Submission Status', 'Проверить статус рассылки в каталоги', '2012-11-09 11:03:15'),
(2405, 'ru', 'directory', 'clicktoproceeddirsts', 'Нажмите <b>продолжить</b> для проверки статуса каталогов.', '2012-11-09 11:03:15'),
(2406, 'ru', 'directory', 'Confirmation', 'Подтверждение', '2012-11-09 11:03:15'),
(2407, 'ru', 'directory', 'desnote', 'Некоторые каталоги требуют минимум 150 символов для ввода в поле описание.', '2012-11-09 11:03:15'),
(2408, 'ru', 'directory', 'Directories with out captcha', 'Каталоги сайтов с каптчей', '2012-11-09 11:03:15'),
(2409, 'ru', 'directory', 'Directory Submission Reports', 'Отчеты по рассылке в каталоги', '2012-11-09 11:03:15'),
(2410, 'ru', 'directory', 'Enter the code shown', 'Введите код из изображения', '2012-11-09 11:03:15'),
(2411, 'ru', 'directory', 'nocatnote', 'Введенная категория не найдена в отправленной странице. Пожалуйста нажмите <b>перезагрузить</b> или <b>пропустить</b> ', '2012-11-09 11:03:15'),
(2412, 'ru', 'directory', 'nodirnote', 'Нет <b>активных</b> каталогов', '2012-11-09 11:03:15'),
(2413, 'ru', 'directory', 'nosuccessnote', 'Не получено сообщение об успешном добавлении! Пожалуйста проверьте свою почту, возможно сообщение о подтверждении пришло к вам на почту', '2012-11-09 11:03:15'),
(2414, 'ru', 'directory', 'optionalnote', 'Дополнительные заголовки и описания представляются как случайные названия и описания в каталогах для лучшего результата.', '2012-11-09 11:03:15'),
(2415, 'ru', 'directory', 'Owner Email', 'Email владельца', '2012-11-09 11:03:15'),
(2416, 'ru', 'directory', 'Owner Name', 'Имя владельца', '2012-11-09 11:03:15'),
(2417, 'ru', 'directory', 'Pending', 'В ожидании', '2012-11-09 11:03:15'),
(2418, 'ru', 'directory', 'Please select a website to proceed', 'Для продолжения выберите сайт', '2012-11-09 11:03:15'),
(2419, 'ru', 'directory', 'selectwebsiteproceed', 'Выберите <b>сайт</b> для <b>продолжения</b> рассылки в каталоги.<br>Выберите <b>каталоги с капчей</b> для рассылки в каталоги.', '2012-11-09 11:03:15'),
(2420, 'ru', 'directory', 'selectwebsiteschecksub', 'Выберите <b>сайт</b> для <b>продолжения</b> выбора каталогов.', '2012-11-09 11:03:15'),
(2421, 'ru', 'directory', 'Semi Automatic Directory Submission Tool', 'Полуавтоматический инструмент рассылки в каталоги', '2012-11-09 11:03:15'),
(2422, 'ru', 'directory', 'spamemailnote', 'Некоторые каталоги могут рассылать спам, мы не рекомендуем использовать Ваш основной email почты.', '2012-11-09 11:03:15'),
(2423, 'ru', 'directory', 'Submission Details', 'Детали рассылки', '2012-11-09 11:03:15'),
(2424, 'ru', 'directory', 'Submit Description', 'Описание рассылки', '2012-11-09 11:03:15'),
(2425, 'ru', 'directory', 'Submit Keywords', 'Отправить ключевые слова', '2012-11-09 11:03:15'),
(2426, 'ru', 'directory', 'Submit Title', 'Отправить заголовок', '2012-11-09 11:03:15'),
(2427, 'ru', 'directory', 'Website Category', 'Категория сайта', '2012-11-09 11:03:15'),
(2428, 'ru', 'directory', 'Website Url', 'Url сайта', '2012-11-09 11:03:15'),
(2429, 'zh', 'plugin', 'Edit Seo Plugin', '编辑SEO插件', '2014-01-09 20:08:57'),
(2430, 'zh', 'plugin', 'Plugin Name', '插件名字', '2014-01-09 20:08:57'),
(2431, 'zh', 'plugin', 'Seo Plugin Details', 'SEO插件细节', '2014-01-09 20:08:57'),
(2432, 'zh', 'proxy', 'Edit Proxy', '编辑代理', '2014-05-15 21:51:10'),
(2433, 'zh', 'proxy', 'Proxy Password', '代理密码', '2014-05-15 21:51:10'),
(2434, 'zh', 'proxy', 'Proxy Username', '代理用户名', '2014-05-15 21:51:10'),
(2435, 'zh', 'proxy', 'Proxyalreadyexist', '代理已经存在', '2014-05-15 21:51:10'),
(2436, 'zh', 'rank', 'enterurlproceed', '输入URL,<b>每行一条</b>。点击<b>处理</b>开始检查Google PR和 Alexa 排名', '2011-05-04 12:41:24'),
(2437, 'zh', 'rank', 'Google and Alexa Rank Reports', 'Google PR和 Alexa 排名报告', '2011-05-04 12:41:25'),
(2438, 'zh', 'rank', 'Saved rank results of', '保存排名结果', '2011-05-04 12:41:25'),
(2439, 'zh', 'saturation', 'clickproceedsaturation', '输入URL,<b>每行一条</b>。点击<b>处理</b>开始检查搜索引擎搜录报告', '2011-05-04 13:45:58'),
(2440, 'zh', 'saturation', 'GenerateSaturationReports', '生成搜索引擎搜录报告', '2011-05-04 13:45:58'),
(2441, 'zh', 'saturation', 'Quick Search Engine Saturation Checker', '快速搜索引擎搜录检查', '2011-05-04 13:45:58'),
(2442, 'zh', 'saturation', 'Saved Search Engine Saturation results of', '保存搜索引擎搜录结果\r\n', '2011-05-04 13:45:58'),
(2443, 'zh', 'saturation', 'Search Engine Saturation Reports', '搜索引擎搜录报告', '2011-05-04 13:45:58'),
(2444, 'zh', 'seotools', 'Automatic Submission', '自动提交', '2011-07-06 10:05:37'),
(2445, 'zh', 'seotools', 'backlink-checker', '反向链接检查', '2011-07-06 10:05:37'),
(2446, 'zh', 'seotools', 'Backlinks Reports', '反向链接报告', '2011-07-06 10:05:37'),
(2447, 'zh', 'seotools', 'Check Submission Status', '检查提交状态', '2011-07-06 10:05:37'),
(2448, 'zh', 'seotools', 'clickgeneratereports', '点击<b>处理</b>开始生成报告 ', '2011-07-06 10:05:37'),
(2449, 'zh', 'seotools', 'Detailed Position Reports', '详细的位置报告', '2011-07-06 10:05:37'),
(2450, 'zh', 'seotools', 'directory-submission', '目录提交', '2011-07-06 10:05:37'),
(2451, 'zh', 'seotools', 'Featured Submission', '筛选提交', '2011-07-06 10:05:37'),
(2452, 'zh', 'seotools', 'Generate Backlinks Reports', '生成反向链接报告', '2011-07-06 10:05:37'),
(2453, 'zh', 'seotools', 'Generate Keyword Reports', '生成关键字报告', '2011-07-06 10:05:37'),
(2454, 'zh', 'seotools', 'Generate Rank Reports', '生成排名报告', '2011-07-06 10:05:37'),
(2455, 'zh', 'seotools', 'Generate Saturation Reports', '生成收录量报告', '2011-07-06 10:05:37'),
(2456, 'zh', 'seotools', 'Google Sitemap Generator', 'Google网站地图报告', '2011-07-06 10:05:37'),
(2457, 'zh', 'seotools', 'Graphical Position Reports', '图形位置报告', '2011-07-06 10:05:37'),
(2458, 'zh', 'seotools', 'Keyword Position Summary', '关键字概述', '2011-07-06 10:05:37'),
(2459, 'zh', 'seotools', 'keyword-position-checker', '关键字检查', '2011-07-06 10:05:37'),
(2460, 'zh', 'seotools', 'Keywords Manager', '关键字管理', '2011-07-06 10:05:37'),
(2461, 'zh', 'seotools', 'Quick Backlinks Checker', '快速反向链接检查', '2011-07-06 10:05:37'),
(2462, 'zh', 'seotools', 'Quick Position Checker', '快速位置检查', '2011-07-06 10:05:37'),
(2463, 'zh', 'seotools', 'Quick Rank Checker', '快速排名检查', '2011-07-06 10:05:37'),
(2464, 'zh', 'seotools', 'Quick Saturation Checker', '快速收录量检查', '2011-07-06 10:05:37'),
(2465, 'zh', 'seotools', 'Rank Reports', '排名报告', '2011-07-06 10:05:37'),
(2466, 'zh', 'seotools', 'rank-checker', '排名检查', '2011-07-06 10:05:37'),
(2467, 'zh', 'seotools', 'Saturation Reports', '收录量报告', '2011-07-06 10:05:37'),
(2468, 'zh', 'seotools', 'saturation-checker', '搜索引擎收录量', '2011-07-06 10:05:37'),
(2469, 'zh', 'seotools', 'sitemap-generator', '站点地图生成器', '2011-07-06 10:05:37'),
(2470, 'zh', 'seotools', 'Skipped Directories', '跳过的目录', '2011-07-06 10:05:37'),
(2471, 'zh', 'seotools', 'Submission Reports', '提交报告', '2011-07-06 10:05:37'),
(2472, 'zh', 'seotools', 'User Access', '用户访问', '2011-07-06 10:05:37'),
(2473, 'zh', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>捐赠 $100</b> 成为Seo Panel的一个<b>赞助人</b>.', '2014-05-15 21:56:30'),
(2474, 'zh', 'settings', 'seopanel_description', 'Seo panel是一个完整的免费的能对你的站点进行搜索引擎优化的控制面板。它拥有很多热门的seo工具来追踪你的站点情况。它是一个开源软件,而且你可以开发自己的seopanel。', '2014-05-15 21:56:30'),
(2475, 'zh', 'settings', 'seopanel_title', 'Seo Panel:全球第一款多站点seo处理开源软件', '2014-05-15 21:56:30'),
(2476, 'zh', 'settings', 'SP_CRAWL_DELAY', '每次爬去间隔时间(秒)', '2014-05-15 21:56:30'),
(2477, 'zh', 'settings', 'SP_DEFAULTLANG', '默认语言', '2014-05-15 21:56:30'),
(2478, 'zh', 'settings', 'SP_DESCRIPTION', 'Seo Panel 描述', '2014-05-15 21:56:30'),
(2479, 'zh', 'settings', 'SP_ENABLE_PROXY', '使用代理', '2014-05-15 21:56:30'),
(2480, 'zh', 'settings', 'SP_HOTLINKING', '使用图片盗链保护', '2014-05-15 21:56:30'),
(2481, 'zh', 'settings', 'SP_KEYWORDS', 'Seo Panel 关键字', '2014-05-15 21:56:30'),
(2482, 'zh', 'settings', 'SP_PAGINGNO', '每页条目数量', '2014-05-15 21:56:30'),
(2483, 'zh', 'settings', 'SP_TITLE', 'Seo Panel 标题', '2014-05-15 21:56:30'),
(2484, 'zh', 'settings', 'SP_USER_GEN_REPORT', '允许用户生成报告', '2014-05-15 21:56:30'),
(2485, 'zh', 'settings', 'SP_USER_REGISTRATION', '用户注册接口', '2014-05-15 21:56:30'),
(2486, 'zh', 'settings', 'syssettingssaved', '系统设置保存成功', '2014-05-15 21:56:30'),
(2487, 'zh', 'sitemap', 'Change frequency', '改变频率', '2010-10-18 01:33:58'),
(2488, 'zh', 'sitemap', 'clickproceedsitemap', '点击<b>处理</b>创建站点地图文件', '2010-10-18 01:33:58'),
(2489, 'zh', 'sitemap', 'Download sitemap file from', '下载站点地图文件', '2010-10-18 01:33:58'),
(2490, 'zh', 'sitemap', 'Exclude Url', '不包括的URL', '2010-10-18 01:33:58'),
(2491, 'zh', 'sitemap', 'processtaketime', '本次处理需要一段时间根据你的站点连接数。请等待,稍后将获取站点地图文件', '2010-10-18 01:33:58'),
(2492, 'zh', 'sitemap', 'Sitemap Type', '站点地图类型', '2010-10-18 01:33:58'),
(2493, 'zh', 'user', 'Edit User', '编辑用户信息', '2010-10-18 01:35:39'),
(2494, 'zh', 'user', 'Saved My Profile Details', '保存我的详细资料', '2010-10-18 01:35:39'),
(2495, 'zh', 'website', 'Edit Website', '编辑站点', '2010-10-18 01:37:23'),
(2496, 'zh', 'website', 'plscrtwebsite', '使用seo工具和插件前,请先创建一个站点', '2010-10-18 01:37:23'),
(2497, 'zh', 'website', 'Website already exist', '站点已经存在', '2010-10-18 01:37:23'),
(2498, 'zh', 'website', 'yourwebalreday', '你的站点,如果你已经创建了一个', '2010-10-18 01:37:23'),
(2499, 'zh', 'label', 'already exist', '已经存在', '2014-05-15 21:47:51'),
(2500, 'zh', 'label', 'Authentication', '认证', '2014-05-15 21:47:51'),
(2501, 'zh', 'label', 'Author', '作者', '2014-05-15 21:47:51'),
(2502, 'zh', 'label', 'Click Here', '点击这里', '2014-05-15 21:47:51'),
(2503, 'zh', 'label', 'Cron', 'Cron', '2014-05-15 21:47:51'),
(2504, 'zh', 'label', 'Description', '描述', '2014-05-15 21:47:51'),
(2505, 'zh', 'label', 'Developers', '开发人员', '2014-05-15 21:47:51'),
(2506, 'zh', 'label', 'Download', '下载', '2014-05-15 21:47:51'),
(2507, 'zh', 'label', 'Installation', '安装', '2014-05-15 21:47:51'),
(2508, 'zh', 'label', 'Keywords', '关键字', '2014-05-15 21:47:51'),
(2509, 'zh', 'label', 'noactiveplugins', '未找到可用的seo插件', '2014-05-15 21:47:51'),
(2510, 'zh', 'label', 'Plugin', '插件', '2014-05-15 21:47:51'),
(2511, 'zh', 'label', 'Port', '端口', '2014-05-15 21:47:51'),
(2512, 'zh', 'label', 'Proxy', '代理', '2014-05-15 21:47:51'),
(2513, 'zh', 'label', 'Re-install', '重新安装', '2014-05-15 21:47:51'),
(2514, 'zh', 'label', 'Sponsors', '赞助商', '2014-05-15 21:47:51'),
(2515, 'zh', 'label', 'Title', '标题', '2014-05-15 21:47:51'),
(2516, 'zh', 'label', 'translation by', '译者:', '2014-05-15 21:47:51'),
(2517, 'zh', 'label', 'Translators', '所有译者:', '2014-05-15 21:47:51'),
(2518, 'zh', 'label', 'Upgrade', '升级', '2014-05-15 21:47:51'),
(2519, 'zh', 'label', 'Version', '版本', '2014-05-15 21:47:51'),
(2520, 'zh', 'label', 'wantproceed', '你确实要开始处理了吗?', '2014-05-15 21:47:51'),
(2521, 'ru', 'home', 'Account Summary', 'Резюме аккаунта', '2019-11-28 18:27:27'),
(2522, 'ru', 'home', 'Backlinks', 'Обратные ссылки', '2019-11-28 18:27:27'),
(2523, 'ru', 'home', 'Directory Submission', 'Рассылка в каталоги', '2019-11-28 18:27:27'),
(39649, 'ru', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Страница заблокирована в robots.txt - поисковые системы не могут индексировать эту страницу', '2026-01-19 23:10:34'),
(39650, 'tr', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Sayfa robots.txt tarafından engellendi - arama motorları bu sayfayı tarayamaz', '2026-01-19 23:10:34'),
(39651, 'zh', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', '该页面被robots.txt阻止 - 搜索引擎无法抓取此页面', '2026-01-19 23:10:34'),
(39652, 'cn', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', '该页面被robots.txt阻止 - 搜索引擎无法抓取此页面', '2026-01-19 23:10:34'),
(5116, 'ru', 'home', 'Indexed', 'Проиндексировано', '2019-11-28 18:27:27'),
(5117, 'ru', 'keyword', 'Insert keywords separated with comma', 'Вставьте ключевые слова разделенные запятыми', '2016-01-13 02:28:48'),
(5118, 'ru', 'label', 'Brocken', 'Сломанный', '2024-07-17 15:17:22'),
(5119, 'ru', 'label', 'Comments', 'Комментарии', '2024-07-17 15:17:22'),
(5120, 'ru', 'label', 'Count', 'Подсчет', '2024-07-17 15:17:22'),
(5121, 'ru', 'label', 'Exclude', 'Исключить', '2024-07-17 15:17:22'),
(5122, 'ru', 'label', 'Include', 'Включить', '2024-07-17 15:17:22'),
(5123, 'ru', 'label', 'Project', 'Проект', '2024-07-17 15:17:22'),
(5124, 'ru', 'label', 'Report Type', 'Тип отчета', '2024-07-17 15:17:22'),
(5125, 'ru', 'label', 'Score', 'Оценка', '2024-07-17 15:17:22'),
(5126, 'ru', 'label', 'Total Results', 'Всего результатов', '2024-07-17 15:17:22'),
(38963, 'tr', 'review', 'Top Review Links', 'En İyi İnceleme Bağlantıları', '2026-01-19 22:58:50'),
(38964, 'uk', 'review', 'Top Review Links', 'Топ посилань на відгуки', '2026-01-19 22:58:50'),
(38965, 'vn', 'review', 'Top Review Links', 'Liên kết đánh giá hàng đầu', '2026-01-19 22:58:50'),
(38966, 'zh', 'review', 'Top Review Links', '热门评论链接', '2026-01-19 22:58:50'),
(38967, 'en', 'review', 'Review Link Details', 'Review Link Details', '2026-01-19 22:58:50'),
(38968, 'ar', 'review', 'Review Link Details', 'تفاصيل رابط المراجعة', '2026-01-19 22:58:50'),
(38969, 'bg', 'review', 'Review Link Details', 'Детайли на връзката за отзиви', '2026-01-19 22:58:50'),
(38970, 'bs', 'review', 'Review Link Details', 'Detalji linka recenzije', '2026-01-19 22:58:50'),
(38971, 'ca', 'review', 'Review Link Details', 'Detalls de l''enllaç de ressenya', '2026-01-19 22:58:50'),
(13976, 'ru', 'home', 'Overall Report Summary', 'Общее резюме доклада', '2019-11-28 18:27:27'),
(13977, 'ru', 'panel', 'Report Generation Logs', 'Отправить сгенерированные логи', '2024-07-17 15:19:14'),
(13978, 'ru', 'panel', 'Sitemaps', 'Карты сайта', '2024-07-17 15:19:14'),
(13979, 'ru', 'panel', 'Submit Sitemap', 'Добавить карту сайта', '2024-07-17 15:19:14'),
(6550, 'fa', 'support', 'support_cont1', '<fieldset> \r\n<legend>Seo Panel Support System</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>1000 Directory Package</h1> \r\n <p> \r\n We are providing <b>1000 free active and verified</b> internet directory package, to add into\r\nyour seo panel <b>directory submission tool</b>. \r\n It will help you to <b>increase the backlinks</b> of your websites. \r\n Actually 1000 directory list is <b>introduced</b> to collect some money for <b>future\r\ndevelopment</b> of seo panel. \r\n To get the 1000 directory list please <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donate</a>\r\n$10 or more to improve the features of seo panel. \r\n If you have any questions about 1000 directory package, please <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">contact us</a> or open a ticket in <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">support system</a>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Visit this link to donate to seo panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Local Search Engines Package</h1> \r\n <p> \r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr\r\netc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally. \r\n To get local search engines package(according to your requirement) please <a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donate</a> $10 or more to improve the features of seo\r\npanel. \r\n Before sending donation, please <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contact us</a> to\r\nprovide us required search engine domain list. \r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker,\r\nplease <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contact us</a> or open a ticket in <a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">support system</a>. \r\n </p> \r\n <p class=\\"visit\\"> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Visit this link to contact us</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Seo Panel Plugins</h1> \r\n <p> \r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your\r\nrequirement. \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel plugins</a> are provided by both seo panel\r\nand third party sites. \r\n You can also easily <b>develop</b> seo plugins for your seo panel. \r\n You can <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">submit</a> your seo plugin to seo panel and\r\nwe will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Visit this link to get seo panel plugins</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Contact Us</h1> \r\n <p> \r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below\r\nlink. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Visit this link to contact us</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Support Tickets</h1> \r\n <p> \r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and\r\nfeatures</b>. Eg: To set up cron for keyword position checker. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Visit this link to create a support ticket</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Report Bugs</h1> \r\n <p> \r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Visit this link to report bugs</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2012-04-30 08:02:02'),
(2527, 'ru', 'home', 'Pages Indexed', 'Проиндексированные страницы', '2019-11-28 18:27:27'),
(2528, 'ru', 'home', 'Ranks', 'Rank', '2019-11-28 18:27:27'),
(2529, 'ru', 'home', 'SiteNameUrl', 'Название сайта/Url', '2019-11-28 18:27:27'),
(2530, 'ru', 'home', 'Website Statistics', 'Статистика сайта', '2019-11-28 18:27:27'),
(2531, 'zh', 'home', 'Account Summary', '账户概览', '2011-07-06 10:02:25'),
(2532, 'zh', 'home', 'Backlinks', '反向链接', '2011-07-06 10:02:25'),
(2533, 'zh', 'home', 'Directory Submission', '目录提交', '2011-07-06 10:02:25'),
(39632, 'pt', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'A página é permitida pelo robots.txt e pode ser rastreada por mecanismos de busca', '2026-01-19 23:10:34'),
(39633, 'pt-br', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'A página é permitida pelo robots.txt e pode ser rastreada por mecanismos de busca', '2026-01-19 23:10:34'),
(39634, 'ru', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Страница разрешена в robots.txt и может быть проиндексирована поисковыми системами', '2026-01-19 23:10:34'),
(39635, 'tr', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Sayfa robots.txt tarafından izin verildi ve arama motorları tarafından taranabilir', '2026-01-19 23:10:34'),
(39636, 'zh', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', '该页面被robots.txt允许,可以被搜索引擎抓取', '2026-01-19 23:10:34'),
(39637, 'cn', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', '该页面被robots.txt允许,可以被搜索引擎抓取', '2026-01-19 23:10:34'),
(39638, 'en', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'The page is blocked by robots.txt - search engines cannot crawl this page', '2026-01-19 23:10:34'),
(39639, 'ar', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'الصفحة محظورة بواسطة robots.txt - لا يمكن لمحركات البحث الزحف إلى هذه الصفحة', '2026-01-19 23:10:34'),
(39640, 'bg', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Страницата е блокирана от robots.txt - търсачките не могат да сканират тази страница', '2026-01-19 23:10:34'),
(39641, 'de', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Die Seite ist von robots.txt blockiert - Suchmaschinen können diese Seite nicht crawlen', '2026-01-19 23:10:34'),
(39642, 'es', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'La página está bloqueada por robots.txt - los motores de búsqueda no pueden rastrear esta página', '2026-01-19 23:10:34'),
(39643, 'fr', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'La page est bloquée par robots.txt - les moteurs de recherche ne peuvent pas crawler cette page', '2026-01-19 23:10:34'),
(39644, 'it', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'La pagina è bloccata da robots.txt - i motori di ricerca non possono scansionare questa pagina', '2026-01-19 23:10:34'),
(39645, 'nl', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'De pagina is geblokkeerd door robots.txt - zoekmachines kunnen deze pagina niet crawlen', '2026-01-19 23:10:34'),
(39646, 'pl', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Strona jest zablokowana przez robots.txt - wyszukiwarki nie mogą indeksować tej strony', '2026-01-19 23:10:34'),
(39647, 'pt', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'A página está bloqueada pelo robots.txt - os mecanismos de busca não podem rastrear esta página', '2026-01-19 23:10:34'),
(39648, 'pt-br', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'A página está bloqueada pelo robots.txt - os mecanismos de busca não podem rastrear esta página', '2026-01-19 23:10:34'),
(38950, 'pl', 'review', 'Top Review Links', 'Najlepsze linki recenzji', '2026-01-19 22:58:50'),
(38951, 'pt', 'review', 'Top Review Links', 'Principais links de avaliações', '2026-01-19 22:58:50'),
(38952, 'pt-br', 'review', 'Top Review Links', 'Principais links de avaliações', '2026-01-19 22:58:50'),
(38953, 'ro', 'review', 'Top Review Links', 'Top link-uri recenzii', '2026-01-19 22:58:50'),
(38954, 'ru', 'review', 'Top Review Links', 'Топ ссылок на отзывы', '2026-01-19 22:58:50'),
(38955, 'sk', 'review', 'Top Review Links', 'Top odkazy na recenzie', '2026-01-19 22:58:50'),
(38956, 'sl', 'review', 'Top Review Links', 'Najboljše povezave za mnenja', '2026-01-19 22:58:50'),
(38957, 'sq', 'review', 'Top Review Links', 'Lidhjet kryesore të rishikimeve', '2026-01-19 22:58:50'),
(38958, 'sr', 'review', 'Top Review Links', 'Топ линкови рецензија', '2026-01-19 22:58:50'),
(38959, 'sv', 'review', 'Top Review Links', 'Bästa recensionslänkar', '2026-01-19 22:58:50'),
(38960, 'sw', 'review', 'Top Review Links', 'Viungo Bora vya Mapitio', '2026-01-19 22:58:50'),
(38961, 'th', 'review', 'Top Review Links', 'ลิงก์รีวิวยอดนิยม', '2026-01-19 22:58:50'),
(38962, 'tl', 'review', 'Top Review Links', 'Nangungunang Review Links', '2026-01-19 22:58:50'),
(2537, 'zh', 'home', 'Pages Indexed', '页面检索', '2011-07-06 10:02:25'),
(2538, 'zh', 'home', 'Ranks', '排名', '2011-07-06 10:02:25'),
(2539, 'zh', 'home', 'SiteNameUrl', '站点 名字/URL', '2011-07-06 10:02:25'),
(2540, 'zh', 'home', 'Website Statistics', '站点统计', '2011-07-06 10:02:25'),
(2541, 'ru', 'website', 'Edit Website', 'Редактировать сайт', '2019-08-28 13:09:29'),
(2542, 'ru', 'website', 'plscrtwebsite', 'Создайте веб-сайт до начала использования SEO инструментов и SEO плагинов.', '2019-08-28 13:09:29'),
(2543, 'ru', 'website', 'Website already exist', 'Сайт уже существует', '2019-08-28 13:09:29'),
(2544, 'ru', 'website', 'yourwebalreday', 'ваш сайт, если вы его создали.', '2019-08-28 13:09:29'),
(2545, 'ru', 'user', 'Edit User', 'Редактировать пользователя', '2016-01-13 02:39:26'),
(2546, 'ru', 'user', 'Saved My Profile Details', 'Сохранить профиль', '2016-01-13 02:39:26'),
(2547, 'ru', 'sitemap', 'Change frequency', 'Выберите частоту', '2019-01-25 16:00:48'),
(2548, 'ru', 'sitemap', 'clickproceedsitemap', 'Нажмите <b>продолжить</b> для создания карты сайта', '2019-01-25 16:00:48'),
(2549, 'ru', 'sitemap', 'Download sitemap file from', 'Скачать файл Sitemap из', '2019-01-25 16:00:48'),
(2550, 'ru', 'sitemap', 'Exclude Url', 'Исключить Url', '2019-01-25 16:00:48'),
(2551, 'ru', 'sitemap', 'processtaketime', 'Этот процесс займет некоторое время в зависимости от количества ссылок на сайте. Пожалуйста, подождите, через некоторое время вы получите файл Sitemap', '2019-01-25 16:00:48'),
(2552, 'ru', 'sitemap', 'Sitemap Type', 'Тип карты сайтов', '2019-01-25 16:00:48'),
(2701, 'bg', 'button', 'Check Status', 'Провери статуса', '2014-01-09 00:20:35'),
(2702, 'bg', 'button', 'Proceed', 'Продължи', '2014-01-09 00:20:35'),
(2703, 'bg', 'button', 'Reload', 'Презареди', '2014-01-09 00:20:35'),
(2704, 'bg', 'button', 'Show Details', 'Покажи детайли', '2014-01-09 00:20:35'),
(2705, 'bg', 'button', 'Show Records', 'Покажи записите', '2014-01-09 00:20:35'),
(2706, 'bg', 'button', 'Skip', 'Пропусни', '2014-01-09 00:20:35'),
(2707, 'bg', 'button', 'Submit', 'Изпрати', '2014-01-09 00:20:35'),
(2708, 'bg', 'backlink', 'clickproceedbacklink', 'Въведете <b>по един</b> URL адрес на ред. Натиснете върху <b>Продължи</b> за да проверите беклинковете', '2010-11-14 23:52:58'),
(2709, 'bg', 'backlink', 'Saved backlink results of', 'Запазени беклинк резултати за', '2010-11-14 23:52:58'),
(2710, 'bg', 'common', 'Action', 'Действие', '2019-05-25 22:00:14'),
(2711, 'bg', 'common', 'Activate', 'Активирай', '2019-05-25 22:00:14'),
(2712, 'bg', 'common', 'Active', 'Активен', '2019-05-25 22:00:14'),
(2713, 'bg', 'common', 'Admin Panel', 'Админ Панел', '2019-05-25 22:00:14'),
(2553, 'ru', 'keyword', 'Crawling keyword', 'Сканирование ключевых слов', '2016-01-13 02:28:48'),
(2554, 'ru', 'keyword', 'Detailed Keyword Position Reports', 'Детальные отчеты по позициям ключевых слов', '2016-01-13 02:28:48'),
(2555, 'ru', 'keyword', 'Edit Keyword', 'Редактировать ключевое слово', '2016-01-13 02:28:48'),
(2556, 'ru', 'keyword', 'Graphical Keyword Position Reports', 'Графический отчет по позициям ключевых слов', '2016-01-13 02:28:48'),
(2557, 'ru', 'keyword', 'Import Keywords', 'Импорт ключевых слов', '2016-01-13 02:28:48'),
(2558, 'ru', 'keyword', 'Keyword already exist', 'Ключевое слово уже существует', '2016-01-13 02:28:48'),
(2559, 'ru', 'keyword', 'Keyword Position Report', 'Отчет о позиции ключевого слова', '2016-01-13 02:28:48'),
(2560, 'ru', 'keyword', 'New Keyword', 'Новое ключевое слово', '2016-01-13 02:28:48'),
(2561, 'ru', 'keyword', 'not assigned to required search engines', 'не выбраны необходимые поисковые системы', '2016-01-13 02:28:48'),
(2562, 'ru', 'keyword', 'pleaseselecttool', 'Пожалуйста, выберите хотя бы один сео-инструмент', '2016-01-13 02:28:48'),
(2563, 'ru', 'keyword', 'Quick Keyword Position Checker', 'Быстрая проверка позиций ключевых слов', '2016-01-13 02:28:48'),
(2564, 'ru', 'keyword', 'results from ', 'Результаты', '2016-01-13 02:28:48'),
(2565, 'ru', 'keyword', 'Show All results', 'Показать все результаты', '2016-01-13 02:28:48'),
(2566, 'ru', 'keyword', 'Successfully crawled keyword', 'Ключевое слово успешно просканировано', '2016-01-13 02:28:48'),
(2567, 'ru', 'keyword', 'to create new keywords', 'создать новые ключевые слова', '2016-01-13 02:28:48'),
(2568, 'ru', 'label', 'already exist', 'уже существует', '2024-07-17 15:17:22'),
(2569, 'ru', 'label', 'Authentication', 'Аутентификация', '2024-07-17 15:17:22'),
(2570, 'ru', 'label', 'Author', 'Автор', '2024-07-17 15:17:22'),
(2571, 'ru', 'label', 'Click Here', 'Нажмите сюда', '2024-07-17 15:17:22'),
(2572, 'ru', 'label', 'Cron', 'Cron', '2024-07-17 15:17:22'),
(2573, 'ru', 'label', 'Description', 'Описание', '2024-07-17 15:17:22'),
(2574, 'ru', 'label', 'Developers', 'Разработчики', '2024-07-17 15:17:22'),
(2575, 'ru', 'label', 'Download', 'Скачать', '2024-07-17 15:17:22'),
(2576, 'ru', 'label', 'Installation', 'Установка', '2024-07-17 15:17:22'),
(2577, 'ru', 'label', 'Keywords', 'Ключевые слова', '2024-07-17 15:17:22'),
(2578, 'ru', 'label', 'noactiveplugins', 'Нет активных дополнений для Seo panel!', '2024-07-17 15:17:22'),
(2579, 'ru', 'label', 'Plugin', 'Плагины', '2024-07-17 15:17:22'),
(2580, 'ru', 'label', 'Port', 'Порт', '2024-07-17 15:17:22'),
(2581, 'ru', 'label', 'Proxy', 'Прокси', '2024-07-17 15:17:22'),
(2582, 'ru', 'label', 'Re-install', 'Переустановить', '2024-07-17 15:17:22'),
(2583, 'ru', 'label', 'Sponsors', 'Спонсоры', '2024-07-17 15:17:22'),
(2584, 'ru', 'label', 'Title', 'Заголовок', '2024-07-17 15:17:22'),
(2585, 'ru', 'label', 'translation by', 'переведен', '2024-07-17 15:17:22'),
(2586, 'ru', 'label', 'Translators', 'Переводчики', '2024-07-17 15:17:22'),
(2587, 'ru', 'label', 'Upgrade', 'Обновление', '2024-07-17 15:17:22'),
(2588, 'ru', 'label', 'Version', 'Версия', '2024-07-17 15:17:22'),
(2589, 'ru', 'label', 'wantproceed', 'Вы действительно хотите продолжить?', '2024-07-17 15:17:22'),
(2590, 'ru', 'login', 'Confirm Password', 'Повторите пароль', '2018-08-21 21:07:34'),
(2591, 'ru', 'login', 'Create my account', 'Создать аккаунт', '2018-08-21 21:07:34'),
(2592, 'ru', 'login', 'Create New Account', 'Создать новый аккаунт', '2018-08-21 21:07:34'),
(2593, 'ru', 'login', 'Email', 'Email', '2018-08-21 21:07:34'),
(2594, 'ru', 'login', 'emailexist', 'Email уже существует', '2018-08-21 21:07:34'),
(2595, 'ru', 'login', 'Enter the code as it is shown', 'Введите код с картинки', '2018-08-21 21:07:34'),
(2596, 'ru', 'login', 'First Name', 'Имя', '2018-08-21 21:07:34'),
(2597, 'ru', 'login', 'Last Name', 'Фамилия', '2018-08-21 21:07:34'),
(2598, 'ru', 'login', 'Login', 'Логин', '2018-08-21 21:07:34'),
(2599, 'ru', 'login', 'Login incorrect', 'Неправильный логин', '2018-08-21 21:07:34'),
(2600, 'ru', 'login', 'newaccountsuccess', 'Новый аккаунт успешно создан!', '2018-08-21 21:07:34'),
(2601, 'ru', 'login', 'Password', 'Пароль', '2018-08-21 21:07:34'),
(2602, 'ru', 'login', 'Password incorrect', 'Неправильный пароль', '2018-08-21 21:07:34'),
(2603, 'ru', 'login', 'Register', 'Регистрация', '2018-08-21 21:07:34'),
(2604, 'ru', 'login', 'Sign in to your account', 'Войдите в свой аккаунт', '2018-08-21 21:07:34'),
(2605, 'ru', 'login', 'User inactive', 'Неактивный пользователь', '2018-08-21 21:07:34'),
(2606, 'ru', 'login', 'Username', 'Имя пользователя', '2018-08-21 21:07:34'),
(2607, 'ru', 'login', 'usernameexist', 'Имя пользователя уже существует!', '2018-08-21 21:07:34'),
(2608, 'ru', 'panel', 'About Us', 'О нас', '2024-07-17 15:19:14'),
(2609, 'ru', 'panel', 'Add following command to your cron tab', 'Добавить следующую команду в вкладку Cron', '2024-07-17 15:19:14'),
(2610, 'ru', 'panel', 'alsocheckfollowlink', 'Также просмотрите следующую ссылку, если вам нужны больше подробностей.', '2024-07-17 15:19:14'),
(2611, 'ru', 'panel', 'Check Directory', 'Выбор каталогов', '2024-07-17 15:19:14'),
(2612, 'ru', 'panel', 'Cron Command', 'Команда Cron', '2024-07-17 15:19:14'),
(2613, 'ru', 'panel', 'Directory Manager', 'Менеджер каталогов', '2024-07-17 15:19:14'),
(2614, 'ru', 'panel', 'Edit My Profile', 'Редактировать профиль', '2024-07-17 15:19:14'),
(2615, 'ru', 'panel', 'My Profile', 'Мой профиль', '2024-07-17 15:19:14'),
(2616, 'ru', 'panel', 'New Proxy', 'Новый прокси', '2024-07-17 15:19:14'),
(2617, 'ru', 'panel', 'New User', 'Новый пользователь', '2024-07-17 15:19:14'),
(2618, 'ru', 'panel', 'New Website', 'Новый сайт', '2024-07-17 15:19:14'),
(2619, 'ru', 'panel', 'Proxy Manager', 'Менеджер прокси', '2024-07-17 15:19:14'),
(2620, 'ru', 'panel', 'Report Generation Manager', 'Менеджер формирования отчетов', '2024-07-17 15:19:14'),
(2621, 'ru', 'panel', 'Reports Manager', 'Менеджер отчетов', '2024-07-17 15:19:14'),
(2622, 'ru', 'panel', 'Seo Plugins Manager', 'Менеджер сео-плагинов', '2024-07-17 15:19:14'),
(2623, 'ru', 'panel', 'Seo Tools Manager', 'Менеджер сео-инструментов', '2024-07-17 15:19:14');
INSERT INTO `texts` VALUES
(2624, 'ru', 'panel', 'System Settings', 'Системные настройки', '2024-07-17 15:19:14'),
(2625, 'ru', 'panel', 'User Manager', 'Менеджер пользователей', '2024-07-17 15:19:14'),
(2626, 'ru', 'panel', 'Website Manager', 'Менеджер сайтов', '2024-07-17 15:19:14'),
(2627, 'ru', 'plugin', 'Edit Seo Plugin', 'Редактировать сео-плагин', '2012-05-13 07:10:56'),
(2628, 'ru', 'plugin', 'Plugin Name', 'Название плагина', '2012-05-13 07:10:56'),
(2629, 'ru', 'plugin', 'Seo Plugin Details', 'Детали сео-плагина', '2012-05-13 07:10:56'),
(2630, 'ru', 'proxy', 'Edit Proxy', 'Редактировать прокси', '2016-12-09 21:23:58'),
(2631, 'ru', 'proxy', 'Proxy Password', 'Пароль прокси', '2016-12-09 21:23:58'),
(2632, 'ru', 'proxy', 'Proxy Username', 'Имя пользователя прокси', '2016-12-09 21:23:58'),
(2633, 'ru', 'proxy', 'Proxyalreadyexist', 'Прокси уже существует!', '2016-12-09 21:23:58'),
(2634, 'ru', 'rank', 'enterurlproceed', 'Введите URL, <b>по одному в каждой строке</b>. Нажмите <b>продолжить</b>, для проверки Google и Alexa Rank.', '2010-10-26 13:52:58'),
(2635, 'ru', 'rank', 'Google and Alexa Rank Reports', 'Отчеты Google и Alexa Rank', '2010-10-26 13:52:58'),
(2636, 'ru', 'rank', 'Saved rank results of', 'Сохраненные результаты', '2010-10-26 13:52:58'),
(2637, 'ru', 'saturation', 'clickproceedsaturation', 'Введите URL, <b>по одному в каждой строке </b>. Нажмите <b>продолжить</b>, для проверки результатов насыщенности в поисковых системах', '2010-10-21 13:16:23'),
(2638, 'ru', 'saturation', 'GenerateSaturationReports', 'Создание отчетов по поисковой насыщенности', '2010-10-21 13:16:23'),
(2639, 'ru', 'saturation', 'Quick Search Engine Saturation Checker', 'Быстрая проверка поисковой насыщенности', '2010-10-21 13:16:23'),
(2640, 'ru', 'saturation', 'Saved Search Engine Saturation results of', 'Сохраненные результаты поисковой насыщенности', '2010-10-21 13:16:23'),
(2641, 'ru', 'saturation', 'Search Engine Saturation Reports', 'Отчеты по поисковой насыщенности', '2010-10-21 13:16:23'),
(2642, 'ru', 'seotools', 'Automatic Submission', 'Автоматическая рассылка', '2024-07-17 15:26:22'),
(2643, 'ru', 'seotools', 'backlink-checker', 'Проверка обратных ссылок', '2024-07-17 15:26:22'),
(2644, 'ru', 'seotools', 'Backlinks Reports', 'Отчеты обратных ссылок', '2024-07-17 15:26:22'),
(2645, 'ru', 'seotools', 'Check Submission Status', 'Проверить статус рассылки', '2024-07-17 15:26:22'),
(2646, 'ru', 'seotools', 'clickgeneratereports', 'Нажмите <b>продолжить</b> для генерации отчета', '2024-07-17 15:26:22'),
(2647, 'ru', 'seotools', 'Detailed Position Reports', 'Детальный отчет о позициях', '2024-07-17 15:26:22'),
(2648, 'ru', 'seotools', 'directory-submission', 'Рассылка в каталоги', '2024-07-17 15:26:22'),
(2649, 'ru', 'seotools', 'Featured Submission', 'Рекомендуемые рассылки', '2024-07-17 15:26:22'),
(2650, 'ru', 'seotools', 'Generate Backlinks Reports', 'Создать отчет по обратным ссылкам', '2024-07-17 15:26:22'),
(2651, 'ru', 'seotools', 'Generate Keyword Reports', 'Создать отчет по ключевым словам', '2024-07-17 15:26:22'),
(2652, 'ru', 'seotools', 'Generate Rank Reports', 'Создать отчет по рейтингу', '2024-07-17 15:26:22'),
(2653, 'ru', 'seotools', 'Generate Saturation Reports', 'Создать отчет по насыщенности', '2024-07-17 15:26:22'),
(2654, 'ru', 'seotools', 'Google Sitemap Generator', 'Генератор карты сайтов Google', '2024-07-17 15:26:22'),
(2655, 'ru', 'seotools', 'Graphical Position Reports', 'Графический отчет о позициях', '2024-07-17 15:26:22'),
(2656, 'ru', 'seotools', 'Keyword Position Summary', 'Отчет по позициям ключевых слов', '2024-07-17 15:26:22'),
(2657, 'ru', 'seotools', 'keyword-position-checker', 'Проверка позиций ключевых слов', '2024-07-17 15:26:22'),
(2658, 'ru', 'seotools', 'Keywords Manager', 'Менеджер ключевых слов', '2024-07-17 15:26:22'),
(2659, 'ru', 'seotools', 'Quick Backlinks Checker', 'Быстрая проверка обратных ссылок', '2024-07-17 15:26:22'),
(2660, 'ru', 'seotools', 'Quick Position Checker', 'Быстрая проверка ключевых слов', '2024-07-17 15:26:22'),
(2661, 'ru', 'seotools', 'Quick Rank Checker', 'Быстрая проверка рейтинга', '2024-07-17 15:26:22'),
(2662, 'ru', 'seotools', 'Quick Saturation Checker', 'Быстрая проверка насыщенности', '2024-07-17 15:26:22'),
(2663, 'ru', 'seotools', 'Rank Reports', 'Отчет по рейтингу', '2024-07-17 15:26:22'),
(2664, 'ru', 'seotools', 'rank-checker', 'Проверка рейтинга', '2024-07-17 15:26:22'),
(2665, 'ru', 'seotools', 'Saturation Reports', 'Проверка насыщенности', '2024-07-17 15:26:22'),
(2666, 'ru', 'seotools', 'saturation-checker', 'Насыщенность в поисковых системах', '2024-07-17 15:26:22'),
(2667, 'ru', 'seotools', 'sitemap-generator', 'Генератор карты сайтов', '2024-07-17 15:26:22'),
(2668, 'ru', 'seotools', 'Skipped Directories', 'Пропущенные каталоги', '2024-07-17 15:26:22'),
(2669, 'ru', 'seotools', 'Submission Reports', 'Отчет по рассылкам', '2024-07-17 15:26:22'),
(2670, 'ru', 'seotools', 'User Access', 'Доступ пользователей', '2024-07-17 15:26:22'),
(2671, 'ru', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Пожертвовать $100</b> и стать <b>спонсором</b> Seo Panel. ', '2024-07-17 15:22:42'),
(2672, 'ru', 'settings', 'seopanel_description', 'Панель управления поисковой оптимизации сайтов. Содержащего большое количество инструментов для увеличения и отслеживания посещения ваших сайтов. Seo panel инструмент с открытым исходным кодом. Вы можете принять участие в разработке своих собственных плагинов для Seo panel.', '2024-07-17 15:22:42'),
(2673, 'ru', 'settings', 'seopanel_title', 'Seo panel: первый в мире продукт с открытым исходным кодом для управления несколькими сайтами.', '2024-07-17 15:22:42'),
(2674, 'ru', 'settings', 'SP_CRAWL_DELAY', 'Задержка между сканированием паука (в секундах)', '2024-07-17 15:22:42'),
(2675, 'ru', 'settings', 'SP_DEFAULTLANG', 'Язык по умолчанию', '2024-07-17 15:22:42'),
(2676, 'ru', 'settings', 'SP_DESCRIPTION', 'Описание сео-панели', '2024-07-17 15:22:42'),
(2677, 'ru', 'settings', 'SP_ENABLE_PROXY', 'Включить прокси', '2024-07-17 15:22:42'),
(2678, 'ru', 'settings', 'SP_HOTLINKING', 'Проверочное изображение включено', '2024-07-17 15:22:42'),
(2679, 'ru', 'settings', 'SP_KEYWORDS', 'Ключевые слова сео-панели', '2024-07-17 15:22:42'),
(2680, 'ru', 'settings', 'SP_PAGINGNO', 'Количество записей на странице', '2024-07-17 15:22:42'),
(2681, 'ru', 'settings', 'SP_TITLE', 'Заголовок сео-панели', '2024-07-17 15:22:42'),
(2682, 'ru', 'settings', 'SP_USER_GEN_REPORT', 'Разрешить пользователю создавать отчеты', '2024-07-17 15:22:42'),
(2683, 'ru', 'settings', 'SP_USER_REGISTRATION', 'Интерфейс регистрации пользователя', '2024-07-17 15:22:42'),
(2684, 'ru', 'settings', 'syssettingssaved', 'Системные настройки успешно сохранены!', '2024-07-17 15:22:42'),
(2685, 'ru', 'support', 'support_cont1', '<fieldset>\r\n<legend>Служба поддержки Seo Panel</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Пакет из 1000 каталогов.</h1> \r\n <p>\r\n Мы представляем пакет из <b>1000 качественных бесплатных и проверенных</b> интернет-каталогов, для добавления\r\nв вашу seo panel.\r\n Рассылка поможет вам <b>увеличить количество обратных ссылок</b> на ваш сайт.\r\n На самом деле список из 1000 каталогов <b>введен</b> для сбора денег на <b>будущее\r\nразвитие</b> seo panel.\r\n Чтобы получить список из 1000 каталогов, пожалуйста <a href="<?=SP_DONATE_LINK?>" target="_blank">пожертвуйте</a>\r\n$10 или больше, для улучшения Seo panel.\r\n Если у вас возникли вопросы связанные с пакетом из 1000 каталогов, пожалуйста,<a href="<?=SP_CONTACT_LINK?>"\r\ntarget="_blank">свяжитесь с нами</a> или откройте запрос в <a href="<?=SP_SUPPORT_LINK?>"\r\ntarget="_blank">службе поддержки</a>. \r\n </p> \r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Нажмите на ссылку для пожертвования на развитие</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Локальный пакет поисковых систем</h1> \r\n <p>\r\n Добавить <b>домены локальных поисковых систем</b> google,yahoo,msn(<b>например: www.google.de,www.google.fr\r\nи т.д.</b>) в seo panel, <b>для проверки позиций в поисковых системах</b>, отслеживания производительности вашего сайта \r\nв вашей стране или регионе.\r\n Для того чтобы получить информацию о добавлении локальных поисковых системах (согласно вашему требованию), пожалуйста, <a\r\nhref="<?=SP_DONATE_LINK?>" target="_blank">пожертвуйте</a> $10 или больше, для улучшения сео-панели.\r\n Перед отправкой пожертвования, пожалуйста, <a href="<?=SP_CONTACT_LINK?>" target="_blank">свяжитесь с нами,</a> мы отправим\r\nвам список необходимых доменов поисковых систем.\r\n <br><br> \r\n Кроме того, чтобы добавить <b>новые поисковые системы (например:yandex.ru)</b> в вашу Seo panel для проверки ключевых слов,\r\nпожалуйста <a href="<?=SP_CONTACT_LINK?>" target="_blank">свяжитесь с нами</a> или откройте запрос <a\r\nhref="<?=SP_SUPPORT_LINK?>" target="_blank">в службе поддержки</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Пройдите по ссылке, чтобы связаться с нами</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Плагины Seo Panel</h1> \r\n <p>\r\n Добавить <b>сео-плагины</b> в вашу seo panel для <b>расширения возможностей</b> по вашему требованию.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Плагины Seo panel</a> предоставляются разработчиками Seo panel\r\nи сторонними разработчиками.\r\n Вы также можете легко <b>разработать</b> сео-плагин для вашего seo panel.\r\n Вы можете <a href="<?=SP_PLUGINSITE?>" target="_blank">отправить</a> ваш SEO плагин для Seo panel, \r\nмы <b>опубликуем</b> его на нашем сайте после <b>предварительной</b> проверки. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Пройдите по ссылке, для получения сео-плагинов</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Связаться с нами</h1> \r\n <p>\r\n Обращайтесь к нам по любым возникшим вопросам по работе с <b>инструментами, плагинами и расширениями seo panel,</b> для\r\nперехода нажмите на ссылку.\r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Пройдите по ссылке для связи с нами.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Запросы в поддержку</h1> \r\n <p>\r\n Для того чтобы получить <b>техническую поддержку</b> по установке seo panel <b>инструментов, плагинов и\r\nрасширений</b>. Например: Настроить крон для проверки позиций ключевых слов.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Пройдите по ссылке в службу технической поддержки</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Отчеты по ошибкам</h1> \r\n <p>\r\n Для отправки отчетов по <b>ошибкам</b> в <b>инструментах seo panel, плагинах и расширениях</b> нажмите на ссылку.\r\nПожалуйста, помогите нам улучшить возможности в следующей версии.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Пройдите по ссылке для сообщения об ошибке.</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2019-08-28 13:08:54'),
(14731, 'ru', 'website', 'Click here to get Google Analytics View Id', 'Нажмите для получения Google Analytics View Id', '2019-08-28 13:09:29'),
(2686, 'ru', 'support', 'support_cont2', '<fieldset>\r\n<legend>Онлайн ресурсы Seo Panel</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Руководство Seo Panel</h1> \r\n <p>\r\n Вы можете посмотреть <a href="<?=SP_HELP_LINK?>" target="_blank">документацию seo panel</a> в разделе\r\n<b>руководство</b>, которая содержит <b>документацию</b> по использованию инструментов seo panel, плагинов и расширений.\r\n <br>Это лучшее место в интернете для получения <br>справки</br> о SEO панели. Мы надеемся, что вы\r\n<b>поможете</b> seo panel в совершенствовании разработки первого бесплатного инструмента для продвижения сайтов!\r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Перейти в раздел помощь</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Форум Seo Panel</h1> \r\n <p>\r\n <b>Форум Seo panel</b>, место для обсуждения первого открытого программного продукта для продвижения сайтов. \r\n Это лучшее место для поиска <b>ответов</b> на <b>ваши вопросы</b> о seo panel. \r\n <br>Также вы можете <b>внести</b> долю вашего <b>опыта</b> При использовании Seo panel для оптимизации\r\nсайтов.\r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Перейти на форум Seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2019-08-28 13:08:54'),
(2687, 'ru', 'support', 'support_cont3', '<fieldset>\r\n<legend>Пожертвования на развитие Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Пожертвования на развитие Seo Panel - первой в мире программы для оптимизации сайтов с открытым исходным кодом.</h1> \r\n <p>\r\n <b>Поддержите</b> первый в мире скрипт для создания сервиса по продвижению сайтов в интернете.\r\n Мы планируем в будущем развивать <b>и улучшать </b> программное обеспечение.\r\n <br>По всем вопросам <b>поддержки</b>, только мы сможем дать правильные <b>ответы</b>.\r\n Если вы понимаете, что Seo panel <b>стоит</b> вашего внимания, пожалуйста пожертвуйте команде разработчиков.\r\n <br>Мы <b>опубликуем</b> ваше имя на нашем сайте и ссылку на ваши ресурсы <a href="<?=SP_DONATE_LINK?>"\r\ntarget="_blank">на странице пожертований</a>, после получения пожертвования.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Перейти на страницу пожертвования seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>\r\n', '2019-08-28 13:08:54'),
(2688, 'en', 'common', 'Profile', 'Profile', '2019-08-06 10:09:56'),
(2689, 'de', 'common', 'Profile', 'Profil', '2021-06-15 01:46:19'),
(2690, 'zh', 'common', 'Profile', '簡介', '2019-05-25 22:01:23'),
(2691, 'nl', 'common', 'Profile', 'Profiel', '2019-05-25 22:06:08'),
(2692, 'fr', 'common', 'Profile', 'Profil', '2020-02-14 16:05:11'),
(2693, 'hu', 'common', 'Profile', 'Profil', '2019-05-25 22:15:43'),
(2694, 'it', 'common', 'Profile', 'Profilo', '2022-07-11 15:16:48'),
(2695, 'pl', 'common', 'Profile', 'Profil', '2019-05-25 22:43:11'),
(2696, 'ru', 'common', 'Profile', 'Профиль', '2024-07-17 15:16:33'),
(2697, 'es', 'common', 'Profile', 'Perfil', '2019-05-25 22:49:48'),
(2698, 'bg', 'user', 'Edit User', 'Промени', '2016-12-18 22:18:03'),
(2699, 'bg', 'user', 'Saved My Profile Details', 'Детайлите на профила са запазени', '2016-12-18 22:18:03'),
(2700, 'bg', 'button', 'Cancel', 'Откажи', '2014-01-09 00:20:35'),
(2714, 'bg', 'common', 'Alexa Rank', 'Alexa Rank', '2019-05-25 22:00:14'),
(2715, 'bg', 'common', 'All', 'Всичко', '2019-05-25 22:00:14'),
(2716, 'bg', 'common', 'Category', 'Категория', '2019-05-25 22:00:14'),
(2717, 'bg', 'common', 'contact', 'Контакт', '2019-05-25 22:00:14'),
(2718, 'bg', 'common', 'copyright', 'Всички права запазени www.seopanel.in © [year]', '2019-05-25 22:00:14'),
(2719, 'bg', 'common', 'Country', 'Страна', '2019-05-25 22:00:14'),
(2720, 'bg', 'common', 'Crawl Meta Data', 'Обери Мета данни', '2019-05-25 22:00:14'),
(2721, 'bg', 'common', 'Date', 'Дата', '2019-05-25 22:00:14'),
(2722, 'bg', 'common', 'Delete', 'Изтрий', '2019-05-25 22:00:14'),
(2723, 'bg', 'common', 'Details', 'Детайли', '2019-05-25 22:00:14'),
(2724, 'bg', 'common', 'Directory', 'Директория', '2019-05-25 22:00:14'),
(2725, 'bg', 'common', 'Donate', 'Дарение', '2019-05-25 22:00:14'),
(2726, 'bg', 'common', 'Edit', 'Промени', '2019-05-25 22:00:14'),
(2727, 'bg', 'common', 'Entry cannot be blank', 'Не можете да оставите празно', '2019-05-25 22:00:14'),
(2728, 'bg', 'common', 'entrynotvalid', 'Въведените данни са невалидни', '2019-05-25 22:00:14'),
(2729, 'bg', 'common', 'failed', 'неуспешно', '2019-05-25 22:00:14'),
(2730, 'bg', 'common', 'forum', 'Форум', '2019-05-25 22:00:14'),
(2731, 'bg', 'common', 'Found', 'Намерени', '2019-05-25 22:00:14'),
(2732, 'bg', 'common', 'Google Pagerank', 'Google Пейдж Ранк ', '2019-05-25 22:00:14'),
(2733, 'bg', 'common', 'help', 'Помощ', '2019-05-25 22:00:14'),
(2734, 'bg', 'common', 'hidenews', 'Скрий новините', '2019-05-25 22:00:14'),
(2735, 'bg', 'common', 'Id', 'Id', '2019-05-25 22:00:14'),
(2736, 'bg', 'common', 'Inactivate', 'Деактивирай', '2019-05-25 22:00:14'),
(2737, 'bg', 'common', 'Inactive', 'Неактивен', '2019-05-25 22:00:14'),
(2738, 'bg', 'common', 'Invalid characters', 'Невалидни символи', '2019-05-25 22:00:14'),
(2739, 'bg', 'common', 'Invalid code entered', 'Невалиден код', '2019-05-25 22:00:14'),
(2740, 'bg', 'common', 'Invalid email address entered', 'Невалиден email адрес', '2019-05-25 22:00:14'),
(2741, 'bg', 'common', 'Invalid value', 'Невалидна стойност', '2019-05-25 22:00:14'),
(2742, 'bg', 'common', 'Keyword', 'Ключова дума', '2019-05-25 22:00:14'),
(2743, 'bg', 'common', 'Keywords', 'Ключови думи', '2019-05-25 22:00:14'),
(2744, 'bg', 'common', 'lang', 'Език', '2019-05-25 22:00:14'),
(2745, 'bg', 'common', 'My Account', 'Моят профил', '2019-05-25 22:00:14'),
(2746, 'bg', 'common', 'Name', 'Име', '2019-05-25 22:00:14'),
(2747, 'bg', 'common', 'No', 'Не', '2019-05-25 22:00:14'),
(2748, 'bg', 'common', 'No Keywords Found', 'Не са намерени ключови думи', '2019-05-25 22:00:14'),
(2749, 'bg', 'common', 'No Records Found', 'Не са намерени записи', '2019-05-25 22:00:14'),
(2750, 'bg', 'common', 'noactivetools', 'Не са намерени активни SEO инструменти', '2019-05-25 22:00:14'),
(2751, 'bg', 'common', 'nowebsites', 'Не са открити сайтове', '2019-05-25 22:00:14'),
(2752, 'bg', 'common', 'password632', 'Паролата трябва да е с дължина от 6 до 32 символа', '2019-05-25 22:00:14'),
(2753, 'bg', 'common', 'passwordnotmatch', 'Паролите не съвпадат', '2019-05-25 22:00:14'),
(2754, 'bg', 'common', 'Period', 'Период', '2019-05-25 22:00:14'),
(2755, 'bg', 'common', 'Priority', 'Приоритет', '2019-05-25 22:00:14'),
(2756, 'bg', 'common', 'Profile', 'Профил', '2019-05-25 22:00:14'),
(2757, 'bg', 'common', 'Rank', 'Ранк', '2019-05-25 22:00:14'),
(2758, 'bg', 'common', 'Reports', 'Доклади', '2019-05-25 22:00:14'),
(2759, 'bg', 'common', 'Results', 'Резултати', '2019-05-25 22:00:14'),
(2760, 'bg', 'common', 'Search Engine', 'Търсачка', '2019-05-25 22:00:14'),
(2761, 'bg', 'common', 'Select', 'Избери', '2019-05-25 22:00:14'),
(2762, 'bg', 'common', 'Seo Plugins', 'Seo Модули', '2019-05-25 22:00:14'),
(2763, 'bg', 'common', 'Seo Tools', 'Seo Инструменти', '2019-05-25 22:00:14'),
(2764, 'bg', 'common', 'Sign out', 'Изход', '2019-05-25 22:00:14'),
(2765, 'bg', 'common', 'Sign Up', 'Регистрация', '2019-05-25 22:00:14'),
(2766, 'bg', 'common', 'signin', 'Вход', '2019-05-25 22:00:14'),
(2767, 'bg', 'common', 'Status', 'Статус', '2019-05-25 22:00:14'),
(2768, 'bg', 'common', 'Support', 'Поддръжка', '2019-05-25 22:00:14'),
(2769, 'bg', 'common', 'Total', 'Общо', '2019-05-25 22:00:14'),
(2770, 'bg', 'common', 'Url', 'Url', '2019-05-25 22:00:14'),
(2771, 'bg', 'common', 'User', 'Потребител', '2019-05-25 22:00:14'),
(2772, 'bg', 'common', 'User Panel', 'Потребителски панел', '2019-05-25 22:00:14'),
(2773, 'bg', 'common', 'Website', 'Сайт', '2019-05-25 22:00:14'),
(2774, 'bg', 'common', 'Yes', 'Да', '2019-05-25 22:00:14'),
(2775, 'pt', 'backlink', 'clickproceedbacklink', 'Introduza o URL <b>Um por linha</b>. Pressione on <b>Proceda</b> para verificar os Backlinks ', '2010-10-27 07:30:04'),
(2776, 'pt', 'backlink', 'Saved backlink results of', 'Resultados guardados do Checklink de', '2010-10-27 07:30:04'),
(2777, 'pt', 'button', 'Cancel', 'Cancelar', '2014-01-09 00:31:51'),
(2778, 'pt', 'button', 'Check Status', 'Verificar Status', '2014-01-09 00:31:51'),
(2779, 'pt', 'button', 'Proceed', 'Prosseguir', '2014-01-09 00:31:51'),
(2780, 'pt', 'button', 'Reload', 'Carregar', '2014-01-09 00:31:51'),
(2781, 'pt', 'button', 'Show Details', 'Ver detalhes', '2014-01-09 00:31:51'),
(2782, 'pt', 'button', 'Show Records', 'Ver Registos', '2014-01-09 00:31:51'),
(2783, 'pt', 'button', 'Skip', 'Passar', '2014-01-09 00:31:51'),
(2784, 'pt', 'button', 'Submit', 'Submeter', '2014-01-09 00:31:51'),
(2785, 'ro', 'backlink', 'clickproceedbacklink', 'Introduceti URL-urile <b> Cate unul pe rand <b>. Apasa pe <b>Continua<b> pentru a verifica Backlink-urile', '2010-10-27 05:19:53'),
(2786, 'ro', 'backlink', 'Saved backlink results of', 'Backlink-uri salvate rezultat al', '2010-10-27 05:19:53'),
(2787, 'ro', 'button', 'Cancel', 'Anuleaza', '2014-01-09 00:32:28'),
(2788, 'ro', 'button', 'Check Status', 'Verifica statusul', '2014-01-09 00:32:28'),
(2789, 'ro', 'button', 'Proceed', 'Continua', '2014-01-09 00:32:28'),
(2790, 'ro', 'button', 'Reload', 'Reincarca', '2014-01-09 00:32:28'),
(2791, 'ro', 'button', 'Show Details', 'Arata detalii', '2014-01-09 00:32:28'),
(2792, 'ro', 'button', 'Show Records', 'Arata inregistrari', '2014-01-09 00:32:28'),
(2793, 'ro', 'button', 'Skip', 'Sari', '2014-01-09 00:32:28'),
(2794, 'ro', 'button', 'Submit', 'Executa', '2014-01-09 00:32:28'),
(2795, 'ro', 'common', 'Action', 'Actiune', '2019-05-25 22:44:58'),
(2796, 'ro', 'common', 'Activate', 'Activeaza', '2019-05-25 22:44:58'),
(2797, 'ro', 'common', 'Active', 'Activ', '2019-05-25 22:44:58'),
(2798, 'ro', 'common', 'Admin Panel', 'Panoul de comanda', '2019-05-25 22:44:58'),
(2799, 'ro', 'common', 'Alexa Rank', 'Rank Alexa', '2019-05-25 22:44:58'),
(2800, 'ro', 'common', 'All', 'Toate', '2019-05-25 22:44:58'),
(2801, 'ro', 'common', 'Category', 'Categorie', '2019-05-25 22:44:58'),
(2802, 'ro', 'common', 'contact', 'Contact', '2019-05-25 22:44:58'),
(2803, 'ro', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Toate drepturile rezervate', '2019-05-25 22:44:58'),
(2804, 'ro', 'common', 'Country', 'Tara', '2019-05-25 22:44:58'),
(2805, 'ro', 'common', 'Crawl Meta Data', 'Crawl Meta Data', '2019-05-25 22:44:58'),
(2806, 'ro', 'common', 'Date', 'Data', '2019-05-25 22:44:58'),
(2807, 'ro', 'common', 'Delete', 'Sterge', '2019-05-25 22:44:58'),
(2808, 'ro', 'common', 'Details', 'Detalii', '2019-05-25 22:44:58'),
(2809, 'ro', 'common', 'Directory', 'Director', '2019-05-25 22:44:58'),
(2810, 'ro', 'common', 'Donate', 'Doneaza', '2019-05-25 22:44:58'),
(2811, 'ro', 'common', 'Edit', 'Editeaza', '2019-05-25 22:44:58'),
(2812, 'ro', 'common', 'Entry cannot be blank', 'Campul nu poate fi gol', '2019-05-25 22:44:58'),
(2813, 'ro', 'common', 'entrynotvalid', 'Datele din camp nu sunt valide', '2019-05-25 22:44:58'),
(2814, 'ro', 'common', 'failed', 'esuat', '2019-05-25 22:44:58'),
(2815, 'ro', 'common', 'forum', 'Forum', '2019-05-25 22:44:58'),
(2816, 'ro', 'common', 'Found', 'Gasit', '2019-05-25 22:44:58'),
(2817, 'ro', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:44:58'),
(2818, 'ro', 'common', 'help', 'Ajutor', '2019-05-25 22:44:58'),
(2819, 'ro', 'common', 'hidenews', 'Ascunde Noutatile Seo Panel', '2019-05-25 22:44:58'),
(2820, 'ro', 'common', 'Id', 'Id', '2019-05-25 22:44:58'),
(2821, 'ro', 'common', 'Inactivate', 'Inactiva', '2019-05-25 22:44:58'),
(2822, 'ro', 'common', 'Inactive', 'Inactiv', '2019-05-25 22:44:58'),
(2823, 'ro', 'common', 'Invalid characters', 'Caractere invalide', '2019-05-25 22:44:58'),
(2824, 'ro', 'common', 'Invalid code entered', 'Cod introdus invalid', '2019-05-25 22:44:58'),
(2825, 'ro', 'common', 'Invalid email address entered', 'Adresa de e-mail introdusa invalida', '2019-05-25 22:44:58'),
(2826, 'ro', 'common', 'Invalid value', 'Valoare invalida', '2019-05-25 22:44:58'),
(2827, 'ro', 'common', 'Keyword', 'Cuvant cheie', '2019-05-25 22:44:58'),
(2828, 'ro', 'common', 'Keywords', 'Cuvinte cheie', '2019-05-25 22:44:58'),
(2829, 'ro', 'common', 'lang', 'Limba', '2019-05-25 22:44:58'),
(2830, 'ro', 'common', 'My Account', 'Contul Meu', '2019-05-25 22:44:58'),
(2831, 'ro', 'common', 'Name', 'Nume', '2019-05-25 22:44:58'),
(2832, 'ro', 'common', 'No', 'Nu', '2019-05-25 22:44:58'),
(2833, 'ro', 'common', 'No Keywords Found', 'Niciun cuvant cheie gasit', '2019-05-25 22:44:58'),
(2834, 'ro', 'common', 'No Records Found', 'Nicio inregistrare gasita', '2019-05-25 22:44:58'),
(2835, 'ro', 'common', 'noactivetools', 'Nicio unealta Seo gasita', '2019-05-25 22:44:58'),
(2836, 'ro', 'common', 'nowebsites', 'Niciun website gasit', '2019-05-25 22:44:58'),
(2837, 'ro', 'common', 'password632', 'Parola trebuie sa aibe intre 6 si 32 de caractere', '2019-05-25 22:44:58'),
(2838, 'ro', 'common', 'passwordnotmatch', 'Parola nu se potriveste', '2019-05-25 22:44:58'),
(2839, 'ro', 'common', 'Period', 'Perioada', '2019-05-25 22:44:58'),
(2840, 'ro', 'common', 'Priority', 'Prioritate', '2019-05-25 22:44:58'),
(2841, 'ro', 'common', 'Profile', 'Profil', '2019-05-25 22:44:58'),
(2842, 'ro', 'common', 'Rank', 'Rank', '2019-05-25 22:44:58'),
(2843, 'ro', 'common', 'Reports', 'Rapoarte', '2019-05-25 22:44:58'),
(2844, 'ro', 'common', 'Results', 'Rezultate', '2019-05-25 22:44:58'),
(2845, 'ro', 'common', 'Search Engine', 'Motor de cautare', '2019-05-25 22:44:58'),
(2846, 'ro', 'common', 'Select', 'Selecteaza', '2019-05-25 22:44:58'),
(2847, 'ro', 'common', 'Seo Plugins', 'Plugin-uri seo', '2019-05-25 22:44:58'),
(2848, 'ro', 'common', 'Seo Tools', 'Unelte Seo', '2019-05-25 22:44:58'),
(2849, 'ro', 'common', 'Sign out', 'Iesire', '2019-05-25 22:44:58'),
(2850, 'ro', 'common', 'Sign Up', 'Inregistrare', '2019-05-25 22:44:58'),
(2851, 'ro', 'common', 'signin', 'Autentificare', '2019-05-25 22:44:58'),
(2852, 'ro', 'common', 'Status', 'Status', '2019-05-25 22:44:58'),
(2853, 'ro', 'common', 'Support', 'Suport', '2019-05-25 22:44:58'),
(2854, 'ro', 'common', 'Total', 'Total', '2019-05-25 22:44:58'),
(2855, 'ro', 'common', 'Url', 'Url', '2019-05-25 22:44:58'),
(2856, 'ro', 'common', 'User', 'Utilizator', '2019-05-25 22:44:58'),
(2857, 'ro', 'common', 'User Panel', 'Panoul utilizatorului', '2019-05-25 22:44:58'),
(2858, 'ro', 'common', 'Website', 'Site web', '2019-05-25 22:44:58'),
(2859, 'ro', 'common', 'Yes', 'Da', '2019-05-25 22:44:58'),
(2860, 'it', 'support', 'support_cont1', '<fieldset>\r\n<legend>Sistema supporto pannello seo</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>Pacchetto 1000 Directory</h1> \r\n <p>\r\n Forniamo un pacchetto di <b>1000 directory gratuite verificate e attive</b>, puoi inserirlo nel tuo pannello seo tramite lo <b>strumento di invio directory</b>.Ti aiuterà ad <b>incrementare i backlink</b> verso il tuo sito web.\r\n Attualmente l\\''elenco di <span id=\\"result_box\\" lang=\\"it\\"><span title=\\"\\"> 1000 directory viene utilizzato per raccogliere fondi per il <strong>futuro sviluppo</strong> del pannello di seo</span></span>.\r\n Per avere la lista delle 1000 directory è sufficiente <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">fare una donazione di </a> $10 o più per migliorare le caratteristiche del pannello seo.\r\n Per qualsiasi informazione sulle 1000 directory non esitare a <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">contattarci</a> o ad aprire un ticket sul <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">forum di supporto</a>. </p>\r\n </li>\r\n \r\n <li>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Visita questo link per effettuare una donazione per il pannello seo</a></p>\r\n <br>\r\n </li>\r\n <li>\r\n <h1>Pacchetti modori di ricerca in locale</h1> \r\n <p>\r\n Aggiungi i <b>domini dei motori di ricerca in locale</b> di google,yahoo,msn(<b>es: www.google.de,www.google.fr ecc\r\n</b>) al pannello seo per la <b>verifica della posizione delle keyword</b>, per tracciare le performance del tuo sito in locale.\r\n Per ottenere il pacchetto dei motori di ricerca in locale(in base alle tue esigenze) per cortesia <a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donae</a> $10 o di più per migliorare le caratteristiche del pannello seo. Prima di inviare una donazione, per cortesia <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contattaci</a> per fornirci l\\''elenco dei domini che vuoi richiedere.<br>\r\n<br> \r\n Puoi anche aggiungere <b>nuovi motori di ricerca (es:baidu.com)</b> al tuo pannello seo per la verifica della posizione delle keyword. Per fare questo puoi <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contattarci</a> o aprire un ticket nel <a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">sistema di supporto</a>. </p> \r\n<p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Visita questo link per contattarci</a></p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Plugin pannello seo</h1> \r\n <p>\r\n Aggiungi <b>plugin seo </b>al tuo pannello seo per <b>estendere le caratteristiche</b> in base alle tue esigenze.\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">I plugin del pannello seo </a>sono realizzati dallo stesso SeoPanel che da terze parti. Puoi anche semplicemente <b>sviluppare</b> i plugin seo per il tuo stesso pannello.Puoi <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">inviare</a> il tuo plugin seo e noi e provvederemo a <b>pubblicarlo </b>nel nostro sito web dopo il nostro processo di <b>verifica</b>. </p>\r\n </li> \r\n <li>\r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Visita questo link per prelevare plugin del pannello seo</a></p>\r\n <br>\r\n </li>\r\n <li>\r\n <h1>Contattaci</h1> \r\n <p>\r\n Contattaci per qualsiasi questione riguardante il <b>pannello seo, plugin e caratteristiche ecc</b> utilizzando il link che si presenta di seguito. </p> \r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Visita questo link per contattarci.</a></p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Ticket di supporto</h1> \r\n <p>\r\n Per avere <b>supporto tecnico </b>dal team del pannello seo per installare gli <b>strumenti del pannello seo, plugin e altre caratteristiche.</b> Es: per configurare la cronologia per la verifica delle posizioni per le keyword. </p>\r\n </li> \r\n <li>\r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Visita questo link per creare un ticket di supporto</a></p>\r\n <br>\r\n </li>\r\n <li>\r\n <h1>Segnala bug</h1> \r\n <p>\r\n Riporta i <b>bug</b> relativi gli <b>strumenti del pannello seo,plugin, caratteristiche ecc</b> utilizzando il seguente link. Per cortesia aiutaci a migliorare tutte le caratteristiche per la prossima versione. </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Visita questo link per segnalare bug</a></p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2010-10-27 06:36:28'),
(2861, 'it', 'support', 'support_cont2', '<fieldset>\r\n<legend>Risorse online pannello seo</legend>\r\n<ul class=\\"infobox\\">\r\n \r\n <li>\r\n <h1>Guida di aiuto del pannello seo</h1> \r\n <p>\r\n Puoi visualizzare la <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">documentazione del pannello seo </a> nella<b> guida di aiuto</b>, che contiene la<b> documentazione</b> per gli strumenti del pannello seo, plugin e relative caratteristiche.<br>\r\n Questo è il miglior posto su internet per <b>ricevere aiuto</b> circa il pannello seo. Speriamo che tu possa \r\n<b>contribuire</b> per la guida del pannello seo se sono errori o dimenticanze.</p>\r\n <p>\r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Visita la guida di aiuto del pannello seo</a></p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Forum Pannello Seo</h1> \r\n <p>\r\n Un posto dove discutere del primo <b>pannello di controllo seo </b>open source al mondo. Questo è il posto migliore dove trovare le <b>risposte</b> alle <b>tue domande</b> circa il pannello seo. \r\n <br>\r\n Puoi anche <b>condividere</b> la tua <b>esperienza</b> nell\\''utilizzo del pannello seo per ottimizzare il tuo sito web. </p> \r\n <p>\r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Visita il forum del pannello seo</a></p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2010-10-27 06:36:28'),
(2862, 'it', 'support', 'support_cont3', '<fieldset>\r\n<legend>Dona al pannello seo</legend>\r\n<ul class=\\"infobox\\"> \r\n <li>\r\n <h1>Dona al Pannello Seo - Il primo pannello di controllo seo Open Source al mondo</h1> \r\n <p>\r\n <b>Dona</b> al pannello seo per supportare il primo pannello di controllo seo open source al mondo.Abbiamo programmato di <b>aggiungere e migliorare</b> molte caratteristiche del pannello seo in futuro. \r\n <br>\r\n Con il vostro <b>supporto</b> possiamo raggiungere i nostri <b>obiettivi</b>. <span id=\\"result_box\\" lang=\\"it\\" xml:lang=\\"it\\"><span title=\\"\\">Se ritieni che il pannello seo è fatto<strong> per voi,</strong> fate una donazione al team del pannello seo.<br />\r\n </span><span title=\\"\\">Noi <strong>pubblicheremo</strong> il vostro nome e informazioni sul sito nella <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">pagina di donazione</a>, una volta ottenuta.</span></span><br>\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Visita questo link per donare al pannello seo</a></p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2010-10-27 06:36:28'),
(2863, 'ro', 'website', 'Edit Website', 'Editare Site Web', '2010-10-27 06:48:10'),
(2864, 'ro', 'website', 'plscrtwebsite', 'Va rugam creati un Site Web inainte sa folositi Unelte Seo si Plugin-uri Seo', '2010-10-27 06:48:10'),
(2865, 'ro', 'website', 'Website already exist', 'Site Web deja existent', '2010-10-27 06:48:10'),
(2866, 'ro', 'website', 'yourwebalreday', 'Site-ul Web al dvs. daca deja ati creat unul.', '2010-10-27 06:48:10'),
(2867, 'ro', 'user', 'Edit User', 'Editare utilizator', '2010-10-27 06:48:37'),
(2868, 'ro', 'user', 'Saved My Profile Details', 'Salvati detaliile profilului meu.', '2010-10-27 06:48:37'),
(2869, 'ro', 'sitemap', 'Change frequency', 'Schimba frecventa', '2010-10-29 05:26:49'),
(2870, 'ro', 'sitemap', 'clickproceedsitemap', 'Apasa pe <b>Continua</b> pentru a creea un fisier sitemap', '2010-10-29 05:26:49'),
(2871, 'ro', 'sitemap', 'Download sitemap file from', 'Descarca fisierul sitemap de la', '2010-10-29 05:26:49'),
(2872, 'ro', 'sitemap', 'Exclude Url', 'Exclude Url', '2010-10-29 05:26:49'),
(2873, 'ro', 'sitemap', 'processtaketime', 'Acest proces va dura ceva timp in functie de numarul link-urilor din site. Va rugam asteptati sa luati fisierele sitemap', '2010-10-29 05:26:49'),
(2874, 'ro', 'sitemap', 'Sitemap Type', 'Tip Sitemap', '2010-10-29 05:26:49'),
(2875, 'ro', 'rank', 'enterurlproceed', 'Introduceti adresele Url <b>Una pe linie</b>. Apasa pe <b>Continua</b> pentru a verifica Google si Alexa Rank', '2010-10-27 06:53:36'),
(2876, 'ro', 'rank', 'Google and Alexa Rank Reports', 'Rapoarte Google si Alexa Rank ', '2010-10-27 06:53:36'),
(2877, 'ro', 'rank', 'Saved rank results of', 'Salveaza rezultatele de rank pentru', '2010-10-27 06:53:36'),
(2878, 'ro', 'proxy', 'Edit Proxy', 'Editeaza Proxy', '2010-10-27 06:54:27'),
(2879, 'ro', 'proxy', 'Proxy Password', 'Parola Proxy', '2010-10-27 06:54:27'),
(2880, 'ro', 'proxy', 'Proxy Username', 'Utilizator Proxy', '2010-10-27 06:54:27'),
(2881, 'ro', 'proxy', 'Proxyalreadyexist', 'Proxy deja existent!', '2010-10-27 06:54:27'),
(2882, 'ro', 'plugin', 'Edit Seo Plugin', 'Editeaza Plugin Seo', '2012-05-19 01:05:13'),
(2883, 'ro', 'plugin', 'Plugin Name', 'Nume PLugin', '2012-05-19 01:05:13'),
(2884, 'ro', 'plugin', 'Seo Plugin Details', 'Detalii Plugin Seo', '2012-05-19 01:05:13'),
(2887, 'ro', 'panel', 'alsocheckfollowlink', 'Deasemenea verificati urmatorul link daca doriti mai multe detalii.', '2012-05-19 01:04:43'),
(2888, 'ro', 'panel', 'Check Directory', 'Verifica Director', '2012-05-19 01:04:43'),
(2889, 'ro', 'panel', 'Cron Command', 'Comanda Cron', '2012-05-19 01:04:43'),
(2890, 'ro', 'panel', 'Directory Manager', 'Manager Directoare', '2012-05-19 01:04:43'),
(2891, 'ro', 'panel', 'Edit My Profile', 'Editeaza Profilul Meu', '2012-05-19 01:04:43'),
(2892, 'ro', 'panel', 'My Profile', 'Profilul Meu', '2012-05-19 01:04:43'),
(2893, 'ro', 'panel', 'New Proxy', 'Proxy Nou', '2012-05-19 01:04:43'),
(2894, 'ro', 'panel', 'New User', 'Utilizator Nou', '2012-05-19 01:04:43'),
(2895, 'ro', 'panel', 'New Website', 'Site Web Nou', '2012-05-19 01:04:43'),
(2896, 'ro', 'panel', 'Proxy Manager', 'Manager Proxy', '2012-05-19 01:04:43'),
(2897, 'ro', 'panel', 'Report Generation Manager', 'Manager generare rapoarte', '2012-05-19 01:04:43'),
(2898, 'ro', 'panel', 'Reports Manager', 'Manager Rapoarte', '2012-05-19 01:04:43'),
(2899, 'ro', 'panel', 'Seo Plugins Manager', 'Manager Plugin Seo', '2012-05-19 01:04:43'),
(2900, 'ro', 'panel', 'Seo Tools Manager', 'Manager Unelte Seo', '2012-05-19 01:04:43'),
(2901, 'ro', 'panel', 'System Settings', 'Setari Sistem', '2012-05-19 01:04:43'),
(2902, 'ro', 'panel', 'User Manager', 'Manager utilizator', '2012-05-19 01:04:43'),
(2903, 'ro', 'panel', 'Website Manager', 'Manager Site Web', '2012-05-19 01:04:43'),
(2904, 'pt', 'common', 'Action', 'Acção ', '2019-05-25 22:43:55'),
(2905, 'pt', 'common', 'Activate', 'Activar ', '2019-05-25 22:43:55'),
(2906, 'pt', 'common', 'Active', 'Activo', '2019-05-25 22:43:55'),
(2907, 'pt', 'common', 'Admin Panel', 'Painel de Administração ', '2019-05-25 22:43:55'),
(2908, 'pt', 'common', 'Alexa Rank', 'Classificação na Alexa', '2019-05-25 22:43:55'),
(2909, 'pt', 'common', 'All', 'Categoria ', '2019-05-25 22:43:55'),
(2910, 'pt', 'common', 'Category', 'Categoria ', '2019-05-25 22:43:55'),
(2911, 'pt', 'common', 'contact', 'Contacto ', '2019-05-25 22:43:55'),
(2912, 'pt', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Todos os direitos reservados ', '2019-05-25 22:43:55'),
(2913, 'pt', 'common', 'Country', 'País ', '2019-05-25 22:43:55'),
(2914, 'pt', 'common', 'Crawl Meta Data', 'Meta dados de pesquisa', '2019-05-25 22:43:55'),
(2915, 'pt', 'common', 'Date', 'Data ', '2019-05-25 22:43:55'),
(2916, 'pt', 'common', 'Delete', 'Excluir ', '2019-05-25 22:43:55'),
(2917, 'pt', 'common', 'Details', 'Detalhes ', '2019-05-25 22:43:55'),
(2918, 'pt', 'common', 'Directory', 'Directório', '2019-05-25 22:43:55'),
(2919, 'pt', 'common', 'Donate', 'Doar ', '2019-05-25 22:43:55'),
(2920, 'pt', 'common', 'Edit', 'Editar ', '2019-05-25 22:43:55'),
(2921, 'pt', 'common', 'Entry cannot be blank', 'Entrada não pode estar em branco', '2019-05-25 22:43:55'),
(2922, 'pt', 'common', 'entrynotvalid', 'A entrada digitada não parece ser válido ', '2019-05-25 22:43:55'),
(2923, 'pt', 'common', 'failed', 'falhado', '2019-05-25 22:43:55'),
(2924, 'pt', 'common', 'forum', 'Fórum ', '2019-05-25 22:43:55'),
(2925, 'pt', 'common', 'Found', 'Encontrados ', '2019-05-25 22:43:55'),
(2926, 'pt', 'common', 'Google Pagerank', 'Google Pagerank ', '2019-05-25 22:43:55'),
(2927, 'pt', 'common', 'help', 'Ajuda ', '2019-05-25 22:43:55'),
(2928, 'pt', 'common', 'hidenews', 'Ocultar Noticias do Painel Seo ', '2019-05-25 22:43:55'),
(2929, 'pt', 'common', 'Id', 'ID ', '2019-05-25 22:43:55'),
(2930, 'pt', 'common', 'Inactivate', 'Desactivar', '2019-05-25 22:43:55'),
(2931, 'pt', 'common', 'Inactive', 'Inactivo ', '2019-05-25 22:43:55'),
(2932, 'pt', 'common', 'Invalid characters', 'caracteres inválidos ', '2019-05-25 22:43:55'),
(2933, 'pt', 'common', 'Invalid code entered', 'Código inválido entrou ', '2019-05-25 22:43:55'),
(2934, 'pt', 'common', 'Invalid email address entered', 'Endereço de email inválido entrou ', '2019-05-25 22:43:55'),
(2935, 'pt', 'common', 'Invalid value', 'Valor inválido ', '2019-05-25 22:43:55'),
(2936, 'pt', 'common', 'Keyword', 'Palavra ', '2019-05-25 22:43:55'),
(2937, 'pt', 'common', 'Keywords', 'Palavras-chave ', '2019-05-25 22:43:55'),
(2938, 'pt', 'common', 'lang', 'Idioma ', '2019-05-25 22:43:55'),
(2939, 'pt', 'common', 'My Account', 'Minha Conta ', '2019-05-25 22:43:55'),
(2940, 'pt', 'common', 'Name', 'Nome ', '2019-05-25 22:43:55'),
(2941, 'pt', 'common', 'No', 'Não ', '2019-05-25 22:43:55'),
(2942, 'pt', 'common', 'No Keywords Found', 'Nenhuma palavra-chave encontrados ', '2019-05-25 22:43:55'),
(2943, 'pt', 'common', 'No Records Found', 'Nenhum Registo Encontrado ', '2019-05-25 22:43:55'),
(2944, 'pt', 'common', 'noactivetools', 'Não Seo Tools activo encontrado! ', '2019-05-25 22:43:55'),
(2945, 'pt', 'common', 'nowebsites', 'Nenhum dos sites encontrados ', '2019-05-25 22:43:55'),
(2946, 'pt', 'common', 'password632', 'A sequência de senha deve ter um comprimento entre 6 e 32 ', '2019-05-25 22:43:55'),
(2947, 'pt', 'common', 'passwordnotmatch', 'As senhas não coincidem ', '2019-05-25 22:43:55'),
(2948, 'pt', 'common', 'Period', 'Período ', '2019-05-25 22:43:55'),
(2949, 'pt', 'common', 'Priority', 'Prioridade ', '2019-05-25 22:43:55'),
(2950, 'pt', 'common', 'Profile', 'Perfil ', '2019-05-25 22:43:55'),
(2951, 'pt', 'common', 'Rank', 'Classificar ', '2019-05-25 22:43:55'),
(2952, 'pt', 'common', 'Reports', 'Relatórios ', '2019-05-25 22:43:55'),
(2953, 'pt', 'common', 'Results', 'Resultados', '2019-05-25 22:43:55'),
(2954, 'pt', 'common', 'Search Engine', 'Motor de pesquisa', '2019-05-25 22:43:55'),
(2955, 'pt', 'common', 'Select', 'Seleccione ', '2019-05-25 22:43:55'),
(2956, 'pt', 'common', 'Seo Plugins', 'Seo Plugins ', '2019-05-25 22:43:55'),
(2957, 'pt', 'common', 'Seo Tools', 'Seo Tools ', '2019-05-25 22:43:55'),
(2958, 'pt', 'common', 'Sign out', 'Sair', '2019-05-25 22:43:55'),
(2959, 'pt', 'common', 'Sign Up', 'Inscreva-se', '2019-05-25 22:43:55'),
(2960, 'pt', 'common', 'signin', 'Entrar', '2019-05-25 22:43:55'),
(2961, 'pt', 'common', 'Status', 'Status ', '2019-05-25 22:43:55'),
(2962, 'pt', 'common', 'Support', 'Suporte ', '2019-05-25 22:43:55'),
(2963, 'pt', 'common', 'Total', 'Total ', '2019-05-25 22:43:55'),
(2964, 'pt', 'common', 'Url', 'Url ', '2019-05-25 22:43:55'),
(2965, 'pt', 'common', 'User', 'Utilizador', '2019-05-25 22:43:55'),
(2966, 'pt', 'common', 'User Panel', 'Painel de Utilizador', '2019-05-25 22:43:55'),
(2967, 'pt', 'common', 'Website', 'Web-site ', '2019-05-25 22:43:55'),
(2968, 'pt', 'common', 'Yes', 'Sim ', '2019-05-25 22:43:55'),
(2969, 'pt', 'website', 'Edit Website', 'Editar site ', '2016-01-18 00:19:53'),
(2970, 'pt', 'website', 'plscrtwebsite', 'Crie um site antes de começar a usar ferramentas e plugins seo. ', '2016-01-18 00:19:53'),
(2971, 'pt', 'website', 'Website already exist', 'Web-site já existe ', '2016-01-18 00:19:53'),
(2972, 'pt', 'website', 'yourwebalreday', 'seu site se você já tiver criado um. ', '2016-01-18 00:19:53'),
(2973, 'pt', 'user', 'Edit User', 'Editar Utilizador', '2016-01-18 00:20:08'),
(2974, 'pt', 'user', 'Saved My Profile Details', 'Salvar os meus detalhes do perfil ', '2016-01-18 00:20:08'),
(2975, 'pt', 'sitemap', 'Change frequency', 'Mudar a frequência ', '2010-10-27 08:57:13'),
(2976, 'pt', 'sitemap', 'clickproceedsitemap', 'Clique em <b>Continuar</b> para criar o arquivo sitemap ', '2010-10-27 08:57:13'),
(2977, 'pt', 'sitemap', 'Download sitemap file from', 'Baixar o arquivo de sitemap ', '2010-10-27 08:57:13'),
(2978, 'pt', 'sitemap', 'Exclude Url', 'Excluir Url ', '2010-10-27 08:57:13'),
(2979, 'pt', 'sitemap', 'processtaketime', 'Este processo levará tempo, de acordo com o número de links em seu site. Por favor, aguarde para obter sitemap\r\narquivos ', '2010-10-27 08:57:13'),
(2980, 'pt', 'sitemap', 'Sitemap Type', 'Tipo Sitemap ', '2010-10-27 08:57:13'),
(2981, 'pt', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Doar $100<b/> e se tornar um <b>patrocinador<b/> de Seo Panel. ', '2018-01-26 00:23:30'),
(2982, 'pt', 'settings', 'seopanel_description', 'Um painel de controle livre completo para a gestão do motor de pesquisa e optimização de seus websites. Este Seo contem muitas ferramentas de SEO para aumentar e controlar a sua performance superior do site. É um software open source e você também pode desenvolver seus próprios plugins seo para o painel seo.', '2018-01-26 00:23:30'),
(2983, 'pt', 'settings', 'seopanel_title', 'Seo Painel: É o primeiro painel de controle seo open Source do mundo para geriro seo vários sites ', '2018-01-26 00:23:30');
INSERT INTO `texts` VALUES
(2984, 'pt', 'settings', 'SP_CRAWL_DELAY', 'Atraso entre cada spider crawl (segundos) ', '2018-01-26 00:23:30'),
(2985, 'pt', 'settings', 'SP_DEFAULTLANG', 'Idioma padrão ', '2018-01-26 00:23:30'),
(2986, 'pt', 'settings', 'SP_DESCRIPTION', 'Seo Descrição Painel ', '2018-01-26 00:23:30'),
(2987, 'pt', 'settings', 'SP_ENABLE_PROXY', 'Activar Proxy ', '2018-01-26 00:23:30'),
(2988, 'pt', 'settings', 'SP_HOTLINKING', 'Imagem de hotlink com protecção activada', '2018-01-26 00:23:30'),
(2989, 'pt', 'settings', 'SP_KEYWORDS', 'Palavras-chave Painel Seo ', '2018-01-26 00:23:30'),
(2990, 'pt', 'settings', 'SP_PAGINGNO', 'Número de entradas por página ', '2018-01-26 00:23:30'),
(2991, 'pt', 'settings', 'SP_TITLE', 'Seo título do painel ', '2018-01-26 00:23:30'),
(2992, 'pt', 'settings', 'SP_USER_GEN_REPORT', 'Permitir ao usuário gerar relatórios ', '2018-01-26 00:23:30'),
(2993, 'pt', 'settings', 'SP_USER_REGISTRATION', 'Interface de registo de utilizador', '2018-01-26 00:23:30'),
(2994, 'pt', 'settings', 'syssettingssaved', 'As definições do sistema salvas com sucesso! ', '2018-01-26 00:23:30'),
(2995, 'pt', 'seotools', 'Automatic Submission', 'Envio automático ', '2018-01-26 00:25:11'),
(2996, 'pt', 'seotools', 'backlink-checker', 'Backlinks Checker ', '2018-01-26 00:25:11'),
(2997, 'pt', 'seotools', 'Backlinks Reports', 'Backlinks Relatórios ', '2018-01-26 00:25:11'),
(2998, 'pt', 'seotools', 'Check Submission Status', 'Verificar status da submissão ', '2018-01-26 00:25:11'),
(2999, 'pt', 'seotools', 'clickgeneratereports', 'Clique em <b>proseguir<b/> para gerar relatórios ', '2018-01-26 00:25:11'),
(3000, 'pt', 'seotools', 'Detailed Position Reports', 'Relatórios detalhados da posição ', '2018-01-26 00:25:11'),
(3001, 'pt', 'seotools', 'directory-submission', 'A submissão do directório ', '2018-01-26 00:25:11'),
(3002, 'pt', 'seotools', 'Featured Submission', 'Submissão destacada', '2018-01-26 00:25:11'),
(3003, 'pt', 'seotools', 'Generate Backlinks Reports', 'Gerar relatórios Backlinks ', '2018-01-26 00:25:11'),
(3004, 'pt', 'seotools', 'Generate Keyword Reports', 'Palavra Gerar relatórios ', '2018-01-26 00:25:11'),
(3005, 'pt', 'seotools', 'Generate Rank Reports', 'Gerar relatórios da Classificação', '2018-01-26 00:25:11'),
(3006, 'pt', 'seotools', 'Generate Saturation Reports', 'Gerar relatórios de Saturação ', '2018-01-26 00:25:11'),
(3007, 'pt', 'seotools', 'Google Sitemap Generator', 'Google Sitemap Generator ', '2018-01-26 00:25:11'),
(3008, 'pt', 'seotools', 'Graphical Position Reports', 'Posição Relatórios Gráficos ', '2018-01-26 00:25:11'),
(3009, 'pt', 'seotools', 'Keyword Position Summary', 'Palavra Resumo posição ', '2018-01-26 00:25:11'),
(3010, 'pt', 'seotools', 'keyword-position-checker', 'Verificador de palavras-chave posição ', '2018-01-26 00:25:11'),
(3011, 'pt', 'seotools', 'Keywords Manager', 'Palavras-chave Manager ', '2018-01-26 00:25:11'),
(3012, 'pt', 'seotools', 'Quick Backlinks Checker', 'Verificação rápida do Backlinks ', '2018-01-26 00:25:11'),
(3013, 'pt', 'seotools', 'Quick Position Checker', 'Verificação rápida da posição ', '2018-01-26 00:25:11'),
(3014, 'pt', 'seotools', 'Quick Rank Checker', 'Verificação rápida da Classificação', '2018-01-26 00:25:11'),
(3015, 'pt', 'seotools', 'Quick Saturation Checker', 'Verificação rápida da Saturação ', '2018-01-26 00:25:11'),
(3016, 'pt', 'seotools', 'Rank Reports', 'Relatórios da Classificação ', '2018-01-26 00:25:11'),
(3017, 'pt', 'seotools', 'rank-checker', 'Verificação da Classificação', '2018-01-26 00:25:11'),
(3018, 'pt', 'seotools', 'Saturation Reports', 'Saturação Relatórios ', '2018-01-26 00:25:11'),
(3019, 'pt', 'seotools', 'saturation-checker', 'Saturação do Motor de busca', '2018-01-26 00:25:11'),
(3020, 'pt', 'seotools', 'sitemap-generator', 'Gerar Sitemap ', '2018-01-26 00:25:11'),
(3021, 'pt', 'seotools', 'Skipped Directories', 'Directórios não introduzidos ', '2018-01-26 00:25:11'),
(3022, 'pt', 'seotools', 'Submission Reports', 'Apresentação Relatórios ', '2018-01-26 00:25:11'),
(3023, 'pt', 'seotools', 'User Access', 'Acesso do Usuário ', '2018-01-26 00:25:11'),
(3024, 'pt', 'rank', 'enterurlproceed', 'Digite um URL <b>por linha<b/>. Clique em <b>Continuar<b/> para verificar a classificação no Google e Alexa.', '2010-10-27 09:33:40'),
(3025, 'pt', 'rank', 'Google and Alexa Rank Reports', 'Relatórios de classificação em Alexa e Google', '2010-10-27 09:33:40'),
(3026, 'pt', 'rank', 'Saved rank results of', 'resultados de classificação dos salvos ', '2010-10-27 09:33:40'),
(3027, 'pt', 'saturation', 'clickproceedsaturation', 'Digite um URL <b>por linha<b/>.Clique em <b>Continuar<b/> para verificar os Relatórios da Saturação do Motor de Busca', '2010-10-27 09:39:07'),
(3028, 'pt', 'saturation', 'GenerateSaturationReports', 'Gerar Relatórios da Saturação do Motor de Busca ', '2010-10-27 09:39:07'),
(3029, 'pt', 'saturation', 'Quick Search Engine Saturation Checker', 'Pesquisa Rápida Saturação do Motor de Busca', '2010-10-27 09:39:07'),
(3030, 'pt', 'saturation', 'Saved Search Engine Saturation results of', 'guardar os resultados da Saturação do Motor de Busca', '2010-10-27 09:39:07'),
(3031, 'pt', 'saturation', 'Search Engine Saturation Reports', 'Relatórios Saturação do Motor de Busca', '2010-10-27 09:39:07'),
(3032, 'pt', 'proxy', 'Edit Proxy', 'Editar Proxy ', '2018-01-26 00:17:58'),
(3033, 'pt', 'proxy', 'Proxy Password', 'password do Proxy ', '2018-01-26 00:17:58'),
(3034, 'pt', 'proxy', 'Proxy Username', 'Nome de utilizador Proxy ', '2018-01-26 00:17:58'),
(3035, 'pt', 'proxy', 'Proxyalreadyexist', 'A Proxy já existe! ', '2018-01-26 00:17:58'),
(3036, 'pt', 'plugin', 'Edit Seo Plugin', 'Editar Seo Plugin ', '2012-06-01 23:11:02'),
(3037, 'pt', 'plugin', 'Plugin Name', 'Nome do Plugin ', '2012-06-01 23:11:02'),
(3038, 'pt', 'plugin', 'Seo Plugin Details', 'Detalhes do Plugin Seo ', '2012-06-01 23:11:02'),
(3039, 'pt', 'directory', 'Add back to directory list', 'Adicionar de volta à lista de directórios ', '2012-11-11 01:59:13'),
(3040, 'pt', 'directory', 'Approved', 'Aprovado ', '2012-11-11 01:59:13'),
(3041, 'pt', 'directory', 'Captcha', 'Captcha ', '2012-11-11 01:59:13'),
(3042, 'pt', 'directory', 'categorynote', 'Categorias, separe-os com vírgula de acordo com a prioridade. Comece com a categoria com mais prioridade. ', '2012-11-11 01:59:13'),
(3043, 'pt', 'directory', 'Check Directory Status', 'Verificar status Directório ', '2012-11-11 01:59:13'),
(3044, 'pt', 'directory', 'Check Directory Submission Status', 'Verifique o Estado da submissão do directório ', '2012-11-11 01:59:13'),
(3045, 'pt', 'directory', 'clicktoproceeddirsts', 'Clique em <b>Continuar<b/> para verificar o status do Directório. ', '2012-11-11 01:59:13'),
(3046, 'pt', 'directory', 'Confirmation', 'Confirmação ', '2012-11-11 01:59:13'),
(3047, 'pt', 'directory', 'desnote', 'Alguns directórios requerem mínima de 150 caracteres para o campo de descrição. ', '2012-11-11 01:59:13'),
(3048, 'pt', 'directory', 'Directories with out captcha', 'Directórios sem captcha ', '2012-11-11 01:59:13'),
(3049, 'pt', 'directory', 'Directory Submission Reports', 'Relatórios de inserção no Directório ', '2012-11-11 01:59:13'),
(3050, 'pt', 'directory', 'Enter the code shown', 'Digite o código mostrado ', '2012-11-11 01:59:13'),
(3051, 'pt', 'directory', 'nocatnote', 'A categoria de inserção não foi encontrado na página de inserção. Por favor, clique em <b>Actualizar<b/> ou <b>passar<b/> ', '2012-11-11 01:59:13'),
(3052, 'pt', 'directory', 'nodirnote', 'Nenhum directório <b>activo<b/> encontrado ', '2012-11-11 01:59:13'),
(3053, 'pt', 'directory', 'nosuccessnote', 'Não recebi mensagem de sucesso, por favor, verifique seu e-mail para encontrar a mensagem de confirmação ', '2012-11-11 01:59:13'),
(3054, 'pt', 'directory', 'optionalnote', 'Opcional títulos e descrições apresentar título aleatório e descrição de directórios para melhor os resultados. ', '2012-11-11 01:59:13'),
(3055, 'pt', 'directory', 'Owner Email', 'E-mail do proprietário ', '2012-11-11 01:59:13'),
(3056, 'pt', 'directory', 'Owner Name', 'Nome do proprietário ', '2012-11-11 01:59:13'),
(3057, 'pt', 'directory', 'Pending', 'Pendente', '2012-11-11 01:59:13'),
(3058, 'pt', 'directory', 'Please select a website to proceed', 'Por favor, seleccione um site para continuar ', '2012-11-11 01:59:13'),
(3059, 'pt', 'directory', 'selectwebsiteproceed', 'Seleccione um <b>web-site</b> para <b> Continuar </b> submissão do directório. <br> Directórios Verifique <b> com a captcha </b> para enviar aos directórios com captcha fora ', '2012-11-11 01:59:13'),
(3060, 'pt', 'directory', 'selectwebsiteschecksub', 'Seleccione um <b>web-site<b/> para <b>Continuar<b/> a verificar o directório de inserção. ', '2012-11-11 01:59:13'),
(3061, 'pt', 'directory', 'Semi Automatic Directory Submission Tool', 'Ferramenta semi-automática da submissão do Directório ', '2012-11-11 01:59:13'),
(3062, 'pt', 'directory', 'spamemailnote', 'Alguns directórios podem enviar spam, nós não recomendamos usar seu endereço de e-mail principal. ', '2012-11-11 01:59:13'),
(3063, 'pt', 'directory', 'Submission Details', 'Detalhes da apresentação ', '2012-11-11 01:59:13'),
(3064, 'pt', 'directory', 'Submit Description', 'Submeter Descrição ', '2012-11-11 01:59:13'),
(3065, 'pt', 'directory', 'Submit Keywords', 'Submeter Envie-chave ', '2012-11-11 01:59:13'),
(3066, 'pt', 'directory', 'Submit Title', 'Envie título ', '2012-11-11 01:59:13'),
(3067, 'pt', 'directory', 'Website Category', 'Website Categoria ', '2012-11-11 01:59:13'),
(3068, 'pt', 'directory', 'Website Url', 'Website URL ', '2012-11-11 01:59:13'),
(3069, 'pt', 'keyword', 'Crawling keyword', 'Procura da palavra-chave', '2016-01-18 00:11:49'),
(3070, 'pt', 'keyword', 'Detailed Keyword Position Reports', 'Relatórios detalhados da posição da palavra-chave', '2016-01-18 00:11:49'),
(3071, 'pt', 'keyword', 'Edit Keyword', 'Editar palavras-chave ', '2016-01-18 00:11:49'),
(3072, 'pt', 'keyword', 'Graphical Keyword Position Reports', 'Relatórios Gráficos da posição da palavra-chave ', '2016-01-18 00:11:49'),
(3073, 'pt', 'keyword', 'Import Keywords', 'Importar palavra-chave ', '2016-01-18 00:11:49'),
(3074, 'pt', 'keyword', 'Keyword already exist', 'Palavra-chave já existe', '2016-01-18 00:11:49'),
(3075, 'pt', 'keyword', 'Keyword Position Report', 'Relatório da posição da palavra-chave', '2016-01-18 00:11:49'),
(3076, 'pt', 'keyword', 'New Keyword', 'Nova palavra-chave ', '2016-01-18 00:11:49'),
(3077, 'pt', 'keyword', 'not assigned to required search engines', 'não atribuídos aos motores de busca necessária ', '2016-01-18 00:11:49'),
(3078, 'pt', 'keyword', 'pleaseselecttool', 'Por favor, seleccione pelo menos uma da ferramentas Seo ', '2016-01-18 00:11:49'),
(3079, 'pt', 'keyword', 'Quick Keyword Position Checker', 'Busca rápida da posição da palavra-chave ', '2016-01-18 00:11:49'),
(3080, 'pt', 'keyword', 'results from ', 'resultados de', '2016-01-18 00:11:49'),
(3081, 'pt', 'keyword', 'Show All results', 'Mostrar todos os resultados ', '2016-01-18 00:11:49'),
(3082, 'pt', 'keyword', 'Successfully crawled keyword', 'Rastreados com sucesso palavra-chave ', '2016-01-18 00:11:49'),
(3083, 'pt', 'keyword', 'to create new keywords', 'para criar novas palavras-chave ', '2016-01-18 00:11:49'),
(3084, 'pt', 'label', 'already exist', 'já existem ', '2018-01-26 00:11:22'),
(3085, 'pt', 'label', 'Authentication', 'Autenticação ', '2018-01-26 00:11:22'),
(3086, 'pt', 'label', 'Author', 'Autor ', '2018-01-26 00:11:22'),
(3087, 'pt', 'label', 'Click Here', 'Clique Aqui ', '2018-01-26 00:11:22'),
(3088, 'pt', 'label', 'Cron', 'Cron ', '2018-01-26 00:11:22'),
(3089, 'pt', 'label', 'Description', 'Descrição ', '2018-01-26 00:11:22'),
(3090, 'pt', 'label', 'Developers', 'Criadores', '2018-01-26 00:11:22'),
(3091, 'pt', 'label', 'Download', 'Download ', '2018-01-26 00:11:22'),
(3092, 'pt', 'label', 'Installation', 'Instalação ', '2018-01-26 00:11:22'),
(3093, 'pt', 'label', 'Keywords', 'Palavras-chave ', '2018-01-26 00:11:22'),
(3094, 'pt', 'label', 'noactiveplugins', 'Nenhum plugins SEO activos encontrados! ', '2018-01-26 00:11:22'),
(3095, 'pt', 'label', 'Plugin', 'Plugin ', '2018-01-26 00:11:22'),
(3096, 'pt', 'label', 'Port', 'Porto ', '2018-01-26 00:11:22'),
(3097, 'pt', 'label', 'Proxy', 'Proxy ', '2018-01-26 00:11:22'),
(3098, 'pt', 'label', 'Re-install', 'Re-instalar ', '2018-01-26 00:11:22'),
(3099, 'pt', 'label', 'Sponsors', 'Patrocinadores ', '2018-01-26 00:11:22'),
(3100, 'pt', 'label', 'Title', 'Título ', '2018-01-26 00:11:22'),
(3101, 'pt', 'label', 'translation by', 'Tradução por ', '2018-01-26 00:11:22'),
(3102, 'pt', 'label', 'Translators', 'Tradutores ', '2018-01-26 00:11:22'),
(3103, 'pt', 'label', 'Upgrade', 'Upgrade ', '2018-01-26 00:11:22'),
(3104, 'pt', 'label', 'Version', 'Versão ', '2018-01-26 00:11:22'),
(3105, 'pt', 'label', 'wantproceed', 'Você realmente deseja continuar? ', '2018-01-26 00:11:22'),
(3106, 'pt', 'login', 'Confirm Password', 'Confirme a senha ', '2016-01-18 00:13:26'),
(3107, 'pt', 'login', 'Create my account', 'Criar a minha conta ', '2016-01-18 00:13:26'),
(3108, 'pt', 'login', 'Create New Account', 'Criar uma nova conta ', '2016-01-18 00:13:26'),
(3109, 'pt', 'login', 'Email', 'E-mail ', '2016-01-18 00:13:26'),
(3110, 'pt', 'login', 'emailexist', 'E-mail já existe! ', '2016-01-18 00:13:26'),
(3111, 'pt', 'login', 'Enter the code as it is shown', 'Digite o código como é mostrado ', '2016-01-18 00:13:26'),
(3112, 'pt', 'login', 'First Name', 'Nome ', '2016-01-18 00:13:26'),
(3113, 'pt', 'login', 'Last Name', 'Sobrenome ', '2016-01-18 00:13:26'),
(3114, 'pt', 'login', 'Login', 'Login ', '2016-01-18 00:13:26'),
(3115, 'pt', 'login', 'Login incorrect', 'Login incorrecto ', '2016-01-18 00:13:26'),
(3116, 'pt', 'login', 'newaccountsuccess', 'Nova conta criada com sucesso! ', '2016-01-18 00:13:26'),
(3117, 'pt', 'login', 'Password', 'Senha ', '2016-01-18 00:13:26'),
(3118, 'pt', 'login', 'Password incorrect', 'Senha incorrecta ', '2016-01-18 00:13:26'),
(3119, 'pt', 'login', 'Register', 'Registe-se ', '2016-01-18 00:13:26'),
(3120, 'pt', 'login', 'Sign in to your account', 'Inscreva-se na sua conta ', '2016-01-18 00:13:26'),
(3121, 'pt', 'login', 'User inactive', 'Utilizador inactivo ', '2016-01-18 00:13:26'),
(3122, 'pt', 'login', 'Username', 'Nome de Utilizador', '2016-01-18 00:13:26'),
(3123, 'pt', 'login', 'usernameexist', 'Nome do Utilizador já existe! ', '2016-01-18 00:13:26'),
(3124, 'pt', 'panel', 'About Us', 'Quem Somos ', '2018-01-26 00:18:33'),
(3125, 'pt', 'panel', 'Add following command to your cron tab', 'Adicionar seguinte comando para o seu cron tab ', '2018-01-26 00:18:33'),
(3126, 'pt', 'panel', 'alsocheckfollowlink', 'também seleccione o link a seguir se precisar de mais detalhes. ', '2018-01-26 00:18:33'),
(3127, 'pt', 'panel', 'Check Directory', 'Lista de Verificação ', '2018-01-26 00:18:33'),
(3128, 'pt', 'panel', 'Cron Command', 'Comando Cron ', '2018-01-26 00:18:33'),
(3129, 'pt', 'panel', 'Directory Manager', 'Administrador de directório', '2018-01-26 00:18:33'),
(3130, 'pt', 'panel', 'Edit My Profile', 'Editar meu perfil ', '2018-01-26 00:18:33'),
(3131, 'pt', 'panel', 'My Profile', 'Meu Perfil ', '2018-01-26 00:18:33'),
(3132, 'pt', 'panel', 'New Proxy', 'Proxy novo', '2018-01-26 00:18:33'),
(3133, 'pt', 'panel', 'New User', 'Novo Utilizador', '2018-01-26 00:18:33'),
(3134, 'pt', 'panel', 'New Website', 'Novo Website ', '2018-01-26 00:18:33'),
(3135, 'pt', 'panel', 'Proxy Manager', 'Administrador de proxy', '2018-01-26 00:18:33'),
(3136, 'pt', 'panel', 'Report Generation Manager', 'Administrador de Relatórios Geração ', '2018-01-26 00:18:33'),
(3137, 'pt', 'panel', 'Reports Manager', 'administrador de Relatórios ', '2018-01-26 00:18:33'),
(3138, 'pt', 'panel', 'Seo Plugins Manager', 'administrador de Seo Plugins ', '2018-01-26 00:18:33'),
(3139, 'pt', 'panel', 'Seo Tools Manager', 'administrador de ferramentas seo', '2018-01-26 00:18:33'),
(3140, 'pt', 'panel', 'System Settings', 'Configurações do Sistema ', '2018-01-26 00:18:33'),
(3141, 'pt', 'panel', 'User Manager', 'administrador de utilizadores', '2018-01-26 00:18:33'),
(3142, 'pt', 'panel', 'Website Manager', 'administrador de website', '2018-01-26 00:18:33'),
(3143, 'pt', 'home', 'Account Summary', 'Resumo da Conta ', '2011-07-10 13:41:24'),
(3144, 'pt', 'home', 'Backlinks', 'Backlinks ', '2011-07-10 13:41:24'),
(3145, 'pt', 'home', 'Directory Submission', 'A Submissão do Directório ', '2011-07-10 13:41:24'),
(39604, 'ru', 'siteauditor', 'Robots.txt Status', 'Статус Robots.txt', '2026-01-19 23:10:34'),
(39605, 'tr', 'siteauditor', 'Robots.txt Status', 'Robots.txt durumu', '2026-01-19 23:10:34'),
(39606, 'zh', 'siteauditor', 'Robots.txt Status', 'Robots.txt状态', '2026-01-19 23:10:34'),
(39607, 'cn', 'siteauditor', 'Robots.txt Status', 'Robots.txt状态', '2026-01-19 23:10:34'),
(39608, 'en', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt Allowed', '2026-01-19 23:10:34'),
(39609, 'ar', 'siteauditor', 'Robots.txt Allowed', 'مسموح في Robots.txt', '2026-01-19 23:10:34'),
(39610, 'bg', 'siteauditor', 'Robots.txt Allowed', 'Разрешено в Robots.txt', '2026-01-19 23:10:34'),
(39611, 'de', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt erlaubt', '2026-01-19 23:10:34'),
(39612, 'es', 'siteauditor', 'Robots.txt Allowed', 'Permitido por Robots.txt', '2026-01-19 23:10:34'),
(39613, 'fr', 'siteauditor', 'Robots.txt Allowed', 'Autorisé par Robots.txt', '2026-01-19 23:10:34'),
(39614, 'it', 'siteauditor', 'Robots.txt Allowed', 'Consentito da Robots.txt', '2026-01-19 23:10:34'),
(39615, 'nl', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt toegestaan', '2026-01-19 23:10:34'),
(39616, 'pl', 'siteauditor', 'Robots.txt Allowed', 'Dozwolone przez Robots.txt', '2026-01-19 23:10:34'),
(39617, 'pt', 'siteauditor', 'Robots.txt Allowed', 'Permitido pelo Robots.txt', '2026-01-19 23:10:34'),
(39618, 'pt-br', 'siteauditor', 'Robots.txt Allowed', 'Permitido pelo Robots.txt', '2026-01-19 23:10:34'),
(39619, 'ru', 'siteauditor', 'Robots.txt Allowed', 'Разрешено в Robots.txt', '2026-01-19 23:10:34'),
(39620, 'tr', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt izin verdi', '2026-01-19 23:10:34'),
(39621, 'zh', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt允许', '2026-01-19 23:10:34'),
(39622, 'cn', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt允许', '2026-01-19 23:10:34'),
(39623, 'en', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'The page is allowed by robots.txt and can be crawled by search engines', '2026-01-19 23:10:34'),
(39624, 'ar', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'الصفحة مسموح بها في robots.txt ويمكن لمحركات البحث الزحف إليها', '2026-01-19 23:10:34'),
(39625, 'bg', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Страницата е разрешена от robots.txt и може да бъде сканирана от търсачки', '2026-01-19 23:10:34'),
(39626, 'de', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Die Seite ist von robots.txt erlaubt und kann von Suchmaschinen gecrawlt werden', '2026-01-19 23:10:34'),
(39627, 'es', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'La página está permitida por robots.txt y puede ser rastreada por motores de búsqueda', '2026-01-19 23:10:34'),
(39628, 'fr', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'La page est autorisée par robots.txt et peut être crawlée par les moteurs de recherche', '2026-01-19 23:10:34'),
(39629, 'it', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'La pagina è consentita da robots.txt e può essere scansionata dai motori di ricerca', '2026-01-19 23:10:34'),
(39630, 'nl', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'De pagina is toegestaan door robots.txt en kan worden gecrawld door zoekmachines', '2026-01-19 23:10:34'),
(39631, 'pl', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Strona jest dozwolona przez robots.txt i może być indeksowana przez wyszukiwarki', '2026-01-19 23:10:34'),
(38939, 'hr', 'review', 'Top Review Links', 'Najbolji linkovi recenzija', '2026-01-19 22:58:50'),
(38940, 'hu', 'review', 'Top Review Links', 'Legjobb értékelési linkek', '2026-01-19 22:58:50'),
(38941, 'hy', 'review', 'Top Review Links', 'Լավագույն ակնարկների հղումներ', '2026-01-19 22:58:50'),
(38942, 'id', 'review', 'Top Review Links', 'Tautan Ulasan Teratas', '2026-01-19 22:58:50'),
(38943, 'it', 'review', 'Top Review Links', 'Migliori Link Recensioni', '2026-01-19 22:58:50'),
(38944, 'ja', 'review', 'Top Review Links', 'トップレビューリンク', '2026-01-19 22:58:50'),
(38945, 'ko', 'review', 'Top Review Links', '상위 리뷰 링크', '2026-01-19 22:58:50'),
(38946, 'lt', 'review', 'Top Review Links', 'Geriausios atsiliepimų nuorodos', '2026-01-19 22:58:50'),
(38947, 'mk', 'review', 'Top Review Links', 'Топ линкови за рецензии', '2026-01-19 22:58:50'),
(38948, 'nl', 'review', 'Top Review Links', 'Top beoordelingslinks', '2026-01-19 22:58:50'),
(38949, 'no', 'review', 'Top Review Links', 'Topp anmeldelseslenker', '2026-01-19 22:58:50'),
(3149, 'pt', 'home', 'Pages Indexed', 'Páginas cadastradas ', '2011-07-10 13:41:24'),
(3150, 'pt', 'home', 'Ranks', 'Posições ', '2011-07-10 13:41:24'),
(3151, 'pt', 'home', 'SiteNameUrl', 'Nome do URL do site / ', '2011-07-10 13:41:24'),
(3152, 'pt', 'home', 'Website Statistics', 'Estatísticas do site ', '2011-07-10 13:41:24'),
(3153, 'ro', 'directory', 'Add back to directory list', 'Adauga la sfarsitul listei de directoare', '2012-05-19 00:52:34'),
(3154, 'ro', 'directory', 'Approved', 'Aprobat', '2012-05-19 00:52:34'),
(3155, 'ro', 'directory', 'Captcha', 'Captcha', '2012-05-19 00:52:34'),
(3156, 'ro', 'directory', 'categorynote', 'Categoriile, separatile prin virgula in functie de prioritate. Incepeti cu categoria de top prioritara.', '2012-05-19 00:52:34'),
(3157, 'ro', 'directory', 'Check Directory Status', 'Verificati Statusul Directorului', '2012-05-19 00:52:34'),
(3158, 'ro', 'directory', 'Check Directory Submission Status', 'Verificati Statusul Directorului Inscris', '2012-05-19 00:52:34'),
(3159, 'ro', 'directory', 'clicktoproceeddirsts', 'Apasa pe <b>Continua</b> pentru a verifica statusul directorului.', '2012-05-19 00:52:34'),
(3160, 'ro', 'directory', 'Confirmation', 'Confirmare', '2012-05-19 00:52:34'),
(3161, 'ro', 'directory', 'desnote', 'Unele directoare au nevoie de minim 150 caractere pentru campul descriere.', '2012-05-19 00:52:34'),
(3162, 'ro', 'directory', 'Directories with out captcha', 'Directoare fara captcha', '2012-05-19 00:52:34'),
(3163, 'ro', 'directory', 'Directory Submission Reports', 'Rapoarte Directoare Inscrise', '2012-05-19 00:52:34'),
(3164, 'ro', 'directory', 'Enter the code shown', 'Introduceti codul din imagine', '2012-05-19 00:52:34'),
(3165, 'ro', 'directory', 'nocatnote', 'Categoria inscrisa nu a fost gasita in pagina trimise. Va rugam apasati pe <b>Reincarca</b> sau <b>Sari peste</b>', '2012-05-19 00:52:34'),
(3166, 'ro', 'directory', 'nodirnote', 'Nu s-a gasit niciun director <b>Activ</b> ', '2012-05-19 00:52:34'),
(3167, 'ro', 'directory', 'nosuccessnote', 'Nu ati primit mesajul de confirmare, va rugam verificati-va e-mailul pentru a gasi mesajul de confirmare.', '2012-05-19 00:52:34'),
(3168, 'ro', 'directory', 'optionalnote', 'Titluri si descrieri optionale sunt trimise aleator la directoare pentru un rezultat mai bun.', '2012-05-19 00:52:34'),
(3169, 'ro', 'directory', 'Owner Email', 'E-mail detinator', '2012-05-19 00:52:34'),
(3170, 'ro', 'directory', 'Owner Name', 'Nume detinator', '2012-05-19 00:52:34'),
(3171, 'ro', 'directory', 'Pending', 'In asteptare', '2012-05-19 00:52:34'),
(3172, 'ro', 'directory', 'Please select a website to proceed', 'Va rugam selectati un site web pentru a Continua', '2012-05-19 00:52:34'),
(3173, 'ro', 'directory', 'selectwebsiteproceed', 'Selectati un <b>Site Web<b/> pentru a <b>Continua</b> inscrierea in directoare. <br> Verifica <b>Directoarele fara captcha</b> pentru a inscrie in directoarele fara captcha', '2012-05-19 00:52:34'),
(3174, 'ro', 'directory', 'selectwebsiteschecksub', 'Selectati un <b>Director</b> pentru a <b>Continua</b> verificarea directoarelor inscrise.', '2012-05-19 00:52:34'),
(3175, 'ro', 'directory', 'Semi Automatic Directory Submission Tool', 'Unealta de inscriere Directoare Semi Automata', '2012-05-19 00:52:34'),
(3176, 'ro', 'directory', 'spamemailnote', 'Unele directoare pot trimite spam, nu recomandam sa folositi adresa dvs. de e-mail primara.', '2012-05-19 00:52:34'),
(3177, 'ro', 'directory', 'Submission Details', 'Detalii Inscriere', '2012-05-19 00:52:34'),
(3178, 'ro', 'directory', 'Submit Description', 'Descriere Inscriere', '2012-05-19 00:52:34'),
(3179, 'ro', 'directory', 'Submit Keywords', 'Inscriere cuvinte cheie', '2012-05-19 00:52:34'),
(3180, 'ro', 'directory', 'Submit Title', 'Inscriere Titlu', '2012-05-19 00:52:34'),
(3181, 'ro', 'directory', 'Website Category', 'Categorie Site Web', '2012-05-19 00:52:34'),
(3182, 'ro', 'directory', 'Website Url', 'Url site web', '2012-05-19 00:52:34'),
(3183, 'zh', 'support', 'support_cont1', '<fieldset> \r\n<legend>Seo Panel 帮助系统</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>1000 目录包</h1> \r\n <p> \r\n 我们提供<b>超过1000个可用的</b>网络目录包,加到\r\n你的seo panel <b>目录提交工具</b>. \r\n 它会帮助你<b>增加反向链接</b>你的站点. \r\n 在我们获得捐赠后为seo panel<b>以为未来发展</b>,您将获得<b>推荐</b>的1000目录列表,. \r\n 想要获得1000目录列表请<a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">捐赠</a>\r\n$10 或者更多 来改善 seo panel 的功能 . \r\n 如果你有任何问题关于1000目录包,请<a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">联系我们</a>或者打开一个页面 <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">帮助系统</a>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">访问这个链接捐赠seo panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>本地搜索引擎包</h1> \r\n <p> \r\n 增加<b>本地 搜索引擎 域</b>google,yahoo,msn(<b>例如: www.google.de,www.google.fr\r\netc</b>) seo panel <b>关键字position checker</b>, 追踪你的站点行为本地. \r\n 为了获得本地搜索引擎包(根据你的需求) 请<a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">捐赠</a> $10或者更多来改善功能seo\r\npanel. \r\n 捐赠之前, 请 <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">联系我们</a> to\r\n提供给我们需要的搜索引擎域名列表. \r\n <br><br> \r\n 增加<b>新的搜索引擎(例如:baidu.com)</b>你的 seo panel关键字position checker,\r\n请 <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">联系我们</a>或者打开一个页面在<a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">帮助系统</a>. \r\n </p> \r\n <p class=\\"visit\\"> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">访问这个链接联系我们</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Seo Panel插件</h1> \r\n <p> \r\n 增加<b>seo插件</b> 你的seo panel <b>扩展功能</b>根据你的\r\n需求. \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel插件</a>由seo panel\r\n和第三方站点提供. \r\n 你可以 easily <b>develop</b> seo插件来你的seo panel. \r\n 你可以<a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">提交</a>你的seo plugin seo panel 并且\r\n我们会<b>发布</b>到我们的站点在<b>审查</b>之后. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">访问这个链接为了获得seo panel插件</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>联系我们</h1> \r\n <p> \r\n 联系我们来 任何问题 关于 <b>seo panel 工具,插件和功能等等</b> 通过以下链接. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">访问这个链接 联系我们</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>技术支持</h1> \r\n <p> \r\n 为了获得 <b>技术支持</b>从seo panel团队设置<b>seo panel工具,插件和\r\n功能</b>. 例如: 设置cron来关键字位置checker. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">访问这个链接创建一个支持ticket</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>报告Bugs</h1> \r\n <p> \r\n 报告<b>bugs</b> 关于 <b>seo panel 工具,插件和功能等等</b> 通过以下链接. \r\n 请 帮助我们在下个版本来改善功能. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">访问这个链接 报告bugs</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2011-05-04 12:56:00'),
(3184, 'zh', 'support', 'support_cont2', '<fieldset> \r\n<legend>Seo Panel 在线资源</legend> \r\n<ul class=\\"infobox\\"> \r\n \r\n <li> \r\n <h1>Seo Panel 帮助向导</h1> \r\n <p> \r\n 你可以看 <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">seo panel文档</a>在 \r\n<b>帮助向导</b>, 它包括<b>文档</b>来 seo panel 工具,插件和相关的\r\n功能. \r\n <br>这是在因特网获得关于seo panel帮助的<b>最好的地方</b>.如果你发现错误或者缺少东西,我们希望你seo panel 帮助向导<b>报告</b>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">访问seo panel 帮助向导</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Seo Panel论坛</h1> \r\n <p> \r\n 一个地方讨论关于世界上第一款开源的<b>seo control panel</b>. \r\n 这是最好的地方找到<b>答案</b> <b>你的问题</b> 关于 seo panel. \r\n <br> 你可以<b>分享</b>你的<b>经验</b> 在使用seo panel来操作你的\r\n站点. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">访问seo panel论坛</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2011-05-04 12:56:00'),
(3185, 'zh', 'support', 'support_cont3', '<fieldset> \r\n<legend>捐赠 Seo Panel</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>捐赠 Seo Panel - 世界上第一款开源的seo control panel</h1> \r\n <p> \r\n <b>捐赠</b> seo panel支持第一款开源的seo control panel世界上. \r\n 我们计划<b>增加和提高</b> 功能 seo panel 的在未来. \r\n <br>有了你的<b>支持</b>我们才能达到我们的<b>目标</b>. \r\n 如果你觉得seo panel是<b>值得</b>你拥有, 请捐赠支持seo panel 团队. \r\n <br>我们<b>会公布</b> 你的名字和站点信息在<a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">捐赠页面</a>, 一旦我们获得捐赠. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">访问这个链接捐赠 seo panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2011-05-04 12:56:00'),
(3186, 'ro', 'keyword', 'Crawling keyword', 'Cuvant cheie Crawling', '2012-05-19 00:57:55'),
(3187, 'ro', 'keyword', 'Detailed Keyword Position Reports', 'Raport detaliat pozitionare cuvinte cheie', '2012-05-19 00:57:55'),
(3188, 'ro', 'keyword', 'Edit Keyword', 'Editeaza cuvant cheie', '2012-05-19 00:57:55'),
(3189, 'ro', 'keyword', 'Graphical Keyword Position Reports', 'Raport grafic pozitionare cuvant cheie', '2012-05-19 00:57:55'),
(3190, 'ro', 'keyword', 'Import Keywords', 'Importa cuvant cheie', '2012-05-19 00:57:55'),
(3191, 'ro', 'keyword', 'Keyword already exist', 'Cuvantul cheie deja exista', '2012-05-19 00:57:55'),
(3192, 'ro', 'keyword', 'Keyword Position Report', 'Raport pozitionare cavant cheie', '2012-05-19 00:57:55'),
(3193, 'ro', 'keyword', 'New Keyword', 'Cuvant cheie nou', '2012-05-19 00:57:55'),
(3194, 'ro', 'keyword', 'not assigned to required search engines', 'neasignat la motoarele de cautare necesare', '2012-05-19 00:57:55'),
(3195, 'ro', 'keyword', 'pleaseselecttool', 'Va rugam selectati cel putin o unealta Seo', '2012-05-19 00:57:55'),
(3196, 'ro', 'keyword', 'Quick Keyword Position Checker', 'Verificare rapida pozitie cuvant cheie', '2012-05-19 00:57:55'),
(3197, 'ro', 'keyword', 'results from ', 'Rezultate din', '2012-05-19 00:57:55'),
(3198, 'ro', 'keyword', 'Show All results', 'Arata toate rezultatele', '2012-05-19 00:57:55'),
(3199, 'ro', 'keyword', 'Successfully crawled keyword', 'Cuvint cheie crawled cu succes', '2012-05-19 00:57:55'),
(3200, 'ro', 'keyword', 'to create new keywords', 'pentru a crea cuvinte cheie noi', '2012-05-19 00:57:55'),
(3201, 'ro', 'home', 'Account Summary', 'Sumar cont', '2012-05-19 00:57:04'),
(3202, 'ro', 'home', 'Backlinks', 'Backlinks', '2012-05-19 00:57:04'),
(3203, 'ro', 'home', 'Directory Submission', 'Inscriere directoare', '2012-05-19 00:57:04'),
(39561, 'zh', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', '该页面缺少Twitter Card标签 - 限制Twitter优化', '2026-01-19 23:10:34'),
(39562, 'cn', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', '该页面缺少Twitter Card标签 - 限制Twitter优化', '2026-01-19 23:10:34'),
(39563, 'en', 'siteauditor', 'Social Media', 'Social Media', '2026-01-19 23:10:34'),
(39564, 'ar', 'siteauditor', 'Social Media', 'وسائل التواصل الاجتماعي', '2026-01-19 23:10:34'),
(39565, 'bg', 'siteauditor', 'Social Media', 'Социални медии', '2026-01-19 23:10:34'),
(39566, 'de', 'siteauditor', 'Social Media', 'Soziale Medien', '2026-01-19 23:10:34'),
(39567, 'es', 'siteauditor', 'Social Media', 'Redes Sociales', '2026-01-19 23:10:34'),
(39568, 'fr', 'siteauditor', 'Social Media', 'Médias sociaux', '2026-01-19 23:10:34'),
(39569, 'it', 'siteauditor', 'Social Media', 'Social Media', '2026-01-19 23:10:34'),
(39570, 'nl', 'siteauditor', 'Social Media', 'Sociale media', '2026-01-19 23:10:34'),
(39571, 'pl', 'siteauditor', 'Social Media', 'Media społecznościowe', '2026-01-19 23:10:34'),
(39572, 'pt', 'siteauditor', 'Social Media', 'Redes Sociais', '2026-01-19 23:10:34'),
(39573, 'pt-br', 'siteauditor', 'Social Media', 'Redes Sociais', '2026-01-19 23:10:34'),
(39574, 'ru', 'siteauditor', 'Social Media', 'Социальные сети', '2026-01-19 23:10:34'),
(39575, 'tr', 'siteauditor', 'Social Media', 'Sosyal Medya', '2026-01-19 23:10:34'),
(39576, 'zh', 'siteauditor', 'Social Media', '社交媒体', '2026-01-19 23:10:34'),
(39577, 'cn', 'siteauditor', 'Social Media', '社交媒体', '2026-01-19 23:10:34'),
(39578, 'en', 'siteauditor', 'Pages with modern SEO features', 'Pages with modern SEO features', '2026-01-19 23:10:34'),
(39579, 'ar', 'siteauditor', 'Pages with modern SEO features', 'الصفحات ذات ميزات SEO الحديثة', '2026-01-19 23:10:34'),
(39580, 'bg', 'siteauditor', 'Pages with modern SEO features', 'Страници с модерни SEO функции', '2026-01-19 23:10:34'),
(39581, 'de', 'siteauditor', 'Pages with modern SEO features', 'Seiten mit modernen SEO-Funktionen', '2026-01-19 23:10:34'),
(39582, 'es', 'siteauditor', 'Pages with modern SEO features', 'Páginas con características modernas de SEO', '2026-01-19 23:10:34'),
(39583, 'fr', 'siteauditor', 'Pages with modern SEO features', 'Pages avec fonctionnalités SEO modernes', '2026-01-19 23:10:34'),
(39584, 'it', 'siteauditor', 'Pages with modern SEO features', 'Pagine con funzionalità SEO moderne', '2026-01-19 23:10:34'),
(39585, 'nl', 'siteauditor', 'Pages with modern SEO features', 'Pagina''s met moderne SEO-functies', '2026-01-19 23:10:34'),
(39586, 'pl', 'siteauditor', 'Pages with modern SEO features', 'Strony z nowoczesnymi funkcjami SEO', '2026-01-19 23:10:34'),
(39587, 'pt', 'siteauditor', 'Pages with modern SEO features', 'Páginas com recursos modernos de SEO', '2026-01-19 23:10:34'),
(39588, 'pt-br', 'siteauditor', 'Pages with modern SEO features', 'Páginas com recursos modernos de SEO', '2026-01-19 23:10:34'),
(39589, 'ru', 'siteauditor', 'Pages with modern SEO features', 'Страницы с современными функциями SEO', '2026-01-19 23:10:34'),
(39590, 'tr', 'siteauditor', 'Pages with modern SEO features', 'Modern SEO özellikleri olan sayfalar', '2026-01-19 23:10:34'),
(39591, 'zh', 'siteauditor', 'Pages with modern SEO features', '具有现代SEO功能的页面', '2026-01-19 23:10:34'),
(39592, 'cn', 'siteauditor', 'Pages with modern SEO features', '具有现代SEO功能的页面', '2026-01-19 23:10:34'),
(39593, 'en', 'siteauditor', 'Robots.txt Status', 'Robots.txt Status', '2026-01-19 23:10:34'),
(39594, 'ar', 'siteauditor', 'Robots.txt Status', 'حالة Robots.txt', '2026-01-19 23:10:34'),
(39595, 'bg', 'siteauditor', 'Robots.txt Status', 'Robots.txt статус', '2026-01-19 23:10:34'),
(39596, 'de', 'siteauditor', 'Robots.txt Status', 'Robots.txt Status', '2026-01-19 23:10:34'),
(39597, 'es', 'siteauditor', 'Robots.txt Status', 'Estado de Robots.txt', '2026-01-19 23:10:34'),
(39598, 'fr', 'siteauditor', 'Robots.txt Status', 'Statut Robots.txt', '2026-01-19 23:10:34'),
(39599, 'it', 'siteauditor', 'Robots.txt Status', 'Stato Robots.txt', '2026-01-19 23:10:34'),
(39600, 'nl', 'siteauditor', 'Robots.txt Status', 'Robots.txt status', '2026-01-19 23:10:34'),
(39601, 'pl', 'siteauditor', 'Robots.txt Status', 'Status Robots.txt', '2026-01-19 23:10:34'),
(39602, 'pt', 'siteauditor', 'Robots.txt Status', 'Status do Robots.txt', '2026-01-19 23:10:34'),
(39603, 'pt-br', 'siteauditor', 'Robots.txt Status', 'Status do Robots.txt', '2026-01-19 23:10:34'),
(38925, 'bs', 'review', 'Top Review Links', 'Najbolji linkovi recenzija', '2026-01-19 22:58:50'),
(38926, 'ca', 'review', 'Top Review Links', 'Principals enllaços de ressenyes', '2026-01-19 22:58:50'),
(38927, 'cn', 'review', 'Top Review Links', '热门评论链接', '2026-01-19 22:58:50'),
(38928, 'cs', 'review', 'Top Review Links', 'Top odkazy na recenze', '2026-01-19 22:58:50'),
(38929, 'da', 'review', 'Top Review Links', 'Top anmeldelseslinks', '2026-01-19 22:58:50'),
(38930, 'de', 'review', 'Top Review Links', 'Top Bewertungslinks', '2026-01-19 22:58:50'),
(38931, 'el', 'review', 'Top Review Links', 'Κορυφαίοι σύνδεσμοι αξιολογήσεων', '2026-01-19 22:58:50'),
(38932, 'es', 'review', 'Top Review Links', 'Principales enlaces de reseñas', '2026-01-19 22:58:50'),
(38933, 'es-ar', 'review', 'Top Review Links', 'Principales enlaces de reseñas', '2026-01-19 22:58:50'),
(38934, 'fa', 'review', 'Top Review Links', 'برترین لینک های بررسی', '2026-01-19 22:58:50'),
(38935, 'fi', 'review', 'Top Review Links', 'Parhaat arvostelulinkit', '2026-01-19 22:58:50'),
(38936, 'fr', 'review', 'Top Review Links', 'Meilleurs liens d''avis', '2026-01-19 22:58:50'),
(38937, 'he', 'review', 'Top Review Links', 'קישורי ביקורת מובילים', '2026-01-19 22:58:50'),
(38938, 'hi', 'review', 'Top Review Links', 'शीर्ष समीक्षा लिंक', '2026-01-19 22:58:50'),
(3207, 'ro', 'home', 'Pages Indexed', 'Pagini Indexate', '2012-05-19 00:57:04'),
(3208, 'ro', 'home', 'Ranks', 'Ranks', '2012-05-19 00:57:04'),
(3209, 'ro', 'home', 'SiteNameUrl', 'Nume Site/Url', '2012-05-19 00:57:04'),
(3210, 'ro', 'home', 'Website Statistics', 'Statistici Site Web', '2012-05-19 00:57:04'),
(3211, 'ro', 'support', 'support_cont1', '<fieldset> \r\n<legend>Centrul de suport Seo Panel</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>Pachet 1000 de directoare</h1> \r\n <p> \r\n Va oferim <b>1000 de directoare active si pe deasupra gratis</b> un pachet pe care il puteti adauga in panoul SEO la\r\n <b>sectiunea inregistrare in directoare</b>. \r\n Va vom ajuta sa <b>va cresteti backlink-urile</b> site-ului dvs. \r\n Deocamdata lista cu 1000 de directoare <b>mai sus mentionata</b> este pentru colectarea de fonduri <b>pentru desvoltarea viitoare a</b> Seo Panel. \r\n Pentru a lua lista cu 1000 de directoare va rugam <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donati</a>\r\n$10 sau mai mult pentru a imbunatati caracteristicile pachetului Seo Panel. \r\n Daca aveti intrebari asupra pachetului de 1000 de directoare, va rugam <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">contactati-ne</a> sau deschideti un tiket la <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">centrul de suport</a>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Vizitati acest link pentru a dona pentru Seo Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Pachet motoare de cautare locale</h1> \r\n <p> \r\n Adauga <b>domenii de motoare de cautare locale</b> pentru google,yahoo,msn(<b>eg: www.google.de,www.google.fr, www.google.ro\r\netc</b>) in panoul de control Seo <b>Verificare pozitie cuvinte cheie</b>, pentru a va urmari site-ul personal local. \r\n Pentru a beneficia de pachetul motarelor de cautare local(in functie de nevoile dvs.) va rugam <a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donati</a> $10 sau mai mult pentru a imbunatati caracteristicile pachetului Seo Panel. \r\n Inainte de a trimite donatii va rugam, <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contactati-ne</a> pentru a ne da detalii despre motaorele de cautare locale ale dvs.. \r\n <br><br> \r\n Deasemenea pentru a adauga <b>noi motoare de cautare(eg:baidu.com)</b> la verificare pozitionare cuvinte cheie al Panoului Seo al dvs.,\r\nva rugam <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contactati-ne</a> sau deschideti un tiket la <a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">centru de suport</a>. \r\n </p> \r\n <p class=\\"visit\\"> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Vizitati acest link pentru a ne contacta</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Plugin-uri Seo Panel</h1> \r\n <p> \r\n Adauga <b>plugin-uri Seo</b> in panoul de control Seo al dvs. <b>extindeti caracteristicile</b> in functie de necesitatile dvs.. \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Plugin-uri Seo Panel</a> sunt dezvoltate atat de Seo Panel cat si de alte site-uri afiliate. \r\n Puteti deasemenea foarte usor <b>sa dezvoltati</b> plugin-uri seo pentru panoul de control al dvs.\r\n Puteti <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">uploada</a> plugin-urile dvs in panoul de contro Seo si\r\nnoi le vom <b>publica</b> pe site-ul nostru dupa ce le vom <b>verifica</b>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Vizitati acest link pentru a descarca plugin-uri Seo Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Contactati-ne</h1> \r\n <p> \r\n Contactati-ne pentru orice intrebare despre <b>unelte seo panel,plugin-uri si caracteristici etc</b> utilizind link-ul de mai jos. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Vizitati acest link pentru a ne contacta</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Suport Tickete</h1> \r\n <p> \r\n Pentru a avea <b>suport tehnict</b> din partea echipei Seo Panel pentru a seta <b>uneltele Seo panel, plugin-urile si facilitati\r\n</b>. Ex: Pentru a seta un cron pentru verificare pozitionare cuvinte cheie. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Vizitati acest link pentru a creea un tiket de suport nou</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Raportai bug-uri</h1> \r\n <p> \r\n rapoortati <b>bug-uri</b> despre<b>unelte seo panel,plugin-uri si caracteristici etc</b> utilizand link-ul de mai jos. \r\n va rugam ajutati-ne sa imbunatatim facilitatile din noile versiuni. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Vizitati acest link pentru raporta un bug nou </a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2010-11-05 23:42:48'),
(3212, 'ro', 'support', 'support_cont2', '<fieldset> \r\n<legend>Panoul Seo resurse Online</legend> \r\n<ul class=\\"infobox\\"> \r\n \r\n <li> \r\n <h1>Ghid ajutor Panoul Seo</h1> \r\n <p> \r\n Puteti vedea <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">documentatia panoului Seo</a> in\r\n<b>Ghidul de ajutor</b>, contine <b>documentatia</b> pentru uneltele panoului seo ,plugin-uri si caracteristici . \r\n <br>Este cel mai bun loc de pe internet pentru a <b>primi ajutor</b> despre panoul Seo. Speram ca tu vei\r\n<b>contribui</b> la ghidul de ajutor al panoului Seo, daca gasiti erori sau ceva lipsuri. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Vizitati ghidul de ajutor al panoului Seo</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Forum Seo Panel</h1> \r\n <p> \r\n Un loc pentru discutii despre primul opensource <b>panou de control Seo</b>. \r\n Este cel mai bun loc pentru a gasi <b>raspunsuri</b> la <b>intrebarile tale</b> despre panoul Seo. \r\n <br>Deasemenea poti <b>imparti</b> <b>experienta</b> ta in timp de utilizezi panoul seo pentru site-urile tale. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Vizitati forumul panoului Seo</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2010-11-05 23:42:48'),
(3213, 'ro', 'support', 'support_cont3', '<fieldset> \r\n<legend>Donati panoului Seo</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>Donati panoului seo - Primul Open Source panou de control Seo din lume</h1> \r\n <p> \r\n <b>Donati</b> panoului Seo pentru sustinerea primului panou seo din lume. \r\n Planuim sa <b>adaugam si imbunatatim</b> caracteristici ale panoului seo pe viitor. \r\n <br>Cu ajutorul <b>suportului</b> dvs. ne putem atinge <b>telul</b>. \r\n Daca crezi ca panoul de control seo <b>conteaza</b> pentru tine, va rugam donati cat vreti echipei Seo Panel. \r\n <br>Va vom <b>publica</b> numele si informatii despre site-ul dvs in <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">pagina de donatii</a>, de indata ce primim donatia. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Vizitati acest link pentru a dona Panoului Seo</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2010-11-05 23:42:48'),
(3214, 'ro', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Donati $100</b> si deveniti <b>sponsor</b> al Seo Panel.', '2012-05-19 01:16:44'),
(3215, 'ro', 'settings', 'seopanel_description', 'Un panou de control complet gratis pentru a controla optimizarea site-urilor dvs. Contine o ultime de unelte noi pentru a creste si verifica performantele site-ului dvs. Este un software open source si deasemenea va puteti dezvolta singuri plugin-urile pentru panoul seo al dvs.', '2012-05-19 01:16:44'),
(3216, 'ro', 'settings', 'seopanel_title', 'Panoul Seo: Primul open source panou de control Seo din lume pentru managemenetul mai multor site-uri web.', '2012-05-19 01:16:44'),
(3217, 'ro', 'settings', 'SP_CRAWL_DELAY', 'Intarziere intre fiecare spider crawl (secunde)', '2012-05-19 01:16:44'),
(3218, 'ro', 'settings', 'SP_DEFAULTLANG', 'Limba de baza', '2012-05-19 01:16:44'),
(3219, 'ro', 'settings', 'SP_DESCRIPTION', 'Descriere Panou de control Seo', '2012-05-19 01:16:44'),
(3220, 'ro', 'settings', 'SP_ENABLE_PROXY', 'Activare Proxy', '2012-05-19 01:16:44'),
(3221, 'ro', 'settings', 'SP_HOTLINKING', 'Imagine protectie hotlink activata', '2012-05-19 01:16:44'),
(3222, 'ro', 'settings', 'SP_KEYWORDS', 'Cuvinte cheie panoul de control Seo', '2012-05-19 01:16:44'),
(3223, 'ro', 'settings', 'SP_PAGINGNO', 'Numar de intrari per pagina', '2012-05-19 01:16:44'),
(3224, 'ro', 'settings', 'SP_TITLE', 'Titlu panou de control seo', '2012-05-19 01:16:44'),
(3225, 'ro', 'settings', 'SP_USER_GEN_REPORT', 'Lasa utilizatorii sa genereze rapoarte', '2012-05-19 01:16:44'),
(3226, 'ro', 'settings', 'SP_USER_REGISTRATION', 'Interfata inregistrare utilizator', '2012-05-19 01:16:44'),
(3227, 'ro', 'settings', 'syssettingssaved', 'Setarea sistemului salvata cu succes!', '2012-05-19 01:16:44');
INSERT INTO `texts` VALUES
(3228, 'ro', 'seotools', 'Automatic Submission', 'Inregistrare automata', '2011-07-13 06:03:17'),
(3229, 'ro', 'seotools', 'backlink-checker', 'Verificator backlink-uri', '2011-07-13 06:03:17'),
(3230, 'ro', 'seotools', 'Backlinks Reports', 'Rapoarte backlink-uri', '2011-07-13 06:03:17'),
(3231, 'ro', 'seotools', 'Check Submission Status', 'Verifica status inregistrari', '2011-07-13 06:03:17'),
(3232, 'ro', 'seotools', 'clickgeneratereports', 'Apasa pe <b>Continua</b> pentru a genera rapoarte', '2011-07-13 06:03:17'),
(3233, 'ro', 'seotools', 'Detailed Position Reports', 'Rapoarte pozitionare detaliate', '2011-07-13 06:03:17'),
(3234, 'ro', 'seotools', 'directory-submission', 'Inregistrare directoare', '2011-07-13 06:03:17'),
(3235, 'ro', 'seotools', 'Featured Submission', 'Inregistrare viitoare', '2011-07-13 06:03:17'),
(3236, 'ro', 'seotools', 'Generate Backlinks Reports', 'Genereaza rapoarte backlink-uri', '2011-07-13 06:03:17'),
(3237, 'ro', 'seotools', 'Generate Keyword Reports', 'Genereaza rapoarte cuvinte cheie', '2011-07-13 06:03:17'),
(3238, 'ro', 'seotools', 'Generate Rank Reports', 'Genereaza rapoarte de rank', '2011-07-13 06:03:17'),
(3239, 'ro', 'seotools', 'Generate Saturation Reports', 'Genereaza rapoarte de saturatie', '2011-07-13 06:03:17'),
(3240, 'ro', 'seotools', 'Google Sitemap Generator', 'Generator Google Sitemap', '2011-07-13 06:03:17'),
(3241, 'ro', 'seotools', 'Graphical Position Reports', 'Rapoarte pozitionale grafica', '2011-07-13 06:03:17'),
(3242, 'ro', 'seotools', 'Keyword Position Summary', 'Sumar pozitionare cuvinte cheie', '2011-07-13 06:03:17'),
(3243, 'ro', 'seotools', 'keyword-position-checker', 'Verificator pozitionare cuvinte cheie', '2011-07-13 06:03:17'),
(3244, 'ro', 'seotools', 'Keywords Manager', 'Manager cuvinte cheie', '2011-07-13 06:03:17'),
(3245, 'ro', 'seotools', 'Quick Backlinks Checker', 'Verificator rapid backlink-uri', '2011-07-13 06:03:17'),
(3246, 'ro', 'seotools', 'Quick Position Checker', 'Verificator rapid pozitionare', '2011-07-13 06:03:17'),
(3247, 'ro', 'seotools', 'Quick Rank Checker', 'Verificator rapid rank', '2011-07-13 06:03:17'),
(3248, 'ro', 'seotools', 'Quick Saturation Checker', 'Verificator rapid saturatie', '2011-07-13 06:03:17'),
(3249, 'ro', 'seotools', 'Rank Reports', 'Rapoarte Rank', '2011-07-13 06:03:17'),
(3250, 'ro', 'seotools', 'rank-checker', 'Verificator Rank', '2011-07-13 06:03:17'),
(3251, 'ro', 'seotools', 'Saturation Reports', 'Rapoarte Saturatie', '2011-07-13 06:03:17'),
(3252, 'ro', 'seotools', 'saturation-checker', 'Saturatie motoare de cautare', '2011-07-13 06:03:17'),
(3253, 'ro', 'seotools', 'sitemap-generator', 'Generator Sitemap', '2011-07-13 06:03:17'),
(3254, 'ro', 'seotools', 'Skipped Directories', 'Directoare neinscrise', '2011-07-13 06:03:17'),
(3255, 'ro', 'seotools', 'Submission Reports', 'Rapoarte inregistrare', '2011-07-13 06:03:17'),
(3256, 'ro', 'seotools', 'User Access', 'Acces utilizator', '2011-07-13 06:03:17'),
(3257, 'ro', 'saturation', 'clickproceedsaturation', 'Introduceti URL-urile <b>cate unul pe rand</b>. Apasa pe <b>Continua</b> pentru a verifica rezultatele saturatiei motoarelor de cautare', '2010-11-02 12:44:38'),
(3258, 'ro', 'saturation', 'GenerateSaturationReports', 'Genereaza rapoarte saturatie motoare de cautare', '2010-11-02 12:44:38'),
(3259, 'ro', 'saturation', 'Quick Search Engine Saturation Checker', 'Verificator rapid saturatie motoare de cautare', '2010-11-02 12:44:38'),
(3260, 'ro', 'saturation', 'Saved Search Engine Saturation results of', 'Saturatie motoare de cautare salvate rezultat din', '2010-11-02 12:44:38'),
(3261, 'ro', 'saturation', 'Search Engine Saturation Reports', 'rapoarte saturatie motoare de cuatare', '2010-11-02 12:44:38'),
(3262, 'ro', 'login', 'Confirm Password', 'Confirmare parola', '2012-05-19 01:02:44'),
(3263, 'ro', 'login', 'Create my account', 'Creaza contul', '2012-05-19 01:02:44'),
(3264, 'ro', 'login', 'Create New Account', 'Creaza cont nou', '2012-05-19 01:02:44'),
(3265, 'ro', 'login', 'Email', 'E-mail', '2012-05-19 01:02:44'),
(3266, 'ro', 'login', 'emailexist', 'Adresa de e-mail exista in baza de date!', '2012-05-19 01:02:44'),
(3267, 'ro', 'login', 'Enter the code as it is shown', 'Introduceti codul dupa cum este aratat', '2012-05-19 01:02:44'),
(3268, 'ro', 'login', 'First Name', 'Nume', '2012-05-19 01:02:44'),
(3269, 'ro', 'login', 'Last Name', 'Prenume', '2012-05-19 01:02:44'),
(3270, 'ro', 'login', 'Login', 'Autentificare', '2012-05-19 01:02:44'),
(3271, 'ro', 'login', 'Login incorrect', 'Autentificare incorecta', '2012-05-19 01:02:44'),
(3272, 'ro', 'login', 'newaccountsuccess', 'Cont nou creat cu succes!', '2012-05-19 01:02:44'),
(3273, 'ro', 'login', 'Password', 'Parola', '2012-05-19 01:02:44'),
(3274, 'ro', 'login', 'Password incorrect', 'Parola incorecta', '2012-05-19 01:02:44'),
(3275, 'ro', 'login', 'Register', 'Inregistrare', '2012-05-19 01:02:44'),
(3276, 'ro', 'login', 'Sign in to your account', 'Autentificare in contul dvs.', '2012-05-19 01:02:44'),
(3277, 'ro', 'login', 'User inactive', 'Utilizator inactiv', '2012-05-19 01:02:44'),
(3278, 'ro', 'login', 'Username', 'Nume utilizator', '2012-05-19 01:02:44'),
(3279, 'ro', 'login', 'usernameexist', 'Nume utilizator deja existenta', '2012-05-19 01:02:44'),
(3280, 'ro', 'label', 'already exist', 'deje exista', '2012-05-19 01:00:22'),
(3281, 'ro', 'label', 'Authentication', 'Autentificare', '2012-05-19 01:00:22'),
(3282, 'ro', 'label', 'Author', 'Autor', '2012-05-19 01:00:22'),
(3283, 'ro', 'label', 'Click Here', 'Apasa aici', '2012-05-19 01:00:22'),
(3284, 'ro', 'label', 'Cron', 'Cron', '2012-05-19 01:00:22'),
(3285, 'ro', 'label', 'Description', 'Descriere', '2012-05-19 01:00:22'),
(3286, 'ro', 'label', 'Developers', 'Dezvoltatori', '2012-05-19 01:00:22'),
(3287, 'ro', 'label', 'Download', 'Download', '2012-05-19 01:00:22'),
(3288, 'ro', 'label', 'Installation', 'Instalare', '2012-05-19 01:00:22'),
(3289, 'ro', 'label', 'Keywords', 'Cuvinte cheie', '2012-05-19 01:00:22'),
(3290, 'ro', 'label', 'noactiveplugins', 'Niciun plugin seo gasit!', '2012-05-19 01:00:22'),
(3291, 'ro', 'label', 'Plugin', 'Plugin', '2012-05-19 01:00:22'),
(3292, 'ro', 'label', 'Port', 'Port', '2012-05-19 01:00:22'),
(3293, 'ro', 'label', 'Proxy', 'Proxy', '2012-05-19 01:00:22'),
(3294, 'ro', 'label', 'Re-install', 'Re-instaleaza', '2012-05-19 01:00:22'),
(3295, 'ro', 'label', 'Sponsors', 'Sponsori', '2012-05-19 01:00:22'),
(3296, 'ro', 'label', 'Title', 'Titlu', '2012-05-19 01:00:22'),
(3297, 'ro', 'label', 'translation by', 'Tradus de', '2012-05-19 01:00:22'),
(3298, 'ro', 'label', 'Translators', 'Traducatori', '2012-05-19 01:00:22'),
(3299, 'ro', 'label', 'Upgrade', 'Upgrade', '2012-05-19 01:00:22'),
(3300, 'ro', 'label', 'Version', 'Versiune', '2012-05-19 01:00:22'),
(3301, 'ro', 'label', 'wantproceed', 'Chiar vrei sa continui?', '2012-05-19 01:00:22'),
(3302, 'hu', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Támogatói Rendszer</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>1000 darabos katalóguscsomag</h1> \r\n <p>\r\n Biztosítunk egy <b>1000 darabos ingyenes</b> katalóguscsomagot, melyekbe automatikusan tudja weboldalait beküldeni a <b>linkbeküldő eszközzel</b>.\r\n Ezzel könnyedén növelheti oldalainak backlink számát <b>oldalainak backlink számát</b>.\r\n A katalógusok megszerzéséhez kérlek <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">támogasd</a> minimum\r\n$10-al a Seo Panel fejlesztését.\r\n Ha kérdésed van a csomaggal kapcsolatban kérlek lépj <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">kapcsolatba velünk</a>, vagy kérjen egy jegyet az <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">ügyfélszolgálattól</a>. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">A Seo panel támogatáshoz látogassa meg ezt a linket.</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Helyi keresőmotor csomag</h1> \r\n <p>\r\n Adjon <b>helyi keresést</b> a google-hoz,yahoo-hoz,msn-hez(például: <b>www.google.de,www.google.fr,www.google.hu\r\nstb..</b>). Így a <b>kulcsszóhelyezés vizsgálóval</b> a lokalizált eredményeket tudja megtekinteni. \r\n A helyi keresőcsomag megszerzéséhez <a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">támogatnia</a> kell minimum $10-al a Seo Panelt.\r\n Mielőtt elküldené a támogatást, kérem lépjen <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">velünk kapcsolatba</a>, és küldje el nekünk az Ön által kívánt keresőmotor domain kiterjesztését(pl.: .hu, .fr stb..).\r\n <br><br> \r\n Új <b>keresőmotor</b>(pl.:baidu.com) hozzáadásához,\r\nkérem lépjen <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">kapcsolatba velünk</a>, vagy kérjen egy jegyet az <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">ügyfélszolgálattól</a>. \r\n </p> \r\n <p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Látogassa meg ezt a linket, hogy kapcsolatba léphessen velünk.</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Kiegészítők</h1> \r\n <p>\r\n Adjon hozzá különböző <b>kiegészítőket</b> Seo paneljéhez, hogy <b>bővíthesse a funkcióit</b>.\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel kiegészítőket</a> a Seo panel hivatalos oldala mellett egyéb oldalakon is találhat.\r\n Könnyedén <b>fejleszthet</b> Ön is Seo Kiegészítőket a Seo Panelhez.\r\n Az ön által fejlesztett kiegészítőket <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">beküldheti</a> a Seo Panel oldalára ahol egy rövid áttekintés után <b>megjelenik</b> a többi kiegészítő között. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Kiegészítők letöltéséhez látogassa meg ezt az oldalt.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Kapcsolat</h1> \r\n <p>\r\n Ha bármilyen kérdése van(<b>kiegészítők, fejlesztés, stb..</b>), akkor az alábbi linken lépjen velünk kapcsolatba. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Látogassa meg ezt az oldalt a kapcsolatfelvételhez.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Ügyfélszolgálati jegy</h1> \r\n <p>\r\n A Seo panel csapat <b>Technikai támogatásért</b>(kiegészítők telepítése, cron beállítása) lépjen kapcsolatba az ügyfélszolgálattal.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Látogassa meg ezt a linket, hogy kapcsolatba léphessen az ügyfélszolgálattal.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Hibák bejelentése</h1> \r\n <p>\r\n <b>Hibák</b> bejelentéséhez használja az alábbi linket. Ezzel nagymértékben hozzájárul a program fejlesztéséhez. \r\n \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Hibabejelentéshez kérem látogassa me
Showing 512.00 KB of 3.37 MB. Use Edit/Download for full content.
Directory Contents
Dirs: 6 × Files: 16