(.*?)<\\/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. Dodajte linkove recenzija 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. Adjon hozzá értékelési hivatkozásokat , hogy elkezdhesse követni értékeléseit és értékeléseit.', '2026-01-19 22:58:50'),
(39031, 'hy', 'review', 'No review data available', 'Ակնարկների տվյալներ չկան: Ավելացրեք ակնարկների հղումներ ՝ սկսելու հետևել ձեր ակնարկներին և վարկանիշներին:', '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', '\r\nSeo Panel Support System \r\n\r\n \r\n Seo Panel All Plugin Tool kit \r\n \r\n It includes most of the plugins developed by seo panel team for just $160 includes Membership Subscription ,themes etc.\r\n
\r\n \r\n Visit this link to order it \r\n
\r\n \r\n \r\n \r\n \r\n Local Search Engines Package \r\n \r\n Add local search engine domains of google,yahoo,msn(eg: www.google.de,www.google.fr etc ) to seo panel keyword position checker , to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please donate $10 or more to improve the features of seo panel.\r\n Before sending donation, please contact us to provide us required search engine domain list.\r\n \r\n Also to add new search engines(eg:baidu.com) to your seo panel keyword position checker, please contact us or open a ticket in support system . \r\n
\r\n \r\n Visit this link to contact us \r\n
\r\n \r\n \r\n \r\n \r\n Seo Panel Plugins \r\n \r\n Add seo plugins to your seo panel to extend the features according to your requirement.\r\n Seo panel plugins are provided by both seo panel and third party sites.\r\n You can also easily develop seo plugins for your seo panel.\r\n You can submit your seo plugin to seo panel and we will publish it in our website after our review process. \r\n
\r\n \r\n Visit this link to get seo panel plugins \r\n
\r\n \r\n \r\n \r\n Contact Us \r\n \r\n Contact us for any questions about seo panel tools,plugins and features etc by using below link. \r\n
\r\n \r\n Visit this link to contact us \r\n
\r\n \r\n \r\n \r\n Support Tickets \r\n \r\n To get technical support from seo panel team to setup the seo panel tools,plugins and features . Eg: To set up cron for keyword position checker.\r\n
\r\n \r\n Visit this link to create a support ticket \r\n
\r\n \r\n \r\n \r\n Report Bugs \r\n \r\n Report bugs about seo panel tools,plugins and features etc by using below link. \r\n please help us to improve the features in next versions. \r\n
\r\n \r\n Visit this link to report bugs \r\n
\r\n \r\n \r\n \r\n ', '2019-08-06 10:02:01'),
(23, 'en', 'support', 'support_cont2', '\r\nSeo Panel Online Resources \r\n\r\n \r\n \r\n Seo Panel Help Guide \r\n \r\n You can view the seo panel documentation in the help guide , it contains the documentation for the seo panel tools,plugins and related features.\r\n It is the best place in internet to get help about seo panel. We hope that you contribute to the seo panel help guide, if you find errors or things missing. \r\n
\r\n \r\n Visit seo panel help guide \r\n
\r\n \r\n \r\n \r\n Seo Panel Forum \r\n \r\n A place to discuss about world''s first open source seo control panel . \r\n It is the best place to find the answers to your questions about seo panel. \r\n Also you can share your experience while using seo panel for optimizing your websites. \r\n
\r\n \r\n Visit seo panel forum \r\n
\r\n \r\n \r\n \r\n ', '2019-08-06 10:02:01'),
(24, 'en', 'support', 'support_cont3', '\r\nDonate to Seo Panel \r\n \r\n \r\n Donate to Seo Panel - First Open source seo control panel in the world \r\n \r\n Donate to seo panel to support first open source seo control panel in the world.\r\n We are planning to add and improve features of seo panel in future. \r\n With all your support only we can achieve our goals .\r\n If you feel that seo panel is worth for you, please donate some amount to seo panel team.\r\n We will publish your name and site information in donation page , once we get donation.\r\n
\r\n \r\n Visit this link to donate to seo panel \r\n
\r\n \r\n \r\n \r\n ', '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 Proceed 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 Proceed 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 One per line . Click on Proceed 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 One per line . Click on Proceed 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 One per line . Click on Proceed 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 Website to Proceed directory submission. Check Directories with out captcha 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 Active directories Found', '2010-09-15 12:17:08'),
(176, 'en', 'directory', 'nocatnote', 'The submission category not found in submission page. Please click on Reload or Skip ', '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 Website to Proceed 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 Proceed 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', 'Pro Zeile eine URL angeben. Auf Starten 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, una por línea . Haga clic en Continuar 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 une URL par ligne . Cliquer sur Valider 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 Proceder 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 Recargar o Omitir ', '2012-05-31 14:35:43'),
(365, 'es', 'directory', 'nodirnote', 'Ningún directorio Activo 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 Página web para Proceder a el envio del directorio. Seleccione los Directorios sin\r\ncaptcha para enviar solo a directorios sin captcha o anti-spam', '2012-05-31 14:35:43'),
(373, 'es', 'directory', 'selectwebsiteschecksub', 'Seleccione una página web para Proceder 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 Valider 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 Continuar 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 Una por línea . Haga clic en Continuar 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 Una por línea . Haga clic en Continuar o Proceder 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. Lisää arvostelulinkkejä aloittaaksesi arvostelujesi ja arviointisi seurannan.', '2026-01-19 22:58:50'),
(39026, 'fr', 'review', 'No review data available', 'Aucune donnée d''avis disponible. Ajoutez des liens d''avis pour commencer à suivre vos avis et vos notes.', '2026-01-19 22:58:50'),
(39027, 'he', 'review', 'No review data available', 'אין נתונים זמינים של ביקורות. הוסף קישורי ביקורת כדי להתחיל לעקוב אחר הביקורות והדירוגים שלך.', '2026-01-19 22:58:50');
INSERT INTO `texts` VALUES
(39028, 'hi', 'review', 'No review data available', 'कोई समीक्षा डेटा उपलब्ध नहीं है। अपनी समीक्षाओं और रेटिंग को ट्रैक करना शुरू करने के लिए समीक्षा लिंक जोड़ें ।', '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 Continuar 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', '\r\nSeo Panel Sistema de Soporte \r\n\r\n \r\n 1000 Directorios Paquete \r\n \r\n Estamos proporcionando un paquete con 1000 directorios en internet activos y verificados , 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 backlilnks de sus sitios web.\r\n \r\nEn realidad la lista de 1000 directorios se realizó para recoger algo de dinero para el futuro \r\ndesarrollo de Seo Panel.\r\n\r\n Para obtener la lista de directorios 1000 por favor \\" target=\\"_blank\\">realice una donación de \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 \\"\r\ntarget=\\"_blank\\">contáctenos o abrir un ticket en \\"\r\ntarget=\\"_blank\\">soporte del sistema . \r\n
\r\n \r\n \\" target=\\"_blank\\">Visite este enlace para donar a seo panel \r\n
\r\n \r\n \r\n \r\n \r\n Paquete de motores de búsqueda local \r\n \r\n \r\nAñada motores de búsqueda locales de google, yahoo, msn (por ejemplo, : www.google.de, www.google.fr Etc ) 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 \\" target=\\"_blank\\">realice una donación de $ 10 o más para mejorar las características de seo panel.\r\n Antes de la donación, por favor \\" target=\\"_blank\\">contactenos para que nos proporcione la lista de los buscadores locales.\r\n \r\n También para agregar nuevos motores de búsqueda (por ejemplo: baidu.com) para poder comprobar sus mejoras en estos buscadores con sus palabras clave,\r\npor favor \\" target=\\"_blank\\">contactenos o abra un ticket en\\" target=\\"_blank\\">la sección de soporte del sistema . \r\n
\r\n \r\n \\" target=\\"_blank\\">Visita este enlace para contactar con nosotros \r\n
\r\n \r\n \r\n \r\n \r\n Seo Panel Plugins \r\n \r\n Añada plugins SEO a su panel seo para ampliar las características de acuerdo a sus requisitos.\r\n \\" target=\\"_blank\\">Seo panel plugins son proporcionados por el panel seo\r\ny sitios de terceros.\r\n También es posible desarrollar plugins SEO para su panel de seo.\r\n Usted puede \\" target=\\"_blank\\">presentar su plugin seo a Seo Panel y\r\nvamos a publicarlo en nuestro sitio web después de nuestra revisión . \r\n
\r\n \r\n \\" target=\\"_blank\\">Visita este enlace para obtener los plugins de Seo Panel \r\n
\r\n \r\n \r\n \r\n Contactenos \r\n \r\n Contacte con nosotros para cualquier pregunta sobre las Herramientas Seo Panel, plugins y otras características mediante el uso de este enlace. \r\n
\r\n \r\n \\" target=\\"_blank\\">Visita este enlace para contactar con nosotros \r\n
\r\n \r\n \r\n \r\n Boletos de Soporte \r\n \r\n Para obtener apoyo técnico del equipo Seo Panel o para configurar el panel de Herramientas Seo o plugins y\r\n otras características . Por ejemplo: Para configurar el cron para la posición corrector de palabras clave.\r\n
\r\n \r\n \\" target=\\"_blank\\">Visita este enlace para crear un tiket de soporte \r\n
\r\n \r\n \r\n \r\n Informar de bugs \r\n \r\n Informanos debugs o errores sobre Seo Panel, las herramientas, plugins o características mediante el uso de link de abajo.\r\n Ayudanos a mejorar las características en las versiones siguientes. \r\n
\r\n \r\n \\" target=\\"_blank\\">Visita este enlace para informar de los errores \r\n
\r\n \r\n \r\n \r\n ', '2011-07-13 23:45:23'),
(573, 'es', 'support', 'support_cont2', '\r\nSeo Panel Recursos en linea \r\n\r\n \r\n \r\n Seo Panel Guía de Ayuda \r\n \r\n Puede ver la \\" target=\\"_blank\\">seo panel documentación en el\r\nguía de ayuda , que contiene e documentación para el panel de herramientas seo, plugins y afines\r\ncaracterísticas.\r\n Es el mejor lugar en Internet para obtener ayuda acerca del panel de seo. Esperamos que\r\n contribuir para ayudar a la guía del panel seo, si usted encuentra errores o cosas que faltan. \r\n
\r\n \r\n \\" target=\\"_blank\\">Visita seo panel de guía de ayuda \r\n
\r\n \r\n \r\n \r\n Seo Panel Foro \r\n \r\n Un sitio para hablar sobre la primera fuente abierta del mundo seo panel de control .\r\n Es el mejor lugar para encontrar las respuestas para su preguntas acerca del panel de seo. \r\n Además, puede comparte el experiencia , mientras que usando el panel de SEO para optimizar su\r\nsitios web. \r\n
\r\n \r\n \\" target=\\"_blank\\">Visita seo panel foro \r\n
\r\n \r\n \r\n \r\n ', '2011-07-13 23:45:23'),
(574, 'es', 'support', 'support_cont3', '\r\nHaz una donación a Seo Panel \r\n \r\n \r\n Haz una donación a Seo Panel - El primer Open source seo panel de control en el mundo \r\n \r\n Realiza una donación a Seo Panel para ayudar al primer portal Open Source para el control SEO del mundo.\r\n Estamos planeando añadir y mejorar características del Seo panel en el futuro.\r\n Solo con sus apoyos podremos alcanzar nuesttros objetivos .\r\n Si usted siente que es el panel seo vale la pena para usted, por favor, realice alguna donación para el equipo de Seo Panel.\r\n Nosostros publicararemos su nombre y pápgina web en la sección de donaciónes de nuestra página web \\"\r\ntarget=\\"_blank\\">Página de donaciones , una vez que tengamos su donación.\r\n
\r\n \r\n \\" target=\\"_blank\\">Visita este enlace para donar a seo panel \r\n
\r\n \r\n \r\n \r\n ', '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', 'Donate $100 and become a sponsor 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', 'Faire un don $100 et devenir un sponsor 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. Agregue enlaces de reseñas 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. Agregue enlaces de reseñas para comenzar a rastrear sus reseñas y calificaciones.', '2026-01-19 22:58:50'),
(39024, 'fa', 'review', 'No review data available', 'داده های بررسی در دسترس نیست. لینک های بررسی را اضافه کنید تا ردیابی بررسی ها و امتیازات خود را شروع کنید.', '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 Valider 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 Recharger ou Passer ', '2012-11-11 01:37:55'),
(716, 'fr', 'directory', 'nodirnote', 'Aucun annuaire actif ', '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 site à envoyer à l\\''annuaire. Cocher l\\''option Annuaires sans captcha pour envoyer aux annuaires sans confirmation humaine.', '2012-11-11 01:37:55'),
(724, 'fr', 'directory', 'selectwebsiteschecksub', 'Sélectionner un site à 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 une URL par ligne . Cliquer sur Valider 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 une URL par ligne . Cliquez sur valider 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 Valider 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', '\r\nSupport Seo Panel \r\n\r\n \r\n Pack de 1000 annuaires \r\n \r\n Nous pouvons vous fournir un pack de 1000 annuaires gratuits, actifs et vérifiés , à ajouter à votre Seo Panel.\r\n Cela vous aidera à augmenter les liens retour vers vos sites. \r\n Ce pack a été créé pour financer les prochains dévelopements de Seo Panel. \r\n Pour obtenir le pack, merci de \\" target=\\"_blank\\">donner 10$ ou plus, pour aider à améliorer Seo Panel. \r\n Si vous avez des questions sur ce pack de 1000 annuaires, n\\''hésitez pas à \\" target=\\"_blank\\">nous contacter ou à \\" target=\\"_blank\\">ouvrir un ticket .\r\n
\r\n \r\n \\" target=\\"_blank\\">Cliquer ici pour aider à financer Seo Panel. \r\n
\r\n \r\n \r\n \r\n \r\n Pack de moteurs de recherche locaux \r\n \r\n Ajoutez les moteurs de recherche locaux de Google, Yahoo, MSN (ex: www.google.fr, www.yahoo.fr, ... ) au contrôle de position sur mot-clé , pour suivre le référencement local de vos sites. \r\n Pour obtenir le pack de moteurs de recherche locaux (en fonction de vos besoins), merci de \\" target=\\"_blank\\">donner 10$ ou plus pour aider à améliorer Seo Panel. \r\n Avant de faire le don, merci de \\" target=\\"_blank\\">nous contacter afin de nous communiquer la liste des moteurs de recherche souhaités. \r\n Si vous souhaitez ajouter de nouveaux moteurs de recherches à votre suivi de position sur mot-clé Seo Panel, merci de \\" target=\\"_blank\\">nous contacter ou d\\''\\" target=\\"_blank\\">ouvrir un ticket .\r\n
\r\n \r\n \\" target=\\"_blank\\">Cliquer ici pour nous contacter. \r\n
\r\n \r\n \r\n \r\n \r\n Plugins Seo Panel \r\n \r\n Ajouter des plugins à votre Seo Panel, afin d\\''ajouter de nouvelles fonctionnalités , selon vos besoins. \r\n Les \\" target=\\"_blank\\">plugins Seo Panel sont disponibles via Seo Panel, ou des tiers. \r\n Vous pouvez facilement développer des plugins pour votre Seo Panel, et \\" target=\\"_blank\\">soumettre vos plugins sur le site Seo Panel, où ils seront publiés après validation . \r\n
\r\n \r\n \\" target=\\"_blank\\">Cliquer ici pour obtenir les plugins disponibles. \r\n
\r\n \r\n \r\n \r\n Nous contacter \r\n \r\n N\\''hésitez pas à nous contacter à propos des outils, plugins et fonctionnalités de Seo Panel en utilisant le lien ci-dessous.\r\n
\r\n \r\n \\" target=\\"_blank\\">Cliquer ici pour nous contacter. \r\n
\r\n \r\n \r\n \r\n Tickets de Support \r\n \r\n Pour obtenir un support technique de l\\''équipe Seo Panel sur l\\''installation de Seo Panel, des outils ou des plugins . Ex.: Configurer l\\''exécution périodique (cron) du contrôle de position sur mot-clé, résoudre un dysfonctionnement post-installation, ...\r\n
\r\n \r\n \\" target=\\"_blank\\">Cliquer ici pour ouvrir un ticket de support technique. \r\n
\r\n \r\n \r\n \r\n Signaler un bug \r\n \r\n Signalez les bugs de Seo Panel, des outils ou des plugins en utilisant le lien ci-dessous. \r\n Cela nous aidera à améliorer les prochaines versions.\r\n
\r\n \r\n \\" target=\\"_blank\\">Cliquer ici pour signaler un bug. \r\n
\r\n \r\n \r\n \r\n ', '2010-09-28 14:36:44'),
(790, 'fr', 'support', 'support_cont2', '\r\nSeo Panel - Ressources en ligne \r\n\r\n \r\n \r\n L\\''aide Seo Panel \r\n \r\n Vous pouvez consulter la \\" target=\\"_blank\\">documentation pour Seo Panel, ses fonctionnalités, ainsi que les outils et plugins.\r\n C\\''est le meilleur endroit pour avoir de l\\''aide sur Seo Panel. Nous espérons que vous pourrez contribuer au guide Seo Panel, si vous trouvez des erreurs ou des choses qui manquent.\r\n
\r\n \r\n \\" target=\\"_blank\\">Cliquer ici pour voir l\\''aide Seo Panel. \r\n
\r\n \r\n \r\n \r\n Le forum Seo Panel \r\n \r\n Un endroit où discuter du premier panneau de contrôle Seo en open source au monde . C\\''est le meilleur endroit pour trouver des réponses à vos questions à propos de Seo Panel. Vous pouvez aussi y partager vos expériences afin d\\''optimiser le référencement de vos sites internet.\r\n
\r\n \r\n \\" target=\\"_blank\\">Cliquer ici pour aller sur le forum Seo Panel \r\n
\r\n \r\n \r\n \r\n ', '2010-09-28 14:36:44'),
(791, 'fr', 'support', 'support_cont3', '\r\nDons pour Seo Panel \r\n \r\n \r\n Donnez pour Seo Panel - Le premier panneau de contrôle open source Seo au monde \r\n \r\n Donnez à Seo Panel pour financer le premier panneau de contrôle open source Seo au monde. \r\n Nous prévoyons bien sur des ajouts et améliorations des fonctionnalités de Seo Panel, et grâce à votre support, nous pourrons atteindre les buts fixés .\r\n Si vous appréciez Seo Panel , merci de faire un don à l\\''équipe Seo Panel afin d\\''aider à financer son développement. \r\n Dès réception de votre don, nous publierons, avec votre accord, votre nom et votre site sur la \\" target=\\"_blank\\">page de dons .\r\n \r\n \r\n
\r\n \r\n \\" target=\\"_blank\\">Cliquer ici pour faire un don \r\n
\r\n \r\n \r\n \r\n ', '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', 'Realiza una donación de 100 usd y conviértete en un sponsor 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 Starten 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. Neu laden oder Überspringen ', '2021-06-15 01:41:51'),
(878, 'de', 'directory', 'nodirnote', 'Keine aktiven 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 Webseite und starte die Verzeichniseintragung. Setze einen Haken bei Verzeichnisse ohne Captcha Abfrage um Verzeichnisse mit Captcha Abfrage zu überspringen.', '2021-06-15 01:41:51'),
(886, 'de', 'directory', 'selectwebsiteschecksub', 'Wähle eine Webseite und starte 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', '暂无评论数据。添加评论链接 以开始跟踪您的评论和评分。', '2026-01-19 22:58:50'),
(39018, 'cs', 'review', 'No review data available', 'Nejsou k dispozici žádná data o recenzích. Přidejte odkazy na recenze , 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. Tilføj anmeldelseslinks 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. Fügen Sie Bewertungslinks hinzu , um Ihre Bewertungen und Ratings zu verfolgen.', '2026-01-19 22:58:50'),
(39021, 'el', 'review', 'No review data available', 'Δεν υπάρχουν διαθέσιμα δεδομένα αξιολογήσεων. Προσθέστε συνδέσμους αξιολογήσεων για να ξεκινήσετε την παρακολούθηση των αξιολογήσεων και των βαθμολογιών σας.', '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', 'Pro Zeile eine URL angeben. Auf Starten 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', 'Pro Zeile eine URL angeben. Auf Starten 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 Starten 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', 'Spende $100 und werde SEO Panel Sponsor .', '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 Starten 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', '\r\nSeo Panel Support System \r\n\r\n \r\n Seo Panel - Alle Erweiterungen \r\n \r\n Enthaelt die meissten vom SEO Panel Team entwickelten Erweiterungen fuer nur $160 inklusive Mitglieder Abonnement ,Templates etc.\r\n
\r\n \r\n Hier klicken um zu bestellen \r\n
\r\n \r\n \r\n \r\n \r\n Das Lokale-Suchmaschinen-Paket \r\n \r\n Fuege lokale Suchmaschinendomains fuer google,yahoo,msn(z.B: www.google.de,www.google.fr etc ) zum Seo Panel Keyword Ranking Checker hinzu, um das Ranking lokal zu analysieren.\r\n Um lokale Suchmaschinen-Pakete zu erhalten, bitte spende $10 oder mehr um SEO Panel zu verbessern.\r\n Bevor du spendest, nimm bitte Kontakt auf und nenne uns die benoetigten Suchmaschinen Laenderkennzeichnungen.\r\n \r\n Um neue Suchmaschinen(z.B.:baidu.com) hinzuzufuegen, nimm bitte Kontakt auf oder oeffne ein Ticket im Support System . \r\n
\r\n \r\n Hier klicken um Kontakt aufzunehmen. \r\n
\r\n \r\n \r\n \r\n \r\n Seo Panel Erweiterungen \r\n \r\n Integriere SEO Erweiterungen in Seo Panel, um die Features zu erweiteren um Sie deinen Anforderungen anzupassen.\r\n Seo Panel Erweiterungen sind erhaeltlich von Seo Panel und Drittanbietern.\r\n Es ist auch leicht, selbst Erweiterungen fuer Seo Panel zu entwickeln .\r\n Du kannst deine eigene Erweiterung uebermitteln und wir werden es auf der webseite veroeffentlichen . \r\n
\r\n \r\n Hier klicken fuer Seo Panel Erweiterungen \r\n
\r\n \r\n \r\n \r\n Kontakt \r\n \r\n Nimm mit uns Kontakt auf, wenn Fragen zu Seo Panel Tools, Erweiterungen, etc.. bestehen. \r\n
\r\n \r\n Hier klicken um Kontakt aufzunehmen. \r\n
\r\n \r\n \r\n \r\n Support Tickets \r\n \r\n Fuer technischen Support vom Seo Panel Team.\r\n
\r\n \r\n Hier klicken um ein Support Ticken zu oeffnen. \r\n
\r\n \r\n \r\n \r\n Fehler berichten. \r\n \r\n Berichte uns von Fehlern ueber Seo panel Tools, Erweiterungen, etc. durch klick auf diesen Link. \r\n Bitte unterstuetze uns, Seo Panel in der Zukunft zu verbessern. \r\n
\r\n \r\n Hier klicken um einen Fehler zu berichten. \r\n
\r\n \r\n \r\n \r\n \r\n', '2021-01-29 18:30:54'),
(1047, 'de', 'support', 'support_cont2', '\r\nSeo Panel Online Ressourcen \r\n\r\n \r\n \r\n Seo Panel Hilfe \r\n \r\n Schau dir die Seo Panel Dokumentation in der Hilfestellung an. Diese beinhaltet die Dokumentation ueber Seo Panel Tools, Erweiterungen und vieles mehr.\r\n Dies ist der beste Platz im Internet um Hilfe fuer Seo Panel zu erhalten. Wir bitten darum im SEO Panel "help guide" darueber zu berichten falls Fehler entdeckt werden. \r\n
\r\n \r\n Hier klicken um zum Hilfe-Bereich zu gelangen. \r\n
\r\n \r\n \r\n \r\n Seo Panel Forum \r\n \r\n Der Platz um ueber das weltweit erste Open Source Seo Control Panel zu diskutieren. \r\n Der beste Platz um Antworten auf deine Fragen ueber Seo Panel zu finden.\r\n Hier koennen auch Erfahrungen ausgetauscht werden . \r\n
\r\n \r\n Hier klicken um zum Seo Panel Forum zu gelangen. \r\n
\r\n \r\n \r\n \r\n ', '2021-01-29 18:30:54'),
(1048, 'de', 'support', 'support_cont3', '\r\nFuer SEO Panel spenden \r\n \r\n \r\n Spende fuer die zukuenftige SEO Panel Entwicklung - Das erste Open Source Seo Control Panel weltweit. \r\n \r\n Spende an Seo Panel um die weltweit erste Open Source SEO Software zu unterstuetzen.\r\n Es ist geplant in der Zukunft weitere Features hinzuzufügen und zu verbessern . \r\n Nur mit dem Support unserer Benutzer ist es moeglich unsere Ziele zu erreichen.\r\n Bist du der Meinung, Seo Panel ist nuetzlich fuer dich, gib bitte eine kleine Spende ab.\r\n Wir werden deinen Namen und deine Webseite auf unserer Spendenseite veroeffentlichen \r\n
\r\n \r\n Hier klicken um fuer Seo Panel zu spenden \r\n
\r\n \r\n \r\n \r\n ', '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 per regel . Klik op Ga verder 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 Uno per riga . Clicca su Continua 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 Procedi 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 Ricarica oppure Salta ', '2012-11-09 00:50:02'),
(1218, 'it', 'directory', 'nodirnote', 'Nessuna directory Attiva 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 Sito web per Procedere con l\\''invio nella directory. Verifica l\\''invio nelledirectory senza verifica umana ', '2012-11-09 00:50:02'),
(1226, 'it', 'directory', 'selectwebsiteschecksub', 'Seleziona un Sito web per Procedere 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. Add review links to start tracking your reviews and ratings.', '2026-01-19 22:58:50'),
(39013, 'ar', 'review', 'No review data available', 'لا توجد بيانات المراجعات. أضف روابط المراجعات لبدء تتبع مراجعاتك وتقييماتك.', '2026-01-19 22:58:50'),
(39014, 'bg', 'review', 'No review data available', 'Няма налични данни за отзиви. Добавете връзки за отзиви , за да започнете да следите вашите отзиви и оценки.', '2026-01-19 22:58:50'),
(39015, 'bs', 'review', 'No review data available', 'Nema dostupnih podataka o recenzijama. Dodajte linkove recenzija 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. Afegiu enllaços de ressenyes 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', ' \r\nSystem Wsparcia Seo Panel \r\n \r\n \r\n Pakiet 1000 Katalogów \r\n \r\n Dostarczamy 1000 darmowych aktywnych i zweryfikowanych katalogów internetowych w jednym pakiecie, gotowe do dodania do Twojego panelu Seo Narzędzia do submisji Seo . \r\n Pomoże Ci to powiększyć liczbę backlinków twoich Stron. \r\n Właściwie to lista 1000 Katalogów jest wprowadzona aby zebrać trochę pieniędzy na rozwijanie funkcjonalności Seo Panel. \r\n Aby otrzymać listę 1000 internetowych Katalogów prosimy \\" target=\\"_blank\\">o złożenie donacji \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 \\"\r\ntarget=\\"_blank\\">o kontakt lub utwórz pytanie \\"\r\ntarget=\\"_blank\\">w systemie wsparcia . \r\n
\r\n \r\n \\" target=\\"_blank\\">Otwórz link aby złożyć donację dla Seo Panel \r\n
\r\n \r\n \r\n \r\n \r\n Lokalny pakiet Wyszukiwarek \r\n \r\n Dodaj lokalne wyszukiwarki google,yahoo,msn(np: www.google.de,www.google.fr\r\nitd. ) do Seo Panel sprawdzenie pozycji Keyword\\''ów , aby śledzić wydajność twoich Stron w lokalnych wyszukiwarkach. \r\n Aby otrzymać pakiet lokalnych wyszukiwarek (w zależności od twoich wymagań) prosimy \\" target=\\"_blank\\">o donację $10 lub więcej aby pomóc w rozwoju funkcjonalności Seo Panel. \r\n Przed złożeniem donacji, prosimy \\" target=\\"_blank\\">o kontakt aby powiadomić nas o żądanej liście lokalnych wyszukiwarek. \r\n \r\n Zawsze dodawaj nowe wyszukiwarki (np:baidu.com) do Sprawdzania pozycji Keyword\\''ów w Seo Panel,\r\nprosimy \\" target=\\"_blank\\">o kontakt lub utworzenie pytania w \\" target=\\"_blank\\">systemie wsparcia . \r\n
\r\n \r\n \\" target=\\"_blank\\">Otwórz link aby skontaktować się z nami \r\n
\r\n \r\n \r\n \r\n \r\n Pluginy Seo Panel \r\n \r\n Dodaj pluginy seo do Twojego Seo Panel by rozszerzyć funkcjonalność według twoich wymagań. \r\n \\" target=\\"_blank\\">Pluginy Seo Panel są dostarczane przez Seo Panel oraz zewnętrznych źródeł. \r\n Możesz także równie łatwo tworzyć pluginy Seo dla Twojego Seo Panel. \r\n Możesz także \\" target=\\"_blank\\">submitować twoje pluginy do Seo Panel a my je opublikujemy na naszej stronie po uprzednim zatwierdzeniu . \r\n
\r\n \r\n \\" target=\\"_blank\\">Otwórz link aby sciągnąć pluginy Seo Panel \r\n
\r\n \r\n \r\n \r\n Kontakt \r\n \r\n Skontaktuj się z Nami jeśli masz pytanie dotyczące Narzędzi Seo Panel, pluginów oraz funkcjonalności itp. prze użycie poniższego linka. \r\n
\r\n \r\n \\" target=\\"_blank\\">Otwórz link aby skontaktować się z Nami \r\n
\r\n \r\n \r\n \r\n System Zapytań \r\n \r\n Aby uzyskać pomoc techniczną od teamu Seo Panel odnośnie instalacji i ustawień Narzędzi Seo Panel, pluginów i funkcjonalności
. Np: Aby ustawić zadania Cron dla automatycznego sprawdzania pozycji Keyword\\''ów. \r\n \r\n \r\n \\" target=\\"_blank\\">Otwórz link aby utworzyć zapytanie \r\n
\r\n \r\n \r\n \r\n Raportowanie błędów \r\n \r\n Raportuj błędy w Narzędziach Seo Panel, pluginach i funkcjonalności itp. używając poniższego linka. \r\n Prosimy o pomoc w usprawnieniu funkcjonalności w nowych wersjach. \r\n
\r\n \r\n \\" target=\\"_blank\\">Otwórz link aby raportować błąd \r\n
\r\n \r\n \r\n \r\n', '2010-10-25 10:38:20'),
(1252, 'pl', 'support', 'support_cont2', ' \r\nSeo Panel Zasoby Online \r\n \r\n \r\n \r\n Pomoc Użytkownika Seo Panel \r\n \r\n Dokumentacja Seo Panel jest dostępna na \\" target=\\"_blank\\"> w\r\nPomocy Użytkownika , zawiera ona dokumentację Narzędzi Seo Panel, plugin\\''ów , i funkcjonalności. \r\n To jest najlepsze miejsce w internecie aby znaleźć pomoc o Seo Panel. mamy nadzieję że pomożesz \r\nudoskonalić Pomoc Użytkownika, jeśli znajdziesz jakiś błąd lub brak czegoś. \r\n
\r\n \r\n \\" target=\\"_blank\\">Zobacz Pomoc Użytkownika Seo Panel \r\n
\r\n \r\n \r\n \r\n Forum Seo Panel \r\n \r\n To miejsce do dyskusji o pierwszym na świecie opensource\\''owym panelem kontrolym seo . \r\n To najlepsze miejsce by znaleźć odpowiedź na Twoje pytania o Seo Panel. \r\n Możesz także dzielić się twoim doświadczeniem z użytkowanie Seo Panel do optymalizacji twoich Stron. \r\n
\r\n \r\n \\" target=\\"_blank\\">Odwiedź forum Seo Panel \r\n
\r\n \r\n \r\n \r\n ', '2010-10-25 10:38:20');
INSERT INTO `texts` VALUES
(1253, 'pl', 'support', 'support_cont3', ' \r\nZłóż donację dla Seo Panel \r\n \r\n \r\n Złóż donację dla Seo Panel - Pierwszy na świecie Open source\\''owy panel kontrolny seo \r\n \r\n Złóż donację dla Seo Panel aby wesprzeć pierwszy na świecie open source\\''owy panel kontrolny seo. \r\n Planujemy zwiększać i ulepszać funkcjonalość Seo Panel w przyszłości. \r\n Tylko z Twoim wsparciem możemy osiągnąć nasz cel . \r\n Jeżeli uważasz że Seo Panel jest dla Ciebie cenny , prosimy o donację jakiejkolwiek kwoty dla Seo Panel. \r\n W zamian opublikujemy Twoje Nazwisko i adres twojej strony na \\"\r\ntarget=\\"_blank\\">stronie donacji , jak tylko otrzymamy donację. \r\n
\r\n \r\n \\" target=\\"_blank\\">Otwórz tą linkę i złóż donację dla Seo Panel \r\n
\r\n \r\n \r\n \r\n ', '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 Proceed 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 Proceed 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 Przeładuj lub Pomiń ', '2014-01-17 23:50:38'),
(1385, 'pl', 'directory', 'nodirnote', 'Nie znaleziono Aktywnych 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 Stronę aby Kontunuować submitowanie. Zaznacz Katalogi bez Captcha aby submitować do Katalogów nie wymagających Captcha w trakcie submisji.', '2014-01-17 23:50:38'),
(1393, 'pl', 'directory', 'selectwebsiteschecksub', 'Wybierz Stronę aby Kontynuować 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 Jeden adres na linię Kliknij Kontynuuj 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 Jeden adres na linię Kliknij Kontynuuj 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 Kontynuuj 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', 'Złóż donację $100 i zostań sponsorem 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 każdy w osobnej linii . Kliknij Kontynuuj 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 Egy weboldal címét írd be. Kattints az Elküldésre 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 Elküldésre 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 Újra vagy a Tovább feliratra ', '2013-02-06 00:23:52'),
(1593, 'hu', 'directory', 'nodirnote', 'Nem találtunk Aktív 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 Weboldalt és kattints az Elküldésre . Válaszd ki a \\"Katalógusok captcha nélkül \\" opciót, hogy meggyorsítsd a linkbeküldést.', '2013-02-06 00:23:52'),
(1601, 'hu', 'directory', 'selectwebsiteschecksub', 'Válassz ki egy Weboldalt és kattints az Elküldésre .', '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 egyesével soronként . Kattints az Elküldése 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(soronként egyet ). Kattints az Elküldés 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 Elküldés 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', 'Támogasd $100-al a Seo Panlelt és válj Támogatóvá .', '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 Elküldés 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 Procedi 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 ga verder 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 Vernieuwen of Overslaan .', '2014-01-08 02:36:56'),
(1882, 'nl', 'directory', 'nodirnote', 'Geen actieve 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 Website om te starten met de directory inschrijvingen. Zet een vinkje bij Directory''s zonder captcha om directory''s met Captcha over te slaan.', '2014-01-08 02:36:56'),
(1890, 'nl', 'directory', 'selectwebsiteschecksub', 'Selecteer een Website om te starten 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 per regel . Klik op ga verder 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 per regel . Klik op ga verder 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 ga verder 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', 'Doneer $100 en wordt Seo Panel Sponsor .', '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 ga verder 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', '\r\nSeo Panel Support Systeem \r\n\r\n \r\n 1000 Directories Pakket \r\n \r\n Wij bieden een pakket aan met 1000 gratis, actieve en gecontroleerde Directories, ter integratie in uw Directory Inschrijving Tool .\r\n Dit zal helpen het aantal backlinks van uw eigen websites aanzienlijk te verhogen .\r\n Wij bieden deze lijst momenteel aan om geld in te zamelen voor de toekomstige ontwikkelingen van Seo panel. \r\n \\" target=\\"_blank\\">Doneer $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\\" target=\\"_blank\\">contact op of open een ticket in het \\" target=\\"_blank\\">support systeem.\r\n
\r\n \r\n \\" target=\\"_blank\\">Klik hier om een donatie aan Seo Panel te doen. \r\n
\r\n \r\n \r\n \r\n \r\n Het Lokale Zoekmachine Pakket \r\n \r\n Voeg lokale zoekmachines toe van google,yahoo en msn (Bv.: www.google.nl, www.google.fr etc ) aan Seo Panel Posities en Zoekwoorden , om uw site performance lokaal te kunnen controleren. \r\n Om het lokale zoekmachines pakket (op basis van uw behoefte) te ontvangen \\" target=\\"_blank\\">doneert u $10 of meer om de functies van SEO panel te verbeteren.\r\n Neemt u voordat u doneert \\" target=\\"_blank\\">contact met ons op met een lijst van de gewenste lokale zoekmachine toevoegingen.\r\n \r\n Om nieuwe zoekmachines (bijvoorbeeld: baidu.com) toe te voegen, neemt u \\" target=\\"_blank\\">contact met ons op of opent u een ticket in het \\" target=\\"_blank\\">Support System . \r\n
\r\n \r\n \\" target=\\"_blank\\">Klik hier om contact op te nemen. \r\n
\r\n \r\n \r\n \r\n \r\n Seo Panel Plugins \r\n \r\n Voeg Seo plugins toe om uw Seo panel functies uit te breiden volgens uw behoefte. \\" target=\\"_blank\\">Seo panel plugins worden geleverd door zowel Seo panel als sites van derden. U kunt zelf ook makkelijk Seo plugins ontwikkelen voor Seo Panel. U kunt uw Seo plugin \\" target=\\"_blank\\">opsturen naar Seo Panel en wij zullen deze vervolgens publiceren op onze website nadat wij deze getest hebben.\r\n \r\n
\r\n \r\n \\" target=\\"_blank\\">Klik hier voor Seo Panel Plugins \r\n
\r\n \r\n \r\n \r\n Contact \r\n \r\n Neem contact met ons op voor eventuele vragen over Seo Panel Tools, Plugins, Functies, etc.. met behulp van de onderstaande link.\r\n
\r\n \r\n \\" target=\\"_blank\\">Klik hier om contact op te nemen. \r\n
\r\n \r\n \r\n \r\n Support Tickets \r\n \r\n Voor technische Ondersteuning van het Seo Panel Team voor het instellen van Seo Panel tools, plugins en andere functies . Bijvoorbeeld voor het instellen van een Cronjob.\r\n
\r\n \r\n \\" target=\\"_blank\\">Klik hier om een support ticket aan te maken. \r\n
\r\n \r\n \r\n \r\n Bugs rapporteren. \r\n \r\n Help ons door bugs te rapporteren van Seo Panel Tools, Plugins en Functies met behulp van onderstaande link. \r\n \r\n
\r\n \r\n \\" target=\\"_blank\\">Klik hier om bugs te rapporteren. \r\n
\r\n \r\n \r\n \r\n \r\n', '2010-10-27 08:56:53'),
(2051, 'nl', 'support', 'support_cont2', '\r\nSeo Panel Online Naslag \r\n\r\n \r\n \r\n Seo Panel Hulp \r\n \r\n U kunt de \\" target=\\"_blank\\">Seo panel documentatie in de hulp gids vinden, het bevat de documentatie voor de Seo panel tools, plugins en aanverwante functies.\r\n Het is de beste plek op internet om hulp 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
\r\n \r\n \\" target=\\"_blank\\">Klik hier om de hulp gids te bekijken. \r\n
\r\n \r\n \r\n \r\n Seo Panel Forum \r\n \r\n De plek om te discussiëren over \\''s werelds eerste open source Seo bedieningspaneel . Het is de beste plek om antwoorden te vinden op uw vragen over Seo Panel.\r\n Ook kunt u uw ervaringen uitwisselen tijdens het gebruik van Seo Panel voor het optimaliseren van uw websites. \r\n
\r\n \r\n \\" target=\\"_blank\\">Klik hier om naar het Seo Panel Forum te gaan. \r\n
\r\n \r\n \r\n \r\n ', '2010-10-27 08:56:53'),
(2052, 'nl', 'support', 'support_cont3', '\r\nDoneren voor Seo Panel \r\n \r\n \r\n Geef een donatie voor de verbetering van - \\''s werelds eerste Open Source Seo Bedieningspaneel. \r\n \r\n Doneer 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 nieuwe functies toe te voegen en Seo Panel te verbeteren . 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 \\" target=\\"_blank\\">donatie pagina .\r\n \r\n
\r\n \r\n \\" target=\\"_blank\\">Klik hier om te doneren aan Seo Panel. \r\n
\r\n \r\n \r\n \r\n ', '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 una per riga . Clicca su Procedi 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 Una per riga . Clicca su Procedi 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 Procedi 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', 'Dona $100 e diventa sponsor 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,每行一条 。单击处理 开始检测反向链接', '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', '点击处理 以检查目录状态', '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', '在提交页面未找到提交类别。请点击重载 或者跳过 ', '2014-01-09 20:03:35'),
(2256, 'zh', 'directory', 'nodirnote', '未发现已激活的 目录', '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', '选择一个 站点 来 处理 目录提交。 检查 没有验证码的目录 来提交没有验证码的目录', '2014-01-09 20:03:35'),
(2264, 'zh', 'directory', 'selectwebsiteschecksub', '选择一个站点 来 处理 检查目录提交信息', '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 по одному в каждой строке . Нажмите продолжить для проверки обратных ссылок.', '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', 'Нажмите продолжить для проверки статуса каталогов.', '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', 'Введенная категория не найдена в отправленной странице. Пожалуйста нажмите перезагрузить или пропустить ', '2012-11-09 11:03:15'),
(2412, 'ru', 'directory', 'nodirnote', 'Нет активных каталогов', '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', 'Выберите сайт для продолжения рассылки в каталоги. Выберите каталоги с капчей для рассылки в каталоги.', '2012-11-09 11:03:15'),
(2420, 'ru', 'directory', 'selectwebsiteschecksub', 'Выберите сайт для продолжения выбора каталогов.', '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,每行一条 。点击处理 开始检查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,每行一条 。点击处理 开始检查搜索引擎搜录报告', '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', '点击处理 开始生成报告 ', '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', '捐赠 $100 成为Seo Panel的一个赞助人 .', '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', '点击处理 创建站点地图文件', '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', ' \r\nSeo Panel Support System \r\n \r\n \r\n 1000 Directory Package \r\n \r\n We are providing 1000 free active and verified internet directory package, to add into\r\nyour seo panel directory submission tool . \r\n It will help you to increase the backlinks of your websites. \r\n Actually 1000 directory list is introduced to collect some money for future\r\ndevelopment of seo panel. \r\n To get the 1000 directory list please \\" target=\\"_blank\\">donate \r\n$10 or more to improve the features of seo panel. \r\n If you have any questions about 1000 directory package, please \\"\r\ntarget=\\"_blank\\">contact us or open a ticket in \\"\r\ntarget=\\"_blank\\">support system . \r\n
\r\n \r\n \\" target=\\"_blank\\">Visit this link to donate to seo panel \r\n
\r\n \r\n \r\n \r\n \r\n Local Search Engines Package \r\n \r\n Add local search engine domains of google,yahoo,msn(eg: www.google.de,www.google.fr\r\netc ) to seo panel keyword position checker , to track your site perfomance locally. \r\n To get local search engines package(according to your requirement) please \\" target=\\"_blank\\">donate $10 or more to improve the features of seo\r\npanel. \r\n Before sending donation, please \\" target=\\"_blank\\">contact us to\r\nprovide us required search engine domain list. \r\n \r\n Also to add new search engines(eg:baidu.com) to your seo panel keyword position checker,\r\nplease \\" target=\\"_blank\\">contact us or open a ticket in \\" target=\\"_blank\\">support system . \r\n
\r\n \r\n \\" target=\\"_blank\\">Visit this link to contact us \r\n
\r\n \r\n \r\n \r\n \r\n Seo Panel Plugins \r\n \r\n Add seo plugins to your seo panel to extend the features according to your\r\nrequirement. \r\n \\" target=\\"_blank\\">Seo panel plugins are provided by both seo panel\r\nand third party sites. \r\n You can also easily develop seo plugins for your seo panel. \r\n You can \\" target=\\"_blank\\">submit your seo plugin to seo panel and\r\nwe will publish it in our website after our review process. \r\n
\r\n \r\n \\" target=\\"_blank\\">Visit this link to get seo panel plugins \r\n
\r\n \r\n \r\n \r\n Contact Us \r\n \r\n Contact us for any questions about seo panel tools,plugins and features etc by using below\r\nlink. \r\n
\r\n \r\n \\" target=\\"_blank\\">Visit this link to contact us \r\n
\r\n \r\n \r\n \r\n Support Tickets \r\n \r\n To get technical support from seo panel team to setup the seo panel tools,plugins and\r\nfeatures . Eg: To set up cron for keyword position checker. \r\n
\r\n \r\n \\" target=\\"_blank\\">Visit this link to create a support ticket \r\n
\r\n \r\n \r\n \r\n Report Bugs \r\n \r\n Report bugs about seo panel tools,plugins and features etc by using below link. \r\n please help us to improve the features in next versions. \r\n
\r\n \r\n \\" target=\\"_blank\\">Visit this link to report bugs \r\n
\r\n \r\n \r\n \r\n ', '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', 'Нажмите продолжить для создания карты сайта', '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', 'Въведете по един URL адрес на ред. Натиснете върху Продължи за да проверите беклинковете', '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, по одному в каждой строке . Нажмите продолжить , для проверки 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, по одному в каждой строке . Нажмите продолжить , для проверки результатов насыщенности в поисковых системах', '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', 'Нажмите продолжить для генерации отчета', '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', 'Пожертвовать $100 и стать спонсором 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', '\r\nСлужба поддержки Seo Panel \r\n\r\n \r\n Пакет из 1000 каталогов. \r\n \r\n Мы представляем пакет из 1000 качественных бесплатных и проверенных интернет-каталогов, для добавления\r\nв вашу seo panel.\r\n Рассылка поможет вам увеличить количество обратных ссылок на ваш сайт.\r\n На самом деле список из 1000 каталогов введен для сбора денег на будущее\r\nразвитие seo panel.\r\n Чтобы получить список из 1000 каталогов, пожалуйста пожертвуйте \r\n$10 или больше, для улучшения Seo panel.\r\n Если у вас возникли вопросы связанные с пакетом из 1000 каталогов, пожалуйста,свяжитесь с нами или откройте запрос в службе поддержки . \r\n
\r\n \r\n Нажмите на ссылку для пожертвования на развитие \r\n
\r\n \r\n \r\n \r\n \r\n Локальный пакет поисковых систем \r\n \r\n Добавить домены локальных поисковых систем google,yahoo,msn(например: www.google.de,www.google.fr\r\nи т.д. ) в seo panel, для проверки позиций в поисковых системах , отслеживания производительности вашего сайта \r\nв вашей стране или регионе.\r\n Для того чтобы получить информацию о добавлении локальных поисковых системах (согласно вашему требованию), пожалуйста, " target="_blank">пожертвуйте $10 или больше, для улучшения сео-панели.\r\n Перед отправкой пожертвования, пожалуйста, свяжитесь с нами, мы отправим\r\nвам список необходимых доменов поисковых систем.\r\n \r\n Кроме того, чтобы добавить новые поисковые системы (например:yandex.ru) в вашу Seo panel для проверки ключевых слов,\r\nпожалуйста свяжитесь с нами или откройте запрос " target="_blank">в службе поддержки . \r\n
\r\n \r\n Пройдите по ссылке, чтобы связаться с нами \r\n
\r\n \r\n \r\n \r\n \r\n Плагины Seo Panel \r\n \r\n Добавить сео-плагины в вашу seo panel для расширения возможностей по вашему требованию.\r\n Плагины Seo panel предоставляются разработчиками Seo panel\r\nи сторонними разработчиками.\r\n Вы также можете легко разработать сео-плагин для вашего seo panel.\r\n Вы можете отправить ваш SEO плагин для Seo panel, \r\nмы опубликуем его на нашем сайте после предварительной проверки. \r\n
\r\n \r\n Пройдите по ссылке, для получения сео-плагинов \r\n
\r\n \r\n \r\n \r\n Связаться с нами \r\n \r\n Обращайтесь к нам по любым возникшим вопросам по работе с инструментами, плагинами и расширениями seo panel, для\r\nперехода нажмите на ссылку.\r\n
\r\n \r\n Пройдите по ссылке для связи с нами. \r\n
\r\n \r\n \r\n \r\n Запросы в поддержку \r\n \r\n Для того чтобы получить техническую поддержку по установке seo panel инструментов, плагинов и\r\nрасширений . Например: Настроить крон для проверки позиций ключевых слов.\r\n
\r\n \r\n Пройдите по ссылке в службу технической поддержки \r\n
\r\n \r\n \r\n \r\n Отчеты по ошибкам \r\n \r\n Для отправки отчетов по ошибкам в инструментах seo panel, плагинах и расширениях нажмите на ссылку.\r\nПожалуйста, помогите нам улучшить возможности в следующей версии.\r\n
\r\n \r\n Пройдите по ссылке для сообщения об ошибке. \r\n
\r\n \r\n \r\n \r\n ', '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', '\r\nОнлайн ресурсы Seo Panel \r\n\r\n \r\n \r\n Руководство Seo Panel \r\n \r\n Вы можете посмотреть документацию seo panel в разделе\r\nруководство , которая содержит документацию по использованию инструментов seo panel, плагинов и расширений.\r\n Это лучшее место в интернете для получения справки о SEO панели. Мы надеемся, что вы\r\nпоможете seo panel в совершенствовании разработки первого бесплатного инструмента для продвижения сайтов!\r\n
\r\n \r\n Перейти в раздел помощь \r\n
\r\n \r\n \r\n \r\n Форум Seo Panel \r\n \r\n Форум Seo panel , место для обсуждения первого открытого программного продукта для продвижения сайтов. \r\n Это лучшее место для поиска ответов на ваши вопросы о seo panel. \r\n Также вы можете внести долю вашего опыта При использовании Seo panel для оптимизации\r\nсайтов.\r\n
\r\n \r\n Перейти на форум Seo panel \r\n
\r\n \r\n \r\n \r\n ', '2019-08-28 13:08:54'),
(2687, 'ru', 'support', 'support_cont3', '\r\nПожертвования на развитие Seo Panel \r\n \r\n \r\n Пожертвования на развитие Seo Panel - первой в мире программы для оптимизации сайтов с открытым исходным кодом. \r\n \r\n Поддержите первый в мире скрипт для создания сервиса по продвижению сайтов в интернете.\r\n Мы планируем в будущем развивать и улучшать программное обеспечение.\r\n По всем вопросам поддержки , только мы сможем дать правильные ответы .\r\n Если вы понимаете, что Seo panel стоит вашего внимания, пожалуйста пожертвуйте команде разработчиков.\r\n Мы опубликуем ваше имя на нашем сайте и ссылку на ваши ресурсы на странице пожертований , после получения пожертвования.\r\n
\r\n \r\n Перейти на страницу пожертвования seo panel \r\n
\r\n \r\n \r\n \r\n \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 Um por linha . Pressione on Proceda 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 Cate unul pe rand . Apasa pe Continua 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', '\r\nSistema supporto pannello seo \r\n\r\n \r\n Pacchetto 1000 Directory \r\n \r\n Forniamo un pacchetto di 1000 directory gratuite verificate e attive , puoi inserirlo nel tuo pannello seo tramite lo strumento di invio directory .Ti aiuterà ad incrementare i backlink verso il tuo sito web.\r\n Attualmente l\\''elenco di 1000 directory viene utilizzato per raccogliere fondi per il futuro sviluppo del pannello di seo .\r\n Per avere la lista delle 1000 directory è sufficiente \\" target=\\"_blank\\">fare una donazione di $10 o più per migliorare le caratteristiche del pannello seo.\r\n Per qualsiasi informazione sulle 1000 directory non esitare a \\"\r\ntarget=\\"_blank\\">contattarci o ad aprire un ticket sul \\"\r\ntarget=\\"_blank\\">forum di supporto .
\r\n \r\n \r\n \r\n \r\n \\" target=\\"_blank\\">Visita questo link per effettuare una donazione per il pannello seo
\r\n \r\n \r\n \r\n Pacchetti modori di ricerca in locale \r\n \r\n Aggiungi i domini dei motori di ricerca in locale di google,yahoo,msn(es: www.google.de,www.google.fr ecc\r\n ) al pannello seo per la verifica della posizione delle keyword , 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 \\" target=\\"_blank\\">donae $10 o di più per migliorare le caratteristiche del pannello seo. Prima di inviare una donazione, per cortesia \\" target=\\"_blank\\">contattaci per fornirci l\\''elenco dei domini che vuoi richiedere. \r\n \r\n Puoi anche aggiungere nuovi motori di ricerca (es:baidu.com) al tuo pannello seo per la verifica della posizione delle keyword. Per fare questo puoi \\" target=\\"_blank\\">contattarci o aprire un ticket nel \\" target=\\"_blank\\">sistema di supporto .
\r\n\r\n \\" target=\\"_blank\\">Visita questo link per contattarci
\r\n \r\n \r\n \r\n \r\n Plugin pannello seo \r\n \r\n Aggiungi plugin seo al tuo pannello seo per estendere le caratteristiche in base alle tue esigenze.\r\n \\" target=\\"_blank\\">I plugin del pannello seo sono realizzati dallo stesso SeoPanel che da terze parti. Puoi anche semplicemente sviluppare i plugin seo per il tuo stesso pannello.Puoi \\" target=\\"_blank\\">inviare il tuo plugin seo e noi e provvederemo a pubblicarlo nel nostro sito web dopo il nostro processo di verifica .
\r\n \r\n \r\n \r\n \\" target=\\"_blank\\">Visita questo link per prelevare plugin del pannello seo
\r\n \r\n \r\n \r\n Contattaci \r\n \r\n Contattaci per qualsiasi questione riguardante il pannello seo, plugin e caratteristiche ecc utilizzando il link che si presenta di seguito.
\r\n \r\n \\" target=\\"_blank\\">Visita questo link per contattarci.
\r\n \r\n \r\n \r\n Ticket di supporto \r\n \r\n Per avere supporto tecnico dal team del pannello seo per installare gli strumenti del pannello seo, plugin e altre caratteristiche. Es: per configurare la cronologia per la verifica delle posizioni per le keyword.
\r\n \r\n \r\n \r\n \\" target=\\"_blank\\">Visita questo link per creare un ticket di supporto
\r\n \r\n \r\n \r\n Segnala bug \r\n \r\n Riporta i bug relativi gli strumenti del pannello seo,plugin, caratteristiche ecc utilizzando il seguente link. Per cortesia aiutaci a migliorare tutte le caratteristiche per la prossima versione.
\r\n \r\n \\" target=\\"_blank\\">Visita questo link per segnalare bug
\r\n \r\n \r\n \r\n ', '2010-10-27 06:36:28'),
(2861, 'it', 'support', 'support_cont2', '\r\nRisorse online pannello seo \r\n\r\n \r\n \r\n Guida di aiuto del pannello seo \r\n \r\n Puoi visualizzare la \\" target=\\"_blank\\">documentazione del pannello seo nella guida di aiuto , che contiene la documentazione per gli strumenti del pannello seo, plugin e relative caratteristiche. \r\n Questo è il miglior posto su internet per ricevere aiuto circa il pannello seo. Speriamo che tu possa \r\ncontribuire per la guida del pannello seo se sono errori o dimenticanze.
\r\n \r\n \\" target=\\"_blank\\">Visita la guida di aiuto del pannello seo
\r\n \r\n \r\n \r\n Forum Pannello Seo \r\n \r\n Un posto dove discutere del primo pannello di controllo seo open source al mondo. Questo è il posto migliore dove trovare le risposte alle tue domande circa il pannello seo. \r\n \r\n Puoi anche condividere la tua esperienza nell\\''utilizzo del pannello seo per ottimizzare il tuo sito web.
\r\n \r\n \\" target=\\"_blank\\">Visita il forum del pannello seo
\r\n \r\n \r\n \r\n ', '2010-10-27 06:36:28'),
(2862, 'it', 'support', 'support_cont3', '\r\nDona al pannello seo \r\n \r\n \r\n Dona al Pannello Seo - Il primo pannello di controllo seo Open Source al mondo \r\n \r\n Dona al pannello seo per supportare il primo pannello di controllo seo open source al mondo.Abbiamo programmato di aggiungere e migliorare molte caratteristiche del pannello seo in futuro. \r\n \r\n Con il vostro supporto possiamo raggiungere i nostri obiettivi . Se ritieni che il pannello seo è fatto per voi, fate una donazione al team del pannello seo. \r\n Noi pubblicheremo il vostro nome e informazioni sul sito nella \\"\r\ntarget=\\"_blank\\">pagina di donazione , una volta ottenuta. \r\n
\r\n \r\n \\" target=\\"_blank\\">Visita questo link per donare al pannello seo
\r\n \r\n \r\n \r\n ', '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 Continua 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 Una pe linie . Apasa pe Continua 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 Continuar 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', 'Doar $100 e se tornar um patrocinador 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 proseguir 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 por linha . Clique em Continuar 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 por linha .Clique em Continuar 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 Continuar 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 Actualizar ou passar ', '2012-11-11 01:59:13'),
(3052, 'pt', 'directory', 'nodirnote', 'Nenhum directório activo 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 web-site para Continuar submissão do directório. Directórios Verifique com a captcha para enviar aos directórios com captcha fora ', '2012-11-11 01:59:13'),
(3060, 'pt', 'directory', 'selectwebsiteschecksub', 'Seleccione um web-site para Continuar 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 Continua 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 Reincarca sau Sari peste ', '2012-05-19 00:52:34'),
(3166, 'ro', 'directory', 'nodirnote', 'Nu s-a gasit niciun director Activ ', '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 Site Web pentru a Continua inscrierea in directoare. Verifica Directoarele fara captcha pentru a inscrie in directoarele fara captcha', '2012-05-19 00:52:34'),
(3174, 'ro', 'directory', 'selectwebsiteschecksub', 'Selectati un Director pentru a Continua 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', ' \r\nSeo Panel 帮助系统 \r\n \r\n \r\n 1000 目录包 \r\n \r\n 我们提供超过1000个可用的 网络目录包,加到\r\n你的seo panel 目录提交工具 . \r\n 它会帮助你增加反向链接 你的站点. \r\n 在我们获得捐赠后为seo panel以为未来发展 ,您将获得推荐 的1000目录列表,. \r\n 想要获得1000目录列表请\\" target=\\"_blank\\">捐赠 \r\n$10 或者更多 来改善 seo panel 的功能 . \r\n 如果你有任何问题关于1000目录包,请\\"\r\ntarget=\\"_blank\\">联系我们 或者打开一个页面 \\"\r\ntarget=\\"_blank\\">帮助系统 . \r\n
\r\n \r\n \\" target=\\"_blank\\">访问这个链接捐赠seo panel \r\n
\r\n \r\n \r\n \r\n \r\n 本地搜索引擎包 \r\n \r\n 增加本地 搜索引擎 域 google,yahoo,msn(例如: www.google.de,www.google.fr\r\netc ) seo panel 关键字position checker , 追踪你的站点行为本地. \r\n 为了获得本地搜索引擎包(根据你的需求) 请\\" target=\\"_blank\\">捐赠 $10或者更多来改善功能seo\r\npanel. \r\n 捐赠之前, 请 \\" target=\\"_blank\\">联系我们 to\r\n提供给我们需要的搜索引擎域名列表. \r\n \r\n 增加新的搜索引擎(例如:baidu.com) 你的 seo panel关键字position checker,\r\n请 \\" target=\\"_blank\\">联系我们 或者打开一个页面在\\" target=\\"_blank\\">帮助系统 . \r\n
\r\n \r\n \\" target=\\"_blank\\">访问这个链接联系我们 \r\n
\r\n \r\n \r\n \r\n \r\n Seo Panel插件 \r\n \r\n 增加seo插件 你的seo panel 扩展功能 根据你的\r\n需求. \r\n \\" target=\\"_blank\\">Seo panel插件 由seo panel\r\n和第三方站点提供. \r\n 你可以 easily develop seo插件来你的seo panel. \r\n 你可以\\" target=\\"_blank\\">提交 你的seo plugin seo panel 并且\r\n我们会发布 到我们的站点在审查 之后. \r\n
\r\n \r\n \\" target=\\"_blank\\">访问这个链接为了获得seo panel插件 \r\n
\r\n \r\n \r\n \r\n 联系我们 \r\n \r\n 联系我们来 任何问题 关于 seo panel 工具,插件和功能等等 通过以下链接. \r\n
\r\n \r\n \\" target=\\"_blank\\">访问这个链接 联系我们 \r\n
\r\n \r\n \r\n \r\n 技术支持 \r\n \r\n 为了获得 技术支持 从seo panel团队设置seo panel工具,插件和\r\n功能 . 例如: 设置cron来关键字位置checker. \r\n
\r\n \r\n \\" target=\\"_blank\\">访问这个链接创建一个支持ticket \r\n
\r\n \r\n \r\n \r\n 报告Bugs \r\n \r\n 报告bugs 关于 seo panel 工具,插件和功能等等 通过以下链接. \r\n 请 帮助我们在下个版本来改善功能. \r\n
\r\n \r\n \\" target=\\"_blank\\">访问这个链接 报告bugs \r\n
\r\n \r\n \r\n \r\n ', '2011-05-04 12:56:00'),
(3184, 'zh', 'support', 'support_cont2', ' \r\nSeo Panel 在线资源 \r\n \r\n ', '2011-05-04 12:56:00'),
(3185, 'zh', 'support', 'support_cont3', ' \r\n捐赠 Seo Panel \r\n \r\n ', '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', ' \r\nCentrul de suport Seo Panel \r\n \r\n \r\n Pachet 1000 de directoare \r\n \r\n Va oferim 1000 de directoare active si pe deasupra gratis un pachet pe care il puteti adauga in panoul SEO la\r\n sectiunea inregistrare in directoare . \r\n Va vom ajuta sa va cresteti backlink-urile site-ului dvs. \r\n Deocamdata lista cu 1000 de directoare mai sus mentionata este pentru colectarea de fonduri pentru desvoltarea viitoare a Seo Panel. \r\n Pentru a lua lista cu 1000 de directoare va rugam \\" target=\\"_blank\\">donati \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 \\"\r\ntarget=\\"_blank\\">contactati-ne sau deschideti un tiket la \\"\r\ntarget=\\"_blank\\">centrul de suport . \r\n
\r\n \r\n \\" target=\\"_blank\\">Vizitati acest link pentru a dona pentru Seo Panel \r\n
\r\n \r\n \r\n \r\n \r\n Pachet motoare de cautare locale \r\n \r\n Adauga domenii de motoare de cautare locale pentru google,yahoo,msn(eg: www.google.de,www.google.fr, www.google.ro\r\netc ) in panoul de control Seo Verificare pozitie cuvinte cheie , 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 \\" target=\\"_blank\\">donati $10 sau mai mult pentru a imbunatati caracteristicile pachetului Seo Panel. \r\n Inainte de a trimite donatii va rugam, \\" target=\\"_blank\\">contactati-ne pentru a ne da detalii despre motaorele de cautare locale ale dvs.. \r\n \r\n Deasemenea pentru a adauga noi motoare de cautare(eg:baidu.com) la verificare pozitionare cuvinte cheie al Panoului Seo al dvs.,\r\nva rugam \\" target=\\"_blank\\">contactati-ne sau deschideti un tiket la \\" target=\\"_blank\\">centru de suport . \r\n
\r\n \r\n \\" target=\\"_blank\\">Vizitati acest link pentru a ne contacta \r\n
\r\n \r\n \r\n \r\n \r\n Plugin-uri Seo Panel \r\n \r\n Adauga plugin-uri Seo in panoul de control Seo al dvs. extindeti caracteristicile in functie de necesitatile dvs.. \r\n \\" target=\\"_blank\\">Plugin-uri Seo Panel sunt dezvoltate atat de Seo Panel cat si de alte site-uri afiliate. \r\n Puteti deasemenea foarte usor sa dezvoltati plugin-uri seo pentru panoul de control al dvs.\r\n Puteti \\" target=\\"_blank\\">uploada plugin-urile dvs in panoul de contro Seo si\r\nnoi le vom publica pe site-ul nostru dupa ce le vom verifica . \r\n
\r\n \r\n \\" target=\\"_blank\\">Vizitati acest link pentru a descarca plugin-uri Seo Panel \r\n
\r\n \r\n \r\n \r\n Contactati-ne \r\n \r\n Contactati-ne pentru orice intrebare despre unelte seo panel,plugin-uri si caracteristici etc utilizind link-ul de mai jos. \r\n
\r\n \r\n \\" target=\\"_blank\\">Vizitati acest link pentru a ne contacta \r\n
\r\n \r\n \r\n \r\n Suport Tickete \r\n \r\n Pentru a avea suport tehnict din partea echipei Seo Panel pentru a seta uneltele Seo panel, plugin-urile si facilitati\r\n . Ex: Pentru a seta un cron pentru verificare pozitionare cuvinte cheie. \r\n
\r\n \r\n \\" target=\\"_blank\\">Vizitati acest link pentru a creea un tiket de suport nou \r\n
\r\n \r\n \r\n \r\n Raportai bug-uri \r\n \r\n rapoortati bug-uri despreunelte seo panel,plugin-uri si caracteristici etc utilizand link-ul de mai jos. \r\n va rugam ajutati-ne sa imbunatatim facilitatile din noile versiuni. \r\n
\r\n \r\n \\" target=\\"_blank\\">Vizitati acest link pentru raporta un bug nou \r\n
\r\n \r\n \r\n \r\n ', '2010-11-05 23:42:48'),
(3212, 'ro', 'support', 'support_cont2', ' \r\nPanoul Seo resurse Online \r\n \r\n \r\n \r\n Ghid ajutor Panoul Seo \r\n \r\n Puteti vedea \\" target=\\"_blank\\">documentatia panoului Seo in\r\nGhidul de ajutor , contine documentatia pentru uneltele panoului seo ,plugin-uri si caracteristici . \r\n Este cel mai bun loc de pe internet pentru a primi ajutor despre panoul Seo. Speram ca tu vei\r\ncontribui la ghidul de ajutor al panoului Seo, daca gasiti erori sau ceva lipsuri. \r\n
\r\n \r\n \\" target=\\"_blank\\">Vizitati ghidul de ajutor al panoului Seo \r\n
\r\n \r\n \r\n \r\n Forum Seo Panel \r\n \r\n Un loc pentru discutii despre primul opensource panou de control Seo . \r\n Este cel mai bun loc pentru a gasi raspunsuri la intrebarile tale despre panoul Seo. \r\n Deasemenea poti imparti experienta ta in timp de utilizezi panoul seo pentru site-urile tale. \r\n
\r\n \r\n \\" target=\\"_blank\\">Vizitati forumul panoului Seo \r\n
\r\n \r\n \r\n \r\n ', '2010-11-05 23:42:48'),
(3213, 'ro', 'support', 'support_cont3', ' \r\nDonati panoului Seo \r\n \r\n \r\n Donati panoului seo - Primul Open Source panou de control Seo din lume \r\n \r\n Donati panoului Seo pentru sustinerea primului panou seo din lume. \r\n Planuim sa adaugam si imbunatatim caracteristici ale panoului seo pe viitor. \r\n Cu ajutorul suportului dvs. ne putem atinge telul . \r\n Daca crezi ca panoul de control seo conteaza pentru tine, va rugam donati cat vreti echipei Seo Panel. \r\n Va vom publica numele si informatii despre site-ul dvs in \\"\r\ntarget=\\"_blank\\">pagina de donatii , de indata ce primim donatia. \r\n
\r\n \r\n \\" target=\\"_blank\\">Vizitati acest link pentru a dona Panoului Seo \r\n
\r\n \r\n \r\n \r\n ', '2010-11-05 23:42:48'),
(3214, 'ro', 'settings', 'Click here to become a sponsor for Seo Panel', 'Donati $100 si deveniti sponsor 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 Continua 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 cate unul pe rand . Apasa pe Continua 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', '\r\nSeo Panel Támogatói Rendszer \r\n\r\n \r\n 1000 darabos katalóguscsomag \r\n \r\n Biztosítunk egy 1000 darabos ingyenes katalóguscsomagot, melyekbe automatikusan tudja weboldalait beküldeni a linkbeküldő eszközzel .\r\n Ezzel könnyedén növelheti oldalainak backlink számát oldalainak backlink számát .\r\n A katalógusok megszerzéséhez kérlek \\" target=\\"_blank\\">támogasd 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 \\"\r\ntarget=\\"_blank\\">kapcsolatba velünk , vagy kérjen egy jegyet az \\"\r\ntarget=\\"_blank\\">ügyfélszolgálattól . \r\n
\r\n \r\n \\" target=\\"_blank\\">A Seo panel támogatáshoz látogassa meg ezt a linket. \r\n
\r\n \r\n \r\n \r\n \r\n Helyi keresőmotor csomag \r\n \r\n Adjon helyi keresést a google-hoz,yahoo-hoz,msn-hez(például: www.google.de,www.google.fr,www.google.hu\r\nstb.. ). Így a kulcsszóhelyezés vizsgálóval a lokalizált eredményeket tudja megtekinteni. \r\n A helyi keresőcsomag megszerzéséhez \\" target=\\"_blank\\">támogatnia kell minimum $10-al a Seo Panelt.\r\n Mielőtt elküldené a támogatást, kérem lépjen \\" target=\\"_blank\\">velünk kapcsolatba , és küldje el nekünk az Ön által kívánt keresőmotor domain kiterjesztését(pl.: .hu, .fr stb..).\r\n \r\n Új keresőmotor (pl.:baidu.com) hozzáadásához,\r\nkérem lépjen \\"\r\ntarget=\\"_blank\\">kapcsolatba velünk , vagy kérjen egy jegyet az \\"\r\ntarget=\\"_blank\\">ügyfélszolgálattól . \r\n
\r\n \r\n \\" target=\\"_blank\\">Látogassa meg ezt a linket, hogy kapcsolatba léphessen velünk. \r\n
\r\n \r\n \r\n \r\n \r\n Seo Panel Kiegészítők \r\n \r\n Adjon hozzá különböző kiegészítőket Seo paneljéhez, hogy bővíthesse a funkcióit .\r\n \\" target=\\"_blank\\">Seo panel kiegészítőket a Seo panel hivatalos oldala mellett egyéb oldalakon is találhat.\r\n Könnyedén fejleszthet Ön is Seo Kiegészítőket a Seo Panelhez.\r\n Az ön által fejlesztett kiegészítőket \\" target=\\"_blank\\">beküldheti a Seo Panel oldalára ahol egy rövid áttekintés után megjelenik a többi kiegészítő között. \r\n
\r\n \r\n \\" target=\\"_blank\\">Kiegészítők letöltéséhez látogassa meg ezt az oldalt. \r\n
\r\n \r\n \r\n \r\n Kapcsolat \r\n \r\n Ha bármilyen kérdése van(kiegészítők, fejlesztés, stb.. ), akkor az alábbi linken lépjen velünk kapcsolatba. \r\n
\r\n \r\n \\" target=\\"_blank\\">Látogassa meg ezt az oldalt a kapcsolatfelvételhez. \r\n
\r\n \r\n \r\n \r\n Ügyfélszolgálati jegy \r\n \r\n A Seo panel csapat Technikai támogatásért (kiegészítők telepítése, cron beállítása) lépjen kapcsolatba az ügyfélszolgálattal.\r\n
\r\n \r\n \\" target=\\"_blank\\">Látogassa meg ezt a linket, hogy kapcsolatba léphessen az ügyfélszolgálattal. \r\n
\r\n \r\n \r\n \r\n Hibák bejelentése \r\n \r\n Hibák 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
\r\n \r\n \\" target=\\"_blank\\">Hibabejelentéshez kérem látogassa meg az alábbi oldalt. \r\n
\r\n \r\n \r\n \r\n ', '2010-11-06 06:21:42'),
(3303, 'hu', 'support', 'support_cont2', '\r\nSeo Panel Online Források \r\n \r\n ', '2010-11-06 06:21:42'),
(3304, 'hu', 'support', 'support_cont3', '\r\nSeo panel támogatása \r\n \r\n \r\n Támogassa a Seo panelt - amely a világ első nyílt forráskódú Seo segédje. \r\n \r\n Támogassa a Seo panelt - amely a világ első nyílt forráskódú Seo segédje.\r\n Tervezzük, hogy a jövőben folyamatosan új funkciókat adunk a Seo panelhez, de ehhez az Ön segítségére is szükség van.\r\n \r\n Ha úgy érzed, hogy a Seo panel hasznos számodra, akkor kérlek támogasd a fejlesztők csapatát.\r\n Miután támogattál minket, nevedet és oldalad linkjét közzé tesszük a \\"\r\ntarget=\\"_blank\\">támogatói oldalon .\r\n
\r\n \r\n \\" target=\\"_blank\\">A seo panel támogatásához látogassa meg ezt az oldalt. \r\n
\r\n \r\n \r\n \r\n ', '2010-11-06 06:21:42'),
(3305, 'bg', 'website', 'Edit Website', 'Редакция', '2016-12-18 22:19:36'),
(3306, 'bg', 'website', 'plscrtwebsite', 'Моля, добавете интернет сайт, преди да използвате SEO инструментите и SEO модулите.', '2016-12-18 22:19:36'),
(3307, 'bg', 'website', 'Website already exist', 'Сайтът вече съществува', '2016-12-18 22:19:36'),
(3308, 'bg', 'website', 'yourwebalreday', 'вашия сайт, ако вече сте създали такъв.', '2016-12-18 22:19:36'),
(3309, 'bg', 'sitemap', 'Change frequency', 'Честота на обхождане', '2011-07-13 05:14:40'),
(3310, 'bg', 'sitemap', 'clickproceedsitemap', 'Кликнете на Продължи за да създадете файл с карата на сайта ', '2011-07-13 05:14:41'),
(3311, 'bg', 'sitemap', 'Download sitemap file from', 'Изтегли карта на сайта от', '2011-07-13 05:14:41'),
(3312, 'bg', 'sitemap', 'Exclude Url', 'Изключи Url', '2011-07-13 05:14:41'),
(3313, 'bg', 'sitemap', 'processtaketime', 'Продължителността на процеса зависи от броя линкове в сайта Ви. Моля, изчакайте за да изтеглите картата на сайта ', '2011-07-13 05:14:41'),
(3314, 'bg', 'sitemap', 'Sitemap Type', 'Тип на картата', '2011-07-13 05:14:41'),
(3315, 'bg', 'label', 'already exist', 'вече съществува', '2018-08-21 11:09:26'),
(3316, 'bg', 'label', 'Authentication', 'Проверка', '2018-08-21 11:09:26'),
(3317, 'bg', 'label', 'Author', 'Автор', '2018-08-21 11:09:26'),
(3318, 'bg', 'label', 'Click Here', 'Кликнете тук', '2018-08-21 11:09:26'),
(3319, 'bg', 'label', 'Cron', 'Cron', '2018-08-21 11:09:26'),
(3320, 'bg', 'label', 'Description', 'Описание', '2018-08-21 11:09:26'),
(3321, 'bg', 'label', 'Developers', 'Разработчици', '2018-08-21 11:09:26'),
(3322, 'bg', 'label', 'Download', 'Изтегли', '2018-08-21 11:09:26'),
(3323, 'bg', 'label', 'Installation', 'Инсталация', '2018-08-21 11:09:26'),
(3324, 'bg', 'label', 'Keywords', 'Ключови думи', '2018-08-21 11:09:26'),
(3325, 'bg', 'label', 'noactiveplugins', 'Не са намерени активни SEO модули!', '2018-08-21 11:09:26'),
(3326, 'bg', 'label', 'Plugin', 'Модул', '2018-08-21 11:09:26'),
(3327, 'bg', 'label', 'Port', 'Порт', '2018-08-21 11:09:26'),
(3328, 'bg', 'label', 'Proxy', 'Прокси', '2018-08-21 11:09:26'),
(3329, 'bg', 'label', 'Re-install', 'Пре-инсталация', '2018-08-21 11:09:26'),
(3330, 'bg', 'label', 'Sponsors', 'Спонсори', '2018-08-21 11:09:26'),
(3331, 'bg', 'label', 'Title', 'Заглавие', '2018-08-21 11:09:26'),
(3332, 'bg', 'label', 'translation by', 'превод от', '2018-08-21 11:09:26'),
(3333, 'bg', 'label', 'Translators', 'Преводачи', '2018-08-21 11:09:26'),
(3334, 'bg', 'label', 'Upgrade', 'Обнови', '2018-08-21 11:09:26'),
(3335, 'bg', 'label', 'Version', 'Версия', '2018-08-21 11:09:26'),
(3336, 'bg', 'label', 'wantproceed', 'Наистина ли желаете да продължите?', '2018-08-21 11:09:26'),
(3337, 'bg', 'keyword', 'Crawling keyword', 'Обиране на ключова дума', '2016-12-18 22:06:16'),
(3338, 'bg', 'keyword', 'Detailed Keyword Position Reports', 'Детайлни доклади за позиция по ключова дума', '2016-12-18 22:06:16'),
(3339, 'bg', 'keyword', 'Edit Keyword', 'Редакция на ключова дума', '2016-12-18 22:06:16'),
(3340, 'bg', 'keyword', 'Graphical Keyword Position Reports', 'Графични доклади за позиция по ключова дума', '2016-12-18 22:06:16'),
(3341, 'bg', 'keyword', 'Import Keywords', 'Импортиране на ключови думи', '2016-12-18 22:06:16'),
(3342, 'bg', 'keyword', 'Keyword already exist', 'Ключовата дума вече съществува', '2016-12-18 22:06:16'),
(3343, 'bg', 'keyword', 'Keyword Position Report', 'Доклад за позиция по ключова дума', '2016-12-18 22:06:16'),
(3344, 'bg', 'keyword', 'New Keyword', 'Нова ключова дума', '2016-12-18 22:06:16'),
(3345, 'bg', 'keyword', 'not assigned to required search engines', 'не са избрани задължителните търсачки', '2016-12-18 22:06:16'),
(3346, 'bg', 'keyword', 'pleaseselecttool', 'Моля, изберете поне един SEO инструмент', '2016-12-18 22:06:16'),
(3347, 'bg', 'keyword', 'Quick Keyword Position Checker', 'Бърза проверка на позиция', '2016-12-18 22:06:16'),
(3348, 'bg', 'keyword', 'results from ', 'резултати от', '2016-12-18 22:06:16'),
(3349, 'bg', 'keyword', 'Show All results', 'Показване на всички резултати', '2016-12-18 22:06:16'),
(3350, 'bg', 'keyword', 'Successfully crawled keyword', 'Успешно обрана ключова дума', '2016-12-18 22:06:16'),
(3351, 'bg', 'keyword', 'to create new keywords', 'за да добавите нова ключова дума', '2016-12-18 22:06:16'),
(3352, 'bg', 'rank', 'enterurlproceed', 'Въведете по един URL адрес на ред. Кликнете на Продължи за да проверите ранга в Google и Alexa.', '2010-11-15 00:34:40'),
(3353, 'bg', 'rank', 'Google and Alexa Rank Reports', 'Доклади за ранга в Google и Alexa', '2010-11-15 00:34:40'),
(3354, 'bg', 'rank', 'Saved rank results of', 'Запазени ранг резултати за', '2010-11-15 00:34:40'),
(3355, 'bg', 'proxy', 'Edit Proxy', 'Редакция', '2016-12-18 22:08:18'),
(3356, 'bg', 'proxy', 'Proxy Password', 'Прокси парола', '2016-12-18 22:08:18'),
(3357, 'bg', 'proxy', 'Proxy Username', 'Прокси потребител', '2016-12-18 22:08:18'),
(3358, 'bg', 'proxy', 'Proxyalreadyexist', 'Вече съществува такова прокси!', '2016-12-18 22:08:18'),
(3359, 'bg', 'plugin', 'Edit Seo Plugin', 'Редакция', '2012-05-28 22:53:11'),
(3360, 'bg', 'plugin', 'Plugin Name', 'Име на модула', '2012-05-28 22:53:11'),
(3361, 'bg', 'plugin', 'Seo Plugin Details', 'Детайли на SEO модула', '2012-05-28 22:53:11'),
(3362, 'bg', 'login', 'Confirm Password', 'Потвърди парола', '2018-08-21 11:10:13'),
(3363, 'bg', 'login', 'Create my account', 'Създай профил', '2018-08-21 11:10:13'),
(3364, 'bg', 'login', 'Create New Account', 'Създаване на нов профил', '2018-08-21 11:10:13'),
(3365, 'bg', 'login', 'Email', 'Имейл', '2018-08-21 11:10:13'),
(3366, 'bg', 'login', 'emailexist', 'Имейлът вече съществува', '2018-08-21 11:10:13'),
(3367, 'bg', 'login', 'Enter the code as it is shown', 'Въведете кода от картинката', '2018-08-21 11:10:13'),
(3368, 'bg', 'login', 'First Name', 'Име', '2018-08-21 11:10:13'),
(3369, 'bg', 'login', 'Last Name', 'Фамилия', '2018-08-21 11:10:13'),
(3370, 'bg', 'login', 'Login', 'Вход', '2018-08-21 11:10:13'),
(3371, 'bg', 'login', 'Login incorrect', 'Грешен вход', '2018-08-21 11:10:13'),
(3372, 'bg', 'login', 'newaccountsuccess', 'Новият акаунт е създаден успешно!', '2018-08-21 11:10:13'),
(3373, 'bg', 'login', 'Password', 'Парола', '2018-08-21 11:10:13'),
(3374, 'bg', 'login', 'Password incorrect', 'Грешна парола', '2018-08-21 11:10:13'),
(3375, 'bg', 'login', 'Register', 'Регистрация', '2018-08-21 11:10:13'),
(3376, 'bg', 'login', 'Sign in to your account', 'Влез в профила си', '2018-08-21 11:10:13'),
(3377, 'bg', 'login', 'User inactive', 'Потребителят е неактивен', '2018-08-21 11:10:13'),
(3378, 'bg', 'login', 'Username', 'Потребителко име', '2018-08-21 11:10:13'),
(3379, 'bg', 'login', 'usernameexist', 'Потребителското име вече съществува!', '2018-08-21 11:10:13'),
(3380, 'bg', 'panel', 'About Us', 'За нас', '2018-08-21 11:14:04'),
(3381, 'bg', 'panel', 'Add following command to your cron tab', 'Въведете следната команда в вашият cron таб', '2018-08-21 11:14:04'),
(3382, 'bg', 'panel', 'alsocheckfollowlink', 'Проверете и следният линк ако имате нужда от повече детайли.', '2018-08-21 11:14:04'),
(3383, 'bg', 'panel', 'Check Directory', 'Проверка на директория', '2018-08-21 11:14:04'),
(3384, 'bg', 'panel', 'Cron Command', 'Cron Команда', '2018-08-21 11:14:04'),
(3385, 'bg', 'panel', 'Directory Manager', 'Управление на директории', '2018-08-21 11:14:04'),
(3386, 'bg', 'panel', 'Edit My Profile', 'Редакция', '2018-08-21 11:14:04'),
(3387, 'bg', 'panel', 'My Profile', 'Моят профил', '2018-08-21 11:14:04'),
(3388, 'bg', 'panel', 'New Proxy', 'Ново прокси', '2018-08-21 11:14:04'),
(3389, 'bg', 'panel', 'New User', 'Нов потребител', '2018-08-21 11:14:04'),
(3390, 'bg', 'panel', 'New Website', 'Добавяне на уеб сайт', '2018-08-21 11:14:04'),
(3391, 'bg', 'panel', 'Proxy Manager', 'Управление на прокси', '2018-08-21 11:14:04'),
(3392, 'bg', 'panel', 'Report Generation Manager', 'Генериране на доклади', '2018-08-21 11:14:04'),
(3393, 'bg', 'panel', 'Reports Manager', 'Управление на доклади', '2018-08-21 11:14:04'),
(3394, 'bg', 'panel', 'Seo Plugins Manager', 'Управление на SEO модули', '2018-08-21 11:14:04'),
(3395, 'bg', 'panel', 'Seo Tools Manager', 'Управление на SEO инструменти', '2018-08-21 11:14:04'),
(3396, 'bg', 'panel', 'System Settings', 'Системни настройки', '2018-08-21 11:14:04'),
(3397, 'bg', 'panel', 'User Manager', 'Управление на потребители', '2018-08-21 11:14:04'),
(3398, 'bg', 'panel', 'Website Manager', 'Управление на сайтове', '2018-08-21 11:14:04'),
(3399, 'bg', 'settings', 'Click here to become a sponsor for Seo Panel', 'Дарете 100 $ и станете спонсор на Seo Panel.', '2018-08-21 11:24:42'),
(3400, 'bg', 'settings', 'seopanel_description', 'Напълно безплатен контролен панел, за управление на оптимизацията за търсещи машини на вашият уеб сайт. Предоставящ много SEO инструменти за оптимизация, увеличаване и проследяване, представянето на вашите уеб сайтове. Софтуер с отворен код, предоставящ ви възможност да развиете собствени SEO модули за Seo Panel.\r\n', '2018-08-21 11:24:42'),
(3401, 'bg', 'settings', 'seopanel_title', 'Seo Panel: Първият в света SEO контролен панел с отворен код', '2018-08-21 11:24:42'),
(3402, 'bg', 'settings', 'SP_CRAWL_DELAY', 'Забавяне между всяко обхождане от "паяка" (секунди)\r\n', '2018-08-21 11:24:42'),
(3403, 'bg', 'settings', 'SP_DEFAULTLANG', 'Език по подразбиране', '2018-08-21 11:24:42'),
(3404, 'bg', 'settings', 'SP_DESCRIPTION', 'Описание на Seo Panel', '2018-08-21 11:24:42'),
(3405, 'bg', 'settings', 'SP_ENABLE_PROXY', 'Разрешаване на прокси', '2018-08-21 11:24:42'),
(3406, 'bg', 'settings', 'SP_HOTLINKING', 'Включване на защитата против хотлинкинг на снимки', '2018-08-21 11:24:42'),
(3407, 'bg', 'settings', 'SP_KEYWORDS', 'Seo Panel Ключови думи', '2018-08-21 11:24:42'),
(3408, 'bg', 'settings', 'SP_PAGINGNO', 'Резултати на страница', '2018-08-21 11:24:42'),
(3409, 'bg', 'settings', 'SP_TITLE', 'Seo Panel Заглавие', '2018-08-21 11:24:42'),
(3410, 'bg', 'settings', 'SP_USER_GEN_REPORT', 'Позволи на потребителите да генерират доклади', '2018-08-21 11:24:42'),
(3411, 'bg', 'settings', 'SP_USER_REGISTRATION', 'Интерфейс за потребителска регистрация', '2018-08-21 11:24:42'),
(3412, 'bg', 'settings', 'syssettingssaved', 'Настройките са запазени успешно', '2018-08-21 11:24:42'),
(3413, 'bg', 'home', 'Account Summary', 'Обобщена информация', '2011-07-07 05:34:27'),
(3414, 'bg', 'home', 'Backlinks', 'Беклинкове', '2011-07-07 05:34:28'),
(3415, 'bg', 'home', 'Directory Submission', 'Регистрация в Директории', '2011-07-07 05:34:28'),
(39528, 'pt-br', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'A página está sem tags Open Graph - limita a otimização de redes sociais', '2026-01-19 23:10:01'),
(39529, 'ru', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'На странице отсутствуют теги Open Graph - ограничивает оптимизацию для социальных сетей', '2026-01-19 23:10:01'),
(39530, 'tr', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Sayfada Open Graph etiketleri eksik - sosyal medya optimizasyonunu sınırlar', '2026-01-19 23:10:01'),
(39531, 'zh', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', '该页面缺少Open Graph标签 - 限制社交媒体优化', '2026-01-19 23:10:01'),
(39532, 'cn', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', '该页面缺少Open Graph标签 - 限制社交媒体优化', '2026-01-19 23:10:01'),
(39533, 'en', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'The page has Twitter Card tags for optimized Twitter sharing', '2026-01-19 23:10:01'),
(39534, 'ar', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'تحتوي الصفحة على علامات Twitter Card لمشاركة محسنة على تويتر', '2026-01-19 23:10:01'),
(39535, 'bg', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Страницата има Twitter Card тагове за оптимизирано споделяне в Twitter', '2026-01-19 23:10:01'),
(39536, 'de', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Die Seite hat Twitter Card Tags für optimiertes Twitter-Sharing', '2026-01-19 23:10:01'),
(39537, 'es', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'La página tiene etiquetas de Twitter Card para compartición optimizada en Twitter', '2026-01-19 23:10:01'),
(39538, 'fr', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'La page a des balises Twitter Card pour un partage Twitter optimisé', '2026-01-19 23:10:01'),
(39539, 'it', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'La pagina ha tag Twitter Card per una condivisione ottimizzata su Twitter', '2026-01-19 23:10:01'),
(39540, 'nl', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'De pagina heeft Twitter Card tags voor geoptimaliseerd delen op Twitter', '2026-01-19 23:10:01'),
(39541, 'pl', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Strona ma tagi Twitter Card dla zoptymalizowanego udostępniania na Twitter', '2026-01-19 23:10:01'),
(39542, 'pt', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'A página tem tags Twitter Card para compartilhamento otimizado no Twitter', '2026-01-19 23:10:01'),
(39543, 'pt-br', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'A página tem tags Twitter Card para compartilhamento otimizado no Twitter', '2026-01-19 23:10:01'),
(39544, 'ru', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Страница имеет теги Twitter Card для оптимизированного обмена в Twitter', '2026-01-19 23:10:01'),
(39545, 'tr', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Sayfa optimize edilmiş Twitter paylaşımı için Twitter Card etiketlerine sahip', '2026-01-19 23:10:01'),
(39546, 'zh', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', '该页面具有Twitter Card标签,可优化Twitter分享', '2026-01-19 23:10:01'),
(39547, 'cn', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', '该页面具有Twitter Card标签,可优化Twitter分享', '2026-01-19 23:10:01'),
(39548, 'en', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'The page is missing Twitter Card tags - limits Twitter optimization', '2026-01-19 23:10:34'),
(39549, 'ar', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'الصفحة تفتقر إلى علامات Twitter Card - يحد من تحسين تويتر', '2026-01-19 23:10:34'),
(39550, 'bg', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Страницата липсват Twitter Card тагове - ограничава оптимизацията за Twitter', '2026-01-19 23:10:34'),
(39551, 'de', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Der Seite fehlen Twitter Card Tags - begrenzt Twitter-Optimierung', '2026-01-19 23:10:34'),
(39552, 'es', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'La página carece de etiquetas Twitter Card - limita la optimización de Twitter', '2026-01-19 23:10:34'),
(39553, 'fr', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'La page manque de balises Twitter Card - limite l''optimisation Twitter', '2026-01-19 23:10:34'),
(39554, 'it', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'La pagina manca di tag Twitter Card - limita l''ottimizzazione di Twitter', '2026-01-19 23:10:34'),
(39555, 'nl', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'De pagina mist Twitter Card tags - beperkt Twitter-optimalisatie', '2026-01-19 23:10:34'),
(39556, 'pl', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Strona nie ma tagów Twitter Card - ogranicza optymalizację Twitter', '2026-01-19 23:10:34'),
(39557, 'pt', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'A página está sem tags Twitter Card - limita a otimização do Twitter', '2026-01-19 23:10:34'),
(39558, 'pt-br', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'A página está sem tags Twitter Card - limita a otimização do Twitter', '2026-01-19 23:10:34'),
(39559, 'ru', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'На странице отсутствуют теги Twitter Card - ограничивает оптимизацию для Twitter', '2026-01-19 23:10:34'),
(39560, 'tr', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Sayfada Twitter Card etiketleri eksik - Twitter optimizasyonunu sınırlar', '2026-01-19 23:10:34'),
(38911, 'sl', 'review', 'Review Growth Trends', 'Trendi rasti mnenj', '2026-01-19 22:58:50'),
(38912, 'sq', 'review', 'Review Growth Trends', 'Tendencat e rritjes së rishikimeve', '2026-01-19 22:58:50'),
(38913, 'sr', 'review', 'Review Growth Trends', 'Трендови раста рецензија', '2026-01-19 22:58:50'),
(38914, 'sv', 'review', 'Review Growth Trends', 'Tillväxttrender för recensioner', '2026-01-19 22:58:50'),
(38915, 'sw', 'review', 'Review Growth Trends', 'Mwelekeo wa Ukuaji wa Mapitio', '2026-01-19 22:58:50'),
(38916, 'th', 'review', 'Review Growth Trends', 'แนวโน้มการเติบโตของรีวิว', '2026-01-19 22:58:50'),
(38917, 'tl', 'review', 'Review Growth Trends', 'Mga Uso ng Paglaki ng Review', '2026-01-19 22:58:50'),
(38918, 'tr', 'review', 'Review Growth Trends', 'İnceleme Büyüme Trendleri', '2026-01-19 22:58:50'),
(38919, 'uk', 'review', 'Review Growth Trends', 'Тренди зростання відгуків', '2026-01-19 22:58:50'),
(38920, 'vn', 'review', 'Review Growth Trends', 'Xu hướng tăng trưởng đánh giá', '2026-01-19 22:58:50'),
(38921, 'zh', 'review', 'Review Growth Trends', '评论增长趋势', '2026-01-19 22:58:50'),
(38922, 'en', 'review', 'Top Review Links', 'Top Review Links', '2026-01-19 22:58:50'),
(38923, 'ar', 'review', 'Top Review Links', 'أفضل روابط المراجعات', '2026-01-19 22:58:50'),
(38924, 'bg', 'review', 'Top Review Links', 'Топ връзки за отзиви', '2026-01-19 22:58:50'),
(3419, 'bg', 'home', 'Pages Indexed', 'Индексирани страници', '2011-07-07 05:34:28'),
(3420, 'bg', 'home', 'Ranks', 'Ранг', '2011-07-07 05:34:28'),
(3421, 'bg', 'home', 'SiteNameUrl', 'Име/Адрес', '2011-07-07 05:34:28'),
(3422, 'bg', 'home', 'Website Statistics', 'Общи статистики', '2011-07-07 05:34:28'),
(3423, 'bg', 'support', 'support_cont1', ' \r\nSEO Panel Техническа подръжка \r\n \r\n \r\n Пакет от 1000 Директории \r\n \r\n Осигуряваме пакет от 1000 безплатни и потвърдени интернет директории, които можете да добавите към вашият инструмент за регистрация в директории в seo panel. \r\n Този пакет ще ви помогне да увеличите беклинковете към вашите сайтове. \r\n Всъщност, списъка с 1000 директории се представя за да съберем средства за бъдеща разработка на seo panel. \r\n За да получите списъка с 1000 директории, моля \\" target=\\"_blank\\">направете дарение \r\nот 10 $ или повече. Дарението ще се използва за подобряване на seo panel. \r\n Ако имате въпроси относно списъка с 1000 директории, моля \\"\r\ntarget=\\"_blank\\">свържете се с нас или създайте билет в \\"\r\ntarget=\\"_blank\\">системата за техническа подръжка . \r\n
\r\n \r\n \\" target=\\"_blank\\">Посетете този линк за да направите дарение на seo panel \r\n
\r\n \r\n \r\n \r\n \r\n Пакет локални търсачки \r\n \r\n Добавяне локализирани домейни на търсачка - google,yahoo,msn(например: www.google.de,www.google.fr\r\nи др. ) към SEO panel за позиция по ключова дума , за да следите локалните резултати за вашите сайтове. \r\n За да добавим пакета за локални търсачки (според вашите изисквания), моля \\" target=\\"_blank\\">направете дарение от 10 $ или повече. Дарението ще се използва за подобряване на seo panel. \r\n Преди да изпратите даренията, моля \\" target=\\"_blank\\">свържете се с нас за да ни предоставите списък с желаните домейни на търсачки за локално търсене. \r\n \r\n Също така, за да добавим нови търсачки (напр.:baidu.com) към проверката на позиция по ключова дума към вашият seo panel,\r\nмоля \\" target=\\"_blank\\">свържете се с нас или създайте билет в \\" target=\\"_blank\\">системата за техническа подръжка . \r\n
\r\n \r\n \\" target=\\"_blank\\">Посетете този линк за да се свържете с нас \r\n
\r\n \r\n \r\n \r\n \r\n Seo Panel Модули \r\n \r\n Добавете seo модули към вашият seo panel за да разширите възможностите му , според вашите нужди. \r\n \\" target=\\"_blank\\">Seo panel модулите се разработват, както от екипа на seo panel, така и от други разработчици. \r\n Можете лесно да разработите seo модули за вашият seo panel. \r\n Можете да ни \\" target=\\"_blank\\">изпратите вашият seo модул за seo panel и ние ще го публикуваме на нашият сайт след като го прегледаме . \r\n
\r\n \r\n \\" target=\\"_blank\\">Посетете този линк за да изтеглите последните seo panel модули \r\n
\r\n \r\n \r\n \r\n Връзка с нас \r\n \r\n Свържете се с нас за всякакви въпроси свързани с инструментите, модулите, опциите и т.н. на seo panel като използвате линка по-долу. \r\n
\r\n \r\n \\" target=\\"_blank\\">Посетете този линк за да се свържете с нас \r\n
\r\n \r\n \r\n \r\n Система за техническа подръжка \r\n \r\n За да получите техническа подръжка от екипа на seo panel относно инсталирането, модулите, инструментите и опциите на seo panel . Например: Да настройте cron за проверката на позиция по ключова дума. \r\n
\r\n \r\n \\" target=\\"_blank\\">Посетете този линк за да създадете билет в системата за техническа подръжка \r\n
\r\n \r\n \r\n \r\n Докладване на бъгове(грешки) \r\n \r\n Докладвайте за бъгове в инсталирането, модулите, инструментите, опциите и т.н. на seo panel използвайки линка по долу. \r\n По този начин, ни помогате да подобрим работата на следащите версии на seo panel. \r\n
\r\n \r\n \\" target=\\"_blank\\">Посетете този линк за да докладвате за бъгове \r\n
\r\n \r\n \r\n \r\n ', '2010-11-15 00:47:30'),
(3424, 'bg', 'support', 'support_cont2', ' \r\nSEO Panel - Онлайн ресурси \r\n \r\n \r\n \r\n Seo Panel - Помощна информация \r\n \r\n Можете да разгледате \\" target=\\"_blank\\">документацията на SEO panel в помощната информация . Съдържа документация за инструментите на SEO panel, модулите и различните функционалности. \r\n Най доброто място в интернет, където можете да получите помощ относно SEO panel. Надяваме се да\r\nдопълвате помощната информация на seo panel, ако намерите някакви грешки или нещо липсва. \r\n
\r\n \r\n \\" target=\\"_blank\\">Посетете секцията Помощна информация \r\n
\r\n \r\n \r\n \r\n Форум Seo Panel \r\n \r\n Мястото за дискусии на първият в света seo контролен панел с отворен код. \r\n Най-доброто място да откриете отговори на вашите въпроси относно seo panel. \r\n Също така можете да споделите вашият опит в използването на seo panel за оптимизиране на вашите уеб сайтове. \r\n
\r\n \r\n \\" target=\\"_blank\\">Посетете форума на seo panel \r\n
\r\n \r\n \r\n \r\n ', '2010-11-15 00:47:30'),
(3425, 'bg', 'support', 'support_cont3', ' \r\nНаправете дарение на SEO Panel \r\n \r\n \r\n Направете дарение на Seo Panel - Първият в света, SEO контролен панел с отворен код \r\n \r\n Направете дарение на SEO panel за да подкрепите първият SEO контролен панел с отворен код в света. \r\n Планираме да добавяме и подобряваме функционалността на SEO panel в бъдеще. \r\n Заедно, с вашата подкрепа можем да постигнем нашите цели . \r\n Ако смятате, че SEO panel си струва , моля дарете някаква сума на екипа на SEO panel. \r\n Ще публикуваме вашето име и информация за вашият сайт на \\"\r\ntarget=\\"_blank\\">страницата с дарители , след като получим дарението ви. \r\n
\r\n \r\n \\" target=\\"_blank\\">Посетете този линк за да направите дарение на SEO panel \r\n
\r\n \r\n \r\n \r\n ', '2010-11-15 00:47:30'),
(3426, 'bg', 'seotools', 'Automatic Submission', 'Автоматична регистрация', '2018-08-21 11:21:10'),
(3427, 'bg', 'seotools', 'backlink-checker', 'Проверка на беклинкове', '2018-08-21 11:21:10'),
(3428, 'bg', 'seotools', 'Backlinks Reports', 'Доклади за беклинкове', '2018-08-21 11:21:10'),
(3429, 'bg', 'seotools', 'Check Submission Status', 'Проверка на статуса на регистрация', '2018-08-21 11:21:10'),
(3430, 'bg', 'seotools', 'clickgeneratereports', 'Кликнете на Продължи за да генерирате доклади', '2018-08-21 11:21:10'),
(3431, 'bg', 'seotools', 'Detailed Position Reports', 'Детайлни доклади за позиция', '2018-08-21 11:21:10'),
(3432, 'bg', 'seotools', 'directory-submission', 'Регистриране в директории', '2018-08-21 11:21:10'),
(3433, 'bg', 'seotools', 'Featured Submission', 'Препоръчана регистрация', '2018-08-21 11:21:10'),
(3434, 'bg', 'seotools', 'Generate Backlinks Reports', 'Генериране на доклади за беклинкове', '2018-08-21 11:21:10'),
(3435, 'bg', 'seotools', 'Generate Keyword Reports', 'Генериране на доклади за ключови думи', '2018-08-21 11:21:10'),
(3436, 'bg', 'seotools', 'Generate Rank Reports', 'Генериране на доклади за ранг', '2018-08-21 11:21:10'),
(3437, 'bg', 'seotools', 'Generate Saturation Reports', 'Генериране на доклади за наситеността', '2018-08-21 11:21:10'),
(3438, 'bg', 'seotools', 'Google Sitemap Generator', 'Генериране на карта за Google', '2018-08-21 11:21:10'),
(3439, 'bg', 'seotools', 'Graphical Position Reports', 'Графични доклади за позиция', '2018-08-21 11:21:10'),
(3440, 'bg', 'seotools', 'Keyword Position Summary', 'Позиции по ключови думи', '2018-08-21 11:21:10'),
(3441, 'bg', 'seotools', 'keyword-position-checker', 'Позиция по ключова дума', '2018-08-21 11:21:10'),
(3442, 'bg', 'seotools', 'Keywords Manager', 'Управление на ключови думи', '2018-08-21 11:21:10'),
(3443, 'bg', 'seotools', 'Quick Backlinks Checker', 'Бърза проверка на беклинкове', '2018-08-21 11:21:10'),
(3444, 'bg', 'seotools', 'Quick Position Checker', 'Бърза проверка на позиция', '2018-08-21 11:21:10'),
(3445, 'bg', 'seotools', 'Quick Rank Checker', 'Бърза проверка на ранг', '2018-08-21 11:21:10'),
(3446, 'bg', 'seotools', 'Quick Saturation Checker', 'Бърза проверка на наситеността', '2018-08-21 11:21:10'),
(3447, 'bg', 'seotools', 'Rank Reports', 'Доклади за ранг', '2018-08-21 11:21:10'),
(3448, 'bg', 'seotools', 'rank-checker', 'Проверка на ранг', '2018-08-21 11:21:10'),
(3449, 'bg', 'seotools', 'Saturation Reports', 'Доклади за наситеността', '2018-08-21 11:21:10'),
(3450, 'bg', 'seotools', 'saturation-checker', 'Наситеност в търсачка', '2018-08-21 11:21:10'),
(3451, 'bg', 'seotools', 'sitemap-generator', 'Генератор на карта на сайта', '2018-08-21 11:21:10'),
(3452, 'bg', 'seotools', 'Skipped Directories', 'Прескочени директории', '2018-08-21 11:21:10'),
(3453, 'bg', 'seotools', 'Submission Reports', 'Доклади за добавени в директории', '2018-08-21 11:21:10'),
(3454, 'bg', 'seotools', 'User Access', 'Потребителски достъп', '2018-08-21 11:21:10');
INSERT INTO `texts` VALUES
(3455, 'bg', 'saturation', 'clickproceedsaturation', 'Въведете по един URL адрес на ред. Кликнете на Продължи за да видите резултатите за наситеност в търсачка', '2010-11-15 00:40:27'),
(3456, 'bg', 'saturation', 'GenerateSaturationReports', 'Генериране на доклади за наситеността', '2010-11-15 00:40:27'),
(3457, 'bg', 'saturation', 'Quick Search Engine Saturation Checker', 'Бърза проверка за наситеността', '2010-11-15 00:40:27'),
(3458, 'bg', 'saturation', 'Saved Search Engine Saturation results of', 'Запазени доклади за наситеността за', '2010-11-15 00:40:27'),
(3459, 'bg', 'saturation', 'Search Engine Saturation Reports', 'Доклади за наситеността', '2010-11-15 00:40:27'),
(3460, 'bg', 'directory', 'Add back to directory list', 'Добави обратно към списъка с директории', '2012-11-10 02:03:43'),
(3461, 'bg', 'directory', 'Approved', 'Одобрено', '2012-11-10 02:03:43'),
(3462, 'bg', 'directory', 'Captcha', 'Картинен код', '2012-11-10 02:03:43'),
(3463, 'bg', 'directory', 'categorynote', 'Категории, разделете ги с запетая според приоритета. Започнете с категорията с най-висок приоритет.', '2012-11-10 02:03:43'),
(3464, 'bg', 'directory', 'Check Directory Status', 'Проверка на статуса на директория', '2012-11-10 02:03:43'),
(3465, 'bg', 'directory', 'Check Directory Submission Status', 'Проверете статуса на регистрация за директория', '2012-11-10 02:03:43'),
(3466, 'bg', 'directory', 'clicktoproceeddirsts', 'Кликнете на Продължи за да проверите статуса на директория.', '2012-11-10 02:03:43'),
(3467, 'bg', 'directory', 'Confirmation', 'Потвърждение', '2012-11-10 02:03:43'),
(3468, 'bg', 'directory', 'desnote', 'Някои директории изискват да въведете минимум 150 символа в полето за описание.', '2012-11-10 02:03:43'),
(3469, 'bg', 'directory', 'Directories with out captcha', 'Директории без картинен код', '2012-11-10 02:03:43'),
(3470, 'bg', 'directory', 'Directory Submission Reports', 'Доклади за регистрация в директория', '2012-11-10 02:03:43'),
(3471, 'bg', 'directory', 'Enter the code shown', 'Въведете кода от картинката', '2012-11-10 02:03:43'),
(3472, 'bg', 'directory', 'nocatnote', 'Категорията за регистрация не е намерена на страницата за регистрация. Моля кликнете на Презареди или Пропусни ', '2012-11-10 02:03:43'),
(3473, 'bg', 'directory', 'nodirnote', 'Няма намерени Активни директории ', '2012-11-10 02:03:43'),
(3474, 'bg', 'directory', 'nosuccessnote', 'Не сте получили съобщение за потвърждаване, Моля проверете вашият имейл за съобщението за потвърждаване', '2012-11-10 02:03:43'),
(3475, 'bg', 'directory', 'optionalnote', 'Описанията и заглавията по-долу, не са задължителни! Използват се за добавяне на произволни заглавие и описание към директорията, за по добри резултати.', '2012-11-10 02:03:43'),
(3476, 'bg', 'directory', 'Owner Email', 'Имейл на собственика', '2012-11-10 02:03:43'),
(3477, 'bg', 'directory', 'Owner Name', 'Име на собственика', '2012-11-10 02:03:43'),
(3478, 'bg', 'directory', 'Pending', 'Изчакващ', '2012-11-10 02:03:43'),
(3479, 'bg', 'directory', 'Please select a website to proceed', 'Моля, изберете уеб сайт, за да продължите', '2012-11-10 02:03:43'),
(3480, 'bg', 'directory', 'selectwebsiteproceed', 'Изберете Интернет сайт за да Продължите с регистрацията в директория. Отбележете Директории без картинен код за да регистрирате в директории, в които не се изисква потвърждение чрез картинен код ', '2012-11-10 02:03:43'),
(3481, 'bg', 'directory', 'selectwebsiteschecksub', 'Изберете Интернет сайт за да Продължите с проверка на регистрацията в директория. ', '2012-11-10 02:03:43'),
(3482, 'bg', 'directory', 'Semi Automatic Directory Submission Tool', 'Полу-автоматично регистриране в директории', '2012-11-10 02:03:43'),
(3483, 'bg', 'directory', 'spamemailnote', 'Някой директори може да изпращат SPAM съобщения, не ви препоръчваме да използвате главния си имейл адрес.', '2012-11-10 02:03:43'),
(3484, 'bg', 'directory', 'Submission Details', 'Детайли на регистрацията', '2012-11-10 02:03:43'),
(3485, 'bg', 'directory', 'Submit Description', 'Описание за регистрацията', '2012-11-10 02:03:43'),
(3486, 'bg', 'directory', 'Submit Keywords', 'Ключови думи за регистрацията', '2012-11-10 02:03:43'),
(3487, 'bg', 'directory', 'Submit Title', 'Заглавие за регистрацията', '2012-11-10 02:03:43'),
(3488, 'bg', 'directory', 'Website Category', 'Категория на сайта', '2012-11-10 02:03:43'),
(3489, 'bg', 'directory', 'Website Url', 'Адрес на сайта', '2012-11-10 02:03:43'),
(3490, 'pt', 'support', 'support_cont1', '\r\n Seo panel sistema de suporte \r\n \r\n\r\n Pacote de 1000 directórios \r\n\r\nNós estamos fornecendo um pacote de 1000 activos e verificados inserções em directórios da internet, para adicionar no seu Seo panel na ferramenta de submissão de directórios .\r\nVai ajudar você a aumentar backlinks a visibilidade dos seus sites.\r\nActualmente estamos a angariar uma doacção para futuros desenvolvimentos \r\npara o Seo Panel.\r\nPara obter a lista 1000 directórios \\" target = \\"_blank\\"> doe \r\nUS $ 20 ou mais para melhorar as características do Seo Panel.\r\nSe você tiver alguma dúvida sobre pacote de 1000 do directórios, por favor \\"\r\ntarget ="_blank"> contato nos ou submeta um ticket no \\"\r\ntarget = \\"_blank\\"> Suporte Sistema .\r\n
\r\n\r\n \\" Target ="_blank"> Visite este link para doar para seo panel \r\n
\r\n \r\n \r\n\r\n\r\n Pacote de motores de busca Locais \r\n\r\nAdicionar motor de busca locais , domínios do google, yahoo, msn (por exemplo, : www.google.de, www.google.fr, etc ) para seo panel palavra-chave verifica a posição , para acompanhar a sua perfomance site localmente.\r\nPara obter pacotes de motores de busca locais (de acordo com sua exigência) \\" target =\\"_blank \\"> doar US $ 20 ou mais para melhorar as características de seo panel.\r\nAntes de enviar doações, por favor \\" Target = \\"_blank\\"> Entre em contato para fornecer-nos o domínio do motor de busca em questão.\r\n \r\nTambém para adicionar novos motores de pesquisa (por exemplo: baidu.com) no seu seo panel e palavras-chave,\r\npor favor \\" target = \\" _blank\\">contato nos ou abrir um ticket no \\" target = \\"_blank\\"> sistema de suporte .\r\n
\r\n \r\n\\" Target = \\"_blank\\"> Visite este link para entrar em contacto connosco \r\n
\r\n \r\n \r\n\r\n\r\nSeo plugins \r\n\r\nAdicionar plugins ao seu Seo Panel para estender os recursos de acordo com a sua exigência.\r\n\\" Target = \\"_blank\\"> Seo Panel plugins são fornecidos por Seo Panel e e por terceiros.\r\nVocê também pode facilmente desenvolver plugins de SEO para seu painel de seo.\r\nVocê pode \\"Target =\\" _blank \\"> apresentar o seu plugin para Seo, Seo Panel vai publicar no nosso site após testarmos o plugin.\r\n
\r\n\r\n\\" Target = \\"_blank\\"> Visite este link para obter os plugins para o Seo Panel \r\n
\r\n \r\n \r\n\r\nFale Connosco \r\n\r\nEntre em contacto connosco para esclarecer qualquer dúvida sobre as ferramentas de Seo Panel, plugins e funcionalidades etc usando o link abaixo.\r\n
\r\n\r\n\\" Target = \\"_blank\\"> Visite este link para contacto connosco \r\n
\r\n \r\n \r\n\r\n Tickets de Suporte \r\n\r\nPara obter suporte técnico da equipe do Seo Panel para configurar as ferramentas do Seo Panel, plugins e\r\nrecursos Por exemplo:. Para configurar o cron para verificador de posição da palavra-chave.\r\n
\r\n\r\n\\" Target = \\"_blank\\"> Visite este link para criar um ticket de suporte \r\n
\r\n \r\n \r\n\r\nRelatar bugs \r\n\r\nRelatório de bugs sobre ferramentas do Seo painel, plugins e funcionalidades etc usando o link abaixo.\r\npor favor, ajude-nos a melhorar as características das versões vindouras.\r\n
\r\n\r\n \\"Target =\\"_blank\\"> Visite este link para relatar bugs \r\n
\r\n \r\n \r\n \r\n ', '2010-11-18 07:21:31'),
(3491, 'pt', 'support', 'support_cont2', '\r\n Recursos on-line do Seo Panel \r\n \r\n\r\n\r\nGuia de Ajuda do Seo Panel \r\n\r\nVocê pode ver a \\" Target = \\"_blank\\"> documentação de ajuda do Seo Panel , que contém documentos dos recursos para as ferramentas do SEO Panel, plugins e afins.\r\n É o melhor lugar na internet para obter ajuda sobre SEO Panel. Esperamos que você possa contribuir para o guia de ajuda do Seo Panel , caso você encontre erros ou coisas que faltam.\r\n
\r\n\r\n\\" Target = \\"_blank\\"> Visite o guia de ajuda do Seo Panel \r\n
\r\n \r\n \r\n\r\n Fórum do Seo Panel \r\n\r\nUm lugar para discutir sobre a primeiro software livre do mundo de controle de Seo .\r\nÉ o melhor local para encontrar as respostas para as suas perguntas sobre SEO Panel.\r\n Também você pode partilhar a sua experiência , enquanto usa o SEO Panel para optimizar os seus sites.\r\n
\r\n\r\n\\" Target = \\"_blank\\"> Visite Fórum do Seo Panel \r\n
\r\n \r\n \r\n \r\n ', '2010-11-18 07:21:31'),
(3492, 'pt', 'support', 'support_cont3', '\r\n Doações para Seo Panel \r\n \r\n\r\n Doações para Seo Panel - Primeiro software livre de controle Seo do mundo \r\n\r\n Doe para o suporte do Seo Panel, o primeiro Seo de código aberto do mundo.\r\nEstamos planear acrescentar e melhorar características do Seo Panel no futuro.\r\n Só com o seu apoio é nós podemos alcançar nossos objectivos.\r\nSe você acha que o Seo Panel preenche os requisitos , por favor doe alguma quantia para a equipa do Seo Panel.\r\n Vamos publicar seu nome e informações do seu site \\"\r\ntarget = \\"_blank\\"> página de doações , quando recebermos a sua doação.\r\n
\r\n\r\n\\" Target = \\"_blank\\"> Visite este link para doar para seo painel \r\n
\r\n \r\n \r\n \r\n ', '2010-11-18 07:21:31'),
(3493, 'en', 'settings', 'SP_USER_AGENT', 'User agent', '2018-01-23 00:59:29'),
(3494, 'de', 'settings', 'SP_USER_AGENT', 'User-Agent', '2021-01-08 13:28:43'),
(3495, 'bg', 'settings', 'SP_USER_AGENT', 'Потребителски агент', '2018-08-21 11:24:42'),
(3496, 'zh', 'settings', 'SP_USER_AGENT', '用户代理', '2014-05-15 21:56:30'),
(3497, 'nl', 'settings', 'SP_USER_AGENT', 'User agent', '2014-01-08 02:51:05'),
(3498, 'fr', 'settings', 'SP_USER_AGENT', 'User agent', '2019-03-28 18:39:30'),
(3499, 'hu', 'settings', 'SP_USER_AGENT', 'User agent', '2013-02-06 00:25:44'),
(3500, 'it', 'settings', 'SP_USER_AGENT', 'User agent', '2018-08-21 11:16:32'),
(3501, 'pl', 'settings', 'SP_USER_AGENT', 'agent użytkownika', '2014-05-11 23:49:58'),
(3502, 'pt', 'settings', 'SP_USER_AGENT', 'User-agent', '2018-01-26 00:23:30'),
(3503, 'ro', 'settings', 'SP_USER_AGENT', 'Utilizator agent', '2012-05-19 01:16:44'),
(3504, 'ru', 'settings', 'SP_USER_AGENT', 'Пользователь агента', '2024-07-17 15:22:42'),
(3505, 'es', 'settings', 'SP_USER_AGENT', 'Agente de usuario', '2012-05-12 15:03:05'),
(3506, 'tr', 'website', 'Edit Website', 'Siteyi Düzenle', '2017-02-04 18:19:01'),
(3507, 'tr', 'website', 'plscrtwebsite', 'Lütfen Seo Araçları ve Seo Eklentilerini kullanmaya başlamadan önce bir site oluşturunuz.', '2017-02-04 18:19:01'),
(3508, 'tr', 'website', 'Website already exist', 'Web site zaten var.', '2017-02-04 18:19:01'),
(3509, 'tr', 'website', 'yourwebalreday', 'Web siteniz Zaten oluşturulmuş.', '2017-02-04 18:19:01'),
(3510, 'tr', 'user', 'Edit User', 'Üye Düzenle', '2017-02-04 18:22:48'),
(3511, 'tr', 'user', 'Saved My Profile Details', 'Profil detaylarınız kaydedildi.', '2017-02-04 18:22:48'),
(3512, 'tr', 'sitemap', 'Change frequency', 'Frekansı Değiştir', '2010-11-23 15:10:28'),
(3513, 'tr', 'sitemap', 'clickproceedsitemap', 'Site haritası dosyası oluşturmak için devam b> tıklayın\r\n', '2010-11-23 15:10:28'),
(3514, 'tr', 'sitemap', 'Download sitemap file from', 'Site haritası dosyasından indir', '2010-11-23 15:10:28'),
(3515, 'tr', 'sitemap', 'Exclude Url', 'URL çıkar', '2010-11-23 15:10:28'),
(3516, 'tr', 'sitemap', 'processtaketime', 'Bu süreçte sitenize link sayısına göre zaman alacaktır. site haritası dosyaları almak için bekleyin', '2010-11-23 15:10:28'),
(3517, 'tr', 'sitemap', 'Sitemap Type', 'Site Haritası Tipi', '2010-11-23 15:10:28'),
(3518, 'tr', 'settings', 'Click here to become a sponsor for Seo Panel', '$100 Bağış yap ve sponsor ol Seo Panel''e', '2017-02-04 18:45:16'),
(3519, 'tr', 'settings', 'seopanel_description', 'web sitelerinin arama motoru optimizasyonu yönetmek için tam bir ücretsiz kontrol paneli. O gelişmiş seo araçları içeren verimliliği arttırmak için web sitelerini izleyebilir. Onun açık kaynak yazılım ve ayrıca seo panel için kendi seo eklentileri gelişebilir.', '2017-02-04 18:45:16'),
(3520, 'tr', 'settings', 'seopanel_title', 'Seo Panel:birden çok web sitelerini yönetmek için dünyanın ilk açık kaynak seo kontrol paneli', '2017-02-04 18:45:16'),
(3521, 'tr', 'settings', 'SP_CRAWL_DELAY', 'Gecikme her tarama (saniye) arasında', '2017-02-04 18:45:16'),
(3522, 'tr', 'settings', 'SP_DEFAULTLANG', 'Varsayılan Dil', '2017-02-04 18:45:16'),
(3523, 'tr', 'settings', 'SP_DESCRIPTION', 'Seo Panel DAçıklama', '2017-02-04 18:45:16'),
(3524, 'tr', 'settings', 'SP_ENABLE_PROXY', 'Proxy Etkinleştir', '2017-02-04 18:45:16'),
(3525, 'tr', 'settings', 'SP_HOTLINKING', 'hotlink koruması etkin', '2017-02-04 18:45:16'),
(3526, 'tr', 'settings', 'SP_KEYWORDS', 'Seo Panel Kelimeleri', '2017-02-04 18:45:16'),
(3527, 'tr', 'settings', 'SP_PAGINGNO', 'sayfa başına girişlerin sayısı', '2017-02-04 18:45:16'),
(3528, 'tr', 'settings', 'SP_TITLE', 'Seo Panel Başlığı', '2017-02-04 18:45:16'),
(3529, 'tr', 'settings', 'SP_USER_AGENT', 'Kullanıcı Arayüzü', '2017-02-04 18:45:16'),
(3530, 'tr', 'settings', 'SP_USER_GEN_REPORT', 'rapor oluşturmak için üyeye izin verin', '2017-02-04 18:45:16'),
(3531, 'tr', 'settings', 'SP_USER_REGISTRATION', 'Kullanıcı kaydı arabirimi', '2017-02-04 18:45:16'),
(3532, 'tr', 'settings', 'syssettingssaved', 'Sistem ayarlarını başarıyla kaydedildi!', '2017-02-04 18:45:16'),
(3533, 'tr', 'seotools', 'Automatic Submission', 'Otomatik Gönderme', '2011-07-10 14:12:15'),
(3534, 'tr', 'seotools', 'backlink-checker', 'Backlink Denetleyicisi', '2011-07-10 14:12:15'),
(3535, 'tr', 'seotools', 'Backlinks Reports', 'Backlink Raporları', '2011-07-10 14:12:15'),
(3536, 'tr', 'seotools', 'Check Submission Status', 'Kontrol Gönderme Durumu', '2011-07-10 14:12:15'),
(3537, 'tr', 'seotools', 'clickgeneratereports', 'Raporları oluşturmak için Devam tıklayınız', '2011-07-10 14:12:15'),
(3538, 'tr', 'seotools', 'Detailed Position Reports', 'Ayrıntılı Pozisyon Raporları', '2011-07-10 14:12:15'),
(3539, 'tr', 'seotools', 'directory-submission', 'Dizin Gönderme', '2011-07-10 14:12:15'),
(3540, 'tr', 'seotools', 'Featured Submission', 'Özellikli Gönderme', '2011-07-10 14:12:15'),
(3541, 'tr', 'seotools', 'Generate Backlinks Reports', 'Geri raporları oluştur', '2011-07-10 14:12:15'),
(3542, 'tr', 'seotools', 'Generate Keyword Reports', 'Anhtar Kelime raporları oluştur', '2011-07-10 14:12:15'),
(3543, 'tr', 'seotools', 'Generate Rank Reports', 'Rütbe raporları oluştur', '2011-07-10 14:12:15'),
(3544, 'tr', 'seotools', 'Generate Saturation Reports', 'Doygunluk raporları oluştur', '2011-07-10 14:12:15'),
(3545, 'tr', 'seotools', 'Google Sitemap Generator', 'Google Site Haritası Raporu', '2011-07-10 14:12:15'),
(3546, 'tr', 'seotools', 'Graphical Position Reports', 'Grafik pozisyon raporları', '2011-07-10 14:12:15'),
(3547, 'tr', 'seotools', 'Keyword Position Summary', 'Anahtar Kelime Konumu Özeti', '2011-07-10 14:12:15'),
(3548, 'tr', 'seotools', 'keyword-position-checker', 'Anahtar Kelime Konumu Denetleme', '2011-07-10 14:12:15'),
(3549, 'tr', 'seotools', 'Keywords Manager', 'Anahtar Kelime yöneticisi', '2011-07-10 14:12:15'),
(3550, 'tr', 'seotools', 'Quick Backlinks Checker', 'Hızlı Backlink denetçisi', '2011-07-10 14:12:15'),
(3551, 'tr', 'seotools', 'Quick Position Checker', 'Hızlı Pozisyon denetçisi', '2011-07-10 14:12:15'),
(3552, 'tr', 'seotools', 'Quick Rank Checker', 'Hızlı rütbe denetçisi', '2011-07-10 14:12:15'),
(3553, 'tr', 'seotools', 'Quick Saturation Checker', 'Hızlı Doygunluk denetimi', '2011-07-10 14:12:15'),
(3554, 'tr', 'seotools', 'Rank Reports', 'Rütbe raporları', '2011-07-10 14:12:15'),
(3555, 'tr', 'seotools', 'rank-checker', 'rütbe denetçisi', '2011-07-10 14:12:15'),
(3556, 'tr', 'seotools', 'Saturation Reports', 'Doygunluk raporları', '2011-07-10 14:12:15'),
(3557, 'tr', 'seotools', 'saturation-checker', 'Doygunluk Araman motoru', '2011-07-10 14:12:15'),
(3558, 'tr', 'seotools', 'sitemap-generator', 'Site Haritası Oluşturucu', '2011-07-10 14:12:15'),
(3559, 'tr', 'seotools', 'Skipped Directories', 'Atlanan Dizinler', '2011-07-10 14:12:15'),
(3560, 'tr', 'seotools', 'Submission Reports', 'Hazırlanmış Raporlar', '2011-07-10 14:12:15'),
(3561, 'tr', 'seotools', 'User Access', 'Kullanıcı Erişimi', '2011-07-10 14:12:15'),
(3562, 'tr', 'backlink', 'clickproceedbacklink', 'Backlink sonuçlarını görmek istediğiniz sitelerin URL'' lerini alt alta yazarak Devam Tıklayınız.', '2017-02-04 18:05:06'),
(3563, 'tr', 'backlink', 'Saved backlink results of', 'Kaydedilen backlink sonuçları', '2017-02-04 18:05:06'),
(3564, 'tr', 'button', 'Cancel', 'Kapat', '2014-01-09 00:36:20'),
(3565, 'tr', 'button', 'Check Status', 'Kontrol Et', '2014-01-09 00:36:20'),
(3566, 'tr', 'button', 'Proceed', 'Devam', '2014-01-09 00:36:20'),
(3567, 'tr', 'button', 'Reload', 'Yeniden', '2014-01-09 00:36:20'),
(3568, 'tr', 'button', 'Show Details', 'Detayları Görüntüle', '2014-01-09 00:36:20'),
(3569, 'tr', 'button', 'Show Records', 'Kayıtları Göster', '2014-01-09 00:36:20'),
(3570, 'tr', 'button', 'Skip', 'Geç', '2014-01-09 00:36:20'),
(3571, 'tr', 'button', 'Submit', 'Onayla', '2014-01-09 00:36:20'),
(3572, 'tr', 'common', 'Action', 'Eylem', '2019-05-25 22:52:20'),
(3573, 'tr', 'common', 'Activate', 'Etkinlik', '2019-05-25 22:52:20'),
(3574, 'tr', 'common', 'Active', 'Aktif', '2019-05-25 22:52:20'),
(3575, 'tr', 'common', 'Admin Panel', 'Yönetici Paneli', '2019-05-25 22:52:20'),
(3576, 'tr', 'common', 'Alexa Rank', 'Alexa Rank', '2019-05-25 22:52:20'),
(3577, 'tr', 'common', 'All', 'Hepsi', '2019-05-25 22:52:20'),
(3578, 'tr', 'common', 'Category', 'Kategori', '2019-05-25 22:52:20'),
(3579, 'tr', 'common', 'contact', 'İletişim', '2019-05-25 22:52:20'),
(3580, 'tr', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Tüm Hakları Saklıdır. Türkçeleştiren Innova Think', '2019-05-25 22:52:20'),
(3581, 'tr', 'common', 'Country', 'Ülke', '2019-05-25 22:52:20'),
(3582, 'tr', 'common', 'Crawl Meta Data', 'Meta Tarama Verisi', '2019-05-25 22:52:20'),
(3583, 'tr', 'common', 'Date', 'Tarih', '2019-05-25 22:52:20'),
(3584, 'tr', 'common', 'Delete', 'Sil', '2019-05-25 22:52:20'),
(3585, 'tr', 'common', 'Details', 'Detay', '2019-05-25 22:52:20'),
(3586, 'tr', 'common', 'Directory', 'Dizin', '2019-05-25 22:52:20'),
(3587, 'tr', 'common', 'Donate', 'Bağış', '2019-05-25 22:52:20'),
(3588, 'tr', 'common', 'Edit', 'Düzenle', '2019-05-25 22:52:20'),
(3589, 'tr', 'common', 'Entry cannot be blank', 'Giriş boş olamaz', '2019-05-25 22:52:20'),
(3590, 'tr', 'common', 'entrynotvalid', 'Geçerli Bir giriş görünmüyor', '2019-05-25 22:52:20'),
(3591, 'tr', 'common', 'failed', 'hatalı', '2019-05-25 22:52:20'),
(3592, 'tr', 'common', 'forum', 'Forum', '2019-05-25 22:52:20'),
(3593, 'tr', 'common', 'Found', 'Bulundu', '2019-05-25 22:52:20'),
(3594, 'tr', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:52:20'),
(3595, 'tr', 'common', 'help', 'Yardım', '2019-05-25 22:52:20'),
(3596, 'tr', 'common', 'hidenews', 'Seo Panel haberlerini sakla', '2019-05-25 22:52:20'),
(3597, 'tr', 'common', 'Id', 'İD', '2019-05-25 22:52:20'),
(3598, 'tr', 'common', 'Inactivate', 'Etkin değil', '2019-05-25 22:52:20'),
(3599, 'tr', 'common', 'Inactive', 'Pasif', '2019-05-25 22:52:20'),
(3600, 'tr', 'common', 'Invalid characters', 'hatalı karakter', '2019-05-25 22:52:20'),
(3601, 'tr', 'common', 'Invalid code entered', 'hatalı kod girdiniz', '2019-05-25 22:52:20'),
(3602, 'tr', 'common', 'Invalid email address entered', 'hatalı mail adresi girdiniz', '2019-05-25 22:52:20'),
(3603, 'tr', 'common', 'Invalid value', 'Geçersiz değer', '2019-05-25 22:52:20'),
(3604, 'tr', 'common', 'Keyword', 'Kelime', '2019-05-25 22:52:20'),
(3605, 'tr', 'common', 'Keywords', 'Kelimeler', '2019-05-25 22:52:20'),
(3606, 'tr', 'common', 'lang', 'Dil', '2019-05-25 22:52:20'),
(3607, 'tr', 'common', 'My Account', 'Hesabım', '2019-05-25 22:52:20'),
(3608, 'tr', 'common', 'Name', 'Ad', '2019-05-25 22:52:20'),
(3609, 'tr', 'common', 'No', 'Hayır', '2019-05-25 22:52:20'),
(3610, 'tr', 'common', 'No Keywords Found', 'Anahtar Kelimeler Bulunamadı', '2019-05-25 22:52:20'),
(3611, 'tr', 'common', 'No Records Found', 'Kayıt Bulunamadı', '2019-05-25 22:52:20'),
(3612, 'tr', 'common', 'noactivetools', 'Aktif Seo Araçları Bulunamadı!', '2019-05-25 22:52:20'),
(3613, 'tr', 'common', 'nowebsites', 'Web Site Bulunamadı', '2019-05-25 22:52:20'),
(3614, 'tr', 'common', 'password632', 'Şifreniz 6 - 32 arasında bir uzunlukta olmalıdır', '2019-05-25 22:52:20'),
(3615, 'tr', 'common', 'passwordnotmatch', 'Şifreler eşleşmiyor', '2019-05-25 22:52:20'),
(3616, 'tr', 'common', 'Period', 'Dönem', '2019-05-25 22:52:20'),
(3617, 'tr', 'common', 'Priority', 'Öncelik', '2019-05-25 22:52:20'),
(3618, 'tr', 'common', 'Profile', 'Profil', '2019-05-25 22:52:20'),
(3619, 'tr', 'common', 'Rank', 'Rank', '2019-05-25 22:52:20'),
(3620, 'tr', 'common', 'Reports', 'Raporlar', '2019-05-25 22:52:20'),
(3621, 'tr', 'common', 'Results', 'Sonuçlar', '2019-05-25 22:52:20'),
(3622, 'tr', 'common', 'Search Engine', 'Arama Motoru', '2019-05-25 22:52:20'),
(3623, 'tr', 'common', 'Select', 'Seçiniz', '2019-05-25 22:52:20'),
(3624, 'tr', 'common', 'Seo Plugins', 'Seo Eklentileri', '2019-05-25 22:52:20'),
(3625, 'tr', 'common', 'Seo Tools', 'Seo Ayarları', '2019-05-25 22:52:20'),
(3626, 'tr', 'common', 'Sign out', 'Çıkış Yap', '2019-05-25 22:52:20'),
(3627, 'tr', 'common', 'Sign Up', 'Kaydol', '2019-05-25 22:52:20'),
(3628, 'tr', 'common', 'signin', 'Giriş Yap', '2019-05-25 22:52:20'),
(3629, 'tr', 'common', 'Status', 'Durum', '2019-05-25 22:52:20'),
(3630, 'tr', 'common', 'Support', 'Destek', '2019-05-25 22:52:20'),
(3631, 'tr', 'common', 'Total', 'Toplam', '2019-05-25 22:52:20'),
(3632, 'tr', 'common', 'Url', 'Url', '2019-05-25 22:52:20'),
(3633, 'tr', 'common', 'User', 'Üye', '2019-05-25 22:52:20'),
(3634, 'tr', 'common', 'User Panel', 'Üye Paneli', '2019-05-25 22:52:20'),
(3635, 'tr', 'common', 'Website', 'Web site', '2019-05-25 22:52:20'),
(3636, 'tr', 'common', 'Yes', 'Evet', '2019-05-25 22:52:20'),
(3637, 'tr', 'home', 'Account Summary', 'Hesap Özeti', '2017-02-05 02:23:57'),
(3638, 'tr', 'home', 'Backlinks', 'Backlinkler', '2017-02-05 02:23:57'),
(3639, 'tr', 'home', 'Directory Submission', 'Dizin Gönderme', '2017-02-05 02:23:57'),
(39510, 'nl', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'De pagina heeft Open Graph tags voor betere social media sharing', '2026-01-19 23:10:01'),
(39511, 'pl', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Strona ma tagi Open Graph dla lepszego udostępniania w mediach społecznościowych', '2026-01-19 23:10:01'),
(39512, 'pt', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'A página tem tags Open Graph para melhor compartilhamento em redes sociais', '2026-01-19 23:10:01'),
(39513, 'pt-br', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'A página tem tags Open Graph para melhor compartilhamento em redes sociais', '2026-01-19 23:10:01'),
(39514, 'ru', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Страница имеет теги Open Graph для лучшего обмена в социальных сетях', '2026-01-19 23:10:01'),
(39515, 'tr', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Sayfa daha iyi sosyal medya paylaşımı için Open Graph etiketlerine sahip', '2026-01-19 23:10:01'),
(39516, 'zh', 'siteauditor', 'The page has Open Graph tags for better social media sharing', '该页面具有Open Graph标签,可更好地在社交媒体上分享', '2026-01-19 23:10:01'),
(39517, 'cn', 'siteauditor', 'The page has Open Graph tags for better social media sharing', '该页面具有Open Graph标签,可更好地在社交媒体上分享', '2026-01-19 23:10:01'),
(39518, 'en', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'The page is missing Open Graph tags - limits social media optimization', '2026-01-19 23:10:01'),
(39519, 'ar', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'الصفحة تفتقر إلى علامات Open Graph - يحد من تحسين وسائل التواصل الاجتماعي', '2026-01-19 23:10:01'),
(39520, 'bg', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Страницата липсват Open Graph тагове - ограничава оптимизацията за социални мрежи', '2026-01-19 23:10:01'),
(39521, 'de', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Der Seite fehlen Open Graph Tags - begrenzt Social Media Optimierung', '2026-01-19 23:10:01'),
(39522, 'es', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'La página carece de etiquetas Open Graph - limita la optimización en redes sociales', '2026-01-19 23:10:01'),
(39523, 'fr', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'La page manque de balises Open Graph - limite l''optimisation des réseaux sociaux', '2026-01-19 23:10:01'),
(39524, 'it', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'La pagina manca di tag Open Graph - limita l''ottimizzazione dei social media', '2026-01-19 23:10:01'),
(39525, 'nl', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'De pagina mist Open Graph tags - beperkt social media optimalisatie', '2026-01-19 23:10:01'),
(39526, 'pl', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Strona nie ma tagów Open Graph - ogranicza optymalizację mediów społecznościowych', '2026-01-19 23:10:01'),
(39527, 'pt', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'A página está sem tags Open Graph - limita a otimização de redes sociais', '2026-01-19 23:10:01'),
(38899, 'ja', 'review', 'Review Growth Trends', 'レビュー成長トレンド', '2026-01-19 22:58:50'),
(38900, 'ko', 'review', 'Review Growth Trends', '리뷰 성장 추세', '2026-01-19 22:58:50'),
(38901, 'lt', 'review', 'Review Growth Trends', 'Atsiliepimų augimo tendencijos', '2026-01-19 22:58:50'),
(38902, 'mk', 'review', 'Review Growth Trends', 'Трендови на раст на рецензии', '2026-01-19 22:58:50'),
(38903, 'nl', 'review', 'Review Growth Trends', 'Groeitrends van beoordelingen', '2026-01-19 22:58:50'),
(38904, 'no', 'review', 'Review Growth Trends', 'Veksttrender for anmeldelser', '2026-01-19 22:58:50'),
(38905, 'pl', 'review', 'Review Growth Trends', 'Trendy wzrostu recenzji', '2026-01-19 22:58:50'),
(38906, 'pt', 'review', 'Review Growth Trends', 'Tendências de crescimento de avaliações', '2026-01-19 22:58:50'),
(38907, 'pt-br', 'review', 'Review Growth Trends', 'Tendências de crescimento de avaliações', '2026-01-19 22:58:50'),
(38908, 'ro', 'review', 'Review Growth Trends', 'Tendințe de creștere recenzii', '2026-01-19 22:58:50'),
(38909, 'ru', 'review', 'Review Growth Trends', 'Тренды роста отзывов', '2026-01-19 22:58:50'),
(38910, 'sk', 'review', 'Review Growth Trends', 'Trendy rastu recenzií', '2026-01-19 22:58:50'),
(3643, 'tr', 'home', 'Pages Indexed', 'Sayfaları İndeklendi', '2017-02-05 02:23:57'),
(3644, 'tr', 'home', 'Ranks', 'Ranklar', '2017-02-05 02:23:57'),
(3645, 'tr', 'home', 'SiteNameUrl', 'Site Adı/URL', '2017-02-05 02:23:57'),
(3646, 'tr', 'home', 'Website Statistics', 'Website İstatistikleri', '2017-02-05 02:23:57'),
(3647, 'tr', 'keyword', 'Crawling keyword', 'Kelimeler Taranıyor', '2017-02-05 01:48:33'),
(3648, 'tr', 'keyword', 'Detailed Keyword Position Reports', 'Ayrıntılı Anahtar Kelime Konumu Raporlar', '2017-02-05 01:48:33'),
(3649, 'tr', 'keyword', 'Edit Keyword', 'Anahtar kelime düzenle', '2017-02-05 01:48:33'),
(3650, 'tr', 'keyword', 'Graphical Keyword Position Reports', 'Grafik Anahtar Kelime Konumu Raporları', '2017-02-05 01:48:33'),
(3651, 'tr', 'keyword', 'Import Keywords', 'Anahtar Kelimeleri içe aktar', '2017-02-05 01:48:33'),
(3652, 'tr', 'keyword', 'Keyword already exist', 'Anahtar kelime zaten mevcut\r\n', '2017-02-05 01:48:33'),
(3653, 'tr', 'keyword', 'Keyword Position Report', 'Anahtar kelime pozisyon Raporu', '2017-02-05 01:48:33'),
(3654, 'tr', 'keyword', 'New Keyword', 'Yeni Kelimeler', '2017-02-05 01:48:33'),
(3655, 'tr', 'keyword', 'not assigned to required search engines', 'gerekli arama motorlarına atanmamış', '2017-02-05 01:48:33'),
(3656, 'tr', 'keyword', 'pleaseselecttool', 'en az bir Seo Araçları seçiniz\r\n', '2017-02-05 01:48:33'),
(3657, 'tr', 'keyword', 'Quick Keyword Position Checker', 'Hızlı Anahtar Kelime Konumu kontrolü', '2017-02-05 01:48:33'),
(3658, 'tr', 'keyword', 'results from ', 'sonuçlar', '2017-02-05 01:48:33'),
(3659, 'tr', 'keyword', 'Show All results', 'Tüm sonuçları göster\r\n', '2017-02-05 01:48:33'),
(3660, 'tr', 'keyword', 'Successfully crawled keyword', 'Başarılı bir anahtar kelime taraması', '2017-02-05 01:48:33'),
(3661, 'tr', 'keyword', 'to create new keywords', 'yeni anahtar kelimeler oluşturmak', '2017-02-05 01:48:33'),
(3662, 'tr', 'label', 'already exist', 'zaten var', '2012-11-11 13:14:34'),
(3663, 'tr', 'label', 'Authentication', 'Kimlik doğrulama', '2012-11-11 13:14:34'),
(3664, 'tr', 'label', 'Author', 'Yazar', '2012-11-11 13:14:34'),
(3665, 'tr', 'label', 'Click Here', 'Tıklayın', '2012-11-11 13:14:34'),
(3666, 'tr', 'label', 'Cron', 'Cron', '2012-11-11 13:14:34'),
(3667, 'tr', 'label', 'Description', 'Açıklama', '2012-11-11 13:14:34'),
(3668, 'tr', 'label', 'Developers', 'Geliştiriciler', '2012-11-11 13:14:34'),
(3669, 'tr', 'label', 'Download', 'İndir', '2012-11-11 13:14:34'),
(3670, 'tr', 'label', 'Installation', 'Yükleme', '2012-11-11 13:14:34'),
(3671, 'tr', 'label', 'Keywords', 'Anahtar kelimeler\r\n', '2012-11-11 13:14:34'),
(3672, 'tr', 'label', 'noactiveplugins', 'Hiçbir Aktif Seo Eklentiler Bulunamadı!', '2012-11-11 13:14:34'),
(3673, 'tr', 'label', 'Plugin', 'Eklenti', '2012-11-11 13:14:34'),
(3674, 'tr', 'label', 'Port', 'Port', '2012-11-11 13:14:34'),
(3675, 'tr', 'label', 'Proxy', 'Proxy', '2012-11-11 13:14:34'),
(3676, 'tr', 'label', 'Re-install', 'Yeniden yüklemek\r\n', '2012-11-11 13:14:34'),
(3677, 'tr', 'label', 'Sponsors', 'Sponsorlar', '2012-11-11 13:14:34'),
(3678, 'tr', 'label', 'Title', 'Başlık', '2012-11-11 13:14:34'),
(3679, 'tr', 'label', 'translation by', 'Çeviren', '2012-11-11 13:14:34'),
(3680, 'tr', 'label', 'Translators', 'Çevirmenler', '2012-11-11 13:14:34'),
(3681, 'tr', 'label', 'Upgrade', 'Yükselt', '2012-11-11 13:14:34'),
(3682, 'tr', 'label', 'Version', 'Versiyon', '2012-11-11 13:14:34'),
(3683, 'tr', 'label', 'wantproceed', 'Devam etmek istiyor musunuz?', '2012-11-11 13:14:34'),
(3684, 'tr', 'login', 'Confirm Password', 'Şifreyi Onayla', '2017-02-05 01:55:53'),
(3685, 'tr', 'login', 'Create my account', 'Hesabımı oluştur', '2017-02-05 01:55:53'),
(3686, 'tr', 'login', 'Create New Account', 'Yeni Hesap Oluştur', '2017-02-05 01:55:53'),
(3687, 'tr', 'login', 'Email', 'E-posta', '2017-02-05 01:55:53'),
(3688, 'tr', 'login', 'emailexist', 'E-posta zaten var!', '2017-02-05 01:55:53'),
(3689, 'tr', 'login', 'Enter the code as it is shown', 'Görünen kodu giriniz', '2017-02-05 01:55:53'),
(3690, 'tr', 'login', 'First Name', 'Ad', '2017-02-05 01:55:53'),
(3691, 'tr', 'login', 'Last Name', 'Soyad', '2017-02-05 01:55:53'),
(3692, 'tr', 'login', 'Login', 'Giriş', '2017-02-05 01:55:53'),
(3693, 'tr', 'login', 'Login incorrect', 'Giriş yanlış\r\n', '2017-02-05 01:55:53'),
(3694, 'tr', 'login', 'newaccountsuccess', 'Yeni hesap başarıyla oluşturuldu!\r\n', '2017-02-05 01:55:53'),
(3695, 'tr', 'login', 'Password', 'Şifre', '2017-02-05 01:55:53'),
(3696, 'tr', 'login', 'Password incorrect', 'Şifre yanlış', '2017-02-05 01:55:53'),
(3697, 'tr', 'login', 'Register', 'Kayıt ol', '2017-02-05 01:55:53'),
(3698, 'tr', 'login', 'Sign in to your account', 'Hesabınızda oturum açın', '2017-02-05 01:55:53'),
(3699, 'tr', 'login', 'User inactive', 'Kullanıcı inaktif', '2017-02-05 01:55:53'),
(3700, 'tr', 'login', 'Username', 'Kullanıcı adı', '2017-02-05 01:55:53'),
(3701, 'tr', 'login', 'usernameexist', 'Kullanıcı adı zaten var!', '2017-02-05 01:55:53'),
(3702, 'tr', 'panel', 'About Us', 'Hakkımızda', '2017-02-05 01:50:50'),
(3703, 'tr', 'panel', 'Add following command to your cron tab', 'cron sekmesine aşağıdaki komutu ekleyin', '2017-02-05 01:50:50'),
(3704, 'tr', 'panel', 'alsocheckfollowlink', 'Daha fazla bilgi gerekiyorsa aşağıdaki linki kontrol edin.', '2017-02-05 01:50:50'),
(3705, 'tr', 'panel', 'Check Directory', 'Dizin Kontrolü', '2017-02-05 01:50:50'),
(3706, 'tr', 'panel', 'Cron Command', 'Cron Komut', '2017-02-05 01:50:50'),
(3707, 'tr', 'panel', 'Directory Manager', 'Dizin Yöneticisi', '2017-02-05 01:50:50'),
(3708, 'tr', 'panel', 'Edit My Profile', 'Profilimi Düzenle', '2017-02-05 01:50:50'),
(3709, 'tr', 'panel', 'My Profile', 'Profilim', '2017-02-05 01:50:50'),
(3710, 'tr', 'panel', 'New Proxy', 'Yeni Proxy', '2017-02-05 01:50:50'),
(3711, 'tr', 'panel', 'New User', 'Yeni Üye', '2017-02-05 01:50:50'),
(3712, 'tr', 'panel', 'New Website', 'Yeni Web Site', '2017-02-05 01:50:50'),
(3713, 'tr', 'panel', 'Proxy Manager', 'Proxy Yöneticisi', '2017-02-05 01:50:50'),
(3714, 'tr', 'panel', 'Report Generation Manager', 'Rapor Üretim Yöneticisi', '2017-02-05 01:50:50'),
(3715, 'tr', 'panel', 'Reports Manager', 'Rapor Yöneticisi', '2017-02-05 01:50:50'),
(3716, 'tr', 'panel', 'Seo Plugins Manager', 'Seo Araçları Yöneticisi', '2017-02-05 01:50:50'),
(3717, 'tr', 'panel', 'Seo Tools Manager', 'Seo Araçlar Yöneticisi', '2017-02-05 01:50:50'),
(3718, 'tr', 'panel', 'System Settings', 'Sistem Ayarları', '2017-02-05 01:50:50'),
(3719, 'tr', 'panel', 'User Manager', 'Kullanıcı Yöneticisi', '2017-02-05 01:50:50'),
(3720, 'tr', 'panel', 'Website Manager', 'Web Site Yöneticisi', '2017-02-05 01:50:50'),
(3721, 'tr', 'plugin', 'Edit Seo Plugin', 'Seo Eklentisini Düzenle', '2012-11-11 13:16:59'),
(3722, 'tr', 'plugin', 'Plugin Name', 'Eklenti Adı', '2012-11-11 13:16:59'),
(3723, 'tr', 'plugin', 'Seo Plugin Details', 'Seo Eklenti Detayları', '2012-11-11 13:16:59'),
(3724, 'tr', 'proxy', 'Edit Proxy', 'Proxyi Düzenle', '2010-11-23 16:31:24'),
(3725, 'tr', 'proxy', 'Proxy Password', 'Proxy Şifresi', '2010-11-23 16:31:24'),
(3726, 'tr', 'proxy', 'Proxy Username', 'Proxy Kullanıcı adı', '2010-11-23 16:31:24'),
(3727, 'tr', 'proxy', 'Proxyalreadyexist', 'Proxy zaten mevcut!', '2010-11-23 16:31:24'),
(3728, 'tr', 'rank', 'enterurlproceed', 'Google ve Alexa rank sonuçlarını görmek için bir web sitesi seçin ve Devam tıklayınız.', '2010-11-24 09:38:45'),
(3729, 'tr', 'rank', 'Google and Alexa Rank Reports', 'Google and Alexa Rank Raporları', '2010-11-24 09:38:45'),
(3730, 'tr', 'rank', 'Saved rank results of', 'Rank Sonuçlaro Kaydedildi', '2010-11-24 09:38:45'),
(3731, 'tr', 'directory', 'Add back to directory list', 'dizin listesine geri ekle', '2012-11-11 13:13:26'),
(3732, 'tr', 'directory', 'Approved', 'Onaylı', '2012-11-11 13:13:26'),
(3733, 'tr', 'directory', 'Captcha', 'Resim', '2012-11-11 13:13:26'),
(3734, 'tr', 'directory', 'categorynote', 'Kategoriler, öncelik göre virgülle birbirinden ayırın. Öncelikli kategori ile başlayın.', '2012-11-11 13:13:26'),
(3735, 'tr', 'directory', 'Check Directory Status', 'Dizin Durumu kontrolü', '2012-11-11 13:13:26'),
(3736, 'tr', 'directory', 'Check Directory Submission Status', 'Dizin Gönderme Durumu Kontrolü', '2012-11-11 13:13:26'),
(3737, 'tr', 'directory', 'clicktoproceeddirsts', 'Dizin durum kontrol durumunu için Devam Tıklayınız', '2012-11-11 13:13:26'),
(3738, 'tr', 'directory', 'Confirmation', 'Onay', '2012-11-11 13:13:26'),
(3739, 'tr', 'directory', 'desnote', 'Bazı dizinleri açıklama alanı için en az 150 karakter gerektirir.', '2012-11-11 13:13:26'),
(3740, 'tr', 'directory', 'Directories with out captcha', 'Dizinlerin resim çıkışı', '2012-11-11 13:13:26'),
(3741, 'tr', 'directory', 'Directory Submission Reports', 'Dizin Gönderme Raporları', '2012-11-11 13:13:26'),
(3742, 'tr', 'directory', 'Enter the code shown', 'Güvenlik kodunu giriniz', '2012-11-11 13:13:26'),
(3743, 'tr', 'directory', 'nocatnote', 'Lütfen Yeniden Yükle veya Geç ', '2012-11-11 13:13:26'),
(3744, 'tr', 'directory', 'nodirnote', 'Hiçbir Etkin b> Dizin Bulunamadı', '2012-11-11 13:13:26'),
(3745, 'tr', 'directory', 'nosuccessnote', 'Başarılı mesaj alamıyorsan, posta kutunuzu kontrol ediniz.', '2012-11-11 13:13:26'),
(3746, 'tr', 'directory', 'optionalnote', 'Isteğe bağlı başlıkları ve açıklamaları daha iyi sonuçlar için rasgele başlık ve dizinlere açıklama gönder.', '2012-11-11 13:13:26'),
(3747, 'tr', 'directory', 'Owner Email', 'E-posta sahibi', '2012-11-11 13:13:26'),
(3748, 'tr', 'directory', 'Owner Name', 'İsmin Sahibi', '2012-11-11 13:13:26'),
(3749, 'tr', 'directory', 'Pending', 'Beklemede', '2012-11-11 13:13:26'),
(3750, 'tr', 'directory', 'Please select a website to proceed', 'Devam etmek için bir web sitesi seçiniz', '2012-11-11 13:13:26'),
(3751, 'tr', 'directory', 'selectwebsiteproceed', 'Dizin onay kontrolü için Bir Website Devam tıklayın.', '2012-11-11 13:13:26'),
(3752, 'tr', 'directory', 'selectwebsiteschecksub', 'Devam Dizin listesi sunulması için bir Website seçin.', '2012-11-11 13:13:26'),
(3753, 'tr', 'directory', 'Semi Automatic Directory Submission Tool', 'Yarı Otomatik Dizin Gönderme Aracı', '2012-11-11 13:13:26'),
(3754, 'tr', 'directory', 'spamemailnote', 'Bazı dizinleri spam gönderebilir, biz birincil e-posta adresinizi kullanmanızı tavsiye etmiyoruz.', '2012-11-11 13:13:26'),
(3755, 'tr', 'directory', 'Submission Details', 'Teslim Detayları', '2012-11-11 13:13:26'),
(3756, 'tr', 'directory', 'Submit Description', 'Açıklamasını gönderin', '2012-11-11 13:13:26'),
(3757, 'tr', 'directory', 'Submit Keywords', 'Anahtar kelimeleri bul', '2012-11-11 13:13:26'),
(3758, 'tr', 'directory', 'Submit Title', 'Başlık Gönder', '2012-11-11 13:13:26'),
(3759, 'tr', 'directory', 'Website Category', 'Website Kategori', '2012-11-11 13:13:26'),
(3760, 'tr', 'directory', 'Website Url', 'Website Url ', '2012-11-11 13:13:26'),
(3761, 'tr', 'saturation', 'clickproceedsaturation', 'Arama motoru Doygunluk Sonuçları kontrol için bir URL gir ve Devam tıklyınız.', '2010-11-24 09:43:51'),
(3762, 'tr', 'saturation', 'GenerateSaturationReports', 'Arama Motoru Doygunluk Raporları üret', '2010-11-24 09:43:51'),
(3763, 'tr', 'saturation', 'Quick Search Engine Saturation Checker', 'Hızlı Arama Motoru Doygunluk Denetleyicisi', '2010-11-24 09:43:51'),
(3764, 'tr', 'saturation', 'Saved Search Engine Saturation results of', 'Kaydedilmiş Arama Motoru Doygunluk sonuçları', '2010-11-24 09:43:51'),
(3765, 'tr', 'saturation', 'Search Engine Saturation Reports', 'Arama motoru Doygunluk Raporları', '2010-11-24 09:43:51'),
(3766, 'fa', 'website', 'Edit Website', 'ویرایش سایت ', '2010-12-02 10:01:43'),
(3767, 'fa', 'website', 'plscrtwebsite', 'لطفا قبل از شروع استفاده از ابزار ها و افزونه های سئو یک وب سایت ایجاد کنید ', '2010-12-02 10:01:43'),
(3768, 'fa', 'website', 'Website already exist', 'هم اکنون وب سایت موجود است ', '2010-12-02 10:01:43'),
(3769, 'fa', 'website', 'yourwebalreday', 'وب سایت هایی که تا به حال ساخته ایید', '2010-12-02 10:01:43'),
(3770, 'fa', 'user', 'Edit User', 'ویرایش اطلاعات کاربر ', '2010-12-02 06:44:32'),
(3771, 'fa', 'user', 'Saved My Profile Details', 'جزیات نمایه من را ذخیره کن', '2010-12-02 06:44:32'),
(3772, 'fa', 'proxy', 'Edit Proxy', 'ویرایش پروکسی', '2010-12-02 07:34:16'),
(3773, 'fa', 'proxy', 'Proxy Password', 'رمز عبور پروکسی', '2010-12-02 07:34:17'),
(3774, 'fa', 'proxy', 'Proxy Username', 'نام کاربری پروکسی', '2010-12-02 07:34:17'),
(3775, 'fa', 'proxy', 'Proxyalreadyexist', 'هم اکنون پروکسی موجود است', '2010-12-02 07:34:17'),
(3776, 'fa', 'label', 'already exist', 'هم اکنون موجود است ', '2012-05-13 01:14:56'),
(3777, 'fa', 'label', 'Authentication', 'تصدیق نامه', '2012-05-13 01:14:56'),
(3778, 'fa', 'label', 'Author', 'نویسنده', '2012-05-13 01:14:56'),
(3779, 'fa', 'label', 'Click Here', 'اینجا را فشار دهید ', '2012-05-13 01:14:56'),
(3780, 'fa', 'label', 'Cron', 'کرون', '2012-05-13 01:14:56'),
(3781, 'fa', 'label', 'Description', 'توضیحات', '2012-05-13 01:14:56'),
(3782, 'fa', 'label', 'Developers', 'توسعه دهندگان ', '2012-05-13 01:14:56'),
(3783, 'fa', 'label', 'Download', 'بارگیری ها ', '2012-05-13 01:14:56'),
(3784, 'fa', 'label', 'Installation', 'نصب', '2012-05-13 01:14:56'),
(3785, 'fa', 'label', 'Keywords', 'کلمات کلیدی', '2012-05-13 01:14:56'),
(3786, 'fa', 'label', 'noactiveplugins', 'هیچ افزونه ی فعالی پیدانشد', '2012-05-13 01:14:56'),
(3787, 'fa', 'label', 'Plugin', 'افزونه', '2012-05-13 01:14:56'),
(3788, 'fa', 'label', 'Port', 'درگاه', '2012-05-13 01:14:56'),
(3789, 'fa', 'label', 'Proxy', 'پروکسی', '2012-05-13 01:14:56'),
(3790, 'fa', 'label', 'Re-install', 'نصب دوباره', '2012-05-13 01:14:56'),
(3791, 'fa', 'label', 'Sponsors', 'حامیان', '2012-05-13 01:14:56'),
(3792, 'fa', 'label', 'Title', 'عنوان', '2012-05-13 01:14:56'),
(3793, 'fa', 'label', 'translation by', 'ترجمه شده توسط', '2012-05-13 01:14:56'),
(3794, 'fa', 'label', 'Translators', 'مترجم', '2012-05-13 01:14:56'),
(3795, 'fa', 'label', 'Upgrade', 'ارتقا', '2012-05-13 01:14:56'),
(3796, 'fa', 'label', 'Version', 'نسخه', '2012-05-13 01:14:56'),
(3797, 'fa', 'label', 'wantproceed', 'آیا واقعا می خواهید ادامه بدهید؟', '2012-05-13 01:14:56'),
(3798, 'fa', 'login', 'Confirm Password', 'تکرار رمز عبور', '2018-01-24 17:15:55'),
(3799, 'fa', 'login', 'Create my account', 'حساب کاربری مرا بساز', '2018-01-24 17:15:55'),
(3800, 'fa', 'login', 'Create New Account', 'ایجاد حساب کاربری جدید', '2018-01-24 17:15:55'),
(3801, 'fa', 'login', 'Email', 'پست الکترونیک', '2018-01-24 17:15:55'),
(3802, 'fa', 'login', 'emailexist', 'این آدرس الکترونیک تکراری است', '2018-01-24 17:15:55'),
(3803, 'fa', 'login', 'Enter the code as it is shown', 'کد نمایش داده شده را وارد کنید ', '2018-01-24 17:15:55'),
(3804, 'fa', 'login', 'First Name', 'اسم کوجک', '2018-01-24 17:15:55'),
(3805, 'fa', 'login', 'Last Name', 'نام خانوادگی', '2018-01-24 17:15:55'),
(3806, 'fa', 'login', 'Login', 'ورود', '2018-01-24 17:15:55'),
(3807, 'fa', 'login', 'Login incorrect', 'ورود اشتباه', '2018-01-24 17:15:55'),
(3808, 'fa', 'login', 'newaccountsuccess', 'حساب کاربری جدید با موفقیت ساخته شد', '2018-01-24 17:15:55'),
(3809, 'fa', 'login', 'Password', 'رمز عبور', '2018-01-24 17:15:55'),
(3810, 'fa', 'login', 'Password incorrect', 'رمز عبور اشتباه است ', '2018-01-24 17:15:55'),
(3811, 'fa', 'login', 'Register', 'ثبت نام کردن', '2018-01-24 17:15:55'),
(3812, 'fa', 'login', 'Sign in to your account', 'ورود به حساب کاربری', '2018-01-24 17:15:55'),
(3813, 'fa', 'login', 'User inactive', 'کاربر غیر فعال', '2018-01-24 17:15:55'),
(3814, 'fa', 'login', 'Username', 'نام کاربری', '2018-01-24 17:15:55'),
(3815, 'fa', 'login', 'usernameexist', 'این نام کاربری تکراری است ', '2018-01-24 17:15:55'),
(3816, 'fa', 'panel', 'About Us', 'درباره ما ', '2012-05-16 23:23:21'),
(3817, 'fa', 'panel', 'Add following command to your cron tab', 'دستورات زیر را به تب کرون خود اضافه کنید ', '2012-05-16 23:23:21'),
(3818, 'fa', 'panel', 'alsocheckfollowlink', 'همچنین اگر شما به اطلاعات بیشتری نیاز دارید پیوندهای زیر را بررسی کنید ', '2012-05-16 23:23:21'),
(3819, 'fa', 'panel', 'Check Directory', 'بررسی دایرکتوری', '2012-05-16 23:23:21'),
(3820, 'fa', 'panel', 'Cron Command', 'دستورات کرون', '2012-05-16 23:23:21'),
(3821, 'fa', 'panel', 'Directory Manager', 'مدیریت فهرست ها ', '2012-05-16 23:23:21'),
(3822, 'fa', 'panel', 'Edit My Profile', 'ویرایش نمایه من', '2012-05-16 23:23:21'),
(3823, 'fa', 'panel', 'My Profile', 'نمایه من ', '2012-05-16 23:23:21'),
(3824, 'fa', 'panel', 'New Proxy', 'ایجاد پروکسی جدید', '2012-05-16 23:23:21'),
(3825, 'fa', 'panel', 'New User', ' ایجاد کابر جدید', '2012-05-16 23:23:21'),
(3826, 'fa', 'panel', 'New Website', 'ایجاد یک وب سایت جدید', '2012-05-16 23:23:21'),
(3827, 'fa', 'panel', 'Proxy Manager', 'مدیریت پروکسی', '2012-05-16 23:23:21'),
(3828, 'fa', 'panel', 'Report Generation Manager', 'مدیریت تولید گزارشات', '2012-05-16 23:23:21'),
(3829, 'fa', 'panel', 'Reports Manager', 'مدیریت گزارشات', '2012-05-16 23:23:21'),
(3830, 'fa', 'panel', 'Seo Plugins Manager', 'مدیریت افزونه های سئو', '2012-05-16 23:23:21'),
(3831, 'fa', 'panel', 'Seo Tools Manager', 'مدیریت ابزار سئو', '2012-05-16 23:23:21'),
(3832, 'fa', 'panel', 'System Settings', 'تنظیمات سیستم', '2012-05-16 23:23:21'),
(3833, 'fa', 'panel', 'User Manager', 'مدیریت کاربران ', '2012-05-16 23:23:21'),
(3834, 'fa', 'panel', 'Website Manager', 'مدیریت وب سایت ها ', '2012-05-16 23:23:21'),
(3835, 'fa', 'rank', 'enterurlproceed', ' کلیک کنید ادامه بر روی در هر خط برای دیدن رتبه در گوگل والکسا \r\n ', '2010-12-03 08:30:18'),
(3836, 'fa', 'rank', 'Google and Alexa Rank Reports', 'گزارش رتبه های گوگل و الکسا', '2010-12-03 08:30:18'),
(3837, 'fa', 'rank', 'Saved rank results of', 'ذخیره کن رتبه های نتایج را ', '2010-12-03 08:30:18'),
(3838, 'fa', 'plugin', 'Edit Seo Plugin', 'ویرایش افزونه های سئو', '2012-03-08 14:22:34'),
(3839, 'fa', 'plugin', 'Plugin Name', 'نام افزونه ها', '2012-03-08 14:22:34'),
(3840, 'fa', 'plugin', 'Seo Plugin Details', 'جزیات افزونه سئو', '2012-03-08 14:22:34'),
(3841, 'fa', 'keyword', 'Crawling keyword', 'کلمان کلیدی خزنده', '2018-01-24 13:40:55');
INSERT INTO `texts` VALUES
(3842, 'fa', 'keyword', 'Detailed Keyword Position Reports', 'جزیات گزارش وضعیت کلمه کلیدی ', '2018-01-24 13:40:55'),
(3843, 'fa', 'keyword', 'Edit Keyword', 'ویرایش کلمات کلیدی', '2018-01-24 13:40:55'),
(3844, 'fa', 'keyword', 'Graphical Keyword Position Reports', 'گزارشات تصویری وضعیت کلمه کلیدی', '2018-01-24 13:40:55'),
(3845, 'fa', 'keyword', 'Import Keywords', 'وارد کردن کلمات کلیدی ', '2018-01-24 13:40:55'),
(3846, 'fa', 'keyword', 'Keyword already exist', 'کلمه کلیدی هم اکنون موجود است ', '2018-01-24 13:40:55'),
(3847, 'fa', 'keyword', 'Keyword Position Report', 'گزارش وضیعت کلمه کلیدی', '2018-01-24 13:40:55'),
(3848, 'fa', 'keyword', 'New Keyword', 'کلمه کلیدی جدید', '2018-01-24 13:40:55'),
(3849, 'fa', 'keyword', 'not assigned to required search engines', 'هیچ نیاز مندی به موتور جست و جو اختصاص داده نشده ', '2018-01-24 13:40:55'),
(3850, 'fa', 'keyword', 'pleaseselecttool', 'لطفا حداقل یک ابزار سئو را انتخاب کنید ', '2018-01-24 13:40:55'),
(3851, 'fa', 'keyword', 'Quick Keyword Position Checker', 'چک کردن سریع وضیعت کلمه کلیدی', '2018-01-24 13:40:55'),
(3852, 'fa', 'keyword', 'results from ', 'نتایج از ', '2018-01-24 13:40:55'),
(3853, 'fa', 'keyword', 'Show All results', 'نمایش تمام نتایج', '2018-01-24 13:40:55'),
(3854, 'fa', 'keyword', 'Successfully crawled keyword', 'کلمه کلیدی با موفقیت خزانده شد ', '2018-01-24 13:40:55'),
(3855, 'fa', 'keyword', 'to create new keywords', 'ایجاد کلمات کلیدی جدید', '2018-01-24 13:40:55'),
(3856, 'fa', 'sitemap', 'Change frequency', 'عوض کردن تعداد تکرار', '2010-12-02 10:37:19'),
(3857, 'fa', 'sitemap', 'clickproceedsitemap', ' ادامه روی گزینه \r\n کلیک کنید تا نقشه سایت ساخته شود', '2010-12-02 10:37:19'),
(3858, 'fa', 'sitemap', 'Download sitemap file from', 'بارگیری کن نقشه سایت را از ', '2010-12-02 10:37:19'),
(3859, 'fa', 'sitemap', 'Exclude Url', 'آدرس های مستثنی', '2010-12-02 10:37:19'),
(3860, 'fa', 'sitemap', 'processtaketime', 'این فرایند با توجه به تعداد لینک های درونی سایت شما طول حواهد کشید .\r\nلطفا صبر کنید تا نقشه سایت را دریافت کنید', '2010-12-02 10:37:19'),
(3861, 'fa', 'sitemap', 'Sitemap Type', 'نوع نقشه سایت ', '2010-12-02 10:37:19'),
(3862, 'fa', 'settings', 'Click here to become a sponsor for Seo Panel', 'صد دلار پرداخت کنيد و اسپانسر سئوپنل شويد.', '2012-05-17 00:03:34'),
(3863, 'fa', 'settings', 'seopanel_description', 'یک کنترل پنل کاملا رایگان برای مدیریت بهینه سازی سایت هایتان در مورتورهای جستجو.این کنترل پنل شامل بسیاری از ابزارهای مفید سئو بریا عملکرد سایت شما می باشد.این برنامه متن باز می باد و شما می توانید افزونه های مورد نیاز خودتان برای سئوپنل را توسعه دهید.', '2012-05-17 00:03:34'),
(3864, 'fa', 'settings', 'seopanel_title', 'سئوپنل: اولین کنترل پنل سئو متن باز در جهان برای مدیریت چندین سایت', '2012-05-17 00:03:34'),
(3865, 'fa', 'settings', 'SP_CRAWL_DELAY', 'تاخیر بین هر خزیدن عنکبوت ( بر اساس ثانیه ) ', '2012-05-17 00:03:34'),
(3866, 'fa', 'settings', 'SP_DEFAULTLANG', 'زیان پیش فرض ', '2012-05-17 00:03:34'),
(3867, 'fa', 'settings', 'SP_DESCRIPTION', 'توضحات پنل سئو', '2012-05-17 00:03:34'),
(3868, 'fa', 'settings', 'SP_ENABLE_PROXY', 'فعال سازی پروکسی', '2012-05-17 00:03:34'),
(3869, 'fa', 'settings', 'SP_HOTLINKING', 'فعال سازی حفاطت از عکس های هات لینک', '2012-05-17 00:03:34'),
(3870, 'fa', 'settings', 'SP_KEYWORDS', 'کلید واژه های پنل سئو', '2012-05-17 00:03:34'),
(3871, 'fa', 'settings', 'SP_PAGINGNO', 'تعداد ورودی های هر صفحه ', '2012-05-17 00:03:34'),
(3872, 'fa', 'settings', 'SP_TITLE', 'عنوان پنل سئو ', '2012-05-17 00:03:34'),
(3873, 'fa', 'settings', 'SP_USER_AGENT', 'عامل کاربر', '2012-05-17 00:03:34'),
(3874, 'fa', 'settings', 'SP_USER_GEN_REPORT', 'اجازه دادن به کاربران برای تولید گزارشات ', '2012-05-17 00:03:34'),
(3875, 'fa', 'settings', 'SP_USER_REGISTRATION', 'رابط کاربری ثبت نام ', '2012-05-17 00:03:34'),
(3876, 'fa', 'settings', 'syssettingssaved', 'تنظیمات سیستم با موفقیت ذخیره شد', '2012-05-17 00:03:34'),
(3877, 'fa', 'seotools', 'Automatic Submission', 'توابع خودکار ', '2011-07-13 05:25:14'),
(3878, 'fa', 'seotools', 'backlink-checker', 'چک کننده لیتک دهنده ها ', '2011-07-13 05:25:14'),
(3879, 'fa', 'seotools', 'Backlinks Reports', 'گزارشات لینک دهنده ها ', '2011-07-13 05:25:14'),
(3880, 'fa', 'seotools', 'Check Submission Status', 'بررسی کن وضیعت تابع را', '2011-07-13 05:25:14'),
(3881, 'fa', 'seotools', 'clickgeneratereports', ' کلیک کنید ادامه برای تولید گزارشات بر روی ', '2011-07-13 05:25:14'),
(3882, 'fa', 'seotools', 'Detailed Position Reports', 'جزیات گزارشات وضعیت ', '2011-07-13 05:25:14'),
(3883, 'fa', 'seotools', 'directory-submission', 'مسیر های تابع ', '2011-07-13 05:25:14'),
(3884, 'fa', 'seotools', 'Featured Submission', 'ویژگی های تابع ', '2011-07-13 05:25:14'),
(3885, 'fa', 'seotools', 'Generate Backlinks Reports', 'گزارشات مولد لینک دهنده ها ', '2011-07-13 05:25:14'),
(3886, 'fa', 'seotools', 'Generate Keyword Reports', 'گزارشات مولد کلید واژه ', '2011-07-13 05:25:14'),
(3887, 'fa', 'seotools', 'Generate Rank Reports', 'مولد گزارشات رتبه ', '2011-07-13 05:25:14'),
(3888, 'fa', 'seotools', 'Generate Saturation Reports', 'مولد گزارشات اشباع ', '2011-07-13 05:25:14'),
(3889, 'fa', 'seotools', 'Google Sitemap Generator', 'مولد نقشه سایت گوگل', '2011-07-13 05:25:14'),
(3890, 'fa', 'seotools', 'Graphical Position Reports', 'گزارشات تصویری وضعیت ', '2011-07-13 05:25:14'),
(3891, 'fa', 'seotools', 'Keyword Position Summary', 'خلاصه وضیعت کلید واژه ', '2011-07-13 05:25:14'),
(3892, 'fa', 'seotools', 'keyword-position-checker', 'چک کننده وضیعت کلید واژه ', '2011-07-13 05:25:14'),
(3893, 'fa', 'seotools', 'Keywords Manager', 'میدیریت کلید واژه ', '2011-07-13 05:25:14'),
(3894, 'fa', 'seotools', 'Quick Backlinks Checker', 'جک کننده سریع لینک دهنده ها ', '2011-07-13 05:25:14'),
(3895, 'fa', 'seotools', 'Quick Position Checker', 'جک کننده سریع وضیعت ', '2011-07-13 05:25:14'),
(3896, 'fa', 'seotools', 'Quick Rank Checker', 'جک کننده سریع رتبه ', '2011-07-13 05:25:14'),
(3897, 'fa', 'seotools', 'Quick Saturation Checker', 'جک کننده سریع اشباع ', '2011-07-13 05:25:14'),
(3898, 'fa', 'seotools', 'Rank Reports', 'گزارشات رتبه ', '2011-07-13 05:25:14'),
(3899, 'fa', 'seotools', 'rank-checker', 'چک کننده رتبه ', '2011-07-13 05:25:14'),
(3900, 'fa', 'seotools', 'Saturation Reports', 'گزارشات اشباع ', '2011-07-13 05:25:14'),
(3901, 'fa', 'seotools', 'saturation-checker', 'موتور جست و جو ی اشباع ', '2011-07-13 05:25:14'),
(3902, 'fa', 'seotools', 'sitemap-generator', 'مولد نقشه سایت', '2011-07-13 05:25:14'),
(3903, 'fa', 'seotools', 'Skipped Directories', 'مسیر های نادیده گرفته شده ', '2011-07-13 05:25:14'),
(3904, 'fa', 'seotools', 'Submission Reports', 'گزارشات تابع', '2011-07-13 05:25:14'),
(3905, 'fa', 'seotools', 'User Access', 'دسترسی کاربری', '2011-07-13 05:25:14'),
(3906, 'fa', 'common', 'Action', 'اقدام', '2018-01-24 13:39:35'),
(3907, 'fa', 'common', 'Activate', 'فعال سازی', '2018-01-24 13:39:35'),
(3908, 'fa', 'common', 'Active', 'فعال', '2018-01-24 13:39:35'),
(3909, 'fa', 'common', 'Admin Panel', 'پنل مدیریت', '2018-01-24 13:39:35'),
(3910, 'fa', 'common', 'Alexa Rank', 'رتبه در الکسا', '2018-01-24 13:39:35'),
(3911, 'fa', 'common', 'All', 'همه', '2018-01-24 13:39:35'),
(3912, 'fa', 'common', 'Category', 'طبقه بندی', '2018-01-24 13:39:35'),
(3913, 'fa', 'common', 'contact', 'تماس', '2018-01-24 13:39:35'),
(3914, 'fa', 'common', 'copyright', 'Copyright © [year] محفوظ است www.seopanel.in تمامی حقوق برای', '2018-01-24 13:39:35'),
(3915, 'fa', 'common', 'Country', 'کشور', '2018-01-24 13:39:35'),
(3916, 'fa', 'common', 'Crawl Meta Data', 'خزیدن متا داده ها ', '2018-01-24 13:39:35'),
(3917, 'fa', 'common', 'Date', 'تاریخ', '2018-01-24 13:39:35'),
(3918, 'fa', 'common', 'Delete', 'حذف', '2018-01-24 13:39:35'),
(3919, 'fa', 'common', 'Details', 'جزیات', '2018-01-24 13:39:35'),
(3920, 'fa', 'common', 'Directory', 'مسیر', '2018-01-24 13:39:35'),
(3921, 'fa', 'common', 'Donate', 'کمک مالی', '2018-01-24 13:39:35'),
(3922, 'fa', 'common', 'Edit', 'ویرایش', '2018-01-24 13:39:35'),
(3923, 'fa', 'common', 'Entry cannot be blank', 'ورودی نمی تواند خالی باشد ', '2018-01-24 13:39:35'),
(3924, 'fa', 'common', 'entrynotvalid', 'ورودی که وارد کرده ایدد به نطر قابل قبول نیست ', '2018-01-24 13:39:35'),
(3925, 'fa', 'common', 'failed', 'نا موفق', '2018-01-24 13:39:35'),
(3926, 'fa', 'common', 'forum', 'تالار گفت و گو', '2018-01-24 13:39:35'),
(3927, 'fa', 'common', 'Found', 'پیدا شده ها ', '2018-01-24 13:39:35'),
(3928, 'fa', 'common', 'Google Pagerank', 'رتبه در گوگل', '2018-01-24 13:39:35'),
(3929, 'fa', 'common', 'help', 'راهنما', '2018-01-24 13:39:35'),
(3930, 'fa', 'common', 'hidenews', 'پنهان سازی اخبار پنل سئو', '2018-01-24 13:39:35'),
(3931, 'fa', 'common', 'Id', 'شناسه', '2018-01-24 13:39:35'),
(3932, 'fa', 'common', 'Inactivate', 'غیر فعال کردن ', '2018-01-24 13:39:35'),
(3933, 'fa', 'common', 'Inactive', 'ف', '2018-01-24 13:39:35'),
(3934, 'fa', 'common', 'Invalid characters', 'کارکتر های غیر قابل قبول ', '2018-01-24 13:39:35'),
(3935, 'fa', 'common', 'Invalid code entered', 'کد های غیر قابل قبول وارد شده ', '2018-01-24 13:39:35'),
(3936, 'fa', 'common', 'Invalid email address entered', 'آدرس غیر قابل قبول وارد شده ', '2018-01-24 13:39:35'),
(3937, 'fa', 'common', 'Invalid value', 'مقدار غیر قابل قبول ', '2018-01-24 13:39:35'),
(3938, 'fa', 'common', 'Keyword', 'کلمه کلیدی', '2018-01-24 13:39:35'),
(3939, 'fa', 'common', 'Keywords', 'کلمات کلیدی', '2018-01-24 13:39:35'),
(3940, 'fa', 'common', 'lang', 'زبان', '2018-01-24 13:39:35'),
(3941, 'fa', 'common', 'My Account', 'حساب کاربری من ', '2018-01-24 13:39:35'),
(3942, 'fa', 'common', 'Name', 'نام ', '2018-01-24 13:39:35'),
(3943, 'fa', 'common', 'No', 'خیر', '2018-01-24 13:39:35'),
(3944, 'fa', 'common', 'No Keywords Found', 'هیچ کلمه کلیدی پیدا نشد ', '2018-01-24 13:39:35'),
(3945, 'fa', 'common', 'No Records Found', 'هیچ سابقه ایی پیدا نشد ', '2018-01-24 13:39:35'),
(3946, 'fa', 'common', 'noactivetools', 'هیچ ابزار فعال سئوی پیدا نشد ', '2018-01-24 13:39:35'),
(3947, 'fa', 'common', 'nowebsites', 'هیچ وب سایتی پیدا نشد ', '2018-01-24 13:39:35'),
(3948, 'fa', 'common', 'password632', 'طول رمز عبور باید بین 6 تا 32 کارکتر باشد ', '2018-01-24 13:39:35'),
(3949, 'fa', 'common', 'passwordnotmatch', 'رمز عبور صحیح نیست ', '2018-01-24 13:39:35'),
(3950, 'fa', 'common', 'Period', 'دوره ', '2018-01-24 13:39:35'),
(3951, 'fa', 'common', 'Priority', 'اولویت', '2018-01-24 13:39:35'),
(3952, 'fa', 'common', 'Profile', 'نمایه ', '2018-01-24 13:39:35'),
(3953, 'fa', 'common', 'Rank', 'رتبه ', '2018-01-24 13:39:35'),
(3954, 'fa', 'common', 'Reports', 'گزارش', '2018-01-24 13:39:35'),
(3955, 'fa', 'common', 'Results', 'نتایج ', '2018-01-24 13:39:35'),
(3956, 'fa', 'common', 'Search Engine', 'موتور جست و جو ', '2018-01-24 13:39:35'),
(3957, 'fa', 'common', 'Select', 'انتخاب', '2018-01-24 13:39:35'),
(3958, 'fa', 'common', 'Seo Plugins', 'افزونه های سئو', '2018-01-24 13:39:35'),
(3959, 'fa', 'common', 'Seo Tools', 'ابزار های سئو', '2018-01-24 13:39:35'),
(3960, 'fa', 'common', 'Sign out', 'خروج ', '2018-01-24 13:39:35'),
(3961, 'fa', 'common', 'Sign Up', 'ثبت نام ', '2018-01-24 13:39:35'),
(3962, 'fa', 'common', 'signin', 'ورود ', '2018-01-24 13:39:35'),
(3963, 'fa', 'common', 'Status', 'وضعیت', '2018-01-24 13:39:35'),
(3964, 'fa', 'common', 'Support', 'پشتیبانی', '2018-01-24 13:39:35'),
(3965, 'fa', 'common', 'Total', 'مجموع', '2018-01-24 13:39:35'),
(3966, 'fa', 'common', 'Url', 'آدرس', '2018-01-24 13:39:35'),
(3967, 'fa', 'common', 'User', 'کاربر', '2018-01-24 13:39:35'),
(3968, 'fa', 'common', 'User Panel', 'پنل کاربری', '2018-01-24 13:39:35'),
(3969, 'fa', 'common', 'Website', 'وب سایت ', '2018-01-24 13:39:35'),
(3970, 'fa', 'common', 'Yes', 'بله', '2018-01-24 13:39:35'),
(3971, 'fa', 'directory', 'Add back to directory list', 'اضافه کردن به لیست مسیر ', '2012-05-13 01:11:23'),
(3972, 'fa', 'directory', 'Approved', 'مصوب ', '2012-05-13 01:11:23'),
(3973, 'fa', 'directory', 'Captcha', 'Captcha', '2012-05-13 01:11:23'),
(3974, 'fa', 'directory', 'categorynote', 'بخش ها را با یک کاما از هم جدا کنید بر اساس اولویت آنها.\r\nبا آنهایی که دارای اولویت بالاتری هستند شروع کنید', '2012-05-13 01:11:23'),
(3975, 'fa', 'directory', 'Check Directory Status', 'برسی وضیعت مسیر ', '2012-05-13 01:11:23'),
(3976, 'fa', 'directory', 'Check Directory Submission Status', 'بررسی وضعیت مسیرهای توابع', '2012-05-13 01:11:23'),
(3977, 'fa', 'directory', 'clicktoproceeddirsts', 'کلیک کنید بر اقدام برای برسی وضعیت مسیر', '2012-05-13 01:11:23'),
(3978, 'fa', 'directory', 'Confirmation', 'تایید', '2012-05-13 01:11:23'),
(3979, 'fa', 'directory', 'desnote', 'بعضی از مسیر هاحداقل 150 کارکتر برای قسمت توضیحات لازم است ', '2012-05-13 01:11:24'),
(3980, 'fa', 'directory', 'Directories with out captcha', 'مسیر های با captcha خروجی', '2012-05-13 01:11:24'),
(3981, 'fa', 'directory', 'Directory Submission Reports', 'گزارشات مسیر توابع ', '2012-05-13 01:11:24'),
(3982, 'fa', 'directory', 'Enter the code shown', 'کد وارد نمایش داده شده را وارد کنید ', '2012-05-13 01:11:24'),
(3983, 'fa', 'directory', 'nocatnote', 'بخش توابع در صفحه توابع پیدا نشد .\r\nلطفا کلیک کنید بر بار گذاری دوباره یا پرش ', '2012-05-13 01:11:24'),
(3984, 'fa', 'directory', 'nodirnote', 'هیچ فعالی مسیری پیدا نشد ', '2012-05-13 01:11:24'),
(3985, 'fa', 'directory', 'nosuccessnote', 'پیام به درستی دریافت نشد.\r\nلطفا ایمیل خود را برای دیدن پیغام تایید بررسی کنید ', '2012-05-13 01:11:24'),
(3986, 'fa', 'directory', 'optionalnote', 'عنوان و توضیحات اختیاری برای ارسال عنوان تصادفی و توضیحات به دایرکتوری ها برای نتایج بهتر\r\n', '2012-05-13 01:11:24'),
(3987, 'fa', 'directory', 'Owner Email', 'صاحب پست الکترونیک ', '2012-05-13 01:11:24'),
(3988, 'fa', 'directory', 'Owner Name', 'نام مالک', '2012-05-13 01:11:24'),
(3989, 'fa', 'directory', 'Pending', 'در انتظار', '2012-05-13 01:11:24'),
(3990, 'fa', 'directory', 'Please select a website to proceed', 'لطفا یک وب سابت را برای ادامه انتخاب کنید ', '2012-05-13 01:11:24'),
(3991, 'fa', 'directory', 'selectwebsiteproceed', 'سایت را برای ثبت در دایرکتوری انتخاب نمایید.برای ثبت در دایرکتوری هایی که نیاز به کد تشخیص انسان از روبوت ندارد، گزینه Directories with out\r\ncaptcha را انتخاب نمایید.', '2012-05-13 01:11:24'),
(3992, 'fa', 'directory', 'selectwebsiteschecksub', 'انتخاب کن وب سایت برای اقدام بررسی مسیر توابع را', '2012-05-13 01:11:24'),
(3993, 'fa', 'directory', 'Semi Automatic Directory Submission Tool', 'مسیر های نیمه اوتوماتیک ابزار توابع', '2012-05-13 01:11:24'),
(3994, 'fa', 'directory', 'spamemailnote', 'برخی از دایرکتوری ها ممکن است هرز نامه ارسال کنند ٰ.\r\nپیشنهاد نمی کنیم که از پست الکترونیک اصلی خود استفاده کنید ', '2012-05-13 01:11:24'),
(3995, 'fa', 'directory', 'Submission Details', 'جزیات تابع ', '2012-05-13 01:11:24'),
(3996, 'fa', 'directory', 'Submit Description', 'ثبت توضیحات ', '2012-05-13 01:11:24'),
(3997, 'fa', 'directory', 'Submit Keywords', 'ثبت کلمات کلیدی ', '2012-05-13 01:11:24'),
(3998, 'fa', 'directory', 'Submit Title', 'ثبت عنوان ', '2012-05-13 01:11:24'),
(3999, 'fa', 'directory', 'Website Category', 'طبقه بندی وب سایت ها ', '2012-05-13 01:11:24'),
(4000, 'fa', 'directory', 'Website Url', 'آدرس وب سایت ', '2012-05-13 01:11:24'),
(4001, 'fa', 'saturation', 'clickproceedsaturation', 'وترد کنید آدرس ها را در هر خط یکی . \r\nکلیک کنید بر روی اقدام \r\nبرای بررسی موتور جست و جوی اشباع ', '2011-01-25 15:45:36'),
(4002, 'fa', 'saturation', 'GenerateSaturationReports', 'تولید موتور جستجو گزارش اشباع', '2011-01-25 15:45:36'),
(4003, 'fa', 'saturation', 'Quick Search Engine Saturation Checker', 'جستجوی سریع موتور جستجوگر اشباع', '2011-01-25 15:45:36'),
(4004, 'fa', 'saturation', 'Saved Search Engine Saturation results of', 'ذخیره نتایج اشباع موتور جست و جو ', '2011-01-25 15:45:36'),
(4005, 'fa', 'saturation', 'Search Engine Saturation Reports', 'گزارشات اشباع موتور های جست و جو ', '2011-01-25 15:45:36'),
(4006, 'fa', 'button', 'Cancel', 'انصراف ', '2014-01-09 00:25:49'),
(4007, 'fa', 'button', 'Check Status', 'بررسی وضیعت ', '2014-01-09 00:25:49'),
(4008, 'fa', 'button', 'Proceed', 'ادامه ', '2014-01-09 00:25:49'),
(4009, 'fa', 'button', 'Reload', 'بار گذاری دوباره ', '2014-01-09 00:25:49'),
(4010, 'fa', 'button', 'Show Details', 'نمابش چزیات ', '2014-01-09 00:25:49'),
(4011, 'fa', 'button', 'Show Records', 'نمایش سوابق ', '2014-01-09 00:25:49'),
(4012, 'fa', 'button', 'Skip', 'پرش ', '2014-01-09 00:25:49'),
(4013, 'fa', 'button', 'Submit', 'ثبت کردن ', '2014-01-09 00:25:49'),
(4014, 'fa', 'home', 'Account Summary', 'خلاصه حساب کاربری ', '2012-05-23 03:09:44'),
(4015, 'fa', 'home', 'Backlinks', 'لینک دهدنده ها ', '2012-05-23 03:09:44'),
(4016, 'fa', 'home', 'Directory Submission', 'مسیر توابع ', '2012-05-23 03:09:44'),
(39506, 'de', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Die Seite hat Open Graph Tags für besseres Social Media Sharing', '2026-01-19 23:10:01'),
(39507, 'es', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'La página tiene etiquetas Open Graph para mejor compartición en redes sociales', '2026-01-19 23:10:01'),
(39508, 'fr', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'La page a des balises Open Graph pour un meilleur partage sur les réseaux sociaux', '2026-01-19 23:10:01'),
(39509, 'it', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'La pagina ha tag Open Graph per una migliore condivisione sui social media', '2026-01-19 23:10:01'),
(38884, 'da', 'review', 'Review Growth Trends', 'Væksttrends for anmeldelser', '2026-01-19 22:58:50'),
(38885, 'de', 'review', 'Review Growth Trends', 'Bewertungswachstumstrends', '2026-01-19 22:58:50'),
(38886, 'el', 'review', 'Review Growth Trends', 'Τάσεις ανάπτυξης αξιολογήσεων', '2026-01-19 22:58:50'),
(38887, 'es', 'review', 'Review Growth Trends', 'Tendencias de crecimiento de reseñas', '2026-01-19 22:58:50'),
(38888, 'es-ar', 'review', 'Review Growth Trends', 'Tendencias de crecimiento de reseñas', '2026-01-19 22:58:50'),
(38889, 'fa', 'review', 'Review Growth Trends', 'روندهای رشد بررسی ها', '2026-01-19 22:58:50'),
(38890, 'fi', 'review', 'Review Growth Trends', 'Arvostelujen kasvutrendit', '2026-01-19 22:58:50'),
(38891, 'fr', 'review', 'Review Growth Trends', 'Tendances de croissance des avis', '2026-01-19 22:58:50'),
(38892, 'he', 'review', 'Review Growth Trends', 'מגמות צמיחה בביקורות', '2026-01-19 22:58:50'),
(38893, 'hi', 'review', 'Review Growth Trends', 'समीक्षा विकास रुझान', '2026-01-19 22:58:50'),
(38894, 'hr', 'review', 'Review Growth Trends', 'Trendovi rasta recenzija', '2026-01-19 22:58:50'),
(38895, 'hu', 'review', 'Review Growth Trends', 'Értékelési növekedési trendek', '2026-01-19 22:58:50'),
(38896, 'hy', 'review', 'Review Growth Trends', 'Ակնարկների աճի միտումներ', '2026-01-19 22:58:50'),
(38897, 'id', 'review', 'Review Growth Trends', 'Tren Pertumbuhan Ulasan', '2026-01-19 22:58:50'),
(38898, 'it', 'review', 'Review Growth Trends', 'Tendenze di Crescita Recensioni', '2026-01-19 22:58:50'),
(4020, 'fa', 'home', 'Pages Indexed', 'صفحات نمایه', '2012-05-23 03:09:44'),
(4021, 'fa', 'home', 'Ranks', 'رتبه ها', '2012-05-23 03:09:44'),
(4022, 'fa', 'home', 'SiteNameUrl', 'نام سایت / آدرس', '2012-05-23 03:09:44'),
(4023, 'fa', 'home', 'Website Statistics', 'آمار وب سایت', '2012-05-23 03:09:44'),
(4024, 'fa', 'backlink', 'clickproceedbacklink', ' در هر خط یکی برای چک کردن لینک دهنده ها آدرس ها راوارد کنید', '2010-12-03 09:50:08'),
(4025, 'fa', 'backlink', 'Saved backlink results of', 'ذخیره کن نتایج لینک دهنده ها را ', '2010-12-03 09:50:08'),
(4026, 'el', 'website', 'Edit Website', 'Επεξεργασία website', '2019-08-28 09:44:53'),
(4027, 'el', 'website', 'plscrtwebsite', 'Παρακαλώ καταχωρίστε ένα website, πριν αρχίσετε να χρησιμοποιείτε τα εργαλεία seo και τα seo plugins.', '2019-08-28 09:44:53'),
(4028, 'el', 'website', 'Website already exist', 'Το Website ήδη υπάρχει', '2019-08-28 09:44:53'),
(4029, 'el', 'website', 'yourwebalreday', 'Το website σας αν ήδη έχετε καταχωρίσει ένα.', '2019-08-28 09:44:53'),
(4030, 'el', 'user', 'Edit User', 'Επεξεργασία χρήστη', '2016-01-27 13:13:11'),
(4031, 'el', 'user', 'Saved My Profile Details', 'Οι Λεπτομέρειες Προφίλ αποθηκεύτηκαν', '2016-01-27 13:13:11'),
(4032, 'el', 'sitemap', 'Change frequency', 'Αλλαγή συχνότητας', '2019-01-29 11:40:48'),
(4033, 'el', 'sitemap', 'clickproceedsitemap', 'Κάντε κλικ στο Ανάθεση για να δημιουργήσετε ένα sitemap αρχείο', '2019-01-29 11:40:48'),
(4034, 'el', 'sitemap', 'Download sitemap file from', 'Κατεβάστε το αρχείο sitemap από', '2019-01-29 11:40:48'),
(4035, 'el', 'sitemap', 'Exclude Url', 'Απομονώστε Url', '2019-01-29 11:40:48'),
(4036, 'el', 'sitemap', 'processtaketime', 'Αυτή η διαδικασία θα κρατήσει τόση ώρα ανάλογα με τον αριθμό των link που υπάρχουν στο website. Παρακαλώ περιμένετε ώστε να λάβετε τα αρχεία sitemap', '2019-01-29 11:40:48'),
(4037, 'el', 'sitemap', 'Sitemap Type', 'Τύπος Sitemap', '2019-01-29 11:40:48'),
(4038, 'el', 'backlink', 'clickproceedbacklink', 'Πληκτρολογήστε τα URL\\''s ένα σε κάθε γραμμή . Κάντε κλικ στο Ανάθεση για να εξετάσετε τα Backlinks. ', '2010-12-14 10:04:32'),
(4039, 'el', 'backlink', 'Saved backlink results of', 'Αποθηκεύτηκαν αποτελέσματα backlink για', '2010-12-14 10:04:32'),
(4040, 'el', 'button', 'Cancel', 'Ακύρωση', '2014-01-09 00:26:57'),
(4041, 'el', 'button', 'Check Status', 'Έλεγχος κατάστασης', '2014-01-09 00:26:57'),
(4042, 'el', 'button', 'Proceed', 'Εκκίνηση', '2014-01-09 00:26:57'),
(4043, 'el', 'button', 'Reload', 'Επαναφόρτωση', '2014-01-09 00:26:57'),
(4044, 'el', 'button', 'Show Details', 'Εμφάνιση λεπτομερειών', '2014-01-09 00:26:57'),
(4045, 'el', 'button', 'Show Records', 'Εμφάνιση εγγραφών', '2014-01-09 00:26:57'),
(4046, 'el', 'button', 'Skip', 'Παράβλεψη', '2014-01-09 00:26:57'),
(4047, 'el', 'button', 'Submit', 'Καταχώριση ', '2014-01-09 00:26:57'),
(4048, 'el', 'common', 'Action', 'Ενέργεια', '2019-08-28 09:40:52'),
(4049, 'el', 'common', 'Activate', 'Ενεργοποίηση', '2019-08-28 09:40:52'),
(4050, 'el', 'common', 'Active', 'Ενεργό', '2019-08-28 09:40:52'),
(4051, 'el', 'common', 'Admin Panel', 'Πίνακας διαχειριστή', '2019-08-28 09:40:52'),
(4052, 'el', 'common', 'Alexa Rank', 'Alexa Rank ', '2019-08-28 09:40:52'),
(4053, 'el', 'common', 'All', 'Όλα', '2019-08-28 09:40:52'),
(4054, 'el', 'common', 'Category', 'Κατηγορία', '2019-08-28 09:40:52'),
(4055, 'el', 'common', 'contact', 'Επικοινωνία', '2019-08-28 09:40:52'),
(4056, 'el', 'common', 'copyright', 'Copyright © [year] www.seopanel.in All rights reserved ', '2019-08-28 09:40:52'),
(4057, 'el', 'common', 'Country', 'Χώρα', '2019-08-28 09:40:52'),
(4058, 'el', 'common', 'Crawl Meta Data', 'Crawl Meta Data ', '2019-08-28 09:40:52'),
(4059, 'el', 'common', 'Date', 'Ημερομηνία', '2019-08-28 09:40:52'),
(4060, 'el', 'common', 'Delete', 'Διαγραφή', '2019-08-28 09:40:52'),
(4061, 'el', 'common', 'Details', 'Λεπτομέρειες', '2019-08-28 09:40:52'),
(4062, 'el', 'common', 'Directory', 'Κατάλογος', '2019-08-28 09:40:52'),
(4063, 'el', 'common', 'Donate', 'Ενίσχυση', '2019-08-28 09:40:52'),
(4064, 'el', 'common', 'Edit', 'Επεξεργασία', '2019-08-28 09:40:52'),
(4065, 'el', 'common', 'Entry cannot be blank', 'Η καταχώριση δεν μπορεί να είναι κενή', '2019-08-28 09:40:52'),
(4066, 'el', 'common', 'entrynotvalid', 'Η καταχώριση που εισάγατε δεν δείχνει να είναι σωστή', '2019-08-28 09:40:52'),
(4067, 'el', 'common', 'failed', 'Απέτυχε', '2019-08-28 09:40:52'),
(4068, 'el', 'common', 'forum', 'Συζητήστε', '2019-08-28 09:40:52'),
(4069, 'el', 'common', 'Found', 'Βρέθηκε', '2019-08-28 09:40:52'),
(4070, 'el', 'common', 'Google Pagerank', 'Google Pagerank ', '2019-08-28 09:40:52'),
(4071, 'el', 'common', 'help', 'Βοήθεια', '2019-08-28 09:40:52'),
(4072, 'el', 'common', 'hidenews', 'Απόκρυψη των ειδήσεων Seo Panel ', '2019-08-28 09:40:52'),
(4073, 'el', 'common', 'Id', 'Id', '2019-08-28 09:40:52'),
(4074, 'el', 'common', 'Inactivate', 'Απενεργοποίηση', '2019-08-28 09:40:52'),
(4075, 'el', 'common', 'Inactive', 'Απενεργοποιημένος', '2019-08-28 09:40:52'),
(4076, 'el', 'common', 'Invalid characters', 'Μη αποδεκτοί χαρακτήρες', '2019-08-28 09:40:52'),
(4077, 'el', 'common', 'Invalid code entered', 'Εισήχθη μη αποδεκτός κωδικός', '2019-08-28 09:40:52'),
(4078, 'el', 'common', 'Invalid email address entered', 'Εισήχθη μη αποδεκτή διεύθυνση email', '2019-08-28 09:40:52'),
(4079, 'el', 'common', 'Invalid value', 'Μη αποδεκτή τιμή', '2019-08-28 09:40:52'),
(4080, 'el', 'common', 'Keyword', 'Λέξη κλειδί', '2019-08-28 09:40:52'),
(4081, 'el', 'common', 'Keywords', 'Λέξεις κλειδιά', '2019-08-28 09:40:52'),
(4082, 'el', 'common', 'lang', 'Γλώσσα', '2019-08-28 09:40:52'),
(4083, 'el', 'common', 'My Account', 'Ο λογαριασμός μου', '2019-08-28 09:40:52'),
(4084, 'el', 'common', 'Name', 'Όνομα', '2019-08-28 09:40:52'),
(4085, 'el', 'common', 'No', 'Όχι', '2019-08-28 09:40:52'),
(4086, 'el', 'common', 'No Keywords Found', 'Δεν βρέθηκαν λέξεις κλειδιά', '2019-08-28 09:40:52'),
(4087, 'el', 'common', 'No Records Found', 'Δεν βρέθηκαν εγγραφές', '2019-08-28 09:40:52'),
(4088, 'el', 'common', 'noactivetools', 'Δεν βρέθηκαν ενεργά Seo Tools!', '2019-08-28 09:40:52'),
(4089, 'el', 'common', 'nowebsites', 'Δεν βρέθηκαν websites', '2019-08-28 09:40:52'),
(4090, 'el', 'common', 'password632', 'Το μέγεθος του κωδικού πρέπει να έχει μήκος από 6 ως 32 χαρακτήρες', '2019-08-28 09:40:52'),
(4091, 'el', 'common', 'passwordnotmatch', 'Ο κωδικός δεν ταιριάζει', '2019-08-28 09:40:52'),
(4092, 'el', 'common', 'Period', 'Περίοδος', '2019-08-28 09:40:52'),
(4093, 'el', 'common', 'Priority', 'Προτεραιότητα ', '2019-08-28 09:40:52'),
(4094, 'el', 'common', 'Profile', 'Προφίλ', '2019-08-28 09:40:52'),
(4095, 'el', 'common', 'Rank', 'Rank', '2019-08-28 09:40:52'),
(4096, 'el', 'common', 'Reports', 'Αναφορές', '2019-08-28 09:40:52'),
(4097, 'el', 'common', 'Results', 'Αποτελέσματα', '2019-08-28 09:40:52'),
(4098, 'el', 'common', 'Search Engine', 'Μηχανή Αναζήτησης', '2019-08-28 09:40:52'),
(4099, 'el', 'common', 'Select', 'Επιλογή', '2019-08-28 09:40:52'),
(4100, 'el', 'common', 'Seo Plugins', 'Seo Plugins', '2019-08-28 09:40:52'),
(4101, 'el', 'common', 'Seo Tools', 'Seo Εργαλεία', '2019-08-28 09:40:52'),
(4102, 'el', 'common', 'Sign out', 'Αποσύνδεση', '2019-08-28 09:40:52'),
(4103, 'el', 'common', 'Sign Up', 'Εγγραφή', '2019-08-28 09:40:52'),
(4104, 'el', 'common', 'signin', 'Σύνδεση', '2019-08-28 09:40:52'),
(4105, 'el', 'common', 'Status', 'Κατάσταση', '2019-08-28 09:40:52'),
(4106, 'el', 'common', 'Support', 'Υποστήριξη', '2019-08-28 09:40:52'),
(4107, 'el', 'common', 'Total', 'Σύνολο', '2019-08-28 09:40:52'),
(4108, 'el', 'common', 'Url', 'Url', '2019-08-28 09:40:52'),
(4109, 'el', 'common', 'User', 'Χρήστης', '2019-08-28 09:40:52'),
(4110, 'el', 'common', 'User Panel', 'Πίνακας ελέγχου χρήστη', '2019-08-28 09:40:52'),
(4111, 'el', 'common', 'Website', 'Website', '2019-08-28 09:40:52'),
(4112, 'el', 'common', 'Yes', 'Ναι', '2019-08-28 09:40:52'),
(4113, 'el', 'directory', 'Add back to directory list', 'Προσθέστε πίσω στην λίστα καταλόγου', '2014-01-20 16:07:08'),
(4114, 'el', 'directory', 'Approved', 'Ελέχθη ', '2014-01-20 16:07:08'),
(4115, 'el', 'directory', 'Captcha', 'Captcha ', '2014-01-20 16:07:08'),
(4116, 'el', 'directory', 'categorynote', 'Κατηγορίες, διαχωρισμένες με κόμμα σύμφωνα με την προτεραιότητα. Ξεκινήστε με την κατηγορία Πρώτης προτεραιότητας. ', '2014-01-20 16:07:08'),
(4117, 'el', 'directory', 'Check Directory Status', 'Έλεγχος κατάστασης καταλόγου', '2014-01-20 16:07:08'),
(4118, 'el', 'directory', 'Check Directory Submission Status', 'Έλεγχος κατάστασης καταχώρισης καταλόγου', '2014-01-20 16:07:08'),
(4119, 'el', 'directory', 'clicktoproceeddirsts', 'Επιλέξτε Ανάθεση για τον Έλεγχο Κατάστασης Καταλόγου. ', '2014-01-20 16:07:08'),
(4120, 'el', 'directory', 'Confirmation', 'Επιβεβαίωση', '2014-01-20 16:07:08'),
(4121, 'el', 'directory', 'desnote', 'Μερικοί κατάλογοι απαιτούν το ελάχιστο 150 χαρακτήρες για το πεδίο περιγραφής.', '2014-01-20 16:07:08'),
(4122, 'el', 'directory', 'Directories with out captcha', 'Κατάλογοι χωρίς captcha', '2014-01-20 16:07:08'),
(4123, 'el', 'directory', 'Directory Submission Reports', 'Αναφορά Καταχώρισης καταλόγου', '2014-01-20 16:07:08'),
(4124, 'el', 'directory', 'Enter the code shown', 'Πληκτρολογήστε τον προβαλλόμενο κωδικό', '2014-01-20 16:07:08'),
(4125, 'el', 'directory', 'nocatnote', 'Ο κατάλογος καταχωρίσεων δεν βρέθηκε στην σελίδα καταχώρισης. Παρακαλώ κάντε κλικ στην Επαναφόρτωση ή Παράβλεψη ', '2014-01-20 16:07:08'),
(4126, 'el', 'directory', 'nodirnote', 'Δεν βρέθηκε Ενεργός κατάλογος', '2014-01-20 16:07:08'),
(4127, 'el', 'directory', 'nosuccessnote', 'Δεν ελήφθη μήνυμα επιτυχίας, Παρακαλώ ελέγξτε το email σας για να βρείτε το μήνυμα επιβεβαίωσης.', '2014-01-20 16:07:08'),
(4128, 'el', 'directory', 'optionalnote', 'Εναλλακτικοί τίτλοι και κατηγορίες για την καταχώριση random τίτλου και περιγραφής σε καταλόγους για καλύτερα αποτελέσματα.', '2014-01-20 16:07:08'),
(4129, 'el', 'directory', 'Owner Email', 'Email ιδιοκτήτη', '2014-01-20 16:07:08'),
(4130, 'el', 'directory', 'Owner Name', 'Όνομα ιδιοκτήτη', '2014-01-20 16:07:08'),
(4131, 'el', 'directory', 'Pending', 'Εν αναμονή', '2014-01-20 16:07:08'),
(4132, 'el', 'directory', 'Please select a website to proceed', 'Παρακαλώ επιλέξτε ένα website για ανάθεση', '2014-01-20 16:07:08'),
(4133, 'el', 'directory', 'selectwebsiteproceed', 'Επιλέξτε ένα Website για Ανάθεση καταχώρισης καταλόγου. Ελέγξτε τον κατάλογο χωρίς captcha για καταχώριση σε κατάλογο χωρίς captcha', '2014-01-20 16:07:08'),
(4134, 'el', 'directory', 'selectwebsiteschecksub', 'Επιλέξτε ένα Website για Ανάθεση ελέγχου καταχώρισης καταλόγου. ', '2014-01-20 16:07:08'),
(4135, 'el', 'directory', 'Semi Automatic Directory Submission Tool', 'Ημιαυτόματο Εργαλείο Καταχώρισης Καταλόγου', '2014-01-20 16:07:08'),
(4136, 'el', 'directory', 'spamemailnote', 'Μερικοί κατάλογοι μπορεί να στείλουν spam, δεν προτείνουμε να χρησιμοποιήσετε την κύρια διεύθυνση email σας.', '2014-01-20 16:07:08'),
(4137, 'el', 'directory', 'Submission Details', 'Λεπτομέρειες Καταχώρισης', '2014-01-20 16:07:08'),
(4138, 'el', 'directory', 'Submit Description', 'Περιγραφή Καταχώρισης', '2014-01-20 16:07:08'),
(4139, 'el', 'directory', 'Submit Keywords', 'Καταχώριση Λέξεων Κλειδιών', '2014-01-20 16:07:08'),
(4140, 'el', 'directory', 'Submit Title', 'Καταχώριση Τίτλου', '2014-01-20 16:07:08'),
(4141, 'el', 'directory', 'Website Category', 'Κατηγορία Website', '2014-01-20 16:07:08'),
(4142, 'el', 'directory', 'Website Url', 'Website Url ', '2014-01-20 16:07:08'),
(4143, 'el', 'plugin', 'Edit Seo Plugin', 'Επεξεργασία Seo Plugin', '2012-06-03 01:56:43'),
(4144, 'el', 'plugin', 'Plugin Name', 'Όνομα Plugin', '2012-06-03 01:56:43'),
(4145, 'el', 'plugin', 'Seo Plugin Details', 'Λεπτομέρειες Seo Plugin', '2012-06-03 01:56:43'),
(4146, 'el', 'support', 'support_cont1', ' \r\nSeo Panel Σύστημα Υποστήριξης \r\n \r\n \r\n Πακέτο Καταλόγου 1000 \r\n \r\n Σας παρέχουμε 1000 δωρεάν και ενεργά πακέτα internet καταλόγων, ώστε να τα προσθέσετε \r\nστο seo panel σας με τοεργαλείο καταχώρισης καταλόγων . \r\n Αυτό θα σας βοηθήσει να αυξήσετε τα backlinks των websites σας. \r\n Πρακτικά, η 1000 λίστα καταλόγου είναι εισαγωγική για να μαζευτούν χρήματα για τη μελλοντική\r\n ανάπτυξη του seo panel. \r\n Για να παραλάβετε την λίστα καταλόγων 1000 παρακαλώ δωρίστε \r\n$10 ή λιγότερο για την βελτίωση των λειτουργιών και των εργαλείων του seo panel. \r\n Αν έχετε ερωτήσεις για το πακέτο καταλόγων 1000, παρακαλώ επικοινωνήστε μαζί μας ή ανοίξτε ένα ερώτημα στοσύστημα υποστήριξης . \r\n
\r\n \r\n Επισκεφτείτε αυτόν το σύνδεσμο για να δωρίσετε στο seo panel \r\n
\r\n \r\n \r\n \r\n \r\n Πακέτο Τοπικών Μηχανών Αναζήτησης \r\n \r\n Προσθέστε domains τοπικών μηχανών αναζήτησης για το google,yahoo,msn(eg: www.google.de,www.google.gr\r\nκλπ ) στο seo panel έλεγχος κατάταξης keyword , ώστε να παρακολουθηθεί η απόδοση του site σας τοπικά. \r\n Για να λάβετε το πακέτο των τοπικών μηχανών αναζήτησης(σύμφωνα με τις απαιτήσεις σας) παρακαλώ " target="_blank">δωρίστε $10 ή περισσότερα για την βελτίωση των υπηρεσιών που προσφέρει το seo panel. \r\n Πριν στείλετε την δωρεά, παρακαλώ επικοινωνήστε μαζί μας για να \r\nσας παρέχουμε την απαιτούμενη λίστα των domain μηχανών αναζήτησης. \r\n \r\n Επίσης, για να προσθέσετε νέες μηχανές αναζήτησης(eg:in.gr) στο seo panel εργαλείο ελέγχου κατάταξης keyword,\r\nπαρακαλώ επικοινωνήστε μαζί μας ή ανοίξτε ένα ερώτημα στο " target="_blank">σύστημα υποστήριξης . \r\n
\r\n \r\n Κάντε κλικ εδώ για να επικοινωνήσετε μαζί μας \r\n
\r\n \r\n \r\n \r\n \r\n Seo Panel Plugins \r\n \r\n Προσθέστε seo plugins στο seo panel σας για να επεκτίνετε τις δυνατότητες σύμφωνα με τις\r\nαπαιτήσεις σας. \r\n Τα Seo panel plugins υποστηρίζονται από το seo panel\r\nαλλά και sites τρίτων. \r\n Επίσης, μπορείτε εύκολα να αναπτύξετε seo plugins για το δικό σας seo panel. \r\n Μπορείτε να καταχωρίσετε το seo plugin στο seo panel και\r\nεμείς θα το δημοσιεύσουμε στο website σας μετά από τον επανέλεγχο που κάνουμε. \r\n
\r\n \r\n Κάντε κλικ εδώ για να κατεβάσετε seo panel plugins \r\n
\r\n \r\n \r\n \r\n Επικοινωνήστε μαζί μας \r\n \r\n Επικοινωνήστε μαζί μας για οποιεσδήποτε ερωτήσεις αφορούν τα seo panel tools,plugins και δυνατότητες etc χρησιμοποιώντας το ακόλουθο\r\nlink. \r\n
\r\n \r\n Κάντε κλικ εδώ για να επικοινωνήσετε μαζί μας \r\n
\r\n \r\n \r\n \r\n Ερωτήματα Υποστήριξης \r\n \r\n Για να έχετε τεχνική υποστήριξη από τη ομάδα του seo panel που αφοροούν την εγκατάσταση των seo panel tools,plugins and\r\nδυνατοτήτων . Π.χ.: Για εγκατάσταση cron για έλεγχο κατάταξης keyword. \r\n
\r\n \r\n Κάντε κλικ εδώ για να δημιουργήσετε ένα ερώτημα υποστήριξης \r\n
\r\n \r\n \r\n \r\n Αναφορά Bugs \r\n \r\n Αναφέρετε τα bugs για τα seo panel tools,plugins των δυνατοτήτων κλπ χρησιμοποιώντας το ακόλουθο link. \r\n Παρακαλώ βοηθήστε μας να βελτιώσουμε τις δυνατότητες στις επόμενες εκδόσεις. \r\n
\r\n \r\n Κάντε κλικ εδώ για να αναφέρετε bugs \r\n
\r\n \r\n \r\n \r\n ', '2019-08-28 09:44:16'),
(14713, 'el', 'website', 'Click here to get Google Analytics View Id', 'Κλικ εδώ για να πάρετε ένα Google Analytics View Id ', '2019-08-28 09:44:53'),
(4147, 'el', 'support', 'support_cont2', ' \r\nSeo Panel Online Πόροι \r\n \r\n \r\n \r\n Οδηγός Βοηθείας Seo Panel \r\n \r\n Μπορείτε να διαβάσετε την τεκμηρίωση του seo panel στον οδηγό βοηθείας , ο οποίος περιλαμβάνει τεκμηρίωση για τα εργαλεία του seo panel, τα plugins και τα συναφή χαρακτηριστικά και δυνατότητες. \r\n Είναι το καλύτερο μέρος στο internet για λήψη βοήθειας στο seo panel. Ελπίζουμε ότι και εσείς θα συμβάλλετε στον οδηγό βοήθειας του seo panel, σε περίπτωση που βρείτε σφάλματα ή στοιχεία που λείπουν.\r\n
\r\n \r\n Επισκεφθείτε τον οδηγό βοηθείας του seo panel \r\n
\r\n \r\n \r\n \r\n Seo Panel Forum \r\n \r\n Ένα μέρος για να συζητήσετε το πρώτο παγκοσμίως open source seo control panel . \r\n Είναι το καλύτερο μέρος για να βρείτε απαντήσεις στις ερωτήσεις σας για το seo panel. \r\n Επίσης μπορείτε να μοιραστείτε την εμπειρία σας όσο χρησιμοποιείτε το seo panel για την βελτιστοποίηση των websites σας.\r\n
\r\n \r\n Επισκεφθείτε το seo panel forum \r\n
\r\n \r\n \r\n \r\n ', '2019-08-28 09:44:16'),
(4148, 'el', 'support', 'support_cont3', ' \r\n Δωρίστε στο Seo Panel \r\n \r\n \r\n Δωρίστε στο Seo Panel - Το πρώτο Open source seo control panel παγκοσμίως \r\n \r\n Δωρίστε στο seo panel για την υποστήριξη του πρώτου open source seo control panel παγκοσμίως. \r\n Σχεδιάζουμε να προσθέσουμε και βελτιώσουμε τις δυνατότητες του seo panel στο μέλλον. \r\n Μόνο με όλη την υποστήριξη σας μπορούμε να επιτύχουμε τους στόχους . \r\n Αν πιστεύετε ότι το seo panel αξίζει για σας, παρακαλώ δωρίστε ένα μερικό ποσό στην ομάδα του seo panel.\r\n Εμείς θα δημοσιεύσουμε το όνομα σας και τις πληροφορίες του site στην σελίδα δωρεάς , μόλις παραλάβουμε την δωρεά. \r\n
\r\n \r\n Επισκεφθείτε αυτόν το σύνδεσμο για να δωρίσετε στο seo panel \r\n
\r\n \r\n \r\n \r\n ', '2019-08-28 09:44:16'),
(4149, 'da', 'backlink', 'clickproceedbacklink', 'Indtast URL''s En per linie . Klik på Fortsæt for at kontrollere backlinks.\r\n', '2014-01-18 00:42:13'),
(4150, 'da', 'backlink', 'Saved backlink results of', 'Gemte backlink resultater', '2014-01-18 00:42:13'),
(4151, 'da', 'button', 'Cancel', 'Annuller', '2014-01-09 00:24:44'),
(4152, 'da', 'button', 'Check Status', 'Kontroller Status\r\n', '2014-01-09 00:24:44'),
(4153, 'da', 'button', 'Proceed', 'Fortsæt', '2014-01-09 00:24:44'),
(4154, 'da', 'button', 'Reload', 'Opdater', '2014-01-09 00:24:44'),
(4155, 'da', 'button', 'Show Details', 'Vis Detaljer\r\n', '2014-01-09 00:24:44'),
(4156, 'da', 'button', 'Show Records', 'Vis Data', '2014-01-09 00:24:44'),
(4157, 'da', 'button', 'Skip', 'Spring Over', '2014-01-09 00:24:44'),
(4158, 'da', 'button', 'Submit', 'Indsend', '2014-01-09 00:24:44'),
(4159, 'da', 'common', 'Action', 'Handling', '2019-05-25 22:04:54'),
(4160, 'da', 'common', 'Activate', 'Aktiver', '2019-05-25 22:04:54'),
(4161, 'da', 'common', 'Active', 'Aktiv', '2019-05-25 22:04:54'),
(4162, 'da', 'common', 'Admin Panel', 'Admin Panel\r\n', '2019-05-25 22:04:54'),
(4163, 'da', 'common', 'Alexa Rank', 'Alexa Rank', '2019-05-25 22:04:54'),
(4164, 'da', 'common', 'All', 'Alle', '2019-05-25 22:04:54'),
(4165, 'da', 'common', 'Category', 'Kategori', '2019-05-25 22:04:54'),
(4166, 'da', 'common', 'contact', 'Kontakt', '2019-05-25 22:04:54'),
(4167, 'da', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Alle rettigheder forbeholdes\r\n', '2019-05-25 22:04:54'),
(4168, 'da', 'common', 'Country', 'Land', '2019-05-25 22:04:54'),
(4169, 'da', 'common', 'Crawl Meta Data', 'Kravle Meta Data\r\n', '2019-05-25 22:04:54'),
(4170, 'da', 'common', 'Date', 'Dato', '2019-05-25 22:04:54'),
(4171, 'da', 'common', 'Delete', 'Slet', '2019-05-25 22:04:54'),
(4172, 'da', 'common', 'Details', 'Detaljer', '2019-05-25 22:04:54'),
(4173, 'da', 'common', 'Directory', 'Bibliotek', '2019-05-25 22:04:54'),
(4174, 'da', 'common', 'Donate', 'Donere\r\n', '2019-05-25 22:04:54'),
(4175, 'da', 'common', 'Edit', 'Rediger', '2019-05-25 22:04:54'),
(4176, 'da', 'common', 'Entry cannot be blank', 'Punktet må ikke være tom\r\n', '2019-05-25 22:04:54'),
(4177, 'da', 'common', 'entrynotvalid', 'De indtastede punkter synes ikke at være gyldig\r\n', '2019-05-25 22:04:54'),
(4178, 'da', 'common', 'failed', 'mislykkedes', '2019-05-25 22:04:54'),
(4179, 'da', 'common', 'forum', 'Forum', '2019-05-25 22:04:54'),
(4180, 'da', 'common', 'Found', 'Fundet', '2019-05-25 22:04:54'),
(4181, 'da', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:04:54'),
(4182, 'da', 'common', 'help', 'Hjælp', '2019-05-25 22:04:54'),
(4183, 'da', 'common', 'hidenews', 'Skjul Seo Panel Nyheder\r\n', '2019-05-25 22:04:54'),
(4184, 'da', 'common', 'Id', 'ID', '2019-05-25 22:04:54'),
(4185, 'da', 'common', 'Inactivate', 'Inaktivere', '2019-05-25 22:04:54'),
(4186, 'da', 'common', 'Inactive', 'Inaktive\r\n', '2019-05-25 22:04:54'),
(4187, 'da', 'common', 'Invalid characters', 'Ugyldige tegn', '2019-05-25 22:04:54');
INSERT INTO `texts` VALUES
(4188, 'da', 'common', 'Invalid code entered', 'Ugyldig indtastning\r\n', '2019-05-25 22:04:54'),
(4189, 'da', 'common', 'Invalid email address entered', 'Ugyldig indtastet email adresse\r\n', '2019-05-25 22:04:54'),
(4190, 'da', 'common', 'Invalid value', 'Ugyldig værdi', '2019-05-25 22:04:54'),
(4191, 'da', 'common', 'Keyword', 'Søgeord', '2019-05-25 22:04:54'),
(4192, 'da', 'common', 'Keywords', 'Søgeord', '2019-05-25 22:04:54'),
(4193, 'da', 'common', 'lang', 'Sprog', '2019-05-25 22:04:54'),
(4194, 'da', 'common', 'My Account', 'Min Konto', '2019-05-25 22:04:54'),
(4195, 'da', 'common', 'Name', 'Navn', '2019-05-25 22:04:54'),
(4196, 'da', 'common', 'No', 'Nej', '2019-05-25 22:04:54'),
(4197, 'da', 'common', 'No Keywords Found', 'Søgeord', '2019-05-25 22:04:54'),
(4198, 'da', 'common', 'No Records Found', 'Ingen Poster Fundet\r\n', '2019-05-25 22:04:54'),
(4199, 'da', 'common', 'noactivetools', 'Intet aktivt Seo Tools fundet!\r\n', '2019-05-25 22:04:54'),
(4200, 'da', 'common', 'nowebsites', 'Ingen Hjemmeside Fundet', '2019-05-25 22:04:54'),
(4201, 'da', 'common', 'password632', 'Adgangskoden skal have en længde mellem 6 og 32\r\n', '2019-05-25 22:04:54'),
(4202, 'da', 'common', 'passwordnotmatch', 'Adgangskoden stemmer ikke overens\r\n', '2019-05-25 22:04:54'),
(4203, 'da', 'common', 'Period', 'Periode', '2019-05-25 22:04:54'),
(4204, 'da', 'common', 'Priority', 'Prioritet', '2019-05-25 22:04:54'),
(4205, 'da', 'common', 'Profile', 'Profil', '2019-05-25 22:04:54'),
(4206, 'da', 'common', 'Rank', 'Rank', '2019-05-25 22:04:54'),
(4207, 'da', 'common', 'Reports', 'Rapporter', '2019-05-25 22:04:54'),
(4208, 'da', 'common', 'Results', 'Resultater', '2019-05-25 22:04:54'),
(4209, 'da', 'common', 'Search Engine', 'Søgemaskine', '2019-05-25 22:04:54'),
(4210, 'da', 'common', 'Select', 'Vælg', '2019-05-25 22:04:54'),
(4211, 'da', 'common', 'Seo Plugins', 'Seo Plugins', '2019-05-25 22:04:54'),
(4212, 'da', 'common', 'Seo Tools', 'Seo Værktøjer', '2019-05-25 22:04:54'),
(4213, 'da', 'common', 'Sign out', 'Log ud', '2019-05-25 22:04:54'),
(4214, 'da', 'common', 'Sign Up', 'Tilmeld', '2019-05-25 22:04:54'),
(4215, 'da', 'common', 'signin', 'Log på', '2019-05-25 22:04:54'),
(4216, 'da', 'common', 'Status', 'Status', '2019-05-25 22:04:54'),
(4217, 'da', 'common', 'Support', 'Support', '2019-05-25 22:04:54'),
(4218, 'da', 'common', 'Total', 'Total', '2019-05-25 22:04:54'),
(4219, 'da', 'common', 'Url', 'Url', '2019-05-25 22:04:54'),
(4220, 'da', 'common', 'User', 'Bruger', '2019-05-25 22:04:54'),
(4221, 'da', 'common', 'User Panel', 'Bruger Panel', '2019-05-25 22:04:54'),
(4222, 'da', 'common', 'Website', 'Hjemmeside', '2019-05-25 22:04:54'),
(4223, 'da', 'common', 'Yes', 'Ja', '2019-05-25 22:04:54'),
(4224, 'da', 'rank', 'enterurlproceed', 'Indtast URL\\''s En per linie . Klik på Fortsæt for at kontrollere Google og Alexa rang.\r\n', '2010-12-16 12:06:52'),
(4225, 'da', 'rank', 'Google and Alexa Rank Reports', 'Google og Alexa Rank Rapporter\r\n', '2010-12-16 12:06:52'),
(4226, 'da', 'rank', 'Saved rank results of', 'Gemte rank resultater\r\n', '2010-12-16 12:06:52'),
(4227, 'da', 'website', 'Edit Website', 'Rediger Hjemmesiden\r\n', '2010-12-16 12:44:33'),
(4228, 'da', 'website', 'plscrtwebsite', 'Før du starter at bruge seo værktøj og seo plugin, så opret venligst en hjemmeside.\r\n\r\n', '2010-12-16 12:44:33'),
(4229, 'da', 'website', 'Website already exist', 'hjemmesiden findes allerede\r\n', '2010-12-16 12:44:33'),
(4230, 'da', 'website', 'yourwebalreday', 'din hjemmeside, hvis du allerede har oprettet en.\r\n', '2010-12-16 12:44:33'),
(4231, 'da', 'user', 'Edit User', 'Rediger Bruger\r\n', '2010-12-16 12:45:31'),
(4232, 'da', 'user', 'Saved My Profile Details', 'Gem Min Profil Detaljer\r\n', '2010-12-16 12:45:31'),
(4233, 'da', 'label', 'already exist', 'findes allerede\r\n', '2014-01-18 00:52:14'),
(4234, 'da', 'label', 'Authentication', 'Autentificering', '2014-01-18 00:52:14'),
(4235, 'da', 'label', 'Author', 'Forfatter', '2014-01-18 00:52:14'),
(4236, 'da', 'label', 'Click Here', 'Klik her\r\n', '2014-01-18 00:52:14'),
(4237, 'da', 'label', 'Cron', 'Cron ', '2014-01-18 00:52:14'),
(4238, 'da', 'label', 'Description', 'Beskrivelse', '2014-01-18 00:52:14'),
(4239, 'da', 'label', 'Developers', 'Udviklere\r\n', '2014-01-18 00:52:14'),
(4240, 'da', 'label', 'Download', 'Download', '2014-01-18 00:52:14'),
(4241, 'da', 'label', 'Installation', 'Installation\r\n', '2014-01-18 00:52:14'),
(4242, 'da', 'label', 'Keywords', 'Søgeord', '2014-01-18 00:52:14'),
(4243, 'da', 'label', 'noactiveplugins', 'Intet aktivt Seo Plugin fundet!\r\n', '2014-01-18 00:52:14'),
(4244, 'da', 'label', 'Plugin', 'Plugin', '2014-01-18 00:52:14'),
(4245, 'da', 'label', 'Port', 'Port', '2014-01-18 00:52:14'),
(4246, 'da', 'label', 'Proxy', 'Proxy', '2014-01-18 00:52:14'),
(4247, 'da', 'label', 'Re-install', 'Geninstaller', '2014-01-18 00:52:14'),
(4248, 'da', 'label', 'Sponsors', 'Sponsorer', '2014-01-18 00:52:14'),
(4249, 'da', 'label', 'Title', 'Titel', '2014-01-18 00:52:14'),
(4250, 'da', 'label', 'translation by', 'oversat af\r\n', '2014-01-18 00:52:14'),
(4251, 'da', 'label', 'Translators', 'Oversættere', '2014-01-18 00:52:14'),
(4252, 'da', 'label', 'Upgrade', 'Opgrader', '2014-01-18 00:52:14'),
(4253, 'da', 'label', 'Version', 'Version', '2014-01-18 00:52:14'),
(4254, 'da', 'label', 'wantproceed', 'Vil du virkelig ønsker at fortsætte?', '2014-01-18 00:52:14'),
(4255, 'da', 'proxy', 'Edit Proxy', 'Rediger Proxy\r\n', '2014-01-20 14:44:35'),
(4256, 'da', 'proxy', 'Proxy Password', 'Proxy Kodeord\r\n', '2014-01-20 14:44:35'),
(4257, 'da', 'proxy', 'Proxy Username', 'Proxy Brugernavn\r\n', '2014-01-20 14:44:35'),
(4258, 'da', 'proxy', 'Proxyalreadyexist', 'Proxy findes allerede!\r\n', '2014-01-20 14:44:35'),
(4259, 'da', 'home', 'Account Summary', 'Konto resume', '2014-01-20 13:56:43'),
(4260, 'da', 'home', 'Backlinks', 'Backlinks', '2014-01-20 13:56:43'),
(4261, 'da', 'home', 'Directory Submission', 'Bibliotek tilmelding', '2014-01-20 13:56:43'),
(38872, 'tl', 'review', 'Average Rating by Platform', 'Average na Rating ayon sa Platform', '2026-01-19 22:58:50'),
(38873, 'tr', 'review', 'Average Rating by Platform', 'Platforma göre ortalama puan', '2026-01-19 22:58:50'),
(38874, 'uk', 'review', 'Average Rating by Platform', 'Середній рейтинг за платформами', '2026-01-19 22:58:50'),
(38875, 'vn', 'review', 'Average Rating by Platform', 'Đánh giá trung bình theo nền tảng', '2026-01-19 22:58:50'),
(38876, 'zh', 'review', 'Average Rating by Platform', '各平台平均评分', '2026-01-19 22:58:50'),
(38877, 'en', 'review', 'Review Growth Trends', 'Review Growth Trends', '2026-01-19 22:58:50'),
(38878, 'ar', 'review', 'Review Growth Trends', 'اتجاهات نمو المراجعات', '2026-01-19 22:58:50'),
(38879, 'bg', 'review', 'Review Growth Trends', 'Тенденции на растеж на отзивите', '2026-01-19 22:58:50'),
(38880, 'bs', 'review', 'Review Growth Trends', 'Trendovi rasta recenzija', '2026-01-19 22:58:50'),
(38881, 'ca', 'review', 'Review Growth Trends', 'Tendències de creixement de ressenyes', '2026-01-19 22:58:50'),
(38882, 'cn', 'review', 'Review Growth Trends', '评论增长趋势', '2026-01-19 22:58:50'),
(38883, 'cs', 'review', 'Review Growth Trends', 'Trendy růstu recenzí', '2026-01-19 22:58:50'),
(4265, 'da', 'home', 'Pages Indexed', 'Sider der er indekseret', '2014-01-20 13:56:43'),
(4266, 'da', 'home', 'Ranks', 'Ranks', '2014-01-20 13:56:43'),
(4267, 'da', 'home', 'SiteNameUrl', 'Hjemmeside Navn/Url\r\n', '2014-01-20 13:56:43'),
(4268, 'da', 'home', 'Website Statistics', 'Hjemmeside Statistik\r\n', '2014-01-20 13:56:43'),
(4269, 'el', 'keyword', 'Crawling keyword', 'Ανίχνευση λέξης κλειδί', '2016-01-27 13:02:49'),
(4270, 'el', 'keyword', 'Detailed Keyword Position Reports', 'Λεπτομερής αναφορά κατάταξης της λέξης κλειδί', '2016-01-27 13:02:49'),
(4271, 'el', 'keyword', 'Edit Keyword', 'Επεξεργασία λέξης κλειδί', '2016-01-27 13:02:49'),
(4272, 'el', 'keyword', 'Graphical Keyword Position Reports', 'Γραφικές αναφορές κατάταξης των λέξεων κλειδιών ', '2016-01-27 13:02:49'),
(4273, 'el', 'keyword', 'Import Keywords', 'Εισαγωγή λέξεων κλειδιών', '2016-01-27 13:02:49'),
(4274, 'el', 'keyword', 'Keyword already exist', 'Η λέξη κλειδί ήδη υπάρχει', '2016-01-27 13:02:49'),
(4275, 'el', 'keyword', 'Keyword Position Report', 'Αναφορά κατάταξης της λέξης κλειδί', '2016-01-27 13:02:49'),
(4276, 'el', 'keyword', 'New Keyword', 'Νέα λέξη κλειδί', '2016-01-27 13:02:49'),
(4277, 'el', 'keyword', 'not assigned to required search engines', 'δεν υπάγονται στις απαιτούμενες μηχανές αναζήτησης', '2016-01-27 13:02:49'),
(4278, 'el', 'keyword', 'pleaseselecttool', 'Παρακαλώ επιλέξτε τουλάχιστον ένα Seo Εργαλείο', '2016-01-27 13:02:49'),
(4279, 'el', 'keyword', 'Quick Keyword Position Checker', 'Γρήγορη αναζήτησης κατάταξης της λέξης κλειδί', '2016-01-27 13:02:49'),
(4280, 'el', 'keyword', 'results from ', 'αποτελέσματα από', '2016-01-27 13:02:49'),
(4281, 'el', 'keyword', 'Show All results', 'Προβολή όλων των αποτελεσμάτων', '2016-01-27 13:02:49'),
(4282, 'el', 'keyword', 'Successfully crawled keyword', 'Επιτυχής ανίχνευση της λέξη κλειδί', '2016-01-27 13:02:49'),
(4283, 'el', 'keyword', 'to create new keywords', 'για να δημιουργήσετε νέες λέξεις κλειδιά', '2016-01-27 13:02:49'),
(4284, 'el', 'rank', 'enterurlproceed', 'Εισάγετε τα URL\\''s ένα σε κάθε γραμμή . Κάνετε κλικ στο Ανάθεση για τον έλεγχο του Google Rank και του Alexa rank. ', '2010-12-23 13:30:08'),
(4285, 'el', 'rank', 'Google and Alexa Rank Reports', 'Αναφορά Google Rank και Alexa Rank ', '2010-12-23 13:30:08'),
(4286, 'el', 'rank', 'Saved rank results of', 'Αποθήκευση αποτελεσμάτων Rank για ', '2010-12-23 13:30:08'),
(4287, 'el', 'panel', 'About Us', 'Για Εμάς', '2019-08-28 09:42:17'),
(4288, 'el', 'panel', 'Add following command to your cron tab', 'Προσθέστε ακόλουθη εντολή για στην καρτέλα cron', '2019-08-28 09:42:17'),
(4289, 'el', 'panel', 'alsocheckfollowlink', 'Επίσης ελέγξτε ακόλουθο link αν χρειάζεστε περισσότερες πληροφορίες', '2019-08-28 09:42:17'),
(4290, 'el', 'panel', 'Check Directory', 'Έλεγχος καταλόγου', '2019-08-28 09:42:17'),
(4291, 'el', 'panel', 'Cron Command', 'Εντολή Cron', '2019-08-28 09:42:17'),
(4292, 'el', 'panel', 'Directory Manager', 'Διαχείριση καταλόγου', '2019-08-28 09:42:17'),
(4293, 'el', 'panel', 'Edit My Profile', 'Επεξεργασία του Προφίλ μου', '2019-08-28 09:42:17'),
(4294, 'el', 'panel', 'My Profile', 'To Προφίλ μου', '2019-08-28 09:42:17'),
(4295, 'el', 'panel', 'New Proxy', 'Νέο Proxy', '2019-08-28 09:42:17'),
(4296, 'el', 'panel', 'New User', 'Νέος Χρήστης', '2019-08-28 09:42:17'),
(4297, 'el', 'panel', 'New Website', 'Νέο Website', '2019-08-28 09:42:17'),
(4298, 'el', 'panel', 'Proxy Manager', 'Διαχείριση Proxy', '2019-08-28 09:42:17'),
(4299, 'el', 'panel', 'Report Generation Manager', 'Διαχείριση Παραγωγής Αναφορών', '2019-08-28 09:42:17'),
(4300, 'el', 'panel', 'Reports Manager', 'Διαχείριση αναφορών', '2019-08-28 09:42:17'),
(4301, 'el', 'panel', 'Seo Plugins Manager', 'Διαχείριση Seo Plugins', '2019-08-28 09:42:17'),
(4302, 'el', 'panel', 'Seo Tools Manager', 'Διαχείριση Seo Εργαλεία', '2019-08-28 09:42:17'),
(4303, 'el', 'panel', 'System Settings', 'Ρυθμίσεις Συστήματος', '2019-08-28 09:42:17'),
(4304, 'el', 'panel', 'User Manager', 'Διαχείριση Χρηστών', '2019-08-28 09:42:17'),
(4305, 'el', 'panel', 'Website Manager', 'Διαχείριση Website', '2019-08-28 09:42:17'),
(4306, 'el', 'label', 'already exist', 'υπάρχει ήδη', '2019-11-28 23:22:10'),
(4307, 'el', 'label', 'Authentication', 'Πιστοποίηση', '2019-11-28 23:22:10'),
(4308, 'el', 'label', 'Author', 'Συγγραφέας', '2019-11-28 23:22:10'),
(4309, 'el', 'label', 'Click Here', 'Κλικ Εδώ', '2019-11-28 23:22:10'),
(4310, 'el', 'label', 'Cron', 'Cron', '2019-11-28 23:22:10'),
(4311, 'el', 'label', 'Description', 'Περιγραφή', '2019-11-28 23:22:10'),
(4312, 'el', 'label', 'Developers', 'Ανάπτυξη', '2019-11-28 23:22:10'),
(4313, 'el', 'label', 'Download', 'Λήψη', '2019-11-28 23:22:10'),
(4314, 'el', 'label', 'Installation', 'Εγκατάσταση', '2019-11-28 23:22:10'),
(4315, 'el', 'label', 'Keywords', 'Λέξεις κλειδιά', '2019-11-28 23:22:10'),
(4316, 'el', 'label', 'noactiveplugins', 'Δεν βρέθηκαν ενεργά Seo Plugin', '2019-11-28 23:22:10'),
(4317, 'el', 'label', 'Plugin', 'Pugin', '2019-11-28 23:22:10'),
(4318, 'el', 'label', 'Port', 'Port', '2019-11-28 23:22:10'),
(4319, 'el', 'label', 'Proxy', 'Proxy', '2019-11-28 23:22:10'),
(4320, 'el', 'label', 'Re-install', 'Επανεγκατάσταση ', '2019-11-28 23:22:10'),
(4321, 'el', 'label', 'Sponsors', 'Χορηγοί', '2019-11-28 23:22:10'),
(4322, 'el', 'label', 'Title', 'Τίτλος', '2019-11-28 23:22:10'),
(4323, 'el', 'label', 'translation by', 'μετάφραση από τον', '2019-11-28 23:22:10'),
(4324, 'el', 'label', 'Translators', 'Μεταφραστές', '2019-11-28 23:22:10'),
(4325, 'el', 'label', 'Upgrade', 'Αναβάθμιση', '2019-11-28 23:22:10'),
(4326, 'el', 'label', 'Version', 'Έκδοση', '2019-11-28 23:22:10'),
(4327, 'el', 'label', 'wantproceed', 'Θέλετε πραγματικά να προχωρήσει;', '2019-11-28 23:22:10'),
(4328, 'el', 'seotools', 'Automatic Submission', 'Αυτόματη Καταχώρηση ', '2019-11-28 23:13:05'),
(4329, 'el', 'seotools', 'backlink-checker', 'Ελεγκτής Backlink', '2019-11-28 23:13:05'),
(4330, 'el', 'seotools', 'Backlinks Reports', 'Αναφορές Backlink', '2019-11-28 23:13:05'),
(4331, 'el', 'seotools', 'Check Submission Status', 'Έλεγχος κατάστασης καταχώρησης', '2019-11-28 23:13:05'),
(4332, 'el', 'seotools', 'clickgeneratereports', 'Κάντε κλικ στο Εκκίνηση για την παραγωγή αναφορών', '2019-11-28 23:13:05'),
(4333, 'el', 'seotools', 'Detailed Position Reports', 'λεπτομερείς αναφορές κατάταξης', '2019-11-28 23:13:05'),
(4334, 'el', 'seotools', 'directory-submission', 'Καταχώρηση σε καταλόγους', '2019-11-28 23:13:05'),
(4335, 'el', 'seotools', 'Featured Submission', 'Προτεινόμενη Καταχώρηση', '2019-11-28 23:13:05'),
(4336, 'el', 'seotools', 'Generate Backlinks Reports', 'Παραγωγή Αναφορών Backlink', '2019-11-28 23:13:05'),
(4337, 'el', 'seotools', 'Generate Keyword Reports', 'Παραγωγή Αναφορών Λέξεων Κλειδιών', '2019-11-28 23:13:05'),
(4338, 'el', 'seotools', 'Generate Rank Reports', 'Παραγωγή Αναφορών Rank', '2019-11-28 23:13:05'),
(4339, 'el', 'seotools', 'Generate Saturation Reports', 'Παραγωγή Αναφορών Κορεσμού', '2019-11-28 23:13:05'),
(4340, 'el', 'seotools', 'Google Sitemap Generator', 'Παραγωγή Google Sitemap', '2019-11-28 23:13:05'),
(4341, 'el', 'seotools', 'Graphical Position Reports', 'Γραφικές Αναφορές Κατάταξης', '2019-11-28 23:13:05'),
(4342, 'el', 'seotools', 'Keyword Position Summary', 'Σύνοψη Κατάταξης Λέξεων Κλειδιών', '2019-11-28 23:13:05'),
(4343, 'el', 'seotools', 'keyword-position-checker', 'Έλεγχος Κατάταξης Λέξεων Κλειδιών', '2019-11-28 23:13:05'),
(4344, 'el', 'seotools', 'Keywords Manager', 'Διαχείριση Λέξεων Κλειδιών', '2019-11-28 23:13:05'),
(4345, 'el', 'seotools', 'Quick Backlinks Checker', 'Γρήγορος Έλεγχος Backlinks ', '2019-11-28 23:13:05'),
(4346, 'el', 'seotools', 'Quick Position Checker', 'Γρήγορος Έλεγχος Κατάταξης', '2019-11-28 23:13:05'),
(4347, 'el', 'seotools', 'Quick Rank Checker', 'Γρήγορος Έλεγχος Rank', '2019-11-28 23:13:05'),
(4348, 'el', 'seotools', 'Quick Saturation Checker', 'Γρήγορος Έλεγχος Κορεσμού', '2019-11-28 23:13:05'),
(4349, 'el', 'seotools', 'Rank Reports', 'Αναφορές Rank', '2019-11-28 23:13:05'),
(4350, 'el', 'seotools', 'rank-checker', 'Έλεγχος Rank', '2019-11-28 23:13:05'),
(4351, 'el', 'seotools', 'Saturation Reports', 'Αναφορές Κορεσμού', '2019-11-28 23:13:05'),
(4352, 'el', 'seotools', 'saturation-checker', 'Κορεσμός Μηχανής Αναζήτησης', '2019-11-28 23:13:05'),
(4353, 'el', 'seotools', 'sitemap-generator', 'Παραγωγή Sitemap', '2019-11-28 23:13:05'),
(4354, 'el', 'seotools', 'Skipped Directories', 'Κατάλογοι εν Αναμονή', '2019-11-28 23:13:05'),
(4355, 'el', 'seotools', 'Submission Reports', 'Αναφορές Καταχώρησης', '2019-11-28 23:13:05'),
(4356, 'el', 'seotools', 'User Access', 'Πρόσβαση Χρήστη', '2019-11-28 23:13:05'),
(4357, 'el', 'login', 'Confirm Password', 'Επιβεβαίωση κωδικού', '2018-08-23 10:13:36'),
(4358, 'el', 'login', 'Create my account', 'Δημιούργησε τον λογαριασμό μου', '2018-08-23 10:13:36'),
(4359, 'el', 'login', 'Create New Account', 'Δημιουργία λογαριασμού', '2018-08-23 10:13:36'),
(4360, 'el', 'login', 'Email', 'Email', '2018-08-23 10:13:36'),
(4361, 'el', 'login', 'emailexist', 'Το Email ήδη υπάρχει!', '2018-08-23 10:13:36'),
(4362, 'el', 'login', 'Enter the code as it is shown', 'Πληκτρολογήστε τον κωδικό όπως φαίνεται', '2018-08-23 10:13:36'),
(4363, 'el', 'login', 'First Name', 'Όνομα', '2018-08-23 10:13:36'),
(4364, 'el', 'login', 'Last Name', 'Επώνυμο', '2018-08-23 10:13:36'),
(4365, 'el', 'login', 'Login', 'Σύνδεση', '2018-08-23 10:13:36'),
(4366, 'el', 'login', 'Login incorrect', 'Αποτυχία σύνδεσης', '2018-08-23 10:13:36'),
(4367, 'el', 'login', 'newaccountsuccess', 'Ο νέος λογαριασμός δημιουργήθηκε με επιτυχία!', '2018-08-23 10:13:36'),
(4368, 'el', 'login', 'Password', 'Κωδικός', '2018-08-23 10:13:36'),
(4369, 'el', 'login', 'Password incorrect', 'Λάθος κωδικός', '2018-08-23 10:13:36'),
(4370, 'el', 'login', 'Register', 'Εγγραφή', '2018-08-23 10:13:36'),
(4371, 'el', 'login', 'Sign in to your account', 'Συνδεθείτε στον λογαριασμό σας', '2018-08-23 10:13:36'),
(4372, 'el', 'login', 'User inactive', 'Μη ενεργός χρήστης', '2018-08-23 10:13:36'),
(4373, 'el', 'login', 'Username', 'Όνομα χρήστη', '2018-08-23 10:13:36'),
(4374, 'el', 'login', 'usernameexist', 'Το όνομα χρήστη ήδη υπάρχει!', '2018-08-23 10:13:36'),
(4375, 'el', 'saturation', 'clickproceedsaturation', 'Πληκτρολογήστε τα URL\\''s Ένα σε κάθε γραμμή . Κάντε κλικ στο Ανάθεση για να δείτε τα αποτελέσματα Κορεσμού της Μηχανής Αναζήτησης', '2010-12-23 14:01:23'),
(4376, 'el', 'saturation', 'GenerateSaturationReports', 'Παραγωγή Αναφορών Κορεσμού για την Μηχανή Αναζήτησης', '2010-12-23 14:01:23'),
(4377, 'el', 'saturation', 'Quick Search Engine Saturation Checker', 'Γρήγορος Έλεγχος Κορεσμού της Μηχανής Αναζήτησης', '2010-12-23 14:01:23'),
(4378, 'el', 'saturation', 'Saved Search Engine Saturation results of', 'Αποθήκευση των αποτελεσμάτων Κορεσμού της Μηχανής Αναζήτησης για', '2010-12-23 14:01:23'),
(4379, 'el', 'saturation', 'Search Engine Saturation Reports', 'Αναφορές Κορεσμού Μηχανής Αναζήτησης', '2010-12-23 14:01:23'),
(4380, 'ja', 'backlink', 'clickproceedbacklink', 'URLを一行につき1つ 入力してください。バックリンクをチェックするには開始 をクリックします。', '2011-01-07 19:13:00'),
(4381, 'ja', 'backlink', 'Saved backlink results of', 'バックリンク結果を保存しました', '2011-01-07 19:13:00'),
(4382, 'ja', 'button', 'Cancel', 'キャンセル', '2014-01-09 00:28:54'),
(4383, 'ja', 'button', 'Check Status', '状態をチェック', '2014-01-09 00:28:54'),
(4384, 'ja', 'button', 'Proceed', '開始', '2014-01-09 00:28:54'),
(4385, 'ja', 'button', 'Reload', 'リロード', '2014-01-09 00:28:54'),
(4386, 'ja', 'button', 'Show Details', '詳細を表示', '2014-01-09 00:28:54'),
(4387, 'ja', 'button', 'Show Records', '履歴を表示', '2014-01-09 00:28:54'),
(4388, 'ja', 'button', 'Skip', 'スキップ', '2014-01-09 00:28:54'),
(4389, 'ja', 'button', 'Submit', '送信', '2014-01-09 00:28:54'),
(4390, 'ja', 'common', 'Action', 'アクション', '2019-05-25 22:40:02'),
(4391, 'ja', 'common', 'Activate', '起動', '2019-05-25 22:40:02'),
(4392, 'ja', 'common', 'Active', 'アクティブ', '2019-05-25 22:40:02'),
(4393, 'ja', 'common', 'Admin Panel', '管理パネル', '2019-05-25 22:40:02'),
(4394, 'ja', 'common', 'Alexa Rank', 'Alexaランク', '2019-05-25 22:40:02'),
(4395, 'ja', 'common', 'All', 'すべて', '2019-05-25 22:40:02'),
(4396, 'ja', 'common', 'Category', 'カテゴリ', '2019-05-25 22:40:02'),
(4397, 'ja', 'common', 'contact', '問合せ', '2019-05-25 22:40:02'),
(4398, 'ja', 'common', 'copyright', '著作権 © [year] www.seopanel.in 無断での複写・転載禁止', '2019-05-25 22:40:02'),
(4399, 'ja', 'common', 'Country', '国', '2019-05-25 22:40:02'),
(4400, 'ja', 'common', 'Crawl Meta Data', 'メタデータをクロール', '2019-05-25 22:40:02'),
(4401, 'ja', 'common', 'Date', '日付', '2019-05-25 22:40:02'),
(4402, 'ja', 'common', 'Delete', '削除', '2019-05-25 22:40:02'),
(4403, 'ja', 'common', 'Details', '詳細', '2019-05-25 22:40:02'),
(4404, 'ja', 'common', 'Directory', 'ディレクトリ', '2019-05-25 22:40:02'),
(4405, 'ja', 'common', 'Donate', '寄付', '2019-05-25 22:40:02'),
(4406, 'ja', 'common', 'Edit', '編集', '2019-05-25 22:40:02'),
(4407, 'ja', 'common', 'Entry cannot be blank', '入力は必須です', '2019-05-25 22:40:02'),
(4408, 'ja', 'common', 'entrynotvalid', '入力したデータが無効のようです', '2019-05-25 22:40:02'),
(4409, 'ja', 'common', 'failed', '失敗', '2019-05-25 22:40:02'),
(4410, 'ja', 'common', 'forum', 'フォーラム', '2019-05-25 22:40:02'),
(4411, 'ja', 'common', 'Found', '検出', '2019-05-25 22:40:02'),
(4412, 'ja', 'common', 'Google Pagerank', 'Googleページランク', '2019-05-25 22:40:02'),
(4413, 'ja', 'common', 'help', 'ヘルプ', '2019-05-25 22:40:02'),
(4414, 'ja', 'common', 'hidenews', 'Seo Panelニュースを隠す', '2019-05-25 22:40:02'),
(4415, 'ja', 'common', 'Id', 'ID', '2019-05-25 22:40:02'),
(4416, 'ja', 'common', 'Inactivate', '終了', '2019-05-25 22:40:02'),
(4417, 'ja', 'common', 'Inactive', '非アクティブ', '2019-05-25 22:40:02'),
(4418, 'ja', 'common', 'Invalid characters', '無効な文字', '2019-05-25 22:40:02'),
(4419, 'ja', 'common', 'Invalid code entered', '無効なコードが入力されています', '2019-05-25 22:40:02'),
(4420, 'ja', 'common', 'Invalid email address entered', '無効なメールアドレスが入力されています', '2019-05-25 22:40:02'),
(4421, 'ja', 'common', 'Invalid value', '不正な値', '2019-05-25 22:40:02'),
(4422, 'ja', 'common', 'Keyword', 'キーワード', '2019-05-25 22:40:02'),
(4423, 'ja', 'common', 'Keywords', 'キーワード', '2019-05-25 22:40:02'),
(4424, 'ja', 'common', 'lang', '言語', '2019-05-25 22:40:02'),
(4425, 'ja', 'common', 'My Account', 'マイアカウント', '2019-05-25 22:40:02'),
(4426, 'ja', 'common', 'Name', '名前', '2019-05-25 22:40:02'),
(4427, 'ja', 'common', 'No', 'いいえ', '2019-05-25 22:40:02'),
(4428, 'ja', 'common', 'No Keywords Found', 'キーワードはありません', '2019-05-25 22:40:02'),
(4429, 'ja', 'common', 'No Records Found', '履歴はありません', '2019-05-25 22:40:02'),
(4430, 'ja', 'common', 'noactivetools', 'アクティブなSeoツールはありません!', '2019-05-25 22:40:02'),
(4431, 'ja', 'common', 'nowebsites', 'ウェブサイトはありません', '2019-05-25 22:40:02'),
(4432, 'ja', 'common', 'password632', 'パスワードは6~32文字です', '2019-05-25 22:40:02'),
(4433, 'ja', 'common', 'passwordnotmatch', 'パスワードが一致しません', '2019-05-25 22:40:02'),
(4434, 'ja', 'common', 'Period', '期間', '2019-05-25 22:40:02'),
(4435, 'ja', 'common', 'Priority', '優先度', '2019-05-25 22:40:02'),
(4436, 'ja', 'common', 'Profile', 'プロフィール', '2019-05-25 22:40:02'),
(4437, 'ja', 'common', 'Rank', 'ランク', '2019-05-25 22:40:02'),
(4438, 'ja', 'common', 'Reports', 'レポート', '2019-05-25 22:40:02'),
(4439, 'ja', 'common', 'Results', '結果', '2019-05-25 22:40:02'),
(4440, 'ja', 'common', 'Search Engine', '検索エンジン', '2019-05-25 22:40:02'),
(4441, 'ja', 'common', 'Select', '選択', '2019-05-25 22:40:02'),
(4442, 'ja', 'common', 'Seo Plugins', 'Seoプラグイン', '2019-05-25 22:40:02'),
(4443, 'ja', 'common', 'Seo Tools', 'Seoツール', '2019-05-25 22:40:02'),
(4444, 'ja', 'common', 'Sign out', 'ログアウト', '2019-05-25 22:40:02'),
(4445, 'ja', 'common', 'Sign Up', '登録', '2019-05-25 22:40:02'),
(4446, 'ja', 'common', 'signin', 'ログイン', '2019-05-25 22:40:02'),
(4447, 'ja', 'common', 'Status', '状態', '2019-05-25 22:40:02'),
(4448, 'ja', 'common', 'Support', 'サポート', '2019-05-25 22:40:02'),
(4449, 'ja', 'common', 'Total', '合計', '2019-05-25 22:40:02'),
(4450, 'ja', 'common', 'Url', 'URL', '2019-05-25 22:40:02'),
(4451, 'ja', 'common', 'User', 'ユーザ', '2019-05-25 22:40:02'),
(4452, 'ja', 'common', 'User Panel', 'ユーザパネル', '2019-05-25 22:40:02'),
(4453, 'ja', 'common', 'Website', 'ウェブサイト', '2019-05-25 22:40:02'),
(4454, 'ja', 'common', 'Yes', 'はい', '2019-05-25 22:40:02'),
(4455, 'ja', 'directory', 'Add back to directory list', 'ディレクトリリストへ戻す', '2012-11-09 09:20:41'),
(4456, 'ja', 'directory', 'Approved', '承認済', '2012-11-09 09:20:41'),
(4457, 'ja', 'directory', 'Captcha', 'キャプチャ', '2012-11-09 09:20:41'),
(4458, 'ja', 'directory', 'categorynote', 'カテゴリ、優先順にカンマで区切る。最優先カテゴリが一番目。', '2012-11-09 09:20:41'),
(4459, 'ja', 'directory', 'Check Directory Status', 'ディレクトリ状態をチェック', '2012-11-09 09:20:41'),
(4460, 'ja', 'directory', 'Check Directory Submission Status', 'ディレクトリサブミッション状態をチェック', '2012-11-09 09:20:41'),
(4461, 'ja', 'directory', 'clicktoproceeddirsts', 'ディレクトリ状態をチェックするには開始 をクリック', '2012-11-09 09:20:41'),
(4462, 'ja', 'directory', 'Confirmation', '確認', '2012-11-09 09:20:41'),
(4463, 'ja', 'directory', 'desnote', 'ディレクトリによっては、ディスクリプション欄に最低150文字必要です。', '2012-11-09 09:20:41'),
(4464, 'ja', 'directory', 'Directories with out captcha', 'キャプチャなしのディレクトリ', '2012-11-09 09:20:41'),
(4465, 'ja', 'directory', 'Directory Submission Reports', 'ディレクトリサブミッションレポート', '2012-11-09 09:20:41'),
(4466, 'ja', 'directory', 'Enter the code shown', '表示されているコードを入力', '2012-11-09 09:20:41'),
(4467, 'ja', 'directory', 'nocatnote', 'サブミッションページに送信カテゴリはありません。リロード もしくはスキップ をクリックしてください', '2012-11-09 09:20:41'),
(4468, 'ja', 'directory', 'nodirnote', 'アクティブ なディレクトリはありません', '2012-11-09 09:20:41'),
(4469, 'ja', 'directory', 'nosuccessnote', '成功メッセージを取得できませんでした、メールをチェックして確認メッセージをご確認ください', '2012-11-09 09:20:41'),
(4470, 'ja', 'directory', 'optionalnote', 'より良い結果を得る目的で、タイトルとディスクリプションをランダムにディレクトリへ送信するための任意のタイトル及びディスクリプション。', '2012-11-09 09:20:41'),
(4471, 'ja', 'directory', 'Owner Email', '所有者メールアドレス', '2012-11-09 09:20:41'),
(4472, 'ja', 'directory', 'Owner Name', '所有者名', '2012-11-09 09:20:41'),
(4473, 'ja', 'directory', 'Pending', '保留', '2012-11-09 09:20:41'),
(4474, 'ja', 'directory', 'Please select a website to proceed', '実行するウェブサイトを選択してください', '2012-11-09 09:20:41'),
(4475, 'ja', 'directory', 'selectwebsiteproceed', 'ディレクトリサブミッションを実行 するウェブサイト を選択してください。 キャプチャなしでディレクトリへ送信するにはキャプチャなしのディレクトリ をチェックしてください', '2012-11-09 09:20:41'),
(4476, 'ja', 'directory', 'selectwebsiteschecksub', 'ディレクトリサブミッションチェックを実行 するウェブサイト を選択してください', '2012-11-09 09:20:41'),
(4477, 'ja', 'directory', 'Semi Automatic Directory Submission Tool', '半自動ディレクトリサブミッションツール', '2012-11-09 09:20:41'),
(4478, 'ja', 'directory', 'spamemailnote', 'ディレクトリがスパムを送信する可能性もありますので、大切なメールアドレスの使用はお控えください。', '2012-11-09 09:20:41'),
(4479, 'ja', 'directory', 'Submission Details', 'サブミッション詳細', '2012-11-09 09:20:41'),
(4480, 'ja', 'directory', 'Submit Description', '送信ディスクリプション', '2012-11-09 09:20:41'),
(4481, 'ja', 'directory', 'Submit Keywords', '送信キーワード', '2012-11-09 09:20:41'),
(4482, 'ja', 'directory', 'Submit Title', '送信タイトル', '2012-11-09 09:20:41'),
(4483, 'ja', 'directory', 'Website Category', 'ウェブサイトカテゴリ', '2012-11-09 09:20:41'),
(4484, 'ja', 'directory', 'Website Url', 'ウェブサイトURL', '2012-11-09 09:20:41'),
(4485, 'ja', 'home', 'Account Summary', 'アカウントサマリ', '2019-04-01 13:45:19'),
(4486, 'ja', 'home', 'Backlinks', 'バックリンク', '2019-04-01 13:45:19'),
(4487, 'ja', 'home', 'Directory Submission', 'ディレクトリサブミッション', '2019-04-01 13:45:19'),
(39475, 'bg', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Страницата се обслужва чрез HTTPS - сигурна връзка', '2026-01-19 23:09:35'),
(39476, 'de', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Die Seite wird über HTTPS bereitgestellt - sichere Verbindung', '2026-01-19 23:09:35'),
(39477, 'es', 'siteauditor', 'The page is served over HTTPS - secure connection', 'La página se sirve a través de HTTPS - conexión segura', '2026-01-19 23:09:35'),
(39478, 'fr', 'siteauditor', 'The page is served over HTTPS - secure connection', 'La page est servie via HTTPS - connexion sécurisée', '2026-01-19 23:09:35'),
(39479, 'it', 'siteauditor', 'The page is served over HTTPS - secure connection', 'La pagina viene servita tramite HTTPS - connessione sicura', '2026-01-19 23:09:35'),
(39480, 'nl', 'siteauditor', 'The page is served over HTTPS - secure connection', 'De pagina wordt via HTTPS geleverd - beveiligde verbinding', '2026-01-19 23:09:35'),
(39481, 'pl', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Strona jest serwowana przez HTTPS - bezpieczne połączenie', '2026-01-19 23:09:35'),
(39482, 'pt', 'siteauditor', 'The page is served over HTTPS - secure connection', 'A página é servida via HTTPS - conexão segura', '2026-01-19 23:09:35'),
(39483, 'pt-br', 'siteauditor', 'The page is served over HTTPS - secure connection', 'A página é servida via HTTPS - conexão segura', '2026-01-19 23:09:35'),
(39484, 'ru', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Страница обслуживается через HTTPS - безопасное соединение', '2026-01-19 23:09:35'),
(39485, 'tr', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Sayfa HTTPS üzerinden sunuluyor - güvenli bağlantı', '2026-01-19 23:09:35'),
(39486, 'zh', 'siteauditor', 'The page is served over HTTPS - secure connection', '该页面通过HTTPS提供 - 安全连接', '2026-01-19 23:09:35'),
(39487, 'cn', 'siteauditor', 'The page is served over HTTPS - secure connection', '该页面通过HTTPS提供 - 安全连接', '2026-01-19 23:09:35'),
(39488, 'en', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'The page is not secure (HTTP) - should use HTTPS', '2026-01-19 23:10:01'),
(39489, 'ar', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'الصفحة غير آمنة (HTTP) - يجب استخدام HTTPS', '2026-01-19 23:10:01'),
(39490, 'bg', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Страницата не е сигурна (HTTP) - трябва да използва HTTPS', '2026-01-19 23:10:01'),
(39491, 'de', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Die Seite ist nicht sicher (HTTP) - sollte HTTPS verwenden', '2026-01-19 23:10:01'),
(39492, 'es', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'La página no es segura (HTTP) - debería usar HTTPS', '2026-01-19 23:10:01'),
(39493, 'fr', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'La page n''est pas sécurisée (HTTP) - devrait utiliser HTTPS', '2026-01-19 23:10:01'),
(39494, 'it', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'La pagina non è sicura (HTTP) - dovrebbe usare HTTPS', '2026-01-19 23:10:01'),
(39495, 'nl', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'De pagina is niet beveiligd (HTTP) - moet HTTPS gebruiken', '2026-01-19 23:10:01'),
(39496, 'pl', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Strona nie jest bezpieczna (HTTP) - powinna używać HTTPS', '2026-01-19 23:10:01'),
(39497, 'pt', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'A página não é segura (HTTP) - deveria usar HTTPS', '2026-01-19 23:10:01'),
(39498, 'pt-br', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'A página não é segura (HTTP) - deveria usar HTTPS', '2026-01-19 23:10:01'),
(39499, 'ru', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Страница небезопасна (HTTP) - следует использовать HTTPS', '2026-01-19 23:10:01'),
(39500, 'tr', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Sayfa güvenli değil (HTTP) - HTTPS kullanmalı', '2026-01-19 23:10:01'),
(39501, 'zh', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', '该页面不安全(HTTP) - 应使用HTTPS', '2026-01-19 23:10:01'),
(39502, 'cn', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', '该页面不安全(HTTP) - 应使用HTTPS', '2026-01-19 23:10:01'),
(39503, 'en', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'The page has Open Graph tags for better social media sharing', '2026-01-19 23:10:01'),
(39504, 'ar', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'تحتوي الصفحة على علامات Open Graph لمشاركة أفضل عبر وسائل التواصل الاجتماعي', '2026-01-19 23:10:01'),
(39505, 'bg', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Страницата има Open Graph тагове за по-добро споделяне в социалните мрежи', '2026-01-19 23:10:01'),
(38865, 'sk', 'review', 'Average Rating by Platform', 'Priemerné hodnotenie podľa platformy', '2026-01-19 22:58:50'),
(38866, 'sl', 'review', 'Average Rating by Platform', 'Povprečna ocena po platformi', '2026-01-19 22:58:50'),
(38867, 'sq', 'review', 'Average Rating by Platform', 'Vlerësimi mesatar sipas platformës', '2026-01-19 22:58:50'),
(38868, 'sr', 'review', 'Average Rating by Platform', 'Просечан рејтинг по платформи', '2026-01-19 22:58:50'),
(38869, 'sv', 'review', 'Average Rating by Platform', 'Genomsnittligt betyg per plattform', '2026-01-19 22:58:50'),
(38870, 'sw', 'review', 'Average Rating by Platform', 'Ukadiriaji wa Wastani kwa Jukwaa', '2026-01-19 22:58:50'),
(38871, 'th', 'review', 'Average Rating by Platform', 'คะแนนเฉลี่ยตามแพลตฟอร์ม', '2026-01-19 22:58:50'),
(14147, 'ja', 'home', 'Overall Report Summary', '全体レポートサマリー', '2019-04-01 13:45:19'),
(14148, 'ja', 'label', 'Followers', 'フォロワー', '2019-04-01 13:45:51'),
(14149, 'ja', 'label', 'Likes', 'いいね', '2019-04-01 13:45:51'),
(14150, 'ja', 'panel', 'Report Generation Logs', 'レポート生成ログ', '2019-04-01 13:46:57'),
(14151, 'ja', 'panel', 'Sitemaps', 'サイトマップ', '2019-04-01 13:46:57'),
(14152, 'ja', 'panel', 'Submit Sitemap', 'サイトマップ送信', '2019-04-01 13:46:57'),
(4491, 'ja', 'home', 'Pages Indexed', 'インデックスされたページ', '2019-04-01 13:45:19'),
(4492, 'ja', 'home', 'Ranks', 'ランク', '2019-04-01 13:45:19'),
(4493, 'ja', 'home', 'SiteNameUrl', 'サイト名/URL', '2019-04-01 13:45:19'),
(4494, 'ja', 'home', 'Website Statistics', 'ウェブサイト統計', '2019-04-01 13:45:19'),
(4495, 'ja', 'keyword', 'Crawling keyword', 'キーワードのクローリング中', '2016-01-04 11:34:06'),
(4496, 'ja', 'keyword', 'Detailed Keyword Position Reports', 'キーワード順位詳細レポート', '2016-01-04 11:34:06'),
(4497, 'ja', 'keyword', 'Edit Keyword', 'キーワード編集', '2016-01-04 11:34:06'),
(4498, 'ja', 'keyword', 'Graphical Keyword Position Reports', 'キーワード順位グラフレポート', '2016-01-04 11:34:06'),
(4499, 'ja', 'keyword', 'Import Keywords', 'キーワードのインポート', '2016-01-04 11:34:06'),
(4500, 'ja', 'keyword', 'Keyword already exist', 'キーワードは既に存在します', '2016-01-04 11:34:06'),
(4501, 'ja', 'keyword', 'Keyword Position Report', 'キーワード順位レポート', '2016-01-04 11:34:06'),
(4502, 'ja', 'keyword', 'New Keyword', '新しいキーワード', '2016-01-04 11:34:06'),
(4503, 'ja', 'keyword', 'not assigned to required search engines', '要求された検索エンジンに割り当てされていません', '2016-01-04 11:34:06'),
(4504, 'ja', 'keyword', 'pleaseselecttool', 'Seoツールを最低でも1つ選んでください', '2016-01-04 11:34:06'),
(4505, 'ja', 'keyword', 'Quick Keyword Position Checker', 'キーワード順位クイックチェッカー', '2016-01-04 11:34:06'),
(4506, 'ja', 'keyword', 'results from ', '結果元', '2016-01-04 11:34:06'),
(4507, 'ja', 'keyword', 'Show All results', 'すべての結果を表示', '2016-01-04 11:34:06'),
(4508, 'ja', 'keyword', 'Successfully crawled keyword', 'クロールに成功したキーワード', '2016-01-04 11:34:06'),
(4509, 'ja', 'keyword', 'to create new keywords', '新しいキーワードを作成', '2016-01-04 11:34:06'),
(4510, 'ja', 'label', 'already exist', '既に存在します', '2019-04-01 13:45:51'),
(4511, 'ja', 'label', 'Authentication', '認証', '2019-04-01 13:45:51'),
(4512, 'ja', 'label', 'Author', '作者', '2019-04-01 13:45:51'),
(4513, 'ja', 'label', 'Click Here', 'ここをクリック', '2019-04-01 13:45:51'),
(4514, 'ja', 'label', 'Cron', 'Cron', '2019-04-01 13:45:51'),
(4515, 'ja', 'label', 'Description', 'ディスクリプション', '2019-04-01 13:45:51'),
(4516, 'ja', 'label', 'Developers', '開発者', '2019-04-01 13:45:51'),
(4517, 'ja', 'label', 'Download', 'ダウンロード', '2019-04-01 13:45:51'),
(4518, 'ja', 'label', 'Installation', 'インストール', '2019-04-01 13:45:51'),
(4519, 'ja', 'label', 'Keywords', 'キーワード', '2019-04-01 13:45:51'),
(4520, 'ja', 'label', 'noactiveplugins', 'アクティブなSeoプラグインがありません!', '2019-04-01 13:45:51'),
(4521, 'ja', 'label', 'Plugin', 'プラグイン', '2019-04-01 13:45:51'),
(4522, 'ja', 'label', 'Port', 'ポート', '2019-04-01 13:45:51'),
(4523, 'ja', 'label', 'Proxy', 'プロキシ', '2019-04-01 13:45:51'),
(4524, 'ja', 'label', 'Re-install', '再インストール', '2019-04-01 13:45:51'),
(4525, 'ja', 'label', 'Sponsors', 'スポンサー', '2019-04-01 13:45:51'),
(4526, 'ja', 'label', 'Title', 'タイトル', '2019-04-01 13:45:51'),
(4527, 'ja', 'label', 'translation by', '翻訳', '2019-04-01 13:45:51'),
(4528, 'ja', 'label', 'Translators', '翻訳者', '2019-04-01 13:45:51'),
(4529, 'ja', 'label', 'Upgrade', 'アップグレード', '2019-04-01 13:45:51'),
(4530, 'ja', 'label', 'Version', 'バージョン', '2019-04-01 13:45:51'),
(4531, 'ja', 'label', 'wantproceed', '本当に処理を続行してよろしいですか?', '2019-04-01 13:45:51'),
(4532, 'ja', 'login', 'Confirm Password', 'パスワードの確認', '2018-08-21 10:29:48'),
(4533, 'ja', 'login', 'Create my account', 'マイアカウントの作成', '2018-08-21 10:29:48'),
(4534, 'ja', 'login', 'Create New Account', '新規アカウントの作成', '2018-08-21 10:29:48'),
(4535, 'ja', 'login', 'Email', 'メールアドレス', '2018-08-21 10:29:48'),
(4536, 'ja', 'login', 'emailexist', 'メールアドレスは既に存在します', '2018-08-21 10:29:48'),
(4537, 'ja', 'login', 'Enter the code as it is shown', 'コードを表示通りに入力してください', '2018-08-21 10:29:48'),
(4538, 'ja', 'login', 'First Name', '名前', '2018-08-21 10:29:48'),
(4539, 'ja', 'login', 'Last Name', '姓', '2018-08-21 10:29:48'),
(4540, 'ja', 'login', 'Login', 'ログイン', '2018-08-21 10:29:48'),
(4541, 'ja', 'login', 'Login incorrect', 'ログインが不正です', '2018-08-21 10:29:48'),
(4542, 'ja', 'login', 'newaccountsuccess', '新規アカウントの作成に成功しました!', '2018-08-21 10:29:48'),
(4543, 'ja', 'login', 'Password', 'パスワード', '2018-08-21 10:29:48'),
(4544, 'ja', 'login', 'Password incorrect', 'パスワードが不正です', '2018-08-21 10:29:48'),
(4545, 'ja', 'login', 'Register', '登録', '2018-08-21 10:29:48'),
(4546, 'ja', 'login', 'Sign in to your account', 'あなたのアカウントにログイン', '2018-08-21 10:29:48'),
(4547, 'ja', 'login', 'User inactive', 'ユーザが非アクティブです', '2018-08-21 10:29:48'),
(4548, 'ja', 'login', 'Username', 'ユーザ名', '2018-08-21 10:29:48'),
(4549, 'ja', 'login', 'usernameexist', 'ユーザ名は既に存在します!', '2018-08-21 10:29:48'),
(4550, 'ja', 'panel', 'About Us', 'Seo Panelについて', '2019-04-01 13:46:57'),
(4551, 'ja', 'panel', 'Add following command to your cron tab', '以下のコマンドをあなたのcronタブに追加してください', '2019-04-01 13:46:57'),
(4552, 'ja', 'panel', 'alsocheckfollowlink', 'さらに詳細が必要なら下記リンクもチェックしてください', '2019-04-01 13:46:57'),
(4553, 'ja', 'panel', 'Check Directory', 'ディレクトリをチェック', '2019-04-01 13:46:57'),
(4554, 'ja', 'panel', 'Cron Command', 'cronコマンド', '2019-04-01 13:46:57'),
(4555, 'ja', 'panel', 'Directory Manager', 'ディレクトリマネージャー', '2019-04-01 13:46:57'),
(4556, 'ja', 'panel', 'Edit My Profile', 'マイプロフィールの編集', '2019-04-01 13:46:57'),
(4557, 'ja', 'panel', 'My Profile', 'マイプロフィール', '2019-04-01 13:46:57'),
(4558, 'ja', 'panel', 'New Proxy', '新規プロキシ', '2019-04-01 13:46:57'),
(4559, 'ja', 'panel', 'New User', '新規ユーザ', '2019-04-01 13:46:57'),
(4560, 'ja', 'panel', 'New Website', '新規ウェブサイト', '2019-04-01 13:46:57'),
(4561, 'ja', 'panel', 'Proxy Manager', 'プロキシマネージャー', '2019-04-01 13:46:57'),
(4562, 'ja', 'panel', 'Report Generation Manager', 'レポート生成マネージャー', '2019-04-01 13:46:57'),
(4563, 'ja', 'panel', 'Reports Manager', 'レポートマネージャー', '2019-04-01 13:46:57'),
(4564, 'ja', 'panel', 'Seo Plugins Manager', 'Seoプラグインマネージャー', '2019-04-01 13:46:57'),
(4565, 'ja', 'panel', 'Seo Tools Manager', 'Seoツールマネージャー', '2019-04-01 13:46:57'),
(4566, 'ja', 'panel', 'System Settings', 'システム設定', '2019-04-01 13:46:57'),
(4567, 'ja', 'panel', 'User Manager', 'ユーザマネージャー', '2019-04-01 13:46:57'),
(4568, 'ja', 'panel', 'Website Manager', 'ウェブサイトマネージャー', '2019-04-01 13:46:57'),
(4569, 'ja', 'plugin', 'Edit Seo Plugin', 'Seoプラグインの編集', '2012-05-14 17:00:09'),
(4570, 'ja', 'plugin', 'Plugin Name', 'プラグイン名', '2012-05-14 17:00:09'),
(4571, 'ja', 'plugin', 'Seo Plugin Details', 'Seoプラグイン詳細', '2012-05-14 17:00:09'),
(4572, 'ja', 'proxy', 'Edit Proxy', 'プロキシの編集', '2016-12-12 06:08:13'),
(4573, 'ja', 'proxy', 'Proxy Password', 'プロキシパスワード', '2016-12-12 06:08:13'),
(4574, 'ja', 'proxy', 'Proxy Username', 'プロキシユーザ名', '2016-12-12 06:08:13'),
(4575, 'ja', 'proxy', 'Proxyalreadyexist', 'プロキシは既に存在します!', '2016-12-12 06:08:13'),
(4576, 'ja', 'rank', 'enterurlproceed', 'URLを一行につき1つ 入力してください。GoogleおよびAlexaランキングをチェックするには開始 をクリックします。', '2011-01-07 23:34:13'),
(4577, 'ja', 'rank', 'Google and Alexa Rank Reports', 'GoogleおよびAlexaランクレポート', '2011-01-07 23:34:13'),
(4578, 'ja', 'rank', 'Saved rank results of', 'ランキング結果を保存しました', '2011-01-07 23:34:13'),
(4579, 'ja', 'saturation', 'clickproceedsaturation', 'URLを一行につき1つ 入力してください。検索エンジンサチュレーション結果を確認するには開始 をクリックします。', '2011-01-07 23:36:27'),
(4580, 'ja', 'saturation', 'GenerateSaturationReports', '検索エンジンサチュレーション結果を生成', '2011-01-07 23:36:27'),
(4581, 'ja', 'saturation', 'Quick Search Engine Saturation Checker', '検索エンジンサチュレーション・クイックチェッカー', '2011-01-07 23:36:27'),
(4582, 'ja', 'saturation', 'Saved Search Engine Saturation results of', '検索エンジンサチュレーション結果を保存しました', '2011-01-07 23:36:27'),
(4583, 'ja', 'saturation', 'Search Engine Saturation Reports', '検索エンジンサチュレーションレポート', '2011-01-07 23:36:27'),
(4584, 'ja', 'seotools', 'Automatic Submission', '自動サブミッション', '2019-04-01 13:49:13'),
(4585, 'ja', 'seotools', 'backlink-checker', 'バックリンクチェッカー', '2019-04-01 13:49:13'),
(4586, 'ja', 'seotools', 'Backlinks Reports', 'バックリンクレポート', '2019-04-01 13:49:13'),
(4587, 'ja', 'seotools', 'Check Submission Status', 'サブミッション状態をチェック', '2019-04-01 13:49:13'),
(4588, 'ja', 'seotools', 'clickgeneratereports', 'レポートを生成するには開始 をクリック', '2019-04-01 13:49:13'),
(4589, 'ja', 'seotools', 'Detailed Position Reports', '順位詳細レポート', '2019-04-01 13:49:13'),
(4590, 'ja', 'seotools', 'directory-submission', 'ディレクトリサブミッション', '2019-04-01 13:49:13'),
(4591, 'ja', 'seotools', 'Featured Submission', '主要サブミッション', '2019-04-01 13:49:13'),
(4592, 'ja', 'seotools', 'Generate Backlinks Reports', 'バックリンクレポートを生成', '2019-04-01 13:49:13'),
(4593, 'ja', 'seotools', 'Generate Keyword Reports', 'キーワードレポートを生成', '2019-04-01 13:49:13'),
(4594, 'ja', 'seotools', 'Generate Rank Reports', 'ランキングレポートを生成', '2019-04-01 13:49:13'),
(4595, 'ja', 'seotools', 'Generate Saturation Reports', 'サチュレーションレポートを生成', '2019-04-01 13:49:13'),
(4596, 'ja', 'seotools', 'Google Sitemap Generator', 'Googleサイトマップジェネレータ', '2019-04-01 13:49:13'),
(4597, 'ja', 'seotools', 'Graphical Position Reports', '順位グラフレポート', '2019-04-01 13:49:13'),
(4598, 'ja', 'seotools', 'Keyword Position Summary', 'キーワード順位サマリ', '2019-04-01 13:49:13'),
(4599, 'ja', 'seotools', 'keyword-position-checker', 'キーワード順位チェッカー', '2019-04-01 13:49:13'),
(4600, 'ja', 'seotools', 'Keywords Manager', 'キーワードマネージャー', '2019-04-01 13:49:13'),
(4601, 'ja', 'seotools', 'Quick Backlinks Checker', 'クイック・バックリンクチェッカー', '2019-04-01 13:49:13'),
(4602, 'ja', 'seotools', 'Quick Position Checker', 'クイック順位チェッカー', '2019-04-01 13:49:13'),
(4603, 'ja', 'seotools', 'Quick Rank Checker', 'クイック・ランクチェッカー', '2019-04-01 13:49:13'),
(4604, 'ja', 'seotools', 'Quick Saturation Checker', 'クイック・サチュレーションチェッカー', '2019-04-01 13:49:13'),
(4605, 'ja', 'seotools', 'Rank Reports', 'ランキングレポート', '2019-04-01 13:49:13'),
(4606, 'ja', 'seotools', 'rank-checker', 'ランクチェッカー', '2019-04-01 13:49:13'),
(4607, 'ja', 'seotools', 'Saturation Reports', 'サチュレーションレポート', '2019-04-01 13:49:13'),
(4608, 'ja', 'seotools', 'saturation-checker', '検索エンジンサチュレーション', '2019-04-01 13:49:13'),
(4609, 'ja', 'seotools', 'sitemap-generator', 'サイトマップジェネレータ', '2019-04-01 13:49:13'),
(4610, 'ja', 'seotools', 'Skipped Directories', 'スキップされたディレクトリ', '2019-04-01 13:49:13'),
(4611, 'ja', 'seotools', 'Submission Reports', 'サブミッションレポート', '2019-04-01 13:49:13'),
(4612, 'ja', 'seotools', 'User Access', 'ユーザアクセス', '2019-04-01 13:49:13');
INSERT INTO `texts` VALUES
(4613, 'ja', 'settings', 'Click here to become a sponsor for Seo Panel', '100ドルを寄付>してSeo Panelのスポンサーになる。', '2019-04-01 13:52:17'),
(4614, 'ja', 'settings', 'seopanel_description', 'ウェブサイトの検索エンジン最適化を管理するための完全フリーなコントロールパネル。サイトパフォーマンスの向上と追跡に特化した魅力的なSEOツールを多数備えています。オープンソースのソフトウェアで、seo panel用に独自のseoプラグインを開発することもできます。', '2019-04-01 13:52:17'),
(4615, 'ja', 'settings', 'seopanel_title', 'Seo Panel: 世界初の複数ウェブサイト対応オープンソースSEOコントロールパネル', '2019-04-01 13:52:17'),
(4616, 'ja', 'settings', 'SP_CRAWL_DELAY', '各スパイダーのクロール頻度(秒)', '2019-04-01 13:52:17'),
(4617, 'ja', 'settings', 'SP_DEFAULTLANG', 'デフォルト言語', '2019-04-01 13:52:17'),
(4618, 'ja', 'settings', 'SP_DESCRIPTION', 'Seo Panelディスクリプション', '2019-04-01 13:52:17'),
(4619, 'ja', 'settings', 'SP_ENABLE_PROXY', 'プロキシを有効化', '2019-04-01 13:52:17'),
(4620, 'ja', 'settings', 'SP_HOTLINKING', 'イメージホットリンクプロテクションが有効です', '2019-04-01 13:52:17'),
(4621, 'ja', 'settings', 'SP_KEYWORDS', 'Seo Panelキーワード', '2019-04-01 13:52:17'),
(4622, 'ja', 'settings', 'SP_PAGINGNO', 'ページ毎の入力数', '2019-04-01 13:52:17'),
(4623, 'ja', 'settings', 'SP_TITLE', 'Seo Panel タイトル', '2019-04-01 13:52:17'),
(4624, 'ja', 'settings', 'SP_USER_AGENT', 'ユーザエージェント', '2019-04-01 13:52:17'),
(4625, 'ja', 'settings', 'SP_USER_GEN_REPORT', 'ユーザのレポート生成を許可', '2019-04-01 13:52:17'),
(4626, 'ja', 'settings', 'SP_USER_REGISTRATION', 'ユーザ登録インターフェース', '2019-04-01 13:52:17'),
(4627, 'ja', 'settings', 'syssettingssaved', 'システム設定の保存に成功しました!', '2019-04-01 13:52:17'),
(4628, 'ja', 'sitemap', 'Change frequency', '頻度を変更', '2019-04-01 13:52:58'),
(4629, 'ja', 'sitemap', 'clickproceedsitemap', 'サイトマップファイルを作成するには開始 をクリック', '2019-04-01 13:52:58'),
(4630, 'ja', 'sitemap', 'Download sitemap file from', 'サイトマップファイルをダウンロード', '2019-04-01 13:52:58'),
(4631, 'ja', 'sitemap', 'Exclude Url', 'URLを除外', '2019-04-01 13:52:58'),
(4632, 'ja', 'sitemap', 'processtaketime', 'サイトのリンク数によっては、この処理に時間が掛かります。サイトマップファイルを取得するまでお待ちください', '2019-04-01 13:52:58'),
(4633, 'ja', 'sitemap', 'Sitemap Type', 'サイトマップタイプ', '2019-04-01 13:52:58'),
(4634, 'ja', 'user', 'Edit User', 'ユーザの編集', '2016-01-04 11:41:28'),
(4635, 'ja', 'user', 'Saved My Profile Details', 'マイプロフィール詳細が保存されました', '2016-01-04 11:41:28'),
(4636, 'ja', 'website', 'Edit Website', 'ウェブサイトの編集', '2019-04-01 13:57:11'),
(4637, 'ja', 'website', 'plscrtwebsite', 'seoツールやseoプラグインを使用開始する前に、ウェブサイトを作成してください。', '2019-04-01 13:57:11'),
(4638, 'ja', 'website', 'Website already exist', 'ウェブサイトは既に存在します', '2019-04-01 13:57:11'),
(4639, 'ja', 'website', 'yourwebalreday', '既に作成済みの場合はご自身のウェブサイト', '2019-04-01 13:57:11'),
(4640, 'ja', 'support', 'support_cont1', '\r\nSeo Panel サポートシステム \r\n )をseo panelキーワード順位チェッカー に追加すると、サイトのパフォーマンスを地域的に追跡することができます。\r\n ローカル検索エンジンパッケージを取得するには(要件に応じて)、seo panel機能向上のため10ドル以上を\\" target=\\"_blank\\">寄付 してください。\r\n 寄付をお送り頂く前に、必要な検索エンジンドメインリストを提供していただくため、\\" target=\\"_blank\\">お問合せ ください。\r\n \r\n また新しい検索エンジン(例:baidu.com) をseo panelキーワード順位チェッカーに追加するには、\\" target=\\"_blank\\">お問合せ 頂くか\\" target=\\"_blank\\">サポートシステム にてチケットを開いてください。 \r\n \r\n \r\n \\" target=\\"_blank\\">お問合せはこちらから \r\n
\r\n \r\n \r\n \r\n \r\n Seo Panel プラグイン \r\n \r\n それぞれの要件に応じて機能を拡張 するにはseoプラグイン をseo panelに追加してくだださい。\r\n \\" target=\\"_blank\\">Seo panel プラグイン は、seo panelおよびサードパーティサイトの両方より提供されています。\r\n 各自のseo panel用にseoプラグインを開発 することも可能です。\r\n ご自身のseoプラグインをseo panelに\\" target=\\"_blank\\">送信 して頂くと、こちらで審査 した後公開 いたします。 \r\n
\r\n \r\n \\" target=\\"_blank\\">seo panelプラグインの入手はこちらから \r\n
\r\n \r\n \r\n \r\n お問合せ \r\n \r\n seo panel ツール、プラグイン、機能、etc に関するご質問は、 以下のリンクよりお問合せください。 \r\n
\r\n \r\n \\" target=\\"_blank\\">お問合せはこちらから \r\n
\r\n \r\n \r\n \r\n サポートチケット \r\n \r\n seo panelツール、プラグイン、機能 をセットアップするにあたり、seo panelチームよりテクニカルサポート を受けるためのものです。例:キーワード順位チェッカーにcronをセットアップする。\r\n
\r\n \r\n \\" target=\\"_blank\\">サポートチケットの作成はこちらから \r\n
\r\n \r\n \r\n \r\n 不具合レポート \r\n \r\n seo panelツール、プラグイン、機能、etc に関する不具合 を報告するには、以下のリンクを使用します。 \r\n 次のバージョンで機能を向上できるよう、どうぞご協力をお願いします。 \r\n
\r\n \r\n \\" target=\\"_blank\\">不具合報告はこちらから \r\n
\r\n \r\n \r\n\r\n', '2011-01-08 01:37:35'),
(4641, 'ja', 'support', 'support_cont2', '\r\nSeo Panel オンラインリソース \r\n \r\n ', '2011-01-08 01:37:35'),
(4642, 'ja', 'support', 'support_cont3', '\r\nSeo Panelへ寄付 \r\n \r\n \r\n Seo Panelへ寄付 - 世界初のオープンソースseoコントロールパネル \r\n \r\n seo panelへ寄付 し、世界初のオープンソースseoコントロールパネルを支援します。 \r\n 将来、seo panel機能の追加、向上 を予定しています。 \r\n あなたのサポート なしでは、そのゴール に到達できません。\r\n seo panelがあなたにとって価値のある ものだと感じて頂けるなら、どうかseo panelチームへ寄付をお願いします。\r\n 寄付して頂きましたら、あなたのお名前とサイト情報を\\"\r\ntarget=\\"_blank\\">寄付ページ にて公開 します。\r\n
\r\n \r\n \\" target=\\"_blank\\">seo panelへの寄付はこちらから \r\n
\r\n \r\n \r\n \r\n ', '2011-01-08 01:37:35'),
(4643, 'el', 'home', 'Account Summary', 'Σύνοψη Λογαριασμού', '2019-11-28 23:25:11'),
(4644, 'el', 'home', 'Backlinks', 'Backlinks', '2019-11-28 23:25:11'),
(4645, 'el', 'home', 'Directory Submission', 'Καταχώρηση Καταλόγου', '2019-11-28 23:25:11'),
(39445, 'bg', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Страницата е подходяща за мобилни устройства с правилна конфигурация на viewport', '2026-01-19 23:09:35'),
(39446, 'de', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Die Seite ist mobilfreundlich mit korrekter Viewport-Konfiguration', '2026-01-19 23:09:35'),
(39447, 'es', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'La página es compatible con dispositivos móviles con configuración adecuada del viewport', '2026-01-19 23:09:35'),
(39448, 'fr', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'La page est compatible mobile avec une configuration viewport appropriée', '2026-01-19 23:09:35'),
(39449, 'it', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'La pagina è ottimizzata per mobile con configurazione viewport corretta', '2026-01-19 23:09:35'),
(39450, 'nl', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'De pagina is mobiel vriendelijk met juiste viewport-configuratie', '2026-01-19 23:09:35'),
(39451, 'pl', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Strona jest przyjazna dla urządzeń mobilnych z odpowiednią konfiguracją viewport', '2026-01-19 23:09:35'),
(39452, 'pt', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'A página é compatível com dispositivos móveis com configuração de viewport adequada', '2026-01-19 23:09:35'),
(39453, 'pt-br', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'A página é compatível com dispositivos móveis com configuração de viewport adequada', '2026-01-19 23:09:35'),
(39454, 'ru', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Страница адаптирована для мобильных устройств с правильной конфигурацией viewport', '2026-01-19 23:09:35'),
(39455, 'tr', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Sayfa doğru viewport yapılandırması ile mobil uyumlu', '2026-01-19 23:09:35'),
(39456, 'zh', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', '该页面具有正确的viewport配置,对移动设备友好', '2026-01-19 23:09:35'),
(39457, 'cn', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', '该页面具有正确的viewport配置,对移动设备友好', '2026-01-19 23:09:35'),
(39458, 'en', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'The page is not mobile-friendly - critical issue for modern SEO', '2026-01-19 23:09:35'),
(39459, 'ar', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'الصفحة غير متوافقة مع الجوال - مشكلة حرجة لتحسين محركات البحث الحديثة', '2026-01-19 23:09:35'),
(39460, 'bg', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Страницата не е подходяща за мобилни устройства - критичен проблем за съвременното SEO', '2026-01-19 23:09:35'),
(39461, 'de', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Die Seite ist nicht mobilfreundlich - kritisches Problem für modernes SEO', '2026-01-19 23:09:35'),
(39462, 'es', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'La página no es compatible con dispositivos móviles - problema crítico para el SEO moderno', '2026-01-19 23:09:35'),
(39463, 'fr', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'La page n''est pas compatible mobile - problème critique pour le SEO moderne', '2026-01-19 23:09:35'),
(39464, 'it', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'La pagina non è ottimizzata per mobile - problema critico per la SEO moderna', '2026-01-19 23:09:35'),
(39465, 'nl', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'De pagina is niet mobiel vriendelijk - kritiek probleem voor moderne SEO', '2026-01-19 23:09:35'),
(39466, 'pl', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Strona nie jest przyjazna dla urządzeń mobilnych - krytyczny problem dla nowoczesnego SEO', '2026-01-19 23:09:35'),
(39467, 'pt', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'A página não é compatível com dispositivos móveis - problema crítico para SEO moderno', '2026-01-19 23:09:35'),
(39468, 'pt-br', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'A página não é compatível com dispositivos móveis - problema crítico para SEO moderno', '2026-01-19 23:09:35'),
(39469, 'ru', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Страница не адаптирована для мобильных устройств - критическая проблема для современного SEO', '2026-01-19 23:09:35'),
(39470, 'tr', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Sayfa mobil uyumlu değil - modern SEO için kritik sorun', '2026-01-19 23:09:35'),
(39471, 'zh', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', '该页面不适合移动设备 - 现代SEO的关键问题', '2026-01-19 23:09:35'),
(39472, 'cn', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', '该页面不适合移动设备 - 现代SEO的关键问题', '2026-01-19 23:09:35'),
(39473, 'en', 'siteauditor', 'The page is served over HTTPS - secure connection', 'The page is served over HTTPS - secure connection', '2026-01-19 23:09:35'),
(39474, 'ar', 'siteauditor', 'The page is served over HTTPS - secure connection', 'يتم تقديم الصفحة عبر HTTPS - اتصال آمن', '2026-01-19 23:09:35'),
(38857, 'mk', 'review', 'Average Rating by Platform', 'Просечен рејтинг по платформа', '2026-01-19 22:58:50'),
(38858, 'nl', 'review', 'Average Rating by Platform', 'Gemiddelde beoordeling per platform', '2026-01-19 22:58:50'),
(38859, 'no', 'review', 'Average Rating by Platform', 'Gjennomsnittlig vurdering etter plattform', '2026-01-19 22:58:50'),
(38860, 'pl', 'review', 'Average Rating by Platform', 'Średnia ocena według platformy', '2026-01-19 22:58:50'),
(38861, 'pt', 'review', 'Average Rating by Platform', 'Avaliação média por plataforma', '2026-01-19 22:58:50'),
(38862, 'pt-br', 'review', 'Average Rating by Platform', 'Avaliação média por plataforma', '2026-01-19 22:58:50'),
(38863, 'ro', 'review', 'Average Rating by Platform', 'Rating mediu pe platformă', '2026-01-19 22:58:50'),
(38864, 'ru', 'review', 'Average Rating by Platform', 'Средний рейтинг по платформам', '2026-01-19 22:58:50'),
(13941, 'el', 'common', 'Pricing', 'Τιμές', '2019-08-28 09:40:52'),
(4649, 'el', 'home', 'Pages Indexed', 'Indexed σελίδες', '2019-11-28 23:25:11'),
(4650, 'el', 'home', 'Ranks', 'Ranks', '2019-11-28 23:25:11'),
(4651, 'el', 'home', 'SiteNameUrl', 'Όνομα Site/Url', '2019-11-28 23:25:11'),
(4652, 'el', 'home', 'Website Statistics', 'Στατιστικά του website', '2019-11-28 23:25:11'),
(4653, 'el', 'settings', 'Click here to become a sponsor for Seo Panel', 'Δωρίστε $100 και γίνετε υποστηρικτής του Seo Panel. ', '2019-08-28 09:43:40'),
(4654, 'el', 'settings', 'seopanel_description', 'Ένα ολοκληρωμένο και δωρεάν control panel για την διαχείριση της βελτιστοποίησης των ιστοτόπων σας για τις μηχανές αναζήτησης. Περιλαμβάνει πολλά από τα δυνατά seo εργαλεία για την αύξηση και παρακολούθηση της απόδοσης των website σας. Είναι open source λογισμικό και μπορείτε και εσείς επίσης να αναπτύξετε τα δικά σας seo plugins για το Seo Panel.', '2019-08-28 09:43:40'),
(4655, 'el', 'settings', 'seopanel_title', 'Seo Panel: Το πρώτο open source seo control panel παγκοσμίως, για την διαχείριση πολλαπλών sites.', '2019-08-28 09:43:40'),
(4656, 'el', 'settings', 'SP_CRAWL_DELAY', 'Καθυστέρηση μεταξύ των spider ανιχνευτών (δευτερόλεπτα)', '2019-08-28 09:43:40'),
(4657, 'el', 'settings', 'SP_DEFAULTLANG', 'Προκαθορισμένη Γλώσσα', '2019-08-28 09:43:40'),
(4658, 'el', 'settings', 'SP_DESCRIPTION', 'Περιγραφή του Seo Panel', '2019-08-28 09:43:40'),
(4659, 'el', 'settings', 'SP_ENABLE_PROXY', 'Ενεργοποίηση Proxy', '2019-08-28 09:43:40'),
(4660, 'el', 'settings', 'SP_HOTLINKING', 'Προστασία εικόνας από hotlink', '2019-08-28 09:43:40'),
(4661, 'el', 'settings', 'SP_KEYWORDS', 'Λέξεις Κλειδιά του Seo Panel', '2019-08-28 09:43:40'),
(4662, 'el', 'settings', 'SP_PAGINGNO', 'Αριθμός εγγραφών ανά σελίδα', '2019-08-28 09:43:40'),
(4663, 'el', 'settings', 'SP_TITLE', 'Τίτλος του Seo Panel', '2019-08-28 09:43:40'),
(4664, 'el', 'settings', 'SP_USER_AGENT', 'Πράκτορας χρήστη', '2019-08-28 09:43:40'),
(4665, 'el', 'settings', 'SP_USER_GEN_REPORT', 'Επιτρέπεται οι χρήστες να δημιουργήσουν αναφορές', '2019-08-28 09:43:40'),
(4666, 'el', 'settings', 'SP_USER_REGISTRATION', 'Περιβάλλον εγγραφής χρήστη', '2019-08-28 09:43:40'),
(4667, 'el', 'settings', 'syssettingssaved', 'Οι ρυθμίσεις του συστήματος αποθηκεύτηκαν με επιτυχία!', '2019-08-28 09:43:40'),
(4668, 'el', 'proxy', 'Edit Proxy', 'Επεξεργασία Proxy', '2016-12-29 18:06:18'),
(4669, 'el', 'proxy', 'Proxy Password', 'Κωδικός Proxy', '2016-12-29 18:06:18'),
(4670, 'el', 'proxy', 'Proxy Username', 'Όνομα χρήστη Proxy', '2016-12-29 18:06:18'),
(4671, 'el', 'proxy', 'Proxyalreadyexist', 'Ο Proxy ήδη υπάρχει!', '2016-12-29 18:06:18'),
(4676, 'cs', 'user', 'Edit User', 'Upravit uživatele', '2011-03-21 18:14:30'),
(4677, 'cs', 'user', 'Saved My Profile Details', 'Detaily v mém profilu byly uloženy', '2011-03-21 18:14:30'),
(4678, 'cs', 'support', 'support_cont1', '', '2011-03-23 12:41:17'),
(4679, 'cs', 'support', 'support_cont2', ' \r\nOnline zdroje SEO panelu \r\n \r\n \r\n \r\n Nápověda SEO panelu \r\n \r\n Můžete se podívat do \\" target=\\"_blank\\">dokumentace SEO panelu v\r\nnápovědě , která obsahuje dokumentaci k SEO panelu, nástrojům, pluginům a k příslušným vlastnostem. \r\n Je to to nejlepší místo na internetu, kde získáte nápovědu o SEO panelu. Doufáme, že přispějete do nápovědy SEO panelu v případě, že objevíte chyby nebo chybějící věci. \r\n
\r\n \r\n \\" target=\\"_blank\\">Podívejte se do nápovědy SEO panelu \r\n
\r\n \r\n \r\n \r\n Forum SEO panelu \r\n \r\n Místo k diskuzi o prvním otevřeném ovládacím panelu pro SEO na světe.\r\nJe to nejlepší místo, kde najít odpovědi na vaše otázky o SEO panelu.\r\n Můžete také sdílet vaše zkušenosti z toho, jak pomocí SEO panelu optimalizujete vaše stránky. \r\n
\r\n \r\n \\" target=\\"_blank\\">Navštivte forum SEO panelu \r\n
\r\n \r\n \r\n \r\n ', '2011-03-23 12:41:17'),
(4680, 'cs', 'support', 'support_cont3', ' \r\nPodpořte finančně SEO Panel \r\n \r\n \r\n Podpořte finančně SEO Panel - první open source ovládací panel pro SEO na světě \r\n \r\n Podpořte finančně Seo Panel - první open source ovládací panel pro SEO na světě \r\n Chceme v budoucnu přidávat a vylepšovat funkce SEO panelu. \r\n Pouze s vaší podporou můžeme dosáhnout našich cílů . \r\n Pokud máte pocit, že SEO Panel je pro vás přínosem , prosíme podpořte finančně určitou částkou tým SEO Panelu. \r\n Jakmile obdržíme vaši finanční podporu, zveřejníme vaše jméno a informace o vašich stránkách na \\"\r\ntarget=\\"_blank\\">stránce s dary . \r\n
\r\n \r\n \\" target=\\"_blank\\">Navštivte tento odkaz, abyste mohli finančně podpořit SEO Panel. \r\n
\r\n \r\n \r\n \r\n ', '2011-03-23 12:41:17'),
(4681, 'cs', 'backlink', 'clickproceedbacklink', 'Vložte po jednom URL na každou řádku . Klikněte na Provést , aby byly zkontrolovány zpětné odkazy.', '2011-03-23 12:08:28'),
(4682, 'cs', 'backlink', 'Saved backlink results of', 'Uložené výsledky zpětných odkazů na', '2011-03-23 12:08:28'),
(4683, 'cs', 'button', 'Cancel', 'Zrušit', '2014-01-09 00:24:18'),
(4684, 'cs', 'button', 'Check Status', 'Zkontrolovat stav', '2014-01-09 00:24:18'),
(4685, 'cs', 'button', 'Proceed', 'Provést', '2014-01-09 00:24:18'),
(4686, 'cs', 'button', 'Reload', 'Znovu načíst', '2014-01-09 00:24:18'),
(4687, 'cs', 'button', 'Show Details', 'Ukázat detaily', '2014-01-09 00:24:18'),
(4688, 'cs', 'button', 'Show Records', 'Ukázat záznamy', '2014-01-09 00:24:18'),
(4689, 'cs', 'button', 'Skip', 'Přeskočit', '2014-01-09 00:24:18'),
(4690, 'cs', 'button', 'Submit', 'Odeslat', '2014-01-09 00:24:18'),
(4691, 'cs', 'common', 'Action', 'Akce', '2019-05-25 22:03:57'),
(4692, 'cs', 'common', 'Activate', 'Zapnout', '2019-05-25 22:03:57'),
(4693, 'cs', 'common', 'Active', 'Zapnuté', '2019-05-25 22:03:57'),
(4694, 'cs', 'common', 'Admin Panel', 'Administrační panel', '2019-05-25 22:03:57'),
(4695, 'cs', 'common', 'Alexa Rank', 'Alexa Rank', '2019-05-25 22:03:57'),
(4696, 'cs', 'common', 'All', 'Vše', '2019-05-25 22:03:57'),
(4697, 'cs', 'common', 'Category', 'Kategorie', '2019-05-25 22:03:57'),
(4698, 'cs', 'common', 'contact', 'Kontakt', '2019-05-25 22:03:57'),
(4699, 'cs', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Všechna práva vyhrazena', '2019-05-25 22:03:57'),
(4700, 'cs', 'common', 'Country', 'Země', '2019-05-25 22:03:57'),
(4701, 'cs', 'common', 'Crawl Meta Data', 'Prohledat meta data', '2019-05-25 22:03:57'),
(4702, 'cs', 'common', 'Date', 'Datum', '2019-05-25 22:03:57'),
(4703, 'cs', 'common', 'Delete', 'Vymazat', '2019-05-25 22:03:57'),
(4704, 'cs', 'common', 'Details', 'Detaily', '2019-05-25 22:03:57'),
(4705, 'cs', 'common', 'Directory', 'Adresář', '2019-05-25 22:03:57'),
(4706, 'cs', 'common', 'Donate', 'Finančně podpořit', '2019-05-25 22:03:57'),
(4707, 'cs', 'common', 'Edit', 'Upravit', '2019-05-25 22:03:57'),
(4708, 'cs', 'common', 'Entry cannot be blank', 'Hodnota nemůže být prázdná', '2019-05-25 22:03:57'),
(4709, 'cs', 'common', 'entrynotvalid', 'Vložená hodnota zřejmě není platná', '2019-05-25 22:03:57'),
(4710, 'cs', 'common', 'failed', 'selhal', '2019-05-25 22:03:57'),
(4711, 'cs', 'common', 'forum', 'Forum', '2019-05-25 22:03:57'),
(4712, 'cs', 'common', 'Found', 'Nalezeno', '2019-05-25 22:03:57'),
(4713, 'cs', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:03:57'),
(4714, 'cs', 'common', 'help', 'Nápověda', '2019-05-25 22:03:57'),
(4715, 'cs', 'common', 'hidenews', 'Skrýt novinky SEO panelu', '2019-05-25 22:03:57'),
(4716, 'cs', 'common', 'Id', 'ID', '2019-05-25 22:03:57'),
(4717, 'cs', 'common', 'Inactivate', 'Vypnout', '2019-05-25 22:03:57'),
(4718, 'cs', 'common', 'Inactive', 'Vypnuté', '2019-05-25 22:03:57'),
(4719, 'cs', 'common', 'Invalid characters', 'Neplatné znaky', '2019-05-25 22:03:57'),
(4720, 'cs', 'common', 'Invalid code entered', 'Vložen neplatný kód', '2019-05-25 22:03:57'),
(4721, 'cs', 'common', 'Invalid email address entered', 'Vložena neplatná emailová adresa', '2019-05-25 22:03:57'),
(4722, 'cs', 'common', 'Invalid value', 'Neplatná hodnota', '2019-05-25 22:03:57'),
(4723, 'cs', 'common', 'Keyword', 'Klíčové slov', '2019-05-25 22:03:57'),
(4724, 'cs', 'common', 'Keywords', 'Klíčová slova', '2019-05-25 22:03:57'),
(4725, 'cs', 'common', 'lang', 'Jazyk', '2019-05-25 22:03:57'),
(4726, 'cs', 'common', 'My Account', 'Můj účet', '2019-05-25 22:03:57'),
(4727, 'cs', 'common', 'Name', 'Jméno', '2019-05-25 22:03:57'),
(4728, 'cs', 'common', 'No', 'Ne', '2019-05-25 22:03:57'),
(4729, 'cs', 'common', 'No Keywords Found', 'Nenalezena žádná klíčová slova', '2019-05-25 22:03:57'),
(4730, 'cs', 'common', 'No Records Found', 'Nenalezeny žádné záznamy', '2019-05-25 22:03:57'),
(4731, 'cs', 'common', 'noactivetools', 'Žádný SEO nástroj není aktivní!', '2019-05-25 22:03:57'),
(4732, 'cs', 'common', 'nowebsites', 'Nenalezeny žádné website', '2019-05-25 22:03:57'),
(4733, 'cs', 'common', 'password632', 'Délka hesla by měla být mezi 6 a 32 znaky', '2019-05-25 22:03:57'),
(4734, 'cs', 'common', 'passwordnotmatch', 'Hesla neodpovídají', '2019-05-25 22:03:57'),
(4735, 'cs', 'common', 'Period', 'Perioda', '2019-05-25 22:03:57'),
(4736, 'cs', 'common', 'Priority', 'Priorita', '2019-05-25 22:03:57'),
(4737, 'cs', 'common', 'Profile', 'Profil', '2019-05-25 22:03:57'),
(4738, 'cs', 'common', 'Rank', 'Rank', '2019-05-25 22:03:57'),
(4739, 'cs', 'common', 'Reports', 'Reporty', '2019-05-25 22:03:57'),
(4740, 'cs', 'common', 'Results', 'Výsledky', '2019-05-25 22:03:57'),
(4741, 'cs', 'common', 'Search Engine', 'Vyhledávač', '2019-05-25 22:03:57'),
(4742, 'cs', 'common', 'Select', 'Vybrat', '2019-05-25 22:03:57'),
(4743, 'cs', 'common', 'Seo Plugins', 'Pluginy SEO', '2019-05-25 22:03:57'),
(4744, 'cs', 'common', 'Seo Tools', 'Nástroje SEO', '2019-05-25 22:03:57'),
(4745, 'cs', 'common', 'Sign out', 'Odhlásit se', '2019-05-25 22:03:57'),
(4746, 'cs', 'common', 'Sign Up', 'Zaregistrovat se', '2019-05-25 22:03:57'),
(4747, 'cs', 'common', 'signin', 'Přihlásit se', '2019-05-25 22:03:57'),
(4748, 'cs', 'common', 'Status', 'Stav', '2019-05-25 22:03:57'),
(4749, 'cs', 'common', 'Support', 'Podpora', '2019-05-25 22:03:57'),
(4750, 'cs', 'common', 'Total', 'Celkem', '2019-05-25 22:03:57'),
(4751, 'cs', 'common', 'Url', 'URL', '2019-05-25 22:03:57'),
(4752, 'cs', 'common', 'User', 'Uživatel', '2019-05-25 22:03:57'),
(4753, 'cs', 'common', 'User Panel', 'Uživatelský panel', '2019-05-25 22:03:57'),
(4754, 'cs', 'common', 'Website', 'Website', '2019-05-25 22:03:57'),
(4755, 'cs', 'common', 'Yes', 'Ano', '2019-05-25 22:03:57'),
(4756, 'cn', 'backlink', 'clickproceedbacklink', '輸入URL,每行一條 。單擊處理 開始檢測反向鏈接', '2011-05-04 13:01:01'),
(4757, 'cn', 'backlink', 'Saved backlink results of', '保存反向鏈接結果', '2011-05-04 13:01:01'),
(4758, 'cn', 'button', 'Cancel', '取消', '2014-01-09 00:22:02'),
(4759, 'cn', 'button', 'Check Status', '檢測狀態', '2014-01-09 00:22:02'),
(4760, 'cn', 'button', 'Proceed', '處理', '2014-01-09 00:22:02'),
(4761, 'cn', 'button', 'Reload', '重新載入', '2014-01-09 00:22:02'),
(4762, 'cn', 'button', 'Show Details', '顯示細節', '2014-01-09 00:22:02'),
(4763, 'cn', 'button', 'Show Records', '顯示記錄', '2014-01-09 00:22:02'),
(4764, 'cn', 'button', 'Skip', '跳過', '2014-01-09 00:22:02'),
(4765, 'cn', 'button', 'Submit', '提交', '2014-01-09 00:22:02'),
(4766, 'cn', 'common', 'Action', '執行', '2019-05-25 22:02:13'),
(4767, 'cn', 'common', 'Activate', '激活', '2019-05-25 22:02:13'),
(4768, 'cn', 'common', 'Active', '已激活', '2019-05-25 22:02:13'),
(4769, 'cn', 'common', 'Admin Panel', '管理面板', '2019-05-25 22:02:13'),
(4770, 'cn', 'common', 'Alexa Rank', 'Alexa 排名', '2019-05-25 22:02:13'),
(4771, 'cn', 'common', 'All', '所有', '2019-05-25 22:02:13'),
(4772, 'cn', 'common', 'Category', '類別', '2019-05-25 22:02:13'),
(4773, 'cn', 'common', 'contact', '聯繫', '2019-05-25 22:02:13'),
(4774, 'cn', 'common', 'copyright', '版權所有© 【2010】www.seopanel.in 保留所有權利', '2019-05-25 22:02:13'),
(4775, 'cn', 'common', 'Country', '國家', '2019-05-25 22:02:13'),
(4776, 'cn', 'common', 'Crawl Meta Data', '爬取meta信息', '2019-05-25 22:02:13'),
(4777, 'cn', 'common', 'Date', '日期', '2019-05-25 22:02:13'),
(4778, 'cn', 'common', 'Delete', '刪除', '2019-05-25 22:02:13'),
(4779, 'cn', 'common', 'Details', '細節', '2019-05-25 22:02:13'),
(4780, 'cn', 'common', 'Directory', '目錄', '2019-05-25 22:02:13'),
(4781, 'cn', 'common', 'Donate', '捐贈', '2019-05-25 22:02:13'),
(4782, 'cn', 'common', 'Edit', '編輯', '2019-05-25 22:02:13'),
(4783, 'cn', 'common', 'Entry cannot be blank', '不能輸入空值', '2019-05-25 22:02:13'),
(4784, 'cn', 'common', 'entrynotvalid', '輸入不合法', '2019-05-25 22:02:13'),
(4785, 'cn', 'common', 'failed', '失敗', '2019-05-25 22:02:13'),
(4786, 'cn', 'common', 'forum', '論壇', '2019-05-25 22:02:13'),
(4787, 'cn', 'common', 'Found', '資助', '2019-05-25 22:02:13'),
(4788, 'cn', 'common', 'Google Pagerank', '谷歌 Page Rank', '2019-05-25 22:02:13'),
(4789, 'cn', 'common', 'help', '幫助', '2019-05-25 22:02:13'),
(4790, 'cn', 'common', 'hidenews', '隱藏seopanel新聞', '2019-05-25 22:02:13'),
(4791, 'cn', 'common', 'Id', 'Id', '2019-05-25 22:02:13'),
(4792, 'cn', 'common', 'Inactivate', '關閉', '2019-05-25 22:02:13'),
(4793, 'cn', 'common', 'Inactive', '未激活的', '2019-05-25 22:02:13'),
(4794, 'cn', 'common', 'Invalid characters', '非法字符', '2019-05-25 22:02:13'),
(4795, 'cn', 'common', 'Invalid code entered', '輸入的代碼不合法', '2019-05-25 22:02:13'),
(4796, 'cn', 'common', 'Invalid email address entered', 'Email 地址不合法', '2019-05-25 22:02:13'),
(4797, 'cn', 'common', 'Invalid value', '無效數值', '2019-05-25 22:02:13'),
(4798, 'cn', 'common', 'Keyword', '關鍵字', '2019-05-25 22:02:13'),
(4799, 'cn', 'common', 'Keywords', '全部關鍵字', '2019-05-25 22:02:13'),
(4800, 'cn', 'common', 'lang', '語言', '2019-05-25 22:02:13'),
(4801, 'cn', 'common', 'My Account', '我的賬戶', '2019-05-25 22:02:13'),
(4802, 'cn', 'common', 'Name', '名字', '2019-05-25 22:02:13'),
(4803, 'cn', 'common', 'No', '沒有', '2019-05-25 22:02:13'),
(4804, 'cn', 'common', 'No Keywords Found', '未找到關鍵字', '2019-05-25 22:02:13'),
(4805, 'cn', 'common', 'No Records Found', '未找到相關記錄', '2019-05-25 22:02:13'),
(4806, 'cn', 'common', 'noactivetools', '沒有可用的seo工具', '2019-05-25 22:02:13'),
(4807, 'cn', 'common', 'nowebsites', '未發現站點', '2019-05-25 22:02:13'),
(4808, 'cn', 'common', 'password632', '密碼長度必須為6-32位', '2019-05-25 22:02:13'),
(4809, 'cn', 'common', 'passwordnotmatch', '密碼不匹配', '2019-05-25 22:02:13'),
(4810, 'cn', 'common', 'Period', '一段時間', '2019-05-25 22:02:13'),
(4811, 'cn', 'common', 'Priority', '優先級', '2019-05-25 22:02:13'),
(4812, 'cn', 'common', 'Profile', '簡介', '2019-05-25 22:02:13'),
(4813, 'cn', 'common', 'Rank', 'PR/排名', '2019-05-25 22:02:13'),
(4814, 'cn', 'common', 'Reports', '報告', '2019-05-25 22:02:13'),
(4815, 'cn', 'common', 'Results', '結果', '2019-05-25 22:02:13'),
(4816, 'cn', 'common', 'Search Engine', '搜索引擎', '2019-05-25 22:02:13'),
(4817, 'cn', 'common', 'Select', '選擇', '2019-05-25 22:02:13'),
(4818, 'cn', 'common', 'Seo Plugins', 'seo插件', '2019-05-25 22:02:13'),
(4819, 'cn', 'common', 'Seo Tools', 'seo工具', '2019-05-25 22:02:13'),
(4820, 'cn', 'common', 'Sign out', '登出', '2019-05-25 22:02:13'),
(4821, 'cn', 'common', 'Sign Up', '註冊', '2019-05-25 22:02:13'),
(4822, 'cn', 'common', 'signin', '登錄', '2019-05-25 22:02:13'),
(4823, 'cn', 'common', 'Status', '狀態', '2019-05-25 22:02:13'),
(4824, 'cn', 'common', 'Support', '支持', '2019-05-25 22:02:13'),
(4825, 'cn', 'common', 'Total', '所有', '2019-05-25 22:02:13'),
(4826, 'cn', 'common', 'Url', 'URL', '2019-05-25 22:02:13'),
(4827, 'cn', 'common', 'User', '用户', '2019-05-25 22:02:13'),
(4828, 'cn', 'common', 'User Panel', '用戶面板', '2019-05-25 22:02:13'),
(4829, 'cn', 'common', 'Website', '站點', '2019-05-25 22:02:13'),
(4830, 'cn', 'common', 'Yes', '是', '2019-05-25 22:02:13'),
(4831, 'cn', 'directory', 'Add back to directory list', '增加到目錄列表', '2014-01-09 20:30:58'),
(4832, 'cn', 'directory', 'Approved', '通過的', '2014-01-09 20:30:58'),
(4833, 'cn', 'directory', 'Captcha', '驗證碼', '2014-01-09 20:30:58'),
(4834, 'cn', 'directory', 'categorynote', '根據優先級用逗號隔開的提交的具體目錄分類。從優先級最高提交的具體目錄分類開始', '2014-01-09 20:30:58'),
(4835, 'cn', 'directory', 'Check Directory Status', '檢查目錄狀態', '2014-01-09 20:30:58'),
(4836, 'cn', 'directory', 'Check Directory Submission Status', '檢查目錄提交狀態', '2014-01-09 20:30:58'),
(4837, 'cn', 'directory', 'clicktoproceeddirsts', '點擊處理 以檢查目錄狀態', '2014-01-09 20:30:58'),
(4838, 'cn', 'directory', 'Confirmation', '確認', '2014-01-09 20:30:58'),
(4839, 'cn', 'directory', 'desnote', '有些目錄最少需要150字符描述信息', '2014-01-09 20:30:58'),
(4840, 'cn', 'directory', 'Directories with out captcha', '沒有驗證碼的目錄', '2014-01-09 20:30:58'),
(4841, 'cn', 'directory', 'Directory Submission Reports', '目錄提交報告', '2014-01-09 20:30:58'),
(4842, 'cn', 'directory', 'Enter the code shown', '輸入顯示的字符', '2014-01-09 20:30:58'),
(4843, 'cn', 'directory', 'nocatnote', '在提交頁面未找到提交類別。請點擊重載 或者跳過 ', '2014-01-09 20:30:58'),
(4844, 'cn', 'directory', 'nodirnote', '未發現已激活的 目錄', '2014-01-09 20:30:58'),
(4845, 'cn', 'directory', 'nosuccessnote', '如果沒得到成功的信息,請檢查郵件中的確認信息', '2014-01-09 20:30:58'),
(4846, 'cn', 'directory', 'optionalnote', '提交標題和描述信息比提交隨機信息會獲得更好的結果', '2014-01-09 20:30:58'),
(4847, 'cn', 'directory', 'Owner Email', '用戶郵件', '2014-01-09 20:30:58'),
(4848, 'cn', 'directory', 'Owner Name', '用戶名字', '2014-01-09 20:30:58'),
(4849, 'cn', 'directory', 'Pending', '待定', '2014-01-09 20:30:58'),
(4850, 'cn', 'directory', 'Please select a website to proceed', '請選擇一個站點來處理', '2014-01-09 20:30:58'),
(4851, 'cn', 'directory', 'selectwebsiteproceed', '選擇一個站點 來處理 目錄提交。 檢查沒有驗證碼的目錄 來提交沒有驗證碼的目錄', '2014-01-09 20:30:58'),
(4852, 'cn', 'directory', 'selectwebsiteschecksub', '選擇一個站點 來處理 檢查目錄提交信息', '2014-01-09 20:30:58'),
(4853, 'cn', 'directory', 'Semi Automatic Directory Submission Tool', '半自動目錄提交工具', '2014-01-09 20:30:58'),
(4854, 'cn', 'directory', 'spamemailnote', '一些目錄可能會發送垃圾郵件,我們建議不要不要使用你常用的郵箱地址', '2014-01-09 20:30:58'),
(4855, 'cn', 'directory', 'Submission Details', '提交細節', '2014-01-09 20:30:58'),
(4856, 'cn', 'directory', 'Submit Description', '提交描述信息', '2014-01-09 20:30:58'),
(4857, 'cn', 'directory', 'Submit Keywords', '提交關鍵字', '2014-01-09 20:30:58'),
(4858, 'cn', 'directory', 'Submit Title', '提交標題', '2014-01-09 20:30:58'),
(4859, 'cn', 'directory', 'Website Category', '網站目錄', '2014-01-09 20:30:58'),
(4860, 'cn', 'directory', 'Website Url', '網站地址', '2014-01-09 20:30:58'),
(4861, 'cn', 'home', 'Account Summary', '賬戶概覽', '2011-07-06 10:47:27'),
(4862, 'cn', 'home', 'Backlinks', '反向鏈接', '2011-07-06 10:47:27'),
(4863, 'cn', 'home', 'Directory Submission', '目錄提交', '2011-07-06 10:47:27'),
(39388, 'fr', 'siteauditor', 'Yes', 'Oui', '2026-01-19 23:07:11'),
(39389, 'it', 'siteauditor', 'Yes', 'Sì', '2026-01-19 23:07:11'),
(39390, 'nl', 'siteauditor', 'Yes', 'Ja', '2026-01-19 23:07:11'),
(39391, 'pl', 'siteauditor', 'Yes', 'Tak', '2026-01-19 23:07:11'),
(39392, 'pt', 'siteauditor', 'Yes', 'Sim', '2026-01-19 23:07:11'),
(39393, 'pt-br', 'siteauditor', 'Yes', 'Sim', '2026-01-19 23:07:11'),
(39394, 'ru', 'siteauditor', 'Yes', 'Да', '2026-01-19 23:07:11'),
(39395, 'tr', 'siteauditor', 'Yes', 'Evet', '2026-01-19 23:07:11'),
(39396, 'zh', 'siteauditor', 'Yes', '是', '2026-01-19 23:07:11'),
(39397, 'cn', 'siteauditor', 'Yes', '是', '2026-01-19 23:07:11'),
(39398, 'en', 'siteauditor', 'No', 'No', '2026-01-19 23:07:11'),
(39399, 'ar', 'siteauditor', 'No', 'لا', '2026-01-19 23:07:11'),
(39400, 'bg', 'siteauditor', 'No', 'Не', '2026-01-19 23:07:11'),
(39401, 'de', 'siteauditor', 'No', 'Nein', '2026-01-19 23:07:11'),
(39402, 'es', 'siteauditor', 'No', 'No', '2026-01-19 23:07:11'),
(39403, 'fr', 'siteauditor', 'No', 'Non', '2026-01-19 23:07:11'),
(39404, 'it', 'siteauditor', 'No', 'No', '2026-01-19 23:07:11'),
(39405, 'nl', 'siteauditor', 'No', 'Nee', '2026-01-19 23:07:11'),
(39406, 'pl', 'siteauditor', 'No', 'Nie', '2026-01-19 23:07:11'),
(39407, 'pt', 'siteauditor', 'No', 'Não', '2026-01-19 23:07:11'),
(39408, 'pt-br', 'siteauditor', 'No', 'Não', '2026-01-19 23:07:11'),
(39409, 'ru', 'siteauditor', 'No', 'Нет', '2026-01-19 23:07:11'),
(39410, 'tr', 'siteauditor', 'No', 'Hayır', '2026-01-19 23:07:11'),
(39411, 'zh', 'siteauditor', 'No', '否', '2026-01-19 23:07:11'),
(39412, 'cn', 'siteauditor', 'No', '否', '2026-01-19 23:07:11'),
(39413, 'en', 'siteauditor', 'Found', 'Found', '2026-01-19 23:07:11'),
(39414, 'ar', 'siteauditor', 'Found', 'موجود', '2026-01-19 23:07:11'),
(39415, 'bg', 'siteauditor', 'Found', 'Намерен', '2026-01-19 23:07:11'),
(39416, 'de', 'siteauditor', 'Found', 'Gefunden', '2026-01-19 23:07:11'),
(39417, 'es', 'siteauditor', 'Found', 'Encontrado', '2026-01-19 23:07:11'),
(39418, 'fr', 'siteauditor', 'Found', 'Trouvé', '2026-01-19 23:07:11'),
(39419, 'it', 'siteauditor', 'Found', 'Trovato', '2026-01-19 23:07:11'),
(39420, 'nl', 'siteauditor', 'Found', 'Gevonden', '2026-01-19 23:07:11'),
(39421, 'pl', 'siteauditor', 'Found', 'Znaleziono', '2026-01-19 23:07:11'),
(39422, 'pt', 'siteauditor', 'Found', 'Encontrado', '2026-01-19 23:07:11'),
(39423, 'pt-br', 'siteauditor', 'Found', 'Encontrado', '2026-01-19 23:07:11'),
(39424, 'ru', 'siteauditor', 'Found', 'Найдено', '2026-01-19 23:07:11'),
(39425, 'tr', 'siteauditor', 'Found', 'Bulundu', '2026-01-19 23:07:11'),
(39426, 'zh', 'siteauditor', 'Found', '找到', '2026-01-19 23:07:11'),
(39427, 'cn', 'siteauditor', 'Found', '找到', '2026-01-19 23:07:11'),
(39428, 'en', 'siteauditor', 'Missing', 'Missing', '2026-01-19 23:09:35'),
(39429, 'ar', 'siteauditor', 'Missing', 'مفقود', '2026-01-19 23:09:35'),
(39430, 'bg', 'siteauditor', 'Missing', 'Липсва', '2026-01-19 23:09:35'),
(39431, 'de', 'siteauditor', 'Missing', 'Fehlend', '2026-01-19 23:09:35'),
(39432, 'es', 'siteauditor', 'Missing', 'Faltante', '2026-01-19 23:09:35'),
(39433, 'fr', 'siteauditor', 'Missing', 'Manquant', '2026-01-19 23:09:35'),
(39434, 'it', 'siteauditor', 'Missing', 'Mancante', '2026-01-19 23:09:35'),
(39435, 'nl', 'siteauditor', 'Missing', 'Ontbreekt', '2026-01-19 23:09:35'),
(39436, 'pl', 'siteauditor', 'Missing', 'Brakujący', '2026-01-19 23:09:35'),
(39437, 'pt', 'siteauditor', 'Missing', 'Ausente', '2026-01-19 23:09:35'),
(39438, 'pt-br', 'siteauditor', 'Missing', 'Ausente', '2026-01-19 23:09:35'),
(39439, 'ru', 'siteauditor', 'Missing', 'Отсутствует', '2026-01-19 23:09:35'),
(39440, 'tr', 'siteauditor', 'Missing', 'Eksik', '2026-01-19 23:09:35'),
(39441, 'zh', 'siteauditor', 'Missing', '缺失', '2026-01-19 23:09:35'),
(39442, 'cn', 'siteauditor', 'Missing', '缺失', '2026-01-19 23:09:35'),
(39443, 'en', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'The page is mobile-friendly with proper viewport configuration', '2026-01-19 23:09:35'),
(39444, 'ar', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'الصفحة متوافقة مع الجوال مع تكوين viewport صحيح', '2026-01-19 23:09:35'),
(38846, 'fr', 'review', 'Average Rating by Platform', 'Note moyenne par plateforme', '2026-01-19 22:58:50'),
(38847, 'he', 'review', 'Average Rating by Platform', 'דירוג ממוצע לפי פלטפורמה', '2026-01-19 22:58:50'),
(38848, 'hi', 'review', 'Average Rating by Platform', 'प्लेटफ़ॉर्म के अनुसार औसत रेटिंग', '2026-01-19 22:58:50'),
(38849, 'hr', 'review', 'Average Rating by Platform', 'Prosječna ocjena po platformi', '2026-01-19 22:58:50'),
(38850, 'hu', 'review', 'Average Rating by Platform', 'Átlagos értékelés platformonként', '2026-01-19 22:58:50'),
(38851, 'hy', 'review', 'Average Rating by Platform', 'Միջին վարկանիշ ըստ հարթակի', '2026-01-19 22:58:50'),
(38852, 'id', 'review', 'Average Rating by Platform', 'Rating Rata-rata menurut Platform', '2026-01-19 22:58:50'),
(38853, 'it', 'review', 'Average Rating by Platform', 'Valutazione Media per Piattaforma', '2026-01-19 22:58:50'),
(38854, 'ja', 'review', 'Average Rating by Platform', 'プラットフォーム別平均評価', '2026-01-19 22:58:50'),
(38855, 'ko', 'review', 'Average Rating by Platform', '플랫폼별 평균 평점', '2026-01-19 22:58:50'),
(38856, 'lt', 'review', 'Average Rating by Platform', 'Vidutinis įvertinimas pagal platformą', '2026-01-19 22:58:50'),
(4867, 'cn', 'home', 'Pages Indexed', '頁面檢索', '2011-07-06 10:47:27'),
(4868, 'cn', 'home', 'Ranks', '排名', '2011-07-06 10:47:27'),
(4869, 'cn', 'home', 'SiteNameUrl', '站點 名字/URL', '2011-07-06 10:47:27'),
(4870, 'cn', 'home', 'Website Statistics', '站點統計', '2011-07-06 10:47:27'),
(4871, 'cn', 'keyword', 'Crawling keyword', '爬取關鍵字', '2011-07-06 10:50:02'),
(4872, 'cn', 'keyword', 'Detailed Keyword Position Reports', '顯示關鍵字排名報告', '2011-07-06 10:50:02'),
(4873, 'cn', 'keyword', 'Edit Keyword', '編輯關鍵字', '2011-07-06 10:50:02'),
(4874, 'cn', 'keyword', 'Graphical Keyword Position Reports', '關鍵字位置圖形報表', '2011-07-06 10:50:02'),
(4875, 'cn', 'keyword', 'Import Keywords', '導入關鍵字', '2011-07-06 10:50:02'),
(4876, 'cn', 'keyword', 'Keyword already exist', '關鍵字已存在', '2011-07-06 10:50:02'),
(4877, 'cn', 'keyword', 'Keyword Position Report', '關鍵字位置報告', '2011-07-06 10:50:02'),
(4878, 'cn', 'keyword', 'New Keyword', '新的關鍵字', '2011-07-06 10:50:02'),
(4879, 'cn', 'keyword', 'not assigned to required search engines', '未設置請求的搜索引擎', '2011-07-06 10:50:02'),
(4880, 'cn', 'keyword', 'pleaseselecttool', '請至少選擇一個seo工具', '2011-07-06 10:50:02'),
(4881, 'cn', 'keyword', 'Quick Keyword Position Checker', '快速關鍵字查詢', '2011-07-06 10:50:02'),
(4882, 'cn', 'keyword', 'results from ', '結果來自', '2011-07-06 10:50:02'),
(4883, 'cn', 'keyword', 'Show All results', '顯示所有結果', '2011-07-06 10:50:02'),
(4884, 'cn', 'keyword', 'Successfully crawled keyword', '成功爬取關鍵字', '2011-07-06 10:50:02'),
(4885, 'cn', 'keyword', 'to create new keywords', '創建新關鍵字', '2011-07-06 10:50:02'),
(4886, 'cn', 'label', 'already exist', '已經存在', '2014-01-09 20:35:37'),
(4887, 'cn', 'label', 'Authentication', '認證', '2014-01-09 20:35:37'),
(4888, 'cn', 'label', 'Author', '作者', '2014-01-09 20:35:37'),
(4889, 'cn', 'label', 'Click Here', '點擊這裡', '2014-01-09 20:35:37'),
(4890, 'cn', 'label', 'Cron', 'Cron', '2014-01-09 20:35:37'),
(4891, 'cn', 'label', 'Description', '描述', '2014-01-09 20:35:37'),
(4892, 'cn', 'label', 'Developers', '開發人員', '2014-01-09 20:35:37'),
(4893, 'cn', 'label', 'Download', '下載', '2014-01-09 20:35:37'),
(4894, 'cn', 'label', 'Installation', '安裝', '2014-01-09 20:35:37'),
(4895, 'cn', 'label', 'Keywords', '關鍵字', '2014-01-09 20:35:37'),
(4896, 'cn', 'label', 'noactiveplugins', '未找到可用的seo插件', '2014-01-09 20:35:37'),
(4897, 'cn', 'label', 'Plugin', '插件', '2014-01-09 20:35:37'),
(4898, 'cn', 'label', 'Port', '端口', '2014-01-09 20:35:37'),
(4899, 'cn', 'label', 'Proxy', '代理', '2014-01-09 20:35:37'),
(4900, 'cn', 'label', 'Re-install', '重新安裝', '2014-01-09 20:35:37'),
(4901, 'cn', 'label', 'Sponsors', '贊助商', '2014-01-09 20:35:37'),
(4902, 'cn', 'label', 'Title', '標題', '2014-01-09 20:35:37'),
(4903, 'cn', 'label', 'translation by', '譯者:', '2014-01-09 20:35:37'),
(4904, 'cn', 'label', 'Translators', '所有譯者:', '2014-01-09 20:35:37'),
(4905, 'cn', 'label', 'Upgrade', '升級', '2014-01-09 20:35:37'),
(4906, 'cn', 'label', 'Version', '版本', '2014-01-09 20:35:37'),
(4907, 'cn', 'label', 'wantproceed', '你確實要開始處理了嗎?', '2014-01-09 20:35:37'),
(4908, 'cn', 'login', 'Confirm Password', '確認密碼', '2014-01-09 20:40:06'),
(4909, 'cn', 'login', 'Create my account', '創建我的賬戶', '2014-01-09 20:40:06'),
(4910, 'cn', 'login', 'Create New Account', '創建一個新賬戶', '2014-01-09 20:40:06'),
(4911, 'cn', 'login', 'Email', '郵箱', '2014-01-09 20:40:06'),
(4912, 'cn', 'login', 'emailexist', '郵箱已存在', '2014-01-09 20:40:06'),
(4913, 'cn', 'login', 'Enter the code as it is shown', '輸入顯示的字符', '2014-01-09 20:40:06');
INSERT INTO `texts` VALUES
(4914, 'cn', 'login', 'First Name', '名字', '2014-01-09 20:40:06'),
(4915, 'cn', 'login', 'Last Name', '姓', '2014-01-09 20:40:06'),
(4916, 'cn', 'login', 'Login', '登錄', '2014-01-09 20:40:06'),
(4917, 'cn', 'login', 'Login incorrect', '登錄信息不正確', '2014-01-09 20:40:06'),
(4918, 'cn', 'login', 'newaccountsuccess', '創建新賬戶成功', '2014-01-09 20:40:06'),
(4919, 'cn', 'login', 'Password', '密碼', '2014-01-09 20:40:06'),
(4920, 'cn', 'login', 'Password incorrect', '密碼不正確', '2014-01-09 20:40:06'),
(4921, 'cn', 'login', 'Register', '註冊', '2014-01-09 20:40:06'),
(4922, 'cn', 'login', 'Sign in to your account', '登錄你的賬戶', '2014-01-09 20:40:06'),
(4923, 'cn', 'login', 'User inactive', '用戶無效', '2014-01-09 20:40:06'),
(4924, 'cn', 'login', 'Username', '用戶名', '2014-01-09 20:40:06'),
(4925, 'cn', 'login', 'usernameexist', '用戶名已存在', '2014-01-09 20:40:06'),
(4926, 'cn', 'panel', 'About Us', '關於我們', '2014-01-09 20:37:31'),
(4927, 'cn', 'panel', 'Add following command to your cron tab', '加入以下命令到CRON列表', '2014-01-09 20:37:31'),
(4928, 'cn', 'panel', 'alsocheckfollowlink', '如果需要更多細節,請檢查一下鏈接', '2014-01-09 20:37:31'),
(4929, 'cn', 'panel', 'Check Directory', '檢查目錄', '2014-01-09 20:37:31'),
(4930, 'cn', 'panel', 'Cron Command', 'cron命令', '2014-01-09 20:37:31'),
(4931, 'cn', 'panel', 'Directory Manager', '目錄管理', '2014-01-09 20:37:31'),
(4932, 'cn', 'panel', 'Edit My Profile', '編輯我的資料', '2014-01-09 20:37:31'),
(4933, 'cn', 'panel', 'My Profile', '我的資料', '2014-01-09 20:37:31'),
(4934, 'cn', 'panel', 'New Proxy', '新建代理', '2014-01-09 20:37:31'),
(4935, 'cn', 'panel', 'New User', '新建用戶', '2014-01-09 20:37:31'),
(4936, 'cn', 'panel', 'New Website', '新的站點', '2014-01-09 20:37:31'),
(4937, 'cn', 'panel', 'Proxy Manager', '代理管理器', '2014-01-09 20:37:31'),
(4938, 'cn', 'panel', 'Report Generation Manager', '報告生成管理', '2014-01-09 20:37:31'),
(4939, 'cn', 'panel', 'Reports Manager', '報告管理', '2014-01-09 20:37:31'),
(4940, 'cn', 'panel', 'Seo Plugins Manager', 'seo插件管理', '2014-01-09 20:37:31'),
(4941, 'cn', 'panel', 'Seo Tools Manager', 'seo工具管理', '2014-01-09 20:37:31'),
(4942, 'cn', 'panel', 'System Settings', '系統設置', '2014-01-09 20:37:31'),
(4943, 'cn', 'panel', 'User Manager', '用戶管理', '2014-01-09 20:37:31'),
(4944, 'cn', 'panel', 'Website Manager', '站點管理', '2014-01-09 20:37:31'),
(4945, 'cn', 'plugin', 'Edit Seo Plugin', '編輯SEO插件', '2014-01-09 20:43:38'),
(4946, 'cn', 'plugin', 'Plugin Name', '插件名字', '2014-01-09 20:43:38'),
(4947, 'cn', 'plugin', 'Seo Plugin Details', 'SEO插件細節', '2014-01-09 20:43:38'),
(4948, 'cn', 'proxy', 'Edit Proxy', '編輯代理', '2014-01-09 20:44:24'),
(4949, 'cn', 'proxy', 'Proxy Password', '代理密碼', '2014-01-09 20:44:24'),
(4950, 'cn', 'proxy', 'Proxy Username', '代理用戶名', '2014-01-09 20:44:24'),
(4951, 'cn', 'proxy', 'Proxyalreadyexist', '代理已經存在', '2014-01-09 20:44:24'),
(4952, 'cn', 'rank', 'enterurlproceed', '輸入URL,每行一條 。點擊處理 開始檢查Google PR和Alexa 排名', '2011-05-04 13:43:04'),
(4953, 'cn', 'rank', 'Google and Alexa Rank Reports', 'Google PR和 Alexa 排名報告', '2011-05-04 13:43:04'),
(4954, 'cn', 'rank', 'Saved rank results of', '保存排名結果', '2011-05-04 13:43:04'),
(4955, 'cn', 'saturation', 'clickproceedsaturation', '輸入URL,每行一條 。點擊處理 開始檢查搜索引擎搜錄報告', '2011-05-04 13:46:51'),
(4956, 'cn', 'saturation', 'GenerateSaturationReports', '生成搜索引擎搜錄報告', '2011-05-04 13:46:51'),
(4957, 'cn', 'saturation', 'Quick Search Engine Saturation Checker', '快速搜索引擎搜錄檢查', '2011-05-04 13:46:51'),
(4958, 'cn', 'saturation', 'Saved Search Engine Saturation results of', '保存搜索引擎搜錄結果', '2011-05-04 13:46:51'),
(4959, 'cn', 'saturation', 'Search Engine Saturation Reports', '搜索引擎搜錄報告', '2011-05-04 13:46:51'),
(4960, 'cn', 'seotools', 'Automatic Submission', '自動提交', '2011-07-06 10:55:41'),
(4961, 'cn', 'seotools', 'backlink-checker', '反向鏈接檢查', '2011-07-06 10:55:41'),
(4962, 'cn', 'seotools', 'Backlinks Reports', '反向鏈接報告', '2011-07-06 10:55:41'),
(4963, 'cn', 'seotools', 'Check Submission Status', '檢查提交狀態', '2011-07-06 10:55:41'),
(4964, 'cn', 'seotools', 'clickgeneratereports', '點擊處理 開始生成報告', '2011-07-06 10:55:41'),
(4965, 'cn', 'seotools', 'Detailed Position Reports', '詳細的位置報告', '2011-07-06 10:55:41'),
(4966, 'cn', 'seotools', 'directory-submission', '目錄提交', '2011-07-06 10:55:41'),
(4967, 'cn', 'seotools', 'Featured Submission', '篩選提交', '2011-07-06 10:55:41'),
(4968, 'cn', 'seotools', 'Generate Backlinks Reports', '生成反向鏈接報告', '2011-07-06 10:55:41'),
(4969, 'cn', 'seotools', 'Generate Keyword Reports', '生成關鍵字報告', '2011-07-06 10:55:41'),
(4970, 'cn', 'seotools', 'Generate Rank Reports', '生成排名報告', '2011-07-06 10:55:41'),
(4971, 'cn', 'seotools', 'Generate Saturation Reports', '生成收錄量報告', '2011-07-06 10:55:41'),
(4972, 'cn', 'seotools', 'Google Sitemap Generator', 'Google網站地圖報告', '2011-07-06 10:55:41'),
(4973, 'cn', 'seotools', 'Graphical Position Reports', '圖形位置報告', '2011-07-06 10:55:41'),
(4974, 'cn', 'seotools', 'Keyword Position Summary', '關鍵字概述', '2011-07-06 10:55:41'),
(4975, 'cn', 'seotools', 'keyword-position-checker', '關鍵字檢查', '2011-07-06 10:55:41'),
(4976, 'cn', 'seotools', 'Keywords Manager', '關鍵字管理', '2011-07-06 10:55:41'),
(4977, 'cn', 'seotools', 'Quick Backlinks Checker', '快速反向鏈接檢查', '2011-07-06 10:55:41'),
(4978, 'cn', 'seotools', 'Quick Position Checker', '快速位置檢查', '2011-07-06 10:55:41'),
(4979, 'cn', 'seotools', 'Quick Rank Checker', '快速排名檢查', '2011-07-06 10:55:41'),
(4980, 'cn', 'seotools', 'Quick Saturation Checker', '快速收錄量檢查', '2011-07-06 10:55:41'),
(4981, 'cn', 'seotools', 'Rank Reports', '排名報告', '2011-07-06 10:55:41'),
(4982, 'cn', 'seotools', 'rank-checker', '排名檢查', '2011-07-06 10:55:41'),
(4983, 'cn', 'seotools', 'Saturation Reports', '收錄量報告', '2011-07-06 10:55:41'),
(4984, 'cn', 'seotools', 'saturation-checker', '搜索引擎收錄量', '2011-07-06 10:55:41'),
(4985, 'cn', 'seotools', 'sitemap-generator', '站點地圖生成器', '2011-07-06 10:55:41'),
(4986, 'cn', 'seotools', 'Skipped Directories', '跳過的目錄', '2011-07-06 10:55:41'),
(4987, 'cn', 'seotools', 'Submission Reports', '提交報告', '2011-07-06 10:55:41'),
(4988, 'cn', 'seotools', 'User Access', '用戶訪問', '2011-07-06 10:55:41'),
(4989, 'cn', 'settings', 'Click here to become a sponsor for Seo Panel', '捐贈$100 成為Seo Panel的一個贊助人 .', '2014-01-09 21:04:14'),
(4990, 'cn', 'settings', 'seopanel_description', 'Seo panel是一個完整的免費的能對你的站點進行搜索引擎優化的控制面板。它擁有很多熱門的seo工具來追踪你的站點情況。它是一個開源軟件,而且你可以開發自己的seopanel。', '2014-01-09 21:04:14'),
(4991, 'cn', 'settings', 'seopanel_title', 'Seo Panel:全球第一款多站點seo處理開源軟件', '2014-01-09 21:04:14'),
(4992, 'cn', 'settings', 'SP_CRAWL_DELAY', '每次爬去间隔时间(秒)', '2014-01-09 21:04:14'),
(4993, 'cn', 'settings', 'SP_DEFAULTLANG', '默認語言', '2014-01-09 21:04:14'),
(4994, 'cn', 'settings', 'SP_DESCRIPTION', 'Seo Panel 描述', '2014-01-09 21:04:14'),
(4995, 'cn', 'settings', 'SP_ENABLE_PROXY', '使用代理', '2014-01-09 21:04:14'),
(4996, 'cn', 'settings', 'SP_HOTLINKING', '使用圖片盜鏈保護', '2014-01-09 21:04:14'),
(4997, 'cn', 'settings', 'SP_KEYWORDS', 'Seo Panel 關鍵字', '2014-01-09 21:04:14'),
(4998, 'cn', 'settings', 'SP_PAGINGNO', '每頁條目數量', '2014-01-09 21:04:14'),
(4999, 'cn', 'settings', 'SP_TITLE', 'Seo Panel 標題', '2014-01-09 21:04:14'),
(5000, 'cn', 'settings', 'SP_USER_AGENT', '用戶代理', '2014-01-09 21:04:14'),
(5001, 'cn', 'settings', 'SP_USER_GEN_REPORT', '允許用戶生成報告', '2014-01-09 21:04:14'),
(5002, 'cn', 'settings', 'SP_USER_REGISTRATION', '用戶註冊接口', '2014-01-09 21:04:14'),
(5003, 'cn', 'settings', 'syssettingssaved', '系統設置保存成功', '2014-01-09 21:04:14'),
(5004, 'cn', 'sitemap', 'Change frequency', '改變頻率', '2011-05-04 13:58:33'),
(5005, 'cn', 'sitemap', 'clickproceedsitemap', '點擊處理 創建站點地圖文件', '2011-05-04 13:58:33'),
(5006, 'cn', 'sitemap', 'Download sitemap file from', '下載站點地圖文件', '2011-05-04 13:58:33'),
(5007, 'cn', 'sitemap', 'Exclude Url', '不包括的URL', '2011-05-04 13:58:33'),
(5008, 'cn', 'sitemap', 'processtaketime', '本次處理需要一段時間根據你的站點連接數。請等待,稍後將獲取站點地圖文件', '2011-05-04 13:58:33'),
(5009, 'cn', 'sitemap', 'Sitemap Type', '站點地圖類型', '2011-05-04 13:58:33'),
(5010, 'cn', 'support', 'support_cont1', '\r\nSeo Panel 幫助系統 \r\n\r\n \r\n 1000 目錄包 \r\n \r\n 我們提供超過1000個可用的 網絡目錄包,加到\r\n你的seo panel 目錄提交工具 .\r\n 它會幫助你增加反向鏈接 你的站點.\r\n 在我們獲得捐贈後為seo panel以為未來發展 ,您將獲得推薦 的1000目錄列表,.\r\n 想要獲得1000目錄列表請\\" target=\\"_blank\\">捐贈 \r\n$10 或者更多 來改善 seo panel 的功能 .\r\n 如果你有任何問題關於1000目錄包,請\\"\r\ntarget=\\"_blank\\">聯繫我們 或者打開一個頁面\\"\r\ntarget=\\"_blank\\">幫助系統 .\r\n
\r\n \r\n \\" target=\\"_blank\\">訪問這個鏈接捐贈seo panel \r\n
\r\n \r\n \r\n \r\n \r\n 本地搜索引擎包 \r\n \r\n 增加本地搜索引擎域 google,yahoo,msn(例如: www.google.de,www.google.fr\r\netc ) seo panel 關鍵字position checker , 追踪你的站點行為本地.\r\n 為了獲得本地搜索引擎包(根據你的需求) 請\\" target=\\"_blank\\">捐贈 $10或者更多來改善功能seo\r\npanel.\r\n 捐贈之前, 請\\" target=\\"_blank\\">聯繫我們 to\r\n提供給我們需要的搜索引擎域名列表.\r\n \r\n 增加新的搜索引擎(例如:baidu.com) 你的seo panel關鍵字position checker,\r\n請\\" target=\\"_blank\\">聯繫我們 或者打開一個頁面在\\" target=\\"_blank\\">幫助系統 .\r\n
\r\n \r\n \\" target=\\"_blank\\">訪問這個鏈接聯繫我們 \r\n
\r\n \r\n \r\n \r\n \r\n Seo Panel插件 \r\n \r\n 增加seo插件 你的seo panel 擴展功能 根據你的\r\n需求.\r\n \\" target=\\"_blank\\">Seo panel插件 由seo panel\r\n和第三方站點提供.\r\n 你可以easily develop seo插件來你的seo panel.\r\n 你可以\\" target=\\"_blank\\">提交 你的seo plugin seo panel 並且\r\n我們會發布 到我們的站點在審查 之後.\r\n
\r\n \r\n \\" target=\\"_blank\\">訪問這個鏈接為了獲得seo panel插件 \r\n
\r\n \r\n \r\n \r\n 聯繫我們 \r\n \r\n 聯繫我們來任何問題關於seo panel 工具,插件和功能等等 通過以下鏈接.\r\n
\r\n \r\n \\" target=\\"_blank\\">訪問這個鏈接聯繫我們 \r\n
\r\n \r\n \r\n \r\n 技術支持 \r\n \r\n 為了獲得技術支持 從seo panel團隊設置seo panel工具,插件和\r\n功能 . 例如: 設置cron來關鍵字位置checker.\r\n
\r\n \r\n \\" target=\\"_blank\\">訪問這個鏈接創建一個支持ticket \r\n
\r\n \r\n \r\n \r\n 報告Bugs \r\n \r\n 報告bugs 關於seo panel 工具,插件和功能等等 通過以下鏈接.\r\n 請幫助我們在下個版本來改善功能.\r\n
\r\n \r\n \\" target=\\"_blank\\">訪問這個鏈接報告bugs \r\n
\r\n \r\n \r\n \r\n ', '2011-05-04 13:59:39'),
(5011, 'cn', 'support', 'support_cont2', '\r\nSeo Panel 在線資源 \r\n\r\n \r\n', '2011-05-04 13:59:39'),
(5012, 'cn', 'support', 'support_cont3', '\r\n捐贈 Seo Panel \r\n\r\n ', '2011-05-04 13:59:39'),
(5013, 'cn', 'user', 'Edit User', '編輯用戶信息', '2011-05-04 14:00:10'),
(5014, 'cn', 'user', 'Saved My Profile Details', '保存我的詳細資料', '2011-05-04 14:00:10'),
(5015, 'cn', 'website', 'Edit Website', '編輯站點', '2011-05-04 14:00:54'),
(5016, 'cn', 'website', 'plscrtwebsite', '使用seo工具和插件前,請先創建一個站點', '2011-05-04 14:00:54'),
(5017, 'cn', 'website', 'Website already exist', '站點已經存在', '2011-05-04 14:00:54'),
(5018, 'cn', 'website', 'yourwebalreday', '你的站點,如果你已經創建了一個', '2011-05-04 14:00:54'),
(5019, 'en', 'settings', 'Check for Updates', 'Check for Updates', '2018-01-23 00:59:29'),
(5020, 'en', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up to date.', '2018-01-23 00:59:29'),
(5021, 'en', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up to date. Please download new version', '2018-01-23 00:59:29'),
(5022, 'en', 'seotools', 'site-auditor', 'Site Auditor', '2011-06-14 11:46:30'),
(5023, 'en', 'seotools', 'Auditor Projects', 'Auditor Projects', '2011-06-15 05:20:18'),
(5024, 'en', 'seotools', 'Auditor Settings', 'Auditor Settings', '2011-06-15 05:21:50'),
(5025, 'en', 'seotools', 'Auditor Reports', 'Auditor Reports', '2011-06-15 05:21:50'),
(5026, 'en', 'panel', 'New Project', 'New Project', '2011-06-15 05:39:23'),
(5027, 'en', 'panel', 'Edit Project', 'Edit Project', '2011-06-15 10:24:40'),
(5028, 'es', 'panel', 'Edit Project', 'Editar proyecto', '2012-05-12 14:55:03'),
(5029, 'es', 'panel', 'New Project', 'Nuevo proyecto', '2012-05-12 14:55:03'),
(5030, 'es', 'settings', 'Check for Updates', 'Buscar actualizaciones', '2012-05-12 15:03:05'),
(5031, 'es', 'settings', 'versionnotuptodatemsg', 'Tu version de Seo Panle está desactualizada Descarga la nueva version.', '2012-05-12 15:03:05'),
(5032, 'es', 'settings', 'Your Seo Panel installation is up to date', 'Tu version de Seo Panel está actualizada.', '2012-05-12 15:03:05'),
(5033, 'es', 'seotools', 'Auditor Projects', 'Proyectos', '2011-07-13 23:32:41'),
(5034, 'es', 'seotools', 'Auditor Reports', 'Informes', '2011-07-13 23:32:41'),
(5035, 'es', 'seotools', 'Auditor Settings', 'Configuración', '2011-07-13 23:32:41'),
(5036, 'es', 'seotools', 'site-auditor', 'Informe del sitio', '2011-07-13 23:32:41'),
(5037, 'en', 'keyword', 'Insert keywords separated with comma', 'Insert keywords separated with comma', '2011-07-04 11:48:43'),
(5038, 'en', 'siteauditor', 'Maximum Pages', 'Maximum Pages', '2011-07-04 11:53:29'),
(5039, 'en', 'siteauditor', 'Pages Found', 'Pages Found', '2011-07-04 11:53:29'),
(5040, 'en', 'siteauditor', 'Crawled Pages', 'Crawled Pages', '2011-07-04 11:54:08'),
(5041, 'en', 'siteauditor', 'Recheck Pages', 'Recheck Pages', '2011-07-04 11:54:08'),
(5042, 'en', 'label', 'Score', 'Score', '2011-07-04 11:57:57'),
(5043, 'en', 'label', 'Updated', 'Updated', '2011-07-04 11:58:33'),
(5044, 'en', 'label', 'View Reports', 'View Reports', '2011-07-04 12:10:55'),
(5045, 'en', 'siteauditor', 'Run Project', 'Run Project', '2011-07-04 12:11:28'),
(5046, 'en', 'settings', 'SA_MAX_NO_PAGES', 'Maximum number of pages allowed per website', '2018-01-23 00:59:29'),
(5047, 'en', 'siteauditor', 'Site Auditor Settings', 'Site Auditor Settings', '2011-07-04 12:20:36'),
(5048, 'en', 'settings', 'SA_CRAWL_DELAY_TIME', 'Site auditor crawl delay between each pages', '2018-01-23 00:59:29'),
(5049, 'en', 'seotools', 'Import Project Links', 'Import Project Links', '2011-07-04 12:27:22'),
(5050, 'en', 'label', 'Project', 'Project', '2011-07-04 12:29:24'),
(5051, 'en', 'siteauditor', 'Maximum number of pages to be checked', 'Maximum number of pages to be checked', '2011-07-04 12:45:26'),
(5052, 'en', 'siteauditor', 'Exclude links', 'Exclude links', '2011-07-04 12:45:50'),
(5053, 'en', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links from the reports', '2011-07-04 12:49:43'),
(5054, 'en', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded from reports', '2011-07-04 12:50:19'),
(5055, 'en', 'siteauditor', 'Check google pagerank of pages', 'Check google pagerank of pages', '2011-07-04 12:52:15'),
(5056, 'en', 'siteauditor', 'Check backlinks of pages', 'Check backlinks of pages', '2011-07-04 12:52:15'),
(5057, 'en', 'siteauditor', 'Check pages indexed or not', 'Check pages indexed or not', '2011-07-04 12:52:32'),
(5058, 'en', 'siteauditor', 'Store all links found in a page', 'Store all links found in a page', '2011-07-04 12:52:32'),
(5059, 'en', 'siteauditor', 'Check broken links in a page', 'Check broken links in a page', '2011-07-04 12:53:05'),
(5060, 'en', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will increase the execution time of a project', '2011-07-04 12:53:05'),
(5061, 'en', 'siteauditor', 'Execute with cron', 'Execute with cron', '2011-07-04 12:53:21'),
(5062, 'en', 'siteauditor', 'Number of pages is greater than', 'Number of pages is greater than', '2011-07-04 13:03:18'),
(5063, 'en', 'siteauditor', 'Number of pages should be greater than', 'Number of pages should be greater than', '2011-07-04 13:05:57'),
(5064, 'en', 'siteauditor', 'projectalreadyexist', 'Project for this website already exist', '2011-07-04 13:07:07'),
(5065, 'en', 'label', 'Exclude', 'Exclude', '2011-07-04 13:10:34'),
(5066, 'en', 'label', 'Include', 'Include', '2011-07-04 13:10:34'),
(5067, 'en', 'siteauditor', 'should start with', 'should start with', '2011-07-04 13:12:04'),
(5068, 'en', 'siteauditor', 'Project Summary', 'Project Summary', '2011-07-04 13:36:28'),
(5069, 'en', 'siteauditor', 'Crawling Page', 'Crawling Page', '2011-07-04 13:36:28'),
(5070, 'en', 'siteauditor', 'pressescapetostopexecution', 'Press escape key to stop execution of script', '2011-07-04 13:37:42'),
(5071, 'en', 'siteauditor', 'to run project again if you stopped execution', 'to run project again if you stopped execution', '2011-07-04 13:39:32'),
(5072, 'en', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'crawled successfully! Waiting for crawling next page for', '2011-07-04 13:40:57'),
(5073, 'en', 'siteauditor', 'Completed project execution', 'Completed project execution', '2011-07-04 13:42:06'),
(5074, 'en', 'siteauditor', 'to view the reports', 'to view the reports', '2011-07-04 13:42:06'),
(5075, 'en', 'siteauditor', 'Link Reports', 'Link Reports', '2011-07-05 11:03:09'),
(5076, 'en', 'siteauditor', 'Report Summary', 'Report Summary', '2011-07-05 11:03:09'),
(5077, 'en', 'siteauditor', 'Duplicate Title', 'Duplicate Title', '2011-07-05 11:03:27'),
(5078, 'en', 'siteauditor', 'Duplicate Description', 'Duplicate Description', '2011-07-05 11:03:27'),
(5079, 'en', 'siteauditor', 'Duplicate Keywords', 'Duplicate Keywords', '2011-07-05 11:03:36'),
(5080, 'en', 'siteauditor', 'No active projects found', 'No active projects found', '2011-07-05 11:04:13'),
(5081, 'en', 'label', 'Report Type', 'Report Type', '2011-07-05 11:07:46'),
(5082, 'en', 'siteauditor', 'Crawled', 'Crawled', '2011-07-05 11:08:35'),
(5083, 'en', 'siteauditor', 'Page Link', 'Page Link', '2011-07-05 11:10:01'),
(5084, 'en', 'label', 'Brocken', 'Broken', '2011-07-05 11:14:20'),
(5085, 'en', 'home', 'Indexed', 'Indexed', '2019-08-06 09:55:20'),
(5086, 'en', 'siteauditor', 'Total Links', 'Total Links', '2011-07-05 11:25:02'),
(5087, 'en', 'siteauditor', 'External Links', 'External Links', '2011-07-05 11:28:13'),
(5088, 'en', 'label', 'Comments', 'Comments', '2011-07-05 11:37:55'),
(5089, 'en', 'label', 'Total Results', 'Total Results', '2011-07-05 11:40:51'),
(5090, 'en', 'siteauditor', 'Project Url', 'Project Url', '2011-07-05 11:43:00'),
(5091, 'en', 'siteauditor', 'Page Details', 'Page Details', '2011-07-05 11:48:12'),
(5092, 'en', 'siteauditor', 'Check Score', 'Check Score', '2011-07-05 11:48:12'),
(5093, 'en', 'siteauditor', 'Import Project Links', 'Import Project Links', '2011-07-05 11:49:36'),
(5094, 'en', 'siteauditor', 'Page Links', 'Page Links', '2011-07-05 12:02:58'),
(5095, 'en', 'siteauditor', 'Anchor', 'Anchor', '2011-07-05 12:04:07'),
(5096, 'en', 'siteauditor', 'Link Title', 'Link Title', '2011-07-05 12:04:45'),
(5097, 'en', 'siteauditor', 'Nofollow', 'Nofollow', '2011-07-05 12:05:25'),
(5098, 'en', 'siteauditor', 'External', 'External', '2011-07-05 12:06:26'),
(5099, 'en', 'label', 'Count', 'Count', '2011-07-05 12:33:22'),
(5100, 'en', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2011-07-05 12:50:06'),
(5101, 'en', 'siteauditor', 'totallinksgreaterallowed', 'Total links will become greater than maximum links allowed to the project', '2011-07-05 12:53:12'),
(5102, 'en', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded from sitemap', '2011-07-05 13:13:12'),
(5103, 'en', 'siteauditor', 'The page title length is not between', 'The page title length is not between', '2011-07-05 13:18:06'),
(5104, 'en', 'siteauditor', 'The page description length is not between', 'The page description length is not between', '2011-07-05 13:18:58'),
(5105, 'en', 'siteauditor', 'The page keywords length is not between', 'The page keywords length is not between', '2011-07-05 13:19:53'),
(5106, 'en', 'siteauditor', 'The page is brocken', 'The page is broken', '2011-07-05 13:23:30'),
(5107, 'en', 'siteauditor', 'The total number of links in page is greater than', 'The total number of links in page is greater than\r\n', '2011-07-05 13:23:30'),
(5108, 'en', 'siteauditor', 'The page is having exellent pagerank', 'The page has excellent pagerank', '2011-07-05 13:23:50'),
(5109, 'en', 'siteauditor', 'The page is having very good pagerank', 'The page has very good pagerank', '2011-07-05 13:23:50'),
(5110, 'en', 'siteauditor', 'The page is having good pagerank', 'The page has good pagerank', '2011-07-05 13:24:11'),
(5111, 'en', 'siteauditor', 'The page is having poor pagerank', 'The page has poor pagerank', '2011-07-05 13:24:11'),
(5112, 'en', 'siteauditor', 'The page is having exellent number of backlinks in', 'The page has excellent number of backlinks in', '2011-07-05 13:24:32'),
(5113, 'en', 'siteauditor', 'The page is having good number of backlinks in', 'The page has good number of backlinks in', '2011-07-05 13:24:32'),
(5114, 'en', 'siteauditor', 'The page is not having backlinks in', 'The page does not have backlinks in', '2011-07-05 13:24:51'),
(5115, 'en', 'siteauditor', 'The page is not indexed in', 'The page is not indexed in', '2011-07-05 13:24:51'),
(5127, 'ru', 'label', 'Updated', 'Обновлено', '2024-07-17 15:17:22'),
(5128, 'ru', 'label', 'View Reports', 'Просмотр отчетов', '2024-07-17 15:17:22'),
(5129, 'ru', 'panel', 'Edit Project', 'Редактировать проект', '2024-07-17 15:19:14'),
(5130, 'ru', 'panel', 'New Project', 'Новый проект', '2024-07-17 15:19:14'),
(5131, 'ru', 'seotools', 'Auditor Projects', 'Аудитор проектов', '2024-07-17 15:26:22'),
(5132, 'ru', 'seotools', 'Auditor Reports', 'Аудитор отчетов', '2024-07-17 15:26:22'),
(5133, 'ru', 'seotools', 'Auditor Settings', 'Настройки аудитора', '2024-07-17 15:26:22'),
(5134, 'ru', 'seotools', 'Import Project Links', 'Импорт ссылки проекта', '2024-07-17 15:26:22'),
(5135, 'ru', 'seotools', 'site-auditor', 'Аудитор сайта', '2024-07-17 15:26:22'),
(5136, 'ru', 'settings', 'Check for Updates', 'Проверить наличие обновлений', '2024-07-17 15:22:42'),
(5137, 'ru', 'settings', 'SA_CRAWL_DELAY_TIME', 'Задержка между обходом каждой страницы сайта при аудите', '2024-07-17 15:22:42'),
(5138, 'ru', 'settings', 'SA_MAX_NO_PAGES', 'Максимально разрешенное количество страниц на сайте', '2024-07-17 15:22:42'),
(5139, 'ru', 'settings', 'versionnotuptodatemsg', 'Ваша Seo Panel устарела. Пожалуйста, скачайте новую версию', '2024-07-17 15:22:42'),
(5140, 'ru', 'settings', 'Your Seo Panel installation is up to date', 'Установленная Seo Panel в актуальном состоянии.', '2024-07-17 15:22:42'),
(5141, 'ja', 'home', 'Indexed', 'インデックス済', '2019-04-01 13:45:19'),
(5142, 'ja', 'keyword', 'Insert keywords separated with comma', 'キーワードをカンマ区切りで挿入', '2016-01-04 11:34:06'),
(5143, 'ja', 'label', 'Brocken', 'リンク切れ', '2019-04-01 13:45:51'),
(5144, 'ja', 'label', 'Comments', 'コメント', '2019-04-01 13:45:51'),
(5145, 'ja', 'label', 'Count', 'カウント', '2019-04-01 13:45:51'),
(5146, 'ja', 'label', 'Exclude', '除外する', '2019-04-01 13:45:51'),
(5147, 'ja', 'label', 'Include', '含める', '2019-04-01 13:45:51'),
(5148, 'ja', 'label', 'Project', 'プロジェクト', '2019-04-01 13:45:51'),
(5149, 'ja', 'label', 'Report Type', 'レポートタイプ', '2019-04-01 13:45:51'),
(5150, 'ja', 'label', 'Score', 'スコア', '2019-04-01 13:45:51'),
(5151, 'ja', 'label', 'Total Results', '総合結果', '2019-04-01 13:45:51'),
(5152, 'ja', 'label', 'Updated', '更新済', '2019-04-01 13:45:51'),
(5153, 'ja', 'label', 'View Reports', 'レポートを閲覧', '2019-04-01 13:45:51'),
(5154, 'ja', 'panel', 'Edit Project', 'プロジェクトの編集', '2019-04-01 13:46:57'),
(5155, 'ja', 'panel', 'New Project', '新規プロジェクト', '2019-04-01 13:46:57'),
(5156, 'ja', 'seotools', 'Auditor Projects', '監査プロジェクト', '2019-04-01 13:49:13'),
(5157, 'ja', 'seotools', 'Auditor Reports', '監査レポート', '2019-04-01 13:49:13'),
(5158, 'ja', 'seotools', 'Auditor Settings', '監査設定', '2019-04-01 13:49:13'),
(5159, 'ja', 'seotools', 'Import Project Links', 'プロジェクトリンクのインポート', '2019-04-01 13:49:13'),
(5160, 'ja', 'seotools', 'site-auditor', 'サイト監査', '2019-04-01 13:49:13'),
(5161, 'ja', 'settings', 'Check for Updates', '更新を確認', '2019-04-01 13:52:17'),
(5162, 'ja', 'settings', 'SA_CRAWL_DELAY_TIME', '各ページのサイト監査巡回頻度', '2019-04-01 13:52:17'),
(5163, 'ja', 'settings', 'SA_MAX_NO_PAGES', '1ウェブサイトに許可される最大ページ数', '2019-04-01 13:52:17'),
(5164, 'ja', 'settings', 'versionnotuptodatemsg', 'お使いのSeo Panelは最新版ではありません。 新バージョンをダウンロードしてください。', '2019-04-01 13:52:17'),
(5165, 'ja', 'settings', 'Your Seo Panel installation is up to date', '最新版のSeo Panelがインストールされています。', '2019-04-01 13:52:17'),
(5166, 'ja', 'siteauditor', 'Anchor', 'アンカー', '2018-01-23 06:19:20'),
(5167, 'ja', 'siteauditor', 'anylinkcontainabovelinks', '上記リンクを含むリンクはレポートから除外されます', '2018-01-23 06:19:20'),
(5168, 'ja', 'siteauditor', 'anylinkcontainexcludesitemap', '上記リンクを含むリンクはサイトマップから除外されます', '2018-01-23 06:19:20'),
(5169, 'ja', 'siteauditor', 'Check backlinks of pages', 'ページのバックリンクを確認', '2018-01-23 06:19:20'),
(5170, 'ja', 'siteauditor', 'Check broken links in a page', 'ページ内のリンク切れを確認', '2018-01-23 06:19:20'),
(5171, 'ja', 'siteauditor', 'Check google pagerank of pages', 'ページのgoogleページランクを確認', '2018-01-23 06:19:20'),
(5172, 'ja', 'siteauditor', 'Check pages indexed or not', 'ページのインデックス状況を確認', '2018-01-23 06:19:20'),
(5173, 'ja', 'siteauditor', 'Check Score', 'スコアの確認', '2018-01-23 06:19:20'),
(5174, 'ja', 'siteauditor', 'checkborckenlinkwait', 'リンク切れ確認は、プロジェクトの実行時間を増加させます', '2018-01-23 06:19:20'),
(5175, 'ja', 'siteauditor', 'Completed project execution', 'プロジェクトの実行完了', '2018-01-23 06:19:20'),
(5176, 'ja', 'siteauditor', 'Crawled', 'クロール済', '2018-01-23 06:19:20'),
(5177, 'ja', 'siteauditor', 'Crawled Pages', 'クロール済ページ', '2018-01-23 06:19:20'),
(5178, 'ja', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'クロールに成功!次ページのクロール待機中', '2018-01-23 06:19:20'),
(5179, 'ja', 'siteauditor', 'Crawling Page', 'クロール中のページ', '2018-01-23 06:19:20'),
(5180, 'ja', 'siteauditor', 'Duplicate Description', '重複ディスクリプション', '2018-01-23 06:19:20'),
(5181, 'ja', 'siteauditor', 'Duplicate Keywords', '重複キーワード', '2018-01-23 06:19:20'),
(5182, 'ja', 'siteauditor', 'Duplicate Title', '重複タイトル', '2018-01-23 06:19:20'),
(5183, 'ja', 'siteauditor', 'Exclude links', 'リンクを除外', '2018-01-23 06:19:20'),
(5184, 'ja', 'siteauditor', 'Execute with cron', 'クーロンで実行', '2018-01-23 06:19:20'),
(5185, 'ja', 'siteauditor', 'External', '外部', '2018-01-23 06:19:20'),
(5186, 'ja', 'siteauditor', 'External Links', '外部リンク', '2018-01-23 06:19:20'),
(5187, 'ja', 'siteauditor', 'Import Project Links', 'プロジェクトリンクのインポート', '2018-01-23 06:19:20'),
(5188, 'ja', 'siteauditor', 'Insert links separated with comma', 'リンクをカンマ区切りで挿入', '2018-01-23 06:19:20'),
(5189, 'ja', 'siteauditor', 'insertlinkssepcoma', '無限リンクをレポートから除外するには、カンマ区切りでリンクを挿入', '2018-01-23 06:19:20'),
(5190, 'ja', 'siteauditor', 'Link Reports', 'リンクレポート', '2018-01-23 06:19:20'),
(5191, 'ja', 'siteauditor', 'Link Title', 'リンクタイトル', '2018-01-23 06:19:20'),
(5192, 'ja', 'siteauditor', 'Maximum number of pages to be checked', 'チェックされるページの最大数', '2018-01-23 06:19:20'),
(5193, 'ja', 'siteauditor', 'Maximum Pages', '最大ページ数', '2018-01-23 06:19:20'),
(5194, 'ja', 'siteauditor', 'No active projects found', 'アクティブなプロジェクトはありません', '2018-01-23 06:19:20'),
(5195, 'ja', 'siteauditor', 'Nofollow', 'ノーフォロー', '2018-01-23 06:19:20'),
(5196, 'ja', 'siteauditor', 'Number of pages is greater than', 'ページ数が次を超えています:', '2018-01-23 06:19:20'),
(5197, 'ja', 'siteauditor', 'Number of pages should be greater than', 'ページ数が次を満たしていません:', '2018-01-23 06:19:20'),
(5198, 'ja', 'siteauditor', 'Page Details', 'ページ詳細', '2018-01-23 06:19:20'),
(5199, 'ja', 'siteauditor', 'Page Link', 'ページリンク', '2018-01-23 06:19:20'),
(5200, 'ja', 'siteauditor', 'Page Links', 'ページリンク', '2018-01-23 06:19:20'),
(5201, 'ja', 'siteauditor', 'Pages Found', '検出ページ', '2018-01-23 06:19:20'),
(5202, 'ja', 'siteauditor', 'pressescapetostopexecution', 'スクリプトの実行を停止するにはエスケープ キーを押して下さい', '2018-01-23 06:19:20'),
(5203, 'ja', 'siteauditor', 'Project Summary', 'プロジェクトサマリ', '2018-01-23 06:19:20'),
(5204, 'ja', 'siteauditor', 'Project Url', 'プロジェクトURL', '2018-01-23 06:19:20'),
(5205, 'ja', 'siteauditor', 'projectalreadyexist', 'このウェブサイトのプロジェクトは既に存在します', '2018-01-23 06:19:20'),
(5206, 'ja', 'siteauditor', 'Recheck Pages', 'ページの再チェック', '2018-01-23 06:19:20'),
(5207, 'ja', 'siteauditor', 'Report Summary', 'レポートサマリ', '2018-01-23 06:19:20'),
(5208, 'ja', 'siteauditor', 'Run Project', 'プロジェクトの実行', '2018-01-23 06:19:20'),
(5209, 'ja', 'siteauditor', 'should start with', '次で始まるべきです:', '2018-01-23 06:19:20'),
(5210, 'ja', 'siteauditor', 'Site Auditor Settings', 'サイト監査設定', '2018-01-23 06:19:20'),
(5211, 'ja', 'siteauditor', 'Store all links found in a page', 'ページで検出されたリンクをすべて保存する', '2018-01-23 06:19:20'),
(5212, 'ja', 'siteauditor', 'The page description length is not between', 'ページディスクリプションの長さが次に当てはまりません:', '2018-01-23 06:19:20'),
(5213, 'ja', 'siteauditor', 'The page is brocken', 'ページは破損しています', '2018-01-23 06:19:20'),
(5214, 'ja', 'siteauditor', 'The page is having exellent number of backlinks in', 'ページのバックリンク数は極めて優秀です', '2018-01-23 06:19:20'),
(5215, 'ja', 'siteauditor', 'The page is having exellent pagerank', 'ページのページランクは極めて優秀です', '2018-01-23 06:19:20'),
(5216, 'ja', 'siteauditor', 'The page is having good number of backlinks in', 'ページのバックリンク数は良好です', '2018-01-23 06:19:20'),
(5217, 'ja', 'siteauditor', 'The page is having good pagerank', 'ページのページランクは良好です', '2018-01-23 06:19:20'),
(5218, 'ja', 'siteauditor', 'The page is having poor pagerank', 'ページのページランクは悪いです', '2018-01-23 06:19:20'),
(5219, 'ja', 'siteauditor', 'The page is having very good pagerank', 'ページのページランクはとても良いです', '2018-01-23 06:19:20'),
(5220, 'ja', 'siteauditor', 'The page is not having backlinks in', 'ページにはバックリンクがありません', '2018-01-23 06:19:20'),
(5221, 'ja', 'siteauditor', 'The page is not indexed in', 'ページはインデックスされていません', '2018-01-23 06:19:20'),
(5222, 'ja', 'siteauditor', 'The page keywords length is not between', 'ページキーワードの長さが次に当てはまりません:', '2018-01-23 06:19:20'),
(5223, 'ja', 'siteauditor', 'The page title length is not between', 'ページタイトルの長さが次に当てはまりません:', '2018-01-23 06:19:20'),
(5224, 'ja', 'siteauditor', 'The total number of links in page is greater than', 'ページ内のリンク合計数が次を超過しています:', '2018-01-23 06:19:20'),
(5225, 'ja', 'siteauditor', 'to run project again if you stopped execution', '実行を停止した場合に再度プロジェクトを実行するには', '2018-01-23 06:19:20'),
(5226, 'ja', 'siteauditor', 'to view the reports', 'レポートを見るには', '2018-01-23 06:19:20'),
(5227, 'ja', 'siteauditor', 'Total Links', '合計リンク数', '2018-01-23 06:19:20'),
(5228, 'ja', 'siteauditor', 'totallinksgreaterallowed', '合計リンク数が、プロジェクトに許可された合計リンク数を超過します', '2018-01-23 06:19:20'),
(5229, 'ru', 'siteauditor', 'Anchor', 'Якорь', '2017-07-13 20:51:34'),
(5230, 'ru', 'siteauditor', 'anylinkcontainabovelinks', 'Все ссылки уже присутствующие в проекте, будут исключены из отчетов', '2017-07-13 20:51:34'),
(5231, 'ru', 'siteauditor', 'anylinkcontainexcludesitemap', 'Все ссылки содержащие ссылки выше, будут исключены из карты сайта', '2017-07-13 20:51:34'),
(5232, 'ru', 'siteauditor', 'Check backlinks of pages', 'Проверка обратных ссылок страниц', '2017-07-13 20:51:34'),
(5233, 'ru', 'siteauditor', 'Check broken links in a page', 'Проверить нерабочие ссылки на страницы', '2017-07-13 20:51:34'),
(5234, 'ru', 'siteauditor', 'Check google pagerank of pages', 'Проверка Google PageRank страниц', '2017-07-13 20:51:34'),
(5235, 'ru', 'siteauditor', 'Check pages indexed or not', 'Проверка индексации страниц', '2017-07-13 20:51:34'),
(5236, 'ru', 'siteauditor', 'Check Score', 'Проверка оценки', '2017-07-13 20:51:34'),
(5237, 'ru', 'siteauditor', 'checkborckenlinkwait', 'Проверка битых ссылок, увеличит время выполнения проекта', '2017-07-13 20:51:34'),
(5238, 'ru', 'siteauditor', 'Completed project execution', 'Завершено выполненных проектов', '2017-07-13 20:51:34'),
(5239, 'ru', 'siteauditor', 'Crawled', 'Сканирование', '2017-07-13 20:51:34'),
(5240, 'ru', 'siteauditor', 'Crawled Pages', 'Просканированных страниц', '2017-07-13 20:51:34'),
(5241, 'ru', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'сканирование выполнено успешно! Ожидание сканирования следующей страницы', '2017-07-13 20:51:34'),
(5242, 'ru', 'siteauditor', 'Crawling Page', 'Сканирование страницы', '2017-07-13 20:51:34'),
(5243, 'ru', 'siteauditor', 'Duplicate Description', 'Дубликат описания', '2017-07-13 20:51:34'),
(5244, 'ru', 'siteauditor', 'Duplicate Keywords', 'Повторяющиеся ключевые слова', '2017-07-13 20:51:34'),
(5245, 'ru', 'siteauditor', 'Duplicate Title', 'Дубликат заголовка', '2017-07-13 20:51:34'),
(5246, 'ru', 'siteauditor', 'Exclude links', 'Исключить ссылки', '2017-07-13 20:51:34'),
(5247, 'ru', 'siteauditor', 'Execute with cron', 'Выполнить cron', '2017-07-13 20:51:34'),
(5248, 'ru', 'siteauditor', 'External', 'Внешний', '2017-07-13 20:51:34'),
(5249, 'ru', 'siteauditor', 'External Links', 'Внешние ссылки', '2017-07-13 20:51:34'),
(5250, 'ru', 'siteauditor', 'Import Project Links', 'Импорт ссылки проекта', '2017-07-13 20:51:34'),
(5251, 'ru', 'siteauditor', 'Insert links separated with comma', 'Вставьте ссылки, разделенные запятыми', '2017-07-13 20:51:34'),
(5252, 'ru', 'siteauditor', 'insertlinkssepcoma', 'Вставка ссылок через запятую, для исключения бесконечных ссылок в отчетах', '2017-07-13 20:51:34'),
(5253, 'ru', 'siteauditor', 'Link Reports', 'Отчеты по ссылкам', '2017-07-13 20:51:34'),
(5254, 'ru', 'siteauditor', 'Link Title', 'Заголовок ссылки', '2017-07-13 20:51:34'),
(5255, 'ru', 'siteauditor', 'Maximum number of pages to be checked', 'Максимальное количество страниц для проверки', '2017-07-13 20:51:34'),
(5256, 'ru', 'siteauditor', 'Maximum Pages', 'Максимум страниц', '2017-07-13 20:51:34'),
(5257, 'ru', 'siteauditor', 'No active projects found', 'Не активных проектов не найдено', '2017-07-13 20:51:34'),
(5258, 'ru', 'siteauditor', 'Nofollow', 'Не следует', '2017-07-13 20:51:34'),
(5259, 'ru', 'siteauditor', 'Number of pages is greater than', 'Количество страниц больше', '2017-07-13 20:51:34'),
(5260, 'ru', 'siteauditor', 'Number of pages should be greater than', 'Количество страниц должно быть более', '2017-07-13 20:51:34'),
(5261, 'ru', 'siteauditor', 'Page Details', 'Детали страниц', '2017-07-13 20:51:34'),
(5262, 'ru', 'siteauditor', 'Page Link', 'Ссылка страницы', '2017-07-13 20:51:34'),
(5263, 'ru', 'siteauditor', 'Page Links', 'Ссылки страниц', '2017-07-13 20:51:34'),
(5264, 'ru', 'siteauditor', 'Pages Found', 'Страница не существует', '2017-07-13 20:51:34'),
(5265, 'ru', 'siteauditor', 'pressescapetostopexecution', 'Нажмите пробел для остановки работы скрипта', '2017-07-13 20:51:34'),
(5266, 'ru', 'siteauditor', 'Project Summary', 'Краткое описание проекта', '2017-07-13 20:51:34'),
(5267, 'ru', 'siteauditor', 'Project Url', 'URL проекта', '2017-07-13 20:51:34'),
(5268, 'ru', 'siteauditor', 'projectalreadyexist', 'Проект данного сайта уже существуют', '2017-07-13 20:51:34'),
(5269, 'ru', 'siteauditor', 'Recheck Pages', 'Повторная проверка страниц', '2017-07-13 20:51:34'),
(5270, 'ru', 'siteauditor', 'Report Summary', 'Краткий отчет', '2017-07-13 20:51:34'),
(5271, 'ru', 'siteauditor', 'Run Project', 'Выполнить проект', '2017-07-13 20:51:34'),
(5272, 'ru', 'siteauditor', 'should start with', 'должна начинаться с', '2017-07-13 20:51:34'),
(5273, 'ru', 'siteauditor', 'Site Auditor Settings', 'Настройки аудитора сайта', '2017-07-13 20:51:34'),
(5274, 'ru', 'siteauditor', 'Store all links found in a page', 'Сохранять все ссылки, найденные на страницах', '2017-07-13 20:51:34'),
(5275, 'ru', 'siteauditor', 'The page description length is not between', 'Длина описания страниц не в пределах', '2017-07-13 20:51:34'),
(5276, 'ru', 'siteauditor', 'The page is brocken', 'Битые страницы', '2017-07-13 20:51:34'),
(5277, 'ru', 'siteauditor', 'The page is having exellent number of backlinks in', 'Страница с хорошим количеством обратных ссылок в', '2017-07-13 20:51:34'),
(5278, 'ru', 'siteauditor', 'The page is having exellent pagerank', 'Страницы с хорошим PageRank', '2017-07-13 20:51:34'),
(5279, 'ru', 'siteauditor', 'The page is having good number of backlinks in', 'Страницы, имеющие большое количество обратных ссылок на', '2017-07-13 20:51:34'),
(5280, 'ru', 'siteauditor', 'The page is having good pagerank', 'Страницы имеющие хороший PageRank', '2017-07-13 20:51:34'),
(5281, 'ru', 'siteauditor', 'The page is having poor pagerank', 'Страницы с низким PageRank', '2017-07-13 20:51:34'),
(5282, 'ru', 'siteauditor', 'The page is having very good pagerank', 'Страницы с очень высоким PageRank', '2017-07-13 20:51:34'),
(5283, 'ru', 'siteauditor', 'The page is not having backlinks in', 'Страницы не имеющие обратных ссылок на', '2017-07-13 20:51:34'),
(5284, 'ru', 'siteauditor', 'The page is not indexed in', 'Не проиндексированные страницы в', '2017-07-13 20:51:34'),
(5285, 'ru', 'siteauditor', 'The page keywords length is not between', 'Длина страницы ключевых слов не между', '2017-07-13 20:51:34'),
(5286, 'ru', 'siteauditor', 'The page title length is not between', 'Длина заголовка страницы не между', '2017-07-13 20:51:34'),
(5287, 'ru', 'siteauditor', 'The total number of links in page is greater than', 'Общее количество ссылок на странице больше', '2017-07-13 20:51:34'),
(5288, 'ru', 'siteauditor', 'to run project again if you stopped execution', 'запустить проект снова, если вы остановили выполнение', '2017-07-13 20:51:34'),
(5289, 'ru', 'siteauditor', 'to view the reports', 'Для просмотра отчетов', '2017-07-13 20:51:34'),
(5290, 'ru', 'siteauditor', 'Total Links', 'Всего ссылок', '2017-07-13 20:51:34'),
(5291, 'ru', 'siteauditor', 'totallinksgreaterallowed', 'Количество ссылок станет больше максимально разрешенных ссылок для одного проекта', '2017-07-13 20:51:34'),
(5292, 'nl', 'home', 'Indexed', 'Geïndexeerd', '2011-07-06 01:52:28'),
(5293, 'nl', 'keyword', 'Insert keywords separated with comma', 'Voeg zoekwoorden toe net komma gescheiden ', '2011-07-06 01:54:33'),
(5294, 'nl', 'label', 'Brocken', 'Kapot', '2014-01-08 02:37:43'),
(5295, 'nl', 'label', 'Comments', 'Commentaar', '2014-01-08 02:37:43'),
(5296, 'nl', 'label', 'Count', 'Aantal', '2014-01-08 02:37:43'),
(5297, 'nl', 'label', 'Exclude', 'Uitsluiten', '2014-01-08 02:37:43'),
(5298, 'nl', 'label', 'Include', 'Insluiten', '2014-01-08 02:37:43'),
(5299, 'nl', 'label', 'Project', 'Project', '2014-01-08 02:37:43'),
(5300, 'nl', 'label', 'Report Type', 'Rapport type', '2014-01-08 02:37:43'),
(5301, 'nl', 'label', 'Score', 'Score', '2014-01-08 02:37:43'),
(5302, 'nl', 'label', 'Total Results', 'Totaal resultaten', '2014-01-08 02:37:43'),
(5303, 'nl', 'label', 'Updated', 'Ge-update', '2014-01-08 02:37:43'),
(5304, 'nl', 'label', 'View Reports', 'Bekijk rapporten', '2014-01-08 02:37:43'),
(5305, 'nl', 'panel', 'Edit Project', 'Bewerk project', '2014-01-08 02:46:33'),
(5306, 'nl', 'panel', 'New Project', 'Nieuw project', '2014-01-08 02:46:33'),
(5307, 'nl', 'seotools', 'Auditor Projects', 'Auditor Projecten', '2011-07-06 02:20:43'),
(5308, 'nl', 'seotools', 'Auditor Reports', 'Auditor Rapporten ', '2011-07-06 02:20:43'),
(5309, 'nl', 'seotools', 'Auditor Settings', 'Auditor Instellingen', '2011-07-06 02:20:43'),
(5310, 'nl', 'seotools', 'Import Project Links', 'Importeer Project Links', '2011-07-06 02:20:43'),
(5311, 'nl', 'seotools', 'site-auditor', 'Site Auditor', '2011-07-06 02:20:43'),
(5312, 'nl', 'settings', 'Check for Updates', 'Controleer voor updates', '2014-01-08 02:51:05'),
(5313, 'nl', 'settings', 'SA_CRAWL_DELAY_TIME', 'Site auditor pauze tussen pagina''s', '2014-01-08 02:51:05'),
(5314, 'nl', 'settings', 'SA_MAX_NO_PAGES', 'Maximum aantal pagina''s toegestaan per website', '2014-01-08 02:51:05'),
(5315, 'nl', 'settings', 'versionnotuptodatemsg', 'Uw Seo Panel installatie is niet up to date. Download a.u.b. de nieuwste versie', '2014-01-08 02:51:05'),
(5316, 'nl', 'settings', 'Your Seo Panel installation is up to date', 'Uw Seo Panel installatie is up to date.', '2014-01-08 02:51:05'),
(5317, 'nl', 'siteauditor', 'Anchor', 'Anker', '2011-07-13 13:45:04'),
(5318, 'nl', 'siteauditor', 'anylinkcontainabovelinks', 'Alle links hierboven worden uitgesloten in de rapporten ', '2011-07-13 13:45:04'),
(5319, 'nl', 'siteauditor', 'anylinkcontainexcludesitemap', 'Alle links hierboven worden uitgesloten in de sitemap', '2011-07-13 13:45:04'),
(5320, 'nl', 'siteauditor', 'Check backlinks of pages', 'Controleer backlinks van de pagina\\''s', '2011-07-13 13:45:04'),
(5321, 'nl', 'siteauditor', 'Check broken links in a page', 'Controleer defecte links in een pagina', '2011-07-13 13:45:04'),
(5322, 'nl', 'siteauditor', 'Check google pagerank of pages', 'Controleer google pagerank van de pagina\\''s', '2011-07-13 13:45:04'),
(5323, 'nl', 'siteauditor', 'Check pages indexed or not', 'Controleer of de pagina\\''s geïndexeerd zijn', '2011-07-13 13:45:04'),
(5324, 'nl', 'siteauditor', 'Check Score', 'Controleer score', '2011-07-13 13:45:04'),
(5325, 'nl', 'siteauditor', 'checkborckenlinkwait', 'Controleer defecte links zal de tijd van de uitvoering vergroten van een project.', '2011-07-13 13:45:04'),
(5326, 'nl', 'siteauditor', 'Completed project execution', 'Voltooide project uitvoering', '2011-07-13 13:45:04'),
(5327, 'nl', 'siteauditor', 'Crawled', 'Onderzocht', '2011-07-13 13:45:04'),
(5328, 'nl', 'siteauditor', 'Crawled Pages', 'Onderzochte pagina\\''s', '2011-07-13 13:45:04'),
(5329, 'nl', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'succesvol Onderzocht! Wacht voor het onderzoeken van de volgende pagina voor', '2011-07-13 13:45:04');
INSERT INTO `texts` VALUES
(5330, 'nl', 'siteauditor', 'Crawling Page', 'Pagina aan het onderzoeken', '2011-07-13 13:45:04'),
(5331, 'nl', 'siteauditor', 'Duplicate Description', 'Dubbele omschrijving', '2011-07-13 13:45:04'),
(5332, 'nl', 'siteauditor', 'Duplicate Keywords', 'Dubbele zoekwoorden', '2011-07-13 13:45:04'),
(5333, 'nl', 'siteauditor', 'Duplicate Title', 'Dubbele titel', '2011-07-13 13:45:04'),
(5334, 'nl', 'siteauditor', 'Exclude links', 'Links uitsluiten', '2011-07-13 13:45:04'),
(5335, 'nl', 'siteauditor', 'Execute with cron', 'Voer uit met cron', '2011-07-13 13:45:04'),
(5336, 'nl', 'siteauditor', 'External', 'Extern', '2011-07-13 13:45:04'),
(5337, 'nl', 'siteauditor', 'External Links', 'Externe links', '2011-07-13 13:45:04'),
(5338, 'nl', 'siteauditor', 'Import Project Links', 'Importeer project links', '2011-07-13 13:45:04'),
(5339, 'nl', 'siteauditor', 'Insert links separated with comma', 'Voeg link toe, komma gescheiden', '2011-07-13 13:45:04'),
(5340, 'nl', 'siteauditor', 'insertlinkssepcoma', 'Voeg komma gescheiden links toe om oneindige links in rapporten uit te sluiten', '2011-07-13 13:45:04'),
(5341, 'nl', 'siteauditor', 'Link Reports', 'Link rapporten', '2011-07-13 13:45:04'),
(5342, 'nl', 'siteauditor', 'Link Title', 'Link titel', '2011-07-13 13:45:04'),
(5343, 'nl', 'siteauditor', 'Maximum number of pages to be checked', 'Maximaal aantal te controleren pagina\\''s', '2011-07-13 13:45:04'),
(5344, 'nl', 'siteauditor', 'Maximum Pages', 'Maximale pagina\\''s ', '2011-07-13 13:45:04'),
(5345, 'nl', 'siteauditor', 'No active projects found', 'Geen actieve projecten gevonden', '2011-07-13 13:45:04'),
(5346, 'nl', 'siteauditor', 'Nofollow', 'Niet volgen', '2011-07-13 13:45:04'),
(5347, 'nl', 'siteauditor', 'Number of pages is greater than', 'Aantal pagina\\''s is groter dan', '2011-07-13 13:45:04'),
(5348, 'nl', 'siteauditor', 'Number of pages should be greater than', 'Aantal pagina\\''s dient groter te zijn dan', '2011-07-13 13:45:04'),
(5349, 'nl', 'siteauditor', 'Page Details', 'Pagina details', '2011-07-13 13:45:04'),
(5350, 'nl', 'siteauditor', 'Page Link', 'Pagina link', '2011-07-13 13:45:04'),
(5351, 'nl', 'siteauditor', 'Page Links', 'Pagina links', '2011-07-13 13:45:04'),
(5352, 'nl', 'siteauditor', 'Pages Found', 'Gevonden pagina\\''s', '2011-07-13 13:45:04'),
(5353, 'nl', 'siteauditor', 'pressescapetostopexecution', 'Druk op escape om de uitvoering te stoppen.', '2011-07-13 13:45:04'),
(5354, 'nl', 'siteauditor', 'Project Summary', 'Project overzicht', '2011-07-13 13:45:04'),
(5355, 'nl', 'siteauditor', 'Project Url', 'Project Url', '2011-07-13 13:45:04'),
(5356, 'nl', 'siteauditor', 'projectalreadyexist', 'Project voor deze website bestaat al', '2011-07-13 13:45:04'),
(5357, 'nl', 'siteauditor', 'Recheck Pages', 'Controleer pagina\\''s opnieuw', '2011-07-13 13:45:04'),
(5358, 'nl', 'siteauditor', 'Report Summary', 'Rapport overzicht', '2011-07-13 13:45:04'),
(5359, 'nl', 'siteauditor', 'Run Project', 'Voer project uit', '2011-07-13 13:45:04'),
(5360, 'nl', 'siteauditor', 'should start with', 'moet beginnen met', '2011-07-13 13:45:04'),
(5361, 'nl', 'siteauditor', 'Site Auditor Settings', 'Site auditor instellingen', '2011-07-13 13:45:04'),
(5362, 'nl', 'siteauditor', 'Store all links found in a page', 'Sla alle links op in een pagina', '2011-07-13 13:45:04'),
(5363, 'nl', 'siteauditor', 'The page description length is not between', 'De pagina omschrijving lengte is niet tussen', '2011-07-13 13:45:04'),
(5364, 'nl', 'siteauditor', 'The page is brocken', 'De pagina is defect', '2011-07-13 13:45:04'),
(5365, 'nl', 'siteauditor', 'The page is having exellent number of backlinks in', 'De pagina heeft een perfecte hoeveelheid backlinks', '2011-07-13 13:45:04'),
(5366, 'nl', 'siteauditor', 'The page is having exellent pagerank', 'De pagina heeft een perfecte pagerank', '2011-07-13 13:45:04'),
(5367, 'nl', 'siteauditor', 'The page is having good number of backlinks in', 'De pagina heeft een goede hoeveelheid backlinks', '2011-07-13 13:45:04'),
(5368, 'nl', 'siteauditor', 'The page is having good pagerank', 'De pagina heeft een goede pagerank', '2011-07-13 13:45:04'),
(5369, 'nl', 'siteauditor', 'The page is having poor pagerank', 'De pagina heeft een matige hoeveelheid backlinks', '2011-07-13 13:45:04'),
(5370, 'nl', 'siteauditor', 'The page is having very good pagerank', 'De pagina heeft een erg goede pagerank', '2011-07-13 13:45:04'),
(5371, 'nl', 'siteauditor', 'The page is not having backlinks in', 'De pagina heeft een geen backlinks in', '2011-07-13 13:45:04'),
(5372, 'nl', 'siteauditor', 'The page is not indexed in', 'De pagina is niet geïndexeerd in', '2011-07-13 13:45:04'),
(5373, 'nl', 'siteauditor', 'The page keywords length is not between', 'De pagina zoekwoorden lengte is niet tussen', '2011-07-13 13:45:04'),
(5374, 'nl', 'siteauditor', 'The page title length is not between', 'De pagina titel lengte is niet tussen', '2011-07-13 13:45:04'),
(5375, 'nl', 'siteauditor', 'The total number of links in page is greater than', 'Het totaal aantal links op de pagina is groter dan', '2011-07-13 13:45:04'),
(5376, 'nl', 'siteauditor', 'to run project again if you stopped execution', 'om het project uit te voeren als u de uitvoering heeft gestopt', '2011-07-13 13:45:04'),
(5377, 'nl', 'siteauditor', 'to view the reports', 'om rapporten te bekijken', '2011-07-13 13:45:04'),
(5378, 'nl', 'siteauditor', 'Total Links', 'Totaal aantal links', '2011-07-13 13:45:04'),
(5379, 'nl', 'siteauditor', 'totallinksgreaterallowed', 'Totaal aantal links wordt groter dan de maximaal aantal links toegestaan voor het project', '2011-07-13 13:45:04'),
(5380, 'zh', 'home', 'Indexed', '索引', '2011-07-06 10:02:25'),
(5381, 'zh', 'keyword', 'Insert keywords separated with comma', '插入关键词(可逗号分隔多个)', '2011-07-06 10:03:07'),
(5382, 'zh', 'label', 'Brocken', '损坏', '2014-05-15 21:47:51'),
(5383, 'zh', 'label', 'Comments', '评论', '2014-05-15 21:47:51'),
(5384, 'zh', 'label', 'Count', '数量', '2014-05-15 21:47:51'),
(5385, 'zh', 'label', 'Exclude', '除去', '2014-05-15 21:47:51'),
(5386, 'zh', 'label', 'Include', '包括', '2014-05-15 21:47:51'),
(5387, 'zh', 'label', 'Project', '项目', '2014-05-15 21:47:51'),
(5388, 'zh', 'label', 'Report Type', '报告类型', '2014-05-15 21:47:51'),
(5389, 'zh', 'label', 'Score', '得分', '2014-05-15 21:47:51'),
(5390, 'zh', 'label', 'Total Results', '总结果', '2014-05-15 21:47:51'),
(5391, 'zh', 'label', 'Updated', '更新', '2014-05-15 21:47:51'),
(5392, 'zh', 'label', 'View Reports', '查看报告', '2014-05-15 21:47:51'),
(5393, 'zh', 'panel', 'Edit Project', '编辑项目', '2014-05-15 21:48:57'),
(5394, 'zh', 'panel', 'New Project', '新的项目', '2014-05-15 21:48:57'),
(5395, 'zh', 'seotools', 'Auditor Projects', '审计项目', '2011-07-06 10:05:37'),
(5396, 'zh', 'seotools', 'Auditor Reports', '审计报告', '2011-07-06 10:05:37'),
(5397, 'zh', 'seotools', 'Auditor Settings', '审计设置', '2011-07-06 10:05:37'),
(5398, 'zh', 'seotools', 'Import Project Links', '导入项目链接', '2011-07-06 10:05:37'),
(5399, 'zh', 'seotools', 'site-auditor', '站点审计器', '2011-07-06 10:05:37'),
(5400, 'zh', 'settings', 'Check for Updates', '检测更新', '2014-05-15 21:56:30'),
(5401, 'zh', 'settings', 'SA_CRAWL_DELAY_TIME', '站点审计器停留抓取每张网页', '2014-05-15 21:56:30'),
(5402, 'zh', 'settings', 'SA_MAX_NO_PAGES', '每个站点最大数量页面', '2014-05-15 21:56:30'),
(5403, 'zh', 'settings', 'versionnotuptodatemsg', '你的Seo Panel安装没有更新. 请下载新版本', '2014-05-15 21:56:30'),
(5404, 'zh', 'settings', 'Your Seo Panel installation is up to date', '你的Seo Panel安装没有更新.', '2014-05-15 21:56:30'),
(5405, 'zh', 'siteauditor', 'Anchor', '锚标记', '2011-07-06 10:45:08'),
(5406, 'zh', 'siteauditor', 'anylinkcontainabovelinks', '以上的链接均会被在报告中排除', '2011-07-06 10:45:08'),
(5407, 'zh', 'siteauditor', 'anylinkcontainexcludesitemap', '以上的链接均会被在站点地图中排除', '2011-07-06 10:45:08'),
(5408, 'zh', 'siteauditor', 'Check backlinks of pages', '检查页面的外部链接', '2011-07-06 10:45:08'),
(5409, 'zh', 'siteauditor', 'Check broken links in a page', '检查页面的错误连接', '2011-07-06 10:45:08'),
(5410, 'zh', 'siteauditor', 'Check google pagerank of pages', '检查页面的PR', '2011-07-06 10:45:08'),
(5411, 'zh', 'siteauditor', 'Check pages indexed or not', '检测页面索引状态', '2011-07-06 10:45:08'),
(5412, 'zh', 'siteauditor', 'Check Score', '检测得分', '2011-07-06 10:45:08'),
(5413, 'zh', 'siteauditor', 'checkborckenlinkwait', '检测页面的错误链接将增加一个项目的执行时间', '2011-07-06 10:45:08'),
(5414, 'zh', 'siteauditor', 'Completed project execution', '完成项目执行', '2011-07-06 10:45:08'),
(5415, 'zh', 'siteauditor', 'Crawled', '被抓取', '2011-07-06 10:45:08'),
(5416, 'zh', 'siteauditor', 'Crawled Pages', '被抓取的页面', '2011-07-06 10:45:08'),
(5417, 'zh', 'siteauditor', 'crawledsuccesssfullywaitfornext', '抓取成功!等待抓取下一页面', '2011-07-06 10:45:08'),
(5418, 'zh', 'siteauditor', 'Crawling Page', '抓取页面', '2011-07-06 10:45:08'),
(5419, 'zh', 'siteauditor', 'Duplicate Description', '重复的描述', '2011-07-06 10:45:08'),
(5420, 'zh', 'siteauditor', 'Duplicate Keywords', '重复的关键词', '2011-07-06 10:45:08'),
(5421, 'zh', 'siteauditor', 'Duplicate Title', '重复的标题', '2011-07-06 10:45:08'),
(5422, 'zh', 'siteauditor', 'Exclude links', '排除连接', '2011-07-06 10:45:08'),
(5423, 'zh', 'siteauditor', 'Execute with cron', 'Cron任务执行', '2011-07-06 10:45:08'),
(5424, 'zh', 'siteauditor', 'External', '外部的', '2011-07-06 10:45:08'),
(5425, 'zh', 'siteauditor', 'External Links', '外部的链接', '2011-07-06 10:45:08'),
(5426, 'zh', 'siteauditor', 'Import Project Links', '导入项目链接', '2011-07-06 10:45:08'),
(5427, 'zh', 'siteauditor', 'Insert links separated with comma', '插入链接(可逗号分隔多个链接)', '2011-07-06 10:45:08'),
(5428, 'zh', 'siteauditor', 'insertlinkssepcoma', '插入需要从报告中排除的链接', '2011-07-06 10:45:08'),
(5429, 'zh', 'siteauditor', 'Link Reports', '链接报告', '2011-07-06 10:45:08'),
(5430, 'zh', 'siteauditor', 'Link Title', '链接标题', '2011-07-06 10:45:08'),
(5431, 'zh', 'siteauditor', 'Maximum number of pages to be checked', '最大检测页面数量', '2011-07-06 10:45:08'),
(5432, 'zh', 'siteauditor', 'Maximum Pages', '最大数量页面', '2011-07-06 10:45:08'),
(5433, 'zh', 'siteauditor', 'No active projects found', '没有被激活的项目被发现', '2011-07-06 10:45:08'),
(5434, 'zh', 'siteauditor', 'Nofollow', 'Nofollow', '2011-07-06 10:45:08'),
(5435, 'zh', 'siteauditor', 'Number of pages is greater than', '页面数量更好优于', '2011-07-06 10:45:08'),
(5436, 'zh', 'siteauditor', 'Number of pages should be greater than', '页面数量应该更好优于', '2011-07-06 10:45:08'),
(5437, 'zh', 'siteauditor', 'Page Details', '页面详情', '2011-07-06 10:45:08'),
(5438, 'zh', 'siteauditor', 'Page Link', '页面链接', '2011-07-06 10:45:08'),
(5439, 'zh', 'siteauditor', 'Page Links', '页面链接', '2011-07-06 10:45:08'),
(5440, 'zh', 'siteauditor', 'Pages Found', '页面发现', '2011-07-06 10:45:08'),
(5441, 'zh', 'siteauditor', 'pressescapetostopexecution', '按ESC键来停止脚本执行', '2011-07-06 10:45:08'),
(5442, 'zh', 'siteauditor', 'Project Summary', '项目总汇', '2011-07-06 10:45:08'),
(5443, 'zh', 'siteauditor', 'Project Url', '项目URL', '2011-07-06 10:45:08'),
(5444, 'zh', 'siteauditor', 'projectalreadyexist', '该网站的项目已经存在', '2011-07-06 10:45:08'),
(5445, 'zh', 'siteauditor', 'Recheck Pages', '重新检测页面', '2011-07-06 10:45:08'),
(5446, 'zh', 'siteauditor', 'Report Summary', '报告总汇', '2011-07-06 10:45:08'),
(5447, 'zh', 'siteauditor', 'Run Project', '运行项目', '2011-07-06 10:45:08'),
(5448, 'zh', 'siteauditor', 'should start with', '应该开始于', '2011-07-06 10:45:08'),
(5449, 'zh', 'siteauditor', 'Site Auditor Settings', '站点审计设置', '2011-07-06 10:45:08'),
(5450, 'zh', 'siteauditor', 'Store all links found in a page', '存储页面的所有链接', '2011-07-06 10:45:08'),
(5451, 'zh', 'siteauditor', 'The page description length is not between', '该页面的描述长度没有位于', '2011-07-06 10:45:08'),
(5452, 'zh', 'siteauditor', 'The page is brocken', '该页面已经损坏', '2011-07-06 10:45:08'),
(5453, 'zh', 'siteauditor', 'The page is having exellent number of backlinks in', '该页面拥有高质量的数量反链在', '2011-07-06 10:45:08'),
(5454, 'zh', 'siteauditor', 'The page is having exellent pagerank', '该页面拥有高质量的PR', '2011-07-06 10:45:08'),
(5455, 'zh', 'siteauditor', 'The page is having good number of backlinks in', '该页面拥有不错的反链在', '2011-07-06 10:45:08'),
(5456, 'zh', 'siteauditor', 'The page is having good pagerank', '该页面拥有较好的PR', '2011-07-06 10:45:08'),
(5457, 'zh', 'siteauditor', 'The page is having poor pagerank', '该页面拥有较差的PR', '2011-07-06 10:45:08'),
(5458, 'zh', 'siteauditor', 'The page is having very good pagerank', '该页面拥有非常不错的PR', '2011-07-06 10:45:08'),
(5459, 'zh', 'siteauditor', 'The page is not having backlinks in', '该页面没有拥有反链在', '2011-07-06 10:45:08'),
(5460, 'zh', 'siteauditor', 'The page is not indexed in', '该页面没有被索引在', '2011-07-06 10:45:08'),
(5461, 'zh', 'siteauditor', 'The page keywords length is not between', '该页面的关键词长度没有位于', '2011-07-06 10:45:08'),
(5462, 'zh', 'siteauditor', 'The page title length is not between', '该页面的标题长度没有位于', '2011-07-06 10:45:08'),
(5463, 'zh', 'siteauditor', 'The total number of links in page is greater than', '所有页面链接数量优于', '2011-07-06 10:45:08'),
(5464, 'zh', 'siteauditor', 'to run project again if you stopped execution', '如果你停止项目,请重新运行项目', '2011-07-06 10:45:08'),
(5465, 'zh', 'siteauditor', 'to view the reports', '浏览报告', '2011-07-06 10:45:08'),
(5466, 'zh', 'siteauditor', 'Total Links', '全部链接', '2011-07-06 10:45:08'),
(5467, 'zh', 'siteauditor', 'totallinksgreaterallowed', '全部链接将优于可允许的项目最大链接', '2011-07-06 10:45:08'),
(5468, 'cn', 'home', 'Indexed', '索引', '2011-07-06 10:47:27'),
(5469, 'cn', 'keyword', 'Insert keywords separated with comma', '插入關鍵詞(可逗號分隔多個)', '2011-07-06 10:50:02'),
(5470, 'cn', 'label', 'Brocken', '損壞', '2014-01-09 20:35:37'),
(5471, 'cn', 'label', 'Comments', '評論', '2014-01-09 20:35:37'),
(5472, 'cn', 'label', 'Count', '數量', '2014-01-09 20:35:37'),
(5473, 'cn', 'label', 'Exclude', '排除', '2014-01-09 20:35:37'),
(5474, 'cn', 'label', 'Include', '包括', '2014-01-09 20:35:37'),
(5475, 'cn', 'label', 'Project', '項目', '2014-01-09 20:35:37'),
(5476, 'cn', 'label', 'Report Type', '報告類型', '2014-01-09 20:35:37'),
(5477, 'cn', 'label', 'Score', '得分', '2014-01-09 20:35:37'),
(5478, 'cn', 'label', 'Total Results', '總結果', '2014-01-09 20:35:37'),
(5479, 'cn', 'label', 'Updated', '更新', '2014-01-09 20:35:37'),
(5480, 'cn', 'label', 'View Reports', '查看報告', '2014-01-09 20:35:37'),
(5481, 'cn', 'panel', 'Edit Project', '編輯項目', '2014-01-09 20:37:31'),
(5482, 'cn', 'panel', 'New Project', '新的項目', '2014-01-09 20:37:31'),
(5483, 'cn', 'seotools', 'Auditor Projects', '審計項目', '2011-07-06 10:55:41'),
(5484, 'cn', 'seotools', 'Auditor Reports', '審計報告', '2011-07-06 10:55:41'),
(5485, 'cn', 'seotools', 'Auditor Settings', '審計設置', '2011-07-06 10:55:41'),
(5486, 'cn', 'seotools', 'Import Project Links', '導入項目鏈接', '2011-07-06 10:55:41'),
(5487, 'cn', 'seotools', 'site-auditor', '站點審計器', '2011-07-06 10:55:41'),
(5488, 'cn', 'settings', 'Check for Updates', '檢測更新', '2014-01-09 21:04:14'),
(5489, 'cn', 'settings', 'SA_CRAWL_DELAY_TIME', '站點審計器停留抓取每張網頁', '2014-01-09 21:04:14'),
(5490, 'cn', 'settings', 'SA_MAX_NO_PAGES', '每個站點最大數量頁面', '2014-01-09 21:04:14'),
(5491, 'cn', 'settings', 'versionnotuptodatemsg', '你的Seo Panel安裝沒有更新. 請下載新版本', '2014-01-09 21:04:14'),
(5492, 'cn', 'settings', 'Your Seo Panel installation is up to date', '你的Seo Panel安裝沒有更新.', '2014-01-09 21:04:14'),
(5493, 'cn', 'siteauditor', 'Anchor', '錨標記', '2011-07-06 11:09:13'),
(5494, 'cn', 'siteauditor', 'anylinkcontainabovelinks', '以上的鏈接均會被在報告中排除', '2011-07-06 11:09:13'),
(5495, 'cn', 'siteauditor', 'anylinkcontainexcludesitemap', '以上的鏈接均會被在站點地圖中排除', '2011-07-06 11:09:13'),
(5496, 'cn', 'siteauditor', 'Check backlinks of pages', '檢查頁面的外部鏈接', '2011-07-06 11:09:13'),
(5497, 'cn', 'siteauditor', 'Check broken links in a page', '檢查頁面的錯誤連接', '2011-07-06 11:09:13'),
(5498, 'cn', 'siteauditor', 'Check google pagerank of pages', '檢查頁面的PR', '2011-07-06 11:09:13'),
(5499, 'cn', 'siteauditor', 'Check pages indexed or not', '檢測頁面索引狀態', '2011-07-06 11:09:13'),
(5500, 'cn', 'siteauditor', 'Check Score', '檢測得分', '2011-07-06 11:09:13'),
(5501, 'cn', 'siteauditor', 'checkborckenlinkwait', '檢測頁面的錯誤鏈接將增加一個項目的執行時間', '2011-07-06 11:09:13'),
(5502, 'cn', 'siteauditor', 'Completed project execution', '完成項目執行', '2011-07-06 11:09:13'),
(5503, 'cn', 'siteauditor', 'Crawled', '被抓取', '2011-07-06 11:09:13'),
(5504, 'cn', 'siteauditor', 'Crawled Pages', '被抓取的頁面', '2011-07-06 11:09:13'),
(5505, 'cn', 'siteauditor', 'crawledsuccesssfullywaitfornext', '抓取成功!等待抓取下一頁面', '2011-07-06 11:09:13'),
(5506, 'cn', 'siteauditor', 'Crawling Page', '抓取頁面', '2011-07-06 11:09:13'),
(5507, 'cn', 'siteauditor', 'Duplicate Description', '重複的描述', '2011-07-06 11:09:13'),
(5508, 'cn', 'siteauditor', 'Duplicate Keywords', '重複的關鍵詞', '2011-07-06 11:09:13'),
(5509, 'cn', 'siteauditor', 'Duplicate Title', '重複的標題', '2011-07-06 11:09:13'),
(5510, 'cn', 'siteauditor', 'Exclude links', '排除連接', '2011-07-06 11:09:13'),
(5511, 'cn', 'siteauditor', 'Execute with cron', 'Cron任務執行', '2011-07-06 11:09:13'),
(5512, 'cn', 'siteauditor', 'External', '外部的', '2011-07-06 11:09:13'),
(5513, 'cn', 'siteauditor', 'External Links', '外部的鏈接', '2011-07-06 11:09:13'),
(5514, 'cn', 'siteauditor', 'Import Project Links', '導入項目鏈接', '2011-07-06 11:09:13'),
(5515, 'cn', 'siteauditor', 'Insert links separated with comma', '插入鏈接(可逗號分隔多個鏈接)', '2011-07-06 11:09:13'),
(5516, 'cn', 'siteauditor', 'insertlinkssepcoma', '插入需要從報告中排除的鏈接', '2011-07-06 11:09:13'),
(5517, 'cn', 'siteauditor', 'Link Reports', '鏈接報告', '2011-07-06 11:09:13'),
(5518, 'cn', 'siteauditor', 'Link Title', '鏈接標題', '2011-07-06 11:09:13'),
(5519, 'cn', 'siteauditor', 'Maximum number of pages to be checked', '最大檢測頁面數量', '2011-07-06 11:09:13'),
(5520, 'cn', 'siteauditor', 'Maximum Pages', '最大數量頁面', '2011-07-06 11:09:13'),
(5521, 'cn', 'siteauditor', 'No active projects found', '沒有被激活的項目被發現', '2011-07-06 11:09:13'),
(5522, 'cn', 'siteauditor', 'Nofollow', 'Nofollow', '2011-07-06 11:09:13'),
(5523, 'cn', 'siteauditor', 'Number of pages is greater than', '頁面數量更好優於', '2011-07-06 11:09:13'),
(5524, 'cn', 'siteauditor', 'Number of pages should be greater than', '頁面數量應該更好優於', '2011-07-06 11:09:13'),
(5525, 'cn', 'siteauditor', 'Page Details', '頁面詳情', '2011-07-06 11:09:13'),
(5526, 'cn', 'siteauditor', 'Page Link', '頁面鏈接', '2011-07-06 11:09:13'),
(5527, 'cn', 'siteauditor', 'Page Links', '頁面鏈接', '2011-07-06 11:09:13'),
(5528, 'cn', 'siteauditor', 'Pages Found', '頁面發現', '2011-07-06 11:09:13'),
(5529, 'cn', 'siteauditor', 'pressescapetostopexecution', '按ESC鍵來停止腳本執行', '2011-07-06 11:09:13'),
(5530, 'cn', 'siteauditor', 'Project Summary', '項目總匯', '2011-07-06 11:09:13'),
(5531, 'cn', 'siteauditor', 'Project Url', '項目URL', '2011-07-06 11:09:13'),
(5532, 'cn', 'siteauditor', 'projectalreadyexist', '該網站的項目已經存在', '2011-07-06 11:09:13'),
(5533, 'cn', 'siteauditor', 'Recheck Pages', '重新檢測頁面', '2011-07-06 11:09:13'),
(5534, 'cn', 'siteauditor', 'Report Summary', '報告總匯', '2011-07-06 11:09:13'),
(5535, 'cn', 'siteauditor', 'Run Project', '運行項目', '2011-07-06 11:09:13'),
(5536, 'cn', 'siteauditor', 'should start with', '應該開始於', '2011-07-06 11:09:13'),
(5537, 'cn', 'siteauditor', 'Site Auditor Settings', '站點審計設置', '2011-07-06 11:09:13'),
(5538, 'cn', 'siteauditor', 'Store all links found in a page', '存儲頁面的所有鏈接', '2011-07-06 11:09:13'),
(5539, 'cn', 'siteauditor', 'The page description length is not between', '該頁面的描述長度沒有位於', '2011-07-06 11:09:13'),
(5540, 'cn', 'siteauditor', 'The page is brocken', '該頁面已經損壞', '2011-07-06 11:09:13'),
(5541, 'cn', 'siteauditor', 'The page is having exellent number of backlinks in', '該頁面擁有高質量的數量反鏈在', '2011-07-06 11:09:13'),
(5542, 'cn', 'siteauditor', 'The page is having exellent pagerank', '該頁面擁有高質量的PR', '2011-07-06 11:09:13'),
(5543, 'cn', 'siteauditor', 'The page is having good number of backlinks in', '該頁面擁有不錯的反鏈在', '2011-07-06 11:09:13'),
(5544, 'cn', 'siteauditor', 'The page is having good pagerank', '該頁面擁有較好的PR', '2011-07-06 11:09:13'),
(5545, 'cn', 'siteauditor', 'The page is having poor pagerank', '該頁面擁有較差的PR', '2011-07-06 11:09:13'),
(5546, 'cn', 'siteauditor', 'The page is having very good pagerank', '該頁面擁有非常不錯的PR', '2011-07-06 11:09:13'),
(5547, 'cn', 'siteauditor', 'The page is not having backlinks in', '該頁面沒有擁有反鏈在', '2011-07-06 11:09:13'),
(5548, 'cn', 'siteauditor', 'The page is not indexed in', '該頁面沒有被索引在', '2011-07-06 11:09:13'),
(5549, 'cn', 'siteauditor', 'The page keywords length is not between', '該頁面的關鍵詞長度沒有位於', '2011-07-06 11:09:13'),
(5550, 'cn', 'siteauditor', 'The page title length is not between', '該頁面的標題長度沒有位於', '2011-07-06 11:09:13'),
(5551, 'cn', 'siteauditor', 'The total number of links in page is greater than', '所有頁面鏈接數量優於', '2011-07-06 11:09:13'),
(5552, 'cn', 'siteauditor', 'to run project again if you stopped execution', '如果你停止項目,請重新運行項目', '2011-07-06 11:09:13'),
(5553, 'cn', 'siteauditor', 'to view the reports', '瀏覽報告', '2011-07-06 11:09:13'),
(5554, 'cn', 'siteauditor', 'Total Links', '全部鏈接', '2011-07-06 11:09:13'),
(5555, 'cn', 'siteauditor', 'totallinksgreaterallowed', '全部鏈接將優於可允許的項目最大鏈接', '2011-07-06 11:09:13'),
(5556, 'da', 'directory', 'Add back to directory list', 'Tilføj tilbage til directory liste', '2013-01-15 03:40:16'),
(5557, 'da', 'directory', 'Approved', 'Godkendt', '2013-01-15 03:40:16'),
(5558, 'da', 'directory', 'Captcha', 'Captcha', '2013-01-15 03:40:16'),
(5559, 'da', 'directory', 'categorynote', 'Kategorier, skal du adskille dem med komma efter prioritet. Start med Top prioritet kategori.', '2013-01-15 03:40:16'),
(5560, 'da', 'directory', 'Check Directory Status', 'Tjek Bibliotek Status ', '2013-01-15 03:40:16'),
(5561, 'da', 'directory', 'Check Directory Submission Status', 'Tjek Bibliotek Indsendelse Status ', '2013-01-15 03:40:16'),
(5562, 'da', 'directory', 'clicktoproceeddirsts', 'Klik på Fortsæt b> for at tjekke Bibliotek status.', '2013-01-15 03:40:16'),
(5563, 'da', 'directory', 'Confirmation', 'Bekræftelse', '2013-01-15 03:40:16'),
(5564, 'da', 'directory', 'desnote', 'Nogle biblioteker kræver dog minimum 150 tegn i feltet Beskrivelse.', '2013-01-15 03:40:16'),
(5565, 'da', 'directory', 'Directories with out captcha', 'Biblioteker uden Captcha', '2013-01-15 03:40:16'),
(5566, 'da', 'directory', 'Directory Submission Reports', 'Bibliotek Indsendelses Rapporter', '2013-01-15 03:40:16'),
(5567, 'da', 'directory', 'Enter the code shown', 'Indtast den viste kode', '2013-01-15 03:40:16'),
(5568, 'da', 'directory', 'nocatnote', 'De indsendte kategori ikke findes i indsendelse side. Klik på Reload b> eller Spring b>', '2013-01-15 03:40:16'),
(5569, 'da', 'directory', 'nodirnote', 'Ingen Aktive biblioteker er fundet', '2013-01-15 03:40:16'),
(5570, 'da', 'directory', 'nosuccessnote', 'Der blev ikke modtaget succes beskeden, Check venligst din mail for at bekræfte beskeden', '2013-01-15 03:40:16'),
(5571, 'da', 'directory', 'optionalnote', 'Mulige titler og beskrivelser af tilfældige titler og beskrivelser i biblioteket, for bedre resultater', '2013-01-15 03:40:16'),
(5572, 'da', 'directory', 'Owner Email', 'Ejerens email', '2013-01-15 03:40:16'),
(5573, 'da', 'directory', 'Owner Name', 'Ejerens navn', '2013-01-15 03:40:16'),
(5574, 'da', 'directory', 'Pending', 'Afventende', '2013-01-15 03:40:16'),
(5575, 'da', 'directory', 'Please select a website to proceed', 'Venligst vælg et websted for at forsætte', '2013-01-15 03:40:16'),
(5576, 'da', 'directory', 'selectwebsiteproceed', 'Vælg et Websted for forsætte tilmeldingen i biblioteket. tjek biblioteker uden captcha for at tilmelde biblioteker uden captcha', '2013-01-15 03:40:16'),
(5577, 'da', 'directory', 'selectwebsiteschecksub', 'Vælg et Websted for Forsætte check bibliotekets tilmelding', '2013-01-15 03:40:16'),
(5578, 'da', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi automatisk bibliotek tilmeldings værktøj', '2013-01-15 03:40:16'),
(5579, 'da', 'directory', 'spamemailnote', 'Nogle biblioteker kan sende spam, vi anbefaler at man IKKE tilføjer sin primære email adresse', '2013-01-15 03:40:16'),
(5580, 'da', 'directory', 'Submission Details', 'Indsendelses detaljer', '2013-01-15 03:40:16'),
(5581, 'da', 'directory', 'Submit Description', 'tilmeld beskrivelse', '2013-01-15 03:40:16'),
(5582, 'da', 'directory', 'Submit Keywords', 'Tilmeld nøgleord', '2013-01-15 03:40:16'),
(5583, 'da', 'directory', 'Submit Title', 'Tilmeld titel', '2013-01-15 03:40:16'),
(5584, 'da', 'directory', 'Website Category', 'Webside kategori', '2013-01-15 03:40:16'),
(5585, 'da', 'directory', 'Website Url', 'Websted URL', '2013-01-15 03:40:16'),
(5586, 'bg', 'home', 'Indexed', 'Индексирани', '2011-07-07 05:34:28'),
(5587, 'bg', 'keyword', 'Insert keywords separated with comma', 'Въведете ключови думи разделени със запетайка', '2016-12-18 22:06:16'),
(5588, 'bg', 'label', 'Brocken', 'Повреден', '2018-08-21 11:09:26'),
(5589, 'bg', 'label', 'Comments', 'Коментари', '2018-08-21 11:09:26'),
(5590, 'bg', 'label', 'Count', 'Брой', '2018-08-21 11:09:26'),
(5591, 'bg', 'label', 'Exclude', 'Изключи', '2018-08-21 11:09:26'),
(5592, 'bg', 'label', 'Include', 'Включи', '2018-08-21 11:09:26'),
(5593, 'bg', 'label', 'Project', 'Проект', '2018-08-21 11:09:26'),
(5594, 'bg', 'label', 'Report Type', 'Тип доклад', '2018-08-21 11:09:26'),
(5595, 'bg', 'label', 'Score', 'Резултат', '2018-08-21 11:09:26'),
(5596, 'bg', 'label', 'Total Results', 'Общи резултати', '2018-08-21 11:09:26'),
(5597, 'bg', 'label', 'Updated', 'Обновен', '2018-08-21 11:09:26'),
(5598, 'bg', 'label', 'View Reports', 'Прегледай доклади', '2018-08-21 11:09:26'),
(5599, 'bg', 'panel', 'Edit Project', 'Редакция', '2018-08-21 11:14:04'),
(5600, 'bg', 'panel', 'New Project', 'Нов проект', '2018-08-21 11:14:04'),
(5601, 'bg', 'seotools', 'Auditor Projects', 'Одитор Проекти', '2018-08-21 11:21:10'),
(5602, 'bg', 'seotools', 'Auditor Reports', 'Одитор Доклади', '2018-08-21 11:21:10'),
(5603, 'bg', 'seotools', 'Auditor Settings', 'Настройки на Одитора', '2018-08-21 11:21:10'),
(5604, 'bg', 'seotools', 'Import Project Links', 'Импортиране линкове на проекта', '2018-08-21 11:21:10'),
(5605, 'bg', 'seotools', 'site-auditor', 'Сайт Одитор', '2018-08-21 11:21:10'),
(5606, 'bg', 'settings', 'Check for Updates', 'Проверка за обновления', '2018-08-21 11:24:42'),
(5607, 'bg', 'settings', 'SA_CRAWL_DELAY_TIME', 'Забавяне, при обхождане на страниците, от Сайт Одитора ', '2018-08-21 11:24:42'),
(5608, 'bg', 'settings', 'SA_MAX_NO_PAGES', 'Максимален позволен брой страници за уебсайт', '2018-08-21 11:24:42'),
(5609, 'bg', 'settings', 'versionnotuptodatemsg', 'Излязла е по-нова версия на Seo Panel. Моля, изтеглете новата версия.', '2018-08-21 11:24:42'),
(5610, 'bg', 'settings', 'Your Seo Panel installation is up to date', 'Вашият Seo Panel e последна версия.', '2018-08-21 11:24:42'),
(5611, 'bg', 'siteauditor', 'Anchor', 'Връзка', '2018-08-21 11:25:49'),
(5612, 'bg', 'siteauditor', 'anylinkcontainabovelinks', 'Всички линкове, съдържащи горепосочените, ще бъдат изключени от докладите', '2018-08-21 11:25:49'),
(5613, 'bg', 'siteauditor', 'anylinkcontainexcludesitemap', 'Всички линкове, съдържащи горепосочените, ще бъдат изключени от картата на сайта', '2018-08-21 11:25:49'),
(5614, 'bg', 'siteauditor', 'Check backlinks of pages', 'Проверка на беклинковете на страниците', '2018-08-21 11:25:49'),
(5615, 'bg', 'siteauditor', 'Check broken links in a page', 'Проверка и на повредени линкове по страница', '2018-08-21 11:25:49'),
(5616, 'bg', 'siteauditor', 'Check google pagerank of pages', 'Проверка на гугъл пейдж ранг на страниците', '2018-08-21 11:25:49'),
(5617, 'bg', 'siteauditor', 'Check pages indexed or not', 'Проверка на страниците индексирани или не', '2018-08-21 11:25:49'),
(5618, 'bg', 'siteauditor', 'Check Score', 'Проверка', '2018-08-21 11:25:49'),
(5619, 'bg', 'siteauditor', 'checkborckenlinkwait', 'Проверката на повредени линкове, ще увеличи времето за изпълнение на проекта', '2018-08-21 11:25:49'),
(5620, 'bg', 'siteauditor', 'Completed project execution', 'Завършено изпълнение на проекта', '2018-08-21 11:25:49'),
(5621, 'bg', 'siteauditor', 'Crawled', 'Обходени', '2018-08-21 11:25:49'),
(5622, 'bg', 'siteauditor', 'Crawled Pages', 'Обходени страници', '2018-08-21 11:25:49'),
(5623, 'bg', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'обходена успешно! Изчакване на обхождането на следващата страница за', '2018-08-21 11:25:49'),
(5624, 'bg', 'siteauditor', 'Crawling Page', 'Обхождане на страница', '2018-08-21 11:25:49'),
(5625, 'bg', 'siteauditor', 'Duplicate Description', 'Дубликирано Описание', '2018-08-21 11:25:49'),
(5626, 'bg', 'siteauditor', 'Duplicate Keywords', 'Дубликирани Ключови думи', '2018-08-21 11:25:49'),
(5627, 'bg', 'siteauditor', 'Duplicate Title', 'Дубликирано Заглавие', '2018-08-21 11:25:49'),
(5628, 'bg', 'siteauditor', 'Exclude links', 'Изключи линковете', '2018-08-21 11:25:49'),
(5629, 'bg', 'siteauditor', 'Execute with cron', 'Изпълни с CRON', '2018-08-21 11:25:49'),
(5630, 'bg', 'siteauditor', 'External', 'Външен', '2018-08-21 11:25:49'),
(5631, 'bg', 'siteauditor', 'External Links', 'Външни линкове', '2018-08-21 11:25:49'),
(5632, 'bg', 'siteauditor', 'Import Project Links', 'Импортиране на линкове', '2018-08-21 11:25:49'),
(5633, 'bg', 'siteauditor', 'Insert links separated with comma', 'Въведете линковете разделени със запетайка', '2018-08-21 11:25:49'),
(5634, 'bg', 'siteauditor', 'insertlinkssepcoma', 'Въведете линковете разделени със запетайка за да изключите безкрайните от докладите', '2018-08-21 11:25:49'),
(5635, 'bg', 'siteauditor', 'Link Reports', 'Доклади за линк', '2018-08-21 11:25:49'),
(5636, 'bg', 'siteauditor', 'Link Title', 'Заглавие на линка', '2018-08-21 11:25:49'),
(5637, 'bg', 'siteauditor', 'Maximum number of pages to be checked', 'Максимален брой страници, които да бъдат проверени', '2018-08-21 11:25:49'),
(5638, 'bg', 'siteauditor', 'Maximum Pages', 'Макс. бр. страници', '2018-08-21 11:25:49'),
(5639, 'bg', 'siteauditor', 'No active projects found', 'Няма намерени активни проекти', '2018-08-21 11:25:49'),
(5640, 'bg', 'siteauditor', 'Nofollow', 'Nofollow', '2018-08-21 11:25:49'),
(5641, 'bg', 'siteauditor', 'Number of pages is greater than', 'Броят страници е по-голям от', '2018-08-21 11:25:49'),
(5642, 'bg', 'siteauditor', 'Number of pages should be greater than', 'Броят на страниците, трябва да бъде по голям от', '2018-08-21 11:25:49'),
(5643, 'bg', 'siteauditor', 'Page Details', 'Детайли', '2018-08-21 11:25:49'),
(5644, 'bg', 'siteauditor', 'Page Link', 'Линк на страницата', '2018-08-21 11:25:49'),
(5645, 'bg', 'siteauditor', 'Page Links', 'Линкове на страницата', '2018-08-21 11:25:49'),
(5646, 'bg', 'siteauditor', 'Pages Found', 'Намерени страници', '2018-08-21 11:25:49'),
(5647, 'bg', 'siteauditor', 'pressescapetostopexecution', 'Натиснете клавиша Escape за да спрете изпълнението на скрипта', '2018-08-21 11:25:49'),
(5648, 'bg', 'siteauditor', 'Project Summary', 'Накратко за проекта', '2018-08-21 11:25:49'),
(5649, 'bg', 'siteauditor', 'Project Url', 'URL на проекта', '2018-08-21 11:25:49'),
(5650, 'bg', 'siteauditor', 'projectalreadyexist', 'Вече съществува проект за този уебсайт', '2018-08-21 11:25:49'),
(5651, 'bg', 'siteauditor', 'Recheck Pages', 'Препровери страниците', '2018-08-21 11:25:49'),
(5652, 'bg', 'siteauditor', 'Report Summary', 'Опростен доклад', '2018-08-21 11:25:49'),
(5653, 'bg', 'siteauditor', 'Run Project', 'Стартирай проекта', '2018-08-21 11:25:49'),
(5654, 'bg', 'siteauditor', 'should start with', 'трябва да започва с', '2018-08-21 11:25:49'),
(5655, 'bg', 'siteauditor', 'Site Auditor Settings', 'Настройки на Сайт Одитора', '2018-08-21 11:25:49'),
(5656, 'bg', 'siteauditor', 'Store all links found in a page', 'Запази всички линкове намерени на страницата', '2018-08-21 11:25:49'),
(5657, 'bg', 'siteauditor', 'The page description length is not between', 'Дължината на описанието на страница не е между', '2018-08-21 11:25:49'),
(5658, 'bg', 'siteauditor', 'The page is brocken', 'Страницата е повредена', '2018-08-21 11:25:49'),
(5659, 'bg', 'siteauditor', 'The page is having exellent number of backlinks in', 'Страницата има отличен брой беклинкове в', '2018-08-21 11:25:49'),
(5660, 'bg', 'siteauditor', 'The page is having exellent pagerank', 'Страницата има отличен пейдж ранк', '2018-08-21 11:25:49'),
(5661, 'bg', 'siteauditor', 'The page is having good number of backlinks in', 'Страницата има добър брой беклинкове в', '2018-08-21 11:25:49'),
(5662, 'bg', 'siteauditor', 'The page is having good pagerank', 'Страницата има добър пейдж ранк', '2018-08-21 11:25:49'),
(5663, 'bg', 'siteauditor', 'The page is having poor pagerank', 'Страницата има лош пейдж ранк', '2018-08-21 11:25:49'),
(5664, 'bg', 'siteauditor', 'The page is having very good pagerank', 'Страницата има много добър педйж ранк', '2018-08-21 11:25:49'),
(5665, 'bg', 'siteauditor', 'The page is not having backlinks in', 'Страницата няма беклинкове в', '2018-08-21 11:25:49'),
(5666, 'bg', 'siteauditor', 'The page is not indexed in', 'Страницата не е индексриана в', '2018-08-21 11:25:49'),
(5667, 'bg', 'siteauditor', 'The page keywords length is not between', 'Броят на ключовите думи на страницата не е между', '2018-08-21 11:25:49'),
(5668, 'bg', 'siteauditor', 'The page title length is not between', 'Дължината на залгавието на страницата не е между', '2018-08-21 11:25:49'),
(5669, 'bg', 'siteauditor', 'The total number of links in page is greater than', 'Общият брой на линковете по страницата е по-голям от', '2018-08-21 11:25:49'),
(5670, 'bg', 'siteauditor', 'to run project again if you stopped execution', 'за да стартирате проекта отново, ако сте спрели изпълнението', '2018-08-21 11:25:49'),
(5671, 'bg', 'siteauditor', 'to view the reports', 'за да видите докладите', '2018-08-21 11:25:49'),
(5672, 'bg', 'siteauditor', 'Total Links', 'Общо линкове', '2018-08-21 11:25:49'),
(5673, 'bg', 'siteauditor', 'totallinksgreaterallowed', 'Общият брой линкове, ще бъде по-голям от максимума, позволен за този проект ', '2018-08-21 11:25:49'),
(5674, 'en', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2018-01-23 00:59:29'),
(5675, 'ro', 'home', 'Indexed', 'Indexate', '2012-05-19 00:57:04'),
(5676, 'ro', 'keyword', 'Insert keywords separated with comma', 'Introduceti cuvintele cheie despartite prin virgula', '2012-05-19 00:57:55'),
(5677, 'ro', 'label', 'Brocken', 'Stricat', '2012-05-19 01:00:22'),
(5678, 'ro', 'label', 'Comments', 'Comentarii', '2012-05-19 01:00:22'),
(5679, 'ro', 'label', 'Count', 'Numara', '2012-05-19 01:00:22'),
(5680, 'ro', 'label', 'Exclude', 'Exclude', '2012-05-19 01:00:22'),
(5681, 'ro', 'label', 'Include', 'Include', '2012-05-19 01:00:22'),
(5682, 'ro', 'label', 'Project', 'Proiect', '2012-05-19 01:00:22'),
(5683, 'ro', 'label', 'Report Type', 'Tip Raport', '2012-05-19 01:00:22'),
(5684, 'ro', 'label', 'Score', 'Scor', '2012-05-19 01:00:22'),
(5685, 'ro', 'label', 'Total Results', 'Rezultate totale', '2012-05-19 01:00:22'),
(5686, 'ro', 'label', 'Updated', 'Updatat', '2012-05-19 01:00:22'),
(5687, 'ro', 'label', 'View Reports', 'Vezi rapoarte', '2012-05-19 01:00:22'),
(5688, 'ro', 'panel', 'Edit Project', 'Editeaza proiect', '2012-05-19 01:04:43'),
(5689, 'ro', 'panel', 'New Project', 'Proiect Nou', '2012-05-19 01:04:43'),
(5690, 'ro', 'seotools', 'Auditor Projects', 'Proiecte Auditor', '2011-07-13 06:03:17'),
(5691, 'ro', 'seotools', 'Auditor Reports', 'Rapoarte Auditor', '2011-07-13 06:03:17'),
(5692, 'ro', 'seotools', 'Auditor Settings', 'Setari Auditor', '2011-07-13 06:03:17'),
(5693, 'ro', 'seotools', 'Import Project Links', 'Importa link-uri proiect', '2011-07-13 06:03:17'),
(5694, 'ro', 'seotools', 'site-auditor', 'Auditor Site', '2011-07-13 06:03:17'),
(5695, 'ro', 'settings', 'Check for Updates', 'Cauta actualizari', '2012-05-19 01:16:44'),
(5696, 'ro', 'settings', 'SA_CRAWL_DELAY_TIME', 'Crawl Evaluator site intarziere intre pagini', '2012-05-19 01:16:44'),
(5697, 'ro', 'settings', 'SA_MAX_NO_PAGES', 'Numar maxim de pagini permise per site', '2012-05-19 01:16:44'),
(5698, 'ro', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2012-05-19 01:16:44'),
(5699, 'ro', 'settings', 'versionnotuptodatemsg', 'Kitul de instalare Seo Panel nu este la zi. Va rugam descarcati versiunea noua', '2012-05-19 01:16:44'),
(5700, 'ro', 'settings', 'Your Seo Panel installation is up to date', 'Kitul de instalare Seo Panel este la zi', '2012-05-19 01:16:44'),
(5701, 'ro', 'siteauditor', 'Anchor', 'Ancora', '2011-07-13 06:12:41'),
(5702, 'ro', 'siteauditor', 'anylinkcontainabovelinks', 'Orice link continand linkurile alaturate vor fi excluse din raport', '2011-07-13 06:12:43'),
(5703, 'ro', 'siteauditor', 'anylinkcontainexcludesitemap', 'Orice link continand linkurile alaturate vor fi excluse din sitemap', '2011-07-13 06:12:43'),
(5704, 'ro', 'siteauditor', 'Check backlinks of pages', 'Verificati backlink-urile paginilor', '2011-07-13 06:12:43'),
(5705, 'ro', 'siteauditor', 'Check broken links in a page', 'Verificati linkurile intrerupte dintr-o pagina', '2011-07-13 06:12:43'),
(5706, 'ro', 'siteauditor', 'Check google pagerank of pages', 'Verificati pagerank-ul Google al paginilor', '2011-07-13 06:12:43'),
(5707, 'ro', 'siteauditor', 'Check pages indexed or not', 'Verificati paginile indexate sau nu', '2011-07-13 06:12:43'),
(5708, 'ro', 'siteauditor', 'Check Score', 'Verificati scor', '2011-07-13 06:12:43'),
(5709, 'ro', 'siteauditor', 'checkborckenlinkwait', 'Verificarea linkurile intrerupte va creste timpul de executie al proiectului', '2011-07-13 06:12:43'),
(5710, 'ro', 'siteauditor', 'Completed project execution', 'Execuatre proiect completata', '2011-07-13 06:12:43'),
(5711, 'ro', 'siteauditor', 'Crawled', 'Crawled', '2011-07-13 06:12:43'),
(5712, 'ro', 'siteauditor', 'Crawled Pages', 'Pagini Crawled', '2011-07-13 06:12:43'),
(5713, 'ro', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'Crawled cu succes! In asteptarea crawlink pagina urmatoare', '2011-07-13 06:12:43'),
(5714, 'ro', 'siteauditor', 'Crawling Page', 'Crawling pagina', '2011-07-13 06:12:43'),
(5715, 'ro', 'siteauditor', 'Duplicate Description', 'Descrie duplicat', '2011-07-13 06:12:43'),
(5716, 'ro', 'siteauditor', 'Duplicate Keywords', 'Cuvinte cheie duplicate', '2011-07-13 06:12:43'),
(5717, 'ro', 'siteauditor', 'Duplicate Title', 'Titlu duplicat', '2011-07-13 06:12:43'),
(5718, 'ro', 'siteauditor', 'Exclude links', 'linkuri excluse', '2011-07-13 06:12:43'),
(5719, 'ro', 'siteauditor', 'Execute with cron', 'Executa cu cron', '2011-07-13 06:12:43'),
(5720, 'ro', 'siteauditor', 'External', 'Extern', '2011-07-13 06:12:43'),
(5721, 'ro', 'siteauditor', 'External Links', 'Linkuri externe', '2011-07-13 06:12:43'),
(5722, 'ro', 'siteauditor', 'Import Project Links', 'Importa linkuri proiect', '2011-07-13 06:12:43'),
(5723, 'ro', 'siteauditor', 'Insert links separated with comma', 'Insereaza linkuri separate cu virgula', '2011-07-13 06:12:43'),
(5724, 'ro', 'siteauditor', 'insertlinkssepcoma', 'Insereaza linkuri separate prin virgula pentru a exclude linkuri infinite din rapoarte', '2011-07-13 06:12:43'),
(5725, 'ro', 'siteauditor', 'Link Reports', 'Linkuri rapoarte', '2011-07-13 06:12:43'),
(5726, 'ro', 'siteauditor', 'Link Title', 'Titlu link', '2011-07-13 06:12:43'),
(5727, 'ro', 'siteauditor', 'Maximum number of pages to be checked', 'Numar maxim de pagini care trebuiesc verificate', '2011-07-13 06:12:43'),
(5728, 'ro', 'siteauditor', 'Maximum Pages', 'Pagini maxime', '2011-07-13 06:12:43'),
(5729, 'ro', 'siteauditor', 'No active projects found', 'Niciun proiect activ gasit', '2011-07-13 06:12:43'),
(5730, 'ro', 'siteauditor', 'Nofollow', 'Nofollow', '2011-07-13 06:12:43'),
(5731, 'ro', 'siteauditor', 'Number of pages is greater than', 'Numarul paginilor este mai mare de', '2011-07-13 06:12:43'),
(5732, 'ro', 'siteauditor', 'Number of pages should be greater than', 'Numarul paginilor ar trebui sa fie mai mare de', '2011-07-13 06:12:43'),
(5733, 'ro', 'siteauditor', 'Page Details', 'Detalii pagina', '2011-07-13 06:12:43'),
(5734, 'ro', 'siteauditor', 'Page Link', 'Link pagina', '2011-07-13 06:12:43'),
(5735, 'ro', 'siteauditor', 'Page Links', 'Linkuri pagina', '2011-07-13 06:12:43'),
(5736, 'ro', 'siteauditor', 'Pages Found', 'Pgini gasite', '2011-07-13 06:12:43'),
(5737, 'ro', 'siteauditor', 'pressescapetostopexecution', 'Apasa anulare pentru a opri executarea scriptului', '2011-07-13 06:12:43'),
(5738, 'ro', 'siteauditor', 'Project Summary', 'Sumar proiect', '2011-07-13 06:12:43'),
(5739, 'ro', 'siteauditor', 'Project Url', 'Url proiect', '2011-07-13 06:12:43'),
(5740, 'ro', 'siteauditor', 'projectalreadyexist', 'Proiect pentru acest site exista deja', '2011-07-13 06:12:43'),
(5741, 'ro', 'siteauditor', 'Recheck Pages', 'Reverifica paginile', '2011-07-13 06:12:43'),
(5742, 'ro', 'siteauditor', 'Report Summary', 'Sumar raport', '2011-07-13 06:12:43'),
(5743, 'ro', 'siteauditor', 'Run Project', 'Start proiect', '2011-07-13 06:12:43'),
(5744, 'ro', 'siteauditor', 'should start with', 'ar trebuie sa inceapa cu', '2011-07-13 06:12:43'),
(5745, 'ro', 'siteauditor', 'Site Auditor Settings', 'Setari Verificator site', '2011-07-13 06:12:43'),
(5746, 'ro', 'siteauditor', 'Store all links found in a page', 'Salveaza toate linkurile gasite intr-o pagina', '2011-07-13 06:12:43'),
(5747, 'ro', 'siteauditor', 'The page description length is not between', 'dimensiunea descrierii paginii nu este intre', '2011-07-13 06:12:43'),
(5748, 'ro', 'siteauditor', 'The page is brocken', 'Pagina este intrerupta', '2011-07-13 06:12:43'),
(5749, 'ro', 'siteauditor', 'The page is having exellent number of backlinks in', 'Pagina are un numar excelent de backlinkuri in', '2011-07-13 06:12:43'),
(5750, 'ro', 'siteauditor', 'The page is having exellent pagerank', 'Pagina are un pagerank excelent', '2011-07-13 06:12:43'),
(5751, 'ro', 'siteauditor', 'The page is having good number of backlinks in', 'Pagina are numere bune de backlinkuri in', '2011-07-13 06:12:43'),
(5752, 'ro', 'siteauditor', 'The page is having good pagerank', 'Pagina are pagerank bun', '2011-07-13 06:12:43'),
(5753, 'ro', 'siteauditor', 'The page is having poor pagerank', 'Pagina are pagerank slab', '2011-07-13 06:12:43'),
(5754, 'ro', 'siteauditor', 'The page is having very good pagerank', 'Pagina are un page rank foarte bun', '2011-07-13 06:12:43'),
(5755, 'ro', 'siteauditor', 'The page is not having backlinks in', 'Pagina nu are backlinkuri in', '2011-07-13 06:12:43'),
(5756, 'ro', 'siteauditor', 'The page is not indexed in', 'Pagina nu este indexata in', '2011-07-13 06:12:43'),
(5757, 'ro', 'siteauditor', 'The page keywords length is not between', 'Lungimea cuvintelor cheie din pagina nu este intre', '2011-07-13 06:12:43'),
(5758, 'ro', 'siteauditor', 'The page title length is not between', 'Lungimea titlului paginii nu este intre', '2011-07-13 06:12:43'),
(5759, 'ro', 'siteauditor', 'The total number of links in page is greater than', 'Numarul total de linkuri in pagina este mai mare de', '2011-07-13 06:12:43'),
(5760, 'ro', 'siteauditor', 'to run project again if you stopped execution', 'pentru a incepe proiectul dinou daca intrerupeti executarea', '2011-07-13 06:12:43'),
(5761, 'ro', 'siteauditor', 'to view the reports', 'pentru avedea rapoartele', '2011-07-13 06:12:43'),
(5762, 'ro', 'siteauditor', 'Total Links', 'Linkuri Totale', '2011-07-13 06:12:43'),
(5763, 'ro', 'siteauditor', 'totallinksgreaterallowed', 'Linkuri totale vor deveni mai mari decat maximul de linkuri permise in proiect', '2011-07-13 06:12:43'),
(5764, 'es', 'home', 'Indexed', 'Indexado', '2012-05-31 14:36:11'),
(5765, 'es', 'keyword', 'Insert keywords separated with comma', 'Inserta las palabras clave separadas por comas', '2011-07-07 14:24:15'),
(5766, 'es', 'label', 'Brocken', 'Roto', '2012-05-12 14:54:10'),
(5767, 'es', 'label', 'Comments', 'Comentarios', '2012-05-12 14:54:10'),
(5768, 'es', 'label', 'Count', 'Contador', '2012-05-12 14:54:10'),
(5769, 'es', 'label', 'Exclude', 'Excluir', '2012-05-12 14:54:10'),
(5770, 'es', 'label', 'Include', 'Incluir', '2012-05-12 14:54:10'),
(5771, 'es', 'label', 'Project', 'Proyecto', '2012-05-12 14:54:10'),
(5772, 'es', 'label', 'Report Type', 'Tipo de Informe', '2012-05-12 14:54:10'),
(5773, 'es', 'label', 'Score', 'Puntuación', '2012-05-12 14:54:10'),
(5774, 'es', 'label', 'Total Results', 'Resultado total', '2012-05-12 14:54:10'),
(5775, 'es', 'label', 'Updated', 'Actualizado', '2012-05-12 14:54:10'),
(5776, 'es', 'label', 'View Reports', 'Ver Informes', '2012-05-12 14:54:10'),
(5777, 'es', 'seotools', 'Import Project Links', 'Importar Proyecto links', '2011-07-13 23:32:41'),
(5778, 'es', 'settings', 'SA_CRAWL_DELAY_TIME', 'Tiempo de espera entre rastreo', '2012-05-12 15:03:05'),
(5779, 'es', 'settings', 'SA_MAX_NO_PAGES', 'Número máximo de páginas permitidas por sitio web', '2012-05-12 15:03:05'),
(5780, 'es', 'settings', 'SP_API_KEY', 'Llave API para el Seo Panel', '2012-05-12 15:03:05'),
(5781, 'es', 'siteauditor', 'Anchor', 'Ancla (Anchor)', '2011-07-13 23:09:35'),
(5782, 'es', 'siteauditor', 'anylinkcontainabovelinks', 'Todos los enlaces ubicados por encima de los enlaces serán excluidos de los informes', '2011-07-13 23:09:35'),
(5783, 'es', 'siteauditor', 'anylinkcontainexcludesitemap', 'Todos los enlaces ubicados por encima de los enlaces serán excluidos del sitemap', '2011-07-13 23:09:35'),
(5784, 'es', 'siteauditor', 'Check backlinks of pages', 'Comprobar los backlinks de las páginas', '2011-07-13 23:09:35'),
(5785, 'es', 'siteauditor', 'Check broken links in a page', 'Comprobar los links rotos en la página', '2011-07-13 23:09:35'),
(5786, 'es', 'siteauditor', 'Check google pagerank of pages', 'Comprobar el google page rank de las páginas', '2011-07-13 23:09:35'),
(5787, 'es', 'siteauditor', 'Check pages indexed or not', 'Comprobar las páginas indexadas', '2011-07-13 23:09:35'),
(5788, 'es', 'siteauditor', 'Check Score', 'Comprobar posición', '2011-07-13 23:09:35'),
(5789, 'es', 'siteauditor', 'checkborckenlinkwait', 'La comprobación de los links rotos incrementara el tiempo del proyecto', '2011-07-13 23:09:35'),
(5790, 'es', 'siteauditor', 'Completed project execution', 'Ejecución del proyecto completada', '2011-07-13 23:09:35'),
(5791, 'es', 'siteauditor', 'Crawled', 'Indexado', '2011-07-13 23:09:35'),
(5792, 'es', 'siteauditor', 'Crawled Pages', 'Páginas Indexadas', '2011-07-13 23:09:35');
INSERT INTO `texts` VALUES
(5793, 'es', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'Indexado completado! Esperando la próxima indexación de', '2011-07-13 23:09:35'),
(5794, 'es', 'siteauditor', 'Crawling Page', 'Página Indexando', '2011-07-13 23:09:35'),
(5795, 'es', 'siteauditor', 'Duplicate Description', 'Descripción duplicada', '2011-07-13 23:09:35'),
(5796, 'es', 'siteauditor', 'Duplicate Keywords', 'Palabra clave duplicada', '2011-07-13 23:09:35'),
(5797, 'es', 'siteauditor', 'Duplicate Title', 'Titulo duplicado', '2011-07-13 23:09:35'),
(5798, 'es', 'siteauditor', 'Exclude links', 'Links Excluidos', '2011-07-13 23:09:35'),
(5799, 'es', 'siteauditor', 'Execute with cron', 'Ejecución con CRON', '2011-07-13 23:09:35'),
(5800, 'es', 'siteauditor', 'External', 'Externo', '2011-07-13 23:09:35'),
(5801, 'es', 'siteauditor', 'External Links', 'Links externos', '2011-07-13 23:09:35'),
(5802, 'es', 'siteauditor', 'Import Project Links', 'Importar proyecto links', '2011-07-13 23:09:35'),
(5803, 'es', 'siteauditor', 'Insert links separated with comma', 'Inserta los links separados por una coma', '2011-07-13 23:09:35'),
(5804, 'es', 'siteauditor', 'insertlinkssepcoma', 'Inserta los links separados por una coma para excluir infinitamente los links de los informes', '2011-07-13 23:09:35'),
(5805, 'es', 'siteauditor', 'Link Reports', 'Informe de Links', '2011-07-13 23:09:35'),
(5806, 'es', 'siteauditor', 'Link Title', 'Titulo del Link', '2011-07-13 23:09:35'),
(5807, 'es', 'siteauditor', 'Maximum number of pages to be checked', 'Número máximo de páginas a ser comprobadas', '2011-07-13 23:09:35'),
(5808, 'es', 'siteauditor', 'Maximum Pages', 'Páginas máximas', '2011-07-13 23:09:35'),
(5809, 'es', 'siteauditor', 'No active projects found', 'No hay proyectos activos', '2011-07-13 23:09:35'),
(5810, 'es', 'siteauditor', 'Nofollow', 'Nofollow', '2011-07-13 23:09:35'),
(5811, 'es', 'siteauditor', 'Number of pages is greater than', 'El número de páginas es mayor de', '2011-07-13 23:09:35'),
(5812, 'es', 'siteauditor', 'Number of pages should be greater than', 'El número de páginas debería ser mayor de', '2011-07-13 23:09:35'),
(5813, 'es', 'siteauditor', 'Page Details', 'Detalles de la página', '2011-07-13 23:09:35'),
(5814, 'es', 'siteauditor', 'Page Link', 'Página del link', '2011-07-13 23:09:35'),
(5815, 'es', 'siteauditor', 'Page Links', 'Página de los links', '2011-07-13 23:09:35'),
(5816, 'es', 'siteauditor', 'Pages Found', 'Páginas encontradas', '2011-07-13 23:09:35'),
(5817, 'es', 'siteauditor', 'pressescapetostopexecution', 'Pulsa Escape para parar la ejecución', '2011-07-13 23:09:35'),
(5818, 'es', 'siteauditor', 'Project Summary', 'Resumen del proyecto', '2011-07-13 23:09:35'),
(5819, 'es', 'siteauditor', 'Project Url', 'URL del proyecto', '2011-07-13 23:09:35'),
(5820, 'es', 'siteauditor', 'projectalreadyexist', 'El proyecto para esta página web ya existe', '2011-07-13 23:09:35'),
(5821, 'es', 'siteauditor', 'Recheck Pages', 'Re-comprobar las páginas', '2011-07-13 23:09:35'),
(5822, 'es', 'siteauditor', 'Report Summary', 'Informe resumen', '2011-07-13 23:09:35'),
(5823, 'es', 'siteauditor', 'Run Project', 'Ejecutar proyecto', '2011-07-13 23:09:35'),
(5824, 'es', 'siteauditor', 'should start with', 'debería empezar con', '2011-07-13 23:09:35'),
(5825, 'es', 'siteauditor', 'Site Auditor Settings', 'Parámetros del Site Auditor', '2011-07-13 23:09:35'),
(5826, 'es', 'siteauditor', 'Store all links found in a page', 'Salvar todos los links encontrados en la página', '2011-07-13 23:09:35'),
(5827, 'es', 'siteauditor', 'The page description length is not between', 'La longitud de la descripción no esta entre', '2011-07-13 23:09:35'),
(5828, 'es', 'siteauditor', 'The page is brocken', 'La página no es correcta o contiene errores', '2011-07-13 23:09:35'),
(5829, 'es', 'siteauditor', 'The page is having exellent number of backlinks in', 'La página esta teniendo un excelente número de backlinks en', '2011-07-13 23:09:35'),
(5830, 'es', 'siteauditor', 'The page is having exellent pagerank', 'La página esta teniendo un excelente pagerank', '2011-07-13 23:09:35'),
(5831, 'es', 'siteauditor', 'The page is having good number of backlinks in', 'La página esta teniendo un buen número de backlinks en ', '2011-07-13 23:09:35'),
(5832, 'es', 'siteauditor', 'The page is having good pagerank', 'La página esta teniendo un buen pagerank', '2011-07-13 23:09:35'),
(5833, 'es', 'siteauditor', 'The page is having poor pagerank', 'La página esta teniendo un bajo pagerank', '2011-07-13 23:09:35'),
(5834, 'es', 'siteauditor', 'The page is having very good pagerank', 'La página esta teniendo un muy buen pagerank', '2011-07-13 23:09:35'),
(5835, 'es', 'siteauditor', 'The page is not having backlinks in', 'La página no esta teniendo backlinks en', '2011-07-13 23:09:35'),
(5836, 'es', 'siteauditor', 'The page is not indexed in', 'La página no esta siendo indexada en', '2011-07-13 23:09:35'),
(5837, 'es', 'siteauditor', 'The page keywords length is not between', 'La longitud de las palabran en página no esta entre', '2011-07-13 23:09:35'),
(5838, 'es', 'siteauditor', 'The page title length is not between', 'La longitud del título de la página no esta entre ', '2011-07-13 23:09:35'),
(5839, 'es', 'siteauditor', 'The total number of links in page is greater than', 'El número total de backlinks en la página es mayor de', '2011-07-13 23:09:35'),
(5840, 'es', 'siteauditor', 'to run project again if you stopped execution', 'para ejecutar el proyecto otra vez si se paró la ejecución anteriormente', '2011-07-13 23:09:35'),
(5841, 'es', 'siteauditor', 'to view the reports', 'para ver los informes', '2011-07-13 23:09:35'),
(5842, 'es', 'siteauditor', 'Total Links', 'Links totales', '2011-07-13 23:09:35'),
(5843, 'es', 'siteauditor', 'totallinksgreaterallowed', 'El número total de links será mayor que el número máximo de links permitidos en el proyecto', '2011-07-13 23:09:35'),
(5844, 'de', 'home', 'Indexed', 'Indiziert', '2021-06-15 01:27:27'),
(5845, 'de', 'keyword', 'Insert keywords separated with comma', 'Keywords durch Komma getrennt angeben.', '2021-06-15 01:48:29'),
(5846, 'de', 'label', 'Brocken', 'Fehlerhaft', '2021-01-06 15:13:08'),
(5847, 'de', 'label', 'Comments', 'Kommentare', '2021-01-06 15:13:08'),
(5848, 'de', 'label', 'Count', 'Anzahl', '2021-01-06 15:13:08'),
(5849, 'de', 'label', 'Exclude', 'ausschliessen', '2021-01-06 15:13:08'),
(5850, 'de', 'label', 'Include', 'einschliessen', '2021-01-06 15:13:08'),
(5851, 'de', 'label', 'Project', 'Projekt', '2021-01-06 15:13:08'),
(5852, 'de', 'label', 'Report Type', 'Art des Berichtes', '2021-01-06 15:13:08'),
(5853, 'de', 'label', 'Score', 'Wertung', '2021-01-06 15:13:08'),
(5854, 'de', 'label', 'Total Results', 'Gesamtergebnisse', '2021-01-06 15:13:08'),
(5855, 'de', 'label', 'Updated', 'Aktualisiert', '2021-01-06 15:13:08'),
(5856, 'de', 'label', 'View Reports', 'Berichte einsehen', '2021-01-06 15:13:08'),
(5857, 'de', 'panel', 'Edit Project', 'Projekt bearbeiten', '2023-01-03 19:44:32'),
(5858, 'de', 'panel', 'New Project', 'Neues Projekt', '2023-01-03 19:44:32'),
(5859, 'de', 'seotools', 'Auditor Projects', 'Website-Doktor Projekte', '2021-01-07 13:40:24'),
(5860, 'de', 'seotools', 'Auditor Reports', 'Website-Doktor Berichte', '2021-01-07 13:40:24'),
(5861, 'de', 'seotools', 'Auditor Settings', 'Website-Doktor Einstellungen', '2021-01-07 13:40:24'),
(5862, 'de', 'seotools', 'Import Project Links', 'Projekt-Links importieren', '2021-01-07 13:40:24'),
(5863, 'de', 'seotools', 'site-auditor', 'Website-Doktor', '2021-01-07 13:40:24'),
(5864, 'de', 'settings', 'Check for Updates', 'Nach Updates suchen', '2021-01-08 13:28:43'),
(5865, 'de', 'settings', 'SA_CRAWL_DELAY_TIME', 'Website-Auditor Pause zwischen Seitenpruefungen', '2021-01-08 13:28:43'),
(5866, 'de', 'settings', 'SA_MAX_NO_PAGES', 'Maximale Anzahl an Seiten pro Webseite', '2021-01-08 13:28:43'),
(5867, 'de', 'settings', 'SP_API_KEY', 'SEO Panel API Schluessel', '2021-01-08 13:28:43'),
(5868, 'de', 'settings', 'versionnotuptodatemsg', 'Ihre SEO Panel Installation ist nicht auf dem neusten Stand. Bitte updaten / Neuste Version herunterladen.', '2021-01-08 13:28:43'),
(5869, 'de', 'settings', 'Your Seo Panel installation is up to date', 'Ihre SEO Panel Installation ist auf dem neusten Stand.', '2021-01-08 13:28:43'),
(5870, 'de', 'siteauditor', 'Anchor', 'Ankertext', '2021-01-06 15:26:09'),
(5871, 'de', 'siteauditor', 'anylinkcontainabovelinks', 'Alle oben aufgefuehrten Links werden vom Bericht ausgeschlossen', '2021-01-06 15:26:09'),
(5872, 'de', 'siteauditor', 'anylinkcontainexcludesitemap', 'Alle oben aufgefuehrten Links werden vom Sitemap ausgeschlossen', '2021-01-06 15:26:09'),
(5873, 'de', 'siteauditor', 'Check backlinks of pages', 'Backlinks der Seiten ueberpruefen', '2021-01-06 15:26:09'),
(5874, 'de', 'siteauditor', 'Check broken links in a page', 'Kaputte Links einer Seite ueberpruefen', '2021-01-06 15:26:09'),
(5875, 'de', 'siteauditor', 'Check google pagerank of pages', 'Google Pagerank der Seiten ueberpruefen', '2021-01-06 15:26:09'),
(5876, 'de', 'siteauditor', 'Check pages indexed or not', 'Ueberpruefen ob Seiten indiziert sind oder nicht.', '2021-01-06 15:26:09'),
(5877, 'de', 'siteauditor', 'Check Score', 'Gesamtwertung ermitteln', '2021-01-06 15:26:09'),
(5878, 'de', 'siteauditor', 'checkborckenlinkwait', 'Das Ueberpruefen von kaputten Links wird die Ausfuehrungsdauer eines Projektes verlaengern.', '2021-01-06 15:26:09'),
(5879, 'de', 'siteauditor', 'Completed project execution', 'Projekt ausgefuehrt.', '2021-01-06 15:26:09'),
(5880, 'de', 'siteauditor', 'Crawled', 'Seiten geprueft', '2021-01-06 15:26:09'),
(5881, 'de', 'siteauditor', 'Crawled Pages', 'Gepruefte Seiten', '2021-01-06 15:26:09'),
(5882, 'de', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'Pruefung erfolgreich! Starte Pruefung der naechsten Seite fuer', '2021-01-06 15:26:09'),
(5883, 'de', 'siteauditor', 'Crawling Page', 'Ueberpruefe Seite', '2021-01-06 15:26:09'),
(5884, 'de', 'siteauditor', 'Duplicate Description', 'Doppelte Beschreibung', '2021-01-06 15:26:09'),
(5885, 'de', 'siteauditor', 'Duplicate Keywords', 'Doppelte Keywords', '2021-01-06 15:26:09'),
(5886, 'de', 'siteauditor', 'Duplicate Title', 'Doppelte Titel', '2021-01-06 15:26:09'),
(5887, 'de', 'siteauditor', 'Exclude links', 'Links ausschliessen', '2021-01-06 15:26:09'),
(5888, 'de', 'siteauditor', 'Execute with cron', 'Als Cronjob ausfuehren', '2021-01-06 15:26:09'),
(5889, 'de', 'siteauditor', 'External', 'Extern', '2021-01-06 15:26:09'),
(5890, 'de', 'siteauditor', 'External Links', 'Externe Links', '2021-01-06 15:26:09'),
(5891, 'de', 'siteauditor', 'Import Project Links', 'Projektlinks importieren', '2021-01-06 15:26:09'),
(5892, 'de', 'siteauditor', 'Insert links separated with comma', 'Links kommagetrennt angeben.', '2021-01-06 15:26:09'),
(5893, 'de', 'siteauditor', 'insertlinkssepcoma', 'Links kommagetrennt angeben um unendliche Links aus Berichten auszuschliessen', '2021-01-06 15:26:09'),
(5894, 'de', 'siteauditor', 'Link Reports', 'Link Bericht', '2021-01-06 15:26:09'),
(5895, 'de', 'siteauditor', 'Link Title', 'Link Titel', '2021-01-06 15:26:09'),
(5896, 'de', 'siteauditor', 'Maximum number of pages to be checked', 'Maximale Anzahl der zu ueberpruefenden Seiten', '2021-01-06 15:26:09'),
(5897, 'de', 'siteauditor', 'Maximum Pages', 'Maximale Seiten', '2021-01-06 15:26:09'),
(5898, 'de', 'siteauditor', 'No active projects found', 'Keine aktiven Projekte gefunden', '2021-01-06 15:26:09'),
(5899, 'de', 'siteauditor', 'Nofollow', 'NoFollow', '2021-01-06 15:26:09'),
(5900, 'de', 'siteauditor', 'Number of pages is greater than', 'Anzahl der Seiten ist hoeher als', '2021-01-06 15:26:09'),
(5901, 'de', 'siteauditor', 'Number of pages should be greater than', 'Anzahl der Seiten sollte hoeher sein als', '2021-01-06 15:26:09'),
(5902, 'de', 'siteauditor', 'Page Details', 'Seiten Details', '2021-01-06 15:26:09'),
(5903, 'de', 'siteauditor', 'Page Link', 'Seiten Link', '2021-01-06 15:26:09'),
(5904, 'de', 'siteauditor', 'Page Links', 'Seiten Links', '2021-01-06 15:26:09'),
(5905, 'de', 'siteauditor', 'Pages Found', 'Seiten gefunden', '2021-01-06 15:26:09'),
(5906, 'de', 'siteauditor', 'pressescapetostopexecution', 'ESC druecken um abzubrechen', '2021-01-06 15:26:09'),
(5907, 'de', 'siteauditor', 'Project Summary', 'Projekt Zusammenfassung', '2021-01-06 15:26:09'),
(5908, 'de', 'siteauditor', 'Project Url', 'Projekt URL', '2021-01-06 15:26:09'),
(5909, 'de', 'siteauditor', 'projectalreadyexist', 'Projekt fuer diese Webseite ist bereits vorhanden', '2021-01-06 15:26:09'),
(5910, 'de', 'siteauditor', 'Recheck Pages', 'Seiten nochmals ueberpruefen', '2021-01-06 15:26:09'),
(5911, 'de', 'siteauditor', 'Report Summary', 'Bericht Zusammenfassung', '2021-01-06 15:26:09'),
(5912, 'de', 'siteauditor', 'Run Project', 'Projekt ausfuehren', '2021-01-06 15:26:09'),
(5913, 'de', 'siteauditor', 'should start with', 'sollte beginnen mit', '2021-01-06 15:26:09'),
(5914, 'de', 'siteauditor', 'Site Auditor Settings', 'Website-Doktor Einstellungen', '2021-01-06 15:26:09'),
(5915, 'de', 'siteauditor', 'Store all links found in a page', 'Alle gefundenen Links speichern', '2021-01-06 15:26:09'),
(5916, 'de', 'siteauditor', 'The page description length is not between', 'Die Laenge der Seiten-Beschreibung ist nicht zwischen', '2021-01-06 15:26:09'),
(5917, 'de', 'siteauditor', 'The page is brocken', 'Die Seite ist fehlerhaft', '2021-01-06 15:26:09'),
(5918, 'de', 'siteauditor', 'The page is having exellent number of backlinks in', 'Die Seite hat eine exzellente Anzahl an Links in', '2021-01-06 15:26:09'),
(5919, 'de', 'siteauditor', 'The page is having exellent pagerank', 'Die Seite hat einen exzellenten Pagerank', '2021-01-06 15:26:09'),
(5920, 'de', 'siteauditor', 'The page is having good number of backlinks in', 'Die Seite hat eine gute Anzahl an Backlinks in', '2021-01-06 15:26:09'),
(5921, 'de', 'siteauditor', 'The page is having good pagerank', 'Die Seite hat einen guten Pagerank', '2021-01-06 15:26:09'),
(5922, 'de', 'siteauditor', 'The page is having poor pagerank', 'Die Seite hat einen sehr niedrigen Pagerank', '2021-01-06 15:26:09'),
(5923, 'de', 'siteauditor', 'The page is having very good pagerank', 'Die Seite hat einen sehr guten Pagerank', '2021-01-06 15:26:09'),
(5924, 'de', 'siteauditor', 'The page is not having backlinks in', 'Die Seite hat keine Backlinks in', '2021-01-06 15:26:09'),
(5925, 'de', 'siteauditor', 'The page is not indexed in', 'Die Seite ist nicht indiziert in', '2021-01-06 15:26:09'),
(5926, 'de', 'siteauditor', 'The page keywords length is not between', 'Die Laenge der Keywords ist nicht zwischen', '2021-01-06 15:26:09'),
(5927, 'de', 'siteauditor', 'The page title length is not between', 'Die Laenge des Seiten-Titels ist nicht zwischen', '2021-01-06 15:26:09'),
(5928, 'de', 'siteauditor', 'The total number of links in page is greater than', 'Die Gesamtanzahl an Links ist hoeher als', '2021-01-06 15:26:09'),
(5929, 'de', 'siteauditor', 'to run project again if you stopped execution', 'um ein Projekt neu zu starten nach einem Abbruch', '2021-01-06 15:26:09'),
(5930, 'de', 'siteauditor', 'to view the reports', 'um die Berichte zu betrachten', '2021-01-06 15:26:09'),
(5931, 'de', 'siteauditor', 'Total Links', 'Links gesamt', '2021-01-06 15:26:09'),
(5932, 'de', 'siteauditor', 'totallinksgreaterallowed', 'Die Gesamtanzahl der Links ist hoeher als das erlaubte Maximum pro Projekt', '2021-01-06 15:26:09'),
(5933, 'el', 'home', 'Indexed', 'Καταχωρήθηκαν', '2019-11-28 23:25:11'),
(5934, 'el', 'keyword', 'Insert keywords separated with comma', 'Εισάγετε τις λέξεις κλειδιά, διαχωρισμένες με κόμμα.', '2016-01-27 13:02:49'),
(5935, 'el', 'label', 'Brocken', 'Σπασμένο', '2019-11-28 23:22:10'),
(5936, 'el', 'label', 'Comments', 'Σχόλια', '2019-11-28 23:22:10'),
(5937, 'el', 'label', 'Count', 'Καταμέτρηση', '2019-11-28 23:22:10'),
(5938, 'el', 'label', 'Exclude', 'Απόκλεισε', '2019-11-28 23:22:10'),
(5939, 'el', 'label', 'Include', 'Συμπερίλαβε', '2019-11-28 23:22:10'),
(5940, 'el', 'label', 'Project', 'Εργασία', '2019-11-28 23:22:10'),
(5941, 'el', 'label', 'Report Type', 'Τύπος αναφοράς', '2019-11-28 23:22:10'),
(5942, 'el', 'label', 'Score', 'Βαθμολογία', '2019-11-28 23:22:10'),
(5943, 'el', 'label', 'Total Results', 'Συνολικά αποτελέσματα', '2019-11-28 23:22:10'),
(5944, 'el', 'label', 'Updated', 'Αναβαθμίστηκε', '2019-11-28 23:22:10'),
(5945, 'el', 'label', 'View Reports', 'Προβολή αναφορών', '2019-11-28 23:22:10'),
(5946, 'el', 'panel', 'Edit Project', 'Επεξεργασία εργασίας', '2019-08-28 09:42:17'),
(5947, 'el', 'panel', 'New Project', 'Νέα εργασία', '2019-08-28 09:42:17'),
(5948, 'el', 'seotools', 'Auditor Projects', 'Εργασίες ελεγκτή ', '2019-11-28 23:13:05'),
(5949, 'el', 'seotools', 'Auditor Reports', 'Αναφορές ελεγκτή', '2019-11-28 23:13:05'),
(5950, 'el', 'seotools', 'Auditor Settings', 'Ρυθμίσεις ελεγκτή ', '2019-11-28 23:13:05'),
(5951, 'el', 'seotools', 'Import Project Links', 'Εισαγωγή συνδέσμων εργασίας', '2019-11-28 23:13:05'),
(5952, 'el', 'seotools', 'site-auditor', 'Ελεγκτής ιστοσελίδας', '2019-11-28 23:13:05'),
(5953, 'el', 'settings', 'Check for Updates', 'Έλεγχος για νέες εκδόσεις', '2019-08-28 09:43:40'),
(5954, 'el', 'settings', 'SA_CRAWL_DELAY_TIME', 'Καθυστέρηση ανιχνευτή ιστοτόπων, μεταξύ των σελίδων', '2019-08-28 09:43:40'),
(5955, 'el', 'settings', 'SA_MAX_NO_PAGES', 'Μέγιστος επιτρεπόμενος αριθμός σελίδων ανά ιστότοπο', '2019-08-28 09:43:40'),
(5956, 'el', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2019-08-28 09:43:40'),
(5957, 'el', 'settings', 'versionnotuptodatemsg', 'Η έκδοση του Seo Panel που χρησιμοποιείτε δεν είναι αναβαθμισμένη. Παρακαλώ κατεβάστε την τελευταία έκδοση', '2019-08-28 09:43:40'),
(5958, 'el', 'settings', 'Your Seo Panel installation is up to date', 'Η έκδοση του Seo Panel είναι αναβαθμισμένη', '2019-08-28 09:43:40'),
(5959, 'el', 'siteauditor', 'Anchor', 'Σήμανση', '2017-07-18 10:05:38'),
(5960, 'el', 'siteauditor', 'anylinkcontainabovelinks', 'Όποιος από τους συνδέσμους περιλαμβάνει τους συνδέσμους από πάνω δεν θα περιλαμβάνεται στις αναφορές', '2017-07-18 10:05:38'),
(5961, 'el', 'siteauditor', 'anylinkcontainexcludesitemap', 'Όποιος από τους συνδέσμους περιλαμβάνει τους συνδέσμους από πάνω δεν θα περιλαμβάνεται στο sitemap', '2017-07-18 10:05:38'),
(5962, 'el', 'siteauditor', 'Check backlinks of pages', 'Ελέγξτε τα backlink των σελίδων', '2017-07-18 10:05:38'),
(5963, 'el', 'siteauditor', 'Check broken links in a page', 'Έλεγχος σπασμένων συνδέσμων σε σελίδα', '2017-07-18 10:05:38'),
(5964, 'el', 'siteauditor', 'Check google pagerank of pages', 'Έλεγχος Google pagerank των σελίδων', '2017-07-18 10:05:38'),
(5965, 'el', 'siteauditor', 'Check pages indexed or not', 'Έλεγχος καταχώρισης ή όχι των σελίδων', '2017-07-18 10:05:38'),
(5966, 'el', 'siteauditor', 'Check Score', 'Έλεγχος βαθμολογίας', '2017-07-18 10:05:38'),
(5967, 'el', 'siteauditor', 'checkborckenlinkwait', 'Ο έλεγχος των σπασμένων συνδέσμων θα αυξήσει τον χρόνο εκτέλεσης μιας εργασίας', '2017-07-18 10:05:38'),
(5968, 'el', 'siteauditor', 'Completed project execution', 'Ολοκληρωμένη εκτέλεση εργασίας', '2017-07-18 10:05:38'),
(5969, 'el', 'siteauditor', 'Crawled', 'Ανιχνεύθηκε', '2017-07-18 10:05:38'),
(5970, 'el', 'siteauditor', 'Crawled Pages', 'Σελίδες που ανιχνεύθηκαν', '2017-07-18 10:05:38'),
(5971, 'el', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'Επιτυχής ανίχνευση! Περιμένετε για την ανίχνευση της επόμενης σελίδας για', '2017-07-18 10:05:38'),
(5972, 'el', 'siteauditor', 'Crawling Page', 'Ανίχνευση σελίδας', '2017-07-18 10:05:38'),
(5973, 'el', 'siteauditor', 'Duplicate Description', 'Διπλή περιγραφή', '2017-07-18 10:05:38'),
(5974, 'el', 'siteauditor', 'Duplicate Keywords', 'Διπλές λέξεις κλειδιά', '2017-07-18 10:05:38'),
(5975, 'el', 'siteauditor', 'Duplicate Title', 'Διπλός τίτλος', '2017-07-18 10:05:38'),
(5976, 'el', 'siteauditor', 'Exclude links', 'Μην συμπεριλάβετε τους συνδέσμους', '2017-07-18 10:05:38'),
(5977, 'el', 'siteauditor', 'Execute with cron', 'Εκτέλεση με cron', '2017-07-18 10:05:38'),
(5978, 'el', 'siteauditor', 'External', 'Εξωτερικά', '2017-07-18 10:05:38'),
(5979, 'el', 'siteauditor', 'External Links', 'Εξωτερικοί σύνδεσμοι', '2017-07-18 10:05:38'),
(5980, 'el', 'siteauditor', 'Import Project Links', 'Εισαγωγή συνδέσμων εργασίας', '2017-07-18 10:05:38'),
(5981, 'el', 'siteauditor', 'Insert links separated with comma', 'Εισαγωγή συνδέσμων διαχωρισμένοι με κόμμα', '2017-07-18 10:05:38'),
(5982, 'el', 'siteauditor', 'insertlinkssepcoma', 'Τοποθετήστε συνδέσμους διαχωρισμένους με κόμμα για να αποκλείσετε άπειρους συνδέσμους από τις αναφορές', '2017-07-18 10:05:38'),
(5983, 'el', 'siteauditor', 'Link Reports', 'Αναφορές συνδέσμων', '2017-07-18 10:05:38'),
(5984, 'el', 'siteauditor', 'Link Title', 'Τίτλος συνδέσμου', '2017-07-18 10:05:38'),
(5985, 'el', 'siteauditor', 'Maximum number of pages to be checked', 'Μέγιστος αριθμός σελίδων για έλεγχο', '2017-07-18 10:05:38'),
(5986, 'el', 'siteauditor', 'Maximum Pages', 'Μέγιστος αριθμός σελίδων', '2017-07-18 10:05:38'),
(5987, 'el', 'siteauditor', 'No active projects found', 'Δεν βρέθηκαν ενεργές εργασίες', '2017-07-18 10:05:38'),
(5988, 'el', 'siteauditor', 'Nofollow', 'Δεν ακολουθείται', '2017-07-18 10:05:38'),
(5989, 'el', 'siteauditor', 'Number of pages is greater than', 'Αριθμός των σελίδων μεγαλύτερες από', '2017-07-18 10:05:38'),
(5990, 'el', 'siteauditor', 'Number of pages should be greater than', 'Αριθμός των σελίδων που έπρεπε να είναι μεγαλύτερες από', '2017-07-18 10:05:38'),
(5991, 'el', 'siteauditor', 'Page Details', 'Λεπτομέρειες σελίδας', '2017-07-18 10:05:38'),
(5992, 'el', 'siteauditor', 'Page Link', 'Σύνδεσμος σελίδας', '2017-07-18 10:05:38'),
(5993, 'el', 'siteauditor', 'Page Links', 'Σύνδεσμοι σελίδας', '2017-07-18 10:05:38'),
(5994, 'el', 'siteauditor', 'Pages Found', 'Σελίδες που βρέθηκαν', '2017-07-18 10:05:38'),
(5995, 'el', 'siteauditor', 'pressescapetostopexecution', 'Πατήστε το πλήκτρο escape της εκτέλεσης της διεργασίας', '2017-07-18 10:05:38'),
(5996, 'el', 'siteauditor', 'Project Summary', 'Σύνοψη εργασίας', '2017-07-18 10:05:38'),
(5997, 'el', 'siteauditor', 'Project Url', 'URL εργασίας', '2017-07-18 10:05:38'),
(5998, 'el', 'siteauditor', 'projectalreadyexist', 'Η εργασία για αυτόν τον ιστότοπο ήδη υπάρχει', '2017-07-18 10:05:38'),
(5999, 'el', 'siteauditor', 'Recheck Pages', 'Επανέλεγχος σελίδων', '2017-07-18 10:05:38'),
(6000, 'el', 'siteauditor', 'Report Summary', 'Σύνοψη αναφοράς', '2017-07-18 10:05:38'),
(6001, 'el', 'siteauditor', 'Run Project', 'Εκτέλεση εργασίας', '2017-07-18 10:05:38'),
(6002, 'el', 'siteauditor', 'should start with', 'πρέπει να ξεκινάει με', '2017-07-18 10:05:38'),
(6003, 'el', 'siteauditor', 'Site Auditor Settings', 'Ρυθμίσεις του Ελεγκτή ιστοτόπου', '2017-07-18 10:05:38'),
(6004, 'el', 'siteauditor', 'Store all links found in a page', 'Αποθήκευση όλων των συνδέσμων που βρίσκονται σε μια σελίδα', '2017-07-18 10:05:38'),
(6005, 'el', 'siteauditor', 'The page description length is not between', 'Η περιγραφή της σελίδας δεν είναι ανάμεσα', '2017-07-18 10:05:38'),
(6006, 'el', 'siteauditor', 'The page is brocken', 'Η σελίδα είναι σπασμένη', '2017-07-18 10:05:38'),
(6007, 'el', 'siteauditor', 'The page is having exellent number of backlinks in', 'Η σελίδα έχει άριστο αριθμό backlink σε', '2017-07-18 10:05:38'),
(6008, 'el', 'siteauditor', 'The page is having exellent pagerank', 'Η σελίδα έχει άριστο pagerank', '2017-07-18 10:05:38'),
(6009, 'el', 'siteauditor', 'The page is having good number of backlinks in', 'Η σελίδα έχει καλό αριθμό backlinks σε', '2017-07-18 10:05:38'),
(6010, 'el', 'siteauditor', 'The page is having good pagerank', 'Η σελίδα έχει καλό pagerank', '2017-07-18 10:05:38'),
(6011, 'el', 'siteauditor', 'The page is having poor pagerank', 'Η σελίδα έχει χαμηλό pagerank', '2017-07-18 10:05:38'),
(6012, 'el', 'siteauditor', 'The page is having very good pagerank', 'Η σελίδα έχει πολύ καλό pagerank', '2017-07-18 10:05:38'),
(6013, 'el', 'siteauditor', 'The page is not having backlinks in', 'Η σελίδα δεν έχει backlinks σε', '2017-07-18 10:05:38'),
(6014, 'el', 'siteauditor', 'The page is not indexed in', 'H σελίδα δεν είναι καταχωρημένη σε', '2017-07-18 10:05:38'),
(6015, 'el', 'siteauditor', 'The page keywords length is not between', 'Το μήκος των λέξεων κλειδιών της σελίδα δεν είναι ανάμεσα σε', '2017-07-18 10:05:38'),
(6016, 'el', 'siteauditor', 'The page title length is not between', 'Το μήκος του τίτλου της σελίδας δεν είναι ανάμεσα σε', '2017-07-18 10:05:38'),
(6017, 'el', 'siteauditor', 'The total number of links in page is greater than', 'Ο συνολικός αριθμός των συνδέσμων στην σελίδα είναι μεγαλύτερος από', '2017-07-18 10:05:38'),
(6018, 'el', 'siteauditor', 'to run project again if you stopped execution', 'για να εκκινήσετε την εργασία ξανά αν σταματήσατε την εκτέλεση της', '2017-07-18 10:05:38'),
(6019, 'el', 'siteauditor', 'to view the reports', 'για να δείτε τις αναφορές', '2017-07-18 10:05:38'),
(6020, 'el', 'siteauditor', 'Total Links', 'Συνολικοί Σύνδεσμοι', '2017-07-18 10:05:38'),
(6021, 'el', 'siteauditor', 'totallinksgreaterallowed', 'Οι συνολικοί σύνδεσμοι θα είναι μεγαλύτεροι από το μέγιστο αριθμό συνδέσμων που επιτρέπονται στην εργασία', '2017-07-18 10:05:38'),
(6022, 'en', 'directory', 'Reciprocal Link', 'Reciprocal Link', '2011-07-08 12:09:43'),
(6023, 'el', 'directory', 'Reciprocal Link', 'Ανταποδοτικοί σύνδεσμοι', '2014-01-20 16:07:08'),
(6024, 'tr', 'directory', 'Reciprocal Link', 'Karşılıklı Link', '2012-11-11 13:13:26'),
(6025, 'tr', 'home', 'Indexed', 'İndexlendi', '2017-02-05 02:23:57'),
(6026, 'tr', 'keyword', 'Insert keywords separated with comma', 'Anahtar kelimeleri virgül ile ayırarak giriniz', '2017-02-05 01:48:33'),
(6027, 'tr', 'label', 'Brocken', 'Kırık', '2012-11-11 13:14:34'),
(6028, 'tr', 'label', 'Comments', 'Yorumlar', '2012-11-11 13:14:34'),
(6029, 'tr', 'label', 'Count', 'Sayı', '2012-11-11 13:14:34'),
(6030, 'tr', 'label', 'Exclude', 'Çıkar', '2012-11-11 13:14:34'),
(6031, 'tr', 'label', 'Include', 'İçer', '2012-11-11 13:14:34'),
(6032, 'tr', 'label', 'Project', 'Proje', '2012-11-11 13:14:34'),
(6033, 'tr', 'label', 'Report Type', 'Rapor Biçini', '2012-11-11 13:14:34'),
(6034, 'tr', 'label', 'Score', 'Skor', '2012-11-11 13:14:34'),
(6035, 'tr', 'label', 'Total Results', 'Toplam sonuç', '2012-11-11 13:14:34'),
(6036, 'tr', 'label', 'Updated', 'Güncelle', '2012-11-11 13:14:34'),
(6037, 'tr', 'label', 'View Reports', 'Raporları Görüntüle', '2012-11-11 13:14:34'),
(6038, 'pt', 'directory', 'Reciprocal Link', 'Link reciproco', '2012-11-11 01:59:13'),
(6039, 'pt', 'home', 'Indexed', 'Indexar', '2011-07-10 13:41:24'),
(6040, 'pt', 'keyword', 'Insert keywords separated with comma', 'Insira as palavras(keywords) entre virgulas', '2016-01-18 00:11:49'),
(6041, 'pt', 'label', 'Brocken', 'Partido', '2018-01-26 00:11:22'),
(6042, 'pt', 'label', 'Comments', 'Comentario', '2018-01-26 00:11:22'),
(6043, 'pt', 'label', 'Count', 'Contagem', '2018-01-26 00:11:22'),
(6044, 'pt', 'label', 'Exclude', 'Excluir', '2018-01-26 00:11:22'),
(6045, 'pt', 'label', 'Include', 'Incluir', '2018-01-26 00:11:22'),
(6046, 'pt', 'label', 'Project', 'Projecto', '2018-01-26 00:11:22'),
(6047, 'pt', 'label', 'Report Type', 'Reportar Tipo', '2018-01-26 00:11:22'),
(6048, 'pt', 'label', 'Score', 'Pontuação', '2018-01-26 00:11:22'),
(6049, 'pt', 'label', 'Total Results', 'Total de resultados', '2018-01-26 00:11:22'),
(6050, 'pt', 'label', 'Updated', 'Modificado', '2018-01-26 00:11:22'),
(6051, 'pt', 'label', 'View Reports', 'Ver Relatórios', '2018-01-26 00:11:22'),
(6052, 'pt', 'panel', 'Edit Project', 'Editar Projecto', '2018-01-26 00:18:33'),
(6053, 'pt', 'panel', 'New Project', 'Novo projecto', '2018-01-26 00:18:33'),
(6054, 'pt', 'seotools', 'Auditor Projects', 'Auditar Projectos', '2018-01-26 00:25:11'),
(6055, 'pt', 'seotools', 'Auditor Reports', 'Auditar Relatórios', '2018-01-26 00:25:11'),
(6056, 'pt', 'seotools', 'Auditor Settings', 'Auditar configurações', '2018-01-26 00:25:11'),
(6057, 'pt', 'seotools', 'Import Project Links', 'Importar Links de projectos', '2018-01-26 00:25:11'),
(6058, 'pt', 'seotools', 'site-auditor', 'Auditar Site', '2018-01-26 00:25:11'),
(6059, 'pt', 'settings', 'Check for Updates', 'Verificar Actualizações', '2018-01-26 00:23:30'),
(6060, 'pt', 'settings', 'SA_CRAWL_DELAY_TIME', 'Atraso entre páginas do auditar site', '2018-01-26 00:23:30'),
(6061, 'pt', 'settings', 'SA_MAX_NO_PAGES', 'Numero de paginas permitidas por sites', '2018-01-26 00:23:30'),
(6062, 'pt', 'settings', 'SP_API_KEY', 'API Key do Seo Panel', '2018-01-26 00:23:30'),
(6063, 'pt', 'settings', 'versionnotuptodatemsg', 'A instalação do seu Seo Panel não está actualizada. faça o download da nova versão', '2018-01-26 00:23:30'),
(6064, 'pt', 'settings', 'Your Seo Panel installation is up to date', 'Tem o Seo Panel Actualizado', '2018-01-26 00:23:30'),
(6065, 'tr', 'panel', 'Edit Project', 'Projeyi Düzenle', '2017-02-05 01:50:50'),
(6066, 'tr', 'panel', 'New Project', 'Yeni Proje', '2017-02-05 01:50:50'),
(6067, 'fr', 'siteauditor', 'Anchor', 'Ancre', '2018-01-23 03:56:01'),
(6068, 'fr', 'siteauditor', 'anylinkcontainabovelinks', 'Tous les liens figurant ci-dessus seront exclus des rapports', '2018-01-23 03:56:01'),
(6069, 'fr', 'siteauditor', 'anylinkcontainexcludesitemap', 'Tous les liens figurant ci-dessus seront exclus du sitemap', '2018-01-23 03:56:01'),
(6070, 'fr', 'siteauditor', 'Check backlinks of pages', 'Vérifier les liens retour des pages', '2018-01-23 03:56:01'),
(6071, 'fr', 'siteauditor', 'Check broken links in a page', 'Vérifier les liens cassés d''une page', '2018-01-23 03:56:01'),
(6072, 'fr', 'siteauditor', 'Check google pagerank of pages', 'Vérifier le pagerank Google des pages', '2018-01-23 03:56:01'),
(6073, 'fr', 'siteauditor', 'Check pages indexed or not', 'Vérifier si les pages sont indexées ou non', '2018-01-23 03:56:01'),
(6074, 'fr', 'siteauditor', 'Check Score', 'Vérifier le score', '2018-01-23 03:56:01'),
(6075, 'fr', 'siteauditor', 'checkborckenlinkwait', 'La vérification des liens cassés accroit le temps d''exécution du projet', '2018-01-23 03:56:01'),
(6076, 'fr', 'siteauditor', 'Completed project execution', 'Projet terminé', '2018-01-23 03:56:01'),
(6077, 'fr', 'siteauditor', 'Crawled', 'Exploré', '2018-01-23 03:56:01'),
(6078, 'fr', 'siteauditor', 'Crawled Pages', 'Pages explorées', '2018-01-23 03:56:01'),
(6079, 'fr', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'exploré avec succès ! En attente d''exploration de la prochaine page de', '2018-01-23 03:56:01'),
(6080, 'fr', 'siteauditor', 'Crawling Page', 'Page en exploration', '2018-01-23 03:56:01'),
(6081, 'fr', 'siteauditor', 'Duplicate Description', 'Description redondante', '2018-01-23 03:56:01'),
(6082, 'fr', 'siteauditor', 'Duplicate Keywords', 'Mots clés redondants', '2018-01-23 03:56:01'),
(6083, 'fr', 'siteauditor', 'Duplicate Title', 'Titre redondant', '2018-01-23 03:56:01'),
(6084, 'fr', 'siteauditor', 'Exclude links', 'Liens à exclure', '2018-01-23 03:56:01'),
(6085, 'fr', 'siteauditor', 'Execute with cron', 'Exécuter avec cron', '2018-01-23 03:56:01'),
(6086, 'fr', 'siteauditor', 'External', 'Externe', '2018-01-23 03:56:01'),
(6087, 'fr', 'siteauditor', 'External Links', 'Liens externes', '2018-01-23 03:56:01'),
(6088, 'fr', 'siteauditor', 'Import Project Links', 'Importer les liens', '2018-01-23 03:56:01'),
(6089, 'fr', 'siteauditor', 'Insert links separated with comma', 'Entrez les liens en les séparant par des virgules', '2018-01-23 03:56:01'),
(6090, 'fr', 'siteauditor', 'insertlinkssepcoma', 'Entrez les liens (en les séparant par des virgules) pour éviter des liens sans fin dans les rapports', '2018-01-23 03:56:01'),
(6091, 'fr', 'siteauditor', 'Link Reports', 'Rapports sur les liens', '2018-01-23 03:56:01'),
(6092, 'fr', 'siteauditor', 'Link Title', 'Titre du lien', '2018-01-23 03:56:01'),
(6093, 'fr', 'siteauditor', 'Maximum number of pages to be checked', 'Nombre maximum de pages à traiter', '2018-01-23 03:56:01'),
(6094, 'fr', 'siteauditor', 'Maximum Pages', 'Pages maximum', '2018-01-23 03:56:01'),
(6095, 'fr', 'siteauditor', 'No active projects found', 'Aucun projet actif', '2018-01-23 03:56:01'),
(6096, 'fr', 'siteauditor', 'Nofollow', 'Nofollow', '2018-01-23 03:56:01'),
(6097, 'fr', 'siteauditor', 'Number of pages is greater than', 'Le nombre de pages est plus grand que ', '2018-01-23 03:56:01'),
(6098, 'fr', 'siteauditor', 'Number of pages should be greater than', 'Le nombre de pages devrait être supérieur à ', '2018-01-23 03:56:01'),
(6099, 'fr', 'siteauditor', 'Page Details', 'Détails de la page', '2018-01-23 03:56:01'),
(6100, 'fr', 'siteauditor', 'Page Link', 'Lien de la page', '2018-01-23 03:56:01'),
(6101, 'fr', 'siteauditor', 'Page Links', 'Liens de la page', '2018-01-23 03:56:01'),
(6102, 'fr', 'siteauditor', 'Pages Found', 'Pages trouvées', '2018-01-23 03:56:01'),
(6103, 'fr', 'siteauditor', 'pressescapetostopexecution', 'Appuyez sur la touche Echap/Esc pour arrêter l''exécution du script', '2018-01-23 03:56:01'),
(6104, 'fr', 'siteauditor', 'Project Summary', 'Résumé du projet', '2018-01-23 03:56:01'),
(6105, 'fr', 'siteauditor', 'Project Url', 'URL du projet', '2018-01-23 03:56:01'),
(6106, 'fr', 'siteauditor', 'projectalreadyexist', 'Un projet existe déjà pour ce site web', '2018-01-23 03:56:01'),
(6107, 'fr', 'siteauditor', 'Recheck Pages', 'Revérifier les pages', '2018-01-23 03:56:01'),
(6108, 'fr', 'siteauditor', 'Report Summary', 'Rapport résumé', '2018-01-23 03:56:01'),
(6109, 'fr', 'siteauditor', 'Run Project', 'Lancer le projet', '2018-01-23 03:56:01'),
(6110, 'fr', 'siteauditor', 'should start with', 'devrait commencer par', '2018-01-23 03:56:01'),
(6111, 'fr', 'siteauditor', 'Site Auditor Settings', 'Paramètres du vérificateur de site', '2018-01-23 03:56:01'),
(6112, 'fr', 'siteauditor', 'Store all links found in a page', 'Enregistre tous les liens de la page', '2018-01-23 03:56:01'),
(6113, 'fr', 'siteauditor', 'The page description length is not between', 'La description de la page n''est pas entre ', '2018-01-23 03:56:01'),
(6114, 'fr', 'siteauditor', 'The page is brocken', 'La page est cassée', '2018-01-23 03:56:01'),
(6115, 'fr', 'siteauditor', 'The page is having exellent number of backlinks in', 'La page a un très bon nombre de liens retour pour ', '2018-01-23 03:56:01'),
(6116, 'fr', 'siteauditor', 'The page is having exellent pagerank', 'La page a un rang excellent', '2018-01-23 03:56:01'),
(6117, 'fr', 'siteauditor', 'The page is having good number of backlinks in', 'La page a un bon nombre de liens retour pour ', '2018-01-23 03:56:01'),
(6118, 'fr', 'siteauditor', 'The page is having good pagerank', 'La page a un bon pagerank ', '2018-01-23 03:56:01'),
(6119, 'fr', 'siteauditor', 'The page is having poor pagerank', 'La page a un pagerank faible', '2018-01-23 03:56:01'),
(6120, 'fr', 'siteauditor', 'The page is having very good pagerank', 'La page a un très bon pagerank', '2018-01-23 03:56:01'),
(6121, 'fr', 'siteauditor', 'The page is not having backlinks in', 'La page n''a pas de liens retour pour ', '2018-01-23 03:56:01'),
(6122, 'fr', 'siteauditor', 'The page is not indexed in', 'La page n''est pas indexé dans ', '2018-01-23 03:56:01'),
(6123, 'fr', 'siteauditor', 'The page keywords length is not between', 'La longueur des mots clés de la page n''est pas entre ', '2018-01-23 03:56:01'),
(6124, 'fr', 'siteauditor', 'The page title length is not between', 'La longueur du titre de la page n''est pas entre ', '2018-01-23 03:56:01'),
(6125, 'fr', 'siteauditor', 'The total number of links in page is greater than', 'Le nombre total de liens dans la page est supérieur à ', '2018-01-23 03:56:01'),
(6126, 'fr', 'siteauditor', 'to run project again if you stopped execution', 'pour lancer le projet de nouveau si vous l''avez arrêté', '2018-01-23 03:56:01'),
(6127, 'fr', 'siteauditor', 'to view the reports', 'pour voir les rapports', '2018-01-23 03:56:01'),
(6128, 'fr', 'siteauditor', 'Total Links', 'Total liens', '2018-01-23 03:56:01'),
(6129, 'fr', 'siteauditor', 'totallinksgreaterallowed', 'Le nombre de liens au total sera supérieur au maximum autorisé sur ce projet.', '2018-01-23 03:56:01'),
(6130, 'fr', 'directory', 'Reciprocal Link', 'Lien réciproque', '2012-11-11 01:37:55'),
(6131, 'tr', 'seotools', 'Auditor Projects', 'Denetçi Projeler', '2011-07-10 14:12:15'),
(6132, 'tr', 'seotools', 'Auditor Reports', 'Denetçi Raporlar', '2011-07-10 14:12:15'),
(6133, 'tr', 'seotools', 'Auditor Settings', 'Denetçi Ayarları', '2011-07-10 14:12:15'),
(6134, 'tr', 'seotools', 'Import Project Links', 'Proje linklerini İçe aktar (import)', '2011-07-10 14:12:15'),
(6135, 'tr', 'seotools', 'site-auditor', 'Site Denetçisi', '2011-07-10 14:12:15'),
(6136, 'fr', 'home', 'Indexed', 'Indexé', '2020-02-14 16:07:37'),
(6144, 'fr', 'label', 'Brocken', 'Cassé(s)', '2020-02-14 16:12:40'),
(6145, 'fr', 'label', 'Comments', 'Commentaires', '2020-02-14 16:12:40'),
(6146, 'fr', 'label', 'Count', 'Nombre', '2020-02-14 16:12:40'),
(6147, 'fr', 'label', 'Exclude', 'Exclure', '2020-02-14 16:12:40'),
(6148, 'fr', 'label', 'Include', 'Inclure', '2020-02-14 16:12:40'),
(6137, 'fr', 'keyword', 'Insert keywords separated with comma', 'Indiquer les mots-clés, séparés par des virgules', '2016-01-02 23:07:27'),
(6138, 'tr', 'settings', 'Check for Updates', 'Güncellemeleri Kontol Et', '2017-02-04 18:45:16'),
(6139, 'tr', 'settings', 'SA_CRAWL_DELAY_TIME', 'Her sayfa arasındaki site denetçisi yavaş ilerlemesi', '2017-02-04 18:45:16'),
(6140, 'tr', 'settings', 'SA_MAX_NO_PAGES', 'Bir site için maksimum izin verilen sayfa sayısı', '2017-02-04 18:45:16'),
(6141, 'tr', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2017-02-04 18:45:16'),
(6142, 'tr', 'settings', 'versionnotuptodatemsg', 'Seo Panel yüklemeniz güncel değil. Lütfen, yeni versiyonu indiriniz', '2017-02-04 18:45:16'),
(6143, 'tr', 'settings', 'Your Seo Panel installation is up to date', 'Seo Panel yüklemeniz güncel.', '2017-02-04 18:45:16'),
(6149, 'fr', 'label', 'Project', 'Projet', '2020-02-14 16:12:40'),
(6150, 'fr', 'label', 'Report Type', 'Type de rapport', '2020-02-14 16:12:40'),
(6151, 'fr', 'label', 'Score', 'Score', '2020-02-14 16:12:40'),
(6152, 'fr', 'label', 'Total Results', 'Total', '2020-02-14 16:12:40'),
(6153, 'fr', 'label', 'Updated', 'Mis à jour', '2020-02-14 16:12:40'),
(6154, 'fr', 'label', 'View Reports', 'Voir les rapports', '2020-02-14 16:12:40'),
(6155, 'fr', 'panel', 'Edit Project', 'Editer le projet', '2020-02-14 16:14:52'),
(6156, 'fr', 'panel', 'New Project', 'Nouveau projet', '2020-02-14 16:14:52'),
(6157, 'fr', 'seotools', 'Auditor Projects', 'Projets du Vérificateur de site', '2019-03-28 18:37:48'),
(6158, 'fr', 'seotools', 'Auditor Reports', 'Rapports du Vérificateur de site', '2019-03-28 18:37:48'),
(6159, 'fr', 'seotools', 'Auditor Settings', 'Paramètres du Vérificateur de site', '2019-03-28 18:37:48'),
(6160, 'fr', 'seotools', 'Import Project Links', 'Importer les liens du projet', '2019-03-28 18:37:48'),
(6161, 'fr', 'seotools', 'site-auditor', 'Vérificateur de site', '2019-03-28 18:37:48'),
(6162, 'fr', 'settings', 'Check for Updates', 'Vérifier les mises à jour', '2019-03-28 18:39:30'),
(6163, 'fr', 'settings', 'SA_CRAWL_DELAY_TIME', 'Délai d''exploration entre chaque page pour le Vérificateur de site', '2019-03-28 18:39:30'),
(6164, 'fr', 'settings', 'SA_MAX_NO_PAGES', 'Nombre maximum de pages autorisées par site web', '2019-03-28 18:39:30'),
(6165, 'fr', 'settings', 'SP_API_KEY', 'Clé API SeoPanel', '2019-03-28 18:39:30'),
(6166, 'fr', 'settings', 'versionnotuptodatemsg', 'Votre installation de Seo Panel n''est plus à jour. Vous devriez télécharger la dernière version et effectuer la mise à jour.\r\n', '2019-03-28 18:39:30'),
(6167, 'fr', 'settings', 'Your Seo Panel installation is up to date', 'Votre installation Seo Panel est à jour.', '2019-03-28 18:39:30'),
(6168, 'it', 'directory', 'Reciprocal Link', 'Link reciproco', '2012-11-09 00:50:02'),
(6169, 'it', 'home', 'Indexed', 'Indicizzati', '2022-07-11 15:16:33'),
(6170, 'it', 'keyword', 'Insert keywords separated with comma', 'Inserisci le keywords separandole con una virgola', '2016-12-09 14:18:13'),
(6171, 'it', 'label', 'Brocken', 'Rotto', '2022-07-11 15:17:58'),
(6172, 'it', 'label', 'Comments', 'Commenti', '2022-07-11 15:17:58'),
(6173, 'it', 'label', 'Count', 'Conteggio', '2022-07-11 15:17:58'),
(6174, 'it', 'label', 'Exclude', 'Escludi', '2022-07-11 15:17:58'),
(6175, 'it', 'label', 'Include', 'Includi', '2022-07-11 15:17:58'),
(6176, 'it', 'label', 'Project', 'Progetto', '2022-07-11 15:17:58'),
(6177, 'it', 'label', 'Report Type', 'Riporta tipologia', '2022-07-11 15:17:58'),
(6178, 'it', 'label', 'Score', 'Punteggio', '2022-07-11 15:17:58'),
(6179, 'it', 'label', 'Total Results', 'Risultati totali', '2022-07-11 15:17:58'),
(6180, 'it', 'label', 'Updated', 'Aggiornato', '2022-07-11 15:17:58'),
(6181, 'it', 'label', 'View Reports', 'Visualizza report', '2022-07-11 15:17:58'),
(6182, 'it', 'panel', 'Edit Project', 'Modifica progetto', '2022-07-11 15:20:07'),
(6183, 'it', 'panel', 'New Project', 'Nuovo progetto', '2022-07-11 15:20:07'),
(6184, 'it', 'seotools', 'Auditor Projects', 'Revisore progetti', '2018-08-21 11:13:41'),
(6185, 'it', 'seotools', 'Auditor Reports', 'Revisore report', '2018-08-21 11:13:41'),
(6186, 'it', 'seotools', 'Auditor Settings', 'Revisore impostazioni', '2018-08-21 11:13:41'),
(6187, 'it', 'seotools', 'Import Project Links', 'Importa link progetto', '2018-08-21 11:13:41'),
(6188, 'it', 'seotools', 'site-auditor', 'Revisore sito', '2018-08-21 11:13:41'),
(6189, 'it', 'settings', 'Check for Updates', 'Controlla aggiornamenti.', '2018-08-21 11:16:32'),
(6190, 'it', 'settings', 'SA_CRAWL_DELAY_TIME', 'Ritardo controllo sito da parte del crawl tra ogni pagina.', '2018-08-21 11:16:32'),
(6191, 'it', 'settings', 'SA_MAX_NO_PAGES', 'Massimo numero di pagine permesse per sito.', '2018-08-21 11:16:32'),
(6192, 'it', 'settings', 'SP_API_KEY', 'API KEY del Seo Panel.', '2018-08-21 11:16:32'),
(6193, 'it', 'settings', 'versionnotuptodatemsg', 'La tua attuale versione del Seo Panel non risulta essere aggiornata. Aggiornalo alla nuova versione.', '2018-08-21 11:16:32'),
(6194, 'it', 'settings', 'Your Seo Panel installation is up to date', 'Il tuo Seo Panel risulta attualmente aggiornato.', '2018-08-21 11:16:32'),
(6195, 'it', 'siteauditor', 'Anchor', 'Anchor', '2018-08-21 11:14:08'),
(6196, 'it', 'siteauditor', 'anylinkcontainabovelinks', 'Tutti i link contenuti nei link presenti sopra saranno esclusi dai reports', '2018-08-21 11:14:08'),
(6197, 'it', 'siteauditor', 'anylinkcontainexcludesitemap', 'Tutti i link contenuti nei link presenti sopra saranno esclusi dalla sitemap', '2018-08-21 11:14:08'),
(6198, 'it', 'siteauditor', 'Check backlinks of pages', 'Controlla backlinks delle pagine', '2018-08-21 11:14:08'),
(6199, 'it', 'siteauditor', 'Check broken links in a page', 'Controlla i link rotti nella pagina', '2018-08-21 11:14:08'),
(6200, 'it', 'siteauditor', 'Check google pagerank of pages', 'Controlla il page rank di google per la pagina', '2018-08-21 11:14:08'),
(6201, 'it', 'siteauditor', 'Check pages indexed or not', 'Controlla se la pagina è nell''indice di ricerca o meno', '2018-08-21 11:14:08'),
(6202, 'it', 'siteauditor', 'Check Score', 'Verifica punteggio', '2018-08-21 11:14:08'),
(6203, 'it', 'siteauditor', 'checkborckenlinkwait', 'Verifica i link rotti che incrementano il tempo di esecuzione del progetto', '2018-08-21 11:14:08'),
(6204, 'it', 'siteauditor', 'Completed project execution', 'Esecuzione progetto completato', '2018-08-21 11:14:08'),
(6205, 'it', 'siteauditor', 'Crawled', 'Catturato', '2018-08-21 11:14:08'),
(6206, 'it', 'siteauditor', 'Crawled Pages', 'Pagine catturate', '2018-08-21 11:14:08'),
(6207, 'it', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'Cattura effettuata con successo! Attendi perla cattura della prossima pagina.', '2018-08-21 11:14:08'),
(6208, 'it', 'siteauditor', 'Crawling Page', 'Cattura pagina', '2018-08-21 11:14:08'),
(6209, 'it', 'siteauditor', 'Duplicate Description', 'Descrizione duplicata', '2018-08-21 11:14:08'),
(6210, 'it', 'siteauditor', 'Duplicate Keywords', 'Keywords duplicate', '2018-08-21 11:14:08'),
(6211, 'it', 'siteauditor', 'Duplicate Title', 'Titoli duplicati', '2018-08-21 11:14:08'),
(6212, 'it', 'siteauditor', 'Exclude links', 'Escludi link', '2018-08-21 11:14:08'),
(6213, 'it', 'siteauditor', 'Execute with cron', 'Esegui con cron', '2018-08-21 11:14:08'),
(6214, 'it', 'siteauditor', 'External', 'Esterno', '2018-08-21 11:14:08'),
(6215, 'it', 'siteauditor', 'External Links', 'Link esterni', '2018-08-21 11:14:08'),
(6216, 'it', 'siteauditor', 'Import Project Links', 'Importa progetto link', '2018-08-21 11:14:08'),
(6217, 'it', 'siteauditor', 'Insert links separated with comma', 'Inserisci link separandoli con una virgola', '2018-08-21 11:14:08'),
(6218, 'it', 'siteauditor', 'insertlinkssepcoma', 'Inserisci link separandoli con una virgola per escludere link infiniti nei report', '2018-08-21 11:14:08'),
(6219, 'it', 'siteauditor', 'Link Reports', 'Report link', '2018-08-21 11:14:08'),
(6220, 'it', 'siteauditor', 'Link Title', 'Titolilink', '2018-08-21 11:14:08'),
(6221, 'it', 'siteauditor', 'Maximum number of pages to be checked', 'Massimo numero di pagine da controllare', '2018-08-21 11:14:08'),
(6222, 'it', 'siteauditor', 'Maximum Pages', 'Massimo pagine', '2018-08-21 11:14:08'),
(6223, 'it', 'siteauditor', 'No active projects found', 'Nessun progetto attivo trovato', '2018-08-21 11:14:08'),
(6224, 'it', 'siteauditor', 'Nofollow', 'Nofollow', '2018-08-21 11:14:08'),
(6225, 'it', 'siteauditor', 'Number of pages is greater than', 'Il numero di pagine è più grande di', '2018-08-21 11:14:08'),
(6226, 'it', 'siteauditor', 'Number of pages should be greater than', 'Il numero di pagine dovrebbe essere più grande di', '2018-08-21 11:14:08'),
(6227, 'it', 'siteauditor', 'Page Details', 'Dettagli pagina', '2018-08-21 11:14:08'),
(6228, 'it', 'siteauditor', 'Page Link', 'Link pagina', '2018-08-21 11:14:08'),
(6229, 'it', 'siteauditor', 'Page Links', 'Link pagina', '2018-08-21 11:14:08'),
(6230, 'it', 'siteauditor', 'Pages Found', 'Pagine trovate', '2018-08-21 11:14:08'),
(6231, 'it', 'siteauditor', 'pressescapetostopexecution', 'Premiesc per bloccare l''esecuzione dello script', '2018-08-21 11:14:08'),
(6232, 'it', 'siteauditor', 'Project Summary', 'Sommario progetto', '2018-08-21 11:14:08'),
(6233, 'it', 'siteauditor', 'Project Url', 'Url progetto', '2018-08-21 11:14:08'),
(6234, 'it', 'siteauditor', 'projectalreadyexist', 'Il progetto per questo sito web esiste già', '2018-08-21 11:14:08'),
(6235, 'it', 'siteauditor', 'Recheck Pages', 'Ricontrolla pagine', '2018-08-21 11:14:08'),
(6236, 'it', 'siteauditor', 'Report Summary', 'Report sommario', '2018-08-21 11:14:08'),
(6237, 'it', 'siteauditor', 'Run Project', 'Avvia progetto', '2018-08-21 11:14:08'),
(6238, 'it', 'siteauditor', 'should start with', 'dovrebbe iniziare con', '2018-08-21 11:14:08'),
(6239, 'it', 'siteauditor', 'Site Auditor Settings', 'Impostazioni sito controllore', '2018-08-21 11:14:08'),
(6240, 'it', 'siteauditor', 'Store all links found in a page', 'Memorizza tutti i link presenti nella pagina', '2018-08-21 11:14:08'),
(6241, 'it', 'siteauditor', 'The page description length is not between', 'La lunghezza della descrizione della pagina non è tra', '2018-08-21 11:14:08'),
(6242, 'it', 'siteauditor', 'The page is brocken', 'La pagina è rotta', '2018-08-21 11:14:08'),
(6243, 'it', 'siteauditor', 'The page is having exellent number of backlinks in', 'La pagina ha un numero eccellente di backlink da', '2018-08-21 11:14:08'),
(6244, 'it', 'siteauditor', 'The page is having exellent pagerank', 'La pagina ha un eccellente pagerank', '2018-08-21 11:14:08'),
(6245, 'it', 'siteauditor', 'The page is having good number of backlinks in', 'La pagina ha un buon numero di backlink da', '2018-08-21 11:14:08'),
(6246, 'it', 'siteauditor', 'The page is having good pagerank', 'La pagina ha un buon pagerank', '2018-08-21 11:14:08');
INSERT INTO `texts` VALUES
(6247, 'it', 'siteauditor', 'The page is having poor pagerank', 'La pagina ha un basso pagerank', '2018-08-21 11:14:08'),
(6248, 'it', 'siteauditor', 'The page is having very good pagerank', 'La pagina ha un buonissimo pagerank', '2018-08-21 11:14:08'),
(6249, 'it', 'siteauditor', 'The page is not having backlinks in', 'La pagina non ha backlinks da', '2018-08-21 11:14:08'),
(6250, 'it', 'siteauditor', 'The page is not indexed in', 'La pagina non è nell''index di', '2018-08-21 11:14:08'),
(6251, 'it', 'siteauditor', 'The page keywords length is not between', 'La lunghezza delle keywords non è tra', '2018-08-21 11:14:08'),
(6252, 'it', 'siteauditor', 'The page title length is not between', 'Il titolo della pagina non è tra', '2018-08-21 11:14:08'),
(6253, 'it', 'siteauditor', 'The total number of links in page is greater than', 'Il numero totale di link nella pagine è più grande di ', '2018-08-21 11:14:08'),
(6254, 'it', 'siteauditor', 'to run project again if you stopped execution', 'per avviare il progetto nuovamente se hai fermato l''esecuzione', '2018-08-21 11:14:08'),
(6255, 'it', 'siteauditor', 'to view the reports', 'per vedere i report', '2018-08-21 11:14:08'),
(6256, 'it', 'siteauditor', 'Total Links', 'Totale link', '2018-08-21 11:14:08'),
(6257, 'it', 'siteauditor', 'totallinksgreaterallowed', 'Il totale dei link diventerà più grande del massimo numero di link consentiti per il progetto', '2018-08-21 11:14:08'),
(6258, 'hu', 'home', 'Indexed', 'Indexelt', '2011-07-11 10:51:07'),
(6259, 'hu', 'directory', 'Reciprocal Link', 'Visszamutató link', '2013-02-06 00:23:52'),
(6260, 'hu', 'keyword', 'Insert keywords separated with comma', 'Add meg a kulcsszavakat vesszővel elválasztva', '2011-07-11 10:53:54'),
(6261, 'hu', 'label', 'Brocken', 'Törött', '2013-02-06 00:24:43'),
(6262, 'hu', 'label', 'Comments', 'Hozzászólások', '2013-02-06 00:24:43'),
(6263, 'hu', 'label', 'Count', 'Összeg', '2013-02-06 00:24:43'),
(6264, 'hu', 'label', 'Exclude', 'Kihagy', '2013-02-06 00:24:43'),
(6265, 'hu', 'label', 'Include', 'Belefoglal', '2013-02-06 00:24:43'),
(6266, 'hu', 'label', 'Project', 'Projekt', '2013-02-06 00:24:43'),
(6267, 'hu', 'label', 'Report Type', 'Jelentés Típusa', '2013-02-06 00:24:43'),
(6268, 'hu', 'label', 'Score', 'Pont', '2013-02-06 00:24:43'),
(6269, 'hu', 'label', 'Total Results', 'Végeredmény', '2013-02-06 00:24:43'),
(6270, 'hu', 'label', 'Updated', 'Frissítve', '2013-02-06 00:24:43'),
(6271, 'hu', 'label', 'View Reports', 'Jelentések Megtekintése', '2013-02-06 00:24:43'),
(6272, 'hu', 'panel', 'Edit Project', 'Projekt szerkesztése', '2013-02-06 00:25:03'),
(6273, 'hu', 'panel', 'New Project', 'Új Projekt', '2013-02-06 00:25:03'),
(6274, 'hu', 'seotools', 'Auditor Projects', 'Projektek', '2011-07-11 11:00:18'),
(6275, 'hu', 'seotools', 'Auditor Reports', 'Jelentések', '2011-07-11 11:00:18'),
(6276, 'hu', 'seotools', 'Auditor Settings', 'Beállítások', '2011-07-11 11:00:18'),
(6277, 'hu', 'seotools', 'Import Project Links', 'Linkek importálása', '2011-07-11 11:00:18'),
(6278, 'hu', 'seotools', 'site-auditor', 'Oldal Kezelője', '2011-07-11 11:00:18'),
(6279, 'hu', 'settings', 'Check for Updates', 'Frissítések Keresése', '2013-02-06 00:25:44'),
(6280, 'hu', 'settings', 'SA_CRAWL_DELAY_TIME', 'Késleltetés az oldalak feltérképezése között ', '2013-02-06 00:25:44'),
(6281, 'hu', 'settings', 'SA_MAX_NO_PAGES', 'Maximum oldalak száma weblaponként', '2013-02-06 00:25:44'),
(6282, 'hu', 'settings', 'SP_API_KEY', 'Seo Panel API Kulcs', '2013-02-06 00:25:44'),
(6283, 'hu', 'settings', 'versionnotuptodatemsg', 'Seo Paneled elavult. Kérlek töltsd le az új verziót.', '2013-02-06 00:25:44'),
(6284, 'hu', 'settings', 'Your Seo Panel installation is up to date', 'A legfrissebb Seo Panel van telepítve.', '2013-02-06 00:25:44'),
(6285, 'hu', 'siteauditor', 'Anchor', 'Anchor', '2011-07-11 12:52:14'),
(6286, 'hu', 'siteauditor', 'anylinkcontainabovelinks', 'Kihagyandó linkek a jelentésből', '2011-07-11 12:52:14'),
(6287, 'hu', 'siteauditor', 'anylinkcontainexcludesitemap', 'Kihagyandó linkek az oldaltérképből', '2011-07-11 12:52:14'),
(6288, 'hu', 'siteauditor', 'Check backlinks of pages', 'Backlinkek ellenőrzése', '2011-07-11 12:52:14'),
(6289, 'hu', 'siteauditor', 'Check broken links in a page', 'Törött linkek ellenőrzése', '2011-07-11 12:52:14'),
(6290, 'hu', 'siteauditor', 'Check google pagerank of pages', 'Pagerank ellenőrzése', '2011-07-11 12:52:14'),
(6291, 'hu', 'siteauditor', 'Check pages indexed or not', 'Indexelt-e az oldal', '2011-07-11 12:52:14'),
(6292, 'hu', 'siteauditor', 'Check Score', 'Pontszám Ellenőrzése', '2011-07-11 12:52:14'),
(6293, 'hu', 'siteauditor', 'checkborckenlinkwait', 'A törött linkek ellenőrzése megnöveli a jelentés készítésének az idejét.', '2011-07-11 12:52:14'),
(6294, 'hu', 'siteauditor', 'Completed project execution', 'Befejezett projectek', '2011-07-11 12:52:14'),
(6295, 'hu', 'siteauditor', 'Crawled', 'Feltérképezett', '2011-07-11 12:52:14'),
(6296, 'hu', 'siteauditor', 'Crawled Pages', 'Feltérképezett oldalak', '2011-07-11 12:52:14'),
(6297, 'hu', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'feltérképezése sikeres! Új oldal feltérképezése:', '2011-07-11 12:52:14'),
(6298, 'hu', 'siteauditor', 'Crawling Page', 'Oldal Feltérképezése', '2011-07-11 12:52:14'),
(6299, 'hu', 'siteauditor', 'Duplicate Description', 'Leírás Duplikálása', '2011-07-11 12:52:14'),
(6300, 'hu', 'siteauditor', 'Duplicate Keywords', 'kulcsszavak Duplikálása', '2011-07-11 12:52:14'),
(6301, 'hu', 'siteauditor', 'Duplicate Title', 'Cím Duplikálása', '2011-07-11 12:52:14'),
(6302, 'hu', 'siteauditor', 'Exclude links', 'Kihagyandó Linkek', '2011-07-11 12:52:14'),
(6303, 'hu', 'siteauditor', 'Execute with cron', 'Execute with cron', '2011-07-11 12:52:14'),
(6304, 'hu', 'siteauditor', 'External', 'Kimenő', '2011-07-11 12:52:14'),
(6305, 'hu', 'siteauditor', 'External Links', 'Kimenő Linkek', '2011-07-11 12:52:14'),
(6306, 'hu', 'siteauditor', 'Import Project Links', 'Projekt Linkek Importálása', '2011-07-11 12:52:14'),
(6307, 'hu', 'siteauditor', 'Insert links separated with comma', 'Linkek megadása vesszővel elválasztva', '2011-07-11 12:52:14'),
(6308, 'hu', 'siteauditor', 'insertlinkssepcoma', 'Linkek megadása vesszővel elválasztva, amiket ki szeretnénk hagyni a jelentésből', '2011-07-11 12:52:14'),
(6309, 'hu', 'siteauditor', 'Link Reports', 'Jelentés a Linkekről', '2011-07-11 12:52:14'),
(6310, 'hu', 'siteauditor', 'Link Title', 'Link Címe', '2011-07-11 12:52:14'),
(6311, 'hu', 'siteauditor', 'Maximum number of pages to be checked', 'Leellenőrizendő oldalak száma', '2011-07-11 12:52:14'),
(6312, 'hu', 'siteauditor', 'Maximum Pages', 'Maximum Oldalak száma', '2011-07-11 12:52:14'),
(6313, 'hu', 'siteauditor', 'No active projects found', 'Nem található aktív projekt', '2011-07-11 12:52:14'),
(6314, 'hu', 'siteauditor', 'Nofollow', 'Nofollow', '2011-07-11 12:52:14'),
(6315, 'hu', 'siteauditor', 'Number of pages is greater than', 'Number of pages is greater than', '2011-07-11 12:52:14'),
(6316, 'hu', 'siteauditor', 'Number of pages should be greater than', 'Number of pages should be greater than', '2011-07-11 12:52:14'),
(6317, 'hu', 'siteauditor', 'Page Details', 'Oldal Részletei', '2011-07-11 12:52:14'),
(6318, 'hu', 'siteauditor', 'Page Link', 'Oldal Link', '2011-07-11 12:52:14'),
(6319, 'hu', 'siteauditor', 'Page Links', 'Oldal Link', '2011-07-11 12:52:14'),
(6320, 'hu', 'siteauditor', 'Pages Found', 'Az oldal nem található', '2011-07-11 12:52:14'),
(6321, 'hu', 'siteauditor', 'pressescapetostopexecution', 'Press escape key to stop execution of script', '2011-07-11 12:52:14'),
(6322, 'hu', 'siteauditor', 'Project Summary', 'Projekt Összegzés', '2011-07-11 12:52:14'),
(6323, 'hu', 'siteauditor', 'Project Url', 'Projekt Url', '2011-07-11 12:52:14'),
(6324, 'hu', 'siteauditor', 'projectalreadyexist', 'Ez a weboldal már szerepel egy projektben', '2011-07-11 12:52:14'),
(6325, 'hu', 'siteauditor', 'Recheck Pages', 'oldalak Újraellenőrzése', '2011-07-11 12:52:14'),
(6326, 'hu', 'siteauditor', 'Report Summary', 'Jelentés Összefoglaló', '2011-07-11 12:52:14'),
(6327, 'hu', 'siteauditor', 'Run Project', 'Projekt Futtatása', '2011-07-11 12:52:14'),
(6328, 'hu', 'siteauditor', 'should start with', 'should start with', '2011-07-11 12:52:14'),
(6329, 'hu', 'siteauditor', 'Site Auditor Settings', 'Oldal Kezelőjének Beállítása', '2011-07-11 12:52:14'),
(6330, 'hu', 'siteauditor', 'Store all links found in a page', 'Összes link tárolása', '2011-07-11 12:52:14'),
(6331, 'hu', 'siteauditor', 'The page description length is not between', 'The page description length is not between', '2011-07-11 12:52:14'),
(6332, 'hu', 'siteauditor', 'The page is brocken', 'Az oldal összeomlott', '2011-07-11 12:52:14'),
(6333, 'hu', 'siteauditor', 'The page is having exellent number of backlinks in', 'The page is having exellent number of backlinks in', '2011-07-11 12:52:14'),
(6334, 'hu', 'siteauditor', 'The page is having exellent pagerank', 'Az oldalnak magas a pagerankja', '2011-07-11 12:52:14'),
(6335, 'hu', 'siteauditor', 'The page is having good number of backlinks in', 'Az oldalnak sok backlinkje van', '2011-07-11 12:52:14'),
(6336, 'hu', 'siteauditor', 'The page is having good pagerank', 'Az oldalnak magas a pagerankja', '2011-07-11 12:52:14'),
(6337, 'hu', 'siteauditor', 'The page is having poor pagerank', 'Az oldalnak alacsony a pagerankja', '2011-07-11 12:52:14'),
(6338, 'hu', 'siteauditor', 'The page is having very good pagerank', 'Az oldalnak magas a pagerankja', '2011-07-11 12:52:14'),
(6339, 'hu', 'siteauditor', 'The page is not having backlinks in', 'Az oldalnak nincs backlinkje', '2011-07-11 12:52:14'),
(6340, 'hu', 'siteauditor', 'The page is not indexed in', 'Az oldal nincs indexelve', '2011-07-11 12:52:14'),
(6341, 'hu', 'siteauditor', 'The page keywords length is not between', 'The page keywords length is not between', '2011-07-11 12:52:14'),
(6342, 'hu', 'siteauditor', 'The page title length is not between', 'The page title length is not between', '2011-07-11 12:52:14'),
(6343, 'hu', 'siteauditor', 'The total number of links in page is greater than', 'The total number of links in page is greater than ', '2011-07-11 12:52:14'),
(6344, 'hu', 'siteauditor', 'to run project again if you stopped execution', 'to run project again if you stopped execution', '2011-07-11 12:52:14'),
(6345, 'hu', 'siteauditor', 'to view the reports', 'jelentés megtekintése', '2011-07-11 12:52:14'),
(6346, 'hu', 'siteauditor', 'Total Links', 'Összes Link', '2011-07-11 12:52:14'),
(6347, 'hu', 'siteauditor', 'totallinksgreaterallowed', 'Total links will become greater than maximum links allowed to the project', '2011-07-11 12:52:14'),
(6348, 'tr', 'siteauditor', 'Anchor', 'Sunucu', '2017-02-04 18:37:17'),
(6349, 'tr', 'siteauditor', 'anylinkcontainabovelinks', 'Yukarıdaki herhani bir link rapordan çıkarılacak', '2017-02-04 18:37:17'),
(6350, 'tr', 'siteauditor', 'anylinkcontainexcludesitemap', 'Yukarıdaki herhani bir link sitemap''ten çıkarılacak', '2017-02-04 18:37:17'),
(6351, 'tr', 'siteauditor', 'Check backlinks of pages', 'Sayfa backlink''lerini kontrol et', '2017-02-04 18:37:17'),
(6352, 'tr', 'siteauditor', 'Check broken links in a page', 'Sayfadaki kırık linkleri kontrol et', '2017-02-04 18:37:17'),
(6353, 'tr', 'siteauditor', 'Check google pagerank of pages', 'Sayfaların google page rank değerini kontrol et', '2017-02-04 18:37:17'),
(6354, 'tr', 'siteauditor', 'Check pages indexed or not', 'Sayfaların indexlenli olup olmadıklarını kontrol et', '2017-02-04 18:37:17'),
(6355, 'tr', 'siteauditor', 'Check Score', 'Skoru Kontrol et', '2017-02-04 18:37:17'),
(6356, 'tr', 'siteauditor', 'checkborckenlinkwait', 'Kırık linkleri kontrol etmek proje düzenleme zaman kaybınızı azaltır', '2017-02-04 18:37:17'),
(6357, 'tr', 'siteauditor', 'Completed project execution', 'Proje düzenlemesi tamamlandı', '2017-02-04 18:37:17'),
(6358, 'tr', 'siteauditor', 'Crawled', 'Tarandı', '2017-02-04 18:37:17'),
(6359, 'tr', 'siteauditor', 'Crawled Pages', 'Taranan Sayfalar', '2017-02-04 18:37:17'),
(6360, 'tr', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'trama işlemi başarılı! sonraki sayfayı taramak için bekliyor', '2017-02-04 18:37:17'),
(6361, 'tr', 'siteauditor', 'Crawling Page', 'Sayfa taranıyor', '2017-02-04 18:37:17'),
(6362, 'tr', 'siteauditor', 'Duplicate Description', 'Açıklamayı Kopyala', '2017-02-04 18:37:17'),
(6363, 'tr', 'siteauditor', 'Duplicate Keywords', 'Anahtar kelimeleri Kopyala', '2017-02-04 18:37:17'),
(6364, 'tr', 'siteauditor', 'Duplicate Title', 'Başlığı Kopyala', '2017-02-04 18:37:17'),
(6365, 'tr', 'siteauditor', 'Exclude links', 'Linkleri çıkar', '2017-02-04 18:37:17'),
(6366, 'tr', 'siteauditor', 'Execute with cron', 'Cron ile çıkar', '2017-02-04 18:37:17'),
(6367, 'tr', 'siteauditor', 'External', 'Harici', '2017-02-04 18:37:17'),
(6368, 'tr', 'siteauditor', 'External Links', 'Harici Linkler', '2017-02-04 18:37:17'),
(6369, 'tr', 'siteauditor', 'Import Project Links', 'Proje linklerini içe aktar', '2017-02-04 18:37:17'),
(6370, 'tr', 'siteauditor', 'Insert links separated with comma', 'Linkleri virgül ile ayırarak giriniz', '2017-02-04 18:37:17'),
(6371, 'tr', 'siteauditor', 'insertlinkssepcoma', 'sonuz linkleri rapordan ayrı tutmak için linkleri virgül ile ayırarak giriniz', '2017-02-04 18:37:17'),
(6372, 'tr', 'siteauditor', 'Link Reports', 'Link raporu', '2017-02-04 18:37:17'),
(6373, 'tr', 'siteauditor', 'Link Title', 'Link Başlığı', '2017-02-04 18:37:17'),
(6374, 'tr', 'siteauditor', 'Maximum number of pages to be checked', 'Kontol edilen maksimum sayfa sayısı', '2017-02-04 18:37:17'),
(6375, 'tr', 'siteauditor', 'Maximum Pages', 'Maksimum Sayfa', '2017-02-04 18:37:17'),
(6376, 'tr', 'siteauditor', 'No active projects found', 'Aktif proje yok', '2017-02-04 18:37:17'),
(6377, 'tr', 'siteauditor', 'Nofollow', 'Takip etme (nofollow)', '2017-02-04 18:37:17'),
(6378, 'tr', 'siteauditor', 'Number of pages is greater than', 'Sayfa sayısı bundan daha büyük, ', '2017-02-04 18:37:17'),
(6379, 'tr', 'siteauditor', 'Number of pages should be greater than', 'Sayfa sayısı bundan fazla olmalı, ', '2017-02-04 18:37:17'),
(6380, 'tr', 'siteauditor', 'Page Details', 'Sayfa Detayları', '2017-02-04 18:37:17'),
(6381, 'tr', 'siteauditor', 'Page Link', 'Sayfa Linki', '2017-02-04 18:37:17'),
(6382, 'tr', 'siteauditor', 'Page Links', 'Sayfa Linkleri', '2017-02-04 18:37:17'),
(6383, 'tr', 'siteauditor', 'Pages Found', 'Sayfa Bulundu', '2017-02-04 18:37:17'),
(6384, 'tr', 'siteauditor', 'pressescapetostopexecution', 'script düzenlemesini durdurmak için ESC escape tuşuna basınız', '2017-02-04 18:37:17'),
(6385, 'tr', 'siteauditor', 'Project Summary', 'Proje Özeti', '2017-02-04 18:37:17'),
(6386, 'tr', 'siteauditor', 'Project Url', 'Proje Url', '2017-02-04 18:37:17'),
(6387, 'tr', 'siteauditor', 'projectalreadyexist', 'Bu site için proje daha önce oluşturuldu', '2017-02-04 18:37:17'),
(6388, 'tr', 'siteauditor', 'Recheck Pages', 'Sayfaları Tekrar Kontrol Et', '2017-02-04 18:37:17'),
(6389, 'tr', 'siteauditor', 'Report Summary', 'Rapor Özeti', '2017-02-04 18:37:17'),
(6390, 'tr', 'siteauditor', 'Run Project', 'Projeyi Çalıştır', '2017-02-04 18:37:17'),
(6391, 'tr', 'siteauditor', 'should start with', 'bunla başlamalı, ', '2017-02-04 18:37:17'),
(6392, 'tr', 'siteauditor', 'Site Auditor Settings', 'Site Denetçi Ayarları', '2017-02-04 18:37:17'),
(6393, 'tr', 'siteauditor', 'Store all links found in a page', 'Bir sayfada bulunan tüm linkleri depola', '2017-02-04 18:37:17'),
(6394, 'tr', 'siteauditor', 'The page description length is not between', 'Sayfa açıklaması uzunluğu şu aralıkta değil, ', '2017-02-04 18:37:17'),
(6395, 'tr', 'siteauditor', 'The page is brocken', 'Sayfa parça', '2017-02-04 18:37:17'),
(6396, 'tr', 'siteauditor', 'The page is having exellent number of backlinks in', 'Sayfa mükemmel sayıda backlink almaktadır. ', '2017-02-04 18:37:17'),
(6397, 'tr', 'siteauditor', 'The page is having exellent pagerank', 'Sayfa mükemmel pagerank almaktadır', '2017-02-04 18:37:17'),
(6398, 'tr', 'siteauditor', 'The page is having good number of backlinks in', 'Sayfa iyi sayıda backlink almaktadır. ', '2017-02-04 18:37:17'),
(6399, 'tr', 'siteauditor', 'The page is having good pagerank', 'Sayfa iyi pagerank almaktadır', '2017-02-04 18:37:17'),
(6400, 'tr', 'siteauditor', 'The page is having poor pagerank', 'Sayfa zayıf pagerank almaktadır', '2017-02-04 18:37:17'),
(6401, 'tr', 'siteauditor', 'The page is having very good pagerank', 'Sayfa çok iyi pagerank almaktadır', '2017-02-04 18:37:17'),
(6402, 'tr', 'siteauditor', 'The page is not having backlinks in', 'Sayfa backlink almamaktadır. ', '2017-02-04 18:37:17'),
(6403, 'tr', 'siteauditor', 'The page is not indexed in', 'Sayfa indexli değil', '2017-02-04 18:37:17'),
(6404, 'tr', 'siteauditor', 'The page keywords length is not between', 'Sayfa anahtar kelimeleri uzunluğu şu aralıkta değil, ', '2017-02-04 18:37:17'),
(6405, 'tr', 'siteauditor', 'The page title length is not between', 'Sayfa başlığı uzunluğu şu aralıkta değil, ', '2017-02-04 18:37:17'),
(6406, 'tr', 'siteauditor', 'The total number of links in page is greater than', 'Sayfadaki toplam link sayısı şundan büyük', '2017-02-04 18:37:17'),
(6407, 'tr', 'siteauditor', 'to run project again if you stopped execution', 'eğer uygulamayı durdursanız, projeyi yeniden çalıştırmak için', '2017-02-04 18:37:17'),
(6408, 'tr', 'siteauditor', 'to view the reports', 'raporları görüntülemek için ', '2017-02-04 18:37:17'),
(6409, 'tr', 'siteauditor', 'Total Links', 'Toplam Linkler', '2017-02-04 18:37:17'),
(6410, 'tr', 'siteauditor', 'totallinksgreaterallowed', 'Toplam linkler projede izin verilen maksimum link sayısından fazla olacak', '2017-02-04 18:37:17'),
(6411, 'ru', 'directory', 'Reciprocal Link', 'Взаимные ссылки', '2012-11-09 11:03:15'),
(6412, 'ru', 'settings', 'SP_API_KEY', 'API ключ Seo Panel', '2024-07-17 15:22:42'),
(6413, 'de', 'directory', 'Reciprocal Link', 'Gegenseitige Verlinkung', '2021-06-15 01:41:51'),
(6414, 'ro', 'directory', 'Reciprocal Link', 'Link Reciproc', '2012-05-19 00:52:34'),
(6415, 'bg', 'directory', 'Reciprocal Link', 'взаимна връзка', '2012-11-10 02:03:43'),
(6416, 'bg', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2018-08-21 11:24:42'),
(6417, 'cs', 'directory', 'Add back to directory list', 'Přidat zpět do adresáře', '2011-07-12 16:28:25'),
(6418, 'cs', 'directory', 'Approved', 'Schváleno', '2011-07-12 16:28:25'),
(6419, 'cs', 'directory', 'Captcha', 'Captcha', '2011-07-12 16:28:25'),
(6420, 'cs', 'directory', 'categorynote', 'Kategorie oddělené čárkou a seřazené dle priority od nejvyšší.', '2011-07-12 16:28:25'),
(6421, 'cs', 'directory', 'Check Directory Status', 'Zkontrolovat stav adresáře', '2011-07-12 16:28:25'),
(6422, 'cs', 'directory', 'Check Directory Submission Status', 'Zkontrolovat stav odeslání do adresáře', '2011-07-12 16:28:25'),
(6423, 'cs', 'directory', 'clicktoproceeddirsts', 'Pro kontrolu stavu adresáře klikněte na Provést .', '2011-07-12 16:28:25'),
(6424, 'cs', 'directory', 'Confirmation', 'Potvrzení', '2011-07-12 16:28:25'),
(6425, 'cs', 'directory', 'desnote', 'Některé adresáře vyžadují v poli popisu nejméně 150 znaků.', '2011-07-12 16:28:25'),
(6426, 'cs', 'directory', 'Directories with out captcha', 'Adresáře bez ověření captcha', '2011-07-12 16:28:25'),
(6427, 'cs', 'directory', 'Directory Submission Reports', 'Reporty odeslání do adresářů', '2011-07-12 16:28:25'),
(6428, 'cs', 'directory', 'Enter the code shown', 'Vlože zobrazený kód', '2011-07-12 16:28:25'),
(6429, 'cs', 'directory', 'nocatnote', 'Zadaná kategorie nebyla nalezena na vkládací stránce. Prosím kliněte na Znovu načíst nebo Přeskočit ', '2011-07-12 16:28:25'),
(6430, 'cs', 'directory', 'nodirnote', 'Nebyly nalezeny žádné Aktivní adresáře', '2011-07-12 16:28:25'),
(6431, 'cs', 'directory', 'nosuccessnote', 'Nebylo získáno potvrzení o úspěchu. Prosím zkontrolujte svůj email, možná došlo tam.', '2011-07-12 16:28:25'),
(6432, 'cs', 'directory', 'optionalnote', 'Dodatečné titulky a popisy, které jsou využívány pro náhodné vkládáních dalších titulků a popisů pro získání lepších výsledků.', '2011-07-12 16:28:25'),
(6433, 'cs', 'directory', 'Owner Email', 'Email vlastníka', '2011-07-12 16:28:25'),
(6434, 'cs', 'directory', 'Owner Name', 'Jméno vlastníka.', '2011-07-12 16:28:25'),
(6435, 'cs', 'directory', 'Pending', 'Zprácováváno', '2011-07-12 16:28:25'),
(6436, 'cs', 'directory', 'Please select a website to proceed', 'Prosím vyberte website k provedení', '2011-07-12 16:28:25'),
(6437, 'cs', 'directory', 'Reciprocal Link', 'Reciproční odkaz', '2011-07-12 16:28:25'),
(6438, 'cs', 'directory', 'selectwebsiteproceed', 'Vyberte Website aby se vkládání do adresářů mohlo Provést . Zkontrolujte Adresáře bez ověření captcha pro odeslání do adresářů bez captcha.', '2011-07-12 16:28:25'),
(6439, 'cs', 'directory', 'selectwebsiteschecksub', 'Vyberte Website aby se mohla Provést kontrola vložení do adresářů.', '2011-07-12 16:28:25'),
(6440, 'cs', 'directory', 'Semi Automatic Directory Submission Tool', 'Poloautomatický nástroj na vkládání do adresářů', '2011-07-12 16:28:25'),
(6441, 'cs', 'directory', 'spamemailnote', 'Některé adresáře mohou rozesílat spam, nedoporučujeme používat vaši primární emailovou adresu.', '2011-07-12 16:28:25'),
(6442, 'cs', 'directory', 'Submission Details', 'Detaily odeslání', '2011-07-12 16:28:25'),
(6443, 'cs', 'directory', 'Submit Description', 'Odeslat popis', '2011-07-12 16:28:25'),
(6444, 'cs', 'directory', 'Submit Keywords', 'Odeslat klíčová slova', '2011-07-12 16:28:25'),
(6445, 'cs', 'directory', 'Submit Title', 'Odeslat titulek', '2011-07-12 16:28:25'),
(6446, 'cs', 'directory', 'Website Category', 'Kategorie webu', '2011-07-12 16:28:25'),
(6447, 'cs', 'directory', 'Website Url', 'URL webu', '2011-07-12 16:28:25'),
(6448, 'cs', 'home', 'Account Summary', 'Shrnutí účtu', '2011-08-06 16:26:49'),
(6449, 'cs', 'home', 'Backlinks', 'Zpětné odkazy', '2011-08-06 16:26:49'),
(6450, 'cs', 'home', 'Directory Submission', 'Odeslání do adresářů', '2011-08-06 16:26:49'),
(39338, 'en', 'siteauditor', 'HTTPS Secure', 'HTTPS Secure', '2026-01-19 23:07:11'),
(39339, 'ar', 'siteauditor', 'HTTPS Secure', 'آمن HTTPS', '2026-01-19 23:07:11'),
(39340, 'bg', 'siteauditor', 'HTTPS Secure', 'HTTPS сигурен', '2026-01-19 23:07:11'),
(39341, 'de', 'siteauditor', 'HTTPS Secure', 'HTTPS sicher', '2026-01-19 23:07:11'),
(39342, 'es', 'siteauditor', 'HTTPS Secure', 'HTTPS seguro', '2026-01-19 23:07:11'),
(39343, 'fr', 'siteauditor', 'HTTPS Secure', 'HTTPS sécurisé', '2026-01-19 23:07:11'),
(39344, 'it', 'siteauditor', 'HTTPS Secure', 'HTTPS sicuro', '2026-01-19 23:07:11'),
(39345, 'nl', 'siteauditor', 'HTTPS Secure', 'HTTPS beveiligd', '2026-01-19 23:07:11'),
(39346, 'pl', 'siteauditor', 'HTTPS Secure', 'HTTPS zabezpieczony', '2026-01-19 23:07:11'),
(39347, 'pt', 'siteauditor', 'HTTPS Secure', 'HTTPS seguro', '2026-01-19 23:07:11'),
(39348, 'pt-br', 'siteauditor', 'HTTPS Secure', 'HTTPS seguro', '2026-01-19 23:07:11'),
(39349, 'ru', 'siteauditor', 'HTTPS Secure', 'HTTPS защищен', '2026-01-19 23:07:11'),
(39350, 'tr', 'siteauditor', 'HTTPS Secure', 'HTTPS güvenli', '2026-01-19 23:07:11'),
(39351, 'zh', 'siteauditor', 'HTTPS Secure', 'HTTPS安全', '2026-01-19 23:07:11'),
(39352, 'cn', 'siteauditor', 'HTTPS Secure', 'HTTPS安全', '2026-01-19 23:07:11'),
(39353, 'en', 'siteauditor', 'Open Graph Tags', 'Open Graph Tags', '2026-01-19 23:07:11'),
(39354, 'ar', 'siteauditor', 'Open Graph Tags', 'علامات Open Graph', '2026-01-19 23:07:11'),
(39355, 'bg', 'siteauditor', 'Open Graph Tags', 'Open Graph тагове', '2026-01-19 23:07:11'),
(39356, 'de', 'siteauditor', 'Open Graph Tags', 'Open Graph Tags', '2026-01-19 23:07:11'),
(39357, 'es', 'siteauditor', 'Open Graph Tags', 'Etiquetas Open Graph', '2026-01-19 23:07:11'),
(39358, 'fr', 'siteauditor', 'Open Graph Tags', 'Balises Open Graph', '2026-01-19 23:07:11'),
(39359, 'it', 'siteauditor', 'Open Graph Tags', 'Tag Open Graph', '2026-01-19 23:07:11'),
(39360, 'nl', 'siteauditor', 'Open Graph Tags', 'Open Graph tags', '2026-01-19 23:07:11'),
(39361, 'pl', 'siteauditor', 'Open Graph Tags', 'Tagi Open Graph', '2026-01-19 23:07:11'),
(39362, 'pt', 'siteauditor', 'Open Graph Tags', 'Tags Open Graph', '2026-01-19 23:07:11'),
(39363, 'pt-br', 'siteauditor', 'Open Graph Tags', 'Tags Open Graph', '2026-01-19 23:07:11'),
(39364, 'ru', 'siteauditor', 'Open Graph Tags', 'Теги Open Graph', '2026-01-19 23:07:11'),
(39365, 'tr', 'siteauditor', 'Open Graph Tags', 'Open Graph etiketleri', '2026-01-19 23:07:11'),
(39366, 'zh', 'siteauditor', 'Open Graph Tags', 'Open Graph标签', '2026-01-19 23:07:11'),
(39367, 'cn', 'siteauditor', 'Open Graph Tags', 'Open Graph标签', '2026-01-19 23:07:11'),
(39368, 'en', 'siteauditor', 'Twitter Cards', 'Twitter Cards', '2026-01-19 23:07:11'),
(39369, 'ar', 'siteauditor', 'Twitter Cards', 'بطاقات تويتر', '2026-01-19 23:07:11'),
(39370, 'bg', 'siteauditor', 'Twitter Cards', 'Twitter карти', '2026-01-19 23:07:11'),
(39371, 'de', 'siteauditor', 'Twitter Cards', 'Twitter Cards', '2026-01-19 23:07:11'),
(39372, 'es', 'siteauditor', 'Twitter Cards', 'Tarjetas de Twitter', '2026-01-19 23:07:11'),
(39373, 'fr', 'siteauditor', 'Twitter Cards', 'Cartes Twitter', '2026-01-19 23:07:11'),
(39374, 'it', 'siteauditor', 'Twitter Cards', 'Schede Twitter', '2026-01-19 23:07:11'),
(39375, 'nl', 'siteauditor', 'Twitter Cards', 'Twitter-kaarten', '2026-01-19 23:07:11'),
(39376, 'pl', 'siteauditor', 'Twitter Cards', 'Karty Twitter', '2026-01-19 23:07:11'),
(39377, 'pt', 'siteauditor', 'Twitter Cards', 'Cartões do Twitter', '2026-01-19 23:07:11'),
(39378, 'pt-br', 'siteauditor', 'Twitter Cards', 'Cartões do Twitter', '2026-01-19 23:07:11'),
(39379, 'ru', 'siteauditor', 'Twitter Cards', 'Карточки Twitter', '2026-01-19 23:07:11'),
(39380, 'tr', 'siteauditor', 'Twitter Cards', 'Twitter kartları', '2026-01-19 23:07:11'),
(39381, 'zh', 'siteauditor', 'Twitter Cards', 'Twitter卡片', '2026-01-19 23:07:11'),
(39382, 'cn', 'siteauditor', 'Twitter Cards', 'Twitter卡片', '2026-01-19 23:07:11'),
(39383, 'en', 'siteauditor', 'Yes', 'Yes', '2026-01-19 23:07:11'),
(39384, 'ar', 'siteauditor', 'Yes', 'نعم', '2026-01-19 23:07:11'),
(39385, 'bg', 'siteauditor', 'Yes', 'Да', '2026-01-19 23:07:11'),
(39386, 'de', 'siteauditor', 'Yes', 'Ja', '2026-01-19 23:07:11'),
(39387, 'es', 'siteauditor', 'Yes', 'Sí', '2026-01-19 23:07:11'),
(6556, 'cs', 'keyword', 'Crawling keyword', 'Prozkoumávám klíčová slova', '2011-07-14 15:20:41'),
(6557, 'cs', 'keyword', 'Detailed Keyword Position Reports', 'Detailní reporty pozic klíčových slov', '2011-07-14 15:20:41'),
(6558, 'cs', 'keyword', 'Edit Keyword', 'Upravit klíčové slovo', '2011-07-14 15:20:41'),
(6559, 'cs', 'keyword', 'Graphical Keyword Position Reports', 'Grafické reporty pozic klíčových slov', '2011-07-14 15:20:41'),
(6560, 'cs', 'keyword', 'Import Keywords', 'Importovat klíčová slova', '2011-07-14 15:20:41'),
(6561, 'cs', 'keyword', 'Insert keywords separated with comma', 'Vložte klíčová slova oddělená čárkou', '2011-07-14 15:20:41'),
(6562, 'cs', 'keyword', 'Keyword already exist', 'Klíčové slovo již existuje', '2011-07-14 15:20:41'),
(6563, 'cs', 'keyword', 'Keyword Position Report', 'Report pozic klíčových slov', '2011-07-14 15:20:41'),
(6564, 'cs', 'keyword', 'New Keyword', 'Nové klíčové slovo', '2011-07-14 15:20:41'),
(6565, 'cs', 'keyword', 'not assigned to required search engines', 'není přiřazeno k požadovaným vyhledávačům', '2011-07-14 15:20:41'),
(6566, 'cs', 'keyword', 'pleaseselecttool', 'Prosím vyberte alespoň jeden nástroj pro SEO', '2011-07-14 15:20:41'),
(6567, 'cs', 'keyword', 'Quick Keyword Position Checker', 'Rychlá kontrola pozic klíčových slov', '2011-07-14 15:20:41'),
(6568, 'cs', 'keyword', 'results from ', 'výsledky z', '2011-07-14 15:20:41'),
(6569, 'cs', 'keyword', 'Show All results', 'Zobrazit všechny výsledky', '2011-07-14 15:20:41'),
(6570, 'cs', 'keyword', 'Successfully crawled keyword', 'Úspěšně prozkoumaná klíčová slova', '2011-07-14 15:20:41'),
(6571, 'cs', 'keyword', 'to create new keywords', 'k vytvoření nových klíčových slov', '2011-07-14 15:20:41'),
(6572, 'cs', 'label', 'already exist', 'již existují', '2011-07-14 15:25:05'),
(6573, 'cs', 'label', 'Authentication', 'Ověření', '2011-07-14 15:25:05'),
(6574, 'cs', 'label', 'Author', 'Autor', '2011-07-14 15:25:05'),
(6575, 'cs', 'label', 'Brocken', 'Poškozené', '2011-07-14 15:25:05'),
(6576, 'cs', 'label', 'Click Here', 'Klikněte zde', '2011-07-14 15:25:05'),
(6577, 'cs', 'label', 'Comments', 'Komentáře', '2011-07-14 15:25:05'),
(6578, 'cs', 'label', 'Count', 'Počet', '2011-07-14 15:25:05'),
(6579, 'cs', 'label', 'Cron', 'Cron', '2011-07-14 15:25:05'),
(6580, 'cs', 'label', 'Description', 'Popis', '2011-07-14 15:25:05'),
(6581, 'cs', 'label', 'Developers', 'Vývojáři', '2011-07-14 15:25:05'),
(6582, 'cs', 'label', 'Download', 'Stáhnout', '2011-07-14 15:25:05'),
(6583, 'cs', 'label', 'Exclude', 'Vyloučit', '2011-07-14 15:25:05'),
(6584, 'cs', 'label', 'Include', 'Zahrnout', '2011-07-14 15:25:05'),
(6585, 'cs', 'label', 'Installation', 'Instalace', '2011-07-14 15:25:05'),
(6586, 'cs', 'label', 'Keywords', 'Klíčová slova', '2011-07-14 15:25:05'),
(6587, 'cs', 'label', 'noactiveplugins', 'Nebyly nalezeny žádné aktivní SEO pluginy', '2011-07-14 15:25:05'),
(6588, 'cs', 'label', 'Plugin', 'Pluginy', '2011-07-14 15:25:05'),
(6589, 'cs', 'label', 'Port', 'Port', '2011-07-14 15:25:05'),
(6590, 'cs', 'label', 'Project', 'Projekt', '2011-07-14 15:25:05'),
(6591, 'cs', 'label', 'Proxy', 'Proxy', '2011-07-14 15:25:05'),
(6592, 'cs', 'label', 'Re-install', 'Znovu nainstalovat', '2011-07-14 15:25:05'),
(6593, 'cs', 'label', 'Report Type', 'Typ reportu', '2011-07-14 15:25:05'),
(6594, 'cs', 'label', 'Score', 'Skóre', '2011-07-14 15:25:05'),
(6595, 'cs', 'label', 'Sponsors', 'Sponzoři', '2011-07-14 15:25:05'),
(6596, 'cs', 'label', 'Title', 'Titule', '2011-07-14 15:25:05'),
(6597, 'cs', 'label', 'Total Results', 'Celkové výsledky', '2011-07-14 15:25:05'),
(6598, 'cs', 'label', 'translation by', 'přeložil', '2011-07-14 15:25:05'),
(6599, 'cs', 'label', 'Translators', 'Překladatelé', '2011-07-14 15:25:05'),
(6600, 'cs', 'label', 'Updated', 'Aktualizováno', '2011-07-14 15:25:05'),
(6601, 'cs', 'label', 'Upgrade', 'Aktualizace', '2011-07-14 15:25:05'),
(6454, 'cs', 'home', 'Indexed', 'Indexován', '2011-08-06 16:26:49'),
(6455, 'cs', 'home', 'Pages Indexed', 'Indexovaných stránek', '2011-08-06 16:26:49'),
(6456, 'cs', 'home', 'Ranks', 'Ranky', '2011-08-06 16:26:49'),
(6457, 'cs', 'home', 'SiteNameUrl', 'Jméno webu/URL', '2011-08-06 16:26:49'),
(6458, 'cs', 'home', 'Website Statistics', 'Statistiky webu', '2011-08-06 16:26:49'),
(6459, 'pt', 'siteauditor', 'Anchor', 'Âncora ', '2011-07-12 20:11:46'),
(6460, 'pt', 'siteauditor', 'anylinkcontainabovelinks', 'Todos os links acima contêm links que serão excluídos a partir de relatórios ', '2011-07-12 20:11:46'),
(6461, 'pt', 'siteauditor', 'anylinkcontainexcludesitemap', 'Todos os links acima que contêm links serão excluídos sitemap ', '2011-07-12 20:11:46'),
(6462, 'pt', 'siteauditor', 'Check backlinks of pages', 'Verificar backlinks de páginas ', '2011-07-12 20:11:46'),
(6463, 'pt', 'siteauditor', 'Check broken links in a page', 'Verificar os links inválidos da página ', '2011-07-12 20:11:46'),
(6464, 'pt', 'siteauditor', 'Check google pagerank of pages', 'Verifique o Google PageRank de páginas ', '2011-07-12 20:11:46'),
(6465, 'pt', 'siteauditor', 'Check pages indexed or not', 'Verifique páginas indexadas ou não ', '2011-07-12 20:11:46'),
(6466, 'pt', 'siteauditor', 'Check Score', 'Verifique Pontuação ', '2011-07-12 20:11:46'),
(6467, 'pt', 'siteauditor', 'checkborckenlinkwait', 'Confira os links inválidos irá aumentar o tempo de execução do projecto ', '2011-07-12 20:11:46'),
(6468, 'pt', 'siteauditor', 'Completed project execution', 'Execução do projecto concluído ', '2011-07-12 20:11:46'),
(6469, 'pt', 'siteauditor', 'Crawled', 'Rastreado ', '2011-07-12 20:11:46'),
(6470, 'pt', 'siteauditor', 'Crawled Pages', 'Páginas rastreadas', '2011-07-12 20:11:46'),
(6471, 'pt', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'rastreado com sucesso! Esperando o rastreamento da próxima página para ', '2011-07-12 20:11:46'),
(6472, 'pt', 'siteauditor', 'Crawling Page', 'Rastreando Página ', '2011-07-12 20:11:46'),
(6473, 'pt', 'siteauditor', 'Duplicate Description', 'Descrição Duplicada', '2011-07-12 20:11:46'),
(6474, 'pt', 'siteauditor', 'Duplicate Keywords', 'Palavras-chave duplicadas ', '2011-07-12 20:11:46'),
(6475, 'pt', 'siteauditor', 'Duplicate Title', 'título duplicado', '2011-07-12 20:11:46'),
(6476, 'pt', 'siteauditor', 'Exclude links', 'Exclui links', '2011-07-12 20:11:46'),
(6477, 'pt', 'siteauditor', 'Execute with cron', 'Executar com através da cron ', '2011-07-12 20:11:46'),
(6478, 'pt', 'siteauditor', 'External', 'Externo ', '2011-07-12 20:11:46'),
(6479, 'pt', 'siteauditor', 'External Links', 'Ligações externas ', '2011-07-12 20:11:46'),
(6480, 'pt', 'siteauditor', 'Import Project Links', 'importar os links do projecto', '2011-07-12 20:11:46'),
(6481, 'pt', 'siteauditor', 'Insert links separated with comma', 'Inserir os links separados por vírgula ', '2011-07-12 20:11:46'),
(6482, 'pt', 'siteauditor', 'insertlinkssepcoma', 'Inserir links separados por vírgula, para excluir ligações infinitas a partir dos relatórios ', '2011-07-12 20:11:46'),
(6483, 'pt', 'siteauditor', 'Link Reports', 'Relatórios apontam ', '2011-07-12 20:11:46'),
(6484, 'pt', 'siteauditor', 'Link Title', 'Título do Link ', '2011-07-12 20:11:46'),
(6485, 'pt', 'siteauditor', 'Maximum number of pages to be checked', 'Número máximo de páginas a serem verificados ', '2011-07-12 20:11:46'),
(6486, 'pt', 'siteauditor', 'Maximum Pages', 'Máximo de Páginas', '2011-07-12 20:11:46'),
(6487, 'pt', 'siteauditor', 'No active projects found', 'Nenhum projecto activo encontrado ', '2011-07-12 20:11:46'),
(6488, 'pt', 'siteauditor', 'Nofollow', 'Não siga em frente', '2011-07-12 20:11:46'),
(6489, 'pt', 'siteauditor', 'Number of pages is greater than', 'Número de páginas é maior que ', '2011-07-12 20:11:46'),
(6490, 'pt', 'siteauditor', 'Number of pages should be greater than', 'Número de páginas deve ser maior que ', '2011-07-12 20:11:46'),
(6491, 'pt', 'siteauditor', 'Page Details', 'Detalhes da Página ', '2011-07-12 20:11:46'),
(6492, 'pt', 'siteauditor', 'Page Link', 'Link da Página ', '2011-07-12 20:11:46'),
(6493, 'pt', 'siteauditor', 'Page Links', 'links da Página', '2011-07-12 20:11:46'),
(6494, 'pt', 'siteauditor', 'Pages Found', 'Páginas encontradas ', '2011-07-12 20:11:46'),
(6495, 'pt', 'siteauditor', 'pressescapetostopexecution', 'Pressione Escape para parar a execução do script ', '2011-07-12 20:11:46'),
(6496, 'pt', 'siteauditor', 'Project Summary', 'Resumo do Projecto ', '2011-07-12 20:11:46'),
(6497, 'pt', 'siteauditor', 'Project Url', 'Url do projecto ', '2011-07-12 20:11:46'),
(6498, 'pt', 'siteauditor', 'projectalreadyexist', 'Projecto para este site já existe ', '2011-07-12 20:11:46'),
(6499, 'pt', 'siteauditor', 'Recheck Pages', 'verifique novamente as Páginas ', '2011-07-12 20:11:46'),
(6500, 'pt', 'siteauditor', 'Report Summary', 'Resumo do relatório ', '2011-07-12 20:11:46'),
(6501, 'pt', 'siteauditor', 'Run Project', 'Executar projecto ', '2011-07-12 20:11:46'),
(6502, 'pt', 'siteauditor', 'should start with', 'deve começar com ', '2011-07-12 20:11:46'),
(6503, 'pt', 'siteauditor', 'Site Auditor Settings', 'Definições do Site Auditor ', '2011-07-12 20:11:46'),
(6504, 'pt', 'siteauditor', 'Store all links found in a page', 'Armazenar todos os links encontrados em uma página ', '2011-07-12 20:11:46'),
(6505, 'pt', 'siteauditor', 'The page description length is not between', 'O comprimento da descrição da página não é entre ', '2011-07-12 20:11:46'),
(6506, 'pt', 'siteauditor', 'The page is brocken', 'A página não está concluída', '2011-07-12 20:11:46'),
(6507, 'pt', 'siteauditor', 'The page is having exellent number of backlinks in', 'A página está com excelente número de backlinks em ', '2011-07-12 20:11:46'),
(6508, 'pt', 'siteauditor', 'The page is having exellent pagerank', 'A página está a ter um excelente pagerank ', '2011-07-12 20:11:46'),
(6509, 'pt', 'siteauditor', 'The page is having good number of backlinks in', 'A página está a ter bom número de backlinks em ', '2011-07-12 20:11:46'),
(6510, 'pt', 'siteauditor', 'The page is having good pagerank', 'A página está com bom pagerank ', '2011-07-12 20:11:46'),
(6511, 'pt', 'siteauditor', 'The page is having poor pagerank', 'A página está a ter um mau pagerank', '2011-07-12 20:11:46'),
(6512, 'pt', 'siteauditor', 'The page is having very good pagerank', 'A página está a ter um muito bom pagerank ', '2011-07-12 20:11:46'),
(6513, 'pt', 'siteauditor', 'The page is not having backlinks in', 'A página não está a ter backlinks em ', '2011-07-12 20:11:46'),
(6514, 'pt', 'siteauditor', 'The page is not indexed in', 'A página não está indexada em ', '2011-07-12 20:11:46'),
(6515, 'pt', 'siteauditor', 'The page keywords length is not between', 'A página das palavras-chave não tem palavras entre ', '2011-07-12 20:11:46'),
(6516, 'pt', 'siteauditor', 'The page title length is not between', 'O comprimento título da página não está entre ', '2011-07-12 20:11:46'),
(6517, 'pt', 'siteauditor', 'The total number of links in page is greater than', 'O número total de links na página é maior do que ', '2011-07-12 20:11:46'),
(6518, 'pt', 'siteauditor', 'to run project again if you stopped execution', 'para executar o projecto novamente, se você parou de execução ', '2011-07-12 20:11:46'),
(6519, 'pt', 'siteauditor', 'to view the reports', 'para ver os relatórios ', '2011-07-12 20:11:46'),
(6520, 'pt', 'siteauditor', 'Total Links', 'Total de Links ', '2011-07-12 20:11:46'),
(6521, 'pt', 'siteauditor', 'totallinksgreaterallowed', 'o total de Links vai se tornar maior do que o máximo de ligações permitido para o projecto ', '2011-07-12 20:11:46'),
(6522, 'fa', 'directory', 'Reciprocal Link', 'لینک متقابل ', '2012-05-13 01:11:24'),
(6523, 'fa', 'keyword', 'Insert keywords separated with comma', 'کلید واژه ها را وارد کن و با کاما از هم جدا کن ', '2018-01-24 13:40:55'),
(6524, 'fa', 'label', 'Brocken', 'شکسته', '2012-05-13 01:14:56'),
(6525, 'fa', 'label', 'Comments', 'نظرات', '2012-05-13 01:14:56'),
(6526, 'fa', 'label', 'Count', 'تعداد', '2012-05-13 01:14:56'),
(6527, 'fa', 'label', 'Exclude', 'مستثنی کردن', '2012-05-13 01:14:56'),
(6528, 'fa', 'label', 'Include', 'شامل کردن', '2012-05-13 01:14:56'),
(6529, 'fa', 'label', 'Project', 'پروژه', '2012-05-13 01:14:56'),
(6530, 'fa', 'label', 'Report Type', 'نوع گزارش', '2012-05-13 01:14:56'),
(6531, 'fa', 'label', 'Score', 'امتیاز', '2012-05-13 01:14:56'),
(6532, 'fa', 'label', 'Total Results', 'نتایج نهایی', '2012-05-13 01:14:56'),
(6533, 'fa', 'label', 'Updated', 'به روز رسانی', '2012-05-13 01:14:56'),
(6534, 'fa', 'label', 'View Reports', 'نمایش گزارشات', '2012-05-13 01:14:56'),
(6535, 'fa', 'panel', 'Edit Project', 'ویرایش پروژه', '2012-05-16 23:23:21'),
(6536, 'fa', 'panel', 'New Project', 'پروژه جدید', '2012-05-16 23:23:21'),
(6537, 'fa', 'seotools', 'Auditor Projects', 'پروژه های ممیزی', '2011-07-13 05:25:12'),
(6538, 'fa', 'seotools', 'Auditor Reports', 'گزارشات ممیزی', '2011-07-13 05:25:14'),
(6539, 'fa', 'seotools', 'Auditor Settings', 'تنظیمات ممیزی', '2011-07-13 05:25:14'),
(6540, 'fa', 'seotools', 'Import Project Links', 'وارد کن لینکهای پروژه را ', '2011-07-13 05:25:14'),
(6541, 'fa', 'seotools', 'site-auditor', 'سایز ممیز', '2011-07-13 05:25:14'),
(6542, 'fa', 'settings', 'Check for Updates', 'برای به روز رسانی چک کنید ', '2012-05-17 00:03:34'),
(6543, 'fa', 'settings', 'SA_CRAWL_DELAY_TIME', 'تاخیر خزیدن چک کننده های سایت بین هر یک از صفحات', '2012-05-17 00:03:34'),
(6544, 'fa', 'settings', 'SA_MAX_NO_PAGES', 'بیشترین تعداد صفحات مجاز برای هر سایت', '2012-05-17 00:03:34'),
(6545, 'fa', 'settings', 'SP_API_KEY', 'کلید ای پی آی سئو پنل', '2012-05-17 00:03:34'),
(6546, 'fa', 'settings', 'versionnotuptodatemsg', 'سئو پنل شما به روز نیست . لطفا ورژن جدید را دریافت کنید ', '2012-05-17 00:03:34'),
(6547, 'fa', 'settings', 'Your Seo Panel installation is up to date', ' سئو پنل شما به روز است ', '2012-05-17 00:03:34'),
(6549, 'nl', 'settings', 'SP_API_KEY', 'Seo Panel Api Sleutel', '2014-01-08 02:51:05'),
(6548, 'es', 'directory', 'Reciprocal Link', 'Enlace recíproco', '2012-05-31 14:35:43'),
(6551, 'fa', 'support', 'support_cont2', ' \r\nمنابع آنلاین سئو پنل \r\n \r\n \r\n \r\n راهنمای سئو پنل \r\n \r\n شما می توانید ببینید \\" target=\\"_blank\\"> را مدارک سئو پنل در\r\nراهنما , این شمال میشه مدارک ابزارات سئو پنل و ویژگی های مربوط به آن \r\n. \r\n این بهترین مکان در اینترنت است که کمک کرده بشه درباره سئو پنل \r\nکمک می کنیم که راهنمای سئو پنل ,اگر شما ایرادی پیدا کردید یا چیزی از دست رفت . \r\n
\r\n \r\n \\" target=\\"_blank\\">نگاه کن به راهنمای سئو پنل \r\n
\r\n \r\n \r\n \r\n فرم سئو پنل \r\n \r\n جایی برای بحث درباره اولین نرم افزار آزاد سئو در جهان سئو کنترل پنل . \r\n بهترین جا برای پیدا کردن جواب to سوال هایتان درباره پنل \r\n همچنین شما می توانید به اشتراک بگذارید تجربیاتتان را وقتی استفاده می کنید از سئو پنل برای بهبود سایتتان \r\n
\r\n \r\n \\" target=\\"_blank\\">مشاهده کنید فرم سئو پنل را \r\n
\r\n \r\n \r\n \r\n ', '2012-04-30 08:02:03'),
(6552, 'fa', 'support', 'support_cont3', ' \r\nپشتیبانی مالی \r\n \r\n \r\n پشتیبانی کن از سئو پنل , اولین نرم افزار آزاد سئو در دنیا \r\n \r\n پشتیبانی کن از سئو پنل , اولین نرم افزار آزاد سئو در دنیا\r\n ما برنامه داریم اضافه کنیم و بهبود ببخشیم ویژگی های سئو پنل را در آینده \r\n با تمام پشتیبانی های شما فقط ما میتوانیم دست پیدا کینم به اهدافمان . \r\n اگر شما احساس می کنید که سئو پنل ارزش برای شما لطفا پشتیبانی کنید از تیم نرم افزاری آن \r\n ما انتشار خواهیم داد اسم شما و اطلاعات شما را در \\"\r\ntarget=\\"_blank\\">صفحه پشتیبانی مالی , اولین باری که ما دریافت کنیم کمک را . \r\n
\r\n \r\n \\" target=\\"_blank\\">برای کمک مالی کردن روی این لینک کلیک کنید \r\n
\r\n \r\n \r\n \r\n ', '2012-04-30 08:02:03'),
(6553, 'zh', 'directory', 'Reciprocal Link', '互惠链接', '2014-01-09 20:03:35'),
(6554, 'zh', 'settings', 'SP_API_KEY', 'SEO Panel API接口', '2014-05-15 21:56:30'),
(6555, 'fa', 'home', 'Indexed', 'نمایه ', '2012-05-23 03:09:44'),
(6602, 'cs', 'label', 'Version', 'Verze', '2011-07-14 15:25:05'),
(6603, 'cs', 'label', 'View Reports', 'Prohlédnout reporty', '2011-07-14 15:25:05'),
(6604, 'cs', 'label', 'wantproceed', 'Opravdu to chcete provést?', '2011-07-14 15:25:05'),
(6605, 'cs', 'login', 'Confirm Password', 'Potvrdit heslo', '2011-07-14 15:27:09'),
(6606, 'cs', 'login', 'Create my account', 'Vytvořit můj účet', '2011-07-14 15:27:11'),
(6607, 'cs', 'login', 'Create New Account', 'Vytvořit nový účet', '2011-07-14 15:27:11'),
(6608, 'cs', 'login', 'Email', 'Email', '2011-07-14 15:27:11'),
(6609, 'cs', 'login', 'emailexist', 'Email již existuje', '2011-07-14 15:27:11'),
(6610, 'cs', 'login', 'Enter the code as it is shown', 'Vložte kód přesně tak, jak je zobrazen', '2011-07-14 15:27:11'),
(6611, 'cs', 'login', 'First Name', 'Jméno (křestní)', '2011-07-14 15:27:11'),
(6612, 'cs', 'login', 'Last Name', 'Příjmení', '2011-07-14 15:27:11'),
(6613, 'cs', 'login', 'Login', 'Uživatelské jméno', '2011-07-14 15:27:11'),
(6614, 'cs', 'login', 'Login incorrect', 'Špatné uživatelské jméno', '2011-07-14 15:27:11'),
(6615, 'cs', 'login', 'newaccountsuccess', 'Nový účet byl úspěšně vytvořen!', '2011-07-14 15:27:11'),
(6616, 'cs', 'login', 'Password', 'Heslo', '2011-07-14 15:27:11'),
(6617, 'cs', 'login', 'Password incorrect', 'Špatné heslo', '2011-07-14 15:27:11'),
(6618, 'cs', 'login', 'Register', 'Registrovat', '2011-07-14 15:27:11'),
(6619, 'cs', 'login', 'Sign in to your account', 'Přihlásit se k vašemu účtu', '2011-07-14 15:27:11'),
(6620, 'cs', 'login', 'User inactive', 'Neaktivní uživatel', '2011-07-14 15:27:11'),
(6621, 'cs', 'login', 'Username', 'Uživatelské jméno', '2011-07-14 15:27:11'),
(6622, 'cs', 'login', 'usernameexist', 'Uživatelské jméno již existuje!', '2011-07-14 15:27:11'),
(6623, 'cs', 'panel', 'About Us', 'O nás', '2011-07-14 15:30:24'),
(6624, 'cs', 'panel', 'Add following command to your cron tab', 'Přidejte do tabulky Cronu následující příkaz', '2011-07-14 15:30:24'),
(6625, 'cs', 'panel', 'alsocheckfollowlink', 'Pokud potřebujete další detaily, podívejte se také na následující odkaz.', '2011-07-14 15:30:24'),
(6626, 'cs', 'panel', 'Check Directory', 'Zkontrolujte adresář', '2011-07-14 15:30:24'),
(6627, 'cs', 'panel', 'Cron Command', 'Příkaz Cronu', '2011-07-14 15:30:24'),
(6628, 'cs', 'panel', 'Directory Manager', 'Manažer adresářů', '2011-07-14 15:30:24'),
(6629, 'cs', 'panel', 'Edit My Profile', 'Upravit můj profil', '2011-07-14 15:30:24'),
(6630, 'cs', 'panel', 'Edit Project', 'Upravit projekt', '2011-07-14 15:30:24'),
(6631, 'cs', 'panel', 'My Profile', 'Můj profil', '2011-07-14 15:30:24'),
(6632, 'cs', 'panel', 'New Project', 'Nový projekt', '2011-07-14 15:30:24'),
(6633, 'cs', 'panel', 'New Proxy', 'Nová proxy', '2011-07-14 15:30:24'),
(6634, 'cs', 'panel', 'New User', 'Nový uživatel', '2011-07-14 15:30:24'),
(6635, 'cs', 'panel', 'New Website', 'Nový web', '2011-07-14 15:30:24'),
(6636, 'cs', 'panel', 'Proxy Manager', 'Manažer Proxy', '2011-07-14 15:30:24'),
(6637, 'cs', 'panel', 'Report Generation Manager', 'Manažer pro vytváření reportů', '2011-07-14 15:30:24'),
(6638, 'cs', 'panel', 'Reports Manager', 'Manažer reportů', '2011-07-14 15:30:24'),
(6639, 'cs', 'panel', 'Seo Plugins Manager', 'Manažer SEO pluginů', '2011-07-14 15:30:24'),
(6640, 'cs', 'panel', 'Seo Tools Manager', 'Manažer SEO nástrojů', '2011-07-14 15:30:24'),
(6641, 'cs', 'panel', 'System Settings', 'Systémová nastavení', '2011-07-14 15:30:24'),
(6642, 'cs', 'panel', 'User Manager', 'Manažer uživatelů', '2011-07-14 15:30:24'),
(6643, 'cs', 'panel', 'Website Manager', 'Manažer webů', '2011-07-14 15:30:24'),
(6644, 'cs', 'plugin', 'Edit Seo Plugin', 'Upravit SEO plugin', '2011-07-14 15:30:44'),
(6645, 'cs', 'plugin', 'Plugin Name', 'Jméno pluginu', '2011-07-14 15:30:44'),
(6646, 'cs', 'plugin', 'Seo Plugin Details', 'Detaily o SEO pluginu', '2011-07-14 15:30:44'),
(6647, 'cs', 'proxy', 'Edit Proxy', 'Upravit proxy', '2011-07-14 15:31:13'),
(6648, 'cs', 'proxy', 'Proxy Password', 'Heslo k proxy', '2011-07-14 15:31:13'),
(6649, 'cs', 'proxy', 'Proxy Username', 'Uživatelské jméno k proxy', '2011-07-14 15:31:13'),
(6650, 'cs', 'proxy', 'Proxyalreadyexist', 'Proxy již existuje!', '2011-07-14 15:31:13'),
(6651, 'cs', 'rank', 'enterurlproceed', 'Vložte URL, každé na samostatnou řádku . Klikněte na Provést , aby došlo ke kontrole ranku v Google a Alexa.', '2011-07-14 15:32:45'),
(6652, 'cs', 'rank', 'Google and Alexa Rank Reports', 'Reporty ranku v Google a Alexa', '2011-07-14 15:32:45'),
(6653, 'cs', 'rank', 'Saved rank results of', 'Uložené výsledky ranků webu', '2011-07-14 15:32:45'),
(6654, 'cs', 'saturation', 'clickproceedsaturation', 'Vložte URL na každý řádek jedno . Klikněte na Provést pro kontrolu nasycení výsledků vyhledávačů.', '2011-07-14 15:35:25'),
(6655, 'cs', 'saturation', 'GenerateSaturationReports', 'Vytvořit report nasycení vyhledávačů', '2011-07-14 15:35:25'),
(6656, 'cs', 'saturation', 'Quick Search Engine Saturation Checker', 'Rychlá kontrola nasycení vyhledávačů', '2011-07-14 15:35:25'),
(6657, 'cs', 'saturation', 'Saved Search Engine Saturation results of', 'Uložené výsledky nasycení vyhledávačů webu', '2011-07-14 15:35:25'),
(6658, 'cs', 'saturation', 'Search Engine Saturation Reports', 'Reporty nasycení vyhledávačů', '2011-07-14 15:35:25');
INSERT INTO `texts` VALUES
(6659, 'cs', 'sitemap', 'Change frequency', 'Změnit frekvenci', '2011-07-14 15:38:47'),
(6660, 'cs', 'sitemap', 'clickproceedsitemap', 'Pro vytvoření sitemapy klikněte na Provést ', '2011-07-14 15:38:47'),
(6661, 'cs', 'sitemap', 'Download sitemap file from', 'Stáhnout soubor sitemapy z', '2011-07-14 15:38:47'),
(6662, 'cs', 'sitemap', 'Exclude Url', 'Vyjmout URL', '2011-07-14 15:38:47'),
(6663, 'cs', 'sitemap', 'processtaketime', 'Tento proces může podle počtu odkazů na vašem webu zabrat nějaký čas. Prosím počkejte, dokud neobdržíte soubory sitemapy', '2011-07-14 15:38:47'),
(6664, 'cs', 'sitemap', 'Sitemap Type', 'Typ sitemapy', '2011-07-14 15:38:47'),
(6665, 'tr', 'support', 'support_cont1', '\r\nSeo Panel Destek Sistemi \r\n\r\n \r\n 1000 Directory (Link Listesi - Rehber) Paketi \r\n \r\n Biz 1000 ücretsiz ve onaylı link listesi paketi sağlıyoruz , seo panelinize\r\neklemek için directory ekleme aracı .\r\n Bu websitenize ait backlinklerinizi arttıracak.\r\n Aslında 1000 directory link listesi seo panel özelliklerini gelistirmek için gerekli tutarı\r\nkarşılayabilmek için tanıtıldı \r\n
.\r\n 1000 directory link listesini almak için lütfen seo paneli geliştirebilmemiz için\\" target=\\"_blank\\">bağış\r\nyapınız . $10 veya daha fazla.\r\n Eğer 1000 directory paketi hakkında sorunuz varsa, lütfen \\"\r\ntarget=\\"_blank\\">bizimle irtibata geçiniz ya da \\"\r\ntarget=\\"_blank\\">destek sisteminden bir konu açınız. \r\n \r\n \r\n \\" target=\\"_blank\\">Seo Panel\\''e Bağış Yap Sayfası \r\n
\r\n \r\n \r\n \r\n \r\n Yerel Arama Motoru Paketi \r\n \r\n Ülkenize aityerel arama motoru linklerini seo panele giriniz örnek; google,yahoo,msn(eg: www.google.de,www.google.fr\r\ngibi ) ve Anahtar kelimeleri yerel sitenizin performansını görmek için ekleyiniz.\r\n İhtiyaçlarınıza bağlı seo paketi almak için lütfen seo paneli geliştirebilmemiz için\\" target=\\"_blank\\">bağış yapınız $10 veya daha fazla.\r\n Bağışı göndermeden önce, lütfen hangi domain için başvurduğunuzu bildirmek için\r\n\\" target=\\"_blank\\">bizimle iletişime geçin. \r\n \r\n Ayrıca seo panelinize anahtar kelime kontrolu için yeni bir arama motoru(eg:baidu.com) eklemeden önce,\r\nlütfen \\" target=\\"_blank\\">bizimle iletişime geçin ya da \\" target=\\"_blank\\">destek sisteminde bir konu açın. \r\n
\r\n \r\n \\" target=\\"_blank\\">İletişim Sayfasını Ziyaret Edin \r\n
\r\n \r\n \r\n \r\n \r\n Seo Panel Pluginleri \r\n \r\n İhtiyaçlarınıza göre seo panelinizi geliştirmek için seo pluginler ekleyin.\r\n \\" target=\\"_blank\\">Seo panel pluginler hem seo panel hemde üçüncü parti\r\nsiteleri desteklemektedir.\r\n Seo panel pluginleri kendi seo paneliniz için kolayca geliştirebilirsiniz .\r\n Kendi pluginlerinizi seo panenle \\" target=\\"_blank\\">gönderebilirsiniz ve\r\nBiz inceledikten sonra paylaşırız . \r\n
\r\n \r\n \\" target=\\"_blank\\">Seo Panel Plugin Edinmek İçin Tıklayınız \r\n
\r\n \r\n \r\n \r\n İletişim \r\n \r\n seo panel araçları, pluginleri veya herhangi bir konu hakkında bir sorunuz olduğunda aşağıdaki linkten\r\nbizimle iletişime geçebilirsiniz \r\n
\r\n \r\n \\" target=\\"_blank\\">İletişim Sayfası \r\n
\r\n \r\n \r\n \r\n Destek Konusu \r\n \r\n seo panel araçları, pluginleri veya herhangi bir konu hakkında teknik destek \r\nalmak için konu açınız