File: //proc/self/root/var/softaculous/seo/seo.sql
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `seopanel510`
--
-- --------------------------------------------------------
--
-- Table structure for table `alerts`
--
CREATE TABLE `alerts` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`alert_subject` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
`alert_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`alert_category` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'general',
`alert_message` text COLLATE utf8_unicode_ci NOT NULL,
`alert_type` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'success',
`visited` tinyint(1) NOT NULL DEFAULT '0',
`alert_time` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `alert_user_delete` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `analytics_properties`
--
CREATE TABLE `analytics_properties` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`account_name` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`account_id` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`property_name` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`property_id` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`datetime_created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`datetime_updated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `analytics_properties_user_id_delete` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `analytic_sources`
--
CREATE TABLE `analytic_sources` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`source_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `source_name` (`source_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `auditorpagelinks`
--
CREATE TABLE `auditorpagelinks` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`report_id` bigint(20) NOT NULL,
`link_url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`link_anchor` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`link_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`nofollow` tinyint(1) NOT NULL DEFAULT '0',
`extrenal` tinyint(1) NOT NULL DEFAULT '0',
`brocken` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `report_id` (`report_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `auditorprojects`
--
CREATE TABLE `auditorprojects` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`max_links` int(11) NOT NULL DEFAULT '500',
`exclude_links` text COLLATE utf8_unicode_ci NOT NULL,
`exclude_extensions` text COLLATE utf8_unicode_ci,
`sitemap_url` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
`check_pr` tinyint(1) NOT NULL DEFAULT '0',
`check_backlinks` tinyint(1) NOT NULL DEFAULT '0',
`check_indexed` tinyint(1) NOT NULL DEFAULT '0',
`store_links_in_page` tinyint(1) NOT NULL DEFAULT '0',
`check_brocken` tinyint(1) NOT NULL DEFAULT '0',
`score` float NOT NULL DEFAULT '0',
`cron` tinyint(1) NOT NULL DEFAULT '1',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `website_id` (`website_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `auditorreports`
--
CREATE TABLE `auditorreports` (
`id` bigint(24) NOT NULL AUTO_INCREMENT,
`project_id` int(11) NOT NULL,
`page_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`canonical_url` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`discovered_via` enum('crawl','sitemap','robots','canonical','import') COLLATE utf8_unicode_ci DEFAULT 'crawl',
`page_title` varchar(180) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`page_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`page_keywords` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`pagerank` float NOT NULL DEFAULT '0',
`google_backlinks` int(11) NOT NULL DEFAULT '0',
`bing_backlinks` int(11) NOT NULL DEFAULT '0',
`google_indexed` int(11) NOT NULL DEFAULT '0',
`bing_indexed` int(11) NOT NULL DEFAULT '0',
`total_links` int(11) NOT NULL DEFAULT '0',
`external_links` int(11) NOT NULL DEFAULT '0',
`brocken` tinyint(1) NOT NULL DEFAULT '0',
`crawled` tinyint(1) NOT NULL DEFAULT '0',
`score` smallint(6) NOT NULL DEFAULT '0',
`updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`page_authority` float NOT NULL DEFAULT '0',
`spam_score` float NOT NULL DEFAULT '0',
`ai_robot_allowed` tinyint(1) NOT NULL DEFAULT '1',
`mobile_friendly` tinyint(1) NOT NULL DEFAULT '1',
`https_secure` tinyint(1) NOT NULL DEFAULT '0',
`has_og_tags` tinyint(1) NOT NULL DEFAULT '0',
`has_twitter_cards` tinyint(1) NOT NULL DEFAULT '0',
`blocked_by_robots` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `project_id_2` (`project_id`,`page_url`),
KEY `project_id` (`project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `auditorsitemaps`
--
CREATE TABLE `auditorsitemaps` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_id` int(11) NOT NULL,
`sitemap_url` varchar(500) COLLATE utf8_unicode_ci NOT NULL,
`sitemap_type` enum('xml','txt','index') COLLATE utf8_unicode_ci DEFAULT 'xml',
`last_parsed` timestamp NULL DEFAULT NULL,
`urls_found` int(11) NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `project_id` (`project_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `backlinkresults`
--
CREATE TABLE `backlinkresults` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`google` int(11) NOT NULL DEFAULT '0',
`msn` int(11) NOT NULL DEFAULT '0',
`alexa` int(11) NOT NULL DEFAULT '0',
`external_pages_to_page` int(11) NOT NULL DEFAULT '0',
`external_pages_to_root_domain` int(11) NOT NULL DEFAULT '0',
`result_time` int(11) NOT NULL DEFAULT '0',
`result_date` date DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `result_date` (`result_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `country`
--
CREATE TABLE `country` (
`country_code` char(2) COLLATE utf8_unicode_ci NOT NULL,
`country_name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`country_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `country`
--
INSERT INTO `country` VALUES
('AD', 'Andorra'),
('AE', 'United Arab Emirates'),
('AF', 'Afghanistan'),
('AG', 'Antigua and Barbuda'),
('AI', 'Anguilla'),
('AL', 'Albania'),
('AM', 'Armenia'),
('AN', 'Netherlands Antilles'),
('AO', 'Angola'),
('AP', 'Asia/Pacific Region'),
('AQ', 'Antarctica'),
('AR', 'Argentina'),
('AS', 'American Samoa'),
('AT', 'Austria'),
('AU', 'Australia'),
('AW', 'Aruba'),
('AX', 'Aland Islands'),
('AZ', 'Azerbaijan'),
('BA', 'Bosnia and Herzegovina'),
('BB', 'Barbados'),
('BD', 'Bangladesh'),
('BE', 'Belgium'),
('BF', 'Burkina Faso'),
('BG', 'Bulgaria'),
('BH', 'Bahrain'),
('BI', 'Burundi'),
('BJ', 'Benin'),
('BM', 'Bermuda'),
('BN', 'Brunei Darussalam'),
('BO', 'Bolivia'),
('BR', 'Brazil'),
('BS', 'Bahamas'),
('BT', 'Bhutan'),
('BV', 'Bouvet Island'),
('BW', 'Botswana'),
('BY', 'Belarus'),
('BZ', 'Belize'),
('CA', 'Canada'),
('CC', 'Cocos (Keeling) Islands'),
('CD', 'Congo'),
('CF', 'Central African Republic'),
('CG', 'Congo'),
('CH', 'Switzerland'),
('CI', 'Cote d''Ivoire'),
('CK', 'Cook Islands'),
('CL', 'Chile'),
('CM', 'Cameroon'),
('CN', 'China'),
('CO', 'Colombia'),
('CR', 'Costa Rica'),
('CU', 'Cuba'),
('CV', 'Cape Verde'),
('CX', 'Christmas Island'),
('CY', 'Cyprus'),
('CZ', 'Czech Republic'),
('DE', 'Germany'),
('DJ', 'Djibouti'),
('DK', 'Denmark'),
('DM', 'Dominica'),
('DO', 'Dominican Republic'),
('DZ', 'Algeria'),
('EC', 'Ecuador'),
('EE', 'Estonia'),
('EG', 'Egypt'),
('EH', 'Western Sahara'),
('ER', 'Eritrea'),
('ES', 'Spain'),
('ET', 'Ethiopia'),
('EU', 'Europe'),
('FI', 'Finland'),
('FJ', 'Fiji'),
('FK', 'Falkland Islands (Malvinas)'),
('FM', 'Micronesia Federated States of'),
('FO', 'Faroe Islands'),
('FR', 'France'),
('GA', 'Gabon'),
('GB', 'United Kingdom'),
('GD', 'Grenada'),
('GE', 'Georgia'),
('GF', 'French Guiana'),
('GG', 'Guernsey'),
('GH', 'Ghana'),
('GI', 'Gibraltar'),
('GL', 'Greenland'),
('GM', 'Gambia'),
('GN', 'Guinea'),
('GP', 'Guadeloupe'),
('GQ', 'Equatorial Guinea'),
('GR', 'Greece'),
('GS', 'South Georgia and the South Sandwich Islands'),
('GT', 'Guatemala'),
('GU', 'Guam'),
('GW', 'Guinea-Bissau'),
('GY', 'Guyana'),
('HK', 'Hong Kong'),
('HM', 'Heard Island and McDonald Islands'),
('HN', 'Honduras'),
('HR', 'Croatia'),
('HT', 'Haiti'),
('HU', 'Hungary'),
('ID', 'Indonesia'),
('IE', 'Ireland'),
('IL', 'Israel'),
('IM', 'Isle of Man'),
('IN', 'India'),
('IO', 'British Indian Ocean Territory'),
('IQ', 'Iraq'),
('IR', 'Iran Islamic Republic of'),
('IS', 'Iceland'),
('IT', 'Italy'),
('JE', 'Jersey'),
('JM', 'Jamaica'),
('JO', 'Jordan'),
('JP', 'Japan'),
('KE', 'Kenya'),
('KG', 'Kyrgyzstan'),
('KH', 'Cambodia'),
('KI', 'Kiribati'),
('KM', 'Comoros'),
('KN', 'Saint Kitts and Nevis'),
('KP', 'Korea Democratic People''s Republic of'),
('KR', 'Korea Republic of'),
('KW', 'Kuwait'),
('KY', 'Cayman Islands'),
('KZ', 'Kazakhstan'),
('LA', 'Lao People''s Democratic Republic'),
('LB', 'Lebanon'),
('LC', 'Saint Lucia'),
('LI', 'Liechtenstein'),
('LK', 'Sri Lanka'),
('LR', 'Liberia'),
('LS', 'Lesotho'),
('LT', 'Lithuania'),
('LU', 'Luxembourg'),
('LV', 'Latvia'),
('LY', 'Libyan Arab Jamahiriya'),
('MA', 'Morocco'),
('MC', 'Monaco'),
('MD', 'Moldova Republic of'),
('ME', 'Montenegro'),
('MG', 'Madagascar'),
('MH', 'Marshall Islands'),
('MK', 'Macedonia'),
('ML', 'Mali'),
('MM', 'Myanmar'),
('MN', 'Mongolia'),
('MO', 'Macao'),
('MP', 'Northern Mariana Islands'),
('MQ', 'Martinique'),
('MR', 'Mauritania'),
('MS', 'Montserrat'),
('MT', 'Malta'),
('MU', 'Mauritius'),
('MV', 'Maldives'),
('MW', 'Malawi'),
('MX', 'Mexico'),
('MY', 'Malaysia'),
('MZ', 'Mozambique'),
('NA', 'Namibia'),
('NC', 'New Caledonia'),
('NE', 'Niger'),
('NF', 'Norfolk Island'),
('NG', 'Nigeria'),
('NI', 'Nicaragua'),
('NL', 'Netherlands'),
('NO', 'Norway'),
('NP', 'Nepal'),
('NR', 'Nauru'),
('NU', 'Niue'),
('NZ', 'New Zealand'),
('OM', 'Oman'),
('PA', 'Panama'),
('PE', 'Peru'),
('PF', 'French Polynesia'),
('PG', 'Papua New Guinea'),
('PH', 'Philippines'),
('PK', 'Pakistan'),
('PL', 'Poland'),
('PM', 'Saint Pierre and Miquelon'),
('PN', 'Pitcairn'),
('PR', 'Puerto Rico'),
('PS', 'Palestinian Territory'),
('PT', 'Portugal'),
('PW', 'Palau'),
('PY', 'Paraguay'),
('QA', 'Qatar'),
('RE', 'Reunion'),
('RO', 'Romania'),
('RS', 'Serbia'),
('RU', 'Russian Federation'),
('RW', 'Rwanda'),
('SA', 'Saudi Arabia'),
('SB', 'Solomon Islands'),
('SC', 'Seychelles'),
('SD', 'Sudan'),
('SE', 'Sweden'),
('SG', 'Singapore'),
('SH', 'Saint Helena'),
('SI', 'Slovenia'),
('SJ', 'Svalbard and Jan Mayen'),
('SK', 'Slovakia'),
('SL', 'Sierra Leone'),
('SM', 'San Marino'),
('SN', 'Senegal'),
('SO', 'Somalia'),
('SR', 'Suriname'),
('ST', 'Sao Tome and Principe'),
('SV', 'El Salvador'),
('SY', 'Syrian Arab Republic'),
('SZ', 'Swaziland'),
('TC', 'Turks and Caicos Islands'),
('TD', 'Chad'),
('TF', 'French Southern Territories'),
('TG', 'Togo'),
('TH', 'Thailand'),
('TJ', 'Tajikistan'),
('TK', 'Tokelau'),
('TL', 'Timor-Leste'),
('TM', 'Turkmenistan'),
('TN', 'Tunisia'),
('TO', 'Tonga'),
('TR', 'Turkey'),
('TT', 'Trinidad and Tobago'),
('TV', 'Tuvalu'),
('TW', 'Taiwan'),
('TZ', 'Tanzania United Republic of'),
('UA', 'Ukraine'),
('UG', 'Uganda'),
('UM', 'United States Minor Outlying Islands'),
('US', 'United States'),
('UY', 'Uruguay'),
('UZ', 'Uzbekistan'),
('VA', 'Holy See (Vatican City State)'),
('VC', 'Saint Vincent and the Grenadines'),
('VE', 'Venezuela'),
('VG', 'Virgin Islands British'),
('VI', 'Virgin Islands U.S.'),
('VN', 'Vietnam'),
('VU', 'Vanuatu'),
('WF', 'Wallis and Futuna'),
('WS', 'Samoa'),
('YE', 'Yemen'),
('YT', 'Mayotte'),
('ZA', 'South Africa'),
('ZM', 'Zambia'),
('ZW', 'Zimbabwe');
-- --------------------------------------------------------
--
-- Table structure for table `crawl_engines`
--
CREATE TABLE `crawl_engines` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`engine_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`engine_category` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`regex1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`regex2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`regex3` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`regex4` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`url` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`url_part` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `engine_name` (`engine_name`,`engine_category`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=19 ;
--
-- Dumping data for table `crawl_engines`
--
INSERT INTO `crawl_engines` VALUES
(1, 'alexa', 'rank', '/\\<popularity url\\="(.*?)" TEXT\\="([0-9]+)"/si', NULL, NULL, NULL, '', NULL, 1),
(2, 'bing', 'backlink', '/([0-9\\,]+) results/si', '/id="count".*?>.*?\\(([0-9\\,]+).*?\\)/si', '/id="count".*?>.*?([0-9\\,]+).*?/si', '/class="sb_count".*?>.*?([0-9\\,]+).*?<\\/span>/si', '', NULL, 1),
(3, 'alexa', 'backlink', '/linksin".*?big.*?>(.*?)</si', NULL, NULL, NULL, '', NULL, 1),
(4, 'google', 'backlink', '/about ([0-9\\,]+) result/si', '/<div id=resultStats>([0-9\\,]+) result/si', '/([0-9\\,]+) result/si', '/about <b>([0-9\\,]+)<\\/b> linking/si', '', NULL, 1),
(5, 'google', 'saturation', '/about ([0-9\\,]+) result/si', '/<div id=resultStats>([0-9\\,]+) result/si', '/([0-9\\,]+) result/si', '/about <b>([0-9\\,]+)<\\/b> linking/si', '', NULL, 1),
(6, 'bing', 'saturation', '/([0-9\\,]+) results/si', '/id="count".*?>.*?\\(([0-9\\,]+).*?\\)/si', '/id="count".*?>.*?([0-9\\,]+).*?/si', '/class="sb_count".*?>.*?([0-9\\,]+).*?<\\/span>/si', '', NULL, 1),
(7, 'facebook', 'social_media', '/description".*?content=".*?([\\d,]+) likes/is', '/Total Likes.*?>([\\d,]+).*?Total Follows/is', NULL, NULL, '', '?locale=en_US', 1),
(8, 'twitter', 'social_media', '/followers_count".*?(\\d+)/is', NULL, NULL, NULL, 'https://cdn.syndication.twimg.com/widgets/followbutton/info.json?screen_names={ACC_NAME}', NULL, 1),
(9, 'instagram', 'social_media', '/edge_followed_by.*?"count":(.*?)\\}/is', NULL, NULL, NULL, '', '/?__a=1', 1),
(10, 'linkedin', 'social_media', '/<div.*?follower-count.*?>(.*?)<\\/div>/is', NULL, NULL, NULL, 'https://www.linkedin.com/pages-extensions/FollowCompany?id={CID}&counter=bottom', NULL, 1),
(11, 'pinterest', 'social_media', '/"follower_count":(\\d+)/is', NULL, NULL, NULL, '', NULL, 1),
(12, 'youtube', 'social_media', '/subscriberCountText".*?"(\\d.*?) subscribers"/is', NULL, NULL, NULL, '', '/about', 1),
(13, 'google', 'review', '/<span>([0-9.,]+) Google reviews<\\/span>/is', '/media_result_group.*?"Rated (\\d+\\.\\d+) out/is', NULL, NULL, '', NULL, 1),
(14, 'glassdoor', 'review', '/"reviewCount":([0-9.,]+)/is', '/"overallRating":(\\d+\\.\\d+)/is', NULL, NULL, '', NULL, 1),
(15, 'yelp', 'review', '/reviewCount.*?:(\\d+),/is', '/aggregateRating.*?:([0-9]*\\.?[0-9]+),/is', NULL, NULL, '', NULL, 1),
(16, 'trustpilot', 'review', '/"reviewCount":"(\\d+)"/is', '/"ratingValue":"(\\d+\\.\\d+)"/is', NULL, NULL, '', NULL, 1),
(17, 'tripadvisor', 'review', '/"reviewCount":(\\d+)/is', '/"ratingValue":"(\\d+\\.\\d+)"/is', NULL, NULL, '', NULL, 1),
(18, 'reddit', 'social_media', '/subscribers="(\\d+)"/is', NULL, NULL, NULL, '', NULL, 1);
-- --------------------------------------------------------
--
-- Table structure for table `crawl_log`
--
CREATE TABLE `crawl_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`crawl_type` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'other',
`ref_id` text COLLATE utf8_unicode_ci,
`subject` varchar(60) COLLATE utf8_unicode_ci DEFAULT NULL,
`crawl_link` text COLLATE utf8_unicode_ci NOT NULL,
`crawl_referer` text COLLATE utf8_unicode_ci,
`crawl_cookie` text COLLATE utf8_unicode_ci,
`crawl_post_fields` text COLLATE utf8_unicode_ci,
`crawl_useragent` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`crawl_status` tinyint(4) NOT NULL DEFAULT '1',
`proxy_id` int(11) unsigned NOT NULL DEFAULT '0',
`log_message` text COLLATE utf8_unicode_ci,
`crawl_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `crawl_status` (`crawl_status`),
KEY `crawl_type` (`crawl_type`),
KEY `proxy_id` (`proxy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `currency`
--
CREATE TABLE `currency` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(160) COLLATE utf8_unicode_ci NOT NULL,
`iso_code` varchar(3) COLLATE utf8_unicode_ci NOT NULL,
`symbol` varchar(3) COLLATE utf8_unicode_ci NOT NULL,
`unicode` varchar(8) COLLATE utf8_unicode_ci NOT NULL,
`position` varchar(6) COLLATE utf8_unicode_ci NOT NULL,
`paypal` tinyint(1) NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `iso_code` (`iso_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=68 ;
--
-- Dumping data for table `currency`
--
INSERT INTO `currency` VALUES
(1, 'United Arab Emirates Dirham', 'AED', 'د.إ', '', 'after', 0, 1),
(2, 'Netherlands Antillian Guilder', 'ANG', 'ƒ', 'ƒ', 'before', 0, 1),
(3, '', 'AOA', 'AOA', 'AOA', 'before', 0, 1),
(4, 'Argentine Peso', 'ARS', '$', '$', 'before', 0, 1),
(5, 'Australian Dollar', 'AUD', '$', '$', 'before', 1, 1),
(6, '', 'BAM', 'KM', 'KM', 'before', 0, 1),
(7, 'Barbados Dollar', 'BBD', '$', '$', 'before', 0, 1),
(8, '', 'BGL', 'лÐ', 'л&', 'before', 0, 1),
(9, 'Bahraini Dinar', 'BHD', 'BD', 'BD', 'after', 0, 1),
(10, 'Brunei Dollar', 'BND', '$', '$', 'before', 0, 1),
(11, 'Brazilian Real', 'BRL', 'R$', 'R$', 'before', 1, 1),
(12, 'Canadian Dollar', 'CAD', '$', '$', 'before', 1, 1),
(13, 'Swiss Franc', 'CHF', 'Fr', 'Fr', 'before', 1, 1),
(14, 'Chilean Unidades de Fomento', 'CLF', 'UF', 'UF', 'after', 0, 1),
(15, 'Chilean Peso', 'CLP', '$', '$', 'before', 0, 1),
(16, 'Yuan (Chinese) Renminbi', 'CNY', '¥', '¥', 'before', 0, 1),
(17, 'Colombian Peso', 'COP', '$', '$', 'before', 0, 1),
(18, 'Costa Rican Colon', 'CRC', '₡', '₡', 'before', 0, 1),
(19, 'Czech Republic Koruna', 'CZK', 'Kč', 'Kč', 'after', 1, 1),
(20, 'Danish Krone', 'DKK', 'kr', 'kr', 'before', 1, 1),
(21, 'Estonian Kroon (EEK)', 'EEK', 'KR', 'KR', 'before', 0, 1),
(22, 'Egyptian Pound', 'EGP', 'E£', 'E£', 'before', 0, 1),
(23, 'Euro', 'EUR', '€', '€', 'before', 1, 1),
(24, 'Fiji Dollar', 'FJD', 'FJ$', 'FJ$', 'before', 0, 1),
(25, 'British Pound', 'GBP', '£', '£', 'before', 1, 1),
(26, 'Guatemalan Quetzal', 'GTQ', 'Q', 'Q', 'before', 0, 1),
(27, 'Hong Kong Dollar', 'HKD', '$', '$', 'before', 1, 1),
(28, '', 'HRK', 'kn', 'kn', 'before', 0, 1),
(29, 'Hungarian Forint', 'HUF', 'Ft', 'Ft', 'before', 1, 1),
(30, 'Indonesian Rupiah', 'IDR', 'Rp', 'Rp', 'before', 0, 1),
(31, 'Israeli Shekel', 'ILS', '₪', '₪', 'before', 1, 1),
(32, 'Indian Rupee', 'INR', 'Rs', 'Rs', 'before', 0, 1),
(33, 'Jordanian Dinar', 'JOD', 'د.', '', '', 0, 1),
(34, 'Japanese Yen', 'JPY', '¥', '¥', 'before', 1, 1),
(35, 'Kenyan Schilling', 'KES', 'KSh', 'Ksh', 'before', 0, 1),
(36, '(South) Korean Won', 'KRW', '₩', '₩', 'before', 0, 1),
(37, 'Kuwaiti Dinar', 'KWD', 'KD', 'KD', 'after', 0, 1),
(38, 'Cayman Islands Dollar', 'KYD', '$', '$', 'before', 0, 1),
(39, '', 'LTL', 'Lt', 'Lt', 'before', 0, 1),
(40, '', 'LVL', 'Ls', 'Ls', 'before', 0, 1),
(41, 'Moroccan Dirham', 'MAD', 'د.', '', '', 0, 1),
(42, 'Maldive Rufiyaa', 'MVR', 'Rf', 'Rf', 'before', 0, 1),
(43, '', 'MXN', '$', '$', 'before', 1, 1),
(44, 'Malaysian Ringgit', 'MYR', 'RM', 'RM', 'before', 1, 1),
(45, 'Nigerian Naira', 'NGN', '₦', '₦', 'before', 0, 1),
(46, 'Norwegian Kroner', 'NOK', 'kr', 'kr', 'before', 1, 1),
(47, 'New Zealand Dollar', 'NZD', '$', '$', 'before', 1, 1),
(48, 'Omani Rial', 'OMR', '﷼', '﷼', 'after', 0, 1),
(49, 'Peruvian Nuevo Sol', 'PEN', 'S/.', 'S/.', 'before', 0, 1),
(50, 'Philippine Peso', 'PHP', '₱', '₱', 'before', 1, 1),
(51, 'Polish Zloty', 'PLN', 'Zł', 'Zł', 'before', 1, 1),
(52, 'Qatari Rial', 'QAR', 'QAR', '﷼', 'after', 0, 1),
(53, 'Romanian Leu', 'RON', 'lei', 'lei', 'before', 0, 1),
(54, 'Russian Ruble', 'RUB', '₽', 'р&', 'before', 1, 1),
(55, 'Saudi Arabian Riyal', 'SAR', 'SAR', '﷼', 'after', 0, 1),
(56, 'Swedish Krona', 'SEK', 'kr', 'kr', 'before', 1, 1),
(57, 'Singapore Dollar', 'SGD', '$', '$', 'before', 1, 1),
(58, 'Thai Baht', 'THB', 'ł', 'ł', 'before', 1, 1),
(59, 'Turkish Lira', 'TRY', 'TL', 'TL', 'before', 1, 1),
(60, 'Trinidad and Tobago Dollar', 'TTD', '$', '$', 'before', 0, 1),
(61, 'Taiwan Dollar', 'TWD', '$', '$', 'before', 0, 1),
(62, '', 'UAH', 'â‚´', '₴', 'before', 0, 1),
(63, 'US Dollar', 'USD', '$', '$', 'before', 1, 1),
(64, 'Venezualan Bolivar', 'VEF', 'Bs ', 'Bs.', 'before', 0, 1),
(65, 'Vietnamese Dong', 'VND', '₫', '₫', 'before', 0, 1),
(66, 'East Caribbean Dollar', 'XCD', '$', '$', 'before', 0, 1),
(67, 'South African Rand', 'ZAR', 'R', 'R', 'before', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `directories`
--
CREATE TABLE `directories` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`domain` varchar(255) CHARACTER SET latin1 DEFAULT NULL,
`submit_url` varchar(255) CHARACTER SET latin1 DEFAULT NULL,
`captcha_script` varchar(100) CHARACTER SET latin1 NOT NULL DEFAULT 'captcha.php',
`search_script` varchar(100) CHARACTER SET latin1 NOT NULL DEFAULT 'index.php?q=[--keyword--]',
`title_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'TITLE',
`url_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'URL',
`description_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'DESCRIPTION',
`name_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'OWNER_NAME',
`email_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'OWNER_EMAIL',
`category_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'CATEGORY_ID',
`cptcha_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'CAPTCHA',
`imagehash_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'IMAGEHASH',
`imagehashurl_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'imagehash',
`reciprocal_col` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'RECPR_URL',
`extra_val` varchar(255) CHARACTER SET latin1 NOT NULL DEFAULT 'LINK_TYPE=normal&submit=Continue&AGREERULES=on',
`is_captcha` tinyint(1) NOT NULL DEFAULT '0',
`working` tinyint(1) NOT NULL DEFAULT '1',
`google_pagerank` smallint(6) NOT NULL DEFAULT '0',
`alexa_rank` int(11) NOT NULL DEFAULT '-1',
`lang_code` varchar(8) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'en',
`checked` tinyint(1) NOT NULL DEFAULT '0',
`script_type_id` int(11) NOT NULL DEFAULT '1',
`rank` int(11) NOT NULL DEFAULT '0',
`is_reciprocal` tinyint(1) NOT NULL DEFAULT '0',
`pagerank` float NOT NULL DEFAULT '0',
`spam_score` float NOT NULL DEFAULT '0',
`domain_authority` float NOT NULL,
`page_authority` float NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `submit_url` (`submit_url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=160 ;
--
-- Dumping data for table `directories`
--
INSERT INTO `directories` VALUES
(145, 'http://www.listasweb.info', 'http://www.listasweb.info/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(144, 'http://www.oroop.com', 'http://www.oroop.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(143, 'http://www.webdirectorybook.com', 'http://www.webdirectorybook.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(142, 'http://www.westcelt.org', 'http://www.westcelt.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(141, 'http://www.wishdc.org', 'http://www.wishdc.org/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 5.26, 0, 31.92, 43.14),
(140, 'http://www.w3c-software.com', 'http://www.w3c-software.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(139, 'http://www.interactive-directory.com', 'http://www.interactive-directory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(138, 'http://www.go2directory.info', 'http://www.go2directory.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(137, 'http://www.firstfindengine.com', 'http://www.firstfindengine.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.firstfindengine.com', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(136, 'http://www.faceahead.com', 'http://www.faceahead.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(135, 'http://www.extreme-directory.net', 'http://www.extreme-directory.net/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(134, 'http://www.minidirectory.info', 'http://www.minidirectory.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(133, 'http://www.lexormedia.com', 'http://www.lexormedia.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(132, 'http://www.easyadsworld.com', 'http://www.easyadsworld.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(131, 'http://www.corporategoof.com', 'http://www.corporategoof.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(130, 'http://www.seodir.eu', 'http://www.seodir.eu/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(129, 'http://www.directorydr.com', 'http://www.directorydr.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(128, 'http://directorywind.com', 'http://directorywind.com/submit.php?LINK_TYPE=2', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=2&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(127, 'http://www.visuallinkdirectory.com', 'http://www.visuallinkdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(126, 'http://www.thecommercialdirectory.com', 'http://www.thecommercialdirectory.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(125, 'http://www.freeonlineregister.com', 'http://www.freeonlineregister.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.freeonlineregister.com', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(124, 'http://www.vccllc.com', 'http://www.vccllc.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(123, 'http://www.findinfo.ws', 'http://www.findinfo.ws/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(122, 'http://www.devdir.biz', 'http://www.devdir.biz/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.devdir.biz', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(121, 'http://www.stepmind.com', 'http://www.stepmind.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(120, 'http://www.edirectori.com', 'http://www.edirectori.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(119, 'http://www.netnamesindex.com', 'http://www.netnamesindex.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.netnamesindex.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(117, 'http://www.worldurllink.com', 'http://www.worldurllink.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.worldurllink.com', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(116, 'http://www.websitelists.info', 'http://www.websitelists.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(115, 'http://www.urlvault.info', 'http://www.urlvault.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.urlvault.info', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(114, 'http://www.seolistsite.com', 'http://www.seolistsite.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.seolistsite.com', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(113, 'http://www.searchpowertour.com', 'http://www.searchpowertour.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.searchpowertour.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(112, 'http://www.netdirectorylink.com', 'http://www.netdirectorylink.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(111, 'http://www.monsterlinkdirectory.com', 'http://www.monsterlinkdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.monsterlinkdirectory.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(110, 'http://www.inlinkdirectory.com', 'http://www.inlinkdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.inlinkdirectory.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(109, 'http://www.heydirectory.com', 'http://www.heydirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(108, 'http://www.generalnetdirectory.com', 'http://www.generalnetdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(107, 'http://www.freeweblist.info', 'http://www.freeweblist.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(106, 'http://www.freeonlineindex.com', 'http://www.freeonlineindex.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.freeonlineindex.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(104, 'http://www.directoryfreelink.com', 'http://www.directoryfreelink.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.directoryfreelink.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(103, 'http://www.cheapwebdir.com', 'http://www.cheapwebdir.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(102, 'http://www.anyweblist.com', 'http://www.anyweblist.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.anyweblist.com', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(101, 'http://www.zerotres.com', 'http://www.zerotres.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(100, 'http://www.thehdb.com', 'http://www.thehdb.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(99, 'http://www.linkfly.info', 'http://www.linkfly.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(98, 'http://www.jordangreen.info', 'http://www.jordangreen.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(97, 'http://www.ggfb.org', 'http://www.ggfb.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(96, 'http://www.etup.org', 'http://www.etup.org/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(94, 'http://z0p.com', 'http://z0p.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(93, 'http://www.yournetdirectory.com', 'http://www.yournetdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(92, 'http://www.teacherslounge.info', 'http://www.teacherslounge.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(91, 'http://www.homessearchengine.com', 'http://www.homessearchengine.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(90, 'http://www.zzdirectory.com', 'http://www.zzdirectory.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(89, 'http://www.liveurls.net', 'http://www.liveurls.net/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(88, 'http://www.agrieducation.org', 'http://www.agrieducation.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 3, -1, 'en', 1, 1, 0, 0, 5.65, 0, 39.77, 49.86),
(87, 'http://www.freewd.org', 'http://www.freewd.org/submit.php?LINK_TYPE=2', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=2&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(86, 'http://www.coolwebsitelistings.com', 'http://www.coolwebsitelistings.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(85, 'http://www.ns8.biz', 'http://www.ns8.biz/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(84, 'http://www.gfxmedia.us', 'http://www.gfxmedia.us/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(83, 'http://www.biowatchmed.net', 'http://www.biowatchmed.net/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(82, 'http://www.lemurgene.com', 'http://www.lemurgene.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(80, 'http://www.tuenschel.com', 'http://www.tuenschel.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.tuenschel.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(79, 'http://www.migliana.com', 'http://www.migliana.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.migliana.com', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(78, 'http://www.prolificpi.com', 'http://www.prolificpi.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.prolificpi.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(77, 'http://www.mymaxlinks.info', 'http://www.mymaxlinks.info/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(76, 'http://www.counterdeal.com', 'http://www.counterdeal.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(73, 'http://www.mytopdirectory.info', 'http://www.mytopdirectory.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(72, 'http://www.thelivinglink.net', 'http://www.thelivinglink.net/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 4, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(70, 'http://www.towerpromote.com', 'http://www.towerpromote.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(68, 'http://www.picna.com', 'http://www.picna.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.picna.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(67, 'http://www.owdirectory.com', 'http://www.owdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(66, 'http://www.haqj.com', 'http://www.haqj.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(65, 'http://www.gkiv.com', 'http://www.gkiv.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(64, 'http://www.insectuniverse.com', 'http://www.insectuniverse.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.insectuniverse.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(63, 'http://www.greatdir.net', 'http://www.greatdir.net/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(62, 'http://www.jambezi.com', 'http://www.jambezi.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.jambezi.com', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(61, 'http://www.tkdirectory.com', 'http://www.tkdirectory.com/submit.php?LINK_TYPE=1', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'reciprocal=1&LINK_TYPE=1&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(58, 'http://www.directoryrank.net', 'http://www.directoryrank.net/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(57, 'http://www.submitsitenow.info', 'http://www.submitsitenow.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(56, 'http://www.addyourlnksnow.com', 'http://www.addyourlnksnow.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(54, 'http://www.holidaydig.com', 'http://www.holidaydig.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(55, 'http://www.yrkdirectory.com', 'http://www.yrkdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(53, 'http://www.mymaxlinks.org', 'http://www.mymaxlinks.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(52, 'http://www.sblinks.org', 'http://www.sblinks.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(51, 'http://www.lutonengineering.com', 'http://www.lutonengineering.com/submit.php?LINK_TYPE=2', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=2&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(50, 'http://www.doubledirectory.com', 'http://www.doubledirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(49, 'http://www.boomdirectory.com', 'http://www.boomdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(47, 'http://www.deblinley.com', 'http://www.deblinley.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(48, 'http://www.jhucr.org', 'http://www.jhucr.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(46, 'http://www.directorybin.com', 'http://www.directorybin.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 3, -1, 'en', 1, 1, 0, 0, 5.79, 0, 41.16, 50.57),
(45, 'http://www.magdalyns.com', 'http://www.magdalyns.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(44, 'http://www.goobz.biz', 'http://www.goobz.biz/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(43, 'http://www.gainweb.org', 'http://www.gainweb.org/submit.php?LINK_TYPE=2', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=2&submit=Continue&AGREERULES=on', 0, 1, 4, -1, 'en', 1, 1, 1, 0, 6.09, 0, 41.58, 51),
(42, 'http://www.indiabusinessdirectory.info', 'http://www.indiabusinessdirectory.info/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(41, 'http://www.omega-link.co.uk', 'http://www.omega-link.co.uk/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(40, 'http://www.webslink.info', 'http://www.webslink.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(39, 'http://www.nuclearland.com', 'http://www.nuclearland.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(37, 'http://www.freelistingdirectory.info', 'http://www.freelistingdirectory.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on&RECPR_URL=http://www.freelistingdirectory.info', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(35, 'http://www.crazyleafdesign.com/webdirectory', 'http://www.crazyleafdesign.com/webdirectory/submit?LINK_TYPE=1', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=1&submit=Continue&AGREERULES=on', 1, 0, 0, -1, 'en', 1, 1, 2, 0, 6.12, 0, 51.88, 52.77),
(34, 'http://www.linkspremium.com', 'http://www.linkspremium.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(33, 'http://www.hitalyzer.com', 'http://www.hitalyzer.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 3, -1, 'en', 1, 1, 0, 0, 5.48, 0, 38.03, 47.35),
(32, 'http://directory.seoexecutive.com', 'http://directory.seoexecutive.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(31, 'http://directory.allaboutadtips.com', 'http://directory.allaboutadtips.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(30, 'http://www.clickmybrick.com', 'http://www.clickmybrick.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(29, 'http://www.placeyourlinks.com', 'http://www.placeyourlinks.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(28, 'http://www.seocourt.com', 'http://www.seocourt.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 5.8, 0, 46.71, 53.19),
(27, 'http://www.linkedout.info', 'http://www.linkedout.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(26, 'http://www.triplewdirectory.com', 'http://www.triplewdirectory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 0, -1, 'en', 1, 1, 0, 0, 5.56, 0, 40.12, 50.1),
(25, 'http://www.yvir.com', 'http://www.yvir.com/submit.php?LINK_TYPE=2', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'z=1&LINK_TYPE=2&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(23, 'http://www.1abc.org', 'http://www.1abc.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 1, 0, -1, 'en', 1, 1, 0, 0, 6.17, 0, 54.24, 62.04),
(22, 'http://www.pblake.com', 'http://www.pblake.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 4, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(21, 'http://www.aaawebdirectory.com', 'http://www.aaawebdirectory.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(20, 'http://www.sanory.com', 'http://www.sanory.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(19, 'http://www.domaining.in', 'http://www.domaining.in/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 0, 4, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(18, 'http://www.miriblack.com', 'http://www.miriblack.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 5.67, 0, 47.02, 54.01),
(17, 'http://www.alistsites.com', 'http://www.alistsites.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 0, -1, 'en', 1, 1, 0, 0, 5.88, 0, 41.57, 51.35),
(16, 'http://www.cheapdirectory.net', 'http://www.cheapdirectory.net/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on', 0, 0, 3, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(15, 'http://www.ewebdir.com', 'http://www.ewebdir.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 4.9, 0, 27.28, 38.47),
(14, 'http://www.tfwd.org', 'http://www.tfwd.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 1, 1, -1, 'en', 1, 1, 0, 0, 4.8, 0, 28.47, 39.2),
(13, 'http://www.pr3plus.com', 'http://www.pr3plus.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 5.49, 0, 34.8, 45.67),
(12, 'http://www.123hitlinks.info', 'http://www.123hitlinks.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 5.8, 0, 44.27, 53.65),
(10, 'http://www.directoryvault.com', 'http://www.directoryvault.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 0, -1, 'en', 1, 1, 0, 0, 6.11, 0, 44.64, 53.95),
(9, 'http://www.skypemedia.com', 'http://www.skypemedia.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(8, 'http://www.webhotlink.com', 'http://www.webhotlink.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=free&submit=Continue&AGREERULES=on', 0, 1, 0, -1, 'en', 1, 1, 0, 0, 5.3, 0, 34.91, 45.7),
(6, 'http://www.freewebsitedirectory.com', 'http://www.freewebsitedirectory.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 6.34, 0, 53.58, 61.49),
(5, 'http://www.777media.com', 'http://www.777media.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(3, 'http://www.onpaco.com', 'http://www.onpaco.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 0, -1, 'en', 1, 1, 0, 0, 5.58, 0, 33.32, 44.39),
(2, 'http://www.fat64.net', 'http://www.fat64.net/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 5.79, 0, 43.47, 52.97),
(1, 'http://directory.seopanel.in', 'http://directory.seopanel.in/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=reciprocal&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 1, 0, 6.65, 0, 47.24, 51.26),
(146, 'http://www.sblinks.info', 'http://www.sblinks.info/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(147, 'http://www.thehopedirectory.com', 'http://www.thehopedirectory.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(148, 'http://www.clocktowerstudio.com', 'http://www.clocktowerstudio.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(149, 'http://www.infotechwv.com', 'http://www.infotechwv.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(150, 'http://www.dawsoneng.com', 'http://www.dawsoneng.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(151, 'http://www.cafrid.com', 'http://www.cafrid.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 1, 1, 0, -1, 'en', 1, 1, 0, 0, 4.64, 0, 29.42, 41.05),
(152, 'http://www.fusionsalcedo.com', 'http://www.fusionsalcedo.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 1, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(153, 'http://www.justaskluke.com', 'http://www.justaskluke.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(154, 'http://www.logha.com', 'http://www.logha.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(155, 'http://www.pacdec.org', 'http://www.pacdec.org/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(156, 'http://www.sitechakra.com', 'http://www.sitechakra.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 2, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(157, 'http://www.webbacklinks.com', 'http://www.webbacklinks.com/submit.php', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 0, 0, -1, 'en', 1, 1, 0, 0, 0, 0, 0, 0),
(158, 'http://www.searchnsearch.com', 'http://www.searchnsearch.com/submit.php', 'captcha.php', 'index.php?search=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=normal&submit=Continue&AGREERULES=on', 0, 1, 1, -1, 'en', 1, 1, 0, 0, 5.38, 0, 29.48, 38.96);
-- --------------------------------------------------------
--
-- Table structure for table `dirsubmitinfo`
--
CREATE TABLE `dirsubmitinfo` (
`id` bigint(24) unsigned NOT NULL AUTO_INCREMENT,
`website_id` int(11) unsigned NOT NULL,
`directory_id` int(11) unsigned NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`active` tinyint(1) NOT NULL DEFAULT '0',
`submit_time` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `di_directory_meta`
--
CREATE TABLE `di_directory_meta` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL,
`captcha_script` varchar(100) CHARACTER SET latin1 NOT NULL DEFAULT 'captcha.php',
`search_script` varchar(100) CHARACTER SET latin1 NOT NULL DEFAULT 'index.php?q=[--keyword--]',
`title_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'TITLE',
`url_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'URL',
`description_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'DESCRIPTION',
`name_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'OWNER_NAME',
`email_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'OWNER_EMAIL',
`category_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'CATEGORY_ID',
`cptcha_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'CAPTCHA',
`imagehash_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'IMAGEHASH',
`imagehashurl_col` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT 'imagehash',
`reciprocal_col` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'RECPR_URL',
`extra_val` varchar(255) CHARACTER SET latin1 NOT NULL DEFAULT 'LINK_TYPE=normal&submit=Continue&AGREERULES=on',
`link_type_col` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'LINK_TYPE',
`normal` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'normal',
`free` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'free',
`reciprocal` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'reciprocal',
`status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `di_directory_meta`
--
INSERT INTO `di_directory_meta` VALUES
(1, 'phpLD', 'captcha.php', 'index.php?q=[--keyword--]', 'TITLE', 'URL', 'DESCRIPTION', 'OWNER_NAME', 'OWNER_EMAIL', 'CATEGORY_ID', 'CAPTCHA', 'IMAGEHASH', 'imagehash', 'RECPR_URL', 'LINK_TYPE=[--type--]&submit=Continue&AGREERULES=on', 'LINK_TYPE', 'normal', 'free', 'reciprocal', 1);
-- --------------------------------------------------------
--
-- Table structure for table `featured_directories`
--
CREATE TABLE `featured_directories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`directory_name` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`directory_link` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
`google_pagerank` smallint(6) NOT NULL DEFAULT '0',
`coupon_code` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`coupon_offer` float NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=6 ;
--
-- Dumping data for table `featured_directories`
--
INSERT INTO `featured_directories` VALUES
(1, 'directory.seopanel.in', 'http://directory.seopanel.in/submit.php?LINK_TYPE=featured', 4, '', 0, 1),
(4, 'beta-i.org', 'http://beta-i.org/submit.php?LINK_TYPE=4', 6, '', 0, 0),
(5, 'directorymaximizer.com', 'http://www.directorymaximizer.com/af.php?af=207564&ad=5&p=1', 6, '', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `information_list`
--
CREATE TABLE `information_list` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`info_type` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'news',
`content` text COLLATE utf8_unicode_ci NOT NULL,
`update_date` date NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `information_list`
--
INSERT INTO `information_list` VALUES
(1, 'news', ' <a style="text-decoration: none" href="https://www.seopanel.org/aboutus/sponsors/" target="_blank" id=''news_info''>\n <b style="color:red;">New*</b> <b>Donate</b> <b style="color: green">$500</b> \n and become a <b>premium sponsor of Seo Panel</b>. Also get <b>all plugins</b> we develop for Free!\n </a>\n ', '2016-12-16');
-- --------------------------------------------------------
--
-- Table structure for table `keywordcrontracker`
--
CREATE TABLE `keywordcrontracker` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`keyword_id` int(16) DEFAULT NULL,
`searchengine_id` int(11) DEFAULT NULL,
`time` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `keyword_id` (`keyword_id`),
KEY `searchengine_id` (`searchengine_id`),
KEY `time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `keywords`
--
CREATE TABLE `keywords` (
`id` bigint(24) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
`lang_code` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL,
`country_code` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL,
`website_id` int(11) DEFAULT NULL,
`searchengines` varchar(120) CHARACTER SET latin1 DEFAULT NULL,
`status` tinyint(1) DEFAULT '0',
`crawled` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `keyword_analytics`
--
CREATE TABLE `keyword_analytics` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`keyword_id` int(11) NOT NULL,
`clicks` int(11) NOT NULL,
`impressions` int(11) NOT NULL,
`ctr` float NOT NULL,
`average_position` float NOT NULL,
`report_date` date NOT NULL,
`source` enum('google','yahoo','bing','baidu','yandex') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'google',
PRIMARY KEY (`id`),
KEY `keyword_id` (`keyword_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `languages`
--
CREATE TABLE `languages` (
`lang_code` varchar(8) CHARACTER SET latin1 NOT NULL,
`lang_name` varchar(24) COLLATE utf8_unicode_ci DEFAULT NULL,
`lang_show` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`RTL` tinyint(1) NOT NULL DEFAULT '0',
`translated` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`lang_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `languages`
--
INSERT INTO `languages` VALUES
('en', 'English', 'English', 0, 1),
('de', 'German', 'Deutsch', 0, 1),
('fr', 'French', 'Français', 0, 1),
('it', 'Italian', 'italiano', 0, 1),
('es', 'Spanish', 'español', 0, 1),
('pl', 'Polish', 'polski', 0, 1),
('ru', 'Russian', 'Русский язык', 0, 1),
('hi', 'Hindi', 'हिन्दी', 0, 1),
('ar', 'Arabic', 'العربية', 1, 1),
('pt', 'Portuguese', 'português', 0, 1),
('sv', 'Swedish', 'Svenska', 0, 1),
('no', 'Norwegian', 'Norsk', 0, 1),
('da', 'Danish', 'dansk', 0, 1),
('fi', 'Finnish', 'suomi', 0, 1),
('hu', 'Hungarian', 'magyar', 0, 1),
('nl', 'Dutch', 'Nederlands', 0, 1),
('sr', 'Serbian', 'српски', 0, 1),
('bg', 'Bulgarian', 'български', 0, 1),
('uk', 'Ukrainian', 'Українська', 0, 1),
('el', 'Greek', 'ελληνικά', 0, 1),
('he', 'Hebrew', 'עברית / עִבְרִית', 1, 1),
('ko', 'Korean', '한국어 [韓國語]', 0, 1),
('zh', 'Chinese (Simplified)', '中文(简体)', 0, 1),
('ja', 'Japanese', '日本語 ', 0, 1),
('tl', 'Tagalog', 'Tagalog', 0, 1),
('id', 'Indonesian', 'Bahasa Indonesia', 0, 1),
('fa', 'Farsi', 'پارسی', 1, 1),
('th', 'Thai', 'ภาษาไทย', 0, 1),
('ro', 'Romanian', 'română', 0, 1),
('tr', 'Turkish', 'Türkçe', 0, 1),
('hr', 'Croatian', 'Hrvatski', 0, 1),
('mk', 'Macedonian', 'македонски', 0, 1),
('bs', 'Bosnian', 'Bosanski', 0, 1),
('sq', 'Albanian', 'shqip', 0, 1),
('sw', 'Swahili', 'Kiswahili', 0, 1),
('hy', 'Armenian', 'Հայերէն', 0, 1),
('cs', 'Czech', 'čeština', 0, 1),
('sk', 'Slovak', 'slovenčina', 0, 1),
('cn', 'Chinese (Traditional)', '中文(繁體)', 0, 1),
('pt-br', 'Portuguese - Brazil', 'português brasileiro', 0, 1),
('vn', 'Vietnamese', 'Việt', 0, 1),
('es-ar', 'Spanish Argentina', 'español rioplatense', 0, 1),
('sl', 'Slovenian', 'slovenščina', 0, 1),
('lt', 'Lithuanian', 'lietuvių kalba', 0, 1),
('ca', 'Catalan', 'Català', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `mail_logs`
--
CREATE TABLE `mail_logs` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`from_address` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`to_address` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`cc_address` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
`subject` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`log_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`log_message` text COLLATE utf8_unicode_ci,
`mail_category` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'general',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `pagespeeddetails`
--
CREATE TABLE `pagespeeddetails` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`desktop_score_details` text COLLATE utf8_unicode_ci NOT NULL,
`mobile_score_details` text COLLATE utf8_unicode_ci NOT NULL,
`result_date` date NOT NULL,
PRIMARY KEY (`id`),
KEY `result_date` (`result_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `pagespeedresults`
--
CREATE TABLE `pagespeedresults` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`desktop_speed_score` smallint(6) NOT NULL,
`mobile_speed_score` smallint(6) NOT NULL,
`mobile_usability_score` smallint(6) NOT NULL,
`result_date` date NOT NULL,
PRIMARY KEY (`id`),
KEY `result_date` (`result_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `proxylist`
--
CREATE TABLE `proxylist` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`proxy` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`port` int(8) DEFAULT NULL,
`proxy_auth` tinyint(1) NOT NULL DEFAULT '0',
`proxy_username` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`proxy_password` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`checked` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `qwp_settings`
--
CREATE TABLE `qwp_settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`set_label` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`set_name` varchar(64) CHARACTER SET latin1 NOT NULL,
`set_val` text COLLATE utf8_unicode_ci NOT NULL,
`set_type` enum('small','bool','medium','large','text') CHARACTER SET latin1 DEFAULT 'small',
PRIMARY KEY (`id`),
UNIQUE KEY `set_name` (`set_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=5 ;
--
-- Dumping data for table `qwp_settings`
--
INSERT INTO `qwp_settings` VALUES
(2, 'Allow user to access the web proxy', 'QWP_ALLOW_USER_WEB_PROXY', '0', 'bool'),
(3, 'Allow web server to act as a proxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', '1', 'bool'),
(4, 'Blocked Urls In Proxy', 'QWP_PROXY_BLOCK_URLS', '', 'text');
-- --------------------------------------------------------
--
-- Table structure for table `rankresults`
--
CREATE TABLE `rankresults` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`google_pagerank` int(8) NOT NULL DEFAULT '0',
`alexa_rank` int(11) NOT NULL DEFAULT '0',
`moz_rank` float NOT NULL DEFAULT '0',
`spam_score` float NOT NULL DEFAULT '0',
`result_time` int(11) NOT NULL DEFAULT '0',
`domain_authority` float NOT NULL DEFAULT '0',
`page_authority` float NOT NULL DEFAULT '0',
`result_date` date DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `result_date` (`result_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `reports_settings`
--
CREATE TABLE `reports_settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`report_interval` int(11) NOT NULL DEFAULT '1',
`email_notification` tinyint(1) NOT NULL DEFAULT '0',
`last_generated` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `reports_settings`
--
INSERT INTO `reports_settings` VALUES
(1, 1, 1, 1, 1481760000);
-- --------------------------------------------------------
--
-- Table structure for table `review_links`
--
CREATE TABLE `review_links` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`name` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`type` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'google_my_business',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `website_id` (`website_id`,`url`),
KEY `review_links_web_rel` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `review_link_results`
--
CREATE TABLE `review_link_results` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`review_link_id` int(11) NOT NULL,
`reviews` int(11) NOT NULL DEFAULT '0',
`rating` float NOT NULL DEFAULT '0',
`report_date` date NOT NULL,
PRIMARY KEY (`id`),
KEY `review_link_rel` (`review_link_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `saturationresults`
--
CREATE TABLE `saturationresults` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`google` int(11) NOT NULL,
`msn` int(11) NOT NULL,
`result_time` int(11) NOT NULL DEFAULT '0',
`result_date` date DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `result_date` (`result_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `searchengines`
--
CREATE TABLE `searchengines` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`domain` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
`url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`cookie_send` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`no_of_results_page` int(8) DEFAULT NULL,
`start` int(11) NOT NULL DEFAULT '0',
`start_offset` int(8) NOT NULL DEFAULT '0',
`max_results` int(11) NOT NULL DEFAULT '100',
`regex` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`from_pattern` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`to_pattern` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`url_index` int(11) NOT NULL DEFAULT '1',
`title_index` int(11) NOT NULL DEFAULT '2',
`description_index` int(11) NOT NULL DEFAULT '3',
`encoding` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` tinyint(1) DEFAULT '0',
`updated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `searchengines`
--
INSERT INTO `searchengines` VALUES
(1, 'www.google.com', 'https://www.google.com/search?hl=[--lang--]&q=[--keyword--]&start=[--start--]&cr=country[--country--]', '', 100, 0, 100, 100, '<div.*?class="?g.*?>.*?href="(.*?)".*?>.*?<h3.*?>(.*?)<\\/h3>', 'id="search"', 'id="bottomads"', 1, 2, 3, NULL, 1, '[[regtime]]'),
(2, 'www.yahoo.com', 'https://search.yahoo.com/search?p=[--keyword--]&n=[--num--]&b=[--start--]&vl=lang_[--lang--]&fl=1&v=1&vc=[--country--]', 'sB=v=1&n=100&sh=1&rw=new', 100, 1, 100, 100, '<li.*?<h3.*?><a.*?RU=(.*?)\\/.*?>(.*?)<\\/a><\\/h3>.*?<p.*?>(.*?)<\\/p>', NULL, NULL, 1, 2, 3, NULL, 1, '[[regtime]]'),
(3, 'www.bing.com', 'https://www.bing.com/search?q=[--keyword--]&scope=web&first=[--start--]&setmkt=[--lang--]-[--country--]', 'SRCHHPGUSR=NEWWND=0&NRSLT=50&SRCHLANG=[--lang--]', 50, 1, 50, 50, '<li.*?<h2><a.*?href="(.*?)".*?>(.*?)<\\/a><\\/h2>.*?<p.*?>(.*?)<\\/p>', NULL, NULL, 1, 2, 3, NULL, 1, '[[regtime]]');
-- --------------------------------------------------------
--
-- Table structure for table `searchresultdetails`
--
CREATE TABLE `searchresultdetails` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`searchresult_id` bigint(24) unsigned DEFAULT NULL,
`url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`title` varchar(160) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `searchresults`
--
CREATE TABLE `searchresults` (
`id` bigint(24) unsigned NOT NULL AUTO_INCREMENT,
`keyword_id` int(16) DEFAULT NULL,
`searchengine_id` int(11) DEFAULT NULL,
`rank` int(8) DEFAULT NULL,
`time` int(11) DEFAULT NULL,
`result_date` date DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `result_date` (`result_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `seoplugins`
--
CREATE TABLE `seoplugins` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`label` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`author` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci,
`version` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL,
`website` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`installed` tinyint(1) NOT NULL DEFAULT '0',
`priority` int(11) NOT NULL DEFAULT '100',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `seoplugins`
--
INSERT INTO `seoplugins` VALUES
(1, 'Meta Tag Generator', 'MetaTagGenerator', 'Geo Varghese', 'Meta Tag Generator', '1.0.0', 'https://www.seopanel.org/plugins/', 1, 1, 100),
(2, 'Test Plugin', 'TestPlugin', 'Geo Varghese', 'Seo Panel Test Plugin: Check the structure of test plugin and it will help you to create new Seo Panel Plugins.', '1.0.0', 'https://www.seopanel.org/plugins/', 0, 1, 100),
(3, 'Quick Web Proxy', 'QuickWebProxy', 'Seo Panel', 'It will help you to create a web proxy server using your hosting server or external proxy servers', '2.1.0', 'https://www.seopanel.org/plugin/l/94/quick-web-proxy/', 1, 1, 100);
-- --------------------------------------------------------
--
-- Table structure for table `seotools`
--
CREATE TABLE `seotools` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`url_section` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`user_access` tinyint(1) NOT NULL DEFAULT '1',
`reportgen` tinyint(1) NOT NULL DEFAULT '1',
`cron` tinyint(1) NOT NULL DEFAULT '0',
`priority` int(11) NOT NULL DEFAULT '100',
`status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=12 ;
--
-- Dumping data for table `seotools`
--
INSERT INTO `seotools` VALUES
(1, 'Keyword Position Checker', 'keyword-position-checker', 1, 1, 1, 10, 1),
(2, 'Site Auditor', 'site-auditor', 1, 1, 0, 100, 1),
(3, 'Rank Checker', 'rank-checker', 1, 1, 1, 100, 1),
(4, 'Backlinks Checker', 'backlink-checker', 1, 1, 1, 100, 1),
(5, 'Directory Submission', 'directory-submission', 1, 1, 0, 100, 1),
(6, 'Search Engine Saturation', 'saturation-checker', 1, 1, 1, 100, 1),
(7, 'PageSpeed Insights', 'pagespeed', 1, 1, 1, 100, 1),
(8, 'Webmaster Tools', 'webmaster-tools', 1, 1, 1, 20, 1),
(9, 'Social Media Checker', 'sm-checker', 1, 1, 1, 100, 1),
(10, 'Website Analytics', 'web-analytics', 1, 1, 1, 100, 1),
(11, 'Review Manager', 'review-manager', 1, 1, 1, 100, 1);
-- --------------------------------------------------------
--
-- Table structure for table `settings`
--
CREATE TABLE `settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`set_label` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`set_name` varchar(64) CHARACTER SET latin1 NOT NULL,
`set_val` text COLLATE utf8_unicode_ci NOT NULL,
`set_category` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'system',
`set_type` enum('small','bool','medium','large','text') CHARACTER SET latin1 DEFAULT 'small',
`display` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `set_name` (`set_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=72 ;
--
-- Dumping data for table `settings`
--
INSERT INTO `settings` VALUES
(1, 'Seo Panel Title', 'SP_TITLE', 'Seo Panel: World''s first open source seo control panel for managing multiple web sites', 'system', 'large', 1),
(2, 'Seo Panel Description', 'SP_DESCRIPTION', 'A complete free control panel for managing search engine optimization of your websites. It\ncontaining lots of hot seo tools to increase and track the performance your websites. Its an open\nsource software and also you can develop your own seo plugins for seo panel.', 'system', 'text', 1),
(3, 'Seo Panel Keywords', 'SP_KEYWORDS', 'Seo Panel,seo control panel,search engine optimization panel,seo tools kit,keyword rank checker,google pagerank checker,alexa rank checker,sitemap generator,meta tag generator,back link checker,Website Submission tool', 'system', 'text', 1),
(4, 'Number of entries per page', 'SP_PAGINGNO', '10', 'system', 'small', 1),
(5, 'Delay between each spider crawl(seconds)', 'SP_CRAWL_DELAY', '5', 'report', 'small', 1),
(6, 'Allow user to generate reports', 'SP_USER_GEN_REPORT', '0', 'report', 'bool', 1),
(7, 'Image hotlink protection enabled', 'SP_HOTLINKING', '1', 'system', 'bool', 0),
(8, 'User registration interface', 'SP_USER_REGISTRATION', '0', 'system', 'bool', 1),
(9, 'Enable Proxy', 'SP_ENABLE_PROXY', '0', 'proxy', 'bool', 1),
(10, 'Default Language', 'SP_DEFAULTLANG', '[[language]]', 'system', 'small', 1),
(11, 'User agent', 'SP_USER_AGENT', 'Mozilla/5.0 (Windows; U; MSIE 9.0; WIndows NT 9.0; en-US))', 'report', 'large', 1),
(12, 'Seo Panel API Key', 'SP_API_KEY', '[[apiKey]]', 'api', 'large', 1),
(13, 'Maximum number of pages allowed per website', 'SA_MAX_NO_PAGES', '500', 'siteauditor', 'small', 1),
(14, 'Site auditor crawl delay', 'SA_CRAWL_DELAY_TIME', '10', 'siteauditor', 'small', 1),
(15, 'Maximum length of page title', 'SA_TITLE_MAX_LENGTH', '80', 'siteauditor', 'small', 0),
(16, 'Minimum length of page title', 'SA_TITLE_MIN_LENGTH', '50', 'siteauditor', 'small', 0),
(17, 'Maximum length of meta description', 'SA_DES_MAX_LENGTH', '200', 'siteauditor', 'small', 0),
(18, 'Minimumlength of meta description', 'SA_DES_MIN_LENGTH', '120', 'siteauditor', 'small', 0),
(19, 'Maximum length of meta keywords', 'SA_KEY_MAX_LENGTH', '200', 'siteauditor', 'small', 0),
(20, 'Minimumlength of meta keyword', 'SA_KEY_MIN_LENGTH', '80', 'siteauditor', 'small', 0),
(21, 'Google pagerank check level first', 'SA_PR_CHECK_LEVEL_FIRST', '3', 'siteauditor', 'small', 0),
(22, 'Backlinks check level', 'SA_BL_CHECK_LEVEL', '25', 'siteauditor', 'small', 0),
(23, 'Google pagerank check level second', 'SA_PR_CHECK_LEVEL_SECOND', '6', 'siteauditor', 'small', 0),
(24, 'Maximum links in a page', 'SA_TOTAL_LINKS_MAX', '50', 'siteauditor', 'small', 0),
(25, 'Enable SMTP', 'SP_SMTP_MAIL', '0', 'mail', 'bool', 1),
(26, 'SMTP Host', 'SP_SMTP_HOST', '', 'mail', 'medium', 1),
(27, 'SMTP Username', 'SP_SMTP_USERNAME', '', 'mail', 'medium', 1),
(28, 'SMTP Password', 'SP_SMTP_PASSWORD', '', 'mail', 'medium', 1),
(29, 'Allow users to schedule reports', 'SP_ALLOW_USER_SCHEDULE_REPORT', '1', 'report', 'bool', 1),
(30, 'System report generation interval', 'SP_SYSTEM_REPORT_INTERVAL', '1', 'report', 'small', 1),
(31, 'Enable report email notification', 'SP_REPORT_EMAIL_NOTIFICATION', '1', 'report', 'bool', 1),
(32, 'Number of keywords needs to be checked in each cron execution', 'SP_NUMBER_KEYWORDS_CRON', '1', 'report', 'small', 0),
(33, 'Crawl relative links in a page', 'SP_RELATIVE_LINK_CRAWL', '1', 'siteauditor', 'bool', 1),
(34, 'Enable HTTP Proxy Tunnel', 'CURLOPT_HTTPPROXYTUNNEL_VAL', '1', 'proxy', 'bool', 1),
(35, 'Deactivate Proxy When Crawling Failed', 'PROXY_DEACTIVATE_CRAWL', '0', 'proxy', 'bool', 1),
(36, 'Check With Another Proxy When Crawling Failed', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', '0', 'proxy', 'bool', 1),
(37, 'SMTP Mail Port', 'SP_SMTP_PORT', '25', 'mail', 'small', 1),
(38, 'Time Zone', 'SP_TIME_ZONE', 'America/New_York', 'system', 'medium', 1),
(39, 'Maximum number of proxies used in single execution', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', '3', 'proxy', 'small', 1),
(40, 'API Secret', 'API_SECRET', '', 'api', 'medium', 1),
(41, 'Company Name', 'SP_COMPANY_NAME', '[[company_name]]', 'system', 'medium', 1),
(42, 'Currency', 'SP_PAYMENT_CURRENCY', 'USD', 'system', 'medium', 1),
(43, 'Seo Panel version', 'SP_VERSION_NUMBER', '5.1.0', 'system', 'medium', 0),
(44, 'Moz API Link', 'SP_MOZ_API_LINK', 'http://lsapi.seomoz.com/linkscape', 'moz', 'medium', 0),
(45, 'Moz API Link', 'SP_MOZ_API_ACCESS_ID', '', 'moz', 'large', 0),
(46, 'Moz API Link', 'SP_MOZ_API_SECRET', '', 'moz', 'large', 1),
(47, 'Page authority check level first', 'SA_PA_CHECK_LEVEL_FIRST', '40', 'siteauditor', 'small', 0),
(48, 'Page authority check level second', 'SA_PA_CHECK_LEVEL_SECOND', '75', 'siteauditor', 'small', 0),
(49, 'Google API Key', 'SP_GOOGLE_API_KEY', '', 'google', 'large', 1),
(50, 'Number of websites needs to be checked in each cron execution', 'SP_NUMBER_WEBSITES_CRON', '1', 'report', 'small', 0),
(51, 'Send custom header with curl request', 'SP_SEND_CUSTOM_HEADER_IN_CURL', '1', 'report', 'bool', 1),
(52, 'Google API Client Id', 'SP_GOOGLE_API_CLIENT_ID', '', 'google', 'large', 1),
(53, 'Google API Client Secret', 'SP_GOOGLE_API_CLIENT_SECRET', '', 'google', 'large', 1),
(54, 'Google Analytics Tracking Code', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', '', 'google', 'text', 1),
(55, 'Enable Proxy for Google API', 'SP_ENABLE_PROXY_GOOGLE_API', '1', 'proxy', 'bool', 1),
(56, 'Mail Encryption', 'SP_MAIL_ENCRYPTION', '', 'mail', 'medium', 1),
(57, 'Enable Sendgrid API', 'SP_SENDGRID_API', '0', 'mail', 'bool', 1),
(58, 'Seo Panel Demo', 'SP_DEMO', '0', 'system', 'large', 0),
(59, 'Seo Panel Hosted Version', 'SP_HOSTED_VERSION', '0', 'system', 'large', 0),
(60, 'Enable reCAPTCHA', 'SP_ENABLE_RECAPTCHA', '0', 'google', 'bool', 1),
(61, 'reCAPTCHA Site Key', 'SP_RECAPTCHA_SITE_KEY', '', 'google', 'large', 1),
(62, 'reCAPTCHA Secret Key', 'SP_RECAPTCHA_SECRET_KEY', '', 'google', 'large', 1),
(63, 'Country', 'SP_DEFAULT_COUNTRY', 'US', 'system', 'small', 1),
(64, 'Enable DataForSEO', 'SP_ENABLE_DFS', '0', 'dataforseo', 'bool', 1),
(65, 'DataForSEO API Login', 'SP_DFS_API_LOGIN', '', 'dataforseo', 'large', 1),
(66, 'DataForSEO API Password', 'SP_DFS_API_PASSWORD', '', 'dataforseo', 'large', 1),
(67, 'DataForSEO Balance', 'SP_DFS_BALANCE', '0', 'dataforseo', 'small', 1),
(68, 'Enable for Backlink and Saturation Checker', 'SP_ENABLE_DFS_BACK_SATU', '0', 'dataforseo', 'bool', 1),
(69, 'Enable Sandbox', 'SP_ENABLE_DFS_SANDBOX', '0', 'dataforseo', 'bool', 1),
(70, 'Use Sample API Data (for testing - saves API credits)', 'SP_USE_SAMPLE_API_DATA', '0', 'system', 'bool', 1),
(71, 'Exclude file extensions (comma-separated)', 'SA_EXCLUDE_FILE_EXTENSIONS', 'zip,gz,tar,png,jpg,jpeg,gif,mp3,flv,pdf,m4a,avi,mov,wmv,mp4,doc,docx,xls,xlsx,ppt,pptx,rar,7z,exe,dmg,iso', 'siteauditor', 'text', 1);
-- --------------------------------------------------------
--
-- Table structure for table `skipdirectories`
--
CREATE TABLE `skipdirectories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`directory_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `website_id` (`website_id`,`directory_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `social_media_links`
--
CREATE TABLE `social_media_links` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`name` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`type` varchar(60) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'facebook',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `website_id` (`website_id`,`url`),
KEY `social_media_links_web_rel` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `social_media_link_results`
--
CREATE TABLE `social_media_link_results` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`sm_link_id` int(11) NOT NULL,
`likes` int(11) NOT NULL DEFAULT '0',
`followers` int(11) NOT NULL DEFAULT '0',
`report_date` date NOT NULL,
PRIMARY KEY (`id`),
KEY `social_media_link_rel` (`sm_link_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sync_searchengines`
--
CREATE TABLE `sync_searchengines` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sync_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`status` tinyint(1) NOT NULL DEFAULT '0',
`result` text COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `testplugin`
--
CREATE TABLE `testplugin` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(64) CHARACTER SET latin1 NOT NULL,
`description` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `texts`
--
CREATE TABLE `texts` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`lang_code` varchar(8) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'en',
`category` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'common',
`label` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8_unicode_ci,
`changed` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `language_id` (`lang_code`,`category`,`label`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=41528 ;
--
-- Dumping data for table `texts`
--
INSERT INTO `texts` VALUES
(1, 'en', 'common', 'lang', 'Language', '2019-08-06 10:09:56'),
(2, 'de', 'common', 'lang', 'Sprache', '2021-06-15 01:46:19'),
(3, 'fr', 'common', 'lang', 'Langue', '2020-02-14 16:05:11'),
(4, 'en', 'common', 'contact', 'Contact', '2019-08-06 10:09:56'),
(5, 'en', 'common', 'help', 'Help', '2019-08-06 10:09:56'),
(6, 'en', 'common', 'forum', 'Forum', '2019-08-06 10:09:56'),
(7, 'en', 'common', 'signin', 'Sign in', '2019-08-06 10:09:56'),
(8, 'en', 'common', 'Sign out', 'Sign out', '2019-08-06 10:09:56'),
(9, 'en', 'common', 'Seo Tools', 'Seo Tools', '2019-08-06 10:09:56'),
(10, 'en', 'common', 'Seo Plugins', 'Seo Plugins', '2019-08-06 10:09:56'),
(11, 'en', 'common', 'Support', 'Support', '2019-08-06 10:09:56'),
(12, 'en', 'common', 'Donate', 'Donate', '2019-08-06 10:09:56'),
(13, 'en', 'common', 'My Account', 'My Account', '2019-08-06 10:09:56'),
(14, 'en', 'common', 'Sign Up', 'Sign Up', '2019-08-06 10:09:56'),
(15, 'fr', 'common', 'Support', 'Support', '2020-02-14 16:05:11'),
(16, 'en', 'common', 'User Panel', 'User Panel', '2019-08-06 10:09:56'),
(17, 'en', 'common', 'Admin Panel', 'Admin Panel', '2019-08-06 10:09:56'),
(18, 'en', 'common', 'copyright', 'Copyright © [year] www.seopanel.org All rights reserved', '2019-08-06 10:09:56'),
(39029, 'hr', 'review', 'No review data available', 'Nema dostupnih podataka o recenzijama. <a href="seo-tools.php?menu_sec=review-manager">Dodajte linkove recenzija</a> da biste počeli pratiti svoje recenzije i ocjene.', '2026-01-19 22:58:50'),
(39030, 'hu', 'review', 'No review data available', 'Nincsenek elérhető értékelési adatok. <a href="seo-tools.php?menu_sec=review-manager">Adjon hozzá értékelési hivatkozásokat</a>, hogy elkezdhesse követni értékeléseit és értékeléseit.', '2026-01-19 22:58:50'),
(39031, 'hy', 'review', 'No review data available', 'Ակնարկների տվյալներ չկան: <a href="seo-tools.php?menu_sec=review-manager">Ավելացրեք ակնարկների հղումներ</a>՝ սկսելու հետևել ձեր ակնարկներին և վարկանիշներին:', '2026-01-19 22:58:50'),
(13906, 'el', 'webmaster', 'Average Position', 'Μέση Θέση', '2019-01-29 11:39:00'),
(13907, 'el', 'subscription', 'Edit Email Template', 'Επεξεργασία Email Template', '2019-11-28 23:11:38'),
(13908, 'el', 'subscription', 'Email Template Manager', 'Διαχείριση Θεμάτων Email', '2019-11-28 23:11:38'),
(22, 'en', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel All Plugin Tool kit</h1> \r\n <p>\r\n It includes most of the plugins developed by seo panel team for just <font class="success bold" size="14">$160</font> includes <b>Membership Subscription</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Search Engines Package</h1> \r\n <p>\r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to provide us required search engine domain list.\r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> seo plugins for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and we will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact Us</h1> \r\n <p>\r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and features</b>. Eg: To set up cron for keyword position checker.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Report Bugs</h1> \r\n <p>\r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2019-08-06 10:02:01'),
(23, 'en', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Help Guide</h1> \r\n <p>\r\n You can view the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>help guide</b>, it contains the <b>documentation</b> for the seo panel tools,plugins and related features.\r\n <br>It is the best place in internet to <b>get help</b> about seo panel. We hope that you <b>contribute</b> to the seo panel help guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel help guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n A place to discuss about world''s first open source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your websites. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel forum</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2019-08-06 10:02:01'),
(24, 'en', 'support', 'support_cont3', '<fieldset>\r\n<legend>Donate to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Donate to Seo Panel - First Open source seo control panel in the world</h1> \r\n <p>\r\n <b>Donate</b> to seo panel to support first open source seo control panel in the world.\r\n We are planning to <b>add and improve</b> features of seo panel in future. \r\n <br>With all your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please donate some amount to seo panel team.\r\n <br>We will <b>publish</b> your name and site information in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2019-08-06 10:02:01'),
(25, 'en', 'login', 'Login', 'Login', '2010-09-09 11:50:01'),
(26, 'en', 'login', 'Password', 'Password', '2010-09-09 11:50:01'),
(27, 'en', 'login', 'Register', 'Register', '2010-09-09 11:50:51'),
(46, 'en', 'login', 'User inactive', 'User inactive', '2010-09-09 12:48:22'),
(29, 'en', 'login', 'Create New Account', 'Create New Account', '2010-09-09 12:01:09'),
(30, 'en', 'login', 'Username', 'Username', '2010-09-09 12:01:09'),
(31, 'en', 'login', 'Confirm Password', 'Confirm Password', '2010-09-09 12:02:29'),
(32, 'en', 'login', 'First Name', 'First Name', '2010-09-09 12:02:29'),
(33, 'en', 'login', 'Last Name', 'Last Name', '2010-09-09 12:03:06'),
(34, 'en', 'login', 'Email', 'Email', '2010-09-09 12:03:06'),
(35, 'en', 'login', 'Enter the code as it is shown', 'Enter the code as it is shown', '2010-09-09 12:03:45'),
(36, 'en', 'login', 'Create my account', 'Create my account', '2010-09-09 12:03:45'),
(37, 'en', 'common', 'hidenews', 'Hide Seo Panel News', '2019-08-06 10:09:56'),
(38, 'en', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2019-08-06 10:09:56'),
(39, 'en', 'common', 'Invalid characters', 'Invalid characters', '2019-08-06 10:09:56'),
(40, 'en', 'common', 'entrynotvalid', 'The entry entered doesn''t seem to be valid', '2019-08-06 10:09:56'),
(41, 'en', 'common', 'Invalid value', 'Invalid value', '2019-08-06 10:09:56'),
(42, 'en', 'common', 'Invalid email address entered', 'Invalid email address entered', '2019-08-06 10:09:56'),
(43, 'en', 'common', 'password632', 'The password string should have a length between 6 and 32', '2019-08-06 10:09:56'),
(44, 'en', 'common', 'passwordnotmatch', 'The passwords do not match', '2019-08-06 10:09:56'),
(45, 'en', 'common', 'Invalid code entered', 'Invalid code entered', '2019-08-06 10:09:56'),
(47, 'en', 'login', 'Password incorrect', 'Password incorrect', '2010-09-09 12:48:22'),
(48, 'en', 'login', 'Login incorrect', 'Login incorrect', '2010-09-09 12:48:40'),
(49, 'en', 'login', 'emailexist', 'Email already exist!', '2010-09-09 12:52:17'),
(50, 'en', 'login', 'usernameexist', 'Username already exist!', '2010-09-09 12:52:17'),
(51, 'en', 'login', 'newaccountsuccess', 'New account created successfully!', '2010-09-09 12:52:56'),
(52, 'en', 'login', 'Sign in to your account', 'Sign in to your account', '2010-09-09 12:52:56'),
(53, 'en', 'home', 'Account Summary', 'Account Summary', '2019-08-06 09:55:20'),
(54, 'en', 'home', 'Website Statistics', 'Website Statistics', '2019-08-06 09:55:20'),
(55, 'en', 'home', 'SiteNameUrl', 'Site Name/Url', '2019-08-06 09:55:20'),
(56, 'en', 'home', 'Ranks', 'Ranks', '2019-08-06 09:55:20'),
(57, 'en', 'home', 'Backlinks', 'Backlinks', '2019-08-06 09:55:20'),
(58, 'en', 'home', 'Pages Indexed', 'Pages Indexed', '2019-08-06 09:55:20'),
(59, 'en', 'home', 'Directory Submission', 'Directory Submission', '2019-08-06 09:55:20'),
(60, 'en', 'common', 'Total', 'Total', '2019-08-06 10:09:56'),
(61, 'en', 'common', 'Active', 'Active', '2019-08-06 10:09:56'),
(62, 'en', 'common', 'nowebsites', 'No Websites Found', '2019-08-06 10:09:56'),
(63, 'en', 'common', 'Id', 'Id', '2019-08-06 10:09:56'),
(64, 'de', 'common', 'Active', 'Aktiv', '2021-06-15 01:46:19'),
(65, 'de', 'common', 'Total', 'Gesamt', '2021-06-15 01:46:19'),
(66, 'en', 'seotools', 'keyword-position-checker', 'Keyword Position Checker', '2010-09-09 13:32:00'),
(67, 'en', 'seotools', 'sitemap-generator', 'Sitemap Generator', '2010-09-09 13:32:00'),
(68, 'en', 'seotools', 'rank-checker', 'Rank Checker', '2010-09-09 13:32:17'),
(69, 'en', 'seotools', 'backlink-checker', 'Backlinks Checker', '2010-09-09 13:32:59'),
(70, 'en', 'seotools', 'directory-submission', 'Directory Submission', '2010-09-09 13:32:59'),
(71, 'en', 'seotools', 'saturation-checker', 'Search Engine Saturation', '2010-09-09 13:33:19'),
(72, 'en', 'common', 'noactivetools', 'No Active Seo Tools Found!', '2019-08-06 10:09:56'),
(73, 'en', 'seotools', 'Keyword Position Summary', 'Keyword Position Summary', '2010-09-09 13:43:22'),
(74, 'en', 'seotools', 'Detailed Position Reports', 'Detailed Position Reports', '2010-09-09 13:43:22'),
(75, 'en', 'seotools', 'Graphical Position Reports', 'Graphical Position Reports', '2010-09-09 13:43:40'),
(76, 'en', 'seotools', 'Quick Position Checker', 'Quick Position Checker', '2010-09-09 13:43:40'),
(77, 'en', 'seotools', 'Keywords Manager', 'Keywords Manager', '2010-09-09 13:44:01'),
(78, 'en', 'seotools', 'Generate Keyword Reports', 'Generate Keyword Reports', '2010-09-09 13:44:01'),
(79, 'en', 'seotools', 'Google Sitemap Generator', 'Google Sitemap Generator', '2010-09-09 13:44:20'),
(80, 'en', 'seotools', 'Quick Rank Checker', 'Quick Rank Checker', '2010-09-09 13:44:20'),
(81, 'en', 'seotools', 'Rank Reports', 'Rank Reports', '2010-09-09 13:47:08'),
(82, 'en', 'seotools', 'Generate Rank Reports', 'Generate Rank Reports', '2010-09-09 13:47:08'),
(83, 'en', 'seotools', 'Quick Backlinks Checker', 'Quick Backlinks Checker', '2010-09-09 13:47:25'),
(84, 'en', 'seotools', 'Backlinks Reports', 'Backlinks Reports', '2010-09-09 13:47:25'),
(86, 'en', 'seotools', 'Generate Backlinks Reports', 'Generate Backlinks Reports', '2010-09-09 13:48:45'),
(87, 'en', 'seotools', 'Automatic Submission', 'Automatic Submission', '2010-09-09 13:48:45'),
(88, 'en', 'seotools', 'Featured Submission', 'Featured Submission', '2010-09-09 13:49:45'),
(89, 'en', 'seotools', 'Skipped Directories', 'Skipped Directories', '2010-09-09 13:49:45'),
(90, 'en', 'seotools', 'Submission Reports', 'Submission Reports', '2010-09-09 13:49:45'),
(91, 'en', 'seotools', 'Check Submission Status', 'Check Submission Status', '2010-09-09 13:49:45'),
(92, 'en', 'seotools', 'Quick Saturation Checker', 'Quick Saturation Checker', '2010-09-09 13:49:45'),
(93, 'en', 'seotools', 'Saturation Reports', 'Saturation Reports', '2010-09-09 13:50:06'),
(94, 'en', 'seotools', 'Generate Saturation Reports', 'Generate Saturation Reports', '2010-09-09 13:50:06'),
(95, 'en', 'common', 'Website', 'Website', '2019-08-06 10:09:56'),
(96, 'en', 'common', 'Keyword', 'Keyword', '2019-08-06 10:09:56'),
(97, 'en', 'common', 'No Keywords Found', 'No Keywords Found', '2019-08-06 10:09:56'),
(98, 'en', 'common', 'No Records Found', 'No Records Found', '2019-08-06 10:09:56'),
(99, 'en', 'common', 'Period', 'Period', '2019-08-06 10:09:56'),
(100, 'en', 'common', 'Search Engine', 'Search Engine', '2019-08-06 10:09:56'),
(101, 'en', 'common', 'Country', 'Country', '2019-08-06 10:09:56'),
(102, 'en', 'keyword', 'Detailed Keyword Position Reports', 'Detailed Keyword Position Reports', '2010-09-10 11:57:06'),
(103, 'en', 'common', 'Results', 'Results', '2019-08-06 10:09:56'),
(104, 'en', 'common', 'Rank', 'Rank', '2019-08-06 10:09:56'),
(105, 'en', 'common', 'Date', 'Date', '2019-08-06 10:09:56'),
(106, 'de', 'common', 'Date', 'Datum', '2021-06-15 01:46:19'),
(107, 'de', 'common', 'Rank', 'Rang', '2021-06-15 01:46:19'),
(108, 'en', 'keyword', 'Graphical Keyword Position Reports', 'Graphical Keyword Position Reports', '2010-09-10 12:26:06'),
(109, 'en', 'keyword', 'Keyword Position Report', 'Keyword Position Report', '2010-09-10 12:35:16'),
(110, 'en', 'keyword', 'Quick Keyword Position Checker', 'Quick Keyword Position Checker', '2010-09-10 12:45:24'),
(111, 'en', 'keyword', 'Show All results', 'Show All results', '2010-09-10 12:46:12'),
(112, 'en', 'seotools', 'clickgeneratereports', 'Click on <b>Proceed</b> to generate reports', '2010-09-10 12:50:57'),
(113, 'en', 'common', 'Details', 'Details', '2019-08-06 10:09:56'),
(114, 'en', 'Common', 'Name', 'Name', '2019-08-06 10:09:56'),
(115, 'en', 'common', 'Status', 'Status', '2019-08-06 10:09:56'),
(116, 'en', 'common', 'Action', 'Action', '2019-08-06 10:09:56'),
(117, 'en', 'common', 'Inactivate', 'Inactivate', '2019-08-06 10:09:56'),
(118, 'en', 'common', 'Activate', 'Activate', '2019-08-06 10:09:56'),
(119, 'en', 'common', 'Select', 'Select', '2019-08-06 10:09:56'),
(120, 'en', 'common', 'Edit', 'Edit', '2019-08-06 10:09:56'),
(121, 'en', 'common', 'Delete', 'Delete', '2019-08-06 10:09:56'),
(122, 'en', 'common', 'Reports', 'Reports', '2019-08-06 10:09:56'),
(123, 'en', 'common', 'All', 'All', '2019-08-06 10:09:56'),
(124, 'en', 'common', 'Inactive', 'Inactive', '2019-08-06 10:09:56'),
(125, 'de', 'common', 'Edit', 'Bearbeiten', '2021-06-15 01:46:19'),
(126, 'de', 'common', 'Delete', 'Löschen', '2021-06-15 01:46:19'),
(127, 'en', 'keyword', 'Edit Keyword', 'Edit Keyword', '2010-09-11 11:46:49'),
(128, 'en', 'keyword', 'Keyword already exist', 'Keyword already exist', '2010-09-11 12:06:04'),
(129, 'en', 'keyword', 'New Keyword', 'New Keyword', '2010-09-11 12:08:04'),
(130, 'en', 'keyword', 'Successfully crawled keyword', 'Successfully crawled keyword', '2010-09-11 12:28:06'),
(131, 'en', 'keyword', 'results from ', 'results from ', '2010-09-11 12:28:06'),
(132, 'en', 'keyword', 'not assigned to required search engines', 'not assigned to required search engines', '2010-09-11 12:32:25'),
(133, 'en', 'keyword', 'Crawling keyword', 'Crawling keyword', '2010-09-11 12:32:44'),
(134, 'en', 'common', 'failed', 'failed', '2019-08-06 10:09:56'),
(135, 'en', 'sitemap', 'processtaketime', 'This process will take time according to number of links in your site. Please wait to get sitemap files', '2010-09-11 12:48:08'),
(136, 'en', 'sitemap', 'clickproceedsitemap', 'Click on <b>Proceed</b> to create sitemap file', '2010-09-11 12:48:34'),
(137, 'en', 'sitemap', 'Exclude Url', 'Exclude Url', '2010-09-11 12:48:34'),
(138, 'en', 'common', 'Priority', 'Priority', '2019-08-06 10:09:56'),
(139, 'en', 'sitemap', 'Change frequency', 'Change frequency', '2010-09-11 12:48:56'),
(140, 'en', 'sitemap', 'Sitemap Type', 'Sitemap Type', '2010-09-11 12:49:10'),
(141, 'en', 'sitemap', 'Download sitemap file from', 'Download sitemap file from', '2010-09-11 13:26:47'),
(142, 'en', 'common', 'Found', 'Found', '2019-08-06 10:09:56'),
(143, 'en', 'rank', 'enterurlproceed', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Google and Alexa rank.', '2010-09-14 12:26:31'),
(144, 'en', 'common', 'Url', 'Url', '2019-08-06 10:09:56'),
(145, 'en', 'common', 'Google Pagerank', 'Google Pagerank', '2019-08-06 10:09:56'),
(146, 'en', 'common', 'Alexa Rank', 'Alexa Rank', '2019-08-06 10:09:56'),
(147, 'en', 'rank', 'Google and Alexa Rank Reports', 'Google and Alexa Rank Reports', '2010-09-14 12:32:24'),
(148, 'en', 'rank', 'Saved rank results of', 'Saved rank results of', '2010-09-14 12:44:40'),
(149, 'en', 'backlink', 'clickproceedbacklink', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Backlinks.', '2010-09-14 12:51:24'),
(150, 'en', 'backlink', 'Saved backlink results of', 'Saved backlink results of', '2010-09-14 13:04:29'),
(151, 'en', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick Search Engine Saturation Checker', '2010-09-14 13:07:59'),
(152, 'en', 'saturation', 'clickproceedsaturation', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Search Engine Saturation Results', '2010-09-14 13:09:39'),
(153, 'en', 'saturation', 'Search Engine Saturation Reports', 'Search Engine Saturation Reports', '2010-09-14 13:12:33'),
(154, 'en', 'saturation', 'GenerateSaturationReports', 'Generate Search Engine Saturation Reports', '2010-09-14 13:16:59'),
(155, 'en', 'saturation', 'Saved Search Engine Saturation results of', 'Saved Search Engine Saturation results of', '2010-09-14 13:19:31'),
(156, 'en', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi Automatic Directory Submission Tool', '2010-09-14 13:24:11'),
(157, 'en', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2010-09-14 13:24:25'),
(158, 'en', 'directory', 'selectwebsiteproceed', 'Select a <b>Website</b> to <b>Proceed</b> directory submission.<br>Check <b>Directories with out captcha</b> to submit to directories with out captcha', '2010-09-14 13:26:51'),
(159, 'en', 'directory', 'Please select a website to proceed', 'Please select a website to proceed', '2010-09-14 13:27:39'),
(160, 'en', 'common', 'Crawl Meta Data', 'Crawl Meta Data', '2019-08-06 10:09:56'),
(161, 'en', 'directory', 'Submission Details', 'Submission Details', '2010-09-15 11:54:18'),
(162, 'en', 'directory', 'Owner Name', 'Owner Name', '2010-09-15 11:54:18'),
(163, 'en', 'directory', 'Owner Email', 'Owner Email', '2010-09-15 11:55:08'),
(164, 'en', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary email address.', '2010-09-15 11:55:08'),
(165, 'en', 'directory', 'Website Category', 'Website Category', '2010-09-15 11:58:00'),
(166, 'en', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. Start with Top priority category.', '2010-09-15 11:58:00'),
(167, 'en', 'directory', 'Website Url', 'Website Url', '2010-09-15 11:58:33'),
(168, 'en', 'directory', 'Submit Title', 'Submit Title', '2010-09-15 11:58:33'),
(169, 'en', 'directory', 'Submit Description', 'Submit Description', '2010-09-15 12:01:23'),
(170, 'en', 'directory', 'Submit Keywords', 'Submit Keywords', '2010-09-15 12:01:23'),
(171, 'en', 'directory', 'optionalnote', 'Optional titles and descriptions to submit random title and description to directories for better results.', '2010-09-15 12:02:11'),
(172, 'en', 'directory', 'desnote', 'Some directories require minimum 150 characters for the description field.', '2010-09-15 12:06:57'),
(173, 'en', 'common', 'Category', 'Category', '2019-08-06 10:09:56'),
(174, 'en', 'directory', 'Enter the code shown', 'Enter the code shown', '2010-09-15 12:15:38'),
(175, 'en', 'directory', 'nodirnote', 'No <b>Active</b> directories Found', '2010-09-15 12:17:08'),
(176, 'en', 'directory', 'nocatnote', 'The submission category not found in submission page. Please click on <b>Reload</b> or <b>Skip</b>', '2010-09-15 12:22:50'),
(177, 'en', 'directory', 'nosuccessnote', 'Didn''t get success message, Please check your mail to find the confirm message', '2010-09-15 12:27:40'),
(179, 'en', 'common', 'Directory', 'Directory', '2019-08-06 10:09:56'),
(181, 'en', 'directory', 'Add back to directory list', 'Add back to directory list', '2010-09-15 12:42:58'),
(182, 'en', 'directory', 'Directory Submission Reports', 'Directory Submission Reports', '2010-09-15 12:43:47'),
(183, 'en', 'directory', 'Confirmation', 'Confirmation', '2010-09-15 12:48:25'),
(184, 'en', 'directory', 'Pending', 'Pending', '2010-09-15 12:49:14'),
(185, 'en', 'directory', 'Approved', 'Approved', '2010-09-15 12:49:14'),
(247, 'en', 'proxy', 'Proxy Username', 'Proxy Username', '2010-09-17 12:26:36'),
(187, 'en', 'common', 'No', 'No', '2019-08-06 10:09:56'),
(188, 'en', 'common', 'Yes', 'Yes', '2019-08-06 10:09:56'),
(189, 'en', 'directory', 'Check Directory Submission Status', 'Check Directory Submission Status', '2010-09-15 12:53:21'),
(190, 'en', 'directory', 'selectwebsiteschecksub', 'Select a <b>Website</b> to <b>Proceed</b> check directory submission.', '2010-09-15 12:56:22'),
(191, 'en', 'panel', 'Website Manager', 'Website Manager', '2010-09-15 13:14:20'),
(192, 'en', 'panel', 'User Manager', 'User Manager', '2010-09-15 13:14:20'),
(193, 'en', 'panel', 'Reports Manager', 'Reports Manager', '2010-09-15 13:14:37'),
(194, 'en', 'panel', 'Seo Tools Manager', 'Seo Tools Manager', '2010-09-15 13:14:37'),
(195, 'en', 'panel', 'Seo Plugins Manager', 'Seo Plugins Manager', '2010-09-15 13:14:56'),
(196, 'en', 'panel', 'Directory Manager', 'Directory Manager', '2010-09-15 13:14:56'),
(197, 'en', 'panel', 'Proxy Manager', 'Proxy Manager', '2010-09-15 13:15:14'),
(198, 'en', 'panel', 'System Settings', 'System Settings', '2010-09-15 13:15:14'),
(199, 'en', 'panel', 'My Profile', 'My Profile', '2010-09-15 13:15:25'),
(200, 'en', 'panel', 'New Website', 'New Website', '2010-09-15 13:24:04'),
(201, 'en', 'panel', 'New User', 'New User', '2010-09-15 13:24:04'),
(202, 'en', 'panel', 'Report Generation Manager', 'Report Generation Manager', '2010-09-15 13:25:41'),
(203, 'en', 'panel', 'New Proxy', 'New Proxy', '2010-09-15 13:25:51'),
(204, 'en', 'panel', 'Check Directory', 'Check Directory', '2010-09-15 13:26:31'),
(205, 'en', 'panel', 'Edit My Profile', 'Edit My Profile', '2010-09-15 13:26:53'),
(206, 'de', 'common', 'Select', 'Wählen', '2021-06-15 01:46:19'),
(207, 'en', 'common', 'User', 'User', '2019-08-06 10:09:56'),
(208, 'en', 'button', 'Cancel', 'Cancel', '2010-09-16 10:19:25'),
(209, 'en', 'button', 'Proceed', 'Proceed', '2010-09-16 10:19:25'),
(210, 'en', 'website', 'plscrtwebsite', 'Please create a website before start to using seo tools and seo plugins.', '2010-09-16 10:29:11'),
(211, 'en', 'website', 'yourwebalreday', 'your website if you have already created one.', '2010-09-16 10:34:08'),
(216, 'en', 'website', 'Website already exist', 'Website already exist', '2010-09-16 11:15:40'),
(213, 'en', 'label', 'Title', 'Title', '2010-09-16 10:43:26'),
(214, 'en', 'label', 'Description', 'Description', '2010-09-16 10:43:50'),
(215, 'en', 'label', 'Keywords', 'Keywords', '2010-09-16 10:43:50'),
(217, 'en', 'website', 'Edit Website', 'Edit Website', '2010-09-16 11:18:48'),
(218, 'en', 'user', 'Edit User', 'Edit User', '2010-09-16 11:40:32'),
(219, 'en', 'keyword', 'pleaseselecttool', 'Please select atleast one Seo Tools', '2010-09-16 12:41:49'),
(230, 'en', 'label', 'Upgrade', 'Upgrade', '2010-09-16 13:18:29'),
(229, 'en', 'label', 'Installation', 'Installation', '2010-09-16 13:15:16'),
(227, 'en', 'label', 'Plugin', 'Plugin', '2010-09-16 13:13:44'),
(228, 'en', 'label', 'Author', 'Author', '2010-09-16 13:14:09'),
(225, 'en', 'label', 'Cron', 'Cron', '2010-09-16 13:05:44'),
(226, 'en', 'seotools', 'User Access', 'User Access', '2010-09-16 13:06:49'),
(231, 'en', 'label', 'Re-install', 'Re-install', '2010-09-16 13:18:29'),
(232, 'en', 'plugin', 'Edit Seo Plugin', 'Edit Seo Plugin', '2010-09-16 13:19:06'),
(233, 'en', 'plugin', 'Plugin Name', 'Plugin Name', '2010-09-16 13:20:15'),
(234, 'en', 'plugin', 'Seo Plugin Details', 'Seo Plugin Details', '2010-09-16 13:26:18'),
(235, 'en', 'label', 'Version', 'Version', '2010-09-16 13:26:52'),
(237, 'en', 'directory', 'Captcha', 'Captcha', '2010-09-16 13:36:37'),
(238, 'en', 'button', 'Show Records', 'Show Records', '2010-09-16 13:38:21'),
(239, 'de', 'common', 'Yes', 'Ja', '2021-06-15 01:46:19'),
(240, 'de', 'common', 'No', 'Nein', '2021-06-15 01:46:19'),
(241, 'en', 'directory', 'Check Directory Status', 'Check Directory Status', '2010-09-16 13:51:36'),
(242, 'en', 'directory', 'clicktoproceeddirsts', 'Click on <b>Proceed</b> to Check Directory Status.', '2010-09-16 13:54:05'),
(243, 'en', 'label', 'Proxy', 'Proxy', '2010-09-17 11:51:18'),
(244, 'en', 'label', 'Port', 'Port', '2010-09-17 11:51:18'),
(245, 'en', 'label', 'Authentication', 'Authentication', '2010-09-17 11:51:41'),
(246, 'en', 'button', 'Check Status', 'Check Status', '2010-09-17 11:53:35'),
(248, 'en', 'proxy', 'Proxy Password', 'Proxy Password', '2010-09-17 12:26:36'),
(249, 'en', 'proxy', 'Proxyalreadyexist', 'Proxy already exist!', '2010-09-17 12:30:31'),
(250, 'en', 'proxy', 'Edit Proxy', 'Edit Proxy', '2010-09-17 12:41:24'),
(251, 'en', 'settings', 'SP_TITLE', 'Seo Panel Title', '2018-01-23 00:59:29'),
(252, 'en', 'settings', 'SP_DESCRIPTION', 'Seo Panel Description', '2018-01-23 00:59:29'),
(253, 'en', 'settings', 'SP_KEYWORDS', 'Seo Panel Keywords', '2018-01-23 00:59:29'),
(254, 'en', 'settings', 'SP_PAGINGNO', 'Number of entries per page', '2018-01-23 00:59:29'),
(255, 'en', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider crawl(seconds)', '2018-01-23 00:59:29'),
(256, 'en', 'settings', 'SP_USER_GEN_REPORT', 'Allow user to generate reports', '2018-01-23 00:59:29'),
(257, 'en', 'settings', 'SP_HOTLINKING', 'Image hotlink protection enabled', '2018-01-23 00:59:29'),
(258, 'en', 'settings', 'SP_USER_REGISTRATION', 'User registration interface', '2018-01-23 00:59:29'),
(259, 'en', 'settings', 'SP_ENABLE_PROXY', 'Enable Proxy', '2018-01-23 00:59:29'),
(260, 'en', 'settings', 'syssettingssaved', 'System settings saved successfully!', '2018-01-23 00:59:29'),
(261, 'en', 'user', 'Saved My Profile Details', 'Saved My Profile Details', '2010-09-17 13:36:33'),
(262, 'en', 'button', 'Show Details', 'Show Details', '2010-09-17 14:22:10'),
(263, 'en', 'button', 'Skip', 'Skip', '2010-09-17 14:25:35'),
(264, 'en', 'button', 'Submit', 'Submit', '2010-09-17 14:25:35'),
(265, 'en', 'button', 'Reload', 'Reload', '2010-09-17 14:25:50'),
(266, 'en', 'label', 'wantproceed', 'Do you really want to proceed?', '2010-09-18 10:53:29'),
(267, 'de', 'label', 'wantproceed', 'Wollen Sie wirklich fortfahren?', '2021-01-06 15:13:08'),
(268, 'en', 'label', 'translation by', 'translation by', '2010-09-18 11:29:51'),
(269, 'en', 'label', 'Download', 'Download', '2010-09-18 11:36:36'),
(270, 'en', 'label', 'noactiveplugins', 'No Active Seo Plugins Found!', '2010-09-18 13:52:57'),
(271, 'de', 'backlink', 'clickproceedbacklink', '<b>Pro Zeile</b> eine URL angeben. Auf <b>Starten</b> klicken um Backlinks zu prüfen.', '2021-06-15 01:47:48'),
(272, 'de', 'backlink', 'Saved backlink results of', 'Backlink-Ergebnisse gespeichert ', '2021-06-15 01:47:48'),
(273, 'es', 'backlink', 'clickproceedbacklink', 'Introduzca las URL, <b>una por línea</b>. Haga clic en <b>Continuar</b> para comprobar los backlinks.', '2012-05-31 14:35:06'),
(274, 'es', 'backlink', 'Saved backlink results of', 'Se han guardado los resultados de ', '2012-05-31 14:35:06'),
(275, 'fr', 'backlink', 'clickproceedbacklink', 'Indiquer <b>une URL par ligne</b>. Cliquer sur <b>Valider</b> pour vérifier les liens entrants.', '2010-09-27 14:14:29'),
(276, 'fr', 'backlink', 'Saved backlink results of', 'Résultats enregistrés des liens entrants de ', '2010-09-27 14:14:29'),
(277, 'fr', 'website', 'Edit Website', 'Editer le site web', '2019-03-28 18:44:58'),
(278, 'fr', 'website', 'plscrtwebsite', 'Merci de créer un site web avant d''utiliser les outils et plugins seo.', '2019-03-28 18:44:58'),
(279, 'fr', 'website', 'Website already exist', 'Le site web existe déjà.', '2019-03-28 18:44:58'),
(280, 'fr', 'website', 'yourwebalreday', 'votre site web si vous en avez déjà créé un.', '2019-03-28 18:44:58'),
(281, 'es', 'button', 'Cancel', 'Cancelar', '2014-01-09 00:34:14'),
(282, 'es', 'button', 'Check Status', 'Comprobar estado', '2014-01-09 00:34:14'),
(283, 'es', 'button', 'Proceed', 'Proceder', '2014-01-09 00:34:14'),
(284, 'es', 'button', 'Reload', 'Reintentar', '2014-01-09 00:34:14'),
(285, 'es', 'button', 'Show Details', 'Mostrar detalles', '2014-01-09 00:34:14'),
(286, 'es', 'button', 'Show Records', 'Mostrar registros', '2014-01-09 00:34:14'),
(287, 'es', 'button', 'Skip', 'Omitir', '2014-01-09 00:34:14'),
(288, 'es', 'button', 'Submit', 'Enviar', '2014-01-09 00:34:14'),
(289, 'es', 'common', 'Action', 'Acción', '2019-05-25 22:49:48'),
(290, 'es', 'common', 'Activate', 'Activar', '2019-05-25 22:49:48'),
(291, 'es', 'common', 'Active', 'Activo', '2019-05-25 22:49:48'),
(292, 'es', 'common', 'Admin Panel', 'Panel de administración', '2019-05-25 22:49:48'),
(293, 'es', 'common', 'Alexa Rank', 'Rango Alexa', '2019-05-25 22:49:48'),
(294, 'es', 'common', 'All', 'Todos', '2019-05-25 22:49:48'),
(295, 'es', 'common', 'Category', 'Categoría', '2019-05-25 22:49:48'),
(296, 'es', 'common', 'contact', 'Contacto', '2019-05-25 22:49:48'),
(297, 'es', 'common', 'copyright', 'Derechos de autor © [year] www.seopanel.in Reservados todos los derechos', '2019-05-25 22:49:48'),
(298, 'es', 'common', 'Country', 'País', '2019-05-25 22:49:48'),
(299, 'es', 'common', 'Crawl Meta Data', 'Rastrear Meta Etiquetas', '2019-05-25 22:49:48'),
(300, 'es', 'common', 'Date', 'Fecha', '2019-05-25 22:49:48'),
(301, 'es', 'common', 'Delete', 'Borrar', '2019-05-25 22:49:48'),
(302, 'es', 'common', 'Details', 'Detalles', '2019-05-25 22:49:48'),
(303, 'es', 'common', 'Directory', 'Directorio', '2019-05-25 22:49:48'),
(304, 'es', 'common', 'Donate', 'Donar', '2019-05-25 22:49:48'),
(305, 'es', 'common', 'Edit', 'Editar', '2019-05-25 22:49:48'),
(306, 'es', 'common', 'Entry cannot be blank', 'La entrada no puede estar en blanco', '2019-05-25 22:49:48'),
(307, 'es', 'common', 'entrynotvalid', 'La entrada realizada parece no ser válida.', '2019-05-25 22:49:48'),
(308, 'es', 'common', 'failed', 'ha fallado', '2019-05-25 22:49:48'),
(309, 'es', 'common', 'forum', 'Foro', '2019-05-25 22:49:48'),
(310, 'es', 'common', 'Found', 'Encontrado', '2019-05-25 22:49:48'),
(311, 'es', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:49:48'),
(312, 'es', 'common', 'help', 'Ayuda', '2019-05-25 22:49:48'),
(313, 'es', 'common', 'hidenews', 'Ocultar las noticias del panel Seo.', '2019-05-25 22:49:48'),
(314, 'es', 'common', 'Id', 'Id', '2019-05-25 22:49:48'),
(315, 'es', 'common', 'Inactivate', 'Desactivar', '2019-05-25 22:49:48'),
(316, 'es', 'common', 'Inactive', 'Inactivo', '2019-05-25 22:49:48'),
(317, 'es', 'common', 'Invalid characters', 'Caracteres no válidos', '2019-05-25 22:49:48'),
(318, 'es', 'common', 'Invalid code entered', 'el código es incorrecto', '2019-05-25 22:49:48'),
(319, 'es', 'common', 'Invalid email address entered', 'Entró una dirección de correo electrónico inválida', '2019-05-25 22:49:48'),
(320, 'es', 'common', 'Invalid value', 'Valor no válido', '2019-05-25 22:49:48'),
(321, 'es', 'common', 'Keyword', 'Palabra clave', '2019-05-25 22:49:48'),
(322, 'es', 'common', 'lang', 'Idioma', '2019-05-25 22:49:48'),
(323, 'es', 'common', 'My Account', 'Mi Cuenta', '2019-05-25 22:49:48'),
(324, 'es', 'common', 'Name', 'Nombre', '2019-05-25 22:49:48'),
(325, 'es', 'common', 'No', 'No', '2019-05-25 22:49:48'),
(326, 'es', 'common', 'No Keywords Found', 'No hay palabras clave encontradas', '2019-05-25 22:49:48'),
(327, 'es', 'common', 'No Records Found', 'No se encontraron registros', '2019-05-25 22:49:48'),
(328, 'es', 'common', 'noactivetools', 'No se encontraron Herramientas Seo activas.', '2019-05-25 22:49:48'),
(329, 'es', 'common', 'nowebsites', 'No se encontraron páginas web', '2019-05-25 22:49:48'),
(330, 'es', 'common', 'password632', 'La contraseña debe tener una longitud de entre 6 y 32', '2019-05-25 22:49:48'),
(331, 'es', 'common', 'passwordnotmatch', 'Las contraseñas no coinciden', '2019-05-25 22:49:48'),
(332, 'es', 'common', 'Period', 'Periodo', '2019-05-25 22:49:48'),
(333, 'es', 'common', 'Priority', 'Prioridad', '2019-05-25 22:49:48'),
(334, 'es', 'common', 'Rank', 'Rango', '2019-05-25 22:49:48'),
(335, 'es', 'common', 'Reports', 'Informes', '2019-05-25 22:49:48'),
(336, 'es', 'common', 'Results', 'Resultados', '2019-05-25 22:49:48'),
(337, 'es', 'common', 'Search Engine', 'Motor de búsqueda', '2019-05-25 22:49:48'),
(338, 'es', 'common', 'Select', 'Seleccionar', '2019-05-25 22:49:48'),
(339, 'es', 'common', 'Seo Plugins', 'Plugins Seo', '2019-05-25 22:49:48'),
(340, 'es', 'common', 'Seo Tools', 'Herramientas Seo', '2019-05-25 22:49:48'),
(341, 'es', 'common', 'Sign out', 'Salir', '2019-05-25 22:49:48'),
(342, 'es', 'common', 'Sign Up', 'Regístrate', '2019-05-25 22:49:48'),
(343, 'es', 'common', 'signin', 'Registrarse', '2019-05-25 22:49:48'),
(344, 'es', 'common', 'Status', 'Estado', '2019-05-25 22:49:48'),
(345, 'es', 'common', 'Support', 'Apoyo', '2019-05-25 22:49:48'),
(346, 'es', 'common', 'Total', 'Total', '2019-05-25 22:49:48'),
(347, 'es', 'common', 'Url', 'Url', '2019-05-25 22:49:48'),
(348, 'es', 'common', 'User', 'Usuario', '2019-05-25 22:49:48'),
(349, 'es', 'common', 'User Panel', 'Panel de usuario', '2019-05-25 22:49:48'),
(350, 'es', 'common', 'Website', 'Página web', '2019-05-25 22:49:48'),
(351, 'es', 'common', 'Yes', 'Sí', '2019-05-25 22:49:48'),
(352, 'es', 'directory', 'Add back to directory list', 'Añadir de nuevo a la lista de directorios', '2012-05-31 14:35:43'),
(353, 'es', 'directory', 'Approved', 'Aprobado', '2012-05-31 14:35:43'),
(354, 'es', 'directory', 'Captcha', 'Código anti-Spam', '2012-05-31 14:35:43'),
(355, 'es', 'directory', 'categorynote', 'Categorías, separadas con comas según la prioridad. Comience con categoría de máxima prioridad.', '2012-05-31 14:35:43'),
(356, 'es', 'directory', 'Check Directory Status', 'Comprobar el estado del directorio', '2012-05-31 14:35:43'),
(357, 'es', 'directory', 'Check Directory Submission Status', 'Comprobar el estado de las páginas enviadas a los directorios', '2012-05-31 14:35:43'),
(358, 'es', 'directory', 'clicktoproceeddirsts', 'Hacer clic en <b>Proceder</b> para comprobar el estado del directorio.', '2012-05-31 14:35:43'),
(359, 'es', 'directory', 'Confirmation', 'Confirmación', '2012-05-31 14:35:43'),
(360, 'es', 'directory', 'desnote', 'Algunos directorios requieren como mínimo 150 caracteres para el campo de descripción.', '2012-05-31 14:35:43'),
(361, 'es', 'directory', 'Directories with out captcha', 'Directorios sin captcha o Anti-spam', '2012-05-31 14:35:43'),
(362, 'es', 'directory', 'Directory Submission Reports', 'Informe de los envios a directorios.', '2012-05-31 14:35:43'),
(363, 'es', 'directory', 'Enter the code shown', 'Introduzca el código que se muestra', '2012-05-31 14:35:43'),
(364, 'es', 'directory', 'nocatnote', 'La categoría que configuró no se encuentra en el directorio de destino. Por favor, haga clic en <b>Recargar</b> o <b>Omitir</b>', '2012-05-31 14:35:43'),
(365, 'es', 'directory', 'nodirnote', 'Ningún directorio <b>Activo</b> fue encontrado', '2012-05-31 14:35:43'),
(366, 'es', 'directory', 'nosuccessnote', '¿No hemos recibido confirmación de que su envío haya sido exitoso, por favor revise su correo para encontrar el mensaje de confirmación.', '2012-05-31 14:35:43'),
(367, 'es', 'directory', 'optionalnote', 'Títulos opcionales y descripciones a presentar.Use diferentes títulos y descripciones que nosotros enviaremos al azar para mejorar los resultados.', '2012-05-31 14:35:43'),
(368, 'es', 'directory', 'Owner Email', 'Correo electrónico del propietario', '2012-05-31 14:35:43'),
(369, 'es', 'directory', 'Owner Name', 'Nombre del propietario', '2012-05-31 14:35:43'),
(370, 'es', 'directory', 'Pending', 'Pendiente', '2012-05-31 14:35:43'),
(371, 'es', 'directory', 'Please select a website to proceed', 'Por favor, seleccione una página web para proceder', '2012-05-31 14:35:43'),
(372, 'es', 'directory', 'selectwebsiteproceed', 'Seleccione una <b>Página web</b> para <b>Proceder</b> a el envio del directorio.<br>Seleccione los <b>Directorios sin\r\ncaptcha</b> para enviar solo a directorios sin captcha o anti-spam', '2012-05-31 14:35:43'),
(373, 'es', 'directory', 'selectwebsiteschecksub', 'Seleccione una <b>página web</b> para <b>Proceder</b> Comprobar el envio al directorio.', '2012-05-31 14:35:43'),
(374, 'es', 'directory', 'Semi Automatic Directory Submission Tool', 'Herramienta semiautomática de envío a los directorios.', '2012-05-31 14:35:43'),
(375, 'es', 'directory', 'spamemailnote', 'Algunos directorios le pueden enviar spam, no recomendamos el uso de su dirección de correo electrónico principal.', '2012-05-31 14:35:43'),
(376, 'es', 'directory', 'Submission Details', 'Envio de los detalles', '2012-05-31 14:35:43'),
(377, 'es', 'directory', 'Submit Description', 'Enviar descripción', '2012-05-31 14:35:43'),
(378, 'es', 'directory', 'Submit Keywords', 'Enviar palabras clave', '2012-05-31 14:35:43'),
(379, 'es', 'directory', 'Submit Title', 'Enviar el título', '2012-05-31 14:35:43'),
(380, 'es', 'directory', 'Website Category', 'Categoría del sitio web', '2012-05-31 14:35:43'),
(381, 'es', 'directory', 'Website Url', 'URL del sitio web', '2012-05-31 14:35:43'),
(382, 'fr', 'user', 'Edit User', 'Editer le profil', '2016-01-02 23:14:56'),
(383, 'fr', 'user', 'Saved My Profile Details', 'Votre profil a été sauvegardé.', '2016-01-02 23:14:56'),
(384, 'fr', 'sitemap', 'Change frequency', 'Modifier la fréquence', '2019-03-28 18:40:01'),
(385, 'fr', 'sitemap', 'clickproceedsitemap', 'Cliquer sur <b>Valider</b> pour créer le fichier sitemap', '2019-03-28 18:40:01'),
(386, 'fr', 'sitemap', 'Download sitemap file from', 'Télécharger le fichier sitemap depuis', '2019-03-28 18:40:01'),
(387, 'fr', 'sitemap', 'Exclude Url', 'URL à exclure', '2019-03-28 18:40:01'),
(388, 'fr', 'sitemap', 'processtaketime', 'Le temps de traitement dépends du nombre de liens sur votre site. Merci de patienter pendant la génération du sitemap.', '2019-03-28 18:40:01'),
(389, 'fr', 'sitemap', 'Sitemap Type', 'Type de sitemap', '2019-03-28 18:40:01'),
(390, 'fr', 'login', 'Confirm Password', 'Confirmer le mot de passe', '2019-03-28 16:14:28'),
(391, 'fr', 'login', 'Create my account', 'Créer mon compte', '2019-03-28 16:14:28'),
(392, 'fr', 'login', 'Create New Account', 'Créer un nouveau compte', '2019-03-28 16:14:28'),
(393, 'fr', 'login', 'Email', 'Email', '2019-03-28 16:14:28'),
(394, 'fr', 'login', 'emailexist', 'L''adresse mail existe déjà !', '2019-03-28 16:14:28'),
(395, 'fr', 'login', 'Enter the code as it is shown', 'Veuillez saisir le code qui apparait', '2019-03-28 16:14:28'),
(396, 'fr', 'login', 'First Name', 'Prénom', '2019-03-28 16:14:28'),
(397, 'fr', 'login', 'Last Name', 'Nom', '2019-03-28 16:14:28'),
(398, 'fr', 'login', 'Login', 'Identifiant', '2019-03-28 16:14:28'),
(399, 'fr', 'login', 'Login incorrect', 'Identifiant incorrect', '2019-03-28 16:14:28'),
(400, 'fr', 'login', 'newaccountsuccess', 'Le nouveau compte a bien été créé !', '2019-03-28 16:14:28'),
(401, 'fr', 'login', 'Password', 'Mot de passe', '2019-03-28 16:14:28'),
(402, 'fr', 'login', 'Password incorrect', 'Mot de passe incorrect', '2019-03-28 16:14:28'),
(403, 'fr', 'login', 'Register', 'S''enregistrer', '2019-03-28 16:14:28'),
(404, 'fr', 'login', 'Sign in to your account', 'Connectez-vous', '2019-03-28 16:14:28'),
(405, 'fr', 'login', 'User inactive', 'Utilisateur inactif', '2019-03-28 16:14:28'),
(406, 'fr', 'login', 'Username', 'Nom d''utilisateur', '2019-03-28 16:14:28'),
(407, 'fr', 'login', 'usernameexist', 'Le nom d''utilisateur existe déjà !', '2019-03-28 16:14:28'),
(408, 'fr', 'label', 'Authentication', 'Authentification', '2020-02-14 16:12:40'),
(409, 'fr', 'label', 'Author', 'Auteur', '2020-02-14 16:12:40'),
(410, 'fr', 'label', 'Cron', 'CRON', '2020-02-14 16:12:40'),
(411, 'fr', 'label', 'Description', 'Description', '2020-02-14 16:12:40'),
(412, 'fr', 'label', 'Download', 'Téléchargement', '2020-02-14 16:12:40'),
(413, 'fr', 'label', 'Installation', 'Installation', '2020-02-14 16:12:40'),
(414, 'fr', 'label', 'Keywords', 'Mots clés', '2020-02-14 16:12:40'),
(415, 'fr', 'label', 'noactiveplugins', 'Aucun plugin SEO actif !', '2020-02-14 16:12:40'),
(416, 'fr', 'label', 'Plugin', 'Plugin', '2020-02-14 16:12:40'),
(417, 'fr', 'label', 'Port', 'Port', '2020-02-14 16:12:40'),
(418, 'fr', 'label', 'Proxy', 'Proxy', '2020-02-14 16:12:40'),
(419, 'fr', 'label', 'Re-install', 'Réinstaller', '2020-02-14 16:12:40'),
(420, 'fr', 'label', 'Title', 'Titre', '2020-02-14 16:12:40'),
(421, 'fr', 'label', 'translation by', 'Traduit par', '2020-02-14 16:12:40'),
(422, 'fr', 'label', 'Upgrade', 'Mise à jour', '2020-02-14 16:12:40'),
(423, 'fr', 'label', 'Version', 'Version', '2020-02-14 16:12:40'),
(424, 'fr', 'label', 'wantproceed', 'Voulez-vous vraiment poursuivre ?', '2020-02-14 16:12:40'),
(425, 'fr', 'button', 'Cancel', 'Annuler', '2018-01-23 03:34:22'),
(426, 'fr', 'button', 'Check Status', 'Vérifier', '2018-01-23 03:34:22'),
(427, 'fr', 'button', 'Proceed', 'Valider', '2018-01-23 03:34:22'),
(428, 'fr', 'button', 'Reload', 'Recharger', '2018-01-23 03:34:22'),
(429, 'fr', 'button', 'Show Details', 'Afficher les détails', '2018-01-23 03:34:22'),
(430, 'fr', 'button', 'Show Records', 'Afficher les enregistrements', '2018-01-23 03:34:22'),
(431, 'fr', 'button', 'Skip', 'Passer', '2018-01-23 03:34:22'),
(432, 'fr', 'button', 'Submit', 'Valider', '2018-01-23 03:34:22'),
(433, 'es', 'keyword', 'Crawling keyword', 'Rastreo de palabras clave', '2011-07-07 14:24:15'),
(434, 'es', 'keyword', 'Detailed Keyword Position Reports', 'Informes detallados de posición de palabras clave', '2011-07-07 14:24:15'),
(435, 'es', 'keyword', 'Edit Keyword', 'Editar palabra clave', '2011-07-07 14:24:15'),
(436, 'es', 'keyword', 'Graphical Keyword Position Reports', 'Informe gráfico de la posición de palabras clave', '2011-07-07 14:24:15'),
(437, 'es', 'keyword', 'Keyword already exist', 'Palabra clave ya existe', '2011-07-07 14:24:15'),
(438, 'es', 'keyword', 'Keyword Position Report', 'Informe de posición palabra clave', '2011-07-07 14:24:15'),
(439, 'es', 'keyword', 'New Keyword', 'Nueva palabra clave.', '2011-07-07 14:24:15'),
(440, 'es', 'keyword', 'not assigned to required search engines', 'no asignados a los motores de búsqueda', '2011-07-07 14:24:15'),
(441, 'es', 'keyword', 'pleaseselecttool', 'Por favor, seleccione al menos una herramienta seo.', '2011-07-07 14:24:15'),
(442, 'es', 'keyword', 'Quick Keyword Position Checker', 'Comprobador rápido de posición.', '2011-07-07 14:24:15'),
(443, 'es', 'keyword', 'results from ', 'los resultados de', '2011-07-07 14:24:15'),
(444, 'es', 'keyword', 'Show All results', 'Mostrar todos los resultados', '2011-07-07 14:24:15'),
(445, 'es', 'keyword', 'Successfully crawled keyword', 'Palabra clave rastreada correctamente', '2011-07-07 14:24:15'),
(446, 'es', 'label', 'Authentication', 'Autenticación', '2012-05-12 14:54:10'),
(447, 'es', 'label', 'Author', 'Autor', '2012-05-12 14:54:10'),
(448, 'es', 'label', 'Cron', 'Cron', '2012-05-12 14:54:10'),
(449, 'es', 'label', 'Description', 'Descripción', '2012-05-12 14:54:10'),
(450, 'es', 'label', 'Download', 'Descargar', '2012-05-12 14:54:10'),
(451, 'es', 'label', 'Installation', 'Instalación', '2012-05-12 14:54:10'),
(452, 'es', 'label', 'Keywords', 'Palabras claves', '2012-05-12 14:54:10'),
(453, 'es', 'label', 'noactiveplugins', 'No se encuentra ningún plugin activo.', '2012-05-12 14:54:10'),
(454, 'es', 'label', 'Plugin', 'Plugin', '2012-05-12 14:54:10'),
(455, 'es', 'label', 'Port', 'Port', '2012-05-12 14:54:10'),
(456, 'es', 'label', 'Proxy', 'Proxy', '2012-05-12 14:54:10'),
(457, 'es', 'label', 'Re-install', 'Vuelva a instalar', '2012-05-12 14:54:10'),
(458, 'es', 'label', 'Title', 'Título', '2012-05-12 14:54:10'),
(459, 'es', 'label', 'translation by', 'traducción realizada por', '2012-05-12 14:54:10'),
(460, 'es', 'label', 'Upgrade', 'Mejorar', '2012-05-12 14:54:10'),
(461, 'es', 'label', 'Version', 'Versión', '2012-05-12 14:54:10'),
(462, 'es', 'label', 'wantproceed', '¿Realmente deseas continuar?', '2012-05-12 14:54:10'),
(463, 'es', 'website', 'Edit Website', 'Editar página web', '2012-05-31 14:35:22'),
(464, 'es', 'website', 'plscrtwebsite', 'Por favor, cree un sitio web antes de comenzar a usar las herramientas y los plugins seo.', '2012-05-31 14:35:22'),
(465, 'es', 'website', 'Website already exist', 'Esta página web ya existe', '2012-05-31 14:35:22'),
(466, 'es', 'website', 'yourwebalreday', 'su sitio web si ya ha creado una.', '2012-05-31 14:35:22'),
(467, 'es', 'user', 'Edit User', 'Editar usuario', '2011-03-12 16:37:16'),
(468, 'es', 'user', 'Saved My Profile Details', 'Guardados los datos de mi perfil', '2011-03-12 16:37:16'),
(469, 'es', 'sitemap', 'Change frequency', 'Cambiar frecuencia', '2011-03-12 16:23:32'),
(470, 'es', 'sitemap', 'clickproceedsitemap', 'Haga clic en <b> Continuar </b> para crear el archivo sitemap', '2011-03-12 16:23:32'),
(471, 'es', 'sitemap', 'Download sitemap file from', 'Descargar archivo sitemap desde', '2011-03-12 16:23:32'),
(472, 'es', 'sitemap', 'Exclude Url', 'Excluir Url', '2011-03-12 16:23:32'),
(473, 'es', 'sitemap', 'processtaketime', 'Este proceso llevará su tiempo según el número de enlaces en su sitio. Por favor, espere el tiempo suficiente para conseguir e archivo sitemap', '2011-03-12 16:23:32'),
(474, 'es', 'sitemap', 'Sitemap Type', 'Mapa del sitio Tipo', '2011-03-12 16:23:32'),
(475, 'es', 'saturation', 'clickproceedsaturation', 'Escriba las URL <b> Una por línea </b>. Haga clic en <b> Continuar </b> para comprobar los resultados de motores de búsqueda Saturación', '2011-03-12 16:06:48'),
(476, 'es', 'saturation', 'GenerateSaturationReports', 'Generar informes de saturación del buscador.', '2011-03-12 16:06:48'),
(477, 'es', 'saturation', 'Quick Search Engine Saturation Checker', 'Comprobador rápido del indice de saturación', '2011-03-12 16:06:48'),
(478, 'es', 'saturation', 'Saved Search Engine Saturation results of', 'Guardados indices de saturación de los buscadores de', '2011-03-12 16:06:48'),
(479, 'es', 'saturation', 'Search Engine Saturation Reports', 'Informes de saturación de los buscadores', '2011-03-12 16:06:48'),
(480, 'es', 'rank', 'enterurlproceed', 'Escriba la URL <b> Una por línea </b>. Haga clic en <b> Continuar o Proceder </b> para comprobar el ranking de Google y Alexa.', '2011-03-12 16:03:38'),
(481, 'es', 'rank', 'Google and Alexa Rank Reports', 'Informe de los rankings de Google y Alexa.', '2011-03-12 16:03:38'),
(482, 'es', 'rank', 'Saved rank results of', 'Resultados guardados de', '2011-03-12 16:03:38'),
(483, 'es', 'plugin', 'Edit Seo Plugin', 'Editar Plugin Seo', '2012-05-12 14:55:24'),
(484, 'es', 'plugin', 'Plugin Name', 'Nombre del Plugin', '2012-05-12 14:55:24'),
(485, 'es', 'plugin', 'Seo Plugin Details', 'Detalles del Plugin Seo ', '2012-05-12 14:55:24'),
(486, 'es', 'home', 'Account Summary', 'Resumen de la cuenta', '2012-05-31 14:36:10'),
(487, 'es', 'home', 'Backlinks', 'Backlinks', '2012-05-31 14:36:10'),
(488, 'es', 'home', 'Directory Submission', 'Envío a directorios', '2012-05-31 14:36:10'),
(4672, 'cs', 'website', 'Edit Website', 'Upravit website', '2011-03-21 18:13:51'),
(4673, 'cs', 'website', 'plscrtwebsite', 'Prosím před tím, než začnete používat seo tools a seo plugins, vytvořte website', '2011-03-21 18:13:51'),
(4674, 'cs', 'website', 'Website already exist', 'Website již existuje', '2011-03-21 18:13:51'),
(4675, 'cs', 'website', 'yourwebalreday', 'vaše website, pokud byla již vytvořena.', '2011-03-21 18:13:51'),
(39025, 'fi', 'review', 'No review data available', 'Arvostelujen tietoja ei ole saatavilla. <a href="seo-tools.php?menu_sec=review-manager">Lisää arvostelulinkkejä</a> aloittaaksesi arvostelujesi ja arviointisi seurannan.', '2026-01-19 22:58:50'),
(39026, 'fr', 'review', 'No review data available', 'Aucune donnée d''avis disponible. <a href="seo-tools.php?menu_sec=review-manager">Ajoutez des liens d''avis</a> pour commencer à suivre vos avis et vos notes.', '2026-01-19 22:58:50'),
(39027, 'he', 'review', 'No review data available', 'אין נתונים זמינים של ביקורות. <a href="seo-tools.php?menu_sec=review-manager">הוסף קישורי ביקורת</a> כדי להתחיל לעקוב אחר הביקורות והדירוגים שלך.', '2026-01-19 22:58:50');
INSERT INTO `texts` VALUES
(39028, 'hi', 'review', 'No review data available', 'कोई समीक्षा डेटा उपलब्ध नहीं है। अपनी समीक्षाओं और रेटिंग को ट्रैक करना शुरू करने के लिए <a href="seo-tools.php?menu_sec=review-manager">समीक्षा लिंक जोड़ें</a>।', '2026-01-19 22:58:50'),
(492, 'es', 'home', 'Pages Indexed', 'Páginas indexadas', '2012-05-31 14:36:11'),
(493, 'es', 'home', 'Ranks', 'Rankings', '2012-05-31 14:36:11'),
(494, 'es', 'home', 'SiteNameUrl', 'Nombre del sitio / URL', '2012-05-31 14:36:11'),
(495, 'es', 'home', 'Website Statistics', 'Estadísticas del Sitio', '2012-05-31 14:36:11'),
(496, 'es', 'panel', 'Check Directory', 'Compruebe Directorio', '2012-05-12 14:55:03'),
(497, 'es', 'panel', 'Directory Manager', 'Administrador de directorios', '2012-05-12 14:55:03'),
(498, 'es', 'panel', 'Edit My Profile', 'Modificar mi perfil', '2012-05-12 14:55:03'),
(499, 'es', 'panel', 'My Profile', 'Mi Perfil', '2012-05-12 14:55:03'),
(500, 'es', 'panel', 'New Proxy', 'Nuevo Proxy', '2012-05-12 14:55:03'),
(501, 'es', 'panel', 'New User', 'Nuevo Usuario', '2012-05-12 14:55:03'),
(502, 'es', 'panel', 'New Website', 'Nuevo Sitio Web', '2012-05-12 14:55:03'),
(503, 'es', 'panel', 'Proxy Manager', 'Administrar Proxy', '2012-05-12 14:55:03'),
(504, 'es', 'panel', 'Report Generation Manager', 'Administrador de la generación de informes ', '2012-05-12 14:55:03'),
(505, 'es', 'panel', 'Reports Manager', 'Administrador de informes', '2012-05-12 14:55:03'),
(506, 'es', 'panel', 'Seo Plugins Manager', 'Administrador de plugins Seo', '2012-05-12 14:55:03'),
(507, 'es', 'panel', 'Seo Tools Manager', 'Administración de herramientas Seo', '2012-05-12 14:55:03'),
(508, 'es', 'panel', 'System Settings', 'Configuración del sistema', '2012-05-12 14:55:03'),
(509, 'es', 'panel', 'User Manager', 'Administrador de usuarios', '2012-05-12 14:55:03'),
(510, 'es', 'panel', 'Website Manager', 'Administrador de sitio web', '2012-05-12 14:55:03'),
(511, 'es', 'proxy', 'Edit Proxy', 'Editar Proxy', '2011-03-12 16:00:44'),
(512, 'es', 'proxy', 'Proxy Password', 'Contraseña proxy', '2011-03-12 16:00:44'),
(513, 'es', 'proxy', 'Proxy Username', 'Nombre de usuario proxy', '2011-03-12 16:00:44'),
(514, 'es', 'proxy', 'Proxyalreadyexist', 'Proxy ya existe!', '2011-03-12 16:00:44'),
(515, 'es', 'seotools', 'Automatic Submission', 'Envío automático', '2011-07-13 23:32:41'),
(516, 'es', 'seotools', 'backlink-checker', 'Verificador de backlinks', '2011-07-13 23:32:41'),
(517, 'es', 'seotools', 'Backlinks Reports', 'Informes de backlinks', '2011-07-13 23:32:41'),
(518, 'es', 'seotools', 'Check Submission Status', 'Comprobar el estado de los envios', '2011-07-13 23:32:41'),
(519, 'es', 'seotools', 'clickgeneratereports', 'Haga clic en <b> Continuar </b> para generar informes', '2011-07-13 23:32:41'),
(520, 'es', 'seotools', 'Detailed Position Reports', 'Informes detallados de posición', '2011-07-13 23:32:41'),
(521, 'es', 'seotools', 'directory-submission', 'Directorio sumisión ', '2011-07-13 23:32:41'),
(522, 'es', 'seotools', 'Featured Submission', 'Directorio destacado', '2011-07-13 23:32:41'),
(523, 'es', 'seotools', 'Generate Backlinks Reports', 'Generar Informes de los backlinks', '2011-07-13 23:32:41'),
(524, 'es', 'seotools', 'Generate Keyword Reports', 'Generar informes de palabras clave', '2011-07-13 23:32:41'),
(525, 'es', 'seotools', 'Generate Rank Reports', 'Generar informes de los rankings', '2011-07-13 23:32:41'),
(526, 'es', 'seotools', 'Generate Saturation Reports', 'Generar informes de saturación', '2011-07-13 23:32:41'),
(527, 'es', 'seotools', 'Google Sitemap Generator', 'Generador de Google Sitemap', '2011-07-13 23:32:41'),
(528, 'es', 'seotools', 'Graphical Position Reports', 'Informe de posición gráfico', '2011-07-13 23:32:41'),
(529, 'es', 'seotools', 'Keyword Position Summary', 'Resumen de posición para palabra clave', '2011-07-13 23:32:41'),
(530, 'es', 'seotools', 'keyword-position-checker', 'Verificador de posición palabra clave.', '2011-07-13 23:32:41'),
(531, 'es', 'seotools', 'Keywords Manager', 'Administrador de palabras clave.', '2011-07-13 23:32:41'),
(532, 'es', 'seotools', 'Quick Backlinks Checker', 'Verificador rápido de backlinks', '2011-07-13 23:32:41'),
(533, 'es', 'seotools', 'Quick Position Checker', 'Verificador rápida de posición', '2011-07-13 23:32:41'),
(534, 'es', 'seotools', 'Quick Rank Checker', 'Verificador rápido rankings', '2011-07-13 23:32:41'),
(535, 'es', 'seotools', 'Quick Saturation Checker', 'Verificador rápida de saturación', '2011-07-13 23:32:41'),
(536, 'es', 'seotools', 'Rank Reports', 'Informes Rankings', '2011-07-13 23:32:41'),
(537, 'es', 'seotools', 'rank-checker', 'Verificador Ranking', '2011-07-13 23:32:41'),
(538, 'es', 'seotools', 'Saturation Reports', 'Informes de saturación', '2011-07-13 23:32:41'),
(539, 'es', 'seotools', 'saturation-checker', 'Saturación del motor de búsqueda', '2011-07-13 23:32:41'),
(540, 'es', 'seotools', 'sitemap-generator', 'Generador de sitemap', '2011-07-13 23:32:41'),
(541, 'es', 'seotools', 'Skipped Directories', 'Directorios omitidos', '2011-07-13 23:32:41'),
(542, 'es', 'seotools', 'Submission Reports', 'Informes de los envíos', '2011-07-13 23:32:41'),
(543, 'es', 'seotools', 'User Access', 'Acceso de usuario', '2011-07-13 23:32:41'),
(544, 'es', 'settings', 'SP_CRAWL_DELAY', 'Tiempo de retardo entre cada rastreo de la araña (segundos)', '2012-05-12 15:03:05'),
(545, 'es', 'settings', 'SP_DESCRIPTION', 'Seo Panel Descripción', '2012-05-12 15:03:05'),
(546, 'es', 'settings', 'SP_ENABLE_PROXY', 'Activar Proxy', '2012-05-12 15:03:05'),
(547, 'es', 'settings', 'SP_HOTLINKING', 'Protección de imágenes hotlink activado', '2012-05-12 15:03:05'),
(548, 'es', 'settings', 'SP_KEYWORDS', 'Palabras claves Seo Panel', '2012-05-12 15:03:05'),
(549, 'es', 'settings', 'SP_PAGINGNO', 'Número de entradas por página', '2012-05-12 15:03:05'),
(550, 'es', 'settings', 'SP_TITLE', 'Título Seo Panel', '2012-05-12 15:03:05'),
(551, 'es', 'settings', 'SP_USER_GEN_REPORT', 'Permite a los usuarios generar informes', '2012-05-12 15:03:05'),
(552, 'es', 'settings', 'SP_USER_REGISTRATION', 'Interfaz de usuario para el registro', '2012-05-12 15:03:05'),
(553, 'es', 'settings', 'syssettingssaved', 'La configuración del sistema se han guardado correctamente!', '2012-05-12 15:03:05'),
(554, 'es', 'login', 'Confirm Password', 'Confirmar contraseña', '2011-03-12 15:53:35'),
(555, 'es', 'login', 'Create my account', 'Crear una cuenta', '2011-03-12 15:53:35'),
(556, 'es', 'login', 'Create New Account', 'Crear una cuenta nueva', '2011-03-12 15:53:35'),
(557, 'es', 'login', 'Email', 'Correo electrónico', '2011-03-12 15:53:35'),
(558, 'es', 'login', 'emailexist', 'Correo electrónico ya existe!', '2011-03-12 15:53:35'),
(559, 'es', 'login', 'Enter the code as it is shown', 'Introduzca el código tal como se muestra', '2011-03-12 15:53:35'),
(560, 'es', 'login', 'First Name', 'Nombre', '2011-03-12 15:53:35'),
(561, 'es', 'login', 'Last Name', 'Apellido', '2011-03-12 15:53:35'),
(562, 'es', 'login', 'Login', 'Inicio de sesión', '2011-03-12 15:53:35'),
(563, 'es', 'login', 'Login incorrect', 'Inicio de sesión incorrecto', '2011-03-12 15:53:35'),
(564, 'es', 'login', 'newaccountsuccess', 'Nueva cuenta creada con éxito!', '2011-03-12 15:53:35'),
(565, 'es', 'login', 'Password', 'Contraseña', '2011-03-12 15:53:35'),
(566, 'es', 'login', 'Password incorrect', 'Contraseña incorrecta', '2011-03-12 15:53:35'),
(567, 'es', 'login', 'Register', 'Registro', '2011-03-12 15:53:35'),
(568, 'es', 'login', 'Sign in to your account', 'Acceda a su cuenta', '2011-03-12 15:53:35'),
(569, 'es', 'login', 'User inactive', 'Usuario inactivo', '2011-03-12 15:53:35'),
(570, 'es', 'login', 'Username', 'Nombre de usuario', '2011-03-12 15:53:35'),
(571, 'es', 'login', 'usernameexist', 'Nombre de usuario ya existe!', '2011-03-12 15:53:35'),
(572, 'es', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Sistema de Soporte</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>1000 Directorios Paquete</h1> \r\n <p>\r\n Estamos proporcionando un paquete con <b>1000 directorios en internet activos y verificados</b>, para que los pueda agregar a su Seo Panel dentro de la herramienta para el envio a directorios.\r\n Le ayudará a aumentar los <b> backlilnks </b> de sus sitios web.\r\n \r\nEn realidad la lista de 1000 directorios se realizó para recoger algo de dinero para el futuro <b>\r\ndesarrollo </b> de Seo Panel.\r\n\r\n Para obtener la lista de directorios 1000 por favor <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">realice una donación de </a>\r\n$10 o más para mejorar las características del seo panel.\r\n Si usted tiene alguna pregunta sobre el paquete de 1000 directorios, por favor <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">contáctenos</a> o abrir un ticket en <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">soporte del sistema</a>. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Visite este enlace para donar a seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Paquete de motores de búsqueda local</h1> \r\n <p>\r\n \r\nAñada <b> motores de búsqueda locales </b> de google, yahoo, msn (<b>por ejemplo, : www.google.de, www.google.fr Etc </b>) para que Seo Panel verifique sus palabras clave en buscadores a nivel local.\r\n\r\n\r\n Para obtener el paquete de búsqueda en motores de busqueda locales (de acuerdo a sus necesidades), por favor <a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">realice una donación de</a> $ 10 o más para mejorar las características de seo panel.\r\n Antes de la donación, por favor <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contactenos</a> para que nos proporcione la lista de los buscadores locales.\r\n <br><br> \r\n También para agregar <b> nuevos motores de búsqueda (por ejemplo: baidu.com) </b> para poder comprobar sus mejoras en estos buscadores con sus palabras clave,\r\npor favor <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contactenos</a> o abra un ticket en<a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">la sección de soporte del sistema</a>. \r\n </p> \r\n <p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Visita este enlace para contactar con nosotros</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Añada <b> plugins SEO </b> a su panel seo para <b> ampliar las características </b> de acuerdo a sus requisitos.\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel plugins</a> son proporcionados por el panel seo\r\ny sitios de terceros.\r\n También es posible <b> desarrollar </b> plugins SEO para su panel de seo.\r\n Usted puede <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">presentar</a> su plugin seo a Seo Panel y\r\nvamos a <b>publicarlo</b> en nuestro sitio web después de nuestra <b> revisión</b>. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Visita este enlace para obtener los plugins de Seo Panel</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contactenos</h1> \r\n <p>\r\n Contacte con nosotros para cualquier pregunta sobre las <b>Herramientas Seo Panel, plugins y otras características </b> mediante el uso de este enlace. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Visita este enlace para contactar con nosotros</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Boletos de Soporte</h1> \r\n <p>\r\n Para obtener <b> apoyo técnico</b> del equipo Seo Panel o para configurar el panel de <b>Herramientas Seo o plugins y\r\n otras características </b>. Por ejemplo: Para configurar el cron para la posición corrector de palabras clave.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Visita este enlace para crear un tiket de soporte</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Informar de bugs</h1> \r\n <p>\r\n Informanos de<b>bugs o errores</b> sobre <b>Seo Panel, las herramientas, plugins o características </b> mediante el uso de link de abajo.\r\n Ayudanos a mejorar las características en las versiones siguientes. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Visita este enlace para informar de los errores</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2011-07-13 23:45:23'),
(573, 'es', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Recursos en linea</legend>\r\n<ul class=\\"infobox\\">\r\n \r\n <li>\r\n <h1>Seo Panel Guía de Ayuda</h1> \r\n <p>\r\n Puede ver la <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">seo panel documentación</a> en el\r\n<b>guía de ayuda</b>, que contiene e <b>documentación</b> para el panel de herramientas seo, plugins y afines\r\ncaracterísticas.\r\n <br>Es el mejor lugar en Internet para obtener <b> ayuda </b> acerca del panel de seo. Esperamos que\r\n<b> contribuir </b> para ayudar a la guía del panel seo, si usted encuentra errores o cosas que faltan. \r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Visita seo panel de guía de ayuda</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Foro</h1> \r\n <p>\r\n Un sitio para hablar sobre la primera fuente abierta del mundo <b> seo panel de control </b>.\r\n Es el mejor lugar para encontrar las <b>respuestas </b> para su <b> preguntas </b> acerca del panel de seo. \r\n <br>Además, puede <b> comparte </b> el <b>experiencia</b>, mientras que usando el panel de SEO para optimizar su\r\nsitios web. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Visita seo panel foro</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2011-07-13 23:45:23'),
(574, 'es', 'support', 'support_cont3', '<fieldset>\r\n<legend>Haz una donación a Seo Panel</legend>\r\n<ul class=\\"infobox\\"> \r\n <li>\r\n <h1>Haz una donación a Seo Panel - El primer Open source seo panel de control en el mundo</h1> \r\n <p>\r\n <b>Realiza una donación a </b> Seo Panel para ayudar al primer portal Open Source para el control SEO del mundo.\r\n Estamos planeando añadir y mejorar <b> características </b> del Seo panel en el futuro.\r\n <br>Solo con sus <b> apoyos </b> podremos alcanzar nuesttros <b>objetivos</b>.\r\n Si usted siente que es el panel seo <b> vale la pena </b> para usted, por favor, realice alguna donación para el equipo de Seo Panel.\r\n <br>Nosostros <b> publicararemos </b> su nombre y pápgina web en la sección de donaciónes de nuestra página web <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">Página de donaciones</a>, una vez que tengamos su donación.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Visita este enlace para donar a seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2011-07-13 23:45:23'),
(575, 'en', 'panel', 'Cron Command', 'Cron Command', '2010-09-23 11:43:06'),
(576, 'en', 'panel', 'Add following command to your cron tab', 'Add following command to your cron tab', '2010-09-23 12:04:03'),
(577, 'es', 'panel', 'Add following command to your cron tab', 'Añadir el siguiente comando para el cron del sistema', '2012-05-12 14:55:03'),
(578, 'es', 'panel', 'Cron Command', 'Comando Cron', '2012-05-12 14:55:03'),
(579, 'en', 'panel', 'alsocheckfollowlink', 'Also check following link if you need more details.', '2010-09-23 12:46:30'),
(580, 'es', 'panel', 'alsocheckfollowlink', 'Verifique este link si Ud. necesitas más detalles', '2012-05-12 14:55:03'),
(581, 'en', 'label', 'Click Here', 'Click Here', '2010-09-23 13:22:08'),
(582, 'en', 'keyword', 'to create new keywords', 'to create new keywords', '2010-09-23 13:23:07'),
(583, 'en', 'keyword', 'Import Keywords', 'Import Keywords', '2010-09-26 11:47:00'),
(584, 'en', 'common', 'Keywords', 'Keywords', '2019-08-06 10:09:56'),
(585, 'en', 'label', 'already exist', 'already exist', '2010-09-26 12:08:07'),
(586, 'en', 'panel', 'About Us', 'About Us', '2010-09-26 13:35:05'),
(587, 'en', 'label', 'Developers', 'Developers', '2010-09-26 14:06:56'),
(588, 'en', 'label', 'Translators', 'Translators', '2010-09-26 14:06:56'),
(589, 'en', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Donate $100</b> and become a <b>sponsor</b> of Seo Panel.', '2018-01-23 00:59:29'),
(590, 'en', 'label', 'Sponsors', 'Sponsors', '2010-09-26 14:18:27'),
(591, 'en', 'settings', 'SP_DEFAULTLANG', 'Default Language', '2018-01-23 00:59:29'),
(592, 'fr', 'common', 'Action', 'Action', '2020-02-14 16:05:11'),
(593, 'fr', 'common', 'Activate', 'Activer', '2020-02-14 16:05:11'),
(594, 'fr', 'common', 'Active', 'Activé', '2020-02-14 16:05:11'),
(595, 'fr', 'common', 'Admin Panel', 'Administration', '2020-02-14 16:05:11'),
(596, 'fr', 'common', 'Alexa Rank', 'Rank Alexa', '2020-02-14 16:05:11'),
(597, 'fr', 'common', 'All', 'Tout', '2020-02-14 16:05:11'),
(598, 'fr', 'common', 'Category', 'Catégorie', '2020-02-14 16:05:11'),
(599, 'fr', 'common', 'contact', 'Contact', '2020-02-14 16:05:11'),
(600, 'fr', 'common', 'copyright', 'Copyright © [year] www.seopanel.org Tous droits réservés.', '2020-02-14 16:05:11'),
(601, 'fr', 'common', 'Country', 'Pays', '2020-02-14 16:05:11'),
(602, 'fr', 'common', 'Crawl Meta Data', 'Exploration des métadonnées', '2020-02-14 16:05:11'),
(603, 'fr', 'common', 'Date', 'Date', '2020-02-14 16:05:11'),
(604, 'fr', 'common', 'Delete', 'Supprimer', '2020-02-14 16:05:11'),
(605, 'fr', 'common', 'Details', 'Détails', '2020-02-14 16:05:11'),
(606, 'fr', 'common', 'Directory', 'Annuaire', '2020-02-14 16:05:11'),
(607, 'fr', 'common', 'Donate', 'Faire un don', '2020-02-14 16:05:11'),
(608, 'fr', 'common', 'Edit', 'Editer', '2020-02-14 16:05:11'),
(609, 'fr', 'common', 'Entry cannot be blank', 'Vous devez saisir quelque chose', '2020-02-14 16:05:11'),
(610, 'fr', 'common', 'entrynotvalid', 'La saisie ne semble pas être valide', '2020-02-14 16:05:11'),
(611, 'fr', 'common', 'failed', 'échoué', '2020-02-14 16:05:11'),
(612, 'fr', 'common', 'forum', 'Forum', '2020-02-14 16:05:11'),
(613, 'fr', 'common', 'Found', 'Trouvé', '2020-02-14 16:05:11'),
(614, 'fr', 'common', 'Google Pagerank', 'Google PageRank', '2020-02-14 16:05:11'),
(615, 'fr', 'common', 'help', 'Aide', '2020-02-14 16:05:11'),
(616, 'fr', 'common', 'hidenews', 'Cacher les nouvelles SeoPanel', '2020-02-14 16:05:11'),
(617, 'fr', 'common', 'Id', 'Id', '2020-02-14 16:05:11'),
(618, 'fr', 'common', 'Inactivate', 'Désactiver', '2020-02-14 16:05:11'),
(619, 'fr', 'common', 'Inactive', 'Désactivé', '2020-02-14 16:05:11'),
(620, 'fr', 'common', 'Invalid characters', 'Caractères invalides', '2020-02-14 16:05:11'),
(621, 'fr', 'common', 'Invalid code entered', 'Code incorrect', '2020-02-14 16:05:11'),
(622, 'fr', 'common', 'Invalid email address entered', 'Adresse mail incorrecte', '2020-02-14 16:05:11'),
(623, 'fr', 'common', 'Invalid value', 'Valeur incorrecte', '2020-02-14 16:05:11'),
(624, 'fr', 'common', 'Keyword', 'Mot clé', '2020-02-14 16:05:11'),
(625, 'fr', 'common', 'Keywords', 'Mots clé', '2020-02-14 16:05:11'),
(626, 'fr', 'common', 'My Account', 'Mon compte', '2020-02-14 16:05:11'),
(627, 'fr', 'common', 'Name', 'Nom', '2020-02-14 16:05:11'),
(628, 'fr', 'common', 'No', 'Non', '2020-02-14 16:05:11'),
(629, 'fr', 'common', 'No Keywords Found', 'Aucun mots clé', '2020-02-14 16:05:11'),
(630, 'fr', 'common', 'No Records Found', 'Aucun élément', '2020-02-14 16:05:11'),
(631, 'fr', 'common', 'noactivetools', 'Aucun outil Seo actif trouvé !', '2020-02-14 16:05:11'),
(632, 'fr', 'common', 'nowebsites', 'Aucun site ', '2020-02-14 16:05:11'),
(633, 'fr', 'common', 'password632', 'Le mot de passe doit contenir entre 6 et 32 caractères', '2020-02-14 16:05:11'),
(634, 'fr', 'common', 'passwordnotmatch', 'Les mots de passe ne correspondent pas', '2020-02-14 16:05:11'),
(635, 'fr', 'common', 'Period', 'Période', '2020-02-14 16:05:11'),
(636, 'fr', 'common', 'Priority', 'Priorité', '2020-02-14 16:05:11'),
(637, 'fr', 'common', 'Rank', 'Rang', '2020-02-14 16:05:11'),
(638, 'fr', 'common', 'Reports', 'Rapports', '2020-02-14 16:05:11'),
(639, 'fr', 'common', 'Results', 'Résultats', '2020-02-14 16:05:11'),
(640, 'fr', 'common', 'Search Engine', 'Moteur de recherche', '2020-02-14 16:05:11'),
(641, 'fr', 'common', 'Select', 'Sélection', '2020-02-14 16:05:11'),
(642, 'fr', 'common', 'Seo Plugins', 'Plugins Seo', '2020-02-14 16:05:11'),
(643, 'fr', 'common', 'Seo Tools', 'Outils Seo', '2020-02-14 16:05:11'),
(644, 'fr', 'common', 'Sign out', 'Déconnecter', '2020-02-14 16:05:11'),
(645, 'fr', 'common', 'Sign Up', 'S''enregistrer', '2020-02-14 16:05:11'),
(646, 'fr', 'common', 'signin', 'Se connecter', '2020-02-14 16:05:11'),
(647, 'fr', 'common', 'Status', 'Statut', '2020-02-14 16:05:11'),
(648, 'fr', 'common', 'Total', 'Total', '2020-02-14 16:05:11'),
(649, 'fr', 'common', 'Url', 'Url', '2020-02-14 16:05:11'),
(650, 'fr', 'common', 'User', 'Utilisateur', '2020-02-14 16:05:11'),
(651, 'fr', 'common', 'User Panel', 'Panneau utilisateur', '2020-02-14 16:05:11'),
(652, 'fr', 'common', 'Website', 'Site web', '2020-02-14 16:05:11'),
(653, 'fr', 'common', 'Yes', 'Oui', '2020-02-14 16:05:11'),
(654, 'fr', 'label', 'already exist', 'déjà existant', '2020-02-14 16:12:40'),
(655, 'fr', 'label', 'Click Here', 'Cliquer ici', '2020-02-14 16:12:40'),
(656, 'fr', 'label', 'Developers', 'Développeurs ', '2020-02-14 16:12:40'),
(657, 'fr', 'label', 'Sponsors', 'Sponsors', '2020-02-14 16:12:40'),
(658, 'fr', 'label', 'Translators', 'Traducteurs', '2020-02-14 16:12:40'),
(659, 'fr', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Faire un don $100</b> et devenir un <b>sponsor</b> de Seo Panel.', '2019-03-28 18:39:30'),
(660, 'fr', 'settings', 'SP_CRAWL_DELAY', 'Délai entre chaque exploration (en secondes)', '2019-03-28 18:39:30'),
(661, 'fr', 'settings', 'SP_DEFAULTLANG', 'Langue par défaut', '2019-03-28 18:39:30'),
(662, 'fr', 'settings', 'SP_DESCRIPTION', 'Description', '2019-03-28 18:39:30'),
(663, 'fr', 'settings', 'SP_ENABLE_PROXY', 'Activer le proxy', '2019-03-28 18:39:30'),
(664, 'fr', 'settings', 'SP_HOTLINKING', 'Protection hotlink des images activée', '2019-03-28 18:39:30'),
(665, 'fr', 'settings', 'SP_KEYWORDS', 'Mots clé Seo Panel', '2019-03-28 18:39:30'),
(666, 'fr', 'settings', 'SP_PAGINGNO', 'Nombre d''éléments par page', '2019-03-28 18:39:30'),
(667, 'fr', 'settings', 'SP_TITLE', 'Titre Seo Panel', '2019-03-28 18:39:30'),
(668, 'fr', 'settings', 'SP_USER_GEN_REPORT', 'Autoriser l''utilisateur à générer un rapport', '2019-03-28 18:39:30'),
(669, 'fr', 'settings', 'SP_USER_REGISTRATION', 'Interface d''enregistrement utilisateur', '2019-03-28 18:39:30'),
(670, 'fr', 'settings', 'syssettingssaved', 'Paramètres bien enregistrés !', '2019-03-28 18:39:30'),
(671, 'fr', 'plugin', 'Edit Seo Plugin', 'Editer le module Seo', '2018-01-23 04:02:55'),
(672, 'fr', 'plugin', 'Plugin Name', 'Nom du module', '2018-01-23 04:02:55'),
(673, 'fr', 'plugin', 'Seo Plugin Details', 'Détails du module Seo', '2018-01-23 04:02:55'),
(674, 'fr', 'panel', 'About Us', 'A propos', '2020-02-14 16:14:52'),
(675, 'fr', 'panel', 'Add following command to your cron tab', 'Ajouter la commande suivante à votre crontab', '2020-02-14 16:14:52'),
(676, 'fr', 'panel', 'alsocheckfollowlink', 'Cliquer sur le lien suivant pour plus de détails.', '2020-02-14 16:14:52'),
(677, 'fr', 'panel', 'Check Directory', 'Vérifier l''annuaire', '2020-02-14 16:14:52'),
(678, 'fr', 'panel', 'Cron Command', 'Commande Cron', '2020-02-14 16:14:52'),
(679, 'fr', 'panel', 'Directory Manager', 'Gestionnaire d''annuaires', '2020-02-14 16:14:52'),
(680, 'fr', 'panel', 'Edit My Profile', 'Editer mon profil', '2020-02-14 16:14:52'),
(681, 'fr', 'panel', 'My Profile', 'Mon profil', '2020-02-14 16:14:52'),
(682, 'fr', 'panel', 'New Proxy', 'Nouveau proxy', '2020-02-14 16:14:52'),
(683, 'fr', 'panel', 'New User', 'Nouvel utilisateur', '2020-02-14 16:14:52'),
(684, 'fr', 'panel', 'New Website', 'Nouveau site web', '2020-02-14 16:14:52'),
(685, 'fr', 'panel', 'Proxy Manager', 'Gestion Proxy', '2020-02-14 16:14:52'),
(686, 'fr', 'panel', 'Report Generation Manager', 'Gestion de la génération des rapports', '2020-02-14 16:14:52'),
(687, 'fr', 'panel', 'Reports Manager', 'Gestion des rapports', '2020-02-14 16:14:52'),
(688, 'fr', 'panel', 'Seo Plugins Manager', 'Gestion des plugins Seo', '2020-02-14 16:14:52'),
(689, 'fr', 'panel', 'Seo Tools Manager', 'Gestion des outils Seo', '2020-02-14 16:14:52'),
(690, 'fr', 'panel', 'System Settings', 'Paramètres système', '2020-02-14 16:14:52'),
(691, 'fr', 'panel', 'User Manager', 'Gestion des utilisateurs', '2020-02-14 16:14:52'),
(692, 'fr', 'panel', 'Website Manager', 'Gestion des sites web', '2020-02-14 16:14:52'),
(693, 'fr', 'home', 'Account Summary', 'Résumé du compte', '2020-02-14 16:07:37'),
(694, 'fr', 'home', 'Backlinks', 'Liens entrants', '2020-02-14 16:07:37'),
(695, 'fr', 'home', 'Directory Submission', 'Soumission', '2020-02-14 16:07:37'),
(39022, 'es', 'review', 'No review data available', 'No hay datos de reseñas disponibles. <a href="seo-tools.php?menu_sec=review-manager">Agregue enlaces de reseñas</a> para comenzar a rastrear sus reseñas y calificaciones.', '2026-01-19 22:58:50'),
(39023, 'es-ar', 'review', 'No review data available', 'No hay datos de reseñas disponibles. <a href="seo-tools.php?menu_sec=review-manager">Agregue enlaces de reseñas</a> para comenzar a rastrear sus reseñas y calificaciones.', '2026-01-19 22:58:50'),
(39024, 'fa', 'review', 'No review data available', 'داده های بررسی در دسترس نیست. <a href="seo-tools.php?menu_sec=review-manager">لینک های بررسی را اضافه کنید</a> تا ردیابی بررسی ها و امتیازات خود را شروع کنید.', '2026-01-19 22:58:50'),
(14057, 'fr', 'home', 'Overall Report Summary', 'Rapport résumé global', '2020-02-14 16:07:37'),
(14058, 'fr', 'myaccount', 'Connect', 'Connexion', '2019-03-28 18:32:19'),
(14059, 'fr', 'myaccount', 'Connected', 'Connecté', '2019-03-28 18:32:19'),
(14060, 'fr', 'myaccount', 'Disconnect', 'Déconnexion', '2019-03-28 18:32:19'),
(14061, 'fr', 'myaccount', 'Disconnected', 'Déconnecté', '2019-03-28 18:32:19'),
(699, 'fr', 'home', 'Pages Indexed', 'Pages indexées', '2020-02-14 16:07:37'),
(700, 'fr', 'home', 'Ranks', 'Rangs', '2020-02-14 16:07:37'),
(701, 'fr', 'home', 'SiteNameUrl', 'Nom du site / URL', '2020-02-14 16:07:37'),
(702, 'fr', 'home', 'Website Statistics', 'Statistiques de vos sites', '2020-02-14 16:07:37'),
(703, 'fr', 'directory', 'Add back to directory list', 'Remettre dans la liste des annuaires', '2012-11-11 01:37:55'),
(704, 'fr', 'directory', 'Approved', 'Approuvé', '2012-11-11 01:37:55'),
(705, 'fr', 'directory', 'Captcha', 'Captcha', '2012-11-11 01:37:55'),
(706, 'fr', 'directory', 'categorynote', 'Catégories, à séparer par des virgules, dans l\\''ordre de priorité. Débuter par la catégorie ayant la priorité la plus haute.', '2012-11-11 01:37:55'),
(707, 'fr', 'directory', 'Check Directory Status', 'Vérifier le statut de l\\''annuaire', '2012-11-11 01:37:55'),
(708, 'fr', 'directory', 'Check Directory Submission Status', 'Vérifier le statut de l\\''envoi', '2012-11-11 01:37:55'),
(709, 'fr', 'directory', 'clicktoproceeddirsts', 'Cliquer sur <b>Valider</b> pour vérifier le statut de l\\''annuaire.', '2012-11-11 01:37:55'),
(710, 'fr', 'directory', 'Confirmation', 'Confirmation', '2012-11-11 01:37:55'),
(711, 'fr', 'directory', 'desnote', 'Certains annuaires requiert un minimum de 150 caractères pour la description.', '2012-11-11 01:37:55'),
(712, 'fr', 'directory', 'Directories with out captcha', 'Annuaires sans captcha', '2012-11-11 01:37:55'),
(713, 'fr', 'directory', 'Directory Submission Reports', 'Rapports d\\''envois aux annuaires', '2012-11-11 01:37:55'),
(714, 'fr', 'directory', 'Enter the code shown', 'Veuillez saisir le code indiqué', '2012-11-11 01:37:55'),
(715, 'fr', 'directory', 'nocatnote', 'Catégorie d\\''envoi non trouvée dans la page d\\''envoi. Veuillez cliquer sur <b>Recharger</a> ou <b>Passer</b>', '2012-11-11 01:37:55'),
(716, 'fr', 'directory', 'nodirnote', 'Aucun annuaire <b>actif</b>', '2012-11-11 01:37:55'),
(717, 'fr', 'directory', 'nosuccessnote', 'Aucune confirmation n\\''a été reçue, veuillez vérifier vos mails', '2012-11-11 01:37:55'),
(718, 'fr', 'directory', 'optionalnote', 'Titres et descriptions optionnels à soumettre aléatoirement aux annuaires pour de meilleurs résultats.', '2012-11-11 01:37:55'),
(719, 'fr', 'directory', 'Owner Email', 'Mail du propriétaire', '2012-11-11 01:37:55'),
(720, 'fr', 'directory', 'Owner Name', 'Nom du propriétaire', '2012-11-11 01:37:55'),
(721, 'fr', 'directory', 'Pending', 'En attente', '2012-11-11 01:37:55'),
(722, 'fr', 'directory', 'Please select a website to proceed', 'Veuillez sélectionner un site', '2012-11-11 01:37:55'),
(723, 'fr', 'directory', 'selectwebsiteproceed', 'Sélectionner un <b>site</b> à envoyer à l\\''annuaire. <br>Cocher l\\''option <b>Annuaires sans captcha</b> pour envoyer aux annuaires sans confirmation humaine.', '2012-11-11 01:37:55'),
(724, 'fr', 'directory', 'selectwebsiteschecksub', 'Sélectionner un <b>site</b> à envoyer à l\\''annuaire.', '2012-11-11 01:37:55'),
(725, 'fr', 'directory', 'Semi Automatic Directory Submission Tool', 'Outil de soumission semi automatique', '2012-11-11 01:37:55'),
(726, 'fr', 'directory', 'spamemailnote', 'Certains annuaires envoient des courriers indésirables, nous vous déconseillons d\\''utiliser votre adresse mail principale.', '2012-11-11 01:37:55'),
(727, 'fr', 'directory', 'Submission Details', 'Détails de l\\''envoi', '2012-11-11 01:37:55'),
(728, 'fr', 'directory', 'Submit Description', 'Description', '2012-11-11 01:37:55'),
(729, 'fr', 'directory', 'Submit Keywords', 'Mots-clés', '2012-11-11 01:37:55'),
(730, 'fr', 'directory', 'Submit Title', 'Titre', '2012-11-11 01:37:55'),
(731, 'fr', 'directory', 'Website Category', 'Catégorie', '2012-11-11 01:37:55'),
(732, 'fr', 'directory', 'Website Url', 'URL du site', '2012-11-11 01:37:55'),
(733, 'fr', 'keyword', 'Crawling keyword', 'Mot clé exploré', '2016-01-02 23:07:27'),
(734, 'fr', 'keyword', 'Detailed Keyword Position Reports', 'Rapports détaillés de position sur mot-clé', '2016-01-02 23:07:27'),
(735, 'fr', 'keyword', 'Edit Keyword', 'Editer le mot-clé', '2016-01-02 23:07:27'),
(736, 'fr', 'keyword', 'Graphical Keyword Position Reports', 'Rapport graphique de position sur mot-clé', '2016-01-02 23:07:27'),
(737, 'fr', 'keyword', 'Import Keywords', 'Importer les mots-clés', '2016-01-02 23:07:27'),
(738, 'fr', 'keyword', 'Keyword already exist', 'Le mot-clé existe déjà', '2016-01-02 23:07:27'),
(739, 'fr', 'keyword', 'Keyword Position Report', 'Rapport de position sur mot-clé', '2016-01-02 23:07:27'),
(740, 'fr', 'keyword', 'New Keyword', 'Nouveau mot-clé', '2016-01-02 23:07:27'),
(741, 'fr', 'keyword', 'not assigned to required search engines', 'non assigné aux moteurs de recherches requis', '2016-01-02 23:07:27'),
(742, 'fr', 'keyword', 'pleaseselecttool', 'Merci de sélectionner au moins un outil Seo', '2016-01-02 23:07:27'),
(743, 'fr', 'keyword', 'Quick Keyword Position Checker', 'Contrôle rapide de position sur mot-clé', '2016-01-02 23:07:27'),
(744, 'fr', 'keyword', 'results from ', 'résultats de', '2016-01-02 23:07:27'),
(745, 'fr', 'keyword', 'Show All results', 'Afficher tous les résultats', '2016-01-02 23:07:27'),
(746, 'fr', 'keyword', 'Successfully crawled keyword', 'Exploration réussie du mot-clé', '2016-01-02 23:07:27'),
(747, 'fr', 'keyword', 'to create new keywords', 'pour créer de nouveaux mots-clés', '2016-01-02 23:07:27'),
(748, 'fr', 'proxy', 'Edit Proxy', 'Editer le proxy', '2016-12-09 23:07:31'),
(749, 'fr', 'proxy', 'Proxy Password', 'Mot de passe', '2016-12-09 23:07:31'),
(750, 'fr', 'proxy', 'Proxy Username', 'Nom d''utilisateur', '2016-12-09 23:07:31'),
(751, 'fr', 'proxy', 'Proxyalreadyexist', 'Le proxy existe déjà !', '2016-12-09 23:07:31'),
(752, 'fr', 'rank', 'enterurlproceed', 'Indiquez <b>une URL par ligne</b>. Cliquer sur <b>Valider</b> pour vérifier les rangs Google et Alexa.', '2010-09-28 13:16:21'),
(753, 'fr', 'rank', 'Google and Alexa Rank Reports', 'Rapport de rangs Google et Alexa', '2010-09-28 13:16:21'),
(754, 'fr', 'rank', 'Saved rank results of', 'Résultats sauvegardés', '2010-09-28 13:16:21'),
(755, 'fr', 'saturation', 'clickproceedsaturation', 'Indiquez <b>une URL par ligne</b>. Cliquez sur <b>valider</b> pour vérifier les résultats de saturation des moteurs de recherche.', '2010-09-28 13:18:11'),
(756, 'fr', 'saturation', 'GenerateSaturationReports', 'Générer les rapports de saturation de moteur de recherche', '2010-09-28 13:18:11'),
(757, 'fr', 'saturation', 'Quick Search Engine Saturation Checker', 'Contrôle rapide de saturation des moteurs de recherche', '2010-09-28 13:18:11'),
(758, 'fr', 'saturation', 'Saved Search Engine Saturation results of', 'Résultats sauvegardés', '2010-09-28 13:18:11'),
(759, 'fr', 'saturation', 'Search Engine Saturation Reports', 'Rapports de saturation des moteurs de recherche', '2010-09-28 13:18:11'),
(760, 'fr', 'seotools', 'Automatic Submission', 'Soumission automatisée', '2019-03-28 18:37:48'),
(761, 'fr', 'seotools', 'backlink-checker', 'Contrôle des liens retour', '2019-03-28 18:37:48'),
(762, 'fr', 'seotools', 'Backlinks Reports', 'Rapports sur les liens retour', '2019-03-28 18:37:48'),
(763, 'fr', 'seotools', 'Check Submission Status', 'Vérifier le statut de la soumission', '2019-03-28 18:37:48'),
(764, 'fr', 'seotools', 'clickgeneratereports', 'Cliquer sur <b>Valider</b> pour générer les rapports', '2019-03-28 18:37:48'),
(765, 'fr', 'seotools', 'Detailed Position Reports', 'Rapports détaillés de position', '2019-03-28 18:37:48'),
(766, 'fr', 'seotools', 'directory-submission', 'Soumission annuaire', '2019-03-28 18:37:48'),
(767, 'fr', 'seotools', 'Featured Submission', 'Soumission active', '2019-03-28 18:37:48'),
(768, 'fr', 'seotools', 'Generate Backlinks Reports', 'Générer les rapports de liens retour', '2019-03-28 18:37:48'),
(769, 'fr', 'seotools', 'Generate Keyword Reports', 'Générer les rapports sur le mot-clé', '2019-03-28 18:37:48'),
(770, 'fr', 'seotools', 'Generate Rank Reports', 'Générer les rapports de rangs', '2019-03-28 18:37:48'),
(771, 'fr', 'seotools', 'Generate Saturation Reports', 'Générer les rapports de saturation', '2019-03-28 18:37:48'),
(772, 'fr', 'seotools', 'Google Sitemap Generator', 'Générateur de sitemap Google', '2019-03-28 18:37:48'),
(773, 'fr', 'seotools', 'Graphical Position Reports', 'Rapports graphiques de position', '2019-03-28 18:37:48'),
(774, 'fr', 'seotools', 'Keyword Position Summary', 'Résumé de position sur mot-clé', '2019-03-28 18:37:48'),
(775, 'fr', 'seotools', 'keyword-position-checker', 'Contrôle de position sur mot-clé', '2019-03-28 18:37:48'),
(776, 'fr', 'seotools', 'Keywords Manager', 'Gestionnaire de mots-clés', '2019-03-28 18:37:48'),
(777, 'fr', 'seotools', 'Quick Backlinks Checker', 'Contrôle rapide des liens retour', '2019-03-28 18:37:48'),
(778, 'fr', 'seotools', 'Quick Position Checker', 'Contrôle rapide de position', '2019-03-28 18:37:48'),
(779, 'fr', 'seotools', 'Quick Rank Checker', 'Contrôle rapide de rang', '2019-03-28 18:37:48'),
(780, 'fr', 'seotools', 'Quick Saturation Checker', 'Contrôle rapide de saturation', '2019-03-28 18:37:48'),
(781, 'fr', 'seotools', 'Rank Reports', 'Rapports de rang', '2019-03-28 18:37:48'),
(782, 'fr', 'seotools', 'rank-checker', 'Contrôle de rang', '2019-03-28 18:37:48'),
(783, 'fr', 'seotools', 'Saturation Reports', 'Rapports de saturation', '2019-03-28 18:37:48'),
(784, 'fr', 'seotools', 'saturation-checker', 'Saturation de moteur de recherche', '2019-03-28 18:37:48'),
(785, 'fr', 'seotools', 'sitemap-generator', 'Générateur de Sitemap', '2019-03-28 18:37:48'),
(786, 'fr', 'seotools', 'Skipped Directories', 'Annuaires non traités', '2019-03-28 18:37:48'),
(787, 'fr', 'seotools', 'Submission Reports', 'Rapports de soumission', '2019-03-28 18:37:48'),
(788, 'fr', 'seotools', 'User Access', 'Accès utilisateur', '2019-03-28 18:37:48'),
(789, 'fr', 'support', 'support_cont1', '<fieldset>\r\n<legend>Support Seo Panel</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>Pack de 1000 annuaires</h1> \r\n <p>\r\n Nous pouvons vous fournir un pack de <b>1000 annuaires gratuits, actifs et vérifiés</b>, à ajouter à votre Seo Panel.\r\n Cela vous aidera à <b>augmenter les liens retour</b> vers vos sites.<br/>\r\n Ce pack a été créé pour <b>financer les prochains dévelopements</b> de Seo Panel.<br/>\r\n Pour obtenir le pack, merci de <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donner</a> 10$ ou plus, pour aider à améliorer Seo Panel.<br>\r\n Si vous avez des questions sur ce pack de 1000 annuaires, n\\''hésitez pas à <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">nous contacter</a> ou à <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">ouvrir un ticket</a>.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Cliquer ici pour aider à financer Seo Panel.</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Pack de moteurs de recherche locaux</h1> \r\n <p>\r\n Ajoutez les moteurs de recherche locaux de Google, Yahoo, MSN (<b>ex: www.google.fr, www.yahoo.fr, ...</b>) au <b>contrôle de position sur mot-clé</b>, pour suivre le référencement local de vos sites.<br/>\r\n Pour obtenir le pack de moteurs de recherche locaux (en fonction de vos besoins), merci de <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donner</a> 10$ ou plus pour aider à améliorer Seo Panel.<br/>\r\n Avant de faire le don, merci de <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">nous contacter</a> afin de nous communiquer la liste des moteurs de recherche souhaités.<br><br>\r\n Si vous souhaitez ajouter de <b>nouveaux moteurs de recherches</b> à votre suivi de position sur mot-clé Seo Panel, merci de <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">nous contacter</a> ou d\\''<a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">ouvrir un ticket</a>.\r\n </p> \r\n <p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Cliquer ici pour nous contacter.</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Plugins Seo Panel</h1> \r\n <p>\r\n Ajouter des <b>plugins</b> à votre Seo Panel, afin d\\''ajouter de <b>nouvelles fonctionnalités</b>, selon vos besoins.<br/>\r\n Les <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">plugins Seo Panel</a> sont disponibles via Seo Panel, ou des tiers.<br/>\r\n Vous pouvez facilement <b>développer</b> des plugins pour votre Seo Panel, et <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">soumettre vos plugins</a> sur le site Seo Panel, où ils seront publiés après <b>validation</b>. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Cliquer ici pour obtenir les plugins disponibles.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Nous contacter</h1> \r\n <p>\r\n N\\''hésitez pas à nous contacter à propos des <b>outils, plugins et fonctionnalités de Seo Panel</b> en utilisant le lien ci-dessous.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Cliquer ici pour nous contacter.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Tickets de Support</h1> \r\n <p>\r\n Pour obtenir un <b>support technique</b> de l\\''équipe Seo Panel sur l\\''<b>installation de Seo Panel, des outils ou des plugins</b>. Ex.: Configurer l\\''exécution périodique (cron) du contrôle de position sur mot-clé, résoudre un dysfonctionnement post-installation, ...\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Cliquer ici pour ouvrir un ticket de support technique.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Signaler un bug</h1> \r\n <p>\r\n Signalez les <b>bugs</b> de <b>Seo Panel, des outils ou des plugins</b> en utilisant le lien ci-dessous.<br/>\r\n Cela nous aidera à améliorer les prochaines versions.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Cliquer ici pour signaler un bug.</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2010-09-28 14:36:44'),
(790, 'fr', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel - Ressources en ligne</legend>\r\n<ul class=\\"infobox\\">\r\n \r\n <li>\r\n <h1>L\\''aide Seo Panel</h1> \r\n <p>\r\n Vous pouvez consulter la <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">documentation</a> pour Seo Panel, ses fonctionnalités, ainsi que les outils et plugins.\r\n <br>C\\''est le meilleur endroit pour <b>avoir de l\\''aide</b> sur Seo Panel. Nous espérons que vous pourrez <b>contribuer</b> au guide Seo Panel, si vous trouvez des erreurs ou des choses qui manquent.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Cliquer ici pour voir l\\''aide Seo Panel.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Le forum Seo Panel</h1> \r\n <p>\r\n Un endroit où discuter du <b>premier panneau de contrôle Seo en open source au monde</b>.<br>C\\''est le meilleur endroit pour trouver des <b>réponses</b> à <b>vos questions</b> à propos de Seo Panel.<br>Vous pouvez aussi y <b>partager vos expériences</b> afin d\\''optimiser le référencement de vos sites internet.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Cliquer ici pour aller sur le forum Seo Panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2010-09-28 14:36:44'),
(791, 'fr', 'support', 'support_cont3', '<fieldset>\r\n<legend>Dons pour Seo Panel</legend>\r\n<ul class=\\"infobox\\"> \r\n <li>\r\n <h1>Donnez pour Seo Panel - Le premier panneau de contrôle open source Seo au monde</h1> \r\n <p>\r\n <b>Donnez</b> à Seo Panel pour financer le premier panneau de contrôle open source Seo au monde.<br/>\r\n Nous prévoyons bien sur des <b>ajouts et améliorations</b> des fonctionnalités de Seo Panel, et grâce à votre support, nous pourrons atteindre les <b>buts fixés</b>.\r\n Si <b>vous appréciez Seo Panel</b>, merci de <b>faire un don</b> à l\\''équipe Seo Panel afin d\\''aider à financer son développement.<br/>\r\n Dès réception de votre don, nous publierons, avec votre accord, votre nom et votre site sur la <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">page de dons</a>.\r\n \r\n \r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Cliquer ici pour faire un don</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2010-09-28 14:36:44'),
(792, 'es', 'common', 'Keywords', 'Palabras clave', '2019-05-25 22:49:48'),
(793, 'es', 'keyword', 'Import Keywords', 'Importación de palabras clave.', '2011-07-07 14:24:15'),
(794, 'es', 'keyword', 'to create new keywords', 'para crear nuevas palabras clave', '2011-07-07 14:24:15'),
(795, 'es', 'label', 'already exist', 'ya existen', '2012-05-12 14:54:10'),
(796, 'es', 'label', 'Click Here', 'Haga clic aquí', '2012-05-12 14:54:10'),
(797, 'es', 'label', 'Developers', 'Desarrolladores', '2012-05-12 14:54:10'),
(798, 'es', 'label', 'Sponsors', 'Patrocinadores', '2012-05-12 14:54:10'),
(799, 'es', 'label', 'Translators', 'Traductores', '2012-05-12 14:54:10'),
(800, 'es', 'panel', 'About Us', 'Quiénes somos', '2012-05-12 14:55:03'),
(801, 'es', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Realiza una donación de 100 usd</b> y conviértete en un <b>sponsor</b> de Seo Panel.', '2012-05-12 15:03:05'),
(802, 'es', 'settings', 'SP_DEFAULTLANG', 'Idioma por defecto', '2012-05-12 15:03:05'),
(803, 'de', 'button', 'Cancel', 'Abbrechen', '2021-06-15 01:29:35'),
(804, 'de', 'button', 'Check Status', 'Status prüfen', '2021-06-15 01:29:35'),
(805, 'de', 'button', 'Proceed', 'Speichern', '2021-06-15 01:29:35'),
(806, 'de', 'button', 'Reload', 'Neu laden', '2021-06-15 01:29:35'),
(807, 'de', 'button', 'Show Details', 'Details', '2021-06-15 01:29:35'),
(808, 'de', 'button', 'Show Records', 'Aufzeichnungen', '2021-06-15 01:29:35'),
(809, 'de', 'button', 'Skip', 'Überspringen', '2021-06-15 01:29:35'),
(810, 'de', 'button', 'Submit', 'Übermitteln', '2021-06-15 01:29:35'),
(811, 'de', 'common', 'Action', 'Aktion', '2021-06-15 01:46:19'),
(812, 'de', 'common', 'Activate', 'Aktivieren', '2021-06-15 01:46:19'),
(813, 'de', 'common', 'Admin Panel', 'Adminbereich', '2021-06-15 01:46:19'),
(814, 'de', 'common', 'Alexa Rank', 'Alexa Rank', '2021-06-15 01:46:19'),
(815, 'de', 'common', 'All', 'Alle', '2021-06-15 01:46:19'),
(816, 'de', 'common', 'Category', 'Kategorie', '2021-06-15 01:46:19'),
(817, 'de', 'common', 'contact', 'Kontakt', '2021-06-15 01:46:19'),
(818, 'de', 'common', 'copyright', 'Copyright © [year] www.seopanel.org. Alle Rechte vorbehalten', '2021-06-15 01:46:19'),
(819, 'de', 'common', 'Country', 'Land', '2021-06-15 01:46:19'),
(820, 'de', 'common', 'Crawl Meta Data', 'Meta-Daten abrufen', '2021-06-15 01:46:19'),
(821, 'de', 'common', 'Details', 'Details', '2021-06-15 01:46:19'),
(822, 'de', 'common', 'Directory', 'Verzeichnis', '2021-06-15 01:46:19'),
(823, 'de', 'common', 'Donate', 'Spenden', '2021-06-15 01:46:19'),
(824, 'de', 'common', 'Entry cannot be blank', 'Eintrag kann nicht leer gelassen werden', '2021-06-15 01:46:19'),
(825, 'de', 'common', 'entrynotvalid', 'Das Eingetragene scheint nicht zu stimmen', '2021-06-15 01:46:19'),
(826, 'de', 'common', 'failed', 'fehlgeschlagen', '2021-06-15 01:46:19'),
(827, 'de', 'common', 'forum', 'Forum', '2021-06-15 01:46:19'),
(828, 'de', 'common', 'Found', 'Gefunden', '2021-06-15 01:46:19'),
(829, 'de', 'common', 'Google Pagerank', 'Google Pagerank', '2021-06-15 01:46:19'),
(830, 'de', 'common', 'help', 'Hilfe', '2021-06-15 01:46:19'),
(831, 'de', 'common', 'hidenews', 'SEO Panel News verbergen', '2021-06-15 01:46:19'),
(832, 'de', 'common', 'Id', 'Id', '2021-06-15 01:46:19'),
(833, 'de', 'common', 'Inactivate', 'Deaktivieren', '2021-06-15 01:46:19'),
(834, 'de', 'common', 'Inactive', 'Inaktiv', '2021-06-15 01:46:19'),
(835, 'de', 'common', 'Invalid characters', 'Ungültige Zeichen', '2021-06-15 01:46:19'),
(836, 'de', 'common', 'Invalid code entered', 'Ungültiger Code', '2021-06-15 01:46:19'),
(837, 'de', 'common', 'Invalid email address entered', 'ungültige Mailadresse', '2021-06-15 01:46:19'),
(838, 'de', 'common', 'Invalid value', 'ungültiger Wert', '2021-06-15 01:46:19'),
(839, 'de', 'common', 'Keyword', 'Keyword', '2021-06-15 01:46:19'),
(840, 'de', 'common', 'Keywords', 'Keywords', '2021-06-15 01:46:19'),
(841, 'de', 'common', 'My Account', 'Mein Account', '2021-06-15 01:46:19'),
(842, 'de', 'common', 'Name', 'Name', '2021-06-15 01:46:19'),
(843, 'de', 'common', 'No Keywords Found', 'Keine Keywords vorhanden', '2021-06-15 01:46:19'),
(844, 'de', 'common', 'No Records Found', 'Keine Aufzeichnungen vorhanden', '2021-06-15 01:46:19'),
(845, 'de', 'common', 'noactivetools', 'Keine aktiven SEO Tools vorhanden!', '2021-06-15 01:46:19'),
(846, 'de', 'common', 'nowebsites', 'Keine Webseiten vorhanden', '2021-06-15 01:46:19'),
(847, 'de', 'common', 'password632', 'Das Passwort sollte aus 6-32 Zeichen bestehen', '2021-06-15 01:46:19'),
(848, 'de', 'common', 'passwordnotmatch', 'Die Passwörter stimmen nicht überein', '2021-06-15 01:46:19'),
(849, 'de', 'common', 'Period', 'Zeitraum', '2021-06-15 01:46:19'),
(850, 'de', 'common', 'Priority', 'Priorität', '2021-06-15 01:46:19'),
(851, 'de', 'common', 'Reports', 'Berichte', '2021-06-15 01:46:19'),
(852, 'de', 'common', 'Results', 'Ergebnisse', '2021-06-15 01:46:19'),
(853, 'de', 'common', 'Search Engine', 'Suchmaschine', '2021-06-15 01:46:19'),
(854, 'de', 'common', 'Seo Plugins', 'SEO Erweiterungen', '2021-06-15 01:46:19'),
(855, 'de', 'common', 'Seo Tools', 'SEO Werkzeuge', '2021-06-15 01:46:19'),
(856, 'de', 'common', 'Sign out', 'Ausloggen', '2021-06-15 01:46:19'),
(857, 'de', 'common', 'Sign Up', 'Registrieren', '2021-06-15 01:46:19'),
(858, 'de', 'common', 'signin', 'Einloggen', '2021-06-15 01:46:19'),
(859, 'de', 'common', 'Status', 'Status', '2021-06-15 01:46:19'),
(860, 'de', 'common', 'Support', 'Support', '2021-06-15 01:46:19'),
(861, 'de', 'common', 'Url', 'URL', '2021-06-15 01:46:19'),
(862, 'de', 'common', 'User', 'Benutzer', '2021-06-15 01:46:19'),
(863, 'de', 'common', 'User Panel', 'Benutzerbereich', '2021-06-15 01:46:19'),
(864, 'de', 'common', 'Website', 'Webseite', '2021-06-15 01:46:19');
INSERT INTO `texts` VALUES
(865, 'de', 'directory', 'Add back to directory list', 'Zur Verzeichnissen hinzufügen', '2021-06-15 01:41:51'),
(866, 'de', 'directory', 'Approved', 'Bestätigt', '2021-06-15 01:41:51'),
(867, 'de', 'directory', 'Captcha', 'Captcha', '2021-06-15 01:41:51'),
(868, 'de', 'directory', 'categorynote', 'Kategorien, durch Komma getrennt. Sortiert nach Wichtigkeit.', '2021-06-15 01:41:51'),
(869, 'de', 'directory', 'Check Directory Status', 'Status prüfen', '2021-06-15 01:41:51'),
(870, 'de', 'directory', 'Check Directory Submission Status', 'Eintragungsstatus prüfen', '2021-06-15 01:41:51'),
(871, 'de', 'directory', 'clicktoproceeddirsts', 'Auf <b>Starten</b> klicken um Status zu überprüfen.', '2021-06-15 01:41:51'),
(872, 'de', 'directory', 'Confirmation', 'Bestätigung', '2021-06-15 01:41:51'),
(873, 'de', 'directory', 'desnote', 'Einige Verzeichnisse verlangen mindestens 150 Zeichen als Beschreibung', '2021-06-15 01:41:51'),
(874, 'de', 'directory', 'Directories with out captcha', 'Verzeichnisse ohne Captcha Abfrage', '2021-06-15 01:41:51'),
(875, 'de', 'directory', 'Directory Submission Reports', 'Eintragungs-Berichte', '2021-06-15 01:41:51'),
(876, 'de', 'directory', 'Enter the code shown', 'Gib den angezeigten Code ein', '2021-06-15 01:41:51'),
(877, 'de', 'directory', 'nocatnote', 'Die gewünschte Kategorie existiert nicht in diesem Verzeichnis. <b>Neu laden</b> oder <b>Überspringen</b> ', '2021-06-15 01:41:51'),
(878, 'de', 'directory', 'nodirnote', 'Keine <b>aktiven</b> Verzeichnisse gefunden', '2021-06-15 01:41:51'),
(879, 'de', 'directory', 'nosuccessnote', 'Keine Bestätigung erhalten - Bitte im Email-Postfach nach der Bestätigungsmail schauen.', '2021-06-15 01:41:51'),
(880, 'de', 'directory', 'optionalnote', 'Verschiedene Beschreibungen und Titel angeben um bessere Ergebnisse zu erzielen (Optional).', '2021-06-15 01:41:51'),
(881, 'de', 'directory', 'Owner Email', 'Email-Adresse', '2021-06-15 01:41:51'),
(882, 'de', 'directory', 'Owner Name', 'Vor- und Nachname', '2021-06-15 01:41:51'),
(883, 'de', 'directory', 'Pending', 'Ausstehend...', '2021-06-15 01:41:51'),
(884, 'de', 'directory', 'Please select a website to proceed', 'Bitte Webseite auswählen', '2021-06-15 01:41:51'),
(885, 'de', 'directory', 'selectwebsiteproceed', 'Wähle eine <b>Webseite</b> und <b>starte</b> die Verzeichniseintragung.<br>Setze einen Haken bei <b>Verzeichnisse ohne Captcha Abfrage</b> um Verzeichnisse mit Captcha Abfrage zu überspringen.', '2021-06-15 01:41:51'),
(886, 'de', 'directory', 'selectwebsiteschecksub', 'Wähle eine <b>Webseite</b> und <b>starte</b> die Überprüfung der Verzeichniseintragung.', '2021-06-15 01:41:51'),
(887, 'de', 'directory', 'Semi Automatic Directory Submission Tool', 'Tool für automatische Verzeichnis-Eintragungen', '2021-06-15 01:41:51'),
(888, 'de', 'directory', 'spamemailnote', 'Einige Verzeichnisse versenden SPAM, wir empfehelen nicht die echte Mailadresse anzugeben.', '2021-06-15 01:41:51'),
(889, 'de', 'directory', 'Submission Details', 'Details', '2021-06-15 01:41:51'),
(890, 'de', 'directory', 'Submit Description', 'Beschreibung', '2021-06-15 01:41:51'),
(891, 'de', 'directory', 'Submit Keywords', 'Keywords', '2021-06-15 01:41:51'),
(892, 'de', 'directory', 'Submit Title', 'Title', '2021-06-15 01:41:51'),
(893, 'de', 'directory', 'Website Category', 'Kategorie', '2021-06-15 01:41:51'),
(894, 'de', 'directory', 'Website Url', 'URL', '2021-06-15 01:41:51'),
(895, 'de', 'home', 'Account Summary', 'Account Zusammenfassung', '2021-06-15 01:27:27'),
(896, 'de', 'home', 'Backlinks', 'Backlinks', '2021-06-15 01:27:27'),
(897, 'de', 'home', 'Directory Submission', 'Verzeichniseintragung', '2021-06-15 01:27:27'),
(39017, 'cn', 'review', 'No review data available', '暂无评论数据。<a href="seo-tools.php?menu_sec=review-manager">添加评论链接</a>以开始跟踪您的评论和评分。', '2026-01-19 22:58:50'),
(39018, 'cs', 'review', 'No review data available', 'Nejsou k dispozici žádná data o recenzích. <a href="seo-tools.php?menu_sec=review-manager">Přidejte odkazy na recenze</a>, abyste mohli začít sledovat své recenze a hodnocení.', '2026-01-19 22:58:50'),
(39019, 'da', 'review', 'No review data available', 'Ingen anmeldelsesdata tilgængelige. <a href="seo-tools.php?menu_sec=review-manager">Tilføj anmeldelseslinks</a> for at begynde at spore dine anmeldelser og bedømmelser.', '2026-01-19 22:58:50'),
(39020, 'de', 'review', 'No review data available', 'Keine Bewertungsdaten verfügbar. <a href="seo-tools.php?menu_sec=review-manager">Fügen Sie Bewertungslinks hinzu</a>, um Ihre Bewertungen und Ratings zu verfolgen.', '2026-01-19 22:58:50'),
(39021, 'el', 'review', 'No review data available', 'Δεν υπάρχουν διαθέσιμα δεδομένα αξιολογήσεων. <a href="seo-tools.php?menu_sec=review-manager">Προσθέστε συνδέσμους αξιολογήσεων</a> για να ξεκινήσετε την παρακολούθηση των αξιολογήσεων και των βαθμολογιών σας.', '2026-01-19 22:58:50'),
(15018, 'de', 'label', 'Access denied', 'Zugriff verweigert', '2021-01-06 15:13:08'),
(15019, 'de', 'label', 'Ago', 'Vor', '2021-01-06 15:13:08'),
(15020, 'de', 'label', 'Clicks', 'Klicks', '2021-01-06 15:13:08'),
(901, 'de', 'home', 'Pages Indexed', 'Indizierte Seiten', '2021-06-15 01:27:27'),
(902, 'de', 'home', 'Ranks', 'Positionen', '2021-06-15 01:27:27'),
(903, 'de', 'home', 'SiteNameUrl', 'Seiten Name / URL', '2021-06-15 01:27:27'),
(904, 'de', 'home', 'Website Statistics', 'Website-Statistiken', '2021-06-15 01:27:27'),
(905, 'de', 'keyword', 'Crawling keyword', 'Überprüfe Keyword', '2021-06-15 01:48:29'),
(906, 'de', 'keyword', 'Detailed Keyword Position Reports', 'Detaillierte Keyword Ranking Berichte', '2021-06-15 01:48:29'),
(907, 'de', 'keyword', 'Edit Keyword', 'Keyword bearbeiten', '2021-06-15 01:48:29'),
(908, 'de', 'keyword', 'Graphical Keyword Position Reports', 'Grafische Keyword Ranking Berichte', '2021-06-15 01:48:29'),
(909, 'de', 'keyword', 'Import Keywords', 'Keywords importieren', '2021-06-15 01:48:29'),
(910, 'de', 'keyword', 'Keyword already exist', 'Keyword bereits vorhanden', '2021-06-15 01:48:29'),
(911, 'de', 'keyword', 'Keyword Position Report', 'Keyword Ranking Bericht', '2021-06-15 01:48:29'),
(912, 'de', 'keyword', 'New Keyword', 'Neues Keyword', '2021-06-15 01:48:29'),
(913, 'de', 'keyword', 'not assigned to required search engines', 'nicht vertreten in relevanten Suchmaschinen', '2021-06-15 01:48:29'),
(914, 'de', 'keyword', 'pleaseselecttool', 'Waehle bitte mindestens 1 SEO Tool', '2021-06-15 01:48:29'),
(915, 'de', 'keyword', 'Quick Keyword Position Checker', 'Schneller Keyword Ranking Check', '2021-06-15 01:48:29'),
(916, 'de', 'keyword', 'results from ', 'Ergebnisse von', '2021-06-15 01:48:29'),
(917, 'de', 'keyword', 'Show All results', 'ALLE Ergebnisse anzeigen', '2021-06-15 01:48:29'),
(918, 'de', 'keyword', 'Successfully crawled keyword', 'Keyword erfolgreich geprueft', '2021-06-15 01:48:29'),
(919, 'de', 'keyword', 'to create new keywords', 'um neues Keyword zu erstellen', '2021-06-15 01:48:29'),
(920, 'de', 'label', 'already exist', 'bereits vorhanden', '2021-01-06 15:13:08'),
(921, 'de', 'label', 'Authentication', 'Authentifizierung', '2021-01-06 15:13:08'),
(922, 'de', 'label', 'Author', 'Autor', '2021-01-06 15:13:08'),
(923, 'de', 'label', 'Click Here', 'Hier klicken', '2021-01-06 15:13:08'),
(924, 'de', 'label', 'Cron', 'Cronjob', '2021-01-06 15:13:08'),
(925, 'de', 'label', 'Description', 'Beschreibung', '2021-01-06 15:13:08'),
(926, 'de', 'label', 'Developers', 'Entwickler', '2021-01-06 15:13:08'),
(927, 'de', 'label', 'Download', 'Download', '2021-01-06 15:13:08'),
(928, 'de', 'label', 'Installation', 'Installation', '2021-01-06 15:13:08'),
(929, 'de', 'label', 'Keywords', 'Keywords', '2021-01-06 15:13:08'),
(930, 'de', 'label', 'noactiveplugins', 'Keine aktiven SEO Erweiterungen gefunden!', '2021-01-06 15:13:08'),
(931, 'de', 'label', 'Plugin', 'Erweiterung', '2021-01-06 15:13:08'),
(932, 'de', 'label', 'Port', 'Port', '2021-01-06 15:13:08'),
(933, 'de', 'label', 'Proxy', 'Proxy', '2021-01-06 15:13:08'),
(934, 'de', 'label', 'Re-install', 'Neu-Installation', '2021-01-06 15:13:08'),
(935, 'de', 'label', 'Sponsors', 'Sponsoren', '2021-01-06 15:13:08'),
(936, 'de', 'label', 'Title', 'Titel', '2021-01-06 15:13:08'),
(937, 'de', 'label', 'translation by', 'Uebersetzung von', '2021-01-06 15:13:08'),
(938, 'de', 'label', 'Translators', 'Uebersetzer', '2021-01-06 15:13:08'),
(939, 'de', 'label', 'Upgrade', 'Aufstufen', '2021-01-06 15:13:08'),
(940, 'de', 'label', 'Version', 'Version', '2021-01-06 15:13:08'),
(941, 'de', 'login', 'Confirm Password', 'Passwort bestätigen', '2021-01-06 15:14:32'),
(942, 'de', 'login', 'Create my account', 'Meinen Account erstellen', '2021-01-06 15:14:32'),
(943, 'de', 'login', 'Create New Account', 'Neuen Account erstellen', '2021-01-06 15:14:32'),
(944, 'de', 'login', 'Email', 'Email', '2021-01-06 15:14:32'),
(945, 'de', 'login', 'emailexist', 'Email bereits vorhanden!', '2021-01-06 15:14:32'),
(946, 'de', 'login', 'Enter the code as it is shown', 'Gib bitte den angezeigten Code ein', '2021-01-06 15:14:32'),
(947, 'de', 'login', 'First Name', 'Vorname', '2021-01-06 15:14:32'),
(948, 'de', 'login', 'Last Name', 'Nachname', '2021-01-06 15:14:32'),
(949, 'de', 'login', 'Login', 'Einloggen', '2021-01-06 15:14:32'),
(950, 'de', 'login', 'Login incorrect', 'Falsche Login Informationen', '2021-01-06 15:14:32'),
(951, 'de', 'login', 'newaccountsuccess', 'Account erfolgreich registriert!', '2021-01-06 15:14:32'),
(952, 'de', 'login', 'Password', 'Passwort', '2021-01-06 15:14:32'),
(953, 'de', 'login', 'Password incorrect', 'Falsches Passwort', '2021-01-06 15:14:32'),
(954, 'de', 'login', 'Register', 'Registrieren', '2021-01-06 15:14:32'),
(955, 'de', 'login', 'Sign in to your account', 'In Account einloggen', '2021-01-06 15:14:32'),
(956, 'de', 'login', 'User inactive', 'Benutzer inaktiv', '2021-01-06 15:14:32'),
(957, 'de', 'login', 'Username', 'Benutzername', '2021-01-06 15:14:32'),
(958, 'de', 'login', 'usernameexist', 'Benutzername bereits vorhanden!', '2021-01-06 15:14:32'),
(959, 'de', 'panel', 'About Us', 'Ueber Uns', '2023-01-03 19:44:32'),
(960, 'de', 'panel', 'Add following command to your cron tab', 'Folgendes Kommando zum Cronjob hinzufuegen', '2023-01-03 19:44:32'),
(961, 'de', 'panel', 'alsocheckfollowlink', 'Folgenden Link klicken, falls mehr Details benoetigt werden.', '2023-01-03 19:44:32'),
(962, 'de', 'panel', 'Check Directory', 'Verzeichnis prüfen', '2023-01-03 19:44:32'),
(963, 'de', 'panel', 'Cron Command', 'Cronjob Kommando', '2023-01-03 19:44:32'),
(964, 'de', 'panel', 'Directory Manager', 'Verzeichnis Manager', '2023-01-03 19:44:32'),
(965, 'de', 'panel', 'Edit My Profile', 'Profil bearbeiten', '2023-01-03 19:44:32'),
(966, 'de', 'panel', 'My Profile', 'Mein Profil', '2023-01-03 19:44:32'),
(967, 'de', 'panel', 'New Proxy', 'Neue Proxy', '2023-01-03 19:44:32'),
(968, 'de', 'panel', 'New User', 'Neuer Benutzer', '2023-01-03 19:44:32'),
(969, 'de', 'panel', 'New Website', 'Neue Webseite', '2023-01-03 19:44:32'),
(970, 'de', 'panel', 'Proxy Manager', 'Proxy Manager', '2023-01-03 19:44:32'),
(971, 'de', 'panel', 'Report Generation Manager', 'Berichterstellung Manager', '2023-01-03 19:44:32'),
(972, 'de', 'panel', 'Reports Manager', 'Berichte Manager', '2023-01-03 19:44:32'),
(973, 'de', 'panel', 'Seo Plugins Manager', 'SEO Erweiterungen Manager', '2023-01-03 19:44:32'),
(974, 'de', 'panel', 'Seo Tools Manager', 'SEO Tools Manager', '2023-01-03 19:44:32'),
(975, 'de', 'panel', 'System Settings', 'System Einstellungen', '2023-01-03 19:44:32'),
(976, 'de', 'panel', 'User Manager', 'Benutzer Manager', '2023-01-03 19:44:32'),
(977, 'de', 'panel', 'Website Manager', 'Webseiten Manager', '2023-01-03 19:44:32'),
(978, 'de', 'plugin', 'Edit Seo Plugin', 'SEO Erweiterungen bearbeiten', '2012-05-14 00:53:16'),
(979, 'de', 'plugin', 'Plugin Name', 'Name der Erweiterung', '2012-05-14 00:53:17'),
(980, 'de', 'plugin', 'Seo Plugin Details', 'SEO Erweiterung - Details', '2012-05-14 00:53:17'),
(981, 'de', 'proxy', 'Edit Proxy', 'Proxy bearbeiten', '2021-01-06 15:21:00'),
(982, 'de', 'proxy', 'Proxy Password', 'Proxy Passwort', '2021-01-06 15:21:00'),
(983, 'de', 'proxy', 'Proxy Username', 'Proxy Benutzername', '2021-01-06 15:21:00'),
(984, 'de', 'proxy', 'Proxyalreadyexist', 'Proxy bereits vorhanden!', '2021-01-06 15:21:00'),
(985, 'de', 'rank', 'enterurlproceed', '<b>Pro Zeile</b> eine URL angeben. Auf <b>Starten</b> klicken um Google und Alexa Rank zu prüfen', '2010-09-30 07:03:32'),
(986, 'de', 'rank', 'Google and Alexa Rank Reports', 'Google und Alexa Rank Berichte', '2010-09-30 07:03:32'),
(987, 'de', 'rank', 'Saved rank results of', 'Erfolgreich Ergebnisse gespeichert fuer', '2010-09-30 07:03:32'),
(988, 'de', 'saturation', 'clickproceedsaturation', '<b>Pro Zeile</b> eine URL angeben. Auf <b>Starten</b> klicken um Suchmaschinensichtbarkeit zu prüfen', '2010-09-30 07:05:34'),
(989, 'de', 'saturation', 'GenerateSaturationReports', 'Suchmaschinensichtbarkeits Berichte erstellen', '2010-09-30 07:05:34'),
(990, 'de', 'saturation', 'Quick Search Engine Saturation Checker', 'Schneller Suchmaschinensichtbarkeits Check', '2010-09-30 07:05:34'),
(991, 'de', 'saturation', 'Saved Search Engine Saturation results of', 'Erfolgreich Suchmaschinensichtbarkeits Egebnisse gespeichert für', '2010-09-30 07:05:34'),
(992, 'de', 'saturation', 'Search Engine Saturation Reports', 'Suchmaschinensichtbarkeits Berichte', '2010-09-30 07:05:34'),
(993, 'de', 'seotools', 'Automatic Submission', 'Automatische Eintragung', '2021-01-07 13:40:24'),
(994, 'de', 'seotools', 'backlink-checker', 'Backlink Checker', '2021-01-07 13:40:24'),
(995, 'de', 'seotools', 'Backlinks Reports', 'Backlink Berichte', '2021-01-07 13:40:24'),
(996, 'de', 'seotools', 'Check Submission Status', 'Eintragungsstatus prüfen', '2021-01-07 13:40:24'),
(997, 'de', 'seotools', 'clickgeneratereports', 'Auf <b>Starten</b> klicken, um Berichte zu erstellen', '2021-01-07 13:40:24'),
(998, 'de', 'seotools', 'Detailed Position Reports', 'Detaillierte Ranking Berichte', '2021-01-07 13:40:24'),
(999, 'de', 'seotools', 'directory-submission', 'Verzeichnis Eintragung', '2021-01-07 13:40:24'),
(1000, 'de', 'seotools', 'Featured Submission', 'Empfohlene Eintragung', '2021-01-07 13:40:24'),
(1001, 'de', 'seotools', 'Generate Backlinks Reports', 'Backlink Berichte erstellen', '2021-01-07 13:40:24'),
(1002, 'de', 'seotools', 'Generate Keyword Reports', 'Keyword Berichte erstellen', '2021-01-07 13:40:24'),
(1003, 'de', 'seotools', 'Generate Rank Reports', 'Rank Berichte erstellen', '2021-01-07 13:40:24'),
(1004, 'de', 'seotools', 'Generate Saturation Reports', 'Suchmaschinensichtbarkeits Berichte erstellen', '2021-01-07 13:40:24'),
(1005, 'de', 'seotools', 'Google Sitemap Generator', 'Google Sitemap Generator', '2021-01-07 13:40:24'),
(1006, 'de', 'seotools', 'Graphical Position Reports', 'Grafische Ranking Berichte', '2021-01-07 13:40:24'),
(1007, 'de', 'seotools', 'Keyword Position Summary', 'Keyword Ranking Zusammenfassung', '2021-01-07 13:40:24'),
(1008, 'de', 'seotools', 'keyword-position-checker', 'Keyword Ranking Checker', '2021-01-07 13:40:24'),
(1009, 'de', 'seotools', 'Keywords Manager', 'Keywords Manager', '2021-01-07 13:40:24'),
(1010, 'de', 'seotools', 'Quick Backlinks Checker', 'Schneller Backlink Check', '2021-01-07 13:40:24'),
(1011, 'de', 'seotools', 'Quick Position Checker', 'Schneller Ranking Check', '2021-01-07 13:40:24'),
(1012, 'de', 'seotools', 'Quick Rank Checker', 'Schneller Rank Ckeck', '2021-01-07 13:40:24'),
(1013, 'de', 'seotools', 'Quick Saturation Checker', 'Schneller Suchmaschinensichtbarkeits Ckeck', '2021-01-07 13:40:24'),
(1014, 'de', 'seotools', 'Rank Reports', 'Rank Berichte', '2021-01-07 13:40:24'),
(1015, 'de', 'seotools', 'rank-checker', 'Rank Checker', '2021-01-07 13:40:24'),
(1016, 'de', 'seotools', 'Saturation Reports', 'Sichtbarkeits Berichte', '2021-01-07 13:40:24'),
(1017, 'de', 'seotools', 'saturation-checker', 'Suchmaschinensichtbarkeit', '2021-01-07 13:40:24'),
(1018, 'de', 'seotools', 'sitemap-generator', 'Sitemap Generator', '2021-01-07 13:40:24'),
(1019, 'de', 'seotools', 'Skipped Directories', 'Übersprungene Verzeichnisse', '2021-01-07 13:40:24'),
(1020, 'de', 'seotools', 'Submission Reports', 'Eintragungs Berichte', '2021-01-07 13:40:24'),
(1021, 'de', 'seotools', 'User Access', 'Benutzer Zugriff', '2021-01-07 13:40:24'),
(1022, 'de', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Spende $100</b> und werde SEO Panel <b>Sponsor</b>.', '2021-01-08 13:28:43'),
(1023, 'de', 'settings', 'SP_CRAWL_DELAY', 'Pause zwischen Crawl Abfragen (in Sekunden)', '2021-01-08 13:28:43'),
(1024, 'de', 'settings', 'SP_DEFAULTLANG', 'Standard Sprache', '2021-01-08 13:28:43'),
(1025, 'de', 'settings', 'SP_DESCRIPTION', 'Seo Panel Beschreibung', '2021-01-08 13:28:43'),
(1026, 'de', 'settings', 'SP_ENABLE_PROXY', 'Proxy aktivieren', '2021-01-08 13:28:43'),
(1027, 'de', 'settings', 'SP_HOTLINKING', 'Hotlink Schutz für Grafiken aktiviert', '2021-01-08 13:28:43'),
(1028, 'de', 'settings', 'SP_KEYWORDS', 'SEO Panel Keywords', '2021-01-08 13:28:43'),
(1029, 'de', 'settings', 'SP_PAGINGNO', 'Anzahl an Einträgen pro Seite', '2021-01-08 13:28:43'),
(1030, 'de', 'settings', 'SP_TITLE', 'SEO Panel Titel', '2021-01-08 13:28:43'),
(1031, 'de', 'settings', 'SP_USER_GEN_REPORT', 'Benutzern erlauben Berichte zu erstellen', '2021-01-08 13:28:43'),
(1032, 'de', 'settings', 'SP_USER_REGISTRATION', 'Oberfläche der Benutzer Registrierung', '2021-01-08 13:28:43'),
(1033, 'de', 'settings', 'syssettingssaved', 'System Einstellungen erfolgreich gespeichert!', '2021-01-08 13:28:43'),
(1034, 'de', 'sitemap', 'Change frequency', 'Frequenz ändern', '2021-01-07 13:49:35'),
(1035, 'de', 'sitemap', 'clickproceedsitemap', 'Auf <b>Starten</b> klicken um Sitemap zu erstellen', '2021-01-07 13:49:35'),
(1036, 'de', 'sitemap', 'Download sitemap file from', 'Sitemap Datei herunterladen von', '2021-01-07 13:49:35'),
(1037, 'de', 'sitemap', 'Exclude Url', 'URL ausschließen', '2021-01-07 13:49:35'),
(1038, 'de', 'sitemap', 'processtaketime', 'Dieser Prozess kann einige Minuten in Anspruch nehmen, abhängig von der Anzahl der Links auf der Webseite. Bitte kurz gedulden.', '2021-01-07 13:49:35'),
(1039, 'de', 'sitemap', 'Sitemap Type', 'Sitemap Typ', '2021-01-07 13:49:35'),
(1040, 'de', 'user', 'Edit User', 'Benutzer bearbeiten', '2016-01-03 04:30:39'),
(1041, 'de', 'user', 'Saved My Profile Details', 'Profil Details gespeichert', '2016-01-03 04:30:39'),
(1042, 'de', 'website', 'Edit Website', 'Webseite bearbeiten', '2021-01-07 13:53:49'),
(1043, 'de', 'website', 'plscrtwebsite', 'Bitte erst Webseite erstellen um SEO Tools und Erweiterungen zu nutzen.', '2021-01-07 13:53:49'),
(1044, 'de', 'website', 'Website already exist', 'Webseite bereits vorhanden', '2021-01-07 13:53:49'),
(1045, 'de', 'website', 'yourwebalreday', 'Deine Webseite, falls bereits eine erstellt wurde.', '2021-01-07 13:53:49'),
(1046, 'de', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel - Alle Erweiterungen</h1> \r\n <p>\r\n Enthaelt die meissten vom SEO Panel Team entwickelten Erweiterungen fuer nur <font class="success bold"\r\nsize="14">$160</font> inklusive <b>Mitglieder Abonnement</b>,<b>Templates</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Hier klicken um zu bestellen</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li> \r\n <h1>Das Lokale-Suchmaschinen-Paket</h1> \r\n <p>\r\n Fuege <b>lokale Suchmaschinendomains</b> fuer google,yahoo,msn(<b>z.B: www.google.de,www.google.fr etc</b>) zum Seo Panel <b>Keyword Ranking Checker</b> hinzu, um das Ranking lokal zu analysieren.\r\n Um lokale Suchmaschinen-Pakete zu erhalten, bitte <a href="<?=SP_DONATE_LINK?>" target="_blank">spende</a> $10 oder mehr um SEO Panel zu verbessern.\r\n Bevor du spendest, nimm bitte <a href="<?=SP_CONTACT_LINK?>" target="_blank">Kontakt</a> auf und nenne uns die benoetigten Suchmaschinen Laenderkennzeichnungen.\r\n <br><br> \r\n Um <b>neue Suchmaschinen(z.B.:baidu.com)</b> hinzuzufuegen, nimm bitte <a href="<?=SP_CONTACT_LINK?>" target="_blank">Kontakt</a> auf oder oeffne ein Ticket im <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Support System</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Hier klicken um Kontakt aufzunehmen.</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Erweiterungen</h1> \r\n <p>\r\n Integriere <b>SEO Erweiterungen</b> in Seo Panel, um die <b>Features zu erweiteren</b> um Sie deinen Anforderungen anzupassen.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo Panel Erweiterungen</a> sind erhaeltlich von Seo Panel und Drittanbietern.\r\n Es ist auch leicht, selbst Erweiterungen fuer Seo Panel zu <b>entwickeln</b>.\r\n Du kannst deine eigene Erweiterung <a href="<?=SP_PLUGINSITE?>" target="_blank">uebermitteln</a> und wir werden es auf der webseite <b>veroeffentlichen</b>. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Hier klicken fuer Seo Panel Erweiterungen</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Kontakt</h1> \r\n <p>\r\n Nimm mit uns Kontakt auf, wenn Fragen zu <b>Seo Panel Tools, Erweiterungen, etc..</b> bestehen. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Hier klicken um Kontakt aufzunehmen.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n Fuer <b>technischen Support</b> vom Seo Panel Team.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Hier klicken um ein Support Ticken zu oeffnen.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Fehler berichten.</h1> \r\n <p>\r\n Berichte uns von <b>Fehlern</b> ueber <b>Seo panel Tools, Erweiterungen, etc. </b> durch klick auf diesen Link. \r\n Bitte unterstuetze uns, Seo Panel in der Zukunft zu verbessern. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Hier klicken um einen Fehler zu berichten.</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>\r\n', '2021-01-29 18:30:54'),
(1047, 'de', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Ressourcen</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Hilfe</h1> \r\n <p>\r\n Schau dir die <a href="<?=SP_HELP_LINK?>" target="_blank">Seo Panel Dokumentation</a> in der <b>Hilfestellung</b> an. Diese beinhaltet die <b>Dokumentation</b> ueber Seo Panel Tools, Erweiterungen und vieles mehr.\r\n <br>Dies ist der beste Platz im Internet um <b>Hilfe</b> fuer Seo Panel zu erhalten. Wir bitten darum im SEO Panel "help guide" darueber zu <b>berichten</b> falls Fehler entdeckt werden. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Hier klicken um zum Hilfe-Bereich zu gelangen.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n Der Platz um ueber das weltweit erste Open Source <b>Seo Control Panel</b> zu diskutieren. \r\n Der beste Platz um <b>Antworten</b> auf <b>deine Fragen</b> ueber Seo Panel zu finden.\r\n <br>Hier koennen auch <b>Erfahrungen ausgetauscht werden</b>. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Hier klicken um zum Seo Panel Forum zu gelangen.</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2021-01-29 18:30:54'),
(1048, 'de', 'support', 'support_cont3', '<fieldset>\r\n<legend>Fuer SEO Panel spenden</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Spende fuer die zukuenftige SEO Panel Entwicklung - Das erste Open Source Seo Control Panel weltweit.</h1> \r\n <p>\r\n <b>Spende</b> an Seo Panel um die weltweit erste Open Source SEO Software zu unterstuetzen.\r\n Es ist geplant in der Zukunft weitere Features <b>hinzuzufügen und zu verbessern</b> . \r\n <br>Nur mit dem <b>Support</b> unserer Benutzer ist es moeglich unsere <b>Ziele</b> zu erreichen.\r\n Bist du der Meinung, Seo Panel ist <b>nuetzlich</b> fuer dich, gib bitte eine kleine Spende ab.\r\n <br>Wir werden deinen Namen und deine Webseite auf unserer <a href="<?=SP_DONATE_LINK?>" target="_blank">Spendenseite</a> <b>veroeffentlichen</b> \r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Hier klicken um fuer Seo Panel zu spenden</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2021-01-29 18:30:54'),
(1049, 'en', 'settings', 'seopanel_title', 'Seo Panel: World''s first open source seo control panel for managing multiple web sites', '2018-01-23 00:59:29'),
(1050, 'en', 'settings', 'seopanel_description', 'A complete free control panel for managing search engine optimization of your websites. It containing lots of hot seo tools to increase and track the performace your websites. Its an open source software and also you can develop your own seo plugins for seo panel.', '2018-01-23 00:59:29'),
(1051, 'de', 'settings', 'seopanel_description', 'Ein vollkommen kostenloses Kontrollzentrum zur Verwaltung der Suchmaschinenoptimierung deiner\r\nWebseiten. Es beinhaltet die wichtigsten SEO Tools um die Leistung deiner Webseiten zu analysieren und verbessern.\r\nEs handelt sich um Open Source Software, du kannst also selbst SEO Erweiterungen für dein SEO Panel entwickeln.', '2021-01-08 13:28:43'),
(1052, 'de', 'settings', 'seopanel_title', 'SEO Panel: Das weltweit erste Open Source Kontrollzentrum zur Verwaltung mehrerer Webseiten.', '2021-01-08 13:28:43'),
(1053, 'es', 'settings', 'seopanel_description', 'Un completo panel de control gratuito para la gestión de la optimización para buscadores de su sitios. Que contiene un montón de herramientas seo de gran utilidad para realizar el seguimiento del rendimiento de su sitios web. Se trata de un software de código abierto y también ud. puede desarrollar sus propios plugins para el panel de control.', '2012-05-12 15:03:05'),
(1054, 'es', 'settings', 'seopanel_title', 'Seo Panel: Primero programa del mundo open source para la gestión Seo de varios sitios web', '2012-05-12 15:03:05'),
(1055, 'fr', 'settings', 'seopanel_description', 'Un outil de contrôle complet, gratuit, pour gérer le référencement de vos sites internet. SEO Panel inclut de nombreux outils SEO pour suivre et améliorer les performances de vos sites. Il s''agit d''un logiciel open source pour lequel vous pouvez développer vos propres extensions.', '2019-03-28 18:39:30'),
(1056, 'fr', 'settings', 'seopanel_title', 'SEO Panel: le premier outil de contrôle de référencement multisite open source au monde', '2019-03-28 18:39:30'),
(1840, 'nl', 'common', 'Invalid code entered', 'Ongeldige code ingevoerd', '2019-05-25 22:06:08'),
(1841, 'nl', 'common', 'Invalid email address entered', 'Ongeldig e-mailadres ingevoerd', '2019-05-25 22:06:08'),
(1839, 'nl', 'common', 'Invalid characters', 'Ongeldige karakters', '2019-05-25 22:06:08'),
(1838, 'nl', 'common', 'Inactive', 'Inactief', '2019-05-25 22:06:08'),
(1837, 'nl', 'common', 'Inactivate', 'Deactiveren', '2019-05-25 22:06:08'),
(1836, 'nl', 'common', 'Id', 'Id', '2019-05-25 22:06:08'),
(1835, 'nl', 'common', 'hidenews', 'Seo Panel Nieuws verbergen', '2019-05-25 22:06:08'),
(1834, 'nl', 'common', 'help', 'Help', '2019-05-25 22:06:08'),
(1833, 'nl', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:06:08'),
(1832, 'nl', 'common', 'Found', 'Gevonden', '2019-05-25 22:06:08'),
(1831, 'nl', 'common', 'forum', 'Forum', '2019-05-25 22:06:08'),
(1830, 'nl', 'common', 'failed', 'mislukt', '2019-05-25 22:06:08'),
(1829, 'nl', 'common', 'entrynotvalid', 'De invoer is niet correct', '2019-05-25 22:06:08'),
(1828, 'nl', 'common', 'Entry cannot be blank', 'Invoer mag niet leeg zijn', '2019-05-25 22:06:08'),
(1827, 'nl', 'common', 'Donate', 'Doneren', '2019-05-25 22:06:08'),
(1826, 'nl', 'common', 'Directory', 'Directory', '2019-05-25 22:06:08'),
(1825, 'nl', 'common', 'Details', 'Details', '2019-05-25 22:06:08'),
(1824, 'nl', 'common', 'Crawl Meta Data', 'Meta-Data opvragen', '2019-05-25 22:06:08'),
(1823, 'nl', 'common', 'Country', 'Land', '2019-05-25 22:06:08'),
(1822, 'nl', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Alle rechten voorbehouden', '2019-05-25 22:06:08'),
(1821, 'nl', 'common', 'contact', 'Contact', '2019-05-25 22:06:08'),
(1820, 'nl', 'common', 'Category', 'Categorie', '2019-05-25 22:06:08'),
(1819, 'nl', 'common', 'All', 'Alle', '2019-05-25 22:06:08'),
(1818, 'nl', 'common', 'Alexa Rank', 'Alexa Rank', '2019-05-25 22:06:08'),
(1817, 'nl', 'common', 'Admin Panel', 'Admin Instellingen', '2019-05-25 22:06:08'),
(2053, 'nl', 'settings', 'seopanel_description', 'Een compleet gratis bedieningspaneel voor het beheren van de zoekmachine optimalisatie van uw websites. Het bevat vele Seo tools om de prestaties van uw websites te verbeteren en op te volgen. Het is open source software en u kunt ook uw eigen Seo plugins voor Seo panel ontwikkelen.', '2014-01-08 02:51:05'),
(1816, 'nl', 'common', 'Activate', 'Activeren', '2019-05-25 22:06:08'),
(1815, 'nl', 'common', 'Action', 'Actie', '2019-05-25 22:06:08'),
(1814, 'nl', 'button', 'Submit', 'Versturen', '2014-01-09 00:25:07'),
(1813, 'nl', 'button', 'Skip', 'Overslaan', '2014-01-09 00:25:07'),
(1812, 'nl', 'button', 'Show Records', 'Toon Rapporten', '2014-01-09 00:25:07'),
(1811, 'nl', 'button', 'Show Details', 'Toon Details', '2014-01-09 00:25:07'),
(1810, 'nl', 'button', 'Reload', 'Herladen', '2014-01-09 00:25:07'),
(1809, 'nl', 'button', 'Proceed', 'Ga verder', '2014-01-09 00:25:07'),
(1808, 'nl', 'button', 'Check Status', 'Status controleren', '2014-01-09 00:25:07'),
(1807, 'nl', 'button', 'Cancel', 'Annuleren', '2014-01-09 00:25:07'),
(1806, 'nl', 'backlink', 'Saved backlink results of', 'Backlink resultaten opgeslagen voor', '2010-10-22 15:58:05'),
(1805, 'nl', 'backlink', 'clickproceedbacklink', 'Geef één URL <b>per regel</b>. Klik op <b>Ga verder</b> om de backlinks te controleren.', '2010-10-22 15:58:05'),
(1804, 'nl', 'label', 'wantproceed', 'Bent u zeker dat u wilt doorgaan?', '2014-01-08 02:37:43'),
(1803, 'nl', 'common', 'No', 'Nr.', '2019-05-25 22:06:08'),
(1802, 'nl', 'common', 'Yes', 'Ja', '2019-05-25 22:06:08'),
(1801, 'nl', 'common', 'Select', 'Selecteer', '2019-05-25 22:06:08'),
(1800, 'nl', 'common', 'Delete', 'Verwijderen', '2019-05-25 22:06:08'),
(1799, 'nl', 'common', 'Edit', 'Bewerken', '2019-05-25 22:06:08'),
(1794, 'nl', 'common', 'lang', 'Taal', '2019-05-25 22:06:08'),
(1795, 'nl', 'common', 'Active', 'Actief', '2019-05-25 22:06:08'),
(1796, 'nl', 'common', 'Total', 'Totaal', '2019-05-25 22:06:08'),
(1797, 'nl', 'common', 'Date', 'Datum', '2019-05-25 22:06:08'),
(1798, 'nl', 'common', 'Rank', 'Rank', '2019-05-25 22:06:08'),
(1845, 'nl', 'common', 'My Account', 'Mijn Account', '2019-05-25 22:06:08'),
(1844, 'nl', 'common', 'Keywords', 'Zoekwoorden', '2019-05-25 22:06:08'),
(1843, 'nl', 'common', 'Keyword', 'Zoekwoord', '2019-05-25 22:06:08'),
(1842, 'nl', 'common', 'Invalid value', 'Ongeldige waarde', '2019-05-25 22:06:08'),
(1131, 'it', 'backlink', 'clickproceedbacklink', 'Inserisci gli Indirizzi Web <b>Uno per riga</b>. Clicca su <b>Continua</b> per controllare i Backlink', '2011-10-15 23:15:58'),
(1132, 'it', 'backlink', 'Saved backlink results of', 'Salva risultati backlink per', '2011-10-15 23:15:59'),
(1133, 'it', 'button', 'Cancel', 'Cancella', '2014-01-09 00:28:28'),
(1134, 'it', 'button', 'Check Status', 'Verifica stato', '2014-01-09 00:28:28'),
(1135, 'it', 'button', 'Proceed', 'Procedi', '2014-01-09 00:28:28'),
(1136, 'it', 'button', 'Reload', 'Ricarica', '2014-01-09 00:28:28'),
(1137, 'it', 'button', 'Show Details', 'Mostra dettagli', '2014-01-09 00:28:28'),
(1138, 'it', 'button', 'Show Records', 'Mostra records', '2014-01-09 00:28:28'),
(1139, 'it', 'button', 'Skip', 'Salta', '2014-01-09 00:28:28'),
(1140, 'it', 'button', 'Submit', 'Invia', '2014-01-09 00:28:28'),
(1141, 'it', 'common', 'Action', 'Azione', '2022-07-11 15:16:48'),
(1142, 'it', 'common', 'Activate', 'Attivare', '2022-07-11 15:16:48'),
(1143, 'it', 'common', 'Active', 'Attivo', '2022-07-11 15:16:48'),
(1144, 'it', 'common', 'Admin Panel', 'Pannello Admin', '2022-07-11 15:16:48'),
(1145, 'it', 'common', 'Alexa Rank', 'Alexa Rank', '2022-07-11 15:16:48'),
(1146, 'it', 'common', 'All', 'Tutto', '2022-07-11 15:16:48'),
(1147, 'it', 'common', 'Category', 'Categoria', '2022-07-11 15:16:48'),
(1148, 'it', 'common', 'contact', 'Contatto', '2022-07-11 15:16:48'),
(1149, 'it', 'common', 'copyright', 'Copyright © [year] www.seopanel.in All rights reserved', '2022-07-11 15:16:48'),
(2885, 'ro', 'panel', 'About Us', 'Despre Noi', '2012-05-19 01:04:43'),
(2886, 'ro', 'panel', 'Add following command to your cron tab', 'Adauga urmatoare comanda la fila cron', '2012-05-19 01:04:43'),
(1150, 'it', 'common', 'Country', 'Paese', '2022-07-11 15:16:48'),
(1151, 'it', 'common', 'Crawl Meta Data', 'Recupera Meta Data ', '2022-07-11 15:16:48'),
(1152, 'it', 'common', 'Date', 'Data', '2022-07-11 15:16:48'),
(1153, 'it', 'common', 'Delete', 'Cancella', '2022-07-11 15:16:48'),
(1154, 'it', 'common', 'Details', 'Dettagli', '2022-07-11 15:16:48'),
(1155, 'it', 'common', 'Directory', 'Directory', '2022-07-11 15:16:48'),
(1156, 'it', 'common', 'Donate', 'Dona', '2022-07-11 15:16:48'),
(1157, 'it', 'common', 'Edit', 'Modifica', '2022-07-11 15:16:48'),
(1158, 'it', 'common', 'Entry cannot be blank', 'La voce non può essere vuota', '2022-07-11 15:16:48'),
(1159, 'it', 'common', 'entrynotvalid', 'La voce inserita non sembra essere valida', '2022-07-11 15:16:48'),
(1160, 'it', 'common', 'failed', 'fallito', '2022-07-11 15:16:48'),
(1161, 'it', 'common', 'forum', 'Forum', '2022-07-11 15:16:48'),
(1162, 'it', 'common', 'Found', 'Trovato', '2022-07-11 15:16:48'),
(1163, 'it', 'common', 'Google Pagerank', 'Google Pagerank', '2022-07-11 15:16:48'),
(1164, 'it', 'common', 'help', 'Aiuto', '2022-07-11 15:16:48'),
(1165, 'it', 'common', 'hidenews', 'Nasconti il pannello news seo', '2022-07-11 15:16:48'),
(1166, 'it', 'common', 'Id', 'ID', '2022-07-11 15:16:48'),
(1167, 'it', 'common', 'Inactivate', 'Inattività', '2022-07-11 15:16:48'),
(1168, 'it', 'common', 'Inactive', 'Inattivo', '2022-07-11 15:16:48'),
(1169, 'it', 'common', 'Invalid characters', 'Caratteri non validi', '2022-07-11 15:16:48'),
(1170, 'it', 'common', 'Invalid code entered', 'Codice inserito non valido', '2022-07-11 15:16:48'),
(1171, 'it', 'common', 'Invalid email address entered', 'Indirizzo email inserito non valido', '2022-07-11 15:16:48'),
(1172, 'it', 'common', 'Invalid value', 'Valore non valido', '2022-07-11 15:16:48'),
(1173, 'it', 'common', 'Keyword', 'Keyword', '2022-07-11 15:16:48'),
(1174, 'it', 'common', 'Keywords', 'Keywords', '2022-07-11 15:16:48'),
(1175, 'it', 'common', 'lang', 'Lingua', '2022-07-11 15:16:48'),
(1176, 'it', 'common', 'My Account', 'Il mio account', '2022-07-11 15:16:48'),
(1177, 'it', 'common', 'Name', 'Nome', '2022-07-11 15:16:48'),
(1178, 'it', 'common', 'No', 'No', '2022-07-11 15:16:48'),
(1179, 'it', 'common', 'No Keywords Found', 'Keywords non trovate', '2022-07-11 15:16:48'),
(1180, 'it', 'common', 'No Records Found', 'Campo non trovato', '2022-07-11 15:16:48'),
(1181, 'it', 'common', 'noactivetools', 'Non sono stati trovati strumenti seo attivi!', '2022-07-11 15:16:48'),
(1182, 'it', 'common', 'nowebsites', 'Nessun sito web trovato', '2022-07-11 15:16:48'),
(1183, 'it', 'common', 'password632', 'La lunghezza della password deve essere tra i 6 e i 32 caratteri', '2022-07-11 15:16:48'),
(1184, 'it', 'common', 'passwordnotmatch', 'La password non corrisponde', '2022-07-11 15:16:48'),
(1185, 'it', 'common', 'Period', 'Periodo', '2022-07-11 15:16:48'),
(1186, 'it', 'common', 'Priority', 'Priorità', '2022-07-11 15:16:48'),
(1187, 'it', 'common', 'Rank', 'Rank', '2022-07-11 15:16:48'),
(1188, 'it', 'common', 'Reports', 'Report', '2022-07-11 15:16:48'),
(1189, 'it', 'common', 'Results', 'Risultati', '2022-07-11 15:16:48'),
(1190, 'it', 'common', 'Search Engine', 'Motore di ricerca', '2022-07-11 15:16:48'),
(1191, 'it', 'common', 'Select', 'Seleziona', '2022-07-11 15:16:48'),
(1192, 'it', 'common', 'Seo Plugins', 'Plugins seo', '2022-07-11 15:16:48'),
(1193, 'it', 'common', 'Seo Tools', 'Strumenti seo', '2022-07-11 15:16:48'),
(1194, 'it', 'common', 'Sign out', 'Esci', '2022-07-11 15:16:48'),
(1195, 'it', 'common', 'Sign Up', 'Iscriviti', '2022-07-11 15:16:48'),
(1196, 'it', 'common', 'signin', 'Entra', '2022-07-11 15:16:48'),
(1197, 'it', 'common', 'Status', 'Stato', '2022-07-11 15:16:48'),
(1198, 'it', 'common', 'Support', 'Supporto', '2022-07-11 15:16:48'),
(1199, 'it', 'common', 'Total', 'Totale', '2022-07-11 15:16:48'),
(1200, 'it', 'common', 'Url', 'Url', '2022-07-11 15:16:48'),
(1201, 'it', 'common', 'User', 'Utente', '2022-07-11 15:16:48'),
(1202, 'it', 'common', 'User Panel', 'Pannello utente', '2022-07-11 15:16:48'),
(1203, 'it', 'common', 'Website', 'Sito web', '2022-07-11 15:16:48'),
(1204, 'it', 'common', 'Yes', 'Si', '2022-07-11 15:16:48'),
(1205, 'it', 'directory', 'Add back to directory list', 'Aggiungi alla fine della lista directory', '2012-11-09 00:50:02'),
(1206, 'it', 'directory', 'Approved', 'Approvato', '2012-11-09 00:50:02'),
(1207, 'it', 'directory', 'Captcha', 'Verifica umana', '2012-11-09 00:50:02'),
(1208, 'it', 'directory', 'categorynote', 'Categorie, separare con una virgola in base alla priorità. Partire con la categoria con maggiore priorità.', '2012-11-09 00:50:02'),
(1209, 'it', 'directory', 'Check Directory Status', 'Verifica stato directory', '2012-11-09 00:50:02'),
(1210, 'it', 'directory', 'Check Directory Submission Status', 'Verifica stato immissione directory', '2012-11-09 00:50:02'),
(1211, 'it', 'directory', 'clicktoproceeddirsts', 'Clicca su <b>Procedi</b> per verificare lo stato delle directory', '2012-11-09 00:50:02'),
(1212, 'it', 'directory', 'Confirmation', 'Conferma', '2012-11-09 00:50:02'),
(1213, 'it', 'directory', 'desnote', 'Alcune directory richiedono un minimo di 150 caratteri per il campo della descrizione.', '2012-11-09 00:50:02'),
(1214, 'it', 'directory', 'Directories with out captcha', 'Directory senza la verifica umana', '2012-11-09 00:50:02'),
(1215, 'it', 'directory', 'Directory Submission Reports', 'Resoconto immissione directory', '2012-11-09 00:50:02'),
(1216, 'it', 'directory', 'Enter the code shown', 'Inserisci il codice mostrato', '2012-11-09 00:50:02'),
(1217, 'it', 'directory', 'nocatnote', 'La categoria inserita non è stata trovata nella pagina di inserimento. Per cortesia cliccare su <b>Ricarica</b> oppure <b>Salta</b>', '2012-11-09 00:50:02'),
(1218, 'it', 'directory', 'nodirnote', 'Nessuna directory <b>Attiva</b> trovata', '2012-11-09 00:50:02'),
(1219, 'it', 'directory', 'nosuccessnote', 'Non hai ricevuto il messaggio di successo. Per cortesia verifica la tua mail per trovare il messagigo di conferma.', '2012-11-09 00:50:02'),
(1220, 'it', 'directory', 'optionalnote', 'Titoli e descrizioni opzionali da inviare in modalità random nel titolo e nella descrizione delle directory per un miglior risultato.', '2012-11-09 00:50:02'),
(1221, 'it', 'directory', 'Owner Email', 'Email del proprietario', '2012-11-09 00:50:02'),
(1222, 'it', 'directory', 'Owner Name', 'Nome del proprietario', '2012-11-09 00:50:02'),
(1223, 'it', 'directory', 'Pending', 'In attesa di approvazione', '2012-11-09 00:50:02'),
(1224, 'it', 'directory', 'Please select a website to proceed', 'Per cortesia seleziona il sito web per procedere', '2012-11-09 00:50:02'),
(1225, 'it', 'directory', 'selectwebsiteproceed', 'Seleziona un <b>Sito web</b> per <b>Procedere</b> con l\\''invio nella directory.<br>Verifica l\\''invio nelle<b>directory senza verifica umana</b> ', '2012-11-09 00:50:02'),
(1226, 'it', 'directory', 'selectwebsiteschecksub', 'Seleziona un <b>Sito web</b> per <b>Procedere</b> con la verifica dell\\''immssione nelle directory', '2012-11-09 00:50:02'),
(1227, 'it', 'directory', 'Semi Automatic Directory Submission Tool', 'Strumento per l\\''invio semi automatico nelle directory', '2012-11-09 00:50:02'),
(1228, 'it', 'directory', 'spamemailnote', 'Alcune directory potrebbero effettuare invii spam, ti consigliamo di non utilizzare il tuo indirizzo email principale.', '2012-11-09 00:50:02'),
(1229, 'it', 'directory', 'Submission Details', 'Dettagli invio', '2012-11-09 00:50:02'),
(1230, 'it', 'directory', 'Submit Description', 'Inserire descrizione', '2012-11-09 00:50:02'),
(1231, 'it', 'directory', 'Submit Keywords', 'Inserire keywords', '2012-11-09 00:50:02'),
(1232, 'it', 'directory', 'Submit Title', 'Inserire titolo', '2012-11-09 00:50:02'),
(1233, 'it', 'directory', 'Website Category', 'Categoria sito web', '2012-11-09 00:50:02'),
(1234, 'it', 'directory', 'Website Url', 'Url del sito web', '2012-11-09 00:50:02'),
(1235, 'it', 'home', 'Account Summary', 'Sommario account', '2022-07-11 15:16:33'),
(1236, 'it', 'home', 'Backlinks', 'Backlinks', '2022-07-11 15:16:33'),
(1237, 'it', 'home', 'Directory Submission', 'Immissione directory', '2022-07-11 15:16:33'),
(39011, 'zh', 'review', 'Review Link Details', '评论链接详情', '2026-01-19 22:58:50'),
(39012, 'en', 'review', 'No review data available', 'No review data available. <a href="seo-tools.php?menu_sec=review-manager">Add review links</a> to start tracking your reviews and ratings.', '2026-01-19 22:58:50'),
(39013, 'ar', 'review', 'No review data available', 'لا توجد بيانات المراجعات. <a href="seo-tools.php?menu_sec=review-manager">أضف روابط المراجعات</a> لبدء تتبع مراجعاتك وتقييماتك.', '2026-01-19 22:58:50'),
(39014, 'bg', 'review', 'No review data available', 'Няма налични данни за отзиви. <a href="seo-tools.php?menu_sec=review-manager">Добавете връзки за отзиви</a>, за да започнете да следите вашите отзиви и оценки.', '2026-01-19 22:58:50'),
(39015, 'bs', 'review', 'No review data available', 'Nema dostupnih podataka o recenzijama. <a href="seo-tools.php?menu_sec=review-manager">Dodajte linkove recenzija</a> da biste počeli pratiti svoje recenzije i ocjene.', '2026-01-19 22:58:50'),
(39016, 'ca', 'review', 'No review data available', 'No hi ha dades de ressenyes disponibles. <a href="seo-tools.php?menu_sec=review-manager">Afegiu enllaços de ressenyes</a> per començar a fer el seguiment de les vostres ressenyes i valoracions.', '2026-01-19 22:58:50'),
(1241, 'it', 'home', 'Pages Indexed', 'Pagine indicizzate', '2022-07-11 15:16:33'),
(1242, 'it', 'home', 'Ranks', 'Ranks', '2022-07-11 15:16:33'),
(1243, 'it', 'home', 'SiteNameUrl', 'Nome sito/Url', '2022-07-11 15:16:33'),
(1244, 'it', 'home', 'Website Statistics', 'Statistiche sito web', '2022-07-11 15:16:33'),
(1245, 'pl', 'website', 'Edit Website', 'Edytuj Stronę', '2010-10-09 09:52:58'),
(1246, 'pl', 'website', 'plscrtwebsite', 'Proszę utworzyć Stronę zanim będziesz mógł używać Narzędzi seo i Pluginów seo.', '2010-10-09 09:52:58'),
(1247, 'pl', 'website', 'Website already exist', 'Taka Strona już istnieje', '2010-10-09 09:52:58'),
(1248, 'pl', 'website', 'yourwebalreday', 'twoją Stronę jeśli już ją stworzyłeś.', '2010-10-09 09:52:58'),
(1249, 'pl', 'user', 'Edit User', 'Edytuj Użytkownika', '2010-10-09 09:53:49'),
(1250, 'pl', 'user', 'Saved My Profile Details', 'Zapisano Profil', '2010-10-09 09:53:49'),
(1251, 'pl', 'support', 'support_cont1', '<fieldset> \r\n<legend>System Wsparcia Seo Panel</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>Pakiet 1000 Katalogów</h1> \r\n <p> \r\n Dostarczamy <b>1000 darmowych aktywnych i zweryfikowanych</b> katalogów internetowych w jednym pakiecie, gotowe do dodania do Twojego panelu Seo <b>Narzędzia do submisji Seo</b>. \r\n Pomoże Ci to <b>powiększyć liczbę backlinków</b> twoich Stron. \r\n Właściwie to lista 1000 Katalogów jest <b>wprowadzona</b> aby zebrać trochę pieniędzy na <b>rozwijanie funkcjonalności</b> Seo Panel. \r\n Aby otrzymać listę 1000 internetowych Katalogów prosimy <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">o złożenie donacji</a>\r\n$10 lub więcej aby pomóc nam rozwinąć funkcjonalność Seo Panel. \r\n Jeżeli masz jakieś pytania dotyczące pakietu 1000 Katalogów, prosimy <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">o kontakt</a> lub utwórz pytanie <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">w systemie wsparcia</a>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Otwórz link aby złożyć donację dla Seo Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Lokalny pakiet Wyszukiwarek</h1> \r\n <p> \r\n Dodaj <b>lokalne wyszukiwarki</b> google,yahoo,msn(<b>np: www.google.de,www.google.fr\r\nitd.</b>) do Seo Panel <b>sprawdzenie pozycji Keyword\\''ów</b>, aby śledzić wydajność twoich Stron w lokalnych wyszukiwarkach. \r\n Aby otrzymać pakiet lokalnych wyszukiwarek (w zależności od twoich wymagań) prosimy <a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">o donację</a> $10 lub więcej aby pomóc w rozwoju funkcjonalności Seo Panel. \r\n Przed złożeniem donacji, prosimy <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">o kontakt</a> aby powiadomić nas o żądanej liście lokalnych wyszukiwarek. \r\n <br><br> \r\n Zawsze dodawaj <b>nowe wyszukiwarki (np:baidu.com)</b> do Sprawdzania pozycji Keyword\\''ów w Seo Panel,\r\nprosimy <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">o kontakt</a> lub utworzenie pytania w <a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">systemie wsparcia</a>. \r\n </p> \r\n <p class=\\"visit\\"> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Otwórz link aby skontaktować się z nami</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Pluginy Seo Panel</h1> \r\n <p> \r\n Dodaj <b>pluginy seo</b> do Twojego Seo Panel by <b>rozszerzyć funkcjonalność</b> według twoich wymagań. \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Pluginy Seo Panel</a> są dostarczane przez Seo Panel oraz zewnętrznych źródeł. \r\n Możesz także równie łatwo <b>tworzyć</b> pluginy Seo dla Twojego Seo Panel. \r\n Możesz także <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">submitować</a> twoje pluginy do Seo Panel a my je <b>opublikujemy</b>na naszej stronie po uprzednim <b>zatwierdzeniu</b>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Otwórz link aby sciągnąć pluginy Seo Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Kontakt</h1> \r\n <p> \r\n Skontaktuj się z Nami jeśli masz pytanie dotyczące <b>Narzędzi Seo Panel, pluginów oraz funkcjonalności itp.</b> prze użycie poniższego linka. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Otwórz link aby skontaktować się z Nami</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>System Zapytań</h1> \r\n <p> \r\n Aby uzyskać <b>pomoc techniczną</b> od teamu Seo Panel odnośnie instalacji i ustawień Narzędzi Seo Panel, pluginów i funkcjonalności</b>. Np: Aby ustawić zadania Cron dla automatycznego sprawdzania pozycji Keyword\\''ów. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Otwórz link aby utworzyć zapytanie</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Raportowanie błędów</h1> \r\n <p> \r\n Raportuj <b>błędy</b> w <b>Narzędziach Seo Panel, pluginach i funkcjonalności itp.</b> używając poniższego linka. \r\n Prosimy o pomoc w usprawnieniu funkcjonalności w nowych wersjach. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Otwórz link aby raportować błąd</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2010-10-25 10:38:20'),
(1252, 'pl', 'support', 'support_cont2', '<fieldset> \r\n<legend>Seo Panel Zasoby Online</legend> \r\n<ul class=\\"infobox\\"> \r\n \r\n <li> \r\n <h1>Pomoc Użytkownika Seo Panel</h1> \r\n <p> \r\n Dokumentacja Seo Panel jest dostępna na <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\"> w\r\n<b>Pomocy Użytkownika</b></a>, zawiera ona <b>dokumentację</b> Narzędzi Seo Panel, plugin\\''ów , i funkcjonalności. \r\n <br>To jest najlepsze miejsce w internecie aby <b>znaleźć pomoc</b> o Seo Panel. mamy nadzieję że pomożesz \r\n<b>udoskonalić</b> Pomoc Użytkownika, jeśli znajdziesz jakiś błąd lub brak czegoś. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Zobacz Pomoc Użytkownika Seo Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Forum Seo Panel</h1> \r\n <p> \r\n To miejsce do dyskusji o pierwszym na świecie opensource\\''owym <b> panelem kontrolym seo</b>. \r\n To najlepsze miejsce by znaleźć <b>odpowiedź</b> na <b>Twoje pytania</b> o Seo Panel. \r\n <br>Możesz także <b>dzielić się</b> twoim <b>doświadczeniem</b> z użytkowanie Seo Panel do optymalizacji twoich Stron. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Odwiedź forum Seo Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2010-10-25 10:38:20');
INSERT INTO `texts` VALUES
(1253, 'pl', 'support', 'support_cont3', '<fieldset> \r\n<legend>Złóż donację dla Seo Panel</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>Złóż donację dla Seo Panel - Pierwszy na świecie Open source\\''owy panel kontrolny seo</h1> \r\n <p> \r\n <b>Złóż donację</b> dla Seo Panel aby wesprzeć pierwszy na świecie open source\\''owy panel kontrolny seo. \r\n Planujemy <b>zwiększać i ulepszać</b> funkcjonalość Seo Panel w przyszłości. \r\n <br>Tylko z Twoim <b>wsparciem</b> możemy osiągnąć nasz <b>cel</b>. \r\n Jeżeli uważasz że Seo Panel jest dla Ciebie <b>cenny</b>, prosimy o donację jakiejkolwiek kwoty dla Seo Panel. \r\n <br>W zamian <b>opublikujemy</b> Twoje Nazwisko i adres twojej strony na <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">stronie donacji</a>, jak tylko otrzymamy donację. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Otwórz tą linkę i złóż donację dla Seo Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2010-10-25 10:38:20'),
(1254, 'pl', 'sitemap', 'Change frequency', 'Zmień częstotliwość', '2010-10-09 10:26:35'),
(1255, 'pl', 'sitemap', 'clickproceedsitemap', 'Kliknij na <b>Proceed</b> aby utworzyć mapę Strony', '2010-10-09 10:26:35'),
(1256, 'pl', 'sitemap', 'Download sitemap file from', 'Ściągnij mapę Strony', '2010-10-09 10:26:35'),
(1257, 'pl', 'sitemap', 'Exclude Url', 'Wyklucz Url', '2010-10-09 10:26:35'),
(1258, 'pl', 'sitemap', 'processtaketime', 'Ten proces może trochę potrwać w zależności od ilości linków na Twojej stronie. Proszę czekać aż mapa zostanie wygenerowana.', '2010-10-09 10:26:35'),
(1259, 'pl', 'sitemap', 'Sitemap Type', 'Typ mapy Strony', '2010-10-09 10:26:35'),
(1260, 'pl', 'login', 'Confirm Password', 'Potwierdź hasło', '2014-01-18 00:04:15'),
(1261, 'pl', 'login', 'Create my account', 'Utwórz moje konto', '2014-01-18 00:04:15'),
(1262, 'pl', 'login', 'Create New Account', 'Utwórz nowe konto', '2014-01-18 00:04:15'),
(1263, 'pl', 'login', 'Email', 'Email', '2014-01-18 00:04:15'),
(1264, 'pl', 'login', 'emailexist', 'Ten email jest już używany!', '2014-01-18 00:04:15'),
(1265, 'pl', 'login', 'Enter the code as it is shown', 'Wprowadź kod', '2014-01-18 00:04:15'),
(1266, 'pl', 'login', 'First Name', 'Imię', '2014-01-18 00:04:15'),
(1267, 'pl', 'login', 'Last Name', 'Nazwisko', '2014-01-18 00:04:15'),
(1268, 'pl', 'login', 'Login', 'Login', '2014-01-18 00:04:15'),
(1269, 'pl', 'login', 'Login incorrect', 'Błędny login', '2014-01-18 00:04:15'),
(1270, 'pl', 'login', 'newaccountsuccess', 'Nowe konto zostało utworzone', '2014-01-18 00:04:15'),
(1271, 'pl', 'login', 'Password', 'Hasło', '2014-01-18 00:04:15'),
(1272, 'pl', 'login', 'Password incorrect', 'Błędne hasło', '2014-01-18 00:04:15'),
(1273, 'pl', 'login', 'Register', 'Rejestruj', '2014-01-18 00:04:15'),
(1274, 'pl', 'login', 'Sign in to your account', 'Zaloguj się na swoje konto', '2014-01-18 00:04:15'),
(1275, 'pl', 'login', 'User inactive', 'Użytkownik nie jest aktywny', '2014-01-18 00:04:15'),
(1276, 'pl', 'login', 'Username', 'Użytkownik', '2014-01-18 00:04:15'),
(1277, 'pl', 'login', 'usernameexist', 'Użytkownik o tej nazwie juz istnieje!', '2014-01-18 00:04:15'),
(1278, 'pl', 'label', 'already exist', 'już istnieje', '2014-05-12 00:04:08'),
(1279, 'pl', 'label', 'Authentication', 'Autentykacja', '2014-05-12 00:04:08'),
(1280, 'pl', 'label', 'Author', 'Autor', '2014-05-12 00:04:08'),
(1281, 'pl', 'label', 'Click Here', 'Kliknij tutaj', '2014-05-12 00:04:08'),
(1282, 'pl', 'label', 'Cron', 'Cron', '2014-05-12 00:04:08'),
(1283, 'pl', 'label', 'Description', 'Opis', '2014-05-12 00:04:08'),
(1284, 'pl', 'label', 'Developers', 'Deweloperzy', '2014-05-12 00:04:08'),
(1285, 'pl', 'label', 'Download', 'Download', '2014-05-12 00:04:08'),
(1286, 'pl', 'label', 'Installation', 'Instalacja', '2014-05-12 00:04:08'),
(1287, 'pl', 'label', 'Keywords', 'Keywordy', '2014-05-12 00:04:08'),
(1288, 'pl', 'label', 'noactiveplugins', 'Nie znaleziono aktywnych pluginów!', '2014-05-12 00:04:08'),
(1289, 'pl', 'label', 'Plugin', 'Plugin', '2014-05-12 00:04:08'),
(1290, 'pl', 'label', 'Port', 'Port', '2014-05-12 00:04:08'),
(1291, 'pl', 'label', 'Proxy', 'Proxy', '2014-05-12 00:04:08'),
(1292, 'pl', 'label', 'Re-install', 'Przeinstaluj', '2014-05-12 00:04:08'),
(1293, 'pl', 'label', 'Sponsors', 'Sponsorzy', '2014-05-12 00:04:08'),
(1294, 'pl', 'label', 'Title', 'Tytuł', '2014-05-12 00:04:08'),
(1295, 'pl', 'label', 'translation by', 'przetłumaczone przez', '2014-05-12 00:04:08'),
(1296, 'pl', 'label', 'Translators', 'Tłumaczenie', '2014-05-12 00:04:08'),
(1297, 'pl', 'label', 'Upgrade', 'Upgrade', '2014-05-12 00:04:08'),
(1298, 'pl', 'label', 'Version', 'Wersja', '2014-05-12 00:04:08'),
(1299, 'pl', 'label', 'wantproceed', 'Czy na pewno chcesz kontynuować?', '2014-05-12 00:04:08'),
(1300, 'pl', 'button', 'Cancel', 'Anuluj', '2014-01-17 23:41:10'),
(1301, 'pl', 'button', 'Check Status', 'Sprawdź status', '2014-01-17 23:41:10'),
(1302, 'pl', 'button', 'Proceed', 'Kontynuuj', '2014-01-17 23:41:10'),
(1303, 'pl', 'button', 'Reload', 'Odśwież', '2014-01-17 23:41:10'),
(1304, 'pl', 'button', 'Show Details', 'Pokaż właściwości', '2014-01-17 23:41:10'),
(1305, 'pl', 'button', 'Show Records', 'Pokaż Rekordy', '2014-01-17 23:41:10'),
(1306, 'pl', 'button', 'Skip', 'Pomiń', '2014-01-17 23:41:10'),
(1307, 'pl', 'button', 'Submit', 'Submituj', '2014-01-17 23:41:10'),
(1308, 'pl', 'common', 'Action', 'Akcja', '2019-05-25 22:43:11'),
(1309, 'pl', 'common', 'Activate', 'Aktywuj', '2019-05-25 22:43:11'),
(1310, 'pl', 'common', 'Active', 'Aktywna', '2019-05-25 22:43:11'),
(1311, 'pl', 'common', 'Admin Panel', 'Admin Panel', '2019-05-25 22:43:11'),
(1312, 'pl', 'common', 'Alexa Rank', 'Alexa Rank', '2019-05-25 22:43:11'),
(1313, 'pl', 'common', 'All', 'Wszystko', '2019-05-25 22:43:11'),
(1314, 'pl', 'common', 'Category', 'Kategoria', '2019-05-25 22:43:11'),
(1315, 'pl', 'common', 'contact', 'Kontakt', '2019-05-25 22:43:11'),
(1316, 'pl', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Wszelkie prawa zastrzeżone', '2019-05-25 22:43:11'),
(1317, 'pl', 'common', 'Country', 'Kraj', '2019-05-25 22:43:11'),
(1318, 'pl', 'common', 'Crawl Meta Data', 'Pobierz dane Meta', '2019-05-25 22:43:11'),
(1319, 'pl', 'common', 'Date', 'Data', '2019-05-25 22:43:11'),
(1320, 'pl', 'common', 'Delete', 'Usuń', '2019-05-25 22:43:11'),
(1321, 'pl', 'common', 'Details', 'Szczegóły', '2019-05-25 22:43:11'),
(1322, 'pl', 'common', 'Directory', 'Folder', '2019-05-25 22:43:11'),
(1323, 'pl', 'common', 'Donate', 'Złóż donację', '2019-05-25 22:43:11'),
(1324, 'pl', 'common', 'Edit', 'Edytuj', '2019-05-25 22:43:11'),
(1325, 'pl', 'common', 'Entry cannot be blank', 'Pole nie może być puste', '2019-05-25 22:43:11'),
(1326, 'pl', 'common', 'entrynotvalid', 'Nieprawidłowa zawartość', '2019-05-25 22:43:11'),
(1327, 'pl', 'common', 'failed', 'nie powiodło się', '2019-05-25 22:43:11'),
(1328, 'pl', 'common', 'forum', 'Forum', '2019-05-25 22:43:11'),
(1329, 'pl', 'common', 'Found', 'Znaleziono', '2019-05-25 22:43:11'),
(1330, 'pl', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:43:11'),
(1331, 'pl', 'common', 'help', 'Pomoc', '2019-05-25 22:43:11'),
(1332, 'pl', 'common', 'hidenews', 'Ukryj wiadomości Seo Panel', '2019-05-25 22:43:11'),
(1333, 'pl', 'common', 'Id', 'Id', '2019-05-25 22:43:11'),
(1334, 'pl', 'common', 'Inactivate', 'Deaktywuj', '2019-05-25 22:43:11'),
(1335, 'pl', 'common', 'Inactive', 'Nie aktywne', '2019-05-25 22:43:11'),
(1336, 'pl', 'common', 'Invalid characters', 'Nieprawidłowe znaki', '2019-05-25 22:43:11'),
(1337, 'pl', 'common', 'Invalid code entered', 'Nieprawidłowy kod', '2019-05-25 22:43:11'),
(1338, 'pl', 'common', 'Invalid email address entered', 'Nieprawidłowy adres email', '2019-05-25 22:43:11'),
(1339, 'pl', 'common', 'Invalid value', 'Nieprawidłowa wartość', '2019-05-25 22:43:11'),
(1340, 'pl', 'common', 'Keyword', 'Słowo kluczowe', '2019-05-25 22:43:11'),
(1341, 'pl', 'common', 'Keywords', 'Słowa kluczowe', '2019-05-25 22:43:11'),
(1342, 'pl', 'common', 'lang', 'Język', '2019-05-25 22:43:11'),
(1343, 'pl', 'common', 'My Account', 'Moje Konto', '2019-05-25 22:43:11'),
(1344, 'pl', 'common', 'Name', 'Imię', '2019-05-25 22:43:11'),
(1345, 'pl', 'common', 'No', 'Nie', '2019-05-25 22:43:11'),
(1346, 'pl', 'common', 'No Keywords Found', 'Nie znaleziono Keyword''ów', '2019-05-25 22:43:11'),
(1347, 'pl', 'common', 'No Records Found', 'Nie znaleziono rekordów', '2019-05-25 22:43:11'),
(1348, 'pl', 'common', 'noactivetools', 'Nie znaleziono aktywnych Narzędzi Seo Panel', '2019-05-25 22:43:11'),
(1349, 'pl', 'common', 'nowebsites', 'Nie znaleziono żadnych Stron', '2019-05-25 22:43:11'),
(1350, 'pl', 'common', 'password632', 'Hasło powinno mieć 6 do 32 znaków długości', '2019-05-25 22:43:11'),
(1351, 'pl', 'common', 'passwordnotmatch', 'Hasła nie są identyczne', '2019-05-25 22:43:11'),
(1352, 'pl', 'common', 'Period', 'Okres', '2019-05-25 22:43:11'),
(1353, 'pl', 'common', 'Priority', 'Priorytet', '2019-05-25 22:43:11'),
(1354, 'pl', 'common', 'Rank', 'Rank', '2019-05-25 22:43:11'),
(1355, 'pl', 'common', 'Reports', 'Raporty', '2019-05-25 22:43:11'),
(1356, 'pl', 'common', 'Results', 'Rezultaty', '2019-05-25 22:43:11'),
(1357, 'pl', 'common', 'Search Engine', 'Wyszukiwarka', '2019-05-25 22:43:11'),
(1358, 'pl', 'common', 'Select', 'Wybierz', '2019-05-25 22:43:11'),
(1359, 'pl', 'common', 'Seo Plugins', 'Pluginy Seo', '2019-05-25 22:43:11'),
(1360, 'pl', 'common', 'Seo Tools', 'Narzędzia Seo', '2019-05-25 22:43:11'),
(1361, 'pl', 'common', 'Sign out', 'Wyloguj się', '2019-05-25 22:43:11'),
(1362, 'pl', 'common', 'Sign Up', 'Zarejestruj się', '2019-05-25 22:43:11'),
(1363, 'pl', 'common', 'signin', 'Zaloguj się', '2019-05-25 22:43:11'),
(1364, 'pl', 'common', 'Status', 'Status', '2019-05-25 22:43:11'),
(1365, 'pl', 'common', 'Support', 'Wsparcie', '2019-05-25 22:43:11'),
(1366, 'pl', 'common', 'Total', 'Suma', '2019-05-25 22:43:11'),
(1367, 'pl', 'common', 'Url', 'Url', '2019-05-25 22:43:11'),
(1368, 'pl', 'common', 'User', 'Użytkownik', '2019-05-25 22:43:11'),
(1369, 'pl', 'common', 'User Panel', 'Panel Użytkownika', '2019-05-25 22:43:11'),
(1370, 'pl', 'common', 'Website', 'Strona', '2019-05-25 22:43:11'),
(1371, 'pl', 'common', 'Yes', 'Tak', '2019-05-25 22:43:11'),
(1372, 'pl', 'directory', 'Add back to directory list', 'Dodaj z powrotem do listy Katalogów', '2014-01-17 23:50:38'),
(1373, 'pl', 'directory', 'Approved', 'Zatwierdzono', '2014-01-17 23:50:38'),
(1374, 'pl', 'directory', 'Captcha', 'Captcha', '2014-01-17 23:50:38'),
(1375, 'pl', 'directory', 'categorynote', 'Kategorie, oddziel je przecinkiem według priorytetu. Zacznij od Kategorii o najwyższym priorytecie.', '2014-01-17 23:50:38'),
(1376, 'pl', 'directory', 'Check Directory Status', 'Sprawdź status Katalogu', '2014-01-17 23:50:38'),
(1377, 'pl', 'directory', 'Check Directory Submission Status', 'Sprawdź status submisji do Katalogu', '2014-01-17 23:50:38'),
(1378, 'pl', 'directory', 'clicktoproceeddirsts', 'Kliknij <b>Proceed</b> aby sprawdzić status Katalogu', '2014-01-17 23:50:38'),
(1379, 'pl', 'directory', 'Confirmation', 'Potwierdzenie', '2014-01-17 23:50:38'),
(1380, 'pl', 'directory', 'desnote', 'Niektóre katalogi wymagają minimum 150 znaków w opisie Strony', '2014-01-17 23:50:38'),
(1381, 'pl', 'directory', 'Directories with out captcha', 'Katalogi bez Captcha', '2014-01-17 23:50:38'),
(1382, 'pl', 'directory', 'Directory Submission Reports', 'Raport submisji do Katalogów', '2014-01-17 23:50:38'),
(1383, 'pl', 'directory', 'Enter the code shown', 'Wprowadź kod', '2014-01-17 23:50:38'),
(1384, 'pl', 'directory', 'nocatnote', 'Kategoria submisji nie została znaleziona na stronie submisji. Kliknij na <b>Przeładuj</b> lub <b>Pomiń</b>', '2014-01-17 23:50:38'),
(1385, 'pl', 'directory', 'nodirnote', 'Nie znaleziono <b>Aktywnych</b> Katalogów', '2014-01-17 23:50:38'),
(1386, 'pl', 'directory', 'nosuccessnote', 'Nie otrzymano potwierdzenia. Proszę sprawdzić twój email by znaleźć wiadomość potwierdzającą.', '2014-01-17 23:50:38'),
(1387, 'pl', 'directory', 'optionalnote', 'Opcjonalne tytuły i opisy aby submitować Stronę z róźnymi tytułami i opisami do Katalogów aby uzyskać lepsze rezultaty.', '2014-01-17 23:50:38'),
(1388, 'pl', 'directory', 'Owner Email', 'Email właściciela', '2014-01-17 23:50:38'),
(1389, 'pl', 'directory', 'Owner Name', 'Imię właściciela', '2014-01-17 23:50:38'),
(1390, 'pl', 'directory', 'Pending', 'Oczekuje', '2014-01-17 23:50:38'),
(1391, 'pl', 'directory', 'Please select a website to proceed', 'Proszę wybrać Stronę aby kontynuować', '2014-01-17 23:50:38'),
(1392, 'pl', 'directory', 'selectwebsiteproceed', 'Wybierz <b>Stronę</b> aby <b>Kontunuować</b> submitowanie. <br>Zaznacz <b>Katalogi bez Captcha</b> aby submitować do Katalogów nie wymagających Captcha w trakcie submisji.', '2014-01-17 23:50:38'),
(1393, 'pl', 'directory', 'selectwebsiteschecksub', 'Wybierz <b>Stronę</b> aby <b>Kontynuować</b> sprawdzanie statusu submisji do Katalogów.', '2014-01-17 23:50:38'),
(1394, 'pl', 'directory', 'Semi Automatic Directory Submission Tool', 'Narzędzie do półautomatycznej submisji Strony do Katalogów', '2014-01-17 23:50:38'),
(1395, 'pl', 'directory', 'spamemailnote', 'Niektóre Katalogi mogą wysyłać spam, zalecamy nie używać swojego głównego adresu email.', '2014-01-17 23:50:38'),
(1396, 'pl', 'directory', 'Submission Details', 'Detale Submisji', '2014-01-17 23:50:38'),
(1397, 'pl', 'directory', 'Submit Description', 'Submituj Opis', '2014-01-17 23:50:38'),
(1398, 'pl', 'directory', 'Submit Keywords', 'Submituj Keyword''y', '2014-01-17 23:50:38'),
(1399, 'pl', 'directory', 'Submit Title', 'Submituj Tytuł', '2014-01-17 23:50:38'),
(1400, 'pl', 'directory', 'Website Category', 'Kategoria Strony', '2014-01-17 23:50:38'),
(1401, 'pl', 'directory', 'Website Url', 'Url Strony', '2014-01-17 23:50:38'),
(1402, 'pl', 'home', 'Account Summary', 'Informacja o Koncie', '2014-01-18 00:53:11'),
(1403, 'pl', 'home', 'Backlinks', 'Backlinki', '2014-01-18 00:53:11'),
(1404, 'pl', 'home', 'Directory Submission', 'Submisja do Katalogu', '2014-01-18 00:53:11'),
(38998, 'ro', 'review', 'Review Link Details', 'Detalii link recenzie', '2026-01-19 22:58:50'),
(38999, 'ru', 'review', 'Review Link Details', 'Детали ссылки на отзыв', '2026-01-19 22:58:50'),
(39000, 'sk', 'review', 'Review Link Details', 'Podrobnosti odkazu na recenziu', '2026-01-19 22:58:50'),
(39001, 'sl', 'review', 'Review Link Details', 'Podrobnosti povezave za mnenje', '2026-01-19 22:58:50'),
(39002, 'sq', 'review', 'Review Link Details', 'Detajet e lidhjes së rishikimit', '2026-01-19 22:58:50'),
(39003, 'sr', 'review', 'Review Link Details', 'Детаљи линка рецензије', '2026-01-19 22:58:50'),
(39004, 'sv', 'review', 'Review Link Details', 'Recensionslänk detaljer', '2026-01-19 22:58:50'),
(39005, 'sw', 'review', 'Review Link Details', 'Maelezo ya Kiungo cha Mapitio', '2026-01-19 22:58:50'),
(39006, 'th', 'review', 'Review Link Details', 'รายละเอียดลิงก์รีวิว', '2026-01-19 22:58:50'),
(39007, 'tl', 'review', 'Review Link Details', 'Mga Detalye ng Review Link', '2026-01-19 22:58:50'),
(39008, 'tr', 'review', 'Review Link Details', 'İnceleme Bağlantı Detayları', '2026-01-19 22:58:50'),
(39009, 'uk', 'review', 'Review Link Details', 'Деталі посилання на відгук', '2026-01-19 22:58:50'),
(39010, 'vn', 'review', 'Review Link Details', 'Chi tiết liên kết đánh giá', '2026-01-19 22:58:50'),
(1408, 'pl', 'home', 'Pages Indexed', 'Zaindexowane Strony', '2014-01-18 00:53:11'),
(1409, 'pl', 'home', 'Ranks', 'Ranking', '2014-01-18 00:53:11'),
(1410, 'pl', 'home', 'SiteNameUrl', 'Nazwa Strony/Url', '2014-01-18 00:53:11'),
(1411, 'pl', 'home', 'Website Statistics', 'Statystyki Strony', '2014-01-18 00:53:11'),
(1412, 'pl', 'keyword', 'Crawling keyword', 'Indeksowanie Keyword''u', '2014-01-17 23:54:55'),
(1413, 'pl', 'keyword', 'Detailed Keyword Position Reports', 'Szczegółowy Raport o Pozycji Keyword''u', '2014-01-17 23:54:55'),
(1414, 'pl', 'keyword', 'Edit Keyword', 'Edytuj Keyword', '2014-01-17 23:54:55'),
(1415, 'pl', 'keyword', 'Graphical Keyword Position Reports', 'Wykres Pozycji Keyword''u', '2014-01-17 23:54:55'),
(1416, 'pl', 'keyword', 'Import Keywords', 'Importuj Keyword''y', '2014-01-17 23:54:55'),
(1417, 'pl', 'keyword', 'Keyword already exist', 'Keyword już istnieje', '2014-01-17 23:54:55'),
(1418, 'pl', 'keyword', 'Keyword Position Report', 'Raport o Pozycji Keyword''u', '2014-01-17 23:54:55'),
(1419, 'pl', 'keyword', 'New Keyword', 'Nowy Keyword', '2014-01-17 23:54:55'),
(1420, 'pl', 'keyword', 'not assigned to required search engines', 'nie przypisane do wymaganych wyszukiwarek', '2014-01-17 23:54:55'),
(1421, 'pl', 'keyword', 'pleaseselecttool', 'Proszę wybrać co najmniej jedno Narzędzie Seo', '2014-01-17 23:54:55'),
(1422, 'pl', 'keyword', 'Quick Keyword Position Checker', 'Szybkie Sprawdzenie Pozycji Keyword''u', '2014-01-17 23:54:55'),
(1423, 'pl', 'keyword', 'results from ', 'rezultaty z', '2014-01-17 23:54:55'),
(1424, 'pl', 'keyword', 'Show All results', 'Pokaż wszystkie rezultaty', '2014-01-17 23:54:55'),
(1425, 'pl', 'keyword', 'Successfully crawled keyword', 'Keyword zaindeksowany pomyślnie', '2014-01-17 23:54:55'),
(1426, 'pl', 'keyword', 'to create new keywords', 'aby utworzyć nowe Keyword''y', '2014-01-17 23:54:55'),
(1427, 'pl', 'panel', 'About Us', 'O Nas', '2014-05-11 23:55:16'),
(1428, 'pl', 'panel', 'Add following command to your cron tab', 'Dodaj Komendę to zakładki Cron', '2014-05-11 23:55:16'),
(1429, 'pl', 'panel', 'alsocheckfollowlink', 'Sprawdź link jeśli chcesz więcej szczegółów', '2014-05-11 23:55:16'),
(1430, 'pl', 'panel', 'Check Directory', 'Sprawdź Katalog', '2014-05-11 23:55:16'),
(1431, 'pl', 'panel', 'Cron Command', 'Komenda Cron', '2014-05-11 23:55:16'),
(1432, 'pl', 'panel', 'Directory Manager', 'Manadżer Katalogów', '2014-05-11 23:55:16'),
(1433, 'pl', 'panel', 'Edit My Profile', 'Edytuj Profil', '2014-05-11 23:55:16'),
(1434, 'pl', 'panel', 'My Profile', 'Mój Profil', '2014-05-11 23:55:16'),
(1435, 'pl', 'panel', 'New Proxy', 'Nowe Proxy', '2014-05-11 23:55:16'),
(1436, 'pl', 'panel', 'New User', 'Nowy Użytkownik', '2014-05-11 23:55:16'),
(1437, 'pl', 'panel', 'New Website', 'Nowa Strona', '2014-05-11 23:55:16'),
(1438, 'pl', 'panel', 'Proxy Manager', 'Manadżer Proxy', '2014-05-11 23:55:16'),
(1439, 'pl', 'panel', 'Report Generation Manager', 'Manadżer Generowania Raportów', '2014-05-11 23:55:16'),
(1440, 'pl', 'panel', 'Reports Manager', 'Manadżer Raportów', '2014-05-11 23:55:16'),
(1441, 'pl', 'panel', 'Seo Plugins Manager', 'Manadżer Pluginów Seo', '2014-05-11 23:55:16'),
(1442, 'pl', 'panel', 'Seo Tools Manager', 'Manadżer Narzędzi Seo', '2014-05-11 23:55:16'),
(1443, 'pl', 'panel', 'System Settings', 'Ustawienia Systemu', '2014-05-11 23:55:16'),
(1444, 'pl', 'panel', 'User Manager', 'Manadżer Użytkowników', '2014-05-11 23:55:16'),
(1445, 'pl', 'panel', 'Website Manager', 'Manadżer Stron', '2014-05-11 23:55:16'),
(1446, 'pl', 'plugin', 'Edit Seo Plugin', 'Edytuj Plugin Seo', '2014-01-18 00:06:52'),
(1447, 'pl', 'plugin', 'Plugin Name', 'Nazwa Pluginu', '2014-01-18 00:06:52'),
(1448, 'pl', 'plugin', 'Seo Plugin Details', 'Szczegóły Pluginu Seo', '2014-01-18 00:06:52'),
(1449, 'pl', 'proxy', 'Edit Proxy', 'Edytuj Proxy', '2014-05-11 23:50:59'),
(1450, 'pl', 'proxy', 'Proxy Password', 'Hasło Proxy', '2014-05-11 23:50:59'),
(1451, 'pl', 'proxy', 'Proxy Username', 'Nazwa Użytkownika Proxy', '2014-05-11 23:50:59'),
(1452, 'pl', 'proxy', 'Proxyalreadyexist', 'Takie Proxy już istnieje', '2014-05-11 23:50:59'),
(1453, 'pl', 'rank', 'enterurlproceed', 'Wprowadź adresy Url <b>Jeden adres na linię</b> Kliknij <b>Kontynuuj</b> by sprawdzić Google Rank i Alexa Rank', '2010-10-09 11:33:20'),
(1454, 'pl', 'rank', 'Google and Alexa Rank Reports', 'raporty Google Rank i Alexa Rank', '2010-10-09 11:33:20'),
(1455, 'pl', 'rank', 'Saved rank results of', 'Zapisane rezultaty', '2010-10-09 11:33:20'),
(1456, 'pl', 'saturation', 'clickproceedsaturation', 'Wprowadź adresy Url <b>Jeden adres na linię</b> Kliknij <b>Kontynuuj</b> by sprawdzić Nasycenie w Wyszukiwarkach (Search Engine Saturation Results)', '2010-10-09 11:36:19'),
(1457, 'pl', 'saturation', 'GenerateSaturationReports', 'Generuj raport Nasycenia w Wyszukiwarkach', '2010-10-09 11:36:19'),
(1458, 'pl', 'saturation', 'Quick Search Engine Saturation Checker', 'Szybkie Sprawdzenie Nasycenia w Wyszukiwarkach', '2010-10-09 11:36:19'),
(1459, 'pl', 'saturation', 'Saved Search Engine Saturation results of', 'Zapisane stany Nasycenia w Wyszukiwarkach', '2010-10-09 11:36:19'),
(1460, 'pl', 'saturation', 'Search Engine Saturation Reports', 'Raporty Nasycenia w Wyszukiwarkach', '2010-10-09 11:36:19'),
(1461, 'pl', 'seotools', 'Automatic Submission', 'Automatyczna submisja', '2014-01-18 00:15:54'),
(1462, 'pl', 'seotools', 'backlink-checker', 'Sprawdzanie backlinków', '2014-01-18 00:15:54'),
(1463, 'pl', 'seotools', 'Backlinks Reports', 'Raporty backlinków', '2014-01-18 00:15:54'),
(1464, 'pl', 'seotools', 'Check Submission Status', 'Sprawdź status submisji', '2014-01-18 00:15:54'),
(1465, 'pl', 'seotools', 'clickgeneratereports', 'Kliknij <b>Kontynuuj</b> aby wygenerować raport', '2014-01-18 00:15:54'),
(1466, 'pl', 'seotools', 'Detailed Position Reports', 'Szczegółowy raport o pozycji', '2014-01-18 00:15:54'),
(1467, 'pl', 'seotools', 'directory-submission', 'Submisja do katalogów', '2014-01-18 00:15:54'),
(1468, 'pl', 'seotools', 'Featured Submission', 'Zintegrowana submisja', '2014-01-18 00:15:54'),
(1469, 'pl', 'seotools', 'Generate Backlinks Reports', 'Generuj raport o backlink''ach', '2014-01-18 00:15:54'),
(1470, 'pl', 'seotools', 'Generate Keyword Reports', 'Generuj raport o keyword''ach', '2014-01-18 00:15:54'),
(1471, 'pl', 'seotools', 'Generate Rank Reports', 'Generuj raport o pozycjach w rankingach', '2014-01-18 00:15:54'),
(1472, 'pl', 'seotools', 'Generate Saturation Reports', 'Generuj raport o nasyceniu w Wyszukiwarkach', '2014-01-18 00:15:54'),
(1473, 'pl', 'seotools', 'Google Sitemap Generator', 'Generator Google map Strony ', '2014-01-18 00:15:54'),
(1474, 'pl', 'seotools', 'Graphical Position Reports', 'Wykres pozycji w rankingach', '2014-01-18 00:15:54'),
(1475, 'pl', 'seotools', 'Keyword Position Summary', 'Podsumowanie pozycji keyword''ów', '2014-01-18 00:15:54'),
(1476, 'pl', 'seotools', 'keyword-position-checker', 'Sprawdzenie pozycji keyword''ów', '2014-01-18 00:15:54'),
(1477, 'pl', 'seotools', 'Keywords Manager', 'Manadżer keyword''ów', '2014-01-18 00:15:54'),
(1478, 'pl', 'seotools', 'Quick Backlinks Checker', 'Szybkie sprawdzenie backlink''ów', '2014-01-18 00:15:54'),
(1479, 'pl', 'seotools', 'Quick Position Checker', 'Szybkie sprawdzenie pozycji ', '2014-01-18 00:15:54'),
(1480, 'pl', 'seotools', 'Quick Rank Checker', 'Szybkie sprawdzenie rankingów', '2014-01-18 00:15:54'),
(1481, 'pl', 'seotools', 'Quick Saturation Checker', 'Szybkie sprawdzenie nasycenia w wyszukiwarkach', '2014-01-18 00:15:54'),
(1482, 'pl', 'seotools', 'Rank Reports', 'Raport rankingów', '2014-01-18 00:15:54'),
(1483, 'pl', 'seotools', 'rank-checker', 'Sprawdzenie rankingów', '2014-01-18 00:15:54'),
(1484, 'pl', 'seotools', 'Saturation Reports', 'Raport nasycenia w wyszukiwarkach', '2014-01-18 00:15:54'),
(1485, 'pl', 'seotools', 'saturation-checker', 'Nasycenie w wyszukiwarkach', '2014-01-18 00:15:54'),
(1486, 'pl', 'seotools', 'sitemap-generator', 'Generator mapy Strony', '2014-01-18 00:15:54'),
(1487, 'pl', 'seotools', 'Skipped Directories', 'Pominięte katalogi', '2014-01-18 00:15:54'),
(1488, 'pl', 'seotools', 'Submission Reports', 'Raporty submisji', '2014-01-18 00:15:54'),
(1489, 'pl', 'seotools', 'User Access', 'Dostęp użytkowników', '2014-01-18 00:15:54'),
(1490, 'pl', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Złóż donację $100</b> i zostań <b>sponsorem</b> Seo Panel.', '2014-05-11 23:49:58'),
(1491, 'pl', 'settings', 'seopanel_description', 'Darmowy kompletny panel do zarządzania Optymalizacją Stron. Zawiera mnóstwo nowych Narzędzi Seo aby kontrolować wydajność twoich Stron. Jest to open source''owy software do którego łatwo możesz pisać własne pluginy Seo.', '2014-05-11 23:49:58'),
(1492, 'pl', 'settings', 'seopanel_title', 'Seo Panel: Pierwszy na świecie open source''owy panel do zarządzania wieloma Stronami', '2014-05-11 23:49:58'),
(1493, 'pl', 'settings', 'SP_CRAWL_DELAY', 'Opóźnienie między każdym indexowaniem robota (w sekundach)', '2014-05-11 23:49:58'),
(1494, 'pl', 'settings', 'SP_DEFAULTLANG', 'Domyślny język', '2014-05-11 23:49:58'),
(1495, 'pl', 'settings', 'SP_DESCRIPTION', 'Opis Seo Panel', '2014-05-11 23:49:58'),
(1496, 'pl', 'settings', 'SP_ENABLE_PROXY', 'Włącz Proxy', '2014-05-11 23:49:58'),
(1497, 'pl', 'settings', 'SP_HOTLINKING', 'Zabezpieczenie hotlinkowania obrazków włączone', '2014-05-11 23:49:58'),
(1498, 'pl', 'settings', 'SP_KEYWORDS', 'Słowa kluczowe Seo Panel', '2014-05-11 23:49:58'),
(1499, 'pl', 'settings', 'SP_PAGINGNO', 'Numer rekordów na stronie', '2014-05-11 23:49:58'),
(1500, 'pl', 'settings', 'SP_TITLE', 'Tytuł Seo Panel', '2014-05-11 23:49:58'),
(1501, 'pl', 'settings', 'SP_USER_GEN_REPORT', 'Pozwól użytkownikowi generować raporty', '2014-05-11 23:49:58'),
(1502, 'pl', 'settings', 'SP_USER_REGISTRATION', 'Interfejs rejestracji użytkownika', '2014-05-11 23:49:58'),
(1503, 'pl', 'settings', 'syssettingssaved', 'Ustawienia Systemu zapisane!', '2014-05-11 23:49:58'),
(1504, 'pl', 'backlink', 'clickproceedbacklink', 'Wprowadź adresy URL <b>każdy w osobnej linii</b>. Kliknij <b>Kontynuuj</b> by sprawdzić Backlinki.', '2014-01-17 23:40:05'),
(1505, 'pl', 'backlink', 'Saved backlink results of', 'Zapisane rezultaty backlink', '2014-01-17 23:40:05'),
(1506, 'hu', 'backlink', 'clickproceedbacklink', 'Soronként <b>Egy</b> weboldal címét írd be. Kattints az <b>Elküldésre</b> a Backlinkek ellenőrzéséhez. ', '2010-10-11 03:45:36'),
(1507, 'hu', 'backlink', 'Saved backlink results of', 'Elmentett Backlinkek:', '2010-10-11 03:45:36'),
(1508, 'hu', 'button', 'Cancel', 'Vissza', '2014-01-09 00:27:48'),
(1509, 'hu', 'button', 'Check Status', 'Állapot ellenőrzése', '2014-01-09 00:27:48'),
(1510, 'hu', 'button', 'Proceed', 'Elküld', '2014-01-09 00:27:48'),
(1511, 'hu', 'button', 'Reload', 'Újra', '2014-01-09 00:27:48'),
(1512, 'hu', 'button', 'Show Details', 'Részletek mutatása', '2014-01-09 00:27:48'),
(1513, 'hu', 'button', 'Show Records', 'Mutasd', '2014-01-09 00:27:48'),
(1514, 'hu', 'button', 'Skip', 'Kihagyás', '2014-01-09 00:27:48'),
(1515, 'hu', 'button', 'Submit', 'Elküld', '2014-01-09 00:27:48'),
(1516, 'hu', 'common', 'Action', 'Művelet', '2019-05-25 22:15:43'),
(1517, 'hu', 'common', 'Activate', 'Aktivál', '2019-05-25 22:15:43'),
(1518, 'hu', 'common', 'Active', 'Aktív', '2019-05-25 22:15:43'),
(1519, 'hu', 'common', 'Admin Panel', 'Admin felület', '2019-05-25 22:15:43'),
(1520, 'hu', 'common', 'Alexa Rank', 'Alexa Rang', '2019-05-25 22:15:43'),
(1521, 'hu', 'common', 'All', 'Összes', '2019-05-25 22:15:43'),
(1522, 'hu', 'common', 'Category', 'Kategória', '2019-05-25 22:15:43'),
(1523, 'hu', 'common', 'contact', 'Kapcsolat', '2019-05-25 22:15:43'),
(1524, 'hu', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Minden jog fenntartva!', '2019-05-25 22:15:43'),
(1525, 'hu', 'common', 'Country', 'Ország', '2019-05-25 22:15:43'),
(1526, 'hu', 'common', 'Crawl Meta Data', 'Meta Adatok Kiolvasása', '2019-05-25 22:15:43'),
(1527, 'hu', 'common', 'Date', 'Dátum', '2019-05-25 22:15:43'),
(1528, 'hu', 'common', 'Delete', 'Törlés', '2019-05-25 22:15:43'),
(1529, 'hu', 'common', 'Details', 'Részletek', '2019-05-25 22:15:43'),
(1530, 'hu', 'common', 'Directory', 'Katalógus', '2019-05-25 22:15:43'),
(1531, 'hu', 'common', 'Donate', 'Seo Panel Támogatása', '2019-05-25 22:15:43'),
(1532, 'hu', 'common', 'Edit', 'Szerkesztés', '2019-05-25 22:15:43'),
(1533, 'hu', 'common', 'Entry cannot be blank', 'Ez a mező nem maradhat üresen!', '2019-05-25 22:15:43'),
(1534, 'hu', 'common', 'entrynotvalid', 'A beírt adatok nem tűnnek valódinak', '2019-05-25 22:15:43'),
(1535, 'hu', 'common', 'failed', 'hiba', '2019-05-25 22:15:43'),
(1536, 'hu', 'common', 'forum', 'Fórum', '2019-05-25 22:15:43'),
(1537, 'hu', 'common', 'Found', 'Találat', '2019-05-25 22:15:43'),
(1538, 'hu', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:15:43'),
(1539, 'hu', 'common', 'help', 'Segítség', '2019-05-25 22:15:43'),
(1540, 'hu', 'common', 'hidenews', 'Seo Panel Hírek Elrejtése', '2019-05-25 22:15:43'),
(1541, 'hu', 'common', 'Id', 'Sorszám', '2019-05-25 22:15:43'),
(1542, 'hu', 'common', 'Inactivate', 'Inaktiválás', '2019-05-25 22:15:43'),
(1543, 'hu', 'common', 'Inactive', 'Inaktív', '2019-05-25 22:15:43'),
(1544, 'hu', 'common', 'Invalid characters', 'Érvénytelen Karakterek', '2019-05-25 22:15:43'),
(1545, 'hu', 'common', 'Invalid code entered', 'Hibás kódot írtál be', '2019-05-25 22:15:43'),
(1546, 'hu', 'common', 'Invalid email address entered', 'Hibás e-mail cím', '2019-05-25 22:15:43'),
(1547, 'hu', 'common', 'Invalid value', 'Érvénytelen érték', '2019-05-25 22:15:43'),
(1548, 'hu', 'common', 'Keyword', 'Kulcsszó', '2019-05-25 22:15:43'),
(1549, 'hu', 'common', 'Keywords', 'Kulcsszavak', '2019-05-25 22:15:43'),
(1550, 'hu', 'common', 'lang', 'Nyelv', '2019-05-25 22:15:43'),
(1551, 'hu', 'common', 'My Account', 'Fiókom', '2019-05-25 22:15:43'),
(1552, 'hu', 'common', 'Name', 'Név', '2019-05-25 22:15:43'),
(1553, 'hu', 'common', 'No', 'Nem', '2019-05-25 22:15:43'),
(1554, 'hu', 'common', 'No Keywords Found', 'Nem Találtunk Kulcsszót', '2019-05-25 22:15:43'),
(1555, 'hu', 'common', 'No Records Found', 'Nincs Találat', '2019-05-25 22:15:43'),
(1556, 'hu', 'common', 'noactivetools', 'Nem találtunk Aktív Seo eszközt!', '2019-05-25 22:15:43'),
(1557, 'hu', 'common', 'nowebsites', 'Nem Találtunk Weboldalt', '2019-05-25 22:15:43'),
(1558, 'hu', 'common', 'password632', 'A jelszónak minimum 6, maximum 32 karakteresnek kell lennie', '2019-05-25 22:15:43'),
(1559, 'hu', 'common', 'passwordnotmatch', 'A jelszavak nem egyeznek', '2019-05-25 22:15:43'),
(1560, 'hu', 'common', 'Period', 'Időszak', '2019-05-25 22:15:43'),
(1561, 'hu', 'common', 'Priority', 'Prioritás', '2019-05-25 22:15:43'),
(1562, 'hu', 'common', 'Rank', 'Rang', '2019-05-25 22:15:43'),
(1563, 'hu', 'common', 'Reports', 'Jelentések', '2019-05-25 22:15:43'),
(1564, 'hu', 'common', 'Results', 'Eredmények', '2019-05-25 22:15:43'),
(1565, 'hu', 'common', 'Search Engine', 'Keresőmotor', '2019-05-25 22:15:43'),
(1566, 'hu', 'common', 'Select', 'Választ', '2019-05-25 22:15:43'),
(1567, 'hu', 'common', 'Seo Plugins', 'Seo Beépülők', '2019-05-25 22:15:43'),
(1568, 'hu', 'common', 'Seo Tools', 'Seo Eszközök', '2019-05-25 22:15:43'),
(1569, 'hu', 'common', 'Sign out', 'Kilépés', '2019-05-25 22:15:43'),
(1570, 'hu', 'common', 'Sign Up', 'Regisztráció', '2019-05-25 22:15:43'),
(1571, 'hu', 'common', 'signin', 'Bejelentkezés', '2019-05-25 22:15:43'),
(1572, 'hu', 'common', 'Status', 'Állapot', '2019-05-25 22:15:43'),
(1573, 'hu', 'common', 'Support', 'Támogatás', '2019-05-25 22:15:43'),
(1574, 'hu', 'common', 'Total', 'Összesen', '2019-05-25 22:15:43'),
(1575, 'hu', 'common', 'Url', 'Url', '2019-05-25 22:15:43'),
(1576, 'hu', 'common', 'User', 'Felhasználó', '2019-05-25 22:15:43'),
(1577, 'hu', 'common', 'User Panel', 'Felhasználói Felület', '2019-05-25 22:15:43'),
(1578, 'hu', 'common', 'Website', 'Weboldal', '2019-05-25 22:15:43'),
(1579, 'hu', 'common', 'Yes', 'Igen', '2019-05-25 22:15:43'),
(1580, 'hu', 'directory', 'Add back to directory list', 'Visszahelyezés a katalóguslistába', '2013-02-06 00:23:52'),
(1581, 'hu', 'directory', 'Approved', 'Elfogadva', '2013-02-06 00:23:52'),
(1582, 'hu', 'directory', 'Captcha', 'Captcha', '2013-02-06 00:23:52'),
(1583, 'hu', 'directory', 'categorynote', 'Kategóriák, vesszővel elválasztva, fontossági sorrendbe. A legfontosabban kezd.', '2013-02-06 00:23:52'),
(1584, 'hu', 'directory', 'Check Directory Status', 'Katalógus Állapotának Ellenőrzése', '2013-02-06 00:23:52'),
(1585, 'hu', 'directory', 'Check Directory Submission Status', 'Katalógus Linkek állapota', '2013-02-06 00:23:52'),
(1586, 'hu', 'directory', 'clicktoproceeddirsts', 'Kattints az <b>Elküldésre</b> ahhoz, hogy ellenőrizd a katalógus állapotát.', '2013-02-06 00:23:52'),
(1587, 'hu', 'directory', 'Confirmation', 'Megerősítés', '2013-02-06 00:23:52'),
(1588, 'hu', 'directory', 'desnote', 'Néhány katalógusba minimum 150 karakteresnek kell lennie a leírásnak. ', '2013-02-06 00:23:52'),
(1589, 'hu', 'directory', 'Directories with out captcha', 'Katalógusok captcha nélkül', '2013-02-06 00:23:52'),
(1590, 'hu', 'directory', 'Directory Submission Reports', 'Jelentés a Linkbeküldésekről', '2013-02-06 00:23:52'),
(1591, 'hu', 'directory', 'Enter the code shown', 'Írd be az alábbi kódot', '2013-02-06 00:23:52'),
(1592, 'hu', 'directory', 'nocatnote', 'Az általad megadott kategóriát nem találtuk a katalógusba. Kérlek kattints az <b>Újra</b> vagy a <b>Tovább</b> feliratra ', '2013-02-06 00:23:52'),
(1593, 'hu', 'directory', 'nodirnote', 'Nem találtunk <b>Aktív</b> katalógust', '2013-02-06 00:23:52'),
(1594, 'hu', 'directory', 'nosuccessnote', 'Ha nem jelenik meg a \\"sikeres beküldés\\" az ajánlás után, akkor ellenőrizd az e-mailjeidet, hogy nem kell-e aktiválni a linket.', '2013-02-06 00:23:52'),
(1595, 'hu', 'directory', 'optionalnote', 'További Cím és leírások melyek automatikusan cserélődni fognak minden linkbeküldésnél.', '2013-02-06 00:23:52'),
(1596, 'hu', 'directory', 'Owner Email', 'Kapcsolattartó E-mail címe', '2013-02-06 00:23:52'),
(1597, 'hu', 'directory', 'Owner Name', 'Kapcsolattartó Neve', '2013-02-06 00:23:52'),
(1598, 'hu', 'directory', 'Pending', 'Függőben', '2013-02-06 00:23:52'),
(1599, 'hu', 'directory', 'Please select a website to proceed', 'Kérlek válassz egy weboldalt elküldésre', '2013-02-06 00:23:52'),
(1600, 'hu', 'directory', 'selectwebsiteproceed', 'Válassz ki egy <b>Weboldalt</b> és kattints az <b>Elküldésre</b>.<br>Válaszd ki a \\"<b>Katalógusok captcha nélkül</b>\\" opciót, hogy meggyorsítsd a linkbeküldést.', '2013-02-06 00:23:52'),
(1601, 'hu', 'directory', 'selectwebsiteschecksub', 'Válassz ki egy <b>Weboldalt</b> és kattints az <b>Elküldésre</b>.', '2013-02-06 00:23:52'),
(1602, 'hu', 'directory', 'Semi Automatic Directory Submission Tool', 'Félautomata Linkbeküldés', '2013-02-06 00:23:52'),
(1603, 'hu', 'directory', 'spamemailnote', 'Néhány katalógus küldhet spam leveleket, ezért ne a fő e-mail címünket használjuk. ', '2013-02-06 00:23:52'),
(1604, 'hu', 'directory', 'Submission Details', 'Linkbeküldése adatai', '2013-02-06 00:23:52'),
(1605, 'hu', 'directory', 'Submit Description', 'Leírás', '2013-02-06 00:23:52'),
(1606, 'hu', 'directory', 'Submit Keywords', 'Kulcsszavak', '2013-02-06 00:23:52'),
(1607, 'hu', 'directory', 'Submit Title', 'Cím', '2013-02-06 00:23:52'),
(1608, 'hu', 'directory', 'Website Category', 'Kategória', '2013-02-06 00:23:52'),
(1609, 'hu', 'directory', 'Website Url', 'URL', '2013-02-06 00:23:52'),
(1610, 'hu', 'home', 'Account Summary', 'Felhasználói Fiók', '2011-07-11 10:51:07'),
(1611, 'hu', 'home', 'Backlinks', 'Backlinkek', '2011-07-11 10:51:07'),
(1612, 'hu', 'home', 'Directory Submission', 'Linkbeküldés', '2011-07-11 10:51:07'),
(38985, 'hu', 'review', 'Review Link Details', 'Értékelési link részletei', '2026-01-19 22:58:50'),
(38986, 'hy', 'review', 'Review Link Details', 'Ակնարկի հղման մանրամասներ', '2026-01-19 22:58:50'),
(38987, 'id', 'review', 'Review Link Details', 'Detail Tautan Ulasan', '2026-01-19 22:58:50'),
(38988, 'it', 'review', 'Review Link Details', 'Dettagli Link Recensione', '2026-01-19 22:58:50'),
(38989, 'ja', 'review', 'Review Link Details', 'レビューリンク詳細', '2026-01-19 22:58:50'),
(38990, 'ko', 'review', 'Review Link Details', '리뷰 링크 세부정보', '2026-01-19 22:58:50'),
(38991, 'lt', 'review', 'Review Link Details', 'Atsiliepimo nuorodos detalės', '2026-01-19 22:58:50'),
(38992, 'mk', 'review', 'Review Link Details', 'Детали на линкот за рецензија', '2026-01-19 22:58:50'),
(38993, 'nl', 'review', 'Review Link Details', 'Beoordelingslink details', '2026-01-19 22:58:50'),
(38994, 'no', 'review', 'Review Link Details', 'Anmeldelseslenke detaljer', '2026-01-19 22:58:50'),
(38995, 'pl', 'review', 'Review Link Details', 'Szczegóły linku recenzji', '2026-01-19 22:58:50'),
(38996, 'pt', 'review', 'Review Link Details', 'Detalhes do link de avaliação', '2026-01-19 22:58:50'),
(38997, 'pt-br', 'review', 'Review Link Details', 'Detalhes do link de avaliação', '2026-01-19 22:58:50'),
(1616, 'hu', 'home', 'Pages Indexed', 'Indexelt oldalak', '2011-07-11 10:51:07'),
(1617, 'hu', 'home', 'Ranks', 'Rang', '2011-07-11 10:51:07'),
(1618, 'hu', 'home', 'SiteNameUrl', 'Oldal Neve/Url', '2011-07-11 10:51:07'),
(1619, 'hu', 'home', 'Website Statistics', 'Weboldal statisztika', '2011-07-11 10:51:07'),
(1620, 'hu', 'keyword', 'Crawling keyword', 'Kulcsszó ellenőrzése', '2011-07-11 10:53:54'),
(1621, 'hu', 'keyword', 'Detailed Keyword Position Reports', 'Részletes Kulcsszó Beszámoló', '2011-07-11 10:53:54'),
(1622, 'hu', 'keyword', 'Edit Keyword', 'Kulcsszó Szerkesztése', '2011-07-11 10:53:54'),
(1623, 'hu', 'keyword', 'Graphical Keyword Position Reports', 'Grafikus Kulcsszó Beszámoló', '2011-07-11 10:53:54'),
(1624, 'hu', 'keyword', 'Import Keywords', 'Kulcsszó importálása', '2011-07-11 10:53:54'),
(1625, 'hu', 'keyword', 'Keyword already exist', 'Ez a Kulcsszó már létezik', '2011-07-11 10:53:54'),
(1626, 'hu', 'keyword', 'Keyword Position Report', 'Beszámoló a Helyezésekről', '2011-07-11 10:53:54'),
(1627, 'hu', 'keyword', 'New Keyword', 'Új Kulcsszó', '2011-07-11 10:53:54'),
(1628, 'hu', 'keyword', 'not assigned to required search engines', 'not assigned to required search engines', '2011-07-11 10:53:54'),
(1629, 'hu', 'keyword', 'pleaseselecttool', 'Kérlek válassz minimum egy Seo eszközt', '2011-07-11 10:53:54'),
(1630, 'hu', 'keyword', 'Quick Keyword Position Checker', 'Gyors Helyezés vizsgáló', '2011-07-11 10:53:54'),
(1631, 'hu', 'keyword', 'results from ', 'eredmények', '2011-07-11 10:53:54'),
(1632, 'hu', 'keyword', 'Show All results', 'Összes eredmény mutatása', '2011-07-11 10:53:54'),
(1633, 'hu', 'keyword', 'Successfully crawled keyword', 'Sikeresen leellenőrzött kulcsszó', '2011-07-11 10:53:54'),
(1634, 'hu', 'keyword', 'to create new keywords', 'egy új kulcsszó hozzáadása', '2011-07-11 10:53:54'),
(1635, 'hu', 'label', 'already exist', 'már létezik', '2013-02-06 00:24:43'),
(1636, 'hu', 'label', 'Authentication', 'Hitelesítés', '2013-02-06 00:24:43'),
(1637, 'hu', 'label', 'Author', 'Szerző', '2013-02-06 00:24:43'),
(1638, 'hu', 'label', 'Click Here', 'Kattints Ide', '2013-02-06 00:24:43'),
(1639, 'hu', 'label', 'Cron', 'Cron', '2013-02-06 00:24:43'),
(1640, 'hu', 'label', 'Description', 'Leírás', '2013-02-06 00:24:43'),
(1641, 'hu', 'label', 'Developers', 'Fejlesztők', '2013-02-06 00:24:43'),
(1642, 'hu', 'label', 'Download', 'Letöltés', '2013-02-06 00:24:43'),
(1643, 'hu', 'label', 'Installation', 'Telepítés', '2013-02-06 00:24:43'),
(1644, 'hu', 'label', 'Keywords', 'Kulcsszavak', '2013-02-06 00:24:43'),
(1645, 'hu', 'label', 'noactiveplugins', 'Nem találtunk aktív Seo beépülőket!', '2013-02-06 00:24:43'),
(1646, 'hu', 'label', 'Plugin', 'Beépülő', '2013-02-06 00:24:43'),
(1647, 'hu', 'label', 'Port', 'Port', '2013-02-06 00:24:43'),
(1648, 'hu', 'label', 'Proxy', 'Proxy', '2013-02-06 00:24:43'),
(1649, 'hu', 'label', 'Re-install', 'Újrainstallálom', '2013-02-06 00:24:43'),
(1650, 'hu', 'label', 'Sponsors', 'Támogatók', '2013-02-06 00:24:43'),
(1651, 'hu', 'label', 'Title', 'Cím', '2013-02-06 00:24:43'),
(1652, 'hu', 'label', 'translation by', 'fordította:', '2013-02-06 00:24:43'),
(1653, 'hu', 'label', 'Translators', 'Fordítók', '2013-02-06 00:24:43'),
(1654, 'hu', 'label', 'Upgrade', 'Frissítés', '2013-02-06 00:24:43'),
(1655, 'hu', 'label', 'Version', 'Verzió', '2013-02-06 00:24:43'),
(1656, 'hu', 'label', 'wantproceed', 'Biztos vagy benne?', '2013-02-06 00:24:43'),
(1657, 'hu', 'login', 'Confirm Password', 'Jelszó megerősítése', '2010-10-11 02:33:10'),
(1658, 'hu', 'login', 'Create my account', 'Felhasználói fiók létrehozása', '2010-10-11 02:33:11'),
(1659, 'hu', 'login', 'Create New Account', 'Új Felhasználói Fiók', '2010-10-11 02:33:11'),
(1660, 'hu', 'login', 'Email', 'E-mail', '2010-10-11 02:33:11'),
(1661, 'hu', 'login', 'emailexist', 'Ez az E-mail cím már létezik!', '2010-10-11 02:33:11'),
(1662, 'hu', 'login', 'Enter the code as it is shown', 'Írd be az alábbi kódot', '2010-10-11 02:33:11'),
(1663, 'hu', 'login', 'First Name', 'Vezetéknév', '2010-10-11 02:33:11'),
(1664, 'hu', 'login', 'Last Name', 'Keresztnév', '2010-10-11 02:33:11'),
(1665, 'hu', 'login', 'Login', 'Bejelentkezés', '2010-10-11 02:33:11'),
(1666, 'hu', 'login', 'Login incorrect', 'Nem sikerült bejelentkezned', '2010-10-11 02:33:11'),
(1667, 'hu', 'login', 'newaccountsuccess', 'Az új felhasználói fiók sikeresen elkészült!', '2010-10-11 02:33:11'),
(1668, 'hu', 'login', 'Password', 'Jelszó', '2010-10-11 02:33:11'),
(1669, 'hu', 'login', 'Password incorrect', 'A Jelszó hibás', '2010-10-11 02:33:11'),
(1670, 'hu', 'login', 'Register', 'Regisztráció', '2010-10-11 02:33:11'),
(1671, 'hu', 'login', 'Sign in to your account', 'Jelentkezz be', '2010-10-11 02:33:11'),
(1672, 'hu', 'login', 'User inactive', 'Inaktív felhasználó', '2010-10-11 02:33:11'),
(1673, 'hu', 'login', 'Username', 'Felhasználónév', '2010-10-11 02:33:11'),
(1674, 'hu', 'login', 'usernameexist', 'Ilyen felhasználónévvel már regisztráltak!', '2010-10-11 02:33:11'),
(1675, 'hu', 'panel', 'About Us', 'A Készítőkről', '2013-02-06 00:25:03'),
(1676, 'hu', 'panel', 'Add following command to your cron tab', 'Add hozzá az alábbi utasítást a cron tabodhoz', '2013-02-06 00:25:03'),
(1677, 'hu', 'panel', 'alsocheckfollowlink', 'Nézd meg az alábbi linket ha szükséged van további részletekre.', '2013-02-06 00:25:03'),
(1678, 'hu', 'panel', 'Check Directory', 'Katalógus ellenőrzése', '2013-02-06 00:25:03'),
(1679, 'hu', 'panel', 'Cron Command', 'Cron Parancs', '2013-02-06 00:25:03'),
(1680, 'hu', 'panel', 'Directory Manager', 'Katalógus Kezelő', '2013-02-06 00:25:03'),
(1681, 'hu', 'panel', 'Edit My Profile', 'profilom Szerkesztése', '2013-02-06 00:25:03'),
(1682, 'hu', 'panel', 'My Profile', 'Profilom', '2013-02-06 00:25:03'),
(1683, 'hu', 'panel', 'New Proxy', 'Új Proxy', '2013-02-06 00:25:03'),
(1684, 'hu', 'panel', 'New User', 'Új Felhasználó', '2013-02-06 00:25:03'),
(1685, 'hu', 'panel', 'New Website', 'Új Weboldal', '2013-02-06 00:25:03'),
(1686, 'hu', 'panel', 'Proxy Manager', 'Proxy Kezelő', '2013-02-06 00:25:03'),
(1687, 'hu', 'panel', 'Report Generation Manager', 'Jelentéskészítő Beállításai', '2013-02-06 00:25:03'),
(1688, 'hu', 'panel', 'Reports Manager', 'Jelentések Kezelése', '2013-02-06 00:25:03'),
(1689, 'hu', 'panel', 'Seo Plugins Manager', 'Seo Beépülők Kezelése', '2013-02-06 00:25:03'),
(1690, 'hu', 'panel', 'Seo Tools Manager', 'Seo kiegészítések kezelése', '2013-02-06 00:25:03'),
(1691, 'hu', 'panel', 'System Settings', 'Rendszerbeállítások', '2013-02-06 00:25:03'),
(1692, 'hu', 'panel', 'User Manager', 'Felhasználókezelő', '2013-02-06 00:25:03'),
(1693, 'hu', 'panel', 'Website Manager', 'Weboldalkezelő', '2013-02-06 00:25:03'),
(1694, 'hu', 'plugin', 'Edit Seo Plugin', 'Seo Beépülő Szerkesztése', '2012-05-23 02:30:42'),
(1695, 'hu', 'plugin', 'Plugin Name', 'Beépülő Neve', '2012-05-23 02:30:42'),
(1696, 'hu', 'plugin', 'Seo Plugin Details', 'Seo Beépülő Leírása', '2012-05-23 02:30:42'),
(1697, 'hu', 'proxy', 'Edit Proxy', 'Proxy Szerkesztése', '2010-10-11 02:42:13'),
(1698, 'hu', 'proxy', 'Proxy Password', 'Proxy Jelszó', '2010-10-11 02:42:14'),
(1699, 'hu', 'proxy', 'Proxy Username', 'Proxy Felhasználónév', '2010-10-11 02:42:14'),
(1700, 'hu', 'proxy', 'Proxyalreadyexist', 'Ez a Proxy már létezik!', '2010-10-11 02:42:14'),
(1701, 'hu', 'rank', 'enterurlproceed', 'Írd be a weboldalak Url-jét <b>egyesével soronként</b>. Kattints az <b>Elküldése</b> feliratra a Google és Alexa rank ellenőrzéséhez.', '2010-10-11 02:45:42'),
(1702, 'hu', 'rank', 'Google and Alexa Rank Reports', 'Google és Alexa Rank Jelentések', '2010-10-11 02:45:42'),
(1703, 'hu', 'rank', 'Saved rank results of', 'Elmentett eredmények:', '2010-10-11 02:45:42'),
(1704, 'hu', 'saturation', 'clickproceedsaturation', 'Írd be az ellenőrizendő weboldalak Url-jét(<b>soronként egyet</b>). Kattints az <b>Elküldés</b> feliratra, hogy ellenőrizd az indexelt oldalak számát.', '2010-10-11 02:52:43'),
(1705, 'hu', 'saturation', 'GenerateSaturationReports', 'Jelentés készítése a keresők által indexelt oldalak számából', '2010-10-11 02:52:43'),
(1706, 'hu', 'saturation', 'Quick Search Engine Saturation Checker', 'Gyors ellenőrzése az indexelt oldalak számának', '2010-10-11 02:52:43'),
(1707, 'hu', 'saturation', 'Saved Search Engine Saturation results of', 'Indexelt oldalak száma elmentve:', '2010-10-11 02:52:43'),
(1708, 'hu', 'saturation', 'Search Engine Saturation Reports', 'Indexelt Oldalak Számának Jelentése', '2010-10-11 02:52:43'),
(1709, 'hu', 'seotools', 'Automatic Submission', 'Automata Linkbeküldés', '2011-07-11 11:00:18'),
(1710, 'hu', 'seotools', 'backlink-checker', 'Backlink Ellenőrző', '2011-07-11 11:00:18'),
(1711, 'hu', 'seotools', 'Backlinks Reports', 'Backlink Jelentések', '2011-07-11 11:00:18'),
(1712, 'hu', 'seotools', 'Check Submission Status', 'Beküldés állapotának ellenőrzése', '2011-07-11 11:00:18'),
(1713, 'hu', 'seotools', 'clickgeneratereports', 'Kattints az <b>Elküldés</b> feliratra, hogy elkészüljön a jelentés\r\n', '2011-07-11 11:00:18'),
(1714, 'hu', 'seotools', 'Detailed Position Reports', 'Részletes Jelentés a Helyezésekről', '2011-07-11 11:00:18'),
(1715, 'hu', 'seotools', 'directory-submission', 'Linkbeküldés', '2011-07-11 11:00:18'),
(1716, 'hu', 'seotools', 'Featured Submission', 'Kiemelt Linkbeküldés', '2011-07-11 11:00:18'),
(1717, 'hu', 'seotools', 'Generate Backlinks Reports', 'Backlink jelentés készítése', '2011-07-11 11:00:18'),
(1718, 'hu', 'seotools', 'Generate Keyword Reports', 'Kulcsszó Jelentés Készítése', '2011-07-11 11:00:18'),
(1719, 'hu', 'seotools', 'Generate Rank Reports', 'Google és Alexa Rank Jelentés', '2011-07-11 11:00:18'),
(1720, 'hu', 'seotools', 'Generate Saturation Reports', 'jelentés az Indexelt Oldalakról', '2011-07-11 11:00:18'),
(1721, 'hu', 'seotools', 'Google Sitemap Generator', 'Google Oldaltérkép Készítése', '2011-07-11 11:00:18'),
(1722, 'hu', 'seotools', 'Graphical Position Reports', 'Grafikus Helyezés Jelentés', '2011-07-11 11:00:18'),
(1723, 'hu', 'seotools', 'Keyword Position Summary', 'Kulcsszavak Pozíciójának Összefoglalója', '2011-07-11 11:00:18'),
(1724, 'hu', 'seotools', 'keyword-position-checker', 'Helyezés Vizsgáló', '2011-07-11 11:00:18'),
(1725, 'hu', 'seotools', 'Keywords Manager', 'Kulcsszókezelő', '2011-07-11 11:00:18'),
(1726, 'hu', 'seotools', 'Quick Backlinks Checker', 'Gyors Backlink Ellenőrző', '2011-07-11 11:00:18'),
(1727, 'hu', 'seotools', 'Quick Position Checker', 'Gyors Helyezés Vizsgáló', '2011-07-11 11:00:18'),
(1728, 'hu', 'seotools', 'Quick Rank Checker', 'Gyors \\"Rang\\" Vizsgáló', '2011-07-11 11:00:18'),
(1729, 'hu', 'seotools', 'Quick Saturation Checker', 'Gyors Indexelés Vizsgáló', '2011-07-11 11:00:18'),
(1730, 'hu', 'seotools', 'Rank Reports', '\\"Rang\\" Jelentések', '2011-07-11 11:00:18'),
(1731, 'hu', 'seotools', 'rank-checker', 'Alexa és Pagerank', '2011-07-11 11:00:18'),
(1732, 'hu', 'seotools', 'Saturation Reports', 'Indexelésről Jelentések', '2011-07-11 11:00:18'),
(1733, 'hu', 'seotools', 'saturation-checker', 'Indexelt Oldalak ', '2011-07-11 11:00:18'),
(1734, 'hu', 'seotools', 'sitemap-generator', 'Oldaltérkép Készítése', '2011-07-11 11:00:18'),
(1735, 'hu', 'seotools', 'Skipped Directories', 'Kihagyott Katalógusok', '2011-07-11 11:00:18'),
(1736, 'hu', 'seotools', 'Submission Reports', 'Jelentés a Linkbeküldésekről', '2011-07-11 11:00:18'),
(1737, 'hu', 'seotools', 'User Access', 'Hozzáférés', '2011-07-11 11:00:18'),
(1738, 'hu', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Támogasd $100-al</b> a Seo Panlelt és válj <b>Támogatóvá</b>.', '2013-02-06 00:25:44'),
(1739, 'hu', 'settings', 'seopanel_description', 'Egy teljesen ingyenes eszköz mely nagy mértékben megkönnyíti a keresőoptimalizálást. Egyszerre több népszerű Seo eszközt foglal magában, hogy Weblapjából a maximumot hozhassa ki. Nyílt forráskódú ezért Ön is fejleszthet hozzá különböző Seo Kiegészítőket.', '2013-02-06 00:25:44'),
(1740, 'hu', 'settings', 'seopanel_title', 'Seo Panel: A világ első nyílt forráskódú Keresőoptimalizáló \\"Panel\\"-je. ', '2013-02-06 00:25:44'),
(1741, 'hu', 'settings', 'SP_CRAWL_DELAY', 'Várakozás a lekérdezések között(másodperc)', '2013-02-06 00:25:44'),
(1742, 'hu', 'settings', 'SP_DEFAULTLANG', 'Alapértelmezett Nyelv', '2013-02-06 00:25:44'),
(1743, 'hu', 'settings', 'SP_DESCRIPTION', 'Seo Panel Leírás', '2013-02-06 00:25:44'),
(1744, 'hu', 'settings', 'SP_ENABLE_PROXY', 'Proxy Engedélyezése', '2013-02-06 00:25:44'),
(1745, 'hu', 'settings', 'SP_HOTLINKING', 'Képek \\"hotlink\\" védelmének engedélyezése', '2013-02-06 00:25:44'),
(1746, 'hu', 'settings', 'SP_KEYWORDS', 'Seo Panel Kulcsszavak', '2013-02-06 00:25:44'),
(1747, 'hu', 'settings', 'SP_PAGINGNO', 'Bejegyzések száma oldalanként', '2013-02-06 00:25:44'),
(1748, 'hu', 'settings', 'SP_TITLE', 'Seo Panel Cím', '2013-02-06 00:25:44'),
(1749, 'hu', 'settings', 'SP_USER_GEN_REPORT', 'Felhasználók készíthetnek-e jelentéseket', '2013-02-06 00:25:44'),
(1750, 'hu', 'settings', 'SP_USER_REGISTRATION', 'Regisztráció engedélyezése', '2013-02-06 00:25:44'),
(1751, 'hu', 'settings', 'syssettingssaved', 'A Beállításokat sikeresen elmentettük!', '2013-02-06 00:25:44');
INSERT INTO `texts` VALUES
(1752, 'hu', 'sitemap', 'Change frequency', 'Frissítés gyakorisága', '2010-10-11 03:31:58'),
(1753, 'hu', 'sitemap', 'clickproceedsitemap', 'Kattints az <b>Elküldés</b> feliratra, hogy az oldaltérképed elkészüljön', '2010-10-11 03:31:58'),
(1754, 'hu', 'sitemap', 'Download sitemap file from', 'Oldaltérkép letöltése', '2010-10-11 03:31:58'),
(1755, 'hu', 'sitemap', 'Exclude Url', 'Kihagyandó URL-ek', '2010-10-11 03:31:58'),
(1756, 'hu', 'sitemap', 'processtaketime', 'Az oldaltérkép elkészítése eltarthat egy ideig, attól függően, hogy az oldalán mennyi link található. Kérem várjon...', '2010-10-11 03:31:58'),
(1757, 'hu', 'sitemap', 'Sitemap Type', 'Oldaltérkép típusa', '2010-10-11 03:31:58'),
(1758, 'hu', 'user', 'Edit User', 'Felhasználó szerkesztése', '2010-10-11 03:35:28'),
(1759, 'hu', 'user', 'Saved My Profile Details', 'A változtatásokat elmentettük', '2010-10-11 03:35:28'),
(1760, 'hu', 'website', 'Edit Website', 'Weboldal Szerkesztése', '2010-10-12 02:15:03'),
(1761, 'hu', 'website', 'plscrtwebsite', 'Kérem először adjon meg egy weboldalt mielőtt elkezdi használni a Seo eszközöket és beépülőket.', '2010-10-12 02:15:03'),
(1762, 'hu', 'website', 'Website already exist', 'Ez a Weboldal már megtalálható az adatbázisunkban.', '2010-10-12 02:15:03'),
(1763, 'hu', 'website', 'yourwebalreday', 'Weboldalad, ha már legalább egyet megadtál.', '2010-10-12 02:15:03'),
(1764, 'it', 'website', 'Edit Website', 'Modifica sito web', '2018-08-21 11:27:14'),
(1765, 'it', 'website', 'plscrtwebsite', 'Per cortesia crea il sito web proma di utilizzareo gli strumenti seo e i plugin seo.', '2018-08-21 11:27:14'),
(1766, 'it', 'website', 'Website already exist', 'Sito web già esistente', '2018-08-21 11:27:14'),
(1767, 'it', 'website', 'yourwebalreday', 'il tuo sito web se ne hai già creato uno.', '2018-08-21 11:27:14'),
(1768, 'it', 'user', 'Edit User', 'Modifica utente', '2018-08-21 11:25:45'),
(1769, 'it', 'user', 'Saved My Profile Details', 'Salva i miei dettagli del profilo', '2018-08-21 11:25:45'),
(1770, 'it', 'sitemap', 'Change frequency', 'Frequenza di aggiornamento', '2010-10-11 07:23:32'),
(1771, 'it', 'sitemap', 'clickproceedsitemap', 'Clicca su <b>Procedi</b> per creare il file sitemap', '2010-10-11 07:23:32'),
(1772, 'it', 'sitemap', 'Download sitemap file from', 'Scarica file sitemap da', '2010-10-11 07:23:32'),
(1773, 'it', 'sitemap', 'Exclude Url', 'Url da escludere', '2010-10-11 07:23:32'),
(1774, 'it', 'sitemap', 'processtaketime', 'Questo processo durerà in base al numero di link presenti nel tuo sito. Per cortesia aspetta per la sitemap.', '2010-10-11 07:23:32'),
(1775, 'it', 'sitemap', 'Sitemap Type', 'Tipo sitemap', '2010-10-11 07:23:32'),
(1776, 'it', 'login', 'Confirm Password', 'Conferma password', '2018-08-21 11:07:40'),
(1777, 'it', 'login', 'Create my account', 'Crea il mio account', '2018-08-21 11:07:40'),
(1778, 'it', 'login', 'Create New Account', 'Crea nuovo account', '2018-08-21 11:07:40'),
(1779, 'it', 'login', 'Email', 'Email', '2018-08-21 11:07:40'),
(1780, 'it', 'login', 'emailexist', 'La mail esiste già!', '2018-08-21 11:07:40'),
(1781, 'it', 'login', 'Enter the code as it is shown', 'Inserisci il codice mostrato', '2018-08-21 11:07:40'),
(1782, 'it', 'login', 'First Name', 'Nome', '2018-08-21 11:07:40'),
(1783, 'it', 'login', 'Last Name', 'Cognome', '2018-08-21 11:07:40'),
(1784, 'it', 'login', 'Login', 'Login', '2018-08-21 11:07:40'),
(1785, 'it', 'login', 'Login incorrect', 'Login errato', '2018-08-21 11:07:40'),
(1786, 'it', 'login', 'newaccountsuccess', 'Nuovo account creato con successo!', '2018-08-21 11:07:40'),
(1787, 'it', 'login', 'Password', 'Password', '2018-08-21 11:07:40'),
(1788, 'it', 'login', 'Password incorrect', 'Password non corretta', '2018-08-21 11:07:40'),
(1789, 'it', 'login', 'Register', 'Registrati', '2018-08-21 11:07:40'),
(1790, 'it', 'login', 'Sign in to your account', 'Collegati con il tuo account', '2018-08-21 11:07:40'),
(1791, 'it', 'login', 'User inactive', 'Utente inattivo', '2018-08-21 11:07:40'),
(1792, 'it', 'login', 'Username', 'Nome utente', '2018-08-21 11:07:40'),
(1793, 'it', 'login', 'usernameexist', 'Nome utente già esistente!', '2018-08-21 11:07:40'),
(1846, 'nl', 'common', 'Name', 'Naam', '2019-05-25 22:06:08'),
(1847, 'nl', 'common', 'No Keywords Found', 'Geen Zoekwoorden gevonden', '2019-05-25 22:06:08'),
(1848, 'nl', 'common', 'No Records Found', 'Geen Rapporten Gevonden', '2019-05-25 22:06:08'),
(1849, 'nl', 'common', 'noactivetools', 'Geen actieve Seo Tools gevonden!', '2019-05-25 22:06:08'),
(1850, 'nl', 'common', 'nowebsites', 'Geen Websites gevonden', '2019-05-25 22:06:08'),
(1851, 'nl', 'common', 'password632', 'Het wachtwoord moet 6 tot 32 tekens lang zijn', '2019-05-25 22:06:08'),
(1852, 'nl', 'common', 'passwordnotmatch', 'De opgegeven wachtwoorden komen niet overeen', '2019-05-25 22:06:08'),
(1853, 'nl', 'common', 'Period', 'Periode', '2019-05-25 22:06:08'),
(1854, 'nl', 'common', 'Priority', 'Prioriteit', '2019-05-25 22:06:08'),
(1855, 'nl', 'common', 'Reports', 'Rapporten', '2019-05-25 22:06:08'),
(1856, 'nl', 'common', 'Results', 'Resultaten', '2019-05-25 22:06:08'),
(1857, 'nl', 'common', 'Search Engine', 'Zoekmachine', '2019-05-25 22:06:08'),
(1858, 'nl', 'common', 'Seo Plugins', 'Seo Plugins', '2019-05-25 22:06:08'),
(1859, 'nl', 'common', 'Seo Tools', 'Seo Tools', '2019-05-25 22:06:08'),
(1860, 'nl', 'common', 'Sign out', 'Uitloggen', '2019-05-25 22:06:08'),
(1861, 'nl', 'common', 'Sign Up', 'Registreren', '2019-05-25 22:06:08'),
(1862, 'nl', 'common', 'signin', 'Inloggen', '2019-05-25 22:06:08'),
(1863, 'nl', 'common', 'Status', 'Status', '2019-05-25 22:06:08'),
(1864, 'nl', 'common', 'Support', 'Support', '2019-05-25 22:06:08'),
(1865, 'nl', 'common', 'Url', 'URL', '2019-05-25 22:06:08'),
(1866, 'nl', 'common', 'User', 'Gebruiker', '2019-05-25 22:06:08'),
(1867, 'nl', 'common', 'User Panel', 'Gebruiker Instellingen', '2019-05-25 22:06:08'),
(1868, 'nl', 'common', 'Website', 'Website', '2019-05-25 22:06:08'),
(1869, 'nl', 'directory', 'Add back to directory list', 'Toevoegen aan de directory lijst', '2014-01-08 02:36:56'),
(1870, 'nl', 'directory', 'Approved', 'Goedgekeurd', '2014-01-08 02:36:56'),
(1871, 'nl', 'directory', 'Captcha', 'Captcha', '2014-01-08 02:36:56'),
(1872, 'nl', 'directory', 'categorynote', 'Categorieën, gescheiden door komma''s in volgorde van belangrijkheid. Start met de meest relevante categorie.', '2014-01-08 02:36:56'),
(1873, 'nl', 'directory', 'Check Directory Status', 'Controleer Directory Status', '2014-01-08 02:36:56'),
(1874, 'nl', 'directory', 'Check Directory Submission Status', 'Controleer Directory Inschrijving Status', '2014-01-08 02:36:56'),
(1875, 'nl', 'directory', 'clicktoproceeddirsts', 'Klik op <b>ga verder</b> om de directory status te controleren.', '2014-01-08 02:36:56'),
(1876, 'nl', 'directory', 'Confirmation', 'Bevestiging', '2014-01-08 02:36:56'),
(1877, 'nl', 'directory', 'desnote', 'Sommige directory''s vereisen ten minste 150 karakters als beschrijving.', '2014-01-08 02:36:56'),
(1878, 'nl', 'directory', 'Directories with out captcha', 'Directory''s zonder captcha', '2014-01-08 02:36:56'),
(1879, 'nl', 'directory', 'Directory Submission Reports', 'Directory Inschrijving Rapporten', '2014-01-08 02:36:56'),
(1880, 'nl', 'directory', 'Enter the code shown', 'Voer de getoonde code in', '2014-01-08 02:36:56'),
(1881, 'nl', 'directory', 'nocatnote', 'De gevraagde categorie bestaat niet in deze map. Klik <b>Vernieuwen</b> of <b>Overslaan</b>.', '2014-01-08 02:36:56'),
(1882, 'nl', 'directory', 'nodirnote', 'Geen <b>actieve</b> directory''s gevonden.', '2014-01-08 02:36:56'),
(1883, 'nl', 'directory', 'nosuccessnote', 'Geen bevestiging ontvangen - Controleer uw e-mail voor een bevestigingsmail.', '2014-01-08 02:36:56'),
(1884, 'nl', 'directory', 'optionalnote', 'Optioneel kunt u verschillende beschrijvingen en titels toevoegen voor wisselende beschrijvingen en titels in de directory''s. Dit om betere resultaten te krijgen.', '2014-01-08 02:36:56'),
(1885, 'nl', 'directory', 'Owner Email', 'Eigenaar E-mail', '2014-01-08 02:36:56'),
(1886, 'nl', 'directory', 'Owner Name', 'Eigenaar Naam', '2014-01-08 02:36:56'),
(1887, 'nl', 'directory', 'Pending', 'In afwachting', '2014-01-08 02:36:56'),
(1888, 'nl', 'directory', 'Please select a website to proceed', 'Selecteer een website om verder te gaan', '2014-01-08 02:36:56'),
(1889, 'nl', 'directory', 'selectwebsiteproceed', 'Selecteer een <b>Website</b> om te <b>starten</b> met de directory inschrijvingen.<br>Zet een vinkje bij <b>Directory''s zonder captcha</b> om directory''s met Captcha over te slaan.', '2014-01-08 02:36:56'),
(1890, 'nl', 'directory', 'selectwebsiteschecksub', 'Selecteer een <b>Website</b> om te <b>starten</b> met de controle van de directory inschrijvingen', '2014-01-08 02:36:56'),
(1891, 'nl', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi-Automatische Directory Inschrijf Tool', '2014-01-08 02:36:56'),
(1892, 'nl', 'directory', 'spamemailnote', 'Sommige directory''s versturen SPAM, wij raden aan niet uw primaire e-mail adres te gebruiken, maar een apart e-mail adres.', '2014-01-08 02:36:56'),
(1893, 'nl', 'directory', 'Submission Details', 'Registratie details', '2014-01-08 02:36:56'),
(1894, 'nl', 'directory', 'Submit Description', 'Omschrijving website ', '2014-01-08 02:36:56'),
(1895, 'nl', 'directory', 'Submit Keywords', 'Zoekwoorden ', '2014-01-08 02:36:56'),
(1896, 'nl', 'directory', 'Submit Title', 'Titel ', '2014-01-08 02:36:56'),
(1897, 'nl', 'directory', 'Website Category', 'Website Categorie', '2014-01-08 02:36:56'),
(1898, 'nl', 'directory', 'Website Url', 'Website URL', '2014-01-08 02:36:56'),
(1899, 'nl', 'home', 'Account Summary', 'Overzicht accounts', '2011-07-06 01:52:28'),
(1900, 'nl', 'home', 'Backlinks', 'Backlinks', '2011-07-06 01:52:28'),
(1901, 'nl', 'home', 'Directory Submission', 'Directory Inschrijving', '2011-07-06 01:52:28'),
(38972, 'cn', 'review', 'Review Link Details', '评论链接详情', '2026-01-19 22:58:50'),
(38973, 'cs', 'review', 'Review Link Details', 'Podrobnosti odkazu na recenzi', '2026-01-19 22:58:50'),
(38974, 'da', 'review', 'Review Link Details', 'Anmeldelseslink detaljer', '2026-01-19 22:58:50'),
(38975, 'de', 'review', 'Review Link Details', 'Bewertungslink-Details', '2026-01-19 22:58:50'),
(38976, 'el', 'review', 'Review Link Details', 'Λεπτομέρειες συνδέσμου αξιολόγησης', '2026-01-19 22:58:50'),
(38977, 'es', 'review', 'Review Link Details', 'Detalles del enlace de reseña', '2026-01-19 22:58:50'),
(38978, 'es-ar', 'review', 'Review Link Details', 'Detalles del enlace de reseña', '2026-01-19 22:58:50'),
(38979, 'fa', 'review', 'Review Link Details', 'جزئیات لینک بررسی', '2026-01-19 22:58:50'),
(38980, 'fi', 'review', 'Review Link Details', 'Arvostelulinkin tiedot', '2026-01-19 22:58:50'),
(38981, 'fr', 'review', 'Review Link Details', 'Détails du lien d''avis', '2026-01-19 22:58:50'),
(38982, 'he', 'review', 'Review Link Details', 'פרטי קישור ביקורת', '2026-01-19 22:58:50'),
(38983, 'hi', 'review', 'Review Link Details', 'समीक्षा लिंक विवरण', '2026-01-19 22:58:50'),
(38984, 'hr', 'review', 'Review Link Details', 'Detalji linka recenzije', '2026-01-19 22:58:50'),
(1905, 'nl', 'home', 'Pages Indexed', 'Geïndexeerde pagina\\''s', '2011-07-06 01:52:28'),
(1906, 'nl', 'home', 'Ranks', 'Ranks', '2011-07-06 01:52:28'),
(1907, 'nl', 'home', 'SiteNameUrl', 'Website Naam / URL', '2011-07-06 01:52:28'),
(1908, 'nl', 'home', 'Website Statistics', 'Website Statistieken', '2011-07-06 01:52:28'),
(1909, 'nl', 'keyword', 'Crawling keyword', 'Zoekwoord aan het controleren', '2011-07-06 01:54:33'),
(1910, 'nl', 'keyword', 'Detailed Keyword Position Reports', 'Gedetailleerd Zoekwoord Positie Rapporten', '2011-07-06 01:54:33'),
(1911, 'nl', 'keyword', 'Edit Keyword', 'Wijzig Zoekwoord', '2011-07-06 01:54:33'),
(1912, 'nl', 'keyword', 'Graphical Keyword Position Reports', 'Grafische Zoekwoord Positie Rapporten ', '2011-07-06 01:54:33'),
(1913, 'nl', 'keyword', 'Import Keywords', 'Zoekwoorden importeren', '2011-07-06 01:54:33'),
(1914, 'nl', 'keyword', 'Keyword already exist', 'Zoekwoord bestaat al', '2011-07-06 01:54:33'),
(1915, 'nl', 'keyword', 'Keyword Position Report', 'Zoekwoord Positie Rapport', '2011-07-06 01:54:33'),
(1916, 'nl', 'keyword', 'New Keyword', 'Nieuw Zoekwoord', '2011-07-06 01:54:33'),
(1917, 'nl', 'keyword', 'not assigned to required search engines', 'niet vertegenwoordigd in relevante zoekmachines', '2011-07-06 01:54:33'),
(1918, 'nl', 'keyword', 'pleaseselecttool', 'Selecteer minstens één Seo Tool', '2011-07-06 01:54:33'),
(1919, 'nl', 'keyword', 'Quick Keyword Position Checker', 'Snelle Zoekwoord Positie controle', '2011-07-06 01:54:33'),
(1920, 'nl', 'keyword', 'results from ', 'Resultaten van', '2011-07-06 01:54:33'),
(1921, 'nl', 'keyword', 'Show All results', 'Alle resultaten weergeven', '2011-07-06 01:54:33'),
(1922, 'nl', 'keyword', 'Successfully crawled keyword', 'Zoekwoord succesvol getest', '2011-07-06 01:54:33'),
(1923, 'nl', 'keyword', 'to create new keywords', 'om nieuwe zoekwoorden te maken', '2011-07-06 01:54:33'),
(1924, 'nl', 'label', 'already exist', 'bestaat al', '2014-01-08 02:37:43'),
(1925, 'nl', 'label', 'Authentication', 'Authenticatie', '2014-01-08 02:37:43'),
(1926, 'nl', 'label', 'Author', 'Auteur', '2014-01-08 02:37:43'),
(1927, 'nl', 'label', 'Click Here', 'Hier klikken', '2014-01-08 02:37:43'),
(1928, 'nl', 'label', 'Cron', 'Cronjob', '2014-01-08 02:37:43'),
(1929, 'nl', 'label', 'Description', 'Beschrijving', '2014-01-08 02:37:43'),
(1930, 'nl', 'label', 'Developers', 'Ontwikkelaars', '2014-01-08 02:37:43'),
(1931, 'nl', 'label', 'Download', 'Download', '2014-01-08 02:37:43'),
(1932, 'nl', 'label', 'Installation', 'Installatie', '2014-01-08 02:37:43'),
(1933, 'nl', 'label', 'Keywords', 'Zoekwoorden', '2014-01-08 02:37:43'),
(1934, 'nl', 'label', 'noactiveplugins', 'Geen actieve Seo plugins gevonden!', '2014-01-08 02:37:43'),
(1935, 'nl', 'label', 'Plugin', 'Plugin', '2014-01-08 02:37:43'),
(1936, 'nl', 'label', 'Port', 'Poort', '2014-01-08 02:37:43'),
(1937, 'nl', 'label', 'Proxy', 'Proxy', '2014-01-08 02:37:43'),
(1938, 'nl', 'label', 'Re-install', 'Opnieuw installeren', '2014-01-08 02:37:43'),
(1939, 'nl', 'label', 'Sponsors', 'Sponsors', '2014-01-08 02:37:43'),
(1940, 'nl', 'label', 'Title', 'Titel', '2014-01-08 02:37:43'),
(1941, 'nl', 'label', 'translation by', 'vertaald door', '2014-01-08 02:37:43'),
(1942, 'nl', 'label', 'Translators', 'Vertalers', '2014-01-08 02:37:43'),
(1943, 'nl', 'label', 'Upgrade', 'Updaten', '2014-01-08 02:37:43'),
(1944, 'nl', 'label', 'Version', 'Versie', '2014-01-08 02:37:43'),
(1945, 'nl', 'login', 'Confirm Password', 'Bevestig wachtwoord', '2014-01-08 02:45:36'),
(1946, 'nl', 'login', 'Create my account', 'Maak mijn account', '2014-01-08 02:45:36'),
(1947, 'nl', 'login', 'Create New Account', 'Maak nieuwe account', '2014-01-08 02:45:36'),
(1948, 'nl', 'login', 'Email', 'E-mail', '2014-01-08 02:45:36'),
(1949, 'nl', 'login', 'emailexist', 'E-mail bestaat al!', '2014-01-08 02:45:36'),
(1950, 'nl', 'login', 'Enter the code as it is shown', 'Vul de afgebeelde code in', '2014-01-08 02:45:36'),
(1951, 'nl', 'login', 'First Name', 'Voornaam', '2014-01-08 02:45:36'),
(1952, 'nl', 'login', 'Last Name', 'Achternaam', '2014-01-08 02:45:36'),
(1953, 'nl', 'login', 'Login', 'Inloggen', '2014-01-08 02:45:36'),
(1954, 'nl', 'login', 'Login incorrect', 'Onjuiste inlog gegevens', '2014-01-08 02:45:36'),
(1955, 'nl', 'login', 'newaccountsuccess', 'Account succesvol geregistreerd!', '2014-01-08 02:45:36'),
(1956, 'nl', 'login', 'Password', 'Wachtwoord', '2014-01-08 02:45:36'),
(1957, 'nl', 'login', 'Password incorrect', 'Onjuist wachtwoord', '2014-01-08 02:45:36'),
(1958, 'nl', 'login', 'Register', 'Registreren', '2014-01-08 02:45:36'),
(1959, 'nl', 'login', 'Sign in to your account', 'Meld u aan bij uw account', '2014-01-08 02:45:36'),
(1960, 'nl', 'login', 'User inactive', 'Gebruiker inactief', '2014-01-08 02:45:36'),
(1961, 'nl', 'login', 'Username', 'Gebruikersnaam', '2014-01-08 02:45:36'),
(1962, 'nl', 'login', 'usernameexist', 'Gebruikersnaam bestaat al!', '2014-01-08 02:45:36'),
(1963, 'nl', 'panel', 'About Us', 'Over ons', '2014-01-08 02:46:33'),
(1964, 'nl', 'panel', 'Add following command to your cron tab', 'Voeg het volgende commando toe aan uw cronjob', '2014-01-08 02:46:33'),
(1965, 'nl', 'panel', 'alsocheckfollowlink', 'Klik op de onderstaande link, voor meer informatie. ', '2014-01-08 02:46:33'),
(1966, 'nl', 'panel', 'Check Directory', 'Controleer directory', '2014-01-08 02:46:33'),
(1967, 'nl', 'panel', 'Cron Command', 'Cronjob commando', '2014-01-08 02:46:33'),
(1968, 'nl', 'panel', 'Directory Manager', 'Directory Manager', '2014-01-08 02:46:33'),
(1969, 'nl', 'panel', 'Edit My Profile', 'Wijzig mijn profiel', '2014-01-08 02:46:33'),
(1970, 'nl', 'panel', 'My Profile', 'Mijn profiel', '2014-01-08 02:46:33'),
(1971, 'nl', 'panel', 'New Proxy', 'Nieuwe Proxy', '2014-01-08 02:46:33'),
(1972, 'nl', 'panel', 'New User', 'Nieuwe gebruiker', '2014-01-08 02:46:33'),
(1973, 'nl', 'panel', 'New Website', 'Nieuwe Website', '2014-01-08 02:46:33'),
(1974, 'nl', 'panel', 'Proxy Manager', 'Proxy Manager', '2014-01-08 02:46:33'),
(1975, 'nl', 'panel', 'Report Generation Manager', 'Rapporten Generatie Manager', '2014-01-08 02:46:33'),
(1976, 'nl', 'panel', 'Reports Manager', 'Rapporten Manager', '2014-01-08 02:46:33'),
(1977, 'nl', 'panel', 'Seo Plugins Manager', 'Seo Plugins Manager', '2014-01-08 02:46:33'),
(1978, 'nl', 'panel', 'Seo Tools Manager', 'Seo Tools Manager', '2014-01-08 02:46:33'),
(1979, 'nl', 'panel', 'System Settings', 'Systeem instellingen', '2014-01-08 02:46:33'),
(1980, 'nl', 'panel', 'User Manager', 'Gebuiker Manager', '2014-01-08 02:46:33'),
(1981, 'nl', 'panel', 'Website Manager', 'Website Manager', '2014-01-08 02:46:33'),
(1982, 'nl', 'plugin', 'Edit Seo Plugin', 'Wijzig Seo Plugin', '2012-05-19 12:28:08'),
(1983, 'nl', 'plugin', 'Plugin Name', 'Plugin Naam', '2012-05-19 12:28:08'),
(1984, 'nl', 'plugin', 'Seo Plugin Details', 'Seo Plugin Details', '2012-05-19 12:28:08'),
(1985, 'nl', 'proxy', 'Edit Proxy', 'Proxy wijzigen', '2014-01-08 02:48:32'),
(1986, 'nl', 'proxy', 'Proxy Password', 'Proxy wachtwoord', '2014-01-08 02:48:32'),
(1987, 'nl', 'proxy', 'Proxy Username', 'Proxy gebruikersnaam', '2014-01-08 02:48:32'),
(1988, 'nl', 'proxy', 'Proxyalreadyexist', 'Proxy bestaat al!', '2014-01-08 02:48:32'),
(1989, 'nl', 'rank', 'enterurlproceed', 'Geef één URL op <b>per regel</b>. Klik op <b>ga verder</b> om de Google en Alexa Rank te controleren.', '2010-10-27 08:25:36'),
(1990, 'nl', 'rank', 'Google and Alexa Rank Reports', 'Google en Alexa Positie rapporten', '2010-10-27 08:25:36'),
(1991, 'nl', 'rank', 'Saved rank results of', 'Rank resultaten opgeslagen voor', '2010-10-27 08:25:36'),
(1992, 'nl', 'saturation', 'clickproceedsaturation', 'Geef één URL op <b>per regel</b>. Klik op <b>ga verder</b> om Zoekmachine Verzadiging te controleren.', '2010-10-27 08:26:25'),
(1993, 'nl', 'saturation', 'GenerateSaturationReports', 'Genereer Zoekmachine Verzadiging Rapporten', '2010-10-27 08:26:25'),
(1994, 'nl', 'saturation', 'Quick Search Engine Saturation Checker', 'Snelle Zoekmachine Verzadiging Controle', '2010-10-27 08:26:25'),
(1995, 'nl', 'saturation', 'Saved Search Engine Saturation results of', 'Resultaten van zoekmachine verzadiging opgeslagen voor', '2010-10-27 08:26:25'),
(1996, 'nl', 'saturation', 'Search Engine Saturation Reports', 'Zoekmachine Verzadiging Rapporten', '2010-10-27 08:26:25'),
(1997, 'nl', 'seotools', 'Automatic Submission', 'Automatische Inschrijving', '2011-07-06 02:20:43'),
(1998, 'nl', 'seotools', 'backlink-checker', 'Backlink Controle', '2011-07-06 02:20:43'),
(1999, 'nl', 'seotools', 'Backlinks Reports', 'Backlink Rapporten', '2011-07-06 02:20:43'),
(2000, 'nl', 'seotools', 'Check Submission Status', 'Controleer Inschrijving Status', '2011-07-06 02:20:43'),
(2001, 'nl', 'seotools', 'clickgeneratereports', 'Klik op <b>ga verder</b> om rapporten te genereren.', '2011-07-06 02:20:43'),
(2002, 'nl', 'seotools', 'Detailed Position Reports', 'Zoekwoord Positie Rapporten', '2011-07-06 02:20:43'),
(2003, 'nl', 'seotools', 'directory-submission', 'Directory Inschrijving', '2011-07-06 02:20:43'),
(2004, 'nl', 'seotools', 'Featured Submission', 'Aanbevolen Inschrijving', '2011-07-06 02:20:43'),
(2005, 'nl', 'seotools', 'Generate Backlinks Reports', 'Genereer Backlink Rapporten', '2011-07-06 02:20:43'),
(2006, 'nl', 'seotools', 'Generate Keyword Reports', 'Genereer Zoekwoord Rapporten', '2011-07-06 02:20:43'),
(2007, 'nl', 'seotools', 'Generate Rank Reports', 'Genereer Rank Rapporten', '2011-07-06 02:20:43'),
(2008, 'nl', 'seotools', 'Generate Saturation Reports', 'Genereer Zoekmachine Verzadiging Rapporten', '2011-07-06 02:20:43'),
(2009, 'nl', 'seotools', 'Google Sitemap Generator', 'Google Sitemap Generator', '2011-07-06 02:20:43'),
(2010, 'nl', 'seotools', 'Graphical Position Reports', 'Grafische Positie Rapporten', '2011-07-06 02:20:43'),
(2011, 'nl', 'seotools', 'Keyword Position Summary', 'Overzicht Zoekwoord Posities', '2011-07-06 02:20:43'),
(2012, 'nl', 'seotools', 'keyword-position-checker', 'Posities van Zoekwoorden', '2011-07-06 02:20:43'),
(2013, 'nl', 'seotools', 'Keywords Manager', 'Zoekwoorden Manager', '2011-07-06 02:20:43'),
(2014, 'nl', 'seotools', 'Quick Backlinks Checker', 'Snelle Backlink Controle', '2011-07-06 02:20:43'),
(2015, 'nl', 'seotools', 'Quick Position Checker', 'Snelle Positie Controle', '2011-07-06 02:20:43'),
(2016, 'nl', 'seotools', 'Quick Rank Checker', 'Snelle Rank Controle', '2011-07-06 02:20:43'),
(2017, 'nl', 'seotools', 'Quick Saturation Checker', 'Snelle Zoekmachine Verzadiging Controle', '2011-07-06 02:20:43'),
(2018, 'nl', 'seotools', 'Rank Reports', 'Rank Rapporten', '2011-07-06 02:20:43'),
(2019, 'nl', 'seotools', 'rank-checker', 'Rank Controle', '2011-07-06 02:20:43'),
(2020, 'nl', 'seotools', 'Saturation Reports', 'Zoekmachine Verzadiging Rapporten', '2011-07-06 02:20:43'),
(2021, 'nl', 'seotools', 'saturation-checker', 'Zoekmachine Verzadiging', '2011-07-06 02:20:43'),
(2022, 'nl', 'seotools', 'sitemap-generator', 'Sitemap Generator', '2011-07-06 02:20:43'),
(2023, 'nl', 'seotools', 'Skipped Directories', 'Overgeslagen Directories', '2011-07-06 02:20:43'),
(2024, 'nl', 'seotools', 'Submission Reports', 'Inschrijving Rapporten', '2011-07-06 02:20:43'),
(2025, 'nl', 'seotools', 'User Access', 'Gebruikers toegang', '2011-07-06 02:20:43'),
(2026, 'nl', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Doneer $100</b> en wordt Seo Panel <b>Sponsor</b>.', '2014-01-08 02:51:05'),
(2027, 'nl', 'settings', 'SP_CRAWL_DELAY', 'Pauze tussen Crawl queries (in seconden)', '2014-01-08 02:51:05'),
(2028, 'nl', 'settings', 'SP_DEFAULTLANG', 'Standaard taal', '2014-01-08 02:51:05'),
(2029, 'nl', 'settings', 'SP_DESCRIPTION', 'Seo Panel Beschrijving', '2014-01-08 02:51:05'),
(2030, 'nl', 'settings', 'SP_ENABLE_PROXY', 'Proxy activeren', '2014-01-08 02:51:05'),
(2031, 'nl', 'settings', 'SP_HOTLINKING', 'Hotlink beveiliging voor grafieken', '2014-01-08 02:51:05'),
(2032, 'nl', 'settings', 'SP_KEYWORDS', 'Seo Panel Zoekwoorden', '2014-01-08 02:51:05'),
(2033, 'nl', 'settings', 'SP_PAGINGNO', 'Aantal records per pagina', '2014-01-08 02:51:05'),
(2034, 'nl', 'settings', 'SP_TITLE', 'Seo Panel Titel', '2014-01-08 02:51:05'),
(2035, 'nl', 'settings', 'SP_USER_GEN_REPORT', 'Gebruikers toestaan rapporten te genereren', '2014-01-08 02:51:05'),
(2036, 'nl', 'settings', 'SP_USER_REGISTRATION', 'Gebruiker registratie scherm', '2014-01-08 02:51:05'),
(2037, 'nl', 'settings', 'syssettingssaved', 'Systeemvoorkeuren succesvol opgeslagen!', '2014-01-08 02:51:05'),
(2038, 'nl', 'sitemap', 'Change frequency', 'Wijzigingsfrequentie', '2010-10-22 17:27:53'),
(2039, 'nl', 'sitemap', 'clickproceedsitemap', 'Klik op <b>ga verder</b> om een sitemap te maken.', '2010-10-22 17:27:53'),
(2040, 'nl', 'sitemap', 'Download sitemap file from', 'Download sitemap bestand van', '2010-10-22 17:27:53'),
(2041, 'nl', 'sitemap', 'Exclude Url', 'URL uitsluiten', '2010-10-22 17:27:53'),
(2042, 'nl', 'sitemap', 'processtaketime', 'Dit proces kan enige minuten duren afhankelijk van het aantal pagina\\''s op de website. Een moment geduld a.u.b. ', '2010-10-22 17:27:53'),
(2043, 'nl', 'sitemap', 'Sitemap Type', 'Sitemap Type', '2010-10-22 17:27:53'),
(2044, 'nl', 'user', 'Edit User', 'Wijzig gebruiker', '2010-10-16 04:42:51'),
(2045, 'nl', 'user', 'Saved My Profile Details', 'Uw profiel gegevens zijn opgeslaan!', '2010-10-16 04:42:51'),
(2046, 'nl', 'website', 'Edit Website', 'Wijzig website', '2014-01-08 02:53:10'),
(2047, 'nl', 'website', 'plscrtwebsite', 'Voeg eerst een website toe om gebruik te maken van de Seo Tools en Seo Plugins.', '2014-01-08 02:53:10'),
(2048, 'nl', 'website', 'Website already exist', 'Website bestaat al', '2014-01-08 02:53:10'),
(2049, 'nl', 'website', 'yourwebalreday', 'uw website, indien u er al een gemaakt heeft.', '2014-01-08 02:53:10'),
(2050, 'nl', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support Systeem</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>1000 Directories Pakket</h1> \r\n <p>\r\n Wij bieden een pakket aan met <b>1000 gratis, actieve en gecontroleerde </b> Directories, ter integratie in uw <b>Directory Inschrijving Tool</b>.\r\n Dit zal helpen het aantal <b>backlinks</b> van uw eigen websites <b>aanzienlijk te verhogen</b>.\r\n Wij bieden deze lijst momenteel aan om geld in te zamelen voor <b>de toekomstige ontwikkelingen</b> van Seo panel. \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Doneer</a> $10 of meer om Seo Panel verder te helpen ontwikkelen en verbeteren.\r\n Als u vragen hebt over het 1000 directories pakket, neem dan gerust<a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contact</a> op of open een ticket in het <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">support</a> systeem.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Klik hier om een donatie aan Seo Panel te doen.</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Het Lokale Zoekmachine Pakket</h1> \r\n <p>\r\n Voeg <b>lokale zoekmachines</b> toe van google,yahoo en msn (<b>Bv.: www.google.nl, www.google.fr etc</b>) aan Seo Panel <b>Posities en Zoekwoorden</b>, om uw site performance lokaal te kunnen controleren. \r\n Om het lokale zoekmachines pakket (op basis van uw behoefte) te ontvangen <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">doneert u</a> $10 of meer om de functies van SEO panel te verbeteren.\r\n Neemt u voordat u doneert <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contact</a> met ons op met een lijst van de gewenste lokale zoekmachine toevoegingen.\r\n <br><br> \r\n Om <b>nieuwe zoekmachines (bijvoorbeeld: baidu.com)</b> toe te voegen, neemt u <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contact</a> met ons op of opent u een ticket in het <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Support System</a>. \r\n </p> \r\n <p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Klik hier om contact op te nemen.</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Voeg <b>Seo plugins</b> toe om uw Seo panel <b>functies uit te breiden</b> volgens uw behoefte. <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel plugins</a> worden geleverd door zowel Seo panel als sites van derden. U kunt zelf ook makkelijk Seo plugins <b>ontwikkelen</b> voor Seo Panel. U kunt uw Seo plugin <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">opsturen naar Seo Panel</a> en wij zullen deze vervolgens publiceren op onze website nadat wij deze <b>getest</b> hebben.\r\n \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Klik hier voor Seo Panel Plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact</h1> \r\n <p>\r\n Neem contact met ons op voor eventuele vragen over <b>Seo Panel Tools, Plugins, Functies, etc..</b> met behulp van de onderstaande link.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Klik hier om contact op te nemen.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n Voor <b>technische Ondersteuning</b> van het Seo Panel Team voor het instellen van <b>Seo Panel tools, plugins en andere functies</b>. Bijvoorbeeld voor het instellen van een Cronjob.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Klik hier om een support ticket aan te maken.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Bugs rapporteren.</h1> \r\n <p>\r\n Help ons door <b>bugs</b> te rapporteren van <b>Seo Panel Tools, Plugins en Functies</b> met behulp van onderstaande link. \r\n \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Klik hier om bugs te rapporteren.</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>\r\n', '2010-10-27 08:56:53'),
(2051, 'nl', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Naslag</legend>\r\n<ul class=\\"infobox\\">\r\n \r\n <li>\r\n <h1>Seo Panel Hulp</h1> \r\n <p>\r\n U kunt de <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Seo panel documentatie</a> in de <b>hulp gids</b> vinden, het bevat de <b>documentatie</b> voor de Seo panel tools, plugins en aanverwante functies.\r\n <br>Het is de beste plek op internet om <b>hulp</b> te krijgen voor Seo panel. We hopen dat u bijdraagt aan de SEO Panel \\"hulp gids\\", indien u fouten vindt of als er zaken ontbreken.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Klik hier om de hulp gids te bekijken.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n De plek om te discussiëren over \\''s werelds eerste open source <b>Seo bedieningspaneel</b>. Het is de beste plek om <b>antwoorden</b> te vinden op uw vragen over Seo Panel.\r\n <br>Ook kunt u uw <b>ervaringen uitwisselen</b> tijdens het gebruik van Seo Panel voor het optimaliseren van uw websites. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Klik hier om naar het Seo Panel Forum te gaan.</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2010-10-27 08:56:53'),
(2052, 'nl', 'support', 'support_cont3', '<fieldset>\r\n<legend>Doneren voor Seo Panel</legend>\r\n<ul class=\\"infobox\\"> \r\n <li>\r\n <h1>Geef een donatie voor de verbetering van - \\''s werelds eerste Open Source Seo Bedieningspaneel.</h1> \r\n <p>\r\n <b>Doneer</b> aan Seo Panel om de \\''s werelds eerste Open Source Seo Software te ondersteunen.\r\n \r\n We zijn van plan om in de toekomst <b>nieuwe functies</b> toe te voegen en Seo Panel te <b>verbeteren</b>.<br>Alleen met uw steun kunnen we onze doelstellingen bereiken. Indien u vindt dat Seo panel voor u de moeite waard is, draag dan a.u.b. een steentje bij.\r\n Zodra wij uw donatie hebben ontavngen zullen wij uw naam en website vernoemen op onze <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donatie pagina</a>.\r\n \r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Klik hier om te doneren aan Seo Panel.</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2010-10-27 08:56:53'),
(2054, 'nl', 'settings', 'seopanel_title', 'Seo Panel: ''s Werelds eerste open source Seo bedieningspaneel voor meerdere websites', '2014-01-08 02:51:05'),
(2055, 'it', 'keyword', 'Crawling keyword', 'Scansiona parole chiave', '2016-12-09 14:18:13'),
(2056, 'it', 'keyword', 'Detailed Keyword Position Reports', 'Dettagli report posizione keywords', '2016-12-09 14:18:13'),
(2057, 'it', 'keyword', 'Edit Keyword', 'Modifica keyword', '2016-12-09 14:18:13'),
(2058, 'it', 'keyword', 'Graphical Keyword Position Reports', 'Report grafico posizione keyword', '2016-12-09 14:18:13'),
(2059, 'it', 'keyword', 'Import Keywords', 'Importa keywords', '2016-12-09 14:18:13'),
(2060, 'it', 'keyword', 'Keyword already exist', 'Keyword già esistente', '2016-12-09 14:18:13'),
(2061, 'it', 'keyword', 'Keyword Position Report', 'Report posizione keyword', '2016-12-09 14:18:13'),
(2062, 'it', 'keyword', 'New Keyword', 'Nuova keyword', '2016-12-09 14:18:13'),
(2063, 'it', 'keyword', 'not assigned to required search engines', 'non assegnato ai motori di ricerca richiesti', '2016-12-09 14:18:13'),
(2064, 'it', 'keyword', 'pleaseselecttool', 'Per cortesia seleziona almeno uno strumento seo', '2016-12-09 14:18:13'),
(2065, 'it', 'keyword', 'Quick Keyword Position Checker', 'Verifica rapida posizione keyword', '2016-12-09 14:18:13'),
(2066, 'it', 'keyword', 'results from ', 'risultati da', '2016-12-09 14:18:13'),
(2067, 'it', 'keyword', 'Show All results', 'Mostra tutti i risultati', '2016-12-09 14:18:13'),
(2068, 'it', 'keyword', 'Successfully crawled keyword', 'Scansione keyword eseguita con successo', '2016-12-09 14:18:13'),
(2069, 'it', 'keyword', 'to create new keywords', 'per creare nuove keyword', '2016-12-09 14:18:13'),
(2070, 'it', 'label', 'already exist', 'già esiste', '2022-07-11 15:17:58'),
(2071, 'it', 'label', 'Authentication', 'Autenticazione', '2022-07-11 15:17:58'),
(2072, 'it', 'label', 'Author', 'Autore', '2022-07-11 15:17:58'),
(2073, 'it', 'label', 'Click Here', 'Clicca quì', '2022-07-11 15:17:58'),
(2074, 'it', 'label', 'Cron', 'Cron', '2022-07-11 15:17:58'),
(2075, 'it', 'label', 'Description', 'Descrizione', '2022-07-11 15:17:58'),
(2076, 'it', 'label', 'Developers', 'Sviluppatori', '2022-07-11 15:17:58'),
(2077, 'it', 'label', 'Download', 'Download', '2022-07-11 15:17:58'),
(2078, 'it', 'label', 'Installation', 'Installazione', '2022-07-11 15:17:58'),
(2079, 'it', 'label', 'Keywords', 'Keyword', '2022-07-11 15:17:58'),
(2080, 'it', 'label', 'noactiveplugins', 'Non è stato trovato alcun Plugin Seo attivo!', '2022-07-11 15:17:58'),
(2081, 'it', 'label', 'Plugin', 'Plugin', '2022-07-11 15:17:58'),
(2082, 'it', 'label', 'Port', 'Porta', '2022-07-11 15:17:58'),
(2083, 'it', 'label', 'Proxy', 'Proxy', '2022-07-11 15:17:58'),
(2084, 'it', 'label', 'Re-install', 'Re-installa', '2022-07-11 15:17:58'),
(2085, 'it', 'label', 'Sponsors', 'Sponsor', '2022-07-11 15:17:58'),
(2086, 'it', 'label', 'Title', 'Titolo', '2022-07-11 15:17:58'),
(2087, 'it', 'label', 'translation by', 'Tradotto da', '2022-07-11 15:17:58'),
(2088, 'it', 'label', 'Translators', 'Traduttori', '2022-07-11 15:17:58'),
(2089, 'it', 'label', 'Upgrade', 'Aggiornamento', '2022-07-11 15:17:58'),
(2090, 'it', 'label', 'Version', 'Versione', '2022-07-11 15:17:58'),
(2091, 'it', 'label', 'wantproceed', 'Vuoi procedere veramente?', '2022-07-11 15:17:58'),
(2092, 'it', 'panel', 'About Us', 'Su di noi', '2022-07-11 15:20:07'),
(2093, 'it', 'panel', 'Add following command to your cron tab', 'Aggiungi i seguenti comandi alle tue azioni pianificate', '2022-07-11 15:20:07'),
(2094, 'it', 'panel', 'alsocheckfollowlink', 'Verificare anche se i seguenti link necessitano di maggiori dettagli.', '2022-07-11 15:20:07'),
(2095, 'it', 'panel', 'Check Directory', 'Verifica directory', '2022-07-11 15:20:07'),
(2096, 'it', 'panel', 'Cron Command', 'Comando azione pianificata', '2022-07-11 15:20:07'),
(2097, 'it', 'panel', 'Directory Manager', 'Gestione directory', '2022-07-11 15:20:07'),
(2098, 'it', 'panel', 'Edit My Profile', 'Modifica il mio profilo', '2022-07-11 15:20:07'),
(2099, 'it', 'panel', 'My Profile', 'Mio profilo', '2022-07-11 15:20:07'),
(2100, 'it', 'panel', 'New Proxy', 'Nuovo proxy', '2022-07-11 15:20:07'),
(2101, 'it', 'panel', 'New User', 'Nuovo utente', '2022-07-11 15:20:07'),
(2102, 'it', 'panel', 'New Website', 'Nuovo sito web', '2022-07-11 15:20:07'),
(2103, 'it', 'panel', 'Proxy Manager', 'Gestione proxy', '2022-07-11 15:20:07'),
(2104, 'it', 'panel', 'Report Generation Manager', 'Gestione generazione report', '2022-07-11 15:20:07'),
(2105, 'it', 'panel', 'Reports Manager', 'Gestione report', '2022-07-11 15:20:07'),
(2106, 'it', 'panel', 'Seo Plugins Manager', 'Gestione plugin seo', '2022-07-11 15:20:07'),
(2107, 'it', 'panel', 'Seo Tools Manager', 'Gestione strumenti seo', '2022-07-11 15:20:07'),
(2108, 'it', 'panel', 'System Settings', 'Impostazioni di sistema', '2022-07-11 15:20:07'),
(2109, 'it', 'panel', 'User Manager', 'Gestione utente', '2022-07-11 15:20:07'),
(2110, 'it', 'panel', 'Website Manager', 'Gestione sito web', '2022-07-11 15:20:07'),
(2111, 'it', 'plugin', 'Edit Seo Plugin', 'Modifica plugin seo', '2012-05-12 14:38:03'),
(2112, 'it', 'plugin', 'Plugin Name', 'Nome plugin', '2012-05-12 14:38:03'),
(2113, 'it', 'plugin', 'Seo Plugin Details', 'Dettagli plugin seo', '2012-05-12 14:38:03'),
(2114, 'it', 'proxy', 'Edit Proxy', 'Modifica proxy', '2016-12-09 14:20:46'),
(2115, 'it', 'proxy', 'Proxy Password', 'Password proxy', '2016-12-09 14:20:46'),
(2116, 'it', 'proxy', 'Proxy Username', 'Nome utente proxy', '2016-12-09 14:20:46'),
(2117, 'it', 'proxy', 'Proxyalreadyexist', 'Il proxy già esiste!', '2016-12-09 14:20:46'),
(2118, 'it', 'rank', 'enterurlproceed', 'Inserisci le URL <b>una per riga</b>. Clicca su <b>Procedi</b> per verificare il rank di Google e Alexa. ', '2010-10-16 00:50:06'),
(2119, 'it', 'rank', 'Google and Alexa Rank Reports', 'Report rank di Google e Alexs', '2010-10-16 00:50:06'),
(2120, 'it', 'rank', 'Saved rank results of', 'Salva i risultati del rank per', '2010-10-16 00:50:06'),
(2121, 'it', 'saturation', 'clickproceedsaturation', 'Inserisci le URL <b>Una per riga</b>. Clicca su <b>Procedi</b> per salvare i risultati di saturazione dei motori di ricerca.', '2010-10-16 00:52:19'),
(2122, 'it', 'saturation', 'GenerateSaturationReports', 'Genera report sulla saturazione dei motori di ricerca', '2010-10-16 00:52:19'),
(2123, 'it', 'saturation', 'Quick Search Engine Saturation Checker', 'Verifica rapida saturazione motori di ricerca', '2010-10-16 00:52:19'),
(2124, 'it', 'saturation', 'Saved Search Engine Saturation results of', 'Salva i risultati della saturazione dei motori di ricerca per', '2010-10-16 00:52:19'),
(2125, 'it', 'saturation', 'Search Engine Saturation Reports', 'Report saturazione motori di ricerca', '2010-10-16 00:52:19'),
(2126, 'it', 'seotools', 'Automatic Submission', 'Invio automatico', '2018-08-21 11:13:41'),
(2127, 'it', 'seotools', 'backlink-checker', 'Verifica backlink', '2018-08-21 11:13:41'),
(2128, 'it', 'seotools', 'Backlinks Reports', 'Report backlink', '2018-08-21 11:13:41'),
(2129, 'it', 'seotools', 'Check Submission Status', 'Verifica stato invio', '2018-08-21 11:13:41'),
(2130, 'it', 'seotools', 'clickgeneratereports', 'Clicca su <b>Procedi</b> per generare il report', '2018-08-21 11:13:41'),
(2131, 'it', 'seotools', 'Detailed Position Reports', 'Dettagli report posizione', '2018-08-21 11:13:41'),
(2132, 'it', 'seotools', 'directory-submission', 'Invio directory', '2018-08-21 11:13:41'),
(2133, 'it', 'seotools', 'Featured Submission', 'Caratteristiche invio', '2018-08-21 11:13:41'),
(2134, 'it', 'seotools', 'Generate Backlinks Reports', 'Genera report dei backlink', '2018-08-21 11:13:41'),
(2135, 'it', 'seotools', 'Generate Keyword Reports', 'Genera report delle keyword', '2018-08-21 11:13:41'),
(2136, 'it', 'seotools', 'Generate Rank Reports', 'Genera raport del rank', '2018-08-21 11:13:41'),
(2137, 'it', 'seotools', 'Generate Saturation Reports', 'Genera report della saturazione', '2018-08-21 11:13:41'),
(2138, 'it', 'seotools', 'Google Sitemap Generator', 'Genera sitemap google', '2018-08-21 11:13:41'),
(2139, 'it', 'seotools', 'Graphical Position Reports', 'Report grafico di posizionamento', '2018-08-21 11:13:41'),
(2140, 'it', 'seotools', 'Keyword Position Summary', 'Sommario posizionamento keyword', '2018-08-21 11:13:41'),
(2141, 'it', 'seotools', 'keyword-position-checker', 'Verifica posizionamento keyword', '2018-08-21 11:13:41'),
(2142, 'it', 'seotools', 'Keywords Manager', 'Gestione keyword', '2018-08-21 11:13:41'),
(2143, 'it', 'seotools', 'Quick Backlinks Checker', 'Verifica rapida backlink', '2018-08-21 11:13:41'),
(2144, 'it', 'seotools', 'Quick Position Checker', 'Verifica rapida posizionamento', '2018-08-21 11:13:41'),
(2145, 'it', 'seotools', 'Quick Rank Checker', 'Verifica rapida rank', '2018-08-21 11:13:41'),
(2146, 'it', 'seotools', 'Quick Saturation Checker', 'Verifica rapida saturazione', '2018-08-21 11:13:41'),
(2147, 'it', 'seotools', 'Rank Reports', 'Report rank', '2018-08-21 11:13:41'),
(2148, 'it', 'seotools', 'rank-checker', 'Verifica rank', '2018-08-21 11:13:41'),
(2149, 'it', 'seotools', 'Saturation Reports', 'Report saturazione', '2018-08-21 11:13:41'),
(2150, 'it', 'seotools', 'saturation-checker', 'Saturazione motori di ricerca', '2018-08-21 11:13:41'),
(2151, 'it', 'seotools', 'sitemap-generator', 'Generatore sitemap', '2018-08-21 11:13:41'),
(2152, 'it', 'seotools', 'Skipped Directories', 'Directory saltate', '2018-08-21 11:13:41'),
(2153, 'it', 'seotools', 'Submission Reports', 'Report di invio', '2018-08-21 11:13:41'),
(2154, 'it', 'seotools', 'User Access', 'Accesso utente', '2018-08-21 11:13:41'),
(2155, 'it', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Dona $100</b> e diventa <b>sponsor</b> del pannello seo.', '2018-08-21 11:16:32'),
(2156, 'it', 'settings', 'seopanel_description', 'Un pannello di controllo gratuito per gestire l''ottimizzazione dei tuoi siti web. Contiene molti tool seo che potranno esserti utili per incrementare e verificare le performance dei tuoi siti web. Si tratta di un progetto open source e puoi sviluppare i tuoi stessi plugin seo per il pannello seo.', '2018-08-21 11:16:32'),
(2157, 'it', 'settings', 'seopanel_title', 'Pannello seo: Il primo pannello di controllo open source per la gestione di più siti web.', '2018-08-21 11:16:32'),
(2158, 'it', 'settings', 'SP_CRAWL_DELAY', 'Ritardo tra ogni scansione degli spider (secondi)', '2018-08-21 11:16:32'),
(2159, 'it', 'settings', 'SP_DEFAULTLANG', 'Lingua di default', '2018-08-21 11:16:32'),
(2160, 'it', 'settings', 'SP_DESCRIPTION', 'Descrizione pannello seo', '2018-08-21 11:16:32'),
(2161, 'it', 'settings', 'SP_ENABLE_PROXY', 'Abilita proxy', '2018-08-21 11:16:32'),
(2162, 'it', 'settings', 'SP_HOTLINKING', 'Protezione immagine hotlink attiva', '2018-08-21 11:16:32'),
(2163, 'it', 'settings', 'SP_KEYWORDS', 'Keyword pannello seo', '2018-08-21 11:16:32'),
(2164, 'it', 'settings', 'SP_PAGINGNO', 'Numero di risultati per pagina', '2018-08-21 11:16:32'),
(2165, 'it', 'settings', 'SP_TITLE', 'Titolo pannello seo', '2018-08-21 11:16:32'),
(2166, 'it', 'settings', 'SP_USER_GEN_REPORT', 'Permetti a tutti gli utenti di generare report', '2018-08-21 11:16:32'),
(2167, 'it', 'settings', 'SP_USER_REGISTRATION', 'Interfaccia registrazione utente', '2018-08-21 11:16:32'),
(2168, 'it', 'settings', 'syssettingssaved', 'Impostazioni di sistema salvate con successo!', '2018-08-21 11:16:32'),
(2169, 'zh', 'backlink', 'clickproceedbacklink', '输入URL,<b>每行一条</b>。单击<b>处理</b>开始检测反向链接', '2011-05-06 12:30:24'),
(2170, 'zh', 'backlink', 'Saved backlink results of', '保存反向链接结果', '2011-05-06 12:30:24'),
(2171, 'zh', 'button', 'Cancel', '取消', '2014-01-09 00:21:34'),
(2172, 'zh', 'button', 'Check Status', '检测状态', '2014-01-09 00:21:34'),
(2173, 'zh', 'button', 'Proceed', '处理', '2014-01-09 00:21:34'),
(2174, 'zh', 'button', 'Reload', '重新载入', '2014-01-09 00:21:34'),
(2175, 'zh', 'button', 'Show Details', '显示细节', '2014-01-09 00:21:34'),
(2176, 'zh', 'button', 'Show Records', '显示记录', '2014-01-09 00:21:34'),
(2177, 'zh', 'button', 'Skip', '跳过', '2014-01-09 00:21:34'),
(2178, 'zh', 'button', 'Submit', '提交', '2014-01-09 00:21:34'),
(2179, 'zh', 'common', 'Action', '执行', '2019-05-25 22:01:23'),
(2180, 'zh', 'common', 'Activate', '激活', '2019-05-25 22:01:23'),
(2181, 'zh', 'common', 'Active', '已激活', '2019-05-25 22:01:23'),
(2182, 'zh', 'common', 'Admin Panel', '管理面板', '2019-05-25 22:01:23'),
(2183, 'zh', 'common', 'Alexa Rank', 'Alexa 排名', '2019-05-25 22:01:23'),
(2184, 'zh', 'common', 'All', '所有', '2019-05-25 22:01:23'),
(2185, 'zh', 'common', 'Category', '类别', '2019-05-25 22:01:23'),
(2186, 'zh', 'common', 'contact', '联系', '2019-05-25 22:01:23'),
(2187, 'zh', 'common', 'copyright', '版权所有 © 【2010】www.seopanel.in 保留所有权利', '2019-05-25 22:01:23'),
(2188, 'zh', 'common', 'Country', '国家', '2019-05-25 22:01:23'),
(2189, 'zh', 'common', 'Crawl Meta Data', '爬取meta信息', '2019-05-25 22:01:23'),
(2190, 'zh', 'common', 'Date', '日期', '2019-05-25 22:01:23'),
(2191, 'zh', 'common', 'Delete', '删除', '2019-05-25 22:01:23'),
(2192, 'zh', 'common', 'Details', '细节', '2019-05-25 22:01:23'),
(2193, 'zh', 'common', 'Directory', '目录', '2019-05-25 22:01:23'),
(2194, 'zh', 'common', 'Donate', '捐赠', '2019-05-25 22:01:23'),
(2195, 'zh', 'common', 'Edit', '编辑', '2019-05-25 22:01:23'),
(2196, 'zh', 'common', 'Entry cannot be blank', '不能输入空值', '2019-05-25 22:01:23'),
(2197, 'zh', 'common', 'entrynotvalid', '输入不合法', '2019-05-25 22:01:23'),
(2198, 'zh', 'common', 'failed', '失败', '2019-05-25 22:01:23'),
(2199, 'zh', 'common', 'forum', '论坛', '2019-05-25 22:01:23'),
(2200, 'zh', 'common', 'Found', '资助', '2019-05-25 22:01:23'),
(2201, 'zh', 'common', 'Google Pagerank', '谷歌 Page Rank', '2019-05-25 22:01:23'),
(2202, 'zh', 'common', 'help', '帮助', '2019-05-25 22:01:23'),
(2203, 'zh', 'common', 'hidenews', '隐藏seopanel新闻', '2019-05-25 22:01:23'),
(2204, 'zh', 'common', 'Id', 'Id', '2019-05-25 22:01:23'),
(2205, 'zh', 'common', 'Inactivate', '关闭', '2019-05-25 22:01:23'),
(2206, 'zh', 'common', 'Inactive', '未激活的', '2019-05-25 22:01:23'),
(2207, 'zh', 'common', 'Invalid characters', '非法字符', '2019-05-25 22:01:23'),
(2208, 'zh', 'common', 'Invalid code entered', '输入的代码不合法', '2019-05-25 22:01:23'),
(2209, 'zh', 'common', 'Invalid email address entered', 'Email 地址不合法', '2019-05-25 22:01:23'),
(2210, 'zh', 'common', 'Invalid value', '无效数值', '2019-05-25 22:01:23'),
(2211, 'zh', 'common', 'Keyword', '关键字', '2019-05-25 22:01:23'),
(2212, 'zh', 'common', 'Keywords', '全部关键字', '2019-05-25 22:01:23'),
(2213, 'zh', 'common', 'lang', '语言', '2019-05-25 22:01:23'),
(2214, 'zh', 'common', 'My Account', '我的账户', '2019-05-25 22:01:23'),
(2215, 'zh', 'common', 'Name', '名字', '2019-05-25 22:01:23'),
(2216, 'zh', 'common', 'No', '没有', '2019-05-25 22:01:23'),
(2217, 'zh', 'common', 'No Keywords Found', '未找到关键字', '2019-05-25 22:01:23'),
(2218, 'zh', 'common', 'No Records Found', '未找到相关记录', '2019-05-25 22:01:23'),
(2219, 'zh', 'common', 'noactivetools', '没有可用的seo工具', '2019-05-25 22:01:23'),
(2220, 'zh', 'common', 'nowebsites', '未发现站点', '2019-05-25 22:01:23'),
(2221, 'zh', 'common', 'password632', '密码长度必须为6-32位', '2019-05-25 22:01:23'),
(2222, 'zh', 'common', 'passwordnotmatch', '密码不匹配', '2019-05-25 22:01:23'),
(2223, 'zh', 'common', 'Period', '一段时间', '2019-05-25 22:01:23'),
(2224, 'zh', 'common', 'Priority', '优先级', '2019-05-25 22:01:23'),
(2225, 'zh', 'common', 'Rank', 'PR/排名', '2019-05-25 22:01:23'),
(2226, 'zh', 'common', 'Reports', '报告', '2019-05-25 22:01:23'),
(2227, 'zh', 'common', 'Results', '结果', '2019-05-25 22:01:23'),
(2228, 'zh', 'common', 'Search Engine', '搜索引擎', '2019-05-25 22:01:23'),
(2229, 'zh', 'common', 'Select', '选择', '2019-05-25 22:01:23'),
(2230, 'zh', 'common', 'Seo Plugins', 'seo插件', '2019-05-25 22:01:23'),
(2231, 'zh', 'common', 'Seo Tools', 'seo工具', '2019-05-25 22:01:23'),
(2232, 'zh', 'common', 'Sign out', '登出', '2019-05-25 22:01:23'),
(2233, 'zh', 'common', 'Sign Up', '注册', '2019-05-25 22:01:23'),
(2234, 'zh', 'common', 'signin', '登录', '2019-05-25 22:01:23'),
(2235, 'zh', 'common', 'Status', '状态', '2019-05-25 22:01:23'),
(2236, 'zh', 'common', 'Support', '支持', '2019-05-25 22:01:23'),
(2237, 'zh', 'common', 'Total', '所有', '2019-05-25 22:01:23'),
(2238, 'zh', 'common', 'Url', 'URL', '2019-05-25 22:01:23'),
(2239, 'zh', 'common', 'User', '用户', '2019-05-25 22:01:23'),
(2240, 'zh', 'common', 'User Panel', '用户面板', '2019-05-25 22:01:23'),
(2241, 'zh', 'common', 'Website', '站点', '2019-05-25 22:01:23'),
(2242, 'zh', 'common', 'Yes', '是', '2019-05-25 22:01:23'),
(2243, 'zh', 'directory', 'Add back to directory list', '增加到目录列表', '2014-01-09 20:03:35'),
(2244, 'zh', 'directory', 'Approved', '通过的', '2014-01-09 20:03:35'),
(2245, 'zh', 'directory', 'Captcha', '验证码', '2014-01-09 20:03:35'),
(2246, 'zh', 'directory', 'categorynote', '根据优先级用逗号隔开的提交的具体目录分类。从优先级最高提交的具体目录分类开始', '2014-01-09 20:03:35'),
(2247, 'zh', 'directory', 'Check Directory Status', '检查目录状态', '2014-01-09 20:03:35'),
(2248, 'zh', 'directory', 'Check Directory Submission Status', '检查目录提交状态', '2014-01-09 20:03:35'),
(2249, 'zh', 'directory', 'clicktoproceeddirsts', '点击<b>处理</b> 以检查目录状态', '2014-01-09 20:03:35'),
(2250, 'zh', 'directory', 'Confirmation', '确认', '2014-01-09 20:03:35'),
(2251, 'zh', 'directory', 'desnote', '有些目录最少需要150字符描述信息', '2014-01-09 20:03:35'),
(2252, 'zh', 'directory', 'Directories with out captcha', '没有验证码的目录', '2014-01-09 20:03:35'),
(2253, 'zh', 'directory', 'Directory Submission Reports', '目录提交报告', '2014-01-09 20:03:35'),
(2254, 'zh', 'directory', 'Enter the code shown', '输入显示的字符', '2014-01-09 20:03:35'),
(2255, 'zh', 'directory', 'nocatnote', '在提交页面未找到提交类别。请点击<b>重载</b>或者<b>跳过</b>', '2014-01-09 20:03:35'),
(2256, 'zh', 'directory', 'nodirnote', '未发现<b>已激活的</b>目录', '2014-01-09 20:03:35'),
(2257, 'zh', 'directory', 'nosuccessnote', '如果没得到成功的信息,请检查邮件中的确认信息', '2014-01-09 20:03:35'),
(2258, 'zh', 'directory', 'optionalnote', '提交标题和描述信息比提交随机信息会获得更好的结果', '2014-01-09 20:03:35'),
(2259, 'zh', 'directory', 'Owner Email', '用户邮件', '2014-01-09 20:03:35'),
(2260, 'zh', 'directory', 'Owner Name', '用户名字', '2014-01-09 20:03:35'),
(2261, 'zh', 'directory', 'Pending', '待定', '2014-01-09 20:03:35');
INSERT INTO `texts` VALUES
(2262, 'zh', 'directory', 'Please select a website to proceed', '请选择一个站点来处理', '2014-01-09 20:03:35'),
(2263, 'zh', 'directory', 'selectwebsiteproceed', '选择一个 <b>站点</b> 来 <b>处理</b> 目录提交。<br>检查 <b>没有验证码的目录</b> 来提交没有验证码的目录', '2014-01-09 20:03:35'),
(2264, 'zh', 'directory', 'selectwebsiteschecksub', '选择一个<b>站点</b> 来 <b>处理</b> 检查目录提交信息', '2014-01-09 20:03:35'),
(2265, 'zh', 'directory', 'Semi Automatic Directory Submission Tool', '半自动目录提交工具', '2014-01-09 20:03:35'),
(2266, 'zh', 'directory', 'spamemailnote', '一些目录可能会发送垃圾邮件,我们建议不要不要使用你常用的邮箱地址', '2014-01-09 20:03:35'),
(2267, 'zh', 'directory', 'Submission Details', '提交细节', '2014-01-09 20:03:35'),
(2268, 'zh', 'directory', 'Submit Description', '提交描述信息', '2014-01-09 20:03:35'),
(2269, 'zh', 'directory', 'Submit Keywords', '提交关键字', '2014-01-09 20:03:35'),
(2270, 'zh', 'directory', 'Submit Title', '提交标题', '2014-01-09 20:03:35'),
(2271, 'zh', 'directory', 'Website Category', '网站目录', '2014-01-09 20:03:35'),
(2272, 'zh', 'directory', 'Website Url', '网站地址', '2014-01-09 20:03:35'),
(2273, 'zh', 'keyword', 'Crawling keyword', '爬取关键字', '2011-07-06 10:03:07'),
(2274, 'zh', 'keyword', 'Detailed Keyword Position Reports', '显示关键字排名报告', '2011-07-06 10:03:07'),
(2275, 'zh', 'keyword', 'Edit Keyword', '编辑关键字', '2011-07-06 10:03:07'),
(2276, 'zh', 'keyword', 'Graphical Keyword Position Reports', '关键字位置图形报表', '2011-07-06 10:03:07'),
(2277, 'zh', 'keyword', 'Import Keywords', '导入关键字', '2011-07-06 10:03:07'),
(2278, 'zh', 'keyword', 'Keyword already exist', '关键字已存在', '2011-07-06 10:03:07'),
(2279, 'zh', 'keyword', 'Keyword Position Report', '关键字位置报告', '2011-07-06 10:03:07'),
(2280, 'zh', 'keyword', 'New Keyword', '新的关键字', '2011-07-06 10:03:07'),
(2281, 'zh', 'keyword', 'not assigned to required search engines', '未设置请求的搜索引擎', '2011-07-06 10:03:07'),
(2282, 'zh', 'keyword', 'pleaseselecttool', '请至少选择一个seo工具', '2011-07-06 10:03:07'),
(2283, 'zh', 'keyword', 'Quick Keyword Position Checker', '快速关键字查询', '2011-07-06 10:03:07'),
(2284, 'zh', 'keyword', 'results from ', '结果来自', '2011-07-06 10:03:07'),
(2285, 'zh', 'keyword', 'Show All results', '显示所有结果', '2011-07-06 10:03:07'),
(2286, 'zh', 'keyword', 'Successfully crawled keyword', '成功爬取关键字', '2011-07-06 10:03:07'),
(2287, 'zh', 'keyword', 'to create new keywords', '创建新关键字', '2011-07-06 10:03:07'),
(2288, 'zh', 'login', 'Confirm Password', '确认密码', '2014-01-09 20:07:15'),
(2289, 'zh', 'login', 'Create my account', '创建我的账户', '2014-01-09 20:07:15'),
(2290, 'zh', 'login', 'Create New Account', '创建一个新账户', '2014-01-09 20:07:15'),
(2291, 'zh', 'login', 'Email', '邮箱', '2014-01-09 20:07:15'),
(2292, 'zh', 'login', 'emailexist', '邮箱已存在', '2014-01-09 20:07:15'),
(2293, 'zh', 'login', 'Enter the code as it is shown', '输入显示的字符', '2014-01-09 20:07:15'),
(2294, 'zh', 'login', 'First Name', '名字', '2014-01-09 20:07:15'),
(2295, 'zh', 'login', 'Last Name', '姓', '2014-01-09 20:07:15'),
(2296, 'zh', 'login', 'Login', '登录', '2014-01-09 20:07:15'),
(2297, 'zh', 'login', 'Login incorrect', '登录信息不正确', '2014-01-09 20:07:15'),
(2298, 'zh', 'login', 'newaccountsuccess', '创建新账户成功', '2014-01-09 20:07:15'),
(2299, 'zh', 'login', 'Password', '密码', '2014-01-09 20:07:15'),
(2300, 'zh', 'login', 'Password incorrect', '密码不正确', '2014-01-09 20:07:15'),
(2301, 'zh', 'login', 'Register', '注册', '2014-01-09 20:07:15'),
(2302, 'zh', 'login', 'Sign in to your account', '登录你的账户', '2014-01-09 20:07:15'),
(2303, 'zh', 'login', 'User inactive', '用户无效', '2014-01-09 20:07:15'),
(2304, 'zh', 'login', 'Username', '用户名', '2014-01-09 20:07:15'),
(2305, 'zh', 'login', 'usernameexist', '用户名已存在', '2014-01-09 20:07:15'),
(2306, 'zh', 'panel', 'About Us', '关于我们', '2014-05-15 21:48:57'),
(2307, 'zh', 'panel', 'Add following command to your cron tab', '加入以下命令到CRON列表', '2014-05-15 21:48:57'),
(2308, 'zh', 'panel', 'alsocheckfollowlink', '如果需要更多细节,请检查一下链接', '2014-05-15 21:48:57'),
(2309, 'zh', 'panel', 'Check Directory', '检查目录', '2014-05-15 21:48:57'),
(2310, 'zh', 'panel', 'Cron Command', 'cron命令', '2014-05-15 21:48:57'),
(2311, 'zh', 'panel', 'Directory Manager', '目录管理', '2014-05-15 21:48:57'),
(2312, 'zh', 'panel', 'Edit My Profile', '编辑我的资料', '2014-05-15 21:48:57'),
(2313, 'zh', 'panel', 'My Profile', '我的资料', '2014-05-15 21:48:57'),
(2314, 'zh', 'panel', 'New Proxy', '新建代理', '2014-05-15 21:48:57'),
(2315, 'zh', 'panel', 'New User', '新建用户', '2014-05-15 21:48:57'),
(2316, 'zh', 'panel', 'New Website', '新的站点', '2014-05-15 21:48:57'),
(2317, 'zh', 'panel', 'Proxy Manager', '代理管理器', '2014-05-15 21:48:57'),
(2318, 'zh', 'panel', 'Report Generation Manager', '报告生成管理', '2014-05-15 21:48:57'),
(2319, 'zh', 'panel', 'Reports Manager', '报告管理', '2014-05-15 21:48:57'),
(2320, 'zh', 'panel', 'Seo Plugins Manager', 'seo插件管理', '2014-05-15 21:48:57'),
(2321, 'zh', 'panel', 'Seo Tools Manager', 'seo工具管理', '2014-05-15 21:48:57'),
(2322, 'zh', 'panel', 'System Settings', '系统设置', '2014-05-15 21:48:57'),
(2323, 'zh', 'panel', 'User Manager', '用户管理', '2014-05-15 21:48:57'),
(2324, 'zh', 'panel', 'Website Manager', '站点管理', '2014-05-15 21:48:57'),
(2325, 'ru', 'backlink', 'clickproceedbacklink', 'Введите URL <b>по одному в каждой строке</b>. Нажмите <b>продолжить</b> для проверки обратных ссылок.', '2012-12-06 00:31:54'),
(2326, 'ru', 'backlink', 'Saved backlink results of', 'Сохранение результатов обратных ссылок', '2012-12-06 00:31:54'),
(2327, 'ru', 'button', 'Cancel', 'Отмена', '2014-01-09 00:33:07'),
(2328, 'ru', 'button', 'Check Status', 'Проверить статус', '2014-01-09 00:33:07'),
(2329, 'ru', 'button', 'Proceed', 'Продолжить', '2014-01-09 00:33:07'),
(2330, 'ru', 'button', 'Reload', 'Перезагрузить', '2014-01-09 00:33:07'),
(2331, 'ru', 'button', 'Show Details', 'Показать детали', '2014-01-09 00:33:07'),
(2332, 'ru', 'button', 'Show Records', 'Показать записи', '2014-01-09 00:33:07'),
(2333, 'ru', 'button', 'Skip', 'Пропустить', '2014-01-09 00:33:07'),
(2334, 'ru', 'button', 'Submit', 'Отправить', '2014-01-09 00:33:07'),
(2335, 'ru', 'common', 'Action', 'Действие', '2024-07-17 15:16:33'),
(2336, 'ru', 'common', 'Activate', 'Включить', '2024-07-17 15:16:33'),
(2337, 'ru', 'common', 'Active', 'Активный', '2024-07-17 15:16:33'),
(2338, 'ru', 'common', 'Admin Panel', 'Панель администратора', '2024-07-17 15:16:33'),
(2339, 'ru', 'common', 'Alexa Rank', 'Alexa Rank', '2024-07-17 15:16:33'),
(2340, 'ru', 'common', 'All', 'Все', '2024-07-17 15:16:33'),
(2341, 'ru', 'common', 'Category', 'Категория', '2024-07-17 15:16:33'),
(2342, 'ru', 'common', 'contact', 'Контакты', '2024-07-17 15:16:33'),
(2343, 'ru', 'common', 'copyright', 'Авторские права © [year] www.seopanel.in. Все права защищены', '2024-07-17 15:16:33'),
(2344, 'ru', 'common', 'Country', 'Страна', '2024-07-17 15:16:33'),
(2345, 'ru', 'common', 'Crawl Meta Data', 'Сканирование метаданных', '2024-07-17 15:16:33'),
(2346, 'ru', 'common', 'Date', 'Дата', '2024-07-17 15:16:33'),
(2347, 'ru', 'common', 'Delete', 'Удалить', '2024-07-17 15:16:33'),
(2348, 'ru', 'common', 'Details', 'Детали', '2024-07-17 15:16:33'),
(2349, 'ru', 'common', 'Directory', 'Каталог', '2024-07-17 15:16:33'),
(2350, 'ru', 'common', 'Donate', 'Пожертвовать', '2024-07-17 15:16:33'),
(2351, 'ru', 'common', 'Edit', 'Редактировать', '2024-07-17 15:16:33'),
(2352, 'ru', 'common', 'Entry cannot be blank', 'Поле не может быть пустым', '2024-07-17 15:16:33'),
(2353, 'ru', 'common', 'entrynotvalid', 'Введена не правильная запись', '2024-07-17 15:16:33'),
(2354, 'ru', 'common', 'failed', 'неудачно', '2024-07-17 15:16:33'),
(2355, 'ru', 'common', 'forum', 'Форум', '2024-07-17 15:16:33'),
(2356, 'ru', 'common', 'Found', 'Найдено', '2024-07-17 15:16:33'),
(2357, 'ru', 'common', 'Google Pagerank', 'Google Pagerank', '2024-07-17 15:16:33'),
(2358, 'ru', 'common', 'help', 'Помощь', '2024-07-17 15:16:33'),
(2359, 'ru', 'common', 'hidenews', 'Скрыть новости Seo panel', '2024-07-17 15:16:33'),
(2360, 'ru', 'common', 'Id', 'Id', '2024-07-17 15:16:33'),
(2361, 'ru', 'common', 'Inactivate', 'Отключить', '2024-07-17 15:16:33'),
(2362, 'ru', 'common', 'Inactive', 'Неактивный', '2024-07-17 15:16:33'),
(2363, 'ru', 'common', 'Invalid characters', 'Недопустимые символы', '2024-07-17 15:16:33'),
(2364, 'ru', 'common', 'Invalid code entered', 'Введен неправильный код', '2024-07-17 15:16:33'),
(2365, 'ru', 'common', 'Invalid email address entered', 'Введен неправильный email', '2024-07-17 15:16:33'),
(2366, 'ru', 'common', 'Invalid value', 'Неправильное значение', '2024-07-17 15:16:33'),
(2367, 'ru', 'common', 'Keyword', 'Ключевое слово', '2024-07-17 15:16:33'),
(2368, 'ru', 'common', 'Keywords', 'Ключевые слова', '2024-07-17 15:16:33'),
(2369, 'ru', 'common', 'lang', 'Язык', '2024-07-17 15:16:33'),
(2370, 'ru', 'common', 'My Account', 'Мой аккаунт', '2024-07-17 15:16:33'),
(2371, 'ru', 'common', 'Name', 'Название', '2024-07-17 15:16:33'),
(2372, 'ru', 'common', 'No', 'Нет', '2024-07-17 15:16:33'),
(2373, 'ru', 'common', 'No Keywords Found', 'Ключевые слова не найдены', '2024-07-17 15:16:33'),
(2374, 'ru', 'common', 'No Records Found', 'Записей не найдено', '2024-07-17 15:16:33'),
(2375, 'ru', 'common', 'noactivetools', 'Нет активных сео-инструментов!', '2024-07-17 15:16:33'),
(2376, 'ru', 'common', 'nowebsites', 'Сайты не найдены!', '2024-07-17 15:16:33'),
(2377, 'ru', 'common', 'password632', 'Длина пароля должна быть от 6 до 32 символов', '2024-07-17 15:16:33'),
(2378, 'ru', 'common', 'passwordnotmatch', 'Пароли не совпадают', '2024-07-17 15:16:33'),
(2379, 'ru', 'common', 'Period', 'Период', '2024-07-17 15:16:33'),
(2380, 'ru', 'common', 'Priority', 'Приоритет', '2024-07-17 15:16:33'),
(2381, 'ru', 'common', 'Rank', 'Rank', '2024-07-17 15:16:33'),
(2382, 'ru', 'common', 'Reports', 'Отчеты', '2024-07-17 15:16:33'),
(2383, 'ru', 'common', 'Results', 'Результаты', '2024-07-17 15:16:33'),
(2384, 'ru', 'common', 'Search Engine', 'Поисковые системы', '2024-07-17 15:16:33'),
(2385, 'ru', 'common', 'Select', 'Выбор', '2024-07-17 15:16:33'),
(2386, 'ru', 'common', 'Seo Plugins', 'Сео-плагины', '2024-07-17 15:16:33'),
(2387, 'ru', 'common', 'Seo Tools', 'Сео-инструменты', '2024-07-17 15:16:33'),
(2388, 'ru', 'common', 'Sign out', 'Выход', '2024-07-17 15:16:33'),
(2389, 'ru', 'common', 'Sign Up', 'Зарегистрироваться', '2024-07-17 15:16:33'),
(2390, 'ru', 'common', 'signin', 'Вход', '2024-07-17 15:16:33'),
(2391, 'ru', 'common', 'Status', 'Статус', '2024-07-17 15:16:33'),
(2392, 'ru', 'common', 'Support', 'Поддержка', '2024-07-17 15:16:33'),
(2393, 'ru', 'common', 'Total', 'Всего', '2024-07-17 15:16:33'),
(2394, 'ru', 'common', 'Url', 'Url', '2024-07-17 15:16:33'),
(2395, 'ru', 'common', 'User', 'Пользователь', '2024-07-17 15:16:33'),
(2396, 'ru', 'common', 'User Panel', 'Панель пользователя', '2024-07-17 15:16:33'),
(2397, 'ru', 'common', 'Website', 'Сайт', '2024-07-17 15:16:33'),
(2398, 'ru', 'common', 'Yes', 'Да', '2024-07-17 15:16:33'),
(2399, 'ru', 'directory', 'Add back to directory list', 'Вернуться к добавлению в список каталогов', '2012-11-09 11:03:15'),
(2400, 'ru', 'directory', 'Approved', 'Утвержденный', '2012-11-09 11:03:15'),
(2401, 'ru', 'directory', 'Captcha', 'Проверочный код', '2012-11-09 11:03:15'),
(2402, 'ru', 'directory', 'categorynote', 'Категории разделите запятой в соответствии с приоритетом. Начните с верхней категории наиболее приоритетной.', '2012-11-09 11:03:15'),
(2403, 'ru', 'directory', 'Check Directory Status', 'Проверить состояния регистра', '2012-11-09 11:03:15'),
(2404, 'ru', 'directory', 'Check Directory Submission Status', 'Проверить статус рассылки в каталоги', '2012-11-09 11:03:15'),
(2405, 'ru', 'directory', 'clicktoproceeddirsts', 'Нажмите <b>продолжить</b> для проверки статуса каталогов.', '2012-11-09 11:03:15'),
(2406, 'ru', 'directory', 'Confirmation', 'Подтверждение', '2012-11-09 11:03:15'),
(2407, 'ru', 'directory', 'desnote', 'Некоторые каталоги требуют минимум 150 символов для ввода в поле описание.', '2012-11-09 11:03:15'),
(2408, 'ru', 'directory', 'Directories with out captcha', 'Каталоги сайтов с каптчей', '2012-11-09 11:03:15'),
(2409, 'ru', 'directory', 'Directory Submission Reports', 'Отчеты по рассылке в каталоги', '2012-11-09 11:03:15'),
(2410, 'ru', 'directory', 'Enter the code shown', 'Введите код из изображения', '2012-11-09 11:03:15'),
(2411, 'ru', 'directory', 'nocatnote', 'Введенная категория не найдена в отправленной странице. Пожалуйста нажмите <b>перезагрузить</b> или <b>пропустить</b> ', '2012-11-09 11:03:15'),
(2412, 'ru', 'directory', 'nodirnote', 'Нет <b>активных</b> каталогов', '2012-11-09 11:03:15'),
(2413, 'ru', 'directory', 'nosuccessnote', 'Не получено сообщение об успешном добавлении! Пожалуйста проверьте свою почту, возможно сообщение о подтверждении пришло к вам на почту', '2012-11-09 11:03:15'),
(2414, 'ru', 'directory', 'optionalnote', 'Дополнительные заголовки и описания представляются как случайные названия и описания в каталогах для лучшего результата.', '2012-11-09 11:03:15'),
(2415, 'ru', 'directory', 'Owner Email', 'Email владельца', '2012-11-09 11:03:15'),
(2416, 'ru', 'directory', 'Owner Name', 'Имя владельца', '2012-11-09 11:03:15'),
(2417, 'ru', 'directory', 'Pending', 'В ожидании', '2012-11-09 11:03:15'),
(2418, 'ru', 'directory', 'Please select a website to proceed', 'Для продолжения выберите сайт', '2012-11-09 11:03:15'),
(2419, 'ru', 'directory', 'selectwebsiteproceed', 'Выберите <b>сайт</b> для <b>продолжения</b> рассылки в каталоги.<br>Выберите <b>каталоги с капчей</b> для рассылки в каталоги.', '2012-11-09 11:03:15'),
(2420, 'ru', 'directory', 'selectwebsiteschecksub', 'Выберите <b>сайт</b> для <b>продолжения</b> выбора каталогов.', '2012-11-09 11:03:15'),
(2421, 'ru', 'directory', 'Semi Automatic Directory Submission Tool', 'Полуавтоматический инструмент рассылки в каталоги', '2012-11-09 11:03:15'),
(2422, 'ru', 'directory', 'spamemailnote', 'Некоторые каталоги могут рассылать спам, мы не рекомендуем использовать Ваш основной email почты.', '2012-11-09 11:03:15'),
(2423, 'ru', 'directory', 'Submission Details', 'Детали рассылки', '2012-11-09 11:03:15'),
(2424, 'ru', 'directory', 'Submit Description', 'Описание рассылки', '2012-11-09 11:03:15'),
(2425, 'ru', 'directory', 'Submit Keywords', 'Отправить ключевые слова', '2012-11-09 11:03:15'),
(2426, 'ru', 'directory', 'Submit Title', 'Отправить заголовок', '2012-11-09 11:03:15'),
(2427, 'ru', 'directory', 'Website Category', 'Категория сайта', '2012-11-09 11:03:15'),
(2428, 'ru', 'directory', 'Website Url', 'Url сайта', '2012-11-09 11:03:15'),
(2429, 'zh', 'plugin', 'Edit Seo Plugin', '编辑SEO插件', '2014-01-09 20:08:57'),
(2430, 'zh', 'plugin', 'Plugin Name', '插件名字', '2014-01-09 20:08:57'),
(2431, 'zh', 'plugin', 'Seo Plugin Details', 'SEO插件细节', '2014-01-09 20:08:57'),
(2432, 'zh', 'proxy', 'Edit Proxy', '编辑代理', '2014-05-15 21:51:10'),
(2433, 'zh', 'proxy', 'Proxy Password', '代理密码', '2014-05-15 21:51:10'),
(2434, 'zh', 'proxy', 'Proxy Username', '代理用户名', '2014-05-15 21:51:10'),
(2435, 'zh', 'proxy', 'Proxyalreadyexist', '代理已经存在', '2014-05-15 21:51:10'),
(2436, 'zh', 'rank', 'enterurlproceed', '输入URL,<b>每行一条</b>。点击<b>处理</b>开始检查Google PR和 Alexa 排名', '2011-05-04 12:41:24'),
(2437, 'zh', 'rank', 'Google and Alexa Rank Reports', 'Google PR和 Alexa 排名报告', '2011-05-04 12:41:25'),
(2438, 'zh', 'rank', 'Saved rank results of', '保存排名结果', '2011-05-04 12:41:25'),
(2439, 'zh', 'saturation', 'clickproceedsaturation', '输入URL,<b>每行一条</b>。点击<b>处理</b>开始检查搜索引擎搜录报告', '2011-05-04 13:45:58'),
(2440, 'zh', 'saturation', 'GenerateSaturationReports', '生成搜索引擎搜录报告', '2011-05-04 13:45:58'),
(2441, 'zh', 'saturation', 'Quick Search Engine Saturation Checker', '快速搜索引擎搜录检查', '2011-05-04 13:45:58'),
(2442, 'zh', 'saturation', 'Saved Search Engine Saturation results of', '保存搜索引擎搜录结果\r\n', '2011-05-04 13:45:58'),
(2443, 'zh', 'saturation', 'Search Engine Saturation Reports', '搜索引擎搜录报告', '2011-05-04 13:45:58'),
(2444, 'zh', 'seotools', 'Automatic Submission', '自动提交', '2011-07-06 10:05:37'),
(2445, 'zh', 'seotools', 'backlink-checker', '反向链接检查', '2011-07-06 10:05:37'),
(2446, 'zh', 'seotools', 'Backlinks Reports', '反向链接报告', '2011-07-06 10:05:37'),
(2447, 'zh', 'seotools', 'Check Submission Status', '检查提交状态', '2011-07-06 10:05:37'),
(2448, 'zh', 'seotools', 'clickgeneratereports', '点击<b>处理</b>开始生成报告 ', '2011-07-06 10:05:37'),
(2449, 'zh', 'seotools', 'Detailed Position Reports', '详细的位置报告', '2011-07-06 10:05:37'),
(2450, 'zh', 'seotools', 'directory-submission', '目录提交', '2011-07-06 10:05:37'),
(2451, 'zh', 'seotools', 'Featured Submission', '筛选提交', '2011-07-06 10:05:37'),
(2452, 'zh', 'seotools', 'Generate Backlinks Reports', '生成反向链接报告', '2011-07-06 10:05:37'),
(2453, 'zh', 'seotools', 'Generate Keyword Reports', '生成关键字报告', '2011-07-06 10:05:37'),
(2454, 'zh', 'seotools', 'Generate Rank Reports', '生成排名报告', '2011-07-06 10:05:37'),
(2455, 'zh', 'seotools', 'Generate Saturation Reports', '生成收录量报告', '2011-07-06 10:05:37'),
(2456, 'zh', 'seotools', 'Google Sitemap Generator', 'Google网站地图报告', '2011-07-06 10:05:37'),
(2457, 'zh', 'seotools', 'Graphical Position Reports', '图形位置报告', '2011-07-06 10:05:37'),
(2458, 'zh', 'seotools', 'Keyword Position Summary', '关键字概述', '2011-07-06 10:05:37'),
(2459, 'zh', 'seotools', 'keyword-position-checker', '关键字检查', '2011-07-06 10:05:37'),
(2460, 'zh', 'seotools', 'Keywords Manager', '关键字管理', '2011-07-06 10:05:37'),
(2461, 'zh', 'seotools', 'Quick Backlinks Checker', '快速反向链接检查', '2011-07-06 10:05:37'),
(2462, 'zh', 'seotools', 'Quick Position Checker', '快速位置检查', '2011-07-06 10:05:37'),
(2463, 'zh', 'seotools', 'Quick Rank Checker', '快速排名检查', '2011-07-06 10:05:37'),
(2464, 'zh', 'seotools', 'Quick Saturation Checker', '快速收录量检查', '2011-07-06 10:05:37'),
(2465, 'zh', 'seotools', 'Rank Reports', '排名报告', '2011-07-06 10:05:37'),
(2466, 'zh', 'seotools', 'rank-checker', '排名检查', '2011-07-06 10:05:37'),
(2467, 'zh', 'seotools', 'Saturation Reports', '收录量报告', '2011-07-06 10:05:37'),
(2468, 'zh', 'seotools', 'saturation-checker', '搜索引擎收录量', '2011-07-06 10:05:37'),
(2469, 'zh', 'seotools', 'sitemap-generator', '站点地图生成器', '2011-07-06 10:05:37'),
(2470, 'zh', 'seotools', 'Skipped Directories', '跳过的目录', '2011-07-06 10:05:37'),
(2471, 'zh', 'seotools', 'Submission Reports', '提交报告', '2011-07-06 10:05:37'),
(2472, 'zh', 'seotools', 'User Access', '用户访问', '2011-07-06 10:05:37'),
(2473, 'zh', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>捐赠 $100</b> 成为Seo Panel的一个<b>赞助人</b>.', '2014-05-15 21:56:30'),
(2474, 'zh', 'settings', 'seopanel_description', 'Seo panel是一个完整的免费的能对你的站点进行搜索引擎优化的控制面板。它拥有很多热门的seo工具来追踪你的站点情况。它是一个开源软件,而且你可以开发自己的seopanel。', '2014-05-15 21:56:30'),
(2475, 'zh', 'settings', 'seopanel_title', 'Seo Panel:全球第一款多站点seo处理开源软件', '2014-05-15 21:56:30'),
(2476, 'zh', 'settings', 'SP_CRAWL_DELAY', '每次爬去间隔时间(秒)', '2014-05-15 21:56:30'),
(2477, 'zh', 'settings', 'SP_DEFAULTLANG', '默认语言', '2014-05-15 21:56:30'),
(2478, 'zh', 'settings', 'SP_DESCRIPTION', 'Seo Panel 描述', '2014-05-15 21:56:30'),
(2479, 'zh', 'settings', 'SP_ENABLE_PROXY', '使用代理', '2014-05-15 21:56:30'),
(2480, 'zh', 'settings', 'SP_HOTLINKING', '使用图片盗链保护', '2014-05-15 21:56:30'),
(2481, 'zh', 'settings', 'SP_KEYWORDS', 'Seo Panel 关键字', '2014-05-15 21:56:30'),
(2482, 'zh', 'settings', 'SP_PAGINGNO', '每页条目数量', '2014-05-15 21:56:30'),
(2483, 'zh', 'settings', 'SP_TITLE', 'Seo Panel 标题', '2014-05-15 21:56:30'),
(2484, 'zh', 'settings', 'SP_USER_GEN_REPORT', '允许用户生成报告', '2014-05-15 21:56:30'),
(2485, 'zh', 'settings', 'SP_USER_REGISTRATION', '用户注册接口', '2014-05-15 21:56:30'),
(2486, 'zh', 'settings', 'syssettingssaved', '系统设置保存成功', '2014-05-15 21:56:30'),
(2487, 'zh', 'sitemap', 'Change frequency', '改变频率', '2010-10-18 01:33:58'),
(2488, 'zh', 'sitemap', 'clickproceedsitemap', '点击<b>处理</b>创建站点地图文件', '2010-10-18 01:33:58'),
(2489, 'zh', 'sitemap', 'Download sitemap file from', '下载站点地图文件', '2010-10-18 01:33:58'),
(2490, 'zh', 'sitemap', 'Exclude Url', '不包括的URL', '2010-10-18 01:33:58'),
(2491, 'zh', 'sitemap', 'processtaketime', '本次处理需要一段时间根据你的站点连接数。请等待,稍后将获取站点地图文件', '2010-10-18 01:33:58'),
(2492, 'zh', 'sitemap', 'Sitemap Type', '站点地图类型', '2010-10-18 01:33:58'),
(2493, 'zh', 'user', 'Edit User', '编辑用户信息', '2010-10-18 01:35:39'),
(2494, 'zh', 'user', 'Saved My Profile Details', '保存我的详细资料', '2010-10-18 01:35:39'),
(2495, 'zh', 'website', 'Edit Website', '编辑站点', '2010-10-18 01:37:23'),
(2496, 'zh', 'website', 'plscrtwebsite', '使用seo工具和插件前,请先创建一个站点', '2010-10-18 01:37:23'),
(2497, 'zh', 'website', 'Website already exist', '站点已经存在', '2010-10-18 01:37:23'),
(2498, 'zh', 'website', 'yourwebalreday', '你的站点,如果你已经创建了一个', '2010-10-18 01:37:23'),
(2499, 'zh', 'label', 'already exist', '已经存在', '2014-05-15 21:47:51'),
(2500, 'zh', 'label', 'Authentication', '认证', '2014-05-15 21:47:51'),
(2501, 'zh', 'label', 'Author', '作者', '2014-05-15 21:47:51'),
(2502, 'zh', 'label', 'Click Here', '点击这里', '2014-05-15 21:47:51'),
(2503, 'zh', 'label', 'Cron', 'Cron', '2014-05-15 21:47:51'),
(2504, 'zh', 'label', 'Description', '描述', '2014-05-15 21:47:51'),
(2505, 'zh', 'label', 'Developers', '开发人员', '2014-05-15 21:47:51'),
(2506, 'zh', 'label', 'Download', '下载', '2014-05-15 21:47:51'),
(2507, 'zh', 'label', 'Installation', '安装', '2014-05-15 21:47:51'),
(2508, 'zh', 'label', 'Keywords', '关键字', '2014-05-15 21:47:51'),
(2509, 'zh', 'label', 'noactiveplugins', '未找到可用的seo插件', '2014-05-15 21:47:51'),
(2510, 'zh', 'label', 'Plugin', '插件', '2014-05-15 21:47:51'),
(2511, 'zh', 'label', 'Port', '端口', '2014-05-15 21:47:51'),
(2512, 'zh', 'label', 'Proxy', '代理', '2014-05-15 21:47:51'),
(2513, 'zh', 'label', 'Re-install', '重新安装', '2014-05-15 21:47:51'),
(2514, 'zh', 'label', 'Sponsors', '赞助商', '2014-05-15 21:47:51'),
(2515, 'zh', 'label', 'Title', '标题', '2014-05-15 21:47:51'),
(2516, 'zh', 'label', 'translation by', '译者:', '2014-05-15 21:47:51'),
(2517, 'zh', 'label', 'Translators', '所有译者:', '2014-05-15 21:47:51'),
(2518, 'zh', 'label', 'Upgrade', '升级', '2014-05-15 21:47:51'),
(2519, 'zh', 'label', 'Version', '版本', '2014-05-15 21:47:51'),
(2520, 'zh', 'label', 'wantproceed', '你确实要开始处理了吗?', '2014-05-15 21:47:51'),
(2521, 'ru', 'home', 'Account Summary', 'Резюме аккаунта', '2019-11-28 18:27:27'),
(2522, 'ru', 'home', 'Backlinks', 'Обратные ссылки', '2019-11-28 18:27:27'),
(2523, 'ru', 'home', 'Directory Submission', 'Рассылка в каталоги', '2019-11-28 18:27:27'),
(39649, 'ru', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Страница заблокирована в robots.txt - поисковые системы не могут индексировать эту страницу', '2026-01-19 23:10:34'),
(39650, 'tr', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Sayfa robots.txt tarafından engellendi - arama motorları bu sayfayı tarayamaz', '2026-01-19 23:10:34'),
(39651, 'zh', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', '该页面被robots.txt阻止 - 搜索引擎无法抓取此页面', '2026-01-19 23:10:34'),
(39652, 'cn', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', '该页面被robots.txt阻止 - 搜索引擎无法抓取此页面', '2026-01-19 23:10:34'),
(5116, 'ru', 'home', 'Indexed', 'Проиндексировано', '2019-11-28 18:27:27'),
(5117, 'ru', 'keyword', 'Insert keywords separated with comma', 'Вставьте ключевые слова разделенные запятыми', '2016-01-13 02:28:48'),
(5118, 'ru', 'label', 'Brocken', 'Сломанный', '2024-07-17 15:17:22'),
(5119, 'ru', 'label', 'Comments', 'Комментарии', '2024-07-17 15:17:22'),
(5120, 'ru', 'label', 'Count', 'Подсчет', '2024-07-17 15:17:22'),
(5121, 'ru', 'label', 'Exclude', 'Исключить', '2024-07-17 15:17:22'),
(5122, 'ru', 'label', 'Include', 'Включить', '2024-07-17 15:17:22'),
(5123, 'ru', 'label', 'Project', 'Проект', '2024-07-17 15:17:22'),
(5124, 'ru', 'label', 'Report Type', 'Тип отчета', '2024-07-17 15:17:22'),
(5125, 'ru', 'label', 'Score', 'Оценка', '2024-07-17 15:17:22'),
(5126, 'ru', 'label', 'Total Results', 'Всего результатов', '2024-07-17 15:17:22'),
(38963, 'tr', 'review', 'Top Review Links', 'En İyi İnceleme Bağlantıları', '2026-01-19 22:58:50'),
(38964, 'uk', 'review', 'Top Review Links', 'Топ посилань на відгуки', '2026-01-19 22:58:50'),
(38965, 'vn', 'review', 'Top Review Links', 'Liên kết đánh giá hàng đầu', '2026-01-19 22:58:50'),
(38966, 'zh', 'review', 'Top Review Links', '热门评论链接', '2026-01-19 22:58:50'),
(38967, 'en', 'review', 'Review Link Details', 'Review Link Details', '2026-01-19 22:58:50'),
(38968, 'ar', 'review', 'Review Link Details', 'تفاصيل رابط المراجعة', '2026-01-19 22:58:50'),
(38969, 'bg', 'review', 'Review Link Details', 'Детайли на връзката за отзиви', '2026-01-19 22:58:50'),
(38970, 'bs', 'review', 'Review Link Details', 'Detalji linka recenzije', '2026-01-19 22:58:50'),
(38971, 'ca', 'review', 'Review Link Details', 'Detalls de l''enllaç de ressenya', '2026-01-19 22:58:50'),
(13976, 'ru', 'home', 'Overall Report Summary', 'Общее резюме доклада', '2019-11-28 18:27:27'),
(13977, 'ru', 'panel', 'Report Generation Logs', 'Отправить сгенерированные логи', '2024-07-17 15:19:14'),
(13978, 'ru', 'panel', 'Sitemaps', 'Карты сайта', '2024-07-17 15:19:14'),
(13979, 'ru', 'panel', 'Submit Sitemap', 'Добавить карту сайта', '2024-07-17 15:19:14'),
(6550, 'fa', 'support', 'support_cont1', '<fieldset> \r\n<legend>Seo Panel Support System</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>1000 Directory Package</h1> \r\n <p> \r\n We are providing <b>1000 free active and verified</b> internet directory package, to add into\r\nyour seo panel <b>directory submission tool</b>. \r\n It will help you to <b>increase the backlinks</b> of your websites. \r\n Actually 1000 directory list is <b>introduced</b> to collect some money for <b>future\r\ndevelopment</b> of seo panel. \r\n To get the 1000 directory list please <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donate</a>\r\n$10 or more to improve the features of seo panel. \r\n If you have any questions about 1000 directory package, please <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">contact us</a> or open a ticket in <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">support system</a>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Visit this link to donate to seo panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Local Search Engines Package</h1> \r\n <p> \r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr\r\netc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally. \r\n To get local search engines package(according to your requirement) please <a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donate</a> $10 or more to improve the features of seo\r\npanel. \r\n Before sending donation, please <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contact us</a> to\r\nprovide us required search engine domain list. \r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker,\r\nplease <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contact us</a> or open a ticket in <a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">support system</a>. \r\n </p> \r\n <p class=\\"visit\\"> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Visit this link to contact us</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Seo Panel Plugins</h1> \r\n <p> \r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your\r\nrequirement. \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel plugins</a> are provided by both seo panel\r\nand third party sites. \r\n You can also easily <b>develop</b> seo plugins for your seo panel. \r\n You can <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">submit</a> your seo plugin to seo panel and\r\nwe will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Visit this link to get seo panel plugins</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Contact Us</h1> \r\n <p> \r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below\r\nlink. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Visit this link to contact us</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Support Tickets</h1> \r\n <p> \r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and\r\nfeatures</b>. Eg: To set up cron for keyword position checker. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Visit this link to create a support ticket</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Report Bugs</h1> \r\n <p> \r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Visit this link to report bugs</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2012-04-30 08:02:02'),
(2527, 'ru', 'home', 'Pages Indexed', 'Проиндексированные страницы', '2019-11-28 18:27:27'),
(2528, 'ru', 'home', 'Ranks', 'Rank', '2019-11-28 18:27:27'),
(2529, 'ru', 'home', 'SiteNameUrl', 'Название сайта/Url', '2019-11-28 18:27:27'),
(2530, 'ru', 'home', 'Website Statistics', 'Статистика сайта', '2019-11-28 18:27:27'),
(2531, 'zh', 'home', 'Account Summary', '账户概览', '2011-07-06 10:02:25'),
(2532, 'zh', 'home', 'Backlinks', '反向链接', '2011-07-06 10:02:25'),
(2533, 'zh', 'home', 'Directory Submission', '目录提交', '2011-07-06 10:02:25'),
(39632, 'pt', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'A página é permitida pelo robots.txt e pode ser rastreada por mecanismos de busca', '2026-01-19 23:10:34'),
(39633, 'pt-br', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'A página é permitida pelo robots.txt e pode ser rastreada por mecanismos de busca', '2026-01-19 23:10:34'),
(39634, 'ru', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Страница разрешена в robots.txt и может быть проиндексирована поисковыми системами', '2026-01-19 23:10:34'),
(39635, 'tr', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Sayfa robots.txt tarafından izin verildi ve arama motorları tarafından taranabilir', '2026-01-19 23:10:34'),
(39636, 'zh', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', '该页面被robots.txt允许,可以被搜索引擎抓取', '2026-01-19 23:10:34'),
(39637, 'cn', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', '该页面被robots.txt允许,可以被搜索引擎抓取', '2026-01-19 23:10:34'),
(39638, 'en', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'The page is blocked by robots.txt - search engines cannot crawl this page', '2026-01-19 23:10:34'),
(39639, 'ar', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'الصفحة محظورة بواسطة robots.txt - لا يمكن لمحركات البحث الزحف إلى هذه الصفحة', '2026-01-19 23:10:34'),
(39640, 'bg', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Страницата е блокирана от robots.txt - търсачките не могат да сканират тази страница', '2026-01-19 23:10:34'),
(39641, 'de', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Die Seite ist von robots.txt blockiert - Suchmaschinen können diese Seite nicht crawlen', '2026-01-19 23:10:34'),
(39642, 'es', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'La página está bloqueada por robots.txt - los motores de búsqueda no pueden rastrear esta página', '2026-01-19 23:10:34'),
(39643, 'fr', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'La page est bloquée par robots.txt - les moteurs de recherche ne peuvent pas crawler cette page', '2026-01-19 23:10:34'),
(39644, 'it', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'La pagina è bloccata da robots.txt - i motori di ricerca non possono scansionare questa pagina', '2026-01-19 23:10:34'),
(39645, 'nl', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'De pagina is geblokkeerd door robots.txt - zoekmachines kunnen deze pagina niet crawlen', '2026-01-19 23:10:34'),
(39646, 'pl', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Strona jest zablokowana przez robots.txt - wyszukiwarki nie mogą indeksować tej strony', '2026-01-19 23:10:34'),
(39647, 'pt', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'A página está bloqueada pelo robots.txt - os mecanismos de busca não podem rastrear esta página', '2026-01-19 23:10:34'),
(39648, 'pt-br', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'A página está bloqueada pelo robots.txt - os mecanismos de busca não podem rastrear esta página', '2026-01-19 23:10:34'),
(38950, 'pl', 'review', 'Top Review Links', 'Najlepsze linki recenzji', '2026-01-19 22:58:50'),
(38951, 'pt', 'review', 'Top Review Links', 'Principais links de avaliações', '2026-01-19 22:58:50'),
(38952, 'pt-br', 'review', 'Top Review Links', 'Principais links de avaliações', '2026-01-19 22:58:50'),
(38953, 'ro', 'review', 'Top Review Links', 'Top link-uri recenzii', '2026-01-19 22:58:50'),
(38954, 'ru', 'review', 'Top Review Links', 'Топ ссылок на отзывы', '2026-01-19 22:58:50'),
(38955, 'sk', 'review', 'Top Review Links', 'Top odkazy na recenzie', '2026-01-19 22:58:50'),
(38956, 'sl', 'review', 'Top Review Links', 'Najboljše povezave za mnenja', '2026-01-19 22:58:50'),
(38957, 'sq', 'review', 'Top Review Links', 'Lidhjet kryesore të rishikimeve', '2026-01-19 22:58:50'),
(38958, 'sr', 'review', 'Top Review Links', 'Топ линкови рецензија', '2026-01-19 22:58:50'),
(38959, 'sv', 'review', 'Top Review Links', 'Bästa recensionslänkar', '2026-01-19 22:58:50'),
(38960, 'sw', 'review', 'Top Review Links', 'Viungo Bora vya Mapitio', '2026-01-19 22:58:50'),
(38961, 'th', 'review', 'Top Review Links', 'ลิงก์รีวิวยอดนิยม', '2026-01-19 22:58:50'),
(38962, 'tl', 'review', 'Top Review Links', 'Nangungunang Review Links', '2026-01-19 22:58:50'),
(2537, 'zh', 'home', 'Pages Indexed', '页面检索', '2011-07-06 10:02:25'),
(2538, 'zh', 'home', 'Ranks', '排名', '2011-07-06 10:02:25'),
(2539, 'zh', 'home', 'SiteNameUrl', '站点 名字/URL', '2011-07-06 10:02:25'),
(2540, 'zh', 'home', 'Website Statistics', '站点统计', '2011-07-06 10:02:25'),
(2541, 'ru', 'website', 'Edit Website', 'Редактировать сайт', '2019-08-28 13:09:29'),
(2542, 'ru', 'website', 'plscrtwebsite', 'Создайте веб-сайт до начала использования SEO инструментов и SEO плагинов.', '2019-08-28 13:09:29'),
(2543, 'ru', 'website', 'Website already exist', 'Сайт уже существует', '2019-08-28 13:09:29'),
(2544, 'ru', 'website', 'yourwebalreday', 'ваш сайт, если вы его создали.', '2019-08-28 13:09:29'),
(2545, 'ru', 'user', 'Edit User', 'Редактировать пользователя', '2016-01-13 02:39:26'),
(2546, 'ru', 'user', 'Saved My Profile Details', 'Сохранить профиль', '2016-01-13 02:39:26'),
(2547, 'ru', 'sitemap', 'Change frequency', 'Выберите частоту', '2019-01-25 16:00:48'),
(2548, 'ru', 'sitemap', 'clickproceedsitemap', 'Нажмите <b>продолжить</b> для создания карты сайта', '2019-01-25 16:00:48'),
(2549, 'ru', 'sitemap', 'Download sitemap file from', 'Скачать файл Sitemap из', '2019-01-25 16:00:48'),
(2550, 'ru', 'sitemap', 'Exclude Url', 'Исключить Url', '2019-01-25 16:00:48'),
(2551, 'ru', 'sitemap', 'processtaketime', 'Этот процесс займет некоторое время в зависимости от количества ссылок на сайте. Пожалуйста, подождите, через некоторое время вы получите файл Sitemap', '2019-01-25 16:00:48'),
(2552, 'ru', 'sitemap', 'Sitemap Type', 'Тип карты сайтов', '2019-01-25 16:00:48'),
(2701, 'bg', 'button', 'Check Status', 'Провери статуса', '2014-01-09 00:20:35'),
(2702, 'bg', 'button', 'Proceed', 'Продължи', '2014-01-09 00:20:35'),
(2703, 'bg', 'button', 'Reload', 'Презареди', '2014-01-09 00:20:35'),
(2704, 'bg', 'button', 'Show Details', 'Покажи детайли', '2014-01-09 00:20:35'),
(2705, 'bg', 'button', 'Show Records', 'Покажи записите', '2014-01-09 00:20:35'),
(2706, 'bg', 'button', 'Skip', 'Пропусни', '2014-01-09 00:20:35'),
(2707, 'bg', 'button', 'Submit', 'Изпрати', '2014-01-09 00:20:35'),
(2708, 'bg', 'backlink', 'clickproceedbacklink', 'Въведете <b>по един</b> URL адрес на ред. Натиснете върху <b>Продължи</b> за да проверите беклинковете', '2010-11-14 23:52:58'),
(2709, 'bg', 'backlink', 'Saved backlink results of', 'Запазени беклинк резултати за', '2010-11-14 23:52:58'),
(2710, 'bg', 'common', 'Action', 'Действие', '2019-05-25 22:00:14'),
(2711, 'bg', 'common', 'Activate', 'Активирай', '2019-05-25 22:00:14'),
(2712, 'bg', 'common', 'Active', 'Активен', '2019-05-25 22:00:14'),
(2713, 'bg', 'common', 'Admin Panel', 'Админ Панел', '2019-05-25 22:00:14'),
(2553, 'ru', 'keyword', 'Crawling keyword', 'Сканирование ключевых слов', '2016-01-13 02:28:48'),
(2554, 'ru', 'keyword', 'Detailed Keyword Position Reports', 'Детальные отчеты по позициям ключевых слов', '2016-01-13 02:28:48'),
(2555, 'ru', 'keyword', 'Edit Keyword', 'Редактировать ключевое слово', '2016-01-13 02:28:48'),
(2556, 'ru', 'keyword', 'Graphical Keyword Position Reports', 'Графический отчет по позициям ключевых слов', '2016-01-13 02:28:48'),
(2557, 'ru', 'keyword', 'Import Keywords', 'Импорт ключевых слов', '2016-01-13 02:28:48'),
(2558, 'ru', 'keyword', 'Keyword already exist', 'Ключевое слово уже существует', '2016-01-13 02:28:48'),
(2559, 'ru', 'keyword', 'Keyword Position Report', 'Отчет о позиции ключевого слова', '2016-01-13 02:28:48'),
(2560, 'ru', 'keyword', 'New Keyword', 'Новое ключевое слово', '2016-01-13 02:28:48'),
(2561, 'ru', 'keyword', 'not assigned to required search engines', 'не выбраны необходимые поисковые системы', '2016-01-13 02:28:48'),
(2562, 'ru', 'keyword', 'pleaseselecttool', 'Пожалуйста, выберите хотя бы один сео-инструмент', '2016-01-13 02:28:48'),
(2563, 'ru', 'keyword', 'Quick Keyword Position Checker', 'Быстрая проверка позиций ключевых слов', '2016-01-13 02:28:48'),
(2564, 'ru', 'keyword', 'results from ', 'Результаты', '2016-01-13 02:28:48'),
(2565, 'ru', 'keyword', 'Show All results', 'Показать все результаты', '2016-01-13 02:28:48'),
(2566, 'ru', 'keyword', 'Successfully crawled keyword', 'Ключевое слово успешно просканировано', '2016-01-13 02:28:48'),
(2567, 'ru', 'keyword', 'to create new keywords', 'создать новые ключевые слова', '2016-01-13 02:28:48'),
(2568, 'ru', 'label', 'already exist', 'уже существует', '2024-07-17 15:17:22'),
(2569, 'ru', 'label', 'Authentication', 'Аутентификация', '2024-07-17 15:17:22'),
(2570, 'ru', 'label', 'Author', 'Автор', '2024-07-17 15:17:22'),
(2571, 'ru', 'label', 'Click Here', 'Нажмите сюда', '2024-07-17 15:17:22'),
(2572, 'ru', 'label', 'Cron', 'Cron', '2024-07-17 15:17:22'),
(2573, 'ru', 'label', 'Description', 'Описание', '2024-07-17 15:17:22'),
(2574, 'ru', 'label', 'Developers', 'Разработчики', '2024-07-17 15:17:22'),
(2575, 'ru', 'label', 'Download', 'Скачать', '2024-07-17 15:17:22'),
(2576, 'ru', 'label', 'Installation', 'Установка', '2024-07-17 15:17:22'),
(2577, 'ru', 'label', 'Keywords', 'Ключевые слова', '2024-07-17 15:17:22'),
(2578, 'ru', 'label', 'noactiveplugins', 'Нет активных дополнений для Seo panel!', '2024-07-17 15:17:22'),
(2579, 'ru', 'label', 'Plugin', 'Плагины', '2024-07-17 15:17:22'),
(2580, 'ru', 'label', 'Port', 'Порт', '2024-07-17 15:17:22'),
(2581, 'ru', 'label', 'Proxy', 'Прокси', '2024-07-17 15:17:22'),
(2582, 'ru', 'label', 'Re-install', 'Переустановить', '2024-07-17 15:17:22'),
(2583, 'ru', 'label', 'Sponsors', 'Спонсоры', '2024-07-17 15:17:22'),
(2584, 'ru', 'label', 'Title', 'Заголовок', '2024-07-17 15:17:22'),
(2585, 'ru', 'label', 'translation by', 'переведен', '2024-07-17 15:17:22'),
(2586, 'ru', 'label', 'Translators', 'Переводчики', '2024-07-17 15:17:22'),
(2587, 'ru', 'label', 'Upgrade', 'Обновление', '2024-07-17 15:17:22'),
(2588, 'ru', 'label', 'Version', 'Версия', '2024-07-17 15:17:22'),
(2589, 'ru', 'label', 'wantproceed', 'Вы действительно хотите продолжить?', '2024-07-17 15:17:22'),
(2590, 'ru', 'login', 'Confirm Password', 'Повторите пароль', '2018-08-21 21:07:34'),
(2591, 'ru', 'login', 'Create my account', 'Создать аккаунт', '2018-08-21 21:07:34'),
(2592, 'ru', 'login', 'Create New Account', 'Создать новый аккаунт', '2018-08-21 21:07:34'),
(2593, 'ru', 'login', 'Email', 'Email', '2018-08-21 21:07:34'),
(2594, 'ru', 'login', 'emailexist', 'Email уже существует', '2018-08-21 21:07:34'),
(2595, 'ru', 'login', 'Enter the code as it is shown', 'Введите код с картинки', '2018-08-21 21:07:34'),
(2596, 'ru', 'login', 'First Name', 'Имя', '2018-08-21 21:07:34'),
(2597, 'ru', 'login', 'Last Name', 'Фамилия', '2018-08-21 21:07:34'),
(2598, 'ru', 'login', 'Login', 'Логин', '2018-08-21 21:07:34'),
(2599, 'ru', 'login', 'Login incorrect', 'Неправильный логин', '2018-08-21 21:07:34'),
(2600, 'ru', 'login', 'newaccountsuccess', 'Новый аккаунт успешно создан!', '2018-08-21 21:07:34'),
(2601, 'ru', 'login', 'Password', 'Пароль', '2018-08-21 21:07:34'),
(2602, 'ru', 'login', 'Password incorrect', 'Неправильный пароль', '2018-08-21 21:07:34'),
(2603, 'ru', 'login', 'Register', 'Регистрация', '2018-08-21 21:07:34'),
(2604, 'ru', 'login', 'Sign in to your account', 'Войдите в свой аккаунт', '2018-08-21 21:07:34'),
(2605, 'ru', 'login', 'User inactive', 'Неактивный пользователь', '2018-08-21 21:07:34'),
(2606, 'ru', 'login', 'Username', 'Имя пользователя', '2018-08-21 21:07:34'),
(2607, 'ru', 'login', 'usernameexist', 'Имя пользователя уже существует!', '2018-08-21 21:07:34'),
(2608, 'ru', 'panel', 'About Us', 'О нас', '2024-07-17 15:19:14'),
(2609, 'ru', 'panel', 'Add following command to your cron tab', 'Добавить следующую команду в вкладку Cron', '2024-07-17 15:19:14'),
(2610, 'ru', 'panel', 'alsocheckfollowlink', 'Также просмотрите следующую ссылку, если вам нужны больше подробностей.', '2024-07-17 15:19:14'),
(2611, 'ru', 'panel', 'Check Directory', 'Выбор каталогов', '2024-07-17 15:19:14'),
(2612, 'ru', 'panel', 'Cron Command', 'Команда Cron', '2024-07-17 15:19:14'),
(2613, 'ru', 'panel', 'Directory Manager', 'Менеджер каталогов', '2024-07-17 15:19:14'),
(2614, 'ru', 'panel', 'Edit My Profile', 'Редактировать профиль', '2024-07-17 15:19:14'),
(2615, 'ru', 'panel', 'My Profile', 'Мой профиль', '2024-07-17 15:19:14'),
(2616, 'ru', 'panel', 'New Proxy', 'Новый прокси', '2024-07-17 15:19:14'),
(2617, 'ru', 'panel', 'New User', 'Новый пользователь', '2024-07-17 15:19:14'),
(2618, 'ru', 'panel', 'New Website', 'Новый сайт', '2024-07-17 15:19:14'),
(2619, 'ru', 'panel', 'Proxy Manager', 'Менеджер прокси', '2024-07-17 15:19:14'),
(2620, 'ru', 'panel', 'Report Generation Manager', 'Менеджер формирования отчетов', '2024-07-17 15:19:14'),
(2621, 'ru', 'panel', 'Reports Manager', 'Менеджер отчетов', '2024-07-17 15:19:14'),
(2622, 'ru', 'panel', 'Seo Plugins Manager', 'Менеджер сео-плагинов', '2024-07-17 15:19:14'),
(2623, 'ru', 'panel', 'Seo Tools Manager', 'Менеджер сео-инструментов', '2024-07-17 15:19:14');
INSERT INTO `texts` VALUES
(2624, 'ru', 'panel', 'System Settings', 'Системные настройки', '2024-07-17 15:19:14'),
(2625, 'ru', 'panel', 'User Manager', 'Менеджер пользователей', '2024-07-17 15:19:14'),
(2626, 'ru', 'panel', 'Website Manager', 'Менеджер сайтов', '2024-07-17 15:19:14'),
(2627, 'ru', 'plugin', 'Edit Seo Plugin', 'Редактировать сео-плагин', '2012-05-13 07:10:56'),
(2628, 'ru', 'plugin', 'Plugin Name', 'Название плагина', '2012-05-13 07:10:56'),
(2629, 'ru', 'plugin', 'Seo Plugin Details', 'Детали сео-плагина', '2012-05-13 07:10:56'),
(2630, 'ru', 'proxy', 'Edit Proxy', 'Редактировать прокси', '2016-12-09 21:23:58'),
(2631, 'ru', 'proxy', 'Proxy Password', 'Пароль прокси', '2016-12-09 21:23:58'),
(2632, 'ru', 'proxy', 'Proxy Username', 'Имя пользователя прокси', '2016-12-09 21:23:58'),
(2633, 'ru', 'proxy', 'Proxyalreadyexist', 'Прокси уже существует!', '2016-12-09 21:23:58'),
(2634, 'ru', 'rank', 'enterurlproceed', 'Введите URL, <b>по одному в каждой строке</b>. Нажмите <b>продолжить</b>, для проверки Google и Alexa Rank.', '2010-10-26 13:52:58'),
(2635, 'ru', 'rank', 'Google and Alexa Rank Reports', 'Отчеты Google и Alexa Rank', '2010-10-26 13:52:58'),
(2636, 'ru', 'rank', 'Saved rank results of', 'Сохраненные результаты', '2010-10-26 13:52:58'),
(2637, 'ru', 'saturation', 'clickproceedsaturation', 'Введите URL, <b>по одному в каждой строке </b>. Нажмите <b>продолжить</b>, для проверки результатов насыщенности в поисковых системах', '2010-10-21 13:16:23'),
(2638, 'ru', 'saturation', 'GenerateSaturationReports', 'Создание отчетов по поисковой насыщенности', '2010-10-21 13:16:23'),
(2639, 'ru', 'saturation', 'Quick Search Engine Saturation Checker', 'Быстрая проверка поисковой насыщенности', '2010-10-21 13:16:23'),
(2640, 'ru', 'saturation', 'Saved Search Engine Saturation results of', 'Сохраненные результаты поисковой насыщенности', '2010-10-21 13:16:23'),
(2641, 'ru', 'saturation', 'Search Engine Saturation Reports', 'Отчеты по поисковой насыщенности', '2010-10-21 13:16:23'),
(2642, 'ru', 'seotools', 'Automatic Submission', 'Автоматическая рассылка', '2024-07-17 15:26:22'),
(2643, 'ru', 'seotools', 'backlink-checker', 'Проверка обратных ссылок', '2024-07-17 15:26:22'),
(2644, 'ru', 'seotools', 'Backlinks Reports', 'Отчеты обратных ссылок', '2024-07-17 15:26:22'),
(2645, 'ru', 'seotools', 'Check Submission Status', 'Проверить статус рассылки', '2024-07-17 15:26:22'),
(2646, 'ru', 'seotools', 'clickgeneratereports', 'Нажмите <b>продолжить</b> для генерации отчета', '2024-07-17 15:26:22'),
(2647, 'ru', 'seotools', 'Detailed Position Reports', 'Детальный отчет о позициях', '2024-07-17 15:26:22'),
(2648, 'ru', 'seotools', 'directory-submission', 'Рассылка в каталоги', '2024-07-17 15:26:22'),
(2649, 'ru', 'seotools', 'Featured Submission', 'Рекомендуемые рассылки', '2024-07-17 15:26:22'),
(2650, 'ru', 'seotools', 'Generate Backlinks Reports', 'Создать отчет по обратным ссылкам', '2024-07-17 15:26:22'),
(2651, 'ru', 'seotools', 'Generate Keyword Reports', 'Создать отчет по ключевым словам', '2024-07-17 15:26:22'),
(2652, 'ru', 'seotools', 'Generate Rank Reports', 'Создать отчет по рейтингу', '2024-07-17 15:26:22'),
(2653, 'ru', 'seotools', 'Generate Saturation Reports', 'Создать отчет по насыщенности', '2024-07-17 15:26:22'),
(2654, 'ru', 'seotools', 'Google Sitemap Generator', 'Генератор карты сайтов Google', '2024-07-17 15:26:22'),
(2655, 'ru', 'seotools', 'Graphical Position Reports', 'Графический отчет о позициях', '2024-07-17 15:26:22'),
(2656, 'ru', 'seotools', 'Keyword Position Summary', 'Отчет по позициям ключевых слов', '2024-07-17 15:26:22'),
(2657, 'ru', 'seotools', 'keyword-position-checker', 'Проверка позиций ключевых слов', '2024-07-17 15:26:22'),
(2658, 'ru', 'seotools', 'Keywords Manager', 'Менеджер ключевых слов', '2024-07-17 15:26:22'),
(2659, 'ru', 'seotools', 'Quick Backlinks Checker', 'Быстрая проверка обратных ссылок', '2024-07-17 15:26:22'),
(2660, 'ru', 'seotools', 'Quick Position Checker', 'Быстрая проверка ключевых слов', '2024-07-17 15:26:22'),
(2661, 'ru', 'seotools', 'Quick Rank Checker', 'Быстрая проверка рейтинга', '2024-07-17 15:26:22'),
(2662, 'ru', 'seotools', 'Quick Saturation Checker', 'Быстрая проверка насыщенности', '2024-07-17 15:26:22'),
(2663, 'ru', 'seotools', 'Rank Reports', 'Отчет по рейтингу', '2024-07-17 15:26:22'),
(2664, 'ru', 'seotools', 'rank-checker', 'Проверка рейтинга', '2024-07-17 15:26:22'),
(2665, 'ru', 'seotools', 'Saturation Reports', 'Проверка насыщенности', '2024-07-17 15:26:22'),
(2666, 'ru', 'seotools', 'saturation-checker', 'Насыщенность в поисковых системах', '2024-07-17 15:26:22'),
(2667, 'ru', 'seotools', 'sitemap-generator', 'Генератор карты сайтов', '2024-07-17 15:26:22'),
(2668, 'ru', 'seotools', 'Skipped Directories', 'Пропущенные каталоги', '2024-07-17 15:26:22'),
(2669, 'ru', 'seotools', 'Submission Reports', 'Отчет по рассылкам', '2024-07-17 15:26:22'),
(2670, 'ru', 'seotools', 'User Access', 'Доступ пользователей', '2024-07-17 15:26:22'),
(2671, 'ru', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Пожертвовать $100</b> и стать <b>спонсором</b> Seo Panel. ', '2024-07-17 15:22:42'),
(2672, 'ru', 'settings', 'seopanel_description', 'Панель управления поисковой оптимизации сайтов. Содержащего большое количество инструментов для увеличения и отслеживания посещения ваших сайтов. Seo panel инструмент с открытым исходным кодом. Вы можете принять участие в разработке своих собственных плагинов для Seo panel.', '2024-07-17 15:22:42'),
(2673, 'ru', 'settings', 'seopanel_title', 'Seo panel: первый в мире продукт с открытым исходным кодом для управления несколькими сайтами.', '2024-07-17 15:22:42'),
(2674, 'ru', 'settings', 'SP_CRAWL_DELAY', 'Задержка между сканированием паука (в секундах)', '2024-07-17 15:22:42'),
(2675, 'ru', 'settings', 'SP_DEFAULTLANG', 'Язык по умолчанию', '2024-07-17 15:22:42'),
(2676, 'ru', 'settings', 'SP_DESCRIPTION', 'Описание сео-панели', '2024-07-17 15:22:42'),
(2677, 'ru', 'settings', 'SP_ENABLE_PROXY', 'Включить прокси', '2024-07-17 15:22:42'),
(2678, 'ru', 'settings', 'SP_HOTLINKING', 'Проверочное изображение включено', '2024-07-17 15:22:42'),
(2679, 'ru', 'settings', 'SP_KEYWORDS', 'Ключевые слова сео-панели', '2024-07-17 15:22:42'),
(2680, 'ru', 'settings', 'SP_PAGINGNO', 'Количество записей на странице', '2024-07-17 15:22:42'),
(2681, 'ru', 'settings', 'SP_TITLE', 'Заголовок сео-панели', '2024-07-17 15:22:42'),
(2682, 'ru', 'settings', 'SP_USER_GEN_REPORT', 'Разрешить пользователю создавать отчеты', '2024-07-17 15:22:42'),
(2683, 'ru', 'settings', 'SP_USER_REGISTRATION', 'Интерфейс регистрации пользователя', '2024-07-17 15:22:42'),
(2684, 'ru', 'settings', 'syssettingssaved', 'Системные настройки успешно сохранены!', '2024-07-17 15:22:42'),
(2685, 'ru', 'support', 'support_cont1', '<fieldset>\r\n<legend>Служба поддержки Seo Panel</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Пакет из 1000 каталогов.</h1> \r\n <p>\r\n Мы представляем пакет из <b>1000 качественных бесплатных и проверенных</b> интернет-каталогов, для добавления\r\nв вашу seo panel.\r\n Рассылка поможет вам <b>увеличить количество обратных ссылок</b> на ваш сайт.\r\n На самом деле список из 1000 каталогов <b>введен</b> для сбора денег на <b>будущее\r\nразвитие</b> seo panel.\r\n Чтобы получить список из 1000 каталогов, пожалуйста <a href="<?=SP_DONATE_LINK?>" target="_blank">пожертвуйте</a>\r\n$10 или больше, для улучшения Seo panel.\r\n Если у вас возникли вопросы связанные с пакетом из 1000 каталогов, пожалуйста,<a href="<?=SP_CONTACT_LINK?>"\r\ntarget="_blank">свяжитесь с нами</a> или откройте запрос в <a href="<?=SP_SUPPORT_LINK?>"\r\ntarget="_blank">службе поддержки</a>. \r\n </p> \r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Нажмите на ссылку для пожертвования на развитие</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Локальный пакет поисковых систем</h1> \r\n <p>\r\n Добавить <b>домены локальных поисковых систем</b> google,yahoo,msn(<b>например: www.google.de,www.google.fr\r\nи т.д.</b>) в seo panel, <b>для проверки позиций в поисковых системах</b>, отслеживания производительности вашего сайта \r\nв вашей стране или регионе.\r\n Для того чтобы получить информацию о добавлении локальных поисковых системах (согласно вашему требованию), пожалуйста, <a\r\nhref="<?=SP_DONATE_LINK?>" target="_blank">пожертвуйте</a> $10 или больше, для улучшения сео-панели.\r\n Перед отправкой пожертвования, пожалуйста, <a href="<?=SP_CONTACT_LINK?>" target="_blank">свяжитесь с нами,</a> мы отправим\r\nвам список необходимых доменов поисковых систем.\r\n <br><br> \r\n Кроме того, чтобы добавить <b>новые поисковые системы (например:yandex.ru)</b> в вашу Seo panel для проверки ключевых слов,\r\nпожалуйста <a href="<?=SP_CONTACT_LINK?>" target="_blank">свяжитесь с нами</a> или откройте запрос <a\r\nhref="<?=SP_SUPPORT_LINK?>" target="_blank">в службе поддержки</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Пройдите по ссылке, чтобы связаться с нами</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Плагины Seo Panel</h1> \r\n <p>\r\n Добавить <b>сео-плагины</b> в вашу seo panel для <b>расширения возможностей</b> по вашему требованию.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Плагины Seo panel</a> предоставляются разработчиками Seo panel\r\nи сторонними разработчиками.\r\n Вы также можете легко <b>разработать</b> сео-плагин для вашего seo panel.\r\n Вы можете <a href="<?=SP_PLUGINSITE?>" target="_blank">отправить</a> ваш SEO плагин для Seo panel, \r\nмы <b>опубликуем</b> его на нашем сайте после <b>предварительной</b> проверки. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Пройдите по ссылке, для получения сео-плагинов</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Связаться с нами</h1> \r\n <p>\r\n Обращайтесь к нам по любым возникшим вопросам по работе с <b>инструментами, плагинами и расширениями seo panel,</b> для\r\nперехода нажмите на ссылку.\r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Пройдите по ссылке для связи с нами.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Запросы в поддержку</h1> \r\n <p>\r\n Для того чтобы получить <b>техническую поддержку</b> по установке seo panel <b>инструментов, плагинов и\r\nрасширений</b>. Например: Настроить крон для проверки позиций ключевых слов.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Пройдите по ссылке в службу технической поддержки</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Отчеты по ошибкам</h1> \r\n <p>\r\n Для отправки отчетов по <b>ошибкам</b> в <b>инструментах seo panel, плагинах и расширениях</b> нажмите на ссылку.\r\nПожалуйста, помогите нам улучшить возможности в следующей версии.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Пройдите по ссылке для сообщения об ошибке.</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2019-08-28 13:08:54'),
(14731, 'ru', 'website', 'Click here to get Google Analytics View Id', 'Нажмите для получения Google Analytics View Id', '2019-08-28 13:09:29'),
(2686, 'ru', 'support', 'support_cont2', '<fieldset>\r\n<legend>Онлайн ресурсы Seo Panel</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Руководство Seo Panel</h1> \r\n <p>\r\n Вы можете посмотреть <a href="<?=SP_HELP_LINK?>" target="_blank">документацию seo panel</a> в разделе\r\n<b>руководство</b>, которая содержит <b>документацию</b> по использованию инструментов seo panel, плагинов и расширений.\r\n <br>Это лучшее место в интернете для получения <br>справки</br> о SEO панели. Мы надеемся, что вы\r\n<b>поможете</b> seo panel в совершенствовании разработки первого бесплатного инструмента для продвижения сайтов!\r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Перейти в раздел помощь</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Форум Seo Panel</h1> \r\n <p>\r\n <b>Форум Seo panel</b>, место для обсуждения первого открытого программного продукта для продвижения сайтов. \r\n Это лучшее место для поиска <b>ответов</b> на <b>ваши вопросы</b> о seo panel. \r\n <br>Также вы можете <b>внести</b> долю вашего <b>опыта</b> При использовании Seo panel для оптимизации\r\nсайтов.\r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Перейти на форум Seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2019-08-28 13:08:54'),
(2687, 'ru', 'support', 'support_cont3', '<fieldset>\r\n<legend>Пожертвования на развитие Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Пожертвования на развитие Seo Panel - первой в мире программы для оптимизации сайтов с открытым исходным кодом.</h1> \r\n <p>\r\n <b>Поддержите</b> первый в мире скрипт для создания сервиса по продвижению сайтов в интернете.\r\n Мы планируем в будущем развивать <b>и улучшать </b> программное обеспечение.\r\n <br>По всем вопросам <b>поддержки</b>, только мы сможем дать правильные <b>ответы</b>.\r\n Если вы понимаете, что Seo panel <b>стоит</b> вашего внимания, пожалуйста пожертвуйте команде разработчиков.\r\n <br>Мы <b>опубликуем</b> ваше имя на нашем сайте и ссылку на ваши ресурсы <a href="<?=SP_DONATE_LINK?>"\r\ntarget="_blank">на странице пожертований</a>, после получения пожертвования.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Перейти на страницу пожертвования seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>\r\n', '2019-08-28 13:08:54'),
(2688, 'en', 'common', 'Profile', 'Profile', '2019-08-06 10:09:56'),
(2689, 'de', 'common', 'Profile', 'Profil', '2021-06-15 01:46:19'),
(2690, 'zh', 'common', 'Profile', '簡介', '2019-05-25 22:01:23'),
(2691, 'nl', 'common', 'Profile', 'Profiel', '2019-05-25 22:06:08'),
(2692, 'fr', 'common', 'Profile', 'Profil', '2020-02-14 16:05:11'),
(2693, 'hu', 'common', 'Profile', 'Profil', '2019-05-25 22:15:43'),
(2694, 'it', 'common', 'Profile', 'Profilo', '2022-07-11 15:16:48'),
(2695, 'pl', 'common', 'Profile', 'Profil', '2019-05-25 22:43:11'),
(2696, 'ru', 'common', 'Profile', 'Профиль', '2024-07-17 15:16:33'),
(2697, 'es', 'common', 'Profile', 'Perfil', '2019-05-25 22:49:48'),
(2698, 'bg', 'user', 'Edit User', 'Промени', '2016-12-18 22:18:03'),
(2699, 'bg', 'user', 'Saved My Profile Details', 'Детайлите на профила са запазени', '2016-12-18 22:18:03'),
(2700, 'bg', 'button', 'Cancel', 'Откажи', '2014-01-09 00:20:35'),
(2714, 'bg', 'common', 'Alexa Rank', 'Alexa Rank', '2019-05-25 22:00:14'),
(2715, 'bg', 'common', 'All', 'Всичко', '2019-05-25 22:00:14'),
(2716, 'bg', 'common', 'Category', 'Категория', '2019-05-25 22:00:14'),
(2717, 'bg', 'common', 'contact', 'Контакт', '2019-05-25 22:00:14'),
(2718, 'bg', 'common', 'copyright', 'Всички права запазени www.seopanel.in © [year]', '2019-05-25 22:00:14'),
(2719, 'bg', 'common', 'Country', 'Страна', '2019-05-25 22:00:14'),
(2720, 'bg', 'common', 'Crawl Meta Data', 'Обери Мета данни', '2019-05-25 22:00:14'),
(2721, 'bg', 'common', 'Date', 'Дата', '2019-05-25 22:00:14'),
(2722, 'bg', 'common', 'Delete', 'Изтрий', '2019-05-25 22:00:14'),
(2723, 'bg', 'common', 'Details', 'Детайли', '2019-05-25 22:00:14'),
(2724, 'bg', 'common', 'Directory', 'Директория', '2019-05-25 22:00:14'),
(2725, 'bg', 'common', 'Donate', 'Дарение', '2019-05-25 22:00:14'),
(2726, 'bg', 'common', 'Edit', 'Промени', '2019-05-25 22:00:14'),
(2727, 'bg', 'common', 'Entry cannot be blank', 'Не можете да оставите празно', '2019-05-25 22:00:14'),
(2728, 'bg', 'common', 'entrynotvalid', 'Въведените данни са невалидни', '2019-05-25 22:00:14'),
(2729, 'bg', 'common', 'failed', 'неуспешно', '2019-05-25 22:00:14'),
(2730, 'bg', 'common', 'forum', 'Форум', '2019-05-25 22:00:14'),
(2731, 'bg', 'common', 'Found', 'Намерени', '2019-05-25 22:00:14'),
(2732, 'bg', 'common', 'Google Pagerank', 'Google Пейдж Ранк ', '2019-05-25 22:00:14'),
(2733, 'bg', 'common', 'help', 'Помощ', '2019-05-25 22:00:14'),
(2734, 'bg', 'common', 'hidenews', 'Скрий новините', '2019-05-25 22:00:14'),
(2735, 'bg', 'common', 'Id', 'Id', '2019-05-25 22:00:14'),
(2736, 'bg', 'common', 'Inactivate', 'Деактивирай', '2019-05-25 22:00:14'),
(2737, 'bg', 'common', 'Inactive', 'Неактивен', '2019-05-25 22:00:14'),
(2738, 'bg', 'common', 'Invalid characters', 'Невалидни символи', '2019-05-25 22:00:14'),
(2739, 'bg', 'common', 'Invalid code entered', 'Невалиден код', '2019-05-25 22:00:14'),
(2740, 'bg', 'common', 'Invalid email address entered', 'Невалиден email адрес', '2019-05-25 22:00:14'),
(2741, 'bg', 'common', 'Invalid value', 'Невалидна стойност', '2019-05-25 22:00:14'),
(2742, 'bg', 'common', 'Keyword', 'Ключова дума', '2019-05-25 22:00:14'),
(2743, 'bg', 'common', 'Keywords', 'Ключови думи', '2019-05-25 22:00:14'),
(2744, 'bg', 'common', 'lang', 'Език', '2019-05-25 22:00:14'),
(2745, 'bg', 'common', 'My Account', 'Моят профил', '2019-05-25 22:00:14'),
(2746, 'bg', 'common', 'Name', 'Име', '2019-05-25 22:00:14'),
(2747, 'bg', 'common', 'No', 'Не', '2019-05-25 22:00:14'),
(2748, 'bg', 'common', 'No Keywords Found', 'Не са намерени ключови думи', '2019-05-25 22:00:14'),
(2749, 'bg', 'common', 'No Records Found', 'Не са намерени записи', '2019-05-25 22:00:14'),
(2750, 'bg', 'common', 'noactivetools', 'Не са намерени активни SEO инструменти', '2019-05-25 22:00:14'),
(2751, 'bg', 'common', 'nowebsites', 'Не са открити сайтове', '2019-05-25 22:00:14'),
(2752, 'bg', 'common', 'password632', 'Паролата трябва да е с дължина от 6 до 32 символа', '2019-05-25 22:00:14'),
(2753, 'bg', 'common', 'passwordnotmatch', 'Паролите не съвпадат', '2019-05-25 22:00:14'),
(2754, 'bg', 'common', 'Period', 'Период', '2019-05-25 22:00:14'),
(2755, 'bg', 'common', 'Priority', 'Приоритет', '2019-05-25 22:00:14'),
(2756, 'bg', 'common', 'Profile', 'Профил', '2019-05-25 22:00:14'),
(2757, 'bg', 'common', 'Rank', 'Ранк', '2019-05-25 22:00:14'),
(2758, 'bg', 'common', 'Reports', 'Доклади', '2019-05-25 22:00:14'),
(2759, 'bg', 'common', 'Results', 'Резултати', '2019-05-25 22:00:14'),
(2760, 'bg', 'common', 'Search Engine', 'Търсачка', '2019-05-25 22:00:14'),
(2761, 'bg', 'common', 'Select', 'Избери', '2019-05-25 22:00:14'),
(2762, 'bg', 'common', 'Seo Plugins', 'Seo Модули', '2019-05-25 22:00:14'),
(2763, 'bg', 'common', 'Seo Tools', 'Seo Инструменти', '2019-05-25 22:00:14'),
(2764, 'bg', 'common', 'Sign out', 'Изход', '2019-05-25 22:00:14'),
(2765, 'bg', 'common', 'Sign Up', 'Регистрация', '2019-05-25 22:00:14'),
(2766, 'bg', 'common', 'signin', 'Вход', '2019-05-25 22:00:14'),
(2767, 'bg', 'common', 'Status', 'Статус', '2019-05-25 22:00:14'),
(2768, 'bg', 'common', 'Support', 'Поддръжка', '2019-05-25 22:00:14'),
(2769, 'bg', 'common', 'Total', 'Общо', '2019-05-25 22:00:14'),
(2770, 'bg', 'common', 'Url', 'Url', '2019-05-25 22:00:14'),
(2771, 'bg', 'common', 'User', 'Потребител', '2019-05-25 22:00:14'),
(2772, 'bg', 'common', 'User Panel', 'Потребителски панел', '2019-05-25 22:00:14'),
(2773, 'bg', 'common', 'Website', 'Сайт', '2019-05-25 22:00:14'),
(2774, 'bg', 'common', 'Yes', 'Да', '2019-05-25 22:00:14'),
(2775, 'pt', 'backlink', 'clickproceedbacklink', 'Introduza o URL <b>Um por linha</b>. Pressione on <b>Proceda</b> para verificar os Backlinks ', '2010-10-27 07:30:04'),
(2776, 'pt', 'backlink', 'Saved backlink results of', 'Resultados guardados do Checklink de', '2010-10-27 07:30:04'),
(2777, 'pt', 'button', 'Cancel', 'Cancelar', '2014-01-09 00:31:51'),
(2778, 'pt', 'button', 'Check Status', 'Verificar Status', '2014-01-09 00:31:51'),
(2779, 'pt', 'button', 'Proceed', 'Prosseguir', '2014-01-09 00:31:51'),
(2780, 'pt', 'button', 'Reload', 'Carregar', '2014-01-09 00:31:51'),
(2781, 'pt', 'button', 'Show Details', 'Ver detalhes', '2014-01-09 00:31:51'),
(2782, 'pt', 'button', 'Show Records', 'Ver Registos', '2014-01-09 00:31:51'),
(2783, 'pt', 'button', 'Skip', 'Passar', '2014-01-09 00:31:51'),
(2784, 'pt', 'button', 'Submit', 'Submeter', '2014-01-09 00:31:51'),
(2785, 'ro', 'backlink', 'clickproceedbacklink', 'Introduceti URL-urile <b> Cate unul pe rand <b>. Apasa pe <b>Continua<b> pentru a verifica Backlink-urile', '2010-10-27 05:19:53'),
(2786, 'ro', 'backlink', 'Saved backlink results of', 'Backlink-uri salvate rezultat al', '2010-10-27 05:19:53'),
(2787, 'ro', 'button', 'Cancel', 'Anuleaza', '2014-01-09 00:32:28'),
(2788, 'ro', 'button', 'Check Status', 'Verifica statusul', '2014-01-09 00:32:28'),
(2789, 'ro', 'button', 'Proceed', 'Continua', '2014-01-09 00:32:28'),
(2790, 'ro', 'button', 'Reload', 'Reincarca', '2014-01-09 00:32:28'),
(2791, 'ro', 'button', 'Show Details', 'Arata detalii', '2014-01-09 00:32:28'),
(2792, 'ro', 'button', 'Show Records', 'Arata inregistrari', '2014-01-09 00:32:28'),
(2793, 'ro', 'button', 'Skip', 'Sari', '2014-01-09 00:32:28'),
(2794, 'ro', 'button', 'Submit', 'Executa', '2014-01-09 00:32:28'),
(2795, 'ro', 'common', 'Action', 'Actiune', '2019-05-25 22:44:58'),
(2796, 'ro', 'common', 'Activate', 'Activeaza', '2019-05-25 22:44:58'),
(2797, 'ro', 'common', 'Active', 'Activ', '2019-05-25 22:44:58'),
(2798, 'ro', 'common', 'Admin Panel', 'Panoul de comanda', '2019-05-25 22:44:58'),
(2799, 'ro', 'common', 'Alexa Rank', 'Rank Alexa', '2019-05-25 22:44:58'),
(2800, 'ro', 'common', 'All', 'Toate', '2019-05-25 22:44:58'),
(2801, 'ro', 'common', 'Category', 'Categorie', '2019-05-25 22:44:58'),
(2802, 'ro', 'common', 'contact', 'Contact', '2019-05-25 22:44:58'),
(2803, 'ro', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Toate drepturile rezervate', '2019-05-25 22:44:58'),
(2804, 'ro', 'common', 'Country', 'Tara', '2019-05-25 22:44:58'),
(2805, 'ro', 'common', 'Crawl Meta Data', 'Crawl Meta Data', '2019-05-25 22:44:58'),
(2806, 'ro', 'common', 'Date', 'Data', '2019-05-25 22:44:58'),
(2807, 'ro', 'common', 'Delete', 'Sterge', '2019-05-25 22:44:58'),
(2808, 'ro', 'common', 'Details', 'Detalii', '2019-05-25 22:44:58'),
(2809, 'ro', 'common', 'Directory', 'Director', '2019-05-25 22:44:58'),
(2810, 'ro', 'common', 'Donate', 'Doneaza', '2019-05-25 22:44:58'),
(2811, 'ro', 'common', 'Edit', 'Editeaza', '2019-05-25 22:44:58'),
(2812, 'ro', 'common', 'Entry cannot be blank', 'Campul nu poate fi gol', '2019-05-25 22:44:58'),
(2813, 'ro', 'common', 'entrynotvalid', 'Datele din camp nu sunt valide', '2019-05-25 22:44:58'),
(2814, 'ro', 'common', 'failed', 'esuat', '2019-05-25 22:44:58'),
(2815, 'ro', 'common', 'forum', 'Forum', '2019-05-25 22:44:58'),
(2816, 'ro', 'common', 'Found', 'Gasit', '2019-05-25 22:44:58'),
(2817, 'ro', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:44:58'),
(2818, 'ro', 'common', 'help', 'Ajutor', '2019-05-25 22:44:58'),
(2819, 'ro', 'common', 'hidenews', 'Ascunde Noutatile Seo Panel', '2019-05-25 22:44:58'),
(2820, 'ro', 'common', 'Id', 'Id', '2019-05-25 22:44:58'),
(2821, 'ro', 'common', 'Inactivate', 'Inactiva', '2019-05-25 22:44:58'),
(2822, 'ro', 'common', 'Inactive', 'Inactiv', '2019-05-25 22:44:58'),
(2823, 'ro', 'common', 'Invalid characters', 'Caractere invalide', '2019-05-25 22:44:58'),
(2824, 'ro', 'common', 'Invalid code entered', 'Cod introdus invalid', '2019-05-25 22:44:58'),
(2825, 'ro', 'common', 'Invalid email address entered', 'Adresa de e-mail introdusa invalida', '2019-05-25 22:44:58'),
(2826, 'ro', 'common', 'Invalid value', 'Valoare invalida', '2019-05-25 22:44:58'),
(2827, 'ro', 'common', 'Keyword', 'Cuvant cheie', '2019-05-25 22:44:58'),
(2828, 'ro', 'common', 'Keywords', 'Cuvinte cheie', '2019-05-25 22:44:58'),
(2829, 'ro', 'common', 'lang', 'Limba', '2019-05-25 22:44:58'),
(2830, 'ro', 'common', 'My Account', 'Contul Meu', '2019-05-25 22:44:58'),
(2831, 'ro', 'common', 'Name', 'Nume', '2019-05-25 22:44:58'),
(2832, 'ro', 'common', 'No', 'Nu', '2019-05-25 22:44:58'),
(2833, 'ro', 'common', 'No Keywords Found', 'Niciun cuvant cheie gasit', '2019-05-25 22:44:58'),
(2834, 'ro', 'common', 'No Records Found', 'Nicio inregistrare gasita', '2019-05-25 22:44:58'),
(2835, 'ro', 'common', 'noactivetools', 'Nicio unealta Seo gasita', '2019-05-25 22:44:58'),
(2836, 'ro', 'common', 'nowebsites', 'Niciun website gasit', '2019-05-25 22:44:58'),
(2837, 'ro', 'common', 'password632', 'Parola trebuie sa aibe intre 6 si 32 de caractere', '2019-05-25 22:44:58'),
(2838, 'ro', 'common', 'passwordnotmatch', 'Parola nu se potriveste', '2019-05-25 22:44:58'),
(2839, 'ro', 'common', 'Period', 'Perioada', '2019-05-25 22:44:58'),
(2840, 'ro', 'common', 'Priority', 'Prioritate', '2019-05-25 22:44:58'),
(2841, 'ro', 'common', 'Profile', 'Profil', '2019-05-25 22:44:58'),
(2842, 'ro', 'common', 'Rank', 'Rank', '2019-05-25 22:44:58'),
(2843, 'ro', 'common', 'Reports', 'Rapoarte', '2019-05-25 22:44:58'),
(2844, 'ro', 'common', 'Results', 'Rezultate', '2019-05-25 22:44:58'),
(2845, 'ro', 'common', 'Search Engine', 'Motor de cautare', '2019-05-25 22:44:58'),
(2846, 'ro', 'common', 'Select', 'Selecteaza', '2019-05-25 22:44:58'),
(2847, 'ro', 'common', 'Seo Plugins', 'Plugin-uri seo', '2019-05-25 22:44:58'),
(2848, 'ro', 'common', 'Seo Tools', 'Unelte Seo', '2019-05-25 22:44:58'),
(2849, 'ro', 'common', 'Sign out', 'Iesire', '2019-05-25 22:44:58'),
(2850, 'ro', 'common', 'Sign Up', 'Inregistrare', '2019-05-25 22:44:58'),
(2851, 'ro', 'common', 'signin', 'Autentificare', '2019-05-25 22:44:58'),
(2852, 'ro', 'common', 'Status', 'Status', '2019-05-25 22:44:58'),
(2853, 'ro', 'common', 'Support', 'Suport', '2019-05-25 22:44:58'),
(2854, 'ro', 'common', 'Total', 'Total', '2019-05-25 22:44:58'),
(2855, 'ro', 'common', 'Url', 'Url', '2019-05-25 22:44:58'),
(2856, 'ro', 'common', 'User', 'Utilizator', '2019-05-25 22:44:58'),
(2857, 'ro', 'common', 'User Panel', 'Panoul utilizatorului', '2019-05-25 22:44:58'),
(2858, 'ro', 'common', 'Website', 'Site web', '2019-05-25 22:44:58'),
(2859, 'ro', 'common', 'Yes', 'Da', '2019-05-25 22:44:58'),
(2860, 'it', 'support', 'support_cont1', '<fieldset>\r\n<legend>Sistema supporto pannello seo</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>Pacchetto 1000 Directory</h1> \r\n <p>\r\n Forniamo un pacchetto di <b>1000 directory gratuite verificate e attive</b>, puoi inserirlo nel tuo pannello seo tramite lo <b>strumento di invio directory</b>.Ti aiuterà ad <b>incrementare i backlink</b> verso il tuo sito web.\r\n Attualmente l\\''elenco di <span id=\\"result_box\\" lang=\\"it\\"><span title=\\"\\"> 1000 directory viene utilizzato per raccogliere fondi per il <strong>futuro sviluppo</strong> del pannello di seo</span></span>.\r\n Per avere la lista delle 1000 directory è sufficiente <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">fare una donazione di </a> $10 o più per migliorare le caratteristiche del pannello seo.\r\n Per qualsiasi informazione sulle 1000 directory non esitare a <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">contattarci</a> o ad aprire un ticket sul <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">forum di supporto</a>. </p>\r\n </li>\r\n \r\n <li>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Visita questo link per effettuare una donazione per il pannello seo</a></p>\r\n <br>\r\n </li>\r\n <li>\r\n <h1>Pacchetti modori di ricerca in locale</h1> \r\n <p>\r\n Aggiungi i <b>domini dei motori di ricerca in locale</b> di google,yahoo,msn(<b>es: www.google.de,www.google.fr ecc\r\n</b>) al pannello seo per la <b>verifica della posizione delle keyword</b>, per tracciare le performance del tuo sito in locale.\r\n Per ottenere il pacchetto dei motori di ricerca in locale(in base alle tue esigenze) per cortesia <a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donae</a> $10 o di più per migliorare le caratteristiche del pannello seo. Prima di inviare una donazione, per cortesia <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contattaci</a> per fornirci l\\''elenco dei domini che vuoi richiedere.<br>\r\n<br> \r\n Puoi anche aggiungere <b>nuovi motori di ricerca (es:baidu.com)</b> al tuo pannello seo per la verifica della posizione delle keyword. Per fare questo puoi <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contattarci</a> o aprire un ticket nel <a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">sistema di supporto</a>. </p> \r\n<p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Visita questo link per contattarci</a></p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Plugin pannello seo</h1> \r\n <p>\r\n Aggiungi <b>plugin seo </b>al tuo pannello seo per <b>estendere le caratteristiche</b> in base alle tue esigenze.\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">I plugin del pannello seo </a>sono realizzati dallo stesso SeoPanel che da terze parti. Puoi anche semplicemente <b>sviluppare</b> i plugin seo per il tuo stesso pannello.Puoi <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">inviare</a> il tuo plugin seo e noi e provvederemo a <b>pubblicarlo </b>nel nostro sito web dopo il nostro processo di <b>verifica</b>. </p>\r\n </li> \r\n <li>\r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Visita questo link per prelevare plugin del pannello seo</a></p>\r\n <br>\r\n </li>\r\n <li>\r\n <h1>Contattaci</h1> \r\n <p>\r\n Contattaci per qualsiasi questione riguardante il <b>pannello seo, plugin e caratteristiche ecc</b> utilizzando il link che si presenta di seguito. </p> \r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Visita questo link per contattarci.</a></p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Ticket di supporto</h1> \r\n <p>\r\n Per avere <b>supporto tecnico </b>dal team del pannello seo per installare gli <b>strumenti del pannello seo, plugin e altre caratteristiche.</b> Es: per configurare la cronologia per la verifica delle posizioni per le keyword. </p>\r\n </li> \r\n <li>\r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Visita questo link per creare un ticket di supporto</a></p>\r\n <br>\r\n </li>\r\n <li>\r\n <h1>Segnala bug</h1> \r\n <p>\r\n Riporta i <b>bug</b> relativi gli <b>strumenti del pannello seo,plugin, caratteristiche ecc</b> utilizzando il seguente link. Per cortesia aiutaci a migliorare tutte le caratteristiche per la prossima versione. </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Visita questo link per segnalare bug</a></p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2010-10-27 06:36:28'),
(2861, 'it', 'support', 'support_cont2', '<fieldset>\r\n<legend>Risorse online pannello seo</legend>\r\n<ul class=\\"infobox\\">\r\n \r\n <li>\r\n <h1>Guida di aiuto del pannello seo</h1> \r\n <p>\r\n Puoi visualizzare la <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">documentazione del pannello seo </a> nella<b> guida di aiuto</b>, che contiene la<b> documentazione</b> per gli strumenti del pannello seo, plugin e relative caratteristiche.<br>\r\n Questo è il miglior posto su internet per <b>ricevere aiuto</b> circa il pannello seo. Speriamo che tu possa \r\n<b>contribuire</b> per la guida del pannello seo se sono errori o dimenticanze.</p>\r\n <p>\r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Visita la guida di aiuto del pannello seo</a></p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Forum Pannello Seo</h1> \r\n <p>\r\n Un posto dove discutere del primo <b>pannello di controllo seo </b>open source al mondo. Questo è il posto migliore dove trovare le <b>risposte</b> alle <b>tue domande</b> circa il pannello seo. \r\n <br>\r\n Puoi anche <b>condividere</b> la tua <b>esperienza</b> nell\\''utilizzo del pannello seo per ottimizzare il tuo sito web. </p> \r\n <p>\r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Visita il forum del pannello seo</a></p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2010-10-27 06:36:28'),
(2862, 'it', 'support', 'support_cont3', '<fieldset>\r\n<legend>Dona al pannello seo</legend>\r\n<ul class=\\"infobox\\"> \r\n <li>\r\n <h1>Dona al Pannello Seo - Il primo pannello di controllo seo Open Source al mondo</h1> \r\n <p>\r\n <b>Dona</b> al pannello seo per supportare il primo pannello di controllo seo open source al mondo.Abbiamo programmato di <b>aggiungere e migliorare</b> molte caratteristiche del pannello seo in futuro. \r\n <br>\r\n Con il vostro <b>supporto</b> possiamo raggiungere i nostri <b>obiettivi</b>. <span id=\\"result_box\\" lang=\\"it\\" xml:lang=\\"it\\"><span title=\\"\\">Se ritieni che il pannello seo è fatto<strong> per voi,</strong> fate una donazione al team del pannello seo.<br />\r\n </span><span title=\\"\\">Noi <strong>pubblicheremo</strong> il vostro nome e informazioni sul sito nella <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">pagina di donazione</a>, una volta ottenuta.</span></span><br>\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Visita questo link per donare al pannello seo</a></p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2010-10-27 06:36:28'),
(2863, 'ro', 'website', 'Edit Website', 'Editare Site Web', '2010-10-27 06:48:10'),
(2864, 'ro', 'website', 'plscrtwebsite', 'Va rugam creati un Site Web inainte sa folositi Unelte Seo si Plugin-uri Seo', '2010-10-27 06:48:10'),
(2865, 'ro', 'website', 'Website already exist', 'Site Web deja existent', '2010-10-27 06:48:10'),
(2866, 'ro', 'website', 'yourwebalreday', 'Site-ul Web al dvs. daca deja ati creat unul.', '2010-10-27 06:48:10'),
(2867, 'ro', 'user', 'Edit User', 'Editare utilizator', '2010-10-27 06:48:37'),
(2868, 'ro', 'user', 'Saved My Profile Details', 'Salvati detaliile profilului meu.', '2010-10-27 06:48:37'),
(2869, 'ro', 'sitemap', 'Change frequency', 'Schimba frecventa', '2010-10-29 05:26:49'),
(2870, 'ro', 'sitemap', 'clickproceedsitemap', 'Apasa pe <b>Continua</b> pentru a creea un fisier sitemap', '2010-10-29 05:26:49'),
(2871, 'ro', 'sitemap', 'Download sitemap file from', 'Descarca fisierul sitemap de la', '2010-10-29 05:26:49'),
(2872, 'ro', 'sitemap', 'Exclude Url', 'Exclude Url', '2010-10-29 05:26:49'),
(2873, 'ro', 'sitemap', 'processtaketime', 'Acest proces va dura ceva timp in functie de numarul link-urilor din site. Va rugam asteptati sa luati fisierele sitemap', '2010-10-29 05:26:49'),
(2874, 'ro', 'sitemap', 'Sitemap Type', 'Tip Sitemap', '2010-10-29 05:26:49'),
(2875, 'ro', 'rank', 'enterurlproceed', 'Introduceti adresele Url <b>Una pe linie</b>. Apasa pe <b>Continua</b> pentru a verifica Google si Alexa Rank', '2010-10-27 06:53:36'),
(2876, 'ro', 'rank', 'Google and Alexa Rank Reports', 'Rapoarte Google si Alexa Rank ', '2010-10-27 06:53:36'),
(2877, 'ro', 'rank', 'Saved rank results of', 'Salveaza rezultatele de rank pentru', '2010-10-27 06:53:36'),
(2878, 'ro', 'proxy', 'Edit Proxy', 'Editeaza Proxy', '2010-10-27 06:54:27'),
(2879, 'ro', 'proxy', 'Proxy Password', 'Parola Proxy', '2010-10-27 06:54:27'),
(2880, 'ro', 'proxy', 'Proxy Username', 'Utilizator Proxy', '2010-10-27 06:54:27'),
(2881, 'ro', 'proxy', 'Proxyalreadyexist', 'Proxy deja existent!', '2010-10-27 06:54:27'),
(2882, 'ro', 'plugin', 'Edit Seo Plugin', 'Editeaza Plugin Seo', '2012-05-19 01:05:13'),
(2883, 'ro', 'plugin', 'Plugin Name', 'Nume PLugin', '2012-05-19 01:05:13'),
(2884, 'ro', 'plugin', 'Seo Plugin Details', 'Detalii Plugin Seo', '2012-05-19 01:05:13'),
(2887, 'ro', 'panel', 'alsocheckfollowlink', 'Deasemenea verificati urmatorul link daca doriti mai multe detalii.', '2012-05-19 01:04:43'),
(2888, 'ro', 'panel', 'Check Directory', 'Verifica Director', '2012-05-19 01:04:43'),
(2889, 'ro', 'panel', 'Cron Command', 'Comanda Cron', '2012-05-19 01:04:43'),
(2890, 'ro', 'panel', 'Directory Manager', 'Manager Directoare', '2012-05-19 01:04:43'),
(2891, 'ro', 'panel', 'Edit My Profile', 'Editeaza Profilul Meu', '2012-05-19 01:04:43'),
(2892, 'ro', 'panel', 'My Profile', 'Profilul Meu', '2012-05-19 01:04:43'),
(2893, 'ro', 'panel', 'New Proxy', 'Proxy Nou', '2012-05-19 01:04:43'),
(2894, 'ro', 'panel', 'New User', 'Utilizator Nou', '2012-05-19 01:04:43'),
(2895, 'ro', 'panel', 'New Website', 'Site Web Nou', '2012-05-19 01:04:43'),
(2896, 'ro', 'panel', 'Proxy Manager', 'Manager Proxy', '2012-05-19 01:04:43'),
(2897, 'ro', 'panel', 'Report Generation Manager', 'Manager generare rapoarte', '2012-05-19 01:04:43'),
(2898, 'ro', 'panel', 'Reports Manager', 'Manager Rapoarte', '2012-05-19 01:04:43'),
(2899, 'ro', 'panel', 'Seo Plugins Manager', 'Manager Plugin Seo', '2012-05-19 01:04:43'),
(2900, 'ro', 'panel', 'Seo Tools Manager', 'Manager Unelte Seo', '2012-05-19 01:04:43'),
(2901, 'ro', 'panel', 'System Settings', 'Setari Sistem', '2012-05-19 01:04:43'),
(2902, 'ro', 'panel', 'User Manager', 'Manager utilizator', '2012-05-19 01:04:43'),
(2903, 'ro', 'panel', 'Website Manager', 'Manager Site Web', '2012-05-19 01:04:43'),
(2904, 'pt', 'common', 'Action', 'Acção ', '2019-05-25 22:43:55'),
(2905, 'pt', 'common', 'Activate', 'Activar ', '2019-05-25 22:43:55'),
(2906, 'pt', 'common', 'Active', 'Activo', '2019-05-25 22:43:55'),
(2907, 'pt', 'common', 'Admin Panel', 'Painel de Administração ', '2019-05-25 22:43:55'),
(2908, 'pt', 'common', 'Alexa Rank', 'Classificação na Alexa', '2019-05-25 22:43:55'),
(2909, 'pt', 'common', 'All', 'Categoria ', '2019-05-25 22:43:55'),
(2910, 'pt', 'common', 'Category', 'Categoria ', '2019-05-25 22:43:55'),
(2911, 'pt', 'common', 'contact', 'Contacto ', '2019-05-25 22:43:55'),
(2912, 'pt', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Todos os direitos reservados ', '2019-05-25 22:43:55'),
(2913, 'pt', 'common', 'Country', 'País ', '2019-05-25 22:43:55'),
(2914, 'pt', 'common', 'Crawl Meta Data', 'Meta dados de pesquisa', '2019-05-25 22:43:55'),
(2915, 'pt', 'common', 'Date', 'Data ', '2019-05-25 22:43:55'),
(2916, 'pt', 'common', 'Delete', 'Excluir ', '2019-05-25 22:43:55'),
(2917, 'pt', 'common', 'Details', 'Detalhes ', '2019-05-25 22:43:55'),
(2918, 'pt', 'common', 'Directory', 'Directório', '2019-05-25 22:43:55'),
(2919, 'pt', 'common', 'Donate', 'Doar ', '2019-05-25 22:43:55'),
(2920, 'pt', 'common', 'Edit', 'Editar ', '2019-05-25 22:43:55'),
(2921, 'pt', 'common', 'Entry cannot be blank', 'Entrada não pode estar em branco', '2019-05-25 22:43:55'),
(2922, 'pt', 'common', 'entrynotvalid', 'A entrada digitada não parece ser válido ', '2019-05-25 22:43:55'),
(2923, 'pt', 'common', 'failed', 'falhado', '2019-05-25 22:43:55'),
(2924, 'pt', 'common', 'forum', 'Fórum ', '2019-05-25 22:43:55'),
(2925, 'pt', 'common', 'Found', 'Encontrados ', '2019-05-25 22:43:55'),
(2926, 'pt', 'common', 'Google Pagerank', 'Google Pagerank ', '2019-05-25 22:43:55'),
(2927, 'pt', 'common', 'help', 'Ajuda ', '2019-05-25 22:43:55'),
(2928, 'pt', 'common', 'hidenews', 'Ocultar Noticias do Painel Seo ', '2019-05-25 22:43:55'),
(2929, 'pt', 'common', 'Id', 'ID ', '2019-05-25 22:43:55'),
(2930, 'pt', 'common', 'Inactivate', 'Desactivar', '2019-05-25 22:43:55'),
(2931, 'pt', 'common', 'Inactive', 'Inactivo ', '2019-05-25 22:43:55'),
(2932, 'pt', 'common', 'Invalid characters', 'caracteres inválidos ', '2019-05-25 22:43:55'),
(2933, 'pt', 'common', 'Invalid code entered', 'Código inválido entrou ', '2019-05-25 22:43:55'),
(2934, 'pt', 'common', 'Invalid email address entered', 'Endereço de email inválido entrou ', '2019-05-25 22:43:55'),
(2935, 'pt', 'common', 'Invalid value', 'Valor inválido ', '2019-05-25 22:43:55'),
(2936, 'pt', 'common', 'Keyword', 'Palavra ', '2019-05-25 22:43:55'),
(2937, 'pt', 'common', 'Keywords', 'Palavras-chave ', '2019-05-25 22:43:55'),
(2938, 'pt', 'common', 'lang', 'Idioma ', '2019-05-25 22:43:55'),
(2939, 'pt', 'common', 'My Account', 'Minha Conta ', '2019-05-25 22:43:55'),
(2940, 'pt', 'common', 'Name', 'Nome ', '2019-05-25 22:43:55'),
(2941, 'pt', 'common', 'No', 'Não ', '2019-05-25 22:43:55'),
(2942, 'pt', 'common', 'No Keywords Found', 'Nenhuma palavra-chave encontrados ', '2019-05-25 22:43:55'),
(2943, 'pt', 'common', 'No Records Found', 'Nenhum Registo Encontrado ', '2019-05-25 22:43:55'),
(2944, 'pt', 'common', 'noactivetools', 'Não Seo Tools activo encontrado! ', '2019-05-25 22:43:55'),
(2945, 'pt', 'common', 'nowebsites', 'Nenhum dos sites encontrados ', '2019-05-25 22:43:55'),
(2946, 'pt', 'common', 'password632', 'A sequência de senha deve ter um comprimento entre 6 e 32 ', '2019-05-25 22:43:55'),
(2947, 'pt', 'common', 'passwordnotmatch', 'As senhas não coincidem ', '2019-05-25 22:43:55'),
(2948, 'pt', 'common', 'Period', 'Período ', '2019-05-25 22:43:55'),
(2949, 'pt', 'common', 'Priority', 'Prioridade ', '2019-05-25 22:43:55'),
(2950, 'pt', 'common', 'Profile', 'Perfil ', '2019-05-25 22:43:55'),
(2951, 'pt', 'common', 'Rank', 'Classificar ', '2019-05-25 22:43:55'),
(2952, 'pt', 'common', 'Reports', 'Relatórios ', '2019-05-25 22:43:55'),
(2953, 'pt', 'common', 'Results', 'Resultados', '2019-05-25 22:43:55'),
(2954, 'pt', 'common', 'Search Engine', 'Motor de pesquisa', '2019-05-25 22:43:55'),
(2955, 'pt', 'common', 'Select', 'Seleccione ', '2019-05-25 22:43:55'),
(2956, 'pt', 'common', 'Seo Plugins', 'Seo Plugins ', '2019-05-25 22:43:55'),
(2957, 'pt', 'common', 'Seo Tools', 'Seo Tools ', '2019-05-25 22:43:55'),
(2958, 'pt', 'common', 'Sign out', 'Sair', '2019-05-25 22:43:55'),
(2959, 'pt', 'common', 'Sign Up', 'Inscreva-se', '2019-05-25 22:43:55'),
(2960, 'pt', 'common', 'signin', 'Entrar', '2019-05-25 22:43:55'),
(2961, 'pt', 'common', 'Status', 'Status ', '2019-05-25 22:43:55'),
(2962, 'pt', 'common', 'Support', 'Suporte ', '2019-05-25 22:43:55'),
(2963, 'pt', 'common', 'Total', 'Total ', '2019-05-25 22:43:55'),
(2964, 'pt', 'common', 'Url', 'Url ', '2019-05-25 22:43:55'),
(2965, 'pt', 'common', 'User', 'Utilizador', '2019-05-25 22:43:55'),
(2966, 'pt', 'common', 'User Panel', 'Painel de Utilizador', '2019-05-25 22:43:55'),
(2967, 'pt', 'common', 'Website', 'Web-site ', '2019-05-25 22:43:55'),
(2968, 'pt', 'common', 'Yes', 'Sim ', '2019-05-25 22:43:55'),
(2969, 'pt', 'website', 'Edit Website', 'Editar site ', '2016-01-18 00:19:53'),
(2970, 'pt', 'website', 'plscrtwebsite', 'Crie um site antes de começar a usar ferramentas e plugins seo. ', '2016-01-18 00:19:53'),
(2971, 'pt', 'website', 'Website already exist', 'Web-site já existe ', '2016-01-18 00:19:53'),
(2972, 'pt', 'website', 'yourwebalreday', 'seu site se você já tiver criado um. ', '2016-01-18 00:19:53'),
(2973, 'pt', 'user', 'Edit User', 'Editar Utilizador', '2016-01-18 00:20:08'),
(2974, 'pt', 'user', 'Saved My Profile Details', 'Salvar os meus detalhes do perfil ', '2016-01-18 00:20:08'),
(2975, 'pt', 'sitemap', 'Change frequency', 'Mudar a frequência ', '2010-10-27 08:57:13'),
(2976, 'pt', 'sitemap', 'clickproceedsitemap', 'Clique em <b>Continuar</b> para criar o arquivo sitemap ', '2010-10-27 08:57:13'),
(2977, 'pt', 'sitemap', 'Download sitemap file from', 'Baixar o arquivo de sitemap ', '2010-10-27 08:57:13'),
(2978, 'pt', 'sitemap', 'Exclude Url', 'Excluir Url ', '2010-10-27 08:57:13'),
(2979, 'pt', 'sitemap', 'processtaketime', 'Este processo levará tempo, de acordo com o número de links em seu site. Por favor, aguarde para obter sitemap\r\narquivos ', '2010-10-27 08:57:13'),
(2980, 'pt', 'sitemap', 'Sitemap Type', 'Tipo Sitemap ', '2010-10-27 08:57:13'),
(2981, 'pt', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Doar $100<b/> e se tornar um <b>patrocinador<b/> de Seo Panel. ', '2018-01-26 00:23:30'),
(2982, 'pt', 'settings', 'seopanel_description', 'Um painel de controle livre completo para a gestão do motor de pesquisa e optimização de seus websites. Este Seo contem muitas ferramentas de SEO para aumentar e controlar a sua performance superior do site. É um software open source e você também pode desenvolver seus próprios plugins seo para o painel seo.', '2018-01-26 00:23:30'),
(2983, 'pt', 'settings', 'seopanel_title', 'Seo Painel: É o primeiro painel de controle seo open Source do mundo para geriro seo vários sites ', '2018-01-26 00:23:30');
INSERT INTO `texts` VALUES
(2984, 'pt', 'settings', 'SP_CRAWL_DELAY', 'Atraso entre cada spider crawl (segundos) ', '2018-01-26 00:23:30'),
(2985, 'pt', 'settings', 'SP_DEFAULTLANG', 'Idioma padrão ', '2018-01-26 00:23:30'),
(2986, 'pt', 'settings', 'SP_DESCRIPTION', 'Seo Descrição Painel ', '2018-01-26 00:23:30'),
(2987, 'pt', 'settings', 'SP_ENABLE_PROXY', 'Activar Proxy ', '2018-01-26 00:23:30'),
(2988, 'pt', 'settings', 'SP_HOTLINKING', 'Imagem de hotlink com protecção activada', '2018-01-26 00:23:30'),
(2989, 'pt', 'settings', 'SP_KEYWORDS', 'Palavras-chave Painel Seo ', '2018-01-26 00:23:30'),
(2990, 'pt', 'settings', 'SP_PAGINGNO', 'Número de entradas por página ', '2018-01-26 00:23:30'),
(2991, 'pt', 'settings', 'SP_TITLE', 'Seo título do painel ', '2018-01-26 00:23:30'),
(2992, 'pt', 'settings', 'SP_USER_GEN_REPORT', 'Permitir ao usuário gerar relatórios ', '2018-01-26 00:23:30'),
(2993, 'pt', 'settings', 'SP_USER_REGISTRATION', 'Interface de registo de utilizador', '2018-01-26 00:23:30'),
(2994, 'pt', 'settings', 'syssettingssaved', 'As definições do sistema salvas com sucesso! ', '2018-01-26 00:23:30'),
(2995, 'pt', 'seotools', 'Automatic Submission', 'Envio automático ', '2018-01-26 00:25:11'),
(2996, 'pt', 'seotools', 'backlink-checker', 'Backlinks Checker ', '2018-01-26 00:25:11'),
(2997, 'pt', 'seotools', 'Backlinks Reports', 'Backlinks Relatórios ', '2018-01-26 00:25:11'),
(2998, 'pt', 'seotools', 'Check Submission Status', 'Verificar status da submissão ', '2018-01-26 00:25:11'),
(2999, 'pt', 'seotools', 'clickgeneratereports', 'Clique em <b>proseguir<b/> para gerar relatórios ', '2018-01-26 00:25:11'),
(3000, 'pt', 'seotools', 'Detailed Position Reports', 'Relatórios detalhados da posição ', '2018-01-26 00:25:11'),
(3001, 'pt', 'seotools', 'directory-submission', 'A submissão do directório ', '2018-01-26 00:25:11'),
(3002, 'pt', 'seotools', 'Featured Submission', 'Submissão destacada', '2018-01-26 00:25:11'),
(3003, 'pt', 'seotools', 'Generate Backlinks Reports', 'Gerar relatórios Backlinks ', '2018-01-26 00:25:11'),
(3004, 'pt', 'seotools', 'Generate Keyword Reports', 'Palavra Gerar relatórios ', '2018-01-26 00:25:11'),
(3005, 'pt', 'seotools', 'Generate Rank Reports', 'Gerar relatórios da Classificação', '2018-01-26 00:25:11'),
(3006, 'pt', 'seotools', 'Generate Saturation Reports', 'Gerar relatórios de Saturação ', '2018-01-26 00:25:11'),
(3007, 'pt', 'seotools', 'Google Sitemap Generator', 'Google Sitemap Generator ', '2018-01-26 00:25:11'),
(3008, 'pt', 'seotools', 'Graphical Position Reports', 'Posição Relatórios Gráficos ', '2018-01-26 00:25:11'),
(3009, 'pt', 'seotools', 'Keyword Position Summary', 'Palavra Resumo posição ', '2018-01-26 00:25:11'),
(3010, 'pt', 'seotools', 'keyword-position-checker', 'Verificador de palavras-chave posição ', '2018-01-26 00:25:11'),
(3011, 'pt', 'seotools', 'Keywords Manager', 'Palavras-chave Manager ', '2018-01-26 00:25:11'),
(3012, 'pt', 'seotools', 'Quick Backlinks Checker', 'Verificação rápida do Backlinks ', '2018-01-26 00:25:11'),
(3013, 'pt', 'seotools', 'Quick Position Checker', 'Verificação rápida da posição ', '2018-01-26 00:25:11'),
(3014, 'pt', 'seotools', 'Quick Rank Checker', 'Verificação rápida da Classificação', '2018-01-26 00:25:11'),
(3015, 'pt', 'seotools', 'Quick Saturation Checker', 'Verificação rápida da Saturação ', '2018-01-26 00:25:11'),
(3016, 'pt', 'seotools', 'Rank Reports', 'Relatórios da Classificação ', '2018-01-26 00:25:11'),
(3017, 'pt', 'seotools', 'rank-checker', 'Verificação da Classificação', '2018-01-26 00:25:11'),
(3018, 'pt', 'seotools', 'Saturation Reports', 'Saturação Relatórios ', '2018-01-26 00:25:11'),
(3019, 'pt', 'seotools', 'saturation-checker', 'Saturação do Motor de busca', '2018-01-26 00:25:11'),
(3020, 'pt', 'seotools', 'sitemap-generator', 'Gerar Sitemap ', '2018-01-26 00:25:11'),
(3021, 'pt', 'seotools', 'Skipped Directories', 'Directórios não introduzidos ', '2018-01-26 00:25:11'),
(3022, 'pt', 'seotools', 'Submission Reports', 'Apresentação Relatórios ', '2018-01-26 00:25:11'),
(3023, 'pt', 'seotools', 'User Access', 'Acesso do Usuário ', '2018-01-26 00:25:11'),
(3024, 'pt', 'rank', 'enterurlproceed', 'Digite um URL <b>por linha<b/>. Clique em <b>Continuar<b/> para verificar a classificação no Google e Alexa.', '2010-10-27 09:33:40'),
(3025, 'pt', 'rank', 'Google and Alexa Rank Reports', 'Relatórios de classificação em Alexa e Google', '2010-10-27 09:33:40'),
(3026, 'pt', 'rank', 'Saved rank results of', 'resultados de classificação dos salvos ', '2010-10-27 09:33:40'),
(3027, 'pt', 'saturation', 'clickproceedsaturation', 'Digite um URL <b>por linha<b/>.Clique em <b>Continuar<b/> para verificar os Relatórios da Saturação do Motor de Busca', '2010-10-27 09:39:07'),
(3028, 'pt', 'saturation', 'GenerateSaturationReports', 'Gerar Relatórios da Saturação do Motor de Busca ', '2010-10-27 09:39:07'),
(3029, 'pt', 'saturation', 'Quick Search Engine Saturation Checker', 'Pesquisa Rápida Saturação do Motor de Busca', '2010-10-27 09:39:07'),
(3030, 'pt', 'saturation', 'Saved Search Engine Saturation results of', 'guardar os resultados da Saturação do Motor de Busca', '2010-10-27 09:39:07'),
(3031, 'pt', 'saturation', 'Search Engine Saturation Reports', 'Relatórios Saturação do Motor de Busca', '2010-10-27 09:39:07'),
(3032, 'pt', 'proxy', 'Edit Proxy', 'Editar Proxy ', '2018-01-26 00:17:58'),
(3033, 'pt', 'proxy', 'Proxy Password', 'password do Proxy ', '2018-01-26 00:17:58'),
(3034, 'pt', 'proxy', 'Proxy Username', 'Nome de utilizador Proxy ', '2018-01-26 00:17:58'),
(3035, 'pt', 'proxy', 'Proxyalreadyexist', 'A Proxy já existe! ', '2018-01-26 00:17:58'),
(3036, 'pt', 'plugin', 'Edit Seo Plugin', 'Editar Seo Plugin ', '2012-06-01 23:11:02'),
(3037, 'pt', 'plugin', 'Plugin Name', 'Nome do Plugin ', '2012-06-01 23:11:02'),
(3038, 'pt', 'plugin', 'Seo Plugin Details', 'Detalhes do Plugin Seo ', '2012-06-01 23:11:02'),
(3039, 'pt', 'directory', 'Add back to directory list', 'Adicionar de volta à lista de directórios ', '2012-11-11 01:59:13'),
(3040, 'pt', 'directory', 'Approved', 'Aprovado ', '2012-11-11 01:59:13'),
(3041, 'pt', 'directory', 'Captcha', 'Captcha ', '2012-11-11 01:59:13'),
(3042, 'pt', 'directory', 'categorynote', 'Categorias, separe-os com vírgula de acordo com a prioridade. Comece com a categoria com mais prioridade. ', '2012-11-11 01:59:13'),
(3043, 'pt', 'directory', 'Check Directory Status', 'Verificar status Directório ', '2012-11-11 01:59:13'),
(3044, 'pt', 'directory', 'Check Directory Submission Status', 'Verifique o Estado da submissão do directório ', '2012-11-11 01:59:13'),
(3045, 'pt', 'directory', 'clicktoproceeddirsts', 'Clique em <b>Continuar<b/> para verificar o status do Directório. ', '2012-11-11 01:59:13'),
(3046, 'pt', 'directory', 'Confirmation', 'Confirmação ', '2012-11-11 01:59:13'),
(3047, 'pt', 'directory', 'desnote', 'Alguns directórios requerem mínima de 150 caracteres para o campo de descrição. ', '2012-11-11 01:59:13'),
(3048, 'pt', 'directory', 'Directories with out captcha', 'Directórios sem captcha ', '2012-11-11 01:59:13'),
(3049, 'pt', 'directory', 'Directory Submission Reports', 'Relatórios de inserção no Directório ', '2012-11-11 01:59:13'),
(3050, 'pt', 'directory', 'Enter the code shown', 'Digite o código mostrado ', '2012-11-11 01:59:13'),
(3051, 'pt', 'directory', 'nocatnote', 'A categoria de inserção não foi encontrado na página de inserção. Por favor, clique em <b>Actualizar<b/> ou <b>passar<b/> ', '2012-11-11 01:59:13'),
(3052, 'pt', 'directory', 'nodirnote', 'Nenhum directório <b>activo<b/> encontrado ', '2012-11-11 01:59:13'),
(3053, 'pt', 'directory', 'nosuccessnote', 'Não recebi mensagem de sucesso, por favor, verifique seu e-mail para encontrar a mensagem de confirmação ', '2012-11-11 01:59:13'),
(3054, 'pt', 'directory', 'optionalnote', 'Opcional títulos e descrições apresentar título aleatório e descrição de directórios para melhor os resultados. ', '2012-11-11 01:59:13'),
(3055, 'pt', 'directory', 'Owner Email', 'E-mail do proprietário ', '2012-11-11 01:59:13'),
(3056, 'pt', 'directory', 'Owner Name', 'Nome do proprietário ', '2012-11-11 01:59:13'),
(3057, 'pt', 'directory', 'Pending', 'Pendente', '2012-11-11 01:59:13'),
(3058, 'pt', 'directory', 'Please select a website to proceed', 'Por favor, seleccione um site para continuar ', '2012-11-11 01:59:13'),
(3059, 'pt', 'directory', 'selectwebsiteproceed', 'Seleccione um <b>web-site</b> para <b> Continuar </b> submissão do directório. <br> Directórios Verifique <b> com a captcha </b> para enviar aos directórios com captcha fora ', '2012-11-11 01:59:13'),
(3060, 'pt', 'directory', 'selectwebsiteschecksub', 'Seleccione um <b>web-site<b/> para <b>Continuar<b/> a verificar o directório de inserção. ', '2012-11-11 01:59:13'),
(3061, 'pt', 'directory', 'Semi Automatic Directory Submission Tool', 'Ferramenta semi-automática da submissão do Directório ', '2012-11-11 01:59:13'),
(3062, 'pt', 'directory', 'spamemailnote', 'Alguns directórios podem enviar spam, nós não recomendamos usar seu endereço de e-mail principal. ', '2012-11-11 01:59:13'),
(3063, 'pt', 'directory', 'Submission Details', 'Detalhes da apresentação ', '2012-11-11 01:59:13'),
(3064, 'pt', 'directory', 'Submit Description', 'Submeter Descrição ', '2012-11-11 01:59:13'),
(3065, 'pt', 'directory', 'Submit Keywords', 'Submeter Envie-chave ', '2012-11-11 01:59:13'),
(3066, 'pt', 'directory', 'Submit Title', 'Envie título ', '2012-11-11 01:59:13'),
(3067, 'pt', 'directory', 'Website Category', 'Website Categoria ', '2012-11-11 01:59:13'),
(3068, 'pt', 'directory', 'Website Url', 'Website URL ', '2012-11-11 01:59:13'),
(3069, 'pt', 'keyword', 'Crawling keyword', 'Procura da palavra-chave', '2016-01-18 00:11:49'),
(3070, 'pt', 'keyword', 'Detailed Keyword Position Reports', 'Relatórios detalhados da posição da palavra-chave', '2016-01-18 00:11:49'),
(3071, 'pt', 'keyword', 'Edit Keyword', 'Editar palavras-chave ', '2016-01-18 00:11:49'),
(3072, 'pt', 'keyword', 'Graphical Keyword Position Reports', 'Relatórios Gráficos da posição da palavra-chave ', '2016-01-18 00:11:49'),
(3073, 'pt', 'keyword', 'Import Keywords', 'Importar palavra-chave ', '2016-01-18 00:11:49'),
(3074, 'pt', 'keyword', 'Keyword already exist', 'Palavra-chave já existe', '2016-01-18 00:11:49'),
(3075, 'pt', 'keyword', 'Keyword Position Report', 'Relatório da posição da palavra-chave', '2016-01-18 00:11:49'),
(3076, 'pt', 'keyword', 'New Keyword', 'Nova palavra-chave ', '2016-01-18 00:11:49'),
(3077, 'pt', 'keyword', 'not assigned to required search engines', 'não atribuídos aos motores de busca necessária ', '2016-01-18 00:11:49'),
(3078, 'pt', 'keyword', 'pleaseselecttool', 'Por favor, seleccione pelo menos uma da ferramentas Seo ', '2016-01-18 00:11:49'),
(3079, 'pt', 'keyword', 'Quick Keyword Position Checker', 'Busca rápida da posição da palavra-chave ', '2016-01-18 00:11:49'),
(3080, 'pt', 'keyword', 'results from ', 'resultados de', '2016-01-18 00:11:49'),
(3081, 'pt', 'keyword', 'Show All results', 'Mostrar todos os resultados ', '2016-01-18 00:11:49'),
(3082, 'pt', 'keyword', 'Successfully crawled keyword', 'Rastreados com sucesso palavra-chave ', '2016-01-18 00:11:49'),
(3083, 'pt', 'keyword', 'to create new keywords', 'para criar novas palavras-chave ', '2016-01-18 00:11:49'),
(3084, 'pt', 'label', 'already exist', 'já existem ', '2018-01-26 00:11:22'),
(3085, 'pt', 'label', 'Authentication', 'Autenticação ', '2018-01-26 00:11:22'),
(3086, 'pt', 'label', 'Author', 'Autor ', '2018-01-26 00:11:22'),
(3087, 'pt', 'label', 'Click Here', 'Clique Aqui ', '2018-01-26 00:11:22'),
(3088, 'pt', 'label', 'Cron', 'Cron ', '2018-01-26 00:11:22'),
(3089, 'pt', 'label', 'Description', 'Descrição ', '2018-01-26 00:11:22'),
(3090, 'pt', 'label', 'Developers', 'Criadores', '2018-01-26 00:11:22'),
(3091, 'pt', 'label', 'Download', 'Download ', '2018-01-26 00:11:22'),
(3092, 'pt', 'label', 'Installation', 'Instalação ', '2018-01-26 00:11:22'),
(3093, 'pt', 'label', 'Keywords', 'Palavras-chave ', '2018-01-26 00:11:22'),
(3094, 'pt', 'label', 'noactiveplugins', 'Nenhum plugins SEO activos encontrados! ', '2018-01-26 00:11:22'),
(3095, 'pt', 'label', 'Plugin', 'Plugin ', '2018-01-26 00:11:22'),
(3096, 'pt', 'label', 'Port', 'Porto ', '2018-01-26 00:11:22'),
(3097, 'pt', 'label', 'Proxy', 'Proxy ', '2018-01-26 00:11:22'),
(3098, 'pt', 'label', 'Re-install', 'Re-instalar ', '2018-01-26 00:11:22'),
(3099, 'pt', 'label', 'Sponsors', 'Patrocinadores ', '2018-01-26 00:11:22'),
(3100, 'pt', 'label', 'Title', 'Título ', '2018-01-26 00:11:22'),
(3101, 'pt', 'label', 'translation by', 'Tradução por ', '2018-01-26 00:11:22'),
(3102, 'pt', 'label', 'Translators', 'Tradutores ', '2018-01-26 00:11:22'),
(3103, 'pt', 'label', 'Upgrade', 'Upgrade ', '2018-01-26 00:11:22'),
(3104, 'pt', 'label', 'Version', 'Versão ', '2018-01-26 00:11:22'),
(3105, 'pt', 'label', 'wantproceed', 'Você realmente deseja continuar? ', '2018-01-26 00:11:22'),
(3106, 'pt', 'login', 'Confirm Password', 'Confirme a senha ', '2016-01-18 00:13:26'),
(3107, 'pt', 'login', 'Create my account', 'Criar a minha conta ', '2016-01-18 00:13:26'),
(3108, 'pt', 'login', 'Create New Account', 'Criar uma nova conta ', '2016-01-18 00:13:26'),
(3109, 'pt', 'login', 'Email', 'E-mail ', '2016-01-18 00:13:26'),
(3110, 'pt', 'login', 'emailexist', 'E-mail já existe! ', '2016-01-18 00:13:26'),
(3111, 'pt', 'login', 'Enter the code as it is shown', 'Digite o código como é mostrado ', '2016-01-18 00:13:26'),
(3112, 'pt', 'login', 'First Name', 'Nome ', '2016-01-18 00:13:26'),
(3113, 'pt', 'login', 'Last Name', 'Sobrenome ', '2016-01-18 00:13:26'),
(3114, 'pt', 'login', 'Login', 'Login ', '2016-01-18 00:13:26'),
(3115, 'pt', 'login', 'Login incorrect', 'Login incorrecto ', '2016-01-18 00:13:26'),
(3116, 'pt', 'login', 'newaccountsuccess', 'Nova conta criada com sucesso! ', '2016-01-18 00:13:26'),
(3117, 'pt', 'login', 'Password', 'Senha ', '2016-01-18 00:13:26'),
(3118, 'pt', 'login', 'Password incorrect', 'Senha incorrecta ', '2016-01-18 00:13:26'),
(3119, 'pt', 'login', 'Register', 'Registe-se ', '2016-01-18 00:13:26'),
(3120, 'pt', 'login', 'Sign in to your account', 'Inscreva-se na sua conta ', '2016-01-18 00:13:26'),
(3121, 'pt', 'login', 'User inactive', 'Utilizador inactivo ', '2016-01-18 00:13:26'),
(3122, 'pt', 'login', 'Username', 'Nome de Utilizador', '2016-01-18 00:13:26'),
(3123, 'pt', 'login', 'usernameexist', 'Nome do Utilizador já existe! ', '2016-01-18 00:13:26'),
(3124, 'pt', 'panel', 'About Us', 'Quem Somos ', '2018-01-26 00:18:33'),
(3125, 'pt', 'panel', 'Add following command to your cron tab', 'Adicionar seguinte comando para o seu cron tab ', '2018-01-26 00:18:33'),
(3126, 'pt', 'panel', 'alsocheckfollowlink', 'também seleccione o link a seguir se precisar de mais detalhes. ', '2018-01-26 00:18:33'),
(3127, 'pt', 'panel', 'Check Directory', 'Lista de Verificação ', '2018-01-26 00:18:33'),
(3128, 'pt', 'panel', 'Cron Command', 'Comando Cron ', '2018-01-26 00:18:33'),
(3129, 'pt', 'panel', 'Directory Manager', 'Administrador de directório', '2018-01-26 00:18:33'),
(3130, 'pt', 'panel', 'Edit My Profile', 'Editar meu perfil ', '2018-01-26 00:18:33'),
(3131, 'pt', 'panel', 'My Profile', 'Meu Perfil ', '2018-01-26 00:18:33'),
(3132, 'pt', 'panel', 'New Proxy', 'Proxy novo', '2018-01-26 00:18:33'),
(3133, 'pt', 'panel', 'New User', 'Novo Utilizador', '2018-01-26 00:18:33'),
(3134, 'pt', 'panel', 'New Website', 'Novo Website ', '2018-01-26 00:18:33'),
(3135, 'pt', 'panel', 'Proxy Manager', 'Administrador de proxy', '2018-01-26 00:18:33'),
(3136, 'pt', 'panel', 'Report Generation Manager', 'Administrador de Relatórios Geração ', '2018-01-26 00:18:33'),
(3137, 'pt', 'panel', 'Reports Manager', 'administrador de Relatórios ', '2018-01-26 00:18:33'),
(3138, 'pt', 'panel', 'Seo Plugins Manager', 'administrador de Seo Plugins ', '2018-01-26 00:18:33'),
(3139, 'pt', 'panel', 'Seo Tools Manager', 'administrador de ferramentas seo', '2018-01-26 00:18:33'),
(3140, 'pt', 'panel', 'System Settings', 'Configurações do Sistema ', '2018-01-26 00:18:33'),
(3141, 'pt', 'panel', 'User Manager', 'administrador de utilizadores', '2018-01-26 00:18:33'),
(3142, 'pt', 'panel', 'Website Manager', 'administrador de website', '2018-01-26 00:18:33'),
(3143, 'pt', 'home', 'Account Summary', 'Resumo da Conta ', '2011-07-10 13:41:24'),
(3144, 'pt', 'home', 'Backlinks', 'Backlinks ', '2011-07-10 13:41:24'),
(3145, 'pt', 'home', 'Directory Submission', 'A Submissão do Directório ', '2011-07-10 13:41:24'),
(39604, 'ru', 'siteauditor', 'Robots.txt Status', 'Статус Robots.txt', '2026-01-19 23:10:34'),
(39605, 'tr', 'siteauditor', 'Robots.txt Status', 'Robots.txt durumu', '2026-01-19 23:10:34'),
(39606, 'zh', 'siteauditor', 'Robots.txt Status', 'Robots.txt状态', '2026-01-19 23:10:34'),
(39607, 'cn', 'siteauditor', 'Robots.txt Status', 'Robots.txt状态', '2026-01-19 23:10:34'),
(39608, 'en', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt Allowed', '2026-01-19 23:10:34'),
(39609, 'ar', 'siteauditor', 'Robots.txt Allowed', 'مسموح في Robots.txt', '2026-01-19 23:10:34'),
(39610, 'bg', 'siteauditor', 'Robots.txt Allowed', 'Разрешено в Robots.txt', '2026-01-19 23:10:34'),
(39611, 'de', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt erlaubt', '2026-01-19 23:10:34'),
(39612, 'es', 'siteauditor', 'Robots.txt Allowed', 'Permitido por Robots.txt', '2026-01-19 23:10:34'),
(39613, 'fr', 'siteauditor', 'Robots.txt Allowed', 'Autorisé par Robots.txt', '2026-01-19 23:10:34'),
(39614, 'it', 'siteauditor', 'Robots.txt Allowed', 'Consentito da Robots.txt', '2026-01-19 23:10:34'),
(39615, 'nl', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt toegestaan', '2026-01-19 23:10:34'),
(39616, 'pl', 'siteauditor', 'Robots.txt Allowed', 'Dozwolone przez Robots.txt', '2026-01-19 23:10:34'),
(39617, 'pt', 'siteauditor', 'Robots.txt Allowed', 'Permitido pelo Robots.txt', '2026-01-19 23:10:34'),
(39618, 'pt-br', 'siteauditor', 'Robots.txt Allowed', 'Permitido pelo Robots.txt', '2026-01-19 23:10:34'),
(39619, 'ru', 'siteauditor', 'Robots.txt Allowed', 'Разрешено в Robots.txt', '2026-01-19 23:10:34'),
(39620, 'tr', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt izin verdi', '2026-01-19 23:10:34'),
(39621, 'zh', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt允许', '2026-01-19 23:10:34'),
(39622, 'cn', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt允许', '2026-01-19 23:10:34'),
(39623, 'en', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'The page is allowed by robots.txt and can be crawled by search engines', '2026-01-19 23:10:34'),
(39624, 'ar', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'الصفحة مسموح بها في robots.txt ويمكن لمحركات البحث الزحف إليها', '2026-01-19 23:10:34'),
(39625, 'bg', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Страницата е разрешена от robots.txt и може да бъде сканирана от търсачки', '2026-01-19 23:10:34'),
(39626, 'de', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Die Seite ist von robots.txt erlaubt und kann von Suchmaschinen gecrawlt werden', '2026-01-19 23:10:34'),
(39627, 'es', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'La página está permitida por robots.txt y puede ser rastreada por motores de búsqueda', '2026-01-19 23:10:34'),
(39628, 'fr', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'La page est autorisée par robots.txt et peut être crawlée par les moteurs de recherche', '2026-01-19 23:10:34'),
(39629, 'it', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'La pagina è consentita da robots.txt e può essere scansionata dai motori di ricerca', '2026-01-19 23:10:34'),
(39630, 'nl', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'De pagina is toegestaan door robots.txt en kan worden gecrawld door zoekmachines', '2026-01-19 23:10:34'),
(39631, 'pl', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Strona jest dozwolona przez robots.txt i może być indeksowana przez wyszukiwarki', '2026-01-19 23:10:34'),
(38939, 'hr', 'review', 'Top Review Links', 'Najbolji linkovi recenzija', '2026-01-19 22:58:50'),
(38940, 'hu', 'review', 'Top Review Links', 'Legjobb értékelési linkek', '2026-01-19 22:58:50'),
(38941, 'hy', 'review', 'Top Review Links', 'Լավագույն ակնարկների հղումներ', '2026-01-19 22:58:50'),
(38942, 'id', 'review', 'Top Review Links', 'Tautan Ulasan Teratas', '2026-01-19 22:58:50'),
(38943, 'it', 'review', 'Top Review Links', 'Migliori Link Recensioni', '2026-01-19 22:58:50'),
(38944, 'ja', 'review', 'Top Review Links', 'トップレビューリンク', '2026-01-19 22:58:50'),
(38945, 'ko', 'review', 'Top Review Links', '상위 리뷰 링크', '2026-01-19 22:58:50'),
(38946, 'lt', 'review', 'Top Review Links', 'Geriausios atsiliepimų nuorodos', '2026-01-19 22:58:50'),
(38947, 'mk', 'review', 'Top Review Links', 'Топ линкови за рецензии', '2026-01-19 22:58:50'),
(38948, 'nl', 'review', 'Top Review Links', 'Top beoordelingslinks', '2026-01-19 22:58:50'),
(38949, 'no', 'review', 'Top Review Links', 'Topp anmeldelseslenker', '2026-01-19 22:58:50'),
(3149, 'pt', 'home', 'Pages Indexed', 'Páginas cadastradas ', '2011-07-10 13:41:24'),
(3150, 'pt', 'home', 'Ranks', 'Posições ', '2011-07-10 13:41:24'),
(3151, 'pt', 'home', 'SiteNameUrl', 'Nome do URL do site / ', '2011-07-10 13:41:24'),
(3152, 'pt', 'home', 'Website Statistics', 'Estatísticas do site ', '2011-07-10 13:41:24'),
(3153, 'ro', 'directory', 'Add back to directory list', 'Adauga la sfarsitul listei de directoare', '2012-05-19 00:52:34'),
(3154, 'ro', 'directory', 'Approved', 'Aprobat', '2012-05-19 00:52:34'),
(3155, 'ro', 'directory', 'Captcha', 'Captcha', '2012-05-19 00:52:34'),
(3156, 'ro', 'directory', 'categorynote', 'Categoriile, separatile prin virgula in functie de prioritate. Incepeti cu categoria de top prioritara.', '2012-05-19 00:52:34'),
(3157, 'ro', 'directory', 'Check Directory Status', 'Verificati Statusul Directorului', '2012-05-19 00:52:34'),
(3158, 'ro', 'directory', 'Check Directory Submission Status', 'Verificati Statusul Directorului Inscris', '2012-05-19 00:52:34'),
(3159, 'ro', 'directory', 'clicktoproceeddirsts', 'Apasa pe <b>Continua</b> pentru a verifica statusul directorului.', '2012-05-19 00:52:34'),
(3160, 'ro', 'directory', 'Confirmation', 'Confirmare', '2012-05-19 00:52:34'),
(3161, 'ro', 'directory', 'desnote', 'Unele directoare au nevoie de minim 150 caractere pentru campul descriere.', '2012-05-19 00:52:34'),
(3162, 'ro', 'directory', 'Directories with out captcha', 'Directoare fara captcha', '2012-05-19 00:52:34'),
(3163, 'ro', 'directory', 'Directory Submission Reports', 'Rapoarte Directoare Inscrise', '2012-05-19 00:52:34'),
(3164, 'ro', 'directory', 'Enter the code shown', 'Introduceti codul din imagine', '2012-05-19 00:52:34'),
(3165, 'ro', 'directory', 'nocatnote', 'Categoria inscrisa nu a fost gasita in pagina trimise. Va rugam apasati pe <b>Reincarca</b> sau <b>Sari peste</b>', '2012-05-19 00:52:34'),
(3166, 'ro', 'directory', 'nodirnote', 'Nu s-a gasit niciun director <b>Activ</b> ', '2012-05-19 00:52:34'),
(3167, 'ro', 'directory', 'nosuccessnote', 'Nu ati primit mesajul de confirmare, va rugam verificati-va e-mailul pentru a gasi mesajul de confirmare.', '2012-05-19 00:52:34'),
(3168, 'ro', 'directory', 'optionalnote', 'Titluri si descrieri optionale sunt trimise aleator la directoare pentru un rezultat mai bun.', '2012-05-19 00:52:34'),
(3169, 'ro', 'directory', 'Owner Email', 'E-mail detinator', '2012-05-19 00:52:34'),
(3170, 'ro', 'directory', 'Owner Name', 'Nume detinator', '2012-05-19 00:52:34'),
(3171, 'ro', 'directory', 'Pending', 'In asteptare', '2012-05-19 00:52:34'),
(3172, 'ro', 'directory', 'Please select a website to proceed', 'Va rugam selectati un site web pentru a Continua', '2012-05-19 00:52:34'),
(3173, 'ro', 'directory', 'selectwebsiteproceed', 'Selectati un <b>Site Web<b/> pentru a <b>Continua</b> inscrierea in directoare. <br> Verifica <b>Directoarele fara captcha</b> pentru a inscrie in directoarele fara captcha', '2012-05-19 00:52:34'),
(3174, 'ro', 'directory', 'selectwebsiteschecksub', 'Selectati un <b>Director</b> pentru a <b>Continua</b> verificarea directoarelor inscrise.', '2012-05-19 00:52:34'),
(3175, 'ro', 'directory', 'Semi Automatic Directory Submission Tool', 'Unealta de inscriere Directoare Semi Automata', '2012-05-19 00:52:34'),
(3176, 'ro', 'directory', 'spamemailnote', 'Unele directoare pot trimite spam, nu recomandam sa folositi adresa dvs. de e-mail primara.', '2012-05-19 00:52:34'),
(3177, 'ro', 'directory', 'Submission Details', 'Detalii Inscriere', '2012-05-19 00:52:34'),
(3178, 'ro', 'directory', 'Submit Description', 'Descriere Inscriere', '2012-05-19 00:52:34'),
(3179, 'ro', 'directory', 'Submit Keywords', 'Inscriere cuvinte cheie', '2012-05-19 00:52:34'),
(3180, 'ro', 'directory', 'Submit Title', 'Inscriere Titlu', '2012-05-19 00:52:34'),
(3181, 'ro', 'directory', 'Website Category', 'Categorie Site Web', '2012-05-19 00:52:34'),
(3182, 'ro', 'directory', 'Website Url', 'Url site web', '2012-05-19 00:52:34'),
(3183, 'zh', 'support', 'support_cont1', '<fieldset> \r\n<legend>Seo Panel 帮助系统</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>1000 目录包</h1> \r\n <p> \r\n 我们提供<b>超过1000个可用的</b>网络目录包,加到\r\n你的seo panel <b>目录提交工具</b>. \r\n 它会帮助你<b>增加反向链接</b>你的站点. \r\n 在我们获得捐赠后为seo panel<b>以为未来发展</b>,您将获得<b>推荐</b>的1000目录列表,. \r\n 想要获得1000目录列表请<a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">捐赠</a>\r\n$10 或者更多 来改善 seo panel 的功能 . \r\n 如果你有任何问题关于1000目录包,请<a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">联系我们</a>或者打开一个页面 <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">帮助系统</a>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">访问这个链接捐赠seo panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>本地搜索引擎包</h1> \r\n <p> \r\n 增加<b>本地 搜索引擎 域</b>google,yahoo,msn(<b>例如: www.google.de,www.google.fr\r\netc</b>) seo panel <b>关键字position checker</b>, 追踪你的站点行为本地. \r\n 为了获得本地搜索引擎包(根据你的需求) 请<a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">捐赠</a> $10或者更多来改善功能seo\r\npanel. \r\n 捐赠之前, 请 <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">联系我们</a> to\r\n提供给我们需要的搜索引擎域名列表. \r\n <br><br> \r\n 增加<b>新的搜索引擎(例如:baidu.com)</b>你的 seo panel关键字position checker,\r\n请 <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">联系我们</a>或者打开一个页面在<a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">帮助系统</a>. \r\n </p> \r\n <p class=\\"visit\\"> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">访问这个链接联系我们</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Seo Panel插件</h1> \r\n <p> \r\n 增加<b>seo插件</b> 你的seo panel <b>扩展功能</b>根据你的\r\n需求. \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel插件</a>由seo panel\r\n和第三方站点提供. \r\n 你可以 easily <b>develop</b> seo插件来你的seo panel. \r\n 你可以<a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">提交</a>你的seo plugin seo panel 并且\r\n我们会<b>发布</b>到我们的站点在<b>审查</b>之后. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">访问这个链接为了获得seo panel插件</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>联系我们</h1> \r\n <p> \r\n 联系我们来 任何问题 关于 <b>seo panel 工具,插件和功能等等</b> 通过以下链接. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">访问这个链接 联系我们</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>技术支持</h1> \r\n <p> \r\n 为了获得 <b>技术支持</b>从seo panel团队设置<b>seo panel工具,插件和\r\n功能</b>. 例如: 设置cron来关键字位置checker. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">访问这个链接创建一个支持ticket</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>报告Bugs</h1> \r\n <p> \r\n 报告<b>bugs</b> 关于 <b>seo panel 工具,插件和功能等等</b> 通过以下链接. \r\n 请 帮助我们在下个版本来改善功能. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">访问这个链接 报告bugs</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2011-05-04 12:56:00'),
(3184, 'zh', 'support', 'support_cont2', '<fieldset> \r\n<legend>Seo Panel 在线资源</legend> \r\n<ul class=\\"infobox\\"> \r\n \r\n <li> \r\n <h1>Seo Panel 帮助向导</h1> \r\n <p> \r\n 你可以看 <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">seo panel文档</a>在 \r\n<b>帮助向导</b>, 它包括<b>文档</b>来 seo panel 工具,插件和相关的\r\n功能. \r\n <br>这是在因特网获得关于seo panel帮助的<b>最好的地方</b>.如果你发现错误或者缺少东西,我们希望你seo panel 帮助向导<b>报告</b>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">访问seo panel 帮助向导</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Seo Panel论坛</h1> \r\n <p> \r\n 一个地方讨论关于世界上第一款开源的<b>seo control panel</b>. \r\n 这是最好的地方找到<b>答案</b> <b>你的问题</b> 关于 seo panel. \r\n <br> 你可以<b>分享</b>你的<b>经验</b> 在使用seo panel来操作你的\r\n站点. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">访问seo panel论坛</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2011-05-04 12:56:00'),
(3185, 'zh', 'support', 'support_cont3', '<fieldset> \r\n<legend>捐赠 Seo Panel</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>捐赠 Seo Panel - 世界上第一款开源的seo control panel</h1> \r\n <p> \r\n <b>捐赠</b> seo panel支持第一款开源的seo control panel世界上. \r\n 我们计划<b>增加和提高</b> 功能 seo panel 的在未来. \r\n <br>有了你的<b>支持</b>我们才能达到我们的<b>目标</b>. \r\n 如果你觉得seo panel是<b>值得</b>你拥有, 请捐赠支持seo panel 团队. \r\n <br>我们<b>会公布</b> 你的名字和站点信息在<a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">捐赠页面</a>, 一旦我们获得捐赠. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">访问这个链接捐赠 seo panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2011-05-04 12:56:00'),
(3186, 'ro', 'keyword', 'Crawling keyword', 'Cuvant cheie Crawling', '2012-05-19 00:57:55'),
(3187, 'ro', 'keyword', 'Detailed Keyword Position Reports', 'Raport detaliat pozitionare cuvinte cheie', '2012-05-19 00:57:55'),
(3188, 'ro', 'keyword', 'Edit Keyword', 'Editeaza cuvant cheie', '2012-05-19 00:57:55'),
(3189, 'ro', 'keyword', 'Graphical Keyword Position Reports', 'Raport grafic pozitionare cuvant cheie', '2012-05-19 00:57:55'),
(3190, 'ro', 'keyword', 'Import Keywords', 'Importa cuvant cheie', '2012-05-19 00:57:55'),
(3191, 'ro', 'keyword', 'Keyword already exist', 'Cuvantul cheie deja exista', '2012-05-19 00:57:55'),
(3192, 'ro', 'keyword', 'Keyword Position Report', 'Raport pozitionare cavant cheie', '2012-05-19 00:57:55'),
(3193, 'ro', 'keyword', 'New Keyword', 'Cuvant cheie nou', '2012-05-19 00:57:55'),
(3194, 'ro', 'keyword', 'not assigned to required search engines', 'neasignat la motoarele de cautare necesare', '2012-05-19 00:57:55'),
(3195, 'ro', 'keyword', 'pleaseselecttool', 'Va rugam selectati cel putin o unealta Seo', '2012-05-19 00:57:55'),
(3196, 'ro', 'keyword', 'Quick Keyword Position Checker', 'Verificare rapida pozitie cuvant cheie', '2012-05-19 00:57:55'),
(3197, 'ro', 'keyword', 'results from ', 'Rezultate din', '2012-05-19 00:57:55'),
(3198, 'ro', 'keyword', 'Show All results', 'Arata toate rezultatele', '2012-05-19 00:57:55'),
(3199, 'ro', 'keyword', 'Successfully crawled keyword', 'Cuvint cheie crawled cu succes', '2012-05-19 00:57:55'),
(3200, 'ro', 'keyword', 'to create new keywords', 'pentru a crea cuvinte cheie noi', '2012-05-19 00:57:55'),
(3201, 'ro', 'home', 'Account Summary', 'Sumar cont', '2012-05-19 00:57:04'),
(3202, 'ro', 'home', 'Backlinks', 'Backlinks', '2012-05-19 00:57:04'),
(3203, 'ro', 'home', 'Directory Submission', 'Inscriere directoare', '2012-05-19 00:57:04'),
(39561, 'zh', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', '该页面缺少Twitter Card标签 - 限制Twitter优化', '2026-01-19 23:10:34'),
(39562, 'cn', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', '该页面缺少Twitter Card标签 - 限制Twitter优化', '2026-01-19 23:10:34'),
(39563, 'en', 'siteauditor', 'Social Media', 'Social Media', '2026-01-19 23:10:34'),
(39564, 'ar', 'siteauditor', 'Social Media', 'وسائل التواصل الاجتماعي', '2026-01-19 23:10:34'),
(39565, 'bg', 'siteauditor', 'Social Media', 'Социални медии', '2026-01-19 23:10:34'),
(39566, 'de', 'siteauditor', 'Social Media', 'Soziale Medien', '2026-01-19 23:10:34'),
(39567, 'es', 'siteauditor', 'Social Media', 'Redes Sociales', '2026-01-19 23:10:34'),
(39568, 'fr', 'siteauditor', 'Social Media', 'Médias sociaux', '2026-01-19 23:10:34'),
(39569, 'it', 'siteauditor', 'Social Media', 'Social Media', '2026-01-19 23:10:34'),
(39570, 'nl', 'siteauditor', 'Social Media', 'Sociale media', '2026-01-19 23:10:34'),
(39571, 'pl', 'siteauditor', 'Social Media', 'Media społecznościowe', '2026-01-19 23:10:34'),
(39572, 'pt', 'siteauditor', 'Social Media', 'Redes Sociais', '2026-01-19 23:10:34'),
(39573, 'pt-br', 'siteauditor', 'Social Media', 'Redes Sociais', '2026-01-19 23:10:34'),
(39574, 'ru', 'siteauditor', 'Social Media', 'Социальные сети', '2026-01-19 23:10:34'),
(39575, 'tr', 'siteauditor', 'Social Media', 'Sosyal Medya', '2026-01-19 23:10:34'),
(39576, 'zh', 'siteauditor', 'Social Media', '社交媒体', '2026-01-19 23:10:34'),
(39577, 'cn', 'siteauditor', 'Social Media', '社交媒体', '2026-01-19 23:10:34'),
(39578, 'en', 'siteauditor', 'Pages with modern SEO features', 'Pages with modern SEO features', '2026-01-19 23:10:34'),
(39579, 'ar', 'siteauditor', 'Pages with modern SEO features', 'الصفحات ذات ميزات SEO الحديثة', '2026-01-19 23:10:34'),
(39580, 'bg', 'siteauditor', 'Pages with modern SEO features', 'Страници с модерни SEO функции', '2026-01-19 23:10:34'),
(39581, 'de', 'siteauditor', 'Pages with modern SEO features', 'Seiten mit modernen SEO-Funktionen', '2026-01-19 23:10:34'),
(39582, 'es', 'siteauditor', 'Pages with modern SEO features', 'Páginas con características modernas de SEO', '2026-01-19 23:10:34'),
(39583, 'fr', 'siteauditor', 'Pages with modern SEO features', 'Pages avec fonctionnalités SEO modernes', '2026-01-19 23:10:34'),
(39584, 'it', 'siteauditor', 'Pages with modern SEO features', 'Pagine con funzionalità SEO moderne', '2026-01-19 23:10:34'),
(39585, 'nl', 'siteauditor', 'Pages with modern SEO features', 'Pagina''s met moderne SEO-functies', '2026-01-19 23:10:34'),
(39586, 'pl', 'siteauditor', 'Pages with modern SEO features', 'Strony z nowoczesnymi funkcjami SEO', '2026-01-19 23:10:34'),
(39587, 'pt', 'siteauditor', 'Pages with modern SEO features', 'Páginas com recursos modernos de SEO', '2026-01-19 23:10:34'),
(39588, 'pt-br', 'siteauditor', 'Pages with modern SEO features', 'Páginas com recursos modernos de SEO', '2026-01-19 23:10:34'),
(39589, 'ru', 'siteauditor', 'Pages with modern SEO features', 'Страницы с современными функциями SEO', '2026-01-19 23:10:34'),
(39590, 'tr', 'siteauditor', 'Pages with modern SEO features', 'Modern SEO özellikleri olan sayfalar', '2026-01-19 23:10:34'),
(39591, 'zh', 'siteauditor', 'Pages with modern SEO features', '具有现代SEO功能的页面', '2026-01-19 23:10:34'),
(39592, 'cn', 'siteauditor', 'Pages with modern SEO features', '具有现代SEO功能的页面', '2026-01-19 23:10:34'),
(39593, 'en', 'siteauditor', 'Robots.txt Status', 'Robots.txt Status', '2026-01-19 23:10:34'),
(39594, 'ar', 'siteauditor', 'Robots.txt Status', 'حالة Robots.txt', '2026-01-19 23:10:34'),
(39595, 'bg', 'siteauditor', 'Robots.txt Status', 'Robots.txt статус', '2026-01-19 23:10:34'),
(39596, 'de', 'siteauditor', 'Robots.txt Status', 'Robots.txt Status', '2026-01-19 23:10:34'),
(39597, 'es', 'siteauditor', 'Robots.txt Status', 'Estado de Robots.txt', '2026-01-19 23:10:34'),
(39598, 'fr', 'siteauditor', 'Robots.txt Status', 'Statut Robots.txt', '2026-01-19 23:10:34'),
(39599, 'it', 'siteauditor', 'Robots.txt Status', 'Stato Robots.txt', '2026-01-19 23:10:34'),
(39600, 'nl', 'siteauditor', 'Robots.txt Status', 'Robots.txt status', '2026-01-19 23:10:34'),
(39601, 'pl', 'siteauditor', 'Robots.txt Status', 'Status Robots.txt', '2026-01-19 23:10:34'),
(39602, 'pt', 'siteauditor', 'Robots.txt Status', 'Status do Robots.txt', '2026-01-19 23:10:34'),
(39603, 'pt-br', 'siteauditor', 'Robots.txt Status', 'Status do Robots.txt', '2026-01-19 23:10:34'),
(38925, 'bs', 'review', 'Top Review Links', 'Najbolji linkovi recenzija', '2026-01-19 22:58:50'),
(38926, 'ca', 'review', 'Top Review Links', 'Principals enllaços de ressenyes', '2026-01-19 22:58:50'),
(38927, 'cn', 'review', 'Top Review Links', '热门评论链接', '2026-01-19 22:58:50'),
(38928, 'cs', 'review', 'Top Review Links', 'Top odkazy na recenze', '2026-01-19 22:58:50'),
(38929, 'da', 'review', 'Top Review Links', 'Top anmeldelseslinks', '2026-01-19 22:58:50'),
(38930, 'de', 'review', 'Top Review Links', 'Top Bewertungslinks', '2026-01-19 22:58:50'),
(38931, 'el', 'review', 'Top Review Links', 'Κορυφαίοι σύνδεσμοι αξιολογήσεων', '2026-01-19 22:58:50'),
(38932, 'es', 'review', 'Top Review Links', 'Principales enlaces de reseñas', '2026-01-19 22:58:50'),
(38933, 'es-ar', 'review', 'Top Review Links', 'Principales enlaces de reseñas', '2026-01-19 22:58:50'),
(38934, 'fa', 'review', 'Top Review Links', 'برترین لینک های بررسی', '2026-01-19 22:58:50'),
(38935, 'fi', 'review', 'Top Review Links', 'Parhaat arvostelulinkit', '2026-01-19 22:58:50'),
(38936, 'fr', 'review', 'Top Review Links', 'Meilleurs liens d''avis', '2026-01-19 22:58:50'),
(38937, 'he', 'review', 'Top Review Links', 'קישורי ביקורת מובילים', '2026-01-19 22:58:50'),
(38938, 'hi', 'review', 'Top Review Links', 'शीर्ष समीक्षा लिंक', '2026-01-19 22:58:50'),
(3207, 'ro', 'home', 'Pages Indexed', 'Pagini Indexate', '2012-05-19 00:57:04'),
(3208, 'ro', 'home', 'Ranks', 'Ranks', '2012-05-19 00:57:04'),
(3209, 'ro', 'home', 'SiteNameUrl', 'Nume Site/Url', '2012-05-19 00:57:04'),
(3210, 'ro', 'home', 'Website Statistics', 'Statistici Site Web', '2012-05-19 00:57:04'),
(3211, 'ro', 'support', 'support_cont1', '<fieldset> \r\n<legend>Centrul de suport Seo Panel</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>Pachet 1000 de directoare</h1> \r\n <p> \r\n Va oferim <b>1000 de directoare active si pe deasupra gratis</b> un pachet pe care il puteti adauga in panoul SEO la\r\n <b>sectiunea inregistrare in directoare</b>. \r\n Va vom ajuta sa <b>va cresteti backlink-urile</b> site-ului dvs. \r\n Deocamdata lista cu 1000 de directoare <b>mai sus mentionata</b> este pentru colectarea de fonduri <b>pentru desvoltarea viitoare a</b> Seo Panel. \r\n Pentru a lua lista cu 1000 de directoare va rugam <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donati</a>\r\n$10 sau mai mult pentru a imbunatati caracteristicile pachetului Seo Panel. \r\n Daca aveti intrebari asupra pachetului de 1000 de directoare, va rugam <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">contactati-ne</a> sau deschideti un tiket la <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">centrul de suport</a>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Vizitati acest link pentru a dona pentru Seo Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Pachet motoare de cautare locale</h1> \r\n <p> \r\n Adauga <b>domenii de motoare de cautare locale</b> pentru google,yahoo,msn(<b>eg: www.google.de,www.google.fr, www.google.ro\r\netc</b>) in panoul de control Seo <b>Verificare pozitie cuvinte cheie</b>, pentru a va urmari site-ul personal local. \r\n Pentru a beneficia de pachetul motarelor de cautare local(in functie de nevoile dvs.) va rugam <a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">donati</a> $10 sau mai mult pentru a imbunatati caracteristicile pachetului Seo Panel. \r\n Inainte de a trimite donatii va rugam, <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contactati-ne</a> pentru a ne da detalii despre motaorele de cautare locale ale dvs.. \r\n <br><br> \r\n Deasemenea pentru a adauga <b>noi motoare de cautare(eg:baidu.com)</b> la verificare pozitionare cuvinte cheie al Panoului Seo al dvs.,\r\nva rugam <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">contactati-ne</a> sau deschideti un tiket la <a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">centru de suport</a>. \r\n </p> \r\n <p class=\\"visit\\"> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Vizitati acest link pentru a ne contacta</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Plugin-uri Seo Panel</h1> \r\n <p> \r\n Adauga <b>plugin-uri Seo</b> in panoul de control Seo al dvs. <b>extindeti caracteristicile</b> in functie de necesitatile dvs.. \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Plugin-uri Seo Panel</a> sunt dezvoltate atat de Seo Panel cat si de alte site-uri afiliate. \r\n Puteti deasemenea foarte usor <b>sa dezvoltati</b> plugin-uri seo pentru panoul de control al dvs.\r\n Puteti <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">uploada</a> plugin-urile dvs in panoul de contro Seo si\r\nnoi le vom <b>publica</b> pe site-ul nostru dupa ce le vom <b>verifica</b>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Vizitati acest link pentru a descarca plugin-uri Seo Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Contactati-ne</h1> \r\n <p> \r\n Contactati-ne pentru orice intrebare despre <b>unelte seo panel,plugin-uri si caracteristici etc</b> utilizind link-ul de mai jos. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Vizitati acest link pentru a ne contacta</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Suport Tickete</h1> \r\n <p> \r\n Pentru a avea <b>suport tehnict</b> din partea echipei Seo Panel pentru a seta <b>uneltele Seo panel, plugin-urile si facilitati\r\n</b>. Ex: Pentru a seta un cron pentru verificare pozitionare cuvinte cheie. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Vizitati acest link pentru a creea un tiket de suport nou</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Raportai bug-uri</h1> \r\n <p> \r\n rapoortati <b>bug-uri</b> despre<b>unelte seo panel,plugin-uri si caracteristici etc</b> utilizand link-ul de mai jos. \r\n va rugam ajutati-ne sa imbunatatim facilitatile din noile versiuni. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Vizitati acest link pentru raporta un bug nou </a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2010-11-05 23:42:48'),
(3212, 'ro', 'support', 'support_cont2', '<fieldset> \r\n<legend>Panoul Seo resurse Online</legend> \r\n<ul class=\\"infobox\\"> \r\n \r\n <li> \r\n <h1>Ghid ajutor Panoul Seo</h1> \r\n <p> \r\n Puteti vedea <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">documentatia panoului Seo</a> in\r\n<b>Ghidul de ajutor</b>, contine <b>documentatia</b> pentru uneltele panoului seo ,plugin-uri si caracteristici . \r\n <br>Este cel mai bun loc de pe internet pentru a <b>primi ajutor</b> despre panoul Seo. Speram ca tu vei\r\n<b>contribui</b> la ghidul de ajutor al panoului Seo, daca gasiti erori sau ceva lipsuri. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Vizitati ghidul de ajutor al panoului Seo</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Forum Seo Panel</h1> \r\n <p> \r\n Un loc pentru discutii despre primul opensource <b>panou de control Seo</b>. \r\n Este cel mai bun loc pentru a gasi <b>raspunsuri</b> la <b>intrebarile tale</b> despre panoul Seo. \r\n <br>Deasemenea poti <b>imparti</b> <b>experienta</b> ta in timp de utilizezi panoul seo pentru site-urile tale. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Vizitati forumul panoului Seo</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2010-11-05 23:42:48'),
(3213, 'ro', 'support', 'support_cont3', '<fieldset> \r\n<legend>Donati panoului Seo</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>Donati panoului seo - Primul Open Source panou de control Seo din lume</h1> \r\n <p> \r\n <b>Donati</b> panoului Seo pentru sustinerea primului panou seo din lume. \r\n Planuim sa <b>adaugam si imbunatatim</b> caracteristici ale panoului seo pe viitor. \r\n <br>Cu ajutorul <b>suportului</b> dvs. ne putem atinge <b>telul</b>. \r\n Daca crezi ca panoul de control seo <b>conteaza</b> pentru tine, va rugam donati cat vreti echipei Seo Panel. \r\n <br>Va vom <b>publica</b> numele si informatii despre site-ul dvs in <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">pagina de donatii</a>, de indata ce primim donatia. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Vizitati acest link pentru a dona Panoului Seo</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2010-11-05 23:42:48'),
(3214, 'ro', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Donati $100</b> si deveniti <b>sponsor</b> al Seo Panel.', '2012-05-19 01:16:44'),
(3215, 'ro', 'settings', 'seopanel_description', 'Un panou de control complet gratis pentru a controla optimizarea site-urilor dvs. Contine o ultime de unelte noi pentru a creste si verifica performantele site-ului dvs. Este un software open source si deasemenea va puteti dezvolta singuri plugin-urile pentru panoul seo al dvs.', '2012-05-19 01:16:44'),
(3216, 'ro', 'settings', 'seopanel_title', 'Panoul Seo: Primul open source panou de control Seo din lume pentru managemenetul mai multor site-uri web.', '2012-05-19 01:16:44'),
(3217, 'ro', 'settings', 'SP_CRAWL_DELAY', 'Intarziere intre fiecare spider crawl (secunde)', '2012-05-19 01:16:44'),
(3218, 'ro', 'settings', 'SP_DEFAULTLANG', 'Limba de baza', '2012-05-19 01:16:44'),
(3219, 'ro', 'settings', 'SP_DESCRIPTION', 'Descriere Panou de control Seo', '2012-05-19 01:16:44'),
(3220, 'ro', 'settings', 'SP_ENABLE_PROXY', 'Activare Proxy', '2012-05-19 01:16:44'),
(3221, 'ro', 'settings', 'SP_HOTLINKING', 'Imagine protectie hotlink activata', '2012-05-19 01:16:44'),
(3222, 'ro', 'settings', 'SP_KEYWORDS', 'Cuvinte cheie panoul de control Seo', '2012-05-19 01:16:44'),
(3223, 'ro', 'settings', 'SP_PAGINGNO', 'Numar de intrari per pagina', '2012-05-19 01:16:44'),
(3224, 'ro', 'settings', 'SP_TITLE', 'Titlu panou de control seo', '2012-05-19 01:16:44'),
(3225, 'ro', 'settings', 'SP_USER_GEN_REPORT', 'Lasa utilizatorii sa genereze rapoarte', '2012-05-19 01:16:44'),
(3226, 'ro', 'settings', 'SP_USER_REGISTRATION', 'Interfata inregistrare utilizator', '2012-05-19 01:16:44'),
(3227, 'ro', 'settings', 'syssettingssaved', 'Setarea sistemului salvata cu succes!', '2012-05-19 01:16:44');
INSERT INTO `texts` VALUES
(3228, 'ro', 'seotools', 'Automatic Submission', 'Inregistrare automata', '2011-07-13 06:03:17'),
(3229, 'ro', 'seotools', 'backlink-checker', 'Verificator backlink-uri', '2011-07-13 06:03:17'),
(3230, 'ro', 'seotools', 'Backlinks Reports', 'Rapoarte backlink-uri', '2011-07-13 06:03:17'),
(3231, 'ro', 'seotools', 'Check Submission Status', 'Verifica status inregistrari', '2011-07-13 06:03:17'),
(3232, 'ro', 'seotools', 'clickgeneratereports', 'Apasa pe <b>Continua</b> pentru a genera rapoarte', '2011-07-13 06:03:17'),
(3233, 'ro', 'seotools', 'Detailed Position Reports', 'Rapoarte pozitionare detaliate', '2011-07-13 06:03:17'),
(3234, 'ro', 'seotools', 'directory-submission', 'Inregistrare directoare', '2011-07-13 06:03:17'),
(3235, 'ro', 'seotools', 'Featured Submission', 'Inregistrare viitoare', '2011-07-13 06:03:17'),
(3236, 'ro', 'seotools', 'Generate Backlinks Reports', 'Genereaza rapoarte backlink-uri', '2011-07-13 06:03:17'),
(3237, 'ro', 'seotools', 'Generate Keyword Reports', 'Genereaza rapoarte cuvinte cheie', '2011-07-13 06:03:17'),
(3238, 'ro', 'seotools', 'Generate Rank Reports', 'Genereaza rapoarte de rank', '2011-07-13 06:03:17'),
(3239, 'ro', 'seotools', 'Generate Saturation Reports', 'Genereaza rapoarte de saturatie', '2011-07-13 06:03:17'),
(3240, 'ro', 'seotools', 'Google Sitemap Generator', 'Generator Google Sitemap', '2011-07-13 06:03:17'),
(3241, 'ro', 'seotools', 'Graphical Position Reports', 'Rapoarte pozitionale grafica', '2011-07-13 06:03:17'),
(3242, 'ro', 'seotools', 'Keyword Position Summary', 'Sumar pozitionare cuvinte cheie', '2011-07-13 06:03:17'),
(3243, 'ro', 'seotools', 'keyword-position-checker', 'Verificator pozitionare cuvinte cheie', '2011-07-13 06:03:17'),
(3244, 'ro', 'seotools', 'Keywords Manager', 'Manager cuvinte cheie', '2011-07-13 06:03:17'),
(3245, 'ro', 'seotools', 'Quick Backlinks Checker', 'Verificator rapid backlink-uri', '2011-07-13 06:03:17'),
(3246, 'ro', 'seotools', 'Quick Position Checker', 'Verificator rapid pozitionare', '2011-07-13 06:03:17'),
(3247, 'ro', 'seotools', 'Quick Rank Checker', 'Verificator rapid rank', '2011-07-13 06:03:17'),
(3248, 'ro', 'seotools', 'Quick Saturation Checker', 'Verificator rapid saturatie', '2011-07-13 06:03:17'),
(3249, 'ro', 'seotools', 'Rank Reports', 'Rapoarte Rank', '2011-07-13 06:03:17'),
(3250, 'ro', 'seotools', 'rank-checker', 'Verificator Rank', '2011-07-13 06:03:17'),
(3251, 'ro', 'seotools', 'Saturation Reports', 'Rapoarte Saturatie', '2011-07-13 06:03:17'),
(3252, 'ro', 'seotools', 'saturation-checker', 'Saturatie motoare de cautare', '2011-07-13 06:03:17'),
(3253, 'ro', 'seotools', 'sitemap-generator', 'Generator Sitemap', '2011-07-13 06:03:17'),
(3254, 'ro', 'seotools', 'Skipped Directories', 'Directoare neinscrise', '2011-07-13 06:03:17'),
(3255, 'ro', 'seotools', 'Submission Reports', 'Rapoarte inregistrare', '2011-07-13 06:03:17'),
(3256, 'ro', 'seotools', 'User Access', 'Acces utilizator', '2011-07-13 06:03:17'),
(3257, 'ro', 'saturation', 'clickproceedsaturation', 'Introduceti URL-urile <b>cate unul pe rand</b>. Apasa pe <b>Continua</b> pentru a verifica rezultatele saturatiei motoarelor de cautare', '2010-11-02 12:44:38'),
(3258, 'ro', 'saturation', 'GenerateSaturationReports', 'Genereaza rapoarte saturatie motoare de cautare', '2010-11-02 12:44:38'),
(3259, 'ro', 'saturation', 'Quick Search Engine Saturation Checker', 'Verificator rapid saturatie motoare de cautare', '2010-11-02 12:44:38'),
(3260, 'ro', 'saturation', 'Saved Search Engine Saturation results of', 'Saturatie motoare de cautare salvate rezultat din', '2010-11-02 12:44:38'),
(3261, 'ro', 'saturation', 'Search Engine Saturation Reports', 'rapoarte saturatie motoare de cuatare', '2010-11-02 12:44:38'),
(3262, 'ro', 'login', 'Confirm Password', 'Confirmare parola', '2012-05-19 01:02:44'),
(3263, 'ro', 'login', 'Create my account', 'Creaza contul', '2012-05-19 01:02:44'),
(3264, 'ro', 'login', 'Create New Account', 'Creaza cont nou', '2012-05-19 01:02:44'),
(3265, 'ro', 'login', 'Email', 'E-mail', '2012-05-19 01:02:44'),
(3266, 'ro', 'login', 'emailexist', 'Adresa de e-mail exista in baza de date!', '2012-05-19 01:02:44'),
(3267, 'ro', 'login', 'Enter the code as it is shown', 'Introduceti codul dupa cum este aratat', '2012-05-19 01:02:44'),
(3268, 'ro', 'login', 'First Name', 'Nume', '2012-05-19 01:02:44'),
(3269, 'ro', 'login', 'Last Name', 'Prenume', '2012-05-19 01:02:44'),
(3270, 'ro', 'login', 'Login', 'Autentificare', '2012-05-19 01:02:44'),
(3271, 'ro', 'login', 'Login incorrect', 'Autentificare incorecta', '2012-05-19 01:02:44'),
(3272, 'ro', 'login', 'newaccountsuccess', 'Cont nou creat cu succes!', '2012-05-19 01:02:44'),
(3273, 'ro', 'login', 'Password', 'Parola', '2012-05-19 01:02:44'),
(3274, 'ro', 'login', 'Password incorrect', 'Parola incorecta', '2012-05-19 01:02:44'),
(3275, 'ro', 'login', 'Register', 'Inregistrare', '2012-05-19 01:02:44'),
(3276, 'ro', 'login', 'Sign in to your account', 'Autentificare in contul dvs.', '2012-05-19 01:02:44'),
(3277, 'ro', 'login', 'User inactive', 'Utilizator inactiv', '2012-05-19 01:02:44'),
(3278, 'ro', 'login', 'Username', 'Nume utilizator', '2012-05-19 01:02:44'),
(3279, 'ro', 'login', 'usernameexist', 'Nume utilizator deja existenta', '2012-05-19 01:02:44'),
(3280, 'ro', 'label', 'already exist', 'deje exista', '2012-05-19 01:00:22'),
(3281, 'ro', 'label', 'Authentication', 'Autentificare', '2012-05-19 01:00:22'),
(3282, 'ro', 'label', 'Author', 'Autor', '2012-05-19 01:00:22'),
(3283, 'ro', 'label', 'Click Here', 'Apasa aici', '2012-05-19 01:00:22'),
(3284, 'ro', 'label', 'Cron', 'Cron', '2012-05-19 01:00:22'),
(3285, 'ro', 'label', 'Description', 'Descriere', '2012-05-19 01:00:22'),
(3286, 'ro', 'label', 'Developers', 'Dezvoltatori', '2012-05-19 01:00:22'),
(3287, 'ro', 'label', 'Download', 'Download', '2012-05-19 01:00:22'),
(3288, 'ro', 'label', 'Installation', 'Instalare', '2012-05-19 01:00:22'),
(3289, 'ro', 'label', 'Keywords', 'Cuvinte cheie', '2012-05-19 01:00:22'),
(3290, 'ro', 'label', 'noactiveplugins', 'Niciun plugin seo gasit!', '2012-05-19 01:00:22'),
(3291, 'ro', 'label', 'Plugin', 'Plugin', '2012-05-19 01:00:22'),
(3292, 'ro', 'label', 'Port', 'Port', '2012-05-19 01:00:22'),
(3293, 'ro', 'label', 'Proxy', 'Proxy', '2012-05-19 01:00:22'),
(3294, 'ro', 'label', 'Re-install', 'Re-instaleaza', '2012-05-19 01:00:22'),
(3295, 'ro', 'label', 'Sponsors', 'Sponsori', '2012-05-19 01:00:22'),
(3296, 'ro', 'label', 'Title', 'Titlu', '2012-05-19 01:00:22'),
(3297, 'ro', 'label', 'translation by', 'Tradus de', '2012-05-19 01:00:22'),
(3298, 'ro', 'label', 'Translators', 'Traducatori', '2012-05-19 01:00:22'),
(3299, 'ro', 'label', 'Upgrade', 'Upgrade', '2012-05-19 01:00:22'),
(3300, 'ro', 'label', 'Version', 'Versiune', '2012-05-19 01:00:22'),
(3301, 'ro', 'label', 'wantproceed', 'Chiar vrei sa continui?', '2012-05-19 01:00:22'),
(3302, 'hu', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Támogatói Rendszer</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>1000 darabos katalóguscsomag</h1> \r\n <p>\r\n Biztosítunk egy <b>1000 darabos ingyenes</b> katalóguscsomagot, melyekbe automatikusan tudja weboldalait beküldeni a <b>linkbeküldő eszközzel</b>.\r\n Ezzel könnyedén növelheti oldalainak backlink számát <b>oldalainak backlink számát</b>.\r\n A katalógusok megszerzéséhez kérlek <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">támogasd</a> minimum\r\n$10-al a Seo Panel fejlesztését.\r\n Ha kérdésed van a csomaggal kapcsolatban kérlek lépj <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">kapcsolatba velünk</a>, vagy kérjen egy jegyet az <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">ügyfélszolgálattól</a>. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">A Seo panel támogatáshoz látogassa meg ezt a linket.</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Helyi keresőmotor csomag</h1> \r\n <p>\r\n Adjon <b>helyi keresést</b> a google-hoz,yahoo-hoz,msn-hez(például: <b>www.google.de,www.google.fr,www.google.hu\r\nstb..</b>). Így a <b>kulcsszóhelyezés vizsgálóval</b> a lokalizált eredményeket tudja megtekinteni. \r\n A helyi keresőcsomag megszerzéséhez <a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">támogatnia</a> kell minimum $10-al a Seo Panelt.\r\n Mielőtt elküldené a támogatást, kérem lépjen <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">velünk kapcsolatba</a>, és küldje el nekünk az Ön által kívánt keresőmotor domain kiterjesztését(pl.: .hu, .fr stb..).\r\n <br><br> \r\n Új <b>keresőmotor</b>(pl.:baidu.com) hozzáadásához,\r\nkérem lépjen <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">kapcsolatba velünk</a>, vagy kérjen egy jegyet az <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">ügyfélszolgálattól</a>. \r\n </p> \r\n <p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Látogassa meg ezt a linket, hogy kapcsolatba léphessen velünk.</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Kiegészítők</h1> \r\n <p>\r\n Adjon hozzá különböző <b>kiegészítőket</b> Seo paneljéhez, hogy <b>bővíthesse a funkcióit</b>.\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel kiegészítőket</a> a Seo panel hivatalos oldala mellett egyéb oldalakon is találhat.\r\n Könnyedén <b>fejleszthet</b> Ön is Seo Kiegészítőket a Seo Panelhez.\r\n Az ön által fejlesztett kiegészítőket <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">beküldheti</a> a Seo Panel oldalára ahol egy rövid áttekintés után <b>megjelenik</b> a többi kiegészítő között. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Kiegészítők letöltéséhez látogassa meg ezt az oldalt.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Kapcsolat</h1> \r\n <p>\r\n Ha bármilyen kérdése van(<b>kiegészítők, fejlesztés, stb..</b>), akkor az alábbi linken lépjen velünk kapcsolatba. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Látogassa meg ezt az oldalt a kapcsolatfelvételhez.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Ügyfélszolgálati jegy</h1> \r\n <p>\r\n A Seo panel csapat <b>Technikai támogatásért</b>(kiegészítők telepítése, cron beállítása) lépjen kapcsolatba az ügyfélszolgálattal.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Látogassa meg ezt a linket, hogy kapcsolatba léphessen az ügyfélszolgálattal.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Hibák bejelentése</h1> \r\n <p>\r\n <b>Hibák</b> bejelentéséhez használja az alábbi linket. Ezzel nagymértékben hozzájárul a program fejlesztéséhez. \r\n \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Hibabejelentéshez kérem látogassa meg az alábbi oldalt.</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2010-11-06 06:21:42'),
(3303, 'hu', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Források</legend>\r\n<ul class=\\"infobox\\">\r\n \r\n <li>\r\n <h1>Seo Panel Útmutató</h1> \r\n <p>\r\n A <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Seo panel-hez tartozó dokumentációt</a> az\r\n<b>útmutatóban</b> találja, amely tartalmaz minden olyan információt amely segít a Seo panel használatában.\r\n <br>Ez a legjobb hely az interneten, hogy <b>segítséget kapj</b> a Seo panellel kapcsolatban. Reméljük, hogy az esetleges elírásokat, hiányosságokat segít nekünk pótolni. \r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Seo Panel útmutató megtekintése.</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Fórum</h1> \r\n <p>\r\n Ez az a hely ahol szabadon megoszthatja <b>tapasztalatait</b> a <b>Seo panel</b>-el kapcsolatban. \r\n Válaszokat találhat a megoldhatatlannak tűnő <b>kérdéseire</b>, továbbá <b>tapasztalatait</b> is megoszthatja másokkal. \r\n \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Seo panel fórumának megtekintése</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2010-11-06 06:21:42'),
(3304, 'hu', 'support', 'support_cont3', '<fieldset>\r\n<legend>Seo panel támogatása</legend>\r\n<ul class=\\"infobox\\"> \r\n <li>\r\n <h1>Támogassa a Seo panelt - amely a világ első nyílt forráskódú Seo segédje.</h1> \r\n <p>\r\n <b>Támogassa</b> 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 <b>funkciókat</b> 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 <b>hasznos</b> 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 <br><b>közzé</b> tesszük a <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">támogatói oldalon</a>.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">A seo panel támogatásához látogassa meg ezt az oldalt.</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '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', 'Кликнете на <b>Продължи</b> за да създадете файл с карата на сайта ', '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', 'Въведете <b>по един</b> URL адрес на ред. Кликнете на <b>Продължи</b> за да проверите ранга в 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', '<b>Дарете 100 $</b> и станете <b>спонсор</b> на 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', '<fieldset> \r\n<legend>SEO Panel Техническа подръжка</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>Пакет от 1000 Директории</h1> \r\n <p> \r\n Осигуряваме <b>пакет от 1000 безплатни и потвърдени</b> интернет директории, които можете да добавите към вашият <b>инструмент за регистрация в директории</b> в seo panel. \r\n Този пакет ще ви помогне <b>да увеличите беклинковете</b> към вашите сайтове. \r\n Всъщност, списъка с 1000 директории се <b>представя</b> за да съберем средства за <b>бъдеща разработка</b> на seo panel. \r\n За да получите списъка с 1000 директории, моля <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">направете дарение</a>\r\nот 10 $ или повече. Дарението ще се използва за подобряване на seo panel. \r\n Ако имате въпроси относно списъка с 1000 директории, моля <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">свържете се с нас</a> или създайте билет в <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">системата за техническа подръжка</a>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Посетете този линк за да направите дарение на seo panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Пакет локални търсачки</h1> \r\n <p> \r\n Добавяне <b>локализирани домейни на търсачка</b> - google,yahoo,msn(<b>например: www.google.de,www.google.fr\r\nи др.</b>) към SEO panel за <b>позиция по ключова дума</b>, за да следите локалните резултати за вашите сайтове. \r\n За да добавим пакета за локални търсачки (според вашите изисквания), моля <a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">направете дарение</a> от 10 $ или повече. Дарението ще се използва за подобряване на seo panel. \r\n Преди да изпратите даренията, моля <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">свържете се с нас</a> за да ни предоставите списък с желаните домейни на търсачки за локално търсене. \r\n <br><br> \r\n Също така, за да добавим <b>нови търсачки (напр.:baidu.com)</b> към проверката на позиция по ключова дума към вашият seo panel,\r\nмоля <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">свържете се с нас</a> или създайте билет в <a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">системата за техническа подръжка</a>. \r\n </p> \r\n <p class=\\"visit\\"> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Посетете този линк за да се свържете с нас</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Seo Panel Модули</h1> \r\n <p> \r\n Добавете <b>seo модули</b> към вашият seo panel за да <b>разширите възможностите му</b>, според вашите нужди. \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel модулите</a> се разработват, както от екипа на seo panel, така и от други разработчици. \r\n Можете лесно да <b>разработите</b> seo модули за вашият seo panel. \r\n Можете да ни <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">изпратите</a> вашият seo модул за seo panel и ние ще го <b>публикуваме</b> на нашият сайт след като го <b>прегледаме</b>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Посетете този линк за да изтеглите последните seo panel модули</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Връзка с нас</h1> \r\n <p> \r\n Свържете се с нас за всякакви въпроси свързани с <b>инструментите, модулите, опциите и т.н. на seo panel </b> като използвате линка по-долу. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Посетете този линк за да се свържете с нас</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Система за техническа подръжка</h1> \r\n <p> \r\n За да получите <b>техническа подръжка</b> от екипа на seo panel относно <b>инсталирането, модулите, инструментите и опциите на seo panel</b>. Например: Да настройте cron за проверката на позиция по ключова дума. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Посетете този линк за да създадете билет в системата за техническа подръжка</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Докладване на бъгове(грешки)</h1> \r\n <p> \r\n Докладвайте за <b>бъгове</b> в <b>инсталирането, модулите, инструментите, опциите и т.н. на seo panel</b> използвайки линка по долу. \r\n По този начин, ни помогате да подобрим работата на следащите версии на seo panel. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Посетете този линк за да докладвате за бъгове</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2010-11-15 00:47:30'),
(3424, 'bg', 'support', 'support_cont2', '<fieldset> \r\n<legend>SEO Panel - Онлайн ресурси</legend> \r\n<ul class=\\"infobox\\"> \r\n \r\n <li> \r\n <h1>Seo Panel - Помощна информация</h1> \r\n <p> \r\n Можете да разгледате <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">документацията на SEO panel</a> в <b>помощната информация</b>. Съдържа <b>документация</b> за инструментите на SEO panel, модулите и различните функционалности. \r\n <br>Най доброто място в интернет, където можете да <b>получите помощ</b> относно SEO panel. Надяваме се да\r\n<b>допълвате</b> помощната информация на seo panel, ако намерите някакви грешки или нещо липсва. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Посетете секцията Помощна информация</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Форум Seo Panel</h1> \r\n <p> \r\n Мястото за дискусии на първият в света <b>seo контролен панел</b> с отворен код. \r\n Най-доброто място да откриете <b>отговори</b> на вашите <b>въпроси</b> относно seo panel. \r\n <br>Също така можете да <b>споделите</b> вашият <b>опит</b> в използването на seo panel за оптимизиране на вашите уеб сайтове. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Посетете форума на seo panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2010-11-15 00:47:30'),
(3425, 'bg', 'support', 'support_cont3', '<fieldset> \r\n<legend>Направете дарение на SEO Panel</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>Направете дарение на Seo Panel - Първият в света, SEO контролен панел с отворен код</h1> \r\n <p> \r\n <b>Направете дарение</b> на SEO panel за да подкрепите първият SEO контролен панел с отворен код в света. \r\n Планираме да <b>добавяме и подобряваме</b> функционалността на SEO panel в бъдеще. \r\n <br>Заедно, с <b>вашата подкрепа</b> можем да постигнем нашите <b>цели</b>. \r\n Ако смятате, че SEO panel си <b>струва</b>, моля дарете някаква сума на екипа на SEO panel. \r\n <br>Ще <b>публикуваме</b> вашето име и информация за вашият сайт на <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">страницата с дарители</a>, след като получим дарението ви. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Посетете този линк за да направите дарение на SEO panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset> ', '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', 'Кликнете на <b>Продължи</b> за да генерирате доклади', '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', 'Въведете <b>по един</b> URL адрес на ред. Кликнете на <b>Продължи</b> за да видите резултатите за наситеност в търсачка', '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', 'Кликнете на <b>Продължи</b> за да проверите статуса на директория.', '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', 'Категорията за регистрация не е намерена на страницата за регистрация. Моля кликнете на <b>Презареди</b> или <b>Пропусни</b>', '2012-11-10 02:03:43'),
(3473, 'bg', 'directory', 'nodirnote', 'Няма намерени <b>Активни</b> директории ', '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', 'Изберете <b>Интернет сайт</b> за да <b>Продължите</b> с регистрацията в директория.<br /><br />Отбележете <b>Директории без картинен код</b> за да регистрирате в директории, в които не се изисква потвърждение чрез картинен код ', '2012-11-10 02:03:43'),
(3481, 'bg', 'directory', 'selectwebsiteschecksub', 'Изберете <b>Интернет сайт</b> за да <b>Продължите</b> с проверка на регистрацията в директория. ', '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', '<fieldset>\r\n<legend> Seo panel sistema de suporte </legend>\r\n<ul class=\\"infobox\\"> \r\n<li>\r\n<h1> Pacote de 1000 directórios </h1>\r\n<p>\r\nNós estamos fornecendo <b>um pacote de 1000 activos e verificados </b> inserções em directórios da internet, para adicionar no seu Seo panel <b> na ferramenta de submissão de directórios </b>.\r\nVai ajudar você a aumentar <b> backlinks </b> a visibilidade dos seus sites.\r\nActualmente estamos a angariar<b> uma doacção para futuros desenvolvimentos </b>\r\npara o Seo Panel.\r\nPara obter a lista 1000 directórios <a href = \\"<?=SP_DONATE_LINK?>\\" target = \\"_blank\\"> doe </a>\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 <a href = \\"<?=SP_CONTACT_LINK?>\\"\r\ntarget ="_blank"> contato nos </a> ou submeta um ticket no <a href = \\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget = \\"_blank\\"> Suporte Sistema </a>.\r\n</P>\r\n<p>\r\n<A href = \\"<?=SP_DONATE_LINK?> \\" Target ="_blank"> Visite este link para doar para seo panel </a>\r\n</P>\r\n<br>\r\n</Li>\r\n\r\n<li>\r\n<h1> Pacote de motores de busca Locais </h1>\r\n<p>\r\nAdicionar <b> motor de busca locais , domínios </b> do google, yahoo, msn (por exemplo, <b>: www.google.de, www.google.fr, etc </b>) para seo panel <b> palavra-chave verifica a posição </b>, para acompanhar a sua perfomance site localmente.\r\nPara obter pacotes de motores de busca locais (de acordo com sua exigência) <a\r\nhref = \\"<?=SP_DONATE_LINK?>\\" target =\\"_blank \\"> doar </a> US $ 20 ou mais para melhorar as características de seo panel.\r\nAntes de enviar doações, por favor <a href = \\"<?=SP_CONTACT_LINK?>\\" Target = \\"_blank\\"> Entre em contato </a> para fornecer-nos o domínio do motor de busca em questão.\r\n<br>\r\nTambém para adicionar <b> novos motores de pesquisa (por exemplo: baidu.com) </b> no seu seo panel e palavras-chave,\r\npor favor <a href = \\"<?=SP_CONTACT_LINK?>\\" target = \\" _blank\\">contato nos </a> ou abrir um ticket no <a\r\nhref = \\"<?=SP_SUPPORT_LINK?>\\" target = \\"_blank\\"> sistema de suporte </a>.\r\n</P>\r\n<p class=\\"visit\\"> \r\n<A href = \\"<?=SP_CONTACT_LINK?>\\" Target = \\"_blank\\"> Visite este link para entrar em contacto connosco </a>\r\n</P>\r\n<br>\r\n</Li>\r\n\r\n<li>\r\n<h1>Seo plugins </h1>\r\n<p>\r\nAdicionar <b> plugins </b> ao seu Seo Panel para <b> estender os recursos </b> de acordo com a sua exigência.\r\n<A href = \\"<?=SP_PLUGINSITE?>\\" Target = \\"_blank\\"> Seo Panel plugins </a> são fornecidos por Seo Panel e e por terceiros.\r\nVocê também pode facilmente desenvolver <b> </b> plugins de SEO para seu painel de seo.\r\nVocê pode <a href = \\"<?=SP_PLUGINSITE?> \\"Target =\\" _blank \\"> apresentar </a> o seu plugin para Seo, Seo Panel vai publicar <b> </b> no nosso site após testarmos o plugin.\r\n</P>\r\n<p>\r\n<A href = \\"<?=SP_PLUGINSITE?>\\" Target = \\"_blank\\"> Visite este link para obter os plugins para o Seo Panel </a>\r\n</P>\r\n<br>\r\n</Li>\r\n<li>\r\n<h1>Fale Connosco </h1>\r\n<p>\r\nEntre em contacto connosco para esclarecer qualquer dúvida sobre as ferramentas de <b>Seo Panel, plugins e funcionalidades etc </b> usando o link abaixo.\r\n</P>\r\n<p>\r\n<A href = \\"<?=SP_CONTACT_LINK?>\\" Target = \\"_blank\\"> Visite este link para contacto connosco </a>\r\n</P>\r\n<br>\r\n</Li>\r\n<li>\r\n <h1>Tickets de Suporte </h1>\r\n<p>\r\nPara obter suporte técnico <b> </b> da equipe do Seo Panel para configurar as ferramentas do <b>Seo Panel, plugins e\r\nrecursos </b> Por exemplo:. Para configurar o cron para verificador de posição da palavra-chave.\r\n</P>\r\n<p>\r\n<A href = \\"<?=SP_SUPPORT_LINK?>\\" Target = \\"_blank\\"> Visite este link para criar um ticket de suporte </a>\r\n</P>\r\n<br>\r\n</Li>\r\n<li>\r\n<h1>Relatar bugs </h1> \r\n<p>\r\nRelatório de <b> bugs </b> sobre ferramentas do <b> Seo painel, plugins e funcionalidades etc </b> usando o link abaixo.\r\npor favor, ajude-nos a melhorar as características das versões vindouras.\r\n</P>\r\n<p>\r\n<A href = \\"<?=SP_SUPPORT_LINK?> \\"Target =\\"_blank\\"> Visite este link para relatar bugs </a>\r\n</P>\r\n<br>\r\n</Li>\r\n</Ul>\r\n</Fieldset> ', '2010-11-18 07:21:31'),
(3491, 'pt', 'support', 'support_cont2', '<fieldset>\r\n<legend> Recursos on-line do Seo Panel </legend>\r\n<ul class=\\"infobox\\"> \r\n\r\n<li>\r\n<h1>Guia de Ajuda do Seo Panel</h1>\r\n<p>\r\nVocê pode ver a <a href = \\"<?=SP_HELP_LINK?>\\" Target = \\"_blank\\"> documentação de ajuda</A> do Seo Panel , que contém documentos dos recursos para as ferramentas do SEO Panel, plugins e afins.\r\n<br> É o melhor lugar na internet para <b> obter ajuda </b> sobre SEO Panel. Esperamos que você<b> possa contribuir </b> para o guia de ajuda do Seo Panel , caso você encontre erros ou coisas que faltam.\r\n</P>\r\n<p>\r\n<A href = \\"<?=SP_HELP_LINK?>\\" Target = \\"_blank\\"> Visite o guia de ajuda do Seo Panel </A>\r\n</P>\r\n<br>\r\n</Li>\r\n<li>\r\n<h1> Fórum do Seo Panel </h1>\r\n<p>\r\nUm lugar para discutir sobre a primeiro software livre do mundo de <b> controle de Seo</b>.\r\nÉ o melhor local para encontrar as respostas para <b>as suas perguntas </b> sobre SEO Panel.\r\n<br> Também você pode <b> partilhar</b> a sua experiência <b></B>, enquanto usa o SEO Panel para optimizar os seus sites.\r\n</P>\r\n<p>\r\n<A href = \\"<?=SP_FORUM_LINK?>\\" Target = \\"_blank\\"> Visite Fórum do Seo Panel </a>\r\n</P>\r\n<br>\r\n</Li>\r\n</Ul>\r\n</Fieldset> ', '2010-11-18 07:21:31'),
(3492, 'pt', 'support', 'support_cont3', '<fieldset>\r\n<legend> Doações para Seo Panel </legend>\r\n<ul class=\\"infobox\\"> \r\n<li>\r\n<h1> Doações para Seo Panel - Primeiro software livre de controle Seo do mundo </h1>\r\n<p>\r\n<b> Doe </b> para o suporte do Seo Panel, o primeiro Seo de código aberto do mundo.\r\nEstamos planear <b> acrescentar e melhorar </b> características do Seo Panel no futuro.\r\n<br> Só com o seu apoio é nós podemos alcançar nossos objectivos.\r\nSe você acha que o Seo Panel preenche os <b>requisitos</b>, por favor doe alguma quantia para a equipa do Seo Panel.\r\n<br> Vamos <b> publicar </b> seu nome e informações do seu site <a href = \\"<?=SP_DONATE_LINK?>\\"\r\ntarget = \\"_blank\\"> página de doações </a>, quando recebermos a sua doação.\r\n</P>\r\n<p>\r\n<A href = \\"<?=SP_DONATE_LINK?>\\" Target = \\"_blank\\"> Visite este link para doar para seo painel </a>\r\n</P>\r\n<br>\r\n</Li>\r\n</Ul>\r\n</Fieldset> ', '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 <b> 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', '<b>$100 Bağış yap</b> ve <b>sponsor ol</b> 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 <b>Devam</b> 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 <b>Devam</b> 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 <b>Devam</b> 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 <b>Devam</b> 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 <b>Yeniden Yükle</b> veya <b>Geç</b>', '2012-11-11 13:13:26'),
(3744, 'tr', 'directory', 'nodirnote', 'Hiçbir <b> 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 <b>Website</b seçin ve sonra <b>Devam</b> tıklayın.', '2012-11-11 13:13:26'),
(3752, 'tr', 'directory', 'selectwebsiteschecksub', '<b>Devam</b> Dizin listesi sunulması için bir <b>Website</b> 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 <b>Devam</b> 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', ' کلیک کنید </b> ادامه <b> بر روی </b> در هر خط <b> برای دیدن رتبه در گوگل والکسا \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', '<b> ادامه </b>روی گزینه \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', '<b>صد دلار</b> پرداخت کنيد و <b>اسپانسر</b> سئوپنل شويد.', '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', ' کلیک کنید </b> ادامه <b> برای تولید گزارشات بر روی ', '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', 'کلیک کنید بر <b>اقدام </b> برای برسی وضعیت مسیر', '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لطفا کلیک کنید بر <b> بار گذاری دوباره </b> یا <b> پرش </b>', '2012-05-13 01:11:24'),
(3984, 'fa', 'directory', 'nodirnote', 'هیچ <b> فعالی</b> مسیری پیدا نشد ', '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', 'انتخاب کن <b> وب سایت </b> برای <b> اقدام </b> بررسی مسیر توابع را', '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', 'وترد کنید آدرس ها را <b> در هر خط یکی </b> . \r\nکلیک کنید بر روی <b> اقدام </b> \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', ' <b> در هر خط یکی </b> برای چک کردن لینک دهنده ها آدرس ها راوارد کنید', '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', 'Κάντε κλικ στο <b>Ανάθεση</b> για να δημιουργήσετε ένα 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 <b>ένα σε κάθε γραμμή</b>. Κάντε κλικ στο <b>Ανάθεση</b> για να εξετάσετε τα 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', 'Επιλέξτε <b>Ανάθεση</b> για τον Έλεγχο Κατάστασης Καταλόγου. ', '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', 'Ο κατάλογος καταχωρίσεων δεν βρέθηκε στην σελίδα καταχώρισης. Παρακαλώ κάντε κλικ στην <b>Επαναφόρτωση</b> ή <b>Παράβλεψη</b> ', '2014-01-20 16:07:08'),
(4126, 'el', 'directory', 'nodirnote', 'Δεν βρέθηκε <b>Ενεργός</b> κατάλογος', '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', 'Επιλέξτε ένα <b>Website</b> για <b>Ανάθεση</b> καταχώρισης καταλόγου.<br>Ελέγξτε <b> τον κατάλογο χωρίς captcha</b> για καταχώριση σε κατάλογο χωρίς captcha', '2014-01-20 16:07:08'),
(4134, 'el', 'directory', 'selectwebsiteschecksub', 'Επιλέξτε ένα <b>Website</b> για <b>Ανάθεση</b> ελέγχου καταχώρισης καταλόγου. ', '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', '<fieldset> \r\n<legend>Seo Panel Σύστημα Υποστήριξης</legend> \r\n<ul class="infobox"> \r\n <li> \r\n <h1>Πακέτο Καταλόγου 1000</h1> \r\n <p> \r\n Σας παρέχουμε <b>1000 δωρεάν και ενεργά</b> πακέτα internet καταλόγων, ώστε να τα προσθέσετε \r\nστο seo panel σας με το<b>εργαλείο καταχώρισης καταλόγων</b>. \r\n Αυτό θα σας βοηθήσει να <b>αυξήσετε τα backlinks</b> των websites σας. \r\n Πρακτικά, η 1000 λίστα καταλόγου είναι <b>εισαγωγική</b> για να μαζευτούν χρήματα για τη <b>μελλοντική\r\n ανάπτυξη</b> του seo panel. \r\n Για να παραλάβετε την λίστα καταλόγων 1000 παρακαλώ <a href="<?=SP_DONATE_LINK?>" target="_blank">δωρίστε</a>\r\n$10 ή λιγότερο για την βελτίωση των λειτουργιών και των εργαλείων του seo panel. \r\n Αν έχετε ερωτήσεις για το πακέτο καταλόγων 1000, παρακαλώ <a href="<?=SP_CONTACT_LINK?>"\r\ntarget="_blank">επικοινωνήστε μαζί μας</a> ή ανοίξτε ένα ερώτημα στο<a href="<?=SP_SUPPORT_LINK?>"\r\ntarget="_blank">σύστημα υποστήριξης</a>. \r\n </p> \r\n <p> \r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Επισκεφτείτε αυτόν το σύνδεσμο για να δωρίσετε στο seo panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Πακέτο Τοπικών Μηχανών Αναζήτησης</h1> \r\n <p> \r\n Προσθέστε<b> domains τοπικών μηχανών αναζήτησης</b> για το google,yahoo,msn(<b>eg: www.google.de,www.google.gr\r\nκλπ</b>) στο seo panel <b> έλεγχος κατάταξης keyword</b>, ώστε να παρακολουθηθεί η απόδοση του site σας τοπικά. \r\n Για να λάβετε το πακέτο των τοπικών μηχανών αναζήτησης(σύμφωνα με τις απαιτήσεις σας) παρακαλώ <a\r\nhref="<?=SP_DONATE_LINK?>" target="_blank">δωρίστε</a> $10 ή περισσότερα για την βελτίωση των υπηρεσιών που προσφέρει το seo panel. \r\n Πριν στείλετε την δωρεά, παρακαλώ <a href="<?=SP_CONTACT_LINK?>" target="_blank">επικοινωνήστε μαζί μας</a> για να \r\nσας παρέχουμε την απαιτούμενη λίστα των domain μηχανών αναζήτησης. \r\n <br><br> \r\n Επίσης, για να προσθέσετε <b>νέες μηχανές αναζήτησης(eg:in.gr)</b> στο seo panel εργαλείο ελέγχου κατάταξης keyword,\r\nπαρακαλώ <a href="<?=SP_CONTACT_LINK?>" target="_blank">επικοινωνήστε μαζί μας</a> ή ανοίξτε ένα ερώτημα στο <a\r\nhref="<?=SP_SUPPORT_LINK?>" target="_blank">σύστημα υποστήριξης</a>. \r\n </p> \r\n <p class="visit"> \r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Κάντε κλικ εδώ για να επικοινωνήσετε μαζί μας</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Seo Panel Plugins</h1> \r\n <p> \r\n Προσθέστε <b>seo plugins</b> στο seo panel σας για να <b>επεκτίνετε τις δυνατότητες</b> σύμφωνα με τις\r\nαπαιτήσεις σας. \r\n Τα <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> υποστηρίζονται από το seo panel\r\nαλλά και sites τρίτων. \r\n Επίσης, μπορείτε εύκολα να <b>αναπτύξετε</b> seo plugins για το δικό σας seo panel. \r\n Μπορείτε να <a href="<?=SP_PLUGINSITE?>" target="_blank">καταχωρίσετε</a> το seo plugin στο seo panel και\r\nεμείς θα το <b>δημοσιεύσουμε</b> στο website σας μετά από τον <b>επανέλεγχο</b> που κάνουμε. \r\n </p> \r\n <p> \r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Κάντε κλικ εδώ για να κατεβάσετε seo panel plugins</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Επικοινωνήστε μαζί μας</h1> \r\n <p> \r\n Επικοινωνήστε μαζί μας για οποιεσδήποτε ερωτήσεις αφορούν τα <b>seo panel tools,plugins και δυνατότητες etc</b> χρησιμοποιώντας το ακόλουθο\r\nlink. \r\n </p> \r\n <p> \r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Κάντε κλικ εδώ για να επικοινωνήσετε μαζί μας</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Ερωτήματα Υποστήριξης</h1> \r\n <p> \r\n Για να έχετε <b>τεχνική υποστήριξη</b> από τη ομάδα του seo panel που αφοροούν την εγκατάσταση των <b>seo panel tools,plugins and\r\nδυνατοτήτων</b>. Π.χ.: Για εγκατάσταση cron για έλεγχο κατάταξης keyword. \r\n </p> \r\n <p> \r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Κάντε κλικ εδώ για να δημιουργήσετε ένα ερώτημα υποστήριξης</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Αναφορά Bugs</h1> \r\n <p> \r\n Αναφέρετε τα <b>bugs</b> για τα <b>seo panel tools,plugins των δυνατοτήτων κλπ</b> χρησιμοποιώντας το ακόλουθο link. \r\n Παρακαλώ βοηθήστε μας να βελτιώσουμε τις δυνατότητες στις επόμενες εκδόσεις. \r\n </p> \r\n <p> \r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Κάντε κλικ εδώ για να αναφέρετε bugs</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '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', '<fieldset> \r\n<legend>Seo Panel Online Πόροι</legend> \r\n<ul class="infobox"> \r\n \r\n <li> \r\n <h1>Οδηγός Βοηθείας Seo Panel</h1> \r\n <p> \r\n Μπορείτε να διαβάσετε την <a href="<?=SP_HELP_LINK?>" target="_blank">τεκμηρίωση του seo panel</a> στον <b>οδηγό βοηθείας</b>, ο οποίος περιλαμβάνει <b>τεκμηρίωση</b> για τα εργαλεία του seo panel, τα plugins και τα συναφή χαρακτηριστικά και δυνατότητες. \r\n <br>Είναι το καλύτερο μέρος στο internet για <b>λήψη βοήθειας</b> στο seo panel. Ελπίζουμε ότι και εσείς θα <b>συμβάλλετε</b> στον οδηγό βοήθειας του seo panel, σε περίπτωση που βρείτε σφάλματα ή στοιχεία που λείπουν.\r\n </p> \r\n <p> \r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Επισκεφθείτε τον οδηγό βοηθείας του seo panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Seo Panel Forum</h1> \r\n <p> \r\n Ένα μέρος για να συζητήσετε το πρώτο παγκοσμίως open source <b>seo control panel</b>. \r\n Είναι το καλύτερο μέρος για να βρείτε <b>απαντήσεις</b> στις <b>ερωτήσεις σας</b> για το seo panel. \r\n <br>Επίσης μπορείτε να <b>μοιραστείτε</b> την <b>εμπειρία σας</b> όσο χρησιμοποιείτε το seo panel για την βελτιστοποίηση των websites σας.\r\n </p> \r\n <p> \r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Επισκεφθείτε το seo panel forum</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2019-08-28 09:44:16'),
(4148, 'el', 'support', 'support_cont3', '<fieldset> \r\n<legend> Δωρίστε στο Seo Panel</legend> \r\n<ul class="infobox"> \r\n <li> \r\n <h1> Δωρίστε στο Seo Panel - Το πρώτο Open source seo control panel παγκοσμίως</h1> \r\n <p> \r\n <b>Δωρίστε</b> στο seo panel για την υποστήριξη του πρώτου open source seo control panel παγκοσμίως. \r\n Σχεδιάζουμε να <b>προσθέσουμε και βελτιώσουμε</b> τις δυνατότητες του seo panel στο μέλλον. \r\n <br>Μόνο με όλη την <b>υποστήριξη σας</b> μπορούμε να επιτύχουμε τους <b>στόχους</b>. \r\n Αν πιστεύετε ότι το seo panel <b>αξίζει</b> για σας, παρακαλώ δωρίστε ένα μερικό ποσό στην ομάδα του seo panel.\r\n <br>Εμείς θα <b>δημοσιεύσουμε</b> το όνομα σας και τις πληροφορίες του site στην <a href="<?=SP_DONATE_LINK?>" target="_blank">σελίδα δωρεάς</a>, μόλις παραλάβουμε την δωρεά. \r\n </p> \r\n <p> \r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Επισκεφθείτε αυτόν το σύνδεσμο για να δωρίσετε στο seo panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2019-08-28 09:44:16'),
(4149, 'da', 'backlink', 'clickproceedbacklink', 'Indtast URL''s <b> En per linie </b>. Klik på <b> Fortsæt </b> 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 <b> En per linie </b>. Klik på <b> Fortsæt </b> 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 <b>ένα σε κάθε γραμμή</b>. Κάνετε κλικ στο <b>Ανάθεση</b> για τον έλεγχο του 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', 'Κάντε κλικ στο <b>Εκκίνηση</b> για την παραγωγή αναφορών', '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 <b>Ένα σε κάθε γραμμή</b>. Κάντε κλικ στο <b>Ανάθεση</b> για να δείτε τα αποτελέσματα Κορεσμού της Μηχανής Αναζήτησης', '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を<b>一行につき1つ</b>入力してください。バックリンクをチェックするには<b>開始</b>をクリックします。', '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', 'ディレクトリ状態をチェックするには<b>開始</b>をクリック', '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', 'サブミッションページに送信カテゴリはありません。<b>リロード</b>もしくは<b>スキップ</b>をクリックしてください', '2012-11-09 09:20:41'),
(4468, 'ja', 'directory', 'nodirnote', '<b>アクティブ</b>なディレクトリはありません', '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', 'ディレクトリサブミッションを<b>実行</b>する<b>ウェブサイト</b>を選択してください。<br>キャプチャなしでディレクトリへ送信するには<b>キャプチャなしのディレクトリ</b>をチェックしてください', '2012-11-09 09:20:41'),
(4476, 'ja', 'directory', 'selectwebsiteschecksub', 'ディレクトリサブミッションチェックを<b>実行</b>する<b>ウェブサイト</b>を選択してください', '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を<b>一行につき1つ</b>入力してください。GoogleおよびAlexaランキングをチェックするには<b>開始</b>をクリックします。', '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を<b>一行につき1つ</b>入力してください。検索エンジンサチュレーション結果を確認するには<b>開始</b>をクリックします。', '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', 'レポートを生成するには<b>開始</b>をクリック', '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', '<b>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', 'サイトマップファイルを作成するには<b>開始</b>をクリック', '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', '<fieldset>\r\n<legend>Seo Panel サポートシステム</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>1000 ディレクトリパッケージ</h1> \r\n <p>\r\n <b>アクティブで検証済みの</b>インターネットディレクトリパッケージを<b>1000</b>提供しており、各自のseo panel<b>ディレクトリサブミッションツール</b>に追加して頂くことが可能です。\r\n お使いのウェブサイトの<b>バックリンク増加</b>に役立ちます。\r\n 実際、seo panelの将来開発に向け費用を集めるために1000のディレクトリリストが<b>紹介されています</b>。\r\n 1000ディレクトリリストを入手するには、seo panel機能向上のため10ドル以上を<a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">寄付</a>してください。\r\n 1000ディレクトリパッケージについてご質問がありましたら、<a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">お問合せ</a>頂くか<a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">サポートシステム</a>にてチケットを開いてください。. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">seo panelへの寄付はこちらから</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>ローカル検索エンジンパッケージ</h1> \r\n <p>\r\n googleやyahooおよびmsnの<b>ローカル検索エンジンドメイン</b><\r\nb>(例:www.google.de,www.google.fr\r\netc</b>)をseo panel<b>キーワード順位チェッカー</b>に追加すると、サイトのパフォーマンスを地域的に追跡することができます。\r\n ローカル検索エンジンパッケージを取得するには(要件に応じて)、seo panel機能向上のため10ドル以上を<a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">寄付</a>してください。\r\n 寄付をお送り頂く前に、必要な検索エンジンドメインリストを提供していただくため、<a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">お問合せ</a>ください。\r\n <br><br> \r\n また<b>新しい検索エンジン(例:baidu.com)</b>をseo panelキーワード順位チェッカーに追加するには、<a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">お問合せ</a>頂くか<a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">サポートシステム</a>にてチケットを開いてください。 \r\n </p> \r\n <p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">お問合せはこちらから</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel プラグイン</h1> \r\n <p>\r\n それぞれの要件に応じて<b>機能を拡張</b>するには<b>seoプラグイン</b>をseo panelに追加してくだださい。\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel プラグイン</a>は、seo panelおよびサードパーティサイトの両方より提供されています。\r\n 各自のseo panel用にseoプラグインを<b>開発</b>することも可能です。\r\n ご自身のseoプラグインをseo panelに<a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">送信</a>して頂くと、こちらで<b>審査</b>した後<b>公開</b>いたします。 \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">seo panelプラグインの入手はこちらから</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>お問合せ</h1> \r\n <p>\r\n <b>seo panel ツール、プラグイン、機能、etc</b>に関するご質問は、 以下のリンクよりお問合せください。 \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">お問合せはこちらから</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>サポートチケット</h1> \r\n <p>\r\n <b>seo panelツール、プラグイン、機能</b>をセットアップするにあたり、seo panelチームより<b>テクニカルサポート</b>を受けるためのものです。例:キーワード順位チェッカーにcronをセットアップする。\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">サポートチケットの作成はこちらから</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>不具合レポート</h1> \r\n <p>\r\n <b>seo panelツール、プラグイン、機能、etc</b>に関する<b>不具合</b>を報告するには、以下のリンクを使用します。 \r\n 次のバージョンで機能を向上できるよう、どうぞご協力をお願いします。 \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">不具合報告はこちらから</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2011-01-08 01:37:35'),
(4641, 'ja', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel オンラインリソース</legend>\r\n<ul class=\\"infobox\\">\r\n \r\n <li>\r\n <h1>Seo Panel ヘルプガイド</h1> \r\n <p>\r\n <b>ヘルプガイド</b>では、<a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">seo panel ドキュメント</a>を閲覧することができ、seo panelツールやプラグイン、関連機能についての<b>ドキュメント</b>があります。 \r\n <br>これは、seo panelについての<b>ヘルプを受けられる</b>インターネット上で一番の場所です。 間違いや抜けている箇所を発見された場合には、seo panelヘルプガイドに<b>貢献</b>して頂ければ幸いです。 \r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">seo panelヘルプガイドはこちらから</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel フォーラム</h1> \r\n <p>\r\n 世界初のオープンソース<b>seoコントロールパネル</b>についてディスカッションをする場です。 \r\n seo panelについての<b>あなたの疑問</b>に対して<b>答え</b>を見つけるには最適な場所です。 \r\n <br>また、seo panelを使って最適化を行ったあなたの<b>経験</b>を<b>共有</b>することもできます。 \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">seo panelフォーラムはこちらから</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2011-01-08 01:37:35'),
(4642, 'ja', 'support', 'support_cont3', '<fieldset>\r\n<legend>Seo Panelへ寄付</legend>\r\n<ul class=\\"infobox\\"> \r\n <li>\r\n <h1>Seo Panelへ寄付 - 世界初のオープンソースseoコントロールパネル</h1> \r\n <p>\r\n seo panelへ<b>寄付</b>し、世界初のオープンソースseoコントロールパネルを支援します。 \r\n 将来、seo panel機能の<b>追加、向上</b>を予定しています。 \r\n <br>あなたの<b>サポート</b>なしでは、その<b>ゴール</b>に到達できません。\r\n seo panelがあなたにとって<b>価値のある</b>ものだと感じて頂けるなら、どうかseo panelチームへ寄付をお願いします。\r\n <br>寄付して頂きましたら、あなたのお名前とサイト情報を<a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">寄付ページ</a>にて<b>公開</b>します。\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">seo panelへの寄付はこちらから</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2011-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', '<b>Δωρίστε $100</b> και γίνετε <b>υποστηρικτής</b> του 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', '<fieldset> \r\n<legend>Online zdroje SEO panelu</legend> \r\n<ul class=\\"infobox\\"> \r\n \r\n <li> \r\n <h1>Nápověda SEO panelu</h1> \r\n <p> \r\n Můžete se podívat do <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">dokumentace SEO panelu</a> v\r\n<b>nápovědě</b>, která obsahuje <b>dokumentaci</b> k SEO panelu, nástrojům, pluginům a k příslušným vlastnostem. \r\n <br>Je to to nejlepší místo na internetu, kde <b>získáte nápovědu</b> o SEO panelu. Doufáme, že <b>přispějete</b> do nápovědy SEO panelu v případě, že objevíte chyby nebo chybějící věci. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Podívejte se do nápovědy SEO panelu</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Forum SEO panelu</h1> \r\n <p> \r\n Místo k diskuzi o prvním otevřeném <b>ovládacím panelu pro SEO</b> na světe.\r\nJe to nejlepší místo, kde najít <b>odpovědi</b> na vaše <b>otázky</b> o SEO panelu.\r\n <br>Můžete také <b>sdílet</b> vaše <b>zkušenosti</b> z toho, jak pomocí SEO panelu optimalizujete vaše stránky. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Navštivte forum SEO panelu</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2011-03-23 12:41:17'),
(4680, 'cs', 'support', 'support_cont3', '<fieldset> \r\n<legend>Podpořte finančně SEO Panel</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>Podpořte finančně SEO Panel - první open source ovládací panel pro SEO na světě</h1> \r\n <p> \r\n <b>Podpořte finančně</b> Seo Panel - první open source ovládací panel pro SEO na světě \r\n Chceme v budoucnu <b>přidávat a vylepšovat</b> funkce SEO panelu. \r\n <br>Pouze s vaší <b>podporou</b> můžeme dosáhnout našich <b>cílů</b>. \r\n Pokud máte pocit, že SEO Panel je pro vás <b>přínosem</b>, prosíme podpořte finančně určitou částkou tým SEO Panelu. \r\n <br>Jakmile obdržíme vaši finanční podporu, <b>zveřejníme</b> vaše jméno a informace o vašich stránkách na <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">stránce s dary</a>. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Navštivte tento odkaz, abyste mohli finančně podpořit SEO Panel.</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2011-03-23 12:41:17'),
(4681, 'cs', 'backlink', 'clickproceedbacklink', 'Vložte <b>po jednom URL na každou řádku</b>. Klikněte na <b>Provést</b>, 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,<b>每行一條</b>。單擊<b>處理</b>開始檢測反向鏈接', '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', '點擊<b>處理</b> 以檢查目錄狀態', '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', '在提交頁面未找到提交類別。請點擊<b>重載</b>或者<b>跳過</b>', '2014-01-09 20:30:58'),
(4844, 'cn', 'directory', 'nodirnote', '未發現<b>已激活的</b>目錄', '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', '選擇一個<b>站點</b> 來<b>處理</b> 目錄提交。 <br>檢查<b>沒有驗證碼的目錄</b> 來提交沒有驗證碼的目錄', '2014-01-09 20:30:58'),
(4852, 'cn', 'directory', 'selectwebsiteschecksub', '選擇一個<b>站點</b> 來<b>處理</b> 檢查目錄提交信息', '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,<b>每行一條</b>。點擊<b>處理</b>開始檢查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,<b>每行一條</b>。點擊<b>處理</b>開始檢查搜索引擎搜錄報告', '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', '點擊<b>處理</b>開始生成報告', '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', '<b>捐贈$100</b> 成為Seo Panel的一個<b>贊助人</b>.', '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', '點擊<b>處理</b>創建站點地圖文件', '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', '<fieldset>\r\n<legend>Seo Panel 幫助系統</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>1000 目錄包</h1>\r\n <p>\r\n 我們提供<b>超過1000個可用的</b>網絡目錄包,加到\r\n你的seo panel <b>目錄提交工具</b>.\r\n 它會幫助你<b>增加反向鏈接</b>你的站點.\r\n 在我們獲得捐贈後為seo panel<b>以為未來發展</b>,您將獲得<b>推薦</b>的1000目錄列表,.\r\n 想要獲得1000目錄列表請<a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">捐贈</a>\r\n$10 或者更多 來改善 seo panel 的功能 .\r\n 如果你有任何問題關於1000目錄包,請<a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">聯繫我們</a>或者打開一個頁面<a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">幫助系統</a>.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">訪問這個鏈接捐贈seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>本地搜索引擎包</h1>\r\n <p>\r\n 增加<b>本地搜索引擎域</b>google,yahoo,msn(<b>例如: www.google.de,www.google.fr\r\netc</b>) seo panel <b>關鍵字position checker</b>, 追踪你的站點行為本地.\r\n 為了獲得本地搜索引擎包(根據你的需求) 請<a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">捐贈</a> $10或者更多來改善功能seo\r\npanel.\r\n 捐贈之前, 請<a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">聯繫我們</a> to\r\n提供給我們需要的搜索引擎域名列表.\r\n <br><br>\r\n 增加<b>新的搜索引擎(例如:baidu.com)</b>你的seo panel關鍵字position checker,\r\n請<a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">聯繫我們</a>或者打開一個頁面在<a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">幫助系統</a>.\r\n </p>\r\n <p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">訪問這個鏈接聯繫我們</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel插件</h1>\r\n <p>\r\n 增加<b>seo插件</b> 你的seo panel <b>擴展功能</b>根據你的\r\n需求.\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel插件</a>由seo panel\r\n和第三方站點提供.\r\n 你可以easily <b>develop</b> seo插件來你的seo panel.\r\n 你可以<a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">提交</a>你的seo plugin seo panel 並且\r\n我們會<b>發布</b>到我們的站點在<b>審查</b>之後.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">訪問這個鏈接為了獲得seo panel插件</a>\r\n </p>\r\n <br>\r\n </li>\r\n <li>\r\n <h1>聯繫我們</h1>\r\n <p>\r\n 聯繫我們來任何問題關於<b>seo panel 工具,插件和功能等等</b> 通過以下鏈接.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">訪問這個鏈接聯繫我們</a>\r\n </p>\r\n <br>\r\n </li>\r\n <li>\r\n <h1>技術支持</h1>\r\n <p>\r\n 為了獲得<b>技術支持</b>從seo panel團隊設置<b>seo panel工具,插件和\r\n功能</b>. 例如: 設置cron來關鍵字位置checker.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">訪問這個鏈接創建一個支持ticket</a>\r\n </p>\r\n <br>\r\n </li>\r\n <li>\r\n <h1>報告Bugs</h1>\r\n <p>\r\n 報告<b>bugs</b> 關於<b>seo panel 工具,插件和功能等等</b> 通過以下鏈接.\r\n 請幫助我們在下個版本來改善功能.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">訪問這個鏈接報告bugs</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2011-05-04 13:59:39'),
(5011, 'cn', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel 在線資源</legend>\r\n<ul class=\\"infobox\\">\r\n \r\n <li>\r\n <h1>Seo Panel 幫助嚮導</h1>\r\n <p>\r\n 你可以看<a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">seo panel文檔</a>在\r\n<b>幫助嚮導</b>, 它包括<b>文檔</b>來seo panel 工具,插件和相關的\r\n功能.\r\n <br>這是在因特網獲得關於seo panel幫助的<b>最好的地方</b>.如果你發現錯誤或者缺少東西,我們希望你seo panel 幫助嚮導<b>報告</b>.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">訪問seo panel 幫助嚮導</a>\r\n </p>\r\n <br>\r\n </li>\r\n <li>\r\n <h1>Seo Panel論壇</h1>\r\n <p>\r\n 一個地方討論關於世界上第一款開源的<b>seo control panel</b>.\r\n 這是最好的地方找到<b>答案</b> <b>你的問題</b> 關於seo panel.\r\n <br> 你可以<b>分享</b>你的<b>經驗</b> 在使用seo panel來操作你的\r\n站點.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">訪問seo panel論壇</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>\r\n', '2011-05-04 13:59:39'),
(5012, 'cn', 'support', 'support_cont3', '<fieldset>\r\n<legend>捐贈 Seo Panel</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>捐贈Seo Panel - 世界上第一款開源的seo control panel</h1>\r\n <p>\r\n <b>捐贈</b> seo panel支持第一款開源的seo control panel世界上.\r\n 我們計劃<b>增加和提高</b> 功能seo panel 的在未來.\r\n <br>有了你的<b>支持</b>我們才能達到我們的<b>目標</b>.\r\n 如果你覺得seo panel是<b>值得</b>你擁有, 請捐贈支持seo panel 團隊.\r\n <br>我們<b>會公佈</b> 你的名字和站點信息在<a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">捐贈頁面</a>, 一旦我們獲得捐贈.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">訪問這個鏈接捐贈seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2011-05-04 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. <br>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<br /> 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 <b>escape</b> 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 устарела. <br>Пожалуйста, скачайте новую версию', '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は最新版ではありません。 <br>新バージョンをダウンロードしてください。', '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', 'スクリプトの実行を停止するには<b>エスケープ</b>キーを押して下さい', '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', 'Нажмите <b>пробел</b> для остановки работы скрипта', '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. <br>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 <b>escape</b> 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安装没有更新. <br>请下载新版本', '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安裝沒有更新. <br>請下載新版本', '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å <b> 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å <b> Reload </ b> eller <b> Spring </ b>', '2013-01-15 03:40:16'),
(5569, 'da', 'directory', 'nodirnote', 'Ingen <b> Aktive</b> 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 <b>Websted</b> for <b>forsætte</b> tilmeldingen i biblioteket. <br> tjek <b> biblioteker uden captcha </b> for at tilmelde biblioteker uden captcha', '2013-01-15 03:40:16'),
(5577, 'da', 'directory', 'selectwebsiteschecksub', 'Vælg et <b>Websted</b> for <b>Forsætte</b> 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.<br />Моля, изтеглете новата версия.', '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', 'Натиснете клавиша <b>Escape</b> за да спрете изпълнението на скрипта', '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. <br> 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 <b>anulare</b> 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 <b>Escape</b> 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. <br>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', '<b>ESC</b> 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 που χρησιμοποιείτε δεν είναι αναβαθμισμένη. <br>Παρακαλώ κατεβάστε την τελευταία έκδοση', '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', 'Πατήστε το πλήκτρο <b>escape</b> της εκτέλεσης της διεργασίας', '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. <br> 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 <b>Echap/Esc</b> 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. <br>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.<br/>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. <br>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', 'Premi<b>esc</b> 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 <b>escape</b> 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 <b>ESC escape</b> 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 <b>Provést</b>.', '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 <b>Znovu načíst</b> nebo <b>Přeskočit</b>', '2011-07-12 16:28:25'),
(6430, 'cs', 'directory', 'nodirnote', 'Nebyly nalezeny žádné <b>Aktivní</b> 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 <b>Website</b> aby se vkládání do adresářů mohlo <b>Provést</b>.<br>Zkontrolujte <b>Adresáře bez ověření captcha</b> pro odeslání do adresářů bez captcha.', '2011-07-12 16:28:25'),
(6439, 'cs', 'directory', 'selectwebsiteschecksub', 'Vyberte <b>Website</b> aby se mohla <b>Provést</b> 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 <b>Escape</b> 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', 'سئو پنل شما به روز نیست . <br> لطفا ورژن جدید را دریافت کنید ', '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', '<fieldset> \r\n<legend>منابع آنلاین سئو پنل</legend> \r\n<ul class=\\"infobox\\"> \r\n \r\n <li> \r\n <h1>راهنمای سئو پنل </h1> \r\n <p> \r\n شما می توانید ببینید <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\"> را مدارک سئو پنل </a> در\r\n<b>راهنما </b>, این شمال میشه <b>مدارک </b> ابزارات سئو پنل و ویژگی های مربوط به آن \r\n. \r\n <br>این بهترین مکان در اینترنت است که <b>کمک کرده بشه </b> درباره سئو پنل \r\n<b>کمک می کنیم </b> که راهنمای سئو پنل ,اگر شما ایرادی پیدا کردید یا چیزی از دست رفت . \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">نگاه کن به راهنمای سئو پنل </a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>فرم سئو پنل </h1> \r\n <p> \r\n جایی برای بحث درباره اولین نرم افزار آزاد سئو در جهان <b>سئو کنترل پنل </b>. \r\n بهترین جا برای پیدا کردن <b>جواب </b> to <b>سوال هایتان </b> درباره پنل \r\n <br>همچنین شما می توانید <b>به اشتراک بگذارید </b> <b>تجربیاتتان را </b> وقتی استفاده می کنید از سئو پنل برای بهبود سایتتان \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">مشاهده کنید فرم سئو پنل را </a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2012-04-30 08:02:03'),
(6552, 'fa', 'support', 'support_cont3', '<fieldset> \r\n<legend>پشتیبانی مالی </legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1> پشتیبانی کن از سئو پنل , اولین نرم افزار آزاد سئو در دنیا</h1> \r\n <p> \r\n <b>پشتیبانی</b> کن از سئو پنل , اولین نرم افزار آزاد سئو در دنیا\r\n ما برنامه داریم <b>اضافه کنیم و بهبود ببخشیم </b> ویژگی های سئو پنل را در آینده \r\n <br>با تمام <b>پشتیبانی های شما </b> فقط ما میتوانیم دست پیدا کینم به <b>اهدافمان </b>. \r\n اگر شما احساس می کنید که سئو پنل <b>ارزش </b> برای شما لطفا پشتیبانی کنید از تیم نرم افزاری آن \r\n <br>ما <b>انتشار خواهیم داد </b> اسم شما و اطلاعات شما را در <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">صفحه پشتیبانی مالی </a>, اولین باری که ما دریافت کنیم کمک را . \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">برای کمک مالی کردن روی این لینک کلیک کنید </a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '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, <b>každé na samostatnou řádku</b>. Klikněte na <b>Provést</b>, 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 <b>na každý řádek jedno</b>. Klikněte na <b>Provést</b> 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 <b>Provést</b>', '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', '<fieldset>\r\n<legend>Seo Panel Destek Sistemi</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>1000 Directory (Link Listesi - Rehber) Paketi</h1> \r\n <p>\r\n Biz <b>1000 ücretsiz ve onaylı</b> link listesi paketi sağlıyoruz , seo panelinize\r\neklemek için <b>directory ekleme aracı</b>.\r\n Bu websitenize ait <b>backlinklerinizi</b> arttıracak.\r\n Aslında 1000 directory link listesi seo panel özelliklerini gelistirmek için gerekli tutarı\r\nkarşılayabilmek için <b>tanıtıldı</b>\r\n</b>.\r\n 1000 directory link listesini almak için lütfen seo paneli geliştirebilmemiz için<a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">bağış\r\nyapınız</a>. $10 veya daha fazla.\r\n Eğer 1000 directory paketi hakkında sorunuz varsa, lütfen <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">bizimle irtibata geçiniz</a> ya da <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">destek sisteminden</a> bir konu açınız. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Seo Panel\\''e Bağış Yap Sayfası</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Yerel Arama Motoru Paketi</h1> \r\n <p>\r\n Ülkenize ait<b>yerel arama motoru</b> linklerini seo panele giriniz örnek; google,yahoo,msn(<b>eg: www.google.de,www.google.fr\r\ngibi</b>) ve <b>Anahtar kelimeleri</b> 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<a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">bağış yapınız</a> $10 veya daha fazla.\r\n Bağışı göndermeden önce, lütfen hangi domain için başvurduğunuzu bildirmek için\r\n<a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">bizimle iletişime geçin.</a>\r\n <br><br> \r\n Ayrıca seo panelinize anahtar kelime kontrolu için <b>yeni bir arama motoru(eg:baidu.com)</b> eklemeden önce,\r\nlütfen <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">bizimle iletişime</a> geçin ya da <a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">destek sisteminde</a> bir konu açın. \r\n </p> \r\n <p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">İletişim Sayfasını Ziyaret Edin</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Pluginleri</h1> \r\n <p>\r\n İhtiyaçlarınıza göre seo panelinizi geliştirmek için <b>seo pluginler</b> ekleyin.\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel pluginler</a> hem seo panel hemde üçüncü parti\r\nsiteleri desteklemektedir.\r\n Seo panel pluginleri kendi seo paneliniz için kolayca <b>geliştirebilirsiniz</b>.\r\n Kendi pluginlerinizi seo panenle <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">gönderebilirsiniz</a> ve\r\nBiz <b>inceledikten</b> sonra <b>paylaşırız</b>. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo Panel Plugin Edinmek İçin Tıklayınız</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>İletişim</h1> \r\n <p>\r\n <b>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</b>\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">İletişim Sayfası</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Destek Konusu</h1> \r\n <p>\r\n seo panel araçları, pluginleri veya herhangi bir konu hakkında <b>teknik destek</b>\r\nalmak için konu açınız</b>. örnek: anahtar kelime kontrol ayarları hatası.\r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Destek Konusu Açmak için Tıklayınız</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Bugları- Hataları Rapor Et</h1> \r\n <p>\r\n Lütfen bir sonraki versiyonda hataları düzelmek için bize destek olun ve\r\n bugları-hataları bize bilidirin. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Hata Bildirme Sayfası için Tıkla</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2011-07-15 19:03:36'),
(6666, 'tr', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Kaynakları</legend>\r\n<ul class=\\"infobox\\">\r\n \r\n <li>\r\n <h1>Seo Panel Yardım Rehberi</h1> \r\n <p>\r\n Seo Panel kullanım <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">dökümanı</a>,\r\niçerisinde seo panel için araçlar, pluginler ve ilişkili konular var.\r\n <br><b>Yardım almak</b> için internettiki en iyi seo panel yardım rehberidir. Ümüd ederizki\r\nseo panel hakkında unuttuğumuz ya da kaçırdığımız bir konu hakkında katkıda bulunursunuz. \r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Seo Panel Yardım Rehberi Ziyaret Edin</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n Dünyanın ilk open source </b>seo paneli</b> hakkında tartışmalar yardımlar. \r\n Seo panel hakkında <b>sorularınıza</b> en iyi <b>cevapları</b> bulabileceğiniz tek yer. \r\n <br>sitenize arama motoru optimizasyonu yaparken seo panel <b>tecrübelerinizide</b>\r\npaylaşabilirsiniz.. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Seo panel forumu ziyaret edin</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2011-07-15 19:03:36'),
(6667, 'tr', 'support', 'support_cont3', '<fieldset>\r\n<legend>Seo Panel\\''e Bağış</legend>\r\n<ul class=\\"infobox\\"> \r\n <li>\r\n <h1>Seo Panel\\''e Bağış Yap - Dünyadaki ilk open source seo kontrol paneli</h1> \r\n <p>\r\n <b>Bağış yaparak</b>dünyadaki ilk open source seo kontrol paneline destek olun.\r\n Seo panele yeni özellikler <b>eklemeyi ve geliştirmyi</b> planlıyoruz. \r\n <br>Sadece sizin <b>desteğinizle</b> hedeflerimizi gerçekleştirebiliriz.\r\n Eğer seo panel sizin için de <b>değer kazandırıcı</b> ise, lütfen seo panel için bağış yapın.\r\n <br>İsminiz ve site bilgilerinizi bağışı aldıktan sonra <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">Bağış Sayfasında</a> <b>yayınlıyacağız</b>.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Bağış Yapmak için Tıklayınız</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2011-07-15 19:03:36'),
(6668, 'ar', 'backlink', 'clickproceedbacklink', 'اكتب رابط العناوين<b>كل في سطر</b>.إضغط على <b>لتفعيل</b>للتاكد من صحة الروابط المتصلة.', '2011-07-29 14:44:50'),
(6670, 'ar', 'button', 'Cancel', 'إلغاء', '2014-01-09 00:20:10'),
(6669, 'ar', 'backlink', 'Saved backlink results of', 'نتائج الروابط المتصلة من', '2011-07-29 14:44:50'),
(6671, 'ar', 'button', 'Check Status', 'تفقد الحالة', '2014-01-09 00:20:10'),
(6672, 'ar', 'button', 'Proceed', 'تفعيل', '2014-01-09 00:20:10'),
(6673, 'ar', 'button', 'Reload', 'إعادة تحميل', '2014-01-09 00:20:10'),
(6674, 'ar', 'button', 'Show Details', 'عرض التفاصيل', '2014-01-09 00:20:10'),
(6675, 'ar', 'button', 'Show Records', 'إعرض السجلات', '2014-01-09 00:20:10'),
(6676, 'ar', 'button', 'Skip', 'تخطى', '2014-01-09 00:20:10'),
(6677, 'ar', 'button', 'Submit', 'إضغط هنا', '2014-01-09 00:20:10'),
(6678, 'ar', 'common', 'Action', 'نشاط', '2019-05-25 21:59:04'),
(6679, 'ar', 'common', 'Activate', 'تفعيل', '2019-05-25 21:59:04'),
(6680, 'ar', 'common', 'Active', 'مفعل', '2019-05-25 21:59:04'),
(6681, 'ar', 'common', 'Admin Panel', 'لوحة اللإدارة', '2019-05-25 21:59:04'),
(6682, 'ar', 'common', 'Alexa Rank', 'ترتيب أليكسا', '2019-05-25 21:59:04'),
(6683, 'ar', 'common', 'All', 'الجميع', '2019-05-25 21:59:04'),
(6684, 'ar', 'common', 'Category', 'قسم', '2019-05-25 21:59:04'),
(6685, 'ar', 'common', 'contact', 'إتصل', '2019-05-25 21:59:04'),
(6686, 'ar', 'common', 'copyright', 'جميع الحقوق محفوظة www.seopanel.in [year] © حقوق النشر والإستخدام', '2019-05-25 21:59:04'),
(6687, 'ar', 'common', 'Country', 'المنطقة', '2019-05-25 21:59:04'),
(6688, 'ar', 'common', 'Crawl Meta Data', 'نمو بيانات الأوسمة', '2019-05-25 21:59:04'),
(6689, 'ar', 'common', 'Date', 'التاريخ', '2019-05-25 21:59:04'),
(6690, 'ar', 'common', 'Delete', 'حذف', '2019-05-25 21:59:04'),
(6691, 'ar', 'common', 'Details', 'التفاصيل', '2019-05-25 21:59:04'),
(6692, 'ar', 'common', 'Directory', 'القسم', '2019-05-25 21:59:04'),
(6693, 'ar', 'common', 'Donate', 'تبرع للبرنامج', '2019-05-25 21:59:04'),
(6694, 'ar', 'common', 'Edit', 'تعديل', '2019-05-25 21:59:04'),
(6695, 'ar', 'common', 'Entry cannot be blank', 'المدخلات لايمكن ان تكون خاليه', '2019-05-25 21:59:04'),
(6696, 'ar', 'common', 'entrynotvalid', 'المدخلات لايمكن ان تكون صحيحة', '2019-05-25 21:59:04'),
(6697, 'ar', 'common', 'failed', 'فشل', '2019-05-25 21:59:04'),
(6698, 'ar', 'common', 'forum', 'المنتدى', '2019-05-25 21:59:04'),
(6699, 'ar', 'common', 'Found', 'تم العثور عليه', '2019-05-25 21:59:04'),
(6700, 'ar', 'common', 'Google Pagerank', 'ترتيب بموقع جوجل', '2019-05-25 21:59:04'),
(6701, 'ar', 'common', 'help', 'مساعدة', '2019-05-25 21:59:04'),
(6702, 'ar', 'common', 'hidenews', 'إخفي أخبار لوحة تحكم البحث', '2019-05-25 21:59:04'),
(6703, 'ar', 'common', 'Id', 'رقم', '2019-05-25 21:59:04'),
(6704, 'ar', 'common', 'Inactivate', 'تعطيل', '2019-05-25 21:59:04'),
(6705, 'ar', 'common', 'Inactive', 'غير فعال', '2019-05-25 21:59:04'),
(6706, 'ar', 'common', 'Invalid characters', 'أحرف غير صالحة', '2019-05-25 21:59:04'),
(6707, 'ar', 'common', 'Invalid code entered', 'إدخال كود خاطئ', '2019-05-25 21:59:04'),
(6708, 'ar', 'common', 'Invalid email address entered', 'إدخال بريد خاطئ', '2019-05-25 21:59:04'),
(6709, 'ar', 'common', 'Invalid value', 'قيمة خاطئة', '2019-05-25 21:59:04'),
(6710, 'ar', 'common', 'Keyword', 'كلمة رئيسية للبحث', '2019-05-25 21:59:04'),
(6711, 'ar', 'common', 'Keywords', 'كلمات رئيسية للبحث', '2019-05-25 21:59:04'),
(6712, 'ar', 'common', 'lang', 'اللغة', '2019-05-25 21:59:04'),
(6713, 'ar', 'common', 'My Account', 'حسابي', '2019-05-25 21:59:04'),
(6714, 'ar', 'common', 'Name', 'الإسم', '2019-05-25 21:59:04'),
(6715, 'ar', 'common', 'No', 'لا', '2019-05-25 21:59:04'),
(6716, 'ar', 'common', 'No Keywords Found', 'لايوجد كلمات بحث عثر عليها', '2019-05-25 21:59:04'),
(6717, 'ar', 'common', 'No Records Found', 'لايوجد مدخلات', '2019-05-25 21:59:04'),
(6718, 'ar', 'common', 'noactivetools', 'لم يوجد ادوات فعاله للوحة تحكم البحث', '2019-05-25 21:59:04'),
(6719, 'ar', 'common', 'nowebsites', 'لايوجد مواقع بحث', '2019-05-25 21:59:04'),
(6720, 'ar', 'common', 'password632', 'كلمة المرور يجب ان تتكون من 6 الى 32 حرف و رقم', '2019-05-25 21:59:04'),
(6721, 'ar', 'common', 'passwordnotmatch', 'كلمة المرور لم تتطابق', '2019-05-25 21:59:04'),
(6722, 'ar', 'common', 'Period', 'حتى تاريخ', '2019-05-25 21:59:04'),
(6723, 'ar', 'common', 'Priority', 'الاهمية', '2019-05-25 21:59:04'),
(6724, 'ar', 'common', 'Profile', 'الملف الشخصي', '2019-05-25 21:59:04'),
(6725, 'ar', 'common', 'Rank', 'الترتيب', '2019-05-25 21:59:04'),
(6726, 'ar', 'common', 'Reports', 'التقارير', '2019-05-25 21:59:04'),
(6727, 'ar', 'common', 'Results', 'النتائج', '2019-05-25 21:59:04'),
(6728, 'ar', 'common', 'Search Engine', 'محرك البحث', '2019-05-25 21:59:04'),
(6729, 'ar', 'common', 'Select', 'إختر', '2019-05-25 21:59:04'),
(6730, 'ar', 'common', 'Seo Plugins', 'إضافات لوحة تحكم البحث', '2019-05-25 21:59:04'),
(6731, 'ar', 'common', 'Seo Tools', 'أدوات لوحة تحكم البحث', '2019-05-25 21:59:04'),
(6732, 'ar', 'common', 'Sign out', 'تسجيل خروج', '2019-05-25 21:59:04'),
(6733, 'ar', 'common', 'Sign Up', 'تسجيل جديد', '2019-05-25 21:59:04'),
(6734, 'ar', 'common', 'signin', 'تسجيل دخول', '2019-05-25 21:59:04'),
(6735, 'ar', 'common', 'Status', 'الحالة', '2019-05-25 21:59:04'),
(6736, 'ar', 'common', 'Support', 'الدعم الفني', '2019-05-25 21:59:04'),
(6737, 'ar', 'common', 'Total', 'المجموع', '2019-05-25 21:59:04'),
(6738, 'ar', 'common', 'Url', 'الرابط', '2019-05-25 21:59:04'),
(6739, 'ar', 'common', 'User', 'العضو', '2019-05-25 21:59:04'),
(6740, 'ar', 'common', 'User Panel', 'لوحة تحكم العضو', '2019-05-25 21:59:04'),
(6741, 'ar', 'common', 'Website', 'الموقع', '2019-05-25 21:59:04'),
(6742, 'ar', 'common', 'Yes', 'نعم', '2019-05-25 21:59:04'),
(6743, 'ar', 'website', 'Edit Website', 'تعديل الموقع', '2011-07-30 03:31:19'),
(6744, 'ar', 'website', 'plscrtwebsite', 'الرجاء إنشـاء الموقع قبل إستخدام إضافات محرك البحث او أدواته.', '2011-07-30 03:31:20'),
(6745, 'ar', 'website', 'Website already exist', 'الموقع مضاف مسبقا', '2011-07-30 03:31:20'),
(6746, 'ar', 'website', 'yourwebalreday', 'موقعك إن قمت بإنشـائه من قبل.', '2011-07-30 03:31:20'),
(6747, 'ar', 'user', 'Edit User', 'تعديل العضو', '2011-07-30 03:33:17'),
(6748, 'ar', 'user', 'Saved My Profile Details', 'إحفظ متفاصيل ملفي الشخصي', '2011-07-30 03:33:17'),
(6749, 'ar', 'sitemap', 'Change frequency', 'قم بتغيير التردد', '2011-07-30 03:36:19'),
(6750, 'ar', 'sitemap', 'clickproceedsitemap', 'إضغط على <b>تفعيل</b> لإنشاء خريطة الموقع.', '2011-07-30 03:36:19'),
(6751, 'ar', 'sitemap', 'Download sitemap file from', 'قم بتحميل ملف خريطة الموقع من', '2011-07-30 03:36:19'),
(6752, 'ar', 'sitemap', 'Exclude Url', 'أبعد الرابط', '2011-07-30 03:36:19'),
(6753, 'ar', 'sitemap', 'processtaketime', 'هذه العلمية ستتطلب وقتا إضافيا إذا كان لديك روابط كثيرة في موقعك. يرجى الإنتظار قليلا لتحميل ملف خريطة موقعك.', '2011-07-30 03:36:19'),
(6754, 'ar', 'sitemap', 'Sitemap Type', 'نوع خريطة الموقع', '2011-07-30 03:36:19'),
(6755, 'ar', 'siteauditor', 'Anchor', 'مثبت', '2011-07-30 04:53:00'),
(6756, 'ar', 'siteauditor', 'anylinkcontainabovelinks', 'سيتم إستبعاد أي روابط تحتوي على وصلات من التقارير', '2011-07-30 04:53:00'),
(6757, 'ar', 'siteauditor', 'anylinkcontainexcludesitemap', 'سيتم إستبعاد أي روابط تحتوي على وصلات من خريطة الموقع', '2011-07-30 04:53:00'),
(6758, 'ar', 'siteauditor', 'Check backlinks of pages', 'تفقد الروابط المتصلة في الصفحات', '2011-07-30 04:53:00'),
(6759, 'ar', 'siteauditor', 'Check broken links in a page', 'تفقد الروابط المعطوبة في الصفحة', '2011-07-30 04:53:00'),
(6760, 'ar', 'siteauditor', 'Check google pagerank of pages', 'تفقد ترتيب الصفحات لدى جوجل بيج رانك', '2011-07-30 04:53:00'),
(6761, 'ar', 'siteauditor', 'Check pages indexed or not', 'تفقد الصفحات المؤرشفة أو لا', '2011-07-30 04:53:00'),
(6762, 'ar', 'siteauditor', 'Check Score', 'تفقد مجموع النقاط', '2011-07-30 04:53:00'),
(6763, 'ar', 'siteauditor', 'checkborckenlinkwait', 'تفقد حالة الروابط المعطوبة سيؤدي إلى تمديد فترة إنتهاء المشروع', '2011-07-30 04:53:00'),
(6764, 'ar', 'siteauditor', 'Completed project execution', 'إكتمال تنفيذ المشروع', '2011-07-30 04:53:00'),
(6765, 'ar', 'siteauditor', 'Crawled', 'زحف', '2011-07-30 04:53:00'),
(6766, 'ar', 'siteauditor', 'Crawled Pages', 'زحف الصفحات', '2011-07-30 04:53:00'),
(6767, 'ar', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'تمت عملية الزحف بنجاح! بإنتظار زحف الصفحة التالية إلى', '2011-07-30 04:53:00'),
(6768, 'ar', 'siteauditor', 'Crawling Page', 'زحف الصفحة', '2011-07-30 04:53:00'),
(6769, 'ar', 'siteauditor', 'Duplicate Description', 'وصف مكرر', '2011-07-30 04:53:00'),
(6770, 'ar', 'siteauditor', 'Duplicate Keywords', 'كلمات بحث مكررة', '2011-07-30 04:53:00'),
(6771, 'ar', 'siteauditor', 'Duplicate Title', 'عنوان مكرر', '2011-07-30 04:53:00'),
(6772, 'ar', 'siteauditor', 'Exclude links', 'إستبعاد الروابط', '2011-07-30 04:53:00'),
(6773, 'ar', 'siteauditor', 'Execute with cron', 'تفعيله مع كرون', '2011-07-30 04:53:00'),
(6774, 'ar', 'siteauditor', 'External', 'خارجي', '2011-07-30 04:53:00'),
(6775, 'ar', 'siteauditor', 'External Links', 'روابط خارجية', '2011-07-30 04:53:00'),
(6776, 'ar', 'siteauditor', 'Import Project Links', 'إدراج روابط المشاريع', '2011-07-30 04:53:00'),
(6777, 'ar', 'siteauditor', 'Insert links separated with comma', 'إدراج الروابط مفصولة بفاصله بينهما', '2011-07-30 04:53:00'),
(6778, 'ar', 'siteauditor', 'insertlinkssepcoma', 'إدراج الروابط مع فصل فاصلة لاستبعاد الروابط اللانهائية من التقارير', '2011-07-30 04:53:00'),
(6779, 'ar', 'siteauditor', 'Link Reports', 'رابط التقارير', '2011-07-30 04:53:00'),
(6780, 'ar', 'siteauditor', 'Link Title', 'عنوان الرابط', '2011-07-30 04:53:00'),
(6781, 'ar', 'siteauditor', 'Maximum number of pages to be checked', 'الحد الأقصى لعدد الصفحات التي سيتم فحصها', '2011-07-30 04:53:00'),
(6782, 'ar', 'siteauditor', 'Maximum Pages', 'الحد الأقصى للصفحة', '2011-07-30 04:53:00'),
(6783, 'ar', 'siteauditor', 'No active projects found', 'لم يتم العثور على مشاريع فعاله', '2011-07-30 04:53:00'),
(6784, 'ar', 'siteauditor', 'Nofollow', 'لا يتبع', '2011-07-30 04:53:00'),
(6785, 'ar', 'siteauditor', 'Number of pages is greater than', 'عدد الصفحات أكبر من', '2011-07-30 04:53:00'),
(6786, 'ar', 'siteauditor', 'Number of pages should be greater than', 'ينبغي ان تكون عدد الصفحات أكبر من', '2011-07-30 04:53:00'),
(6787, 'ar', 'siteauditor', 'Page Details', 'تفاصيل الصفحة', '2011-07-30 04:53:00'),
(6788, 'ar', 'siteauditor', 'Page Link', 'رابط الصفحة', '2011-07-30 04:53:00'),
(6789, 'ar', 'siteauditor', 'Page Links', 'روابط الصفحة', '2011-07-30 04:53:00'),
(6790, 'ar', 'siteauditor', 'Pages Found', 'صفحة تم العثور عليها', '2011-07-30 04:53:00'),
(6791, 'ar', 'siteauditor', 'pressescapetostopexecution', 'إضغط مفتاح <b>Escape</b> لإيقاف عمل السكربت.', '2011-07-30 04:53:00'),
(6792, 'ar', 'siteauditor', 'Project Summary', 'ملخص المشروع', '2011-07-30 04:53:00'),
(6793, 'ar', 'siteauditor', 'Project Url', 'رابط المشروع', '2011-07-30 04:53:00'),
(6794, 'ar', 'siteauditor', 'projectalreadyexist', 'مشروع هذا الموقع مضاف من قبل', '2011-07-30 04:53:00'),
(6795, 'ar', 'siteauditor', 'Recheck Pages', 'إعادة فحص الصفحات', '2011-07-30 04:53:00'),
(6796, 'ar', 'siteauditor', 'Report Summary', 'تقرير موجز', '2011-07-30 04:53:00'),
(6797, 'ar', 'siteauditor', 'Run Project', 'تفعيل المشروع', '2011-07-30 04:53:00'),
(6798, 'ar', 'siteauditor', 'should start with', 'يجب أن تبدأ', '2011-07-30 04:53:00'),
(6799, 'ar', 'siteauditor', 'Site Auditor Settings', 'إعدادات مدقق الموقع', '2011-07-30 04:53:00'),
(6800, 'ar', 'siteauditor', 'Store all links found in a page', 'حفظ جميع الروابط الموجودة في الصفحة', '2011-07-30 04:53:00'),
(6801, 'ar', 'siteauditor', 'The page description length is not between', 'طول وصف الصفحة ليس بين', '2011-07-30 04:53:00'),
(6802, 'ar', 'siteauditor', 'The page is brocken', 'هذه الصفحة مقسمة', '2011-07-30 04:53:00'),
(6803, 'ar', 'siteauditor', 'The page is having exellent number of backlinks in', 'يتوفر في هذه الصفحة عدد ممتاز من الروابط المتصلة في', '2011-07-30 04:53:00'),
(6804, 'ar', 'siteauditor', 'The page is having exellent pagerank', 'لدى الصفحة بيج رانك ممتاز', '2011-07-30 04:53:00'),
(6805, 'ar', 'siteauditor', 'The page is having good number of backlinks in', 'يتوفر في هذه الصفحة عدد جيد من الروابط المتصلة في', '2011-07-30 04:53:00'),
(6806, 'ar', 'siteauditor', 'The page is having good pagerank', 'لدى الصفحة بيج رانك جيد', '2011-07-30 04:53:00'),
(6807, 'ar', 'siteauditor', 'The page is having poor pagerank', 'لدى الصفحة بيج رانك ضعيف', '2011-07-30 04:53:00'),
(6808, 'ar', 'siteauditor', 'The page is having very good pagerank', 'لدى الصفحة بيج رانك جيد جدا', '2011-07-30 04:53:00'),
(6809, 'ar', 'siteauditor', 'The page is not having backlinks in', 'لايوجد روابط متصلة في هذه الصفحة في', '2011-07-30 04:53:00'),
(6810, 'ar', 'siteauditor', 'The page is not indexed in', 'الصفحة غير مؤرشفة بعد في', '2011-07-30 04:53:00'),
(6811, 'ar', 'siteauditor', 'The page keywords length is not between', 'طول عدد كلمات البحث ليس بين', '2011-07-30 04:53:00'),
(6812, 'ar', 'siteauditor', 'The page title length is not between', 'طول عنوان الصفحة ليس بين', '2011-07-30 04:53:00'),
(6813, 'ar', 'siteauditor', 'The total number of links in page is greater than', 'عدد الروابط في هذه الصفحة اكبر من', '2011-07-30 04:53:00'),
(6814, 'ar', 'siteauditor', 'to run project again if you stopped execution', 'لتشغيل المشروع مرة أخرى إذا قمت بإيقاف التنفيذ', '2011-07-30 04:53:00'),
(6815, 'ar', 'siteauditor', 'to view the reports', 'لعرض التقارير', '2011-07-30 04:53:00'),
(6816, 'ar', 'siteauditor', 'Total Links', 'مجموع الروابط', '2011-07-30 04:53:00'),
(6817, 'ar', 'siteauditor', 'totallinksgreaterallowed', 'مجموع الروابط ستصبح أكبر من الحد الأقصى المسموح به في المشروع', '2011-07-30 04:53:00'),
(6818, 'ar', 'settings', 'Check for Updates', 'تفقد إصدار جديد', '2011-07-30 05:16:11'),
(6819, 'ar', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>تبرع ب100 دولار</b>حتى تصبح من<b>الرعايا</b>في لوحة تحكم محسن محرك البحث.', '2011-07-30 05:16:11'),
(6820, 'ar', 'settings', 'SA_CRAWL_DELAY_TIME', 'تأخر الزحف في موقع المدقق بين كل صفحة', '2011-07-30 05:16:11'),
(6821, 'ar', 'settings', 'SA_MAX_NO_PAGES', 'الحد الأقصى من الصفحات المسموحة لكل موقع', '2011-07-30 05:16:11'),
(6822, 'ar', 'settings', 'seopanel_description', 'لوحة تحكم متكاملة لتحسين محرك البحث لموقعك. وتحتوي اللوحة العديد من أدوات البحث الفعالة لتحسين وتسريع الأرشفة لدى موقعك. يعتبر هذه البرنامج من فئة المصادر المفتوحة حيث يمكنك من إنشاء وتكوين إضافات خاصة حسب طلبك للوحة تحسين محرك البحث.', '2011-07-30 05:16:11'),
(6823, 'ar', 'settings', 'seopanel_title', 'لوحة تحكم تحسين محرك البحث: الاولى في العالم من البرامج مفتوحة المصدر لتحسين محركات البحث للمواقع الإلكترونية في الشرق الأوسط.', '2011-07-30 05:16:11'),
(6824, 'ar', 'settings', 'SP_API_KEY', 'الكود الخاص لل<b>API</b>.', '2011-07-30 05:16:11'),
(6825, 'ar', 'settings', 'SP_CRAWL_DELAY', 'فترة التأخير بين كل عملية زحف عنكبوتية - بلثواني.', '2011-07-30 05:16:11'),
(6826, 'ar', 'settings', 'SP_DEFAULTLANG', 'اللغة الرئيسية', '2011-07-30 05:16:11'),
(6827, 'ar', 'settings', 'SP_DESCRIPTION', 'وصف لوحة التحكم لتحسين محرك البحث', '2011-07-30 05:16:11'),
(6828, 'ar', 'settings', 'SP_ENABLE_PROXY', 'تفعيل البروكسي', '2011-07-30 05:16:11'),
(6829, 'ar', 'settings', 'SP_HOTLINKING', 'تفعيل حماية الروابط الساخنة', '2011-07-30 05:16:11'),
(6830, 'ar', 'settings', 'SP_KEYWORDS', 'كلمات البحث للوحة تحسين محرك البحث', '2011-07-30 05:16:11'),
(6831, 'ar', 'settings', 'SP_PAGINGNO', 'عدد المدخلات لكل صفحة', '2011-07-30 05:16:11'),
(6832, 'ar', 'settings', 'SP_TITLE', 'عنوان لوحة تحسين محرك البحث', '2011-07-30 05:16:11'),
(6833, 'ar', 'settings', 'SP_USER_AGENT', 'عميل المستخدم', '2011-07-30 05:16:11'),
(6834, 'ar', 'settings', 'SP_USER_GEN_REPORT', 'تمكين الاعضاء من إنشاء تقارير', '2011-07-30 05:16:11'),
(6835, 'ar', 'settings', 'SP_USER_REGISTRATION', 'واجهة تسجيل المستخدم', '2011-07-30 05:16:11'),
(6836, 'ar', 'settings', 'syssettingssaved', 'تم حفظ إعدادات النظام بنجاح', '2011-07-30 05:16:11'),
(6837, 'ar', 'settings', 'versionnotuptodatemsg', 'لوحة تحسين محرك البحث بحاجة إلى ترقية أمنية الأن.<br>يرجى تحميل النسخة الجديدة من هنا.', '2011-07-30 05:16:11'),
(6838, 'ar', 'settings', 'Your Seo Panel installation is up to date', 'لايوجد إصدارات جديدة للوحة تنصيب محسن محرك البحث ', '2011-07-30 05:16:11'),
(6839, 'ar', 'seotools', 'Auditor Projects', 'مشاريع المدقق', '2011-07-30 05:28:48'),
(6840, 'ar', 'seotools', 'Auditor Reports', 'تقارير المدقق', '2011-07-30 05:28:48'),
(6841, 'ar', 'seotools', 'Auditor Settings', 'إعدادات المدقق', '2011-07-30 05:28:48'),
(6842, 'ar', 'seotools', 'Automatic Submission', 'تقديم التلقائي', '2011-07-30 05:28:48'),
(6843, 'ar', 'seotools', 'backlink-checker', 'مدقق الروابط المتصلة', '2011-07-30 05:28:48'),
(6844, 'ar', 'seotools', 'Backlinks Reports', 'تقارير الروابط المتصلة', '2011-07-30 05:28:48'),
(6845, 'ar', 'seotools', 'Check Submission Status', 'تحقق حالة التقديم', '2011-07-30 05:28:48'),
(6846, 'ar', 'seotools', 'clickgeneratereports', 'إضغط على<b>تفعيل</b>لإنشاء التقارير.', '2011-07-30 05:28:48'),
(6847, 'ar', 'seotools', 'Detailed Position Reports', 'تقارير وظيفية مفصلة', '2011-07-30 05:28:48'),
(6848, 'ar', 'seotools', 'directory-submission', 'تقديم الاقسام', '2011-07-30 05:28:48'),
(6849, 'ar', 'seotools', 'Featured Submission', 'تقديم مميز', '2011-07-30 05:28:48'),
(6850, 'ar', 'seotools', 'Generate Backlinks Reports', 'إنشاء تقارير حول الروابط المتصلة', '2011-07-30 05:28:48'),
(6851, 'ar', 'seotools', 'Generate Keyword Reports', 'إنشاء تقارير حول كلمات البحث', '2011-07-30 05:28:48'),
(6852, 'ar', 'seotools', 'Generate Rank Reports', 'إنشاء تقارير حول ترتيب البيج رنك', '2011-07-30 05:28:48'),
(6853, 'ar', 'seotools', 'Generate Saturation Reports', 'إنشاء تقارير مشبعة', '2011-07-30 05:28:48'),
(6854, 'ar', 'seotools', 'Google Sitemap Generator', 'مولد خريطة جوجل', '2011-07-30 05:28:48'),
(6855, 'ar', 'seotools', 'Graphical Position Reports', 'تقارير المركز الرسومية', '2011-07-30 05:28:48'),
(6856, 'ar', 'seotools', 'Import Project Links', 'خيارات استيراد المشروع', '2011-07-30 05:28:48'),
(6857, 'ar', 'seotools', 'Keyword Position Summary', 'ملخص الموقف لكلمات البحث', '2011-07-30 05:28:48'),
(6858, 'ar', 'seotools', 'keyword-position-checker', 'التحقق من موقف كلمات البحث', '2011-07-30 05:28:48'),
(6859, 'ar', 'seotools', 'Keywords Manager', 'إدارة الكلمات الرئيسية', '2011-07-30 05:28:48'),
(6860, 'ar', 'seotools', 'Quick Backlinks Checker', 'فحص سريع للروابط المتصلة', '2011-07-30 05:28:48'),
(6861, 'ar', 'seotools', 'Quick Position Checker', 'التحقق السريع للموقف', '2011-07-30 05:28:48'),
(6862, 'ar', 'seotools', 'Quick Rank Checker', 'التحقق السريع للبيج رنك', '2011-07-30 05:28:48'),
(6863, 'ar', 'seotools', 'Quick Saturation Checker', 'التحقق السريع من التشبع', '2011-07-30 05:28:48'),
(6864, 'ar', 'seotools', 'Rank Reports', 'تقارير البيج رنك', '2011-07-30 05:28:48'),
(6865, 'ar', 'seotools', 'rank-checker', 'التحقق من البيج رنك', '2011-07-30 05:28:48'),
(6866, 'ar', 'seotools', 'Saturation Reports', 'التحقق من التشبع', '2011-07-30 05:28:48'),
(6867, 'ar', 'seotools', 'saturation-checker', 'محرك البحث المشبع', '2011-07-30 05:28:48'),
(6868, 'ar', 'seotools', 'site-auditor', 'مدقق الموقع', '2011-07-30 05:28:48'),
(6869, 'ar', 'seotools', 'sitemap-generator', 'مولد خريطة البحث', '2011-07-30 05:28:48'),
(6870, 'ar', 'seotools', 'Skipped Directories', 'تخطي الاقسام', '2011-07-30 05:28:48'),
(6871, 'ar', 'seotools', 'Submission Reports', 'تقديم التقارير', '2011-07-30 05:28:48'),
(6872, 'ar', 'seotools', 'User Access', 'صلاحية العضو', '2011-07-30 05:28:48'),
(6873, 'ar', 'saturation', 'clickproceedsaturation', 'ضع الروابط<b>واحدا تلو الاخر</b>. ومن ثم إضغط على<b>تفعيل</b>للتحقق من نتائج محرك البحث المشبعة.', '2011-07-30 05:31:02'),
(6874, 'ar', 'saturation', 'GenerateSaturationReports', 'إنشاء تقارير محرك البحث المشبعة', '2011-07-30 05:31:02'),
(6875, 'ar', 'saturation', 'Quick Search Engine Saturation Checker', 'التحقق السريع لمحرك البحث المشبع', '2011-07-30 05:31:02'),
(6876, 'ar', 'saturation', 'Saved Search Engine Saturation results of', 'النتائج المحفوظة لمحرك البحث المشبع من', '2011-07-30 05:31:02'),
(6877, 'ar', 'saturation', 'Search Engine Saturation Reports', 'تقارير محرك البحث المشبع', '2011-07-30 05:31:02'),
(6878, 'ar', 'rank', 'enterurlproceed', 'ضع الروابط<b>واحدا تلو الاخر</b>. ومن ثم إضغط على<b>تفعيل</b>للتحقق من نقاط جوجل بيج رنك وأليكسا.', '2011-07-30 05:32:35'),
(6879, 'ar', 'rank', 'Google and Alexa Rank Reports', 'تقارير جوجل بيج رنك وأليكسا', '2011-07-30 05:32:35'),
(6880, 'ar', 'rank', 'Saved rank results of', 'نتائج الترتيب المحفوظ من', '2011-07-30 05:32:35'),
(6881, 'ar', 'proxy', 'Edit Proxy', 'تعديل البروكسي', '2011-07-30 05:33:16'),
(6882, 'ar', 'proxy', 'Proxy Password', 'كلمة مرور البروكسي', '2011-07-30 05:33:16'),
(6883, 'ar', 'proxy', 'Proxy Username', 'اسم المستخدم للبروكسي', '2011-07-30 05:33:16'),
(6884, 'ar', 'proxy', 'Proxyalreadyexist', 'البروكسي موجود مسبقا', '2011-07-30 05:33:16'),
(6885, 'ar', 'plugin', 'Edit Seo Plugin', 'تحرير إضافة محسن محرك البحث', '2011-07-30 05:33:57'),
(6886, 'ar', 'plugin', 'Plugin Name', 'إسم الإضافة', '2011-07-30 05:33:57'),
(6887, 'ar', 'plugin', 'Seo Plugin Details', 'تفاصيل إضافة محسن محرك البحث', '2011-07-30 05:33:57'),
(6888, 'ar', 'panel', 'About Us', 'من نحن', '2011-07-30 05:37:52'),
(6889, 'ar', 'panel', 'Add following command to your cron tab', 'أضف الاوامر التالية للكرون تاب الخاص بك', '2011-07-30 05:37:52'),
(6890, 'ar', 'panel', 'alsocheckfollowlink', 'وأيضا قم بلتحقق من الرابط التالي إذا كنت بحاجة لمعلومات أخرى.', '2011-07-30 05:37:52'),
(6891, 'ar', 'panel', 'Check Directory', 'تحقق من القسم', '2011-07-30 05:37:52'),
(6892, 'ar', 'panel', 'Cron Command', 'أمر الكرون تاب', '2011-07-30 05:37:52'),
(6893, 'ar', 'panel', 'Directory Manager', 'مدير الاقسام', '2011-07-30 05:37:52'),
(6894, 'ar', 'panel', 'Edit My Profile', 'تعديل الملف الشخصي', '2011-07-30 05:37:52'),
(6895, 'ar', 'panel', 'Edit Project', 'تحرير المشروع', '2011-07-30 05:37:52'),
(6896, 'ar', 'panel', 'My Profile', 'ملفي الشخصي', '2011-07-30 05:37:52'),
(6897, 'ar', 'panel', 'New Project', 'مشروع جديد', '2011-07-30 05:37:52'),
(6898, 'ar', 'panel', 'New Proxy', 'بروكسي جديد', '2011-07-30 05:37:52'),
(6899, 'ar', 'panel', 'New User', 'مستخدم جديد', '2011-07-30 05:37:52'),
(6900, 'ar', 'panel', 'New Website', 'موقع جديد', '2011-07-30 05:37:52'),
(6901, 'ar', 'panel', 'Proxy Manager', 'مدير البروكسي', '2011-07-30 05:37:52'),
(6902, 'ar', 'panel', 'Report Generation Manager', 'مدير إنشاء التقرير', '2011-07-30 05:37:52'),
(6903, 'ar', 'panel', 'Reports Manager', 'مدير التقارير', '2011-07-30 05:37:52'),
(6904, 'ar', 'panel', 'Seo Plugins Manager', 'مدير إضافة محسن محرك البحث', '2011-07-30 05:37:52'),
(6905, 'ar', 'panel', 'Seo Tools Manager', 'مدير أدوات محسن محرك البحث', '2011-07-30 05:37:52'),
(6906, 'ar', 'panel', 'System Settings', 'إعدادات النظام', '2011-07-30 05:37:52'),
(6907, 'ar', 'panel', 'User Manager', 'مدير المستخدم', '2011-07-30 05:37:52'),
(6908, 'ar', 'panel', 'Website Manager', 'مدير الموقع', '2011-07-30 05:37:52'),
(6909, 'ar', 'login', 'Confirm Password', 'تاكيد كلمة المرور', '2011-07-30 05:40:13'),
(6910, 'ar', 'login', 'Create my account', 'إنشاء حسابي', '2011-07-30 05:40:13'),
(6911, 'ar', 'login', 'Create New Account', 'إنشاء حساب جديد', '2011-07-30 05:40:13'),
(6912, 'ar', 'login', 'Email', 'بريد إلكتروني', '2011-07-30 05:40:13'),
(6913, 'ar', 'login', 'emailexist', 'البريد الإلكتروني مسجل من قبل', '2011-07-30 05:40:13'),
(6914, 'ar', 'login', 'Enter the code as it is shown', 'ضع رمز التحقق كما هو', '2011-07-30 05:40:13'),
(6915, 'ar', 'login', 'First Name', 'الإسم الأول', '2011-07-30 05:40:13'),
(6916, 'ar', 'login', 'Last Name', 'الإسم الاخير', '2011-07-30 05:40:13'),
(6917, 'ar', 'login', 'Login', 'دخول', '2011-07-30 05:40:13'),
(6918, 'ar', 'login', 'Login incorrect', 'الدخول غير صحيح', '2011-07-30 05:40:13'),
(6919, 'ar', 'login', 'newaccountsuccess', 'تم إنشاء الحساب الجديد بنجاح', '2011-07-30 05:40:13'),
(6920, 'ar', 'login', 'Password', 'كلمة المرور', '2011-07-30 05:40:13'),
(6921, 'ar', 'login', 'Password incorrect', 'كلمة المرور خاطئة', '2011-07-30 05:40:13'),
(6922, 'ar', 'login', 'Register', 'تسجيل', '2011-07-30 05:40:13'),
(6923, 'ar', 'login', 'Sign in to your account', 'سجل دخول بحسابك', '2011-07-30 05:40:13'),
(6924, 'ar', 'login', 'User inactive', 'عضو نشط', '2011-07-30 05:40:13'),
(6925, 'ar', 'login', 'Username', 'المستخدم', '2011-07-30 05:40:13'),
(6926, 'ar', 'login', 'usernameexist', 'المستخدم موجود من قبل', '2011-07-30 05:40:13'),
(6927, 'ar', 'label', 'already exist', 'موجود من قبل', '2011-07-30 05:44:19'),
(6928, 'ar', 'label', 'Authentication', 'التحقق', '2011-07-30 05:44:19'),
(6929, 'ar', 'label', 'Author', 'المدقق', '2011-07-30 05:44:19'),
(6930, 'ar', 'label', 'Brocken', 'معطل', '2011-07-30 05:44:19'),
(6931, 'ar', 'label', 'Click Here', 'إضغط هنا', '2011-07-30 05:44:19'),
(6932, 'ar', 'label', 'Comments', 'تعليقات', '2011-07-30 05:44:19'),
(6933, 'ar', 'label', 'Count', 'الإحصائية', '2011-07-30 05:44:19'),
(6934, 'ar', 'label', 'Cron', 'كرون تاب', '2011-07-30 05:44:19'),
(6935, 'ar', 'label', 'Description', 'وصف', '2011-07-30 05:44:19'),
(6936, 'ar', 'label', 'Developers', 'المبرمجون', '2011-07-30 05:44:19'),
(6937, 'ar', 'label', 'Download', 'تحميل', '2011-07-30 05:44:19'),
(6938, 'ar', 'label', 'Exclude', 'إستثناء', '2011-07-30 05:44:19'),
(6939, 'ar', 'label', 'Include', 'إدراج', '2011-07-30 05:44:19'),
(6940, 'ar', 'label', 'Installation', 'عملية التنصيب', '2011-07-30 05:44:19'),
(6941, 'ar', 'label', 'Keywords', 'كلمة البحث', '2011-07-30 05:44:19'),
(6942, 'ar', 'label', 'noactiveplugins', 'لايوجد إضافات لمحسن محرك البحث مفعله حاليا', '2011-07-30 05:44:19'),
(6943, 'ar', 'label', 'Plugin', 'إضافة', '2011-07-30 05:44:19'),
(6944, 'ar', 'label', 'Port', 'منفذ', '2011-07-30 05:44:19'),
(6945, 'ar', 'label', 'Project', 'مشروع', '2011-07-30 05:44:19'),
(6946, 'ar', 'label', 'Proxy', 'بروكسي', '2011-07-30 05:44:19'),
(6947, 'ar', 'label', 'Re-install', 'إعادة تنصيب', '2011-07-30 05:44:19'),
(6948, 'ar', 'label', 'Report Type', 'نوع التقرير', '2011-07-30 05:44:19'),
(6949, 'ar', 'label', 'Score', 'النقاط', '2011-07-30 05:44:19'),
(6950, 'ar', 'label', 'Sponsors', 'رعايا', '2011-07-30 05:44:19'),
(6951, 'ar', 'label', 'Title', 'عنوان', '2011-07-30 05:44:19'),
(6952, 'ar', 'label', 'Total Results', 'مجموع النتائج', '2011-07-30 05:44:19'),
(6953, 'ar', 'label', 'translation by', 'تم التعريب والنطوير بواسطة', '2011-07-30 05:44:19'),
(6954, 'ar', 'label', 'Translators', 'مترجمون ومطورون', '2011-07-30 05:44:19'),
(6955, 'ar', 'label', 'Updated', 'محدث', '2011-07-30 05:44:19'),
(6956, 'ar', 'label', 'Upgrade', 'ترقية', '2011-07-30 05:44:19'),
(6957, 'ar', 'label', 'Version', 'إصدار', '2011-07-30 05:44:19'),
(6958, 'ar', 'label', 'View Reports', 'عرض التقارير', '2011-07-30 05:44:19'),
(6959, 'ar', 'label', 'wantproceed', 'هل تريد حقا من المتابعة؟', '2011-07-30 05:44:19'),
(6960, 'ar', 'keyword', 'Crawling keyword', 'زحف كلمات البحث', '2011-07-30 06:01:13'),
(6961, 'ar', 'keyword', 'Detailed Keyword Position Reports', 'تقارير مفصلة لمعلومات كلمات البحث', '2011-07-30 06:01:13'),
(6962, 'ar', 'keyword', 'Edit Keyword', 'تحرير كلمة البحث', '2011-07-30 06:01:13'),
(6963, 'ar', 'keyword', 'Graphical Keyword Position Reports', 'رسم بياني مفصل لكلمات البحث', '2011-07-30 06:01:13'),
(6964, 'ar', 'keyword', 'Import Keywords', 'إستيراد كلمات البحث', '2011-07-30 06:01:13'),
(6965, 'ar', 'keyword', 'Insert keywords separated with comma', 'أرفاق كلمات بحث مبتاعدة بفواصل', '2011-07-30 06:01:13'),
(6966, 'ar', 'keyword', 'Keyword already exist', 'كلمة البحث موجودة مسبقا', '2011-07-30 06:01:13'),
(6967, 'ar', 'keyword', 'Keyword Position Report', 'تقرير مركز لكلمة البحث', '2011-07-30 06:01:13'),
(6968, 'ar', 'keyword', 'New Keyword', 'كلمة بحث جديدة', '2011-07-30 06:01:13'),
(6969, 'ar', 'keyword', 'not assigned to required search engines', 'لم يتم تعيينها لمتطلبات محركات البحث', '2011-07-30 06:01:13'),
(6970, 'ar', 'keyword', 'pleaseselecttool', 'كحد أدنى يمكنك إختيار أداة واحدة لتحسن محرك البحث', '2011-07-30 06:01:13'),
(6971, 'ar', 'keyword', 'Quick Keyword Position Checker', 'التحقق السريع لكلمة البحث', '2011-07-30 06:01:13'),
(6972, 'ar', 'keyword', 'results from ', 'النتائج من', '2011-07-30 06:01:13'),
(6973, 'ar', 'keyword', 'Show All results', 'عرض كافة النتائج', '2011-07-30 06:01:13'),
(6974, 'ar', 'keyword', 'Successfully crawled keyword', 'تم زحف كلمة البحث بنجاح', '2011-07-30 06:01:13'),
(6975, 'ar', 'keyword', 'to create new keywords', 'لإنشاء كلمة بحث جديدة', '2011-07-30 06:01:13'),
(6976, 'ar', 'directory', 'Add back to directory list', 'إضافة إلى قائمة الأقسام', '2011-07-30 06:28:07'),
(6977, 'ar', 'directory', 'Approved', 'تم الموافقة عليه', '2011-07-30 06:28:07'),
(6978, 'ar', 'directory', 'Captcha', 'رمز التحقق', '2011-07-30 06:28:07'),
(6979, 'ar', 'directory', 'categorynote', 'الاقسام, متباعدون بفاصلة بين بعضهم حسب أهمية القسم. مبتدأين بلقسم الأكثر أهمية.', '2011-07-30 06:28:07'),
(6980, 'ar', 'directory', 'Check Directory Status', 'تفقد حالة القسم', '2011-07-30 06:28:07'),
(6981, 'ar', 'directory', 'Check Directory Submission Status', 'تفقد حالة القسم المقدمة', '2011-07-30 06:28:07'),
(6982, 'ar', 'directory', 'clicktoproceeddirsts', 'إضغط هنا<b>للتفعيل</b>ولتفقد حالة القسم.', '2011-07-30 06:28:07'),
(6983, 'ar', 'directory', 'Confirmation', 'تأكيد', '2011-07-30 06:28:07'),
(6984, 'ar', 'directory', 'desnote', 'بعض الاقسام تتطلب كحد أدنى 150 حرف في خانة الوصف.', '2011-07-30 06:28:07'),
(6985, 'ar', 'directory', 'Directories with out captcha', 'القسم بدون تحقق', '2011-07-30 06:28:07'),
(6986, 'ar', 'directory', 'Directory Submission Reports', 'تقديم تقارير القسم', '2011-07-30 06:28:07'),
(6987, 'ar', 'directory', 'Enter the code shown', 'قم بكتابة الكود', '2011-07-30 06:28:07'),
(6988, 'ar', 'directory', 'nocatnote', 'لم يتم العثور على فئة التقديم في صفحة التقديم. يرجى الضغط على <b>Reload</b> أو <b>skip</b>.', '2011-07-30 06:28:07'),
(6989, 'ar', 'directory', 'nodirnote', 'لايوجد <b>Active</b> قسم موجود.', '2011-07-30 06:28:07'),
(6990, 'ar', 'directory', 'nosuccessnote', 'لم تحصل على رسالة نجاح, يرجى التحقق من وصول رسالة لبريديك لتأكيد الرسالة.', '2011-07-30 06:28:07'),
(6991, 'ar', 'directory', 'optionalnote', 'عنوان ووصف إختياري لطلب تقديم عنوان ووصف عشوائي لنتائج أفضل.', '2011-07-30 06:28:07'),
(6992, 'ar', 'directory', 'Owner Email', 'بريد المالك', '2011-07-30 06:28:07'),
(6993, 'ar', 'directory', 'Owner Name', 'إسم المالك', '2011-07-30 06:28:07'),
(6994, 'ar', 'directory', 'Pending', 'في الإنتظار', '2011-07-30 06:28:07'),
(6995, 'ar', 'directory', 'Please select a website to proceed', 'يرجى تحديد موقع للتفعيل', '2011-07-30 06:28:07'),
(6996, 'ar', 'directory', 'Reciprocal Link', 'روابط متبادلة', '2011-07-30 06:28:07'),
(6997, 'ar', 'directory', 'selectwebsiteproceed', 'إختر <b>Website</b> إلى <b>Proceed</b> قسم التقديم.<br>Check<b>أقسام بدون رمز تحقق</b> لتقديم الاقسام بدون رمز تحقق.', '2011-07-30 06:28:07'),
(6998, 'ar', 'directory', 'selectwebsiteschecksub', 'إختر <b>Website</b> حتى يتم <b>Proceed</b> قسم التقديم.', '2011-07-30 06:28:07'),
(6999, 'ar', 'directory', 'Semi Automatic Directory Submission Tool', 'أداة مشابهه للتقديم التلقائي', '2011-07-30 06:28:07'),
(7000, 'ar', 'directory', 'spamemailnote', 'بعض الاقسام ستقوم بإرسال بعض الرسائل المزعجة, لاننصحك حاليا بإستخدام بريد بديل بحسابك.', '2011-07-30 06:28:07'),
(7001, 'ar', 'directory', 'Submission Details', 'تقديم مفصل', '2011-07-30 06:28:07'),
(7002, 'ar', 'directory', 'Submit Description', 'تقديم الوصف', '2011-07-30 06:28:07'),
(7003, 'ar', 'directory', 'Submit Keywords', 'تقديم كلمات البحث', '2011-07-30 06:28:07'),
(7004, 'ar', 'directory', 'Submit Title', 'تقديم العنوان', '2011-07-30 06:28:07'),
(7005, 'ar', 'directory', 'Website Category', 'عنوان الموقع', '2011-07-30 06:28:07'),
(7006, 'ar', 'directory', 'Website Url', 'رابط الموقع', '2011-07-30 06:28:07'),
(7007, 'ar', 'home', 'Account Summary', 'ملخص الحساب', '2011-08-04 12:07:28'),
(7008, 'ar', 'home', 'Backlinks', 'روابط متصلة', '2011-08-04 12:07:29'),
(7009, 'ar', 'home', 'Directory Submission', 'دليل التقديم', '2011-08-04 12:07:29'),
(39304, 'ru', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Страница позволяет AI роботам сканировать и индексировать контент', '2026-01-19 23:07:11'),
(39305, 'tr', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Sayfa, AI robotlarının içeriği taramasına ve dizine eklemesine izin veriyor', '2026-01-19 23:07:11'),
(39306, 'zh', 'siteauditor', 'The page allows AI robots to crawl and index content', '该页面允许AI机器人抓取和索引内容', '2026-01-19 23:07:11'),
(39307, 'cn', 'siteauditor', 'The page allows AI robots to crawl and index content', '该页面允许AI机器人抓取和索引内容', '2026-01-19 23:07:11'),
(39308, 'en', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'The page blocks AI robots from crawling - may limit AI search visibility', '2026-01-19 23:07:11'),
(39309, 'ar', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'تمنع الصفحة روبوتات الذكاء الاصطناعي من الزحف - قد يحد من ظهور البحث بالذكاء الاصطناعي', '2026-01-19 23:07:11'),
(39310, 'bg', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Страницата блокира AI роботите от сканиране - може да ограничи видимостта в AI търсенето', '2026-01-19 23:07:11'),
(39311, 'de', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Die Seite blockiert KI-Roboter beim Crawlen - kann die AI-Suchsichtbarkeit einschränken', '2026-01-19 23:07:11'),
(39312, 'es', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'La página bloquea a los robots de IA para rastrear - puede limitar la visibilidad de búsqueda de IA', '2026-01-19 23:07:11'),
(39313, 'fr', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'La page empêche les robots IA d''explorer - peut limiter la visibilité de recherche IA', '2026-01-19 23:07:11'),
(39314, 'it', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'La pagina blocca i robot AI dalla scansione - potrebbe limitare la visibilità della ricerca AI', '2026-01-19 23:07:11'),
(39315, 'nl', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'De pagina blokkeert AI-robots van crawlen - kan AI-zoekzichtbaarheid beperken', '2026-01-19 23:07:11'),
(39316, 'pl', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Strona blokuje roboty AI przed indeksowaniem - może ograniczyć widoczność w wyszukiwaniu AI', '2026-01-19 23:07:11'),
(39317, 'pt', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'A página bloqueia robôs de IA de rastrear - pode limitar a visibilidade de pesquisa de IA', '2026-01-19 23:07:11'),
(39318, 'pt-br', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'A página bloqueia robôs de IA de rastrear - pode limitar a visibilidade de pesquisa de IA', '2026-01-19 23:07:11'),
(39319, 'ru', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Страница блокирует AI роботов от сканирования - может ограничить видимость в AI поиске', '2026-01-19 23:07:11'),
(39320, 'tr', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Sayfa AI robotlarının taramasını engelliyor - AI arama görünürlüğünü sınırlayabilir', '2026-01-19 23:07:11'),
(39321, 'zh', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', '该页面阻止AI机器人抓取 - 可能限制AI搜索可见性', '2026-01-19 23:07:11'),
(39322, 'cn', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', '该页面阻止AI机器人抓取 - 可能限制AI搜索可见性', '2026-01-19 23:07:11'),
(39323, 'en', 'siteauditor', 'Mobile Friendly', 'Mobile Friendly', '2026-01-19 23:07:11');
INSERT INTO `texts` VALUES
(39324, 'ar', 'siteauditor', 'Mobile Friendly', 'متوافق مع الجوال', '2026-01-19 23:07:11'),
(39325, 'bg', 'siteauditor', 'Mobile Friendly', 'Подходящ за мобилни', '2026-01-19 23:07:11'),
(39326, 'de', 'siteauditor', 'Mobile Friendly', 'Mobilfreundlich', '2026-01-19 23:07:11'),
(39327, 'es', 'siteauditor', 'Mobile Friendly', 'Compatible con móviles', '2026-01-19 23:07:11'),
(39328, 'fr', 'siteauditor', 'Mobile Friendly', 'Compatible mobile', '2026-01-19 23:07:11'),
(39329, 'it', 'siteauditor', 'Mobile Friendly', 'Ottimizzato per mobile', '2026-01-19 23:07:11'),
(39330, 'nl', 'siteauditor', 'Mobile Friendly', 'Mobiel vriendelijk', '2026-01-19 23:07:11'),
(39331, 'pl', 'siteauditor', 'Mobile Friendly', 'Przyjazny dla urządzeń mobilnych', '2026-01-19 23:07:11'),
(39332, 'pt', 'siteauditor', 'Mobile Friendly', 'Compatível com dispositivos móveis', '2026-01-19 23:07:11'),
(39333, 'pt-br', 'siteauditor', 'Mobile Friendly', 'Compatível com dispositivos móveis', '2026-01-19 23:07:11'),
(39334, 'ru', 'siteauditor', 'Mobile Friendly', 'Мобильная версия', '2026-01-19 23:07:11'),
(39335, 'tr', 'siteauditor', 'Mobile Friendly', 'Mobil uyumlu', '2026-01-19 23:07:11'),
(39336, 'zh', 'siteauditor', 'Mobile Friendly', '移动友好', '2026-01-19 23:07:11'),
(39337, 'cn', 'siteauditor', 'Mobile Friendly', '移动友好', '2026-01-19 23:07:11'),
(38832, 'en', 'review', 'Average Rating by Platform', 'Average Rating by Platform', '2026-01-19 22:58:50'),
(38833, 'ar', 'review', 'Average Rating by Platform', 'متوسط التقييم حسب المنصة', '2026-01-19 22:58:50'),
(38834, 'bg', 'review', 'Average Rating by Platform', 'Среден рейтинг по платформа', '2026-01-19 22:58:50'),
(38835, 'bs', 'review', 'Average Rating by Platform', 'Prosječna ocjena po platformi', '2026-01-19 22:58:50'),
(38836, 'ca', 'review', 'Average Rating by Platform', 'Valoració mitjana per plataforma', '2026-01-19 22:58:50'),
(38837, 'cn', 'review', 'Average Rating by Platform', '各平台平均评分', '2026-01-19 22:58:50'),
(38838, 'cs', 'review', 'Average Rating by Platform', 'Průměrné hodnocení podle platformy', '2026-01-19 22:58:50'),
(38839, 'da', 'review', 'Average Rating by Platform', 'Gennemsnitlig bedømmelse efter platform', '2026-01-19 22:58:50'),
(38840, 'de', 'review', 'Average Rating by Platform', 'Durchschnittliche Bewertung nach Plattform', '2026-01-19 22:58:50'),
(38841, 'el', 'review', 'Average Rating by Platform', 'Μέση αξιολόγηση ανά πλατφόρμα', '2026-01-19 22:58:50'),
(38842, 'es', 'review', 'Average Rating by Platform', 'Calificación promedio por plataforma', '2026-01-19 22:58:50'),
(38843, 'es-ar', 'review', 'Average Rating by Platform', 'Calificación promedio por plataforma', '2026-01-19 22:58:50'),
(38844, 'fa', 'review', 'Average Rating by Platform', 'میانگین امتیاز بر اساس پلتفرم', '2026-01-19 22:58:50'),
(38845, 'fi', 'review', 'Average Rating by Platform', 'Keskimääräinen arvostelu alustittain', '2026-01-19 22:58:50'),
(7013, 'ar', 'home', 'Indexed', 'مؤرشف', '2011-08-04 12:07:29'),
(7014, 'ar', 'home', 'Pages Indexed', 'صفحة مؤرشفة', '2011-08-04 12:07:29'),
(7015, 'ar', 'home', 'Ranks', 'ترتيب الموقع', '2011-08-04 12:07:29'),
(7016, 'ar', 'home', 'SiteNameUrl', 'إسم الموقع - الرابط', '2011-08-04 12:07:29'),
(7017, 'ar', 'home', 'Website Statistics', 'إحصائية الموقع', '2011-08-04 12:07:29'),
(7018, 'he', 'button', 'Cancel', 'ביטול', '2014-01-09 00:27:21'),
(7019, 'he', 'button', 'Check Status', 'בדוק סטטוס', '2014-01-09 00:27:21'),
(7020, 'he', 'button', 'Proceed', 'המשך', '2014-01-09 00:27:21'),
(7021, 'he', 'button', 'Reload', 'טען מחדש', '2014-01-09 00:27:21'),
(7022, 'he', 'button', 'Show Details', 'הצג פרטים', '2014-01-09 00:27:21'),
(7023, 'he', 'button', 'Show Records', 'הצג רשומות', '2014-01-09 00:27:21'),
(7024, 'he', 'button', 'Skip', 'דלג', '2014-01-09 00:27:21'),
(7025, 'he', 'button', 'Submit', 'אישור', '2014-01-09 00:27:21'),
(7026, 'he', 'login', 'Confirm Password', 'אמת סיסמה', '2011-09-06 12:48:12'),
(7027, 'he', 'login', 'Create my account', 'צור את החשבון שלי', '2011-09-06 12:48:12'),
(7028, 'he', 'login', 'Create New Account', 'צור חשבון חדש', '2011-09-06 12:48:12'),
(7029, 'he', 'login', 'Email', 'דואר אלקטרוני', '2011-09-06 12:48:12'),
(7030, 'he', 'login', 'emailexist', 'כתובת הדואר אלקטרוני כבר קיימת במערכת!', '2011-09-06 12:48:12'),
(7031, 'he', 'login', 'Enter the code as it is shown', 'הכנס את הקוד אשר מופיע', '2011-09-06 12:48:12'),
(7032, 'he', 'login', 'First Name', 'שם פרטי', '2011-09-06 12:48:12'),
(7033, 'he', 'login', 'Last Name', 'שם משפחה', '2011-09-06 12:48:12'),
(7034, 'he', 'login', 'Login', 'כניסה', '2011-09-06 12:48:12'),
(7035, 'he', 'login', 'Login incorrect', 'כניסה לא נכונה', '2011-09-06 12:48:12'),
(7036, 'he', 'login', 'newaccountsuccess', 'חשבון חדש נוצר בהצלחה!', '2011-09-06 12:48:12'),
(7037, 'he', 'login', 'Password', 'סיסמה', '2011-09-06 12:48:12'),
(7038, 'he', 'login', 'Password incorrect', 'סיסמה שגויה', '2011-09-06 12:48:12'),
(7039, 'he', 'login', 'Register', 'הרשם', '2011-09-06 12:48:12'),
(7040, 'he', 'login', 'Sign in to your account', 'התחבר לחשבונך', '2011-09-06 12:48:12'),
(7041, 'he', 'login', 'User inactive', 'משתמש לא פעיל', '2011-09-06 12:48:12'),
(7042, 'he', 'login', 'Username', 'שם משתמש', '2011-09-06 12:48:12'),
(7043, 'he', 'login', 'usernameexist', 'שם המשתמש כבר קיים במערכת!', '2011-09-06 12:48:12'),
(7044, 'he', 'website', 'Edit Website', 'ערוך אתר', '2011-08-12 02:32:15'),
(7045, 'he', 'website', 'plscrtwebsite', 'אנא הכנס אתר למערכת לפני תחילת השימוש במערכת', '2011-08-12 02:32:15'),
(7046, 'he', 'website', 'Website already exist', 'האתר כבר קיים', '2011-08-12 02:32:15'),
(7047, 'he', 'website', 'yourwebalreday', 'האתר שלך במידה ויצרת אחד', '2011-08-12 02:32:15'),
(7048, 'he', 'user', 'Edit User', 'ערוך משתמש', '2011-08-12 02:33:05'),
(7049, 'he', 'user', 'Saved My Profile Details', 'שמור את הפרטים שלי', '2011-08-12 02:33:05'),
(7050, 'he', 'settings', 'Check for Updates', 'בדוק עידכונים', '2011-08-12 02:50:44'),
(7051, 'he', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>תרום 100$</a> בכדי להיות <b>ספונסר</b> of Seo Panel.', '2011-08-12 02:50:44'),
(7052, 'he', 'settings', 'SA_CRAWL_DELAY_TIME', '', '2011-08-12 02:50:44'),
(7053, 'he', 'settings', 'SA_MAX_NO_PAGES', '', '2011-08-12 02:50:44'),
(7054, 'he', 'settings', 'seopanel_description', '', '2011-08-12 02:50:44'),
(7055, 'he', 'settings', 'seopanel_title', '', '2011-08-12 02:50:44'),
(7056, 'he', 'settings', 'SP_API_KEY', '', '2011-08-12 02:50:44'),
(7057, 'he', 'settings', 'SP_CRAWL_DELAY', '', '2011-08-12 02:50:44'),
(7058, 'he', 'settings', 'SP_DEFAULTLANG', 'שפה ברירת מחדל', '2011-08-12 02:50:44'),
(7059, 'he', 'settings', 'SP_DESCRIPTION', '', '2011-08-12 02:50:44'),
(7060, 'he', 'settings', 'SP_ENABLE_PROXY', 'אפשר פרוקסי', '2011-08-12 02:50:44'),
(7061, 'he', 'settings', 'SP_HOTLINKING', '', '2011-08-12 02:50:44'),
(7062, 'he', 'settings', 'SP_KEYWORDS', '', '2011-08-12 02:50:44'),
(7063, 'he', 'settings', 'SP_PAGINGNO', '', '2011-08-12 02:50:44'),
(7064, 'he', 'settings', 'SP_TITLE', '', '2011-08-12 02:50:44'),
(7065, 'he', 'settings', 'SP_USER_AGENT', '', '2011-08-12 02:50:44'),
(7066, 'he', 'settings', 'SP_USER_GEN_REPORT', '', '2011-08-12 02:50:44'),
(7067, 'he', 'settings', 'SP_USER_REGISTRATION', '', '2011-08-12 02:50:44'),
(7068, 'he', 'settings', 'syssettingssaved', '', '2011-08-12 02:50:44'),
(7069, 'he', 'settings', 'versionnotuptodatemsg', '', '2011-08-12 02:50:44'),
(7070, 'he', 'settings', 'Your Seo Panel installation is up to date', '', '2011-08-12 02:50:44'),
(7071, 'he', 'common', 'Action', 'פעולה', '2019-05-25 22:14:01'),
(7072, 'he', 'common', 'Activate', 'הפעל', '2019-05-25 22:14:01'),
(7073, 'he', 'common', 'Active', 'פועל', '2019-05-25 22:14:01'),
(7074, 'he', 'common', 'Admin Panel', 'ממשק ניהול', '2019-05-25 22:14:01'),
(7075, 'he', 'common', 'Alexa Rank', 'ניקוד Alaxa', '2019-05-25 22:14:01'),
(7076, 'he', 'common', 'All', 'הכל', '2019-05-25 22:14:01'),
(7077, 'he', 'common', 'Category', 'קטגוריה', '2019-05-25 22:14:01'),
(7078, 'he', 'common', 'contact', 'צור קשר', '2019-05-25 22:14:01'),
(7079, 'he', 'common', 'copyright', 'כל הזכויות שמורות [year] www.seopanel.in ', '2019-05-25 22:14:01'),
(7080, 'he', 'common', 'Country', 'ארץ', '2019-05-25 22:14:01'),
(7081, 'he', 'common', 'Crawl Meta Data', 'ייבא מידע מתגיות מטה', '2019-05-25 22:14:01'),
(7082, 'he', 'common', 'Date', 'תאריך', '2019-05-25 22:14:01'),
(7083, 'he', 'common', 'Delete', 'מחק', '2019-05-25 22:14:01'),
(7084, 'he', 'common', 'Details', 'פרטים', '2019-05-25 22:14:01'),
(7085, 'he', 'common', 'Directory', 'תיקיה', '2019-05-25 22:14:01'),
(7086, 'he', 'common', 'Donate', 'תרום', '2019-05-25 22:14:01'),
(7087, 'he', 'common', 'Edit', 'ערוך', '2019-05-25 22:14:01'),
(7088, 'he', 'common', 'Entry cannot be blank', 'השדה איננו יכול להיות ריק', '2019-05-25 22:14:01'),
(7089, 'he', 'common', 'entrynotvalid', 'הערך שהכנסת כנראה איננו חוקי', '2019-05-25 22:14:01'),
(7090, 'he', 'common', 'failed', 'נכשל', '2019-05-25 22:14:01'),
(7091, 'he', 'common', 'forum', 'פורום', '2019-05-25 22:14:01'),
(7092, 'he', 'common', 'Found', 'נמצאו', '2019-05-25 22:14:01'),
(7093, 'he', 'common', 'Google Pagerank', 'ניקוד גוגל(פייג ראנק)', '2019-05-25 22:14:01'),
(7094, 'he', 'common', 'help', 'עזרה', '2019-05-25 22:14:01'),
(7095, 'he', 'common', 'hidenews', 'הסתר פאנל חדשות', '2019-05-25 22:14:01'),
(7096, 'he', 'common', 'Id', 'מזהה', '2019-05-25 22:14:01'),
(7097, 'he', 'common', 'Inactivate', 'לא מופעל', '2019-05-25 22:14:01'),
(7098, 'he', 'common', 'Inactive', 'לא פעיל', '2019-05-25 22:14:01'),
(7099, 'he', 'common', 'Invalid characters', 'תווים לא חוקיים', '2019-05-25 22:14:01'),
(7100, 'he', 'common', 'Invalid code entered', 'קוד לא חוקי הוכנס', '2019-05-25 22:14:01'),
(7101, 'he', 'common', 'Invalid email address entered', 'אימייל לא חוקי הוכנס', '2019-05-25 22:14:01'),
(7102, 'he', 'common', 'Invalid value', 'ערך לא חוקי', '2019-05-25 22:14:01'),
(7103, 'he', 'common', 'Keyword', 'מילת מפתח', '2019-05-25 22:14:01'),
(7104, 'he', 'common', 'Keywords', 'מילות מפתח', '2019-05-25 22:14:01'),
(7105, 'he', 'common', 'lang', 'שפה', '2019-05-25 22:14:01'),
(7106, 'he', 'common', 'My Account', 'החשבון שלי', '2019-05-25 22:14:01'),
(7107, 'he', 'common', 'Name', 'שם', '2019-05-25 22:14:01'),
(7108, 'he', 'common', 'No', 'לא', '2019-05-25 22:14:01'),
(7109, 'he', 'common', 'No Keywords Found', 'לא נמצאו מילות מפתח', '2019-05-25 22:14:01'),
(7110, 'he', 'common', 'No Records Found', 'לא נמצאו רשומות', '2019-05-25 22:14:01'),
(7111, 'he', 'common', 'noactivetools', 'לא נמצאו כליי קידום', '2019-05-25 22:14:01'),
(7112, 'he', 'common', 'nowebsites', 'לא נמצאו אתרים', '2019-05-25 22:14:01'),
(7113, 'he', 'common', 'password632', 'אורך הסיסמה חייב להיות בין 6 ל 32 תווים', '2019-05-25 22:14:01'),
(7114, 'he', 'common', 'passwordnotmatch', 'הסיסמה אינה תואמת', '2019-05-25 22:14:01'),
(7115, 'he', 'common', 'Period', 'תקופה', '2019-05-25 22:14:01'),
(7116, 'he', 'common', 'Priority', 'דחיפות', '2019-05-25 22:14:01'),
(7117, 'he', 'common', 'Profile', 'פרופיל', '2019-05-25 22:14:01'),
(7118, 'he', 'common', 'Rank', 'ניקוד', '2019-05-25 22:14:01'),
(7119, 'he', 'common', 'Reports', 'דיווחים', '2019-05-25 22:14:01'),
(7120, 'he', 'common', 'Results', 'תוצאות', '2019-05-25 22:14:01'),
(7121, 'he', 'common', 'Search Engine', 'מנוע חיפוש', '2019-05-25 22:14:01'),
(7122, 'he', 'common', 'Select', 'בחר', '2019-05-25 22:14:01'),
(7123, 'he', 'common', 'Seo Plugins', 'תוספיי קידום אתרים', '2019-05-25 22:14:01'),
(7124, 'he', 'common', 'Seo Tools', 'כליי קידום אתרים', '2019-05-25 22:14:01'),
(7125, 'he', 'common', 'Sign out', 'התנתק', '2019-05-25 22:14:01'),
(7126, 'he', 'common', 'Sign Up', 'הרשם', '2019-05-25 22:14:01'),
(7127, 'he', 'common', 'signin', 'התחבר', '2019-05-25 22:14:01'),
(7128, 'he', 'common', 'Status', 'מצב', '2019-05-25 22:14:01'),
(7129, 'he', 'common', 'Support', 'תמיכה', '2019-05-25 22:14:01'),
(7130, 'he', 'common', 'Total', 'סה"כ', '2019-05-25 22:14:01'),
(7131, 'he', 'common', 'Url', 'כתובת', '2019-05-25 22:14:01'),
(7132, 'he', 'common', 'User', 'משתמש', '2019-05-25 22:14:01'),
(7133, 'he', 'common', 'User Panel', 'פאנל משתמש', '2019-05-25 22:14:01'),
(7134, 'he', 'common', 'Website', 'אתר', '2019-05-25 22:14:01'),
(7135, 'he', 'common', 'Yes', 'כן', '2019-05-25 22:14:01'),
(7136, 'he', 'directory', 'Add back to directory list', 'הוסף חזרה לרשימת מדריכי אתרים', '2011-09-07 23:42:42'),
(7137, 'he', 'directory', 'Approved', 'מאושר', '2011-09-07 23:42:42'),
(7138, 'he', 'directory', 'Captcha', 'אתגר מענה', '2011-09-07 23:42:42'),
(7139, 'he', 'directory', 'categorynote', 'קטגוריות, הפרד אותם על ידי פסיק לפי עדיפות. התחל עם החשובים ביותר.', '2011-09-07 23:42:42'),
(7140, 'he', 'directory', 'Check Directory Status', 'בדוק מצב מדריכי אתרים', '2011-09-07 23:42:42'),
(7141, 'he', 'directory', 'Check Directory Submission Status', 'בדוק מצב מדריכי אתרים', '2011-09-07 23:42:42'),
(7142, 'he', 'directory', 'clicktoproceeddirsts', 'לחץ על <b>המשך</b> בכדי לבדוק את מצב מדריכי האתרים', '2011-09-07 23:42:42'),
(7143, 'he', 'directory', 'Confirmation', 'אישור', '2011-09-07 23:42:42'),
(7144, 'he', 'directory', 'desnote', 'ישנם מדריכי אתרים אשר דורשים מינימום של 150 אותיות בשור התיאור', '2011-09-07 23:42:42'),
(7145, 'he', 'directory', 'Directories with out captcha', 'מדריכי אתרים ללא אתגר מענה', '2011-09-07 23:42:42'),
(7146, 'he', 'directory', 'Directory Submission Reports', 'דוחות שליחה למדריכי אתרים', '2011-09-07 23:42:42'),
(7147, 'he', 'directory', 'Enter the code shown', 'הכנס את הקוד המוצג', '2011-09-07 23:42:42'),
(7148, 'he', 'directory', 'nocatnote', 'הקטגוריה המבוקשת לא נמצאה בדף השליחה. לחץ על <b>טען</b> או<b>דלג</b> ', '2011-09-07 23:42:42'),
(7149, 'he', 'directory', 'nodirnote', 'לא נמצאו אתרי מדריכים <b>פעילים</b>', '2011-09-07 23:42:42'),
(7150, 'he', 'directory', 'nosuccessnote', 'לא התקבלה הודעת אישור, יש לבדוק את האימייל כדי לאשר משלוח', '2011-09-07 23:42:42'),
(7151, 'he', 'directory', 'optionalnote', 'כותרות ותיאורים רנדומלים לשליחה למדריכי אתרים לשם קבלת תוצאות טובות יותר (רשות)', '2011-09-07 23:42:42'),
(7152, 'he', 'directory', 'Owner Email', 'דואר אלקטרוני של הבעלים', '2011-09-07 23:42:42'),
(7153, 'he', 'directory', 'Owner Name', 'שם הבעלים', '2011-09-07 23:42:42'),
(7154, 'he', 'directory', 'Pending', 'ממתין', '2011-09-07 23:42:42'),
(7155, 'he', 'directory', 'Please select a website to proceed', 'אנא בחר אתר בכדיי להמשיך', '2011-09-07 23:42:42'),
(7156, 'he', 'directory', 'Reciprocal Link', 'לינק הדדי', '2011-09-07 23:42:42'),
(7157, 'he', 'directory', 'selectwebsiteproceed', '', '2011-09-07 23:42:42'),
(7158, 'he', 'directory', 'selectwebsiteschecksub', 'בחר <b>אתר</b> כדיי<b>להמשיך</b> לבדוק . ', '2011-09-07 23:42:42'),
(7159, 'he', 'directory', 'Semi Automatic Directory Submission Tool', 'שליחה חצי-אוטומטית למדריכי אתרים', '2011-09-07 23:42:42'),
(7160, 'he', 'directory', 'spamemailnote', 'מספר מדריכי אתרים עלולים לשלוח דואר זבל, אנו ממליצים לא להשתמש בכתובת המייל העיקרית.', '2011-09-07 23:42:42'),
(7161, 'he', 'directory', 'Submission Details', 'פרטי משלוח', '2011-09-07 23:42:42'),
(7162, 'he', 'directory', 'Submit Description', 'שלח תיאור', '2011-09-07 23:42:42'),
(7163, 'he', 'directory', 'Submit Keywords', 'שלח מילות מפתח', '2011-09-07 23:42:42'),
(7164, 'he', 'directory', 'Submit Title', 'שלח כותרת', '2011-09-07 23:42:42'),
(7165, 'he', 'directory', 'Website Category', 'קטגורית אתר', '2011-09-07 23:42:42'),
(7166, 'he', 'directory', 'Website Url', 'כתובת האתר', '2011-09-07 23:42:42'),
(7167, 'he', 'home', 'Account Summary', 'סיכום חשבון', '2011-09-06 12:41:37'),
(7168, 'he', 'home', 'Backlinks', 'לינקים אחוריים', '2011-09-06 12:41:37'),
(7169, 'he', 'home', 'Directory Submission', '', '2011-09-06 12:41:37'),
(38831, 'zh', 'review', 'Reviews by Platform', '各平台评论数', '2026-01-19 22:58:50'),
(7173, 'he', 'home', 'Indexed', 'מאונדקסים', '2011-09-06 12:41:37'),
(7174, 'he', 'home', 'Pages Indexed', 'דפים מאונדקסים', '2011-09-06 12:41:37'),
(7175, 'he', 'home', 'Ranks', 'דירוג', '2011-09-06 12:41:37'),
(7176, 'he', 'home', 'SiteNameUrl', 'שם/כתובת האתר', '2011-09-06 12:41:37'),
(7177, 'he', 'home', 'Website Statistics', 'סטטיסטיקות אתר', '2011-09-06 12:41:37'),
(7178, 'he', 'proxy', 'Edit Proxy', 'ערוך פרוקסי', '2011-08-12 03:04:01'),
(7179, 'he', 'proxy', 'Proxy Password', 'פרוקסי - סיסמה', '2011-08-12 03:04:01'),
(7180, 'he', 'proxy', 'Proxy Username', 'פרוקסי - שם משתמש', '2011-08-12 03:04:01'),
(7181, 'he', 'proxy', 'Proxyalreadyexist', 'הפרוקסי כבר קיים', '2011-08-12 03:04:01'),
(7182, 'he', 'backlink', 'clickproceedbacklink', 'הכנס קישור <b>אחד לשורה</b>. לחץ על <b>המשך</b> בכדיי לבדוק את הקישורים', '2011-09-07 23:33:48'),
(7183, 'he', 'backlink', 'Saved backlink results of', 'תוצאות שמורות של לינקים', '2011-09-07 23:33:48'),
(7184, 'he', 'label', 'already exist', 'כבר קיים', '2011-09-06 12:47:21'),
(7185, 'he', 'label', 'Authentication', 'אימות', '2011-09-06 12:47:21'),
(7186, 'he', 'label', 'Author', 'יוצר', '2011-09-06 12:47:21'),
(7187, 'he', 'label', 'Brocken', 'שבור', '2011-09-06 12:47:21'),
(7188, 'he', 'label', 'Click Here', 'לחץ כאן', '2011-09-06 12:47:21'),
(7189, 'he', 'label', 'Comments', 'תגובות', '2011-09-06 12:47:21'),
(7190, 'he', 'label', 'Count', 'מונה', '2011-09-06 12:47:21'),
(7191, 'he', 'label', 'Cron', 'קרון', '2011-09-06 12:47:21'),
(7192, 'he', 'label', 'Description', 'תיאור', '2011-09-06 12:47:21'),
(7193, 'he', 'label', 'Developers', 'מפתחים', '2011-09-06 12:47:21'),
(7194, 'he', 'label', 'Download', 'הורדה', '2011-09-06 12:47:21'),
(7195, 'he', 'label', 'Exclude', 'מנע', '2011-09-06 12:47:21'),
(7196, 'he', 'label', 'Include', 'כלול', '2011-09-06 12:47:21'),
(7197, 'he', 'label', 'Installation', 'התקנה', '2011-09-06 12:47:21'),
(7198, 'he', 'label', 'Keywords', 'מילות מפתח', '2011-09-06 12:47:21'),
(7199, 'he', 'label', 'noactiveplugins', 'לא קיימים תוספים פעילים לקידום אתרים!', '2011-09-06 12:47:21'),
(7200, 'he', 'label', 'Plugin', 'תוספים', '2011-09-06 12:47:21'),
(7201, 'he', 'label', 'Port', 'פורט', '2011-09-06 12:47:21'),
(7202, 'he', 'label', 'Project', 'פרוייקט', '2011-09-06 12:47:21'),
(7203, 'he', 'label', 'Proxy', 'פרוקסי', '2011-09-06 12:47:21'),
(7204, 'he', 'label', 'Re-install', 'התקנה מחודשת', '2011-09-06 12:47:21'),
(7205, 'he', 'label', 'Report Type', 'סוג דיווח', '2011-09-06 12:47:21'),
(7206, 'he', 'label', 'Score', 'תוצאה', '2011-09-06 12:47:21'),
(7207, 'he', 'label', 'Sponsors', 'תומכים', '2011-09-06 12:47:21'),
(7208, 'he', 'label', 'Title', 'כותרת', '2011-09-06 12:47:21'),
(7209, 'he', 'label', 'Total Results', 'סה\\"כ תוצאות', '2011-09-06 12:47:21'),
(7210, 'he', 'label', 'translation by', 'תורגם ע\\"י', '2011-09-06 12:47:21'),
(7211, 'he', 'label', 'Translators', 'מתרגמים', '2011-09-06 12:47:21'),
(7212, 'he', 'label', 'Updated', 'עודכן', '2011-09-06 12:47:21'),
(7213, 'he', 'label', 'Upgrade', 'שודרג', '2011-09-06 12:47:21'),
(7214, 'he', 'label', 'Version', 'גרסה', '2011-09-06 12:47:21'),
(7215, 'he', 'label', 'View Reports', 'צפה בדיווחים', '2011-09-06 12:47:21'),
(7216, 'he', 'label', 'wantproceed', 'האם אתה בטוח כי ברצונך להמשיך?', '2011-09-06 12:47:21'),
(7217, 'he', 'siteauditor', 'Anchor', 'עוגן', '2011-09-06 12:53:27'),
(7218, 'he', 'siteauditor', 'anylinkcontainabovelinks', 'כל לינק אשר מכיל את הלינקים הנ\\"ל יוסננו מהדו\\"ח', '2011-09-06 12:53:27'),
(7219, 'he', 'siteauditor', 'anylinkcontainexcludesitemap', 'כל לינק אשר מכיל את הלינקים הנ\\"ל יוסננו ממפת האתר', '2011-09-06 12:53:27'),
(7220, 'he', 'siteauditor', 'Check backlinks of pages', '', '2011-09-06 12:53:27'),
(7221, 'he', 'siteauditor', 'Check broken links in a page', 'בדוק לינקים שבורים באתר', '2011-09-06 12:53:27'),
(7222, 'he', 'siteauditor', 'Check google pagerank of pages', 'בדוק דירוג אתר של גוגל לדפים', '2011-09-06 12:53:27'),
(7223, 'he', 'siteauditor', 'Check pages indexed or not', 'בדוק דפים מאונדקסים או לא', '2011-09-06 12:53:27'),
(7224, 'he', 'siteauditor', 'Check Score', 'בדוק ניקוד', '2011-09-06 12:53:27'),
(7225, 'he', 'siteauditor', 'checkborckenlinkwait', 'בדיק לינקים שבורים יגדיל את זמן הריצה של הפרוייקט', '2011-09-06 12:53:27'),
(7226, 'he', 'siteauditor', 'Completed project execution', 'ריצת הפרוייקט הסתיימה', '2011-09-06 12:53:27'),
(7227, 'he', 'siteauditor', 'Crawled', '', '2011-09-06 12:53:27'),
(7228, 'he', 'siteauditor', 'Crawled Pages', '', '2011-09-06 12:53:27'),
(7229, 'he', 'siteauditor', 'crawledsuccesssfullywaitfornext', '', '2011-09-06 12:53:27'),
(7230, 'he', 'siteauditor', 'Crawling Page', '', '2011-09-06 12:53:27'),
(7231, 'he', 'siteauditor', 'Duplicate Description', '', '2011-09-06 12:53:27'),
(7232, 'he', 'siteauditor', 'Duplicate Keywords', '', '2011-09-06 12:53:27'),
(7233, 'he', 'siteauditor', 'Duplicate Title', '', '2011-09-06 12:53:27'),
(7234, 'he', 'siteauditor', 'Exclude links', '', '2011-09-06 12:53:27'),
(7235, 'he', 'siteauditor', 'Execute with cron', '', '2011-09-06 12:53:27'),
(7236, 'he', 'siteauditor', 'External', 'חיצוני', '2011-09-06 12:53:27'),
(7237, 'he', 'siteauditor', 'External Links', 'קישורים חיצוניים', '2011-09-06 12:53:27'),
(7238, 'he', 'siteauditor', 'Import Project Links', 'ייבא קישורים לפרוייקט', '2011-09-06 12:53:27'),
(7239, 'he', 'siteauditor', 'Insert links separated with comma', 'ייבא קישורים מופרדים בפסיק', '2011-09-06 12:53:27'),
(7240, 'he', 'siteauditor', 'insertlinkssepcoma', '', '2011-09-06 12:53:27'),
(7241, 'he', 'siteauditor', 'Link Reports', 'דוח קישורים', '2011-09-06 12:53:27'),
(7242, 'he', 'siteauditor', 'Link Title', 'כותרת קישורים', '2011-09-06 12:53:27'),
(7243, 'he', 'siteauditor', 'Maximum number of pages to be checked', 'מספר מקסימלי של דפים לבדיקה', '2011-09-06 12:53:27'),
(7244, 'he', 'siteauditor', 'Maximum Pages', 'מקסימום דפים', '2011-09-06 12:53:27'),
(7245, 'he', 'siteauditor', 'No active projects found', 'לא נמצאו פרוייקטים עובדים', '2011-09-06 12:53:27'),
(7246, 'he', 'siteauditor', 'Nofollow', '', '2011-09-06 12:53:27'),
(7247, 'he', 'siteauditor', 'Number of pages is greater than', '', '2011-09-06 12:53:27'),
(7248, 'he', 'siteauditor', 'Number of pages should be greater than', '', '2011-09-06 12:53:27'),
(7249, 'he', 'siteauditor', 'Page Details', '', '2011-09-06 12:53:27'),
(7250, 'he', 'siteauditor', 'Page Link', '', '2011-09-06 12:53:27'),
(7251, 'he', 'siteauditor', 'Page Links', '', '2011-09-06 12:53:27'),
(7252, 'he', 'siteauditor', 'Pages Found', '', '2011-09-06 12:53:27'),
(7253, 'he', 'siteauditor', 'pressescapetostopexecution', '', '2011-09-06 12:53:27'),
(7254, 'he', 'siteauditor', 'Project Summary', '', '2011-09-06 12:53:27'),
(7255, 'he', 'siteauditor', 'Project Url', '', '2011-09-06 12:53:27'),
(7256, 'he', 'siteauditor', 'projectalreadyexist', '', '2011-09-06 12:53:27'),
(7257, 'he', 'siteauditor', 'Recheck Pages', '', '2011-09-06 12:53:27'),
(7258, 'he', 'siteauditor', 'Report Summary', '', '2011-09-06 12:53:27'),
(7259, 'he', 'siteauditor', 'Run Project', '', '2011-09-06 12:53:27'),
(7260, 'he', 'siteauditor', 'should start with', '', '2011-09-06 12:53:27'),
(7261, 'he', 'siteauditor', 'Site Auditor Settings', '', '2011-09-06 12:53:27'),
(7262, 'he', 'siteauditor', 'Store all links found in a page', '', '2011-09-06 12:53:27'),
(7263, 'he', 'siteauditor', 'The page description length is not between', '', '2011-09-06 12:53:27'),
(7264, 'he', 'siteauditor', 'The page is brocken', '', '2011-09-06 12:53:27'),
(7265, 'he', 'siteauditor', 'The page is having exellent number of backlinks in', '', '2011-09-06 12:53:27'),
(7266, 'he', 'siteauditor', 'The page is having exellent pagerank', '', '2011-09-06 12:53:27'),
(7267, 'he', 'siteauditor', 'The page is having good number of backlinks in', '', '2011-09-06 12:53:27'),
(7268, 'he', 'siteauditor', 'The page is having good pagerank', '', '2011-09-06 12:53:27'),
(7269, 'he', 'siteauditor', 'The page is having poor pagerank', '', '2011-09-06 12:53:27'),
(7270, 'he', 'siteauditor', 'The page is having very good pagerank', '', '2011-09-06 12:53:27'),
(7271, 'he', 'siteauditor', 'The page is not having backlinks in', '', '2011-09-06 12:53:27'),
(7272, 'he', 'siteauditor', 'The page is not indexed in', '', '2011-09-06 12:53:27'),
(7273, 'he', 'siteauditor', 'The page keywords length is not between', '', '2011-09-06 12:53:27'),
(7274, 'he', 'siteauditor', 'The page title length is not between', '', '2011-09-06 12:53:27'),
(7275, 'he', 'siteauditor', 'The total number of links in page is greater than', '', '2011-09-06 12:53:27'),
(7276, 'he', 'siteauditor', 'to run project again if you stopped execution', '', '2011-09-06 12:53:27'),
(7277, 'he', 'siteauditor', 'to view the reports', '', '2011-09-06 12:53:27'),
(7278, 'he', 'siteauditor', 'Total Links', '', '2011-09-06 12:53:27'),
(7279, 'he', 'siteauditor', 'totallinksgreaterallowed', '', '2011-09-06 12:53:27'),
(7280, 'vn', 'backlink', 'clickproceedbacklink', 'Hãy nhập đường dẫn để kiểm tra <b>mỗi dòng một đường dẫn</b>. Sau đó nhấp chuột vào <b>Thực hiện</b> để kiểm tra Backlinks', '2012-02-01 01:28:03'),
(7281, 'vn', 'backlink', 'Saved backlink results of', 'Lưu kết quả kiểm tra backlink của', '2012-02-01 01:28:03'),
(7282, 'vn', 'button', 'Cancel', 'Hủy bỏ', '2014-01-09 00:36:48'),
(7283, 'vn', 'button', 'Check Status', 'Kiểm tra trạng thái', '2014-01-09 00:36:48'),
(7284, 'vn', 'button', 'Proceed', 'Thực hiện', '2014-01-09 00:36:48'),
(7285, 'vn', 'button', 'Reload', 'Nạp lại', '2014-01-09 00:36:48'),
(7286, 'vn', 'button', 'Show Details', 'Hiển thị chi tiết', '2014-01-09 00:36:48'),
(7287, 'vn', 'button', 'Show Records', 'Hiển thị các bản ghi', '2014-01-09 00:36:48'),
(7288, 'vn', 'button', 'Skip', 'Bỏ qua', '2014-01-09 00:36:48'),
(7289, 'vn', 'button', 'Submit', 'Đồng ý', '2014-01-09 00:36:48'),
(7290, 'vn', 'common', 'Action', 'Thao tác', '2019-05-25 22:54:57'),
(7291, 'vn', 'common', 'Activate', 'Kích hoạt', '2019-05-25 22:54:57'),
(7292, 'vn', 'common', 'Active', 'Hoạt động', '2019-05-25 22:54:57'),
(7293, 'vn', 'common', 'Admin Panel', 'Bảng điều khiển Admin', '2019-05-25 22:54:57'),
(7294, 'vn', 'common', 'Alexa Rank', 'Thứ hạng trên Alexa', '2019-05-25 22:54:57'),
(7295, 'vn', 'common', 'All', 'Tất cả', '2019-05-25 22:54:57'),
(7296, 'vn', 'common', 'Category', 'Danh mục', '2019-05-25 22:54:57'),
(7297, 'vn', 'common', 'contact', 'Liên hệ', '2019-05-25 22:54:57'),
(7298, 'vn', 'common', 'copyright', 'Bản quyền thuộc © về www.seopanel.in', '2019-05-25 22:54:57'),
(7299, 'vn', 'common', 'Country', 'Quốc gia', '2019-05-25 22:54:57'),
(7300, 'vn', 'common', 'Crawl Meta Data', 'Thu thập thông tin dữ liệu thẻ Meta', '2019-05-25 22:54:57'),
(7301, 'vn', 'common', 'Date', 'Ngày', '2019-05-25 22:54:57'),
(7302, 'vn', 'common', 'Delete', 'Xóa', '2019-05-25 22:54:57'),
(7303, 'vn', 'common', 'Details', 'Thông tin chi tiết', '2019-05-25 22:54:57'),
(7304, 'vn', 'common', 'Directory', 'Danh bạ', '2019-05-25 22:54:57'),
(7305, 'vn', 'common', 'Donate', 'Quyên góp', '2019-05-25 22:54:57'),
(7306, 'vn', 'common', 'Edit', 'Sửa', '2019-05-25 22:54:57'),
(7307, 'vn', 'common', 'Entry cannot be blank', 'Mục nhập nội dung không thể để trống', '2019-05-25 22:54:57'),
(7308, 'vn', 'common', 'entrynotvalid', 'Các mục nhập vào dường như không có giá trị', '2019-05-25 22:54:57'),
(7309, 'vn', 'common', 'failed', 'sai', '2019-05-25 22:54:57'),
(7310, 'vn', 'common', 'forum', 'Diễn đàn', '2019-05-25 22:54:57'),
(7311, 'vn', 'common', 'Found', 'Tìm', '2019-05-25 22:54:57'),
(7312, 'vn', 'common', 'Google Pagerank', 'PR', '2019-05-25 22:54:57'),
(7313, 'vn', 'common', 'help', 'Trợ giúp', '2019-05-25 22:54:57'),
(7314, 'vn', 'common', 'hidenews', 'Ẩn tin tức tức Seo Panel', '2019-05-25 22:54:57'),
(7315, 'vn', 'common', 'Id', 'ID', '2019-05-25 22:54:57'),
(7316, 'vn', 'common', 'Inactivate', 'Hủy kích hoạt', '2019-05-25 22:54:57'),
(7317, 'vn', 'common', 'Inactive', 'Chưa kích hoạt', '2019-05-25 22:54:57'),
(7318, 'vn', 'common', 'Invalid characters', 'Các ký tự không hợp lệ', '2019-05-25 22:54:57'),
(7319, 'vn', 'common', 'Invalid code entered', 'Bạn đã nhập mã không hợp lệ', '2019-05-25 22:54:57'),
(7320, 'vn', 'common', 'Invalid email address entered', 'Bạn đã nhập địa chỉ E-mail không hợp lệ', '2019-05-25 22:54:57'),
(7321, 'vn', 'common', 'Invalid value', 'Giá trị không hợp lệ', '2019-05-25 22:54:57'),
(7322, 'vn', 'common', 'Keyword', 'Từ khóa', '2019-05-25 22:54:57'),
(7323, 'vn', 'common', 'Keywords', 'Từ khóa', '2019-05-25 22:54:57'),
(7324, 'vn', 'common', 'lang', 'Ngôn ngữ', '2019-05-25 22:54:57'),
(7325, 'vn', 'common', 'My Account', 'Tài khoản của tôi', '2019-05-25 22:54:57'),
(7326, 'vn', 'common', 'Name', 'Tên', '2019-05-25 22:54:57'),
(7327, 'vn', 'common', 'No', 'Không', '2019-05-25 22:54:57'),
(7328, 'vn', 'common', 'No Keywords Found', 'Không tìm thấy từ kóa nào', '2019-05-25 22:54:57'),
(7329, 'vn', 'common', 'No Records Found', 'Không tìm thấy mẫu tin nào', '2019-05-25 22:54:57'),
(7330, 'vn', 'common', 'noactivetools', 'Không tìm thấy công cụ seo nào hoạt động!', '2019-05-25 22:54:57'),
(7331, 'vn', 'common', 'nowebsites', 'Không tìm thấy website', '2019-05-25 22:54:57'),
(7332, 'vn', 'common', 'password632', 'Mật khẩu phải nằm trong khoản từ 6 đến 32 ký tự', '2019-05-25 22:54:57'),
(7333, 'vn', 'common', 'passwordnotmatch', 'Mật khẩu không giống nhau', '2019-05-25 22:54:57'),
(7334, 'vn', 'common', 'Period', 'Thời gian', '2019-05-25 22:54:57'),
(7335, 'vn', 'common', 'Priority', 'Ưu tiên', '2019-05-25 22:54:57'),
(7336, 'vn', 'common', 'Profile', 'Hồ Sơ', '2019-05-25 22:54:57'),
(7337, 'vn', 'common', 'Rank', 'Vị trí', '2019-05-25 22:54:57'),
(7338, 'vn', 'common', 'Reports', 'Báo cáo', '2019-05-25 22:54:57'),
(7339, 'vn', 'common', 'Results', 'Kết quả', '2019-05-25 22:54:57'),
(7340, 'vn', 'common', 'Search Engine', 'Công cụ tìm kiếm', '2019-05-25 22:54:57'),
(7341, 'vn', 'common', 'Select', 'Chọn', '2019-05-25 22:54:57'),
(7342, 'vn', 'common', 'Seo Plugins', 'Phần bổ trợ Seo', '2019-05-25 22:54:57'),
(7343, 'vn', 'common', 'Seo Tools', 'Công cụ Seo', '2019-05-25 22:54:57'),
(7344, 'vn', 'common', 'Sign out', 'Thoát', '2019-05-25 22:54:57'),
(7345, 'vn', 'common', 'Sign Up', 'Đăng ký', '2019-05-25 22:54:57'),
(7346, 'vn', 'common', 'signin', 'Đăng nập', '2019-05-25 22:54:57'),
(7347, 'vn', 'common', 'Status', 'Trạng thái', '2019-05-25 22:54:57'),
(7348, 'vn', 'common', 'Support', 'Hổ trợ', '2019-05-25 22:54:57'),
(7349, 'vn', 'common', 'Total', 'Tổng cộng', '2019-05-25 22:54:57'),
(7350, 'vn', 'common', 'Url', 'Đường dẫn (URL)', '2019-05-25 22:54:57'),
(7351, 'vn', 'common', 'User', 'Tên truy cập', '2019-05-25 22:54:57'),
(7352, 'vn', 'common', 'User Panel', 'Bảng điều khiển người dùng', '2019-05-25 22:54:57'),
(7353, 'vn', 'common', 'Website', 'Website', '2019-05-25 22:54:57'),
(7354, 'vn', 'common', 'Yes', 'Có', '2019-05-25 22:54:57'),
(7355, 'vn', 'directory', 'Add back to directory list', 'Trở lại danh sách danh bạ', '2014-01-10 09:05:11'),
(7356, 'vn', 'directory', 'Approved', 'Được chấp thuận', '2014-01-10 09:05:11'),
(7357, 'vn', 'directory', 'Captcha', 'Mã xác nhận', '2014-01-10 09:05:11'),
(7358, 'vn', 'directory', 'categorynote', 'Danh mục, tách chúng bằng dấu phẩy (,) theo mức độ ưu tiên. Bắt đầu với thể loại ưu tiên hàng đầu.', '2014-01-10 09:05:11'),
(7359, 'vn', 'directory', 'Check Directory Status', 'Kiểm tra trạng thái Danh bạ', '2014-01-10 09:05:11'),
(7360, 'vn', 'directory', 'Check Directory Submission Status', 'Kiểm tra trạng thái đăng ký vào danh bạ', '2014-01-10 09:05:11'),
(7361, 'vn', 'directory', 'clicktoproceeddirsts', 'Nhấp chuột vào <b> Thực hiện</b> để tiến hành kiểm tra trạng thái.', '2014-01-10 09:05:11'),
(7362, 'vn', 'directory', 'Confirmation', 'Xác nhận', '2014-01-10 09:05:11'),
(7363, 'vn', 'directory', 'desnote', 'Có một số danh bạ yêu cầu bạn phải nhập tối thiểu là 150 ký tự cho mục miêu tả', '2014-01-10 09:05:11'),
(7364, 'vn', 'directory', 'Directories with out captcha', 'Các danh bạ bắt phải nhập mã xác thực', '2014-01-10 09:05:11'),
(7365, 'vn', 'directory', 'Directory Submission Reports', 'Báo cáo việc đăng ký vào các danh bạ', '2014-01-10 09:05:11'),
(7366, 'vn', 'directory', 'Enter the code shown', 'Nhập mã được hiển thị', '2014-01-10 09:05:11'),
(7367, 'vn', 'directory', 'nocatnote', 'Danh mục gửi đăng ký khôn gđược tìm thấy trong trang đăng ký. Vui lòng nhấp chuột vào <b>Nạp lại</b> hoặc <b>Bỏ qua</b>', '2014-01-10 09:05:11'),
(7368, 'vn', 'directory', 'nodirnote', 'Không tìm thấy danh bạ <b>Hoạt động</b>', '2014-01-10 09:05:11'),
(7369, 'vn', 'directory', 'nosuccessnote', 'Nếu không nhận được thông báo thành công. Xin vui lòng kiểm tra trong hòm thư của ạn để tìm thư yêu cầu xác nhận', '2014-01-10 09:05:11'),
(7370, 'vn', 'directory', 'optionalnote', 'Tùy chọn Tiêu đề và mô tả để gửi với Tiêu đề ngẫu nhiên và mô tả cho danh bạ sẽ cho kết quả tốt hơn.', '2014-01-10 09:05:11'),
(7371, 'vn', 'directory', 'Owner Email', 'Email người gửi', '2014-01-10 09:05:11'),
(7372, 'vn', 'directory', 'Owner Name', 'Tên người gửi', '2014-01-10 09:05:11'),
(7373, 'vn', 'directory', 'Pending', 'Trong thời gian chờ', '2014-01-10 09:05:11'),
(7374, 'vn', 'directory', 'Please select a website to proceed', 'Vui lòng chọn một website để thực hiện', '2014-01-10 09:05:11'),
(7375, 'vn', 'directory', 'Reciprocal Link', 'Liên kết tương xứng', '2014-01-10 09:05:11'),
(7376, 'vn', 'directory', 'selectwebsiteproceed', 'Chọn một <b>Website</b> để <b>Thực hiện</b> đăng ký vào danh bạ website.<b>Kiểm tra</b> những danh bạ không yêu cầu nhập <b>mã xác nhận</b> để gửi.', '2014-01-10 09:05:11'),
(7377, 'vn', 'directory', 'selectwebsiteschecksub', 'Chọn <b>một Website</b> để <b> thực hiện</b> kiểm tra đã được gửi lên các danh bạ website hay chưa.', '2014-01-10 09:05:11'),
(7378, 'vn', 'directory', 'Semi Automatic Directory Submission Tool', 'Công cụ submit website lên danh bạ website bán tự động', '2014-01-10 09:05:11'),
(7379, 'vn', 'directory', 'spamemailnote', 'Có một số danh bạ website có thể sử dụng chức năng Spam, chúng tôi không khuyến khích bạn sử dụng địa chỉ email chính của mình', '2014-01-10 09:05:11'),
(7380, 'vn', 'directory', 'Submission Details', 'Thông tin chi tiết việc Submit', '2014-01-10 09:05:11'),
(7381, 'vn', 'directory', 'Submit Description', 'Môt tả việc gửi thông tin', '2014-01-10 09:05:11'),
(7382, 'vn', 'directory', 'Submit Keywords', 'Từ khóa gửi', '2014-01-10 09:05:11'),
(7383, 'vn', 'directory', 'Submit Title', 'Tiêu đề gửi', '2014-01-10 09:05:11'),
(7384, 'vn', 'directory', 'Website Category', 'Danh mục website', '2014-01-10 09:05:11'),
(7385, 'vn', 'directory', 'Website Url', 'Địa chỉ website', '2014-01-10 09:05:11'),
(7386, 'vn', 'home', 'Account Summary', 'Tóm tắt thông tin tài khoản', '2012-02-03 03:03:54'),
(7387, 'vn', 'home', 'Backlinks', 'Backlinks', '2012-02-03 03:03:54'),
(7388, 'vn', 'home', 'Directory Submission', 'Gửi lên danh bạ website', '2012-02-03 03:03:54'),
(39254, 'it', 'siteauditor', 'AI Robot Compatibility', 'Compatibilità robot AI', '2026-01-19 23:03:20'),
(39255, 'nl', 'siteauditor', 'AI Robot Compatibility', 'AI-robotcompatibiliteit', '2026-01-19 23:03:20'),
(39256, 'pl', 'siteauditor', 'AI Robot Compatibility', 'Kompatybilność z robotami AI', '2026-01-19 23:03:20'),
(39257, 'pt', 'siteauditor', 'AI Robot Compatibility', 'Compatibilidade com robôs de IA', '2026-01-19 23:03:20'),
(39258, 'pt-br', 'siteauditor', 'AI Robot Compatibility', 'Compatibilidade com robôs de IA', '2026-01-19 23:03:20'),
(39259, 'ru', 'siteauditor', 'AI Robot Compatibility', 'Совместимость с AI роботами', '2026-01-19 23:03:20'),
(39260, 'tr', 'siteauditor', 'AI Robot Compatibility', 'AI Robot Uyumluluğu', '2026-01-19 23:03:20'),
(39261, 'zh', 'siteauditor', 'AI Robot Compatibility', 'AI机器人兼容性', '2026-01-19 23:03:20'),
(39262, 'cn', 'siteauditor', 'AI Robot Compatibility', 'AI机器人兼容性', '2026-01-19 23:03:20'),
(39263, 'en', 'siteauditor', 'Allowed', 'Allowed', '2026-01-19 23:03:20'),
(39264, 'ar', 'siteauditor', 'Allowed', 'مسموح', '2026-01-19 23:03:20'),
(39265, 'bg', 'siteauditor', 'Allowed', 'Разрешено', '2026-01-19 23:03:20'),
(39266, 'de', 'siteauditor', 'Allowed', 'Erlaubt', '2026-01-19 23:03:20'),
(39267, 'es', 'siteauditor', 'Allowed', 'Permitido', '2026-01-19 23:03:20'),
(39268, 'fr', 'siteauditor', 'Allowed', 'Autorisé', '2026-01-19 23:03:20'),
(39269, 'it', 'siteauditor', 'Allowed', 'Consentito', '2026-01-19 23:03:20'),
(39270, 'nl', 'siteauditor', 'Allowed', 'Toegestaan', '2026-01-19 23:03:20'),
(39271, 'pl', 'siteauditor', 'Allowed', 'Dozwolone', '2026-01-19 23:03:20'),
(39272, 'pt', 'siteauditor', 'Allowed', 'Permitido', '2026-01-19 23:03:20'),
(39273, 'pt-br', 'siteauditor', 'Allowed', 'Permitido', '2026-01-19 23:03:20'),
(39274, 'ru', 'siteauditor', 'Allowed', 'Разрешено', '2026-01-19 23:03:20'),
(39275, 'tr', 'siteauditor', 'Allowed', 'İzin verildi', '2026-01-19 23:03:20'),
(39276, 'zh', 'siteauditor', 'Allowed', '允许', '2026-01-19 23:03:20'),
(39277, 'cn', 'siteauditor', 'Allowed', '允许', '2026-01-19 23:03:20'),
(39278, 'en', 'siteauditor', 'Blocked', 'Blocked', '2026-01-19 23:07:11'),
(39279, 'ar', 'siteauditor', 'Blocked', 'محظور', '2026-01-19 23:07:11'),
(39280, 'bg', 'siteauditor', 'Blocked', 'Блокиран', '2026-01-19 23:07:11'),
(39281, 'de', 'siteauditor', 'Blocked', 'Blockiert', '2026-01-19 23:07:11'),
(39282, 'es', 'siteauditor', 'Blocked', 'Bloqueado', '2026-01-19 23:07:11'),
(39283, 'fr', 'siteauditor', 'Blocked', 'Bloqué', '2026-01-19 23:07:11'),
(39284, 'it', 'siteauditor', 'Blocked', 'Bloccato', '2026-01-19 23:07:11'),
(39285, 'nl', 'siteauditor', 'Blocked', 'Geblokkeerd', '2026-01-19 23:07:11'),
(39286, 'pl', 'siteauditor', 'Blocked', 'Zablokowane', '2026-01-19 23:07:11'),
(39287, 'pt', 'siteauditor', 'Blocked', 'Bloqueado', '2026-01-19 23:07:11'),
(39288, 'pt-br', 'siteauditor', 'Blocked', 'Bloqueado', '2026-01-19 23:07:11'),
(39289, 'ru', 'siteauditor', 'Blocked', 'Заблокировано', '2026-01-19 23:07:11'),
(39290, 'tr', 'siteauditor', 'Blocked', 'Engellendi', '2026-01-19 23:07:11'),
(39291, 'zh', 'siteauditor', 'Blocked', '已阻止', '2026-01-19 23:07:11'),
(39292, 'cn', 'siteauditor', 'Blocked', '已阻止', '2026-01-19 23:07:11'),
(39293, 'en', 'siteauditor', 'The page allows AI robots to crawl and index content', 'The page allows AI robots to crawl and index content', '2026-01-19 23:07:11'),
(39294, 'ar', 'siteauditor', 'The page allows AI robots to crawl and index content', 'تسمح الصفحة لروبوتات الذكاء الاصطناعي بالزحف وفهرسة المحتوى', '2026-01-19 23:07:11'),
(39295, 'bg', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Страницата позволява на AI роботите да сканират и индексират съдържанието', '2026-01-19 23:07:11'),
(39296, 'de', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Die Seite erlaubt KI-Robotern, Inhalte zu crawlen und zu indizieren', '2026-01-19 23:07:11'),
(39297, 'es', 'siteauditor', 'The page allows AI robots to crawl and index content', 'La página permite que los robots de IA rastreen e indexen el contenido', '2026-01-19 23:07:11'),
(39298, 'fr', 'siteauditor', 'The page allows AI robots to crawl and index content', 'La page permet aux robots IA d''explorer et d''indexer le contenu', '2026-01-19 23:07:11'),
(39299, 'it', 'siteauditor', 'The page allows AI robots to crawl and index content', 'La pagina consente ai robot AI di eseguire la scansione e indicizzare i contenuti', '2026-01-19 23:07:11'),
(39300, 'nl', 'siteauditor', 'The page allows AI robots to crawl and index content', 'De pagina staat AI-robots toe om inhoud te crawlen en te indexeren', '2026-01-19 23:07:11'),
(39301, 'pl', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Strona pozwala robotom AI na indeksowanie treści', '2026-01-19 23:07:11'),
(39302, 'pt', 'siteauditor', 'The page allows AI robots to crawl and index content', 'A página permite que robôs de IA rastreiem e indexem o conteúdo', '2026-01-19 23:07:11'),
(39303, 'pt-br', 'siteauditor', 'The page allows AI robots to crawl and index content', 'A página permite que robôs de IA rastreiem e indexem o conteúdo', '2026-01-19 23:07:11'),
(38817, 'pt-br', 'review', 'Reviews by Platform', 'Avaliações por plataforma', '2026-01-19 22:58:50'),
(38818, 'ro', 'review', 'Reviews by Platform', 'Recenzii pe platformă', '2026-01-19 22:58:50'),
(38819, 'ru', 'review', 'Reviews by Platform', 'Отзывы по платформам', '2026-01-19 22:58:50'),
(38820, 'sk', 'review', 'Reviews by Platform', 'Recenzie podľa platformy', '2026-01-19 22:58:50'),
(38821, 'sl', 'review', 'Reviews by Platform', 'Mnenja po platformi', '2026-01-19 22:58:50'),
(38822, 'sq', 'review', 'Reviews by Platform', 'Rishikime sipas platformës', '2026-01-19 22:58:50'),
(38823, 'sr', 'review', 'Reviews by Platform', 'Рецензије по платформи', '2026-01-19 22:58:50'),
(38824, 'sv', 'review', 'Reviews by Platform', 'Recensioner per plattform', '2026-01-19 22:58:50'),
(38825, 'sw', 'review', 'Reviews by Platform', 'Mapitio kwa Jukwaa', '2026-01-19 22:58:50'),
(38826, 'th', 'review', 'Reviews by Platform', 'รีวิวตามแพลตฟอร์ม', '2026-01-19 22:58:50'),
(38827, 'tl', 'review', 'Reviews by Platform', 'Mga Review ayon sa Platform', '2026-01-19 22:58:50'),
(38828, 'tr', 'review', 'Reviews by Platform', 'Platforma göre incelemeler', '2026-01-19 22:58:50'),
(38829, 'uk', 'review', 'Reviews by Platform', 'Відгуки за платформами', '2026-01-19 22:58:50'),
(38830, 'vn', 'review', 'Reviews by Platform', 'Đánh giá theo nền tảng', '2026-01-19 22:58:50'),
(7392, 'vn', 'home', 'Indexed', 'Indexed', '2012-02-03 03:03:54'),
(7393, 'vn', 'home', 'Pages Indexed', 'Pages Indexed', '2012-02-03 03:03:54'),
(7394, 'vn', 'home', 'Ranks', 'Thứ hạng', '2012-02-03 03:03:54'),
(7395, 'vn', 'home', 'SiteNameUrl', 'Tên stie/ Đường dẫn', '2012-02-03 03:03:54'),
(7396, 'vn', 'home', 'Website Statistics', 'Thống kê website', '2012-02-03 03:03:54'),
(7397, 'es-ar', 'home', 'Account Summary', 'Resumen de la Cuenta', '2014-01-07 00:23:36'),
(7398, 'es-ar', 'home', 'Backlinks', 'Referencias', '2014-01-07 00:23:36'),
(7399, 'es-ar', 'home', 'Directory Submission', 'Envio de Directorio', '2014-01-07 00:23:36'),
(39212, 'nl', 'siteauditor', 'Leave blank to use system default', 'Laat leeg om systeemstandaard te gebruiken', '2026-01-19 23:00:37'),
(39213, 'pl', 'siteauditor', 'Leave blank to use system default', 'Pozostaw puste, aby użyć domyślnych ustawień systemowych', '2026-01-19 23:00:37'),
(39214, 'pt', 'siteauditor', 'Leave blank to use system default', 'Deixe em branco para usar o padrão do sistema', '2026-01-19 23:00:37'),
(39215, 'pt-br', 'siteauditor', 'Leave blank to use system default', 'Deixe em branco para usar o padrão do sistema', '2026-01-19 23:00:37'),
(39216, 'ru', 'siteauditor', 'Leave blank to use system default', 'Оставьте пустым, чтобы использовать системное значение по умолчанию', '2026-01-19 23:00:37'),
(39217, 'tr', 'siteauditor', 'Leave blank to use system default', 'Sistem varsayılanını kullanmak için boş bırakın', '2026-01-19 23:00:37'),
(39218, 'zh', 'siteauditor', 'Leave blank to use system default', '留空以使用系统默认值', '2026-01-19 23:00:37'),
(39219, 'cn', 'siteauditor', 'Leave blank to use system default', '留空以使用系统默认值', '2026-01-19 23:00:37'),
(39220, 'ar', 'siteauditor', 'Canonical URL', 'عنوان URL الأساسي', '2026-01-19 23:01:06'),
(39221, 'bg', 'siteauditor', 'Canonical URL', 'Каноничен URL', '2026-01-19 23:01:06'),
(39222, 'de', 'siteauditor', 'Canonical URL', 'Kanonische URL', '2026-01-19 23:01:06'),
(39223, 'es', 'siteauditor', 'Canonical URL', 'URL canónica', '2026-01-19 23:01:06'),
(39224, 'fr', 'siteauditor', 'Canonical URL', 'URL canonique', '2026-01-19 23:01:06'),
(39225, 'it', 'siteauditor', 'Canonical URL', 'URL canonico', '2026-01-19 23:01:06'),
(39226, 'nl', 'siteauditor', 'Canonical URL', 'Canonieke URL', '2026-01-19 23:01:06'),
(39227, 'pl', 'siteauditor', 'Canonical URL', 'Kanoniczny URL', '2026-01-19 23:01:06'),
(39228, 'pt', 'siteauditor', 'Canonical URL', 'URL canônico', '2026-01-19 23:01:06'),
(39229, 'pt-br', 'siteauditor', 'Canonical URL', 'URL canônica', '2026-01-19 23:01:06'),
(39230, 'ru', 'siteauditor', 'Canonical URL', 'Канонический URL', '2026-01-19 23:01:06'),
(39231, 'tr', 'siteauditor', 'Canonical URL', 'Kanonik URL', '2026-01-19 23:01:06'),
(39232, 'zh', 'siteauditor', 'Canonical URL', '规范网址', '2026-01-19 23:01:06'),
(39233, 'cn', 'siteauditor', 'Canonical URL', '规范网址', '2026-01-19 23:01:06'),
(39234, 'ar', 'siteauditor', 'Discovered Via', 'اكتشف عبر', '2026-01-19 23:03:20'),
(39235, 'bg', 'siteauditor', 'Discovered Via', 'Открит чрез', '2026-01-19 23:03:20'),
(39236, 'de', 'siteauditor', 'Discovered Via', 'Entdeckt über', '2026-01-19 23:03:20'),
(39237, 'es', 'siteauditor', 'Discovered Via', 'Descubierto a través de', '2026-01-19 23:03:20'),
(39238, 'fr', 'siteauditor', 'Discovered Via', 'Découvert via', '2026-01-19 23:03:20'),
(39239, 'it', 'siteauditor', 'Discovered Via', 'Scoperto tramite', '2026-01-19 23:03:20'),
(39240, 'nl', 'siteauditor', 'Discovered Via', 'Ontdekt via', '2026-01-19 23:03:20'),
(39241, 'pl', 'siteauditor', 'Discovered Via', 'Odkryty przez', '2026-01-19 23:03:20'),
(39242, 'pt', 'siteauditor', 'Discovered Via', 'Descoberto via', '2026-01-19 23:03:20'),
(39243, 'pt-br', 'siteauditor', 'Discovered Via', 'Descoberto via', '2026-01-19 23:03:20'),
(39244, 'ru', 'siteauditor', 'Discovered Via', 'Обнаружено через', '2026-01-19 23:03:20'),
(39245, 'tr', 'siteauditor', 'Discovered Via', 'Keşfedildiği yol', '2026-01-19 23:03:20'),
(39246, 'zh', 'siteauditor', 'Discovered Via', '发现途径', '2026-01-19 23:03:20'),
(39247, 'cn', 'siteauditor', 'Discovered Via', '发现途径', '2026-01-19 23:03:20'),
(39248, 'en', 'siteauditor', 'AI Robot Compatibility', 'AI Robot Compatibility', '2026-01-19 23:03:20'),
(39249, 'ar', 'siteauditor', 'AI Robot Compatibility', 'توافق روبوت الذكاء الاصطناعي', '2026-01-19 23:03:20'),
(39250, 'bg', 'siteauditor', 'AI Robot Compatibility', 'Съвместимост с AI робот', '2026-01-19 23:03:20'),
(39251, 'de', 'siteauditor', 'AI Robot Compatibility', 'KI-Roboter-Kompatibilität', '2026-01-19 23:03:20'),
(39252, 'es', 'siteauditor', 'AI Robot Compatibility', 'Compatibilidad con robots de IA', '2026-01-19 23:03:20'),
(39253, 'fr', 'siteauditor', 'AI Robot Compatibility', 'Compatibilité des robots IA', '2026-01-19 23:03:20'),
(38804, 'hr', 'review', 'Reviews by Platform', 'Recenzije po platformi', '2026-01-19 22:58:50'),
(38805, 'hu', 'review', 'Reviews by Platform', 'Értékelések platformonként', '2026-01-19 22:58:50'),
(38806, 'hy', 'review', 'Reviews by Platform', 'Ակնարկներ ըստ հարթակի', '2026-01-19 22:58:50'),
(38807, 'id', 'review', 'Reviews by Platform', 'Ulasan menurut Platform', '2026-01-19 22:58:50'),
(38808, 'it', 'review', 'Reviews by Platform', 'Recensioni per Piattaforma', '2026-01-19 22:58:50'),
(38809, 'ja', 'review', 'Reviews by Platform', 'プラットフォーム別レビュー', '2026-01-19 22:58:50'),
(38810, 'ko', 'review', 'Reviews by Platform', '플랫폼별 리뷰', '2026-01-19 22:58:50');
INSERT INTO `texts` VALUES
(38811, 'lt', 'review', 'Reviews by Platform', 'Atsiliepimai pagal platformą', '2026-01-19 22:58:50'),
(38812, 'mk', 'review', 'Reviews by Platform', 'Рецензии по платформа', '2026-01-19 22:58:50'),
(38813, 'nl', 'review', 'Reviews by Platform', 'Beoordelingen per platform', '2026-01-19 22:58:50'),
(38814, 'no', 'review', 'Reviews by Platform', 'Anmeldelser etter plattform', '2026-01-19 22:58:50'),
(38815, 'pl', 'review', 'Reviews by Platform', 'Recenzje według platformy', '2026-01-19 22:58:50'),
(38816, 'pt', 'review', 'Reviews by Platform', 'Avaliações por plataforma', '2026-01-19 22:58:50'),
(7403, 'es-ar', 'home', 'Indexed', 'Indexado', '2014-01-07 00:23:36'),
(7404, 'es-ar', 'home', 'Pages Indexed', 'Paginas IndexadasN', '2014-01-07 00:23:36'),
(7405, 'es-ar', 'home', 'Ranks', 'Rankings', '2014-01-07 00:23:36'),
(7406, 'es-ar', 'home', 'SiteNameUrl', 'Nombre del Sitio/URL', '2014-01-07 00:23:36'),
(7407, 'es-ar', 'home', 'Website Statistics', 'Estadisticas del Sitio', '2014-01-07 00:23:36'),
(7408, 'da', 'directory', 'Reciprocal Link', '(Gensidigt) Reciprocal Link', '2013-01-15 03:40:16'),
(7409, 'da', 'home', 'Indexed', 'Indekseret', '2014-01-20 13:56:43'),
(7410, 'sl', 'backlink', 'clickproceedbacklink', 'Vpišite URL-je <b>Vsakega v svojo vrstico</b>. Kliknite <b>Nadaljuj</b> za preverjanje povratnih povezav.', '2012-01-20 12:52:51'),
(7411, 'sl', 'backlink', 'Saved backlink results of', 'Shranjeni rezultati povratnih povezav od', '2012-01-20 12:52:51'),
(7412, 'sl', 'button', 'Cancel', 'Prekliči', '2014-01-09 00:33:56'),
(7413, 'sl', 'button', 'Check Status', 'Preveri status', '2014-01-09 00:33:56'),
(7414, 'sl', 'button', 'Proceed', 'Nadaljuj', '2014-01-09 00:33:56'),
(7415, 'sl', 'button', 'Reload', 'Osveži', '2014-01-09 00:33:56'),
(7416, 'sl', 'button', 'Show Details', 'Pokaži podrobnosti', '2014-01-09 00:33:56'),
(7417, 'sl', 'button', 'Show Records', 'Pokaži shranjene zapise', '2014-01-09 00:33:56'),
(7418, 'sl', 'button', 'Skip', 'Preskoči', '2014-01-09 00:33:56'),
(7419, 'sl', 'button', 'Submit', 'Pošlji', '2014-01-09 00:33:56'),
(7420, 'sl', 'common', 'Action', 'Akcija', '2019-05-25 22:48:22'),
(7421, 'sl', 'common', 'Activate', 'Vključi', '2019-05-25 22:48:22'),
(7422, 'sl', 'common', 'Active', 'Vključeno', '2019-05-25 22:48:22'),
(7423, 'sl', 'common', 'Admin Panel', 'Nadzorna plošča', '2019-05-25 22:48:22'),
(7424, 'sl', 'common', 'Alexa Rank', 'Rang v Alexi', '2019-05-25 22:48:22'),
(7425, 'sl', 'common', 'All', 'Vse', '2019-05-25 22:48:22'),
(7426, 'sl', 'common', 'Category', 'Kategorija', '2019-05-25 22:48:22'),
(7427, 'sl', 'common', 'contact', 'Kontakt', '2019-05-25 22:48:22'),
(7428, 'sl', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Vse pravice pridržane', '2019-05-25 22:48:22'),
(7429, 'sl', 'common', 'Country', 'Država', '2019-05-25 22:48:22'),
(7430, 'sl', 'common', 'Crawl Meta Data', 'Pridobi metapodatke', '2019-05-25 22:48:22'),
(7431, 'sl', 'common', 'Date', 'Datum', '2019-05-25 22:48:22'),
(7432, 'sl', 'common', 'Delete', 'Izbriši', '2019-05-25 22:48:22'),
(7433, 'sl', 'common', 'Details', 'Podrobnosti', '2019-05-25 22:48:22'),
(7434, 'sl', 'common', 'Directory', 'Direktorij', '2019-05-25 22:48:22'),
(7435, 'sl', 'common', 'Donate', 'Donacije', '2019-05-25 22:48:22'),
(7436, 'sl', 'common', 'Edit', 'Uredi', '2019-05-25 22:48:22'),
(7437, 'sl', 'common', 'Entry cannot be blank', 'Vnos ne sme biti prazen', '2019-05-25 22:48:22'),
(7438, 'sl', 'common', 'entrynotvalid', 'Napaka pri vnosu', '2019-05-25 22:48:22'),
(7439, 'sl', 'common', 'failed', 'neuspešno', '2019-05-25 22:48:22'),
(7440, 'sl', 'common', 'forum', 'Forum', '2019-05-25 22:48:22'),
(7441, 'sl', 'common', 'Found', 'Najdeno', '2019-05-25 22:48:22'),
(7442, 'sl', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:48:22'),
(7443, 'sl', 'common', 'help', 'Pomoč', '2019-05-25 22:48:22'),
(7444, 'sl', 'common', 'hidenews', 'Skrij Seo Panel novice', '2019-05-25 22:48:22'),
(7445, 'sl', 'common', 'Id', 'ID', '2019-05-25 22:48:22'),
(7446, 'sl', 'common', 'Inactivate', 'Deaktiviraj', '2019-05-25 22:48:22'),
(7447, 'sl', 'common', 'Inactive', 'Neaktivno', '2019-05-25 22:48:22'),
(7448, 'sl', 'common', 'Invalid characters', 'Napačni znaki', '2019-05-25 22:48:22'),
(7449, 'sl', 'common', 'Invalid code entered', 'Vnešena napačna koda', '2019-05-25 22:48:22'),
(7450, 'sl', 'common', 'Invalid email address entered', 'Vnešen napačni E-naslov', '2019-05-25 22:48:22'),
(7451, 'sl', 'common', 'Invalid value', 'Napačna vrednost', '2019-05-25 22:48:22'),
(7452, 'sl', 'common', 'Keyword', 'Ključna beseda', '2019-05-25 22:48:22'),
(7453, 'sl', 'common', 'Keywords', 'Ključne besede', '2019-05-25 22:48:22'),
(7454, 'sl', 'common', 'lang', 'Jezik', '2019-05-25 22:48:22'),
(7455, 'sl', 'common', 'My Account', 'Moj Račun', '2019-05-25 22:48:22'),
(7456, 'sl', 'common', 'Name', 'Ime', '2019-05-25 22:48:22'),
(7457, 'sl', 'common', 'No', 'Ne', '2019-05-25 22:48:22'),
(7458, 'sl', 'common', 'No Keywords Found', 'Ne najdemo ključnih besed', '2019-05-25 22:48:22'),
(7459, 'sl', 'common', 'No Records Found', 'ne najdemo zapisov', '2019-05-25 22:48:22'),
(7460, 'sl', 'common', 'noactivetools', 'Ni nobenega vključenega SEO orodja', '2019-05-25 22:48:22'),
(7461, 'sl', 'common', 'nowebsites', 'Ni najdenih spletnih strani', '2019-05-25 22:48:22'),
(7462, 'sl', 'common', 'password632', 'Geslo mora biti dolgo med 6 in 32 znakov', '2019-05-25 22:48:22'),
(7463, 'sl', 'common', 'passwordnotmatch', 'Gesli se ne ujemata', '2019-05-25 22:48:22'),
(7464, 'sl', 'common', 'Period', 'Pika', '2019-05-25 22:48:22'),
(7465, 'sl', 'common', 'Priority', 'Prioriteta', '2019-05-25 22:48:22'),
(7466, 'sl', 'common', 'Profile', 'Profil', '2019-05-25 22:48:22'),
(7467, 'sl', 'common', 'Rank', 'Rang', '2019-05-25 22:48:22'),
(7468, 'sl', 'common', 'Reports', 'Poročila', '2019-05-25 22:48:22'),
(7469, 'sl', 'common', 'Results', 'Rezultati', '2019-05-25 22:48:22'),
(7470, 'sl', 'common', 'Search Engine', 'Iskalnik', '2019-05-25 22:48:22'),
(7471, 'sl', 'common', 'Select', 'Izberi', '2019-05-25 22:48:22'),
(7472, 'sl', 'common', 'Seo Plugins', 'Seo vtičniki', '2019-05-25 22:48:22'),
(7473, 'sl', 'common', 'Seo Tools', 'Seo orodja', '2019-05-25 22:48:22'),
(7474, 'sl', 'common', 'Sign out', 'Odjava', '2019-05-25 22:48:22'),
(7475, 'sl', 'common', 'Sign Up', 'Registracija', '2019-05-25 22:48:22'),
(7476, 'sl', 'common', 'signin', 'Prijava', '2019-05-25 22:48:22'),
(7477, 'sl', 'common', 'Status', 'Status', '2019-05-25 22:48:22'),
(7478, 'sl', 'common', 'Support', 'Podpora', '2019-05-25 22:48:22'),
(7479, 'sl', 'common', 'Total', 'Skupaj', '2019-05-25 22:48:22'),
(7480, 'sl', 'common', 'Url', 'Url', '2019-05-25 22:48:22'),
(7481, 'sl', 'common', 'User', 'Uporabnik', '2019-05-25 22:48:22'),
(7482, 'sl', 'common', 'User Panel', 'Uporabniški kotiček', '2019-05-25 22:48:22'),
(7483, 'sl', 'common', 'Website', 'Spletna stran', '2019-05-25 22:48:22'),
(7484, 'sl', 'common', 'Yes', 'Da', '2019-05-25 22:48:22'),
(7485, 'sl', 'directory', 'Add back to directory list', 'Dodaj nazaj na seznam direktorijev', '2012-05-12 21:57:22'),
(7486, 'sl', 'directory', 'Approved', 'Odobreno', '2012-05-12 21:57:22'),
(7487, 'sl', 'directory', 'Captcha', 'Captcha', '2012-05-12 21:57:22'),
(7488, 'sl', 'directory', 'categorynote', 'Kategorije, ločite jih z vejicami glede na prioriteto. Začnite z pomembnejšo kategorijo.', '2012-05-12 21:57:22'),
(7489, 'sl', 'directory', 'Check Directory Status', 'Preveri status direktorija', '2012-05-12 21:57:22'),
(7490, 'sl', 'directory', 'Check Directory Submission Status', 'Preveri status pošiljanja v direktorij', '2012-05-12 21:57:22'),
(7491, 'sl', 'directory', 'clicktoproceeddirsts', 'Kliknite <b>Nadaljuj</b> za preverjanje statusa direktorija', '2012-05-12 21:57:22'),
(7492, 'sl', 'directory', 'Confirmation', 'Potrditev', '2012-05-12 21:57:22'),
(7493, 'sl', 'directory', 'desnote', 'Nekateri direktoriji zahtevajo vnos vsaj 150 znakov v polje za opis.', '2012-05-12 21:57:22'),
(7494, 'sl', 'directory', 'Directories with out captcha', 'Direktoriji brez capcha preverjanja', '2012-05-12 21:57:22'),
(7495, 'sl', 'directory', 'Directory Submission Reports', 'Poročilo o uspešnosti pošiljanja v direktorije', '2012-05-12 21:57:22'),
(7496, 'sl', 'directory', 'Enter the code shown', 'Vnesite prikazano kodo', '2012-05-12 21:57:22'),
(7497, 'sl', 'directory', 'nocatnote', 'Kategorija vnosa ni najdena na spletni strani za vnos. Prosim kliknite <b>Osveži</b> ali <b>Preskoči</b>', '2012-05-12 21:57:22'),
(7498, 'sl', 'directory', 'nodirnote', 'Ne najdem <b>aktivnih</b> direktorijev', '2012-05-12 21:57:22'),
(7499, 'sl', 'directory', 'nosuccessnote', 'ni sporočila o uspešnosti, Prosim preverite vaš E-naslov za potrditveno sporočilo', '2012-05-12 21:57:22'),
(7500, 'sl', 'directory', 'optionalnote', 'Neobvezni naslovi in opisi za random pošiljanje v direktorije za boljše rezultate.', '2012-05-12 21:57:22'),
(7501, 'sl', 'directory', 'Owner Email', 'Drugi E-mail', '2012-05-12 21:57:22'),
(7502, 'sl', 'directory', 'Owner Name', 'Ime lastnika', '2012-05-12 21:57:22'),
(7503, 'sl', 'directory', 'Pending', 'Na čakanju', '2012-05-12 21:57:22'),
(7504, 'sl', 'directory', 'Please select a website to proceed', 'Prosim izberite spletno stran za nadaljevanje', '2012-05-12 21:57:22'),
(7505, 'sl', 'directory', 'Reciprocal Link', 'Recipročna povezava', '2012-05-12 21:57:22'),
(7506, 'sl', 'directory', 'selectwebsiteproceed', 'Izverite <b>spletno stran</b> za <b>nadaljevanje</b> vpisovanja v direktorije. <br>Preverite <b>Direktorije brez Capcha preverjanja</b> za pošiljanje v direktorije brez preverjanja ', '2012-05-12 21:57:22'),
(7507, 'sl', 'directory', 'selectwebsiteschecksub', 'Izberite <b>Spletno stran</b> za <b>Nadaljevanje</b> preverjanje vpisov v direktorije.', '2012-05-12 21:57:22'),
(7508, 'sl', 'directory', 'Semi Automatic Directory Submission Tool', 'Orodje za polavtomatsko vpisovanje v direktorije', '2012-05-12 21:57:22'),
(7509, 'sl', 'directory', 'spamemailnote', 'Nekateri direktoriji lahko pošiljajo SPAM, priporočamo da ne uporabite vašega glavnega E-poštnega naslova.', '2012-05-12 21:57:22'),
(7510, 'sl', 'directory', 'Submission Details', 'Podrobnosti vpisovanja', '2012-05-12 21:57:22'),
(7511, 'sl', 'directory', 'Submit Description', 'Vnesite opis', '2012-05-12 21:57:22'),
(7512, 'sl', 'directory', 'Submit Keywords', 'Vnesite ključne besede', '2012-05-12 21:57:22'),
(7513, 'sl', 'directory', 'Submit Title', 'Vnesite Naslov', '2012-05-12 21:57:22'),
(7514, 'sl', 'directory', 'Website Category', 'Kategorija spletne strani', '2012-05-12 21:57:22'),
(7515, 'sl', 'directory', 'Website Url', 'Naslov spletne strani', '2012-05-12 21:57:22'),
(7516, 'sl', 'home', 'Account Summary', 'Podrobnosti Računa', '2012-01-20 13:35:05'),
(7517, 'sl', 'home', 'Backlinks', 'Povratne povezave', '2012-01-20 13:35:05'),
(7518, 'sl', 'home', 'Directory Submission', 'Vpisi v direktorije', '2012-01-20 13:35:05'),
(39168, 'it', 'common', 'Options', 'Opzioni', '2026-01-19 22:59:12'),
(39169, 'ja', 'common', 'Options', 'オプション', '2026-01-19 22:59:12'),
(39170, 'ko', 'common', 'Options', '옵션', '2026-01-19 22:59:12'),
(39171, 'lt', 'common', 'Options', 'Parinktys', '2026-01-19 22:59:12'),
(39172, 'mk', 'common', 'Options', 'Опции', '2026-01-19 22:59:12'),
(39173, 'nl', 'common', 'Options', 'Opties', '2026-01-19 22:59:12'),
(39174, 'no', 'common', 'Options', 'Alternativer', '2026-01-19 22:59:12'),
(39175, 'pl', 'common', 'Options', 'Opcje', '2026-01-19 22:59:12'),
(39176, 'pt', 'common', 'Options', 'Opções', '2026-01-19 22:59:12'),
(39177, 'pt-br', 'common', 'Options', 'Opções', '2026-01-19 22:59:12'),
(39178, 'ro', 'common', 'Options', 'Opțiuni', '2026-01-19 22:59:12'),
(39179, 'ru', 'common', 'Options', 'Параметры', '2026-01-19 22:59:12'),
(39180, 'sk', 'common', 'Options', 'Možnosti', '2026-01-19 22:59:12'),
(39181, 'sl', 'common', 'Options', 'Možnosti', '2026-01-19 22:59:12'),
(39182, 'sq', 'common', 'Options', 'Opsionet', '2026-01-19 22:59:12'),
(39183, 'sr', 'common', 'Options', 'Опције', '2026-01-19 22:59:12'),
(39184, 'sv', 'common', 'Options', 'Alternativ', '2026-01-19 22:59:12'),
(39185, 'sw', 'common', 'Options', 'Chaguo', '2026-01-19 22:59:12'),
(39186, 'th', 'common', 'Options', 'ตัวเลือก', '2026-01-19 22:59:12'),
(39187, 'tl', 'common', 'Options', 'Mga Opsyon', '2026-01-19 22:59:12'),
(39188, 'tr', 'common', 'Options', 'Seçenekler', '2026-01-19 22:59:12'),
(39189, 'uk', 'common', 'Options', 'Параметри', '2026-01-19 22:59:12'),
(39190, 'vn', 'common', 'Options', 'Tùy chọn', '2026-01-19 22:59:12'),
(39191, 'zh', 'common', 'Options', '选项', '2026-01-19 22:59:12'),
(39192, 'ar', 'siteauditor', 'Exclude Extensions', 'استبعاد الامتدادات', '2026-01-19 22:59:44'),
(39193, 'bg', 'siteauditor', 'Exclude Extensions', 'Изключване на разширения', '2026-01-19 22:59:44'),
(39194, 'de', 'siteauditor', 'Exclude Extensions', 'Erweiterungen ausschließen', '2026-01-19 22:59:44'),
(39195, 'es', 'siteauditor', 'Exclude Extensions', 'Excluir extensiones', '2026-01-19 22:59:44'),
(39196, 'fr', 'siteauditor', 'Exclude Extensions', 'Exclure les extensions', '2026-01-19 22:59:44'),
(39197, 'it', 'siteauditor', 'Exclude Extensions', 'Escludi estensioni', '2026-01-19 22:59:44'),
(39198, 'nl', 'siteauditor', 'Exclude Extensions', 'Extensies uitsluiten', '2026-01-19 22:59:44'),
(39199, 'pl', 'siteauditor', 'Exclude Extensions', 'Wyklucz rozszerzenia', '2026-01-19 22:59:44'),
(39200, 'pt', 'siteauditor', 'Exclude Extensions', 'Excluir extensões', '2026-01-19 22:59:44'),
(39201, 'pt-br', 'siteauditor', 'Exclude Extensions', 'Excluir extensões', '2026-01-19 22:59:44'),
(39202, 'ru', 'siteauditor', 'Exclude Extensions', 'Исключить расширения', '2026-01-19 22:59:44'),
(39203, 'tr', 'siteauditor', 'Exclude Extensions', 'Uzantıları hariç tut', '2026-01-19 22:59:44'),
(39204, 'zh', 'siteauditor', 'Exclude Extensions', '排除扩展名', '2026-01-19 22:59:44'),
(39205, 'cn', 'siteauditor', 'Exclude Extensions', '排除扩展名', '2026-01-19 22:59:44'),
(39206, 'ar', 'siteauditor', 'Leave blank to use system default', 'اتركه فارغًا لاستخدام الإعداد الافتراضي للنظام', '2026-01-19 23:00:37'),
(39207, 'bg', 'siteauditor', 'Leave blank to use system default', 'Оставете празно, за да използвате системната настройка по подразбиране', '2026-01-19 23:00:37'),
(39208, 'de', 'siteauditor', 'Leave blank to use system default', 'Leer lassen, um Systemstandard zu verwenden', '2026-01-19 23:00:37'),
(39209, 'es', 'siteauditor', 'Leave blank to use system default', 'Dejar en blanco para usar el valor predeterminado del sistema', '2026-01-19 23:00:37'),
(39210, 'fr', 'siteauditor', 'Leave blank to use system default', 'Laisser vide pour utiliser la valeur par défaut du système', '2026-01-19 23:00:37'),
(39211, 'it', 'siteauditor', 'Leave blank to use system default', 'Lasciare vuoto per utilizzare il valore predefinito del sistema', '2026-01-19 23:00:37'),
(38791, 'ca', 'review', 'Reviews by Platform', 'Ressenyes per plataforma', '2026-01-19 22:58:50'),
(38792, 'cn', 'review', 'Reviews by Platform', '各平台评论数', '2026-01-19 22:58:50'),
(38793, 'cs', 'review', 'Reviews by Platform', 'Recenze podle platformy', '2026-01-19 22:58:50'),
(38794, 'da', 'review', 'Reviews by Platform', 'Anmeldelser efter platform', '2026-01-19 22:58:50'),
(38795, 'de', 'review', 'Reviews by Platform', 'Bewertungen nach Plattform', '2026-01-19 22:58:50'),
(38796, 'el', 'review', 'Reviews by Platform', 'Αξιολογήσεις ανά πλατφόρμα', '2026-01-19 22:58:50'),
(38797, 'es', 'review', 'Reviews by Platform', 'Reseñas por plataforma', '2026-01-19 22:58:50'),
(38798, 'es-ar', 'review', 'Reviews by Platform', 'Reseñas por plataforma', '2026-01-19 22:58:50'),
(38799, 'fa', 'review', 'Reviews by Platform', 'بررسی ها بر اساس پلتفرم', '2026-01-19 22:58:50'),
(38800, 'fi', 'review', 'Reviews by Platform', 'Arvostelut alustittain', '2026-01-19 22:58:50'),
(38801, 'fr', 'review', 'Reviews by Platform', 'Avis par plateforme', '2026-01-19 22:58:50'),
(38802, 'he', 'review', 'Reviews by Platform', 'ביקורות לפי פלטפורמה', '2026-01-19 22:58:50'),
(38803, 'hi', 'review', 'Reviews by Platform', 'प्लेटफ़ॉर्म के अनुसार समीक्षाएं', '2026-01-19 22:58:50'),
(7522, 'sl', 'home', 'Indexed', 'Indeksirano', '2012-01-20 13:35:05'),
(7523, 'sl', 'home', 'Pages Indexed', 'Indeksirane strani', '2012-01-20 13:35:05'),
(7524, 'sl', 'home', 'Ranks', 'Rangiranje', '2012-01-20 13:35:05'),
(7525, 'sl', 'home', 'SiteNameUrl', 'Spletni naslovi/URLji', '2012-01-20 13:35:05'),
(7526, 'sl', 'home', 'Website Statistics', 'Statistika', '2012-01-20 13:35:05'),
(7527, 'sl', 'keyword', 'Crawling keyword', 'Ključna beseda', '2012-01-28 14:21:41'),
(7528, 'sl', 'keyword', 'Detailed Keyword Position Reports', 'Podrobna poročila o rangiranju ključnih besed', '2012-01-28 14:21:41'),
(7529, 'sl', 'keyword', 'Edit Keyword', 'Uredi ključno besedo', '2012-01-28 14:21:41'),
(7530, 'sl', 'keyword', 'Graphical Keyword Position Reports', 'Grafična poročila o uvrstitvah', '2012-01-28 14:21:41'),
(7531, 'sl', 'keyword', 'Import Keywords', 'Uvozi ključne besede', '2012-01-28 14:21:41'),
(7532, 'sl', 'keyword', 'Insert keywords separated with comma', 'Vpišite ključne besede, ločite jih z vejico', '2012-01-28 14:21:41'),
(7533, 'sl', 'keyword', 'Keyword already exist', 'Ključna beseda že obstaja', '2012-01-28 14:21:41'),
(7534, 'sl', 'keyword', 'Keyword Position Report', 'Poročilo o uvrstitvah', '2012-01-28 14:21:41'),
(7535, 'sl', 'keyword', 'New Keyword', 'Nova ključna beseda', '2012-01-28 14:21:41'),
(7536, 'sl', 'keyword', 'not assigned to required search engines', 'ni dodeljenih iskalnikov', '2012-01-28 14:21:41'),
(7537, 'sl', 'keyword', 'pleaseselecttool', 'Izberite vsaj eno SEO orodje', '2012-01-28 14:21:41'),
(7538, 'sl', 'keyword', 'Quick Keyword Position Checker', 'Hitro preverjanje uvrstitev', '2012-01-28 14:21:41'),
(7539, 'sl', 'keyword', 'results from ', 'rezultati iz', '2012-01-28 14:21:41'),
(7540, 'sl', 'keyword', 'Show All results', 'Prikaži vse rezultate', '2012-01-28 14:21:41'),
(7541, 'sl', 'keyword', 'Successfully crawled keyword', 'Uspešen pregled ključne besede', '2012-01-28 14:21:41'),
(7542, 'sl', 'keyword', 'to create new keywords', 'za ustvarjanje novih ključnih besed', '2012-01-28 14:21:41'),
(7543, 'sl', 'label', 'already exist', 'že obstaja', '2012-05-12 21:57:43'),
(7544, 'sl', 'label', 'Authentication', 'Avtentikacija', '2012-05-12 21:57:43'),
(7545, 'sl', 'label', 'Author', 'Avtor', '2012-05-12 21:57:43'),
(7546, 'sl', 'label', 'Brocken', 'nedelujoča', '2012-05-12 21:57:43'),
(7547, 'sl', 'label', 'Click Here', 'Kliknite sem', '2012-05-12 21:57:43'),
(7548, 'sl', 'label', 'Comments', 'Komentarji', '2012-05-12 21:57:43'),
(7549, 'sl', 'label', 'Count', 'Štetje', '2012-05-12 21:57:43'),
(7550, 'sl', 'label', 'Cron', 'Cron', '2012-05-12 21:57:43'),
(7551, 'sl', 'label', 'Description', 'Opis', '2012-05-12 21:57:43'),
(7552, 'sl', 'label', 'Developers', 'Razvijalci', '2012-05-12 21:57:43'),
(7553, 'sl', 'label', 'Download', 'Download', '2012-05-12 21:57:43'),
(7554, 'sl', 'label', 'Exclude', 'Izključi', '2012-05-12 21:57:43'),
(7555, 'sl', 'label', 'Include', 'Vključi', '2012-05-12 21:57:43'),
(7556, 'sl', 'label', 'Installation', 'Instalacija', '2012-05-12 21:57:43'),
(7557, 'sl', 'label', 'Keywords', 'Klučne besede', '2012-05-12 21:57:43'),
(7558, 'sl', 'label', 'noactiveplugins', 'Ne najdem aktivnih dodatkov!', '2012-05-12 21:57:43'),
(7559, 'sl', 'label', 'Plugin', 'Dodatek', '2012-05-12 21:57:43'),
(7560, 'sl', 'label', 'Port', 'vrata', '2012-05-12 21:57:43'),
(7561, 'sl', 'label', 'Project', 'Projekt', '2012-05-12 21:57:43'),
(7562, 'sl', 'label', 'Proxy', 'Proxy', '2012-05-12 21:57:43'),
(7563, 'sl', 'label', 'Re-install', 'Ponovna instalacija', '2012-05-12 21:57:43'),
(7564, 'sl', 'label', 'Report Type', 'Tip poročila', '2012-05-12 21:57:43'),
(7565, 'sl', 'label', 'Score', 'Točke', '2012-05-12 21:57:43'),
(7566, 'sl', 'label', 'Sponsors', 'Sponzorji', '2012-05-12 21:57:43'),
(7567, 'sl', 'label', 'Title', 'Naslov', '2012-05-12 21:57:43'),
(7568, 'sl', 'label', 'Total Results', 'Skupni rezultati', '2012-05-12 21:57:43'),
(7569, 'sl', 'label', 'translation by', 'prevedel:', '2012-05-12 21:57:43'),
(7570, 'sl', 'label', 'Translators', 'Prevajalci', '2012-05-12 21:57:43'),
(7571, 'sl', 'label', 'Updated', 'Posodobljeno', '2012-05-12 21:57:43'),
(7572, 'sl', 'label', 'Upgrade', 'Nadgradi', '2012-05-12 21:57:43'),
(7573, 'sl', 'label', 'Version', 'Verzija', '2012-05-12 21:57:43'),
(7574, 'sl', 'label', 'View Reports', 'Preglej poročila', '2012-05-12 21:57:43'),
(7575, 'sl', 'label', 'wantproceed', 'Resnično želite nadaljevati?', '2012-05-12 21:57:43'),
(7576, 'sl', 'login', 'Confirm Password', 'Potrdite geslo', '2012-01-28 14:29:09'),
(7577, 'sl', 'login', 'Create my account', 'Izdelajte si račun', '2012-01-28 14:29:09'),
(7578, 'sl', 'login', 'Create New Account', 'Izdelajte nov račun', '2012-01-28 14:29:09'),
(7579, 'sl', 'login', 'Email', 'E-poštni naslov', '2012-01-28 14:29:09'),
(7580, 'sl', 'login', 'emailexist', 'E-poštni naslov že obstaja', '2012-01-28 14:29:09'),
(7581, 'sl', 'login', 'Enter the code as it is shown', 'Vpišite kodo, kot je prikazana', '2012-01-28 14:29:09'),
(7582, 'sl', 'login', 'First Name', 'Ime', '2012-01-28 14:29:09'),
(7583, 'sl', 'login', 'Last Name', 'Priimek', '2012-01-28 14:29:09'),
(7584, 'sl', 'login', 'Login', 'Prijava', '2012-01-28 14:29:09'),
(7585, 'sl', 'login', 'Login incorrect', 'Prijava ni uspela', '2012-01-28 14:29:09'),
(7586, 'sl', 'login', 'newaccountsuccess', 'Uspešno ustvarjen nov račun', '2012-01-28 14:29:09'),
(7587, 'sl', 'login', 'Password', 'Geslo', '2012-01-28 14:29:09'),
(7588, 'sl', 'login', 'Password incorrect', 'Nepravilno geslo', '2012-01-28 14:29:09'),
(7589, 'sl', 'login', 'Register', 'Registracija', '2012-01-28 14:29:09'),
(7590, 'sl', 'login', 'Sign in to your account', 'Prijavite se v vaš račun', '2012-01-28 14:29:09'),
(7591, 'sl', 'login', 'User inactive', 'Uporabnik ni aktiven', '2012-01-28 14:29:09'),
(7592, 'sl', 'login', 'Username', 'Uporabniško ime', '2012-01-28 14:29:09'),
(7593, 'sl', 'login', 'usernameexist', 'Uporabniško ime že obstaja', '2012-01-28 14:29:09'),
(7594, 'sl', 'panel', 'About Us', 'O nas', '2012-05-12 21:58:34'),
(7595, 'sl', 'panel', 'Add following command to your cron tab', 'Dodajte naslednji cron ukaz', '2012-05-12 21:58:34'),
(7596, 'sl', 'panel', 'alsocheckfollowlink', 'Na tej povezavi lahko najdete več informacij.', '2012-05-12 21:58:34'),
(7597, 'sl', 'panel', 'Check Directory', 'Preverite mapo', '2012-05-12 21:58:34'),
(7598, 'sl', 'panel', 'Cron Command', 'Cron ukaz', '2012-05-12 21:58:34'),
(7599, 'sl', 'panel', 'Directory Manager', 'Upravljalec map', '2012-05-12 21:58:34'),
(7600, 'sl', 'panel', 'Edit My Profile', 'Uredi profil', '2012-05-12 21:58:34'),
(7601, 'sl', 'panel', 'Edit Project', 'Uredi projekt', '2012-05-12 21:58:34'),
(7602, 'sl', 'panel', 'My Profile', 'Moj profil', '2012-05-12 21:58:34'),
(7603, 'sl', 'panel', 'New Project', 'Nov projekt', '2012-05-12 21:58:34'),
(7604, 'sl', 'panel', 'New Proxy', 'Nov proxy', '2012-05-12 21:58:34'),
(7605, 'sl', 'panel', 'New User', 'novi uporabnik', '2012-05-12 21:58:34'),
(7606, 'sl', 'panel', 'New Website', 'Nova spletna stran', '2012-05-12 21:58:34'),
(7607, 'sl', 'panel', 'Proxy Manager', 'Upravitelj proxijev', '2012-05-12 21:58:34'),
(7608, 'sl', 'panel', 'Report Generation Manager', 'Upravljanje izdelave poročil', '2012-05-12 21:58:34'),
(7609, 'sl', 'panel', 'Reports Manager', 'Upravitelj poročil', '2012-05-12 21:58:34'),
(7610, 'sl', 'panel', 'Seo Plugins Manager', 'Upravitelj SEO dodatkov', '2012-05-12 21:58:34'),
(7611, 'sl', 'panel', 'Seo Tools Manager', 'Upravitelj SEO orodij', '2012-05-12 21:58:34'),
(7612, 'sl', 'panel', 'System Settings', 'Sistemske nastavitve', '2012-05-12 21:58:34'),
(7613, 'sl', 'panel', 'User Manager', 'Upravitelj uporabnikov', '2012-05-12 21:58:34'),
(7614, 'sl', 'panel', 'Website Manager', 'Upravitelj spletnih strani', '2012-05-12 21:58:34'),
(7615, 'sl', 'proxy', 'Edit Proxy', 'Uredi Proxy', '2012-01-28 14:32:57'),
(7616, 'sl', 'proxy', 'Proxy Password', 'Geslo za Proxy', '2012-01-28 14:32:57'),
(7617, 'sl', 'proxy', 'Proxy Username', 'Uporabniško ime za Proxy', '2012-01-28 14:32:57'),
(7618, 'sl', 'proxy', 'Proxyalreadyexist', 'Proxy že obstaja', '2012-01-28 14:32:57'),
(7619, 'sl', 'plugin', 'Edit Seo Plugin', 'Uredi SEO dodatek', '2012-05-12 21:59:13'),
(7620, 'sl', 'plugin', 'Plugin Name', 'Ime dodatka', '2012-05-12 21:59:13'),
(7621, 'sl', 'plugin', 'Seo Plugin Details', 'Podrobnosti dodatka', '2012-05-12 21:59:13'),
(7622, 'sl', 'rank', 'enterurlproceed', 'Vnesite URL naslove <b>vsakega v svojo vrstico</b>. Kliknite na <b>Nadaljuj</b> za preverjanje uvrstitev v Googlu in Alexi.', '2012-01-28 14:39:58'),
(7623, 'sl', 'rank', 'Google and Alexa Rank Reports', 'Poročila o uvrstitvah v Alexi in Googlu', '2012-01-28 14:39:58'),
(7624, 'sl', 'rank', 'Saved rank results of', 'Shranjeni rezultati za', '2012-01-28 14:39:58'),
(7625, 'sl', 'saturation', 'clickproceedsaturation', 'Vpišite URL naslove, <b>vsakega v svojo vrstico</b>. Kliknite na <b>Nadaljuj</b>za preverjanje nasičenosti', '2012-01-28 14:42:39'),
(7626, 'sl', 'saturation', 'GenerateSaturationReports', 'Izdelaj poročilo o zasičenosti', '2012-01-28 14:42:39'),
(7627, 'sl', 'saturation', 'Quick Search Engine Saturation Checker', 'Hiter pregled zasičenosti', '2012-01-28 14:42:39'),
(7628, 'sl', 'saturation', 'Saved Search Engine Saturation results of', 'Shranjeni rezultati o zasičenosti', '2012-01-28 14:42:39'),
(7629, 'sl', 'saturation', 'Search Engine Saturation Reports', 'Poročila o zasičenosti', '2012-01-28 14:42:39'),
(7630, 'sl', 'seotools', 'Auditor Projects', 'Projekti preverjanja', '2013-02-16 03:20:16'),
(7631, 'sl', 'seotools', 'Auditor Reports', 'Poročila preverjanja', '2013-02-16 03:20:16'),
(7632, 'sl', 'seotools', 'Auditor Settings', 'Nastavitve preverjanja', '2013-02-16 03:20:16'),
(7633, 'sl', 'seotools', 'Automatic Submission', 'Avtomatsko pošiljanje', '2013-02-16 03:20:16'),
(7634, 'sl', 'seotools', 'backlink-checker', 'Preverjanje povratnih povezav', '2013-02-16 03:20:16'),
(7635, 'sl', 'seotools', 'Backlinks Reports', 'Poročila o povratnih povezavah', '2013-02-16 03:20:16'),
(7636, 'sl', 'seotools', 'Check Submission Status', 'Preverjanje statusa pošiljanja', '2013-02-16 03:20:16'),
(7637, 'sl', 'seotools', 'clickgeneratereports', 'Kliknite na <b>Nadaljuj</b> za izdelavo poročil', '2013-02-16 03:20:16'),
(7638, 'sl', 'seotools', 'Detailed Position Reports', 'Podrobna poročila o uvrstitvah', '2013-02-16 03:20:16'),
(7639, 'sl', 'seotools', 'directory-submission', 'Pošiljanje v direktorije', '2013-02-16 03:20:16'),
(7640, 'sl', 'seotools', 'Featured Submission', 'Featured pošiljanje', '2013-02-16 03:20:16'),
(7641, 'sl', 'seotools', 'Generate Backlinks Reports', 'Izdelaj poročilo o povezavah', '2013-02-16 03:20:16'),
(7642, 'sl', 'seotools', 'Generate Keyword Reports', 'Izdelaj poročila o ključnih besedah', '2013-02-16 03:20:16'),
(7643, 'sl', 'seotools', 'Generate Rank Reports', 'Izdelaj poročila o uvrstitvah', '2013-02-16 03:20:16'),
(7644, 'sl', 'seotools', 'Generate Saturation Reports', 'Izdelaj poročila o preverjanju', '2013-02-16 03:20:16'),
(7645, 'sl', 'seotools', 'Google Sitemap Generator', 'Izdelaj sitemap', '2013-02-16 03:20:16'),
(7646, 'sl', 'seotools', 'Graphical Position Reports', 'Grafična poročila o uvrstitvah', '2013-02-16 03:20:16'),
(7647, 'sl', 'seotools', 'Import Project Links', 'Uvozi povezave projekta', '2013-02-16 03:20:16'),
(7648, 'sl', 'seotools', 'Keyword Position Summary', 'Izvleček poročila o ključnih besedah', '2013-02-16 03:20:16'),
(7649, 'sl', 'seotools', 'keyword-position-checker', 'Preverjanje uvrstitev', '2013-02-16 03:20:16'),
(7650, 'sl', 'seotools', 'Keywords Manager', 'Upravitelj ključnih besed', '2013-02-16 03:20:16'),
(7651, 'sl', 'seotools', 'Quick Backlinks Checker', 'Hitro preverjanje povratnih povezav', '2013-02-16 03:20:16'),
(7652, 'sl', 'seotools', 'Quick Position Checker', 'Hitro preverjanje uvrstitev', '2013-02-16 03:20:16'),
(7653, 'sl', 'seotools', 'Quick Rank Checker', 'Hitro preverjanje Rangiranja', '2013-02-16 03:20:16'),
(7654, 'sl', 'seotools', 'Quick Saturation Checker', 'Hitro preverjanje (Saturation Checker)', '2013-02-16 03:20:16'),
(7655, 'sl', 'seotools', 'Rank Reports', 'Poročilo o rangiranju', '2013-02-16 03:20:16'),
(7656, 'sl', 'seotools', 'rank-checker', 'Rangiranje', '2013-02-16 03:20:16'),
(7657, 'sl', 'seotools', 'Saturation Reports', 'Saturation Reports', '2013-02-16 03:20:16'),
(7658, 'sl', 'seotools', 'saturation-checker', 'Search Engine Saturation', '2013-02-16 03:20:16'),
(7659, 'sl', 'seotools', 'site-auditor', 'Preverjanje strani', '2013-02-16 03:20:16'),
(7660, 'sl', 'seotools', 'sitemap-generator', 'Generator sitemapa', '2013-02-16 03:20:16'),
(7661, 'sl', 'seotools', 'Skipped Directories', 'Preskočeni direktoriji', '2013-02-16 03:20:16'),
(7662, 'sl', 'seotools', 'Submission Reports', 'Poročila o pošiljanju', '2013-02-16 03:20:16'),
(7663, 'sl', 'seotools', 'User Access', 'Uporabniški dostop', '2013-02-16 03:20:16'),
(7664, 'sl', 'website', 'Edit Website', 'Uredi spletno stran', '2012-01-28 14:59:05'),
(7665, 'sl', 'website', 'plscrtwebsite', 'Prosim ustvarite spletno stran pred začetkom dela z seo orodji in dodatki', '2012-01-28 14:59:05'),
(7666, 'sl', 'website', 'Website already exist', 'Stran že obstaja', '2012-01-28 14:59:05'),
(7667, 'sl', 'website', 'yourwebalreday', 'spletna stran, če ste jo že ustvarili.', '2012-01-28 14:59:05'),
(7668, 'sl', 'user', 'Edit User', 'Uredi uporabnika', '2012-01-28 14:59:29'),
(7669, 'sl', 'user', 'Saved My Profile Details', 'Shranjene podrobnosti profila', '2012-01-28 14:59:29'),
(7670, 'sl', 'sitemap', 'Change frequency', 'Spremeni pogostost', '2012-01-28 15:01:54'),
(7671, 'sl', 'sitemap', 'clickproceedsitemap', 'Kliknite na <b>Nadaljuj</b> za izdelavo sitemap datoteke', '2012-01-28 15:01:54'),
(7672, 'sl', 'sitemap', 'Download sitemap file from', 'Povlecite datoteko', '2012-01-28 15:01:54'),
(7673, 'sl', 'sitemap', 'Exclude Url', 'Izključi URL', '2012-01-28 15:01:54'),
(7674, 'sl', 'sitemap', 'processtaketime', 'Ta proces lahko nekaj časa traja, odvisno od števila povezav na vaši spletni strani. Prosimo počakajte', '2012-01-28 15:01:54'),
(7675, 'sl', 'sitemap', 'Sitemap Type', 'Vrsta sitemap datoteke', '2012-01-28 15:01:54'),
(7676, 'vn', 'keyword', 'Crawling keyword', 'Đang kiểm tra thứ hạng từ khóa', '2012-01-31 03:33:14'),
(7677, 'vn', 'keyword', 'Detailed Keyword Position Reports', 'Báo cáo chi tiết vị trí Từ khóa', '2012-01-31 03:33:14'),
(7678, 'vn', 'keyword', 'Edit Keyword', 'Sửa Từ khóa', '2012-01-31 03:33:14'),
(7679, 'vn', 'keyword', 'Graphical Keyword Position Reports', 'Báo cáo chi tiết vị trí Từ khóa dạng Biểu đồ', '2012-01-31 03:33:14'),
(7680, 'vn', 'keyword', 'Import Keywords', 'Nhập nhiều Từ khóa', '2012-01-31 03:33:14'),
(7681, 'vn', 'keyword', 'Insert keywords separated with comma', 'Thêm Từ khóa cách nhau bằng dấu phẩy', '2012-01-31 03:33:14'),
(7682, 'vn', 'keyword', 'Keyword already exist', 'Từ khóa đã có', '2012-01-31 03:33:14'),
(7683, 'vn', 'keyword', 'Keyword Position Report', 'Báo cáo vị trí Từ khóa', '2012-01-31 03:33:14'),
(7684, 'vn', 'keyword', 'New Keyword', 'Từ khóa mới', '2012-01-31 03:33:14'),
(7685, 'vn', 'keyword', 'not assigned to required search engines', 'Không đúng với công cụ tìm kiếm được yêu cầu', '2012-01-31 03:33:14'),
(7686, 'vn', 'keyword', 'pleaseselecttool', 'Vui lòng chọn ít nhất một trong các Công cụ SEO', '2012-01-31 03:33:14'),
(7687, 'vn', 'keyword', 'Quick Keyword Position Checker', 'Kiểm tra nhanh vị trí Từ khóa', '2012-01-31 03:33:14'),
(7688, 'vn', 'keyword', 'results from ', 'khung kết quả', '2012-01-31 03:33:14'),
(7689, 'vn', 'keyword', 'Show All results', 'Hiển thị tất cả các kết quả', '2012-01-31 03:33:14'),
(7690, 'vn', 'keyword', 'Successfully crawled keyword', 'Đã thu thập thành công thông tin Từ khóa', '2012-01-31 03:33:14'),
(7691, 'vn', 'keyword', 'to create new keywords', 'dung để tạo các Từ khóa mới', '2012-01-31 03:33:14'),
(7692, 'vn', 'label', 'already exist', 'đã tồn tại', '2014-01-10 09:07:44'),
(7693, 'vn', 'label', 'Authentication', 'Xác thực', '2014-01-10 09:07:44'),
(7694, 'vn', 'label', 'Author', 'Tác giả', '2014-01-10 09:07:44'),
(7695, 'vn', 'label', 'Brocken', 'Bị hỏng', '2014-01-10 09:07:44'),
(7696, 'vn', 'label', 'Click Here', 'Click vào đây', '2014-01-10 09:07:44'),
(7697, 'vn', 'label', 'Comments', 'Các phản hồi', '2014-01-10 09:07:44'),
(7698, 'vn', 'label', 'Count', 'Đếm', '2014-01-10 09:07:44'),
(7699, 'vn', 'label', 'Cron', 'Định kỳ', '2014-01-10 09:07:44'),
(7700, 'vn', 'label', 'Description', 'Mô tả', '2014-01-10 09:07:44'),
(7701, 'vn', 'label', 'Developers', 'Nhà phát triển', '2014-01-10 09:07:44'),
(7702, 'vn', 'label', 'Download', 'Tải xuống', '2014-01-10 09:07:44'),
(7703, 'vn', 'label', 'Exclude', 'Loại trừ', '2014-01-10 09:07:44'),
(7704, 'vn', 'label', 'Include', 'Bao gồm', '2014-01-10 09:07:44'),
(7705, 'vn', 'label', 'Installation', 'Cài đặt', '2014-01-10 09:07:44'),
(7706, 'vn', 'label', 'Keywords', 'Các từ khóa', '2014-01-10 09:07:44'),
(7707, 'vn', 'label', 'noactiveplugins', 'Không tìm thấy phần mở rộng kích hoạt nào!', '2014-01-10 09:07:44'),
(7708, 'vn', 'label', 'Plugin', 'Phần mở rộng', '2014-01-10 09:07:44'),
(7709, 'vn', 'label', 'Port', 'Cổng', '2014-01-10 09:07:44'),
(7710, 'vn', 'label', 'Project', 'Dự án', '2014-01-10 09:07:44'),
(7711, 'vn', 'label', 'Proxy', 'Proxy', '2014-01-10 09:07:44'),
(7712, 'vn', 'label', 'Re-install', 'Cài đặt lại', '2014-01-10 09:07:44'),
(7713, 'vn', 'label', 'Report Type', 'Kiểu thông báo', '2014-01-10 09:07:44'),
(7714, 'vn', 'label', 'Score', 'Điểm', '2014-01-10 09:07:44'),
(7715, 'vn', 'label', 'Sponsors', 'Nhà tài trợ', '2014-01-10 09:07:44'),
(7716, 'vn', 'label', 'Title', 'Tiêu đề', '2014-01-10 09:07:44'),
(7717, 'vn', 'label', 'Total Results', 'Tổng hợp các kết quả', '2014-01-10 09:07:44'),
(7718, 'vn', 'label', 'translation by', 'dịch bởi', '2014-01-10 09:07:44'),
(7719, 'vn', 'label', 'Translators', 'Người dịch', '2014-01-10 09:07:44'),
(7720, 'vn', 'label', 'Updated', 'Đã cập nhập', '2014-01-10 09:07:44'),
(7721, 'vn', 'label', 'Upgrade', 'Nâng cấp', '2014-01-10 09:07:44'),
(7722, 'vn', 'label', 'Version', 'Phiên bản', '2014-01-10 09:07:44'),
(7723, 'vn', 'label', 'View Reports', 'Xem các Báo cáo', '2014-01-10 09:07:44'),
(7724, 'vn', 'label', 'wantproceed', 'Bạn thực sự muốn thực hiện?', '2014-01-10 09:07:44'),
(7725, 'vn', 'login', 'Confirm Password', 'Nhập lại Mật khẩu', '2014-01-10 09:02:16'),
(7726, 'vn', 'login', 'Create my account', 'Tạo tài khoản của tôi', '2014-01-10 09:02:16'),
(7727, 'vn', 'login', 'Create New Account', 'Tạo tài khoản mới', '2014-01-10 09:02:16'),
(7728, 'vn', 'login', 'Email', 'Thư điện tử', '2014-01-10 09:02:16'),
(7729, 'vn', 'login', 'emailexist', 'Địa chỉ thư điện tử này đã tồn tại', '2014-01-10 09:02:16'),
(7730, 'vn', 'login', 'Enter the code as it is shown', 'Nhập vào đoạn mã hiển thị', '2014-01-10 09:02:16'),
(7731, 'vn', 'login', 'First Name', 'Tên', '2014-01-10 09:02:16'),
(7732, 'vn', 'login', 'Last Name', 'Họ và Tên', '2014-01-10 09:02:16'),
(7733, 'vn', 'login', 'Login', 'Đăng nhập', '2014-01-10 09:02:16'),
(7734, 'vn', 'login', 'Login incorrect', 'Đăng nhập sai', '2014-01-10 09:02:16'),
(7735, 'vn', 'login', 'newaccountsuccess', 'Tài khoản mới đã được tạo thành công!', '2014-01-10 09:02:16'),
(7736, 'vn', 'login', 'Password', 'Mật khẩu', '2014-01-10 09:02:16'),
(7737, 'vn', 'login', 'Password incorrect', 'Mật khẩu sai', '2014-01-10 09:02:16'),
(7738, 'vn', 'login', 'Register', 'Đăng ký', '2014-01-10 09:02:16'),
(7739, 'vn', 'login', 'Sign in to your account', 'Đăng nhập vào tài khoản của bạn', '2014-01-10 09:02:16'),
(7740, 'vn', 'login', 'User inactive', 'Người sử dụng chưa kích hoạt', '2014-01-10 09:02:16'),
(7741, 'vn', 'login', 'Username', 'Tên đăng nhập', '2014-01-10 09:02:16'),
(7742, 'vn', 'login', 'usernameexist', 'Tên đăng nhập đã tồn tại', '2014-01-10 09:02:16'),
(7743, 'vn', 'panel', 'About Us', 'Giới thiệu', '2014-01-10 09:09:42'),
(7744, 'vn', 'panel', 'Add following command to your cron tab', 'Thêm lệnh sau đây vào bảng lệnh định kỳ của bạn', '2014-01-10 09:09:42'),
(7745, 'vn', 'panel', 'alsocheckfollowlink', 'Kiểm tra liên kết sau đây nếu cần biết thêm chi tiết.', '2014-01-10 09:09:42'),
(7746, 'vn', 'panel', 'Check Directory', 'Kiểm tra danh mục', '2014-01-10 09:09:42'),
(7747, 'vn', 'panel', 'Cron Command', 'Lệnh định kỳ', '2014-01-10 09:09:42'),
(7748, 'vn', 'panel', 'Directory Manager', 'Quản lý danh mục', '2014-01-10 09:09:42'),
(7749, 'vn', 'panel', 'Edit My Profile', 'Chỉnh sửa Hồ sơ của tôi', '2014-01-10 09:09:42'),
(7750, 'vn', 'panel', 'Edit Project', 'Sửa dự án', '2014-01-10 09:09:42'),
(7751, 'vn', 'panel', 'My Profile', 'Hồ sơ của tôi', '2014-01-10 09:09:42'),
(7752, 'vn', 'panel', 'New Project', 'Dự án mới', '2014-01-10 09:09:42'),
(7753, 'vn', 'panel', 'New Proxy', 'Proxy mới', '2014-01-10 09:09:42'),
(7754, 'vn', 'panel', 'New User', 'Người dùng mới', '2014-01-10 09:09:42'),
(7755, 'vn', 'panel', 'New Website', 'Website mới', '2014-01-10 09:09:42'),
(7756, 'vn', 'panel', 'Proxy Manager', 'Quản lý Proxy', '2014-01-10 09:09:42'),
(7757, 'vn', 'panel', 'Report Generation Manager', 'Quản lý Tạo báo cáo', '2014-01-10 09:09:42'),
(7758, 'vn', 'panel', 'Reports Manager', 'Quản lý Báo cáo', '2014-01-10 09:09:42'),
(7759, 'vn', 'panel', 'Seo Plugins Manager', 'Quản lý các Plugins Seo', '2014-01-10 09:09:42'),
(7760, 'vn', 'panel', 'Seo Tools Manager', 'Quản lý công cụ Seo', '2014-01-10 09:09:42'),
(7761, 'vn', 'panel', 'System Settings', 'Cấu hình hệ thống', '2014-01-10 09:09:42'),
(7762, 'vn', 'panel', 'User Manager', 'Quản lý Người sử dụng', '2014-01-10 09:09:42'),
(7763, 'vn', 'panel', 'Website Manager', 'Quản lý Website', '2014-01-10 09:09:42'),
(7764, 'vn', 'plugin', 'Edit Seo Plugin', 'Sửa Plugin Seo', '2014-01-10 09:10:14'),
(7765, 'vn', 'plugin', 'Plugin Name', 'Tên Plugin', '2014-01-10 09:10:14'),
(7766, 'vn', 'plugin', 'Seo Plugin Details', 'Chi tiết Plugin Seo', '2014-01-10 09:10:14'),
(7767, 'vn', 'proxy', 'Edit Proxy', 'Sửa Proxy', '2014-01-10 09:06:44'),
(7768, 'vn', 'proxy', 'Proxy Password', 'Mật khẩu Proxy', '2014-01-10 09:06:44'),
(7769, 'vn', 'proxy', 'Proxy Username', 'Tên đăng nhập Proxy', '2014-01-10 09:06:44'),
(7770, 'vn', 'proxy', 'Proxyalreadyexist', 'Proxy đã tồn tại!', '2014-01-10 09:06:44'),
(7771, 'vn', 'rank', 'enterurlproceed', 'Nhập Một URL <b>Trên mỗi dòng </ b>. Click vào <b> xử lý </ b> để kiểm tra thứ hạng Google và Alexa.', '2012-01-31 04:12:21'),
(7772, 'vn', 'rank', 'Google and Alexa Rank Reports', 'Báo cáo thứ hạng Google và Alexa', '2012-01-31 04:12:21'),
(7773, 'vn', 'rank', 'Saved rank results of', 'Đã lưu kết quả thứ hạng của', '2012-01-31 04:12:21'),
(7774, 'vn', 'saturation', 'clickproceedsaturation', 'Nhập Một URL <b>Trên mỗi dòng </ b>. Click vào <b>xử lý</ b> để kiểm tra kết quả chỉ số của máy tìm kiếm.', '2012-01-31 04:19:26'),
(7775, 'vn', 'saturation', 'GenerateSaturationReports', 'Tạo báo cáo kết quả chỉ số của máy tìm kiếm', '2012-01-31 04:19:26'),
(7776, 'vn', 'saturation', 'Quick Search Engine Saturation Checker', 'Kiểm tra nhanh chỉ số của máy tìm kiếm', '2012-01-31 04:19:26'),
(7777, 'vn', 'saturation', 'Saved Search Engine Saturation results of', 'Đã lưu kết quả chỉ số máy tìm kiếm của', '2012-01-31 04:19:26'),
(7778, 'vn', 'saturation', 'Search Engine Saturation Reports', 'Báo cáo chỉ số của máy tìm kiếm', '2012-01-31 04:19:26'),
(7779, 'vn', 'seotools', 'Auditor Projects', 'Kiểm tra dự án', '2012-01-31 22:45:48'),
(7780, 'vn', 'seotools', 'Auditor Reports', 'Kiểm tra báo cáo', '2012-01-31 22:45:48'),
(7781, 'vn', 'seotools', 'Auditor Settings', 'Kiểm tra Cài đặt', '2012-01-31 22:45:48'),
(7782, 'vn', 'seotools', 'Automatic Submission', 'Tự động gửi danh bạ', '2012-01-31 22:45:48'),
(7783, 'vn', 'seotools', 'backlink-checker', 'Kiểm tra Backlink', '2012-01-31 22:45:48'),
(7784, 'vn', 'seotools', 'Backlinks Reports', 'Báo cáo Backlink', '2012-01-31 22:45:48'),
(7785, 'vn', 'seotools', 'Check Submission Status', 'Kiểm tra trạng thái danh bạ', '2012-01-31 22:45:48'),
(7786, 'vn', 'seotools', 'clickgeneratereports', 'Ckick vào <b>xử lý</b> để tạo báo cáo', '2012-01-31 22:45:48'),
(7787, 'vn', 'seotools', 'Detailed Position Reports', 'Báo cáo chi tiết vị trí', '2012-01-31 22:45:48'),
(7788, 'vn', 'seotools', 'directory-submission', 'Gửi lên danh bạ', '2012-01-31 22:45:48'),
(7789, 'vn', 'seotools', 'Featured Submission', 'Các thông tin gửi', '2012-01-31 22:45:48'),
(7790, 'vn', 'seotools', 'Generate Backlinks Reports', 'Tạo báo cáo Backlink', '2012-01-31 22:45:48'),
(7791, 'vn', 'seotools', 'Generate Keyword Reports', 'Tạo báo cáo từ khóa', '2012-01-31 22:45:48'),
(7792, 'vn', 'seotools', 'Generate Rank Reports', 'Tạo báo cáo thứ hạng', '2012-01-31 22:45:48'),
(7793, 'vn', 'seotools', 'Generate Saturation Reports', 'Tạo báo cáo chỉ số', '2012-01-31 22:45:48'),
(7794, 'vn', 'seotools', 'Google Sitemap Generator', 'Tạo bản đồ website cho Google', '2012-01-31 22:45:48'),
(7795, 'vn', 'seotools', 'Graphical Position Reports', 'Báo cáo vị trí dạng biểu đồ', '2012-01-31 22:45:48'),
(7796, 'vn', 'seotools', 'Import Project Links', 'Thêm liên kết dự án', '2012-01-31 22:45:48'),
(7797, 'vn', 'seotools', 'Keyword Position Summary', 'Tóm tắt vị trí từ khóa', '2012-01-31 22:45:48'),
(7798, 'vn', 'seotools', 'keyword-position-checker', 'Kiểm tra vị trí từ khóa', '2012-01-31 22:45:48'),
(7799, 'vn', 'seotools', 'Keywords Manager', 'Quản lý từ khóa', '2012-01-31 22:45:48'),
(7800, 'vn', 'seotools', 'Quick Backlinks Checker', 'Kiểm tra nhanh back link', '2012-01-31 22:45:48'),
(7801, 'vn', 'seotools', 'Quick Position Checker', 'Kiểm tra nhanh vị trí từ khóa', '2012-01-31 22:45:48'),
(7802, 'vn', 'seotools', 'Quick Rank Checker', 'Kiểm tra nhanh thứ hạng', '2012-01-31 22:45:48'),
(7803, 'vn', 'seotools', 'Quick Saturation Checker', 'Kiểm tra nhanh chỉ số', '2012-01-31 22:45:48'),
(7804, 'vn', 'seotools', 'Rank Reports', 'Báo cáo thứ hạng', '2012-01-31 22:45:48'),
(7805, 'vn', 'seotools', 'rank-checker', 'Kiểm tra thứ hạng', '2012-01-31 22:45:48'),
(7806, 'vn', 'seotools', 'Saturation Reports', 'Báo cáo chỉ số', '2012-01-31 22:45:48'),
(7807, 'vn', 'seotools', 'saturation-checker', 'Chỉ số của máy tìm kiếm', '2012-01-31 22:45:48'),
(7808, 'vn', 'seotools', 'site-auditor', 'Kiểm toán trang web', '2012-01-31 22:45:48'),
(7809, 'vn', 'seotools', 'sitemap-generator', 'Tạo bản đồ website', '2012-01-31 22:45:48'),
(7810, 'vn', 'seotools', 'Skipped Directories', 'Bỏ qua thư mục', '2012-01-31 22:45:48'),
(7811, 'vn', 'seotools', 'Submission Reports', 'Gửi báo cáo', '2012-01-31 22:45:48'),
(7812, 'vn', 'seotools', 'User Access', 'Thành viên truy cập', '2012-01-31 22:45:48'),
(7813, 'vn', 'settings', 'Check for Updates', 'Kiểm tra bản nâng cấp', '2014-01-10 09:26:44'),
(7814, 'vn', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Ủng hộ $100</b> và trở thành <b>nhà tài trợ</b> của Seo Panel', '2014-01-10 09:26:44'),
(7815, 'vn', 'settings', 'SA_CRAWL_DELAY_TIME', 'Trang web kiểm toán viên thu thập dữ liệu chậm trễ giữa mỗi trang', '2014-01-10 09:26:44'),
(7816, 'vn', 'settings', 'SA_MAX_NO_PAGES', 'Giới hạn số trang lớn nhất đồng ý mỗi website', '2014-01-10 09:26:44'),
(7817, 'vn', 'settings', 'seopanel_description', 'Một bảng điều khiển hoàn toàn miễn phí quản lý tối ưu hóa công cụ tìm kiếm của các trang web của bạn.Nó chứa rất nhiều các công cụ seo nóng gia tăng và theo dõi các tiến trình trang web của bạn. Nó là một phần mềm nguồn mở và bạn cũng có thể phát triển các plugin seo riêng của bạn cho seo panel.', '2014-01-10 09:26:44'),
(7818, 'vn', 'settings', 'seopanel_title', 'Seo Panel: Bảng điều khiển seo mã nguồn mở đầu tiên trên thế giới hỗ trợ quản lý nhiều website', '2014-01-10 09:26:44'),
(7819, 'vn', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2014-01-10 09:26:44'),
(7820, 'vn', 'settings', 'SP_CRAWL_DELAY', 'Thời gian chậm mỗi khi nhện tìm kiếm thu thập thông tin (tính theo giây)', '2014-01-10 09:26:44'),
(7821, 'vn', 'settings', 'SP_DEFAULTLANG', 'Ngôn ngữ mặc định', '2014-01-10 09:26:44'),
(7822, 'vn', 'settings', 'SP_DESCRIPTION', 'Mô tả Seo Panel', '2014-01-10 09:26:44'),
(7823, 'vn', 'settings', 'SP_ENABLE_PROXY', 'Bật Proxy', '2014-01-10 09:26:44'),
(7824, 'vn', 'settings', 'SP_HOTLINKING', 'Kích hoạt bảo vệ hình ảnh hotlink', '2014-01-10 09:26:44'),
(7825, 'vn', 'settings', 'SP_KEYWORDS', 'Từ khóa Seo Panel ', '2014-01-10 09:26:44'),
(7826, 'vn', 'settings', 'SP_PAGINGNO', 'Số mục mỗi trang', '2014-01-10 09:26:44'),
(7827, 'vn', 'settings', 'SP_TITLE', 'Tiêu đề Seo Panel ', '2014-01-10 09:26:44'),
(7828, 'vn', 'settings', 'SP_USER_AGENT', 'Đại diện người sử dụng', '2014-01-10 09:26:44'),
(7829, 'vn', 'settings', 'SP_USER_GEN_REPORT', 'Đồng ý cho người sử dụng tạo báo cáo', '2014-01-10 09:26:44'),
(7830, 'vn', 'settings', 'SP_USER_REGISTRATION', 'Đăng ký giao diện người dùng', '2014-01-10 09:26:44'),
(7831, 'vn', 'settings', 'syssettingssaved', 'Cấu hình hệ thống đã được lưu thành công!', '2014-01-10 09:26:44'),
(7832, 'vn', 'settings', 'versionnotuptodatemsg', 'Bộ cài đặt Seo Panel của bạn chưa cập nhật. <br>Hãy tải về bản mới nhất', '2014-01-10 09:26:44'),
(7833, 'vn', 'settings', 'Your Seo Panel installation is up to date', 'Bộ cài đặt Seo Panel của bạn đang là bản mới nhất.', '2014-01-10 09:26:44'),
(7834, 'vn', 'user', 'Edit User', 'Sửa thành viên', '2012-02-01 02:01:18'),
(7835, 'vn', 'user', 'Saved My Profile Details', 'Lưu chi tiết hồ sơ của tôi', '2012-02-01 02:01:18'),
(7836, 'vn', 'website', 'Edit Website', 'Sửa website', '2012-02-01 02:02:54'),
(7837, 'vn', 'website', 'plscrtwebsite', 'Hãy tạo một website trước khi bắt đầu sử dụng các công cụ seo và các seo plugin.', '2012-02-01 02:02:54'),
(7838, 'vn', 'website', 'Website already exist', 'website đã có', '2012-02-01 02:02:54'),
(7839, 'vn', 'website', 'yourwebalreday', 'website của bạn nếu bạn đã tạo một cái', '2012-02-01 02:02:54'),
(7840, 'vn', 'sitemap', 'Change frequency', 'thay đổi tần xuất', '2012-02-01 02:20:45'),
(7841, 'vn', 'sitemap', 'clickproceedsitemap', 'Click vào <b>xử lý</b> để tạo file sitemap', '2012-02-01 02:20:45'),
(7842, 'vn', 'sitemap', 'Download sitemap file from', 'Tải file sitemap từ', '2012-02-01 02:20:45'),
(7843, 'vn', 'sitemap', 'Exclude Url', 'Loại trừ url', '2012-02-01 02:20:45'),
(7844, 'vn', 'sitemap', 'processtaketime', 'Quá trình này sẽ mất thời gian theo số lượng các liên kết trong trang web của bạn.Xin vui lòng chờ đợi để có được các tập tin sitemap', '2012-02-01 02:20:45'),
(7845, 'vn', 'sitemap', 'Sitemap Type', 'Kiểu sitemap', '2012-02-01 02:20:45'),
(7846, 'vn', 'siteauditor', 'Anchor', 'Anchor', '2012-02-03 02:04:10'),
(7847, 'vn', 'siteauditor', 'anylinkcontainabovelinks', 'Bất cứ liên kết nào chứa trên các liên kết sẽ được loại trừ từ các báo cáo', '2012-02-03 02:04:10'),
(7848, 'vn', 'siteauditor', 'anylinkcontainexcludesitemap', 'Bất cứ liên kết nào chứa trên các liên kết sẽ được loại trừ từ sitemap', '2012-02-03 02:04:10'),
(7849, 'vn', 'siteauditor', 'Check backlinks of pages', 'Kiểm tra các backlink của trang', '2012-02-03 02:04:10'),
(7850, 'vn', 'siteauditor', 'Check broken links in a page', 'Kiểm tra các liên kết hỏng của trang', '2012-02-03 02:04:10'),
(7851, 'vn', 'siteauditor', 'Check google pagerank of pages', 'Kiểm tra google pagerank của trang', '2012-02-03 02:04:10'),
(7852, 'vn', 'siteauditor', 'Check pages indexed or not', 'Kiểm tra trang đã được index hay chưa', '2012-02-03 02:04:10'),
(7853, 'vn', 'siteauditor', 'Check Score', 'Kiểm tra điểm', '2012-02-03 02:04:10'),
(7854, 'vn', 'siteauditor', 'checkborckenlinkwait', 'Kiểm tra các liên kết hoảng sẽ làm tăng thời gian tính toán của dự án', '2012-02-03 02:04:10'),
(7855, 'vn', 'siteauditor', 'Completed project execution', 'Hoàn thành thực hiện dự án', '2012-02-03 02:04:10'),
(7856, 'vn', 'siteauditor', 'Crawled', 'Đã crawl', '2012-02-03 02:04:10'),
(7857, 'vn', 'siteauditor', 'Crawled Pages', 'Các trang đã crawl', '2012-02-03 02:04:10'),
(7858, 'vn', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'Thu thập thông tin (crawl) thành công! Đang chờ để thu thập dữ liệu trang tiếp theo', '2012-02-03 02:04:10'),
(7859, 'vn', 'siteauditor', 'Crawling Page', 'Đang crawl trang', '2012-02-03 02:04:10'),
(7860, 'vn', 'siteauditor', 'Duplicate Description', 'Trùng lặp mô tả', '2012-02-03 02:04:10'),
(7861, 'vn', 'siteauditor', 'Duplicate Keywords', 'Trùng lặp các từ khóa', '2012-02-03 02:04:10'),
(7862, 'vn', 'siteauditor', 'Duplicate Title', 'Trùng lặp tiêu đề', '2012-02-03 02:04:10'),
(7863, 'vn', 'siteauditor', 'Exclude links', 'Các liên kết loại trừ', '2012-02-03 02:04:10'),
(7864, 'vn', 'siteauditor', 'Execute with cron', 'Loại trừ với cron', '2012-02-03 02:04:10');
INSERT INTO `texts` VALUES
(7865, 'vn', 'siteauditor', 'External', 'Bên ngoài', '2012-02-03 02:04:10'),
(7866, 'vn', 'siteauditor', 'External Links', 'Các liên kết ngoại', '2012-02-03 02:04:10'),
(7867, 'vn', 'siteauditor', 'Import Project Links', 'Thêm các liên kết dự án', '2012-02-03 02:04:10'),
(7868, 'vn', 'siteauditor', 'Insert links separated with comma', 'Thêm liên kết cách nhau bởi dấu phảy', '2012-02-03 02:04:10'),
(7869, 'vn', 'siteauditor', 'insertlinkssepcoma', 'Chèn liên kết cách nhau bằng dấu phẩy để loại trừ các liên kết vô hạn từ các báo cáo', '2012-02-03 02:04:10'),
(7870, 'vn', 'siteauditor', 'Link Reports', 'Báo cáo liên kết', '2012-02-03 02:04:10'),
(7871, 'vn', 'siteauditor', 'Link Title', 'Tiêu đề liên kết', '2012-02-03 02:04:10'),
(7872, 'vn', 'siteauditor', 'Maximum number of pages to be checked', 'Số trang lớn nhất sẽ được kiểm tra', '2012-02-03 02:04:10'),
(7873, 'vn', 'siteauditor', 'Maximum Pages', 'Số trang lớn nhất', '2012-02-03 02:04:10'),
(7874, 'vn', 'siteauditor', 'No active projects found', 'Không có dự án nào được bật', '2012-02-03 02:04:10'),
(7875, 'vn', 'siteauditor', 'Nofollow', 'Nofollow', '2012-02-03 02:04:10'),
(7876, 'vn', 'siteauditor', 'Number of pages is greater than', 'Số lượng trang lớn hơn', '2012-02-03 02:04:10'),
(7877, 'vn', 'siteauditor', 'Number of pages should be greater than', 'Số lượng trang nên lớn hơn', '2012-02-03 02:04:10'),
(7878, 'vn', 'siteauditor', 'Page Details', 'Chi tiết trang', '2012-02-03 02:04:10'),
(7879, 'vn', 'siteauditor', 'Page Link', 'Liên kết trang', '2012-02-03 02:04:10'),
(7880, 'vn', 'siteauditor', 'Page Links', 'Các Liên kết trang', '2012-02-03 02:04:10'),
(7881, 'vn', 'siteauditor', 'Pages Found', 'Các trang tìm thấy', '2012-02-03 02:04:10'),
(7882, 'vn', 'siteauditor', 'pressescapetostopexecution', 'Nhấn phím <b>escape</b> để dừng việc tính toán lại', '2012-02-03 02:04:10'),
(7883, 'vn', 'siteauditor', 'Project Summary', 'Tóm tắt dự án', '2012-02-03 02:04:10'),
(7884, 'vn', 'siteauditor', 'Project Url', 'Dự án url', '2012-02-03 02:04:10'),
(7885, 'vn', 'siteauditor', 'projectalreadyexist', 'Dự án cho website này đã tồn tại', '2012-02-03 02:04:10'),
(7886, 'vn', 'siteauditor', 'Recheck Pages', 'Kiểm tra lại các trang', '2012-02-03 02:04:10'),
(7887, 'vn', 'siteauditor', 'Report Summary', 'Tóm tắt báo cáo', '2012-02-03 02:04:10'),
(7888, 'vn', 'siteauditor', 'Run Project', 'Chạy dự án', '2012-02-03 02:04:10'),
(7889, 'vn', 'siteauditor', 'should start with', 'nên bắt đầu với', '2012-02-03 02:04:10'),
(7890, 'vn', 'siteauditor', 'Site Auditor Settings', 'Cấu hình phân tính website', '2012-02-03 02:04:10'),
(7891, 'vn', 'siteauditor', 'Store all links found in a page', 'Lưu toàn bộ liên kết tìm được trong một trang', '2012-02-03 02:04:10'),
(7892, 'vn', 'siteauditor', 'The page description length is not between', 'Chiều dài mô tả trang không phải là giữa', '2012-02-03 02:04:10'),
(7893, 'vn', 'siteauditor', 'The page is brocken', 'Trang web bị hỏng', '2012-02-03 02:04:10'),
(7894, 'vn', 'siteauditor', 'The page is having exellent number of backlinks in', 'Trang này có số backlink đến tuyệt vời', '2012-02-03 02:04:10'),
(7895, 'vn', 'siteauditor', 'The page is having exellent pagerank', 'Trang này có pagerank tuyệt vời', '2012-02-03 02:04:10'),
(7896, 'vn', 'siteauditor', 'The page is having good number of backlinks in', 'Trang này có số backlink đến tốt', '2012-02-03 02:04:10'),
(7897, 'vn', 'siteauditor', 'The page is having good pagerank', 'Trang này có pagerank tốt', '2012-02-03 02:04:10'),
(7898, 'vn', 'siteauditor', 'The page is having poor pagerank', 'Trang này có pagerank kém', '2012-02-03 02:04:10'),
(7899, 'vn', 'siteauditor', 'The page is having very good pagerank', 'Trang này có pagerank rất tốt', '2012-02-03 02:04:10'),
(7900, 'vn', 'siteauditor', 'The page is not having backlinks in', 'Trang này không có backlink đến', '2012-02-03 02:04:10'),
(7901, 'vn', 'siteauditor', 'The page is not indexed in', 'Trang này chưa được index', '2012-02-03 02:04:10'),
(7902, 'vn', 'siteauditor', 'The page keywords length is not between', 'Độ dài từ khóa của trang không nằm giữa', '2012-02-03 02:04:10'),
(7903, 'vn', 'siteauditor', 'The page title length is not between', 'Độ dài tiêu đề của trang không nằm giữa', '2012-02-03 02:04:10'),
(7904, 'vn', 'siteauditor', 'The total number of links in page is greater than', 'Tổng số lượng liên kết của trang hơn', '2012-02-03 02:04:10'),
(7905, 'vn', 'siteauditor', 'to run project again if you stopped execution', 'để chạy dự án lại bạn cần dừng việc tính toán', '2012-02-03 02:04:10'),
(7906, 'vn', 'siteauditor', 'to view the reports', 'xem các báo cáo', '2012-02-03 02:04:10'),
(7907, 'vn', 'siteauditor', 'Total Links', 'tổng số liên kết', '2012-02-03 02:04:10'),
(7908, 'vn', 'siteauditor', 'totallinksgreaterallowed', 'Tổng số liên kết sẽ trở nên lớn hơn so với các liên kết tối đa cho phép cho dự án', '2012-02-03 02:04:10'),
(7909, 'vn', 'support', 'support_cont1', '<fieldset>\r\n<legend>Hệ thống hỗ trợ Seo panel</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>Gói 1000 danh bạ</h1>\r\n <p>\r\n Chúng tôi đang cung cấp <b>miễn phí kích hoạt và xác minh 1000</b> gói danh bạthư mục internet, để thêm vào\r\ncủa bạn seo panel <b> công cụ gửi danh bạ</b>.\r\n Nó sẽ giúp bạn <b> tăng backlinks </b> của trang web của bạn.\r\n Trên thực tế 1000 danh sách thư mục danh bạ là <b> giới thiệu </b> để thu thập một số tiền cho <b> tương lai\r\nphát triển </b> seo panel.\r\n Để có được 1000 danh sách thư mục xin vui lòng <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\"> ủng hộ </a>\r\n$10 hoặc nhiều hơn để cải thiện các tính năng của bảng điều khiển seo.\r\n Nếu bạn có bất kỳ câu hỏi về 1000 gói thư mục, xin vui lòng <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\"> liên hệ với chúng tôi </a> hoặc mở một vé trong <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\"> hệ thống hỗ trợ </a>.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\"> Bạn hãy xem liên kết này để quyên góp cho seo panel</a>\r\n </p>\r\n </li>\r\n \r\n <li>\r\n <h1> địa phương Tìm kiếm Công cụ trọn gói </h1>\r\n <p>\r\n Thêm <b> lĩnh vực công cụ tìm kiếm địa phương </b> của google, yahoo, msn (<b> ví dụ như: www.google.de, www.google.fr... </b>) để kiểm tra <b> vị trí bảng điều khiển từ khóa seo </b>, để theo dõi Biến trang web của bạn tại địa phương.\r\n Để có được công cụ tìm kiếm địa phương gói (theo yêu cầu của bạn), xin vui lòng <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\"> ủng hộ </a> $ 10 hoặc nhiều hơn để cải thiện các tính năng của seo\r\nbảng điều khiển.\r\n Trước khi gửi ủng hộ, xin vui lòng <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">liên hệ với chúng tôi</a> cung cấp chúng tôi yêu cầu danh sách công cụ tìm kiếm tên miền.\r\n <br>\r\n Ngoài ra để thêm công cụ tìm kiếm <b> mới (ví dụ như: baidu.com) </b> để kiểm tra bảng điều khiển vị trí của bạn seo từ khóa, xin vui lòng <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\"> liên hệ với chúng tôi </a> hoặc mở một vé máy bay trong một\r\n<a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\"> hỗ trợ hệ thống </a>.\r\n </p>\r\n <p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\"> Bạn hãy xem liên kết này để liên hệ với chúng tôi </a>\r\n </p> \r\n </li>\r\n \r\n <li>\r\n <h1> Seo Panel Plugins </h1>\r\n <p>\r\n Thêm <b> seo plugin </b> vào bảng seo của bạn để <b> mở rộng các tính năng </b> theo của bạn\r\nyêu cầu.\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\"> seo panel bổ sung </a> được cung cấp bởi cả hai bảng điều khiển seo\r\nvà các trang web của bên thứ ba.\r\n Bạn cũng có thể dễ dàng <b> phát triển </b> seo plugin cho bảng điều khiển seo của bạn.\r\n Bạn có thể <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\"> trình </a> Plugin seo seo bảng và chúng tôi <b> sẽ công bố </b> nó trong trang web của chúng tôi sau khi xem xét <b> của chúng tôi </b> quá trình.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\"> Bạn hãy xem liên kết này để có được seo panel bổ sung </a>\r\n </p> \r\n </li>\r\n <li>\r\n <h1> Liên hệ </h1>\r\n <p>\r\n Liên hệ với chúng tôi để bất kỳ câu hỏi nào về <b> bảng điều khiển công cụ seo, bổ sung và các tính năng ... </b> bằng cách sử dụng liên kết dưới đây.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\"> Bạn hãy xem liên kết này để liên hệ với chúng tôi </a>\r\n </p>\r\n </li>\r\n <li>\r\n <h1>Gửi yêu cầu hỗ trợ </h1>\r\n <p>\r\n Để có được <b>hỗ trợ kỹ thuật</b> từ nhóm seo panel để thiết lập các công cụ <b> seo panel, bổ sung các tính năng </b>. Ví dụ: Để thiết lập định kỳ để kiểm tra vị trí từ khóa.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\"> Truy cập vào liên kết này để tạo ra một vé hỗ trợ </a>\r\n </p> \r\n </li>\r\n <li>\r\n <h1> Báo cáo các lỗi</h1>\r\n <p>\r\n Báo cáo <b> lỗi </b> về <b> bảng điều khiển công cụ seo, bổ sung và các tính năng ... </b> bằng cách sử dụng liên kết dưới đây.\r\n xin vui lòng giúp chúng tôi cải tiến các tính năng trong phiên bản tiếp theo.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\"> Truy cập vào liên kết này để báo cáo lỗi </a>\r\n </p>\r\n </li>\r\n</ul>\r\n</fieldset>', '2012-02-03 02:57:48'),
(7910, 'vn', 'support', 'support_cont2', '<fieldset>\r\n<legend>Tài nguyên Online của Seo Panel</legend>\r\n<ul class=\\"infobox\\">\r\n \r\n <li>\r\n <h1>Hướng dẫn trợ giúp Seo Panel</h1> \r\n <p>\r\n Ban có thể xem <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\"> văn bảnseo panel</a> trong \r\n<b>Hướng dẫn trợ giúp</b>, nó bao gồm <b>văn bản</b> cho seo panel, plugins và các tính năng liên quan.\r\n <br>Nó là nơi tốt nhất trên internet để <b>có trợ giúp</b> về seo panel. Chúng tôi hy vọng bạn \r\n<b>giúp đỡ</b> cho seo panel hướng dẫn trợ giúp, nếu bạn tìm thấy lỗi hoặc bất cứ gì bạn nghĩ là thiếu. \r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Xem Hướng dẫn trợ giúp Seo Panel</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Diễn đàn Seo Panel</h1> \r\n <p>\r\n Là nơi thảo luận của những người yêu thích <b>bảng điều kiển seo mã nguồn mở đầu tiên của thế giới</b>. \r\n Đây là nơi tốt nhất để tìm từ <b>câu trả lời</b> tới <b>câu hỏi</b> về seo panel. \r\n <br>Bạn cũng có thể <b>chia sẻ</b> <b>kinh nghiệm</b> của bạn trong quá trình sử dụng seo panel để tối ưu\r\nwebsites của bạn. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Xem Diễn đàn Seo Panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2012-02-03 02:57:48'),
(7911, 'vn', 'support', 'support_cont3', '<fieldset> \r\n<legend>Ủng hộ cho Seo Panel</legend> \r\n<ul class=\\"infobox\\"> \r\n <li> \r\n <h1>Ủng hộ cho Seo Panel - Bảng điều kiển seo mã nguồn mở đầu tiên trên thế giới</h1> \r\n <p> \r\n <b>Ủng hộ</b> cho seo panel để hỗ trợ bảng điều kiển seo mã nguồn mở đầu tiên trên thế giới. \r\n Chúng tôi đang có kế hoạch <b>thêm và nâng cấp</b> tính năng của seo panel trong tương lai. \r\n <br>Chỉ có <b>hỗ trợ</b> của bạn mới giúp chúng tôi đạt được <b>mục tiêu</b>. \r\n If you feel that seo panel is <b>worth</b> for you, please ủng hộ some amount to seo panel team. \r\n Nếu bạn cảm thấy seo bảng điều khiển là <b> giá trị </b> cho bạn, xin vui lòng ủng hộ một số tiền cho nhóm seo panel.\r\n <br>Chúng tôi sẽ <b>công khai</b> tên và website của bạn trên <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">trang ủng hộ</a>, ngay khi chúng tôi nhận được ủng hộ. \r\n </p> \r\n <p> \r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Vào liên kết này để ủng hộ cho seo panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2012-02-03 02:57:48'),
(7912, 'sl', 'settings', 'Check for Updates', 'Preveri posodobitve', '2012-05-12 22:09:34'),
(7913, 'sl', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Doniraj $100</b>in postani <b>sponzor</b> Seo Panela.', '2012-05-12 22:09:34'),
(7914, 'sl', 'settings', 'SA_CRAWL_DELAY_TIME', 'čas med posameznim zahtevkom site auditorja', '2012-05-12 22:09:34'),
(7915, 'sl', 'settings', 'SA_MAX_NO_PAGES', 'Maksimalno število strani na spletno stran', '2012-05-12 22:09:34'),
(7916, 'sl', 'settings', 'seopanel_description', 'Seo Panel je v osnovi brezplačen za uporabo. Vključuje številna orodja za spremljanje učinkovitosti spletne strani. Ker je odprto koden lahko razvijate tudi lastne dodatke.', '2012-05-12 22:09:34'),
(7917, 'sl', 'settings', 'seopanel_title', 'Seo Panel: Prvo odprto kodno orodje, ki podpira več spletnih strani', '2012-05-12 22:09:34'),
(7918, 'sl', 'settings', 'SP_API_KEY', 'Seo Panel API ključ', '2012-05-12 22:09:34'),
(7919, 'sl', 'settings', 'SP_CRAWL_DELAY', 'Čas med vsakim pregledom v sekundah', '2012-05-12 22:09:34'),
(7920, 'sl', 'settings', 'SP_DEFAULTLANG', 'Jezik', '2012-05-12 22:09:34'),
(7921, 'sl', 'settings', 'SP_DESCRIPTION', 'Opis Seo Panela', '2012-05-12 22:09:34'),
(7922, 'sl', 'settings', 'SP_ENABLE_PROXY', 'Uporabi proxy', '2012-05-12 22:09:34'),
(7923, 'sl', 'settings', 'SP_HOTLINKING', 'Image hotling zaščita vključena', '2012-05-12 22:09:34'),
(7924, 'sl', 'settings', 'SP_KEYWORDS', 'Ključne besede Seo panela', '2012-05-12 22:09:34'),
(7925, 'sl', 'settings', 'SP_PAGINGNO', 'Število vnosov na stran', '2012-05-12 22:09:34'),
(7926, 'sl', 'settings', 'SP_TITLE', 'Naslov Seo Panela', '2012-05-12 22:09:34'),
(7927, 'sl', 'settings', 'SP_USER_AGENT', 'User Agent', '2012-05-12 22:09:34'),
(7928, 'sl', 'settings', 'SP_USER_GEN_REPORT', 'Dovoli uporabniku generiranje poročil', '2012-05-12 22:09:34'),
(7929, 'sl', 'settings', 'SP_USER_REGISTRATION', 'Uporabniški vmesnik za registracijo uporabnikov', '2012-05-12 22:09:34'),
(7930, 'sl', 'settings', 'syssettingssaved', 'Nastavitve uspešno shranjene', '2012-05-12 22:09:34'),
(7931, 'sl', 'settings', 'versionnotuptodatemsg', 'Vaša instalacija Seo Panela ni posodobljena <br> Povlecite si novo verzijo', '2012-05-12 22:09:34'),
(7932, 'sl', 'settings', 'Your Seo Panel installation is up to date', 'Seo Panel je posodobljen na najnovejšo verzijo', '2012-05-12 22:09:34'),
(7933, 'sl', 'siteauditor', 'Anchor', 'Sidrno besedilo', '2012-02-04 00:57:01'),
(7934, 'sl', 'siteauditor', 'anylinkcontainabovelinks', 'Katere koli povezave, ki vključujejo zgornje povezave bodo izključene iz poročila', '2012-02-04 00:57:02'),
(7935, 'sl', 'siteauditor', 'anylinkcontainexcludesitemap', 'Katere koli povezave, ki vključujejo zgornje povezave bodo izključene iz kazala strani', '2012-02-04 00:57:02'),
(7936, 'sl', 'siteauditor', 'Check backlinks of pages', 'Preverite povratne povezave', '2012-02-04 00:57:02'),
(7937, 'sl', 'siteauditor', 'Check broken links in a page', 'Preveri nedelujoče povezave', '2012-02-04 00:57:02'),
(7938, 'sl', 'siteauditor', 'Check google pagerank of pages', 'Preveri PR strani', '2012-02-04 00:57:02'),
(7939, 'sl', 'siteauditor', 'Check pages indexed or not', 'Preveri ali so strani indeksirane', '2012-02-04 00:57:02'),
(7940, 'sl', 'siteauditor', 'Check Score', 'Preveri točke', '2012-02-04 00:57:02'),
(7941, 'sl', 'siteauditor', 'checkborckenlinkwait', 'Preverjanje delovanja povezav bo povečalo čas izvajanja', '2012-02-04 00:57:02'),
(7942, 'sl', 'siteauditor', 'Completed project execution', 'Končan zagon projekta', '2012-02-04 00:57:02'),
(7943, 'sl', 'siteauditor', 'Crawled', 'Prebrskano', '2012-02-04 00:57:02'),
(7944, 'sl', 'siteauditor', 'Crawled Pages', 'Prebrskane strani', '2012-02-04 00:57:02'),
(7945, 'sl', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'uspešno prebrskano! Čakam na brskanje naslednje strani za', '2012-02-04 00:57:02'),
(7946, 'sl', 'siteauditor', 'Crawling Page', 'Brskanje po strani', '2012-02-04 00:57:02'),
(7947, 'sl', 'siteauditor', 'Duplicate Description', 'Podvojen opis', '2012-02-04 00:57:02'),
(7948, 'sl', 'siteauditor', 'Duplicate Keywords', 'Podvojene ključne besede', '2012-02-04 00:57:02'),
(7949, 'sl', 'siteauditor', 'Duplicate Title', 'Podvojen naslov', '2012-02-04 00:57:02'),
(7950, 'sl', 'siteauditor', 'Exclude links', 'Izključi povezave', '2012-02-04 00:57:02'),
(7951, 'sl', 'siteauditor', 'Execute with cron', 'Zaženi s CRON', '2012-02-04 00:57:02'),
(7952, 'sl', 'siteauditor', 'External', 'Zunanje', '2012-02-04 00:57:02'),
(7953, 'sl', 'siteauditor', 'External Links', 'Zunanje povezave', '2012-02-04 00:57:02'),
(7954, 'sl', 'siteauditor', 'Import Project Links', 'Uvozi projektne povezave', '2012-02-04 00:57:02'),
(7955, 'sl', 'siteauditor', 'Insert links separated with comma', 'Vstavljanje povezav ločenih z vejico', '2012-02-04 00:57:02'),
(7956, 'sl', 'siteauditor', 'insertlinkssepcoma', 'Vnesi povezave, ločene z vejico za izključevanje neskončnih povezav iz poročil', '2012-02-04 00:57:02'),
(7957, 'sl', 'siteauditor', 'Link Reports', 'Poročila povezav', '2012-02-04 00:57:02'),
(7958, 'sl', 'siteauditor', 'Link Title', 'Naslov povezave', '2012-02-04 00:57:02'),
(7959, 'sl', 'siteauditor', 'Maximum number of pages to be checked', 'Maksimalno število strani za pregled', '2012-02-04 00:57:02'),
(7960, 'sl', 'siteauditor', 'Maximum Pages', 'Maksimalno število strani', '2012-02-04 00:57:02'),
(7961, 'sl', 'siteauditor', 'No active projects found', 'Ni aktivnih projektov', '2012-02-04 00:57:02'),
(7962, 'sl', 'siteauditor', 'Nofollow', 'Nofollow', '2012-02-04 00:57:02'),
(7963, 'sl', 'siteauditor', 'Number of pages is greater than', 'Število strani je večjih od', '2012-02-04 00:57:02'),
(7964, 'sl', 'siteauditor', 'Number of pages should be greater than', 'Število strani mora biti večje kot', '2012-02-04 00:57:02'),
(7965, 'sl', 'siteauditor', 'Page Details', 'Podrobnosti strani', '2012-02-04 00:57:02'),
(7966, 'sl', 'siteauditor', 'Page Link', 'Povezava do strani', '2012-02-04 00:57:02'),
(7967, 'sl', 'siteauditor', 'Page Links', 'Povezave do strani', '2012-02-04 00:57:02'),
(7968, 'sl', 'siteauditor', 'Pages Found', 'Najdene povezave', '2012-02-04 00:57:02'),
(7969, 'sl', 'siteauditor', 'pressescapetostopexecution', 'Pritisnite <b>escape</b> za prekinitev skripte', '2012-02-04 00:57:02'),
(7970, 'sl', 'siteauditor', 'Project Summary', 'Opis projekta', '2012-02-04 00:57:02'),
(7971, 'sl', 'siteauditor', 'Project Url', 'URL projekta', '2012-02-04 00:57:02'),
(7972, 'sl', 'siteauditor', 'projectalreadyexist', 'Projekt za to stran že obstaja', '2012-02-04 00:57:02'),
(7973, 'sl', 'siteauditor', 'Recheck Pages', 'Ponovno preverjanje strani', '2012-02-04 00:57:02'),
(7974, 'sl', 'siteauditor', 'Report Summary', 'Izvleček poročila', '2012-02-04 00:57:02'),
(7975, 'sl', 'siteauditor', 'Run Project', 'Zaženi projekt', '2012-02-04 00:57:02'),
(7976, 'sl', 'siteauditor', 'should start with', 'naj se začne z', '2012-02-04 00:57:02'),
(7977, 'sl', 'siteauditor', 'Site Auditor Settings', 'nastavitve Site Auditorja', '2012-02-04 00:57:02'),
(7978, 'sl', 'siteauditor', 'Store all links found in a page', 'shrani vse povezave najdene na strani', '2012-02-04 00:57:02'),
(7979, 'sl', 'siteauditor', 'The page description length is not between', 'Dolžina opisa strani ni med', '2012-02-04 00:57:02'),
(7980, 'sl', 'siteauditor', 'The page is brocken', 'Nekaj je narobe s stranjo', '2012-02-04 00:57:02'),
(7981, 'sl', 'siteauditor', 'The page is having exellent number of backlinks in', 'Stran ima odlično število povratnih povezav v ', '2012-02-04 00:57:02'),
(7982, 'sl', 'siteauditor', 'The page is having exellent pagerank', 'Stran ima super PR', '2012-02-04 00:57:02'),
(7983, 'sl', 'siteauditor', 'The page is having good number of backlinks in', 'Stran ima kar lepo število povratnih povezav', '2012-02-04 00:57:02'),
(7984, 'sl', 'siteauditor', 'The page is having good pagerank', 'Stran ima dober PR', '2012-02-04 00:57:02'),
(7985, 'sl', 'siteauditor', 'The page is having poor pagerank', 'Stran ima slab PR', '2012-02-04 00:57:02'),
(7986, 'sl', 'siteauditor', 'The page is having very good pagerank', 'Stran ima zelo dober PR', '2012-02-04 00:57:02'),
(7987, 'sl', 'siteauditor', 'The page is not having backlinks in', 'Stran nima povratnih povezav v', '2012-02-04 00:57:02'),
(7988, 'sl', 'siteauditor', 'The page is not indexed in', 'Stran ni indeksirana', '2012-02-04 00:57:02'),
(7989, 'sl', 'siteauditor', 'The page keywords length is not between', 'Dolžina ključnih besed ni med', '2012-02-04 00:57:02'),
(7990, 'sl', 'siteauditor', 'The page title length is not between', 'Naslov strani ni med', '2012-02-04 00:57:02'),
(7991, 'sl', 'siteauditor', 'The total number of links in page is greater than', 'Skupno število povezav na strani je večje od', '2012-02-04 00:57:02'),
(7992, 'sl', 'siteauditor', 'to run project again if you stopped execution', 'Ponovno zaženite projekt če ste prekinili izvedbo', '2012-02-04 00:57:02'),
(7993, 'sl', 'siteauditor', 'to view the reports', 'za pregled poročil', '2012-02-04 00:57:02'),
(7994, 'sl', 'siteauditor', 'Total Links', 'Skupaj povezav', '2012-02-04 00:57:02'),
(7995, 'sl', 'siteauditor', 'totallinksgreaterallowed', 'Skupno število povezav bo večje kot maksimalno dovoljenih povezav projekta', '2012-02-04 00:57:02'),
(7996, 'es-ar', 'backlink', 'clickproceedbacklink', 'Ingrese URL\\''s (direcciones) <b>Una por linea</b>. Click en <b>Proceder</b> para verificar Enlaces Externos (Backlinks).', '2012-02-06 15:39:36'),
(7997, 'es-ar', 'backlink', 'Saved backlink results of', '\r\nResultados de Enlaces externos guardados para ', '2012-02-06 15:39:36'),
(7998, 'es-ar', 'button', 'Cancel', 'Cancelar', '2014-01-09 00:34:42'),
(7999, 'es-ar', 'button', 'Check Status', 'Verificar Estado', '2014-01-09 00:34:42'),
(8000, 'es-ar', 'button', 'Proceed', 'Proceder', '2014-01-09 00:34:42'),
(8001, 'es-ar', 'button', 'Reload', 'Recargar', '2014-01-09 00:34:42'),
(8002, 'es-ar', 'button', 'Show Details', 'Mostrar Detalles', '2014-01-09 00:34:42'),
(8003, 'es-ar', 'button', 'Show Records', 'Mostrar Registros', '2014-01-09 00:34:42'),
(8004, 'es-ar', 'button', 'Skip', 'Saltar', '2014-01-09 00:34:42'),
(8005, 'es-ar', 'button', 'Submit', 'Enviar', '2014-01-09 00:34:42'),
(8006, 'es-ar', 'common', 'Action', 'Accion', '2014-01-07 00:05:07'),
(8007, 'es-ar', 'common', 'Activate', 'Activar', '2014-01-07 00:05:07'),
(8008, 'es-ar', 'common', 'Active', 'Activo', '2014-01-07 00:05:07'),
(8009, 'es-ar', 'common', 'Admin Panel', 'Panel de Administracion', '2014-01-07 00:05:07'),
(8010, 'es-ar', 'common', 'Alexa Rank', 'Ranking Alexa', '2014-01-07 00:05:07'),
(8011, 'es-ar', 'common', 'All', 'Todo', '2014-01-07 00:05:07'),
(8012, 'es-ar', 'common', 'Category', 'Categoria', '2014-01-07 00:05:07'),
(8013, 'es-ar', 'common', 'contact', 'Contacto', '2014-01-07 00:05:07'),
(8014, 'es-ar', 'common', 'copyright', 'Copyright © [year] www.seopanel.in todos los derechos reservados', '2014-01-07 00:05:07'),
(8015, 'es-ar', 'common', 'Country', 'Pais', '2014-01-07 00:05:07'),
(8016, 'es-ar', 'common', 'Crawl Meta Data', 'Avanzar MetaDatos', '2014-01-07 00:05:07'),
(8017, 'es-ar', 'common', 'Date', 'Fecha', '2014-01-07 00:05:07'),
(8018, 'es-ar', 'common', 'Delete', 'Eliminar', '2014-01-07 00:05:07'),
(8019, 'es-ar', 'common', 'Details', 'Detalles', '2014-01-07 00:05:07'),
(8020, 'es-ar', 'common', 'Directory', 'Directorio', '2014-01-07 00:05:07'),
(8021, 'es-ar', 'common', 'Donate', 'Donar', '2014-01-07 00:05:07'),
(8022, 'es-ar', 'common', 'Edit', 'Editar', '2014-01-07 00:05:07'),
(8023, 'es-ar', 'common', 'Entry cannot be blank', 'El campo no puede estar en blanco', '2014-01-07 00:05:07'),
(8024, 'es-ar', 'common', 'entrynotvalid', 'El campo parece no ser valido', '2014-01-07 00:05:07'),
(8025, 'es-ar', 'common', 'failed', 'Fallido', '2014-01-07 00:05:07'),
(8026, 'es-ar', 'common', 'forum', 'foro', '2014-01-07 00:05:07'),
(8027, 'es-ar', 'common', 'Found', 'Encontrado', '2014-01-07 00:05:07'),
(8028, 'es-ar', 'common', 'Google Pagerank', 'Pagerank de Google', '2014-01-07 00:05:07'),
(8029, 'es-ar', 'common', 'help', 'Ayuda', '2014-01-07 00:05:07'),
(8030, 'es-ar', 'common', 'hidenews', 'Ocultar novedades Seo Panel', '2014-01-07 00:05:07'),
(8031, 'es-ar', 'common', 'Id', 'Id', '2014-01-07 00:05:07'),
(8032, 'es-ar', 'common', 'Inactivate', 'Desactivar', '2014-01-07 00:05:07'),
(8033, 'es-ar', 'common', 'Inactive', 'Inactivo', '2014-01-07 00:05:07'),
(8034, 'es-ar', 'common', 'Invalid characters', 'Caracteres invalidos', '2014-01-07 00:05:07'),
(8035, 'es-ar', 'common', 'Invalid code entered', 'Codigo ingresado invalido', '2014-01-07 00:05:07'),
(8036, 'es-ar', 'common', 'Invalid email address entered', 'Email ingresado invalido', '2014-01-07 00:05:07'),
(8037, 'es-ar', 'common', 'Invalid value', 'Valor invalido', '2014-01-07 00:05:07'),
(8038, 'es-ar', 'common', 'Keyword', 'Clave', '2014-01-07 00:05:07'),
(8039, 'es-ar', 'common', 'Keywords', 'Claves', '2014-01-07 00:05:07'),
(8040, 'es-ar', 'common', 'lang', 'Idioma', '2014-01-07 00:05:07'),
(8041, 'es-ar', 'common', 'My Account', 'Mi Cuenta', '2014-01-07 00:05:07'),
(8042, 'es-ar', 'common', 'Name', 'Nombre', '2014-01-07 00:05:07'),
(8043, 'es-ar', 'common', 'No', 'No', '2014-01-07 00:05:07'),
(8044, 'es-ar', 'common', 'No Keywords Found', 'Claves no encontradas', '2014-01-07 00:05:07'),
(8045, 'es-ar', 'common', 'No Records Found', 'No se encontraron registros', '2014-01-07 00:05:07'),
(8046, 'es-ar', 'common', 'noactivetools', 'No se encontraron herramientas Seo Panel Activas', '2014-01-07 00:05:07'),
(8047, 'es-ar', 'common', 'nowebsites', 'No se encontraron Websites', '2014-01-07 00:05:07'),
(8048, 'es-ar', 'common', 'password632', 'La contrasena debe tener entre 6 y 32 caracteres', '2014-01-07 00:05:07'),
(8049, 'es-ar', 'common', 'passwordnotmatch', 'Las contrasenas no coinciden', '2014-01-07 00:05:07'),
(8050, 'es-ar', 'common', 'Period', 'Periodo', '2014-01-07 00:05:07'),
(8051, 'es-ar', 'common', 'Priority', 'Prioridad', '2014-01-07 00:05:07'),
(8052, 'es-ar', 'common', 'Profile', 'Perfil', '2014-01-07 00:05:07'),
(8053, 'es-ar', 'common', 'Rank', 'Ranking', '2014-01-07 00:05:07'),
(8054, 'es-ar', 'common', 'Reports', 'Informes', '2014-01-07 00:05:07'),
(8055, 'es-ar', 'common', 'Results', 'Resultados', '2014-01-07 00:05:07'),
(8056, 'es-ar', 'common', 'Search Engine', 'Herramienta Busqueda', '2014-01-07 00:05:07'),
(8057, 'es-ar', 'common', 'Select', 'Seleccionar', '2014-01-07 00:05:07'),
(8058, 'es-ar', 'common', 'Seo Plugins', 'Plugins SEO', '2014-01-07 00:05:07'),
(8059, 'es-ar', 'common', 'Seo Tools', 'Herramientas SEO', '2014-01-07 00:05:07'),
(8060, 'es-ar', 'common', 'Sign out', 'Salir', '2014-01-07 00:05:07'),
(8061, 'es-ar', 'common', 'Sign Up', 'Darse de Alta', '2014-01-07 00:05:07'),
(8062, 'es-ar', 'common', 'signin', 'Ingresar', '2014-01-07 00:05:07'),
(8063, 'es-ar', 'common', 'Status', 'Estado', '2014-01-07 00:05:07'),
(8064, 'es-ar', 'common', 'Support', 'Soporte', '2014-01-07 00:05:07'),
(8065, 'es-ar', 'common', 'Total', 'Total', '2014-01-07 00:05:07'),
(8066, 'es-ar', 'common', 'Url', 'Url', '2014-01-07 00:05:07'),
(8067, 'es-ar', 'common', 'User', 'Usuario', '2014-01-07 00:05:07'),
(8068, 'es-ar', 'common', 'User Panel', 'Panel de Usuario', '2014-01-07 00:05:07'),
(8069, 'es-ar', 'common', 'Website', 'Website', '2014-01-07 00:05:07'),
(8070, 'es-ar', 'common', 'Yes', 'Si', '2014-01-07 00:05:07'),
(8071, 'es-ar', 'login', 'Confirm Password', 'Confirmar contrasena', '2014-01-07 00:34:15'),
(8072, 'es-ar', 'login', 'Create my account', 'Crear mi cuenta', '2014-01-07 00:34:15'),
(8073, 'es-ar', 'login', 'Create New Account', 'Crear nueva cuenta', '2014-01-07 00:34:15'),
(8074, 'es-ar', 'login', 'Email', 'Email', '2014-01-07 00:34:15'),
(8075, 'es-ar', 'login', 'emailexist', 'El email ya existe!', '2014-01-07 00:34:15'),
(8076, 'es-ar', 'login', 'Enter the code as it is shown', 'Ingrese el codigo mostrado', '2014-01-07 00:34:15'),
(8077, 'es-ar', 'login', 'First Name', 'Primer nombre', '2014-01-07 00:34:15'),
(8078, 'es-ar', 'login', 'Last Name', 'Apellido', '2014-01-07 00:34:15'),
(8079, 'es-ar', 'login', 'Login', 'Ingresar', '2014-01-07 00:34:15'),
(8080, 'es-ar', 'login', 'Login incorrect', 'Error de Ingreso', '2014-01-07 00:34:15'),
(8081, 'es-ar', 'login', 'newaccountsuccess', 'Nueva cuenta creada!', '2014-01-07 00:34:15'),
(8082, 'es-ar', 'login', 'Password', 'Contrasena', '2014-01-07 00:34:15'),
(8083, 'es-ar', 'login', 'Password incorrect', 'Contrasena Incorrecta', '2014-01-07 00:34:15'),
(8084, 'es-ar', 'login', 'Register', 'Registrarse', '2014-01-07 00:34:15'),
(8085, 'es-ar', 'login', 'Sign in to your account', 'Ingresar a su cuenta', '2014-01-07 00:34:15'),
(8086, 'es-ar', 'login', 'User inactive', 'Usuario Inactivo', '2014-01-07 00:34:15'),
(8087, 'es-ar', 'login', 'Username', 'Nombre de Usuario', '2014-01-07 00:34:15'),
(8088, 'es-ar', 'login', 'usernameexist', 'El Usuario ya existe!', '2014-01-07 00:34:15'),
(8089, 'es-ar', 'user', 'Edit User', 'Editar Usuario', '2012-02-06 15:53:36'),
(8090, 'es-ar', 'user', 'Saved My Profile Details', 'Detalles del perfil guardados', '2012-02-06 15:53:36'),
(8091, 'es-ar', 'website', 'Edit Website', 'Editar Website', '2012-02-06 15:54:33'),
(8092, 'es-ar', 'website', 'plscrtwebsite', 'Por favor cree un Website antes de comenzar con Seo tools y seo plugins.', '2012-02-06 15:54:33'),
(8093, 'es-ar', 'website', 'Website already exist', 'El sitio web ya existe', '2012-02-06 15:54:33'),
(8094, 'es-ar', 'website', 'yourwebalreday', 'Su sitio web si ya ha creado uno.', '2012-02-06 15:54:33'),
(8095, 'es-ar', 'sitemap', 'Change frequency', 'Cambiar frecuencia', '2012-02-06 15:56:31'),
(8096, 'es-ar', 'sitemap', 'clickproceedsitemap', 'Clic en <b>Proceder</b> para crear archivo sitemap', '2012-02-06 15:56:31'),
(8097, 'es-ar', 'sitemap', 'Download sitemap file from', 'Descargar sitemap desde', '2012-02-06 15:56:31'),
(8098, 'es-ar', 'sitemap', 'Exclude Url', 'Ignorar Url', '2012-02-06 15:56:31'),
(8099, 'es-ar', 'sitemap', 'processtaketime', 'El proceso tomara tiempo de acuerdo con el nmero de vinculos en su sitio. Por favor esper para obtener los archivos del sitemap', '2012-02-06 15:56:31'),
(8100, 'es-ar', 'sitemap', 'Sitemap Type', 'Tipo Sitemap', '2012-02-06 15:56:31'),
(8101, 'es-ar', 'rank', 'enterurlproceed', 'Ingrese vinculos <b>Uno por linea</b>. Clic en <b>Proceder</b> para verificar Google y Ranking Alexa', '2012-02-06 15:57:52'),
(8102, 'es-ar', 'rank', 'Google and Alexa Rank Reports', 'Informes de Ranking Google y Alexa', '2012-02-06 15:57:53'),
(8103, 'es-ar', 'rank', 'Saved rank results of', 'Resultado guardado de', '2012-02-06 15:57:53'),
(8104, 'en', 'plugin', 'Download Seo Panel Plugins', 'Download Seo Panel Plugins', '2012-02-16 15:28:33'),
(8105, 'en', 'settings', 'getallpluginfree', 'Also get all <b>plugins</b> we develop for <b>Free!</b>', '2018-01-23 00:59:29'),
(8106, 'sk', 'button', 'Cancel', 'Zrušiť', '2014-01-09 00:33:39'),
(8107, 'sk', 'button', 'Check Status', 'Skontrolovať stav', '2014-01-09 00:33:39'),
(8108, 'sk', 'button', 'Proceed', 'Vykonať', '2014-01-09 00:33:39'),
(8109, 'sk', 'button', 'Reload', 'Znovu načítať', '2014-01-09 00:33:39'),
(8110, 'sk', 'button', 'Show Details', 'Ukázať detaily', '2014-01-09 00:33:39'),
(8111, 'sk', 'button', 'Show Records', 'Ukázať záznamy', '2014-01-09 00:33:39'),
(8112, 'sk', 'button', 'Skip', 'Preskočiť', '2014-01-09 00:33:39'),
(8113, 'sk', 'button', 'Submit', 'Odoslať', '2014-01-09 00:33:39'),
(8114, 'sk', 'backlink', 'clickproceedbacklink', 'Vložte <b>jednu URL na jeden riadok</b>. Kliknite na <b>Vykonať</b>, aby sa skontrolovali spätné odkazy.', '2012-02-25 14:11:13'),
(8115, 'sk', 'backlink', 'Saved backlink results of', 'Výsledky spätných odkazov boli uložené pre', '2012-02-25 14:11:14'),
(8116, 'sk', 'common', 'Action', 'Akcia', '2019-05-25 22:47:21'),
(8117, 'sk', 'common', 'Activate', 'Aktivovať', '2019-05-25 22:47:21'),
(8118, 'sk', 'common', 'Active', 'Aktívne', '2019-05-25 22:47:21'),
(8119, 'sk', 'common', 'Admin Panel', 'Administračný panel', '2019-05-25 22:47:21'),
(8120, 'sk', 'common', 'Alexa Rank', 'Alexa rank', '2019-05-25 22:47:21'),
(8121, 'sk', 'common', 'All', 'Všetko', '2019-05-25 22:47:21'),
(8122, 'sk', 'common', 'Category', 'Kategória', '2019-05-25 22:47:21'),
(8123, 'sk', 'common', 'contact', 'Kontakt', '2019-05-25 22:47:21'),
(8124, 'sk', 'common', 'copyright', 'Copyright © [year] www.seopanel.in All rights reserved', '2019-05-25 22:47:21'),
(8125, 'sk', 'common', 'Country', 'Krajina', '2019-05-25 22:47:21'),
(8126, 'sk', 'common', 'Crawl Meta Data', 'Prehľadať meta data', '2019-05-25 22:47:21'),
(8127, 'sk', 'common', 'Date', 'Dátum', '2019-05-25 22:47:21'),
(8128, 'sk', 'common', 'Delete', 'Vymazať', '2019-05-25 22:47:21'),
(8129, 'sk', 'common', 'Details', 'Detaily', '2019-05-25 22:47:21'),
(8130, 'sk', 'common', 'Directory', 'Katalóg', '2019-05-25 22:47:21'),
(8131, 'sk', 'common', 'Donate', 'Dotovať SEO panel', '2019-05-25 22:47:21'),
(8132, 'sk', 'common', 'Edit', 'Upraviť', '2019-05-25 22:47:21'),
(8133, 'sk', 'common', 'Entry cannot be blank', 'Pole nemôže byť prázdne', '2019-05-25 22:47:21'),
(8134, 'sk', 'common', 'entrynotvalid', 'Vložené údaje pravdepodobnie nie je správne', '2019-05-25 22:47:21'),
(8135, 'sk', 'common', 'failed', 'Zlyhal', '2019-05-25 22:47:21'),
(8136, 'sk', 'common', 'forum', 'Fórum', '2019-05-25 22:47:21'),
(8137, 'sk', 'common', 'Found', 'Nájdené', '2019-05-25 22:47:21'),
(8138, 'sk', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:47:21'),
(8139, 'sk', 'common', 'help', 'Nápoveda', '2019-05-25 22:47:21'),
(8140, 'sk', 'common', 'hidenews', 'Schovať novinky Seo Panelu', '2019-05-25 22:47:21'),
(8141, 'sk', 'common', 'Id', 'Id', '2019-05-25 22:47:21'),
(8142, 'sk', 'common', 'Inactivate', 'Deaktivovať', '2019-05-25 22:47:21'),
(8143, 'sk', 'common', 'Inactive', 'Neaktívne', '2019-05-25 22:47:21'),
(8144, 'sk', 'common', 'Invalid characters', 'Neplatné znaky', '2019-05-25 22:47:21'),
(8145, 'sk', 'common', 'Invalid code entered', 'Vložený neplatný kód', '2019-05-25 22:47:21'),
(8146, 'sk', 'common', 'Invalid email address entered', 'Vložená neplatná emailová adresa', '2019-05-25 22:47:21'),
(8147, 'sk', 'common', 'Invalid value', 'Neplatná hodnota', '2019-05-25 22:47:21'),
(8148, 'sk', 'common', 'Keyword', 'Kľúčové slovo', '2019-05-25 22:47:21'),
(8149, 'sk', 'common', 'Keywords', 'Kľúčové slová', '2019-05-25 22:47:21'),
(8150, 'sk', 'common', 'lang', 'Jazyk', '2019-05-25 22:47:21'),
(8151, 'sk', 'common', 'My Account', 'Môj účet', '2019-05-25 22:47:21'),
(8152, 'sk', 'common', 'Name', 'Meno', '2019-05-25 22:47:21'),
(8153, 'sk', 'common', 'No', 'Nie', '2019-05-25 22:47:21'),
(8154, 'sk', 'common', 'No Keywords Found', 'Nenašlo sa žiadne kľúčové slovo', '2019-05-25 22:47:21'),
(8155, 'sk', 'common', 'No Records Found', 'Nenašli sa žiadne záznamy', '2019-05-25 22:47:21'),
(8156, 'sk', 'common', 'noactivetools', 'Nenašli sa žiadne SEO nástroje', '2019-05-25 22:47:21'),
(8157, 'sk', 'common', 'nowebsites', 'Nenašli sa žiadne webstránky', '2019-05-25 22:47:21'),
(8158, 'sk', 'common', 'password632', 'Heslo musí mať 6 až 32 znakov', '2019-05-25 22:47:21'),
(8159, 'sk', 'common', 'passwordnotmatch', 'Heslá nie sú zhodné', '2019-05-25 22:47:21'),
(8160, 'sk', 'common', 'Period', 'Obdobie', '2019-05-25 22:47:21'),
(8161, 'sk', 'common', 'Priority', 'Priorita', '2019-05-25 22:47:21'),
(8162, 'sk', 'common', 'Profile', 'Profil', '2019-05-25 22:47:21'),
(8163, 'sk', 'common', 'Rank', 'Pozícia', '2019-05-25 22:47:21'),
(8164, 'sk', 'common', 'Reports', 'Report', '2019-05-25 22:47:21'),
(8165, 'sk', 'common', 'Results', 'Výsledky', '2019-05-25 22:47:21'),
(8166, 'sk', 'common', 'Search Engine', 'Vyhľadávač', '2019-05-25 22:47:21'),
(8167, 'sk', 'common', 'Select', 'Vybrať', '2019-05-25 22:47:21'),
(8168, 'sk', 'common', 'Seo Plugins', 'SEO pluginy', '2019-05-25 22:47:21'),
(8169, 'sk', 'common', 'Seo Tools', 'SEO nástroje', '2019-05-25 22:47:21'),
(8170, 'sk', 'common', 'Sign out', 'Odhlásiť sa', '2019-05-25 22:47:21'),
(8171, 'sk', 'common', 'Sign Up', 'Zaregistrovať sa', '2019-05-25 22:47:21'),
(8172, 'sk', 'common', 'signin', 'Prihlásiť sa', '2019-05-25 22:47:21'),
(8173, 'sk', 'common', 'Status', 'Stav', '2019-05-25 22:47:21'),
(8174, 'sk', 'common', 'Support', 'Technická podpora', '2019-05-25 22:47:21'),
(8175, 'sk', 'common', 'Total', 'Spolu', '2019-05-25 22:47:21'),
(8176, 'sk', 'common', 'Url', 'Url', '2019-05-25 22:47:21'),
(8177, 'sk', 'common', 'User', 'Užívateľ', '2019-05-25 22:47:21'),
(8178, 'sk', 'common', 'User Panel', 'Užívateľský panel', '2019-05-25 22:47:21'),
(8179, 'sk', 'common', 'Website', 'Webstránka', '2019-05-25 22:47:21'),
(8180, 'sk', 'common', 'Yes', 'Áno', '2019-05-25 22:47:21'),
(8181, 'sk', 'directory', 'Add back to directory list', 'Vrátiť späť do zoznamu katalógov', '2013-04-30 14:33:42'),
(8182, 'sk', 'directory', 'Approved', 'Schválené', '2013-04-30 14:33:42'),
(8183, 'sk', 'directory', 'Captcha', 'Captcha', '2013-04-30 14:33:42'),
(8184, 'sk', 'directory', 'categorynote', 'Kategórie oddeľte čiarkou v závislosti na priorite. Začnite s kategóriou s najvyššou prioritou.', '2013-04-30 14:33:42'),
(8185, 'sk', 'directory', 'Check Directory Status', 'Skontrolujte stav katalógu', '2013-04-30 14:33:42'),
(8186, 'sk', 'directory', 'Check Directory Submission Status', 'Skontrolujte stav registrácie do katalógov', '2013-04-30 14:33:42'),
(8187, 'sk', 'directory', 'clicktoproceeddirsts', 'Na skontrolovanie stavu katalógu kliknite na <b>Vykonať</b>.', '2013-04-30 14:33:42'),
(8188, 'sk', 'directory', 'Confirmation', 'Potvrdenie', '2013-04-30 14:33:42'),
(8189, 'sk', 'directory', 'desnote', 'Niektoré katalógy vyžadujú pre pole popis minimálne 150 znakov.', '2013-04-30 14:33:42'),
(8190, 'sk', 'directory', 'Directories with out captcha', 'Katalógy bez overenia captcha', '2013-04-30 14:33:42'),
(8191, 'sk', 'directory', 'Directory Submission Reports', 'Výpisy registrácie do katalógov', '2013-04-30 14:33:42'),
(8192, 'sk', 'directory', 'Enter the code shown', 'Vložte zobrazený kód', '2013-04-30 14:33:42'),
(8193, 'sk', 'directory', 'nocatnote', 'Zadaná kategória nebola nájdená na registračnej stránke. Prosím kliknite na <b>Znovu načítať</b>, alebo <b>Preskočiť</b>', '2013-04-30 14:33:42'),
(8194, 'sk', 'directory', 'nodirnote', 'Neboli nájdené žiadne <b>Aktívne</b> katalógy', '2013-04-30 14:33:42'),
(8195, 'sk', 'directory', 'nosuccessnote', 'Nedostali sme potvrdzujúcu správu. Prosím skontrolujte váš email, či sa v ňom nenachádza potvrdzujúca správa.', '2013-04-30 14:33:42'),
(8196, 'sk', 'directory', 'optionalnote', 'Dodatočné nadpisy a popisy, ktoré sa budú vkladať náhodne do katalógov, aby ste získali lepšie výsledky.', '2013-04-30 14:33:42'),
(8197, 'sk', 'directory', 'Owner Email', 'Email vlastníka', '2013-04-30 14:33:42'),
(8198, 'sk', 'directory', 'Owner Name', 'Meno vlastníka', '2013-04-30 14:33:42'),
(8199, 'sk', 'directory', 'Pending', 'Čaká na schválenie', '2013-04-30 14:33:42'),
(8200, 'sk', 'directory', 'Please select a website to proceed', 'Prosím výberte webstránku na vykonanie', '2013-04-30 14:33:42'),
(8201, 'sk', 'directory', 'Reciprocal Link', 'Recipročný odkaz', '2013-04-30 14:33:42'),
(8202, 'sk', 'directory', 'selectwebsiteproceed', 'Vyberte si <b>Webstránku</b>, ktorú chcete <b>Vložiť</b> do katalógov.<br>Zaškrtnite <b>Katalógy bez overenia captcha</b> na registráciu do katalógov, ktoré nevyžadujú overenie captcha', '2013-04-30 14:33:42'),
(8203, 'sk', 'directory', 'selectwebsiteschecksub', 'Vyberte <b>Webstránku</b>, aby sa mohla <b>Vykonať</b> kontrola registrácie do katalógov.', '2013-04-30 14:33:42'),
(8204, 'sk', 'directory', 'Semi Automatic Directory Submission Tool', 'Poloautomatický nástroj na registráciu do katalógov', '2013-04-30 14:33:42'),
(8205, 'sk', 'directory', 'spamemailnote', 'Niektoré katalógy môžu rozosielať spam. Neodporúčame používať vašu primárnu emailovú adresu.', '2013-04-30 14:33:42'),
(8206, 'sk', 'directory', 'Submission Details', 'Detaily registrácie', '2013-04-30 14:33:42'),
(8207, 'sk', 'directory', 'Submit Description', 'Vložte Popis', '2013-04-30 14:33:42'),
(8208, 'sk', 'directory', 'Submit Keywords', 'Vložte Kľúčové slová', '2013-04-30 14:33:42'),
(8209, 'sk', 'directory', 'Submit Title', 'Vložte Nadpis', '2013-04-30 14:33:42'),
(8210, 'sk', 'directory', 'Website Category', 'Kategória webstránky', '2013-04-30 14:33:42'),
(8211, 'sk', 'directory', 'Website Url', 'Url webstránky', '2013-04-30 14:33:42'),
(8212, 'sk', 'home', 'Account Summary', 'Zhrnutie účtu', '2012-02-27 09:11:45'),
(8213, 'sk', 'home', 'Backlinks', 'Spätné odkazy', '2012-02-27 09:11:51'),
(8214, 'sk', 'home', 'Directory Submission', 'Vloženie do katalógov', '2012-02-27 09:11:51'),
(39123, 'it', 'sitemap', 'Sitemap Files', 'File Sitemap', '2026-01-19 22:58:50'),
(39124, 'nl', 'sitemap', 'Sitemap Files', 'Sitemap-bestanden', '2026-01-19 22:58:50'),
(39125, 'pl', 'sitemap', 'Sitemap Files', 'Pliki mapy witryny', '2026-01-19 22:58:50'),
(39126, 'pt', 'sitemap', 'Sitemap Files', 'Arquivos de Sitemap', '2026-01-19 22:58:50'),
(39127, 'pt-br', 'sitemap', 'Sitemap Files', 'Arquivos de Sitemap', '2026-01-19 22:58:50'),
(39128, 'ru', 'sitemap', 'Sitemap Files', 'Файлы карты сайта', '2026-01-19 22:58:50'),
(39129, 'tr', 'sitemap', 'Sitemap Files', 'Sitemap Dosyaları', '2026-01-19 22:58:50'),
(39130, 'zh', 'sitemap', 'Sitemap Files', '站点地图文件', '2026-01-19 22:58:50'),
(39131, 'cn', 'sitemap', 'Sitemap Files', '站点地图文件', '2026-01-19 22:58:50'),
(39132, 'en', 'sitemap', 'Generated sitemap files are listed below', 'Generated sitemap files are listed below', '2026-01-19 22:58:50'),
(39133, 'ar', 'sitemap', 'Generated sitemap files are listed below', 'يتم سرد ملفات خريطة الموقع التي تم إنشاؤها أدناه', '2026-01-19 22:58:50'),
(39134, 'bg', 'sitemap', 'Generated sitemap files are listed below', 'Генерираните sitemap файлове са изброени по-долу', '2026-01-19 22:58:50'),
(39135, 'de', 'sitemap', 'Generated sitemap files are listed below', 'Generierte Sitemap-Dateien sind unten aufgeführt', '2026-01-19 22:58:50'),
(39136, 'es', 'sitemap', 'Generated sitemap files are listed below', 'Los archivos de sitemap generados se enumeran a continuación', '2026-01-19 22:58:50'),
(39137, 'fr', 'sitemap', 'Generated sitemap files are listed below', 'Les fichiers sitemap générés sont répertoriés ci-dessous', '2026-01-19 22:58:50'),
(39138, 'it', 'sitemap', 'Generated sitemap files are listed below', 'I file sitemap generati sono elencati di seguito', '2026-01-19 22:58:50'),
(39139, 'nl', 'sitemap', 'Generated sitemap files are listed below', 'Gegenereerde sitemap-bestanden worden hieronder vermeld', '2026-01-19 22:58:50'),
(39140, 'pl', 'sitemap', 'Generated sitemap files are listed below', 'Wygenerowane pliki mapy witryny są wymienione poniżej', '2026-01-19 22:58:50'),
(39141, 'pt', 'sitemap', 'Generated sitemap files are listed below', 'Os arquivos de sitemap gerados estão listados abaixo', '2026-01-19 22:58:50'),
(39142, 'pt-br', 'sitemap', 'Generated sitemap files are listed below', 'Os arquivos de sitemap gerados estão listados abaixo', '2026-01-19 22:58:50'),
(39143, 'ru', 'sitemap', 'Generated sitemap files are listed below', 'Созданные файлы карты сайта перечислены ниже', '2026-01-19 22:58:50'),
(39144, 'tr', 'sitemap', 'Generated sitemap files are listed below', 'Oluşturulan sitemap dosyaları aşağıda listelenmiştir', '2026-01-19 22:58:50'),
(39145, 'zh', 'sitemap', 'Generated sitemap files are listed below', '生成的站点地图文件列在下面', '2026-01-19 22:58:50'),
(39146, 'cn', 'sitemap', 'Generated sitemap files are listed below', '生成的站点地图文件列在下面', '2026-01-19 22:58:50'),
(39147, 'en', 'common', 'Options', 'Options', '2026-01-19 22:59:12'),
(39148, 'ar', 'common', 'Options', 'خيارات', '2026-01-19 22:59:12'),
(39149, 'bg', 'common', 'Options', 'Опции', '2026-01-19 22:59:12'),
(39150, 'bs', 'common', 'Options', 'Opcije', '2026-01-19 22:59:12'),
(39151, 'ca', 'common', 'Options', 'Opcions', '2026-01-19 22:59:12'),
(39152, 'cn', 'common', 'Options', '选项', '2026-01-19 22:59:12'),
(39153, 'cs', 'common', 'Options', 'Možnosti', '2026-01-19 22:59:12'),
(39154, 'da', 'common', 'Options', 'Muligheder', '2026-01-19 22:59:12'),
(39155, 'de', 'common', 'Options', 'Optionen', '2026-01-19 22:59:12'),
(39156, 'el', 'common', 'Options', 'Επιλογές', '2026-01-19 22:59:12'),
(39157, 'es', 'common', 'Options', 'Opciones', '2026-01-19 22:59:12'),
(39158, 'es-ar', 'common', 'Options', 'Opciones', '2026-01-19 22:59:12'),
(39159, 'fa', 'common', 'Options', 'گزینه ها', '2026-01-19 22:59:12'),
(39160, 'fi', 'common', 'Options', 'Vaihtoehdot', '2026-01-19 22:59:12'),
(39161, 'fr', 'common', 'Options', 'Options', '2026-01-19 22:59:12'),
(39162, 'he', 'common', 'Options', 'אפשרויות', '2026-01-19 22:59:12'),
(39163, 'hi', 'common', 'Options', 'विकल्प', '2026-01-19 22:59:12'),
(39164, 'hr', 'common', 'Options', 'Opcije', '2026-01-19 22:59:12'),
(39165, 'hu', 'common', 'Options', 'Lehetőségek', '2026-01-19 22:59:12'),
(39166, 'hy', 'common', 'Options', 'Ընտրանքներ', '2026-01-19 22:59:12'),
(39167, 'id', 'common', 'Options', 'Opsi', '2026-01-19 22:59:12'),
(38778, 'sr', 'review', 'Average Rating', 'Просечан рејтинг', '2026-01-19 22:58:50'),
(38779, 'sv', 'review', 'Average Rating', 'Genomsnittligt betyg', '2026-01-19 22:58:50'),
(38780, 'sw', 'review', 'Average Rating', 'Ukadiriaji wa Wastani', '2026-01-19 22:58:50'),
(38781, 'th', 'review', 'Average Rating', 'คะแนนเฉลี่ย', '2026-01-19 22:58:50'),
(38782, 'tl', 'review', 'Average Rating', 'Average na Rating', '2026-01-19 22:58:50'),
(38783, 'tr', 'review', 'Average Rating', 'Ortalama Puan', '2026-01-19 22:58:50'),
(38784, 'uk', 'review', 'Average Rating', 'Середній рейтинг', '2026-01-19 22:58:50'),
(38785, 'vn', 'review', 'Average Rating', 'Đánh giá trung bình', '2026-01-19 22:58:50'),
(38786, 'zh', 'review', 'Average Rating', '平均评分', '2026-01-19 22:58:50'),
(38787, 'en', 'review', 'Reviews by Platform', 'Reviews by Platform', '2026-01-19 22:58:50'),
(38788, 'ar', 'review', 'Reviews by Platform', 'المراجعات حسب المنصة', '2026-01-19 22:58:50'),
(38789, 'bg', 'review', 'Reviews by Platform', 'Отзиви по платформа', '2026-01-19 22:58:50'),
(38790, 'bs', 'review', 'Reviews by Platform', 'Recenzije po platformi', '2026-01-19 22:58:50'),
(8218, 'sk', 'home', 'Indexed', 'Indexované', '2012-02-27 09:11:51'),
(8219, 'sk', 'home', 'Pages Indexed', 'Indexované stránky', '2012-02-27 09:11:51'),
(8220, 'sk', 'home', 'Ranks', 'Ranky', '2012-02-27 09:11:51'),
(8221, 'sk', 'home', 'SiteNameUrl', 'Názov stránky/URL', '2012-02-27 09:11:51'),
(8222, 'sk', 'home', 'Website Statistics', 'Štatistiky webstránky', '2012-02-27 09:11:51'),
(8223, 'sk', 'keyword', 'Crawling keyword', 'Prechádzam kľúčové slová', '2012-02-23 17:16:00'),
(8224, 'sk', 'keyword', 'Detailed Keyword Position Reports', 'Detailný výpis pozícií kľúčových slov', '2012-02-23 17:16:00'),
(8225, 'sk', 'keyword', 'Edit Keyword', 'Upraviť kľúčové slovo', '2012-02-23 17:16:00'),
(8226, 'sk', 'keyword', 'Graphical Keyword Position Reports', 'Grafický výpis pozícií kľúčových slov', '2012-02-23 17:16:00'),
(8227, 'sk', 'keyword', 'Import Keywords', 'Zadať kľúčové slová', '2012-02-23 17:16:00'),
(8228, 'sk', 'keyword', 'Insert keywords separated with comma', 'Klúčové slová oddeľte čiarkou', '2012-02-23 17:16:00'),
(8229, 'sk', 'keyword', 'Keyword already exist', 'Kľúčové slovo už existuje', '2012-02-23 17:16:00'),
(8230, 'sk', 'keyword', 'Keyword Position Report', 'Výpis pozícií kľúčových slov', '2012-02-23 17:16:00'),
(8231, 'sk', 'keyword', 'New Keyword', 'Nové kľúčové slovo', '2012-02-23 17:16:00'),
(8232, 'sk', 'keyword', 'not assigned to required search engines', 'nie je priradené k požadovaným vyhľadávačom', '2012-02-23 17:16:00');
INSERT INTO `texts` VALUES
(8233, 'sk', 'keyword', 'pleaseselecttool', 'Prosím vyberte aspoň jeden SEO nástroj', '2012-02-23 17:16:00'),
(8234, 'sk', 'keyword', 'Quick Keyword Position Checker', 'Rýchla kontrola pozícií kľúčového slova', '2012-02-23 17:16:00'),
(8235, 'sk', 'keyword', 'results from ', 'výsledky z', '2012-02-23 17:16:00'),
(8236, 'sk', 'keyword', 'Show All results', 'Zobraziť všetky výsledky', '2012-02-23 17:16:00'),
(8237, 'sk', 'keyword', 'Successfully crawled keyword', 'Úspešne preskúmané kľúčové slovo', '2012-02-23 17:16:00'),
(8238, 'sk', 'keyword', 'to create new keywords', 'na vytvorenie nových kľúčových slov', '2012-02-23 17:16:00'),
(8239, 'sk', 'label', 'already exist', 'už existuje', '2013-04-30 14:34:36'),
(8240, 'sk', 'label', 'Authentication', 'Overenie', '2013-04-30 14:34:36'),
(8241, 'sk', 'label', 'Author', 'Autor', '2013-04-30 14:34:36'),
(8242, 'sk', 'label', 'Brocken', 'Nefunkčné', '2013-04-30 14:34:36'),
(8243, 'sk', 'label', 'Click Here', 'Kliknite sem', '2013-04-30 14:34:36'),
(8244, 'sk', 'label', 'Comments', 'Komentár', '2013-04-30 14:34:36'),
(8245, 'sk', 'label', 'Count', 'Počet', '2013-04-30 14:34:36'),
(8246, 'sk', 'label', 'Cron', 'Cron', '2013-04-30 14:34:36'),
(8247, 'sk', 'label', 'Description', 'Popis', '2013-04-30 14:34:36'),
(8248, 'sk', 'label', 'Developers', 'Vývojári', '2013-04-30 14:34:36'),
(8249, 'sk', 'label', 'Download', 'Stiahnuť', '2013-04-30 14:34:36'),
(8250, 'sk', 'label', 'Exclude', 'Vylúčiť', '2013-04-30 14:34:36'),
(8251, 'sk', 'label', 'Include', 'Zahrnúť', '2013-04-30 14:34:36'),
(8252, 'sk', 'label', 'Installation', 'Inštalácia', '2013-04-30 14:34:36'),
(8253, 'sk', 'label', 'Keywords', 'Kľúčové slová', '2013-04-30 14:34:36'),
(8254, 'sk', 'label', 'noactiveplugins', 'Neboli nájdené žiadne SEO pluginy', '2013-04-30 14:34:36'),
(8255, 'sk', 'label', 'Plugin', 'Plugin', '2013-04-30 14:34:36'),
(8256, 'sk', 'label', 'Port', 'Port', '2013-04-30 14:34:36'),
(8257, 'sk', 'label', 'Project', 'Projekt', '2013-04-30 14:34:36'),
(8258, 'sk', 'label', 'Proxy', 'Proxy', '2013-04-30 14:34:36'),
(8259, 'sk', 'label', 'Re-install', 'Znovu nainštalovať', '2013-04-30 14:34:36'),
(8260, 'sk', 'label', 'Report Type', 'Typ výpisu', '2013-04-30 14:34:36'),
(8261, 'sk', 'label', 'Score', 'Skóre', '2013-04-30 14:34:36'),
(8262, 'sk', 'label', 'Sponsors', 'Sponzori', '2013-04-30 14:34:36'),
(8263, 'sk', 'label', 'Title', 'Nadpis', '2013-04-30 14:34:36'),
(8264, 'sk', 'label', 'Total Results', 'Celkové výsledky', '2013-04-30 14:34:36'),
(8265, 'sk', 'label', 'translation by', 'Preložil', '2013-04-30 14:34:36'),
(8266, 'sk', 'label', 'Translators', 'Prekladatelia', '2013-04-30 14:34:36'),
(8267, 'sk', 'label', 'Updated', 'Aktualizované', '2013-04-30 14:34:36'),
(8268, 'sk', 'label', 'Upgrade', 'Aktualizácia', '2013-04-30 14:34:36'),
(8269, 'sk', 'label', 'Version', 'Verzia', '2013-04-30 14:34:36'),
(8270, 'sk', 'label', 'View Reports', 'Zobraziť výsledky auditu', '2013-04-30 14:34:36'),
(8271, 'sk', 'label', 'wantproceed', 'Naozaj to chcete vykonať?', '2013-04-30 14:34:36'),
(8272, 'sk', 'login', 'Confirm Password', 'Potvrdiť heslo', '2012-02-25 12:07:08'),
(8273, 'sk', 'login', 'Create my account', 'Vytvoriť účet', '2012-02-25 12:07:08'),
(8274, 'sk', 'login', 'Create New Account', 'Vytvoriť nový účet', '2012-02-25 12:07:08'),
(8275, 'sk', 'login', 'Email', 'Email', '2012-02-25 12:07:08'),
(8276, 'sk', 'login', 'emailexist', 'Tento email už existuje!', '2012-02-25 12:07:08'),
(8277, 'sk', 'login', 'Enter the code as it is shown', 'Opíšte zobrazený kód', '2012-02-25 12:07:08'),
(8278, 'sk', 'login', 'First Name', 'Krstné meno', '2012-02-25 12:07:08'),
(8279, 'sk', 'login', 'Last Name', 'Priezvisko', '2012-02-25 12:07:08'),
(8280, 'sk', 'login', 'Login', 'Užívateľské meno', '2012-02-25 12:07:08'),
(8281, 'sk', 'login', 'Login incorrect', 'Nesprávne užívateľské meno', '2012-02-25 12:07:08'),
(8282, 'sk', 'login', 'newaccountsuccess', 'Účet bol úspešne vytvorený', '2012-02-25 12:07:08'),
(8283, 'sk', 'login', 'Password', 'Heslo', '2012-02-25 12:07:08'),
(8284, 'sk', 'login', 'Password incorrect', 'Nesprávne heslo', '2012-02-25 12:07:08'),
(8285, 'sk', 'login', 'Register', 'Registrovať', '2012-02-25 12:07:08'),
(8286, 'sk', 'login', 'Sign in to your account', 'Prihlásiť sa k svojmu účtu', '2012-02-25 12:07:08'),
(8287, 'sk', 'login', 'User inactive', 'Neaktívny užívateľ', '2012-02-25 12:07:08'),
(8288, 'sk', 'login', 'Username', 'Užívateľské meno', '2012-02-25 12:07:08'),
(8289, 'sk', 'login', 'usernameexist', 'Užívateľské meno už existuje!', '2012-02-25 12:07:08'),
(8290, 'sk', 'panel', 'About Us', 'O nás', '2013-04-30 14:34:59'),
(8291, 'sk', 'panel', 'Add following command to your cron tab', 'Vložte nasledujúci príkaz do tabuľky cronu', '2013-04-30 14:34:59'),
(8292, 'sk', 'panel', 'alsocheckfollowlink', 'Pozri nasledujúci odkaz, ak potrebuješ viac detailov', '2013-04-30 14:34:59'),
(8293, 'sk', 'panel', 'Check Directory', 'Kontrola katalógov', '2013-04-30 14:34:59'),
(8294, 'sk', 'panel', 'Cron Command', 'Príkaz cronu', '2013-04-30 14:34:59'),
(8295, 'sk', 'panel', 'Directory Manager', 'Správca katalógov', '2013-04-30 14:34:59'),
(8296, 'sk', 'panel', 'Edit My Profile', 'Upraviť môj profil', '2013-04-30 14:34:59'),
(8297, 'sk', 'panel', 'Edit Project', 'Upraviť projekt', '2013-04-30 14:34:59'),
(8298, 'sk', 'panel', 'My Profile', 'Môj profil', '2013-04-30 14:34:59'),
(8299, 'sk', 'panel', 'New Project', 'Nový projekt', '2013-04-30 14:34:59'),
(8300, 'sk', 'panel', 'New Proxy', 'Nové proxy', '2013-04-30 14:34:59'),
(8301, 'sk', 'panel', 'New User', 'Nový užívateľ', '2013-04-30 14:34:59'),
(8302, 'sk', 'panel', 'New Website', 'Nová webstránka', '2013-04-30 14:34:59'),
(8303, 'sk', 'panel', 'Proxy Manager', 'Správca proxy', '2013-04-30 14:34:59'),
(8304, 'sk', 'panel', 'Report Generation Manager', 'Správca pre vytváranie výpisov', '2013-04-30 14:34:59'),
(8305, 'sk', 'panel', 'Reports Manager', 'Správca výpisov', '2013-04-30 14:34:59'),
(8306, 'sk', 'panel', 'Seo Plugins Manager', 'Správca SEO pluginov', '2013-04-30 14:34:59'),
(8307, 'sk', 'panel', 'Seo Tools Manager', 'Správca SEO nástrojov', '2013-04-30 14:34:59'),
(8308, 'sk', 'panel', 'System Settings', 'Systémové nastavenia', '2013-04-30 14:34:59'),
(8309, 'sk', 'panel', 'User Manager', 'Správca užívateľov', '2013-04-30 14:34:59'),
(8310, 'sk', 'panel', 'Website Manager', 'Správca webstránok', '2013-04-30 14:34:59'),
(8311, 'sk', 'plugin', 'Download Seo Panel Plugins', 'Stiahnuť SEO Panel Plugin', '2012-02-23 17:45:00'),
(8312, 'sk', 'plugin', 'Edit Seo Plugin', 'Upraviť SEO plugin', '2012-02-23 17:45:00'),
(8313, 'sk', 'plugin', 'Plugin Name', 'Názov pluginu', '2012-02-23 17:45:00'),
(8314, 'sk', 'plugin', 'Seo Plugin Details', 'Detaily SEO pluginu', '2012-02-23 17:45:00'),
(8315, 'sk', 'proxy', 'Edit Proxy', 'Upraviť proxy', '2012-02-20 17:38:03'),
(8316, 'sk', 'proxy', 'Proxy Password', 'Heslo k proxy', '2012-02-20 17:38:03'),
(8317, 'sk', 'proxy', 'Proxy Username', 'Užívateľ k proxy', '2012-02-20 17:38:03'),
(8318, 'sk', 'proxy', 'Proxyalreadyexist', 'Proxy už existuje', '2012-02-20 17:38:03'),
(8319, 'sk', 'rank', 'enterurlproceed', '<b>Na jeden riadok</b> vložte jednu URL adresu. Kliknite na \\"Vykonať\\" na kontrolu Google a Alexa ranku.', '2012-02-25 13:42:00'),
(8320, 'sk', 'rank', 'Google and Alexa Rank Reports', 'Výpis Google a Alexa ranku', '2012-02-25 13:42:00'),
(8321, 'sk', 'rank', 'Saved rank results of', 'Výsledky rankov webu boli uložené - ', '2012-02-25 13:42:00'),
(8322, 'sk', 'website', 'Edit Website', 'Upraviť webstránku', '2012-02-25 12:20:49'),
(8323, 'sk', 'website', 'plscrtwebsite', 'Pred začiatkom používania SEO nástrojov a SEO pluginov, vytvorte prosím najskôr webstránku', '2012-02-25 12:20:49'),
(8324, 'sk', 'website', 'Website already exist', 'Webstránka už existuje', '2012-02-25 12:20:49'),
(8325, 'sk', 'website', 'yourwebalreday', 'vašu webstránku, ak už bola vytvorená.', '2012-02-25 12:20:49'),
(8326, 'sk', 'user', 'Edit User', 'Upraviť užívateľa', '2012-02-21 01:32:06'),
(8327, 'sk', 'user', 'Saved My Profile Details', 'Detaily v mojom profile boli uložené', '2012-02-21 01:32:06'),
(8328, 'sk', 'sitemap', 'Change frequency', 'Zmeniť frekvenciu', '2012-02-21 01:40:22'),
(8329, 'sk', 'sitemap', 'clickproceedsitemap', 'Na vytvorenie sitemapy kliknite na <b>Vykonať<b> ', '2012-02-21 01:40:22'),
(8330, 'sk', 'sitemap', 'Download sitemap file from', 'Stiahnuť sitemapu z', '2012-02-21 01:40:22'),
(8331, 'sk', 'sitemap', 'Exclude Url', 'Vyňať URL', '2012-02-21 01:40:22'),
(8332, 'sk', 'sitemap', 'processtaketime', 'Čas spracovania závisí na počte linkov na vašej stránke. Prosím počkajte, pokiaľ nedostanete súbor sitemapy', '2012-02-21 01:40:22'),
(8333, 'sk', 'sitemap', 'Sitemap Type', 'Typ sitemapy', '2012-02-21 01:40:22'),
(8334, 'sk', 'saturation', 'clickproceedsaturation', 'Vložte <b>na každý riadok jednu</b> URL. Kliknite na <b>Vykonať</b> pro kontrolu indexácie vyhľadávačmi.', '2012-02-27 08:53:35'),
(8335, 'sk', 'saturation', 'GenerateSaturationReports', 'Vygenerovať výpis indexácie vyhľadávačmi', '2012-02-27 08:53:36'),
(8336, 'sk', 'saturation', 'Quick Search Engine Saturation Checker', 'Rýchla kontrola indexácie vyhľadávačmi', '2012-02-27 08:53:36'),
(8337, 'sk', 'saturation', 'Saved Search Engine Saturation results of', 'Výsledky indexácie vyhľadávačmi boli uložené pre web', '2012-02-27 08:53:36'),
(8338, 'sk', 'saturation', 'Search Engine Saturation Reports', 'Výpis indexácie vyhľadávačmi', '2012-02-27 08:53:36'),
(8339, 'sk', 'seotools', 'Auditor Projects', 'Audit projektov', '2012-02-25 15:56:20'),
(8340, 'sk', 'seotools', 'Auditor Reports', 'Výsledky auditu', '2012-02-25 15:56:20'),
(8341, 'sk', 'seotools', 'Auditor Settings', 'Nastavenie auditu', '2012-02-25 15:56:20'),
(8342, 'sk', 'seotools', 'Automatic Submission', 'Automatická registrácia', '2012-02-25 15:56:20'),
(8343, 'sk', 'seotools', 'backlink-checker', 'Kontrola spätných odkazov', '2012-02-25 15:56:20'),
(8344, 'sk', 'seotools', 'Backlinks Reports', 'Výpis spätných odkazov', '2012-02-25 15:56:20'),
(8345, 'sk', 'seotools', 'Check Submission Status', 'Skontrolovať stav registrácie', '2012-02-25 15:56:20'),
(8346, 'sk', 'seotools', 'clickgeneratereports', 'Na vygenerovanie výsledkov kliknite na \\"Vykonať\\" ', '2012-02-25 15:56:20'),
(8347, 'sk', 'seotools', 'Detailed Position Reports', 'Detailné výpisy pozícií', '2012-02-25 15:56:20'),
(8348, 'sk', 'seotools', 'directory-submission', 'Registrácia do katalógov', '2012-02-25 15:56:20'),
(8349, 'sk', 'seotools', 'Featured Submission', 'Odporúčame vložiť', '2012-02-25 15:56:20'),
(8350, 'sk', 'seotools', 'Generate Backlinks Reports', 'Vygenerovať výpis spätných odkazov', '2012-02-25 15:56:20'),
(8351, 'sk', 'seotools', 'Generate Keyword Reports', 'Zistiť pozície kľúčových slov', '2012-02-25 15:56:20'),
(8352, 'sk', 'seotools', 'Generate Rank Reports', 'Vygenerovať výpis rankov', '2012-02-25 15:56:20'),
(8353, 'sk', 'seotools', 'Generate Saturation Reports', 'Vygenerovať výpis naplnenia', '2012-02-25 15:56:20'),
(8354, 'sk', 'seotools', 'Google Sitemap Generator', 'Generátor google sitemapy', '2012-02-25 15:56:20'),
(8355, 'sk', 'seotools', 'Graphical Position Reports', 'Grafický výpis pozícií', '2012-02-25 15:56:20'),
(8356, 'sk', 'seotools', 'Import Project Links', 'Importovať linky projektu', '2012-02-25 15:56:20'),
(8357, 'sk', 'seotools', 'Keyword Position Summary', 'Sumár pozícií kľúčových slov', '2012-02-25 15:56:20'),
(8358, 'sk', 'seotools', 'keyword-position-checker', 'Kontrola pozícií kľúčových slov', '2012-02-25 15:56:20'),
(8359, 'sk', 'seotools', 'Keywords Manager', 'Správca kľúčových slov', '2012-02-25 15:56:20'),
(8360, 'sk', 'seotools', 'Quick Backlinks Checker', 'Rýchla kontrola spätných odkazov', '2012-02-25 15:56:20'),
(8361, 'sk', 'seotools', 'Quick Position Checker', 'Rýchla kontrola pozícií', '2012-02-25 15:56:20'),
(8362, 'sk', 'seotools', 'Quick Rank Checker', 'Rýchla kontrola rankov', '2012-02-25 15:56:20'),
(8363, 'sk', 'seotools', 'Quick Saturation Checker', 'Rýchla kontrola naplnení', '2012-02-25 15:56:20'),
(8364, 'sk', 'seotools', 'Rank Reports', 'Výpis rankov', '2012-02-25 15:56:20'),
(8365, 'sk', 'seotools', 'rank-checker', 'Kontrola rankov', '2012-02-25 15:56:20'),
(8366, 'sk', 'seotools', 'Saturation Reports', 'Výpisy naplnenia', '2012-02-25 15:56:20'),
(8367, 'sk', 'seotools', 'saturation-checker', 'Naplnenie vyhľadávačov', '2012-02-25 15:56:20'),
(8368, 'sk', 'seotools', 'site-auditor', 'Auditor webstránok', '2012-02-25 15:56:20'),
(8369, 'sk', 'seotools', 'sitemap-generator', 'Generátor sitemapy', '2012-02-25 15:56:20'),
(8370, 'sk', 'seotools', 'Skipped Directories', 'Vynechané katalógy', '2012-02-25 15:56:20'),
(8371, 'sk', 'seotools', 'Submission Reports', 'Výpisy registrácie', '2012-02-25 15:56:20'),
(8372, 'sk', 'seotools', 'User Access', 'Uživateľský prístup', '2012-02-25 15:56:20'),
(8373, 'sk', 'settings', 'Check for Updates', 'Skontrolovať aktualizácie', '2013-04-30 14:35:42'),
(8374, 'sk', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Darujte 100 dolárov</b> a staňte sa <b>sponzorom</b> SEO panelu.', '2013-04-30 14:35:42'),
(8375, 'sk', 'settings', 'getallpluginfree', 'Taktiež dostanete <b>zdarma</b> všetky <b>pluginy</b>, ktoré vyvinieme!', '2013-04-30 14:35:42'),
(8376, 'sk', 'settings', 'SA_CRAWL_DELAY_TIME', 'Zdržanie medzi prechádzaním jednotlivých stránok', '2013-04-30 14:35:42'),
(8377, 'sk', 'settings', 'SA_MAX_NO_PAGES', 'Maximálny počet stránok povolených na webstránku', '2013-04-30 14:35:42'),
(8378, 'sk', 'settings', 'seopanel_description', 'Kompletný ovládací panel zdarma pre spravovanie SEO optimalizácie vašich webstránok. Obsahuje veľa najnovších SEO nástrojov na zvýšenie a sledovanie výkonnosti vyšich webstránok. Je to softvér s otvoreným kódom, takže si môžete tiež vyvinúť vlastné SEO pluginy pre SEO panel.', '2013-04-30 14:35:42'),
(8379, 'sk', 'settings', 'seopanel_title', 'SEO panel - prvý ovládací SEO panel na spravovanie viacerých webstránok', '2013-04-30 14:35:42'),
(8380, 'sk', 'settings', 'SP_API_KEY', 'SEO panel API Key', '2013-04-30 14:35:42'),
(8381, 'sk', 'settings', 'SP_CRAWL_DELAY', 'Zdržanie medzi každým prehľadávacím robotom', '2013-04-30 14:35:42'),
(8382, 'sk', 'settings', 'SP_DEFAULTLANG', 'Predvolený jazyk', '2013-04-30 14:35:42'),
(8383, 'sk', 'settings', 'SP_DESCRIPTION', 'Popis SEO panelu', '2013-04-30 14:35:42'),
(8384, 'sk', 'settings', 'SP_ENABLE_PROXY', 'Zapnúť proxy', '2013-04-30 14:35:42'),
(8385, 'sk', 'settings', 'SP_HOTLINKING', 'Zapnutá ochrana obrázkom', '2013-04-30 14:35:42'),
(8386, 'sk', 'settings', 'SP_KEYWORDS', 'Kľúčové slová SEO panelu', '2013-04-30 14:35:42'),
(8387, 'sk', 'settings', 'SP_PAGINGNO', 'Počet záznamov na stránku', '2013-04-30 14:35:42'),
(8388, 'sk', 'settings', 'SP_TITLE', 'Nadpis SEO panelu', '2013-04-30 14:35:42'),
(8389, 'sk', 'settings', 'SP_USER_AGENT', 'User agent', '2013-04-30 14:35:42'),
(8390, 'sk', 'settings', 'SP_USER_GEN_REPORT', 'Povoliť užívateľovi generovať výpisy', '2013-04-30 14:35:42'),
(8391, 'sk', 'settings', 'SP_USER_REGISTRATION', 'Rozhranie registrácie užívateľa', '2013-04-30 14:35:42'),
(8392, 'sk', 'settings', 'syssettingssaved', 'Systémové nastavenia boli úspešne uložené', '2013-04-30 14:35:42'),
(8393, 'sk', 'settings', 'versionnotuptodatemsg', 'Vaša inštalácia SEO panelu nie je aktuálna. <br>Prosím, stiahnite si novú verziu', '2013-04-30 14:35:42'),
(8394, 'sk', 'settings', 'Your Seo Panel installation is up to date', 'Vaša inštalácia SEO panelu je aktuálna', '2013-04-30 14:35:42'),
(8395, 'sk', 'siteauditor', 'Anchor', 'Odkaz', '2012-02-25 13:05:27'),
(8396, 'sk', 'siteauditor', 'anylinkcontainabovelinks', 'Všetky odkazy, ktoré obsahujú vyššie uvedené odkazy, budú vylúčené z výpisu', '2012-02-25 13:05:27'),
(8397, 'sk', 'siteauditor', 'anylinkcontainexcludesitemap', 'Všetky odkazy, ktoré obsahujú vyššie uvedené odkazy, budú vylúčené zo sitemapy', '2012-02-25 13:05:27'),
(8398, 'sk', 'siteauditor', 'Check backlinks of pages', 'Skontrolovať spätné odkazy stránok', '2012-02-25 13:05:27'),
(8399, 'sk', 'siteauditor', 'Check broken links in a page', 'Skontrolovať nefunkčné odkazy na stránke', '2012-02-25 13:05:27'),
(8400, 'sk', 'siteauditor', 'Check google pagerank of pages', 'Skontrolovať google pagerank stránok', '2012-02-25 13:05:27'),
(8401, 'sk', 'siteauditor', 'Check pages indexed or not', 'Skontrolovať indexáciu stránok', '2012-02-25 13:05:27'),
(8402, 'sk', 'siteauditor', 'Check Score', 'Skontrolovať skóre', '2012-02-25 13:05:27'),
(8403, 'sk', 'siteauditor', 'checkborckenlinkwait', 'Skontrolovať, či nefunkčné odkazy zvýšia čas realizácie projektu', '2012-02-25 13:05:27'),
(8404, 'sk', 'siteauditor', 'Completed project execution', 'Dokončená realizáciu projektu', '2012-02-25 13:05:27'),
(8405, 'sk', 'siteauditor', 'Crawled', 'Prehľadané', '2012-02-25 13:05:27'),
(8406, 'sk', 'siteauditor', 'Crawled Pages', 'Prehľadané stránky', '2012-02-25 13:05:27'),
(8407, 'sk', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'úspešné prehľadanie! Čakajte na prehľadanie ďalšej stránky pre', '2012-02-25 13:05:27'),
(8408, 'sk', 'siteauditor', 'Crawling Page', 'Prehľadávaná stránka', '2012-02-25 13:05:27'),
(8409, 'sk', 'siteauditor', 'Duplicate Description', 'Stránky s duplicitnými popismi', '2012-02-25 13:05:27'),
(8410, 'sk', 'siteauditor', 'Duplicate Keywords', 'Stránky s duplicitné kľúčovýi slovami', '2012-02-25 13:05:27'),
(8411, 'sk', 'siteauditor', 'Duplicate Title', 'Stránky s duplicitnými nadpismi', '2012-02-25 13:05:27'),
(8412, 'sk', 'siteauditor', 'Exclude links', 'Vylúčiť odkazy', '2012-02-25 13:05:27'),
(8413, 'sk', 'siteauditor', 'Execute with cron', 'Vykonať cronom', '2012-02-25 13:05:27'),
(8414, 'sk', 'siteauditor', 'External', 'Externý', '2012-02-25 13:05:27'),
(8415, 'sk', 'siteauditor', 'External Links', 'Externé odkazy', '2012-02-25 13:05:27'),
(8416, 'sk', 'siteauditor', 'Import Project Links', 'Importovať odkazy projektu', '2012-02-25 13:05:27'),
(8417, 'sk', 'siteauditor', 'Insert links separated with comma', 'Vložit odkazy oddelené čiarkou', '2012-02-25 13:05:27'),
(8418, 'sk', 'siteauditor', 'insertlinkssepcoma', 'Vložit odkazy oddelené čiarkou na vylúčenie nekonečných odkazov z výpisov', '2012-02-25 13:05:27'),
(8419, 'sk', 'siteauditor', 'Link Reports', 'Sumár jednotlivých URL', '2012-02-25 13:05:27'),
(8420, 'sk', 'siteauditor', 'Link Title', 'Nadpis odkazu', '2012-02-25 13:05:27'),
(8421, 'sk', 'siteauditor', 'Maximum number of pages to be checked', 'Maximálny počet stránok, ktoré majú byť kontrolované', '2012-02-25 13:05:27'),
(8422, 'sk', 'siteauditor', 'Maximum Pages', 'Maximum stránok', '2012-02-25 13:05:27'),
(8423, 'sk', 'siteauditor', 'No active projects found', 'Nebol nájdený žiadny aktívny projekt', '2012-02-25 13:05:27'),
(8424, 'sk', 'siteauditor', 'Nofollow', 'Nofollow', '2012-02-25 13:05:27'),
(8425, 'sk', 'siteauditor', 'Number of pages is greater than', 'Počet stránok je väčší než', '2012-02-25 13:05:27'),
(8426, 'sk', 'siteauditor', 'Number of pages should be greater than', 'Počet stránok by mal byť väčší než', '2012-02-25 13:05:27'),
(8427, 'sk', 'siteauditor', 'Page Details', 'Detaily stránky', '2012-02-25 13:05:27'),
(8428, 'sk', 'siteauditor', 'Page Link', 'URL stránky', '2012-02-25 13:05:27'),
(8429, 'sk', 'siteauditor', 'Page Links', 'Odkazy na stránku', '2012-02-25 13:05:27'),
(8430, 'sk', 'siteauditor', 'Pages Found', 'Nájdené stránky', '2012-02-25 13:05:27'),
(8431, 'sk', 'siteauditor', 'pressescapetostopexecution', 'Stlačte <b>escape</b>, ak chcete zastaviť vykonávanie skriptu', '2012-02-25 13:05:27'),
(8432, 'sk', 'siteauditor', 'Project Summary', 'Zhrnutie projektu', '2012-02-25 13:05:27'),
(8433, 'sk', 'siteauditor', 'Project Url', 'URL projektu', '2012-02-25 13:05:27'),
(8434, 'sk', 'siteauditor', 'projectalreadyexist', 'Pre túto webstránku už existuje projekt', '2012-02-25 13:05:27'),
(8435, 'sk', 'siteauditor', 'Recheck Pages', 'Znovu skontrolovať stránky', '2012-02-25 13:05:27'),
(8436, 'sk', 'siteauditor', 'Report Summary', 'Kompletná správa projektu', '2012-02-25 13:05:27'),
(8437, 'sk', 'siteauditor', 'Run Project', 'Spustiť projekt', '2012-02-25 13:05:27'),
(8438, 'sk', 'siteauditor', 'should start with', 'by mal začať s', '2012-02-25 13:05:27'),
(8439, 'sk', 'siteauditor', 'Site Auditor Settings', 'Nastavenia auditora stránky', '2012-02-25 13:05:27'),
(8440, 'sk', 'siteauditor', 'Store all links found in a page', 'Ukladať všetky nájdené odkazy na stránke', '2012-02-25 13:05:27'),
(8441, 'sk', 'siteauditor', 'The page description length is not between', 'Dĺžka popisu stránky nie je medzi', '2012-02-25 13:05:27'),
(8442, 'sk', 'siteauditor', 'The page is brocken', 'Stránka je nefunkčná', '2012-02-25 13:05:27'),
(8443, 'sk', 'siteauditor', 'The page is having exellent number of backlinks in', 'Na stránku vedie vynikajúci počet spätných odkazov', '2012-02-25 13:05:27'),
(8444, 'sk', 'siteauditor', 'The page is having exellent pagerank', 'Stránka má vynikajúci pagerank', '2012-02-25 13:05:27'),
(8445, 'sk', 'siteauditor', 'The page is having good number of backlinks in', 'Na stránku vedie dobrý počet spätných odkazov', '2012-02-25 13:05:27'),
(8446, 'sk', 'siteauditor', 'The page is having good pagerank', 'Stránka má dobrý pagerank', '2012-02-25 13:05:27'),
(8447, 'sk', 'siteauditor', 'The page is having poor pagerank', 'Stránka má slabý pagerank', '2012-02-25 13:05:27'),
(8448, 'sk', 'siteauditor', 'The page is having very good pagerank', 'Stránka má veľmi dobrý pagerank', '2012-02-25 13:05:27'),
(8449, 'sk', 'siteauditor', 'The page is not having backlinks in', 'Na stránku nevedú žiadne spätné odkazy', '2012-02-25 13:05:27'),
(8450, 'sk', 'siteauditor', 'The page is not indexed in', 'Stránka nie je indexovaná', '2012-02-25 13:05:27'),
(8451, 'sk', 'siteauditor', 'The page keywords length is not between', 'Dĺžka kľúčových slov stránky nie je medzi', '2012-02-25 13:05:27'),
(8452, 'sk', 'siteauditor', 'The page title length is not between', 'Dĺžka nadpisu stránky nie je medzi', '2012-02-25 13:05:27'),
(8453, 'sk', 'siteauditor', 'The total number of links in page is greater than', 'Celkový počet odkazov na stránke je väčší než', '2012-02-25 13:05:27'),
(8454, 'sk', 'siteauditor', 'to run project again if you stopped execution', 'pre opätovné spustenie projektu, ak ste zastavili vykonávanie skriptu', '2012-02-25 13:05:27'),
(8455, 'sk', 'siteauditor', 'to view the reports', 'pre zobrazenie správy', '2012-02-25 13:05:27'),
(8456, 'sk', 'siteauditor', 'Total Links', 'Celkový počet odkazov', '2012-02-25 13:05:27'),
(8457, 'sk', 'siteauditor', 'totallinksgreaterallowed', 'Celkový počet odkazov bude vyšší ako maximum povolených odkazov pre projekt', '2012-02-25 13:05:27'),
(8458, 'sk', 'support', 'support_cont1', '<fieldset>\r\n<legend>Technická podpora SEO panelu</legend>\r\n<ul class=\\"infobox\\">\r\n <li>\r\n <h1>Balíček 1000 katalógov</h1> \r\n <p>\r\n Poskytujeme balíček <b>1000 voľných, aktívnych a overených</b> internetových katalógov, ktorý si môžete pridať do vášho \r\n <b>nástroja na vkladanie do katalógov</b> vo vašom SEO paneli.\r\n Pomôže vám to <b>zvýšiť množstvo spätných odkazov</b> smerujúcich na vašu webstránku.\r\n Aktuálny zoznam 1000 katalógov je <b>predstavený</b> na získanie financií pre <b>budúci vývoj</b> SEO panelu.\r\n Na získanie zoznamu 1000 katalógov prosím <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">darujte</a> 10 dolárov alebo viac na zlepšenie funkcií SEO panelu.\r\n Ak máte akékoľvek otázky o balíčku 1000 katalógov, prosím <a href=\\"<?=SP_CONTACT_LINK?>\\"\r\ntarget=\\"_blank\\">kontaktujte nás</a> alebo kontaktujte <a href=\\"<?=SP_SUPPORT_LINK?>\\"\r\ntarget=\\"_blank\\">technickú podporu</a>. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Kliknite sem na dotáciu SEO panelu</a>\r\n </p>\r\n <br>\r\n </li> \r\n\r\n <li>\r\n <h1>Balíček lokálnych vyhľadávačov</h1> \r\n <p>\r\n Pridajte si <b>lokálne vyhľadávacie domény</b> google,yahoo,msn (<b>napr. : www.google.de,www.google.fr\r\natď</b>) do <b>kontroly pozícií kľúčových slov</b> v SEO paneli, na sledovanie výkonnosti vašej webstránky v lokálnych vyhľadávačoch.\r\n Na získanie balíčka lokálnych vyhľadávačov (v závislosti na vašich požiadavkách) prosím <a\r\nhref=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">darujte</a> 10 dolárov, alebo viac na zlepšenie funkcií SEO panelu.\r\n Pred poslaním dotácie nás prosím <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">kontaktujte</a> a poskytnite nám požadovaný zoznam doménových vyhľadávačov.\r\n <br><br> \r\n Taktiež na pridanie <b>nových vyhľadávačov (eg:baidu.com)</b> do vašej kontroly pozícií kľúčových slov, nás prosím <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">kontaktujte</a>, alebo zadajte požiadavku <a\r\nhref=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">technickej podpore</a>. \r\n </p> \r\n <p class=\\"visit\\">\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Kontaktujte nás</a>\r\n </p>\r\n <br>\r\n </li> \r\n<li>\r\n <h1>Seo Panel Pluginy</h1> \r\n <p>\r\n Pridajte si <b>SEO pluginy</b> do vášho SEO panelu na <b>rozšírenie funkcií</b> v závislosti na vašich požiadavkách.\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Seo panel pluginy</a> sú poskytované SEO panelom a tretími stranami.\r\n Môžete tiež jednoducho <b>vyvíjať</b> SEO pluginy pre váš SEO panel.\r\n Môžete <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">vložiť</a> váš SEO panel a my ho <b>zverejníme</b> na našej webstránke po našom <b>preverení</b>. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_PLUGINSITE?>\\" target=\\"_blank\\">Dostupné pluginy SEO panelu</a>\r\n </p>\r\n <br>\r\n </li> \r\n\r\n <li>\r\n <h1>Kontaktujte nás</h1> \r\n <p>\r\n Kontaktujte nás v prípade akýchkoľvek otázok o <b>nástrojoch SEO panelu, pluginoch a funkciách atď</b> použitím tohto odkazu. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_CONTACT_LINK?>\\" target=\\"_blank\\">Kontaktujte nás</a>\r\n </p>\r\n <br>\r\n </li>\r\n <li>\r\n <h1>Požiadavky na technickú podporu</h1> \r\n <p>\r\n Ak potrebujete <b>technickú podporu</b> od SEO panel tímu na nastavenie <b>nástrojov SEO panelu, pluginov a funkcií</b>. Napr. : nastavenie cronu pre kontrolu pozícií kľúčových slov. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Kontaktujte technickú podporu</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Hlásenie chýb</h1> \r\n <p>\r\n Ohláste <b>chyby</b> v <b>najstrojoch SEO panelu, pluginoch a funkciách atď.</b> použitím nasledujúceho odkazu. \r\n Prosím pomôžte nám zlepšiť funkcie v ďalších verziách. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_SUPPORT_LINK?>\\" target=\\"_blank\\">Hlásenie chýb</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset> ', '2012-02-23 17:55:15'),
(8459, 'sk', 'support', 'support_cont2', '<fieldset>\r\n<legend>Online zdroje Seo Panelu</legend>\r\n<ul class=\\"infobox\\">\r\n \r\n <li>\r\n <h1>Sprievodca nápovedou SEO panelu</h1> \r\n <p>\r\n Môžete si prezrieť <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">dokumentáciu SEO panelu</a> v\r\n<b>sprievodcovi nápovedou</b>. Obsahuje <b>dokumentáciu</b> pre nástroje SEO panelu, pluginy a súvisice funkcie.\r\n <br>Je to najlepšie miesto na internete, kde môžete <b>dostať pomocné informácie</b> o SEO paneli. Dúfame, že \r\n<b>prispejete</b> do sprievodcu nápovedou SEO panelu, ak nájdete chyby, alebo chýbajúce veci. \r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_HELP_LINK?>\\" target=\\"_blank\\">Navštívte sprievodcu nápovedou SEO panelu</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Fórum SEO panelu</h1> \r\n <p>\r\n Miesto na diskusiu o prvom svetovom <b>SEO paneli</b> s otvoreným kódom. \r\n Je to najlepšie miesto na nájdenie <b>odpovedí</b> na <b>vaše otázky</b> o SEO paneli. \r\n <br>Môžete tu tiež <b>zdielať</b> vaše <b>skúsenosti</b> s používaním SEO panelu pri optimalizovaní vašich webstránok. \r\n </p> \r\n <p>\r\n <a href=\\"<?=SP_FORUM_LINK?>\\" target=\\"_blank\\">Navštívte fórum SEO panelu</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2012-02-23 17:55:15'),
(8460, 'sk', 'support', 'support_cont3', '<fieldset>\r\n<legend>Dotácia SEO Panelu</legend>\r\n<ul class=\\"infobox\\"> \r\n <li>\r\n <h1>Dotácia SEO panelu - Prvý SEO panel s otvoreným kódom na svete</h1> \r\n <p>\r\n <b>Dotácia</b> SEO panelu na podporu prvého SEO panelu s otvoreným kódom na svete.\r\n Plánujeme do budúcna <b>pridávať a zlepšovať</b> funkcie SEO panelu. \r\n <br>Len s vašou <b>podporou</b> môžeme dosiahnuť naše <b>ciele</b>.\r\n Ak si myslíte, že SEO panel je pre vás <b>hodnotný</b>, tak prosím, darujte nejakú čiastku tímu SEO panelu.\r\n <br>Ak dostaneme dotáciu, <b>zverejníme</b> vaše meno a informácie o webstránke na <a href=\\"<?=SP_DONATE_LINK?>\\"\r\ntarget=\\"_blank\\">stránke darcov</a>.\r\n </p>\r\n <p>\r\n <a href=\\"<?=SP_DONATE_LINK?>\\" target=\\"_blank\\">Finančne podporiť SEO panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2012-02-23 17:55:15'),
(8461, 'id', 'backlink', 'clickproceedbacklink', 'Masukkan <b>satu URL per baris</b>. Klik pada <b>Lanjut</b> untuk mengecek Backlinks.', '2012-03-05 04:12:58'),
(8462, 'id', 'backlink', 'Saved backlink results of', 'Hasil backlink yang disimpan dari', '2012-03-05 04:12:58'),
(8463, 'id', 'button', 'Cancel', 'Batal', '2014-01-09 00:28:06'),
(8464, 'id', 'button', 'Check Status', 'Cek Status', '2014-01-09 00:28:06'),
(8465, 'id', 'button', 'Proceed', 'Lanjut', '2014-01-09 00:28:06'),
(8466, 'id', 'button', 'Reload', 'Muat ulang', '2014-01-09 00:28:06'),
(8467, 'id', 'button', 'Show Details', 'Tunjukkan Detail', '2014-01-09 00:28:06'),
(8468, 'id', 'button', 'Show Records', 'Tunjukkan Arsip', '2014-01-09 00:28:06'),
(8469, 'id', 'button', 'Skip', 'Lewati', '2014-01-09 00:28:06'),
(8470, 'id', 'button', 'Submit', 'Kirim', '2014-01-09 00:28:06'),
(8471, 'id', 'common', 'Action', 'Aksi', '2019-05-25 22:35:48'),
(8472, 'id', 'common', 'Activate', 'Aktifkan', '2019-05-25 22:35:48'),
(8473, 'id', 'common', 'Active', 'Aktif', '2019-05-25 22:35:48'),
(8474, 'id', 'common', 'Admin Panel', 'Panel Admin', '2019-05-25 22:35:48'),
(8475, 'id', 'common', 'Alexa Rank', 'Alexa Rank', '2019-05-25 22:35:48'),
(8476, 'id', 'common', 'All', 'Semua', '2019-05-25 22:35:48'),
(8477, 'id', 'common', 'Category', 'Kategori', '2019-05-25 22:35:48'),
(8478, 'id', 'common', 'contact', 'Kontak', '2019-05-25 22:35:48'),
(8479, 'id', 'common', 'copyright', 'Hak cipta © [year] www.seopanel.in Semua Hak Dilindungi ', '2019-05-25 22:35:48'),
(8480, 'id', 'common', 'Country', 'Negara', '2019-05-25 22:35:48'),
(8481, 'id', 'common', 'Crawl Meta Data', 'Ambil Meta Data', '2019-05-25 22:35:48'),
(8482, 'id', 'common', 'Date', 'Tanggal', '2019-05-25 22:35:48'),
(8483, 'id', 'common', 'Delete', 'Hapus', '2019-05-25 22:35:48'),
(8484, 'id', 'common', 'Details', 'Detail', '2019-05-25 22:35:48'),
(8485, 'id', 'common', 'Directory', 'Direktori', '2019-05-25 22:35:48'),
(8486, 'id', 'common', 'Donate', 'Sumbang', '2019-05-25 22:35:48'),
(8487, 'id', 'common', 'Edit', 'Edit', '2019-05-25 22:35:48'),
(8488, 'id', 'common', 'Entry cannot be blank', 'Entri tidak bisa kosong', '2019-05-25 22:35:48'),
(8489, 'id', 'common', 'entrynotvalid', 'Entri yang dimasukkan terlihat tidak valid', '2019-05-25 22:35:48'),
(8490, 'id', 'common', 'failed', 'Gagal', '2019-05-25 22:35:48'),
(8491, 'id', 'common', 'forum', 'Forum', '2019-05-25 22:35:48'),
(8492, 'id', 'common', 'Found', 'Ditemukan', '2019-05-25 22:35:48'),
(8493, 'id', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:35:48'),
(8494, 'id', 'common', 'help', 'Bantuan', '2019-05-25 22:35:48'),
(8495, 'id', 'common', 'hidenews', 'Sembunyikan Berita SEO Panel', '2019-05-25 22:35:48'),
(8496, 'id', 'common', 'Id', 'Id', '2019-05-25 22:35:48'),
(8497, 'id', 'common', 'Inactivate', 'Nonaktifkan', '2019-05-25 22:35:48'),
(8498, 'id', 'common', 'Inactive', 'Non aktif', '2019-05-25 22:35:48'),
(8499, 'id', 'common', 'Invalid characters', 'Karakter yang dimasukkan tidak valid', '2019-05-25 22:35:48'),
(8500, 'id', 'common', 'Invalid code entered', 'Kode yang dimasukkan tidak valid', '2019-05-25 22:35:48'),
(8501, 'id', 'common', 'Invalid email address entered', 'Alamat email yang dimasukkan tidak valid', '2019-05-25 22:35:48'),
(8502, 'id', 'common', 'Invalid value', 'Nilai tidak valid', '2019-05-25 22:35:48'),
(8503, 'id', 'common', 'Keyword', 'Kata kunci', '2019-05-25 22:35:48'),
(8504, 'id', 'common', 'Keywords', 'Kata Kunci', '2019-05-25 22:35:48'),
(8505, 'id', 'common', 'lang', 'Bahasa', '2019-05-25 22:35:48'),
(8506, 'id', 'common', 'My Account', 'Akun Saya', '2019-05-25 22:35:48'),
(8507, 'id', 'common', 'Name', 'Nama', '2019-05-25 22:35:48'),
(8508, 'id', 'common', 'No', 'Tidak', '2019-05-25 22:35:48'),
(8509, 'id', 'common', 'No Keywords Found', 'Tidak Ada Kata Kunci yang Ditemukan', '2019-05-25 22:35:48'),
(8510, 'id', 'common', 'No Records Found', 'Tidak Ada Arsip yang Ditemukan', '2019-05-25 22:35:48'),
(8511, 'id', 'common', 'noactivetools', 'Tidak Ada Kakas SEO Aktif yang Ditemukan', '2019-05-25 22:35:48'),
(8512, 'id', 'common', 'nowebsites', 'Tidak Ada Website yang Ditemukan', '2019-05-25 22:35:48'),
(8513, 'id', 'common', 'password632', 'Panjang password harus di antara 6 dan 12.', '2019-05-25 22:35:48'),
(8514, 'id', 'common', 'passwordnotmatch', 'Password tidak cocok', '2019-05-25 22:35:48'),
(8515, 'id', 'common', 'Period', 'Periode', '2019-05-25 22:35:48'),
(8516, 'id', 'common', 'Priority', 'Prioritas', '2019-05-25 22:35:48'),
(8517, 'id', 'common', 'Profile', 'Profil', '2019-05-25 22:35:48'),
(8518, 'id', 'common', 'Rank', 'Ranking', '2019-05-25 22:35:48'),
(8519, 'id', 'common', 'Reports', 'Laporan', '2019-05-25 22:35:48'),
(8520, 'id', 'common', 'Results', 'Hasil', '2019-05-25 22:35:48'),
(8521, 'id', 'common', 'Search Engine', 'Mesin Pencari', '2019-05-25 22:35:48'),
(8522, 'id', 'common', 'Select', 'Pilih', '2019-05-25 22:35:48'),
(8523, 'id', 'common', 'Seo Plugins', 'Plugin SEO', '2019-05-25 22:35:48'),
(8524, 'id', 'common', 'Seo Tools', 'Kakas SEO', '2019-05-25 22:35:48'),
(8525, 'id', 'common', 'Sign out', 'Keluar', '2019-05-25 22:35:48'),
(8526, 'id', 'common', 'Sign Up', 'Daftar', '2019-05-25 22:35:48'),
(8527, 'id', 'common', 'signin', 'Masuk', '2019-05-25 22:35:48'),
(8528, 'id', 'common', 'Status', 'Status', '2019-05-25 22:35:48'),
(8529, 'id', 'common', 'Support', 'Bantuan', '2019-05-25 22:35:48'),
(8530, 'id', 'common', 'Total', 'Total', '2019-05-25 22:35:48'),
(8531, 'id', 'common', 'Url', 'Url', '2019-05-25 22:35:48'),
(8532, 'id', 'common', 'User', 'Panel', '2019-05-25 22:35:48'),
(8533, 'id', 'common', 'User Panel', 'Panel Pengguna', '2019-05-25 22:35:48'),
(8534, 'id', 'common', 'Website', 'Situs', '2019-05-25 22:35:48'),
(8535, 'id', 'common', 'Yes', 'Ya', '2019-05-25 22:35:48'),
(8536, 'id', 'website', 'Edit Website', 'Edit Situs', '2012-03-05 05:04:52'),
(8537, 'id', 'website', 'plscrtwebsite', 'Silakan buat sebuah situs sebelum mulai menggunakan kakas SEO dan plugin SEO.', '2012-03-05 05:04:54'),
(8538, 'id', 'website', 'Website already exist', 'Situs sudah ada', '2012-03-05 05:04:54'),
(8539, 'id', 'website', 'yourwebalreday', 'website Anda jika Anda sudah membuatnya.', '2012-03-05 05:04:54'),
(8540, 'id', 'user', 'Edit User', 'Edit Pengguna', '2012-03-05 05:07:47'),
(8541, 'id', 'user', 'Saved My Profile Details', 'Detail Profilku Tersimpan', '2012-03-05 05:07:47'),
(8542, 'id', 'sitemap', 'Change frequency', 'Ganti frekuensi', '2012-03-05 05:13:46'),
(8543, 'id', 'sitemap', 'clickproceedsitemap', 'Klik <b>Lanjut</b> untuk membuat file sitemap', '2012-03-05 05:13:46'),
(8544, 'id', 'sitemap', 'Download sitemap file from', 'Unduh file sitemap dari', '2012-03-05 05:13:46'),
(8545, 'id', 'sitemap', 'Exclude Url', 'Keluarkan Url', '2012-03-05 05:13:46'),
(8546, 'id', 'sitemap', 'processtaketime', 'Proses ini akan memakan waktu sesuai jumlah link di situs Anda. Silakan tunggu untuk mendapatkan file sitemap', '2012-03-05 05:13:46'),
(8547, 'id', 'sitemap', 'Sitemap Type', 'Tipe Sitemap', '2012-03-05 05:13:46'),
(8548, 'id', 'siteauditor', 'Anchor', 'Anchor', '2012-03-05 05:37:32'),
(8549, 'id', 'siteauditor', 'anylinkcontainabovelinks', 'Link apapun yang mengandung link di atas akan dikeluarkan dari laporan', '2012-03-05 05:37:32'),
(8550, 'id', 'siteauditor', 'anylinkcontainexcludesitemap', 'Link apapun yang mengandung link di atas akan dikeluarkan dari sitemap', '2012-03-05 05:37:32'),
(8551, 'id', 'siteauditor', 'Check backlinks of pages', 'Cek backlink dari halaman', '2012-03-05 05:37:32'),
(8552, 'id', 'siteauditor', 'Check broken links in a page', 'Cek link yang rusak dalam sebuah halaman', '2012-03-05 05:37:32'),
(8553, 'id', 'siteauditor', 'Check google pagerank of pages', 'Cek Google Pagerank dari halaman', '2012-03-05 05:37:32'),
(8554, 'id', 'siteauditor', 'Check pages indexed or not', 'Cek apakah halaman terindeks', '2012-03-05 05:37:32'),
(8555, 'id', 'siteauditor', 'Check Score', 'Skor Pengecekan', '2012-03-05 05:37:32'),
(8556, 'id', 'siteauditor', 'checkborckenlinkwait', 'Mengecek link yang rusak akan meningkatkan waktu eksekusi proyek', '2012-03-05 05:37:32'),
(8557, 'id', 'siteauditor', 'Completed project execution', 'Eksekusi proyek selesai', '2012-03-05 05:37:32'),
(8558, 'id', 'siteauditor', 'Crawled', 'Crawled', '2012-03-05 05:37:32'),
(8559, 'id', 'siteauditor', 'Crawled Pages', 'Halaman Dicrawl', '2012-03-05 05:37:32'),
(8560, 'id', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'sudah dicrawl! Menunggu crawl halaman berikutnya untuk', '2012-03-05 05:37:32'),
(8561, 'id', 'siteauditor', 'Crawling Page', 'Sedang mengcrawl halaman', '2012-03-05 05:37:32'),
(8562, 'id', 'siteauditor', 'Duplicate Description', 'Deskripsi Duplikat', '2012-03-05 05:37:32'),
(8563, 'id', 'siteauditor', 'Duplicate Keywords', 'Kata Kunci Duplikat', '2012-03-05 05:37:32'),
(8564, 'id', 'siteauditor', 'Duplicate Title', 'Judul Duplikat', '2012-03-05 05:37:32'),
(8565, 'id', 'siteauditor', 'Exclude links', 'Keluarkan link', '2012-03-05 05:37:32'),
(8566, 'id', 'siteauditor', 'Execute with cron', 'Eksekusi dengan cron', '2012-03-05 05:37:32'),
(8567, 'id', 'siteauditor', 'External', 'Luar', '2012-03-05 05:37:32'),
(8568, 'id', 'siteauditor', 'External Links', 'Link Luar', '2012-03-05 05:37:32'),
(8569, 'id', 'siteauditor', 'Import Project Links', 'Impor Link Proyek', '2012-03-05 05:37:32'),
(8570, 'id', 'siteauditor', 'Insert links separated with comma', 'Masukkan link terpisah dengan koma', '2012-03-05 05:37:32'),
(8571, 'id', 'siteauditor', 'insertlinkssepcoma', 'Masukkan link terpisah dengan koma untuk mengeluarkan link tidak terbatas dari laporan', '2012-03-05 05:37:32'),
(8572, 'id', 'siteauditor', 'Link Reports', 'Laporan Link', '2012-03-05 05:37:32'),
(8573, 'id', 'siteauditor', 'Link Title', 'Judul Link', '2012-03-05 05:37:32'),
(8574, 'id', 'siteauditor', 'Maximum number of pages to be checked', 'Jumlah maksimal halaman yang akan dicek', '2012-03-05 05:37:32'),
(8575, 'id', 'siteauditor', 'Maximum Pages', 'Halaman maksimal', '2012-03-05 05:37:32'),
(8576, 'id', 'siteauditor', 'No active projects found', 'Tidak ada proyek aktif yang ditemukan', '2012-03-05 05:37:32'),
(8577, 'id', 'siteauditor', 'Nofollow', 'Nofollow', '2012-03-05 05:37:32'),
(8578, 'id', 'siteauditor', 'Number of pages is greater than', 'Jumlah halaman yang lebih besar dari', '2012-03-05 05:37:32'),
(8579, 'id', 'siteauditor', 'Number of pages should be greater than', 'Jumlah halaman yang seharusnya lebih besar dari', '2012-03-05 05:37:32'),
(8580, 'id', 'siteauditor', 'Page Details', 'Detail Halaman', '2012-03-05 05:37:32'),
(8581, 'id', 'siteauditor', 'Page Link', 'Link Halaman', '2012-03-05 05:37:32'),
(8582, 'id', 'siteauditor', 'Page Links', 'Link Halaman', '2012-03-05 05:37:32'),
(8583, 'id', 'siteauditor', 'Pages Found', 'Halaman yang Ditemukan', '2012-03-05 05:37:32'),
(8584, 'id', 'siteauditor', 'pressescapetostopexecution', 'Tekan tombol <b>escape</b> untuk menghentikan eksekusi skrip', '2012-03-05 05:37:32'),
(8585, 'id', 'siteauditor', 'Project Summary', 'Ringkasan Proyek', '2012-03-05 05:37:32'),
(8586, 'id', 'siteauditor', 'Project Url', 'Url Proyek', '2012-03-05 05:37:32'),
(8587, 'id', 'siteauditor', 'projectalreadyexist', 'Proyek untuk website ini sudah ada', '2012-03-05 05:37:32'),
(8588, 'id', 'siteauditor', 'Recheck Pages', 'Cek Ulang Halaman', '2012-03-05 05:37:32'),
(8589, 'id', 'siteauditor', 'Report Summary', 'Ringkasan Laporan', '2012-03-05 05:37:32'),
(8590, 'id', 'siteauditor', 'Run Project', 'Jalankan Proyek', '2012-03-05 05:37:32'),
(8591, 'id', 'siteauditor', 'should start with', 'seharusnya dimulai dengan', '2012-03-05 05:37:32'),
(8592, 'id', 'siteauditor', 'Site Auditor Settings', 'Pengaturan Auditor Situs', '2012-03-05 05:37:32'),
(8593, 'id', 'siteauditor', 'Store all links found in a page', 'Simpan semua link yang ditemukan dalam sebuah halaman', '2012-03-05 05:37:32'),
(8594, 'id', 'siteauditor', 'The page description length is not between', 'Panjang deskripsi halaman tidak berada di antara', '2012-03-05 05:37:32'),
(8595, 'id', 'siteauditor', 'The page is brocken', 'Halaman yang rusak', '2012-03-05 05:37:32'),
(8596, 'id', 'siteauditor', 'The page is having exellent number of backlinks in', 'Halaman yang memiliki jumlah backlink yang paling baik dalam', '2012-03-05 05:37:32'),
(8597, 'id', 'siteauditor', 'The page is having exellent pagerank', 'Halaman yang memiliki pagerank yang paling baik sekali', '2012-03-05 05:37:32'),
(8598, 'id', 'siteauditor', 'The page is having good number of backlinks in', 'Halaman yang memiliki jumlah backlink yang baik dalam', '2012-03-05 05:37:32'),
(8599, 'id', 'siteauditor', 'The page is having good pagerank', 'Halaman yang memiliki pagerank yang baik', '2012-03-05 05:37:32'),
(8600, 'id', 'siteauditor', 'The page is having poor pagerank', 'Halaman yang memiliki pagerank yang jelek', '2012-03-05 05:37:32'),
(8601, 'id', 'siteauditor', 'The page is having very good pagerank', 'Halaman yang memiliki pagerank yang sangat baik', '2012-03-05 05:37:32'),
(8602, 'id', 'siteauditor', 'The page is not having backlinks in', 'Halaman yang tidak memiliki backlink dalam', '2012-03-05 05:37:32'),
(8603, 'id', 'siteauditor', 'The page is not indexed in', 'Halaman yang tidak terindeks dalam', '2012-03-05 05:37:32'),
(8604, 'id', 'siteauditor', 'The page keywords length is not between', 'Panjang kata kunci halaman yang tidak di antara', '2012-03-05 05:37:32'),
(8605, 'id', 'siteauditor', 'The page title length is not between', 'Panjang judul halaman yang tidak di antara', '2012-03-05 05:37:32'),
(8606, 'id', 'siteauditor', 'The total number of links in page is greater than', 'Jumlah link dalam halaman yang lebih besar dari', '2012-03-05 05:37:32'),
(8607, 'id', 'siteauditor', 'to run project again if you stopped execution', 'untuk menjalankan proyek lagi jika Anda menghentikan eksekusi', '2012-03-05 05:37:32'),
(8608, 'id', 'siteauditor', 'to view the reports', 'untuk melihat laporan', '2012-03-05 05:37:32'),
(8609, 'id', 'siteauditor', 'Total Links', 'Total Link', '2012-03-05 05:37:32'),
(8610, 'id', 'siteauditor', 'totallinksgreaterallowed', 'Total link akan menjadi lebih besar dari maksimal link yang diperbolehkan dalam suatu proyek', '2012-03-05 05:37:32'),
(8611, 'id', 'keyword', 'Crawling keyword', 'Meng-crawl keyword', '2018-05-24 17:19:48'),
(8612, 'id', 'keyword', 'Detailed Keyword Position Reports', 'Laporan Detail Posisi Kata Kunci', '2018-05-24 17:19:48'),
(8613, 'id', 'keyword', 'Edit Keyword', 'Edit Kata Kunci', '2018-05-24 17:19:48'),
(8614, 'id', 'keyword', 'Graphical Keyword Position Reports', 'Laporan Grafis Posisi Kata Kunci', '2018-05-24 17:19:48'),
(8615, 'id', 'keyword', 'Import Keywords', 'Impor Kata Kunci', '2018-05-24 17:19:48'),
(8616, 'id', 'keyword', 'Insert keywords separated with comma', 'Masukkan kata kunci dipisahkan dengan koma', '2018-05-24 17:19:48'),
(8617, 'id', 'keyword', 'Keyword already exist', 'Kata kunci sudah ada', '2018-05-24 17:19:48'),
(8618, 'id', 'keyword', 'Keyword Position Report', 'Laporan Posisi Kata Kunci', '2018-05-24 17:19:48'),
(8619, 'id', 'keyword', 'New Keyword', 'Kata Kunci Baru', '2018-05-24 17:19:48'),
(8620, 'id', 'keyword', 'not assigned to required search engines', 'tidak ditetapkan ke mesin pencari yang dibutuhkan', '2018-05-24 17:19:48'),
(8621, 'id', 'keyword', 'pleaseselecttool', 'Silakan pilih sedikitnya satu Kakas SEO', '2018-05-24 17:19:48'),
(8622, 'id', 'keyword', 'Quick Keyword Position Checker', 'Pengecek Posisi Kata Kunci Cepat', '2018-05-24 17:19:48'),
(8623, 'id', 'keyword', 'results from ', 'hasil dari', '2018-05-24 17:19:48'),
(8624, 'id', 'keyword', 'Show All results', 'Tunjukkan Semua hasil', '2018-05-24 17:19:48'),
(8625, 'id', 'keyword', 'Successfully crawled keyword', 'Selesai meng-crawl kata kunci', '2018-05-24 17:19:48'),
(8626, 'id', 'keyword', 'to create new keywords', 'untuk membuat kata kunci baru', '2018-05-24 17:19:48'),
(8627, 'id', 'proxy', 'Edit Proxy', 'Edit Proxy', '2018-05-24 17:31:01'),
(8628, 'id', 'proxy', 'Proxy Password', 'Sandi Proxy', '2018-05-24 17:31:01'),
(8629, 'id', 'proxy', 'Proxy Username', 'Nama Pengguna Proxy', '2018-05-24 17:31:01'),
(8630, 'id', 'proxy', 'Proxyalreadyexist', 'Proxy sudah ada!', '2018-05-24 17:31:01'),
(8631, 'id', 'label', 'already exist', 'sudah ada', '2018-05-24 17:22:20'),
(8632, 'id', 'label', 'Authentication', 'Otentikasi', '2018-05-24 17:22:20'),
(8633, 'id', 'label', 'Author', 'Pengarang', '2018-05-24 17:22:20'),
(8634, 'id', 'label', 'Brocken', 'Rusak', '2018-05-24 17:22:20'),
(8635, 'id', 'label', 'Click Here', 'Klik Disini', '2018-05-24 17:22:20'),
(8636, 'id', 'label', 'Comments', 'Komentar', '2018-05-24 17:22:20'),
(8637, 'id', 'label', 'Count', 'Jumlah', '2018-05-24 17:22:20'),
(8638, 'id', 'label', 'Cron', 'Cron', '2018-05-24 17:22:20'),
(8639, 'id', 'label', 'Description', 'Deskripsi', '2018-05-24 17:22:20'),
(8640, 'id', 'label', 'Developers', 'Pengembang', '2018-05-24 17:22:20'),
(8641, 'id', 'label', 'Download', 'Unduh', '2018-05-24 17:22:20'),
(8642, 'id', 'label', 'Exclude', 'Keluarkan', '2018-05-24 17:22:20'),
(8643, 'id', 'label', 'Include', 'Masukkan', '2018-05-24 17:22:20'),
(8644, 'id', 'label', 'Installation', 'Instalasi', '2018-05-24 17:22:20'),
(8645, 'id', 'label', 'Keywords', 'Kata Kunci', '2018-05-24 17:22:20'),
(8646, 'id', 'label', 'noactiveplugins', 'Tidak Ada Plugin SEO yang Ditemukan!', '2018-05-24 17:22:20'),
(8647, 'id', 'label', 'Plugin', 'Plugin', '2018-05-24 17:22:20'),
(8648, 'id', 'label', 'Port', 'Port', '2018-05-24 17:22:20'),
(8649, 'id', 'label', 'Project', 'Proyek', '2018-05-24 17:22:20'),
(8650, 'id', 'label', 'Proxy', 'Proxy', '2018-05-24 17:22:20'),
(8651, 'id', 'label', 'Re-install', 'Install ulang', '2018-05-24 17:22:20'),
(8652, 'id', 'label', 'Report Type', 'Tipe Laporan', '2018-05-24 17:22:20'),
(8653, 'id', 'label', 'Score', 'Skor', '2018-05-24 17:22:20'),
(8654, 'id', 'label', 'Sponsors', 'Sponsor', '2018-05-24 17:22:20'),
(8655, 'id', 'label', 'Title', 'Judul', '2018-05-24 17:22:20'),
(8656, 'id', 'label', 'Total Results', 'Total Hasil', '2018-05-24 17:22:20'),
(8657, 'id', 'label', 'translation by', 'terjemahan oleh', '2018-05-24 17:22:20'),
(8658, 'id', 'label', 'Translators', 'Penerjemah', '2018-05-24 17:22:20'),
(8659, 'id', 'label', 'Updated', 'Diperbarui', '2018-05-24 17:22:20'),
(8660, 'id', 'label', 'Upgrade', 'Tingkatkan', '2018-05-24 17:22:20'),
(8661, 'id', 'label', 'Version', 'Versi', '2018-05-24 17:22:20'),
(8662, 'id', 'label', 'View Reports', 'Lihat Laporan', '2018-05-24 17:22:20'),
(8663, 'id', 'label', 'wantproceed', 'Apakah Anda benar-benar ingin melanjutkan?', '2018-05-24 17:22:20'),
(8664, 'id', 'settings', 'Check for Updates', 'Cek Versi Terbaru', '2012-03-06 08:36:34'),
(8665, 'id', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Donasikan $100</b> dan jadilah seorang <b>sponsor</b> dari Seo Panel.', '2012-03-06 08:36:34'),
(8666, 'id', 'settings', 'getallpluginfree', 'Dan dapatkan juga semua <b>plugin</b> yang kami kembangkan <b>Gratis!</b> ', '2012-03-06 08:36:34'),
(8667, 'id', 'settings', 'SA_CRAWL_DELAY_TIME', 'Waktu tunda Auditor situs antar halaman', '2012-03-06 08:36:34'),
(8668, 'id', 'settings', 'SA_MAX_NO_PAGES', 'Jumlah halaman maksimal tiap situs yang diperbolehkan', '2012-03-06 08:36:34'),
(8669, 'id', 'settings', 'seopanel_description', 'Sebuah panel kontrol gratis yang lengkap untuk mengatur optimasi mesin pencari pada situs Anda. Panel ini mengandung banyak kakas SEO untuk meningkatkan dan melacak performansi situs Anda. Panel ini adalah sebuah perangkat lunak open source dan Anda juga bisa mengembangkan plugin SEO Anda sendiri untuk seo panel.', '2012-03-06 08:36:34'),
(8670, 'id', 'settings', 'seopanel_title', 'Seo Panel: Panel kontrol SEO pertama di dunia untuk mengatur beberapa situs sekaligus', '2012-03-06 08:36:34');
INSERT INTO `texts` VALUES
(8671, 'id', 'settings', 'SP_API_KEY', 'Kunci API Seo Panel', '2012-03-06 08:36:34'),
(8672, 'id', 'settings', 'SP_CRAWL_DELAY', 'Waktu tunda antar crawl setiap spider (detik)', '2012-03-06 08:36:34'),
(8673, 'id', 'settings', 'SP_DEFAULTLANG', 'Bahasa Standar', '2012-03-06 08:36:34'),
(8674, 'id', 'settings', 'SP_DESCRIPTION', 'Deskripsi Seo Panel', '2012-03-06 08:36:34'),
(8675, 'id', 'settings', 'SP_ENABLE_PROXY', 'Aktifkan Proxy', '2012-03-06 08:36:34'),
(8676, 'id', 'settings', 'SP_HOTLINKING', 'Proteksi hotlink gambar diaktifkan', '2012-03-06 08:36:34'),
(8677, 'id', 'settings', 'SP_KEYWORDS', 'Kata Kunci Seo Panel', '2012-03-06 08:36:34'),
(8678, 'id', 'settings', 'SP_PAGINGNO', 'Jumlah entri tiap halaman', '2012-03-06 08:36:34'),
(8679, 'id', 'settings', 'SP_TITLE', 'Judul Seo Panel', '2012-03-06 08:36:34'),
(8680, 'id', 'settings', 'SP_USER_AGENT', 'Agen pengguna', '2012-03-06 08:36:34'),
(8681, 'id', 'settings', 'SP_USER_GEN_REPORT', 'Ijinkan pengguna untuk membuat laporan', '2012-03-06 08:36:34'),
(8682, 'id', 'settings', 'SP_USER_REGISTRATION', 'Antarmuka pendaftaran pengguna', '2012-03-06 08:36:34'),
(8683, 'id', 'settings', 'syssettingssaved', 'Pengaturan sistem sudah disimpan!', '2012-03-06 08:36:34'),
(8684, 'id', 'settings', 'versionnotuptodatemsg', 'Instalasi Seo Panel Anda tidak terbaru. <br>Silahkan unduh versi terbaru', '2012-03-06 08:36:34'),
(8685, 'id', 'settings', 'Your Seo Panel installation is up to date', 'Instalasi Seo Panel Anda terbaru', '2012-03-06 08:36:34'),
(8686, 'id', 'login', 'Confirm Password', 'Konfirmasi Sandi', '2018-05-24 17:26:12'),
(8687, 'id', 'login', 'Create my account', 'Buat akun saya', '2018-05-24 17:26:12'),
(8688, 'id', 'login', 'Create New Account', 'Buat Akun Baru', '2018-05-24 17:26:12'),
(8689, 'id', 'login', 'Email', 'Email', '2018-05-24 17:26:12'),
(8690, 'id', 'login', 'emailexist', 'Email sudah ada!', '2018-05-24 17:26:12'),
(8691, 'id', 'login', 'Enter the code as it is shown', 'Masukkan kode sebagaimana terlihat', '2018-05-24 17:26:12'),
(8692, 'id', 'login', 'First Name', 'Nama Depan', '2018-05-24 17:26:12'),
(8693, 'id', 'login', 'Last Name', 'Nama Belakang', '2018-05-24 17:26:12'),
(8694, 'id', 'login', 'Login', 'Login', '2018-05-24 17:26:12'),
(8695, 'id', 'login', 'Login incorrect', 'Login salah', '2018-05-24 17:26:12'),
(8696, 'id', 'login', 'newaccountsuccess', 'Akun baru sudah dibuat!', '2018-05-24 17:26:12'),
(8697, 'id', 'login', 'Password', 'Sandi', '2018-05-24 17:26:12'),
(8698, 'id', 'login', 'Password incorrect', 'Sandi salah', '2018-05-24 17:26:12'),
(8699, 'id', 'login', 'Register', 'Daftar', '2018-05-24 17:26:12'),
(8700, 'id', 'login', 'Sign in to your account', 'Masuk ke akun Anda', '2018-05-24 17:26:12'),
(8701, 'id', 'login', 'User inactive', 'Pengguna tidak aktif', '2018-05-24 17:26:12'),
(8702, 'id', 'login', 'Username', 'Nama pengguna', '2018-05-24 17:26:12'),
(8703, 'id', 'login', 'usernameexist', 'Nama pengguna sudah ada!', '2018-05-24 17:26:12'),
(8704, 'id', 'panel', 'About Us', 'Tentang Kami', '2018-05-24 17:29:48'),
(8705, 'id', 'panel', 'Add following command to your cron tab', 'Tambahkan perintah berikut ke tab cron Anda', '2018-05-24 17:29:48'),
(8706, 'id', 'panel', 'alsocheckfollowlink', 'Juga cek link berikut jika Anda membutuhkan detail lebih', '2018-05-24 17:29:48'),
(8707, 'id', 'panel', 'Check Directory', 'Cek Direktori', '2018-05-24 17:29:48'),
(8708, 'id', 'panel', 'Cron Command', 'Perintah Cron', '2018-05-24 17:29:48'),
(8709, 'id', 'panel', 'Directory Manager', 'Pengatur Direktori', '2018-05-24 17:29:48'),
(8710, 'id', 'panel', 'Edit My Profile', 'Edit Profil Saya', '2018-05-24 17:29:48'),
(8711, 'id', 'panel', 'Edit Project', 'Edit Proyek', '2018-05-24 17:29:48'),
(8712, 'id', 'panel', 'My Profile', 'Profil Saya', '2018-05-24 17:29:48'),
(8713, 'id', 'panel', 'New Project', 'Proyek Baru', '2018-05-24 17:29:48'),
(8714, 'id', 'panel', 'New Proxy', 'Proxy Baru', '2018-05-24 17:29:48'),
(8715, 'id', 'panel', 'New User', 'Pengguna Baru', '2018-05-24 17:29:48'),
(8716, 'id', 'panel', 'New Website', 'Situs Baru', '2018-05-24 17:29:48'),
(8717, 'id', 'panel', 'Proxy Manager', 'Pengatur Proxy', '2018-05-24 17:29:48'),
(8718, 'id', 'panel', 'Report Generation Manager', 'Pengatur Pembuatan Laporan', '2018-05-24 17:29:48'),
(8719, 'id', 'panel', 'Reports Manager', 'Pengatur Laporan', '2018-05-24 17:29:48'),
(8720, 'id', 'panel', 'Seo Plugins Manager', 'Pengatur Plugin Seo', '2018-05-24 17:29:48'),
(8721, 'id', 'panel', 'Seo Tools Manager', 'Pengatur Kakas Seo', '2018-05-24 17:29:48'),
(8722, 'id', 'panel', 'System Settings', 'Pengaturan Sistem', '2018-05-24 17:29:48'),
(8723, 'id', 'panel', 'User Manager', 'Pengatur Pengguna', '2018-05-24 17:29:48'),
(8724, 'id', 'panel', 'Website Manager', 'Pengatur Situs', '2018-05-24 17:29:48'),
(8725, 'id', 'plugin', 'Download Seo Panel Plugins', 'Unduh Plugin Seo Panel', '2012-03-06 09:03:56'),
(8726, 'id', 'plugin', 'Edit Seo Plugin', 'Edit Plugin Seo', '2012-03-06 09:03:56'),
(8727, 'id', 'plugin', 'Plugin Name', 'Nama Plugin', '2012-03-06 09:03:56'),
(8728, 'id', 'plugin', 'Seo Plugin Details', 'Detail Plugin Seo', '2012-03-06 09:03:56'),
(8729, 'id', 'rank', 'enterurlproceed', 'Masukkan <b>Satu URL per baris</b>. Klik pada <b>Lanjut</b> untuk mengecek ranking Google dan Alexa.', '2012-03-06 09:05:32'),
(8730, 'id', 'rank', 'Google and Alexa Rank Reports', 'Laporan Ranking Google dan Alexa', '2012-03-06 09:05:32'),
(8731, 'id', 'rank', 'Saved rank results of', 'Hasil ranking yang disimpan dari', '2012-03-06 09:05:32'),
(8732, 'id', 'saturation', 'clickproceedsaturation', 'Masukkan <b>Satu URL per baris</b>. Klik pada <b>Lanjut</b> untuk mengecek Hasil Kejenuhan Mesin Pencari.', '2012-03-06 09:21:25'),
(8733, 'id', 'saturation', 'GenerateSaturationReports', 'Buat Laporan Kejenuhan Mesin Pencari', '2012-03-06 09:21:25'),
(8734, 'id', 'saturation', 'Quick Search Engine Saturation Checker', 'Pengecek Kejenuhan Mesin Pencari Cepat', '2012-03-06 09:21:25'),
(8735, 'id', 'saturation', 'Saved Search Engine Saturation results of', 'Hasil Kejenuhan Mesin Pencari dari', '2012-03-06 09:21:25'),
(8736, 'id', 'saturation', 'Search Engine Saturation Reports', 'Laporan Kejenuhan Mesin Pencari', '2012-03-06 09:21:25'),
(8737, 'id', 'seotools', 'Auditor Projects', 'Proyek Auditor', '2012-03-06 09:19:40'),
(8738, 'id', 'seotools', 'Auditor Reports', 'Laporan Auditor', '2012-03-06 09:19:40'),
(8739, 'id', 'seotools', 'Auditor Settings', 'Pengaturan Auditor', '2012-03-06 09:19:40'),
(8740, 'id', 'seotools', 'Automatic Submission', 'Pengiriman Otomatis', '2012-03-06 09:19:40'),
(8741, 'id', 'seotools', 'backlink-checker', 'Pengecek Backlink', '2012-03-06 09:19:40'),
(8742, 'id', 'seotools', 'Backlinks Reports', 'Laporan Backlink', '2012-03-06 09:19:40'),
(8743, 'id', 'seotools', 'Check Submission Status', 'Cek Status Pengiriman', '2012-03-06 09:19:40'),
(8744, 'id', 'seotools', 'clickgeneratereports', 'Klik pada <b>Lanjut</b> untuk membuat laporan ', '2012-03-06 09:19:40'),
(8745, 'id', 'seotools', 'Detailed Position Reports', 'Laporan Detail Posisi', '2012-03-06 09:19:40'),
(8746, 'id', 'seotools', 'directory-submission', 'Pengiriman Direktori', '2012-03-06 09:19:40'),
(8747, 'id', 'seotools', 'Featured Submission', 'Pengiriman Istimewa', '2012-03-06 09:19:40'),
(8748, 'id', 'seotools', 'Generate Backlinks Reports', 'Buat Laporan Backlink', '2012-03-06 09:19:40'),
(8749, 'id', 'seotools', 'Generate Keyword Reports', 'Buat Laporan Kata Kunci', '2012-03-06 09:19:40'),
(8750, 'id', 'seotools', 'Generate Rank Reports', 'Buat Laporan Ranking', '2012-03-06 09:19:40'),
(8751, 'id', 'seotools', 'Generate Saturation Reports', 'Buat Laporan Kejenuhan', '2012-03-06 09:19:40'),
(8752, 'id', 'seotools', 'Google Sitemap Generator', 'Pembuat Peta Situs Google', '2012-03-06 09:19:40'),
(8753, 'id', 'seotools', 'Graphical Position Reports', 'Laporan Grafis Posisi', '2012-03-06 09:19:40'),
(8754, 'id', 'seotools', 'Import Project Links', 'Impor Link Proyek', '2012-03-06 09:19:40'),
(8755, 'id', 'seotools', 'Keyword Position Summary', 'Ringkasan Posisi Kata Kunci', '2012-03-06 09:19:40'),
(8756, 'id', 'seotools', 'keyword-position-checker', 'Pengecek Posisi Kata Kunci', '2012-03-06 09:19:40'),
(8757, 'id', 'seotools', 'Keywords Manager', 'Pengatur Kata Kunci', '2012-03-06 09:19:40'),
(8758, 'id', 'seotools', 'Quick Backlinks Checker', 'Pengecek Backlink Cepat', '2012-03-06 09:19:40'),
(8759, 'id', 'seotools', 'Quick Position Checker', 'Pengecek Posisi Cepat', '2012-03-06 09:19:40'),
(8760, 'id', 'seotools', 'Quick Rank Checker', 'Pengecek Ranking Cepat', '2012-03-06 09:19:40'),
(8761, 'id', 'seotools', 'Quick Saturation Checker', 'Pengecek Kejenuhan Cepat', '2012-03-06 09:19:40'),
(8762, 'id', 'seotools', 'Rank Reports', 'Laporan Ranking', '2012-03-06 09:19:40'),
(8763, 'id', 'seotools', 'rank-checker', 'Pengecek Ranking', '2012-03-06 09:19:40'),
(8764, 'id', 'seotools', 'Saturation Reports', 'Laporan Kejenuhan', '2012-03-06 09:19:40'),
(8765, 'id', 'seotools', 'saturation-checker', 'Kejenuhan Mesin Pencari', '2012-03-06 09:19:40'),
(8766, 'id', 'seotools', 'site-auditor', 'Auditor Situs', '2012-03-06 09:19:40'),
(8767, 'id', 'seotools', 'sitemap-generator', 'Pembuat Peta Situs', '2012-03-06 09:19:40'),
(8768, 'id', 'seotools', 'Skipped Directories', 'Direktori yang Dilewati', '2012-03-06 09:19:40'),
(8769, 'id', 'seotools', 'Submission Reports', 'Laporan Pengiriman', '2012-03-06 09:19:40'),
(8770, 'id', 'seotools', 'User Access', 'Akses Pengguna', '2012-03-06 09:19:40'),
(8771, 'id', 'directory', 'Add back to directory list', 'Tambahkan kembali ke daftar direktori', '2018-05-24 17:18:24'),
(8772, 'id', 'directory', 'Approved', 'Disetujui', '2018-05-24 17:18:24'),
(8773, 'id', 'directory', 'Captcha', 'Captcha', '2018-05-24 17:18:24'),
(8774, 'id', 'directory', 'categorynote', 'Kategori, pisahkan dengan koma sesuai prioritas. Mulai dengan kategori berprioritas tertinggi.', '2018-05-24 17:18:24'),
(8775, 'id', 'directory', 'Check Directory Status', 'Cek Status Direktori', '2018-05-24 17:18:24'),
(8776, 'id', 'directory', 'Check Directory Submission Status', 'Cek Status Pengiriman Direktori', '2018-05-24 17:18:24'),
(8777, 'id', 'directory', 'clicktoproceeddirsts', 'Klik pada <b>Lanjut</b> untuk Cek Status Direktori. ', '2018-05-24 17:18:24'),
(8778, 'id', 'directory', 'Confirmation', 'Konfirmasi', '2018-05-24 17:18:24'),
(8779, 'id', 'directory', 'desnote', 'Beberapa direktori mensyaratkan minimal 150 karakter untuk deskripsi. ', '2018-05-24 17:18:24'),
(8780, 'id', 'directory', 'Directories with out captcha', 'Direktori tanpa captcha ', '2018-05-24 17:18:24'),
(8781, 'id', 'directory', 'Directory Submission Reports', 'Laporan Pengiriman Direktori ', '2018-05-24 17:18:24'),
(8782, 'id', 'directory', 'Enter the code shown', 'Masukkan kode yang tampil', '2018-05-24 17:18:24'),
(8783, 'id', 'directory', 'nocatnote', 'Kategori pengiriman tidak ada di halaman pengiriman. Silakan klik pada <b>Muat ulang</b> or <b>Lewati</b> ', '2018-05-24 17:18:24'),
(8784, 'id', 'directory', 'nodirnote', 'Tidak ada direktori <b>Aktif</b> yang Ditemukan ', '2018-05-24 17:18:24'),
(8785, 'id', 'directory', 'nosuccessnote', 'Tidak mendapatkan pesan sukses, silakan cek email Anda untuk mencari pesan konfirmasi ', '2018-05-24 17:18:24'),
(8786, 'id', 'directory', 'optionalnote', 'Judul dan deskripsi pilihan untuk dikirimkan ke direktori agar hasil pengiriman lebih baik.', '2018-05-24 17:18:24'),
(8787, 'id', 'directory', 'Owner Email', 'Email Pemilik', '2018-05-24 17:18:24'),
(8788, 'id', 'directory', 'Owner Name', 'Nama Pemilik', '2018-05-24 17:18:24'),
(8789, 'id', 'directory', 'Pending', 'Tertunda', '2018-05-24 17:18:24'),
(8790, 'id', 'directory', 'Please select a website to proceed', 'Silakan pilih satu situs untuk melanjutkan', '2018-05-24 17:18:24'),
(8791, 'id', 'directory', 'Reciprocal Link', 'Link Timbal Balik', '2018-05-24 17:18:24'),
(8792, 'id', 'directory', 'selectwebsiteproceed', 'Pilih sebuah <b>Situs</b> untuk <b>Lanjut</b> mengecek pengiriman direktori. <br>Cek <b>Direktori tanpa catpcha</b> untuk mengirim ke direktori tanpa captcha.', '2018-05-24 17:18:24'),
(8793, 'id', 'directory', 'selectwebsiteschecksub', 'Pilih sebuah <b>Situs</b> untuk <b>Lanjut</b> mengecek pengiriman direktori. ', '2018-05-24 17:18:24'),
(8794, 'id', 'directory', 'Semi Automatic Directory Submission Tool', 'Kakas Pengiriman Direktori Semi Otomatis', '2018-05-24 17:18:24'),
(8795, 'id', 'directory', 'spamemailnote', 'Beberapa direktori mungkin mengirimkan spam, kami tidak merekomendasikan penggunaan email utama Anda.', '2018-05-24 17:18:24'),
(8796, 'id', 'directory', 'Submission Details', 'Detail Pengiriman', '2018-05-24 17:18:24'),
(8797, 'id', 'directory', 'Submit Description', 'Kirim Deskripsi', '2018-05-24 17:18:24'),
(8798, 'id', 'directory', 'Submit Keywords', 'Kirim Kata Kunci', '2018-05-24 17:18:24'),
(8799, 'id', 'directory', 'Submit Title', 'Kirim Judul', '2018-05-24 17:18:24'),
(8800, 'id', 'directory', 'Website Category', 'Kategori Situs', '2018-05-24 17:18:24'),
(8801, 'id', 'directory', 'Website Url', 'Url Situs', '2018-05-24 17:18:24'),
(8802, 'fa', 'settings', 'getallpluginfree', 'تمام <b>افزونه ها</b> را بصورت <b>رايگان </b>دريافت نماييد', '2012-05-17 00:03:34'),
(8803, 'fa', 'plugin', 'Download Seo Panel Plugins', 'دریافت افزونه های سئوپنل', '2012-03-08 14:22:34'),
(8804, 'id', 'home', 'Account Summary', 'Ringkasan Akun', '2012-03-18 06:18:39'),
(8805, 'id', 'home', 'Backlinks', 'Backlink', '2012-03-18 06:18:39'),
(8806, 'id', 'home', 'Directory Submission', 'Pengiriman Direktori', '2012-03-18 06:18:39'),
(38777, 'sq', 'review', 'Average Rating', 'Vlerësimi mesatar', '2026-01-19 22:58:50'),
(8810, 'id', 'home', 'Indexed', 'Terindeks', '2012-03-18 06:18:39'),
(8811, 'id', 'home', 'Pages Indexed', 'Halaman Terindeks', '2012-03-18 06:18:39'),
(8812, 'id', 'home', 'Ranks', 'Ranking', '2012-03-18 06:18:39'),
(8813, 'id', 'home', 'SiteNameUrl', 'Nama Situs/Url', '2012-03-18 06:18:39'),
(8814, 'id', 'home', 'Website Statistics', 'Statistik Situs', '2012-03-18 06:18:39'),
(8815, 'pt-br', 'backlink', 'clickproceedbacklink', 'Insira as URL''s <b>Uma por linha</b>. Clique em <b>Avançar</b> para checar os Backlinks.', '2014-02-12 17:22:44'),
(8816, 'pt-br', 'backlink', 'Saved backlink results of', 'Resultados gravados de backlinks de', '2014-02-12 17:22:44'),
(8817, 'pt-br', 'button', 'Cancel', 'Cancelar', '2014-02-12 17:23:01'),
(8818, 'pt-br', 'button', 'Check Status', 'Checar Status', '2014-02-12 17:23:01'),
(8819, 'pt-br', 'button', 'Proceed', 'Avançar', '2014-02-12 17:23:01'),
(8820, 'pt-br', 'button', 'Reload', 'Recarregar', '2014-02-12 17:23:01'),
(8821, 'pt-br', 'button', 'Show Details', 'Ver Detalhes', '2014-02-12 17:23:01'),
(8822, 'pt-br', 'button', 'Show Records', 'Ver Histórico', '2014-02-12 17:23:01'),
(8823, 'pt-br', 'button', 'Skip', 'Pular', '2014-02-12 17:23:01'),
(8824, 'pt-br', 'button', 'Submit', 'Enviar', '2014-02-12 17:23:01'),
(8825, 'pt-br', 'common', 'Action', 'Ação', '2019-07-30 00:26:27'),
(8826, 'pt-br', 'common', 'Activate', 'Ativar', '2019-07-30 00:26:27'),
(8827, 'pt-br', 'common', 'Active', 'Ativo', '2019-07-30 00:26:27'),
(8828, 'pt-br', 'common', 'Admin Panel', 'Painel Administrativo', '2019-07-30 00:26:27'),
(8829, 'pt-br', 'common', 'Alexa Rank', 'Rank do Alexa', '2019-07-30 00:26:27'),
(8830, 'pt-br', 'common', 'All', 'Todos', '2019-07-30 00:26:27'),
(8831, 'pt-br', 'common', 'Category', 'Categoria', '2019-07-30 00:26:27'),
(8832, 'pt-br', 'common', 'contact', 'Contato', '2019-07-30 00:26:27'),
(8833, 'pt-br', 'common', 'copyright', 'Copyright © [year] www.seopanel.in Todos os direitos reservados', '2019-07-30 00:26:27'),
(8834, 'pt-br', 'common', 'Country', 'País', '2019-07-30 00:26:27'),
(8835, 'pt-br', 'common', 'Crawl Meta Data', 'Rastrear Meta Dados', '2019-07-30 00:26:27'),
(8836, 'pt-br', 'common', 'Date', 'Data', '2019-07-30 00:26:27'),
(8837, 'pt-br', 'common', 'Delete', 'Deletar', '2019-07-30 00:26:27'),
(8838, 'pt-br', 'common', 'Details', 'Detalhes', '2019-07-30 00:26:27'),
(8839, 'pt-br', 'common', 'Directory', 'Diretório', '2019-07-30 00:26:27'),
(8840, 'pt-br', 'common', 'Donate', 'Doação', '2019-07-30 00:26:27'),
(8841, 'pt-br', 'common', 'Edit', 'Editar', '2019-07-30 00:26:27'),
(8842, 'pt-br', 'common', 'Entry cannot be blank', 'Campo não pode ficar vazio', '2019-07-30 00:26:27'),
(8843, 'pt-br', 'common', 'entrynotvalid', 'O formato inserido não parece válido', '2019-07-30 00:26:27'),
(8844, 'pt-br', 'common', 'failed', 'falha', '2019-07-30 00:26:27'),
(8845, 'pt-br', 'common', 'forum', 'Fórum', '2019-07-30 00:26:27'),
(8846, 'pt-br', 'common', 'Found', 'Encontrado', '2019-07-30 00:26:27'),
(8847, 'pt-br', 'common', 'Google Pagerank', 'Pagerank do Google', '2019-07-30 00:26:27'),
(8848, 'pt-br', 'common', 'help', 'Ajuda', '2019-07-30 00:26:27'),
(8849, 'pt-br', 'common', 'hidenews', 'Esconder Notícias do SEO Panel', '2019-07-30 00:26:27'),
(8850, 'pt-br', 'common', 'Id', 'Id', '2019-07-30 00:26:27'),
(8851, 'pt-br', 'common', 'Inactivate', 'Desativar', '2019-07-30 00:26:27'),
(8852, 'pt-br', 'common', 'Inactive', 'Inativo', '2019-07-30 00:26:27'),
(8853, 'pt-br', 'common', 'Invalid characters', 'Caracteres inválidos', '2019-07-30 00:26:27'),
(8854, 'pt-br', 'common', 'Invalid code entered', 'Código inserido inválido', '2019-07-30 00:26:27'),
(8855, 'pt-br', 'common', 'Invalid email address entered', 'E-mail inserido inválido', '2019-07-30 00:26:27'),
(8856, 'pt-br', 'common', 'Invalid value', 'Valor inválido', '2019-07-30 00:26:27'),
(8857, 'pt-br', 'common', 'Keyword', 'Palavra-chave', '2019-07-30 00:26:27'),
(8858, 'pt-br', 'common', 'Keywords', 'Palavras-chave', '2019-07-30 00:26:27'),
(8859, 'pt-br', 'common', 'lang', 'Idioma', '2019-07-30 00:26:27'),
(8860, 'pt-br', 'common', 'My Account', 'Minha Conta', '2019-07-30 00:26:27'),
(8861, 'pt-br', 'common', 'Name', 'Nome', '2019-07-30 00:26:27'),
(8862, 'pt-br', 'common', 'No', 'Não', '2019-07-30 00:26:27'),
(8863, 'pt-br', 'common', 'No Keywords Found', 'Nenhuma palavra-chave encontrada', '2019-07-30 00:26:27'),
(8864, 'pt-br', 'common', 'No Records Found', 'Nenhuma informação encontrada', '2019-07-30 00:26:27'),
(8865, 'pt-br', 'common', 'noactivetools', 'Nenhuma ferramenta de SEO está ativa', '2019-07-30 00:26:27'),
(8866, 'pt-br', 'common', 'nowebsites', 'Nenhum site encontrado', '2019-07-30 00:26:27'),
(8867, 'pt-br', 'common', 'password632', 'A sua senha deve ter entre 6 e 32 caracteres', '2019-07-30 00:26:27'),
(8868, 'pt-br', 'common', 'passwordnotmatch', 'As senhas não correspondem', '2019-07-30 00:26:27'),
(8869, 'pt-br', 'common', 'Period', 'Período', '2019-07-30 00:26:27'),
(8870, 'pt-br', 'common', 'Priority', 'Prioridade', '2019-07-30 00:26:27'),
(8871, 'pt-br', 'common', 'Profile', 'Perfil', '2019-07-30 00:26:27'),
(8872, 'pt-br', 'common', 'Rank', 'Rank', '2019-07-30 00:26:27'),
(8873, 'pt-br', 'common', 'Reports', 'Relatórios', '2019-07-30 00:26:27'),
(8874, 'pt-br', 'common', 'Results', 'Resultados', '2019-07-30 00:26:27'),
(8875, 'pt-br', 'common', 'Search Engine', 'Buscador', '2019-07-30 00:26:27'),
(8876, 'pt-br', 'common', 'Select', 'Selecionar', '2019-07-30 00:26:27'),
(8877, 'pt-br', 'common', 'Seo Plugins', 'Plugins de SEO', '2019-07-30 00:26:27'),
(8878, 'pt-br', 'common', 'Seo Tools', 'Ferramentas de SEO', '2019-07-30 00:26:27'),
(8879, 'pt-br', 'common', 'Sign out', 'Sair', '2019-07-30 00:26:27'),
(8880, 'pt-br', 'common', 'Sign Up', 'Cadastrar', '2019-07-30 00:26:27'),
(8881, 'pt-br', 'common', 'signin', 'Entrar', '2019-07-30 00:26:27'),
(8882, 'pt-br', 'common', 'Status', 'Status', '2019-07-30 00:26:27'),
(8883, 'pt-br', 'common', 'Support', 'Suporte', '2019-07-30 00:26:27'),
(8884, 'pt-br', 'common', 'Total', 'Total', '2019-07-30 00:26:27'),
(8885, 'pt-br', 'common', 'Url', 'URL', '2019-07-30 00:26:27'),
(8886, 'pt-br', 'common', 'User', 'Usuário', '2019-07-30 00:26:27'),
(8887, 'pt-br', 'common', 'User Panel', 'Painel do Usuário', '2019-07-30 00:26:27'),
(8888, 'pt-br', 'common', 'Website', 'Site', '2019-07-30 00:26:27'),
(8889, 'pt-br', 'common', 'Yes', 'Sim', '2019-07-30 00:26:27'),
(8890, 'pt-br', 'directory', 'Add back to directory list', 'Adicionar novamente à lista de diretórios', '2014-02-12 17:25:20'),
(8891, 'pt-br', 'directory', 'Approved', 'Aprovado', '2014-02-12 17:25:20'),
(8892, 'pt-br', 'directory', 'Captcha', 'Captcha', '2014-02-12 17:25:20'),
(8893, 'pt-br', 'directory', 'categorynote', 'Categorias, separe-as com uma vírgula de acordo com a prioridade. Inicie com a categoria de maior prioridade.', '2014-02-12 17:25:20'),
(8894, 'pt-br', 'directory', 'Check Directory Status', 'Checar Status do Diretório', '2014-02-12 17:25:20'),
(8895, 'pt-br', 'directory', 'Check Directory Submission Status', 'Checar Status do Diretório de Envio', '2014-02-12 17:25:20'),
(8896, 'pt-br', 'directory', 'clicktoproceeddirsts', 'Clique em <b>Avançar</b> para Checar o Status do Diretório.', '2014-02-12 17:25:20'),
(8897, 'pt-br', 'directory', 'Confirmation', 'Confirmação', '2014-02-12 17:25:20'),
(8898, 'pt-br', 'directory', 'desnote', 'Alguns diretórios requerem um mínimo de 150 caracteres para o campo de descrição.', '2014-02-12 17:25:20'),
(8899, 'pt-br', 'directory', 'Directories with out captcha', 'Diretórios <b>sem</b> captcha', '2014-02-12 17:25:20'),
(8900, 'pt-br', 'directory', 'Directory Submission Reports', 'Relatórios de Envio para Diretórios', '2014-02-12 17:25:20'),
(8901, 'pt-br', 'directory', 'Enter the code shown', 'Insira o código demonstrado', '2014-02-12 17:25:20'),
(8902, 'pt-br', 'directory', 'nocatnote', 'A categoria de envio não foi encontrada na página. Por favor, clique em <b>Recarregar</b> ou <b>Pular</b>', '2014-02-12 17:25:20'),
(8903, 'pt-br', 'directory', 'nodirnote', 'Nenhum diretório <b>ativo</b> encontrado', '2014-02-12 17:25:20'),
(8904, 'pt-br', 'directory', 'nosuccessnote', 'Nenhuma mensagem de sucesso recebida. Por favor, confira o seu e-mail para localizar a mensagem de confirmação.', '2014-02-12 17:25:20'),
(8905, 'pt-br', 'directory', 'optionalnote', 'Títulos e descrições opcionais para enviar de forma aleatória para os diretórios. Melhores resultados podem ser esperados.', '2014-02-12 17:25:20'),
(8906, 'pt-br', 'directory', 'Owner Email', 'E-mail do Proprietário', '2014-02-12 17:25:20'),
(8907, 'pt-br', 'directory', 'Owner Name', 'Nome do Proprietário', '2014-02-12 17:25:20'),
(8908, 'pt-br', 'directory', 'Pending', 'Pendente', '2014-02-12 17:25:20'),
(8909, 'pt-br', 'directory', 'Please select a website to proceed', 'Por favor selecione um site para avançar.', '2014-02-12 17:25:20'),
(8910, 'pt-br', 'directory', 'Reciprocal Link', 'Link de Retorno (recíproco)', '2014-02-12 17:25:20'),
(8911, 'pt-br', 'directory', 'selectwebsiteproceed', 'Selecione um <b>Site</b> para <b>avançar</b> no envio para os diretórios. <br>Selecione <b>Diretórios sem captcha</b> para enviar apenas para diretórios que não requerem confirmação visual.', '2014-02-12 17:25:20'),
(8912, 'pt-br', 'directory', 'selectwebsiteschecksub', 'Selecione um <b>Site</b> para <b>Avançar</b> na checagem de envio para diretórios.', '2014-02-12 17:25:20'),
(8913, 'pt-br', 'directory', 'Semi Automatic Directory Submission Tool', 'Ferramenta de Envio para Diretórios Semi-Automática', '2014-02-12 17:25:20'),
(8914, 'pt-br', 'directory', 'spamemailnote', 'Alguns diretórios podem enviar spam, por isso não recomendamos utilizar o seu e-mail principal.', '2014-02-12 17:25:20'),
(8915, 'pt-br', 'directory', 'Submission Details', 'Detalhes do Envio', '2014-02-12 17:25:20'),
(8916, 'pt-br', 'directory', 'Submit Description', 'Descrição do Envio', '2014-02-12 17:25:20'),
(8917, 'pt-br', 'directory', 'Submit Keywords', 'Palavras-chave do envio', '2014-02-12 17:25:20'),
(8918, 'pt-br', 'directory', 'Submit Title', 'Título do envio', '2014-02-12 17:25:20'),
(8919, 'pt-br', 'directory', 'Website Category', 'Categoria do site', '2014-02-12 17:25:20'),
(8920, 'pt-br', 'directory', 'Website Url', 'URL do site', '2014-02-12 17:25:20'),
(8921, 'pt-br', 'plugin', 'Download Seo Panel Plugins', 'Faça o Download de Plugins do SEO Panel', '2012-04-17 17:03:55'),
(8922, 'pt-br', 'plugin', 'Edit Seo Plugin', 'Editar Plugins de SEO', '2012-04-17 17:03:55'),
(8923, 'pt-br', 'plugin', 'Plugin Name', 'Nome do Plugin', '2012-04-17 17:03:55'),
(8924, 'pt-br', 'plugin', 'Seo Plugin Details', 'Detalhes do Plugin de SEO', '2012-04-17 17:03:55'),
(8925, 'pt-br', 'proxy', 'Edit Proxy', 'Editar o Proxy', '2016-12-09 16:48:39'),
(8926, 'pt-br', 'proxy', 'Proxy Password', 'Senha do Proxy', '2016-12-09 16:48:39'),
(8927, 'pt-br', 'proxy', 'Proxy Username', 'Usuário do Proxy', '2016-12-09 16:48:39'),
(8928, 'pt-br', 'proxy', 'Proxyalreadyexist', 'Este Proxy já existe!', '2016-12-09 16:48:39'),
(8929, 'pt-br', 'rank', 'enterurlproceed', 'Insira as URL\\''s <b>Uma por linha</b>. Clique em <b>Avançar</b> para checar o rank no Google e Alexa.', '2012-04-17 17:05:16'),
(8930, 'pt-br', 'rank', 'Google and Alexa Rank Reports', 'Relatórios do Google e Alexa', '2012-04-17 17:05:16'),
(8931, 'pt-br', 'rank', 'Saved rank results of', 'Relatórios gravados para', '2012-04-17 17:05:16'),
(8932, 'pt-br', 'website', 'Edit Website', 'Editar Site', '2019-03-29 21:28:26'),
(8933, 'pt-br', 'website', 'plscrtwebsite', 'Por favor crie um site antes de iniciar a usar as ferramentas de SEO ou plugins de SEO.', '2019-03-29 21:28:26'),
(8934, 'pt-br', 'website', 'Website already exist', 'Este site já existe', '2019-03-29 21:28:26'),
(8935, 'pt-br', 'website', 'yourwebalreday', 'seu site se você ainda não adicionou um.', '2019-03-29 21:28:26'),
(8936, 'pt-br', 'user', 'Edit User', 'Editar Usuário', '2017-07-13 01:05:47'),
(8937, 'pt-br', 'user', 'Saved My Profile Details', 'Detalhes do Perfil Salvos', '2017-07-13 01:05:47'),
(8938, 'pt-br', 'sitemap', 'Change frequency', 'Alterar a frequência', '2012-04-17 17:07:47'),
(8939, 'pt-br', 'sitemap', 'clickproceedsitemap', 'Clique em <b>Avançar</b> para criar o arquivo do sitemap', '2012-04-17 17:07:47'),
(8940, 'pt-br', 'sitemap', 'Download sitemap file from', 'Faça o download do sitemap de', '2012-04-17 17:07:47'),
(8941, 'pt-br', 'sitemap', 'Exclude Url', 'Excluir URL', '2012-04-17 17:07:47'),
(8942, 'pt-br', 'sitemap', 'processtaketime', 'Este processo pode demorar de acordo com o número de links que você possui em seu site. Por favor aguarde para obter o seu sitemap', '2012-04-17 17:07:47'),
(8943, 'pt-br', 'sitemap', 'Sitemap Type', 'Tipo do Sitemap', '2012-04-17 17:07:47'),
(8944, 'pt-br', 'login', 'Confirm Password', 'Confirmar Senha', '2016-01-04 16:42:58'),
(8945, 'pt-br', 'login', 'Create my account', 'Criar minha conta', '2016-01-04 16:42:58'),
(8946, 'pt-br', 'login', 'Create New Account', 'Criar Nova Conta', '2016-01-04 16:42:58'),
(8947, 'pt-br', 'login', 'Email', 'E-mail', '2016-01-04 16:42:58'),
(8948, 'pt-br', 'login', 'emailexist', 'E-mail já existe!', '2016-01-04 16:42:58'),
(8949, 'pt-br', 'login', 'Enter the code as it is shown', 'Entre o código mostrado a seguir', '2016-01-04 16:42:58'),
(8950, 'pt-br', 'login', 'First Name', 'Nome', '2016-01-04 16:42:58'),
(8951, 'pt-br', 'login', 'Last Name', 'Sobrenome', '2016-01-04 16:42:58'),
(8952, 'pt-br', 'login', 'Login', 'Usuário', '2016-01-04 16:42:58'),
(8953, 'pt-br', 'login', 'Login incorrect', 'Usuário incorreto', '2016-01-04 16:42:58'),
(8954, 'pt-br', 'login', 'newaccountsuccess', 'Nova conta criada com sucesso!', '2016-01-04 16:42:58'),
(8955, 'pt-br', 'login', 'Password', 'Senha', '2016-01-04 16:42:58'),
(8956, 'pt-br', 'login', 'Password incorrect', 'Senha incorreta', '2016-01-04 16:42:58'),
(8957, 'pt-br', 'login', 'Register', 'Registrar', '2016-01-04 16:42:58'),
(8958, 'pt-br', 'login', 'Sign in to your account', 'Acesse a sua conta', '2016-01-04 16:42:58'),
(8959, 'pt-br', 'login', 'User inactive', 'Usuário Inativo', '2016-01-04 16:42:58'),
(8960, 'pt-br', 'login', 'Username', 'Nome de Usuário', '2016-01-04 16:42:58'),
(8961, 'pt-br', 'login', 'usernameexist', 'Nome de Usuário já existe!', '2016-01-04 16:42:58'),
(8962, 'pt-br', 'label', 'already exist', 'já existe', '2018-08-21 18:54:11'),
(8963, 'pt-br', 'label', 'Authentication', 'Autenticação', '2018-08-21 18:54:11'),
(8964, 'pt-br', 'label', 'Author', 'Autor', '2018-08-21 18:54:11'),
(8965, 'pt-br', 'label', 'Brocken', 'Quebrado', '2018-08-21 18:54:11'),
(8966, 'pt-br', 'label', 'Click Here', 'Clique Aqui', '2018-08-21 18:54:11'),
(8967, 'pt-br', 'label', 'Comments', 'Comentários', '2018-08-21 18:54:11'),
(8968, 'pt-br', 'label', 'Count', 'Contagem', '2018-08-21 18:54:11'),
(8969, 'pt-br', 'label', 'Cron', 'Cron', '2018-08-21 18:54:11'),
(8970, 'pt-br', 'label', 'Description', 'Descrição', '2018-08-21 18:54:11'),
(8971, 'pt-br', 'label', 'Developers', 'Desenvolvedores', '2018-08-21 18:54:11'),
(8972, 'pt-br', 'label', 'Download', 'Download', '2018-08-21 18:54:11'),
(8973, 'pt-br', 'label', 'Exclude', 'Excluir', '2018-08-21 18:54:11'),
(8974, 'pt-br', 'label', 'Include', 'Incluir', '2018-08-21 18:54:11'),
(8975, 'pt-br', 'label', 'Installation', 'Instalação', '2018-08-21 18:54:11'),
(8976, 'pt-br', 'label', 'Keywords', 'Palavras-chave', '2018-08-21 18:54:11'),
(8977, 'pt-br', 'label', 'noactiveplugins', 'Nenhum Plugin de SEO ativo!', '2018-08-21 18:54:11'),
(8978, 'pt-br', 'label', 'Plugin', 'Plugin', '2018-08-21 18:54:11'),
(8979, 'pt-br', 'label', 'Port', 'Porta', '2018-08-21 18:54:11'),
(8980, 'pt-br', 'label', 'Project', 'Projeto', '2018-08-21 18:54:11'),
(8981, 'pt-br', 'label', 'Proxy', 'Proxy', '2018-08-21 18:54:11'),
(8982, 'pt-br', 'label', 'Re-install', 'Re-instalar', '2018-08-21 18:54:11'),
(8983, 'pt-br', 'label', 'Report Type', 'Tipo de Relatório', '2018-08-21 18:54:11'),
(8984, 'pt-br', 'label', 'Score', 'Pontuação', '2018-08-21 18:54:11'),
(8985, 'pt-br', 'label', 'Sponsors', 'Patrocinadores', '2018-08-21 18:54:11'),
(8986, 'pt-br', 'label', 'Title', 'Título', '2018-08-21 18:54:11'),
(8987, 'pt-br', 'label', 'Total Results', 'Total de Resultados', '2018-08-21 18:54:11'),
(8988, 'pt-br', 'label', 'translation by', 'traduzido por', '2018-08-21 18:54:11'),
(8989, 'pt-br', 'label', 'Translators', 'Tradutores', '2018-08-21 18:54:11'),
(8990, 'pt-br', 'label', 'Updated', 'Atualizado', '2018-08-21 18:54:11'),
(8991, 'pt-br', 'label', 'Upgrade', 'Atualização', '2018-08-21 18:54:11'),
(8992, 'pt-br', 'label', 'Version', 'Versão', '2018-08-21 18:54:11'),
(8993, 'pt-br', 'label', 'View Reports', 'Visualizar Relatórios', '2018-08-21 18:54:11'),
(8994, 'pt-br', 'label', 'wantproceed', 'Você realmente deseja prosseguir?', '2018-08-21 18:54:11'),
(8995, 'pt-br', 'keyword', 'Crawling keyword', 'Rastreando palavra-chave', '2016-01-04 16:42:09'),
(8996, 'pt-br', 'keyword', 'Detailed Keyword Position Reports', 'Relatórios Detalhes de Posicionamento de Palavras-chave', '2016-01-04 16:42:09'),
(8997, 'pt-br', 'keyword', 'Edit Keyword', 'Editar palavra-chave', '2016-01-04 16:42:09'),
(8998, 'pt-br', 'keyword', 'Graphical Keyword Position Reports', 'Relatórios Gráficos de Posicionamento de Palavras-chave', '2016-01-04 16:42:09'),
(8999, 'pt-br', 'keyword', 'Import Keywords', 'Importar palavras-chave', '2016-01-04 16:42:09'),
(9000, 'pt-br', 'keyword', 'Insert keywords separated with comma', 'Inserir palavras-chave separadas por vírgula', '2016-01-04 16:42:09'),
(9001, 'pt-br', 'keyword', 'Keyword already exist', 'Palavra-chave já existe', '2016-01-04 16:42:09'),
(9002, 'pt-br', 'keyword', 'Keyword Position Report', 'Relatório de Posicionamento de Palavra-chave', '2016-01-04 16:42:09'),
(9003, 'pt-br', 'keyword', 'New Keyword', 'Nova palavra-chave', '2016-01-04 16:42:09'),
(9004, 'pt-br', 'keyword', 'not assigned to required search engines', 'não atribuída aos motores de buscas necessários', '2016-01-04 16:42:09'),
(9005, 'pt-br', 'keyword', 'pleaseselecttool', 'Por favor selecione uma Ferramenta de SEO', '2016-01-04 16:42:09'),
(9006, 'pt-br', 'keyword', 'Quick Keyword Position Checker', 'Checagem Rápida de Posicionamento de Palavra-chave', '2016-01-04 16:42:09'),
(9007, 'pt-br', 'keyword', 'results from ', 'resultados de', '2016-01-04 16:42:09'),
(9008, 'pt-br', 'keyword', 'Show All results', 'Mostrar todos resultados', '2016-01-04 16:42:09'),
(9009, 'pt-br', 'keyword', 'Successfully crawled keyword', 'Palavra-chave rastreada com sucesso', '2016-01-04 16:42:09'),
(9010, 'pt-br', 'keyword', 'to create new keywords', 'para criar novas palavras-chave', '2016-01-04 16:42:09'),
(9011, 'fa', 'siteauditor', 'Anchor', 'Anchor', '2012-05-23 06:13:49'),
(9012, 'fa', 'siteauditor', 'anylinkcontainabovelinks', 'هر لینک شامل لینک های بالا از گزارش حذف خواهد شد', '2012-05-23 06:13:49'),
(9013, 'fa', 'siteauditor', 'anylinkcontainexcludesitemap', 'هر لینک شامل لینک های بالا از نقشه سایت حذف خواهد شد', '2012-05-23 06:13:49'),
(9014, 'fa', 'siteauditor', 'Check backlinks of pages', 'بررسی بک لینک صفحه ها', '2012-05-23 06:13:49'),
(9015, 'fa', 'siteauditor', 'Check broken links in a page', 'بررسی لینک های شکسته در صفحه', '2012-05-23 06:13:49'),
(9016, 'fa', 'siteauditor', 'Check google pagerank of pages', 'بررسی پیج رنک صفحه ها', '2012-05-23 06:13:49'),
(9017, 'fa', 'siteauditor', 'Check pages indexed or not', 'بررسی ایندکس شدن صفحه ها', '2012-05-23 06:13:49'),
(9018, 'fa', 'siteauditor', 'Check Score', 'بررسی امتیاز', '2012-05-23 06:13:49'),
(9019, 'fa', 'siteauditor', 'checkborckenlinkwait', 'بررسی لینک های شکسته زمان انجام پروژه را افزایش می دهد', '2012-05-23 06:13:49'),
(9020, 'fa', 'siteauditor', 'Completed project execution', 'پایان پروژه', '2012-05-23 06:13:49'),
(9021, 'fa', 'siteauditor', 'Crawled', 'خزیده شده', '2012-05-23 06:13:49'),
(9022, 'fa', 'siteauditor', 'Crawled Pages', 'صفحه های خزیده شده', '2012-05-23 06:13:49'),
(9023, 'fa', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'خزیدن با موفقیت انجام شد.برای خزیدن صفحه بعدی منتظر بمانید', '2012-05-23 06:13:49'),
(9024, 'fa', 'siteauditor', 'Crawling Page', 'خزیدن صفحه', '2012-05-23 06:13:49'),
(9025, 'fa', 'siteauditor', 'Duplicate Description', 'توضیح تکراری', '2012-05-23 06:13:49'),
(9026, 'fa', 'siteauditor', 'Duplicate Keywords', 'کلمات کلدی تکراری', '2012-05-23 06:13:49'),
(9027, 'fa', 'siteauditor', 'Duplicate Title', 'عنوان تکراری', '2012-05-23 06:13:49'),
(9028, 'fa', 'siteauditor', 'Exclude links', 'استثنا کردن لینک ها', '2012-05-23 06:13:49'),
(9029, 'fa', 'siteauditor', 'Execute with cron', 'Execute with cron ', '2012-05-23 06:13:49'),
(9030, 'fa', 'siteauditor', 'External', 'خروجی', '2012-05-23 06:13:49'),
(9031, 'fa', 'siteauditor', 'External Links', 'لینک های خروجی', '2012-05-23 06:13:49'),
(9032, 'fa', 'siteauditor', 'Import Project Links', 'وارد کردن لینک های پروژه', '2012-05-23 06:13:49'),
(9033, 'fa', 'siteauditor', 'Insert links separated with comma', 'لینک ها را بوسیله کاما جدا کنید', '2012-05-23 06:13:49'),
(9034, 'fa', 'siteauditor', 'insertlinkssepcoma', 'برای حذف لینک های بی نهایت از گزارش، لینک ها را بوسیله کاما جدا کنید', '2012-05-23 06:13:49'),
(9035, 'fa', 'siteauditor', 'Link Reports', 'گزارش های لینک', '2012-05-23 06:13:49'),
(9036, 'fa', 'siteauditor', 'Link Title', 'عنوان لینک', '2012-05-23 06:13:49'),
(9037, 'fa', 'siteauditor', 'Maximum number of pages to be checked', 'بیشترین تعداد صفحاتی که چک شود', '2012-05-23 06:13:49'),
(9038, 'fa', 'siteauditor', 'Maximum Pages', 'بیشترین تعداد صفحات', '2012-05-23 06:13:49'),
(9039, 'fa', 'siteauditor', 'No active projects found', 'پروژه فعالی پیدا نشد', '2012-05-23 06:13:49'),
(9040, 'fa', 'siteauditor', 'Nofollow', 'Nofollow', '2012-05-23 06:13:49'),
(9041, 'fa', 'siteauditor', 'Number of pages is greater than', 'تعداد صفحات بیشتر است از', '2012-05-23 06:13:49'),
(9042, 'fa', 'siteauditor', 'Number of pages should be greater than', 'تعداد صفحات باید بیشتر باشد از', '2012-05-23 06:13:49'),
(9043, 'fa', 'siteauditor', 'Page Details', 'توضیحات صفحه', '2012-05-23 06:13:49'),
(9044, 'fa', 'siteauditor', 'Page Link', 'لینک صفحه', '2012-05-23 06:13:49'),
(9045, 'fa', 'siteauditor', 'Page Links', 'لینک های صفحه', '2012-05-23 06:13:49'),
(9046, 'fa', 'siteauditor', 'Pages Found', 'صفحات یافت شد', '2012-05-23 06:13:49'),
(9047, 'fa', 'siteauditor', 'pressescapetostopexecution', 'برای متوقف کردن اجرا، دکمه escape را بزنید ', '2012-05-23 06:13:49'),
(9048, 'fa', 'siteauditor', 'Project Summary', 'خلاصه پروژه', '2012-05-23 06:13:49'),
(9049, 'fa', 'siteauditor', 'Project Url', 'آدرس لینک پروژه', '2012-05-23 06:13:49'),
(9050, 'fa', 'siteauditor', 'projectalreadyexist', 'پروژه برای این سایت وجود دارد', '2012-05-23 06:13:49'),
(9051, 'fa', 'siteauditor', 'Recheck Pages', 'بازبینی مجدد صفحات', '2012-05-23 06:13:49'),
(9052, 'fa', 'siteauditor', 'Report Summary', 'خلاصه گزارش', '2012-05-23 06:13:49'),
(9053, 'fa', 'siteauditor', 'Run Project', 'راه اندازی پروژه', '2012-05-23 06:13:49'),
(9054, 'fa', 'siteauditor', 'should start with', 'باید شروع شود با', '2012-05-23 06:13:49'),
(9055, 'fa', 'siteauditor', 'Site Auditor Settings', 'تنظیمات ناظر سایت', '2012-05-23 06:13:49'),
(9056, 'fa', 'siteauditor', 'Store all links found in a page', 'ذخیره تمام لینک های یافته شده در صفحه', '2012-05-23 06:13:49'),
(9057, 'fa', 'siteauditor', 'The page description length is not between', 'طول توضیحات صفحه نیست بین', '2012-05-23 06:13:49'),
(9058, 'fa', 'siteauditor', 'The page is brocken', 'صفحه شکسته است', '2012-05-23 06:13:49'),
(9059, 'fa', 'siteauditor', 'The page is having exellent number of backlinks in', 'صفحه تعداد بک لینک خیلی خوبی دارد در', '2012-05-23 06:13:49'),
(9060, 'fa', 'siteauditor', 'The page is having exellent pagerank', 'پیج رنک صفحه عالیست', '2012-05-23 06:13:49'),
(9061, 'fa', 'siteauditor', 'The page is having good number of backlinks in', 'صفحه تعداد بک لینک خوبی دارد در', '2012-05-23 06:13:49'),
(9062, 'fa', 'siteauditor', 'The page is having good pagerank', 'پیج رنک صفحه خوب است', '2012-05-23 06:13:49'),
(9063, 'fa', 'siteauditor', 'The page is having poor pagerank', 'پیج رنک صفحه ضعیف است', '2012-05-23 06:13:49'),
(9064, 'fa', 'siteauditor', 'The page is having very good pagerank', 'پیج رنک صفحه خیلی خوب است', '2012-05-23 06:13:49'),
(9065, 'fa', 'siteauditor', 'The page is not having backlinks in', 'صفحه بک لینک نشده است در', '2012-05-23 06:13:49'),
(9066, 'fa', 'siteauditor', 'The page is not indexed in', 'صفحه ایندکس نشده است در', '2012-05-23 06:13:49'),
(9067, 'fa', 'siteauditor', 'The page keywords length is not between', 'طول کلمات کلیدی صفحه نیست بین', '2012-05-23 06:13:49'),
(9068, 'fa', 'siteauditor', 'The page title length is not between', 'طول عنوان صفحه نیست بین', '2012-05-23 06:13:49'),
(9069, 'fa', 'siteauditor', 'The total number of links in page is greater than', 'مجموع لینک های موجود در صفحه بیشتر است از', '2012-05-23 06:13:49'),
(9070, 'fa', 'siteauditor', 'to run project again if you stopped execution', 'برای راه اندازی مجدد پروژه، اگر اجرا را متوقف نموده اید', '2012-05-23 06:13:49'),
(9071, 'fa', 'siteauditor', 'to view the reports', 'برای مشاهده گزارش ها', '2012-05-23 06:13:49'),
(9072, 'fa', 'siteauditor', 'Total Links', 'مجموع لینک ها', '2012-05-23 06:13:49'),
(9073, 'fa', 'siteauditor', 'totallinksgreaterallowed', 'مجموع لینک ها از حداکثر مجاز برای پروژه بیشتر می شود', '2012-05-23 06:13:49'),
(9074, 'en', 'searchengine', 'no_of_results_page', 'Number of results per page', '2012-05-03 22:26:21'),
(9075, 'en', 'searchengine', 'max_results', 'Maximum number of results', '2012-05-03 22:26:21'),
(9076, 'en', 'label', 'Daily', 'Daily', '2012-05-03 22:27:03'),
(9077, 'en', 'label', 'Weekly', 'Weekly', '2012-05-03 22:27:03'),
(9078, 'en', 'label', 'Monthly', 'Monthly', '2012-05-03 22:27:03'),
(9079, 'en', 'report', 'Next report generation time', 'Next report generation time', '2012-05-03 22:27:20'),
(9080, 'en', 'report', 'Email notification', 'Email notification', '2012-05-03 22:27:20'),
(9081, 'en', 'report', 'Reports generation interval', 'Reports generation interval', '2012-05-03 22:27:20'),
(9082, 'en', 'report', 'sheduledsuccessfully', 'Scheduled report generation successfully!', '2012-05-03 22:27:20'),
(9083, 'en', 'report', '2 Days', '2 Days', '2012-05-03 22:27:20'),
(9084, 'en', 'report', 'reportsettingssaved', 'Report settings saved successfully!', '2012-05-03 22:27:20'),
(9085, 'en', 'report', 'keywordnumbercheckedcronnote', 'Note: Default 0 means all keywords should be checked', '2012-05-03 22:27:20'),
(9086, 'en', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow users to schedule report', '2018-01-23 00:59:29'),
(9087, 'en', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Minimum Allowed Reporting Interval', '2018-01-23 00:59:29'),
(9088, 'en', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of email notifications for reports', '2018-01-23 00:59:29'),
(9089, 'en', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Number of keywords needs to be checked in each cron execution', '2018-01-23 00:59:29'),
(9090, 'en', 'panel', 'Report Settings', 'Report Settings', '2012-05-03 22:27:49'),
(9091, 'en', 'panel', 'Archived Reports', 'Archived Reports', '2012-05-03 22:27:49'),
(9092, 'en', 'panel', 'Schedule Reports', 'Schedule Reports', '2012-05-03 22:27:49'),
(9093, 'en', 'panel', 'Search Engine Manager', 'Search Engine Manager', '2012-05-03 22:27:49'),
(9094, 'en', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2018-01-23 00:59:29'),
(9095, 'en', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2018-01-23 00:59:29'),
(9096, 'en', 'settings', 'SP_SMTP_USERNAME', 'SMTP Username', '2018-01-23 00:59:29'),
(9097, 'en', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Password', '2018-01-23 00:59:29'),
(9098, 'en', 'settings', 'entersmtpdetails', 'Please enter SMTP mail configuration', '2018-01-23 00:59:29'),
(9099, 'en', 'common', 'Hello', 'Hello', '2019-08-06 10:09:56'),
(9100, 'en', 'reports', 'report_email_subject', 'Your SEO reports generated successfully', '2012-05-04 14:49:25'),
(9101, 'en', 'reports', 'report_email_body_text1', 'Your reports generated successfully in seo panel. Please check the attached reports.', '2012-05-04 14:49:25'),
(9102, 'en', 'reports', 'report_email_body_text2', 'If above reports are not clear, Please [LOGIN_LINK] to view the reports directly from your account.', '2012-05-04 14:49:25'),
(9103, 'en', 'directory', 'Coupon Code', 'Coupon Code', '2012-05-05 13:48:57'),
(9104, 'en', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured submission!', '2012-05-05 13:48:57'),
(9105, 'pt-br', 'common', 'Hello', 'Olá', '2019-07-30 00:26:27'),
(9106, 'pt-br', 'directory', 'Coupon Code', 'Código do Cupom', '2014-02-12 17:25:20'),
(9107, 'pt-br', 'directory', 'couponcodenote', 'Use o cupom acima e tenha [REDUCTION_PER] para cada envio destacado.', '2014-02-12 17:25:20'),
(9108, 'pt-br', 'siteauditor', 'Anchor', 'Âncora', '2017-07-13 01:01:53'),
(9109, 'pt-br', 'siteauditor', 'anylinkcontainabovelinks', 'Quaisquer links que contenham os links acima serão excluídos dos relatórios', '2017-07-13 01:01:53'),
(9110, 'pt-br', 'siteauditor', 'anylinkcontainexcludesitemap', 'Quaisquer links que contenham os links acima serão excluídos do sitemap', '2017-07-13 01:01:53'),
(9111, 'pt-br', 'siteauditor', 'Check backlinks of pages', 'Checar os links de retorno das páginas', '2017-07-13 01:01:53'),
(9112, 'pt-br', 'siteauditor', 'Check broken links in a page', 'Checar links quebrados em uma página', '2017-07-13 01:01:53'),
(9113, 'pt-br', 'siteauditor', 'Check google pagerank of pages', 'Checar o pagerank do Google das páginas', '2017-07-13 01:01:53'),
(9114, 'pt-br', 'siteauditor', 'Check pages indexed or not', 'Checar se a página foi ou não indexada', '2017-07-13 01:01:53'),
(9115, 'pt-br', 'siteauditor', 'Check Score', 'Checar Score', '2017-07-13 01:01:53'),
(9116, 'pt-br', 'siteauditor', 'checkborckenlinkwait', 'Checar links quebrados irá aumentar o tempo de execução do projeto.', '2017-07-13 01:01:53'),
(9117, 'pt-br', 'siteauditor', 'Completed project execution', 'Completar a execução do projeto', '2017-07-13 01:01:53'),
(9118, 'pt-br', 'siteauditor', 'Crawled', 'Rastreado', '2017-07-13 01:01:53'),
(9119, 'pt-br', 'siteauditor', 'Crawled Pages', 'Páginas Rastreadas', '2017-07-13 01:01:53'),
(9120, 'pt-br', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'rastreamento com sucesso! Aguardando o rastreamento da próxima página para', '2017-07-13 01:01:53'),
(9121, 'pt-br', 'siteauditor', 'Crawling Page', 'Rastreando Página', '2017-07-13 01:01:53'),
(9122, 'pt-br', 'siteauditor', 'Duplicate Description', 'Duplicar Descrição', '2017-07-13 01:01:53'),
(9123, 'pt-br', 'siteauditor', 'Duplicate Keywords', 'Duplicar Palavras-Chave', '2017-07-13 01:01:53'),
(9124, 'pt-br', 'siteauditor', 'Duplicate Title', 'Duplicar Título', '2017-07-13 01:01:53'),
(9125, 'pt-br', 'siteauditor', 'Exclude links', 'Excluir links', '2017-07-13 01:01:53'),
(9126, 'pt-br', 'siteauditor', 'Execute with cron', 'Executar com a Cron', '2017-07-13 01:01:53'),
(9127, 'pt-br', 'siteauditor', 'External', 'Externo', '2017-07-13 01:01:53'),
(9128, 'pt-br', 'siteauditor', 'External Links', 'Links Externos', '2017-07-13 01:01:53'),
(9129, 'pt-br', 'siteauditor', 'Import Project Links', 'Importar Links do Projeto', '2017-07-13 01:01:53'),
(9130, 'pt-br', 'siteauditor', 'Insert links separated with comma', 'Inserir links separados com vírgula', '2017-07-13 01:01:53'),
(9131, 'pt-br', 'siteauditor', 'insertlinkssepcoma', 'Inserir links separados com vírgula para excluir links infinitos dos relatórios', '2017-07-13 01:01:53'),
(9132, 'pt-br', 'siteauditor', 'Link Reports', 'Relatórios de Links', '2017-07-13 01:01:53'),
(9133, 'pt-br', 'siteauditor', 'Link Title', 'Título do Link', '2017-07-13 01:01:53'),
(9134, 'pt-br', 'siteauditor', 'Maximum number of pages to be checked', 'Número máximo de páginas para ser checadas', '2017-07-13 01:01:53'),
(9135, 'pt-br', 'siteauditor', 'Maximum Pages', 'Máximo de Páginas', '2017-07-13 01:01:53'),
(9136, 'pt-br', 'siteauditor', 'No active projects found', 'Nenhum projeto ativo encontrado', '2017-07-13 01:01:53'),
(9137, 'pt-br', 'siteauditor', 'Nofollow', 'Nofollow', '2017-07-13 01:01:53'),
(9138, 'pt-br', 'siteauditor', 'Number of pages is greater than', 'Número de páginas é maior que', '2017-07-13 01:01:53'),
(9139, 'pt-br', 'siteauditor', 'Number of pages should be greater than', 'Número de páginas deve ser maior que', '2017-07-13 01:01:53'),
(9140, 'pt-br', 'siteauditor', 'Page Details', 'Detalhes da Página', '2017-07-13 01:01:53'),
(9141, 'pt-br', 'siteauditor', 'Page Link', 'Link da Página', '2017-07-13 01:01:53'),
(9142, 'pt-br', 'siteauditor', 'Page Links', 'Links da Página', '2017-07-13 01:01:53'),
(9143, 'pt-br', 'siteauditor', 'Pages Found', 'Páginas Encontradas', '2017-07-13 01:01:53'),
(9144, 'pt-br', 'siteauditor', 'pressescapetostopexecution', 'Pressione a tecla <b>ESC</b> para parar a execução do script', '2017-07-13 01:01:53'),
(9145, 'pt-br', 'siteauditor', 'Project Summary', 'Sumário do Projeto', '2017-07-13 01:01:53'),
(9146, 'pt-br', 'siteauditor', 'Project Url', 'URL do Projeto', '2017-07-13 01:01:53'),
(9147, 'pt-br', 'siteauditor', 'projectalreadyexist', 'Projeto para este já existe', '2017-07-13 01:01:53'),
(9148, 'pt-br', 'siteauditor', 'Recheck Pages', 'Checar novamente as páginas', '2017-07-13 01:01:53'),
(9149, 'pt-br', 'siteauditor', 'Report Summary', 'Sumário dos Relatórios', '2017-07-13 01:01:53'),
(9150, 'pt-br', 'siteauditor', 'Run Project', 'Executar Projeto', '2017-07-13 01:01:53'),
(9151, 'pt-br', 'siteauditor', 'should start with', 'deve começar com', '2017-07-13 01:01:53'),
(9152, 'pt-br', 'siteauditor', 'Site Auditor Settings', 'Configurações do Auditor de Sites', '2017-07-13 01:01:53'),
(9153, 'pt-br', 'siteauditor', 'Store all links found in a page', 'Armazena todos os links encontrados em uma página', '2017-07-13 01:01:53'),
(9154, 'pt-br', 'siteauditor', 'The page description length is not between', 'O tamanho de descrição da página não está de acordo', '2017-07-13 01:01:53'),
(9155, 'pt-br', 'siteauditor', 'The page is brocken', 'A página está quebrada', '2017-07-13 01:01:53'),
(9156, 'pt-br', 'siteauditor', 'The page is having exellent number of backlinks in', 'A página é um excelente número de links de retorno', '2017-07-13 01:01:53'),
(9157, 'pt-br', 'siteauditor', 'The page is having exellent pagerank', 'A página tem um excelente pagerank', '2017-07-13 01:01:53'),
(9158, 'pt-br', 'siteauditor', 'The page is having good number of backlinks in', 'A página tem um bom número de links de retorno', '2017-07-13 01:01:53'),
(9159, 'pt-br', 'siteauditor', 'The page is having good pagerank', 'A página tem um bom pagerank', '2017-07-13 01:01:53'),
(9160, 'pt-br', 'siteauditor', 'The page is having poor pagerank', 'A página tem um pagerank ruim', '2017-07-13 01:01:53'),
(9161, 'pt-br', 'siteauditor', 'The page is having very good pagerank', 'A página tem um pagerank muito bom', '2017-07-13 01:01:53'),
(9162, 'pt-br', 'siteauditor', 'The page is not having backlinks in', 'A página não tem nenhum link de retorno', '2017-07-13 01:01:53'),
(9163, 'pt-br', 'siteauditor', 'The page is not indexed in', 'A página não foi indexada ainda', '2017-07-13 01:01:53'),
(9164, 'pt-br', 'siteauditor', 'The page keywords length is not between', 'A quantidade de palavras-chave da página não está de acordo', '2017-07-13 01:01:53'),
(9165, 'pt-br', 'siteauditor', 'The page title length is not between', 'O tamanho do título da página não está de acordo', '2017-07-13 01:01:53');
INSERT INTO `texts` VALUES
(9166, 'pt-br', 'siteauditor', 'The total number of links in page is greater than', 'O número total de links na página é maior que', '2017-07-13 01:01:53'),
(9167, 'pt-br', 'siteauditor', 'to run project again if you stopped execution', 'para executar o seu projeto novamente se você interrompeu a execução', '2017-07-13 01:01:53'),
(9168, 'pt-br', 'siteauditor', 'to view the reports', 'para visualizar os relatórios', '2017-07-13 01:01:53'),
(9169, 'pt-br', 'siteauditor', 'Total Links', 'Total de Links', '2017-07-13 01:01:53'),
(9170, 'pt-br', 'siteauditor', 'totallinksgreaterallowed', 'Total de links é maior do que os links máximos permitidos para o projeto', '2017-07-13 01:01:53'),
(9171, 'pt-br', 'label', 'Daily', 'Diário', '2018-08-21 18:54:11'),
(9172, 'pt-br', 'label', 'Monthly', 'Mensal', '2018-08-21 18:54:11'),
(9173, 'pt-br', 'label', 'Weekly', 'Semanal', '2018-08-21 18:54:11'),
(9174, 'pt-br', 'panel', 'About Us', 'Sobre Nós', '2018-01-23 18:32:33'),
(9175, 'pt-br', 'panel', 'Add following command to your cron tab', 'Adicione o comando para o seu agendador de tarefas Cron', '2018-01-23 18:32:33'),
(9176, 'pt-br', 'panel', 'alsocheckfollowlink', 'Também veja o link a seguir se você precisa de mais informações.', '2018-01-23 18:32:33'),
(9177, 'pt-br', 'panel', 'Archived Reports', 'Relatórios Arquivados', '2018-01-23 18:32:33'),
(9178, 'pt-br', 'panel', 'Check Directory', 'Checar Diretório', '2018-01-23 18:32:33'),
(9179, 'pt-br', 'panel', 'Cron Command', 'Comando Cron', '2018-01-23 18:32:33'),
(9180, 'pt-br', 'panel', 'Directory Manager', 'Gerenciador de Diretórios', '2018-01-23 18:32:33'),
(9181, 'pt-br', 'panel', 'Edit My Profile', 'Editar meu Perfil', '2018-01-23 18:32:33'),
(9182, 'pt-br', 'panel', 'Edit Project', 'Editar Projeto', '2018-01-23 18:32:33'),
(9183, 'pt-br', 'panel', 'My Profile', 'Meu Perfil', '2018-01-23 18:32:33'),
(9184, 'pt-br', 'panel', 'New Project', 'Novo Projeto', '2018-01-23 18:32:33'),
(9185, 'pt-br', 'panel', 'New Proxy', 'Novo Proxy', '2018-01-23 18:32:33'),
(9186, 'pt-br', 'panel', 'New User', 'Novo Usuário', '2018-01-23 18:32:33'),
(9187, 'pt-br', 'panel', 'New Website', 'Novo Website', '2018-01-23 18:32:33'),
(9188, 'pt-br', 'panel', 'Proxy Manager', 'Gerenciador Proxy', '2018-01-23 18:32:33'),
(9189, 'pt-br', 'panel', 'Report Generation Manager', 'Gerenciador do Gerador de Relatórios', '2018-01-23 18:32:33'),
(9190, 'pt-br', 'panel', 'Report Settings', 'Configurações de Relatórios', '2018-01-23 18:32:33'),
(9191, 'pt-br', 'panel', 'Reports Manager', 'Gerenciador de Relatórios', '2018-01-23 18:32:33'),
(9192, 'pt-br', 'panel', 'Schedule Reports', 'Agendador de Relatórios', '2018-01-23 18:32:33'),
(9193, 'pt-br', 'panel', 'Search Engine Manager', 'Gerenciador de Sites de Buscas', '2018-01-23 18:32:33'),
(9194, 'pt-br', 'panel', 'Seo Plugins Manager', 'Gerenciador de Plugins de SEO', '2018-01-23 18:32:33'),
(9195, 'pt-br', 'panel', 'Seo Tools Manager', 'Gerenciador de Ferramentas de SEO', '2018-01-23 18:32:33'),
(9196, 'pt-br', 'panel', 'System Settings', 'Configurações do Sistema', '2018-01-23 18:32:33'),
(9197, 'pt-br', 'panel', 'User Manager', 'Gerenciador de Usuários', '2018-01-23 18:32:33'),
(9198, 'pt-br', 'panel', 'Website Manager', 'Gerenciador de Websites', '2018-01-23 18:32:33'),
(9199, 'pt-br', 'report', '2 Days', '2 Dias', '2012-05-07 16:55:16'),
(9200, 'pt-br', 'report', 'Email notification', 'Notificação por e-mail', '2012-05-07 16:55:16'),
(9201, 'pt-br', 'report', 'keywordnumbercheckedcronnote', 'Nota: O padrão 0 quer dizer que todas as palavras-chave deverão ser checadas', '2012-05-07 16:55:16'),
(9202, 'pt-br', 'report', 'Next report generation time', 'Data da próxima geração de relatórios', '2012-05-07 16:55:16'),
(9203, 'pt-br', 'report', 'Reports generation interval', 'Intervalo para geração de relatórios', '2012-05-07 16:55:16'),
(9204, 'pt-br', 'report', 'reportsettingssaved', 'Configurações de relatórios salva com sucesso!', '2012-05-07 16:55:16'),
(9205, 'pt-br', 'report', 'sheduledsuccessfully', 'Geração de relatórios agendada com sucesso.', '2012-05-07 16:55:16'),
(9206, 'pt-br', 'reports', 'report_email_body_text1', 'Seus relatórios foram gerados com sucesso no SEO Panel. Por favor verifique os relatórios anexados.', '2012-05-07 16:56:32'),
(9207, 'pt-br', 'reports', 'report_email_body_text2', 'Se os relatórios acima não estão claros, por favor [LOGIN_LINK] para visualizar os relatórios diretamente da sua conta.', '2012-05-07 16:56:32'),
(9208, 'pt-br', 'reports', 'report_email_subject', 'Seus relatórios de SEO foram gerados com sucesso', '2012-05-07 16:56:32'),
(9209, 'pt-br', 'saturation', 'clickproceedsaturation', 'Entre as URL\\''s <b>Uma por linha</b>. Clique em <b>Avançar</b> para visualizar os resultados de Saturação nos Sites de Buscas.', '2012-05-07 16:58:15'),
(9210, 'pt-br', 'saturation', 'GenerateSaturationReports', 'Gerar Relatórios de Saturação nos Sites de Buscas', '2012-05-07 16:58:15'),
(9211, 'pt-br', 'saturation', 'Quick Search Engine Saturation Checker', 'Visualizador Rápido de Saturação nos Sites de Buscas', '2012-05-07 16:58:15'),
(9212, 'pt-br', 'saturation', 'Saved Search Engine Saturation results of', 'Resultados salvos de Saturação nos Sites de Buscas de', '2012-05-07 16:58:15'),
(9213, 'pt-br', 'saturation', 'Search Engine Saturation Reports', 'Relatórios de Saturação nos Sites de Buscas', '2012-05-07 16:58:15'),
(9214, 'pt-br', 'searchengine', 'max_results', 'Número máximo de resultados', '2012-05-07 16:58:33'),
(9215, 'pt-br', 'searchengine', 'no_of_results_page', 'Número de resultados por página', '2012-05-07 16:58:33'),
(9216, 'pt-br', 'seotools', 'Auditor Projects', 'Projetos do Auditor', '2017-07-13 01:00:13'),
(9217, 'pt-br', 'seotools', 'Auditor Reports', 'Relatórios do Auditor', '2017-07-13 01:00:13'),
(9218, 'pt-br', 'seotools', 'Auditor Settings', 'Configurações do Auditor', '2017-07-13 01:00:13'),
(9219, 'pt-br', 'seotools', 'Automatic Submission', 'Envio Automático', '2017-07-13 01:00:13'),
(9220, 'pt-br', 'seotools', 'backlink-checker', 'Visualizador de Links de Retorno', '2017-07-13 01:00:13'),
(9221, 'pt-br', 'seotools', 'Backlinks Reports', 'Relatórios de Links de Retorno', '2017-07-13 01:00:13'),
(9222, 'pt-br', 'seotools', 'Check Submission Status', 'Checar o status do Envio', '2017-07-13 01:00:13'),
(9223, 'pt-br', 'seotools', 'clickgeneratereports', 'Clicar em <b>Avançar</b> para gerar relatórios', '2017-07-13 01:00:13'),
(9224, 'pt-br', 'seotools', 'Detailed Position Reports', 'Relatórios Detalhados de Posicionamento', '2017-07-13 01:00:13'),
(9225, 'pt-br', 'seotools', 'directory-submission', 'Envio para Diretórios', '2017-07-13 01:00:13'),
(9226, 'pt-br', 'seotools', 'Featured Submission', 'Envio Destacado', '2017-07-13 01:00:13'),
(9227, 'pt-br', 'seotools', 'Generate Backlinks Reports', 'Gerar Relatórios de Links de Retorno', '2017-07-13 01:00:13'),
(9228, 'pt-br', 'seotools', 'Generate Keyword Reports', 'Gerar Relatórios de Palavras-chave', '2017-07-13 01:00:13'),
(9229, 'pt-br', 'seotools', 'Generate Rank Reports', 'Gerar Relatórios de Rank', '2017-07-13 01:00:13'),
(9230, 'pt-br', 'seotools', 'Generate Saturation Reports', 'Gerar Relatórios de Saturação', '2017-07-13 01:00:13'),
(9231, 'pt-br', 'seotools', 'Google Sitemap Generator', 'Gerador de Sitemap para o Google', '2017-07-13 01:00:13'),
(9232, 'pt-br', 'seotools', 'Graphical Position Reports', 'Relatórios Gráficos de Posicionamento', '2017-07-13 01:00:13'),
(9233, 'pt-br', 'seotools', 'Import Project Links', 'Importar Links de Projetos', '2017-07-13 01:00:13'),
(9234, 'pt-br', 'seotools', 'Keyword Position Summary', 'Sumário do Posicionamento de Palavras-chave', '2017-07-13 01:00:13'),
(9235, 'pt-br', 'seotools', 'keyword-position-checker', 'Visualizador de Posicionamento de Palavras-chave', '2017-07-13 01:00:13'),
(9236, 'pt-br', 'seotools', 'Keywords Manager', 'Gerenciador de Palavras-chave', '2017-07-13 01:00:13'),
(9237, 'pt-br', 'seotools', 'Quick Backlinks Checker', 'Visualizador Rápido de Links de Retorno', '2017-07-13 01:00:13'),
(9238, 'pt-br', 'seotools', 'Quick Position Checker', 'Visualizador Rápido de Posicionamento', '2017-07-13 01:00:13'),
(9239, 'pt-br', 'seotools', 'Quick Rank Checker', 'Visualizador Rápido de Rank', '2017-07-13 01:00:13'),
(9240, 'pt-br', 'seotools', 'Quick Saturation Checker', 'Visualizador Rápido de Saturação', '2017-07-13 01:00:13'),
(9241, 'pt-br', 'seotools', 'Rank Reports', 'Relatórios de Rank', '2017-07-13 01:00:13'),
(9242, 'pt-br', 'seotools', 'rank-checker', 'Visualizador de Rank', '2017-07-13 01:00:13'),
(9243, 'pt-br', 'seotools', 'Saturation Reports', 'Relatórios de Saturação', '2017-07-13 01:00:13'),
(9244, 'pt-br', 'seotools', 'saturation-checker', 'Saturação de Sites de Buscas', '2017-07-13 01:00:13'),
(9245, 'pt-br', 'seotools', 'site-auditor', 'Auditor de Sites', '2017-07-13 01:00:13'),
(9246, 'pt-br', 'seotools', 'sitemap-generator', 'Gerador de Sitemap', '2017-07-13 01:00:13'),
(9247, 'pt-br', 'seotools', 'Skipped Directories', 'Diretórios Ignorados', '2017-07-13 01:00:13'),
(9248, 'pt-br', 'seotools', 'Submission Reports', 'Relatórios de Envio', '2017-07-13 01:00:13'),
(9249, 'pt-br', 'seotools', 'User Access', 'Acesso do Usuário', '2017-07-13 01:00:13'),
(9250, 'pt-br', 'settings', 'Check for Updates', 'Procurar por Atualizações', '2018-06-02 17:47:27'),
(9251, 'pt-br', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Doe US$ 100</b> e se torne um <b>patrocinador</b> do SEO Panel.', '2018-06-02 17:47:27'),
(9252, 'pt-br', 'settings', 'entersmtpdetails', 'Por favor insira a configuração do e-mail SMTP', '2018-06-02 17:47:27'),
(9253, 'pt-br', 'settings', 'getallpluginfree', 'Também obtenha todos os <b>plugins</b> que nós desenvolvemos <b>de graça!</b>', '2018-06-02 17:47:27'),
(9254, 'pt-br', 'settings', 'SA_CRAWL_DELAY_TIME', 'A demora que o Auditor de Sites leva para cada página', '2018-06-02 17:47:27'),
(9255, 'pt-br', 'settings', 'SA_MAX_NO_PAGES', 'Número máximo de páginas permitido por website', '2018-06-02 17:47:27'),
(9256, 'pt-br', 'settings', 'seopanel_description', 'Um completo e gratuito painel de controle para gerenciador a Otimização para Motores de Busca (SEO) dos seus websites. Ele contém diversas ferramentas de SEO para aumentar e acompanhar a performance dos seus websites. Trata-se de um projeto open source, aproveite para desenvolver os seus próprios plugins para o SEO Panel.', '2018-06-02 17:47:27'),
(9257, 'pt-br', 'settings', 'seopanel_title', 'SEO Panel: O primeiro painel de controle do mundo para gerenciamento de múltiplos websites', '2018-06-02 17:47:27'),
(9258, 'pt-br', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Ativar que usuários agendem relatórios', '2018-06-02 17:47:27'),
(9259, 'pt-br', 'settings', 'SP_API_KEY', 'Chave API do SEO Panel', '2018-06-02 17:47:27'),
(9260, 'pt-br', 'settings', 'SP_CRAWL_DELAY', 'Tempo que cada spider leva para rastrear (segundos)', '2018-06-02 17:47:27'),
(9261, 'pt-br', 'settings', 'SP_DEFAULTLANG', 'Idioma Padrão', '2018-06-02 17:47:27'),
(9262, 'pt-br', 'settings', 'SP_DESCRIPTION', 'Descrição do SEO Panel', '2018-06-02 17:47:27'),
(9263, 'pt-br', 'settings', 'SP_ENABLE_PROXY', 'Ativar Proxy', '2018-06-02 17:47:27'),
(9264, 'pt-br', 'settings', 'SP_HOTLINKING', 'Proteção ativada para imagem do hotlink', '2018-06-02 17:47:27'),
(9265, 'pt-br', 'settings', 'SP_KEYWORDS', 'Palavras-chave do SEO Panel', '2018-06-02 17:47:27'),
(9266, 'pt-br', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Número de palavras-chave necessárias para checar em cada execução da Cron', '2018-06-02 17:47:27'),
(9267, 'pt-br', 'settings', 'SP_PAGINGNO', 'Número de entradas por página', '2018-06-02 17:47:27'),
(9268, 'pt-br', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Ativar notificação por e-mail dos relatórios', '2018-06-02 17:47:27'),
(9269, 'pt-br', 'settings', 'SP_SMTP_HOST', 'Servidor SMTP', '2018-06-02 17:47:27'),
(9270, 'pt-br', 'settings', 'SP_SMTP_MAIL', 'Ativar SMTP', '2018-06-02 17:47:27'),
(9271, 'pt-br', 'settings', 'SP_SMTP_PASSWORD', 'Senha SMTP', '2018-06-02 17:47:27'),
(9272, 'pt-br', 'settings', 'SP_SMTP_USERNAME', 'Usuário SMTP', '2018-06-02 17:47:27'),
(9273, 'pt-br', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Intervalo para o sistema gerar relatórios', '2018-06-02 17:47:27'),
(9274, 'pt-br', 'settings', 'SP_TITLE', 'Título do SEO Panel', '2018-06-02 17:47:27'),
(9275, 'pt-br', 'settings', 'SP_USER_AGENT', 'User agent', '2018-06-02 17:47:27'),
(9276, 'pt-br', 'settings', 'SP_USER_GEN_REPORT', 'Permitir que os usuários gerem relatórios', '2018-06-02 17:47:27'),
(9277, 'pt-br', 'settings', 'SP_USER_REGISTRATION', 'Interface de registro de usuários', '2018-06-02 17:47:27'),
(9278, 'pt-br', 'settings', 'syssettingssaved', 'Configurações do sistema salvas com sucesso!', '2018-06-02 17:47:27'),
(9279, 'pt-br', 'settings', 'versionnotuptodatemsg', 'A sua instalação do SEO Panel não está atualizada. <br>Por favor faça o download da nova versão', '2018-06-02 17:47:27'),
(9280, 'pt-br', 'settings', 'Your Seo Panel installation is up to date', 'A sua instalação do SEO Panel está atualizada.', '2018-06-02 17:47:27'),
(39097, 'pt-br', 'sitemap', 'Generate sitemap index file', 'Gerar arquivo de índice de sitemap', '2026-01-19 22:58:50'),
(39098, 'ru', 'sitemap', 'Generate sitemap index file', 'Создать индексный файл карты сайта', '2026-01-19 22:58:50'),
(39099, 'tr', 'sitemap', 'Generate sitemap index file', 'Sitemap dizin dosyası oluştur', '2026-01-19 22:58:50'),
(39100, 'zh', 'sitemap', 'Generate sitemap index file', '生成站点地图索引文件', '2026-01-19 22:58:50'),
(39101, 'cn', 'sitemap', 'Generate sitemap index file', '生成站点地图索引文件', '2026-01-19 22:58:50'),
(39102, 'en', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', 'Creates sitemap_index.xml for multiple sitemap files', '2026-01-19 22:58:50'),
(39103, 'ar', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', 'ينشئ sitemap_index.xml لملفات خريطة الموقع المتعددة', '2026-01-19 22:58:50'),
(39104, 'bg', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', 'Създава sitemap_index.xml за множество sitemap файлове', '2026-01-19 22:58:50'),
(39105, 'de', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', 'Erstellt sitemap_index.xml für mehrere Sitemap-Dateien', '2026-01-19 22:58:50'),
(39106, 'es', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', 'Crea sitemap_index.xml para múltiples archivos de sitemap', '2026-01-19 22:58:50'),
(39107, 'fr', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', 'Crée sitemap_index.xml pour plusieurs fichiers sitemap', '2026-01-19 22:58:50'),
(39108, 'it', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', 'Crea sitemap_index.xml per più file sitemap', '2026-01-19 22:58:50'),
(39109, 'nl', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', 'Maakt sitemap_index.xml voor meerdere sitemap-bestanden', '2026-01-19 22:58:50'),
(39110, 'pl', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', 'Tworzy sitemap_index.xml dla wielu plików mapy witryny', '2026-01-19 22:58:50'),
(39111, 'pt', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', 'Cria sitemap_index.xml para vários arquivos de sitemap', '2026-01-19 22:58:50'),
(39112, 'pt-br', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', 'Cria sitemap_index.xml para vários arquivos de sitemap', '2026-01-19 22:58:50'),
(39113, 'ru', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', 'Создает sitemap_index.xml для нескольких файлов карты сайта', '2026-01-19 22:58:50'),
(39114, 'tr', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', 'Birden fazla sitemap dosyası için sitemap_index.xml oluşturur', '2026-01-19 22:58:50'),
(39115, 'zh', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', '为多个站点地图文件创建sitemap_index.xml', '2026-01-19 22:58:50'),
(39116, 'cn', 'sitemap', 'Creates sitemap_index.xml for multiple sitemap files', '为多个站点地图文件创建sitemap_index.xml', '2026-01-19 22:58:50'),
(39117, 'en', 'sitemap', 'Sitemap Files', 'Sitemap Files', '2026-01-19 22:58:50'),
(39118, 'ar', 'sitemap', 'Sitemap Files', 'ملفات خريطة الموقع', '2026-01-19 22:58:50'),
(39119, 'bg', 'sitemap', 'Sitemap Files', 'Sitemap файлове', '2026-01-19 22:58:50'),
(39120, 'de', 'sitemap', 'Sitemap Files', 'Sitemap-Dateien', '2026-01-19 22:58:50'),
(39121, 'es', 'sitemap', 'Sitemap Files', 'Archivos de Sitemap', '2026-01-19 22:58:50'),
(39122, 'fr', 'sitemap', 'Sitemap Files', 'Fichiers Sitemap', '2026-01-19 22:58:50'),
(9282, 'pt-br', 'home', 'Account Summary', 'Resumo da Conta', '2012-05-14 13:53:54'),
(9283, 'pt-br', 'home', 'Backlinks', 'Links de Retorno', '2012-05-14 13:53:54'),
(9284, 'pt-br', 'home', 'Directory Submission', 'Envio para Diretórios', '2012-05-14 13:53:54'),
(38760, 'hu', 'review', 'Average Rating', 'Átlagos értékelés', '2026-01-19 22:58:50'),
(38761, 'hy', 'review', 'Average Rating', 'Միջին վարկանիշ', '2026-01-19 22:58:50'),
(38762, 'id', 'review', 'Average Rating', 'Rating Rata-rata', '2026-01-19 22:58:50'),
(38763, 'it', 'review', 'Average Rating', 'Valutazione Media', '2026-01-19 22:58:50'),
(38764, 'ja', 'review', 'Average Rating', '平均評価', '2026-01-19 22:58:50'),
(38765, 'ko', 'review', 'Average Rating', '평균 평점', '2026-01-19 22:58:50'),
(38766, 'lt', 'review', 'Average Rating', 'Vidutinis įvertinimas', '2026-01-19 22:58:50'),
(38767, 'mk', 'review', 'Average Rating', 'Просечен рејтинг', '2026-01-19 22:58:50'),
(38768, 'nl', 'review', 'Average Rating', 'Gemiddelde beoordeling', '2026-01-19 22:58:50'),
(38769, 'no', 'review', 'Average Rating', 'Gjennomsnittlig vurdering', '2026-01-19 22:58:50'),
(38770, 'pl', 'review', 'Average Rating', 'Średnia ocena', '2026-01-19 22:58:50'),
(38771, 'pt', 'review', 'Average Rating', 'Avaliação média', '2026-01-19 22:58:50'),
(38772, 'pt-br', 'review', 'Average Rating', 'Avaliação média', '2026-01-19 22:58:50'),
(38773, 'ro', 'review', 'Average Rating', 'Rating mediu', '2026-01-19 22:58:50'),
(38774, 'ru', 'review', 'Average Rating', 'Средний рейтинг', '2026-01-19 22:58:50'),
(38775, 'sk', 'review', 'Average Rating', 'Priemerné hodnotenie', '2026-01-19 22:58:50'),
(38776, 'sl', 'review', 'Average Rating', 'Povprečna ocena', '2026-01-19 22:58:50'),
(9287, 'pt-br', 'home', 'Indexed', 'Indexado', '2012-05-14 13:53:54'),
(9288, 'pt-br', 'home', 'Pages Indexed', 'Páginas Indexadas', '2012-05-14 13:53:54'),
(9289, 'pt-br', 'home', 'Ranks', 'Ranks', '2012-05-14 13:53:54'),
(9290, 'pt-br', 'home', 'SiteNameUrl', 'Nome do Site/URL', '2012-05-14 13:53:54'),
(9291, 'pt-br', 'home', 'Website Statistics', 'Estatísticas do Website', '2012-05-14 13:53:54'),
(9292, 'it', 'common', 'Hello', 'Ciao', '2022-07-11 15:16:48'),
(9293, 'it', 'directory', 'Coupon Code', 'Codice di sconto', '2012-11-09 00:50:02'),
(9294, 'it', 'directory', 'couponcodenote', 'Utilizza il codice di sconto e ricevi [REDUCTION_PER] di riduzione in offerta per ogni immissione.', '2012-11-09 00:50:02'),
(9295, 'it', 'label', 'Daily', 'Quotidiano', '2022-07-11 15:17:58'),
(9296, 'it', 'label', 'Monthly', 'Mensilmente', '2022-07-11 15:17:58'),
(9297, 'it', 'label', 'Weekly', 'Settimanalmente', '2022-07-11 15:17:58'),
(9298, 'it', 'panel', 'Archived Reports', 'Archivio report', '2022-07-11 15:20:07'),
(9299, 'it', 'panel', 'Report Settings', 'Impostazioni report', '2022-07-11 15:20:07'),
(9300, 'it', 'panel', 'Schedule Reports', 'Report programmati', '2022-07-11 15:20:07'),
(9301, 'it', 'panel', 'Search Engine Manager', 'Gestione di ricerca', '2022-07-11 15:20:07'),
(9302, 'it', 'plugin', 'Download Seo Panel Plugins', 'Scarica il plugin seo', '2012-05-12 14:38:03'),
(9303, 'it', 'report', '2 Days', '2 giorni', '2012-05-12 14:39:27'),
(9304, 'it', 'report', 'Email notification', 'Notifica email', '2012-05-12 14:39:27'),
(9305, 'it', 'report', 'keywordnumbercheckedcronnote', 'Nota: Di default il valore 0 significa che tutte le keyword saranno selezionate', '2012-05-12 14:39:27'),
(9306, 'it', 'report', 'Next report generation time', 'Prossima generazione del report', '2012-05-12 14:39:27'),
(9307, 'it', 'report', 'Reports generation interval', 'Intervallo di generazione report', '2012-05-12 14:39:27'),
(9308, 'it', 'report', 'reportsettingssaved', 'Impostazioni report salvate con successo!', '2012-05-12 14:39:27'),
(9309, 'it', 'report', 'sheduledsuccessfully', 'Impostazioni azioni programmate generate con successo!', '2012-05-12 14:39:27'),
(9310, 'it', 'reports', 'report_email_body_text1', 'Il tuo report è stato generato con successo nel pannello seo. Per cortesia verifica il report in allegato. ', '2012-05-12 14:40:32'),
(9311, 'it', 'reports', 'report_email_body_text2', 'Se il report sotto non è chiaro, per cortesia [LOGIN_LINK] per visualizzare il tuo report direttamente dal tuo account.', '2012-05-12 14:40:32'),
(9312, 'it', 'reports', 'report_email_subject', 'Il tuo report SEO è stato generato con successo', '2012-05-12 14:40:32'),
(9313, 'it', 'searchengine', 'max_results', 'Numero massimo di risultati', '2012-05-12 14:40:51'),
(9314, 'it', 'searchengine', 'no_of_results_page', 'Numero di risultati per pagina', '2012-05-12 14:40:51'),
(9315, 'it', 'settings', 'entersmtpdetails', 'Per cortesia inserisci la configurazione mail SMTP', '2018-08-21 11:16:32'),
(9316, 'it', 'settings', 'getallpluginfree', 'Ricorda che tutti i <b>plugin</b> sono sviluppati <b>gratuitamente!</b>', '2018-08-21 11:16:32'),
(9317, 'it', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Permetti agli utenti di pianificare i report', '2018-08-21 11:16:32'),
(9318, 'it', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Numero di keywords che necessitano di essere selezionate per ogni esecuzione delle azioni programmate', '2018-08-21 11:16:32'),
(9319, 'it', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Abilita report tramite mail', '2018-08-21 11:16:32'),
(9320, 'it', 'settings', 'SP_SMTP_HOST', 'Host SMTP', '2018-08-21 11:16:32'),
(9321, 'it', 'settings', 'SP_SMTP_MAIL', 'Abilita SMTP', '2018-08-21 11:16:32'),
(9322, 'it', 'settings', 'SP_SMTP_PASSWORD', 'Password SMTP', '2018-08-21 11:16:32'),
(9323, 'it', 'settings', 'SP_SMTP_USERNAME', 'Utente SMTP', '2018-08-21 11:16:32'),
(9324, 'it', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Intervallo di generazione report di sistema', '2018-08-21 11:16:32'),
(9325, 'es', 'common', 'Hello', 'Hola', '2019-05-25 22:49:48'),
(9326, 'es', 'directory', 'Coupon Code', 'Codigo o cupon', '2012-05-31 14:35:43'),
(9327, 'es', 'directory', 'couponcodenote', 'Utilice el código de cupón anterior y obtendrás [REDUCTION_PER] oferta para cada envío destacado!', '2012-05-31 14:35:43'),
(9328, 'es', 'label', 'Daily', 'Diario', '2012-05-12 14:54:10'),
(9329, 'es', 'label', 'Monthly', 'Mensual', '2012-05-12 14:54:10'),
(9330, 'es', 'label', 'Weekly', 'Semanal', '2012-05-12 14:54:10'),
(9331, 'es', 'panel', 'Archived Reports', 'Informes archivados', '2012-05-12 14:55:03'),
(9332, 'es', 'panel', 'Report Settings', 'COnfiguración de informes', '2012-05-12 14:55:03'),
(9333, 'es', 'panel', 'Schedule Reports', 'Programar informes', '2012-05-12 14:55:03'),
(9334, 'es', 'panel', 'Search Engine Manager', 'Configuración de motores de búsqueda', '2012-05-12 14:55:03'),
(9335, 'es', 'plugin', 'Download Seo Panel Plugins', 'Descargar plugins para Seo Panel', '2012-05-12 14:55:24'),
(9336, 'es', 'report', '2 Days', '2 Dias', '2012-05-12 14:57:49'),
(9337, 'es', 'report', 'Email notification', 'Notificación por email', '2012-05-12 14:57:49'),
(9338, 'es', 'report', 'keywordnumbercheckedcronnote', 'Nota: El número 0 predeterminado indica que todas las palabras clave serán comprobadas', '2012-05-12 14:57:49'),
(9339, 'es', 'report', 'Next report generation time', 'Tiempo de creación del siguiente informe', '2012-05-12 14:57:49'),
(9340, 'es', 'report', 'Reports generation interval', 'Intervalo de creación del informe', '2012-05-12 14:57:49'),
(9341, 'es', 'report', 'reportsettingssaved', 'La configuración de los informes se ha guardado correctamente', '2012-05-12 14:57:49'),
(9342, 'es', 'report', 'sheduledsuccessfully', 'La programación de informes se ha realizado con éxito!', '2012-05-12 14:57:49'),
(9343, 'es', 'reports', 'report_email_body_text1', 'Sus informes se hangenerado con éxito en SEO Panel. Por favor, compruebe los informes adjuntos.', '2012-05-12 14:59:28'),
(9344, 'es', 'reports', 'report_email_body_text2', 'Si los informes anteriores no son claros, por favor logueate [LOGIN_LINK] para ver los informes directamente desde tu cuenta.', '2012-05-12 14:59:28'),
(9345, 'es', 'reports', 'report_email_subject', 'Tus informes SEO se han realizado corectamente', '2012-05-12 14:59:28'),
(9346, 'es', 'searchengine', 'max_results', 'Número máximo de resultados', '2012-05-12 14:59:56'),
(9347, 'es', 'searchengine', 'no_of_results_page', 'Número de resultados por página', '2012-05-12 14:59:56'),
(9348, 'es', 'settings', 'entersmtpdetails', 'Por favor, introduce la configuración SMTP para el email', '2012-05-12 15:03:05'),
(9349, 'es', 'settings', 'getallpluginfree', 'También puedes obtener todos los<b> plugins</ b> que desarrollamos<b> Gratis! </ B>', '2012-05-12 15:03:05'),
(9350, 'es', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Permitir a los usuarios programar los informes', '2012-05-12 15:03:05'),
(9351, 'es', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Número de palabras clave que se deben comprobar en cada ejecución del comando cron', '2012-05-12 15:03:05'),
(9352, 'es', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Activar notificación por email de los informes', '2012-05-12 15:03:05'),
(9353, 'es', 'settings', 'SP_SMTP_HOST', 'Host SMTP', '2012-05-12 15:03:05'),
(9354, 'es', 'settings', 'SP_SMTP_MAIL', 'Activar SMTP', '2012-05-12 15:03:05'),
(9355, 'es', 'settings', 'SP_SMTP_PASSWORD', 'CLave SMTP', '2012-05-12 15:03:05'),
(9356, 'es', 'settings', 'SP_SMTP_USERNAME', 'Usuario SMTP', '2012-05-12 15:03:05'),
(9357, 'es', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Intervalo de creación de los informes', '2012-05-12 15:03:05'),
(9358, 'sl', 'common', 'Hello', 'Pozdravljeni', '2019-05-25 22:48:22'),
(9359, 'sl', 'directory', 'Coupon Code', 'Promocijska koda', '2012-05-12 21:57:22'),
(9360, 'sl', 'directory', 'couponcodenote', 'Uporabite zgornjo promocijsko kodo za [REDUCTION_PER] ponudbo za vsak vnos.', '2012-05-12 21:57:22'),
(9361, 'sl', 'label', 'Daily', 'Dnevno', '2012-05-12 21:57:43'),
(9362, 'sl', 'label', 'Monthly', 'Mesečno', '2012-05-12 21:57:43'),
(9363, 'sl', 'label', 'Weekly', 'Tedensko', '2012-05-12 21:57:43'),
(9364, 'sl', 'panel', 'Archived Reports', 'arhivirana poročila', '2012-05-12 21:58:34'),
(9365, 'sl', 'panel', 'Report Settings', 'Nastavitve poročanja', '2012-05-12 21:58:34'),
(9366, 'sl', 'panel', 'Schedule Reports', 'Tempiranje poročil', '2012-05-12 21:58:34'),
(9367, 'sl', 'panel', 'Search Engine Manager', 'Upravitelj iskalnikov', '2012-05-12 21:58:34'),
(9368, 'sl', 'plugin', 'Download Seo Panel Plugins', 'Naložite dodatke za Seo Panel', '2012-05-12 21:59:12'),
(9369, 'sl', 'report', '2 Days', '2 dni', '2012-05-12 22:02:22'),
(9370, 'sl', 'report', 'Email notification', 'Obvestilo po e-pošti', '2012-05-12 22:02:22'),
(9371, 'sl', 'report', 'keywordnumbercheckedcronnote', 'Pozor: 0 pomeni preverjanje vseh ključnih besed', '2012-05-12 22:02:22'),
(9372, 'sl', 'report', 'Next report generation time', 'Naslednji čas izdelave poročil', '2012-05-12 22:02:22'),
(9373, 'sl', 'report', 'Reports generation interval', 'Interval za generiranje poročil', '2012-05-12 22:02:22'),
(9374, 'sl', 'report', 'reportsettingssaved', 'Nastavitve za poročanje so uspešno shranjene!', '2012-05-12 22:02:22'),
(9375, 'sl', 'report', 'sheduledsuccessfully', 'Tempirana izdelava poročil je uspela!', '2012-05-12 22:02:22'),
(9376, 'sl', 'reports', 'report_email_body_text1', 'Vaša poročila so bila uspešno izdelana v Seo panelu. Prosim preverite priložena poročila.', '2012-05-12 22:05:20'),
(9377, 'sl', 'reports', 'report_email_body_text2', 'Če vsebina poročil ni dovolj jasna, prosim [LOGIN_LINK] in preverite poročila z vašim računom', '2012-05-12 22:05:20'),
(9378, 'sl', 'reports', 'report_email_subject', 'Vaša SEO poročila so bila uspešno izdelana.', '2012-05-12 22:05:20'),
(9379, 'sl', 'searchengine', 'max_results', 'Maksimalno število rezultatov', '2012-05-12 22:05:45'),
(9380, 'sl', 'searchengine', 'no_of_results_page', 'Število rezultatov na stran', '2012-05-12 22:05:45'),
(9381, 'sl', 'settings', 'entersmtpdetails', 'Prosim vnesite SMTP nastavitve', '2012-05-12 22:09:34'),
(9382, 'sl', 'settings', 'getallpluginfree', 'Zagotovite si <b>brezplačno</b> vse <b>dodatke</b>, ki jih razvijamo.', '2012-05-12 22:09:34'),
(9383, 'sl', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Dovoli uporabnikom tempiranje poročil', '2012-05-12 22:09:34'),
(9384, 'sl', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Število ključnih besed ki morajo biti preverjene ob vsakem cron zagonu.', '2012-05-12 22:09:34'),
(9385, 'sl', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Omogoči poročila po e-pošti', '2012-05-12 22:09:34'),
(9386, 'sl', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2012-05-12 22:09:34'),
(9387, 'sl', 'settings', 'SP_SMTP_MAIL', 'omogoči SMTP', '2012-05-12 22:09:34'),
(9388, 'sl', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Geslo', '2012-05-12 22:09:34'),
(9389, 'sl', 'settings', 'SP_SMTP_USERNAME', 'SMTP Uporabniško ime', '2012-05-12 22:09:34'),
(9390, 'sl', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'sistemski interval za generiranje poročil', '2012-05-12 22:09:34'),
(9391, 'fa', 'common', 'Hello', 'سلام', '2018-01-24 13:39:35'),
(9392, 'fa', 'directory', 'Coupon Code', 'کد کوپن', '2012-05-13 01:11:24'),
(9393, 'fa', 'directory', 'couponcodenote', 'با استفاده از کد زیر در هر یک از دفعات بعدی از submission تخفیف استفاده کنید', '2012-05-13 01:11:24'),
(9394, 'fa', 'label', 'Daily', 'روزانه', '2012-05-13 01:14:56'),
(9395, 'fa', 'label', 'Monthly', 'ماهانه', '2012-05-13 01:14:56'),
(9396, 'fa', 'label', 'Weekly', 'هفتگی', '2012-05-13 01:14:56'),
(9397, 'ru', 'common', 'Hello', 'Привет', '2024-07-17 15:16:33'),
(9398, 'ru', 'directory', 'Coupon Code', 'Код купона', '2012-11-09 11:03:15'),
(9399, 'ru', 'directory', 'couponcodenote', 'Используйте купон и получите [REDUCTION_PER], предложение для каждого популярного плагина!', '2012-11-09 11:03:15'),
(9400, 'ru', 'label', 'Daily', 'Ежедневно', '2024-07-17 15:17:22'),
(9401, 'ru', 'label', 'Monthly', 'Ежемесячно', '2024-07-17 15:17:22'),
(9402, 'ru', 'label', 'Weekly', 'Еженедельно', '2024-07-17 15:17:22'),
(9403, 'ru', 'panel', 'Archived Reports', 'Архив отчетов', '2024-07-17 15:19:14'),
(9404, 'ru', 'panel', 'Report Settings', 'Настройки отчетов', '2024-07-17 15:19:14'),
(9405, 'ru', 'panel', 'Schedule Reports', 'Расписание отчетов', '2024-07-17 15:19:14'),
(9406, 'ru', 'panel', 'Search Engine Manager', 'Редактор поисковых систем', '2024-07-17 15:19:14'),
(9407, 'ru', 'plugin', 'Download Seo Panel Plugins', 'Скачать плагины Seo Panel', '2012-05-13 07:10:56'),
(9408, 'ru', 'report', '2 Days', 'За 2 дня', '2012-05-13 07:14:32'),
(9409, 'ru', 'report', 'Email notification', 'Оповещение на Email', '2012-05-13 07:14:32'),
(9410, 'ru', 'report', 'keywordnumbercheckedcronnote', 'Примечание: по умолчанию 0, означает все ключевые слова должны быть проверены', '2012-05-13 07:14:32'),
(9411, 'ru', 'report', 'Next report generation time', 'В следующий раз генерировать отчеты', '2012-05-13 07:14:32'),
(9412, 'ru', 'report', 'Reports generation interval', 'Интервал генерации отчетов', '2012-05-13 07:14:32'),
(9413, 'ru', 'report', 'reportsettingssaved', 'Параметры отчетов успешно сохранены!', '2012-05-13 07:14:32'),
(9414, 'ru', 'report', 'sheduledsuccessfully', 'Запланированные отчеты успешно сгенерированы!', '2012-05-13 07:14:32'),
(9415, 'ru', 'reports', 'report_email_body_text1', 'Отчеты Seo Panel успешно созданы. Пожалуйста, ознакомьтесь с прилагаемыми отчетами. Запланированные отчеты успешно сгенерированы!', '2019-08-28 13:07:50'),
(9416, 'ru', 'reports', 'report_email_body_text2', 'Если отчеты не созданы, пожалуйста [LOGIN LINK] для просмотра из вашего вашего аккаунта.', '2019-08-28 13:07:50'),
(9417, 'ru', 'reports', 'report_email_subject', 'Ваш SEO отчеты успешно созданы', '2019-08-28 13:07:50'),
(9418, 'ru', 'searchengine', 'max_results', 'Максимальное количество результатов', '2012-05-13 07:35:44'),
(9419, 'ru', 'searchengine', 'no_of_results_page', 'Количество результатов на странице', '2012-05-13 07:35:44'),
(9420, 'ru', 'settings', 'entersmtpdetails', 'Введите конфигурацию SMTP', '2024-07-17 15:22:42'),
(9421, 'ru', 'settings', 'getallpluginfree', 'Также вы получите все <b> плагины </ B> которые мы разрабатываем <b> бесплатно! </ B>', '2024-07-17 15:22:42'),
(9422, 'ru', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Разрешить пользователям запланировать отчеты', '2024-07-17 15:22:42'),
(9423, 'ru', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Количество ключевых слов необходимо проверить при каждом выполнении Cron', '2024-07-17 15:22:42'),
(9424, 'ru', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Включить отправку отчетов на email', '2024-07-17 15:22:42'),
(9425, 'ru', 'settings', 'SP_SMTP_HOST', 'SMTP хост', '2024-07-17 15:22:42'),
(9426, 'ru', 'settings', 'SP_SMTP_MAIL', 'Включить SMTP', '2024-07-17 15:22:42'),
(9427, 'ru', 'settings', 'SP_SMTP_PASSWORD', 'Пароль SMTP', '2024-07-17 15:22:42'),
(9428, 'ru', 'settings', 'SP_SMTP_USERNAME', 'Пользователь SMTP', '2024-07-17 15:22:42'),
(9429, 'ru', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Интервал генерации системных отчетов', '2024-07-17 15:22:42'),
(9430, 'de', 'common', 'Hello', 'Hallo', '2021-06-15 01:46:19'),
(9431, 'de', 'directory', 'Coupon Code', 'Gutschein-Code', '2021-06-15 01:41:51'),
(9432, 'de', 'directory', 'couponcodenote', 'Mit diesem Gutschein erhalten Sie [REDUCTION_PER] auf Premium Eintragungen!', '2021-06-15 01:41:51'),
(9433, 'de', 'label', 'Daily', 'täglich', '2021-01-06 15:13:08'),
(9434, 'de', 'label', 'Monthly', 'monatlich', '2021-01-06 15:13:08'),
(9435, 'de', 'label', 'Weekly', 'wöchentlich', '2021-01-06 15:13:08'),
(9436, 'de', 'panel', 'Archived Reports', 'Archivierte Berichte', '2023-01-03 19:44:32'),
(9437, 'de', 'panel', 'Report Settings', 'Berichte Einstellungen', '2023-01-03 19:44:32'),
(9438, 'de', 'panel', 'Schedule Reports', 'Berichte zeitlich voreinstellen', '2023-01-03 19:44:32'),
(9439, 'de', 'panel', 'Search Engine Manager', 'Suchmaschinen-Verwaltung', '2023-01-03 19:44:32'),
(9440, 'de', 'plugin', 'Download Seo Panel Plugins', 'SEO Panel Plugins herunterladen', '2012-05-14 00:53:14'),
(9441, 'de', 'report', '2 Days', '2 Tage', '2012-05-14 00:55:46'),
(9442, 'de', 'report', 'Email notification', 'Email Benachrichtigung', '2012-05-14 00:55:50'),
(9443, 'de', 'report', 'keywordnumbercheckedcronnote', 'Notiz: Standard 0 bedeutet, dass alle Keywords überprüft werden sollen.', '2012-05-14 00:55:50'),
(9444, 'de', 'report', 'Next report generation time', 'Nächster Zeitpunkt zur Generierung von Berichten', '2012-05-14 00:55:51'),
(9445, 'de', 'report', 'Reports generation interval', 'Intervall zwischen Generierung von Berichten', '2012-05-14 00:55:52'),
(9446, 'de', 'report', 'reportsettingssaved', 'Bericht-Einstellungen erfolgreich gespeichert!', '2012-05-14 00:55:53'),
(9447, 'de', 'report', 'sheduledsuccessfully', 'Zeitlich voreingestellter Bericht wurde erfolgreich erstellt!', '2012-05-14 00:55:54'),
(9448, 'de', 'reports', 'report_email_body_text1', 'Berichte wurden im SEOPanel erfolgreich erstellt. Bitte Anhang überprüfen.', '2021-01-06 15:23:32'),
(9449, 'de', 'reports', 'report_email_body_text2', 'Falls die angehängten Berichte nicht funktionieren, bitte im SEOPanel einloggen: [LOGIN_LINK] ', '2021-01-06 15:23:32'),
(9450, 'de', 'reports', 'report_email_subject', 'SEO Berichte wurden erfolgreich generiert.', '2021-01-06 15:23:32'),
(9451, 'de', 'searchengine', 'max_results', 'Maxmimale Anzahl Ergebnisse', '2012-05-14 01:01:23'),
(9452, 'de', 'searchengine', 'no_of_results_page', 'Anzahl Ergebnisse pro Seite', '2012-05-14 01:01:24'),
(9453, 'de', 'settings', 'entersmtpdetails', 'Bitte Email-Einstellungen angeben (SMTP)', '2021-01-08 13:28:43'),
(9454, 'de', 'settings', 'getallpluginfree', 'Erhalte ausserdem alle <b>Plugins</b> die wir entwickeln <b>Gratis!</b>', '2021-01-08 13:28:43'),
(9455, 'de', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Benutzern erlauben Berichte zeitlich voreinzustellen', '2021-01-08 13:28:43'),
(9456, 'de', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Anzahl der Keywords, welche pro Cron-job überprüft werden sollen.', '2021-01-08 13:28:43'),
(9457, 'de', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Email-Benachrichtigung für Berichte erlauben', '2021-01-08 13:28:43'),
(9458, 'de', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2021-01-08 13:28:43'),
(9459, 'de', 'settings', 'SP_SMTP_MAIL', 'SMTP aktivieren', '2021-01-08 13:28:43'),
(9460, 'de', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Passwort', '2021-01-08 13:28:43'),
(9461, 'de', 'settings', 'SP_SMTP_USERNAME', 'SMTP Benutzername', '2021-01-08 13:28:43'),
(9462, 'de', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Intervall zwischen Generierungen von System-Berichten', '2021-01-08 13:28:43'),
(9463, 'fr', 'common', 'Hello', 'Bonjour', '2020-02-14 16:05:11'),
(9464, 'fr', 'directory', 'Coupon Code', 'Code de réduction', '2012-11-11 01:37:55'),
(9465, 'fr', 'directory', 'couponcodenote', 'Utilisez le code de réduction ci-dessus et gagnez [REDUCTION_PER] sur chaque envoi !', '2012-11-11 01:37:55'),
(9466, 'fr', 'label', 'Daily', 'Quotidien', '2020-02-14 16:12:40'),
(9467, 'fr', 'label', 'Monthly', 'Mensuel', '2020-02-14 16:12:40'),
(9468, 'fr', 'label', 'Weekly', 'Hebdomadaire', '2020-02-14 16:12:40'),
(9469, 'fr', 'panel', 'Archived Reports', 'Rapports archivés', '2020-02-14 16:14:52'),
(9470, 'fr', 'panel', 'Report Settings', 'Paramètres des rapports', '2020-02-14 16:14:52'),
(9471, 'fr', 'panel', 'Schedule Reports', 'Rapports planifiés', '2020-02-14 16:14:52'),
(9472, 'fr', 'panel', 'Search Engine Manager', 'Gestion des moteurs de recherche', '2020-02-14 16:14:52'),
(9473, 'fr', 'plugin', 'Download Seo Panel Plugins', 'Télécharger des modules Seo Panel', '2018-01-23 04:02:55'),
(9474, 'fr', 'report', '2 Days', '2 jours', '2018-01-23 03:35:42'),
(9475, 'fr', 'report', 'Email notification', 'Notification par mail', '2018-01-23 03:35:42'),
(9476, 'fr', 'report', 'keywordnumbercheckedcronnote', 'Note: La valeur 0 par défaut indique que tous les mots clés doivent être vérifiés', '2018-01-23 03:35:42'),
(9477, 'fr', 'report', 'Next report generation time', 'Date du prochain rapport', '2018-01-23 03:35:42'),
(9478, 'fr', 'report', 'Reports generation interval', 'Période de génération des rapports', '2018-01-23 03:35:42'),
(9479, 'fr', 'report', 'reportsettingssaved', 'Les paramètres des rapports ont bien été pris en compte !', '2018-01-23 03:35:42'),
(9480, 'fr', 'report', 'sheduledsuccessfully', 'La génération du rapport planifié s''est bien déroulée !', '2018-01-23 03:35:42'),
(9481, 'fr', 'reports', 'report_email_body_text1', 'Vos rapports Seo Panel ont bien été générés, et sont en pièces jointes.', '2012-05-14 15:50:36'),
(9482, 'fr', 'reports', 'report_email_body_text2', 'Si les rapports ci-dessus ne sont pas lisibles, utilisez ce lien pour vous connecter et voir les rapports en ligne directement depuis votre compte : [LOGIN_LINK]', '2012-05-14 15:50:36'),
(9483, 'fr', 'reports', 'report_email_subject', 'Vos rapports Seo Panel ont bien été générés.', '2012-05-14 15:50:36'),
(9484, 'fr', 'searchengine', 'max_results', 'Nombre maximum de résultats', '2012-05-14 15:51:14'),
(9485, 'fr', 'searchengine', 'no_of_results_page', 'Nombre de résultats par page', '2012-05-14 15:51:14'),
(9486, 'fr', 'settings', 'entersmtpdetails', 'Veuillez spécifier la configuration SMTP', '2019-03-28 18:39:30'),
(9487, 'fr', 'settings', 'getallpluginfree', 'Obtenez <b>gratuitement</b> tous les <b>plugins</b> que nous développons !', '2019-03-28 18:39:30'),
(9488, 'fr', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Autoriser les utilisateurs à planifier leurs rapports', '2019-03-28 18:39:30'),
(9489, 'fr', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Nombre de mots clés à vérifier à chaque execution périodique', '2019-03-28 18:39:30'),
(9490, 'fr', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Activer les notifications de rapports par mail', '2019-03-28 18:39:30'),
(9491, 'fr', 'settings', 'SP_SMTP_HOST', 'Serveur SMTP', '2019-03-28 18:39:30'),
(9492, 'fr', 'settings', 'SP_SMTP_MAIL', 'Activer SMTP', '2019-03-28 18:39:30'),
(9493, 'fr', 'settings', 'SP_SMTP_PASSWORD', 'Mot de passe SMTP', '2019-03-28 18:39:30'),
(9494, 'fr', 'settings', 'SP_SMTP_USERNAME', 'Utilisateur SMTP', '2019-03-28 18:39:30'),
(9495, 'fr', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Période de génération des rapports', '2019-03-28 18:39:30'),
(9496, 'ja', 'common', 'Hello', 'こんにちは', '2019-05-25 22:40:02'),
(9497, 'ja', 'directory', 'Coupon Code', 'クーポンコード', '2012-11-09 09:20:41'),
(9498, 'ja', 'directory', 'couponcodenote', '上記クーポンコードを使用して、特集中の各サブミッションへの[REDUCTION_PER]オファーを手に入れましょう!', '2012-11-09 09:20:41'),
(9499, 'ja', 'directory', 'Reciprocal Link', '相互リンク', '2012-11-09 09:20:41'),
(9500, 'ja', 'label', 'Daily', 'デイリー', '2019-04-01 13:45:51'),
(9501, 'ja', 'label', 'Monthly', 'マンスリー', '2019-04-01 13:45:51'),
(9502, 'ja', 'label', 'Weekly', 'ウィークリー', '2019-04-01 13:45:51'),
(9503, 'ja', 'panel', 'Archived Reports', 'アーカイブ済レポート', '2019-04-01 13:46:57'),
(9504, 'ja', 'panel', 'Report Settings', 'レポート設定', '2019-04-01 13:46:57'),
(9505, 'ja', 'panel', 'Schedule Reports', 'スケジュールレポート', '2019-04-01 13:46:57'),
(9506, 'ja', 'panel', 'Search Engine Manager', '検索エンジンマネージャー', '2019-04-01 13:46:57'),
(9507, 'ja', 'plugin', 'Download Seo Panel Plugins', 'Seo Panelプラグインをダウンロード', '2012-05-14 17:00:09'),
(9508, 'ja', 'report', '2 Days', '2日間', '2012-05-14 17:03:25'),
(9509, 'ja', 'report', 'Email notification', 'Eメール通知', '2012-05-14 17:03:25'),
(9510, 'ja', 'report', 'keywordnumbercheckedcronnote', '注意:デフォルトの「0」は、すべてのキーワードがチェックされます。', '2012-05-14 17:03:25'),
(9511, 'ja', 'report', 'Next report generation time', '次回レポート生成時間', '2012-05-14 17:03:25'),
(9512, 'ja', 'report', 'Reports generation interval', 'レポート生成間隔', '2012-05-14 17:03:25'),
(9513, 'ja', 'report', 'reportsettingssaved', 'レポート設定が正常に保存されました!', '2012-05-14 17:03:25'),
(9514, 'ja', 'report', 'sheduledsuccessfully', 'レポート生成が正常にスケジュールされました!', '2012-05-14 17:03:25'),
(9515, 'ja', 'reports', 'report_email_body_text1', 'レポートがseo panel内に生成されました。添付のレポートを確認してください。', '2012-05-14 17:06:46'),
(9516, 'ja', 'reports', 'report_email_body_text2', '上記のレポートが鮮明でない場合は、[LOGIN_LINK]して自身のアカウントから直接レポートを閲覧してください。', '2012-05-14 17:06:46'),
(9517, 'ja', 'reports', 'report_email_subject', 'SEOレポートが正常に生成されました', '2012-05-14 17:06:46'),
(9518, 'ja', 'searchengine', 'max_results', '最大結果数', '2012-05-14 17:08:29'),
(9519, 'ja', 'searchengine', 'no_of_results_page', 'ページ毎の結果数', '2012-05-14 17:08:29'),
(9520, 'ja', 'settings', 'entersmtpdetails', 'SMTPメール設定を入力してください。', '2019-04-01 13:52:17'),
(9521, 'ja', 'settings', 'getallpluginfree', '<b>無料!</b>で開発している<b>プラグイン</b>もすべて入手。', '2019-04-01 13:52:17'),
(9522, 'ja', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'ユーザがレポートをスケジュールすることを許可', '2019-04-01 13:52:17'),
(9523, 'ja', 'settings', 'SP_API_KEY', 'Seo Panel API キー', '2019-04-01 13:52:17'),
(9524, 'ja', 'settings', 'SP_NUMBER_KEYWORDS_CRON', '各cron実行において、キーワードの数はチェックする必要があります。', '2019-04-01 13:52:17'),
(9525, 'ja', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'レポートEメール通知を有効にする', '2019-04-01 13:52:17'),
(9526, 'ja', 'settings', 'SP_SMTP_HOST', 'SMTPホスト', '2019-04-01 13:52:17'),
(9527, 'ja', 'settings', 'SP_SMTP_MAIL', 'SMTPを有効にする', '2019-04-01 13:52:17'),
(9528, 'ja', 'settings', 'SP_SMTP_PASSWORD', 'SMTPパスワード', '2019-04-01 13:52:17'),
(9529, 'ja', 'settings', 'SP_SMTP_USERNAME', 'SMTPユーザ名', '2019-04-01 13:52:17'),
(9530, 'ja', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'システムレポート生成間隔', '2019-04-01 13:52:17'),
(9531, 'fa', 'panel', 'Archived Reports', 'گزارش های بایگانی شده', '2012-05-16 23:23:21'),
(9532, 'fa', 'panel', 'Report Settings', 'تنظیمات گزارش', '2012-05-16 23:23:21'),
(9533, 'fa', 'panel', 'Schedule Reports', 'گزارش های برنامه زمانبندی', '2012-05-16 23:23:21'),
(9534, 'fa', 'panel', 'Search Engine Manager', 'مدیریت موتورهای جستجو', '2012-05-16 23:23:21'),
(9535, 'fa', 'report', '2 Days', '2 روزه', '2012-05-16 23:27:00'),
(9536, 'fa', 'report', 'Email notification', 'هشدار از طریق ایمیل', '2012-05-16 23:27:00'),
(9537, 'fa', 'report', 'keywordnumbercheckedcronnote', 'توجه : حالت پیش فرض 0 یعنی همه کلمات چک شود', '2012-05-16 23:27:00'),
(9538, 'fa', 'report', 'Next report generation time', 'زمان ایجاد گزارش بعدی', '2012-05-16 23:27:00'),
(9539, 'fa', 'report', 'Reports generation interval', 'فاصله زمانی ساخت گزارش ها', '2012-05-16 23:27:00'),
(9540, 'fa', 'report', 'reportsettingssaved', 'تنظیمات گزارش با موفقیت ذخیره شد', '2012-05-16 23:27:00'),
(9541, 'fa', 'report', 'sheduledsuccessfully', 'ایجاد گزارش زمان بندی شده با موفقیت انجام شد', '2012-05-16 23:27:00'),
(9542, 'fa', 'reports', 'report_email_body_text1', 'گزارش های شما با موفقیت در سئوپنل ایجاد شد. لطفا گزارش های ضمیمه شده را مشاهده نمایید', '2012-05-16 23:30:57'),
(9543, 'fa', 'reports', 'report_email_body_text2', 'اگر گزارش های زیر شفاف نیست، از طریق لینک [LOGIN_LINK] می توانید گزارش ها را مستقیم در پنل کاربری خود مشاهده کنید', '2012-05-16 23:30:57'),
(9544, 'fa', 'reports', 'report_email_subject', 'گزارش های سئو شما با موفقیت ایجاد شد', '2012-05-16 23:30:58'),
(9545, 'fa', 'searchengine', 'max_results', 'بیشترین تعداد نتایج', '2012-05-16 23:33:11'),
(9546, 'fa', 'searchengine', 'no_of_results_page', 'تعداد نتیجه در هر صفحه', '2012-05-16 23:33:12'),
(9547, 'fa', 'settings', 'entersmtpdetails', 'لطفا تنظیمات SMTP ایمیل را وارد نمایید', '2012-05-17 00:03:34'),
(9548, 'fa', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'اجازه به کاربران برای گزارش های زمان بندی شده', '2012-05-17 00:03:34'),
(9549, 'fa', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'تعداد کلمات مورد نیاز که باید در هر اجرا چک شود', '2012-05-17 00:03:34'),
(9550, 'fa', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'فعال کردن آگاه شدن از طریق ایمیل', '2012-05-17 00:03:34'),
(9551, 'fa', 'settings', 'SP_SMTP_HOST', 'میزبان SMTP', '2012-05-17 00:03:34'),
(9552, 'fa', 'settings', 'SP_SMTP_MAIL', 'پذیرفتن SMTP', '2012-05-17 00:03:34'),
(9553, 'fa', 'settings', 'SP_SMTP_PASSWORD', 'گذرواژه SMTP', '2012-05-17 00:03:34'),
(9554, 'fa', 'settings', 'SP_SMTP_USERNAME', 'نام کاربری SMTP', '2012-05-17 00:03:34'),
(9555, 'fa', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'فاصله زمانی ایجاد گزارش سیستم', '2012-05-17 00:03:34'),
(9556, 'ro', 'common', 'Hello', 'Buna ziua', '2019-05-25 22:44:58'),
(9557, 'ro', 'directory', 'Coupon Code', 'Cod Cupon', '2012-05-19 00:52:34'),
(9558, 'ro', 'directory', 'couponcodenote', 'Folositi codul cuponului de mai sus si luati [REDUCTION_PER] oferit pentru fiecare serviciu trimis ', '2012-05-19 00:52:34'),
(9559, 'ro', 'label', 'Daily', 'Zilnic', '2012-05-19 01:00:22'),
(9560, 'ro', 'label', 'Monthly', 'Lunar', '2012-05-19 01:00:22'),
(9561, 'ro', 'label', 'Weekly', 'Saptamanal', '2012-05-19 01:00:22'),
(9562, 'ro', 'panel', 'Archived Reports', 'Rapoarte arhivate', '2012-05-19 01:04:43'),
(9563, 'ro', 'panel', 'Report Settings', 'Setari Rapoarte', '2012-05-19 01:04:43'),
(9564, 'ro', 'panel', 'Schedule Reports', 'Rapoarte Planificate', '2012-05-19 01:04:43'),
(9565, 'ro', 'panel', 'Search Engine Manager', 'Manager Motor de Cautare', '2012-05-19 01:04:43'),
(9566, 'ro', 'plugin', 'Download Seo Panel Plugins', 'Download Plugin-uri Seo Panel', '2012-05-19 01:05:13');
INSERT INTO `texts` VALUES
(9567, 'ro', 'report', '2 Days', '2 Zile', '2012-05-19 01:08:14'),
(9568, 'ro', 'report', 'Email notification', 'Notificare Email', '2012-05-19 01:08:14'),
(9569, 'ro', 'report', 'keywordnumbercheckedcronnote', 'Nota: Default 0 inseamna toate cuvintele trebuiesc verificate', '2012-05-19 01:08:14'),
(9570, 'ro', 'report', 'Next report generation time', 'Timp generare urmatorul raport', '2012-05-19 01:08:14'),
(9571, 'ro', 'report', 'Reports generation interval', 'Interval generare rapoarte', '2012-05-19 01:08:14'),
(9572, 'ro', 'report', 'reportsettingssaved', 'Setari raport salvate cu succes!', '2012-05-19 01:08:14'),
(9573, 'ro', 'report', 'sheduledsuccessfully', 'Raport planificat generat cu succes!', '2012-05-19 01:08:14'),
(9574, 'ro', 'reports', 'report_email_body_text1', 'Rapoartele dvs. generate cu succes in Panoul Seo. Va rugam verificati rapoartele din atash.', '2012-05-19 01:10:47'),
(9575, 'ro', 'reports', 'report_email_body_text2', 'Daca rapoartele de mai sus nu sunt clare, Va rugam [LOGIN_LINK] pentru a vedea rapoartele direct din contul dvs.', '2012-05-19 01:10:47'),
(9576, 'ro', 'reports', 'report_email_subject', 'Rapoartele dvs. Seo generate cu succes', '2012-05-19 01:10:47'),
(9577, 'ro', 'searchengine', 'max_results', 'Numar maxim de rezultate', '2012-05-19 01:11:22'),
(9578, 'ro', 'searchengine', 'no_of_results_page', 'Numar de rezultate pe pagina', '2012-05-19 01:11:22'),
(9579, 'ro', 'settings', 'entersmtpdetails', 'Va rugam introduceti configurariel SMTP de email', '2012-05-19 01:16:44'),
(9580, 'ro', 'settings', 'getallpluginfree', 'Deasemenea luati toate <b>plugin-urile</b> pe care le dezvoltam <b>Gratis!</b>', '2012-05-19 01:16:44'),
(9581, 'ro', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Permite utilizatorilor sa planifice rapoarte', '2012-05-19 01:16:44'),
(9582, 'ro', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Numar de cuvinte cheie trebuie sa fie verificat in fiecare executie cron', '2012-05-19 01:16:44'),
(9583, 'ro', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Activeaza notificare raport pe mail', '2012-05-19 01:16:44'),
(9584, 'ro', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2012-05-19 01:16:44'),
(9585, 'ro', 'settings', 'SP_SMTP_MAIL', 'Activeaza SMTP', '2012-05-19 01:16:44'),
(9586, 'ro', 'settings', 'SP_SMTP_PASSWORD', 'Parola SMTP', '2012-05-19 01:16:44'),
(9587, 'ro', 'settings', 'SP_SMTP_USERNAME', 'Utilizator SMTP', '2012-05-19 01:16:44'),
(9588, 'ro', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Interval generare raport system', '2012-05-19 01:16:44'),
(9589, 'nl', 'common', 'Hello', 'Hallo', '2019-05-25 22:06:08'),
(9590, 'nl', 'directory', 'Coupon Code', 'Coupon code', '2014-01-08 02:36:56'),
(9591, 'nl', 'directory', 'couponcodenote', 'Gebruik de bovenstaande coupon en krijg [REDUCTION_PER] korting voor elke succesvolle inschrijving!', '2014-01-08 02:36:56'),
(9592, 'nl', 'directory', 'Reciprocal Link', 'Reciprocal Link', '2014-01-08 02:36:56'),
(9593, 'nl', 'label', 'Daily', 'Dagelijks', '2014-01-08 02:37:43'),
(9594, 'nl', 'label', 'Monthly', 'Maandelijks', '2014-01-08 02:37:43'),
(9595, 'nl', 'label', 'Weekly', 'Wekelijks', '2014-01-08 02:37:43'),
(9596, 'nl', 'panel', 'Archived Reports', 'Gearchiveerde rapporten', '2014-01-08 02:46:33'),
(9597, 'nl', 'panel', 'Report Settings', 'Rapport instellingen', '2014-01-08 02:46:33'),
(9598, 'nl', 'panel', 'Schedule Reports', 'Rapporten plannen', '2014-01-08 02:46:33'),
(9599, 'nl', 'panel', 'Search Engine Manager', 'Search Engine Manager', '2014-01-08 02:46:33'),
(9600, 'nl', 'plugin', 'Download Seo Panel Plugins', 'Download Seo Panel Plugins', '2012-05-19 12:28:08'),
(9601, 'nl', 'report', '2 Days', '2 Dagen', '2012-05-19 12:41:13'),
(9602, 'nl', 'report', 'Email notification', 'E-mail waarschuwingen', '2012-05-19 12:41:13'),
(9603, 'nl', 'report', 'keywordnumbercheckedcronnote', 'Opmerking: Standaard 0 wilt zeggen dat alle keywords gecontroleerd moeten worden', '2012-05-19 12:41:13'),
(9604, 'nl', 'report', 'Next report generation time', 'Generatie van het volgende rapport', '2012-05-19 12:41:13'),
(9605, 'nl', 'report', 'Reports generation interval', 'Rapport generatie interval', '2012-05-19 12:41:13'),
(9606, 'nl', 'report', 'reportsettingssaved', 'Rapport instellingen succesvol opgeslagen!', '2012-05-19 12:41:13'),
(9607, 'nl', 'report', 'sheduledsuccessfully', 'Geplande rapport generatie succesvol!', '2012-05-19 12:41:13'),
(9608, 'nl', 'reports', 'report_email_body_text1', 'Uw rapporten werden succesvol gegenereerd in seo panel. Gelieve de rapporten in bijlage te bekijken.', '2012-05-19 12:34:32'),
(9609, 'nl', 'reports', 'report_email_body_text2', 'Indien de bovenstaande rapporten niet leesbaar zijn, bezoek [LOGIN_LINK] om uw rapporten direct in uw account te bekijken.', '2012-05-19 12:34:32'),
(9610, 'nl', 'reports', 'report_email_subject', 'Uw SEO rapporten werden succesvol gegenereerd', '2012-05-19 12:34:32'),
(9611, 'nl', 'searchengine', 'max_results', 'Maximum aantal resultaten', '2012-05-19 12:35:04'),
(9612, 'nl', 'searchengine', 'no_of_results_page', 'Aantal resultaten per pagina', '2012-05-19 12:35:05'),
(9613, 'nl', 'settings', 'entersmtpdetails', 'Gelieve uw SMTP mail configuratie in te vullen', '2014-01-08 02:51:05'),
(9614, 'nl', 'settings', 'getallpluginfree', 'Krijg ook alle <b>plugins</b> die we ontwikkelen <b>Gratis!</b>', '2014-01-08 02:51:05'),
(9615, 'nl', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Sta gebruikers toe rapporten te plannen', '2014-01-08 02:51:05'),
(9616, 'nl', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Aantal keywords dat per cron run moet gecontroleerd worden', '2014-01-08 02:51:05'),
(9617, 'nl', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Schakel rapport e-mail waarschuwingen in', '2014-01-08 02:51:05'),
(9618, 'nl', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2014-01-08 02:51:05'),
(9619, 'nl', 'settings', 'SP_SMTP_MAIL', 'Schakel SMTP in', '2014-01-08 02:51:05'),
(9620, 'nl', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Paswoord', '2014-01-08 02:51:05'),
(9621, 'nl', 'settings', 'SP_SMTP_USERNAME', 'SMTP Gebruikersnaam', '2014-01-08 02:51:05'),
(9622, 'nl', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Interval voor het genereren van een systeem rapport', '2014-01-08 02:51:05'),
(9623, 'hu', 'common', 'Hello', 'Szia', '2019-05-25 22:15:43'),
(9624, 'hu', 'directory', 'Coupon Code', 'Kupon kód', '2013-02-06 00:23:52'),
(9625, 'hu', 'directory', 'couponcodenote', 'Használd a fenti kupon kódot és fizess kevesebbet ([REDUCTION_PER] ) a kiemelt beküldésért!', '2013-02-06 00:23:52'),
(9626, 'hu', 'label', 'Daily', 'Napi', '2013-02-06 00:24:43'),
(9627, 'hu', 'label', 'Monthly', 'Havi', '2013-02-06 00:24:43'),
(9628, 'hu', 'label', 'Weekly', 'Heti', '2013-02-06 00:24:43'),
(9629, 'hu', 'panel', 'Archived Reports', 'Archivált jelentések', '2013-02-06 00:25:03'),
(9630, 'hu', 'panel', 'Report Settings', 'Jelentés Beállítása', '2013-02-06 00:25:03'),
(9631, 'hu', 'panel', 'Schedule Reports', 'Időzített Jelentés', '2013-02-06 00:25:03'),
(9632, 'hu', 'panel', 'Search Engine Manager', 'Keresőmotorok Kezelése', '2013-02-06 00:25:03'),
(9633, 'hu', 'plugin', 'Download Seo Panel Plugins', 'Seo Panel Bővítmények Letöltése', '2012-05-23 02:30:42'),
(9634, 'hu', 'report', '2 Days', '2 Nap', '2012-05-23 02:33:54'),
(9635, 'hu', 'report', 'Email notification', 'Értesítés Emailben', '2012-05-23 02:33:54'),
(9636, 'hu', 'report', 'keywordnumbercheckedcronnote', 'Megjegyzés: Az alapértelmezett 0 azt jelenti, hogy minden kulcsszóra ellenőrizve lesz', '2012-05-23 02:33:54'),
(9637, 'hu', 'report', 'Next report generation time', 'Következő jelentés készítésének ideje', '2012-05-23 02:33:54'),
(9638, 'hu', 'report', 'Reports generation interval', 'Jelentés készítésének üteme', '2012-05-23 02:33:54'),
(9639, 'hu', 'report', 'reportsettingssaved', 'A jelentés beállításai sikeresen el lettek mentve!', '2012-05-23 02:33:54'),
(9640, 'hu', 'report', 'sheduledsuccessfully', 'Az időzített jelentéskészítés sikeresen el lett készítve!', '2012-05-23 02:33:54'),
(9641, 'hu', 'searchengine', 'max_results', 'Találatok maximális száma', '2012-05-23 02:34:25'),
(9642, 'hu', 'searchengine', 'no_of_results_page', 'Találatok száma oldalanként', '2012-05-23 02:34:25'),
(9643, 'hu', 'settings', 'entersmtpdetails', 'SMTP mail beállítások', '2013-02-06 00:25:44'),
(9644, 'hu', 'settings', 'getallpluginfree', 'Also get all <b>plugins</b> we develop for <b>Free!</b>', '2013-02-06 00:25:44'),
(9645, 'hu', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Felhasználók készíthetnek időzített jelentést', '2013-02-06 00:25:44'),
(9646, 'hu', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Kulcsszavak száma az időzített vizsgálatkor', '2013-02-06 00:25:44'),
(9647, 'hu', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Értesítés emailben a jelentésről', '2013-02-06 00:25:44'),
(9648, 'hu', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2013-02-06 00:25:44'),
(9649, 'hu', 'settings', 'SP_SMTP_MAIL', 'SMTP Engedélyezése', '2013-02-06 00:25:44'),
(9650, 'hu', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Jelszó', '2013-02-06 00:25:44'),
(9651, 'hu', 'settings', 'SP_SMTP_USERNAME', 'SMTP Felhasználónév', '2013-02-06 00:25:44'),
(9652, 'hu', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'System report generation interval', '2013-02-06 00:25:44'),
(9653, 'hu', 'reports', 'report_email_body_text1', 'A jelentésed sikeresen elkészült a seo panelben. Kérlek tekintsd meg a csatolt jelentést.', '2012-05-23 02:38:17'),
(9654, 'hu', 'reports', 'report_email_body_text2', 'Ha a fenti jelentés nem világos, akkor lépjen be fiókjába: [LOGIN_LINK]', '2012-05-23 02:38:17'),
(9655, 'hu', 'reports', 'report_email_subject', 'A SEO jelentésed sikeresen elkészült', '2012-05-23 02:38:17'),
(9656, 'bg', 'common', 'Hello', 'Здравей', '2019-05-25 22:00:14'),
(9657, 'bg', 'directory', 'Coupon Code', 'Код за отстъпка', '2012-11-10 02:03:43'),
(9658, 'bg', 'directory', 'couponcodenote', 'Използвайте кода за отсъпка за да получите [REDUCTION_PER] за всяка топ публикация ', '2012-11-10 02:03:43'),
(9659, 'bg', 'label', 'Daily', 'Ежедневно', '2018-08-21 11:09:26'),
(9660, 'bg', 'label', 'Monthly', 'Месечно', '2018-08-21 11:09:26'),
(9661, 'bg', 'label', 'Weekly', 'Седмично', '2018-08-21 11:09:26'),
(9662, 'bg', 'panel', 'Archived Reports', 'Архивирани доклади', '2018-08-21 11:14:04'),
(9663, 'bg', 'panel', 'Report Settings', 'Настройки на доклад', '2018-08-21 11:14:04'),
(9664, 'bg', 'panel', 'Schedule Reports', 'График Доклади', '2018-08-21 11:14:04'),
(9665, 'bg', 'panel', 'Search Engine Manager', 'Управление на Търсачка', '2018-08-21 11:14:04'),
(9666, 'bg', 'plugin', 'Download Seo Panel Plugins', 'Изтегляне на Seo Panel Модули', '2012-05-28 22:53:11'),
(9667, 'bg', 'report', '2 Days', '2 Дни', '2012-05-28 22:59:04'),
(9668, 'bg', 'report', 'Email notification', 'Известяване по имейл', '2012-05-28 22:59:04'),
(9669, 'bg', 'report', 'keywordnumbercheckedcronnote', 'Внимание: 0 означава, че всички ключови думи трябва да се проверят ', '2012-05-28 22:59:04'),
(9670, 'bg', 'report', 'Next report generation time', 'Време до генериране на следващия доклад', '2012-05-28 22:59:04'),
(9671, 'bg', 'report', 'Reports generation interval', 'Интервал между генерирането на доклади', '2012-05-28 22:59:04'),
(9672, 'bg', 'report', 'reportsettingssaved', 'Настройките за доклада са запазени успешно!', '2012-05-28 22:59:04'),
(9673, 'bg', 'report', 'sheduledsuccessfully', 'Успешно генериране на планиран доклад!', '2012-05-28 22:59:04'),
(9674, 'bg', 'reports', 'report_email_body_text1', 'Вашите доклади са генерирани успешно в seo panel. Моля вижте прикачените доклади', '2012-05-28 23:01:33'),
(9675, 'bg', 'reports', 'report_email_body_text2', 'Ако докладите не са ясни, моля посетете за да разгледате докладите директно от вашият профил.', '2012-05-28 23:01:33'),
(9676, 'bg', 'reports', 'report_email_subject', 'Вашите SEO доклади са генерирани успешно', '2012-05-28 23:01:33'),
(9677, 'bg', 'searchengine', 'max_results', 'Максимален брой резултати', '2012-05-28 23:02:18'),
(9678, 'bg', 'searchengine', 'no_of_results_page', 'Брой резултати на страница', '2012-05-28 23:02:18'),
(9679, 'bg', 'settings', 'entersmtpdetails', 'Моля въведете SMTP mail конфигурация', '2018-08-21 11:24:42'),
(9680, 'bg', 'settings', 'getallpluginfree', 'Също получавате всички <b>модули</b>, които сме създали - <b>Безплатно!</b> ', '2018-08-21 11:24:42'),
(9681, 'bg', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Позволи на потребителите да създават планиран доклад', '2018-08-21 11:24:42'),
(9682, 'bg', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Брой на ключови думи, които да бъдат проверявани при всяко изпълнение на Cron', '2018-08-21 11:24:42'),
(9683, 'bg', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Включи известяване по имейл', '2018-08-21 11:24:42'),
(9684, 'bg', 'settings', 'SP_SMTP_HOST', 'SMTP Хост', '2018-08-21 11:24:42'),
(9685, 'bg', 'settings', 'SP_SMTP_MAIL', 'Включи SMTP ', '2018-08-21 11:24:42'),
(9686, 'bg', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Парола', '2018-08-21 11:24:42'),
(9687, 'bg', 'settings', 'SP_SMTP_USERNAME', 'SMTP Потр. име', '2018-08-21 11:24:42'),
(9688, 'bg', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Интервал за генериране на системен доклад', '2018-08-21 11:24:42'),
(9689, 'sk', 'directory', 'Coupon Code', 'Kód kupónu', '2013-04-30 14:33:42'),
(9690, 'sk', 'directory', 'couponcodenote', 'Použite kód kupónu a dostanete [REDUCTION_PER] ponuku pre každé vloženie!', '2013-04-30 14:33:42'),
(9691, 'sk', 'common', 'Hello', 'Ahoj', '2019-05-25 22:47:21'),
(9692, 'sk', 'label', 'Daily', 'Denne', '2013-04-30 14:34:36'),
(9693, 'sk', 'label', 'Monthly', 'Mesačne', '2013-04-30 14:34:36'),
(9694, 'sk', 'label', 'Weekly', 'Týždenne', '2013-04-30 14:34:36'),
(9695, 'sk', 'panel', 'Archived Reports', 'Uložené výpisy', '2013-04-30 14:34:59'),
(9696, 'sk', 'panel', 'Report Settings', 'Nastavenie výpisov', '2013-04-30 14:34:59'),
(9697, 'sk', 'panel', 'Schedule Reports', 'Plán výpisov', '2013-04-30 14:34:59'),
(9698, 'sk', 'panel', 'Search Engine Manager', 'Správca vyhľadávačov', '2013-04-30 14:34:59'),
(9699, 'sk', 'report', '2 Days', '2 dni', '2012-05-31 20:21:18'),
(9700, 'sk', 'report', 'Email notification', 'Oznámenie emailom', '2012-05-31 20:21:18'),
(9701, 'sk', 'report', 'keywordnumbercheckedcronnote', 'Poznámka: 0 znamená, že všetky kľúčové slová by mali byť kontrolované', '2012-05-31 20:21:18'),
(9702, 'sk', 'report', 'Next report generation time', 'Nasledovné vytvorenie výpisu', '2012-05-31 20:21:18'),
(9703, 'sk', 'report', 'Reports generation interval', 'Interval vytvárania výpisov', '2012-05-31 20:21:18'),
(9704, 'sk', 'report', 'reportsettingssaved', 'Nastavenie výpisu bolo úspešne uložené!', '2012-05-31 20:21:18'),
(9705, 'sk', 'report', 'sheduledsuccessfully', 'Plánovane vytvorenie výpisu bolo úspešné!', '2012-05-31 20:21:18'),
(9706, 'sk', 'reports', 'report_email_body_text1', 'Váš výpis bol úspešne vytvorený v seo paneli. Skontrolujte si priložené výpisy, prosím .', '2012-05-31 20:34:44'),
(9707, 'sk', 'reports', 'report_email_body_text2', 'Ak výpisy nie sú čisté, prosím [LOGIN_LINK], aby ste videli výpisy priamo z vášho účtu. ', '2012-05-31 20:34:44'),
(9708, 'sk', 'reports', 'report_email_subject', 'Vaše SEO výpisy boli úspešne vytvorené.', '2012-05-31 20:34:44'),
(9709, 'sk', 'searchengine', 'max_results', 'Maximálny počet výsledkov', '2012-05-31 20:35:13'),
(9710, 'sk', 'searchengine', 'no_of_results_page', 'Počet výsledkov na stránku', '2012-05-31 20:35:13'),
(9711, 'sk', 'settings', 'entersmtpdetails', 'Prosím vložte SMTP mailovú konfiguráciu', '2013-04-30 14:35:42'),
(9712, 'sk', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Povoliť užívateľom plánovať výpis', '2013-04-30 14:35:42'),
(9713, 'sk', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Počet kľúčových slov potrebných na kontrolu v každom crone', '2013-04-30 14:35:42'),
(9714, 'sk', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Zapnúť upozornenie výpisu emailom', '2013-04-30 14:35:42'),
(9715, 'sk', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2013-04-30 14:35:42'),
(9716, 'sk', 'settings', 'SP_SMTP_MAIL', 'Zapnúť SMTP', '2013-04-30 14:35:42'),
(9717, 'sk', 'settings', 'SP_SMTP_PASSWORD', 'Heslo SMTP', '2013-04-30 14:35:42'),
(9718, 'sk', 'settings', 'SP_SMTP_USERNAME', 'Užívateľské meno SMTP', '2013-04-30 14:35:42'),
(9719, 'sk', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Interval vytvárania výpisov systémom', '2013-04-30 14:35:42'),
(9720, 'pt', 'common', 'Hello', 'Olá', '2019-05-25 22:43:55'),
(9721, 'pt', 'directory', 'Coupon Code', 'codigo do cupon', '2012-11-11 01:59:13'),
(9722, 'pt', 'directory', 'couponcodenote', 'Use o código do cupon acima referido e tenha [REDUCTION_PER] a oferta por cada submissão destacada.', '2012-11-11 01:59:13'),
(9723, 'pt', 'label', 'Daily', 'Diariamente', '2018-01-26 00:11:22'),
(9724, 'pt', 'label', 'Monthly', 'Mensalmente', '2018-01-26 00:11:22'),
(9725, 'pt', 'label', 'Weekly', 'Semanalmente', '2018-01-26 00:11:22'),
(9726, 'pt', 'panel', 'Archived Reports', 'Relatórios arquivados', '2018-01-26 00:18:33'),
(9727, 'pt', 'panel', 'Report Settings', 'Definição dos Relatórios', '2018-01-26 00:18:33'),
(9728, 'pt', 'panel', 'Schedule Reports', 'Relatórios agendados', '2018-01-26 00:18:33'),
(9729, 'pt', 'panel', 'Search Engine Manager', 'Consola de Motores de Busca', '2018-01-26 00:18:33'),
(9730, 'pt', 'plugin', 'Download Seo Panel Plugins', 'Download dos Plugins do Seo Panel', '2012-06-01 23:11:02'),
(9731, 'pt', 'searchengine', 'max_results', 'Numero máximo de resultados', '2012-06-01 23:11:41'),
(9732, 'pt', 'searchengine', 'no_of_results_page', 'Numero de resultados por página', '2012-06-01 23:11:41'),
(9733, 'pt', 'settings', 'entersmtpdetails', 'Porfavor insira as configurações do smtp mail', '2018-01-26 00:23:30'),
(9734, 'pt', 'settings', 'getallpluginfree', 'Tambem tenha todos <b>plugins</b> que nos desenvolvemos <b>Free!</b>', '2018-01-26 00:23:30'),
(9735, 'pt', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Autorizar os utilizadores a agendar relatórios', '2018-01-26 00:23:30'),
(9736, 'pt', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Numero de keywords prescisas para serem executadas em cada cron', '2018-01-26 00:23:30'),
(9737, 'pt', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Activar os Relatórios por email', '2018-01-26 00:23:30'),
(9738, 'pt', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2018-01-26 00:23:30'),
(9739, 'pt', 'settings', 'SP_SMTP_MAIL', 'activar SMTP', '2018-01-26 00:23:30'),
(9740, 'pt', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Password', '2018-01-26 00:23:30'),
(9741, 'pt', 'settings', 'SP_SMTP_USERNAME', 'SMTP Username', '2018-01-26 00:23:30'),
(9742, 'pt', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Intervalo do relaório do sistema', '2018-01-26 00:23:30'),
(9743, 'pt', 'report', '2 Days', '2 dias', '2012-06-02 00:16:45'),
(9744, 'pt', 'report', 'Email notification', 'Notificação por Email', '2012-06-02 00:16:45'),
(9745, 'pt', 'report', 'keywordnumbercheckedcronnote', 'Nota: Default 0 significa todas as Keywords selecionadas', '2012-06-02 00:16:45'),
(9746, 'pt', 'report', 'Next report generation time', 'Próximo relatório tempo', '2012-06-02 00:16:45'),
(9747, 'pt', 'report', 'Reports generation interval', 'Intervalo entre relatórios', '2012-06-02 00:16:45'),
(9748, 'pt', 'report', 'reportsettingssaved', 'Configurações do relatório salvo com sucesso!', '2012-06-02 00:16:45'),
(9749, 'pt', 'report', 'sheduledsuccessfully', 'Geração do relatório agendado com sucesso!', '2012-06-02 00:16:45'),
(9750, 'pt', 'reports', 'report_email_body_text1', 'Os Seus Relatórios gerados com sucesso estão no Seo Panel. Por favor verifique os relatórios em anexo.', '2012-06-02 00:20:05'),
(9751, 'pt', 'reports', 'report_email_body_text2', 'Se os relatórios não estão em condições, por favor [LOGIN_LINK] para ver os relatórios directamente da sua conta.', '2012-06-02 00:20:05'),
(9752, 'pt', 'reports', 'report_email_subject', 'Os seus relatórios SEO gerados com sucesso.', '2012-06-02 00:20:05'),
(9753, 'vn', 'common', 'Hello', 'xin chào', '2019-05-25 22:54:57'),
(9754, 'vn', 'directory', 'Coupon Code', 'Coupon Code', '2014-01-10 09:05:11'),
(9755, 'vn', 'directory', 'couponcodenote', 'Sử dụng coupon code dưới và lấy [REDUCTION_PER] cung cấp cho mỗi tính năng!', '2014-01-10 09:05:11'),
(9756, 'vn', 'label', 'Daily', 'hàng ngày', '2014-01-10 09:07:44'),
(9757, 'vn', 'label', 'Monthly', 'hàng tháng', '2014-01-10 09:07:44'),
(9758, 'vn', 'label', 'Weekly', 'hàng tuần', '2014-01-10 09:07:44'),
(9759, 'el', 'common', 'Hello', 'Χαίρετε', '2019-08-28 09:40:52'),
(9760, 'el', 'directory', 'Coupon Code', 'Κωδικός κουπονιού', '2014-01-20 16:07:08'),
(9761, 'el', 'directory', 'couponcodenote', 'Χρησιμοποιήστε τον παραπάνω κωδικό κουπονιού και αποκτήστε [REDUCTION_PER] προσφορά για κάθε προτεινόμενη υποβολή! ', '2014-01-20 16:07:08'),
(9762, 'el', 'label', 'Daily', 'Καθημερινά', '2019-11-28 23:22:10'),
(9763, 'el', 'label', 'Monthly', 'Μηνιαίως ', '2019-11-28 23:22:10'),
(9764, 'el', 'label', 'Weekly', 'Εβδομαδιαίως', '2019-11-28 23:22:10'),
(9765, 'el', 'panel', 'Archived Reports', 'Αρχειοθετημένες αναφορές', '2019-08-28 09:42:17'),
(9766, 'el', 'panel', 'Report Settings', 'Ρυθμίσεις αναφορών', '2019-08-28 09:42:17'),
(9767, 'el', 'panel', 'Schedule Reports', 'Προγραμματισμός Αναφορών', '2019-08-28 09:42:17'),
(9768, 'el', 'panel', 'Search Engine Manager', 'Διαχείριση μηχανών αναζήτησης', '2019-08-28 09:42:17'),
(9769, 'el', 'plugin', 'Download Seo Panel Plugins', 'Κατεβάστε Seo Panel Plugins', '2012-06-03 01:56:43'),
(9770, 'el', 'report', '2 Days', '2 ημέρες', '2012-06-03 02:24:27'),
(9771, 'el', 'report', 'Email notification', 'Ενημέρωση στο email', '2012-06-03 02:24:27'),
(9772, 'el', 'report', 'keywordnumbercheckedcronnote', 'Σημείωση: Η Προεπιλογή είναι το 0 που σημαίνει ότι όλες οι λέξεις κλειδιά πρέπει να επιλεγούν', '2012-06-03 02:24:27'),
(9773, 'el', 'report', 'Next report generation time', 'Χρόνος παραγωγής της επόμενης αναφοράς', '2012-06-03 02:24:27'),
(9774, 'el', 'report', 'Reports generation interval', 'Χρονικό διάστημα παραγωγής αναφορών', '2012-06-03 02:24:27'),
(9775, 'el', 'report', 'reportsettingssaved', 'Ρυθμίσεις αναφορών αποθηκεύτηκαν επιτυχώς!\r\n', '2012-06-03 02:24:27'),
(9776, 'el', 'report', 'sheduledsuccessfully', 'Η προγραμματισμένη παραγωγή αναφορών πραγματοποιήθηκε!', '2012-06-03 02:24:27'),
(9777, 'el', 'reports', 'report_email_body_text1', 'Οι αναφορές σας δημιουργήθηκαν με επιτυχία στο seo panel. Παρακαλώ ελέγξτε τις συνημμένες αναφορές.', '2019-08-28 09:42:55'),
(9778, 'el', 'reports', 'report_email_body_text2', 'Αν οι παραπάνω αναφορές δεν είναι ξεκάθαρες, Παρακαλώ [LOGIN_LINK] για να δείτε τις αναφορές απευθείας από τον λογαριασμό σας.', '2019-08-28 09:42:55'),
(9779, 'el', 'reports', 'report_email_subject', 'Οι SEO αναφορές σας δημιουργήθηκαν με επιτυχία', '2019-08-28 09:42:55'),
(9780, 'el', 'searchengine', 'max_results', 'Μέγιστος αριθμός αποτελεσμάτων', '2012-06-03 02:29:39'),
(9781, 'el', 'searchengine', 'no_of_results_page', 'Αριθμός αποτελεσμάτων ανά σελίδα', '2012-06-03 02:29:39'),
(9782, 'el', 'settings', 'entersmtpdetails', 'Παρακαλώ εισάγετε τις ρυθμίσεις για το SMTP mail', '2019-08-28 09:43:40'),
(9783, 'el', 'settings', 'getallpluginfree', 'Επίσης κατεβάστε όλα τα <b>plugins</b> που υλοποιούμε <b>δωρεάν!</b>', '2019-08-28 09:43:40'),
(9784, 'el', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Επιτρέψτε στους χρήστες να προγραμματίσουν αναφορές', '2019-08-28 09:43:40'),
(9785, 'el', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Αριθμός των λέξεων κλειδιών που θα μετρηθούν σε κάθε εκτέλεση cron', '2019-08-28 09:43:40'),
(9786, 'el', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Ενεργοποίηση ειδοποιήσεων αναφορών με email', '2019-08-28 09:43:40'),
(9787, 'el', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2019-08-28 09:43:40'),
(9788, 'el', 'settings', 'SP_SMTP_MAIL', 'Ενεργοποίηση SMTP', '2019-08-28 09:43:40'),
(9789, 'el', 'settings', 'SP_SMTP_PASSWORD', 'Κωδικός SMTP', '2019-08-28 09:43:40'),
(9790, 'el', 'settings', 'SP_SMTP_USERNAME', 'Όνομα χρήστη SMTP', '2019-08-28 09:43:40'),
(9791, 'el', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Χρονικό διάστημα παραγωγής αναφορών συστήματος', '2019-08-28 09:43:40'),
(9792, 'pt-br', 'support', 'support_cont1', '<fieldset> \r\n<legend>Sistema de Suporte do SEO Panel</legend> \r\n<ul class="infobox"> \r\n <li> \r\n <h1>Pacote com 1000 Diretórios</h1> \r\n <p> \r\n Nós estamos fornecendo <b>um pacote com 1000 diretórios ativos e gratuitos</b>, para adicioná-los em seu SEO Panel, use <b>a ferramenta de envio de diretórios</b>. \r\n Isto era te ajudar a <b>alavancar o número de backlinks</b> dos seus websites. \r\n Atualmente a lista com 1000 diretórios é <b>utilizada</b> para coletar doações que ajudarão no <b>desenvolvimento do futuro</b> do SEO Panel. \r\n Para ter acesso à lista com os 1000 diretórios, por favor <a href="<?=SP_DONATE_LINK?>" target="_blank">faça uma doação</a>\r\nde US$ 10,00 ou mais para auxiliar na criação de melhorias para as funções do SEO Panel. \r\n Se você tiver alguma dúvida sobre o pacote de 1000 diretórios, por favor <a href="<?=SP_CONTACT_LINK?>"\r\ntarget="_blank">entre em contato conosco</a> ou abra um ticket em nosso <a href="<?=SP_SUPPORT_LINK?>"\r\ntarget="_blank">sistema de suporte</a>. \r\n </p> \r\n <p> \r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visite este link para doar ao SEO Panel</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Local Search Engines Package</h1> \r\n <p> \r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr\r\netc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally. \r\n To get local search engines package(according to your requirement) please <a\r\nhref="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo\r\npanel. \r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to\r\nprovide us required search engine domain list. \r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker,\r\nplease <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a\r\nhref="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit"> \r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a> \r\n </p> \r\n <br> \r\n </li> \r\n \r\n <li> \r\n <h1>Seo Panel Plugins</h1> \r\n <p> \r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your\r\nrequirement. \r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel\r\nand third party sites. \r\n You can also easily <b>develop</b> seo plugins for your seo panel. \r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and\r\nwe will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p> \r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Contact Us</h1> \r\n <p> \r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below\r\nlink. \r\n </p> \r\n <p> \r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Support Tickets</h1> \r\n <p> \r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and\r\nfeatures</b>. Eg: To set up cron for keyword position checker. \r\n </p> \r\n <p> \r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a> \r\n </p> \r\n <br> \r\n </li> \r\n <li> \r\n <h1>Report Bugs</h1> \r\n <p> \r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p> \r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a> \r\n </p> \r\n <br> \r\n </li> \r\n</ul> \r\n</fieldset>', '2014-02-12 17:44:55'),
(9793, 'pt-br', 'support', 'support_cont2', '<fieldset>\r\nRecursos <legend> Seo Panel on-line </ legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n Guia de Ajuda <h1> Seo Panel </ h1>\r\n <p>\r\n Você pode ver a <a href = "< ? = SP_HELP_LINK > " target = "_blank" > documentação do painel seo </ a> no\r\nguia de ajuda <b> < / b> , que contém a documentação <b> < / b> para as ferramentas do painel de seo , plugins, recursos entre outros.\r\n <br> É o melhor lugar na internet para obter ajuda <b> </ b> sobre o painel seo . Esperamos que você\r\n<b> < / b> contribua para a guia do painel de ajuda seo, se você encontrar erros ou coisas que faltam .\r\n </ p>\r\n <p>\r\n <a href = "< ? = SP_HELP_LINK > " target = "_blank" > Visite seo guia painel de ajuda </ a>\r\n </ p>\r\n <br>\r\n </ li>\r\n <li>\r\n <h1> Seo Panel Forum </ h1>\r\n <p>\r\n Um lugar para discutir sobre o painel de controle seo fonte <b> primeiro aberto do mundo </ b> .\r\n É o melhor lugar para encontrar as respostas <b> </ b> para <b> suas perguntas </ b > sobre o painel de seo .\r\n <br> Também você pode <b> share </ b> sua experiência <b> < / b> ao usar o painel de SEO para otimizar seu websites.\r\n </ p>\r\n <p>\r\n <a href = "< ? = SP_FORUM_LINK > " target = "_blank" > fórum painel seo Visita </ a>\r\n </ p>\r\n <br>\r\n </ li>\r\n</ ul>\r\n</ fieldset >', '2014-02-12 17:44:55'),
(9794, 'pt-br', 'support', 'support_cont3', '<fieldset> \r\n<legend> Faça uma doação para Seo Panel </ legend> \r\n<ul class="infobox"> \r\n <li> \r\n <h1> Doar para Seo Panel - painel de controle seo Primeiro Open source no mundo </ h1> \r\n <p> \r\n <b> Doe </ b> para seo painel de apoiar primeiro painel de controle seo open source no mundo. \r\n Estamos planejando para <b> adicionar e melhorar </ b> características do painel de seo no futuro. \r\n Vá com todo o seu apoio <b> </ b> só nós podemos alcançar nossos objetivos <b> </ b>. \r\n Se você sentir que o painel seo vale <b> </ b> para você, por favor doe alguma quantia para seo time painel. \r\n <br> Vamos <b> publicar </ b> o seu nome e informações do site em <a href = "<? = SP_DONATE_LINK>" \r\ntarget = "_blank"> página de doação </ a>, uma vez que temos de doação. \r\n </ p> \r\n <p> \r\n <a href = "<? = SP_DONATE_LINK>" target = "_blank"> Visite este link para doar para seo painel </ a> \r\n </ p> \r\n <br> \r\n </ li> \r\n</ ul> \r\n</ fieldset>', '2014-02-12 17:44:55'),
(34677, 'no', 'siteauditor', 'Crawling Page', 'Crawling Side', '2025-11-21 01:20:43'),
(34678, 'no', 'siteauditor', 'Duplicate Description', 'Duplicate Beskrivelse', '2025-11-21 01:20:43'),
(34675, 'no', 'siteauditor', 'Crawled Pages', 'Crawled Sider', '2025-11-21 01:20:43'),
(34672, 'no', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will Økning the execution Tid of a Prosjekt', '2025-11-21 01:20:43'),
(34671, 'no', 'siteauditor', 'Check Score', 'Check Poengsum', '2025-11-21 01:20:43'),
(34670, 'no', 'siteauditor', 'Check pages indexed or not', 'Check Sider indexed or not', '2025-11-21 01:20:43'),
(34669, 'no', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of Sider', '2025-11-21 01:20:43'),
(9805, 'en', 'common', 'Powered by', 'Powered by', '2019-08-06 10:09:56'),
(9806, 'en', 'common', 'Home', 'Home', '2019-08-06 10:09:56'),
(9807, 'en', 'common', 'Dashboard', 'Dashboard', '2019-08-06 10:09:56'),
(9808, 'lt', 'backlink', 'clickproceedbacklink', 'Įveskite URL <b> po vieną eilutėje </ b>. Spauskite ant <b> Tęsti </ b> pradėti tikrinti atgalines nuorodas', '2014-01-12 16:20:04'),
(9809, 'lt', 'backlink', 'Saved backlink results of', 'Išsaugoti atgalinių nuorodų sąrašą', '2014-01-12 16:20:04'),
(9810, 'lt', 'button', 'Cancel', 'Atšaukti', '2014-01-12 16:21:04'),
(9811, 'lt', 'button', 'Check Status', 'Patikrinti statusą', '2014-01-12 16:21:04'),
(9812, 'lt', 'button', 'Proceed', 'Pradėti', '2014-01-12 16:21:04'),
(9813, 'lt', 'button', 'Reload', 'Atnaujinti', '2014-01-12 16:21:04'),
(9814, 'lt', 'button', 'Show Details', 'Išsamiau', '2014-01-12 16:21:04'),
(9815, 'lt', 'button', 'Show Records', 'Rodyti įrašus', '2014-01-12 16:21:04'),
(9816, 'lt', 'button', 'Skip', 'Praleisti', '2014-01-12 16:21:04'),
(9817, 'lt', 'button', 'Submit', 'Pateikti', '2014-01-12 16:21:04'),
(9818, 'lt', 'common', 'Action', 'Veiksmas', '2019-05-25 22:41:16'),
(9819, 'lt', 'common', 'Activate', 'Aktyvuoti', '2019-05-25 22:41:16'),
(9820, 'lt', 'common', 'Active', 'Aktyvus', '2019-05-25 22:41:16'),
(9821, 'lt', 'common', 'Admin Panel', 'Administratoriaus pultas', '2019-05-25 22:41:16'),
(9822, 'lt', 'common', 'Alexa Rank', 'Alexa reitingas', '2019-05-25 22:41:16'),
(9823, 'lt', 'common', 'All', 'Visi', '2019-05-25 22:41:16'),
(9824, 'lt', 'common', 'Category', 'Kategorija', '2019-05-25 22:41:16'),
(9825, 'lt', 'common', 'contact', 'Kontaktai', '2019-05-25 22:41:16'),
(9826, 'lt', 'common', 'copyright', '© [year] www.seopanel.in Visos teisės saugomos', '2019-05-25 22:41:16'),
(9827, 'lt', 'common', 'Country', 'Šalis', '2019-05-25 22:41:16'),
(9828, 'lt', 'common', 'Crawl Meta Data', 'Nuskaityti meta duomenis', '2019-05-25 22:41:16'),
(9829, 'lt', 'common', 'Dashboard', 'Prietaisų skydas', '2019-05-25 22:41:16'),
(9830, 'lt', 'common', 'Date', 'Data', '2019-05-25 22:41:16'),
(9831, 'lt', 'common', 'Delete', 'Ištrinti', '2019-05-25 22:41:16'),
(9832, 'lt', 'common', 'Details', 'Išsami informacija', '2019-05-25 22:41:16'),
(9833, 'lt', 'common', 'Directory', 'Direktorija', '2019-05-25 22:41:16'),
(9834, 'lt', 'common', 'Donate', 'Paaukoti', '2019-05-25 22:41:16'),
(9835, 'lt', 'common', 'Edit', 'Redaguoti', '2019-05-25 22:41:16'),
(9836, 'lt', 'common', 'Entry cannot be blank', 'Įrašas negali būti tuščias', '2019-05-25 22:41:16'),
(9837, 'lt', 'common', 'entrynotvalid', 'Neteisingai įvesta informacija', '2019-05-25 22:41:16'),
(9838, 'lt', 'common', 'failed', 'Nepavyko', '2019-05-25 22:41:16'),
(9839, 'lt', 'common', 'forum', 'Forumas', '2019-05-25 22:41:16'),
(9840, 'lt', 'common', 'Found', 'Rasta', '2019-05-25 22:41:16'),
(9841, 'lt', 'common', 'Google Pagerank', 'Google PR', '2019-05-25 22:41:16'),
(9842, 'lt', 'common', 'Hello', 'Sveiki', '2019-05-25 22:41:16'),
(9843, 'lt', 'common', 'help', 'Pagalba', '2019-05-25 22:41:16'),
(9844, 'lt', 'common', 'hidenews', 'Slėpti SEO Panel naujienas', '2019-05-25 22:41:16'),
(9845, 'lt', 'common', 'Home', 'Pradžia', '2019-05-25 22:41:16'),
(9846, 'lt', 'common', 'Id', 'Id', '2019-05-25 22:41:16'),
(9847, 'lt', 'common', 'Inactivate', 'Deaktyvuoti', '2019-05-25 22:41:16'),
(9848, 'lt', 'common', 'Inactive', 'Neveiklus', '2019-05-25 22:41:16'),
(9849, 'lt', 'common', 'Invalid characters', 'Yra neleistinų simbolių', '2019-05-25 22:41:16'),
(9850, 'lt', 'common', 'Invalid code entered', 'Neteisingas kodas', '2019-05-25 22:41:16'),
(9851, 'lt', 'common', 'Invalid email address entered', 'Neteisingas elektroninio pašto adresas', '2019-05-25 22:41:16'),
(9852, 'lt', 'common', 'Invalid value', 'Neteisingai įvesta', '2019-05-25 22:41:16'),
(9853, 'lt', 'common', 'Keyword', 'Raktinis žodis', '2019-05-25 22:41:16'),
(9854, 'lt', 'common', 'Keywords', 'Raktiniai žodžiai', '2019-05-25 22:41:16'),
(9855, 'lt', 'common', 'lang', 'Kalba', '2019-05-25 22:41:16'),
(9856, 'lt', 'common', 'My Account', 'Mano anketa', '2019-05-25 22:41:16'),
(9857, 'lt', 'common', 'Name', 'Vardas', '2019-05-25 22:41:16'),
(9858, 'lt', 'common', 'No', 'Ne', '2019-05-25 22:41:16'),
(9859, 'lt', 'common', 'No Keywords Found', 'Nerasta raktinių žodžių', '2019-05-25 22:41:16'),
(9860, 'lt', 'common', 'No Records Found', 'Įrašų nerasta', '2019-05-25 22:41:16'),
(9861, 'lt', 'common', 'noactivetools', 'Nėra aktyvių SEO įrankių', '2019-05-25 22:41:16'),
(9862, 'lt', 'common', 'nowebsites', 'Svetainių nerasta', '2019-05-25 22:41:16'),
(9863, 'lt', 'common', 'password632', 'Slaptažodio ilgis turėtų būti nuo 6 iki 32 simbolių', '2019-05-25 22:41:16'),
(9864, 'lt', 'common', 'passwordnotmatch', 'Slaptažodžiai nesutampa', '2019-05-25 22:41:16'),
(9865, 'lt', 'common', 'Period', 'Laikotarpis', '2019-05-25 22:41:16'),
(9866, 'lt', 'common', 'Powered by', 'Sukurta', '2019-05-25 22:41:16'),
(9867, 'lt', 'common', 'Priority', 'Prioritetas', '2019-05-25 22:41:16'),
(9868, 'lt', 'common', 'Profile', 'Paskyra', '2019-05-25 22:41:16'),
(9869, 'lt', 'common', 'Rank', 'Užimama vieta', '2019-05-25 22:41:16'),
(9870, 'lt', 'common', 'Reports', 'Ataskaitos', '2019-05-25 22:41:16'),
(9871, 'lt', 'common', 'Results', 'Rezultatai', '2019-05-25 22:41:16'),
(9872, 'lt', 'common', 'Search Engine', 'Paieškos sistema', '2019-05-25 22:41:16'),
(9873, 'lt', 'common', 'Select', 'Pasirinkimas', '2019-05-25 22:41:16'),
(9874, 'lt', 'common', 'Seo Plugins', 'Seo įskiepiai', '2019-05-25 22:41:16'),
(9875, 'lt', 'common', 'Seo Tools', 'SEO įrankiai', '2019-05-25 22:41:16'),
(9876, 'lt', 'common', 'Sign out', 'Atsijungti', '2019-05-25 22:41:16'),
(9877, 'lt', 'common', 'Sign Up', 'Registruotis', '2019-05-25 22:41:16'),
(9878, 'lt', 'common', 'signin', 'Prisijungti', '2019-05-25 22:41:16'),
(9879, 'lt', 'common', 'Status', 'Būsena', '2019-05-25 22:41:16'),
(9880, 'lt', 'common', 'Support', 'Palaikymas', '2019-05-25 22:41:16'),
(9881, 'lt', 'common', 'Total', 'Viso', '2019-05-25 22:41:16'),
(9882, 'lt', 'common', 'Url', 'Url', '2019-05-25 22:41:16'),
(9883, 'lt', 'common', 'User', 'Vartotojas', '2019-05-25 22:41:16'),
(9884, 'lt', 'common', 'User Panel', 'Vartotojo skydelis', '2019-05-25 22:41:16'),
(9885, 'lt', 'common', 'Website', 'Internetinė svetainė', '2019-05-25 22:41:16'),
(9886, 'lt', 'common', 'Yes', 'Taip', '2019-05-25 22:41:16'),
(9887, 'lt', 'user', 'Edit User', 'Redaguoti naudotojo duomenis', '2012-11-07 15:23:49'),
(9888, 'lt', 'user', 'Saved My Profile Details', 'Išsaugoti mano profilio informaciją', '2012-11-07 15:23:49'),
(9889, 'lt', 'website', 'Edit Website', 'Redaguokite svetainę', '2012-11-07 15:26:53'),
(9890, 'lt', 'website', 'plscrtwebsite', 'Prašome sukurti interneto svetainę, prieš pradėdant naudotis SEO įrankiais ir SEO įskiepais, papilomomis programomis.', '2012-11-07 15:26:53'),
(9891, 'lt', 'website', 'Website already exist', 'Žiniatinklio svetainė jau egzistuoja', '2012-11-07 15:26:53'),
(9892, 'lt', 'website', 'yourwebalreday', 'Jūsų žiniatinklio svetainė, jau sukurta.', '2012-11-07 15:26:53'),
(9893, 'lt', 'sitemap', 'Change frequency', 'Pakeisti dažni', '2012-11-07 15:31:16'),
(9894, 'lt', 'sitemap', 'clickproceedsitemap', 'Spauskite ant <b> tęsti </ b>, kad sukurtumėte failą Sitemap', '2012-11-07 15:31:16'),
(9895, 'lt', 'sitemap', 'Download sitemap file from', 'Atsisiųsti Sitemap failą iš', '2012-11-07 15:31:16'),
(9896, 'lt', 'sitemap', 'Exclude Url', 'neįtraukti URL', '2012-11-07 15:31:16'),
(9897, 'lt', 'sitemap', 'processtaketime', 'Šis procesas užtruks šiek tiek laiko pagal savo svetainės nuorodų skaičių. Prašome palaukti, kad gauti Sitemap failą', '2012-11-07 15:31:16'),
(9898, 'lt', 'sitemap', 'Sitemap Type', 'Sitemp - Svetainės struktūros tipas', '2012-11-07 15:31:16'),
(9899, 'lt', 'searchengine', 'max_results', 'Maksimalus rezultatų skaičius', '2012-11-07 15:32:33'),
(9900, 'lt', 'searchengine', 'no_of_results_page', 'Rezultatų skaičius puslapyje', '2012-11-07 15:32:33'),
(9901, 'lt', 'saturation', 'clickproceedsaturation', 'Įeikite į URL\\''S <b> Vienas per liniją </b>. Paspauskite <b>, Tęsiasi </b>, kad tikrintų Paieškos sistemos Prisotinimo Rezultatus', '2012-11-07 15:35:47'),
(9902, 'lt', 'saturation', 'GenerateSaturationReports', 'Sukurkite Paieškos sistemos Prisotinimo Pranešimua', '2012-11-07 15:35:47'),
(9903, 'lt', 'saturation', 'Quick Search Engine Saturation Checker', 'Greitas Paieškos sistemos Prisotinimo Kontrolierius', '2012-11-07 15:35:47'),
(9904, 'lt', 'saturation', 'Saved Search Engine Saturation results of', 'Išsaugoti paieškos sistema Saturation rezultatus', '2012-11-07 15:35:47'),
(9905, 'lt', 'saturation', 'Search Engine Saturation Reports', 'Paieškos sistemos Prisotinimo Pranešimai', '2012-11-07 15:35:47'),
(9906, 'lt', 'reports', 'report_email_body_text1', 'Jūsų ataskaitos sugeneruota sėkmingai SEO skydelyje. Prašome patikrinti pridedamas ataskaitas.', '2012-11-07 15:38:34'),
(9907, 'lt', 'reports', 'report_email_body_text2', 'Jei pirmiau minėtos ataskaitos neaišku, prašome [LOGIN_LINK] norėdami peržiūrėti ataskaitas tiesiai iš savo sąskaitos.', '2012-11-07 15:38:34'),
(9908, 'lt', 'reports', 'report_email_subject', 'Jūsų SEO ataskaitos sugeneruotos sėkmingai', '2012-11-07 15:38:34'),
(9909, 'lt', 'report', '2 Days', '2 dienos', '2014-01-12 16:54:21'),
(9910, 'lt', 'report', 'Email notification', 'Priminimas el.paštu', '2014-01-12 16:54:21'),
(9911, 'lt', 'report', 'keywordnumbercheckedcronnote', 'Pastaba: pagal nutylėjimą 0 reiškia, turėtų būti tikrinami visi raktiniai žodžiai', '2014-01-12 16:54:21'),
(9912, 'lt', 'report', 'Next report generation time', 'Kita ataskaita kartos laikas', '2014-01-12 16:54:21'),
(9913, 'lt', 'report', 'Reports generation interval', 'Ataskaitų generavimo intervalas', '2014-01-12 16:54:21'),
(9914, 'lt', 'report', 'reportsettingssaved', 'Pranešimo nustatymai, išsaugoti sėkmingai!', '2014-01-12 16:54:21'),
(9915, 'lt', 'report', 'sheduledsuccessfully', 'Suplanuotas pranešimo generavimas sėkmingas!', '2014-01-12 16:54:21'),
(9916, 'lt', 'rank', 'enterurlproceed', 'Įveskite URL adreso <b> po vieną eilutėje </ b>.Spauskite ant <b> Tęsti </ b>, siekiant patikrinti Google ir Alexa rangą.', '2012-11-07 15:44:33'),
(9917, 'lt', 'rank', 'Google and Alexa Rank Reports', 'Google ir Alexa Rango Pranešimai', '2012-11-07 15:44:33'),
(9918, 'lt', 'rank', 'Saved rank results of', 'Išsaugotieji rango rezultatai', '2012-11-07 15:44:33'),
(9919, 'lt', 'proxy', 'Edit Proxy', 'Redaguoti Proxy', '2014-01-12 16:53:26'),
(9920, 'lt', 'proxy', 'Proxy Password', 'Proxy slaptažodis', '2014-01-12 16:53:26'),
(9921, 'lt', 'proxy', 'Proxy Username', 'Proxy vartotojo vardas', '2014-01-12 16:53:26'),
(9922, 'lt', 'proxy', 'Proxyalreadyexist', 'Proxy jau egzistuoja!', '2014-01-12 16:53:26'),
(9923, 'lt', 'plugin', 'Download Seo Panel Plugins', 'Parsisiųsti SEO Panel Įskiepus, papildomas programas', '2012-11-07 15:48:56'),
(9924, 'lt', 'plugin', 'Edit Seo Plugin', 'Redaguoti SEO įskiepa, papildomą programą', '2012-11-07 15:48:56'),
(9925, 'lt', 'plugin', 'Plugin Name', 'Įskiepo, papildomos programas pavadinimas', '2012-11-07 15:48:56'),
(9926, 'lt', 'plugin', 'Seo Plugin Details', 'Seo įskiepo, papildomos programos Detalės', '2012-11-07 15:48:56'),
(9927, 'lt', 'directory', 'Add back to directory list', 'Įdėkite atgal į direktorijų sąrašą', '2014-01-12 16:36:58'),
(9928, 'lt', 'directory', 'Approved', 'Patvirtinta', '2014-01-12 16:36:58'),
(9929, 'lt', 'directory', 'Captcha', 'Captcha', '2014-01-12 16:36:58'),
(9930, 'lt', 'directory', 'categorynote', 'Kategorijos, atskirkite juos su kableliu pagal prioritetą. Pradėkite nuo aukščiausio prioriteto kategorijos.', '2014-01-12 16:36:58'),
(9931, 'lt', 'directory', 'Check Directory Status', 'Patikrinkite katalogo statusą', '2014-01-12 16:36:58'),
(9932, 'lt', 'directory', 'Check Directory Submission Status', 'Patikrinkite pateikimo į katalogus būseną.', '2014-01-12 16:36:58'),
(9933, 'lt', 'directory', 'clicktoproceeddirsts', 'Spauskite <b> Tęsti </ b> jei norite patikrinti direktorijos būseną', '2014-01-12 16:36:58'),
(9934, 'lt', 'directory', 'Confirmation', 'Patvirtinimas ', '2014-01-12 16:36:58'),
(9935, 'lt', 'directory', 'Coupon Code', 'Kupono kodas', '2014-01-12 16:36:58'),
(9936, 'lt', 'directory', 'couponcodenote', 'Naudokite kupono kodą,norėdami gauti [REDUCTION_PER] nuolaidą kiekvienam pateikimui.', '2014-01-12 16:36:58'),
(9937, 'lt', 'directory', 'desnote', 'Kai kuriems katalogams reikia ne mažiau kaip 150 simbolių aprašymo.', '2014-01-12 16:36:58'),
(9938, 'lt', 'directory', 'Directories with out captcha', 'Katalogai be Captcha', '2014-01-12 16:36:58'),
(9939, 'lt', 'directory', 'Directory Submission Reports', 'Katalogo patvirtinimo ataskaitos', '2014-01-12 16:36:58'),
(9940, 'lt', 'directory', 'Enter the code shown', 'Įveskitę kodą', '2014-01-12 16:36:58'),
(9941, 'lt', 'directory', 'nocatnote', 'Patvirtinimo kategorija, nesurasta patvirtinimo puslapyje. Prašom paspausti <b>, Perkrauti </b> ar <b> Praleistią </b>', '2014-01-12 16:36:58'),
(9942, 'lt', 'directory', 'nodirnote', ' <b> Aktyvių </ b> direktorijų nerasta', '2014-01-12 16:36:58'),
(9943, 'lt', 'directory', 'nosuccessnote', 'Negavote pasisekimo žinutės, prašom patikrinti savo paštą, kad surastumėte patvirtinimo žinutę', '2014-01-12 16:36:58'),
(9944, 'lt', 'directory', 'optionalnote', 'Laisvai pasirenkami pavadinimai ir apibūdinimas, kad pateiktų atsitiktinį pavadinimą ir apibūdinimą į žinynus geresniems rezultatams.', '2014-01-12 16:36:58'),
(9945, 'lt', 'directory', 'Owner Email', 'Savininko e-paštas', '2014-01-12 16:36:58'),
(9946, 'lt', 'directory', 'Owner Name', 'Savininko vardas', '2014-01-12 16:36:58'),
(9947, 'lt', 'directory', 'Pending', 'Laukia', '2014-01-12 16:36:58'),
(9948, 'lt', 'directory', 'Please select a website to proceed', 'Prašome pasirinkti svetainę', '2014-01-12 16:36:58'),
(9949, 'lt', 'directory', 'Reciprocal Link', 'Abipusė Sąsaja', '2014-01-12 16:36:58'),
(9950, 'lt', 'directory', 'selectwebsiteproceed', 'Pasirinkite <b> Svetainės </ b> <b> Tęsti </ b> katalogas pateikimo. <br> Patikrinkite <b> Katalogai su Captcha </ b>, pateikti į katalogus iš Captcha\r\n', '2014-01-12 16:36:58'),
(9951, 'lt', 'directory', 'selectwebsiteschecksub', 'Pasirinkite <b> svetainę </ b> <b> Tęsti </ b> patikrinkite katalogo patvirtinimą.', '2014-01-12 16:36:58'),
(9952, 'lt', 'directory', 'Semi Automatic Directory Submission Tool', 'Pusiau automatinis pateikimo katalogui įrankis', '2014-01-12 16:36:58'),
(9953, 'lt', 'directory', 'spamemailnote', 'Kai kurie katalogai gali siųsti šlamštą, mes nerekomenduojame naudoti savo elektroninio pašto adreso.', '2014-01-12 16:36:58'),
(9954, 'lt', 'directory', 'Submission Details', 'Pateikimo informacija', '2014-01-12 16:36:58'),
(9955, 'lt', 'directory', 'Submit Description', 'Patiekti aprašymą', '2014-01-12 16:36:58'),
(9956, 'lt', 'directory', 'Submit Keywords', 'Pateikti raktažodžius', '2014-01-12 16:36:58'),
(9957, 'lt', 'directory', 'Submit Title', 'Pateikti pavadinimą', '2014-01-12 16:36:58'),
(9958, 'lt', 'directory', 'Website Category', 'Svetainės kategorija', '2014-01-12 16:36:58'),
(9959, 'lt', 'directory', 'Website Url', 'Svetainės URL', '2014-01-12 16:36:58'),
(9960, 'lt', 'home', 'Account Summary', 'Sąskaitos suvestinė', '2012-11-07 22:14:11'),
(9961, 'lt', 'home', 'Backlinks', 'Atgalinės nuorodos', '2012-11-07 22:14:11'),
(9962, 'lt', 'home', 'Directory Submission', 'Katalogo pateikimas', '2012-11-07 22:14:11'),
(39069, 'tr', 'sitemap', 'Compress sitemap files', 'Sitemap dosyalarını sıkıştır', '2026-01-19 22:58:50');
INSERT INTO `texts` VALUES
(39070, 'zh', 'sitemap', 'Compress sitemap files', '压缩站点地图文件', '2026-01-19 22:58:50'),
(39071, 'cn', 'sitemap', 'Compress sitemap files', '压缩站点地图文件', '2026-01-19 22:58:50'),
(39072, 'en', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', 'Reduces file size by 70-90%, recommended for large sitemaps', '2026-01-19 22:58:50'),
(39073, 'ar', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', 'يقلل حجم الملف بنسبة 70-90٪ ، موصى به لخرائط المواقع الكبيرة', '2026-01-19 22:58:50'),
(39074, 'bg', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', 'Намалява размера на файла с 70-90%, препоръчително за големи карти на сайта', '2026-01-19 22:58:50'),
(39075, 'de', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', 'Reduziert die Dateigröße um 70-90%, empfohlen für große Sitemaps', '2026-01-19 22:58:50'),
(39076, 'es', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', 'Reduce el tamaño del archivo en un 70-90%, recomendado para sitemaps grandes', '2026-01-19 22:58:50'),
(39077, 'fr', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', 'Réduit la taille du fichier de 70 à 90 %, recommandé pour les grands sitemaps', '2026-01-19 22:58:50'),
(39078, 'it', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', 'Riduce le dimensioni del file del 70-90%, consigliato per sitemap di grandi dimensioni', '2026-01-19 22:58:50'),
(39079, 'nl', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', 'Reduceert bestandsgrootte met 70-90%, aanbevolen voor grote sitemaps', '2026-01-19 22:58:50'),
(39080, 'pl', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', 'Zmniejsza rozmiar pliku o 70-90%, zalecane dla dużych map witryny', '2026-01-19 22:58:50'),
(39081, 'pt', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', 'Reduz o tamanho do arquivo em 70-90%, recomendado para sitemaps grandes', '2026-01-19 22:58:50'),
(39082, 'pt-br', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', 'Reduz o tamanho do arquivo em 70-90%, recomendado para sitemaps grandes', '2026-01-19 22:58:50'),
(39083, 'ru', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', 'Уменьшает размер файла на 70-90%, рекомендуется для больших карт сайта', '2026-01-19 22:58:50'),
(39084, 'tr', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', 'Dosya boyutunu %70-90 oranında azaltır, büyük site haritaları için önerilir', '2026-01-19 22:58:50'),
(39085, 'zh', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', '减少70-90%的文件大小,推荐用于大型站点地图', '2026-01-19 22:58:50'),
(39086, 'cn', 'sitemap', 'Reduces file size by 70-90%, recommended for large sitemaps', '减少70-90%的文件大小,推荐用于大型站点地图', '2026-01-19 22:58:50'),
(39087, 'en', 'sitemap', 'Generate sitemap index file', 'Generate sitemap index file', '2026-01-19 22:58:50'),
(39088, 'ar', 'sitemap', 'Generate sitemap index file', 'إنشاء ملف فهرس خريطة الموقع', '2026-01-19 22:58:50'),
(39089, 'bg', 'sitemap', 'Generate sitemap index file', 'Генериране на индексен файл на картата на сайта', '2026-01-19 22:58:50'),
(39090, 'de', 'sitemap', 'Generate sitemap index file', 'Sitemap-Indexdatei generieren', '2026-01-19 22:58:50'),
(39091, 'es', 'sitemap', 'Generate sitemap index file', 'Generar archivo de índice de sitemap', '2026-01-19 22:58:50'),
(39092, 'fr', 'sitemap', 'Generate sitemap index file', 'Générer un fichier d''index de sitemap', '2026-01-19 22:58:50'),
(39093, 'it', 'sitemap', 'Generate sitemap index file', 'Genera file indice sitemap', '2026-01-19 22:58:50'),
(39094, 'nl', 'sitemap', 'Generate sitemap index file', 'Sitemap-indexbestand genereren', '2026-01-19 22:58:50'),
(39095, 'pl', 'sitemap', 'Generate sitemap index file', 'Wygeneruj plik indeksu mapy witryny', '2026-01-19 22:58:50'),
(39096, 'pt', 'sitemap', 'Generate sitemap index file', 'Gerar arquivo de índice de sitemap', '2026-01-19 22:58:50'),
(38745, 'bs', 'review', 'Average Rating', 'Prosječna ocjena', '2026-01-19 22:58:50'),
(38746, 'ca', 'review', 'Average Rating', 'Valoració mitjana', '2026-01-19 22:58:50'),
(38747, 'cn', 'review', 'Average Rating', '平均评分', '2026-01-19 22:58:50'),
(38748, 'cs', 'review', 'Average Rating', 'Průměrné hodnocení', '2026-01-19 22:58:50'),
(38749, 'da', 'review', 'Average Rating', 'Gennemsnitlig bedømmelse', '2026-01-19 22:58:50'),
(38750, 'de', 'review', 'Average Rating', 'Durchschnittliche Bewertung', '2026-01-19 22:58:50'),
(38751, 'el', 'review', 'Average Rating', 'Μέση αξιολόγηση', '2026-01-19 22:58:50'),
(38752, 'es', 'review', 'Average Rating', 'Calificación promedio', '2026-01-19 22:58:50'),
(38753, 'es-ar', 'review', 'Average Rating', 'Calificación promedio', '2026-01-19 22:58:50'),
(38754, 'fa', 'review', 'Average Rating', 'میانگین امتیاز', '2026-01-19 22:58:50'),
(38755, 'fi', 'review', 'Average Rating', 'Keskimääräinen arvostelu', '2026-01-19 22:58:50'),
(38756, 'fr', 'review', 'Average Rating', 'Note moyenne', '2026-01-19 22:58:50'),
(38757, 'he', 'review', 'Average Rating', 'דירוג ממוצע', '2026-01-19 22:58:50'),
(38758, 'hi', 'review', 'Average Rating', 'औसत रेटिंग', '2026-01-19 22:58:50'),
(38759, 'hr', 'review', 'Average Rating', 'Prosječna ocjena', '2026-01-19 22:58:50'),
(31566, 'ca', 'siteauditor', 'The page is having poor page authority value', 'The page has poor Autoritat de la pàgina Valor', '2025-11-21 01:03:34'),
(9966, 'lt', 'home', 'Indexed', 'Indeksas', '2012-11-07 22:14:11'),
(9967, 'lt', 'home', 'Pages Indexed', 'Puslapio indeksas', '2012-11-07 22:14:11'),
(9968, 'lt', 'home', 'Ranks', 'Eilė', '2012-11-07 22:14:11'),
(9969, 'lt', 'home', 'SiteNameUrl', 'Svetainės pavadinimas / URL', '2012-11-07 22:14:11'),
(9970, 'lt', 'home', 'Website Statistics', 'Svetainės lankomumo statistika', '2012-11-07 22:14:11'),
(9971, 'lt', 'keyword', 'Crawling keyword', 'Nuskaityti raktinį žodį', '2012-11-07 22:40:27'),
(9972, 'lt', 'keyword', 'Detailed Keyword Position Reports', 'Apie raktinius žodžius, ir pranešimas apie jo buvimo vietą', '2012-11-07 22:40:27'),
(9973, 'lt', 'keyword', 'Edit Keyword', 'Redaguoti raktinius žodžius', '2012-11-07 22:40:27'),
(9974, 'lt', 'keyword', 'Graphical Keyword Position Reports', 'Grafiniai žodžiai ir pranešimai apie buvimo vietą', '2012-11-07 22:40:27'),
(9975, 'lt', 'keyword', 'Import Keywords', 'Importuoti raktažodžius', '2012-11-07 22:40:27'),
(9976, 'lt', 'keyword', 'Insert keywords separated with comma', 'Įterpti raktiniai žodžiai, turi būti atskirti kableliais', '2012-11-07 22:40:27'),
(9977, 'lt', 'keyword', 'Keyword already exist', 'Raktinis žodis jau egzistuoja', '2012-11-07 22:40:27'),
(9978, 'lt', 'keyword', 'Keyword Position Report', 'Pozicijos raktažodžių ataskaita', '2012-11-07 22:40:27'),
(9979, 'lt', 'keyword', 'New Keyword', 'Naujas raktinis žodis', '2012-11-07 22:40:27'),
(9980, 'lt', 'keyword', 'not assigned to required search engines', 'nėra priskirta reikalingoms paieškos sistemoms\r\n', '2012-11-07 22:40:27'),
(9981, 'lt', 'keyword', 'pleaseselecttool', 'Prašome pasirinkti mažiausiai vieną SEO įrankiai', '2012-11-07 22:40:27'),
(9982, 'lt', 'keyword', 'Quick Keyword Position Checker', 'Greitas Pozicijos raktažodžių tikrintuvas', '2012-11-07 22:40:27'),
(9983, 'lt', 'keyword', 'results from ', 'Rezultatai iš', '2012-11-07 22:40:27'),
(9984, 'lt', 'keyword', 'Show All results', 'Rodyti visus rezultatus', '2012-11-07 22:40:27'),
(9985, 'lt', 'keyword', 'Successfully crawled keyword', 'Sėkmingai patikrintas raktažodis\r\n', '2012-11-07 22:40:27'),
(9986, 'lt', 'keyword', 'to create new keywords', 'sukurti naujus raktinius žodžius', '2012-11-07 22:40:27'),
(9987, 'lt', 'label', 'already exist', 'jau yra', '2014-01-12 16:42:59'),
(9988, 'lt', 'label', 'Authentication', 'Autorizacija', '2014-01-12 16:42:59'),
(9989, 'lt', 'label', 'Author', 'Autorius', '2014-01-12 16:42:59'),
(9990, 'lt', 'label', 'Brocken', 'Nutrūkęs', '2014-01-12 16:42:59'),
(9991, 'lt', 'label', 'Click Here', 'Spauskite čia', '2014-01-12 16:42:59'),
(9992, 'lt', 'label', 'Comments', 'Komentarai', '2014-01-12 16:42:59'),
(9993, 'lt', 'label', 'Count', 'Skaičiuoti', '2014-01-12 16:42:59'),
(9994, 'lt', 'label', 'Cron', 'Cron', '2014-01-12 16:42:59'),
(9995, 'lt', 'label', 'Daily', 'Kasdien', '2014-01-12 16:42:59'),
(9996, 'lt', 'label', 'Description', 'Aprašymas', '2014-01-12 16:42:59'),
(9997, 'lt', 'label', 'Developers', 'Kūrėjai', '2014-01-12 16:42:59'),
(9998, 'lt', 'label', 'Download', 'Parsisiųsti', '2014-01-12 16:42:59'),
(9999, 'lt', 'label', 'Exclude', 'Išskirti', '2014-01-12 16:42:59'),
(10000, 'lt', 'label', 'Include', 'Įtraukti', '2014-01-12 16:42:59'),
(10001, 'lt', 'label', 'Installation', 'Diegimas', '2014-01-12 16:42:59'),
(10002, 'lt', 'label', 'Keywords', 'Raktiniai žodžiai', '2014-01-12 16:42:59'),
(10003, 'lt', 'label', 'Monthly', 'Mėnesinė', '2014-01-12 16:42:59'),
(10004, 'lt', 'label', 'noactiveplugins', 'Nerasta aktyvių SEO įskiepių!', '2014-01-12 16:42:59'),
(10005, 'lt', 'label', 'Plugin', 'Įskiepis', '2014-01-12 16:42:59'),
(10006, 'lt', 'label', 'Port', 'Portas', '2014-01-12 16:42:59'),
(10007, 'lt', 'label', 'Project', 'Projektas', '2014-01-12 16:42:59'),
(10008, 'lt', 'label', 'Proxy', 'Proxy', '2014-01-12 16:42:59'),
(10009, 'lt', 'label', 'Re-install', 'Perinstaliuoti', '2014-01-12 16:42:59'),
(10010, 'lt', 'label', 'Report Type', 'Ataskaitos tipas', '2014-01-12 16:42:59'),
(10011, 'lt', 'label', 'Score', 'Rezultatas', '2014-01-12 16:42:59'),
(10012, 'lt', 'label', 'Sponsors', 'Rėmėjai', '2014-01-12 16:42:59'),
(10013, 'lt', 'label', 'Title', 'Pavadinimas', '2014-01-12 16:42:59'),
(10014, 'lt', 'label', 'Total Results', 'Viso rezultatų', '2014-01-12 16:42:59'),
(10015, 'lt', 'label', 'translation by', 'išversta', '2014-01-12 16:42:59'),
(10016, 'lt', 'label', 'Translators', 'Vertėjai', '2014-01-12 16:42:59'),
(10017, 'lt', 'label', 'Updated', 'Atnaujinta', '2014-01-12 16:42:59'),
(10018, 'lt', 'label', 'Upgrade', 'Atnaujinti', '2014-01-12 16:42:59'),
(10019, 'lt', 'label', 'Version', 'Versija', '2014-01-12 16:42:59'),
(10020, 'lt', 'label', 'View Reports', 'Peržiūrėti ataskaitas', '2014-01-12 16:42:59'),
(10021, 'lt', 'label', 'wantproceed', 'Ar tikrai norite tęsti?', '2014-01-12 16:42:59'),
(10022, 'lt', 'label', 'Weekly', 'Kartą per savaitę', '2014-01-12 16:42:59'),
(10023, 'lt', 'login', 'Confirm Password', 'Patvirtinkite slaptažodį', '2014-01-12 16:47:43'),
(10024, 'lt', 'login', 'Create my account', 'Sukurkite savo paskyrą', '2014-01-12 16:47:43'),
(10025, 'lt', 'login', 'Create New Account', 'Sukurti naują paskyrą', '2014-01-12 16:47:43'),
(10026, 'lt', 'login', 'Email', 'Pašto adresas', '2014-01-12 16:47:43'),
(10027, 'lt', 'login', 'emailexist', 'Pašto adresas jau egzistuoja!', '2014-01-12 16:47:43'),
(10028, 'lt', 'login', 'Enter the code as it is shown', 'Įveskite kodą, kuris bus rodomas', '2014-01-12 16:47:43'),
(10029, 'lt', 'login', 'First Name', 'Vardas', '2014-01-12 16:47:43'),
(10030, 'lt', 'login', 'Last Name', 'Pavardė', '2014-01-12 16:47:43'),
(10031, 'lt', 'login', 'Login', 'Prisijungti', '2014-01-12 16:47:43'),
(10032, 'lt', 'login', 'Login incorrect', 'Neteisingas vartotojo vardas', '2014-01-12 16:47:43'),
(10033, 'lt', 'login', 'newaccountsuccess', 'Nauja paskyra sukurta sėkmingai!', '2014-01-12 16:47:43'),
(10034, 'lt', 'login', 'Password', 'Slaptažodis', '2014-01-12 16:47:43'),
(10035, 'lt', 'login', 'Password incorrect', 'Neteisingas slaptažodis', '2014-01-12 16:47:43'),
(10036, 'lt', 'login', 'Register', 'Registruotis', '2014-01-12 16:47:43'),
(10037, 'lt', 'login', 'Sign in to your account', 'Prisijunkti prie savo paskyros', '2014-01-12 16:47:43'),
(10038, 'lt', 'login', 'User inactive', 'Neaktyvus vartotojas', '2014-01-12 16:47:43'),
(10039, 'lt', 'login', 'Username', 'Vartotojo vardas', '2014-01-12 16:47:43'),
(10040, 'lt', 'login', 'usernameexist', 'Vartotojo vardas jau egzistuoja!', '2014-01-12 16:47:43'),
(10041, 'lt', 'panel', 'About Us', 'Apie mus', '2014-01-12 16:51:46'),
(10042, 'lt', 'panel', 'Add following command to your cron tab', 'Pridėti šią komandą savo cron skirtuke', '2014-01-12 16:51:46'),
(10043, 'lt', 'panel', 'alsocheckfollowlink', 'Taip pat patikrinkite šią nuorodą, jei jums reikia daugiau informacijos.', '2014-01-12 16:51:46'),
(10044, 'lt', 'panel', 'Archived Reports', 'Ataskaitų archyvas', '2014-01-12 16:51:46'),
(10045, 'lt', 'panel', 'Check Directory', 'Patikrinti katalogą', '2014-01-12 16:51:46'),
(10046, 'lt', 'panel', 'Cron Command', 'Cron komanda', '2014-01-12 16:51:46'),
(10047, 'lt', 'panel', 'Directory Manager', 'Katalogų vedlys', '2014-01-12 16:51:46'),
(10048, 'lt', 'panel', 'Edit My Profile', 'Redaguoti savo profilį', '2014-01-12 16:51:46'),
(10049, 'lt', 'panel', 'Edit Project', 'Redaguoti projektą', '2014-01-12 16:51:46'),
(10050, 'lt', 'panel', 'My Profile', 'Mano paskyra', '2014-01-12 16:51:46'),
(10051, 'lt', 'panel', 'New Project', 'Naujas projektas', '2014-01-12 16:51:46'),
(10052, 'lt', 'panel', 'New Proxy', 'Naujas Proxy', '2014-01-12 16:51:46'),
(10053, 'lt', 'panel', 'New User', 'Naujas vartotojas', '2014-01-12 16:51:46'),
(10054, 'lt', 'panel', 'New Website', 'Nauja svetainė', '2014-01-12 16:51:46'),
(10055, 'lt', 'panel', 'Proxy Manager', 'Proxy vedlys', '2014-01-12 16:51:46'),
(10056, 'lt', 'panel', 'Report Generation Manager', 'Ataskaitų generavimo vedlys', '2014-01-12 16:51:46'),
(10057, 'lt', 'panel', 'Report Settings', 'Ataskaitos nustatymai', '2014-01-12 16:51:46'),
(10058, 'lt', 'panel', 'Reports Manager', 'Ataskaitų vedlys', '2014-01-12 16:51:46'),
(10059, 'lt', 'panel', 'Schedule Reports', 'Ataskaitų tvarkaraštis ', '2014-01-12 16:51:46'),
(10060, 'lt', 'panel', 'Search Engine Manager', 'Paieškos variklių vedlys', '2014-01-12 16:51:46'),
(10061, 'lt', 'panel', 'Seo Plugins Manager', 'SEO įskiepių vedlys', '2014-01-12 16:51:46'),
(10062, 'lt', 'panel', 'Seo Tools Manager', 'SEO įrankių vedlys', '2014-01-12 16:51:46'),
(10063, 'lt', 'panel', 'System Settings', 'Sistemos nustatymai', '2014-01-12 16:51:46'),
(10064, 'lt', 'panel', 'User Manager', 'Vartotojų vedlys', '2014-01-12 16:51:46'),
(10065, 'lt', 'panel', 'Website Manager', 'Sveitainių vedlys', '2014-01-12 16:51:46'),
(10066, 'lt', 'support', 'support_cont1', '<fieldset>\r\n<legend> SEO Panel Support System </legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1> 1000 katalogas paketas </h1>\r\n <p>\r\n Mes teikiame <b> 1000 nemokamų aktyvus ir patikrinta </b> Internet Directory paketas, pridėti į\r\njūsų SEO skydelis <b> katalogas pateikimo įrankis </b>.\r\n Tai padės jums <b> padidinti Atgalinės nuorodos </b> savo interneto svetainėse.\r\n Tiesą sakant, 1000 Rodyklės sąrašas <b> pristatė </b> surinkti šiek tiek pinigų <b> ateitis\r\nplėtra </b> SEO skydelyje.\r\n Gauti 1000 katalogas sąrašas prašome <a href = "<?=SP_DONATE_LINK?>" Target = "_blank"> dovanoti </a>\r\n$ 10 ar daugiau, siekiant pagerinti SEO skydelio funkcijas.\r\n Jei turite klausimų apie 1000 katalogo paketą, prašome <a href = "<?=SP_CONTACT_LINK?>"\r\ntarget = "_blank"> Susisiekite su mumis </a> arba atidaryti bilietą <a href = "<?=SP_SUPPORT_LINK?>"\r\ntarget = "_blank"> palaikymo sistema </a>.\r\n </P>\r\n <p>\r\n <A href = "<?=SP_DONATE_LINK?>" Target = "_blank"> Aplankykite šią nuorodą, norėdami paaukoti SEO skydelyje </a>\r\n </P>\r\n <br>\r\n </Li>\r\n \r\n <li>\r\n <h1> Vietinė paieška Varikliai paketas </h1>\r\n <p>\r\n Pridėti <b> vietos paieškos domenų </b>, Google, Yahoo, MSN (<b> pvz.: www.google.de, www.google.fr\r\ntt </b>) SEO skydelio <b> raktinio žodžio poziciją tikrintuvas </b>, sekti savo svetainės Perfomance vietoje.\r\n Gauti vietos paieškos variklius paketą (pagal jūsų reikalavimą) <a\r\nhref = "<?=SP_DONATE_LINK?>" target = "_blank"> dovanoti </a>, $ 10 ar daugiau, siekiant pagerinti SEO funkcijos\r\nskydelis.\r\n Prieš siųsdami donorystei, prašome <a href = "<?=SP_CONTACT_LINK?>" Target = "_blank"> Susisiekite su mumis </a>, kad\r\nPateikite mums reikalingą paieškos domeno sąrašą.\r\n <br>\r\n Taip pat pridėti <b> paieškos sistemų (pvz.: baidu.com) </b> savo SEO skydelio raktinio žodžio poziciją tikrintuvas,\r\nprašom <a href = "<?=SP_CONTACT_LINK?>" target = "_blank"> Susisiekite su mumis </a> arba atidaryti bilietą <a\r\nhref = "<?=SP_SUPPORT_LINK?>" target = "_blank"> palaikymo sistema </a>.\r\n </P>\r\n <p class="visit">\r\n <A href = "<?=SP_CONTACT_LINK?>" Target = "_blank"> Aplankykite šią nuorodą, susisiekite su mumis </a>\r\n </P>\r\n <br>\r\n </Li>\r\n \r\n <li>\r\n <h1> SEO Panel Įskiepiai </h1>\r\n <p>\r\n Pridėkite <b> SEO įskiepių </b>, kad jūsų SEO skydelyje <b> išplėsti funkcijas </b> pagal jūsų\r\nreikalavimas.\r\n <A href = "<?=SP_PLUGINSITE?>" Target = "_blank"> SEO įskiepių skydelio </a> yra tiek SEO lange\r\nir trečiųjų šalių svetainių.\r\n Taip pat galite lengvai <b> sukurti </b> SEO įskiepių jūsų SEO skydelyje.\r\n Galite <a href = "<?=SP_PLUGINSITE?>" Target = "_blank"> išsiųskite </a> jūsų SEO įskiepiai SEO skydelyje ir\r\nmes <b> Publikuoti </b> mūsų svetainėje po mūsų <b> peržiūros </b> proceso.\r\n </P>\r\n <p>\r\n <A href = "<?=SP_PLUGINSITE?>" Target = "_blank"> Aplankykite šią nuorodą, norėdami gauti SEO skydelis įskiepių </a>\r\n </P>\r\n <br>\r\n </Li>\r\n <li>\r\n <h1> Kontaktai </h1>\r\n <p>\r\n Susisiekite su mumis dėl kiltų klausimų apie <b> SEO Panel įrankių, įskiepių ir funkcijos ir tt </b> naudodami žemiau\r\nnuorodą.\r\n </P>\r\n <p>\r\n <A href = "<?=SP_CONTACT_LINK?>" Target = "_blank"> Aplankykite šią nuorodą, susisiekite su mumis </a>\r\n </P>\r\n <br>\r\n </Li>\r\n <li>\r\n <h1> Palaikymo Bilietai </h1>\r\n <p>\r\n Gauti <b> techninę pagalbą </b> SEO skydelio komanda sukonfigūruoti į <b> seo pulto priemones, įskiepių ir\r\nfunkcijų </b>. Pvz.: Norėdami sukurti cron raktinio žodžio poziciją tikrintuvas.\r\n </P>\r\n <p>\r\n <A href = "<?=SP_SUPPORT_LINK>" target = "_blank"> Apsilankykite šią nuorodą, norėdami sukurti paramos bilietą </a>\r\n </P>\r\n <br>\r\n </Li>\r\n <li>\r\n <h1> pranešti apie klaidas </h1>\r\n <p>\r\n Pranešti <b> klaidas </b> apie <b> seo skydelio įrankiai, įskiepių ir funkcijos ir tt </b> naudodami žemiau nuorodą.\r\n prašome padėti mums pagerinti funkcijų, vėlesnėse redakcijose.\r\n </P>\r\n <p>\r\n <A href = "<?=SP_SUPPORT_LINK?>" Target = "_blank"> Aplankykite šią nuorodą, norėdami pranešti apie klaidas </a>\r\n </P>\r\n <br>\r\n </Li>\r\n</Ul>\r\n</Fieldset>', '2012-11-07 23:09:31'),
(31564, 'ca', 'siteauditor', 'The page is having good page authority value', 'The page has good Autoritat de la pàgina Valor', '2025-11-21 01:03:34'),
(10067, 'lt', 'support', 'support_cont2', '<fieldset>\r\n<legend> SEO Panel Online ištekliai </legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1> SEO Panel Pagalba vadovas </h1>\r\n <p>\r\n <A href = "<?=SP_HELP_LINK?>" Target = "_blank"> SEO skydelis dokumentacijos </a> galite peržiūrėti\r\n<b> Pagalba gidas </b>, yra <b> dokumentus </b> SEO skydelio įrankiai, įskiepių ir su jais susijusi\r\nfunkcijos.\r\n IT yra geriausia vieta internete <b> gauti pagalbos </b> apie SEO skydelyje. Tikimės, kad Jūs\r\n<b> prisidėti </b>, SEO skydelio pagalbos vadovą, jei radote klaidų ar daiktus trūkstamas.\r\n </p>\r\n <p>\r\n <a href = "<?=SP_HELP_LINK>" target = "_blank"> Visit SEO skydelis Pagalba gidas </a>\r\n </p>\r\n <br>\r\n </li>\r\n <li>\r\n <h1> SEO Panel Forumas </h1>\r\n <p>\r\n Vieta diskutuoti apie pirmąjį pasaulyje atviro kodo <b> SEO valdymo skydelio </b>.\r\n Tai yra geriausia vieta rasti <b> atsakymus </b> <b> jūsų klausimus </b> apie SEO skydelyje.\r\n <br> Taip pat galite <b> dalis </b> Jūsų <b> patirtis </b>, naudojant SEO, kaip optimizuoti savo skydelį\r\ninterneto svetainėse.\r\n </p>\r\n <p>\r\n <a href = "<?=SP_FORUM_LINK?>" target = "_blank"> Visit SEO skydelis forumas </a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2012-11-07 23:09:31'),
(10068, 'lt', 'support', 'support_cont3', '<fieldset>\r\n<legend> Paaukoti SEO skydo </legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1> Paaukoti SEO Panel - Pirmasis atviras šaltinis SEO valdymo pulto pasaulyje </h1>\r\n <p>\r\n <b> Paaukok </b> SEO kolegiją remti pirmąją atviro kodo SEO valdymo pultą pasaulyje.\r\n Mes planuojame <b> pridėti ir pagerinti </b> SEO skydelio savybes ateityje.\r\n , <br> <b> paramą </b> tik mes galime pasiekti mūsų <b> tikslus </b>.\r\n Jei manote, kad SEO skydelis yra <b> verta </b> jums, prašome paaukoti tam tikrą sumą SEO skydelio komanda.\r\n <br> <b> Publikuoti </b> savo vardą ir svetainės informacija <a href = "<?=SP_DONATE_LINK?>"\r\ntarget = "_blank"> donorystė puslapis </a>, kai mes gauname donorystę.\r\n </p>\r\n <p>\r\n <a href = "<?=SP_DONATE_LINK?>" target = "_blank"> Aplankykite šią nuorodą, norėdami paaukoti SEO skydelyje </a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2012-11-07 23:09:31'),
(10069, 'lt', 'seotools', 'Auditor Projects', 'Audito pojektai', '2012-11-07 23:31:49'),
(10070, 'lt', 'seotools', 'Auditor Reports', 'Audito ataskaitos', '2012-11-07 23:31:49'),
(10071, 'lt', 'seotools', 'Auditor Settings', 'audito nustatymai', '2012-11-07 23:31:49'),
(10072, 'lt', 'seotools', 'Automatic Submission', 'Automatinis pateikimas', '2012-11-07 23:31:49'),
(10073, 'lt', 'seotools', 'backlink-checker', 'Atgalinės nuorodos tikrintuvas', '2012-11-07 23:31:49'),
(10074, 'lt', 'seotools', 'Backlinks Reports', 'Atgalinės ataskaitos', '2012-11-07 23:31:49'),
(10075, 'lt', 'seotools', 'Check Submission Status', 'Patikrinkite pateikimo būsena', '2012-11-07 23:31:49'),
(10076, 'lt', 'seotools', 'clickgeneratereports', 'Paspauskite ant <b>, Tęsiasi </b>, kad generuoti ataskaitas', '2012-11-07 23:31:49'),
(10077, 'lt', 'seotools', 'Detailed Position Reports', 'Išsami ataskaita apie jo buvimo vietą', '2012-11-07 23:31:49'),
(10078, 'lt', 'seotools', 'directory-submission', 'katalogo pateikimas', '2012-11-07 23:31:49'),
(10079, 'lt', 'seotools', 'Featured Submission', 'Teminiai pateikimas', '2012-11-07 23:31:49'),
(10080, 'lt', 'seotools', 'Generate Backlinks Reports', 'Rodytas pateikimas', '2012-11-07 23:31:49'),
(10081, 'lt', 'seotools', 'Generate Keyword Reports', 'Generuoti raktinius žodžius ataskaitose', '2012-11-07 23:31:49'),
(10082, 'lt', 'seotools', 'Generate Rank Reports', 'Generuoti eilės ataskaitas', '2012-11-07 23:31:49'),
(10083, 'lt', 'seotools', 'Generate Saturation Reports', 'Generuoti prisotinimo ataskaitas', '2012-11-07 23:31:49'),
(10084, 'lt', 'seotools', 'Google Sitemap Generator', 'Google sistemos žemėlapio generatorius', '2012-11-07 23:31:49'),
(10085, 'lt', 'seotools', 'Graphical Position Reports', 'Grafiniai pranešimai apie buvimo vietą,', '2012-11-07 23:31:49'),
(10086, 'lt', 'seotools', 'Import Project Links', 'Importuoti projekto Nuorodas', '2012-11-07 23:31:49'),
(10087, 'lt', 'seotools', 'Keyword Position Summary', 'Pozicijos raktažodžių santrauka', '2012-11-07 23:31:49'),
(10088, 'lt', 'seotools', 'keyword-position-checker', 'Pozicijos raktažodžių tikrintuvas', '2012-11-07 23:31:49'),
(10089, 'lt', 'seotools', 'Keywords Manager', 'Raktažodžių vadovas', '2012-11-07 23:31:49'),
(10090, 'lt', 'seotools', 'Quick Backlinks Checker', 'Greitas atgalinis tikrintuvas', '2012-11-07 23:31:49'),
(10091, 'lt', 'seotools', 'Quick Position Checker', 'Greita Pozicija tikrintuvas', '2012-11-07 23:31:49'),
(10092, 'lt', 'seotools', 'Quick Rank Checker', 'greitas eilės patikrinimas', '2012-11-07 23:31:49'),
(10093, 'lt', 'seotools', 'Quick Saturation Checker', 'greitas prisotinimo patikrinimas', '2012-11-07 23:31:49'),
(10094, 'lt', 'seotools', 'Rank Reports', 'Eilės ataskaitos', '2012-11-07 23:31:49'),
(10095, 'lt', 'seotools', 'rank-checker', 'Eilės patikrinimas', '2012-11-07 23:31:49'),
(10096, 'lt', 'seotools', 'Saturation Reports', 'Prisotinimo ataskaita', '2012-11-07 23:31:49'),
(10097, 'lt', 'seotools', 'saturation-checker', 'Paieškos sistemos Prisotinimas', '2012-11-07 23:31:49'),
(10098, 'lt', 'seotools', 'site-auditor', 'Svetainės auditorius', '2012-11-07 23:31:49'),
(10099, 'lt', 'seotools', 'sitemap-generator', 'sistemos žemėlaio generatorius', '2012-11-07 23:31:49'),
(10100, 'lt', 'seotools', 'Skipped Directories', 'Trūkstami katalogai', '2012-11-07 23:31:49'),
(10101, 'lt', 'seotools', 'Submission Reports', 'Pateikimo ataskaitos', '2012-11-07 23:31:49'),
(10102, 'lt', 'seotools', 'User Access', 'Vartotojo prieigos', '2012-11-07 23:31:49'),
(10103, 'lt', 'settings', 'Check for Updates', 'Tikrinkite atnaujinimus', '2012-11-09 14:53:31'),
(10104, 'lt', 'settings', 'Click here to become a sponsor for Seo Panel', '<b> Paaukojus $ 100 </ b> tapsite <b> rėmėjais </ b> SEO Panel.', '2012-11-09 14:53:31'),
(10105, 'lt', 'settings', 'entersmtpdetails', 'Prašome įvesti SMTP pašto konfigūraciją', '2012-11-09 14:53:31'),
(10106, 'lt', 'settings', 'getallpluginfree', 'Taip pat gauti visus <b> įskiepių </ b>, mes sukursime <b> nemokamai! </ B>', '2012-11-09 14:53:31'),
(10107, 'lt', 'settings', 'SA_CRAWL_DELAY_TIME', 'Svetainės auditorius nuskaito atidėliojimą tarp kiekvieno puslapio', '2012-11-09 14:53:31'),
(10108, 'lt', 'settings', 'SA_MAX_NO_PAGES', 'Maksimalus svetainėje leidžiamas puslapių skaičius', '2012-11-09 14:53:31'),
(10109, 'lt', 'settings', 'seopanel_description', 'Pilnas nemokamas valdymo pultas ieškant variklio optimizavimo jūsų interneto svetainėse. Kurių sudėtyje yra daug karšto SEO įrankių didinti ir sekti atlikimus savo interneto svetainėse. Atviro\r\nkodo programinė įranga ir taip pat galite sukurti savo SEO įskiepius SEO skydelyje.', '2012-11-09 14:53:31'),
(10110, 'lt', 'settings', 'seopanel_title', 'Seo skydas: pirmasis pasaulyje atviro kodo SEO valdymo pultas valdyti daug interneto svetainių', '2012-11-09 14:53:31'),
(10111, 'lt', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Leisti vartotojams planuoti ataskaitą', '2012-11-09 14:53:31'),
(10112, 'lt', 'settings', 'SP_API_KEY', 'SEO skydelio API raktas', '2012-11-09 14:53:31'),
(10113, 'lt', 'settings', 'SP_CRAWL_DELAY', 'Delsimas tarp kiekvieno voro nuskaitymo (sekundės)', '2012-11-09 14:53:31'),
(10114, 'lt', 'settings', 'SP_DEFAULTLANG', 'Numatyta kalba', '2012-11-09 14:53:31'),
(10115, 'lt', 'settings', 'SP_DESCRIPTION', 'SEO skydelio aprašymas', '2012-11-09 14:53:31'),
(10116, 'lt', 'settings', 'SP_ENABLE_PROXY', 'Įjungti įgaliojimą', '2012-11-09 14:53:31'),
(10117, 'lt', 'settings', 'SP_HOTLINKING', 'Paveikslėlio su nuoroda, apsauga įjungta', '2012-11-09 14:53:31'),
(10118, 'lt', 'settings', 'SP_KEYWORDS', 'SEO skydo raktažodžiai', '2012-11-09 14:53:31'),
(10119, 'lt', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Raktinių žodžių skaičius turėtų būti patikrintas kiekvienoame cron vykdyme', '2012-11-09 14:53:31'),
(10120, 'lt', 'settings', 'SP_PAGINGNO', 'apsilankymo skaičius puslapyje', '2012-11-09 14:53:31'),
(10121, 'lt', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Įjungti pranešimą elektroniniu paštu,\r\n', '2012-11-09 14:53:31'),
(10122, 'lt', 'settings', 'SP_SMTP_HOST', 'SMTP Šeimininkas', '2012-11-09 14:53:31'),
(10123, 'lt', 'settings', 'SP_SMTP_MAIL', 'Įjungti SMTP', '2012-11-09 14:53:31'),
(10124, 'lt', 'settings', 'SP_SMTP_PASSWORD', 'SMTP pasvordas', '2012-11-09 14:53:31'),
(10125, 'lt', 'settings', 'SP_SMTP_USERNAME', 'SMTP vartotojo vardas', '2012-11-09 14:53:31'),
(10126, 'lt', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Sistema ataskaitos generavimo intervalas', '2012-11-09 14:53:31'),
(10127, 'lt', 'settings', 'SP_TITLE', 'SEO skydelio pavadinimas', '2012-11-09 14:53:31'),
(10128, 'lt', 'settings', 'SP_USER_AGENT', 'Vartotojo atstovas', '2012-11-09 14:53:31'),
(10129, 'lt', 'settings', 'SP_USER_GEN_REPORT', 'Leidžia vartotojui kurti ataskaitas', '2012-11-09 14:53:31'),
(10130, 'lt', 'settings', 'SP_USER_REGISTRATION', 'Vartotojo registracijos sąsaja', '2012-11-09 14:53:31'),
(10131, 'lt', 'settings', 'syssettingssaved', 'Sistemos nustatymai išsaugoti sėkmingai!', '2012-11-09 14:53:31'),
(10132, 'lt', 'settings', 'versionnotuptodatemsg', 'Jūsų SEO skydo įrengimas nėra atnaujintas. <br> Prašome atsisiųsti naują versiją', '2012-11-09 14:53:31'),
(10133, 'lt', 'settings', 'Your Seo Panel installation is up to date', 'Jūsų SEO skydelio montavimas yra atnaujinamas.', '2012-11-09 14:53:31'),
(10134, 'lt', 'siteauditor', 'Anchor', 'Inkaras', '2012-11-08 02:26:12'),
(10135, 'lt', 'siteauditor', 'anylinkcontainabovelinks', 'Bet kokios nuorodos virš nuorodos bus pašalintos iš ataskaitų', '2012-11-08 02:26:12'),
(10136, 'lt', 'siteauditor', 'anylinkcontainexcludesitemap', 'Bet kokios nuorodos virš nuorodos, bus pašalintos iš svetainės struktūros', '2012-11-08 02:26:12'),
(10137, 'lt', 'siteauditor', 'Check backlinks of pages', 'Patikrinti atgalinės nuorodos puslapius', '2012-11-08 02:26:12'),
(10138, 'lt', 'siteauditor', 'Check broken links in a page', 'Patikrinkite neveikiančias nuorodas į puslapį', '2012-11-08 02:26:12'),
(10139, 'lt', 'siteauditor', 'Check google pagerank of pages', 'Patikrinkite Google puslapių numerius puslapiuose', '2012-11-08 02:26:12'),
(10140, 'lt', 'siteauditor', 'Check pages indexed or not', 'Patikrinkite ar puslapiai indeksuojami', '2012-11-08 02:26:12'),
(10141, 'lt', 'siteauditor', 'Check Score', 'Patikrinti rezultatą', '2012-11-08 02:26:12'),
(10142, 'lt', 'siteauditor', 'checkborckenlinkwait', 'Patikrinkite Brocken nuorodas, kurios padidins projekto vykdymo laiko', '2012-11-08 02:26:12'),
(10143, 'lt', 'siteauditor', 'Completed project execution', 'Baigtas vykdyti projektas', '2012-11-08 02:26:12'),
(10144, 'lt', 'siteauditor', 'Crawled', 'Nuskaityti, patikrinti', '2012-11-08 02:26:12'),
(10145, 'lt', 'siteauditor', 'Crawled Pages', 'Patikrinti puslapiai', '2012-11-08 02:26:12'),
(10146, 'lt', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'Patikrinimas sėkmingas! Laukiama nuskaitymo kitame puslapyje', '2012-11-08 02:26:12'),
(10147, 'lt', 'siteauditor', 'Crawling Page', 'Nuskaitomas puslapis', '2012-11-08 02:26:12'),
(10148, 'lt', 'siteauditor', 'Duplicate Description', 'Pasikarotjantis aprašymas', '2012-11-08 02:26:12'),
(10149, 'lt', 'siteauditor', 'Duplicate Keywords', 'Pasikartojantys raktiniai žodžiai', '2012-11-08 02:26:12'),
(10150, 'lt', 'siteauditor', 'Duplicate Title', 'Pasikarotjantis pavadinimas', '2012-11-08 02:26:12'),
(10151, 'lt', 'siteauditor', 'Exclude links', 'Išskirkite nuorodas', '2012-11-08 02:26:12'),
(10152, 'lt', 'siteauditor', 'Execute with cron', 'Vykdyti su cron', '2012-11-08 02:26:12'),
(10153, 'lt', 'siteauditor', 'External', 'Išorinis', '2012-11-08 02:26:12'),
(10154, 'lt', 'siteauditor', 'External Links', 'Išorinės nuorodos', '2012-11-08 02:26:12'),
(10155, 'lt', 'siteauditor', 'Import Project Links', 'Importuoti projekto nuorodas', '2012-11-08 02:26:12'),
(10156, 'lt', 'siteauditor', 'Insert links separated with comma', 'Įterpti nuorodas, atskirtas kableliu', '2012-11-08 02:26:12'),
(10157, 'lt', 'siteauditor', 'insertlinkssepcoma', 'Įterpti nuorodas, atskirtas kableliu, neįtraukti begalinių nuorodų iš ataskaitų', '2012-11-08 02:26:12'),
(10158, 'lt', 'siteauditor', 'Link Reports', 'Nuoroda ataskaitos', '2012-11-08 02:26:12'),
(10159, 'lt', 'siteauditor', 'Link Title', 'Nuorodos pavadinimas', '2012-11-08 02:26:12'),
(10160, 'lt', 'siteauditor', 'Maximum number of pages to be checked', 'Maksimalus puslapių skaičius turi būti patikrintas', '2012-11-08 02:26:12'),
(10161, 'lt', 'siteauditor', 'Maximum Pages', 'Maksimalus puslapių skaičius', '2012-11-08 02:26:12'),
(10162, 'lt', 'siteauditor', 'No active projects found', 'Aktyvių projektų nerasta', '2012-11-08 02:26:12'),
(10163, 'lt', 'siteauditor', 'Nofollow', 'Nesusektas', '2012-11-08 02:26:12'),
(10164, 'lt', 'siteauditor', 'Number of pages is greater than', 'Puslapių skaičius yra didesnis nei', '2012-11-08 02:26:12'),
(10165, 'lt', 'siteauditor', 'Number of pages should be greater than', 'Puslapių skaičius turėtų būti didesnis nei', '2012-11-08 02:26:12'),
(10166, 'lt', 'siteauditor', 'Page Details', 'Puslapio informacija', '2012-11-08 02:26:12'),
(10167, 'lt', 'siteauditor', 'Page Link', 'Šio puslapio nuoroda', '2012-11-08 02:26:12'),
(10168, 'lt', 'siteauditor', 'Page Links', 'Puslapio nuorodos', '2012-11-08 02:26:12'),
(10169, 'lt', 'siteauditor', 'Pages Found', 'Surasti puslapiai', '2012-11-08 02:26:12'),
(10170, 'lt', 'siteauditor', 'pressescapetostopexecution', 'Spauskite <b> pabėgti </ b> raktą, kad sustabdyti vykdomą scenarijų\r\n', '2012-11-08 02:26:12'),
(10171, 'lt', 'siteauditor', 'Project Summary', 'Projekto santrauka', '2012-11-08 02:26:12'),
(10172, 'lt', 'siteauditor', 'Project Url', 'Projekto sveitainės adresas', '2012-11-08 02:26:12'),
(10173, 'lt', 'siteauditor', 'projectalreadyexist', 'Projektas šioje svetainėje jau egzistuoja', '2012-11-08 02:26:12'),
(10174, 'lt', 'siteauditor', 'Recheck Pages', 'Iš naujo tikrinkite puslapius', '2012-11-08 02:26:12'),
(10175, 'lt', 'siteauditor', 'Report Summary', 'Ataskaitos santrauka', '2012-11-08 02:26:12'),
(10176, 'lt', 'siteauditor', 'Run Project', 'Vykdyti projektą', '2012-11-08 02:26:12'),
(10177, 'lt', 'siteauditor', 'should start with', 'Turėtų prasidėti su', '2012-11-08 02:26:12'),
(10178, 'lt', 'siteauditor', 'Site Auditor Settings', 'Svetainės auditoriaus nustatymai', '2012-11-08 02:26:12'),
(10179, 'lt', 'siteauditor', 'Store all links found in a page', 'Sukaupkite visas nuorodas, surastas puslapyje', '2012-11-08 02:26:12'),
(10180, 'lt', 'siteauditor', 'The page description length is not between', 'Puslapio aprašymo ilgis yra ne tarp', '2012-11-08 02:26:12'),
(10181, 'lt', 'siteauditor', 'The page is brocken', 'Šis puslapis yra sugadintas', '2012-11-08 02:26:12'),
(10182, 'lt', 'siteauditor', 'The page is having exellent number of backlinks in', 'Puslapis turi puikias skaičių atgalines nuorodas\r\n', '2012-11-08 02:26:12'),
(10183, 'lt', 'siteauditor', 'The page is having exellent pagerank', 'Puslapis turi puikia paieškos kriterijų', '2012-11-08 02:26:12'),
(10184, 'lt', 'siteauditor', 'The page is having good number of backlinks in', 'Puslapis turi geras skaičių atgalines nuorodas', '2012-11-08 02:26:12'),
(10185, 'lt', 'siteauditor', 'The page is having good pagerank', 'Puslapis turi gerą paieškos kriterijų', '2012-11-08 02:26:12'),
(10186, 'lt', 'siteauditor', 'The page is having poor pagerank', 'Šis puslapis turi blogą paieškos kriterijų', '2012-11-08 02:26:12'),
(10187, 'lt', 'siteauditor', 'The page is having very good pagerank', 'Puslapis turi labai gera paieškos kriterijų', '2012-11-08 02:26:12'),
(10188, 'lt', 'siteauditor', 'The page is not having backlinks in', 'Puslapyje nėra atgalinės nuorodos', '2012-11-08 02:26:12'),
(10189, 'lt', 'siteauditor', 'The page is not indexed in', 'Puslapiai nėra indeksuojami', '2012-11-08 02:26:12'),
(10190, 'lt', 'siteauditor', 'The page keywords length is not between', 'Raktažodžių puslapyje ilgis yra ne tarp', '2012-11-08 02:26:12'),
(10191, 'lt', 'siteauditor', 'The page title length is not between', 'Puslapio pavadinimą ilgis yra ne tarp', '2012-11-08 02:26:12'),
(10192, 'lt', 'siteauditor', 'The total number of links in page is greater than', 'Nuorodų skaičius puslapyje yra didesnis nei', '2012-11-08 02:26:12'),
(10193, 'lt', 'siteauditor', 'to run project again if you stopped execution', 'Vykdyti projektą dar kartą, jei Jūs baigėte vykdymą', '2012-11-08 02:26:12'),
(10194, 'lt', 'siteauditor', 'to view the reports', 'Peržiūrėti ataskaitas', '2012-11-08 02:26:12'),
(10195, 'lt', 'siteauditor', 'Total Links', 'Iš viso Nuorodų', '2012-11-08 02:26:12'),
(10196, 'lt', 'siteauditor', 'totallinksgreaterallowed', 'Iš visų nuorodų taps didesnis nei maksimalios nuorodos projektui leidžiama\r\n', '2012-11-08 02:26:12'),
(10197, 'en', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Link', '2012-11-09 00:15:07'),
(10198, 'en', 'directory', 'clickaddfeatureddirectory', 'Click here to add your own featured directory here', '2012-11-09 00:15:07'),
(10199, 'en', 'directory', 'Coupon Offer', 'Coupon Offer', '2012-11-09 00:15:07'),
(10200, 'en', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Crawl relative links in a page', '2018-01-23 00:59:29'),
(10201, 'en', 'label', 'Select All', 'Select All', '2012-11-09 00:15:07'),
(10202, 'en', 'label', 'Clear All', 'Clear All', '2012-11-09 00:15:07'),
(10203, 'en', 'label', 'Current', 'Current', '2012-11-09 00:15:07'),
(10204, 'en', 'theme', 'Download Seo Panel Themes', 'Download Seo Panel Themes', '2012-11-09 00:15:07'),
(10205, 'en', 'label', 'Theme', 'Theme', '2012-11-09 00:15:07'),
(10206, 'en', 'panel', 'Themes Manager', 'Themes Manager', '2012-11-09 00:15:07'),
(10207, 'it', 'common', 'Dashboard', 'Dashboard', '2022-07-11 15:16:48'),
(10208, 'it', 'common', 'Home', 'Home', '2022-07-11 15:16:48'),
(10209, 'it', 'common', 'Powered by', 'Creato da', '2022-07-11 15:16:48'),
(10210, 'it', 'directory', 'clickaddfeatureddirectory', 'Clicca qui per aggiungere una propria directory in evidenza qui', '2012-11-09 00:50:02'),
(10211, 'it', 'directory', 'Coupon Offer', 'Codice sconto', '2012-11-09 00:50:02'),
(10212, 'it', 'directory', 'Directories with out Reciprocal Link', 'Directory senza link reciproci', '2012-11-09 00:50:02'),
(10213, 'it', 'label', 'Clear All', 'Ripulisci tuto', '2022-07-11 15:17:58'),
(10214, 'it', 'label', 'Current', 'Attuale', '2022-07-11 15:17:58'),
(10215, 'it', 'label', 'Select All', 'Seleziona tutto', '2022-07-11 15:17:58'),
(10216, 'it', 'label', 'Theme', 'Tema', '2022-07-11 15:17:58'),
(10217, 'it', 'panel', 'Themes Manager', 'Gestione tema', '2022-07-11 15:20:07'),
(10218, 'it', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Crawler relativi i link in una pagina', '2018-08-21 11:16:32'),
(10219, 'it', 'theme', 'Download Seo Panel Themes', 'Scarica i temi del Seo Panel', '2012-11-09 00:52:27'),
(10220, 'ja', 'common', 'Dashboard', 'ダッシュボード', '2019-05-25 22:40:02'),
(10221, 'ja', 'common', 'Home', 'ホーム', '2019-05-25 22:40:02'),
(10222, 'ja', 'common', 'Powered by', 'Powered by', '2019-05-25 22:40:02'),
(10223, 'ja', 'directory', 'clickaddfeatureddirectory', '独自のディレクトリを追加するにはここをクリック', '2012-11-09 09:20:41'),
(10224, 'ja', 'directory', 'Coupon Offer', 'クーポンオファー', '2012-11-09 09:20:41'),
(10225, 'ja', 'directory', 'Directories with out Reciprocal Link', '相互リンクなしのディレクトリ', '2012-11-09 09:20:41'),
(10226, 'ja', 'label', 'Clear All', 'すべてクリア', '2019-04-01 13:45:51'),
(10227, 'ja', 'label', 'Current', '現在(最新)', '2019-04-01 13:45:51'),
(10228, 'ja', 'label', 'Select All', 'すべて選択', '2019-04-01 13:45:51'),
(10229, 'ja', 'label', 'Theme', 'テーマ', '2019-04-01 13:45:51'),
(10230, 'ja', 'panel', 'Themes Manager', 'テーママネージャー', '2019-04-01 13:46:57'),
(10231, 'ja', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'ページ内の相対リンクをクロール', '2019-04-01 13:52:17'),
(10232, 'ru', 'common', 'Dashboard', 'Панель управления', '2024-07-17 15:16:33'),
(10233, 'ru', 'common', 'Home', 'Домашняя', '2024-07-17 15:16:33'),
(10234, 'ru', 'common', 'Powered by', 'Работает на', '2024-07-17 15:16:33'),
(10235, 'ru', 'directory', 'clickaddfeatureddirectory', 'Нажмите здесь для добавления своих каталогов', '2012-11-09 11:03:15'),
(10236, 'ru', 'directory', 'Coupon Offer', 'Предложить купон', '2012-11-09 11:03:15'),
(10237, 'ru', 'directory', 'Directories with out Reciprocal Link', 'Каталоги с обратной ссылкой', '2012-11-09 11:03:15'),
(10238, 'ru', 'label', 'Clear All', 'Очистить все', '2024-07-17 15:17:22'),
(10239, 'ru', 'label', 'Current', 'Актуально', '2024-07-17 15:17:22'),
(10240, 'ru', 'label', 'Select All', 'Выбрать все', '2024-07-17 15:17:22'),
(10241, 'ru', 'label', 'Theme', 'Тема', '2024-07-17 15:17:22'),
(10242, 'ru', 'panel', 'Themes Manager', 'Управление шаблонами', '2024-07-17 15:19:14'),
(10243, 'ru', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Сканирование обратных ссылок на страницах', '2024-07-17 15:22:42'),
(10244, 'ru', 'theme', 'Download Seo Panel Themes', 'Скачать темы для Seo Panel', '2012-11-09 11:26:02'),
(10245, 'lt', 'directory', 'clickaddfeatureddirectory', 'Pridėkite savo mėgstamą direktoriją čia', '2014-01-12 16:36:58'),
(10246, 'lt', 'directory', 'Coupon Offer', 'Kupono pasiūlymas', '2014-01-12 16:36:58'),
(10247, 'lt', 'directory', 'Directories with out Reciprocal Link', 'Žinynai su abipusiu nuorodų apsikeitimu\r\n', '2014-01-12 16:36:58'),
(10248, 'lt', 'label', 'Clear All', 'Išvalyti viską', '2014-01-12 16:42:59'),
(10249, 'lt', 'label', 'Current', 'Dabartinis', '2014-01-12 16:42:59'),
(10250, 'lt', 'label', 'Select All', 'Pasirinkiti Viską', '2014-01-12 16:42:59'),
(10251, 'lt', 'label', 'Theme', 'Tema', '2014-01-12 16:42:59'),
(10252, 'lt', 'panel', 'Themes Manager', 'Temų vedlys', '2014-01-12 16:51:46'),
(10253, 'lt', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Nuskaityti santykines nuorodas į puslapį', '2012-11-09 14:53:31'),
(10254, 'lt', 'theme', 'Download Seo Panel Themes', 'Parsisiųsti SEO Panel Temas', '2012-11-09 14:54:19'),
(10255, 'bg', 'common', 'Dashboard', 'Табло', '2019-05-25 22:00:14'),
(10256, 'bg', 'common', 'Home', 'Начало', '2019-05-25 22:00:14'),
(10257, 'bg', 'common', 'Powered by', 'Powered by', '2019-05-25 22:00:14'),
(10258, 'bg', 'directory', 'clickaddfeatureddirectory', 'Кликнете тук за да добавите собствена директория', '2012-11-10 02:03:43'),
(10259, 'bg', 'directory', 'Coupon Offer', 'Талон за отстъпка', '2012-11-10 02:03:43'),
(10260, 'bg', 'directory', 'Directories with out Reciprocal Link', 'Директории без реципрочен линк', '2012-11-10 02:03:43'),
(10261, 'bg', 'label', 'Clear All', 'Изчисти всички', '2018-08-21 11:09:26'),
(10262, 'bg', 'label', 'Current', 'Избран', '2018-08-21 11:09:26'),
(10263, 'bg', 'label', 'Select All', 'Избери всички', '2018-08-21 11:09:26'),
(10264, 'bg', 'label', 'Theme', 'Шаблон', '2018-08-21 11:09:26'),
(10265, 'bg', 'panel', 'Themes Manager', 'Управление на шаблони', '2018-08-21 11:14:04'),
(10266, 'bg', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Релативни линкове в страницата', '2018-08-21 11:24:42'),
(10267, 'bg', 'theme', 'Download Seo Panel Themes', 'Изтеглете шаблони за Seo Panel', '2012-11-10 02:06:43'),
(10268, 'fr', 'common', 'Dashboard', 'Tableau de bord', '2020-02-14 16:05:11'),
(10269, 'fr', 'common', 'Home', 'Accueil', '2020-02-14 16:05:11'),
(10270, 'fr', 'common', 'Powered by', 'Propulsé par ', '2020-02-14 16:05:11'),
(10271, 'fr', 'directory', 'clickaddfeatureddirectory', 'Cliquer ici pour ajouter vos propres annuaires phares', '2012-11-11 01:37:55'),
(10272, 'fr', 'directory', 'Coupon Offer', 'Offre de réduction', '2012-11-11 01:37:55'),
(10273, 'fr', 'directory', 'Directories with out Reciprocal Link', 'Annuaires sans lien réciproque', '2012-11-11 01:37:55'),
(10274, 'fr', 'label', 'Clear All', 'Tout effacer', '2020-02-14 16:12:40'),
(10275, 'fr', 'label', 'Current', 'Actuel', '2020-02-14 16:12:40'),
(10276, 'fr', 'label', 'Select All', 'Tout sélectionner', '2020-02-14 16:12:40'),
(10277, 'fr', 'label', 'Theme', 'Thème', '2020-02-14 16:12:40'),
(10278, 'fr', 'panel', 'Themes Manager', 'Gestionnaire de thèmes', '2020-02-14 16:14:52'),
(10279, 'fr', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Explorer les liens relatifs dans une page', '2019-03-28 18:39:30'),
(10280, 'fr', 'theme', 'Download Seo Panel Themes', 'Télécharger des thèmes Seo Panel', '2012-11-11 01:41:13'),
(10281, 'pt', 'common', 'Dashboard', 'Painel', '2019-05-25 22:43:55'),
(10282, 'pt', 'common', 'Home', 'Home', '2019-05-25 22:43:55'),
(10283, 'pt', 'common', 'Powered by', 'Powered by', '2019-05-25 22:43:55'),
(10284, 'pt', 'label', 'Clear All', 'Apagar todos', '2018-01-26 00:11:22'),
(10285, 'pt', 'label', 'Current', 'actual', '2018-01-26 00:11:22'),
(10286, 'pt', 'label', 'Select All', 'Selecionar todos', '2018-01-26 00:11:22'),
(10287, 'pt', 'label', 'Theme', 'Tema', '2018-01-26 00:11:22'),
(10288, 'pt', 'directory', 'clickaddfeatureddirectory', 'Selecione aqui para adicionar o seu próprio directório', '2012-11-11 01:59:13'),
(10289, 'pt', 'directory', 'Coupon Offer', 'Cuppon de oferta', '2012-11-11 01:59:13'),
(10290, 'pt', 'directory', 'Directories with out Reciprocal Link', 'Directórios sem Links Reciprocos', '2012-11-11 01:59:13'),
(10291, 'pt', 'panel', 'Themes Manager', 'Gestor de temas', '2018-01-26 00:18:33'),
(10292, 'pt', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Indexar links relativos em uma página', '2018-01-26 00:23:30'),
(10293, 'tr', 'common', 'Dashboard', 'Yönetim Paneli', '2019-05-25 22:52:20'),
(10294, 'tr', 'common', 'Hello', 'Merhaba', '2019-05-25 22:52:20'),
(10295, 'tr', 'common', 'Home', 'Ana Sayfa', '2019-05-25 22:52:20'),
(10296, 'tr', 'common', 'Powered by', 'Tarafından desteklenmektedir', '2019-05-25 22:52:20'),
(10297, 'tr', 'directory', 'clickaddfeatureddirectory', 'Buraya kendi özellikli dizin eklemek için buraya tıklayın', '2012-11-11 13:13:26'),
(10298, 'tr', 'directory', 'Coupon Code', 'kupon Kodu', '2012-11-11 13:13:26'),
(10299, 'tr', 'directory', 'Coupon Offer', 'Kupon Teklifi', '2012-11-11 13:13:26'),
(10300, 'tr', 'directory', 'couponcodenote', 'Her özellikli sunulması için kupon kodu yukarıdaki kullanın ve teklif [REDUCTION_PER] olsun!', '2012-11-11 13:13:26'),
(10301, 'tr', 'directory', 'Directories with out Reciprocal Link', 'Üzerinden Karşılıklı Link ile Dizinler', '2012-11-11 13:13:26'),
(10302, 'tr', 'label', 'Clear All', 'Hepsini Temizle', '2012-11-11 13:14:34'),
(10303, 'tr', 'label', 'Current', 'Akış', '2012-11-11 13:14:34'),
(10304, 'tr', 'label', 'Daily', 'Günlük', '2012-11-11 13:14:34'),
(10305, 'tr', 'label', 'Monthly', 'Aylık', '2012-11-11 13:14:34'),
(10306, 'tr', 'label', 'Select All', 'Hepsini Seç', '2012-11-11 13:14:34'),
(10307, 'tr', 'label', 'Theme', 'Tema', '2012-11-11 13:14:34'),
(10308, 'tr', 'label', 'Weekly', 'Haftalık', '2012-11-11 13:14:34'),
(10309, 'tr', 'panel', 'Archived Reports', 'Arşivlenmiş Raporlar', '2017-02-05 01:50:50'),
(10310, 'tr', 'panel', 'Report Settings', 'Rapor Ayarları', '2017-02-05 01:50:50'),
(10311, 'tr', 'panel', 'Schedule Reports', 'Zamanlanmış Görev Raporları', '2017-02-05 01:50:50'),
(10312, 'tr', 'panel', 'Search Engine Manager', 'Arama Motoru Yöneticisi', '2017-02-05 01:50:50'),
(10313, 'tr', 'panel', 'Themes Manager', 'Tema Yöneticisi', '2017-02-05 01:50:50'),
(10314, 'tr', 'plugin', 'Download Seo Panel Plugins', 'Seo Panel Eklentilerini İndir', '2012-11-11 13:16:59'),
(10315, 'tr', 'report', '2 Days', '2 Gün', '2012-11-11 13:19:49'),
(10316, 'tr', 'report', 'Email notification', 'e-posta bildirimi', '2012-11-11 13:19:49'),
(10317, 'tr', 'report', 'keywordnumbercheckedcronnote', 'Not: Varsayılan 0 Tüm anahtar kelimeleri kontrol edilmelidir anlamına gelir', '2012-11-11 13:19:49'),
(10318, 'tr', 'report', 'Next report generation time', 'Gelecek rapor oluşturma zamanı', '2012-11-11 13:19:49'),
(10319, 'tr', 'report', 'Reports generation interval', 'Raporlar oluşturma aralığı', '2012-11-11 13:19:49'),
(10320, 'tr', 'report', 'reportsettingssaved', 'Rapor ayarları başarıyla kaydedildi!', '2012-11-11 13:19:49'),
(10321, 'tr', 'report', 'sheduledsuccessfully', 'Zamanlanmış rapor oluşturma ayarlandı', '2012-11-11 13:19:49'),
(10322, 'tr', 'reports', 'report_email_body_text1', '\r\nRaporlarınız seo panel başarıyla oluşturuldu.Ekteki raporlar kontrol edin.', '2012-11-11 13:21:26'),
(10323, 'tr', 'reports', 'report_email_body_text2', 'Yukarıdaki raporlar net değilse, lütfen doğrudan hesabınızdan raporları görüntülemek için [LOGIN_LINK]tıklayınız', '2012-11-11 13:21:26'),
(10324, 'tr', 'reports', 'report_email_subject', 'SEO raporları başarıyla oluşturuldu', '2012-11-11 13:21:26'),
(10325, 'tr', 'searchengine', 'max_results', 'Maksimum Sonuç sayısı', '2012-11-11 13:22:24'),
(10326, 'tr', 'searchengine', 'no_of_results_page', 'Sayfa başına sonuç sayısı', '2012-11-11 13:22:24'),
(10327, 'tr', 'settings', 'entersmtpdetails', 'Lütfen SMTP mail ayarlarınızı giriniz', '2017-02-04 18:45:16'),
(10328, 'tr', 'settings', 'getallpluginfree', 'Ayrıca tüm <b>plugins</b> geliştirmek <b>Ücretsiz!</b>', '2017-02-04 18:45:16'),
(10329, 'tr', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Kullanıcıların zamanlanmş rapor hazırlamalarına izin ver', '2017-02-04 18:45:16'),
(10330, 'tr', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Anahtar kelime sayısı her cron yürütme kontrol edilmesi gerekir', '2017-02-04 18:45:16'),
(10331, 'tr', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Bir sayfa göreceli bağlantıları Tarama', '2017-02-04 18:45:16');
INSERT INTO `texts` VALUES
(10332, 'tr', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'E-posta bildirimi rapor etkinleştir', '2017-02-04 18:45:16'),
(10333, 'tr', 'settings', 'SP_SMTP_HOST', 'SMTP Sunucu', '2017-02-04 18:45:16'),
(10334, 'tr', 'settings', 'SP_SMTP_MAIL', 'SMTP etkinleştir', '2017-02-04 18:45:16'),
(10335, 'tr', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Şifresi', '2017-02-04 18:45:16'),
(10336, 'tr', 'settings', 'SP_SMTP_USERNAME', 'SMTP Kullanıcı Adı', '2017-02-04 18:45:16'),
(10337, 'tr', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Sistem rapor oluşturma aralığı', '2017-02-04 18:45:16'),
(10338, 'tr', 'theme', 'Download Seo Panel Themes', 'Seo Panel teması indir', '2012-11-11 13:29:45'),
(10342, 'cn', 'common', 'Dashboard', '儀表盤', '2019-05-25 22:02:13'),
(10343, 'cn', 'common', 'Hello', '你好', '2019-05-25 22:02:13'),
(10344, 'cn', 'common', 'Home', '家', '2019-05-25 22:02:13'),
(10345, 'cn', 'common', 'Powered by', '授權於', '2019-05-25 22:02:13'),
(10350, 'zh', 'common', 'Dashboard', '仪表盘', '2019-05-25 22:01:23'),
(10351, 'zh', 'common', 'Hello', '你好', '2019-05-25 22:01:23'),
(10352, 'zh', 'common', 'Home', '家', '2019-05-25 22:01:23'),
(10354, 'ar', 'common', 'Dashboard', 'لوحة أجهزة القيا', '2019-05-25 21:59:04'),
(10355, 'ar', 'common', 'Hello', 'مرحب', '2019-05-25 21:59:04'),
(10356, 'ar', 'common', 'Home', 'منز', '2019-05-25 21:59:04'),
(10358, 'fa', 'common', 'Dashboard', 'داشبور', '2018-01-24 13:39:35'),
(10359, 'fa', 'common', 'Home', 'خان', '2018-01-24 13:39:35'),
(10361, 'pl', 'common', 'Dashboard', 'Pulpit', '2019-05-25 22:43:11'),
(10362, 'pl', 'common', 'Hello', 'Halo', '2019-05-25 22:43:11'),
(10363, 'pl', 'common', 'Home', 'Dom', '2019-05-25 22:43:11'),
(31561, 'ca', 'siteauditor', 'The page is having exellent number of backlinks in', 'The page has excellent number of Enllaços entrants in', '2025-11-21 01:03:34'),
(31560, 'ca', 'siteauditor', 'The page is having excellent page authority value', 'The page has excellent Autoritat de la pàgina Valor', '2025-11-21 01:03:34'),
(31559, 'ca', 'siteauditor', 'The page is brocken', 'The page is broken', '2025-11-21 01:03:34'),
(31558, 'ca', 'siteauditor', 'The page description length is not between', 'The page Descripció length is not between', '2025-11-21 01:03:34'),
(31555, 'ca', 'siteauditor', 'should start with', 'should Iniciar with', '2025-11-21 01:03:34'),
(31554, 'ca', 'siteauditor', 'Run Project', 'Run Project', '2025-11-21 01:03:34'),
(31553, 'ca', 'siteauditor', 'Report Summary', 'Informe Summary', '2025-11-21 01:03:34'),
(31551, 'ca', 'siteauditor', 'projectalreadyexist', 'Project for this Lloc web already exist', '2025-11-21 01:03:34'),
(31549, 'ca', 'siteauditor', 'Project Summary', 'Project Summary', '2025-11-21 01:03:34'),
(31548, 'ca', 'siteauditor', 'pressescapetostopexecution', 'Press <b>escape</b> key to stop execution of script', '2025-11-21 01:03:34'),
(31546, 'ca', 'siteauditor', 'Page Links', 'Page Links', '2025-11-21 01:03:34'),
(31544, 'ca', 'siteauditor', 'Page Details', 'Page Detalls', '2025-11-21 01:03:34'),
(31543, 'ca', 'siteauditor', 'Number of pages should be greater than', 'Number of pages should be greater than', '2025-11-21 01:03:34'),
(31542, 'ca', 'siteauditor', 'Number of pages is greater than', 'Number of pages is greater than', '2025-11-21 01:03:34'),
(31540, 'ca', 'siteauditor', 'No active projects found', 'No Actiu projects found', '2025-11-21 01:03:34'),
(31539, 'ca', 'siteauditor', 'Maximum Pages', 'Maximum Pages', '2025-11-21 01:03:34'),
(31538, 'ca', 'siteauditor', 'Maximum number of pages to be checked', 'Maximum number of pages to be Verificat', '2025-11-21 01:03:34'),
(31537, 'ca', 'siteauditor', 'Link Title', 'Link Títol', '2025-11-21 01:03:34'),
(31534, 'ca', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2025-11-21 01:03:34'),
(31533, 'ca', 'siteauditor', 'Import Project Links', 'Importar Project Links', '2025-11-21 01:03:34'),
(31532, 'ca', 'siteauditor', 'External Links', 'External Links', '2025-11-21 01:03:34'),
(31531, 'ca', 'siteauditor', 'External', 'External', '2025-11-21 01:03:34'),
(31530, 'ca', 'siteauditor', 'Execute with cron', 'Execute with cron', '2025-11-21 01:03:34'),
(31527, 'ca', 'siteauditor', 'Duplicate Keywords', 'Duplicate Paraules clau', '2025-11-21 01:03:34'),
(31526, 'ca', 'siteauditor', 'Duplicate Description', 'Duplicate Descripció', '2025-11-21 01:03:34'),
(31524, 'ca', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'Indexat Correctament! Waiting for crawling Següent page for', '2025-11-21 01:03:34'),
(31521, 'ca', 'siteauditor', 'Completed project execution', 'Completat project execution', '2025-11-21 01:03:34'),
(31520, 'ca', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will increase the execution time of a project', '2025-11-21 01:03:34'),
(31519, 'ca', 'siteauditor', 'Check Score', 'Check Puntuació', '2025-11-21 01:03:34'),
(31517, 'ca', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of pages', '2025-11-21 01:03:34'),
(31514, 'ca', 'siteauditor', 'Check backlinks of pages', 'Verificar enllaços entrants of pages', '2025-11-21 01:03:34'),
(31513, 'ca', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded De Mapa del lloc', '2025-11-21 01:03:34'),
(31149, 'ca', 'label', 'Daily', 'Daily', '2025-11-21 01:03:34'),
(31144, 'ca', 'label', 'Comments', 'Comments', '2025-11-21 01:03:34'),
(31145, 'ca', 'label', 'Cookie', 'Cookie', '2025-11-21 01:03:34'),
(31134, 'ca', 'keyword', 'Your keyword count already reached the limit', 'Paraula clau Recompte already reached the limit for this Usuari!', '2025-11-21 01:03:34'),
(30881, 'ca', 'analytics', 'Avg. Session Duration', 'Durada mitjana de la sessió', '2025-11-21 01:03:34'),
(30882, 'ca', 'analytics', 'Bounce Rate', 'Taxa de rebot', '2025-11-21 01:03:34'),
(30883, 'ca', 'analytics', 'Goal Completions', 'Assoliment d''objectius', '2025-11-21 01:03:34'),
(30884, 'ca', 'analytics', 'New Users', 'Nous usuaris', '2025-11-21 01:03:34'),
(30885, 'ca', 'analytics', 'Sessions', 'Sessions', '2025-11-21 01:03:34'),
(30886, 'ca', 'analytics', 'Users', 'Usuaris', '2025-11-21 01:03:34'),
(30887, 'ca', 'analytics', 'view_id_not_found_error', 'Error: Analítiques Veure ID is not set for Lloc web. Editar lloc web and Actualitzar Veure ID.', '2025-11-21 01:03:34'),
(30888, 'ca', 'api', 'API Guide', 'API Guide', '2025-11-21 01:03:34'),
(30889, 'ca', 'api', 'API Url', 'API URL', '2025-11-21 01:03:34'),
(30890, 'ca', 'backlink', 'Backlink Count', 'Nombre d''enllaços entrants', '2025-11-21 01:03:34'),
(30891, 'ca', 'backlink', 'clickproceedbacklink', 'Introduïu l''URL''s <b>Una per línia</b>. Feu clic a <b>Continuar</b> to Verificar enllaços entrants.', '2025-11-21 01:03:34'),
(30892, 'ca', 'backlink', 'Domain Backlink Count', 'Nombre d''enllaços entrants del domini', '2025-11-21 01:03:34'),
(30893, 'ca', 'backlink', 'Domain Backlinks', 'Enllaços entrants del domini', '2025-11-21 01:03:34'),
(30894, 'ca', 'backlink', 'Saved backlink results of', 'Desat Enllaç entrant Resultats of', '2025-11-21 01:03:34'),
(30895, 'ca', 'blog', 'Newer Posts', 'Entrades més recents', '2025-11-21 01:03:34'),
(30896, 'ca', 'blog', 'Nothing Found', 'No s''ha trobat res', '2025-11-21 01:03:34'),
(30897, 'ca', 'blog', 'NothingFound_text2', 'Ho sentim, però res coincideix amb els vostres criteris de cerca. Si us plau, torneu-ho a provar amb diferents paraules clau.', '2025-11-21 01:03:34'),
(30898, 'ca', 'blog', 'Older Posts', 'Entrades més antigues', '2025-11-21 01:03:34'),
(30899, 'ca', 'button', 'Cancel', 'Cancel·lar', '2025-11-21 01:03:34'),
(30900, 'ca', 'button', 'Check Status', 'Verificar estat', '2025-11-21 01:03:34'),
(30901, 'ca', 'button', 'Proceed', 'Continuar', '2025-11-21 01:03:34'),
(30902, 'ca', 'button', 'Reload', 'Recarregar', '2025-11-21 01:03:34'),
(30903, 'ca', 'button', 'Search', 'Cercar', '2025-11-21 01:03:34'),
(30904, 'ca', 'button', 'Show Details', 'Mostrar detalls', '2025-11-21 01:03:34'),
(30905, 'ca', 'button', 'Show Records', 'Mostrar registres', '2025-11-21 01:03:34'),
(30906, 'ca', 'button', 'Skip', 'Saltar', '2025-11-21 01:03:34'),
(30907, 'ca', 'button', 'Submit', 'Enviar', '2025-11-21 01:03:34'),
(30908, 'ca', 'common', 'Action', 'Acció', '2025-11-21 01:03:34'),
(30909, 'ca', 'common', 'Activate', 'Activar', '2025-11-21 01:03:34'),
(30910, 'ca', 'common', 'Active', 'Actiu', '2025-11-21 01:03:34'),
(30911, 'ca', 'common', 'Admin Panel', 'Panell d''administració', '2025-11-21 01:03:34'),
(30912, 'ca', 'common', 'Alexa Rank', 'Posició Alexa', '2025-11-21 01:03:34'),
(30913, 'ca', 'common', 'All', 'Tot', '2025-11-21 01:03:34'),
(30914, 'ca', 'common', 'API Token', 'Token API', '2025-11-21 01:03:34'),
(30915, 'ca', 'common', 'Blog', 'Blog', '2025-11-21 01:03:34'),
(30916, 'ca', 'common', 'Category', 'Categoria', '2025-11-21 01:03:34'),
(30917, 'ca', 'common', 'Checked', 'Verificat', '2025-11-21 01:03:34'),
(30918, 'ca', 'common', 'contact', 'Contacte', '2025-11-21 01:03:34'),
(30919, 'ca', 'common', 'copyright', 'Copyright © [year] www.seopanel.org Tot rights reserved', '2025-11-21 01:03:34'),
(30920, 'ca', 'common', 'Country', 'País', '2025-11-21 01:03:34'),
(30921, 'ca', 'common', 'Crawl Meta Data', 'Indexar metadades', '2025-11-21 01:03:34'),
(30922, 'ca', 'common', 'Dashboard', 'Tauler de control', '2025-11-21 01:03:34'),
(30923, 'ca', 'common', 'Date', 'Data', '2025-11-21 01:03:34'),
(30924, 'ca', 'common', 'Debug', 'Depuració', '2025-11-21 01:03:34'),
(30925, 'ca', 'common', 'Delete', 'Eliminar', '2025-11-21 01:03:34'),
(30926, 'ca', 'common', 'Details', 'Detalls', '2025-11-21 01:03:34'),
(30927, 'ca', 'common', 'Directory', 'Directori', '2025-11-21 01:03:34'),
(30928, 'ca', 'common', 'Domain Authority', 'Autoritat del domini', '2025-11-21 01:03:34'),
(30929, 'ca', 'common', 'Donate', 'Donar', '2025-11-21 01:03:34'),
(30930, 'ca', 'common', 'Edit', 'Editar', '2025-11-21 01:03:34'),
(30931, 'ca', 'common', 'Edit User Type', 'Editar usuari Tipus', '2025-11-21 01:03:34'),
(30932, 'ca', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2025-11-21 01:03:34'),
(30933, 'ca', 'common', 'entrynotvalid', 'L''entrada introduïda no sembla vàlida', '2025-11-21 01:03:34'),
(30934, 'ca', 'common', 'Errors', 'Errors', '2025-11-21 01:03:34'),
(30935, 'ca', 'common', 'failed', 'Fallat', '2025-11-21 01:03:34'),
(30936, 'ca', 'common', 'forum', 'Fòrum', '2025-11-21 01:03:34'),
(30937, 'ca', 'common', 'Found', 'Found', '2025-11-21 01:03:34'),
(30938, 'ca', 'common', 'General', 'General', '2025-11-21 01:03:34'),
(30939, 'ca', 'common', 'Google Pagerank', 'Google Pagerank', '2025-11-21 01:03:34'),
(30940, 'ca', 'common', 'Hello', 'Hello', '2025-11-21 01:03:34'),
(30941, 'ca', 'common', 'help', 'Ajuda', '2025-11-21 01:03:34'),
(30942, 'ca', 'common', 'hidenews', 'Hide Seo Panel News', '2025-11-21 01:03:34'),
(30943, 'ca', 'common', 'Home', 'Inici', '2025-11-21 01:03:34'),
(30944, 'ca', 'common', 'Id', 'Id', '2025-11-21 01:03:34'),
(30945, 'ca', 'common', 'Inactivate', 'Inactivate', '2025-11-21 01:03:34'),
(30946, 'ca', 'common', 'Inactive', 'Inactive', '2025-11-21 01:03:34'),
(30947, 'ca', 'common', 'Internal error occured', 'Internal Error occured', '2025-11-21 01:03:34'),
(30948, 'ca', 'common', 'Invalid characters', 'Invalid characters', '2025-11-21 01:03:34'),
(30949, 'ca', 'common', 'Invalid code entered', 'S''ha introduït un codi invàlid', '2025-11-21 01:03:34'),
(30950, 'ca', 'common', 'Invalid email address entered', 'S''ha introduït una adreça de correu electrònic invàlida', '2025-11-21 01:03:34'),
(30951, 'ca', 'common', 'Invalid Url', 'Invalid URL', '2025-11-21 01:03:34'),
(30952, 'ca', 'common', 'Invalid value', 'Invalid Valor', '2025-11-21 01:03:34'),
(30953, 'ca', 'common', 'Keyword', 'Paraula clau', '2025-11-21 01:03:34'),
(30954, 'ca', 'common', 'Keywords', 'Paraules clau', '2025-11-21 01:03:34'),
(30955, 'ca', 'common', 'Keywords Count', 'Paraules clau Recompte', '2025-11-21 01:03:34'),
(30956, 'ca', 'common', 'lang', 'Idioma', '2025-11-21 01:03:34'),
(30957, 'ca', 'common', 'Link', 'Link', '2025-11-21 01:03:34'),
(30958, 'ca', 'common', 'Logout', 'Tancar sessió', '2025-11-21 01:03:34'),
(30959, 'ca', 'common', 'Metric', 'Metric', '2025-11-21 01:03:34'),
(30960, 'ca', 'common', 'MOZ Rank', 'MOZ Posició', '2025-11-21 01:03:34'),
(30961, 'ca', 'common', 'My Account', 'El meu compte', '2025-11-21 01:03:34'),
(30962, 'ca', 'Common', 'Name', 'Nom', '2025-11-21 01:03:34'),
(30963, 'ca', 'common', 'New User Type', 'Nou Usuari Tipus', '2025-11-21 01:03:34'),
(30964, 'ca', 'common', 'No', 'No', '2025-11-21 01:03:34'),
(30965, 'ca', 'common', 'No Keywords Found', 'No Paraules clau Found', '2025-11-21 01:03:34'),
(30966, 'ca', 'common', 'No Records Found', 'No s''han trobat registres', '2025-11-21 01:03:34'),
(30967, 'ca', 'common', 'noactivetools', 'No Actiu Eines SEO Found!', '2025-11-21 01:03:34'),
(30968, 'ca', 'common', 'nowebsites', 'No Llocs web Found', '2025-11-21 01:03:34'),
(30969, 'ca', 'common', 'Number', 'Number', '2025-11-21 01:03:34'),
(30970, 'ca', 'common', 'Page Authority', 'Autoritat de la pàgina', '2025-11-21 01:03:34'),
(30971, 'ca', 'common', 'Pagerank', 'Pagerank', '2025-11-21 01:03:34'),
(30972, 'ca', 'common', 'password632', 'The Contrasenya string should have a length between 6 and 32', '2025-11-21 01:03:34'),
(30973, 'ca', 'common', 'passwordnotmatch', 'The passwords do not match', '2025-11-21 01:03:34'),
(30974, 'ca', 'common', 'Period', 'Period', '2025-11-21 01:03:34'),
(30975, 'ca', 'common', 'Plugins', 'Complements', '2025-11-21 01:03:34'),
(30976, 'ca', 'common', 'Powered by', 'Powered by', '2025-11-21 01:03:34'),
(30977, 'ca', 'common', 'Price', 'Price', '2025-11-21 01:03:34'),
(30978, 'ca', 'common', 'Pricing', 'Pricing', '2025-11-21 01:03:34'),
(30979, 'ca', 'common', 'Priority', 'Priority', '2025-11-21 01:03:34'),
(30980, 'ca', 'common', 'Profile', 'Perfil', '2025-11-21 01:03:34'),
(30981, 'ca', 'common', 'Range', 'Range', '2025-11-21 01:03:34'),
(30982, 'ca', 'common', 'Rank', 'Posició', '2025-11-21 01:03:34'),
(30983, 'ca', 'common', 'Rankings', 'Rankings', '2025-11-21 01:03:34'),
(30984, 'ca', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification Fallat', '2025-11-21 01:03:34'),
(30985, 'ca', 'common', 'Reports', 'Informes', '2025-11-21 01:03:34'),
(30986, 'ca', 'common', 'Results', 'Resultats', '2025-11-21 01:03:34'),
(30987, 'ca', 'common', 'Sample CSV File', 'Sample CSV File', '2025-11-21 01:03:34'),
(30988, 'ca', 'common', 'Search Engine', 'Motor de cerca', '2025-11-21 01:03:34'),
(30989, 'ca', 'common', 'Search Engine Count', 'Motor de cerca Recompte', '2025-11-21 01:03:34'),
(30990, 'ca', 'common', 'Select', 'Seleccionar', '2025-11-21 01:03:34'),
(30991, 'ca', 'common', 'Seo Plugins', 'Complements SEO', '2025-11-21 01:03:34'),
(30992, 'ca', 'common', 'Seo Tools', 'Eines SEO', '2025-11-21 01:03:34'),
(30993, 'ca', 'common', 'Server', 'Server', '2025-11-21 01:03:34'),
(30994, 'ca', 'common', 'Sign out', 'Tancar sessió', '2025-11-21 01:03:34'),
(30995, 'ca', 'common', 'Sign Up', 'Registrar-se', '2025-11-21 01:03:34'),
(30996, 'ca', 'common', 'signin', 'Iniciar sessió', '2025-11-21 01:03:34'),
(30997, 'ca', 'common', 'Source', 'Source', '2025-11-21 01:03:34'),
(30998, 'ca', 'common', 'Spam Score', 'Spam Puntuació', '2025-11-21 01:03:34'),
(30999, 'ca', 'common', 'Status', 'Estat', '2025-11-21 01:03:34'),
(31000, 'ca', 'common', 'Support', 'Support', '2025-11-21 01:03:34'),
(31001, 'ca', 'common', 'Thank you', 'Thank you', '2025-11-21 01:03:34'),
(31002, 'ca', 'common', 'Tools', 'Eines', '2025-11-21 01:03:34'),
(31003, 'ca', 'common', 'Total', 'Total', '2025-11-21 01:03:34'),
(31004, 'ca', 'common', 'Url', 'URL', '2025-11-21 01:03:34'),
(31005, 'ca', 'common', 'User', 'Usuari', '2025-11-21 01:03:34'),
(31006, 'ca', 'common', 'User Panel', 'Usuari Panel', '2025-11-21 01:03:34'),
(31007, 'ca', 'common', 'User Type', 'Usuari Tipus', '2025-11-21 01:03:34'),
(31008, 'ca', 'common', 'Warnings', 'Warnings', '2025-11-21 01:03:34'),
(31009, 'ca', 'common', 'Website', 'Lloc web', '2025-11-21 01:03:34'),
(31010, 'ca', 'common', 'Websites Count', 'Llocs web Recompte', '2025-11-21 01:03:34'),
(31011, 'ca', 'common', 'Yes', 'Sí', '2025-11-21 01:03:34'),
(31012, 'ca', 'dashboard', 'Avg Rank', 'Avg Posició', '2025-11-21 01:03:34'),
(31013, 'ca', 'dashboard', 'Best Rank', 'Best Posició', '2025-11-21 01:03:34'),
(31014, 'ca', 'dashboard', 'Keyword Distribution by Rank', 'Paraula clau Distribution by Posició', '2025-11-21 01:03:34'),
(31015, 'ca', 'dashboard', 'Keyword Statistics', 'Paraula clau Statistics', '2025-11-21 01:03:34'),
(31016, 'ca', 'dashboard', 'Keywords by Ranking Position', 'Paraules clau by Ranking Posició', '2025-11-21 01:03:34'),
(31017, 'ca', 'dashboard', 'Keywords with most ranking fluctuations', 'Paraules clau with most ranking fluctuations', '2025-11-21 01:03:34'),
(31018, 'ca', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-11-21 01:03:34'),
(31019, 'ca', 'dashboard', 'positions', 'positions', '2025-11-21 01:03:34'),
(31020, 'ca', 'dashboard', 'Ranking Volatility', 'Ranking Volatility', '2025-11-21 01:03:34'),
(31021, 'ca', 'dashboard', 'Top 10', 'Top 10', '2025-11-21 01:03:34'),
(31022, 'ca', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile Paraules clau', '2025-11-21 01:03:34'),
(31023, 'ca', 'dashboard', 'Top 3', 'Top 3', '2025-11-21 01:03:34'),
(31024, 'ca', 'dashboard', 'Trend', 'Trend', '2025-11-21 01:03:34'),
(31025, 'ca', 'dashboard', 'Volatility', 'Volatility', '2025-11-21 01:03:34'),
(31026, 'ca', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'Les dades de volatilitat requereixen almenys 2 verificacions de posició dins del període seleccionat.', '2025-11-21 01:03:34'),
(31027, 'ca', 'dashboard', 'Volatility Score', 'Volatility Puntuació', '2025-11-21 01:03:34'),
(31028, 'ca', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility Puntuació (Standard Deviation)', '2025-11-21 01:03:34'),
(31029, 'ca', 'dashboard', 'Worst Rank', 'Worst Posició', '2025-11-21 01:03:34'),
(31030, 'ca', 'directory', 'Add back to directory list', 'Afegir de nou a la llista de directoris', '2025-11-21 01:03:34'),
(31031, 'ca', 'directory', 'Approved', 'Aprovat', '2025-11-21 01:03:34'),
(31032, 'ca', 'directory', 'Captcha', 'Captcha', '2025-11-21 01:03:34'),
(31033, 'ca', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. Iniciar with Top priority Categoria.', '2025-11-21 01:03:34'),
(31034, 'ca', 'directory', 'Check Directory Status', 'Verificar estat del directori', '2025-11-21 01:03:34'),
(31035, 'ca', 'directory', 'Check Directory Submission Status', 'Verificar estat d''enviament al directori', '2025-11-21 01:03:34'),
(31036, 'ca', 'directory', 'clickaddfeatureddirectory', 'Feu clic aquí per afegir el vostre propi directori destacat', '2025-11-21 01:03:34'),
(31037, 'ca', 'directory', 'clicktoproceeddirsts', 'Feu clic a <b>Continuar</b> to Verificar estat del directori.', '2025-11-21 01:03:34'),
(31038, 'ca', 'directory', 'Confirmation', 'Confirmació', '2025-11-21 01:03:34'),
(31039, 'ca', 'directory', 'Coupon Code', 'Coupon Code', '2025-11-21 01:03:34'),
(31040, 'ca', 'directory', 'Coupon Offer', 'Coupon Offer', '2025-11-21 01:03:34'),
(31041, 'ca', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured Enviament!', '2025-11-21 01:03:34'),
(31042, 'ca', 'directory', 'desnote', 'Some directories require minimum 150 characters for the Descripció field.', '2025-11-21 01:03:34'),
(31043, 'ca', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2025-11-21 01:03:34'),
(31044, 'ca', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Link', '2025-11-21 01:03:34'),
(31045, 'ca', 'directory', 'Directory Submission Reports', 'Enviament a directoris Informes', '2025-11-21 01:03:34'),
(31046, 'ca', 'directory', 'Enter the code shown', 'Introduïu el codi mostrat', '2025-11-21 01:03:34'),
(31047, 'ca', 'directory', 'nocatnote', 'La categoria d''enviament no s''ha trobat a la pàgina d''enviament. Please Feu clic a <b>Recarregar</b> or <b>Saltar</b>', '2025-11-21 01:03:34'),
(31048, 'ca', 'directory', 'nodirnote', 'No <b>Actiu</b> directories Found', '2025-11-21 01:03:34'),
(31049, 'ca', 'directory', 'nosuccessnote', 'No s''ha rebut el missatge d''èxit, Si us plau, comproveu el vostre correu per trobar el missatge de confirmació', '2025-11-21 01:03:34'),
(31050, 'ca', 'directory', 'optionalnote', 'Optional titles and descriptions to Enviar random Títol and Descripció to directories for better Resultats.', '2025-11-21 01:03:34'),
(31051, 'ca', 'directory', 'Owner Email', 'Owner Correu electrònic', '2025-11-21 01:03:34'),
(31052, 'ca', 'directory', 'Owner Name', 'Owner Nom', '2025-11-21 01:03:34'),
(31053, 'ca', 'directory', 'Pending', 'Pendent', '2025-11-21 01:03:34'),
(31054, 'ca', 'directory', 'Please select a website to proceed', 'Si us plau, seleccioneu un lloc web per continuar', '2025-11-21 01:03:34'),
(31055, 'ca', 'directory', 'Reciprocal Link', 'Reciprocal Link', '2025-11-21 01:03:34'),
(31056, 'ca', 'directory', 'selectwebsiteproceed', 'Seleccioneu <b>Lloc web</b> to <b>Continuar</b> Enviament a directoris.<br>Check <b>Directories with out captcha</b> to Enviar to directories with out captcha', '2025-11-21 01:03:34'),
(31057, 'ca', 'directory', 'selectwebsiteschecksub', 'Seleccioneu <b>Lloc web</b> to <b>Continuar</b> check Enviament a directoris.', '2025-11-21 01:03:34'),
(31058, 'ca', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi Eina d''enviament automàtic a directoris', '2025-11-21 01:03:34'),
(31059, 'ca', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary Correu electrònic address.', '2025-11-21 01:03:34'),
(31060, 'ca', 'directory', 'Submission Details', 'Enviament Detalls', '2025-11-21 01:03:34'),
(31061, 'ca', 'directory', 'Submit Description', 'Enviar Descripció', '2025-11-21 01:03:34'),
(31062, 'ca', 'directory', 'Submit Keywords', 'Enviar Paraules clau', '2025-11-21 01:03:34'),
(31063, 'ca', 'directory', 'Submit Title', 'Enviar Títol', '2025-11-21 01:03:34'),
(31064, 'ca', 'directory', 'Website Category', 'Lloc web Categoria', '2025-11-21 01:03:34'),
(31065, 'ca', 'directory', 'Website Url', 'URL del lloc web', '2025-11-21 01:03:34'),
(31066, 'ca', 'guest', '100% Open Source', '100% Obrir Source', '2025-11-21 01:03:34'),
(31067, 'ca', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. Descarregar, customize, and use without any restrictions.', '2025-11-21 01:03:34'),
(31068, 'ca', 'guest', 'Backlinks Checker desc', 'Monitor the number of Enllaços entrants De major Motors de cerca and track your link building progress over time.', '2025-11-21 01:03:34'),
(31069, 'ca', 'guest', 'Browse Plugins', 'Browse Complements', '2025-11-21 01:03:34'),
(31070, 'ca', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-11-21 01:03:34'),
(31071, 'ca', 'guest', 'Contact Us', 'Contacte Us', '2025-11-21 01:03:34'),
(31072, 'ca', 'guest', 'Directory Submission desc', 'Automatically Enviar your Llocs web to major free and paid directories with Estat seguiment.', '2025-11-21 01:03:34'),
(31073, 'ca', 'guest', 'Documentation', 'Documentation', '2025-11-21 01:03:34'),
(31074, 'ca', 'guest', 'Download SEO Panel', 'Descarregar SEO Panel', '2025-11-21 01:03:34'),
(31075, 'ca', 'guest', 'Get Support', 'Get Support', '2025-11-21 01:03:34'),
(31076, 'ca', 'guest', 'Hero description', 'A complete Obrir source SEO control panel for managing Motor de cerca optimization of your Llocs web. SEO Panel is a powerful toolkit that includes the latest Eines SEO to increase and track the performance of your Llocs web.', '2025-11-21 01:03:34'),
(31077, 'ca', 'guest', 'Hero subtitle', 'World''s Primer Obrir Source SEO Control Panel for Multiple Llocs web', '2025-11-21 01:03:34'),
(31078, 'ca', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-11-21 01:03:34'),
(31079, 'ca', 'guest', 'Highly Extensible desc', 'Easily develop and install custom Complements to extend functionality according to your needs.', '2025-11-21 01:03:34'),
(31080, 'ca', 'guest', 'Keyword Position Checker desc', 'Track your Paraula clau rankings across multiple Motors de cerca with detailed daily Informes and beautiful graphs.', '2025-11-21 01:03:34'),
(31081, 'ca', 'guest', 'Login to Get Started', 'Iniciar sessió to Get Started', '2025-11-21 01:03:34'),
(31082, 'ca', 'guest', 'Multi-Website Support', 'Multi-Lloc web Support', '2025-11-21 01:03:34'),
(31083, 'ca', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited Llocs web De a single control panel with centralized informes.', '2025-11-21 01:03:34'),
(31084, 'ca', 'guest', 'Plugin Architecture', 'Complement Architecture', '2025-11-21 01:03:34'),
(31085, 'ca', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful Complements including Article Submitter, Meta Tag Generator, and more.', '2025-11-21 01:03:34'),
(31086, 'ca', 'guest', 'Powerful SEO Features', 'Powerful SEO Característiques', '2025-11-21 01:03:34'),
(31087, 'ca', 'guest', 'Rank Checker desc', 'Check Google PageRank, Posició Alexa, and Moz Posició amb seguiment i informes diaris complets.', '2025-11-21 01:03:34'),
(31088, 'ca', 'guest', 'Resources & Support', 'Resources & Support', '2025-11-21 01:03:34'),
(31089, 'ca', 'guest', 'Search Engine Saturation desc', 'Find the number of indexed pages across different Motors de cerca and monitor your indexing progress.', '2025-11-21 01:03:34'),
(31090, 'ca', 'guest', 'Site Auditor desc', 'Auditar tots els factors SEO de cada pàgina and generar mapes del lloc XML, HTML i TEXT per a motors de cerca.', '2025-11-21 01:03:34'),
(31091, 'ca', 'guest', 'Social Media Integration', 'Xarxes socials Integration', '2025-11-21 01:03:34'),
(31092, 'ca', 'guest', 'Social Media Integration desc', 'Integrate with Google Analítiques, Cercar Console, and Xarxes socials platforms for comprehensive informes.', '2025-11-21 01:03:34'),
(31093, 'ca', 'guest', 'Support Development', 'Support Development', '2025-11-21 01:03:34'),
(31094, 'ca', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-11-21 01:03:34'),
(31095, 'ca', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their Llocs web.', '2025-11-21 01:03:34'),
(31096, 'ca', 'guest', 'View Demo', 'Veure Demo', '2025-11-21 01:03:34'),
(31097, 'ca', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-11-21 01:03:34'),
(31098, 'ca', 'guest', 'Why Choose SEO Panel?', 'Why Choose SEO Panel?', '2025-11-21 01:03:34'),
(31099, 'ca', 'home', 'Account Summary', 'Compte Summary', '2025-11-21 01:03:34'),
(31100, 'ca', 'home', 'Backlinks', 'Enllaços entrants', '2025-11-21 01:03:34'),
(31101, 'ca', 'home', 'Directory Submission', 'Enviament a directoris', '2025-11-21 01:03:34'),
(39048, 'sr', 'review', 'No review data available', 'Нема доступних података о рецензијама. <a href="seo-tools.php?menu_sec=review-manager">Додајте линкове рецензија</a> да бисте започели праћење својих рецензија и оцена.', '2026-01-19 22:58:50'),
(39049, 'sv', 'review', 'No review data available', 'Inga recensionsdata tillgängliga. <a href="seo-tools.php?menu_sec=review-manager">Lägg till recensionslänkar</a> för att börja spåra dina recensioner och betyg.', '2026-01-19 22:58:50'),
(39050, 'sw', 'review', 'No review data available', 'Hakuna data ya mapitio inayopatikana. <a href="seo-tools.php?menu_sec=review-manager">Ongeza viungo vya mapitio</a> ili kuanza kufuatilia mapitio na ukadiriaji wako.', '2026-01-19 22:58:50'),
(39051, 'th', 'review', 'No review data available', 'ไม่มีข้อมูลรีวิว <a href="seo-tools.php?menu_sec=review-manager">เพิ่มลิงก์รีวิว</a>เพื่อเริ่มติดตามรีวิวและคะแนนของคุณ', '2026-01-19 22:58:50'),
(39052, 'tl', 'review', 'No review data available', 'Walang available na data ng review. <a href="seo-tools.php?menu_sec=review-manager">Magdagdag ng mga review link</a> upang magsimulang subaybayan ang iyong mga review at rating.', '2026-01-19 22:58:50'),
(39053, 'tr', 'review', 'No review data available', 'İnceleme verisi mevcut değil. İncelemelerinizi ve puanlarınızı izlemeye başlamak için <a href="seo-tools.php?menu_sec=review-manager">inceleme bağlantıları ekleyin</a>.', '2026-01-19 22:58:50'),
(39054, 'uk', 'review', 'No review data available', 'Дані відгуків недоступні. <a href="seo-tools.php?menu_sec=review-manager">Додайте посилання на відгуки</a>, щоб почати відстежувати свої відгуки та рейтинги.', '2026-01-19 22:58:50'),
(39055, 'vn', 'review', 'No review data available', 'Không có dữ liệu đánh giá. <a href="seo-tools.php?menu_sec=review-manager">Thêm liên kết đánh giá</a> để bắt đầu theo dõi đánh giá và xếp hạng của bạn.', '2026-01-19 22:58:50'),
(39056, 'zh', 'review', 'No review data available', '暂无评论数据。<a href="seo-tools.php?menu_sec=review-manager">添加评论链接</a>以开始跟踪您的评论和评分。', '2026-01-19 22:58:50'),
(39057, 'en', 'sitemap', 'Compress sitemap files', 'Compress sitemap files', '2026-01-19 22:58:50'),
(39058, 'ar', 'sitemap', 'Compress sitemap files', 'ضغط ملفات خريطة الموقع', '2026-01-19 22:58:50'),
(39059, 'bg', 'sitemap', 'Compress sitemap files', 'Компресиране на sitemap файлове', '2026-01-19 22:58:50'),
(39060, 'de', 'sitemap', 'Compress sitemap files', 'Sitemap-Dateien komprimieren', '2026-01-19 22:58:50'),
(39061, 'es', 'sitemap', 'Compress sitemap files', 'Comprimir archivos de sitemap', '2026-01-19 22:58:50'),
(39062, 'fr', 'sitemap', 'Compress sitemap files', 'Compresser les fichiers sitemap', '2026-01-19 22:58:50'),
(39063, 'it', 'sitemap', 'Compress sitemap files', 'Comprimi file sitemap', '2026-01-19 22:58:50'),
(39064, 'nl', 'sitemap', 'Compress sitemap files', 'Sitemap-bestanden comprimeren', '2026-01-19 22:58:50'),
(39065, 'pl', 'sitemap', 'Compress sitemap files', 'Kompresuj pliki mapy witryny', '2026-01-19 22:58:50'),
(39066, 'pt', 'sitemap', 'Compress sitemap files', 'Comprimir arquivos de sitemap', '2026-01-19 22:58:50'),
(39067, 'pt-br', 'sitemap', 'Compress sitemap files', 'Comprimir arquivos de sitemap', '2026-01-19 22:58:50'),
(39068, 'ru', 'sitemap', 'Compress sitemap files', 'Сжать файлы карты сайта', '2026-01-19 22:58:50'),
(38737, 'tl', 'review', 'Total Reviews', 'Kabuuang Mga Review', '2026-01-19 22:58:50'),
(38738, 'tr', 'review', 'Total Reviews', 'Toplam İncelemeler', '2026-01-19 22:58:50'),
(38739, 'uk', 'review', 'Total Reviews', 'Загальна кількість відгуків', '2026-01-19 22:58:50'),
(38740, 'vn', 'review', 'Total Reviews', 'Tổng số đánh giá', '2026-01-19 22:58:50'),
(38741, 'zh', 'review', 'Total Reviews', '评论总数', '2026-01-19 22:58:50'),
(38742, 'en', 'review', 'Average Rating', 'Average Rating', '2026-01-19 22:58:50'),
(38743, 'ar', 'review', 'Average Rating', 'متوسط التقييم', '2026-01-19 22:58:50'),
(38744, 'bg', 'review', 'Average Rating', 'Среден рейтинг', '2026-01-19 22:58:50'),
(31105, 'ca', 'home', 'Indexed', 'Indexed', '2025-11-21 01:03:34'),
(31106, 'ca', 'home', 'Keyword Overview Report', 'Paraula clau Overview Informe', '2025-11-21 01:03:34'),
(31107, 'ca', 'home', 'Overall Report Summary', 'Overall Informe Summary', '2025-11-21 01:03:34'),
(31108, 'ca', 'home', 'Page Overview Report', 'Page Overview Informe', '2025-11-21 01:03:34'),
(31109, 'ca', 'home', 'Pages Indexed', 'Pages Indexed', '2025-11-21 01:03:34'),
(31110, 'ca', 'home', 'Ranks', 'Ranks', '2025-11-21 01:03:34'),
(31111, 'ca', 'home', 'SiteNameUrl', 'Site Nom/URL', '2025-11-21 01:03:34'),
(31112, 'ca', 'home', 'Website Statistics', 'Lloc web Statistics', '2025-11-21 01:03:34'),
(31113, 'ca', 'keyword', 'Crawling keyword', 'Crawling Paraula clau', '2025-11-21 01:03:34'),
(31114, 'ca', 'keyword', 'Detailed Keyword Position Reports', 'Detailed Posició de paraula clau Informes', '2025-11-21 01:03:34'),
(31115, 'ca', 'keyword', 'Edit Keyword', 'Editar paraula clau', '2025-11-21 01:03:34'),
(31116, 'ca', 'keyword', 'Graphical Keyword Position Reports', 'Graphical Posició de paraula clau Informes', '2025-11-21 01:03:34'),
(31117, 'ca', 'keyword', 'Import Keywords', 'Importar Paraules clau', '2025-11-21 01:03:34'),
(31118, 'ca', 'keyword', 'Insert keywords separated with comma', 'Insert Paraules clau separated with comma', '2025-11-21 01:03:34'),
(31119, 'ca', 'keyword', 'Keyword already exist', 'Paraula clau already exist', '2025-11-21 01:03:34'),
(31120, 'ca', 'keyword', 'Keyword Position Report', 'Posició de paraula clau Informe', '2025-11-21 01:03:34'),
(31121, 'ca', 'keyword', 'Keyword Ranking Trends', 'Paraula clau Ranking Trends', '2025-11-21 01:03:34'),
(31122, 'ca', 'keyword', 'Keywords Tracked', 'Paraules clau Tracked', '2025-11-21 01:03:34'),
(31123, 'ca', 'keyword', 'New Keyword', 'Nou Paraula clau', '2025-11-21 01:03:34'),
(31124, 'ca', 'keyword', 'not assigned to required search engines', 'not assigned to required Motors de cerca', '2025-11-21 01:03:34'),
(31125, 'ca', 'keyword', 'pleaseselecttool', 'Si us plau, seleccioneu almenys una eina SEO', '2025-11-21 01:03:34'),
(31126, 'ca', 'keyword', 'Quick Keyword Position Checker', 'Verificador ràpid de posició de paraules clau', '2025-11-21 01:03:34'),
(31127, 'ca', 'keyword', 'Ranking Trends', 'Ranking Trends', '2025-11-21 01:03:34'),
(31128, 'ca', 'keyword', 'results from ', 'Resultats De ', '2025-11-21 01:03:34'),
(31129, 'ca', 'keyword', 'Show All results', 'Show Tot Resultats', '2025-11-21 01:03:34'),
(31130, 'ca', 'keyword', 'Successfully crawled keyword', 'Paraula clau indexada correctament', '2025-11-21 01:03:34'),
(10701, 'da', 'common', 'Dashboard', 'Værktøjskassen', '2019-05-25 22:04:54'),
(10702, 'da', 'common', 'Hello', 'Hej', '2019-05-25 22:04:54'),
(10703, 'da', 'common', 'Home', 'Hjem', '2019-05-25 22:04:54'),
(10704, 'da', 'common', 'Powered by', 'Powered by', '2019-05-25 22:04:54'),
(10705, 'da', 'directory', 'clickaddfeatureddirectory', 'Tilføj dit fortrukne bibliotek', '2013-01-15 03:40:16'),
(10706, 'da', 'directory', 'Coupon Code', 'Kupom kode', '2013-01-15 03:40:16'),
(10707, 'da', 'directory', 'Coupon Offer', 'Kupon tilbud', '2013-01-15 03:40:16'),
(10708, 'da', 'directory', 'couponcodenote', 'Brug overstående kupon kode og få [REDUCTION_PER] i rabat på hver tilmeldning', '2013-01-15 03:40:16'),
(10709, 'da', 'directory', 'Directories with out Reciprocal Link', 'Biblioteker med udgående Reciprocal Link', '2013-01-15 03:40:16'),
(10710, 'sv', 'backlink', 'clickproceedbacklink', 'Ange <b>en adress per rad</b>. Klicka på <b>Fortsätt</b> för att kontrollera backlinks.', '2014-06-23 20:51:28'),
(10711, 'sv', 'backlink', 'Saved backlink results of', 'Sparade backlink-resultat för', '2014-06-23 20:51:28'),
(10712, 'sv', 'button', 'Cancel', 'Ångra', '2014-06-23 20:52:34'),
(10713, 'sv', 'button', 'Check Status', 'Visa status', '2014-06-23 20:52:34'),
(10714, 'sv', 'button', 'Proceed', 'Fortsätt', '2014-06-23 20:52:34'),
(10715, 'sv', 'button', 'Reload', 'Ladda om', '2014-06-23 20:52:34'),
(10716, 'sv', 'button', 'Show Details', 'Detaljer', '2014-06-23 20:52:34'),
(10717, 'sv', 'button', 'Show Records', 'Visa poster', '2014-06-23 20:52:34'),
(10718, 'sv', 'button', 'Skip', 'Hoppa över', '2014-06-23 20:52:34'),
(10719, 'sv', 'button', 'Submit', 'Skicka', '2014-06-23 20:52:34'),
(10720, 'sv', 'common', 'Action', 'Åtgärd', '2019-05-25 22:50:40'),
(10721, 'sv', 'common', 'Activate', 'Aktivera', '2019-05-25 22:50:40'),
(10722, 'sv', 'common', 'Active', 'Aktiv', '2019-05-25 22:50:40'),
(10723, 'sv', 'common', 'Admin Panel', 'Administrationspanel', '2019-05-25 22:50:40'),
(10724, 'sv', 'common', 'Alexa Rank', 'Alexa Rank', '2019-05-25 22:50:40'),
(10725, 'sv', 'common', 'All', 'Alla', '2019-05-25 22:50:40'),
(10726, 'sv', 'common', 'Category', 'Kategori', '2019-05-25 22:50:40'),
(10727, 'sv', 'common', 'contact', 'Kontakt', '2019-05-25 22:50:40'),
(10728, 'sv', 'common', 'copyright', 'Copyright © [year] www.seopanel.in All rights reserved', '2019-05-25 22:50:40'),
(10729, 'sv', 'common', 'Country', 'Land', '2019-05-25 22:50:40'),
(10730, 'sv', 'common', 'Crawl Meta Data', 'Crawl Meta Data', '2019-05-25 22:50:40'),
(10731, 'sv', 'common', 'Dashboard', 'Dashboard', '2019-05-25 22:50:40'),
(10732, 'sv', 'common', 'Date', 'Datum', '2019-05-25 22:50:40'),
(10733, 'sv', 'common', 'Delete', 'Radera', '2019-05-25 22:50:40'),
(10734, 'sv', 'common', 'Details', 'Detaljer', '2019-05-25 22:50:40'),
(10735, 'sv', 'common', 'Directory', 'Katalog', '2019-05-25 22:50:40'),
(10736, 'sv', 'common', 'Donate', 'Donera', '2019-05-25 22:50:40'),
(10737, 'sv', 'common', 'Edit', 'Editera', '2019-05-25 22:50:40'),
(10738, 'sv', 'common', 'Entry cannot be blank', 'Får inte vara tom', '2019-05-25 22:50:40'),
(10739, 'sv', 'common', 'entrynotvalid', 'Felaktig inmatning', '2019-05-25 22:50:40'),
(10740, 'sv', 'common', 'failed', 'Misslyckades', '2019-05-25 22:50:40'),
(10741, 'sv', 'common', 'forum', 'Forum', '2019-05-25 22:50:40'),
(10742, 'sv', 'common', 'Found', 'Hittat', '2019-05-25 22:50:40'),
(10743, 'sv', 'common', 'Google Pagerank', 'Google Pagerank', '2019-05-25 22:50:40'),
(10744, 'sv', 'common', 'Hello', 'Hej', '2019-05-25 22:50:40'),
(10745, 'sv', 'common', 'help', 'Hjälp', '2019-05-25 22:50:40'),
(10746, 'sv', 'common', 'hidenews', 'Dölj Nyheter', '2019-05-25 22:50:40'),
(10747, 'sv', 'common', 'Home', 'Hem', '2019-05-25 22:50:40'),
(10748, 'sv', 'common', 'Id', 'Id', '2019-05-25 22:50:40'),
(10749, 'sv', 'common', 'Inactivate', 'Inaktivera', '2019-05-25 22:50:40'),
(10750, 'sv', 'common', 'Inactive', 'Inaktiv', '2019-05-25 22:50:40'),
(10751, 'sv', 'common', 'Invalid characters', 'Ogiltiga tecken', '2019-05-25 22:50:40'),
(10752, 'sv', 'common', 'Invalid code entered', 'Ogiltlig kod', '2019-05-25 22:50:40'),
(10753, 'sv', 'common', 'Invalid email address entered', 'Ogiltlig e-postadress', '2019-05-25 22:50:40'),
(10754, 'sv', 'common', 'Invalid value', 'Ogiltigt värde', '2019-05-25 22:50:40'),
(10755, 'sv', 'common', 'Keyword', 'Keyword', '2019-05-25 22:50:40'),
(10756, 'sv', 'common', 'Keywords', 'Keywords', '2019-05-25 22:50:40'),
(10757, 'sv', 'common', 'lang', 'Språk', '2019-05-25 22:50:40'),
(10758, 'sv', 'common', 'My Account', 'Mitt konto', '2019-05-25 22:50:40'),
(10759, 'sv', 'common', 'Name', 'Namn', '2019-05-25 22:50:40'),
(10760, 'sv', 'common', 'No', 'Nej', '2019-05-25 22:50:40'),
(10761, 'sv', 'common', 'No Keywords Found', 'Inga Keyword hittades', '2019-05-25 22:50:40'),
(10762, 'sv', 'common', 'No Records Found', 'Inga uppgifter funna', '2019-05-25 22:50:40'),
(10763, 'sv', 'common', 'noactivetools', 'Inga aktiva SEO-verktyg funna!', '2019-05-25 22:50:40'),
(10764, 'sv', 'common', 'nowebsites', 'Ingen webbplats hittad', '2019-05-25 22:50:40'),
(10765, 'sv', 'common', 'password632', 'Längden på lösenordet ska vara mellan 6 och 32 tecken', '2019-05-25 22:50:40'),
(10766, 'sv', 'common', 'passwordnotmatch', 'Lösenorden är inte identiska', '2019-05-25 22:50:40'),
(10767, 'sv', 'common', 'Period', 'Period', '2019-05-25 22:50:40'),
(10768, 'sv', 'common', 'Powered by', 'Powered by', '2019-05-25 22:50:40'),
(10769, 'sv', 'common', 'Priority', 'Prioritet', '2019-05-25 22:50:40'),
(10770, 'sv', 'common', 'Profile', 'Profil', '2019-05-25 22:50:40'),
(10771, 'sv', 'common', 'Rank', 'Rank', '2019-05-25 22:50:40'),
(10772, 'sv', 'common', 'Reports', 'Rapporter', '2019-05-25 22:50:40'),
(10773, 'sv', 'common', 'Results', 'Resultat', '2019-05-25 22:50:40'),
(10774, 'sv', 'common', 'Search Engine', 'Sökmotor', '2019-05-25 22:50:40'),
(10775, 'sv', 'common', 'Select', 'Välj', '2019-05-25 22:50:40'),
(10776, 'sv', 'common', 'Seo Plugins', 'Seo-Plugins', '2019-05-25 22:50:40'),
(10777, 'sv', 'common', 'Seo Tools', 'Seo-Verktyg', '2019-05-25 22:50:40'),
(10778, 'sv', 'common', 'Sign out', 'Logga ut', '2019-05-25 22:50:40'),
(10779, 'sv', 'common', 'Sign Up', 'Registrera', '2019-05-25 22:50:40'),
(10780, 'sv', 'common', 'signin', 'Logga in', '2019-05-25 22:50:40'),
(10781, 'sv', 'common', 'Status', 'Status', '2019-05-25 22:50:40'),
(10782, 'sv', 'common', 'Support', 'Support', '2019-05-25 22:50:40'),
(10783, 'sv', 'common', 'Total', 'Totalt', '2019-05-25 22:50:40'),
(10784, 'sv', 'common', 'Url', 'Url', '2019-05-25 22:50:40'),
(10785, 'sv', 'common', 'User', 'Användare', '2019-05-25 22:50:40'),
(10786, 'sv', 'common', 'User Panel', 'Användarpanel', '2019-05-25 22:50:40'),
(10787, 'sv', 'common', 'Website', 'Webbplats', '2019-05-25 22:50:40'),
(10788, 'sv', 'common', 'Yes', 'Ja', '2019-05-25 22:50:40'),
(31344, 'ca', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web Proxy', '2025-11-21 01:03:34'),
(31345, 'ca', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web Proxy.', '2025-11-21 01:03:34'),
(31343, 'ca', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a Proxy', '2025-11-21 01:03:34'),
(31342, 'ca', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow Usuari to access the web Proxy', '2025-11-21 01:03:34'),
(31341, 'ca', 'QuickWebProxy', 'Please enter a valid url', 'Please enter a valid URL', '2025-11-21 01:03:34'),
(31340, 'ca', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2025-11-21 01:03:34'),
(31338, 'ca', 'proxy', 'proxysyntax', 'Proxy Hostname, Proxy Port, Proxy Nom d''usuari, Proxy Contrasenya', '2025-11-21 01:03:34'),
(31337, 'ca', 'proxy', 'Proxyalreadyexist', 'Proxy already exist!', '2025-11-21 01:03:34'),
(31335, 'ca', 'proxy', 'Proxy Password', 'Proxy Contrasenya', '2025-11-21 01:03:34'),
(31336, 'ca', 'proxy', 'Proxy Username', 'Proxy Nom d''usuari', '2025-11-21 01:03:34'),
(31334, 'ca', 'proxy', 'enterproxynote', 'Enter Proxy Una per línia in following format.', '2025-11-21 01:03:34'),
(31333, 'ca', 'proxy', 'Edit Proxy', 'Editar Proxy', '2025-11-21 01:03:34'),
(31331, 'ca', 'plugin', 'Seo Plugin Details', 'Seo Complement Detalls', '2025-11-21 01:03:34'),
(31332, 'ca', 'proxy', 'click-to-get-proxy', 'Feu clic aquí to get Proxy', '2025-11-21 01:03:34'),
(31330, 'ca', 'plugin', 'Plugin Name', 'Complement Nom', '2025-11-21 01:03:34'),
(31329, 'ca', 'plugin', 'Edit Seo Plugin', 'Editar Seo Complement', '2025-11-21 01:03:34'),
(31328, 'ca', 'plugin', 'Download Seo Panel Plugins', 'Descarregar Complements de SEO Panel', '2025-11-21 01:03:34'),
(31327, 'ca', 'panel', 'Website Manager', 'Lloc web Gestor', '2025-11-21 01:03:34'),
(31326, 'ca', 'panel', 'Website Access Manager', 'Lloc web Access Gestor', '2025-11-21 01:03:34'),
(31325, 'ca', 'panel', 'Valid', 'Valid', '2025-11-21 01:03:34'),
(31324, 'ca', 'panel', 'User Type Settings', 'Usuari Tipus Configuració', '2025-11-21 01:03:34'),
(31323, 'ca', 'panel', 'User Type Manager', 'Usuari Tipus Gestor', '2025-11-21 01:03:34'),
(31321, 'ca', 'panel', 'Themes Manager', 'Themes Gestor', '2025-11-21 01:03:34'),
(31322, 'ca', 'panel', 'User Manager', 'Usuari Gestor', '2025-11-21 01:03:34'),
(31320, 'ca', 'panel', 'Test Email Settings', 'Test Configuració del correu', '2025-11-21 01:03:34'),
(31319, 'ca', 'panel', 'System Settings', 'Configuració del sistema', '2025-11-21 01:03:34'),
(31318, 'ca', 'panel', 'Sync Search Engines', 'Sync Motors de cerca', '2025-11-21 01:03:34'),
(31317, 'ca', 'panel', 'Submit Sitemap', 'Enviar Mapa del lloc', '2025-11-21 01:03:34'),
(31316, 'ca', 'panel', 'Sitemaps', 'Sitemaps', '2025-11-21 01:03:34'),
(31315, 'ca', 'panel', 'Settings', 'Configuració', '2025-11-21 01:03:34'),
(31314, 'ca', 'panel', 'Seo Tools Manager', 'Eines SEO Gestor', '2025-11-21 01:03:34'),
(31313, 'ca', 'panel', 'Seo Plugins Manager', 'Complements SEO Gestor', '2025-11-21 01:03:34'),
(31312, 'ca', 'panel', 'Search Engine Manager', 'Motor de cerca Gestor', '2025-11-21 01:03:34'),
(31311, 'ca', 'panel', 'Schedule Reports', 'Schedule Informes', '2025-11-21 01:03:34'),
(31309, 'ca', 'panel', 'Report Settings', 'Informe Configuració', '2025-11-21 01:03:34'),
(31310, 'ca', 'panel', 'Reports Manager', 'Informes Gestor', '2025-11-21 01:03:34'),
(31308, 'ca', 'panel', 'Report Generation Manager', 'Informe Generation Gestor', '2025-11-21 01:03:34'),
(31307, 'ca', 'panel', 'Report Generation Logs', 'Informe Generation Logs', '2025-11-21 01:03:34'),
(31306, 'ca', 'panel', 'Proxy Settings', 'Configuració del proxy', '2025-11-21 01:03:34'),
(31305, 'ca', 'panel', 'Proxy Perfomance', 'Proxy Perfomance', '2025-11-21 01:03:34'),
(31304, 'ca', 'panel', 'Proxy Manager', 'Gestor de proxies', '2025-11-21 01:03:34'),
(31303, 'ca', 'panel', 'Project Summary', 'Project Summary', '2025-11-21 01:03:34'),
(31302, 'ca', 'panel', 'Project Manager', 'Gestor de projectes', '2025-11-21 01:03:34'),
(31300, 'ca', 'panel', 'New User Type', 'Nou Usuari Tipus', '2025-11-21 01:03:34'),
(31301, 'ca', 'panel', 'New Website', 'Nou Lloc web', '2025-11-21 01:03:34'),
(31298, 'ca', 'panel', 'New Proxy', 'Nou Proxy', '2025-11-21 01:03:34'),
(31299, 'ca', 'panel', 'New User', 'Nou Usuari', '2025-11-21 01:03:34'),
(31297, 'ca', 'panel', 'New Project', 'Nou Project', '2025-11-21 01:03:34'),
(31294, 'ca', 'panel', 'Mail Settings', 'Mail Configuració', '2025-11-21 01:03:34'),
(31292, 'ca', 'panel', 'Log Manager', 'Gestor de registres', '2025-11-21 01:03:34'),
(31293, 'ca', 'panel', 'Mail Log Manager', 'Gestor de registres de correu', '2025-11-21 01:03:34'),
(31291, 'ca', 'panel', 'Import Websites', 'Importar Llocs web', '2025-11-21 01:03:34'),
(31288, 'ca', 'panel', 'Global Reports Settings', 'Global Informes Configuració', '2025-11-21 01:03:34'),
(31285, 'ca', 'panel', 'Edit My Profile', 'Editar My Perfil', '2025-11-21 01:03:34'),
(31286, 'ca', 'panel', 'Edit Project', 'Editar Project', '2025-11-21 01:03:34'),
(31283, 'ca', 'panel', 'DataForSEO Settings', 'DataForSEO Configuració', '2025-11-21 01:03:34'),
(31281, 'ca', 'panel', 'Cron Command', 'Cron Command', '2025-11-21 01:03:34'),
(31282, 'ca', 'panel', 'Current Time', 'Current Time', '2025-11-21 01:03:34'),
(31280, 'ca', 'panel', 'Crawl Log Manager', 'Gestor de registres d''indexació', '2025-11-21 01:03:34'),
(31279, 'ca', 'panel', 'Connections', 'Connections', '2025-11-21 01:03:34'),
(31277, 'ca', 'panel', 'Archived Reports', 'Archived Informes', '2025-11-21 01:03:34'),
(31278, 'ca', 'panel', 'Check Directory', 'Verificar directori', '2025-11-21 01:03:34'),
(31275, 'ca', 'panel', 'API Manager', 'Gestor d''API', '2025-11-21 01:03:34'),
(31276, 'ca', 'panel', 'API Settings', 'API Configuració', '2025-11-21 01:03:34'),
(31274, 'ca', 'panel', 'API Connection', 'API Connection', '2025-11-21 01:03:34'),
(31273, 'ca', 'panel', 'alsocheckfollowlink', 'També comproveu l''enllaç següent si necessiteu més detalls.', '2025-11-21 01:03:34'),
(31272, 'ca', 'panel', 'Alerts', 'Alerts', '2025-11-21 01:03:34'),
(31271, 'ca', 'panel', 'Add following command to your cron tab', 'Afegir following command to your cron tab', '2025-11-21 01:03:34'),
(10852, 'hu', 'common', 'Dashboard', 'Vezérlőpult', '2019-05-25 22:15:43'),
(10853, 'hu', 'common', 'Home', 'Főoldal', '2019-05-25 22:15:43'),
(10854, 'hu', 'common', 'Powered by', 'Üzemelteti', '2019-05-25 22:15:43'),
(10855, 'hu', 'directory', 'clickaddfeatureddirectory', 'Kattints ide, hogy hozzáadd a saját kiemelt katalógusodat', '2013-02-06 00:23:52'),
(10856, 'hu', 'directory', 'Coupon Offer', 'Kupon ajánlat', '2013-02-06 00:23:52'),
(10857, 'hu', 'directory', 'Directories with out Reciprocal Link', 'Katalógusok, amik nem kérnek visszamutató linket', '2013-02-06 00:23:52'),
(10858, 'hu', 'label', 'Clear All', 'Összes törlése', '2013-02-06 00:24:43'),
(10859, 'hu', 'label', 'Current', 'Jelenlegi', '2013-02-06 00:24:43'),
(10860, 'hu', 'label', 'Select All', 'Összes kiválasztása', '2013-02-06 00:24:43'),
(10861, 'hu', 'label', 'Theme', 'Megjelenés', '2013-02-06 00:24:43'),
(10862, 'hu', 'panel', 'Themes Manager', 'Megjelenés beállítása', '2013-02-06 00:25:03'),
(10863, 'hu', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Relatív linkek gyűjtése az oldalakon', '2013-02-06 00:25:44'),
(10864, 'hu', 'theme', 'Download Seo Panel Themes', 'Tölts le Seo Panel megjelenéseket', '2013-02-06 00:26:11'),
(10865, 'sr', 'website', 'Edit Website', 'Уређивање сајта', '2013-02-16 22:54:35'),
(10866, 'sr', 'website', 'plscrtwebsite', 'Молимо направите сајт пре него што почнете да користите СЕО алат и СЕО додатке.', '2013-02-16 22:54:35'),
(10867, 'sr', 'website', 'Website already exist', 'Сајт већ постоји', '2013-02-16 22:54:35'),
(10868, 'sr', 'website', 'yourwebalreday', 'Ваш сајт ако сте већ направили један.', '2013-02-16 22:54:35'),
(10869, 'sr', 'user', 'Edit User', 'Уређивање корисника', '2013-02-16 22:57:41'),
(10870, 'sr', 'user', 'Saved My Profile Details', 'Сачувај моје детаље профила', '2013-02-16 22:57:41'),
(10871, 'sr', 'theme', 'Download Seo Panel Themes', 'Преузимање Теме СЕО Панела', '2013-02-16 23:24:22'),
(10872, 'sr', 'sitemap', 'Change frequency', 'Промените учесталост понављања', '2013-02-16 23:31:01'),
(10873, 'sr', 'sitemap', 'clickproceedsitemap', 'Кликните на <b>Наставите </b> за креирање датотеке сајт-мапе', '2013-02-16 23:31:01'),
(10874, 'sr', 'sitemap', 'Download sitemap file from', 'Преузмите датотеку сајт-мапе са', '2013-02-16 23:31:01'),
(10875, 'sr', 'sitemap', 'Exclude Url', 'Изузети Урл', '2013-02-16 23:31:01'),
(10876, 'sr', 'sitemap', 'processtaketime', 'Овај процес ће потрајати у зависности од броја линкова на вашем сајту. Молимо сачекајте да преузмете датотеке сајт-мапе', '2013-02-16 23:31:01'),
(10877, 'sr', 'sitemap', 'Sitemap Type', 'Тип сајт-мапе', '2013-02-16 23:31:01'),
(10878, 'sr', 'seotools', 'Auditor Projects', '', '2013-02-16 23:33:46'),
(10879, 'sr', 'seotools', 'Auditor Reports', '', '2013-02-16 23:33:46'),
(10880, 'sr', 'seotools', 'Auditor Settings', '', '2013-02-16 23:33:46'),
(10881, 'sr', 'seotools', 'Automatic Submission', '', '2013-02-16 23:33:46');
INSERT INTO `texts` VALUES
(10882, 'sr', 'seotools', 'backlink-checker', '', '2013-02-16 23:33:46'),
(10883, 'sr', 'seotools', 'Backlinks Reports', '', '2013-02-16 23:33:46'),
(10884, 'sr', 'seotools', 'Check Submission Status', '', '2013-02-16 23:33:46'),
(10885, 'sr', 'seotools', 'clickgeneratereports', '', '2013-02-16 23:33:46'),
(10886, 'sr', 'seotools', 'Detailed Position Reports', '', '2013-02-16 23:33:46'),
(10887, 'sr', 'seotools', 'directory-submission', '', '2013-02-16 23:33:46'),
(10888, 'sr', 'seotools', 'Featured Submission', '', '2013-02-16 23:33:46'),
(10889, 'sr', 'seotools', 'Generate Backlinks Reports', '', '2013-02-16 23:33:46'),
(10890, 'sr', 'seotools', 'Generate Keyword Reports', '', '2013-02-16 23:33:46'),
(10891, 'sr', 'seotools', 'Generate Rank Reports', '', '2013-02-16 23:33:46'),
(10892, 'sr', 'seotools', 'Generate Saturation Reports', '', '2013-02-16 23:33:46'),
(10893, 'sr', 'seotools', 'Google Sitemap Generator', '', '2013-02-16 23:33:46'),
(10894, 'sr', 'seotools', 'Graphical Position Reports', '', '2013-02-16 23:33:46'),
(10895, 'sr', 'seotools', 'Import Project Links', '', '2013-02-16 23:33:46'),
(10896, 'sr', 'seotools', 'Keyword Position Summary', '', '2013-02-16 23:33:46'),
(10897, 'sr', 'seotools', 'keyword-position-checker', '', '2013-02-16 23:33:46'),
(10898, 'sr', 'seotools', 'Keywords Manager', '', '2013-02-16 23:33:46'),
(10899, 'sr', 'seotools', 'Quick Backlinks Checker', '', '2013-02-16 23:33:46'),
(10900, 'sr', 'seotools', 'Quick Position Checker', '', '2013-02-16 23:33:46'),
(10901, 'sr', 'seotools', 'Quick Rank Checker', '', '2013-02-16 23:33:46'),
(10902, 'sr', 'seotools', 'Quick Saturation Checker', '', '2013-02-16 23:33:46'),
(10903, 'sr', 'seotools', 'Rank Reports', '', '2013-02-16 23:33:46'),
(10904, 'sr', 'seotools', 'rank-checker', '', '2013-02-16 23:33:46'),
(10905, 'sr', 'seotools', 'Saturation Reports', '', '2013-02-16 23:33:46'),
(10906, 'sr', 'seotools', 'saturation-checker', '', '2013-02-16 23:33:46'),
(10907, 'sr', 'seotools', 'site-auditor', '', '2013-02-16 23:33:46'),
(10908, 'sr', 'seotools', 'sitemap-generator', '', '2013-02-16 23:33:46'),
(10909, 'sr', 'seotools', 'Skipped Directories', '', '2013-02-16 23:33:46'),
(10910, 'sr', 'seotools', 'Submission Reports', '', '2013-02-16 23:33:46'),
(10911, 'sr', 'seotools', 'User Access', '', '2013-02-16 23:33:46'),
(10912, 'pt', 'theme', 'Download Seo Panel Themes', 'Fazer Download dos temas Seo Panel', '2013-04-14 19:08:18'),
(10913, 'sk', 'common', 'Dashboard', 'Výsledková listina', '2019-05-25 22:47:21'),
(10914, 'sk', 'common', 'Home', 'Domov', '2019-05-25 22:47:21'),
(10915, 'sk', 'common', 'Powered by', 'Vytvorené pomocou', '2019-05-25 22:47:21'),
(10916, 'sk', 'directory', 'clickaddfeatureddirectory', 'Klikni na pridanie vlastných funkcií katalógu', '2013-04-30 14:33:42'),
(10917, 'sk', 'directory', 'Coupon Offer', 'Ponuka kupónu', '2013-04-30 14:33:42'),
(10918, 'sk', 'directory', 'Directories with out Reciprocal Link', 'Katalógy bez spätného odkazu', '2013-04-30 14:33:42'),
(10919, 'sk', 'label', 'Clear All', 'Vymaž všetko', '2013-04-30 14:34:36'),
(10920, 'sk', 'label', 'Current', 'Aktuálny', '2013-04-30 14:34:36'),
(10921, 'sk', 'label', 'Select All', 'Vybrať všetko', '2013-04-30 14:34:36'),
(10922, 'sk', 'label', 'Theme', 'Téma', '2013-04-30 14:34:36'),
(10923, 'sk', 'panel', 'Themes Manager', 'Správca tém', '2013-04-30 14:34:59'),
(10924, 'sk', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Prechádzať relatívne odkazy na stránke', '2013-04-30 14:35:42'),
(10925, 'sk', 'theme', 'Download Seo Panel Themes', 'Stiahnuť témy', '2013-04-30 14:36:10'),
(10926, 'de', 'common', 'Dashboard', 'Übersicht', '2021-06-15 01:46:19'),
(10927, 'de', 'common', 'Home', 'Home', '2021-06-15 01:46:19'),
(10928, 'de', 'common', 'Powered by', 'Bereitgestellt von', '2021-06-15 01:46:19'),
(10929, 'de', 'label', 'Clear All', 'Alles löschen', '2021-01-06 15:13:08'),
(10930, 'de', 'label', 'Current', 'Aktuell', '2021-01-06 15:13:08'),
(10931, 'de', 'label', 'Select All', 'Alle auswählen', '2021-01-06 15:13:08'),
(10932, 'de', 'label', 'Theme', 'Theme', '2021-01-06 15:13:08'),
(10933, 'de', 'panel', 'Themes Manager', 'Theme Manager', '2023-01-03 19:44:32'),
(10934, 'de', 'theme', 'Download Seo Panel Themes', 'SEO Panel Themes herunterladen', '2013-05-27 23:04:21'),
(10935, 'en', 'login', 'Forgot password?', 'Forgot password?', '2014-01-06 23:45:28'),
(10936, 'en', 'login', 'Request Password', 'Request Password', '2014-01-06 23:45:58'),
(10937, 'en', 'login', 'Your Password Reset Failed', 'Your Password Reset Failed', '2014-01-06 23:45:58'),
(10938, 'en', 'login', 'Your Password Reset Successfully', 'Your Password Reset Successfully', '2014-01-06 23:45:58'),
(10939, 'en', 'login', 'user_email_not_exist', 'User email is not existing in system!', '2014-01-06 23:45:58'),
(10940, 'en', 'login', 'password_reset_success_message', 'Your password reset successfully. A confirmation mail send to email address. <br>Please check your inbox to get your new password.', '2014-01-06 23:45:58'),
(10941, 'en', 'login', 'internal_error_mail_send', 'An internal error occured while sending password reset mail!', '2014-01-06 23:45:58'),
(10942, 'en', 'login', 'to login to your account', 'to login to your account', '2014-01-06 23:45:58'),
(10943, 'en', 'login', 'Your account password is resetted and new password is', 'Your account password is resetted and new password is', '2014-01-06 23:45:58'),
(10944, 'en', 'common', 'Thank you', 'Thank you', '2019-08-06 10:09:56'),
(10945, 'en', 'panel', 'Proxy Settings', 'Proxy Settings', '2014-01-06 23:45:58'),
(10946, 'en', 'panel', 'Import Proxy', 'Import Proxy', '2014-01-06 23:45:58'),
(10947, 'en', 'settings', 'allsettingssaved', 'All settings saved successfully!', '2018-01-23 00:59:29'),
(10948, 'en', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP Proxy Tunnel', '2018-01-23 00:59:29'),
(10949, 'en', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2018-01-23 00:59:29'),
(10950, 'en', 'common', 'Checked', 'Checked', '2019-08-06 10:09:56'),
(10951, 'en', 'label', 'Syntax', 'Syntax', '2014-01-06 23:45:58'),
(10952, 'en', 'proxy', 'enterproxynote', 'Enter proxy one per line in following format.', '2014-01-06 23:45:58'),
(10953, 'en', 'proxy', 'proxysyntax', 'Proxy Hostname, Proxy Port, Proxy Username, Proxy Password', '2014-01-06 23:45:58'),
(10954, 'en', 'panel', 'Valid', 'Valid', '2014-01-06 23:45:58'),
(10955, 'en', 'panel', 'Existing', 'Existing', '2014-01-06 23:45:58'),
(10956, 'es-ar', 'common', 'Checked', 'Chequeado', '2014-01-07 00:05:07'),
(10957, 'es-ar', 'common', 'Dashboard', 'Tablero de Control', '2014-01-07 00:05:07'),
(10958, 'es-ar', 'common', 'Hello', 'Hola', '2014-01-07 00:05:07'),
(10959, 'es-ar', 'common', 'Home', 'Inicio', '2014-01-07 00:05:07'),
(10960, 'es-ar', 'common', 'Powered by', 'Creado por ', '2014-01-07 00:05:07'),
(10961, 'es-ar', 'common', 'Thank you', 'Gracias', '2014-01-07 00:05:07'),
(10962, 'es-ar', 'directory', 'Add back to directory list', 'Agregar Atras al listado de directorio', '2014-01-07 00:18:34'),
(10963, 'es-ar', 'directory', 'Approved', 'Aprovado', '2014-01-07 00:18:34'),
(10964, 'es-ar', 'directory', 'Captcha', 'Captcha', '2014-01-07 00:18:34'),
(10965, 'es-ar', 'directory', 'categorynote', 'Categorias. separarlas con coma de acuerdo a su prioridad. Comenzar con la categoria de prioridad Superior.', '2014-01-07 00:18:34'),
(10966, 'es-ar', 'directory', 'Check Directory Status', 'Chequear estado del directorio', '2014-01-07 00:18:34'),
(10967, 'es-ar', 'directory', 'Check Directory Submission Status', 'Chequear estado del envio del directorio', '2014-01-07 00:18:34'),
(10968, 'es-ar', 'directory', 'clickaddfeatureddirectory', 'Clic aqui para agregar el directorio elegido', '2014-01-07 00:18:34'),
(10969, 'es-ar', 'directory', 'clicktoproceeddirsts', 'Clic en <b>Proceder</b> para controlar el Estado del Directorio.', '2014-01-07 00:18:34'),
(10970, 'es-ar', 'directory', 'Confirmation', 'Confirmacion', '2014-01-07 00:18:34'),
(10971, 'es-ar', 'directory', 'Coupon Code', 'Codigo de Cupon', '2014-01-07 00:18:34'),
(10972, 'es-ar', 'directory', 'Coupon Offer', 'Oferta de Cupon', '2014-01-07 00:18:34'),
(10973, 'es-ar', 'directory', 'couponcodenote', 'Usar el Codigo de Cupon y obtener ofertas para cada envio [REDUCTION_PER]!', '2014-01-07 00:18:34'),
(10974, 'es-ar', 'directory', 'desnote', 'Algunos directorios requieren un minimo de 150 caracteres para el campo descripcion.', '2014-01-07 00:18:34'),
(10975, 'es-ar', 'directory', 'Directories with out captcha', 'Directorios sin captcha.', '2014-01-07 00:18:34'),
(10976, 'es-ar', 'directory', 'Directories with out Reciprocal Link', 'Directorios sin Vinculo Reciproco', '2014-01-07 00:18:34'),
(10977, 'es-ar', 'directory', 'Directory Submission Reports', 'Reportes de Envio de Directorios', '2014-01-07 00:18:34'),
(10978, 'es-ar', 'directory', 'Enter the code shown', 'Ingresar el Codigo Mostrado', '2014-01-07 00:18:34'),
(10979, 'es-ar', 'directory', 'nocatnote', 'La categoria de envio no se encontro en la pagina de envio. Por favor haga clic en <b>Recargar</b> o <b>Pasar</b>', '2014-01-07 00:18:34'),
(10980, 'es-ar', 'directory', 'nodirnote', 'No se encontraron directorios <b>Activos</b>', '2014-01-07 00:18:34'),
(10981, 'es-ar', 'directory', 'nosuccessnote', 'No ubtuvo mensaje de operacion exitosa, por favor controle su mail para buscar el mensaje de confirmacion', '2014-01-07 00:18:34'),
(10982, 'es-ar', 'directory', 'optionalnote', 'Titulos y descripciones opcionales para enviar titulos y descripciones aleatorias a los directorios para obtener mejores resultados.', '2014-01-07 00:18:34'),
(10983, 'es-ar', 'directory', 'Owner Email', 'Email del Titular', '2014-01-07 00:18:34'),
(10984, 'es-ar', 'directory', 'Owner Name', 'Nombre del Titular', '2014-01-07 00:18:34'),
(10985, 'es-ar', 'directory', 'Pending', 'Pendiente', '2014-01-07 00:18:34'),
(10986, 'es-ar', 'directory', 'Please select a website to proceed', 'Por favor ingrese el sitio web para proceder', '2014-01-07 00:18:34'),
(10987, 'es-ar', 'directory', 'Reciprocal Link', 'Vinculo reciproco', '2014-01-07 00:18:34'),
(10988, 'es-ar', 'directory', 'selectwebsiteproceed', 'Selecciones un <b>Sitio Web</b> para <b>Proceder</b> a enviar el directorios.<br> <b>Chequee directorios sin captcha</b> para enviar a directorios sin captcha', '2014-01-07 00:18:34'),
(10989, 'es-ar', 'directory', 'selectwebsiteschecksub', 'Seleccione un <b>Sitio Web</b> para <b>Proceder</b> a chequear el envio de directorios.', '2014-01-07 00:18:34'),
(10990, 'es-ar', 'directory', 'Semi Automatic Directory Submission Tool', 'Herramienta de Envio de Directorios Semi Automatica', '2014-01-07 00:18:34'),
(10991, 'es-ar', 'directory', 'spamemailnote', 'Algunos directorios podrian enviar spam, no recomendamos utilizar su cuenta de correo primaria.', '2014-01-07 00:18:34'),
(10992, 'es-ar', 'directory', 'Submission Details', 'Detalles del envio', '2014-01-07 00:18:34'),
(10993, 'es-ar', 'directory', 'Submit Description', 'Enviar Descripcion', '2014-01-07 00:18:34'),
(10994, 'es-ar', 'directory', 'Submit Keywords', 'Enviar palabras clave', '2014-01-07 00:18:34'),
(10995, 'es-ar', 'directory', 'Submit Title', 'Enviar Titulo', '2014-01-07 00:18:34'),
(10996, 'es-ar', 'directory', 'Website Category', 'Categoria del Sitio Web', '2014-01-07 00:18:34'),
(10997, 'es-ar', 'directory', 'Website Url', 'URL del Sitio Web', '2014-01-07 00:18:34'),
(10998, 'es-ar', 'keyword', 'Crawling keyword', '', '2014-01-07 00:25:28'),
(10999, 'es-ar', 'keyword', 'Detailed Keyword Position Reports', '', '2014-01-07 00:25:28'),
(11000, 'es-ar', 'keyword', 'Edit Keyword', '', '2014-01-07 00:25:28'),
(11001, 'es-ar', 'keyword', 'Graphical Keyword Position Reports', '', '2014-01-07 00:25:28'),
(11002, 'es-ar', 'keyword', 'Import Keywords', '', '2014-01-07 00:25:28'),
(11003, 'es-ar', 'keyword', 'Insert keywords separated with comma', '', '2014-01-07 00:25:28'),
(11004, 'es-ar', 'keyword', 'Keyword already exist', '', '2014-01-07 00:25:28'),
(11005, 'es-ar', 'keyword', 'Keyword Position Report', '', '2014-01-07 00:25:28'),
(11006, 'es-ar', 'keyword', 'New Keyword', '', '2014-01-07 00:25:28'),
(11007, 'es-ar', 'keyword', 'not assigned to required search engines', '', '2014-01-07 00:25:28'),
(11008, 'es-ar', 'keyword', 'pleaseselecttool', '', '2014-01-07 00:25:28'),
(11009, 'es-ar', 'keyword', 'Quick Keyword Position Checker', '', '2014-01-07 00:25:28'),
(11010, 'es-ar', 'keyword', 'results from ', '', '2014-01-07 00:25:28'),
(11011, 'es-ar', 'keyword', 'Show All results', '', '2014-01-07 00:25:28'),
(11012, 'es-ar', 'keyword', 'Successfully crawled keyword', '', '2014-01-07 00:25:28'),
(11013, 'es-ar', 'keyword', 'to create new keywords', '', '2014-01-07 00:25:28'),
(11014, 'es-ar', 'theme', 'Download Seo Panel Themes', 'Descargar Temas de Seo Panel', '2014-01-07 00:25:50'),
(11015, 'es-ar', 'report', '2 Days', '2 dias', '2014-01-07 00:28:18'),
(11016, 'es-ar', 'report', 'Email notification', 'Notificaciones por email', '2014-01-07 00:28:18'),
(11017, 'es-ar', 'report', 'keywordnumbercheckedcronnote', 'Nota: 0 predeterminado significa que todas las palabras clave deben estar seleccionadas', '2014-01-07 00:28:18'),
(11018, 'es-ar', 'report', 'Next report generation time', 'Nuevo horario de generacion de reporte', '2014-01-07 00:28:18'),
(11019, 'es-ar', 'report', 'Reports generation interval', 'Intervalo de generacion de reportes', '2014-01-07 00:28:18'),
(11020, 'es-ar', 'report', 'reportsettingssaved', 'Configuracion de Reporte guardadas exitosamente!', '2014-01-07 00:28:18'),
(11021, 'es-ar', 'report', 'sheduledsuccessfully', 'Generacion de Reporte Programado exitosa!', '2014-01-07 00:28:18'),
(11022, 'es-ar', 'login', 'Forgot password?', 'Olvido la contraseña?', '2014-01-07 00:34:15'),
(11023, 'es-ar', 'login', 'internal_error_mail_send', 'Ocurrio un error interno mientras se enviava el correo de reseteo de contraseña!', '2014-01-07 00:34:15'),
(11024, 'es-ar', 'login', 'password_reset_success_message', 'Su contraseña se reseteo exitosamente. Se envio un correo de confirmacion a su casilla de correo. <br>Controle su bandeja de entrada para obtener su nueva contraseña.', '2014-01-07 00:34:15'),
(11025, 'es-ar', 'login', 'Request Password', 'Solicitar Contraseña', '2014-01-07 00:34:15'),
(11026, 'es-ar', 'login', 'to login to your account', 'para ingresar a su cuenta', '2014-01-07 00:34:15'),
(11027, 'es-ar', 'login', 'user_email_not_exist', 'El email del usuario no esta saliendo en el Sistema!', '2014-01-07 00:34:15'),
(11028, 'es-ar', 'login', 'Your account password is resetted and new password is', 'La contraseña de su cuenta fue reseteada y la nueva contraseña es ', '2014-01-07 00:34:15'),
(11029, 'es-ar', 'login', 'Your Password Reset Failed', 'Fallo el reseteo de su contraseña', '2014-01-07 00:34:15'),
(11030, 'es-ar', 'login', 'Your Password Reset Successfully', 'Reseteo de Contraseña Exitoso', '2014-01-07 00:34:15'),
(11031, 'es-ar', 'plugin', 'Download Seo Panel Plugins', 'Descargar accesorios de Seo Panel', '2014-01-07 00:35:09'),
(11032, 'es-ar', 'plugin', 'Edit Seo Plugin', 'Editar Accesorio de Seo', '2014-01-07 00:35:09'),
(11033, 'es-ar', 'plugin', 'Plugin Name', 'Nombre del accesorio', '2014-01-07 00:35:09'),
(11034, 'es-ar', 'plugin', 'Seo Plugin Details', 'Detalles del Accesorio de Seo', '2014-01-07 00:35:09'),
(11035, 'es-ar', 'proxy', 'Edit Proxy', 'Editar proxy', '2014-01-07 00:36:47'),
(11036, 'es-ar', 'proxy', 'enterproxynote', 'Editar proxy, uno por linea en el siguiente formato.', '2014-01-07 00:36:47'),
(11037, 'es-ar', 'proxy', 'Proxy Password', 'Contraseña del proxy', '2014-01-07 00:36:47'),
(11038, 'es-ar', 'proxy', 'Proxy Username', 'Nombre de Usuario del proxy', '2014-01-07 00:36:47'),
(11039, 'es-ar', 'proxy', 'Proxyalreadyexist', 'El proxy ya existe!', '2014-01-07 00:36:47'),
(11040, 'es-ar', 'proxy', 'proxysyntax', 'Hostname, Puerto, Usuario, Contraseña', '2014-01-07 00:36:47'),
(11041, 'bg', 'common', 'Checked', 'Отбелязано', '2019-05-25 22:00:14'),
(11042, 'bg', 'common', 'Thank you', 'Благодаря', '2019-05-25 22:00:14'),
(11043, 'bg', 'label', 'Syntax', 'Синтакс', '2018-08-21 11:09:26'),
(11044, 'bg', 'login', 'Forgot password?', 'Забравена парола?', '2018-08-21 11:10:13'),
(11045, 'bg', 'login', 'internal_error_mail_send', 'Възникна грешка при изпращане на имейла за смяна на парола!', '2018-08-21 11:10:13'),
(11046, 'bg', 'login', 'password_reset_success_message', 'Паролата ви е променена успешно. Имейл за потвърждение, беше изпратен на посоченият имейл адрес. <br>Моля, проверете пощенската си кутия за вашата нова парола.', '2018-08-21 11:10:13'),
(11047, 'bg', 'login', 'Request Password', 'Изискай парола', '2018-08-21 11:10:13'),
(11048, 'bg', 'login', 'to login to your account', 'за да влезете в профила си', '2018-08-21 11:10:13'),
(11049, 'bg', 'login', 'user_email_not_exist', 'Този имейл адрес не съществува в системата!', '2018-08-21 11:10:13'),
(11050, 'bg', 'login', 'Your account password is resetted and new password is', 'Вашата парола беше променена, новата ви парола е', '2018-08-21 11:10:13'),
(11051, 'bg', 'login', 'Your Password Reset Failed', 'Промяната на парола е неуспешна', '2018-08-21 11:10:13'),
(11052, 'bg', 'login', 'Your Password Reset Successfully', 'Паролата ви е успешно променена', '2018-08-21 11:10:13'),
(11053, 'bg', 'panel', 'Existing', 'Съществуващо', '2018-08-21 11:14:04'),
(11054, 'bg', 'panel', 'Import Proxy', 'Импортиране на прокси', '2018-08-21 11:14:04'),
(11055, 'bg', 'panel', 'Proxy Settings', 'Настройки на прокси', '2018-08-21 11:14:04'),
(11056, 'bg', 'panel', 'Valid', 'Валидно', '2018-08-21 11:14:04'),
(11057, 'bg', 'proxy', 'enterproxynote', 'Въведете прокси, по едно на ред в следния формат.', '2016-12-18 22:08:18'),
(11058, 'bg', 'proxy', 'proxysyntax', 'Прокси хост име, Прокси порт, Прокси потребител, Прокси парола', '2016-12-18 22:08:18'),
(11059, 'bg', 'settings', 'allsettingssaved', 'Всички настройки са запазени успешно!', '2018-08-21 11:24:42'),
(11060, 'bg', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Активиране на HTTP Proxy тунел', '2018-08-21 11:24:42'),
(11061, 'bg', 'settings', 'SP_SMTP_PORT', 'SMTP Мейл порт', '2018-08-21 11:24:42'),
(11062, 'nl', 'common', 'Checked', 'Aangevinkt', '2019-05-25 22:06:08'),
(11063, 'nl', 'common', 'Dashboard', 'Dashboard', '2019-05-25 22:06:08'),
(11064, 'nl', 'common', 'Home', 'Home', '2019-05-25 22:06:08'),
(11065, 'nl', 'common', 'Powered by', 'Mogelijk gemaakt door', '2019-05-25 22:06:08'),
(11066, 'nl', 'common', 'Thank you', 'Dank u', '2019-05-25 22:06:08'),
(11067, 'nl', 'directory', 'clickaddfeatureddirectory', 'Klik hier om uw eigen featured Directory toe te voegen', '2014-01-08 02:36:56'),
(11068, 'nl', 'directory', 'Coupon Offer', 'Coupon aanbod', '2014-01-08 02:36:56'),
(11069, 'nl', 'directory', 'Directories with out Reciprocal Link', 'Directories zonder wederkerige link', '2014-01-08 02:36:56'),
(11070, 'nl', 'label', 'Clear All', 'Wis alle', '2014-01-08 02:37:43'),
(11071, 'nl', 'label', 'Current', 'Huidige', '2014-01-08 02:37:43'),
(11072, 'nl', 'label', 'Select All', 'Selecteer alle', '2014-01-08 02:37:43'),
(11073, 'nl', 'label', 'Syntax', 'Syntax', '2014-01-08 02:37:43'),
(11074, 'nl', 'label', 'Theme', 'Thema', '2014-01-08 02:37:43'),
(11075, 'nl', 'login', 'Forgot password?', 'Wachtwoord vergeten?', '2014-01-08 02:45:36'),
(11076, 'nl', 'login', 'internal_error_mail_send', 'Er heeft een interne fout plaatsgevonden tijdens het verzenden van de wachtwoord reset email!', '2014-01-08 02:45:36'),
(11077, 'nl', 'login', 'password_reset_success_message', 'Uw wachtwoord is succesvol gereset. Een bevestigingsemail is naar uw email verzonden. Controleer uw email voor uw wachtwoord.', '2014-01-08 02:45:36'),
(11078, 'nl', 'login', 'Request Password', 'Vraag wachtwoord aan', '2014-01-08 02:45:36'),
(11079, 'nl', 'login', 'to login to your account', 'om in te loggen', '2014-01-08 02:45:36'),
(11080, 'nl', 'login', 'user_email_not_exist', 'Email bestaat niet in het systeem!', '2014-01-08 02:45:36'),
(11081, 'nl', 'login', 'Your account password is resetted and new password is', 'Uw wachtwoord is gereset en uw nieuwe wachtwoord is', '2014-01-08 02:45:36'),
(11082, 'nl', 'login', 'Your Password Reset Failed', 'Uw wachtwoord reset is mislukt', '2014-01-08 02:45:36'),
(11083, 'nl', 'login', 'Your Password Reset Successfully', 'Uw wachtwoord is succesvol gereset', '2014-01-08 02:45:36'),
(11084, 'nl', 'panel', 'Existing', 'Bestaand', '2014-01-08 02:46:33'),
(11085, 'nl', 'panel', 'Import Proxy', 'Importeer proxy', '2014-01-08 02:46:33'),
(11086, 'nl', 'panel', 'Proxy Settings', 'Proxy instellingen', '2014-01-08 02:46:33'),
(11087, 'nl', 'panel', 'Themes Manager', 'Thema manager', '2014-01-08 02:46:33'),
(11088, 'nl', 'panel', 'Valid', 'Geldig', '2014-01-08 02:46:33'),
(11089, 'nl', 'proxy', 'enterproxynote', 'Geef proxy op, een per regel in het volgende formaat.', '2014-01-08 02:48:32'),
(11090, 'nl', 'proxy', 'proxysyntax', 'Proxy Hostnaam, Proxy Port, Proxy Gebruikersnaam, Proxy Wactwoord', '2014-01-08 02:48:32'),
(11091, 'nl', 'settings', 'allsettingssaved', 'Alle instellingen zijn succesvol opgeslagen!', '2014-01-08 02:51:05'),
(11092, 'nl', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Gebruik HTTP Proxy Tunnel ', '2014-01-08 02:51:05'),
(11093, 'nl', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Crawl relatieve links in een pagina', '2014-01-08 02:51:05'),
(11094, 'nl', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2014-01-08 02:51:05'),
(11095, 'nl', 'theme', 'Download Seo Panel Themes', 'Download Seo Panel Thema''s', '2014-01-08 02:52:52'),
(11096, 'en', 'button', 'Search', 'Search', '2014-01-09 00:18:02'),
(11097, 'de', 'button', 'Search', 'Suche', '2021-06-15 01:29:35'),
(11098, 'ar', 'button', 'Search', 'بحث', '2014-01-09 00:20:10'),
(11099, 'bg', 'button', 'Search', 'търсене', '2014-01-09 00:20:35'),
(11101, 'zh', 'button', 'Search', '搜索', '2014-01-09 00:21:34'),
(11102, 'cn', 'button', 'Search', '搜索', '2014-01-09 00:22:02'),
(11103, 'cs', 'button', 'Search', 'hledání', '2014-01-09 00:24:18'),
(11104, 'da', 'button', 'Search', 'Søg', '2014-01-09 00:24:44'),
(11105, 'nl', 'button', 'Search', 'zoeken', '2014-01-09 00:25:07'),
(11106, 'fa', 'button', 'Search', 'جستجو', '2014-01-09 00:25:49'),
(11107, 'fr', 'button', 'Search', 'Rechercher', '2018-01-23 03:34:22'),
(11108, 'el', 'button', 'Search', 'έρευνα', '2014-01-09 00:26:57'),
(11109, 'he', 'button', 'Search', 'לחפש', '2014-01-09 00:27:21'),
(11110, 'hu', 'button', 'Search', 'keresés', '2014-01-09 00:27:48'),
(11111, 'id', 'button', 'Search', 'pencarian', '2014-01-09 00:28:06'),
(11112, 'it', 'button', 'Search', 'ricerca', '2014-01-09 00:28:28'),
(11113, 'ja', 'button', 'Search', '検索', '2014-01-09 00:28:54'),
(11114, 'lt', 'button', 'Search', 'Ieškoti', '2014-01-12 16:21:04'),
(11116, 'pl', 'button', 'Search', 'Szukaj', '2014-01-17 23:41:10'),
(11117, 'pt', 'button', 'Search', 'pesquisa', '2014-01-09 00:31:51'),
(11118, 'pt-br', 'button', 'Search', 'pesquisa', '2014-02-12 17:23:01'),
(11119, 'ro', 'button', 'Search', 'căutare', '2014-01-09 00:32:28'),
(11120, 'ru', 'button', 'Search', 'поиск', '2014-01-09 00:33:07'),
(11121, 'sk', 'button', 'Search', 'hľadanie', '2014-01-09 00:33:39'),
(11122, 'sl', 'button', 'Search', 'Iskanje', '2014-01-09 00:33:56'),
(11123, 'es', 'button', 'Search', 'búsqueda', '2014-01-09 00:34:14'),
(11124, 'es-ar', 'button', 'Search', 'búsqueda', '2014-01-09 00:34:42'),
(11125, 'sv', 'button', 'Search', 'Sök', '2014-06-23 20:52:34'),
(11126, 'tr', 'button', 'Search', 'arama', '2014-01-09 00:36:20'),
(11127, 'vn', 'button', 'Search', 'tìm kiếm', '2014-01-09 00:36:48'),
(11128, 'en', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate Proxy When Crawling Failed', '2018-01-23 00:59:29'),
(11129, 'it', 'common', 'Checked', 'Verificato', '2022-07-11 15:16:48'),
(11130, 'it', 'common', 'Thank you', 'Grazie', '2022-07-11 15:16:48'),
(11131, 'it', 'label', 'Syntax', 'Sintassi', '2022-07-11 15:17:58'),
(11132, 'it', 'login', 'Forgot password?', 'Password dimenticata?', '2018-08-21 11:07:40'),
(11133, 'it', 'login', 'internal_error_mail_send', 'Si è verificato un errore mentre stavamo inviando la mail di reset password!', '2018-08-21 11:07:40'),
(11134, 'it', 'login', 'password_reset_success_message', 'La tua password è stata resettata con successo. E'' stata inviata una mail di conferma. <br > Per cortesia controlla la tua posta in arrivo per la tua nuova password.', '2018-08-21 11:07:40'),
(11135, 'it', 'login', 'Request Password', 'Richiesta password', '2018-08-21 11:07:40'),
(11136, 'it', 'login', 'to login to your account', 'per loggare al tuo account', '2018-08-21 11:07:40'),
(11137, 'it', 'login', 'user_email_not_exist', 'La mail non esiste nel nostro sistema!', '2018-08-21 11:07:40'),
(11138, 'it', 'login', 'Your account password is resetted and new password is', 'La password del tuo account è stata resettata e la nuova password è', '2018-08-21 11:07:40'),
(11139, 'it', 'login', 'Your Password Reset Failed', 'Reset password fallita', '2018-08-21 11:07:40'),
(11140, 'it', 'login', 'Your Password Reset Successfully', 'La password è stata resettata con successo', '2018-08-21 11:07:40'),
(11141, 'it', 'panel', 'Existing', 'Esistente', '2022-07-11 15:20:07'),
(11142, 'it', 'panel', 'Import Proxy', 'Importa proxy', '2022-07-11 15:20:07'),
(11143, 'it', 'panel', 'Proxy Settings', 'Impostazioni proxy', '2022-07-11 15:20:07'),
(11144, 'it', 'panel', 'Valid', 'Valido', '2022-07-11 15:20:07'),
(11145, 'it', 'proxy', 'enterproxynote', 'Inserisci i proxy uno per riga nel seguente formato.', '2016-12-09 14:20:46'),
(11146, 'it', 'proxy', 'proxysyntax', 'Hostname proxy, Porta proxy, nome utente proxy, password proxy', '2016-12-09 14:20:46'),
(11147, 'it', 'settings', 'allsettingssaved', 'Tutte le impostazioni sono state salvate con successo!', '2018-08-21 11:16:32'),
(11148, 'it', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Abilita tunnel proxy HTTP', '2018-08-21 11:16:32'),
(11149, 'it', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Disattiva il proxy quando la scansione fallisce', '2018-08-21 11:16:32'),
(11150, 'it', 'settings', 'SP_SMTP_PORT', 'Porta mail SMTP', '2018-08-21 11:16:32'),
(11151, 'zh', 'directory', 'clickaddfeatureddirectory', '点击这里添加您的优先目录', '2014-01-09 20:03:35'),
(11152, 'zh', 'directory', 'Coupon Code', '优惠代码', '2014-01-09 20:03:35'),
(11153, 'zh', 'directory', 'Coupon Offer', '优惠提供', '2014-01-09 20:03:35'),
(11154, 'zh', 'directory', 'couponcodenote', '使用上面的优惠券来获得 [REDUCTION_PER] 针对优先目录的提交', '2014-01-09 20:03:35'),
(11155, 'zh', 'directory', 'Directories with out Reciprocal Link', '互惠链接导出的目录', '2014-01-09 20:03:35'),
(11156, 'zh', 'common', 'Checked', '勾选', '2019-05-25 22:01:23'),
(11157, 'zh', 'common', 'Powered by', '授权于', '2019-05-25 22:01:23'),
(11158, 'zh', 'common', 'Thank you', '感谢您', '2019-05-25 22:01:23'),
(11159, 'zh', 'label', 'Clear All', '清空', '2014-05-15 21:47:51'),
(11160, 'zh', 'label', 'Current', '当前', '2014-05-15 21:47:51'),
(11161, 'zh', 'label', 'Daily', '每日', '2014-05-15 21:47:51'),
(11162, 'zh', 'label', 'Monthly', '每月', '2014-05-15 21:47:51'),
(11163, 'zh', 'label', 'Select All', '全选', '2014-05-15 21:47:51'),
(11164, 'zh', 'label', 'Syntax', '规则', '2014-05-15 21:47:51'),
(11165, 'zh', 'label', 'Theme', '主题', '2014-05-15 21:47:51'),
(11166, 'zh', 'label', 'Weekly', '每周', '2014-05-15 21:47:51'),
(11167, 'zh', 'login', 'Forgot password?', '忘记密码?', '2014-01-09 20:07:15'),
(11168, 'zh', 'login', 'internal_error_mail_send', '当前尝试发送邮件出现一个内部错误', '2014-01-09 20:07:15'),
(11169, 'zh', 'login', 'password_reset_success_message', '您的密码重置已经成功。一封确认邮件已经发送到您的邮件地址。<br>请查收您的收件箱获取您的最新密码。', '2014-01-09 20:07:15'),
(11170, 'zh', 'login', 'Request Password', '重置密码', '2014-01-09 20:07:15'),
(11171, 'zh', 'login', 'to login to your account', '登入账户', '2014-01-09 20:07:15'),
(11172, 'zh', 'login', 'user_email_not_exist', '用户的mail不存在于系统中', '2014-01-09 20:07:15'),
(11173, 'zh', 'login', 'Your account password is resetted and new password is', '您的账户密码已经被重置,新的密码是', '2014-01-09 20:07:15'),
(11174, 'zh', 'login', 'Your Password Reset Failed', '您的账户密码重置失败', '2014-01-09 20:07:15'),
(11175, 'zh', 'login', 'Your Password Reset Successfully', '您的账户密码重置成功', '2014-01-09 20:07:15'),
(11176, 'zh', 'panel', 'Archived Reports', '归档报告', '2014-05-15 21:48:57'),
(11177, 'zh', 'panel', 'Existing', '当前存在的', '2014-05-15 21:48:57'),
(11178, 'zh', 'panel', 'Import Proxy', '导入代理', '2014-05-15 21:48:57'),
(11179, 'zh', 'panel', 'Proxy Settings', '代理设定', '2014-05-15 21:48:57'),
(11180, 'zh', 'panel', 'Report Settings', '报告设定', '2014-05-15 21:48:57'),
(11181, 'zh', 'panel', 'Schedule Reports', '计划报告', '2014-05-15 21:48:57'),
(11182, 'zh', 'panel', 'Search Engine Manager', '搜索引擎管理', '2014-05-15 21:48:57'),
(11183, 'zh', 'panel', 'Themes Manager', '主题管理', '2014-05-15 21:48:57'),
(11184, 'zh', 'panel', 'Valid', '有效的', '2014-05-15 21:48:57'),
(11185, 'zh', 'plugin', 'Download Seo Panel Plugins', '下载seo panel的插件', '2014-01-09 20:08:57'),
(11186, 'zh', 'proxy', 'enterproxynote', '在下面的格式中输入代理(一行一个)', '2014-05-15 21:51:10'),
(11187, 'zh', 'proxy', 'proxysyntax', '代理主机名,代理端口,代理用户,代理密码', '2014-05-15 21:51:10'),
(11188, 'zh', 'report', '2 Days', '2天', '2014-01-09 20:10:43'),
(11189, 'zh', 'report', 'Email notification', '邮件通知', '2014-01-09 20:10:43'),
(11190, 'zh', 'report', 'keywordnumbercheckedcronnote', '注意:默认0意思所有的关键词都应该被勾选', '2014-01-09 20:10:43'),
(11191, 'zh', 'report', 'Next report generation time', '下一个报告生成的时间', '2014-01-09 20:10:43'),
(11192, 'zh', 'report', 'Reports generation interval', '报告生成的间隔时间', '2014-01-09 20:10:43'),
(11193, 'zh', 'report', 'reportsettingssaved', '报告设置保存成功!', '2014-01-09 20:10:43'),
(11194, 'zh', 'report', 'sheduledsuccessfully', '计划报告生成成功!', '2014-01-09 20:10:43'),
(11195, 'zh', 'reports', 'report_email_body_text1', '您的报告已经被生成,请检查您的报告附件。', '2014-01-09 20:12:32'),
(11196, 'zh', 'reports', 'report_email_body_text2', '如果上面的报告没有被清空,请 [LOGIN_LINK] 直接从您的账户中浏览报告', '2014-01-09 20:12:32'),
(11197, 'zh', 'reports', 'report_email_subject', '您的SEO报告生成成功', '2014-01-09 20:12:32'),
(11198, 'zh', 'searchengine', 'max_results', '最大数量的结果', '2014-01-09 20:13:09'),
(11199, 'zh', 'searchengine', 'no_of_results_page', '每页的结果数量', '2014-01-09 20:13:09'),
(11200, 'zh', 'settings', 'allsettingssaved', '所有的设置已经保存成功', '2014-05-15 21:56:30'),
(11201, 'zh', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', '激活HTTP代理通道', '2014-05-15 21:56:30'),
(11202, 'zh', 'settings', 'entersmtpdetails', '请输入SMTP 邮件设定', '2014-05-15 21:56:30'),
(11203, 'zh', 'settings', 'getallpluginfree', '同时<b>免费</b>获得所有我们开发的<b>插件<b> ', '2014-05-15 21:56:30'),
(11204, 'zh', 'settings', 'PROXY_DEACTIVATE_CRAWL', '抓取失败的时候不使用代理', '2014-05-15 21:56:30'),
(11205, 'zh', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', '允许用户生成计划报告', '2014-05-15 21:56:30'),
(11206, 'zh', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'cron执行关键词数量勾选', '2014-05-15 21:56:30'),
(11207, 'zh', 'settings', 'SP_RELATIVE_LINK_CRAWL', '抓取相关链接在一个页面上', '2014-05-15 21:56:30'),
(11208, 'zh', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', '激活报告邮件通知', '2014-05-15 21:56:30'),
(11209, 'zh', 'settings', 'SP_SMTP_HOST', 'SMTP主机', '2014-05-15 21:56:30'),
(11210, 'zh', 'settings', 'SP_SMTP_MAIL', '激活smtp', '2014-05-15 21:56:30'),
(11211, 'zh', 'settings', 'SP_SMTP_PASSWORD', 'smtp密码', '2014-05-15 21:56:30'),
(11212, 'zh', 'settings', 'SP_SMTP_PORT', 'stmp邮件报告', '2014-05-15 21:56:30'),
(11213, 'zh', 'settings', 'SP_SMTP_USERNAME', 'smtp用户名', '2014-05-15 21:56:30'),
(11214, 'zh', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', '系统生成报告间隔时间', '2014-05-15 21:56:30'),
(11215, 'zh', 'theme', 'Download Seo Panel Themes', '下载seo panel主题', '2014-01-09 20:22:41'),
(11216, 'cn', 'common', 'Checked', '勾選', '2019-05-25 22:02:13'),
(11217, 'cn', 'common', 'Thank you', '感謝您', '2019-05-25 22:02:13'),
(11218, 'cn', 'directory', 'clickaddfeatureddirectory', '點擊這裡添加您的優先目錄', '2014-01-09 20:30:58'),
(11219, 'cn', 'directory', 'Coupon Code', '優惠代碼', '2014-01-09 20:30:58'),
(11220, 'cn', 'directory', 'Coupon Offer', '優惠提供', '2014-01-09 20:30:58'),
(11221, 'cn', 'directory', 'couponcodenote', '使用上面的優惠券來獲得[REDUCTION_PER] 針對優先目錄的提交', '2014-01-09 20:30:58'),
(11222, 'cn', 'directory', 'Directories with out Reciprocal Link', '互惠鏈接導出的目錄', '2014-01-09 20:30:58'),
(11223, 'cn', 'directory', 'Reciprocal Link', '互惠链接', '2014-01-09 20:30:58'),
(11224, 'cn', 'label', 'Clear All', '清空', '2014-01-09 20:35:37'),
(11225, 'cn', 'label', 'Current', '當前', '2014-01-09 20:35:37'),
(11226, 'cn', 'label', 'Daily', '每日', '2014-01-09 20:35:37'),
(11227, 'cn', 'label', 'Monthly', '每月', '2014-01-09 20:35:37'),
(11228, 'cn', 'label', 'Select All', '全選', '2014-01-09 20:35:37'),
(11229, 'cn', 'label', 'Syntax', '規則', '2014-01-09 20:35:37'),
(11230, 'cn', 'label', 'Theme', '主題', '2014-01-09 20:35:37'),
(11231, 'cn', 'label', 'Weekly', '每週', '2014-01-09 20:35:37'),
(11232, 'cn', 'panel', 'Archived Reports', '歸檔報告', '2014-01-09 20:37:31'),
(11233, 'cn', 'panel', 'Existing', '當前存在的', '2014-01-09 20:37:31'),
(11234, 'cn', 'panel', 'Import Proxy', '導入代理', '2014-01-09 20:37:31'),
(11235, 'cn', 'panel', 'Proxy Settings', '代理設定', '2014-01-09 20:37:31'),
(11236, 'cn', 'panel', 'Report Settings', '報告設定', '2014-01-09 20:37:31'),
(11237, 'cn', 'panel', 'Schedule Reports', '計劃報告', '2014-01-09 20:37:31'),
(11238, 'cn', 'panel', 'Search Engine Manager', '搜索引擎管理', '2014-01-09 20:37:31'),
(11239, 'cn', 'panel', 'Themes Manager', '主題管理', '2014-01-09 20:37:31'),
(11240, 'cn', 'panel', 'Valid', '有效的', '2014-01-09 20:37:31'),
(11241, 'cn', 'login', 'Forgot password?', '忘記密碼?', '2014-01-09 20:40:06'),
(11242, 'cn', 'login', 'internal_error_mail_send', '當前嘗試發送郵件出現一個內部錯誤', '2014-01-09 20:40:06'),
(11243, 'cn', 'login', 'password_reset_success_message', '您的密碼重置已經成功。一封確認郵件已經發送到您的郵件地址。 <br>請查收您的收件箱獲取您的最新密碼。', '2014-01-09 20:40:06'),
(11244, 'cn', 'login', 'Request Password', '重置密碼', '2014-01-09 20:40:06'),
(11245, 'cn', 'login', 'to login to your account', '登入賬戶', '2014-01-09 20:40:06'),
(11246, 'cn', 'login', 'user_email_not_exist', '用戶的mail不存在於系統中', '2014-01-09 20:40:06'),
(11247, 'cn', 'login', 'Your account password is resetted and new password is', '您的賬戶密碼已經被重置,新的密碼是', '2014-01-09 20:40:06'),
(11248, 'cn', 'login', 'Your Password Reset Failed', '您的賬戶密碼重置失敗', '2014-01-09 20:40:06'),
(11249, 'cn', 'login', 'Your Password Reset Successfully', '您的賬戶密碼重置成功', '2014-01-09 20:40:06'),
(11250, 'cn', 'plugin', 'Download Seo Panel Plugins', '下載seo panel的插件', '2014-01-09 20:43:38'),
(11251, 'cn', 'proxy', 'enterproxynote', '在下面的格式中輸入代理(一行一個)', '2014-01-09 20:44:24'),
(11252, 'cn', 'proxy', 'proxysyntax', '代理主機名,代理端口,代理用戶,代理密碼', '2014-01-09 20:44:24'),
(11253, 'cn', 'report', '2 Days', '2天', '2014-01-09 20:49:11'),
(11254, 'cn', 'report', 'Email notification', '郵件通知', '2014-01-09 20:49:11'),
(11255, 'cn', 'report', 'keywordnumbercheckedcronnote', '注意:默認0意思所有的關鍵詞都應該被勾選', '2014-01-09 20:49:11'),
(11256, 'cn', 'report', 'Next report generation time', '下一個報告生成的時間', '2014-01-09 20:49:11'),
(11257, 'cn', 'report', 'Reports generation interval', '報告生成的間隔時間', '2014-01-09 20:49:11'),
(11258, 'cn', 'report', 'reportsettingssaved', '報告設置保存成功!', '2014-01-09 20:49:11'),
(11259, 'cn', 'report', 'sheduledsuccessfully', '計劃報告生成成功!', '2014-01-09 20:49:11'),
(11260, 'cn', 'reports', 'report_email_body_text1', '您的報告已經被生成,請檢查您的報告附件。', '2014-01-09 20:50:27'),
(11261, 'cn', 'reports', 'report_email_body_text2', '如果上面的報告沒有被清空,請[LOGIN_LINK] 直接從您的賬戶中瀏覽報告', '2014-01-09 20:50:27'),
(11262, 'cn', 'reports', 'report_email_subject', '您的SEO報告生成成功', '2014-01-09 20:50:27'),
(11263, 'cn', 'searchengine', 'max_results', '最大數量的結果', '2014-01-09 20:51:49'),
(11264, 'cn', 'searchengine', 'no_of_results_page', '每頁的結果數量', '2014-01-09 20:51:49'),
(11265, 'cn', 'settings', 'allsettingssaved', '所有的設置已經保存成功', '2014-01-09 21:04:14'),
(11266, 'cn', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', '激活HTTP代理通道', '2014-01-09 21:04:14'),
(11267, 'cn', 'settings', 'entersmtpdetails', '請輸入SMTP 郵件設定', '2014-01-09 21:04:14'),
(11268, 'cn', 'settings', 'getallpluginfree', '同時<b>免費</b>獲得所有我們開發的<b>插件<b>', '2014-01-09 21:04:14'),
(11269, 'cn', 'settings', 'PROXY_DEACTIVATE_CRAWL', '抓取失敗的時候不使用代理', '2014-01-09 21:04:14'),
(11270, 'cn', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', '允許用戶生成計劃報告', '2014-01-09 21:04:14'),
(11271, 'cn', 'settings', 'SP_API_KEY', 'SEO Panel API接口', '2014-01-09 21:04:14'),
(11272, 'cn', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'cron執行關鍵詞數量勾選', '2014-01-09 21:04:14'),
(11273, 'cn', 'settings', 'SP_RELATIVE_LINK_CRAWL', '抓取相關鏈接在一個頁面上', '2014-01-09 21:04:14'),
(11274, 'cn', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', '激活報告郵件通知', '2014-01-09 21:04:14'),
(11275, 'cn', 'settings', 'SP_SMTP_HOST', 'SMTP主機', '2014-01-09 21:04:14'),
(11276, 'cn', 'settings', 'SP_SMTP_MAIL', '激活smtp', '2014-01-09 21:04:14'),
(11277, 'cn', 'settings', 'SP_SMTP_PASSWORD', 'smtp密碼', '2014-01-09 21:04:14'),
(11278, 'cn', 'settings', 'SP_SMTP_PORT', 'smtp郵件報告', '2014-01-09 21:04:14'),
(11279, 'cn', 'settings', 'SP_SMTP_USERNAME', 'smtp用戶名', '2014-01-09 21:04:14'),
(11280, 'cn', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', '系統生成報告間隔時間', '2014-01-09 21:04:14'),
(11281, 'cn', 'theme', 'Download Seo Panel Themes', '下載seo panel主題', '2014-01-09 21:04:39'),
(11282, 'ru', 'common', 'Checked', 'Проверено', '2024-07-17 15:16:33'),
(11283, 'ru', 'common', 'Thank you', 'Спасибо', '2024-07-17 15:16:33'),
(11284, 'ru', 'label', 'Syntax', 'Синтаксис', '2024-07-17 15:17:22'),
(11285, 'ru', 'login', 'Forgot password?', 'Забыли пароль?', '2018-08-21 21:07:34'),
(11286, 'ru', 'login', 'internal_error_mail_send', 'Произошла внутренняя ошибка при передаче измененненного пароля по почте!', '2018-08-21 21:07:34'),
(11287, 'ru', 'login', 'password_reset_success_message', 'Пароль успешно изменен.Подтверждение по электронной почте отправлено на адрес email. <br>Пожалуйста, проверьте ваш почтовый ящик для получения нового пароля.', '2018-08-21 21:07:34'),
(11288, 'ru', 'login', 'Request Password', 'Запрос пароля', '2018-08-21 21:07:34'),
(11289, 'ru', 'login', 'to login to your account', 'чтобы войти в свой аккаунт', '2018-08-21 21:07:34'),
(11290, 'ru', 'login', 'user_email_not_exist', 'Пользователь email не выходя в систему!', '2018-08-21 21:07:34'),
(11291, 'ru', 'login', 'Your account password is resetted and new password is', 'Ваш пароль будет изменен и новый пароль в', '2018-08-21 21:07:34'),
(11292, 'ru', 'login', 'Your Password Reset Failed', 'Ошибка сброса пароля', '2018-08-21 21:07:34'),
(11293, 'ru', 'login', 'Your Password Reset Successfully', 'Пароль успешно сброшен', '2018-08-21 21:07:34'),
(11294, 'ru', 'panel', 'Existing', 'Существующие', '2024-07-17 15:19:14'),
(11295, 'ru', 'panel', 'Import Proxy', 'Импорт прокси', '2024-07-17 15:19:14'),
(11296, 'ru', 'panel', 'Proxy Settings', 'Настройка прокси', '2024-07-17 15:19:14'),
(11297, 'ru', 'panel', 'Valid', 'Действует', '2024-07-17 15:19:14'),
(11298, 'ru', 'proxy', 'enterproxynote', 'Введите прокси по одному на строку в следующем формате.', '2016-12-09 21:23:58'),
(11299, 'ru', 'proxy', 'proxysyntax', 'Прокси название хоста, порт прокси, имя пользователя прокси, пароль прокси', '2016-12-09 21:23:58'),
(11300, 'ru', 'settings', 'allsettingssaved', 'Все настройки успешно сохранены!', '2024-07-17 15:22:42'),
(11301, 'ru', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Включить HTTP Proxy Tunnel', '2024-07-17 15:22:42'),
(11302, 'ru', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Отключение прокси при обходе не удалось', '2024-07-17 15:22:42'),
(11303, 'ru', 'settings', 'SP_SMTP_PORT', 'Порт SMTP', '2024-07-17 15:22:42'),
(11304, 'vn', 'theme', 'Download Seo Panel Themes', 'Tải về các gói giao diện cho Seo Panel', '2014-01-10 08:58:25'),
(11305, 'vn', 'login', 'Forgot password?', 'Quên mật khẩu?', '2014-01-10 09:02:16'),
(11306, 'vn', 'login', 'internal_error_mail_send', 'Gặp lỗi khi gửi mật khẩu được làm mới vào email!', '2014-01-10 09:02:16'),
(11307, 'vn', 'login', 'password_reset_success_message', 'Mật khẩu được khởi tạo lại thành công. Một thư điện tử xác nhận sẽ được gửi cho abnj. <br> Hãy kiểm tra hộp thư đến của bạn để lấy mật khẩu mới.', '2014-01-10 09:02:16'),
(11308, 'vn', 'login', 'Request Password', 'Yêu cầu mật khẩu', '2014-01-10 09:02:16'),
(11309, 'vn', 'login', 'to login to your account', 'để đăng nhập vào tài khoản của bạn', '2014-01-10 09:02:16'),
(11310, 'vn', 'login', 'user_email_not_exist', 'Thư điện tử này không có trong hệ thống', '2014-01-10 09:02:16'),
(11311, 'vn', 'login', 'Your account password is resetted and new password is', 'Tài khoản của bạn đã được khởi tạo lại và mật khẩu mới của bạn là', '2014-01-10 09:02:16'),
(11312, 'vn', 'login', 'Your Password Reset Failed', 'Khởi tạo mật khẩu không thành công', '2014-01-10 09:02:16'),
(11313, 'vn', 'login', 'Your Password Reset Successfully', 'Khởi tạo mật khẩu thành công', '2014-01-10 09:02:16'),
(11314, 'vn', 'common', 'Checked', 'Đã kiểm tra', '2019-05-25 22:54:57'),
(11315, 'vn', 'common', 'Dashboard', 'Trang chính', '2019-05-25 22:54:57'),
(11316, 'vn', 'common', 'Home', 'Trang chủ', '2019-05-25 22:54:57'),
(11317, 'vn', 'common', 'Powered by', 'Phát triển bởi', '2019-05-25 22:54:57'),
(11318, 'vn', 'common', 'Thank you', 'Cảm ơn', '2019-05-25 22:54:57'),
(11319, 'vn', 'directory', 'clickaddfeatureddirectory', 'Bấm vào đây để thêm danh bạ yêu thích của riêng bạn', '2014-01-10 09:05:11'),
(11320, 'vn', 'directory', 'Coupon Offer', 'Phiế giảm giá', '2014-01-10 09:05:11'),
(11321, 'vn', 'directory', 'Directories with out Reciprocal Link', 'Các danh bạ với liên kết đối ứng', '2014-01-10 09:05:11'),
(11322, 'vn', 'searchengine', 'max_results', 'Số kết quả nhiều nhất', '2014-01-10 09:05:45'),
(11323, 'vn', 'searchengine', 'no_of_results_page', 'Số kết quả mỗi trang', '2014-01-10 09:05:45'),
(11324, 'vn', 'proxy', 'enterproxynote', 'Nhập mỗi proxy một dòng theo định dạng có sẵn', '2014-01-10 09:06:44'),
(11325, 'vn', 'proxy', 'proxysyntax', 'Proxy Hostname, Proxy Port, Proxy Username, Proxy Password', '2014-01-10 09:06:44'),
(11326, 'vn', 'label', 'Clear All', 'Xóa hết', '2014-01-10 09:07:44'),
(11327, 'vn', 'label', 'Current', 'Hiện tại', '2014-01-10 09:07:44'),
(11328, 'vn', 'label', 'Select All', 'Chọn tất cả', '2014-01-10 09:07:44'),
(11329, 'vn', 'label', 'Syntax', 'cú pháp', '2014-01-10 09:07:44'),
(11330, 'vn', 'label', 'Theme', 'Giao diện', '2014-01-10 09:07:44'),
(11331, 'vn', 'panel', 'Archived Reports', 'Báo cáo lưu trữ', '2014-01-10 09:09:42'),
(11332, 'vn', 'panel', 'Existing', 'Tồn tại', '2014-01-10 09:09:42'),
(11333, 'vn', 'panel', 'Import Proxy', 'Nhập vào Proxy', '2014-01-10 09:09:42'),
(11334, 'vn', 'panel', 'Proxy Settings', 'Cấu hình Proxy', '2014-01-10 09:09:42'),
(11335, 'vn', 'panel', 'Report Settings', 'Cấu hình báo cáo', '2014-01-10 09:09:42'),
(11336, 'vn', 'panel', 'Schedule Reports', 'báo cáo tiến độ', '2014-01-10 09:09:42'),
(11337, 'vn', 'panel', 'Search Engine Manager', 'Quản lý Máy tìm kiếm', '2014-01-10 09:09:42'),
(11338, 'vn', 'panel', 'Themes Manager', 'Quản lý giao diện', '2014-01-10 09:09:42'),
(11339, 'vn', 'panel', 'Valid', 'Sai', '2014-01-10 09:09:42'),
(11340, 'vn', 'plugin', 'Download Seo Panel Plugins', 'Tải về các Plugin của Seo Panel', '2014-01-10 09:10:14'),
(11341, 'vn', 'report', '2 Days', '2 ngày', '2014-01-10 09:22:04'),
(11342, 'vn', 'report', 'Email notification', 'Thông báo vào email', '2014-01-10 09:22:04'),
(11343, 'vn', 'report', 'keywordnumbercheckedcronnote', 'Chú ý: Mặc định 0 là coi như các từ khóa đều đã lựa chọn', '2014-01-10 09:22:04'),
(11344, 'vn', 'report', 'Next report generation time', 'Thời gian tạo báo cáo tiếp theo', '2014-01-10 09:22:04'),
(11345, 'vn', 'report', 'Reports generation interval', 'Khoảng thời gian tạo báo cáo', '2014-01-10 09:22:04'),
(11346, 'vn', 'report', 'reportsettingssaved', 'Cấu hình báo cáo đã được lưu thành công!', '2014-01-10 09:22:04'),
(11347, 'vn', 'report', 'sheduledsuccessfully', 'Lập lịch tạo báo cáo thành công!', '2014-01-10 09:22:04'),
(11348, 'vn', 'settings', 'allsettingssaved', 'Tất cả cấu hình được lưu thành công!', '2014-01-10 09:26:44'),
(11349, 'vn', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Bật HTTP Proxy Tunnel', '2014-01-10 09:26:44'),
(11350, 'vn', 'settings', 'entersmtpdetails', 'Hãy nhập vào cấu hình STMP của email', '2014-01-10 09:26:44'),
(11351, 'vn', 'settings', 'getallpluginfree', 'Nhận tất cả <b>plugins</b> chúng tôi phát triện <b>Miễn phí!<b>', '2014-01-10 09:26:44'),
(11352, 'vn', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Tắt Proxy khi Crawling thất bại', '2014-01-10 09:26:44'),
(11353, 'vn', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Đồng ý cho thành viên lập lịch báo cáo', '2014-01-10 09:26:44'),
(11354, 'vn', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Số từ khóa cần chọn mỗi lần thực hiện cron', '2014-01-10 09:26:44'),
(11355, 'vn', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'hu thập thông tin liên kết tương đối trong một trang', '2014-01-10 09:26:44'),
(11356, 'vn', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Bật thông báo báo cáo qua email', '2014-01-10 09:26:44'),
(11357, 'vn', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2014-01-10 09:26:44'),
(11358, 'vn', 'settings', 'SP_SMTP_MAIL', 'Bật SMTP', '2014-01-10 09:26:44'),
(11359, 'vn', 'settings', 'SP_SMTP_PASSWORD', 'Mật khẩu SMTP', '2014-01-10 09:26:44'),
(11360, 'vn', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2014-01-10 09:26:44'),
(11361, 'vn', 'settings', 'SP_SMTP_USERNAME', 'SMTP Username', '2014-01-10 09:26:44'),
(11362, 'vn', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Khoảng thời gian tạo báo cáo hệ thống', '2014-01-10 09:26:44'),
(11363, 'vn', 'reports', 'report_email_body_text1', 'Các báo cáo của bạn đã được tạo thành công. Hãy kiểm tra các báo cáo đính kèm.', '2014-01-10 09:28:10'),
(11364, 'vn', 'reports', 'report_email_body_text2', 'Nếu báo cáo trên là không rõ ràng, xin vui lòng [LOGIN_LINK] để xem các báo cáo trực tiếp từ tài khoản của bạn.', '2014-01-10 09:28:10'),
(11365, 'vn', 'reports', 'report_email_subject', 'Báo cáo SEO của bạn đã được tạo thành công', '2014-01-10 09:28:10'),
(11366, 'lt', 'common', 'Checked', 'Patikrinta', '2019-05-25 22:41:16'),
(11367, 'lt', 'common', 'Thank you', 'Ačiū', '2019-05-25 22:41:16'),
(11368, 'lt', 'label', 'Syntax', 'Sintaksė', '2014-01-12 16:42:59'),
(11369, 'lt', 'login', 'Forgot password?', 'Pamiršote slaptažodį?', '2014-01-12 16:47:43'),
(11370, 'lt', 'login', 'internal_error_mail_send', 'Vidinė klaida siunčiant elektroninį laišką', '2014-01-12 16:47:43'),
(11371, 'lt', 'login', 'password_reset_success_message', 'Slaptažodis pakeistas. Patvirtinimo laiškas išsiųstas į el.pašto dėžutę. <br>Patikrinkite savo el.pašto dėžutę.', '2014-01-12 16:47:43'),
(11372, 'lt', 'login', 'Request Password', 'Priminti slaptažodį', '2014-01-12 16:47:43'),
(11373, 'lt', 'login', 'to login to your account', 'prisijunkite', '2014-01-12 16:47:43'),
(11374, 'lt', 'login', 'user_email_not_exist', 'Tokio el.pašto adreso nėra!', '2014-01-12 16:47:43');
INSERT INTO `texts` VALUES
(11375, 'lt', 'login', 'Your account password is resetted and new password is', 'Slaptažodis anuliuotas, naujas slaptažodis ', '2014-01-12 16:47:43'),
(11376, 'lt', 'login', 'Your Password Reset Failed', 'Nepavyko pakeisti slaptažodžio', '2014-01-12 16:47:43'),
(11377, 'lt', 'login', 'Your Password Reset Successfully', 'Slaptažodis pakeistas sėkmingai', '2014-01-12 16:47:43'),
(11378, 'lt', 'panel', 'Existing', 'Egzistuojantis', '2014-01-12 16:51:46'),
(11379, 'lt', 'panel', 'Import Proxy', 'Importuoti proxy', '2014-01-12 16:51:46'),
(11380, 'lt', 'panel', 'Proxy Settings', 'Proxy nustatumai', '2014-01-12 16:51:46'),
(11381, 'lt', 'panel', 'Valid', 'Tinkamas', '2014-01-12 16:51:46'),
(11382, 'lt', 'proxy', 'enterproxynote', 'Įveskite proxy, po vieną į eilutę', '2014-01-12 16:53:26'),
(11383, 'lt', 'proxy', 'proxysyntax', 'Proxy hostname, portas, username, password', '2014-01-12 16:53:26'),
(11384, 'fr', 'common', 'Checked', 'Vérifié', '2020-02-14 16:05:11'),
(11385, 'fr', 'common', 'Thank you', 'Merci', '2020-02-14 16:05:11'),
(11386, 'fr', 'label', 'Syntax', 'Syntaxe', '2020-02-14 16:12:40'),
(11387, 'fr', 'login', 'Forgot password?', 'Mot de passe oublié ?', '2019-03-28 16:14:28'),
(11388, 'fr', 'login', 'internal_error_mail_send', 'Une erreur est survenue à l''envoi du message de récupération de mot de passe!', '2019-03-28 16:14:28'),
(11389, 'fr', 'login', 'password_reset_success_message', 'Votre mot de passe a été réinitialisé. Un message de confirmation vous a été envoyé. <br>Vérifiez votre boite mail pour obtenir votre nouveau mot de passe.', '2019-03-28 16:14:28'),
(11390, 'fr', 'login', 'Request Password', 'Demander un nouveau mot de passe', '2019-03-28 16:14:28'),
(11391, 'fr', 'login', 'to login to your account', 'pour vous connecter à votre compte', '2019-03-28 16:14:28'),
(11392, 'fr', 'login', 'user_email_not_exist', 'L''adresse mail ne correspond à aucun utilisateur enregistré.', '2019-03-28 16:14:28'),
(11393, 'fr', 'login', 'Your account password is resetted and new password is', 'Le mot de passe de votre compte a été modifié. Le nouveau mot de passe est ', '2019-03-28 16:14:28'),
(11394, 'fr', 'login', 'Your Password Reset Failed', 'La réinitialisation de votre mot de passe n''a pas pu être effectuée.', '2019-03-28 16:14:28'),
(11395, 'fr', 'login', 'Your Password Reset Successfully', 'Votre mot de passe a bien été réinitialisé.', '2019-03-28 16:14:28'),
(11396, 'fr', 'panel', 'Existing', 'Existant', '2020-02-14 16:14:52'),
(11397, 'fr', 'panel', 'Import Proxy', 'Proxy Import', '2020-02-14 16:14:52'),
(11398, 'fr', 'panel', 'Proxy Settings', 'Paramètres Proxy', '2020-02-14 16:14:52'),
(11399, 'fr', 'panel', 'Valid', 'Correct', '2020-02-14 16:14:52'),
(11400, 'fr', 'proxy', 'enterproxynote', 'Indiquer un proxy par ligne en utilisant le format suivant', '2016-12-09 23:07:31'),
(11401, 'fr', 'proxy', 'proxysyntax', 'Adresse ou nom d''hôte du proxy, Port à utiliser, Nom d''utilisateur, Mot de passe', '2016-12-09 23:07:31'),
(11402, 'fr', 'settings', 'allsettingssaved', 'Tous les paramètres ont été sauvegardés!', '2019-03-28 18:39:30'),
(11403, 'fr', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Activer le proxy HTTP', '2019-03-28 18:39:30'),
(11404, 'fr', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Désactiver le proxy lorsque l''exploration échoue', '2019-03-28 18:39:30'),
(11405, 'fr', 'settings', 'SP_SMTP_PORT', 'Port SMTP', '2019-03-28 18:39:30'),
(11406, 'en', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another Proxy When Crawling Failed', '2018-01-23 00:59:29'),
(31556, 'ca', 'siteauditor', 'Site Auditor Settings', 'Auditor del lloc Configuració', '2025-11-21 01:03:34'),
(31515, 'ca', 'siteauditor', 'Check broken links in a page', 'Check broken links in a page', '2025-11-21 01:03:34'),
(31444, 'ca', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2025-11-21 01:03:34'),
(31440, 'ca', 'seotools', 'Website Search Reports', 'Lloc web Cercar Informes', '2025-11-21 01:03:34'),
(31441, 'ca', 'seotools', 'Website Search Summary', 'Lloc web Cercar Summary', '2025-11-21 01:03:34'),
(31442, 'ca', 'settings', 'allsettingssaved', 'Tot Configuració Desat Correctament!', '2025-11-21 01:03:34'),
(31436, 'ca', 'seotools', 'User Access', 'Usuari Access', '2025-11-21 01:03:34'),
(31435, 'ca', 'seotools', 'Submission Reports', 'Enviament Informes', '2025-11-21 01:03:34'),
(31429, 'ca', 'seotools', 'Sitemap Reports Summary', 'Mapa del lloc Informes Summary', '2025-11-21 01:03:34'),
(31430, 'ca', 'seotools', 'sitemap-generator', 'Mapa del lloc Generator', '2025-11-21 01:03:34'),
(31428, 'ca', 'seotools', 'site-auditor', 'Auditor del lloc', '2025-11-21 01:03:34'),
(31427, 'ca', 'seotools', 'saturation-checker', 'Saturació del motor de cerca', '2025-11-21 01:03:34'),
(31414, 'ca', 'seotools', 'PageSpeed Reports', 'PageSpeed Informes', '2025-11-21 01:03:34'),
(31410, 'ca', 'seotools', 'keyword-position-checker', 'Verificador de posició de paraules clau', '2025-11-21 01:03:34'),
(31403, 'ca', 'seotools', 'Google Sitemap Generator', 'Google Mapa del lloc Generator', '2025-11-21 01:03:34'),
(31402, 'ca', 'seotools', 'Generate Saturation Reports', 'Generar Saturació Informes', '2025-11-21 01:03:34'),
(31371, 'ca', 'reports', 'report_email_body_text1', 'Your Informes generated Correctament in seo panel. Please check the attached Informes.', '2025-11-21 01:03:34'),
(31368, 'ca', 'report', 'Reports generation interval', 'Informes generation interval', '2025-11-21 01:03:34'),
(31361, 'ca', 'register', 'user_confirm_content_1', 'Internal Error occured while processing confirm request', '2025-11-21 01:03:34'),
(31160, 'ca', 'label', 'Followers', 'Followers', '2025-11-21 01:03:34'),
(31161, 'ca', 'label', 'Free', 'Free', '2025-11-21 01:03:34'),
(31162, 'ca', 'label', 'From', 'De', '2025-11-21 01:03:34'),
(31163, 'ca', 'label', 'Hour', 'Hour', '2025-11-21 01:03:34'),
(31164, 'ca', 'label', 'Impressions', 'Impressions', '2025-11-21 01:03:34'),
(31165, 'ca', 'label', 'Include', 'Include', '2025-11-21 01:03:34'),
(31166, 'ca', 'label', 'Installation', 'Installation', '2025-11-21 01:03:34'),
(31167, 'ca', 'label', 'Just Now', 'Just Now', '2025-11-21 01:03:34'),
(31168, 'ca', 'label', 'Keywords', 'Paraules clau', '2025-11-21 01:03:34'),
(31169, 'ca', 'label', 'Likes', 'Likes', '2025-11-21 01:03:34'),
(31170, 'ca', 'label', 'Minute', 'Minute', '2025-11-21 01:03:34'),
(31171, 'ca', 'label', 'Mobile', 'Mobile', '2025-11-21 01:03:34'),
(31172, 'ca', 'label', 'Month', 'Month', '2025-11-21 01:03:34'),
(31173, 'ca', 'label', 'Monthly', 'Monthly', '2025-11-21 01:03:34'),
(31174, 'ca', 'label', 'Months', 'Months', '2025-11-21 01:03:34'),
(31175, 'ca', 'label', 'noactiveplugins', 'No Actiu Complements SEO Found!', '2025-11-21 01:03:34'),
(31176, 'ca', 'label', 'Order By', 'Order By', '2025-11-21 01:03:34'),
(31177, 'ca', 'label', 'Overview', 'Resum', '2025-11-21 01:03:34'),
(31178, 'ca', 'label', 'Plugin', 'Complement', '2025-11-21 01:03:34'),
(31179, 'ca', 'label', 'Port', 'Port', '2025-11-21 01:03:34'),
(31180, 'ca', 'label', 'Project', 'Project', '2025-11-21 01:03:34'),
(31181, 'ca', 'label', 'Proxy', 'Proxy', '2025-11-21 01:03:34'),
(31182, 'ca', 'label', 'Rating', 'Rating', '2025-11-21 01:03:34'),
(31183, 'ca', 'label', 'Re-install', 'Re-install', '2025-11-21 01:03:34'),
(31184, 'ca', 'label', 'Read', 'Read', '2025-11-21 01:03:34'),
(31185, 'ca', 'label', 'Recent Activity', 'Recent Activity', '2025-11-21 01:03:34'),
(31186, 'ca', 'label', 'Reference', 'Reference', '2025-11-21 01:03:34'),
(31187, 'ca', 'label', 'Referer', 'Referer', '2025-11-21 01:03:34'),
(31188, 'ca', 'label', 'Report Type', 'Tipus d''informe', '2025-11-21 01:03:34'),
(31189, 'ca', 'label', 'Reviews', 'Ressenyes', '2025-11-21 01:03:34'),
(31190, 'ca', 'label', 'Score', 'Puntuació', '2025-11-21 01:03:34'),
(31191, 'ca', 'label', 'Second', 'Second', '2025-11-21 01:03:34'),
(31192, 'ca', 'label', 'Select All', 'Seleccionar Tot', '2025-11-21 01:03:34'),
(31193, 'ca', 'label', 'Speed', 'Speed', '2025-11-21 01:03:34'),
(31194, 'ca', 'label', 'Sponsors', 'Sponsors', '2025-11-21 01:03:34'),
(31195, 'ca', 'label', 'Subject', 'Subject', '2025-11-21 01:03:34'),
(31196, 'ca', 'label', 'Success', 'Èxit', '2025-11-21 01:03:34'),
(31197, 'ca', 'label', 'Syntax', 'Syntax', '2025-11-21 01:03:34'),
(31198, 'ca', 'label', 'Theme', 'Theme', '2025-11-21 01:03:34'),
(31199, 'ca', 'label', 'Title', 'Títol', '2025-11-21 01:03:34'),
(31200, 'ca', 'label', 'Total Results', 'Resultats totals', '2025-11-21 01:03:34'),
(31201, 'ca', 'label', 'translation by', 'translation by', '2025-11-21 01:03:34'),
(31202, 'ca', 'label', 'Translators', 'Translators', '2025-11-21 01:03:34'),
(31203, 'ca', 'label', 'Type', 'Tipus', '2025-11-21 01:03:34'),
(31204, 'ca', 'label', 'Updated', 'Actualitzat', '2025-11-21 01:03:34'),
(31205, 'ca', 'label', 'Upgrade', 'Upgrade', '2025-11-21 01:03:34'),
(31206, 'ca', 'label', 'Usability', 'Usability', '2025-11-21 01:03:34'),
(31207, 'ca', 'label', 'User agent', 'Usuari agent', '2025-11-21 01:03:34'),
(31208, 'ca', 'label', 'Version', 'Version', '2025-11-21 01:03:34'),
(31209, 'ca', 'label', 'View Reports', 'Veure Informes', '2025-11-21 01:03:34'),
(31210, 'ca', 'label', 'wantproceed', 'Do you really want to Continuar?', '2025-11-21 01:03:34'),
(31211, 'ca', 'label', 'Week', 'Week', '2025-11-21 01:03:34'),
(31212, 'ca', 'label', 'Weekly', 'Weekly', '2025-11-21 01:03:34'),
(31213, 'ca', 'label', 'Write', 'Write', '2025-11-21 01:03:34'),
(31214, 'ca', 'label', 'Year', 'Year', '2025-11-21 01:03:34'),
(31215, 'ca', 'log', 'Clear All Logs', 'Clear Tot Logs', '2025-11-21 01:03:34'),
(31216, 'ca', 'log', 'Crawl Log Details', 'Indexació Log Detalls', '2025-11-21 01:03:34'),
(31217, 'ca', 'log', 'Mail Log Details', 'Mail Log Detalls', '2025-11-21 01:03:34'),
(31218, 'ca', 'log', 'Post Fields', 'Entrada Fields', '2025-11-21 01:03:34'),
(31219, 'ca', 'login', 'Confirm Password', 'Confirmar contrasenya', '2025-11-21 01:03:34'),
(31220, 'ca', 'login', 'Create my account', 'Crear El meu compte', '2025-11-21 01:03:34'),
(31221, 'ca', 'login', 'Create New Account', 'Crear Nou Compte', '2025-11-21 01:03:34'),
(31222, 'ca', 'login', 'Email', 'Correu electrònic', '2025-11-21 01:03:34'),
(31223, 'ca', 'login', 'Email placeholder', 'your@Correu electrònic.com', '2025-11-21 01:03:34'),
(31224, 'ca', 'login', 'emailexist', 'Correu electrònic already exist!', '2025-11-21 01:03:34'),
(31225, 'ca', 'login', 'Enter the code', 'Introduïu el codi', '2025-11-21 01:03:34'),
(31226, 'ca', 'login', 'Enter the code as it is shown', 'Introduïu el codi tal com es mostra', '2025-11-21 01:03:34'),
(31227, 'ca', 'login', 'First Name', 'Nom', '2025-11-21 01:03:34'),
(31228, 'ca', 'login', 'Forgot password?', 'Contrasenya oblidada?', '2025-11-21 01:03:34'),
(31159, 'ca', 'label', 'Feature', 'Feature', '2025-11-21 01:03:34'),
(31158, 'ca', 'label', 'Fail', 'Fail', '2025-11-21 01:03:34'),
(11433, 'ru', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Проверьте с другого прокси при неудачном сканировании', '2024-07-17 15:22:42'),
(11434, 'pl', 'common', 'Checked', 'Zaznaczony', '2019-05-25 22:43:11'),
(11435, 'pl', 'common', 'Powered by', 'Zasilne przez', '2019-05-25 22:43:11'),
(11436, 'pl', 'common', 'Thank you', 'Dziękujemy', '2019-05-25 22:43:11'),
(11437, 'pl', 'directory', 'clickaddfeatureddirectory', 'Kliknij tutaj aby dodać własny katalog', '2014-01-17 23:50:38'),
(11438, 'pl', 'directory', 'Coupon Code', 'Kod Kuponu', '2014-01-17 23:50:38'),
(11439, 'pl', 'directory', 'Coupon Offer', 'Oferta Kuponu', '2014-01-17 23:50:38'),
(11440, 'pl', 'directory', 'couponcodenote', 'Użyj powyższego kodu kuponu aby dostać [REDUCTION_PER] ofertę za każdy użyty submit.', '2014-01-17 23:50:38'),
(11441, 'pl', 'directory', 'Directories with out Reciprocal Link', 'Katalogi bez linków wzajemnych.', '2014-01-17 23:50:38'),
(11442, 'pl', 'directory', 'Reciprocal Link', 'Link wzajemny', '2014-01-17 23:50:38'),
(11443, 'pl', 'keyword', 'Insert keywords separated with comma', 'Wpisz słowa kluczowe oddzielone przecinkiem', '2014-01-17 23:54:55'),
(11444, 'pl', 'label', 'Brocken', 'Niepoprawne', '2014-05-12 00:04:08'),
(11445, 'pl', 'label', 'Clear All', 'Wyczyść wszystko', '2014-05-12 00:04:08'),
(11446, 'pl', 'label', 'Comments', 'Komentarze', '2014-05-12 00:04:08'),
(11447, 'pl', 'label', 'Count', 'Ilość', '2014-05-12 00:04:08'),
(11448, 'pl', 'label', 'Current', 'Bieżący', '2014-05-12 00:04:08'),
(11449, 'pl', 'label', 'Daily', 'Dziennie', '2014-05-12 00:04:08'),
(11450, 'pl', 'label', 'Exclude', 'Wyklucz', '2014-05-12 00:04:08'),
(11451, 'pl', 'label', 'Include', 'Dołącz', '2014-05-12 00:04:08'),
(11452, 'pl', 'label', 'Monthly', 'Miesięcznie', '2014-05-12 00:04:08'),
(11453, 'pl', 'label', 'Project', 'Projekt', '2014-05-12 00:04:08'),
(11454, 'pl', 'label', 'Report Type', 'Typ Raportu', '2014-05-12 00:04:08'),
(11455, 'pl', 'label', 'Score', 'Wynik', '2014-05-12 00:04:08'),
(11456, 'pl', 'label', 'Select All', 'Zaznacz wszystko', '2014-05-12 00:04:08'),
(11457, 'pl', 'label', 'Syntax', 'Składnia', '2014-05-12 00:04:08'),
(11458, 'pl', 'label', 'Theme', 'Temat', '2014-05-12 00:04:08'),
(11459, 'pl', 'label', 'Total Results', 'Wynik Całkowity', '2014-05-12 00:04:08'),
(11460, 'pl', 'label', 'Updated', 'Updatowane', '2014-05-12 00:04:08'),
(11461, 'pl', 'label', 'View Reports', 'Zobacz Raporty', '2014-05-12 00:04:08'),
(11462, 'pl', 'label', 'Weekly', 'Tygodniowo', '2014-05-12 00:04:08'),
(11463, 'pl', 'login', 'Forgot password?', 'Zapomniałeś hasło?', '2014-01-18 00:04:15'),
(11464, 'pl', 'login', 'internal_error_mail_send', 'Wystąpił błąd wewnętrzny podczas wysyłania emaila z resetem hasła!', '2014-01-18 00:04:15'),
(11465, 'pl', 'login', 'password_reset_success_message', 'Twoje hasło zostało zresetowane poprawnie. Email potwierdzający został wysłany. <br>Proszę sprawdzić skrzynkę odbiorczą i odczytać Twoje nowe hasło.', '2014-01-18 00:04:15'),
(11466, 'pl', 'login', 'Request Password', 'Odzyskaj Hasło', '2014-01-18 00:04:15'),
(11467, 'pl', 'login', 'to login to your account', 'Zaloguj się do twojego konta', '2014-01-18 00:04:15'),
(11468, 'pl', 'login', 'user_email_not_exist', 'Ten adres email nie istnieje w systemie!', '2014-01-18 00:04:15'),
(11469, 'pl', 'login', 'Your account password is resetted and new password is', 'Hasło do twojego konta zostało zresetowane, nowym hasłem jest ', '2014-01-18 00:04:15'),
(11470, 'pl', 'login', 'Your Password Reset Failed', 'Reset twojego hasła nie powiódł się', '2014-01-18 00:04:15'),
(11471, 'pl', 'login', 'Your Password Reset Successfully', 'Twoje hasło zostało poprawnie zresetowane', '2014-01-18 00:04:15'),
(11472, 'pl', 'panel', 'Archived Reports', 'Raporty Archiwalne', '2014-05-11 23:55:16'),
(11473, 'pl', 'panel', 'Edit Project', 'Edytuj Projekt', '2014-05-11 23:55:16'),
(11474, 'pl', 'panel', 'Existing', 'Istniejące', '2014-05-11 23:55:16'),
(11475, 'pl', 'panel', 'Import Proxy', 'Import Proxy', '2014-05-11 23:55:16'),
(11476, 'pl', 'panel', 'New Project', 'Nowy Projekt', '2014-05-11 23:55:16'),
(11477, 'pl', 'panel', 'Proxy Settings', 'Ustawienia Proxy', '2014-05-11 23:55:16'),
(11478, 'pl', 'panel', 'Report Settings', 'Ustawienia Raportów', '2014-05-11 23:55:16'),
(11479, 'pl', 'panel', 'Schedule Reports', 'Planowanie Raportów', '2014-05-11 23:55:16'),
(11480, 'pl', 'panel', 'Search Engine Manager', 'Zarządzanie Wyszukiwarkami', '2014-05-11 23:55:16'),
(11481, 'pl', 'panel', 'Themes Manager', 'Manager tematów', '2014-05-11 23:55:16'),
(11482, 'pl', 'panel', 'Valid', 'Poprawne', '2014-05-11 23:55:16'),
(11483, 'pl', 'plugin', 'Download Seo Panel Plugins', 'Ściągnij pluginy Seo Panel', '2014-01-18 00:06:52'),
(11484, 'pl', 'proxy', 'enterproxynote', 'Wpisz Proxy, jedno proxy na linię w formacie.', '2014-05-11 23:50:59'),
(11485, 'pl', 'proxy', 'proxysyntax', 'Proxy Host, Proxy Port, Proxy Użytkownik, Proxy Hasło', '2014-05-11 23:50:59'),
(11486, 'pl', 'report', '2 Days', '2 Dni', '2014-01-18 00:10:43'),
(11487, 'pl', 'report', 'Email notification', 'Powiadomienia email', '2014-01-18 00:10:43'),
(11488, 'pl', 'report', 'keywordnumbercheckedcronnote', 'Uwaga: Domyślne 0 oznacza że wszystkie słowa kluczowe będą sprawdzone', '2014-01-18 00:10:43'),
(11489, 'pl', 'report', 'Next report generation time', 'Następny raport będzie wygenerowany', '2014-01-18 00:10:43'),
(11490, 'pl', 'report', 'Reports generation interval', 'Częstotliwość generowania raportów', '2014-01-18 00:10:43'),
(11491, 'pl', 'report', 'reportsettingssaved', 'Ustawienia raportów zostały zapisane!', '2014-01-18 00:10:43'),
(11492, 'pl', 'report', 'sheduledsuccessfully', 'Zaplanowany raport został wygenerowany poprawnie!', '2014-01-18 00:10:43'),
(11493, 'pl', 'reports', 'report_email_body_text1', 'Twoje raporty zostały wygenerowane w Seo Panel. Proszę sprawdzić dołączone raporty.', '2014-01-18 00:12:57'),
(11494, 'pl', 'reports', 'report_email_body_text2', 'Jeżeli powyższe raporty nie są czytelne, Proszę [LOGIN_LINK] aby zobaczyć raporty na swoim koncie.', '2014-01-18 00:12:57'),
(11495, 'pl', 'reports', 'report_email_subject', 'Twoje raporty SEO zostały wygenerowane poprawnie', '2014-01-18 00:12:57'),
(11496, 'pl', 'searchengine', 'max_results', 'Maksymalna ilość rezultatów', '2014-01-18 00:13:54'),
(11497, 'pl', 'searchengine', 'no_of_results_page', 'Ilość rezultatów na stronę', '2014-01-18 00:13:54'),
(11498, 'pl', 'seotools', 'Auditor Projects', 'Projekty audytora', '2014-01-18 00:15:54'),
(11499, 'pl', 'seotools', 'Auditor Reports', 'Raporty audytora', '2014-01-18 00:15:54'),
(11500, 'pl', 'seotools', 'Auditor Settings', 'Ustawienia audytora', '2014-01-18 00:15:54'),
(11501, 'pl', 'seotools', 'Import Project Links', 'Importowanie linków projektu', '2014-01-18 00:15:54'),
(11502, 'pl', 'seotools', 'site-auditor', 'Audytor strony', '2014-01-18 00:15:54'),
(11503, 'pl', 'settings', 'allsettingssaved', 'Wszystkei ustawienia zostały zapisane poprawnie!', '2014-05-11 23:49:58'),
(11504, 'pl', 'settings', 'Check for Updates', 'Sprawdź uaktualnienia', '2014-05-11 23:49:58'),
(11505, 'pl', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Sprawdź używając innego Proxy jeżeli nie udaje się skanować', '2014-05-11 23:49:58'),
(11506, 'pl', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Włącz Tunel Proxy HTTP', '2014-05-11 23:49:58'),
(11507, 'pl', 'settings', 'entersmtpdetails', 'Proszę uzupełnik konfigurację SMTP', '2014-05-11 23:49:58'),
(11508, 'pl', 'settings', 'getallpluginfree', 'Ściągnij wzystkie <b>pluginy</b> stworzone przez nas <b>za darmo</b>', '2014-05-11 23:49:58'),
(11509, 'pl', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Wyłąćż Proxy jeżeli nie udaje się skanować', '2014-05-11 23:49:58'),
(11510, 'pl', 'settings', 'SA_CRAWL_DELAY_TIME', 'Opoźnienie czasowe skanowania pomiędzy stronami', '2014-05-11 23:49:58'),
(11511, 'pl', 'settings', 'SA_MAX_NO_PAGES', 'Maksymalna ilość dozwolonych stron na serwis', '2014-05-11 23:49:58'),
(11512, 'pl', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Pozwól użytkownikom zaplanować raport', '2014-05-11 23:49:58'),
(11513, 'pl', 'settings', 'SP_API_KEY', 'Klucz API Seo Panel', '2014-05-11 23:49:58'),
(11514, 'pl', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Ilość słów kluczowych sprwadzanych podczas pojedynczego uruchomienia CRONa', '2014-05-11 23:49:58'),
(11515, 'pl', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Skanuj linki relatywne na stronie', '2014-05-11 23:49:58'),
(11516, 'pl', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Włącz powiadomienia email o raportach', '2014-05-11 23:49:58'),
(11517, 'pl', 'settings', 'SP_SMTP_HOST', 'Host SMTP', '2014-05-11 23:49:58'),
(11518, 'pl', 'settings', 'SP_SMTP_MAIL', 'Włącz SMTP', '2014-05-11 23:49:58'),
(11519, 'pl', 'settings', 'SP_SMTP_PASSWORD', 'Hasło SMTP', '2014-05-11 23:49:58'),
(11520, 'pl', 'settings', 'SP_SMTP_PORT', 'Port SMTP', '2014-05-11 23:49:58'),
(11521, 'pl', 'settings', 'SP_SMTP_USERNAME', 'Użytkownik SMTP', '2014-05-11 23:49:58'),
(11522, 'pl', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Odstęp pomiędzy generowaniem raportów', '2014-05-11 23:49:58'),
(11523, 'pl', 'settings', 'versionnotuptodatemsg', 'Twój Seo Panel nie jest najnowszy. <br> Proszę ściągnąć nową wersję.', '2014-05-11 23:49:58'),
(11524, 'pl', 'settings', 'Your Seo Panel installation is up to date', 'Twój Seo Panel to najnowsza wersja', '2014-05-11 23:49:58'),
(11525, 'pl', 'siteauditor', 'Anchor', 'Kotwica', '2014-01-18 00:43:17'),
(11526, 'pl', 'siteauditor', 'anylinkcontainabovelinks', 'Każdy link zawierający powyższe linki nie będzie uwzględniowy w raportach', '2014-01-18 00:43:17'),
(11527, 'pl', 'siteauditor', 'anylinkcontainexcludesitemap', 'Każdy link zawierający powyższe linki nie będzie włączony do sitemap', '2014-01-18 00:43:17'),
(11528, 'pl', 'siteauditor', 'Check backlinks of pages', 'Sprawdź linki zwrotne do stron', '2014-01-18 00:43:17'),
(11529, 'pl', 'siteauditor', 'Check broken links in a page', 'Sprawdź nieprawidłowe linki w tej stronie', '2014-01-18 00:43:17'),
(11530, 'pl', 'siteauditor', 'Check google pagerank of pages', 'Sprawdź google pagerank', '2014-01-18 00:43:17'),
(11531, 'pl', 'siteauditor', 'Check pages indexed or not', 'Sprawdź czy strony są zaindeksowane', '2014-01-18 00:43:17'),
(11532, 'pl', 'siteauditor', 'Check Score', 'Sprawdź punkty', '2014-01-18 00:43:17'),
(11533, 'pl', 'siteauditor', 'checkborckenlinkwait', 'Sprawdznia nieprawidłowych linków wydłuży czas wykonywania projektu', '2014-01-18 00:43:17'),
(11534, 'pl', 'siteauditor', 'Completed project execution', 'Zakończono wykonywanie projektu', '2014-01-18 00:43:17'),
(11535, 'pl', 'siteauditor', 'Crawled', 'Zeskanowano', '2014-01-18 00:43:17'),
(11536, 'pl', 'siteauditor', 'Crawled Pages', 'Zeskanowane strony', '2014-01-18 00:43:17'),
(11537, 'pl', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'Skanowanie zakończone poprawnie! Czekanie na skanowanie kolejnej strony', '2014-01-18 00:43:17'),
(11538, 'pl', 'siteauditor', 'Crawling Page', 'Skanowanie strony', '2014-01-18 00:43:17'),
(11539, 'pl', 'siteauditor', 'Duplicate Description', 'Duplikat meta Description', '2014-01-18 00:43:17'),
(11540, 'pl', 'siteauditor', 'Duplicate Keywords', 'Duplikat meta Keywords', '2014-01-18 00:43:17'),
(11541, 'pl', 'siteauditor', 'Duplicate Title', 'Duplikat tagu Title', '2014-01-18 00:43:17'),
(11542, 'pl', 'siteauditor', 'Exclude links', 'Wyklucz linki', '2014-01-18 00:43:17'),
(11543, 'pl', 'siteauditor', 'Execute with cron', 'Wyklucz z CRON', '2014-01-18 00:43:17'),
(11544, 'pl', 'siteauditor', 'External', 'Zewnętrzne', '2014-01-18 00:43:17'),
(11545, 'pl', 'siteauditor', 'External Links', 'Zewnętrzne linki', '2014-01-18 00:43:17'),
(11546, 'pl', 'siteauditor', 'Import Project Links', 'Import Linków Projektu', '2014-01-18 00:43:17'),
(11547, 'pl', 'siteauditor', 'Insert links separated with comma', 'Wprowadź linki oddzielone przecinkami', '2014-01-18 00:43:17'),
(11548, 'pl', 'siteauditor', 'insertlinkssepcoma', 'Wprowadź linki oddzielone przecinkami aby wykluczyć je z raportów', '2014-01-18 00:43:17'),
(11549, 'pl', 'siteauditor', 'Link Reports', 'Raporty o linkach', '2014-01-18 00:43:17'),
(11550, 'pl', 'siteauditor', 'Link Title', 'Title linków', '2014-01-18 00:43:17'),
(11551, 'pl', 'siteauditor', 'Maximum number of pages to be checked', 'Maksymalna ilość stron do sprawdzenia', '2014-01-18 00:43:17'),
(11552, 'pl', 'siteauditor', 'Maximum Pages', 'Maksymalna ilość stron', '2014-01-18 00:43:17'),
(11553, 'pl', 'siteauditor', 'No active projects found', 'Nie znaleziono aktywnych projektów', '2014-01-18 00:43:17'),
(11554, 'pl', 'siteauditor', 'Nofollow', 'Nofollow', '2014-01-18 00:43:17'),
(11555, 'pl', 'siteauditor', 'Number of pages is greater than', 'Ilość stron jest większa niż', '2014-01-18 00:43:17'),
(11556, 'pl', 'siteauditor', 'Number of pages should be greater than', 'Ilość stron powinna być większa niż', '2014-01-18 00:43:17'),
(11557, 'pl', 'siteauditor', 'Page Details', 'Własciwości strony', '2014-01-18 00:43:17'),
(11558, 'pl', 'siteauditor', 'Page Link', 'Linka do strony', '2014-01-18 00:43:17'),
(11559, 'pl', 'siteauditor', 'Page Links', 'Linki do strony', '2014-01-18 00:43:17'),
(11560, 'pl', 'siteauditor', 'Pages Found', 'Ilość znalezionych stron', '2014-01-18 00:43:17'),
(11561, 'pl', 'siteauditor', 'pressescapetostopexecution', 'Wciśnij <b>escape</b> aby przerwać wykonywanie skryptu', '2014-01-18 00:43:17'),
(11562, 'pl', 'siteauditor', 'Project Summary', 'Podsumowanie Projektu', '2014-01-18 00:43:17'),
(11563, 'pl', 'siteauditor', 'Project Url', 'URL projektu', '2014-01-18 00:43:17'),
(11564, 'pl', 'siteauditor', 'projectalreadyexist', 'Projekt dla tej witryny już istnieje', '2014-01-18 00:43:17'),
(11565, 'pl', 'siteauditor', 'Recheck Pages', 'Sprawdź ponownie strony', '2014-01-18 00:43:17'),
(11566, 'pl', 'siteauditor', 'Report Summary', 'Podsumowanie raportu', '2014-01-18 00:43:17'),
(11567, 'pl', 'siteauditor', 'Run Project', 'Uruchom projekt', '2014-01-18 00:43:17'),
(11568, 'pl', 'siteauditor', 'should start with', 'Powinno się zaczynać od', '2014-01-18 00:43:17'),
(11569, 'pl', 'siteauditor', 'Site Auditor Settings', 'Ustawienia audytora strony', '2014-01-18 00:43:17'),
(11570, 'pl', 'siteauditor', 'Store all links found in a page', 'Zapisz wszystkie linki znalezione na stronie', '2014-01-18 00:43:17'),
(11571, 'pl', 'siteauditor', 'The page description length is not between', 'Dlugość Description nie jest pomiedzy', '2014-01-18 00:43:17'),
(11572, 'pl', 'siteauditor', 'The page is brocken', 'Błąd na stronie', '2014-01-18 00:43:17'),
(11573, 'pl', 'siteauditor', 'The page is having exellent number of backlinks in', 'Strona ma wspaniałą ilość linków zwrotnych', '2014-01-18 00:43:17'),
(11574, 'pl', 'siteauditor', 'The page is having exellent pagerank', 'Strona ma wspaniały page rank', '2014-01-18 00:43:17'),
(11575, 'pl', 'siteauditor', 'The page is having good number of backlinks in', 'Strona ma dobrą ilość linków zwrotnych', '2014-01-18 00:43:17'),
(11576, 'pl', 'siteauditor', 'The page is having good pagerank', 'Strona ma dobry page rank', '2014-01-18 00:43:17'),
(11577, 'pl', 'siteauditor', 'The page is having poor pagerank', 'Strona ma słaby page rank', '2014-01-18 00:43:17'),
(11578, 'pl', 'siteauditor', 'The page is having very good pagerank', 'Strona ma bardzo dobry page rank', '2014-01-18 00:43:17'),
(11579, 'pl', 'siteauditor', 'The page is not having backlinks in', 'Strona nie ma linków zwrotnych w', '2014-01-18 00:43:17'),
(11580, 'pl', 'siteauditor', 'The page is not indexed in', 'Strona nie jest zaindeksowana w', '2014-01-18 00:43:17'),
(11581, 'pl', 'siteauditor', 'The page keywords length is not between', 'Długość Keywords nie jest pomiędzy', '2014-01-18 00:43:17'),
(11582, 'pl', 'siteauditor', 'The page title length is not between', 'Długość Title nie jest pomiędzy', '2014-01-18 00:43:17'),
(11583, 'pl', 'siteauditor', 'The total number of links in page is greater than', 'Całkowita ilość linków na stronie jest większa niż', '2014-01-18 00:43:17'),
(11584, 'pl', 'siteauditor', 'to run project again if you stopped execution', 'aby uruchomic projekt ponownie', '2014-01-18 00:43:17'),
(11585, 'pl', 'siteauditor', 'to view the reports', 'aby zobaczyc raporty', '2014-01-18 00:43:17'),
(11586, 'pl', 'siteauditor', 'Total Links', 'Całkowita Ilość linków', '2014-01-18 00:43:17'),
(11587, 'pl', 'siteauditor', 'totallinksgreaterallowed', 'Całkowita Ilość linków będzie większa niż zezwala na to projekt', '2014-01-18 00:43:17'),
(11588, 'pl', 'theme', 'Download Seo Panel Themes', 'Ściągnij Tematy do Seo Panel', '2014-01-18 00:44:04'),
(11589, 'da', 'common', 'Checked', 'Tjek', '2019-05-25 22:04:54'),
(11590, 'da', 'common', 'Thank you', 'Mange tak', '2019-05-25 22:04:54'),
(11591, 'da', 'label', 'Brocken', 'I stykker', '2014-01-18 00:52:14'),
(11592, 'da', 'label', 'Clear All', 'Ryd alle', '2014-01-18 00:52:14'),
(11593, 'da', 'label', 'Comments', 'Kommentarer', '2014-01-18 00:52:14'),
(11594, 'da', 'label', 'Count', 'Antal', '2014-01-18 00:52:14'),
(11595, 'da', 'label', 'Current', 'Aktuel', '2014-01-18 00:52:14'),
(11596, 'da', 'label', 'Daily', 'Daglig', '2014-01-18 00:52:14'),
(11597, 'da', 'label', 'Exclude', 'Ekskluder', '2014-01-18 00:52:14'),
(11598, 'da', 'label', 'Include', 'Inkluder', '2014-01-18 00:52:14'),
(11599, 'da', 'label', 'Monthly', 'Månedlig', '2014-01-18 00:52:14'),
(11600, 'da', 'label', 'Project', 'Projekt', '2014-01-18 00:52:14'),
(11601, 'da', 'label', 'Report Type', 'Rapport type', '2014-01-18 00:52:14'),
(11602, 'da', 'label', 'Score', 'Score', '2014-01-18 00:52:14'),
(11603, 'da', 'label', 'Select All', 'Vælg alle', '2014-01-18 00:52:14'),
(11604, 'da', 'label', 'Syntax', 'Syntaks', '2014-01-18 00:52:14'),
(11605, 'da', 'label', 'Theme', 'Tema', '2014-01-18 00:52:14'),
(11606, 'da', 'label', 'Total Results', 'Samlede resultater', '2014-01-18 00:52:14'),
(11607, 'da', 'label', 'Updated', 'Opdateret', '2014-01-18 00:52:14'),
(11608, 'da', 'label', 'View Reports', 'Se rapporter', '2014-01-18 00:52:14'),
(11609, 'da', 'label', 'Weekly', 'Ugentlig', '2014-01-18 00:52:14'),
(11610, 'pl', 'home', 'Indexed', 'Zaindeksowane', '2014-01-18 00:53:11'),
(11611, 'de', 'common', 'Checked', 'Markiert', '2021-06-15 01:46:19'),
(11612, 'de', 'common', 'Thank you', 'Vielen Dank', '2021-06-15 01:46:19'),
(11613, 'de', 'directory', 'clickaddfeatureddirectory', 'Verzeichnis hinzuzufügen', '2021-06-15 01:41:51'),
(11614, 'de', 'directory', 'Coupon Offer', 'Coupon-Angebot', '2021-06-15 01:41:51'),
(11615, 'de', 'directory', 'Directories with out Reciprocal Link', 'Verzeichnisse ohne Backlink-Pflicht', '2021-06-15 01:41:51'),
(11616, 'de', 'label', 'Syntax', 'Syntax', '2021-01-06 15:13:08'),
(11617, 'de', 'login', 'Forgot password?', 'Passwort vergessen?', '2021-01-06 15:14:32'),
(11618, 'de', 'login', 'internal_error_mail_send', 'Fehler beim Versenden der Email für Passwort-Wiederherstellug', '2021-01-06 15:14:32'),
(11619, 'de', 'login', 'password_reset_success_message', 'Passwort erfolgreich zurückgesetzt. Eine Bestätigungs-Mail wurde an die hinterlegte Email-Adresse verschickt. <br> Rufen Sie diese ab um Ihr neues Passwort zu bestätigen.', '2021-01-06 15:14:32'),
(11620, 'de', 'login', 'Request Password', 'Passwort anfordern', '2021-01-06 15:14:32'),
(11621, 'de', 'login', 'to login to your account', 'um in Account einzuloggen', '2021-01-06 15:14:32'),
(11622, 'de', 'login', 'user_email_not_exist', 'Email nicht vorhanden!', '2021-01-06 15:14:32'),
(11623, 'de', 'login', 'Your account password is resetted and new password is', 'Passwort wurde zurückgesetzt und lautet', '2021-01-06 15:14:32'),
(11624, 'de', 'login', 'Your Password Reset Failed', 'Passwort Wiederherstellung fehlgeschlagen', '2021-01-06 15:14:32'),
(11625, 'de', 'login', 'Your Password Reset Successfully', 'Passwort erfolreich zurückgesetzt', '2021-01-06 15:14:32'),
(11626, 'de', 'panel', 'Existing', 'Vorhanden', '2023-01-03 19:44:32'),
(11627, 'de', 'panel', 'Import Proxy', 'Proxy importieren', '2023-01-03 19:44:32'),
(11628, 'de', 'panel', 'Proxy Settings', 'Proxy Einstellungen', '2023-01-03 19:44:32'),
(11629, 'de', 'panel', 'Valid', 'Gültig', '2023-01-03 19:44:32'),
(11630, 'de', 'proxy', 'enterproxynote', 'Eine Proxy pro Zeile in folgendem Format eintragen.', '2021-01-06 15:21:00'),
(11631, 'de', 'proxy', 'proxysyntax', 'Proxy Hostname, Proxy Port, Proxy Nutzername, Proxy Passwort', '2021-01-06 15:21:00'),
(11632, 'de', 'settings', 'allsettingssaved', 'Alle Einstellungen erfolgreich gespeichert!', '2021-01-08 13:28:43'),
(11633, 'de', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Mit weiterer Proxy prüfen wenn Prüfung fehlschlägt', '2021-01-08 13:28:43'),
(11634, 'de', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'HTTP Proxy Tunnel aktivieren', '2021-01-08 13:28:43'),
(11635, 'de', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Proxy nach fehlgeschlagener Prüfung deaktivieren', '2021-01-08 13:28:43'),
(11636, 'de', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Relative Links einer Seite crawlen', '2021-01-08 13:28:43'),
(11637, 'de', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2021-01-08 13:28:43'),
(11638, 'ja', 'common', 'Checked', 'チェック済', '2019-05-25 22:40:02'),
(11639, 'ja', 'common', 'Thank you', 'ありがとうございます', '2019-05-25 22:40:02'),
(11640, 'ja', 'label', 'Syntax', '構文', '2019-04-01 13:45:51'),
(11641, 'ja', 'login', 'Forgot password?', 'パスワードをお忘れですか?', '2018-08-21 10:29:48'),
(11642, 'ja', 'login', 'internal_error_mail_send', 'パスワードリセットのメール送信中に内部エラーが発生しました!', '2018-08-21 10:29:48'),
(11643, 'ja', 'login', 'password_reset_success_message', 'パスワードをリセットしました。あなたのメールアドレスに確認メールを送信しました。<br>新しいパスワードは受信ボックスを確認してください。', '2018-08-21 10:29:48'),
(11644, 'ja', 'login', 'Request Password', 'パスワード要求', '2018-08-21 10:29:48'),
(11645, 'ja', 'login', 'to login to your account', 'あなたのアカウントへログインするには', '2018-08-21 10:29:48'),
(11646, 'ja', 'login', 'user_email_not_exist', 'ユーザーEメールはシステムに存在しません!', '2018-08-21 10:29:48'),
(11647, 'ja', 'login', 'Your account password is resetted and new password is', 'あなたのパスワードはリセットされています。新しいパスワードは', '2018-08-21 10:29:48'),
(11648, 'ja', 'login', 'Your Password Reset Failed', 'パスワードのリセットに失敗しました', '2018-08-21 10:29:48'),
(11649, 'ja', 'login', 'Your Password Reset Successfully', 'パスワードのリセットに成功しました', '2018-08-21 10:29:48'),
(11650, 'ja', 'panel', 'Existing', '既存', '2019-04-01 13:46:57'),
(11651, 'ja', 'panel', 'Import Proxy', 'プロキシインポート', '2019-04-01 13:46:57'),
(11652, 'ja', 'panel', 'Proxy Settings', 'プロキシ設定', '2019-04-01 13:46:57'),
(11653, 'ja', 'panel', 'Valid', '有効', '2019-04-01 13:46:57'),
(11654, 'ja', 'proxy', 'enterproxynote', '下記フォーマットで、プロキシを改行区切りで入力してください。', '2016-12-12 06:08:13'),
(11655, 'ja', 'proxy', 'proxysyntax', 'プロキシホスト名、プロキシポート、プロキシユーザー名、プロキシパスワード', '2016-12-12 06:08:13'),
(11656, 'ja', 'settings', 'allsettingssaved', '全ての設定が保存されました!', '2019-04-01 13:52:17'),
(11657, 'ja', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'クローリングに失敗した場合、別のプロキシを確認する', '2019-04-01 13:52:17'),
(11658, 'ja', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'HTTPプロキシトンネルを有効にする', '2019-04-01 13:52:17'),
(11659, 'ja', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'クローリングに失敗した場合、プロキシを非アクティブにする', '2019-04-01 13:52:17'),
(11660, 'ja', 'settings', 'SP_SMTP_PORT', 'SMTPメールポート', '2019-04-01 13:52:17'),
(11661, 'da', 'keyword', 'Crawling keyword', 'Crawling keyword', '2014-01-20 14:06:13'),
(11662, 'da', 'keyword', 'Detailed Keyword Position Reports', 'Detaljeret Keyword position rapporter', '2014-01-20 14:06:13'),
(11663, 'da', 'keyword', 'Edit Keyword', 'Ændre Keyword', '2014-01-20 14:06:13'),
(11664, 'da', 'keyword', 'Graphical Keyword Position Reports', 'Grafisk Keyword Position rapporter', '2014-01-20 14:06:13'),
(11665, 'da', 'keyword', 'Import Keywords', 'Importer Keywords', '2014-01-20 14:06:13'),
(11666, 'da', 'keyword', 'Insert keywords separated with comma', 'Indsæt keywords separeret med komma', '2014-01-20 14:06:13'),
(11667, 'da', 'keyword', 'Keyword already exist', 'Keyword eksisterer allerede', '2014-01-20 14:06:13'),
(11668, 'da', 'keyword', 'Keyword Position Report', 'Keyword Position rapport', '2014-01-20 14:06:13'),
(11669, 'da', 'keyword', 'New Keyword', 'Nyt Keyword', '2014-01-20 14:06:13'),
(11670, 'da', 'keyword', 'not assigned to required search engines', 'Ikke tildelt til påkrævede søgemaskiner', '2014-01-20 14:06:13'),
(11671, 'da', 'keyword', 'pleaseselecttool', 'Venligst vælg mindst én SEO redskab', '2014-01-20 14:06:13'),
(11672, 'da', 'keyword', 'Quick Keyword Position Checker', 'Hurtig Keyword Position checker', '2014-01-20 14:06:13'),
(11673, 'da', 'keyword', 'results from ', 'Resultater fra', '2014-01-20 14:06:13'),
(11674, 'da', 'keyword', 'Show All results', 'Vis alle resultater', '2014-01-20 14:06:13'),
(11675, 'da', 'keyword', 'Successfully crawled keyword', 'Har succesfuldt crawlet keyword', '2014-01-20 14:06:13'),
(11676, 'da', 'keyword', 'to create new keywords', 'oprette nye keywords', '2014-01-20 14:06:13'),
(11677, 'da', 'login', 'Confirm Password', 'Bekræft adgangskode', '2014-01-20 14:34:10'),
(11678, 'da', 'login', 'Create my account', 'Opret min konto', '2014-01-20 14:34:10'),
(11679, 'da', 'login', 'Create New Account', 'Opret ny konto', '2014-01-20 14:34:10'),
(11680, 'da', 'login', 'Email', 'E-mail', '2014-01-20 14:34:10'),
(11681, 'da', 'login', 'emailexist', 'E-mail eksisterer allerede', '2014-01-20 14:34:10'),
(11682, 'da', 'login', 'Enter the code as it is shown', 'Indtast koden som det er vist', '2014-01-20 14:34:10'),
(11683, 'da', 'login', 'First Name', 'Fornavn', '2014-01-20 14:34:10'),
(11684, 'da', 'login', 'Forgot password?', 'Glemt adgangskode?', '2014-01-20 14:34:10'),
(11685, 'da', 'login', 'internal_error_mail_send', 'En intern fejl opstod under afsendelse af gendannelsesmail!', '2014-01-20 14:34:10'),
(11686, 'da', 'login', 'Last Name', 'Efternavn', '2014-01-20 14:34:10'),
(11687, 'da', 'login', 'Login', 'Login', '2014-01-20 14:34:10'),
(11688, 'da', 'login', 'Login incorrect', 'Login er ikke korrekt', '2014-01-20 14:34:10'),
(11689, 'da', 'login', 'newaccountsuccess', 'Ny konto oprettet!', '2014-01-20 14:34:10'),
(11690, 'da', 'login', 'Password', 'Adgangskode', '2014-01-20 14:34:10'),
(11691, 'da', 'login', 'Password incorrect', 'Ugyldig adgangskode', '2014-01-20 14:34:10'),
(11692, 'da', 'login', 'password_reset_success_message', 'Gendannelse af adgangskoden er succesfuldt. En bekræftelsesmail er sendt til E-mail. <br>Venligst check din indbakke for din nye adgangskode.', '2014-01-20 14:34:10'),
(11693, 'da', 'login', 'Register', 'Registrer', '2014-01-20 14:34:10'),
(11694, 'da', 'login', 'Request Password', 'Anmod adgangskode', '2014-01-20 14:34:10'),
(11695, 'da', 'login', 'Sign in to your account', 'Log på din konto', '2014-01-20 14:34:10'),
(11696, 'da', 'login', 'to login to your account', 'for at log på din konto', '2014-01-20 14:34:10'),
(11697, 'da', 'login', 'User inactive', 'Bruger er inaktiv', '2014-01-20 14:34:10'),
(11698, 'da', 'login', 'user_email_not_exist', 'Bruger E-mail eksisterer ikke.', '2014-01-20 14:34:10'),
(11699, 'da', 'login', 'Username', 'Brugernavn', '2014-01-20 14:34:10'),
(11700, 'da', 'login', 'usernameexist', 'Brugernavn eksisterer allerede!', '2014-01-20 14:34:10'),
(11701, 'da', 'login', 'Your account password is resetted and new password is', 'Din konto adgangskode er gendannet og ny adgangskode er', '2014-01-20 14:34:10'),
(11702, 'da', 'login', 'Your Password Reset Failed', 'Gendannelsen af adgangskode er fejlet', '2014-01-20 14:34:10'),
(11703, 'da', 'login', 'Your Password Reset Successfully', 'Succesfuldt gendannelse af adgangskode', '2014-01-20 14:34:10'),
(11704, 'da', 'panel', 'About Us', 'Om os', '2014-01-20 14:40:54'),
(11705, 'da', 'panel', 'Add following command to your cron tab', 'Tilføj følgende kommando til din cron tab', '2014-01-20 14:40:54'),
(11706, 'da', 'panel', 'alsocheckfollowlink', 'Tjek desuden følgende link for flere detaljer.', '2014-01-20 14:40:54'),
(11707, 'da', 'panel', 'Archived Reports', 'Arkiveret rapporter', '2014-01-20 14:40:54'),
(11708, 'da', 'panel', 'Check Directory', 'Tjek Directory', '2014-01-20 14:40:54'),
(11709, 'da', 'panel', 'Cron Command', 'Cron Kommando', '2014-01-20 14:40:54'),
(11710, 'da', 'panel', 'Directory Manager', 'Directory Manager', '2014-01-20 14:40:54'),
(11711, 'da', 'panel', 'Edit My Profile', 'Redigér min profil', '2014-01-20 14:40:54'),
(11712, 'da', 'panel', 'Edit Project', 'Redigér Projekt', '2014-01-20 14:40:54'),
(11713, 'da', 'panel', 'Existing', 'Eksisterende', '2014-01-20 14:40:54'),
(11714, 'da', 'panel', 'Import Proxy', 'Importer Proxy', '2014-01-20 14:40:54'),
(11715, 'da', 'panel', 'My Profile', 'Min Profil', '2014-01-20 14:40:54'),
(11716, 'da', 'panel', 'New Project', 'Nyt Projekt', '2014-01-20 14:40:54'),
(11717, 'da', 'panel', 'New Proxy', 'Ny Proxy', '2014-01-20 14:40:54'),
(11718, 'da', 'panel', 'New User', 'Ny bruger', '2014-01-20 14:40:54'),
(11719, 'da', 'panel', 'New Website', 'Ny hjemmeside', '2014-01-20 14:40:54'),
(11720, 'da', 'panel', 'Proxy Manager', 'Proxy Manager', '2014-01-20 14:40:54'),
(11721, 'da', 'panel', 'Proxy Settings', 'Proxy indstillinger', '2014-01-20 14:40:54'),
(11722, 'da', 'panel', 'Report Generation Manager', 'Rapport Generation Manager', '2014-01-20 14:40:54'),
(11723, 'da', 'panel', 'Report Settings', 'Rapport indstillinger', '2014-01-20 14:40:54'),
(11724, 'da', 'panel', 'Reports Manager', 'Rapport Manager', '2014-01-20 14:40:54'),
(11725, 'da', 'panel', 'Schedule Reports', 'Tidsplanlæg rapporter', '2014-01-20 14:40:54'),
(11726, 'da', 'panel', 'Search Engine Manager', 'Søgemaskine Manager', '2014-01-20 14:40:54'),
(11727, 'da', 'panel', 'Seo Plugins Manager', 'SEO Plugin Manager', '2014-01-20 14:40:54'),
(11728, 'da', 'panel', 'Seo Tools Manager', 'SEO redskaber Manager', '2014-01-20 14:40:54'),
(11729, 'da', 'panel', 'System Settings', 'System indstillinger', '2014-01-20 14:40:54'),
(11730, 'da', 'panel', 'Themes Manager', 'Tema Manager', '2014-01-20 14:40:54'),
(11731, 'da', 'panel', 'User Manager', 'Bruger Manager', '2014-01-20 14:40:54'),
(11732, 'da', 'panel', 'Valid', 'Gyldig', '2014-01-20 14:40:54'),
(11733, 'da', 'panel', 'Website Manager', 'Hjemmeside Manager', '2014-01-20 14:40:54'),
(11734, 'da', 'plugin', 'Download Seo Panel Plugins', 'Download Seo Panel Plugins', '2014-01-20 14:42:27'),
(11735, 'da', 'plugin', 'Edit Seo Plugin', 'Redigér Seo Plugin', '2014-01-20 14:42:27'),
(11736, 'da', 'plugin', 'Plugin Name', 'Plugin navn', '2014-01-20 14:42:27'),
(11737, 'da', 'plugin', 'Seo Plugin Details', 'Seo Plugin detaljer', '2014-01-20 14:42:27'),
(11738, 'da', 'proxy', 'enterproxynote', 'Indtast proxy, én per linje i følgende format.', '2014-01-20 14:44:35'),
(11739, 'da', 'proxy', 'proxysyntax', 'Proxy Værtsnavn, Proxy port, Proxy brugernavn, Proxy adgangskode', '2014-01-20 14:44:35'),
(11740, 'da', 'report', '2 Days', '2 dage', '2014-01-20 14:51:31'),
(11741, 'da', 'report', 'Email notification', 'E-mail notifikation', '2014-01-20 14:51:31'),
(11742, 'da', 'report', 'keywordnumbercheckedcronnote', 'Note: Default 0 betyder alle keywords skal være checked', '2014-01-20 14:51:31'),
(11743, 'da', 'report', 'Next report generation time', 'Næste rapport generations tid', '2014-01-20 14:51:31'),
(11744, 'da', 'report', 'Reports generation interval', 'Rapporter generations interval', '2014-01-20 14:51:31'),
(11745, 'da', 'report', 'reportsettingssaved', 'Rapport indstillinger gemt succesfuldt!', '2014-01-20 14:51:31'),
(11746, 'da', 'report', 'sheduledsuccessfully', 'Planlagt rapport generation succesfuldt!', '2014-01-20 14:51:31'),
(11747, 'el', 'common', 'Checked', 'Επιλέχθη', '2019-08-28 09:40:52'),
(11748, 'el', 'common', 'Dashboard', 'Επισκόπηση', '2019-08-28 09:40:52'),
(11749, 'el', 'common', 'Home', 'Αρχική', '2019-08-28 09:40:52'),
(11750, 'el', 'common', 'Powered by', 'Δημιουργία από', '2019-08-28 09:40:52'),
(11751, 'el', 'common', 'Thank you', 'Ευχαριστούμε', '2019-08-28 09:40:52'),
(11752, 'el', 'directory', 'clickaddfeatureddirectory', 'Κάντε κλικ εδώ ώστε να προσθέσετε τον επισημασμένο κατάλογο σας', '2014-01-20 16:07:08'),
(11753, 'el', 'directory', 'Coupon Offer', 'Κουπόνι προσφοράς', '2014-01-20 16:07:08'),
(11754, 'el', 'directory', 'Directories with out Reciprocal Link', 'Κατάλογοι που δεν απαιτούν ανταποδοτικό Link', '2014-01-20 16:07:08'),
(11755, 'el', 'label', 'Clear All', 'Καθαρισμός Όλων', '2019-11-28 23:22:10'),
(11756, 'el', 'label', 'Current', 'Τρέχον', '2019-11-28 23:22:10'),
(11757, 'el', 'label', 'Select All', 'Επιλογή Όλων', '2019-11-28 23:22:10'),
(11758, 'el', 'label', 'Syntax', 'Syntax', '2019-11-28 23:22:10'),
(11759, 'el', 'label', 'Theme', 'Θέμα', '2019-11-28 23:22:10'),
(11760, 'el', 'login', 'Forgot password?', 'Ξεχάσατε τον κωδικό σας;', '2018-08-23 10:13:36'),
(11761, 'el', 'login', 'internal_error_mail_send', 'Δημιουργήθηκε ένα εσωτερικό σφάλμα στην αποστολή email αλλαγής κωδικού!', '2018-08-23 10:13:36'),
(11762, 'el', 'login', 'password_reset_success_message', 'Ο κωδικός σας αλλάχθηκε επιτυχώς. Ένα email επιβεβαίωσης εστάλη στην διεύθυνση email. <br>Παρακαλώ ελέγξτε τα εισερχόμενα σας για να λάβετε το νέο κωδικό.', '2018-08-23 10:13:36'),
(11763, 'el', 'login', 'Request Password', 'Αίτηση Κωδικού', '2018-08-23 10:13:36'),
(11764, 'el', 'login', 'to login to your account', 'για να συνδεθείτε στον λογαριασμό σας', '2018-08-23 10:13:36'),
(11765, 'el', 'login', 'user_email_not_exist', 'Το email του χρήστη δεν υπάρχει στο σύστημα!', '2018-08-23 10:13:36'),
(11766, 'el', 'login', 'Your account password is resetted and new password is', 'Ο κωδικός λογαριασμού άλλαξε και ο νέος κωδικός είναι', '2018-08-23 10:13:36'),
(11767, 'el', 'login', 'Your Password Reset Failed', 'Η Αλλαγή Κωδικού Απέτυχε', '2018-08-23 10:13:36'),
(11768, 'el', 'login', 'Your Password Reset Successfully', 'Ο Κωδικός σας Άλλαξε Επιτυχώς', '2018-08-23 10:13:36'),
(11769, 'el', 'panel', 'Existing', 'Προυπάρχον', '2019-08-28 09:42:17'),
(11770, 'el', 'panel', 'Import Proxy', 'Εισαγωγή Proxy', '2019-08-28 09:42:17'),
(11771, 'el', 'panel', 'Proxy Settings', 'Ρυθμίσεις Proxy', '2019-08-28 09:42:17'),
(11772, 'el', 'panel', 'Themes Manager', 'Διαχείριση Θεμάτων', '2019-08-28 09:42:17'),
(11773, 'el', 'panel', 'Valid', 'Έγκυρο', '2019-08-28 09:42:17'),
(11774, 'el', 'proxy', 'enterproxynote', 'Εισάγετε έναν Proxy ανά γραμμή στην ακόλουθη μορφή.', '2016-12-29 18:06:18'),
(11775, 'el', 'proxy', 'proxysyntax', 'Proxy Hostname, Proxy Port, Proxy Username, Proxy Password', '2016-12-29 18:06:18'),
(11776, 'el', 'settings', 'allsettingssaved', 'Όλες οι ρυθμίσεις αποθηκεύτηκαν επιτυχώς!', '2019-08-28 09:43:40'),
(11777, 'el', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Ελέγξτε και Με έναν Άλλο Proxy όταν το Crawling αποτύχει', '2019-08-28 09:43:40'),
(11778, 'el', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Ενεργοποιήστε το HTTP Proxy Tunnel', '2019-08-28 09:43:40'),
(11779, 'el', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Απενεργοποιήστε το Proxy όταν το Crawling Αποτύχει', '2019-08-28 09:43:40'),
(11780, 'el', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Σχετικά στο Crawl links σε μια σελίδα', '2019-08-28 09:43:40'),
(11781, 'el', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2019-08-28 09:43:40'),
(11782, 'el', 'theme', 'Download Seo Panel Themes', 'Κατεβάστε Θέματα του Seo Panel', '2014-01-20 16:24:30'),
(11783, 'da', 'reports', 'report_email_body_text1', 'Din rapport blev genererat succesfuldt i seo panel. Tjek de vedhæftede rapporter. ', '2014-01-31 03:14:56'),
(11784, 'da', 'reports', 'report_email_body_text2', 'Hvis rapporterne herover ikke er synlige, så [LOGIN_LINK] for at se rapporterne direkte fra din konto.', '2014-01-31 03:14:56'),
(11785, 'da', 'reports', 'report_email_subject', 'Dine SEO rapporter blev succesfuldt genereret', '2014-01-31 03:14:56'),
(11786, 'pt-br', 'common', 'Checked', 'Marcado', '2019-07-30 00:26:27'),
(11787, 'pt-br', 'common', 'Dashboard', 'Painel', '2019-07-30 00:26:27'),
(11788, 'pt-br', 'common', 'Home', 'Início', '2019-07-30 00:26:27'),
(11789, 'pt-br', 'common', 'Powered by', 'Desenvolvido por', '2019-07-30 00:26:27'),
(11790, 'pt-br', 'common', 'Thank you', 'Obrigado', '2019-07-30 00:26:27'),
(11791, 'pt-br', 'directory', 'clickaddfeatureddirectory', 'Clique aqui para adicionar seu próprio diretório em destaque aqui', '2014-02-12 17:25:20'),
(11792, 'pt-br', 'directory', 'Coupon Offer', 'Cupom de desconto', '2014-02-12 17:25:20'),
(11793, 'pt-br', 'directory', 'Directories with out Reciprocal Link', 'Diretórios com Links Reciprocos', '2014-02-12 17:25:20'),
(11794, 'pt-br', 'label', 'Clear All', 'Limpar tudo', '2018-08-21 18:54:11'),
(11795, 'pt-br', 'label', 'Current', 'Atual', '2018-08-21 18:54:11'),
(11796, 'pt-br', 'label', 'Select All', 'Selecione tudo', '2018-08-21 18:54:11'),
(11797, 'pt-br', 'label', 'Syntax', 'Sintaxe', '2018-08-21 18:54:11'),
(11798, 'pt-br', 'label', 'Theme', 'Tema', '2018-08-21 18:54:11'),
(11799, 'pt-br', 'login', 'Forgot password?', 'Perdeu a senha?', '2016-01-04 16:42:58'),
(11800, 'pt-br', 'login', 'internal_error_mail_send', 'Um erro interno ocorreu durante o envio de mensagens de alteração de senha!', '2016-01-04 16:42:58'),
(11801, 'pt-br', 'login', 'password_reset_success_message', 'Senha alterada com sucesso. Um e-mail de confirmação foi enviado para o endereço de e-mail. <br> Por favor confirme sua caixa de entrada para obter a sua nova senha.', '2016-01-04 16:42:58'),
(11802, 'pt-br', 'login', 'Request Password', 'Solicitar senha', '2016-01-04 16:42:58'),
(11803, 'pt-br', 'login', 'to login to your account', 'para acessar sua conta', '2016-01-04 16:42:58'),
(11804, 'pt-br', 'login', 'user_email_not_exist', 'Usuário não encontrado no sistema!', '2016-01-04 16:42:58'),
(11805, 'pt-br', 'login', 'Your account password is resetted and new password is', 'Sua senha foi alterada a sua nova senha é', '2016-01-04 16:42:58'),
(11806, 'pt-br', 'login', 'Your Password Reset Failed', 'Senha não foi alterada', '2016-01-04 16:42:58');
INSERT INTO `texts` VALUES
(11807, 'pt-br', 'login', 'Your Password Reset Successfully', 'Senha alterada com sucesso', '2016-01-04 16:42:58'),
(11808, 'pt-br', 'panel', 'Existing', 'Existe', '2018-01-23 18:32:33'),
(11809, 'pt-br', 'panel', 'Import Proxy', 'Importar proxy', '2018-01-23 18:32:33'),
(11810, 'pt-br', 'panel', 'Proxy Settings', 'Configurações de Proxy', '2018-01-23 18:32:33'),
(11811, 'pt-br', 'panel', 'Themes Manager', 'Gerenciar temas', '2018-01-23 18:32:33'),
(11812, 'pt-br', 'panel', 'Valid', 'Válido', '2018-01-23 18:32:33'),
(11813, 'pt-br', 'proxy', 'enterproxynote', 'Digite um proxy por linha no seguinte formato.', '2016-12-09 16:48:39'),
(11814, 'pt-br', 'proxy', 'proxysyntax', 'Nome do host do Proxy, Porta do Proxy, Usuário do Proxy, Senha do Proxy', '2016-12-09 16:48:39'),
(11815, 'pt-br', 'settings', 'allsettingssaved', 'Todas as alterações salvas com sucesso!', '2018-06-02 17:47:27'),
(11816, 'pt-br', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Verifique com outro proxy, falha em rastrear', '2018-06-02 17:47:27'),
(11817, 'pt-br', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Ativar HTTP Proxy Tunel', '2018-06-02 17:47:27'),
(11818, 'pt-br', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Desativar Proxy Quando a Busca Falhar', '2018-06-02 17:47:27'),
(11819, 'pt-br', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Indexar links relativos em uma página', '2018-06-02 17:47:27'),
(11820, 'pt-br', 'settings', 'SP_SMTP_PORT', 'Porta do SMTP', '2018-06-02 17:47:27'),
(11821, 'pt-br', 'theme', 'Download Seo Panel Themes', 'Download de Temas do SEO Panel', '2014-02-12 17:45:18'),
(11822, 'pt', 'common', 'Checked', 'Verificado', '2019-05-25 22:43:55'),
(11823, 'pt', 'common', 'Thank you', 'Obrigado', '2019-05-25 22:43:55'),
(11824, 'pt', 'label', 'Syntax', 'Syntax ', '2018-01-26 00:11:22'),
(11825, 'pt', 'login', 'Forgot password?', 'Esqueceu a sua Password?', '2016-01-18 00:13:26'),
(11826, 'pt', 'login', 'internal_error_mail_send', 'Ocorreu um 3erro interno enquanto era enviado o email com a password!', '2016-01-18 00:13:26'),
(11827, 'pt', 'login', 'password_reset_success_message', 'A sua password foi alterada com sucesso.A confirmação foi enviada por email.<br>Por favor verifique na sua caixa de email para obter a sua nova password.', '2016-01-18 00:13:26'),
(11828, 'pt', 'login', 'Request Password', 'Pedir password', '2016-01-18 00:13:26'),
(11829, 'pt', 'login', 'to login to your account', 'para logar na sua conta', '2016-01-18 00:13:26'),
(11830, 'pt', 'login', 'user_email_not_exist', 'Este email não existe no nosso sistema', '2016-01-18 00:13:26'),
(11831, 'pt', 'login', 'Your account password is resetted and new password is', 'A sua password foi alterada e a sua nova password é ', '2016-01-18 00:13:26'),
(11832, 'pt', 'login', 'Your Password Reset Failed', 'A alteração de password falhou', '2016-01-18 00:13:26'),
(11833, 'pt', 'login', 'Your Password Reset Successfully', 'A sua password foi alterada com sucesso', '2016-01-18 00:13:26'),
(11834, 'pt', 'settings', 'allsettingssaved', 'Todas as definições guardadas com sucesso!', '2018-01-26 00:23:30'),
(11835, 'pt', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Verificar com outro proxy quando a pesquisa falhar', '2018-01-26 00:23:30'),
(11836, 'pt', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Activar o Proxy HTTP Tunel', '2018-01-26 00:23:30'),
(11837, 'pt', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Desactivar o Proxy quando a pesquisa falhar', '2018-01-26 00:23:30'),
(11838, 'pt', 'settings', 'SP_SMTP_PORT', 'Porta do SMTP', '2018-01-26 00:23:30'),
(11839, 'en', 'panel', 'Proxy Perfomance', 'Proxy Perfomance', '2014-05-09 00:51:04'),
(11840, 'en', 'label', 'Success', 'Success', '2014-05-09 00:51:04'),
(11841, 'en', 'label', 'Fail', 'Fail', '2014-05-09 00:51:04'),
(11842, 'en', 'label', 'Reference', 'Reference', '2014-05-09 00:51:04'),
(11843, 'en', 'label', 'Subject', 'Subject', '2014-05-09 00:51:04'),
(11844, 'en', 'label', 'Cookie', 'Cookie', '2014-05-09 00:51:04'),
(11845, 'en', 'label', 'User agent', 'User agent', '2014-05-09 00:51:04'),
(11846, 'en', 'label', 'Referer', 'Referer', '2014-05-09 00:51:04'),
(11847, 'en', 'label', 'Order By', 'Order By', '2014-05-09 00:51:04'),
(11848, 'en', 'log', 'Clear All Logs', 'Clear All Logs', '2014-05-09 00:51:04'),
(11849, 'en', 'log', 'Crawl Log Details', 'Crawl Log Details', '2014-05-09 00:51:04'),
(11850, 'en', 'log', 'Post Fields', 'Post Fields', '2014-05-09 00:51:04'),
(11851, 'en', 'panel', 'Log Manager', 'Log Manager', '2014-05-09 00:51:04'),
(11852, 'en', 'settings', 'SP_TIME_ZONE', 'Time Zone', '2018-01-23 00:59:29'),
(11853, 'en', 'proxy', 'Request Count', 'Request Count', '2014-05-09 00:51:04'),
(11854, 'ru', 'label', 'Cookie', 'Куки', '2024-07-17 15:17:22'),
(11855, 'ru', 'label', 'Fail', 'Сбой', '2024-07-17 15:17:22'),
(11856, 'ru', 'label', 'Order By', 'Упорядочить по', '2024-07-17 15:17:22'),
(11857, 'ru', 'label', 'Reference', 'Справочник', '2024-07-17 15:17:22'),
(11858, 'ru', 'label', 'Referer', 'Обращения', '2024-07-17 15:17:22'),
(11859, 'ru', 'label', 'Subject', 'Тема', '2024-07-17 15:17:22'),
(11860, 'ru', 'label', 'Success', 'Успех', '2024-07-17 15:17:22'),
(11861, 'ru', 'label', 'User agent', 'Средство просмотра', '2024-07-17 15:17:22'),
(11862, 'ru', 'log', 'Clear All Logs', 'Очистить все логи', '2024-07-17 15:17:47'),
(11863, 'ru', 'log', 'Crawl Log Details', 'Детальное сканирование логов', '2024-07-17 15:17:47'),
(11864, 'ru', 'log', 'Post Fields', 'Почтовые поля', '2024-07-17 15:17:47'),
(11865, 'ru', 'panel', 'Log Manager', 'Управление логами', '2024-07-17 15:19:14'),
(11866, 'ru', 'panel', 'Proxy Perfomance', 'Производительность прокси', '2024-07-17 15:19:14'),
(11867, 'ru', 'proxy', 'Request Count', 'Количество запросов', '2016-12-09 21:23:58'),
(11868, 'ru', 'settings', 'SP_TIME_ZONE', 'Часовой пояс', '2024-07-17 15:22:42'),
(11869, 'fr', 'label', 'Cookie', 'Cookie', '2020-02-14 16:12:40'),
(11870, 'fr', 'label', 'Fail', 'Echec', '2020-02-14 16:12:40'),
(11871, 'fr', 'label', 'Order By', 'Trier par', '2020-02-14 16:12:40'),
(11872, 'fr', 'label', 'Reference', 'Référence', '2020-02-14 16:12:40'),
(11873, 'fr', 'label', 'Referer', 'Référant', '2020-02-14 16:12:40'),
(11874, 'fr', 'label', 'Subject', 'Sujet', '2020-02-14 16:12:40'),
(11875, 'fr', 'label', 'Success', 'Succès', '2020-02-14 16:12:40'),
(11876, 'fr', 'label', 'User agent', 'Agent utilisateur', '2020-02-14 16:12:40'),
(11877, 'fr', 'log', 'Clear All Logs', 'Vider les logs', '2014-05-09 16:55:43'),
(11878, 'fr', 'log', 'Crawl Log Details', 'Chercher dans les logs', '2014-05-09 16:55:43'),
(11879, 'fr', 'log', 'Post Fields', 'Champs', '2014-05-09 16:55:43'),
(11880, 'fr', 'panel', 'Log Manager', 'Gestion des logs', '2020-02-14 16:14:52'),
(11881, 'fr', 'panel', 'Proxy Perfomance', 'Performances Proxy', '2020-02-14 16:14:52'),
(11882, 'fr', 'proxy', 'Request Count', 'Nombre de requêtes', '2016-12-09 23:07:31'),
(11883, 'fr', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Utiliser un autre proxy quand la connexion échoue', '2019-03-28 18:39:30'),
(11884, 'fr', 'settings', 'SP_TIME_ZONE', 'Fuseau horaire', '2019-03-28 18:39:30'),
(11885, 'en', 'panel', 'Crawl Log Manager', 'Crawl Log Manager', '2014-05-10 00:03:17'),
(11886, 'pl', 'settings', 'SP_TIME_ZONE', 'Strefa Czasowa', '2014-05-11 23:49:58'),
(11887, 'pl', 'proxy', 'Request Count', 'Liczba Requestów', '2014-05-11 23:50:59'),
(11888, 'pl', 'panel', 'Crawl Log Manager', 'Menedżer Loga Skanowania (Crawlowania)', '2014-05-11 23:55:16'),
(11889, 'pl', 'panel', 'Log Manager', 'Menedżer Logów', '2014-05-11 23:55:16'),
(11890, 'pl', 'panel', 'Proxy Perfomance', 'Wydajność Proxy', '2014-05-11 23:55:16'),
(11891, 'pl', 'log', 'Clear All Logs', 'Wyczyść wszystkie Logi', '2014-05-11 23:59:35'),
(11892, 'pl', 'log', 'Crawl Log Details', 'Szczegółowe informacje o Logu Skanowania (Crawlowania)', '2014-05-11 23:59:35'),
(11893, 'pl', 'log', 'Post Fields', 'Pola Post', '2014-05-11 23:59:35'),
(11894, 'pl', 'label', 'Cookie', 'Ciasteczko Cookie', '2014-05-12 00:04:08'),
(11895, 'pl', 'label', 'Fail', 'Błąd', '2014-05-12 00:04:08'),
(11896, 'pl', 'label', 'Order By', 'Posortuj po', '2014-05-12 00:04:08'),
(11897, 'pl', 'label', 'Reference', 'Referencja', '2014-05-12 00:04:08'),
(11898, 'pl', 'label', 'Referer', 'Referujący', '2014-05-12 00:04:08'),
(11899, 'pl', 'label', 'Subject', 'Przedmiot', '2014-05-12 00:04:08'),
(11900, 'pl', 'label', 'Success', 'Sukces', '2014-05-12 00:04:08'),
(11901, 'pl', 'label', 'User agent', 'User Agent', '2014-05-12 00:04:08'),
(11902, 'ja', 'label', 'Cookie', 'クッキー', '2019-04-01 13:45:51'),
(11903, 'ja', 'label', 'Fail', '失敗', '2019-04-01 13:45:51'),
(11904, 'ja', 'label', 'Order By', '表示順', '2019-04-01 13:45:51'),
(11905, 'ja', 'label', 'Reference', '参照', '2019-04-01 13:45:51'),
(11906, 'ja', 'label', 'Referer', 'リファラー', '2019-04-01 13:45:51'),
(11907, 'ja', 'label', 'Subject', '題目', '2019-04-01 13:45:51'),
(11908, 'ja', 'label', 'Success', '成功', '2019-04-01 13:45:51'),
(11909, 'ja', 'label', 'User agent', 'ユーザーエージェント', '2019-04-01 13:45:51'),
(11910, 'ja', 'log', 'Clear All Logs', 'すべてのログを消去', '2014-05-12 09:09:04'),
(11911, 'ja', 'log', 'Crawl Log Details', 'クロール履歴詳細', '2014-05-12 09:09:04'),
(11912, 'ja', 'log', 'Post Fields', 'ポストフィールド', '2014-05-12 09:09:05'),
(11913, 'ja', 'panel', 'Crawl Log Manager', 'クロール履歴管理', '2019-04-01 13:46:57'),
(11914, 'ja', 'panel', 'Log Manager', 'ログ管理', '2019-04-01 13:46:57'),
(11915, 'ja', 'panel', 'Proxy Perfomance', 'プロキシパフォーマンス', '2019-04-01 13:46:57'),
(11916, 'ja', 'proxy', 'Request Count', 'リクエスト数', '2016-12-12 06:08:13'),
(11917, 'ja', 'settings', 'SP_TIME_ZONE', 'タイムゾーン', '2019-04-01 13:52:17'),
(11918, 'it', 'label', 'Cookie', 'Cookie', '2022-07-11 15:17:58'),
(11919, 'it', 'label', 'Fail', 'Non riuscito', '2022-07-11 15:17:58'),
(11920, 'it', 'label', 'Order By', 'Ordina per', '2022-07-11 15:17:58'),
(11921, 'it', 'label', 'Reference', 'Riferimento', '2022-07-11 15:17:58'),
(11922, 'it', 'label', 'Referer', 'Riferente', '2022-07-11 15:17:58'),
(11923, 'it', 'label', 'Subject', 'Oggetto', '2022-07-11 15:17:58'),
(11924, 'it', 'label', 'Success', 'Riuscito', '2022-07-11 15:17:58'),
(11925, 'it', 'label', 'User agent', 'User agent ', '2022-07-11 15:17:58'),
(11926, 'it', 'log', 'Clear All Logs', 'Ripulisci tutti i log', '2022-07-11 15:18:13'),
(11927, 'it', 'log', 'Crawl Log Details', 'Dettagli log Crawl', '2022-07-11 15:18:13'),
(11928, 'it', 'log', 'Post Fields', 'Campi post', '2022-07-11 15:18:13'),
(11929, 'it', 'panel', 'Crawl Log Manager', 'Gestione log Crawl', '2022-07-11 15:20:07'),
(11930, 'it', 'panel', 'Log Manager', 'Gestione log', '2022-07-11 15:20:07'),
(11931, 'it', 'panel', 'Proxy Perfomance', 'Performance del proxy', '2022-07-11 15:20:07'),
(11932, 'it', 'proxy', 'Request Count', 'Richiedi conteggio', '2016-12-09 14:20:46'),
(11933, 'it', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Controlla con un altro proxy quando il crawling fallisce', '2018-08-21 11:16:32'),
(11934, 'it', 'settings', 'SP_TIME_ZONE', 'Fuso orario', '2018-08-21 11:16:32'),
(11935, 'pt', 'label', 'Cookie', 'Cookie', '2018-01-26 00:11:22'),
(11936, 'pt', 'label', 'Fail', 'Falhado', '2018-01-26 00:11:22'),
(11937, 'pt', 'label', 'Order By', 'pedido por', '2018-01-26 00:11:22'),
(11938, 'pt', 'label', 'Reference', 'Referência', '2018-01-26 00:11:22'),
(11939, 'pt', 'label', 'Referer', 'Referido', '2018-01-26 00:11:22'),
(11940, 'pt', 'label', 'Subject', 'Submetido', '2018-01-26 00:11:22'),
(11941, 'pt', 'label', 'Success', 'Bem sucedido', '2018-01-26 00:11:22'),
(11942, 'pt', 'label', 'User agent', 'Utilizador', '2018-01-26 00:11:22'),
(11943, 'pt', 'log', 'Clear All Logs', 'Limpar todos os logs', '2014-05-14 04:36:06'),
(11944, 'pt', 'log', 'Crawl Log Details', 'Pesquisar nos logs', '2014-05-14 04:36:06'),
(11945, 'pt', 'log', 'Post Fields', 'Colocar campos', '2014-05-14 04:36:06'),
(11946, 'pt', 'panel', 'Crawl Log Manager', 'Gestão de logs', '2018-01-26 00:18:33'),
(11947, 'pt', 'panel', 'Existing', 'Existente', '2018-01-26 00:18:33'),
(11948, 'pt', 'panel', 'Import Proxy', 'Importar proxy', '2018-01-26 00:18:33'),
(11949, 'pt', 'panel', 'Log Manager', 'Gestão de logs', '2018-01-26 00:18:33'),
(11950, 'pt', 'panel', 'Proxy Perfomance', 'Performance do proxy', '2018-01-26 00:18:33'),
(11951, 'pt', 'panel', 'Proxy Settings', 'Definições do proxy', '2018-01-26 00:18:33'),
(11952, 'pt', 'panel', 'Valid', 'Válido', '2018-01-26 00:18:33'),
(11953, 'pt', 'proxy', 'enterproxynote', 'intruduzir um proxy por linha no seguinte formato .', '2018-01-26 00:17:58'),
(11954, 'pt', 'proxy', 'proxysyntax', 'Nome do proxy, porta do proxy, proxy username, password do proxy', '2018-01-26 00:17:58'),
(11955, 'pt', 'proxy', 'Request Count', 'Requerer contagem', '2018-01-26 00:17:58'),
(11956, 'pt', 'settings', 'SP_TIME_ZONE', 'Zona Horária', '2018-01-26 00:23:30'),
(11957, 'ru', 'panel', 'Crawl Log Manager', 'Менеджер сканирования логов', '2024-07-17 15:19:14'),
(11958, 'zh', 'label', 'Cookie', 'Cookie', '2014-05-15 21:47:51'),
(11959, 'zh', 'label', 'Fail', '失败', '2014-05-15 21:47:51'),
(11960, 'zh', 'label', 'Order By', '订单顺序', '2014-05-15 21:47:51'),
(11961, 'zh', 'label', 'Reference', '参考', '2014-05-15 21:47:51'),
(11962, 'zh', 'label', 'Referer', '引用', '2014-05-15 21:47:51'),
(11963, 'zh', 'label', 'Subject', '项目', '2014-05-15 21:47:51'),
(11964, 'zh', 'label', 'Success', '成功', '2014-05-15 21:47:51'),
(11965, 'zh', 'label', 'User agent', 'User 代理', '2014-05-15 21:47:51'),
(11966, 'zh', 'log', 'Clear All Logs', '清除所有日志', '2014-05-15 21:48:23'),
(11967, 'zh', 'log', 'Crawl Log Details', '抓取登录详情', '2014-05-15 21:48:23'),
(11968, 'zh', 'log', 'Post Fields', '发布区域', '2014-05-15 21:48:23'),
(11969, 'zh', 'panel', 'Crawl Log Manager', '抓取日志管理器', '2014-05-15 21:48:57'),
(11970, 'zh', 'panel', 'Log Manager', '日志管理器', '2014-05-15 21:48:57'),
(11971, 'zh', 'panel', 'Proxy Perfomance', '代理效果', '2014-05-15 21:48:57'),
(11972, 'zh', 'proxy', 'Request Count', '请求统计次数', '2014-05-15 21:51:10'),
(11973, 'zh', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', '当抓取失败的时候用另一个代理检测', '2014-05-15 21:56:30'),
(11974, 'zh', 'settings', 'SP_TIME_ZONE', '时区', '2014-05-15 21:56:30'),
(11975, 'sv', 'common', 'Checked', 'Kontrollerad', '2019-05-25 22:50:40'),
(11976, 'sv', 'common', 'Thank you', 'Tack', '2019-05-25 22:50:40'),
(11977, 'sv', 'directory', 'Add back to directory list', 'Lägg tillbaka i katalog-listan', '2014-06-23 20:58:37'),
(11978, 'sv', 'directory', 'Approved', 'Godkänd', '2014-06-23 20:58:37'),
(11979, 'sv', 'directory', 'Captcha', 'Captcha', '2014-06-23 20:58:37'),
(11980, 'sv', 'directory', 'categorynote', 'Åtskilj kategorier med komma beroende på prioritet. Starta med kategorin vilken har högst prioritet.', '2014-06-23 20:58:37'),
(11981, 'sv', 'directory', 'Check Directory Status', 'Kontrollera katalog-status', '2014-06-23 20:58:37'),
(11982, 'sv', 'directory', 'Check Directory Submission Status', 'Kontrollera submission-status', '2014-06-23 20:58:37'),
(11983, 'sv', 'directory', 'clickaddfeatureddirectory', 'Klicka här för att lägga till din egna katalog', '2014-06-23 20:58:37'),
(11984, 'sv', 'directory', 'clicktoproceeddirsts', 'Klicka på <b>Fortsätt</b> för att kontrollera katalog-status.', '2014-06-23 20:58:37'),
(11985, 'sv', 'directory', 'Confirmation', 'Bekräftelse', '2014-06-23 20:58:37'),
(11986, 'sv', 'directory', 'Coupon Code', 'Kupongkod', '2014-06-23 20:58:37'),
(11987, 'sv', 'directory', 'Coupon Offer', 'Kupongerbjudande', '2014-06-23 20:58:37'),
(11988, 'sv', 'directory', 'couponcodenote', 'Använd ovanstående kupongkod och få [REDUCTION_PER] för varje submission!', '2014-06-23 20:58:37'),
(11989, 'sv', 'directory', 'desnote', 'Vissa kataloger fordrar minst 150 tecken i beskrivningsfältet.', '2014-06-23 20:58:37'),
(11990, 'sv', 'directory', 'Directories with out captcha', 'Kataloger utan captcha', '2014-06-23 20:58:37'),
(11991, 'sv', 'directory', 'Directories with out Reciprocal Link', 'Kataloger utan krav på tillbakalänk', '2014-06-23 20:58:37'),
(11992, 'sv', 'directory', 'Directory Submission Reports', 'Submission-rapport', '2014-06-23 20:58:37'),
(11993, 'sv', 'directory', 'Enter the code shown', 'Fyll i visad kod', '2014-06-23 20:58:37'),
(11994, 'sv', 'directory', 'nocatnote', 'Kategorin hittades inte på registreringssidan. Vänligen klicka på <b>ladda om</b> eller <b>hoppa över</b>', '2014-06-23 20:58:37'),
(11995, 'sv', 'directory', 'nodirnote', 'Inga <b>aktiva</b> kataloger funna', '2014-06-23 20:58:37'),
(11996, 'sv', 'directory', 'nosuccessnote', 'Fick inget bekräftelse-meddelande. Vänligen kontrollera din epost.', '2014-06-23 20:58:37'),
(11997, 'sv', 'directory', 'optionalnote', 'Alternativa titlar och beskrivningar.', '2014-06-23 20:58:37'),
(11998, 'sv', 'directory', 'Owner Email', 'E-postadress ägare', '2014-06-23 20:58:37'),
(11999, 'sv', 'directory', 'Owner Name', 'Ägare', '2014-06-23 20:58:37'),
(12000, 'sv', 'directory', 'Pending', 'Pågående', '2014-06-23 20:58:37'),
(12001, 'sv', 'directory', 'Please select a website to proceed', 'Vänligen välj en webbplats för att fortsätta', '2014-06-23 20:58:37'),
(12002, 'sv', 'directory', 'Reciprocal Link', 'Länkbyte', '2014-06-23 20:58:37'),
(12003, 'sv', 'directory', 'selectwebsiteproceed', 'Välj en <b>webbplats</b> för att <b>fortsätta</b> katalog-submissions. <br>Markera <b>kataloger utan captcha</b> för att lägga till i kataloger utan captcha.', '2014-06-23 20:58:37'),
(12004, 'sv', 'directory', 'selectwebsiteschecksub', 'Välj en <b>webbplats</b> för att <b>fortsätta</b> kontrollera katalog-submissions.', '2014-06-23 20:58:37'),
(12005, 'sv', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi-automatiskt katalog submission-verktyg', '2014-06-23 20:58:37'),
(12006, 'sv', 'directory', 'spamemailnote', 'Vissa kataloger skickar ut skräppost, varför vi inte rekommenderar dig att använda din primära e-postadress.', '2014-06-23 20:58:37'),
(12007, 'sv', 'directory', 'Submission Details', 'Submission-detaljer', '2014-06-23 20:58:37'),
(12008, 'sv', 'directory', 'Submit Description', 'Beskrivning', '2014-06-23 20:58:37'),
(12009, 'sv', 'directory', 'Submit Keywords', 'Keywords', '2014-06-23 20:58:37'),
(12010, 'sv', 'directory', 'Submit Title', 'Titel', '2014-06-23 20:58:37'),
(12011, 'sv', 'directory', 'Website Category', 'Kategori för Webbplats', '2014-06-23 20:58:37'),
(12012, 'sv', 'directory', 'Website Url', 'Webadress', '2014-06-23 20:58:37'),
(12013, 'sv', 'home', 'Account Summary', 'Kontoöversikt', '2014-06-23 21:44:51'),
(12014, 'sv', 'home', 'Backlinks', 'Backlinks', '2014-06-23 21:44:51'),
(12015, 'sv', 'home', 'Directory Submission', 'Katalog submission', '2014-06-23 21:44:51'),
(39032, 'id', 'review', 'No review data available', 'Tidak ada data ulasan yang tersedia. <a href="seo-tools.php?menu_sec=review-manager">Tambahkan tautan ulasan</a> untuk mulai melacak ulasan dan rating Anda.', '2026-01-19 22:58:50'),
(39033, 'it', 'review', 'No review data available', 'Nessun dato sulle recensioni disponibile. <a href="seo-tools.php?menu_sec=review-manager">Aggiungi link alle recensioni</a> per iniziare a monitorare le tue recensioni e valutazioni.', '2026-01-19 22:58:50'),
(39034, 'ja', 'review', 'No review data available', 'レビューデータはありません。レビューと評価の追跡を開始するには、<a href="seo-tools.php?menu_sec=review-manager">レビューリンクを追加</a>してください。', '2026-01-19 22:58:50'),
(39035, 'ko', 'review', 'No review data available', '사용 가능한 리뷰 데이터가 없습니다. 리뷰 및 평점 추적을 시작하려면 <a href="seo-tools.php?menu_sec=review-manager">리뷰 링크를 추가</a>하세요.', '2026-01-19 22:58:50'),
(39036, 'lt', 'review', 'No review data available', 'Nėra atsiliepimų duomenų. <a href="seo-tools.php?menu_sec=review-manager">Pridėkite atsiliepimų nuorodas</a>, kad pradėtumėte stebėti savo atsiliepimus ir įvertinimus.', '2026-01-19 22:58:50'),
(39037, 'mk', 'review', 'No review data available', 'Нема достапни податоци за рецензии. <a href="seo-tools.php?menu_sec=review-manager">Додадете линкови за рецензии</a> за да започнете со следење на вашите рецензии и оцени.', '2026-01-19 22:58:50'),
(39038, 'nl', 'review', 'No review data available', 'Geen beoordelingsgegevens beschikbaar. <a href="seo-tools.php?menu_sec=review-manager">Voeg beoordelingslinks toe</a> om uw beoordelingen en ratings te gaan volgen.', '2026-01-19 22:58:50'),
(39039, 'no', 'review', 'No review data available', 'Ingen anmeldelsesdata tilgjengelig. <a href="seo-tools.php?menu_sec=review-manager">Legg til anmeldelseslenker</a> for å begynne å spore dine anmeldelser og vurderinger.', '2026-01-19 22:58:50'),
(39040, 'pl', 'review', 'No review data available', 'Brak dostępnych danych recenzji. <a href="seo-tools.php?menu_sec=review-manager">Dodaj linki do recenzji</a>, aby rozpocząć śledzenie swoich recenzji i ocen.', '2026-01-19 22:58:50'),
(39041, 'pt', 'review', 'No review data available', 'Nenhum dado de avaliações disponível. <a href="seo-tools.php?menu_sec=review-manager">Adicione links de avaliações</a> para começar a rastrear suas avaliações e classificações.', '2026-01-19 22:58:50'),
(39042, 'pt-br', 'review', 'No review data available', 'Nenhum dado de avaliações disponível. <a href="seo-tools.php?menu_sec=review-manager">Adicione links de avaliações</a> para começar a rastrear suas avaliações e classificações.', '2026-01-19 22:58:50'),
(39043, 'ro', 'review', 'No review data available', 'Nu sunt disponibile date despre recenzii. <a href="seo-tools.php?menu_sec=review-manager">Adăugați linkuri de recenzii</a> pentru a începe să urmăriți recenziile și ratingurile dumneavoastră.', '2026-01-19 22:58:50'),
(39044, 'ru', 'review', 'No review data available', 'Данные отзывов недоступны. <a href="seo-tools.php?menu_sec=review-manager">Добавьте ссылки на отзывы</a>, чтобы начать отслеживать свои отзывы и рейтинги.', '2026-01-19 22:58:50'),
(39045, 'sk', 'review', 'No review data available', 'Nie sú k dispozícii žiadne údaje o recenziách. <a href="seo-tools.php?menu_sec=review-manager">Pridajte odkazy na recenzie</a>, aby ste mohli začať sledovať svoje recenzie a hodnotenia.', '2026-01-19 22:58:50'),
(39046, 'sl', 'review', 'No review data available', 'Ni podatkov o mnenjih. <a href="seo-tools.php?menu_sec=review-manager">Dodajte povezave za mnenja</a>, da začnete slediti svojim mnenjem in ocenam.', '2026-01-19 22:58:50'),
(39047, 'sq', 'review', 'No review data available', 'Nuk ka të dhëna të rishikimeve në dispozicion. <a href="seo-tools.php?menu_sec=review-manager">Shtoni lidhje të rishikimeve</a> për të filluar gjurmimin e rishikimeve dhe vlerësimeve tuaja.', '2026-01-19 22:58:50'),
(38722, 'mk', 'review', 'Total Reviews', 'Вкупно рецензии', '2026-01-19 22:58:50'),
(38723, 'nl', 'review', 'Total Reviews', 'Totaal aantal beoordelingen', '2026-01-19 22:58:50'),
(38724, 'no', 'review', 'Total Reviews', 'Totalt antall anmeldelser', '2026-01-19 22:58:50'),
(38725, 'pl', 'review', 'Total Reviews', 'Łączna liczba recenzji', '2026-01-19 22:58:50'),
(38726, 'pt', 'review', 'Total Reviews', 'Avaliações totais', '2026-01-19 22:58:50'),
(38727, 'pt-br', 'review', 'Total Reviews', 'Avaliações totais', '2026-01-19 22:58:50'),
(38728, 'ro', 'review', 'Total Reviews', 'Total recenzii', '2026-01-19 22:58:50'),
(38729, 'ru', 'review', 'Total Reviews', 'Всего отзывов', '2026-01-19 22:58:50'),
(38730, 'sk', 'review', 'Total Reviews', 'Celkový počet recenzií', '2026-01-19 22:58:50'),
(38731, 'sl', 'review', 'Total Reviews', 'Skupaj mnenj', '2026-01-19 22:58:50'),
(38732, 'sq', 'review', 'Total Reviews', 'Totali i rishikimeve', '2026-01-19 22:58:50'),
(38733, 'sr', 'review', 'Total Reviews', 'Укупно рецензија', '2026-01-19 22:58:50'),
(38734, 'sv', 'review', 'Total Reviews', 'Totalt antal recensioner', '2026-01-19 22:58:50'),
(38735, 'sw', 'review', 'Total Reviews', 'Jumla ya Mapitio', '2026-01-19 22:58:50'),
(38736, 'th', 'review', 'Total Reviews', 'จำนวนรีวิวทั้งหมด', '2026-01-19 22:58:50'),
(12019, 'sv', 'home', 'Indexed', 'Indexerad', '2014-06-23 21:44:51'),
(12020, 'sv', 'home', 'Pages Indexed', 'Indexerade sidor', '2014-06-23 21:44:51'),
(12021, 'sv', 'home', 'Ranks', 'Rankningar', '2014-06-23 21:44:51'),
(12022, 'sv', 'home', 'SiteNameUrl', 'Webbplats/Adress', '2014-06-23 21:44:51'),
(12023, 'sv', 'home', 'Website Statistics', 'Statistik för Webbplats', '2014-06-23 21:44:51'),
(12024, 'sv', 'keyword', 'Crawling keyword', 'Crawling keyword', '2014-06-23 20:59:50'),
(12025, 'sv', 'keyword', 'Detailed Keyword Position Reports', 'Detaljerad positionerings-rapport', '2014-06-23 20:59:50'),
(12026, 'sv', 'keyword', 'Edit Keyword', 'Editera Keyword', '2014-06-23 20:59:50'),
(12027, 'sv', 'keyword', 'Graphical Keyword Position Reports', 'Grafisk positionerings-rapport', '2014-06-23 20:59:50'),
(12028, 'sv', 'keyword', 'Import Keywords', 'Importera Keywords', '2014-06-23 20:59:50'),
(12029, 'sv', 'keyword', 'Insert keywords separated with comma', 'Infoga keywords separerade med komma', '2014-06-23 20:59:50'),
(12030, 'sv', 'keyword', 'Keyword already exist', 'Keywordet finns redan', '2014-06-23 20:59:50'),
(12031, 'sv', 'keyword', 'Keyword Position Report', 'Positionerings-rapport för keyword', '2014-06-23 20:59:50'),
(12032, 'sv', 'keyword', 'New Keyword', 'Nytt Keyword', '2014-06-23 20:59:50'),
(12033, 'sv', 'keyword', 'not assigned to required search engines', 'inte tilldelad nödvändig sökmotor', '2014-06-23 20:59:50'),
(12034, 'sv', 'keyword', 'pleaseselecttool', 'Välj minst ett seo-verktyg', '2014-06-23 20:59:50'),
(12035, 'sv', 'keyword', 'Quick Keyword Position Checker', 'Snabbcheck av keyword-ranking', '2014-06-23 20:59:50'),
(12036, 'sv', 'keyword', 'results from ', 'resultat från', '2014-06-23 20:59:50'),
(12037, 'sv', 'keyword', 'Show All results', 'Visa alla resultat', '2014-06-23 20:59:50'),
(12038, 'sv', 'keyword', 'Successfully crawled keyword', 'Crawlade keywords', '2014-06-23 20:59:50'),
(12039, 'sv', 'keyword', 'to create new keywords', 'för att skapa nya keywords', '2014-06-23 20:59:50'),
(12040, 'sv', 'label', 'already exist', 'finns redan', '2014-06-23 21:01:30'),
(12041, 'sv', 'label', 'Authentication', 'Verifiering', '2014-06-23 21:01:30'),
(12042, 'sv', 'label', 'Author', 'Författare', '2014-06-23 21:01:30'),
(12043, 'sv', 'label', 'Brocken', 'Bruten', '2014-06-23 21:01:30'),
(12044, 'sv', 'label', 'Clear All', 'Rensa alla', '2014-06-23 21:01:30'),
(12045, 'sv', 'label', 'Click Here', 'Klicka här', '2014-06-23 21:01:30'),
(12046, 'sv', 'label', 'Comments', 'Kommentarer', '2014-06-23 21:01:30'),
(12047, 'sv', 'label', 'Cookie', 'Cookie', '2014-06-23 21:01:30'),
(12048, 'sv', 'label', 'Count', 'Räknare', '2014-06-23 21:01:30'),
(12049, 'sv', 'label', 'Cron', 'Cron', '2014-06-23 21:01:30'),
(12050, 'sv', 'label', 'Current', 'Nuvarande', '2014-06-23 21:01:30'),
(12051, 'sv', 'label', 'Daily', 'Daglig', '2014-06-23 21:01:30'),
(12052, 'sv', 'label', 'Description', 'Beskrivning', '2014-06-23 21:01:30'),
(12053, 'sv', 'label', 'Developers', 'Utvecklare', '2014-06-23 21:01:30'),
(12054, 'sv', 'label', 'Download', 'Ladda ner', '2014-06-23 21:01:30'),
(12055, 'sv', 'label', 'Exclude', 'Uteslut', '2014-06-23 21:01:30'),
(12056, 'sv', 'label', 'Fail', 'Misslyckades', '2014-06-23 21:01:30'),
(12057, 'sv', 'label', 'Include', 'Inkludera', '2014-06-23 21:01:30'),
(12058, 'sv', 'label', 'Installation', 'Installation', '2014-06-23 21:01:30'),
(12059, 'sv', 'label', 'Keywords', 'Keyword', '2014-06-23 21:01:30'),
(12060, 'sv', 'label', 'Monthly', 'Månatlig', '2014-06-23 21:01:30'),
(12061, 'sv', 'label', 'noactiveplugins', 'Inga aktiva Seo-tillägg hittades!', '2014-06-23 21:01:30'),
(12062, 'sv', 'label', 'Order By', 'Sortera på', '2014-06-23 21:01:30'),
(12063, 'sv', 'label', 'Plugin', 'Tillägg', '2014-06-23 21:01:30'),
(12064, 'sv', 'label', 'Port', 'Port', '2014-06-23 21:01:30'),
(12065, 'sv', 'label', 'Project', 'Projekt', '2014-06-23 21:01:30'),
(12066, 'sv', 'label', 'Proxy', 'Proxy', '2014-06-23 21:01:30'),
(12067, 'sv', 'label', 'Re-install', 'Återinstallera', '2014-06-23 21:01:30'),
(12068, 'sv', 'label', 'Reference', 'Referens', '2014-06-23 21:01:30'),
(12069, 'sv', 'label', 'Referer', 'Referer', '2014-06-23 21:01:30'),
(12070, 'sv', 'label', 'Report Type', 'Rapporttyp', '2014-06-23 21:01:30'),
(12071, 'sv', 'label', 'Score', 'Poäng', '2014-06-23 21:01:30'),
(12072, 'sv', 'label', 'Select All', 'Markera Alla', '2014-06-23 21:01:30'),
(12073, 'sv', 'label', 'Sponsors', 'Sponsorer', '2014-06-23 21:01:30'),
(12074, 'sv', 'label', 'Subject', 'Ämne', '2014-06-23 21:01:30'),
(12075, 'sv', 'label', 'Success', 'Lyckades', '2014-06-23 21:01:30'),
(12076, 'sv', 'label', 'Syntax', 'Syntax', '2014-06-23 21:01:30'),
(12077, 'sv', 'label', 'Theme', 'Tema', '2014-06-23 21:01:30'),
(12078, 'sv', 'label', 'Title', 'Titel', '2014-06-23 21:01:30'),
(12079, 'sv', 'label', 'Total Results', 'Totala Resultat', '2014-06-23 21:01:30'),
(12080, 'sv', 'label', 'translation by', 'översättning av', '2014-06-23 21:01:30'),
(12081, 'sv', 'label', 'Translators', 'Översättare', '2014-06-23 21:01:30'),
(12082, 'sv', 'label', 'Updated', 'Uppdaterad', '2014-06-23 21:01:30'),
(12083, 'sv', 'label', 'Upgrade', 'Uppgradera', '2014-06-23 21:01:30'),
(12084, 'sv', 'label', 'User agent', 'User Agent', '2014-06-23 21:01:30'),
(12085, 'sv', 'label', 'Version', 'Version', '2014-06-23 21:01:30'),
(12086, 'sv', 'label', 'View Reports', 'Se Rapporter', '2014-06-23 21:01:30'),
(12087, 'sv', 'label', 'wantproceed', 'Vill du verkligen fortsätta?', '2014-06-23 21:01:30'),
(12088, 'sv', 'label', 'Weekly', 'Veckolig', '2014-06-23 21:01:30'),
(12089, 'sv', 'login', 'Confirm Password', 'Bekräfta Lösenord', '2014-06-23 21:03:56'),
(12090, 'sv', 'login', 'Create my account', 'Skapa mitt konto', '2014-06-23 21:03:56'),
(12091, 'sv', 'login', 'Create New Account', 'Skapa nytt konto', '2014-06-23 21:03:56'),
(12092, 'sv', 'login', 'Email', 'E-postadress', '2014-06-23 21:03:56'),
(12093, 'sv', 'login', 'emailexist', 'E-postadressen finns redan', '2014-06-23 21:03:56'),
(12094, 'sv', 'login', 'Enter the code as it is shown', 'Skriv in koden exakt som den visas', '2014-06-23 21:03:56'),
(12095, 'sv', 'login', 'First Name', 'Förnamn', '2014-06-23 21:03:56'),
(12096, 'sv', 'login', 'Forgot password?', 'Glömt lösenord?', '2014-06-23 21:03:56'),
(12097, 'sv', 'login', 'internal_error_mail_send', 'Ett internt fel inträffade när e-postmeddelandet skickades!', '2014-06-23 21:03:56'),
(12098, 'sv', 'login', 'Last Name', 'Efternamn', '2014-06-23 21:03:56'),
(12099, 'sv', 'login', 'Login', 'Login', '2014-06-23 21:03:56'),
(12100, 'sv', 'login', 'Login incorrect', 'Felaktig login', '2014-06-23 21:03:56'),
(12101, 'sv', 'login', 'newaccountsuccess', 'Nytt konto skapat!', '2014-06-23 21:03:56'),
(12102, 'sv', 'login', 'Password', 'Lösenord', '2014-06-23 21:03:56'),
(12103, 'sv', 'login', 'Password incorrect', 'Fel lösenord', '2014-06-23 21:03:56'),
(12104, 'sv', 'login', 'password_reset_success_message', 'Ditt lösenord har nollställts och ett bekräftelse-mejl har skickats till din e-postadress. <br>Kontrollera din epost för att få det nya lösenordet', '2014-06-23 21:03:56'),
(12105, 'sv', 'login', 'Register', 'Registrera', '2014-06-23 21:03:56'),
(12106, 'sv', 'login', 'Request Password', 'Glömt lösenord?', '2014-06-23 21:03:56'),
(12107, 'sv', 'login', 'Sign in to your account', 'Logga in på ditt konto', '2014-06-23 21:03:56'),
(12108, 'sv', 'login', 'to login to your account', 'för att logga in på ditt konto', '2014-06-23 21:03:56'),
(12109, 'sv', 'login', 'User inactive', 'Inaktiv användare', '2014-06-23 21:03:56'),
(12110, 'sv', 'login', 'user_email_not_exist', 'Användarens e-postadress fanns ej i systemet.', '2014-06-23 21:03:56'),
(12111, 'sv', 'login', 'Username', 'Användarnman', '2014-06-23 21:03:56'),
(12112, 'sv', 'login', 'usernameexist', 'Användarnamnet existerar redan', '2014-06-23 21:03:56'),
(12113, 'sv', 'login', 'Your account password is resetted and new password is', 'Ditt kontolösenord har nollställts och det nya lösenordet är', '2014-06-23 21:03:56'),
(12114, 'sv', 'login', 'Your Password Reset Failed', 'Nollställningen av ditt lösenord misslyckades', '2014-06-23 21:03:56'),
(12115, 'sv', 'login', 'Your Password Reset Successfully', 'Ditt lösenord har nollställts', '2014-06-23 21:03:56'),
(12116, 'sv', 'panel', 'About Us', 'Om Oss', '2014-06-23 21:05:11'),
(12117, 'sv', 'panel', 'Add following command to your cron tab', 'Lägg till följande instruktioner i din cron tab', '2014-06-23 21:05:11'),
(12118, 'sv', 'panel', 'alsocheckfollowlink', 'Se även följande länkar för ytterligare information.', '2014-06-23 21:05:11'),
(12119, 'sv', 'panel', 'Archived Reports', 'Arkiverade Rapporter', '2014-06-23 21:05:11'),
(12120, 'sv', 'panel', 'Check Directory', 'Kontrollera Katalog', '2014-06-23 21:05:11'),
(12121, 'sv', 'panel', 'Crawl Log Manager', 'Logg-hanterare', '2014-06-23 21:05:11'),
(12122, 'sv', 'panel', 'Cron Command', 'Cron Command', '2014-06-23 21:05:11'),
(12123, 'sv', 'panel', 'Directory Manager', 'Kataloghanterare', '2014-06-23 21:05:11'),
(12124, 'sv', 'panel', 'Edit My Profile', 'Ändra Min Profil', '2014-06-23 21:05:11'),
(12125, 'sv', 'panel', 'Edit Project', 'Editera Projekt', '2014-06-23 21:05:11'),
(12126, 'sv', 'panel', 'Existing', 'Existerande', '2014-06-23 21:05:11'),
(12127, 'sv', 'panel', 'Import Proxy', 'Importera Proxy', '2014-06-23 21:05:11'),
(12128, 'sv', 'panel', 'Log Manager', 'Logghanterare', '2014-06-23 21:05:11'),
(12129, 'sv', 'panel', 'My Profile', 'Min Profil', '2014-06-23 21:05:11'),
(12130, 'sv', 'panel', 'New Project', 'Nytt Projekt', '2014-06-23 21:05:11'),
(12131, 'sv', 'panel', 'New Proxy', 'Ny Proxy', '2014-06-23 21:05:11'),
(12132, 'sv', 'panel', 'New User', 'Ny Användare', '2014-06-23 21:05:11'),
(12133, 'sv', 'panel', 'New Website', 'Ny Webbplats', '2014-06-23 21:05:11'),
(12134, 'sv', 'panel', 'Proxy Manager', 'Proxyhanterare', '2014-06-23 21:05:11'),
(12135, 'sv', 'panel', 'Proxy Perfomance', 'Proxy-prestanda', '2014-06-23 21:05:11'),
(12136, 'sv', 'panel', 'Proxy Settings', 'Proxy-inställningar', '2014-06-23 21:05:11'),
(12137, 'sv', 'panel', 'Report Generation Manager', 'Hanterare för rapportgenerering', '2014-06-23 21:05:11'),
(12138, 'sv', 'panel', 'Report Settings', 'Rapport-inställningar', '2014-06-23 21:05:11'),
(12139, 'sv', 'panel', 'Reports Manager', 'Rapport-hanterare', '2014-06-23 21:05:11'),
(12140, 'sv', 'panel', 'Schedule Reports', 'Schemalägg rapporter', '2014-06-23 21:05:11'),
(12141, 'sv', 'panel', 'Search Engine Manager', 'Sökmotor-hanterare', '2014-06-23 21:05:11'),
(12142, 'sv', 'panel', 'Seo Plugins Manager', 'SEO Plugin-hanterare', '2014-06-23 21:05:11'),
(12143, 'sv', 'panel', 'Seo Tools Manager', 'SEO Verktyg-hanterare', '2014-06-23 21:05:11'),
(12144, 'sv', 'panel', 'System Settings', 'Systeminställningar', '2014-06-23 21:05:11'),
(12145, 'sv', 'panel', 'Themes Manager', 'Temahanterare', '2014-06-23 21:05:11'),
(12146, 'sv', 'panel', 'User Manager', 'Användarehantering', '2014-06-23 21:05:11'),
(12147, 'sv', 'panel', 'Valid', 'Giltig', '2014-06-23 21:05:11'),
(12148, 'sv', 'panel', 'Website Manager', 'Webbplatshanterare', '2014-06-23 21:05:11'),
(12149, 'sv', 'plugin', 'Download Seo Panel Plugins', 'Ladda ner tillägg för Seo Panel', '2014-06-23 21:05:58'),
(12150, 'sv', 'plugin', 'Edit Seo Plugin', 'Editera Seo-tillägg', '2014-06-23 21:05:58'),
(12151, 'sv', 'plugin', 'Plugin Name', 'Tilläggets namn', '2014-06-23 21:05:58'),
(12152, 'sv', 'plugin', 'Seo Plugin Details', 'Information om tillägg', '2014-06-23 21:05:58'),
(12153, 'sv', 'proxy', 'Edit Proxy', 'Editera proxy', '2014-06-23 21:06:55'),
(12154, 'sv', 'proxy', 'enterproxynote', 'Lägg till en proxy per rad och i följande format.', '2014-06-23 21:06:55'),
(12155, 'sv', 'proxy', 'Proxy Password', 'Lösenord för Proxy', '2014-06-23 21:06:55'),
(12156, 'sv', 'proxy', 'Proxy Username', 'Användarnamn Proxy', '2014-06-23 21:06:55'),
(12157, 'sv', 'proxy', 'Proxyalreadyexist', 'Proxyn finns redan!', '2014-06-23 21:06:55'),
(12158, 'sv', 'proxy', 'proxysyntax', 'Proxy Värdnamn, Proxy Port, Proxy Användarnamn, Proxy Lösenord', '2014-06-23 21:06:55'),
(12159, 'sv', 'proxy', 'Request Count', 'Antal förfrågningar', '2014-06-23 21:06:55'),
(12160, 'sv', 'rank', 'enterurlproceed', 'Lägg till en adress <b>per linje</b>. Klicka på <b>fortsätt</b> för att kontrollera Google och Alexa rank.', '2014-06-23 21:07:33'),
(12161, 'sv', 'rank', 'Google and Alexa Rank Reports', 'Google och Alexa Ranking-Rapporter', '2014-06-23 21:07:33'),
(12162, 'sv', 'rank', 'Saved rank results of', 'Sparade ranking-resultat för', '2014-06-23 21:07:33'),
(12163, 'sv', 'report', '2 Days', '2 Dagar', '2014-06-23 21:08:05'),
(12164, 'sv', 'report', 'Email notification', 'Tillkännagivande via epost.', '2014-06-23 21:08:05'),
(12165, 'sv', 'report', 'keywordnumbercheckedcronnote', 'Märk: Värdet 0 betyder att alla keyword ska kontrolleras.', '2014-06-23 21:08:05'),
(12166, 'sv', 'report', 'Next report generation time', 'Tid för generering av nästa rapport.', '2014-06-23 21:08:05'),
(12167, 'sv', 'report', 'Reports generation interval', 'Intervall för generering av rapporter.', '2014-06-23 21:08:05'),
(12168, 'sv', 'report', 'reportsettingssaved', 'Rapportinställningar sparade!', '2014-06-23 21:08:05'),
(12169, 'sv', 'report', 'sheduledsuccessfully', 'Schemainställningar sparade!', '2014-06-23 21:08:05'),
(12170, 'sv', 'reports', 'report_email_body_text1', 'Dina rapporter har skapats. Vänligen se bifogade rapporter.', '2014-06-23 21:08:32'),
(12171, 'sv', 'reports', 'report_email_body_text2', 'Om de ovanstående rapporterna inte skapats korrekt, vänligen [LOGIN_LINK] för att se repporten från dina kontosidor.', '2014-06-23 21:08:32'),
(12172, 'sv', 'reports', 'report_email_subject', 'Dina SEO-rapporter har skapats.', '2014-06-23 21:08:32'),
(12173, 'sv', 'searchengine', 'max_results', 'Max antal resultat', '2014-06-01 00:09:18'),
(12174, 'sv', 'searchengine', 'no_of_results_page', 'Antal resultat per sida', '2014-06-01 00:09:18'),
(12175, 'sv', 'settings', 'allsettingssaved', 'Inställningar sparade!', '2014-06-23 21:13:43'),
(12176, 'sv', 'settings', 'Check for Updates', 'Leta efter uppdateringar.', '2014-06-23 21:13:43'),
(12177, 'sv', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Kontrollera med annan proxy om crawling misslyckas. ', '2014-06-23 21:13:43'),
(12178, 'sv', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Donera $100</b> och bli <b>Seo Panel-sponsor</b>.', '2014-06-23 21:13:43'),
(12179, 'sv', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Aktivera HTTP-proxytunnel.', '2014-06-23 21:13:43'),
(12180, 'sv', 'settings', 'entersmtpdetails', 'Konfigurera vänligen SMTP för epost.', '2014-06-23 21:13:43'),
(12181, 'sv', 'settings', 'getallpluginfree', 'Få även alla <b>tillägg</b> vi utvecklar <b>gratis!</b>', '2014-06-23 21:13:43'),
(12182, 'sv', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deaktivera proxy när crawling misslyckas', '2014-06-23 21:13:43'),
(12183, 'sv', 'settings', 'SA_CRAWL_DELAY_TIME', 'Fördröjning mellan varje sida', '2014-06-23 21:13:43'),
(12184, 'sv', 'settings', 'SA_MAX_NO_PAGES', 'Maximalt antal sidor per webbplats.', '2014-06-23 21:13:43'),
(12185, 'sv', 'settings', 'seopanel_description', 'Seo Panel är en helt kostnadsfri kontrollpanel för att hantera sökmotoroptimeringen av din webbplats. Seo Panel innehåller massvis med användbara verktyg för att följa och förbättra din webbplats positionering i sökmotorerna. Seo Panel baseras på öppen källkod och låter även användaren använda egenutvecklade tillägg.', '2014-06-23 21:13:43'),
(12186, 'sv', 'settings', 'seopanel_title', 'Seo Panel: Världens första kontrollpanel för seo helt baserad på öppen källkod. ', '2014-06-23 21:13:43'),
(12187, 'sv', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Tillåter användare att schemalägga rapporter', '2014-06-23 21:13:43'),
(12188, 'sv', 'settings', 'SP_API_KEY', 'API-nyckel för Seo Panel', '2014-06-23 21:13:43'),
(12189, 'sv', 'settings', 'SP_CRAWL_DELAY', 'Fördröjning i sekunder mellan varje spider crawl', '2014-06-23 21:13:43'),
(12190, 'sv', 'settings', 'SP_DEFAULTLANG', 'Standardspråk', '2014-06-23 21:13:43'),
(12191, 'sv', 'settings', 'SP_DESCRIPTION', 'Beskrivning av Seo Panel', '2014-06-23 21:13:43'),
(12192, 'sv', 'settings', 'SP_ENABLE_PROXY', 'Använd proxy', '2014-06-23 21:13:43'),
(12193, 'sv', 'settings', 'SP_HOTLINKING', 'Hotlink-protection aktiverad', '2014-06-23 21:13:43'),
(12194, 'sv', 'settings', 'SP_KEYWORDS', 'Keywords för Seo Panel', '2014-06-23 21:13:43'),
(12195, 'sv', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Antal keywords som kontrolleras vid varje cron-körning', '2014-06-23 21:13:43'),
(12196, 'sv', 'settings', 'SP_PAGINGNO', 'Antal inlägg per sida', '2014-06-23 21:13:43'),
(12197, 'sv', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Crawla en sidas relativa länkar', '2014-06-23 21:13:43'),
(12198, 'sv', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Aktivera epost-avisering av rapporter', '2014-06-23 21:13:43'),
(12199, 'sv', 'settings', 'SP_SMTP_HOST', 'SMTP-host', '2014-06-23 21:13:43'),
(12200, 'sv', 'settings', 'SP_SMTP_MAIL', 'Aktivera SMTP', '2014-06-23 21:13:43'),
(12201, 'sv', 'settings', 'SP_SMTP_PASSWORD', 'Lösenord SMTP ', '2014-06-23 21:13:43'),
(12202, 'sv', 'settings', 'SP_SMTP_PORT', 'SMTP Port', '2014-06-23 21:13:43'),
(12203, 'sv', 'settings', 'SP_SMTP_USERNAME', 'Användarnamn SMTP', '2014-06-23 21:13:43'),
(12204, 'sv', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Intervall för generering av systemrapport', '2014-06-23 21:13:43'),
(12205, 'sv', 'settings', 'SP_TIME_ZONE', 'Tidszon', '2014-06-23 21:13:43'),
(12206, 'sv', 'settings', 'SP_TITLE', 'Titel för Seo Panel', '2014-06-23 21:13:43'),
(12207, 'sv', 'settings', 'SP_USER_AGENT', 'User Agent', '2014-06-23 21:13:43'),
(12208, 'sv', 'settings', 'SP_USER_GEN_REPORT', 'Tillått användare generera rapporter', '2014-06-23 21:13:43'),
(12209, 'sv', 'settings', 'SP_USER_REGISTRATION', 'Interface för registrering av användare', '2014-06-23 21:13:43'),
(12210, 'sv', 'settings', 'syssettingssaved', 'Systeminställningar sparade!', '2014-06-23 21:13:43'),
(12211, 'sv', 'settings', 'versionnotuptodatemsg', 'Din version av Seo Panel behöver uppdateras. <br> Vänligen ladda ner den senaste versionen', '2014-06-23 21:13:43'),
(12212, 'sv', 'settings', 'Your Seo Panel installation is up to date', 'Du använder en senaste versionen av Seo Panel.', '2014-06-23 21:13:43'),
(37032, 'tl', 'siteauditor', 'Check google pagerank of pages', 'Check Google pagerank of Mga Pahina', '2025-11-21 01:24:52'),
(12215, 'de', 'label', 'Cookie', 'Cookie', '2021-01-06 15:13:08'),
(12216, 'de', 'label', 'Fail', 'Fehlgeschlagen', '2021-01-06 15:13:08'),
(12217, 'de', 'label', 'Order By', 'Sortieren nach', '2021-01-06 15:13:08'),
(12218, 'de', 'label', 'Reference', 'Referenz', '2021-01-06 15:13:08'),
(12219, 'de', 'label', 'Referer', 'Referer', '2021-01-06 15:13:08'),
(12220, 'de', 'label', 'Subject', 'Betreff', '2021-01-06 15:13:08'),
(12221, 'de', 'label', 'Success', 'Erfolg', '2021-01-06 15:13:08'),
(12222, 'de', 'label', 'User agent', 'User Agent', '2021-01-06 15:13:08'),
(12223, 'de', 'log', 'Clear All Logs', 'Alle Logdaten löschen', '2021-01-06 15:13:38'),
(12224, 'de', 'log', 'Crawl Log Details', 'Log Details durchsuchen', '2021-01-06 15:13:38'),
(12225, 'de', 'log', 'Post Fields', 'Beitragsfelder', '2021-01-06 15:13:38'),
(12226, 'de', 'panel', 'Crawl Log Manager', 'Crawling Log Manager', '2023-01-03 19:44:32'),
(12227, 'de', 'panel', 'Log Manager', 'Log Manager', '2023-01-03 19:44:32'),
(12228, 'de', 'panel', 'Proxy Perfomance', 'Proxy Leistung', '2023-01-03 19:44:32'),
(12229, 'de', 'proxy', 'Request Count', 'Anzahl Anfragen', '2021-01-06 15:21:00'),
(12230, 'de', 'settings', 'SP_TIME_ZONE', 'Zeitzone', '2021-01-08 13:28:43'),
(12231, 'sv', 'log', 'Clear All Logs', 'Nollställ Alla Loggar', '2014-06-23 21:02:19'),
(12232, 'sv', 'log', 'Crawl Log Details', 'Genomsök Logg-detaljer', '2014-06-23 21:02:19'),
(12233, 'sv', 'log', 'Post Fields', 'Inmatningsfält', '2014-06-23 21:02:19'),
(12234, 'sv', 'saturation', 'clickproceedsaturation', 'Lägg till adresser <b>en per rad</b>. Klicka på <b>Fortsätt</b> för att kontrollera sökmotor-saturation.', '2014-06-23 21:10:30'),
(12235, 'sv', 'saturation', 'GenerateSaturationReports', 'Generera rapport för sökmotor-saturation', '2014-06-23 21:10:30'),
(12236, 'sv', 'saturation', 'Quick Search Engine Saturation Checker', 'Snabb saturations-kontroll', '2014-06-23 21:10:30'),
(12237, 'sv', 'saturation', 'Saved Search Engine Saturation results of', 'Sparade saturations-resultat för', '2014-06-23 21:10:30'),
(12238, 'sv', 'saturation', 'Search Engine Saturation Reports', 'Rapporter för sökmotor-saturation', '2014-06-23 21:10:30'),
(12239, 'sv', 'seotools', 'Auditor Projects', 'Auditor Projekt', '2014-06-23 21:11:51'),
(12240, 'sv', 'seotools', 'Auditor Reports', 'Auditor Rapporter', '2014-06-23 21:11:51'),
(12241, 'sv', 'seotools', 'Auditor Settings', 'Auditor Inställningar', '2014-06-23 21:11:51'),
(12242, 'sv', 'seotools', 'Automatic Submission', 'Automatiska Submissions', '2014-06-23 21:11:51'),
(12243, 'sv', 'seotools', 'backlink-checker', 'Backlink-checker', '2014-06-23 21:11:51'),
(12244, 'sv', 'seotools', 'Backlinks Reports', 'Backlink-rapporter', '2014-06-23 21:11:51'),
(12245, 'sv', 'seotools', 'Check Submission Status', 'Kontrollera submission-status', '2014-06-23 21:11:51'),
(12246, 'sv', 'seotools', 'clickgeneratereports', 'Klicka på <b>fortsätt</b> för att generera rapporter', '2014-06-23 21:11:51'),
(12247, 'sv', 'seotools', 'Detailed Position Reports', 'Detaljerad rankningsrapport', '2014-06-23 21:11:51'),
(12248, 'sv', 'seotools', 'directory-submission', 'Katalog-submission', '2014-06-23 21:11:51'),
(12249, 'sv', 'seotools', 'Featured Submission', 'Huvud-submission', '2014-06-23 21:11:51'),
(12250, 'sv', 'seotools', 'Generate Backlinks Reports', 'Generera backlink-rapport', '2014-06-23 21:11:51'),
(12251, 'sv', 'seotools', 'Generate Keyword Reports', 'Generera keyword-rapport', '2014-06-23 21:11:51'),
(12252, 'sv', 'seotools', 'Generate Rank Reports', 'Generera rankningsrapport', '2014-06-23 21:11:51'),
(12253, 'sv', 'seotools', 'Generate Saturation Reports', 'Generera saturerings-rapport', '2014-06-23 21:11:51'),
(12254, 'sv', 'seotools', 'Google Sitemap Generator', 'Google Sitemap-Genererator', '2014-06-23 21:11:51'),
(12255, 'sv', 'seotools', 'Graphical Position Reports', 'Grafisk rankningsrapport', '2014-06-23 21:11:51'),
(12256, 'sv', 'seotools', 'Import Project Links', 'Importera projekt-länkar', '2014-06-23 21:11:51'),
(12257, 'sv', 'seotools', 'Keyword Position Summary', 'Sammanfattad positionsrapport för keyword', '2014-06-23 21:11:51'),
(12258, 'sv', 'seotools', 'keyword-position-checker', 'Positionscheck för keyword', '2014-06-23 21:11:51'),
(12259, 'sv', 'seotools', 'Keywords Manager', 'Keyword-hanterare', '2014-06-23 21:11:51'),
(12260, 'sv', 'seotools', 'Quick Backlinks Checker', 'Snabb backlink-check', '2014-06-23 21:11:51'),
(12261, 'sv', 'seotools', 'Quick Position Checker', 'Snabb positions-check', '2014-06-23 21:11:51'),
(12262, 'sv', 'seotools', 'Quick Rank Checker', 'Snabb ranknings-check', '2014-06-23 21:11:51'),
(12263, 'sv', 'seotools', 'Quick Saturation Checker', 'Snabb saturations-check', '2014-06-23 21:11:51'),
(12264, 'sv', 'seotools', 'Rank Reports', 'Ranknings-rapporter', '2014-06-23 21:11:51'),
(12265, 'sv', 'seotools', 'rank-checker', 'Ranknings-checker', '2014-06-23 21:11:51'),
(12266, 'sv', 'seotools', 'Saturation Reports', 'Saturationssrapporter', '2014-06-23 21:11:51'),
(12267, 'sv', 'seotools', 'saturation-checker', 'Sökmotor-saturation', '2014-06-23 21:11:51'),
(12268, 'sv', 'seotools', 'site-auditor', 'Site Auditor', '2014-06-23 21:11:51'),
(12269, 'sv', 'seotools', 'sitemap-generator', 'Sitemap Generator', '2014-06-23 21:11:51'),
(12270, 'sv', 'seotools', 'Skipped Directories', 'Skippade kataloger', '2014-06-23 21:11:51'),
(12271, 'sv', 'seotools', 'Submission Reports', 'Submission-rapporter', '2014-06-23 21:11:51'),
(12272, 'sv', 'seotools', 'User Access', 'Användaraccess', '2014-06-23 21:11:51'),
(12273, 'sv', 'siteauditor', 'Anchor', 'Ankare', '2014-06-23 21:15:14'),
(12274, 'sv', 'siteauditor', 'anylinkcontainabovelinks', 'Alla länkar vilka innehåller länkarna ovan exkluderas från rapporter.', '2014-06-23 21:15:14'),
(12275, 'sv', 'siteauditor', 'anylinkcontainexcludesitemap', 'Alla länkar vilka innehåller länkarna ovan exkluderas från sitemaps.', '2014-06-23 21:15:14'),
(12276, 'sv', 'siteauditor', 'Check backlinks of pages', 'Kontrollera backlinks för sidor', '2014-06-23 21:15:14'),
(12277, 'sv', 'siteauditor', 'Check broken links in a page', 'Kontrollera en sidas brutna länkar', '2014-06-23 21:15:14'),
(12278, 'sv', 'siteauditor', 'Check google pagerank of pages', 'Kontrollera Google Page Rank av sidor', '2014-06-23 21:15:14'),
(12279, 'sv', 'siteauditor', 'Check pages indexed or not', 'Kontrollera huruvida sidor är indexerade', '2014-06-23 21:15:14'),
(12280, 'sv', 'siteauditor', 'Check Score', 'Kontrollera poäng', '2014-06-23 21:15:14'),
(12281, 'sv', 'siteauditor', 'checkborckenlinkwait', 'Kontroll av brutna länkar gör att projektet tar längre tid att köra', '2014-06-23 21:15:14'),
(12282, 'sv', 'siteauditor', 'Completed project execution', 'Utförd projekt-körning', '2014-06-23 21:15:14'),
(12283, 'sv', 'siteauditor', 'Crawled', 'Crawlad', '2014-06-23 21:15:14'),
(12284, 'sv', 'siteauditor', 'Crawled Pages', 'Crawlade sidor', '2014-06-23 21:15:14'),
(12285, 'sv', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'Crawlad! Väntar på att crawla nästa sida. ', '2014-06-23 21:15:14'),
(12286, 'sv', 'siteauditor', 'Crawling Page', 'Crawlar Sida', '2014-06-23 21:15:14');
INSERT INTO `texts` VALUES
(12287, 'sv', 'siteauditor', 'Duplicate Description', 'Duplicerad Beskivning', '2014-06-23 21:15:14'),
(12288, 'sv', 'siteauditor', 'Duplicate Keywords', 'Duplicerade Keywords', '2014-06-23 21:15:14'),
(12289, 'sv', 'siteauditor', 'Duplicate Title', 'Duplicerad Titel', '2014-06-23 21:15:14'),
(12290, 'sv', 'siteauditor', 'Exclude links', 'Exkludera Länkar', '2014-06-23 21:15:14'),
(12291, 'sv', 'siteauditor', 'Execute with cron', 'Kör med cron', '2014-06-23 21:15:14'),
(12292, 'sv', 'siteauditor', 'External', 'Externa', '2014-06-23 21:15:14'),
(12293, 'sv', 'siteauditor', 'External Links', 'Externa länkar', '2014-06-23 21:15:14'),
(12294, 'sv', 'siteauditor', 'Import Project Links', 'Importera projekt-länkar', '2014-06-23 21:15:14'),
(12295, 'sv', 'siteauditor', 'Insert links separated with comma', 'Lägg till länkar seperarerade med komma', '2014-06-23 21:15:14'),
(12296, 'sv', 'siteauditor', 'insertlinkssepcoma', 'Lägg till länkar seperarerade med komma för att exkludera "infinite links" från rapporter', '2014-06-23 21:15:14'),
(12297, 'sv', 'siteauditor', 'Link Reports', 'Länk-rapporter', '2014-06-23 21:15:14'),
(12298, 'sv', 'siteauditor', 'Link Title', 'Länktitel', '2014-06-23 21:15:14'),
(12299, 'sv', 'siteauditor', 'Maximum number of pages to be checked', 'Max antal sidor att kontrollera', '2014-06-23 21:15:14'),
(12300, 'sv', 'siteauditor', 'Maximum Pages', 'Max antal sidor', '2014-06-23 21:15:14'),
(12301, 'sv', 'siteauditor', 'No active projects found', 'Inga aktiva projekt hittades', '2014-06-23 21:15:14'),
(12302, 'sv', 'siteauditor', 'Nofollow', 'Nofollow', '2014-06-23 21:15:14'),
(12303, 'sv', 'siteauditor', 'Number of pages is greater than', 'Antalet sidor är större än', '2014-06-23 21:15:14'),
(12304, 'sv', 'siteauditor', 'Number of pages should be greater than', 'Antalet sidor ska vara större än', '2014-06-23 21:15:14'),
(12305, 'sv', 'siteauditor', 'Page Details', 'Detaljerad sidinformation', '2014-06-23 21:15:14'),
(12306, 'sv', 'siteauditor', 'Page Link', 'Sidlänk', '2014-06-23 21:15:14'),
(12307, 'sv', 'siteauditor', 'Page Links', 'Sidlänkar', '2014-06-23 21:15:14'),
(12308, 'sv', 'siteauditor', 'Pages Found', 'Funna sidor', '2014-06-23 21:15:14'),
(12309, 'sv', 'siteauditor', 'pressescapetostopexecution', 'Tryck <b>escape</b> för att stoppa körning av skript', '2014-06-23 21:15:14'),
(12310, 'sv', 'siteauditor', 'Project Summary', 'Sammanfattning av projekt', '2014-06-23 21:15:14'),
(12311, 'sv', 'siteauditor', 'Project Url', 'Projekt Url', '2014-06-23 21:15:14'),
(12312, 'sv', 'siteauditor', 'projectalreadyexist', 'Ett projekt för den här webbplatsen existerar redan', '2014-06-23 21:15:14'),
(12313, 'sv', 'siteauditor', 'Recheck Pages', 'Återkontrollera sidor', '2014-06-23 21:15:14'),
(12314, 'sv', 'siteauditor', 'Report Summary', 'Rapportsammanfattning', '2014-06-23 21:15:14'),
(12315, 'sv', 'siteauditor', 'Run Project', 'Kör Projekt', '2014-06-23 21:15:14'),
(12316, 'sv', 'siteauditor', 'should start with', 'ska börja med', '2014-06-23 21:15:14'),
(12317, 'sv', 'siteauditor', 'Site Auditor Settings', 'Site Auditor-inställningar', '2014-06-23 21:15:14'),
(12318, 'sv', 'siteauditor', 'Store all links found in a page', 'Poängsätt alla länkar som hittad på en sida', '2014-06-23 21:15:14'),
(12319, 'sv', 'siteauditor', 'The page description length is not between', 'Sidans beskrivningslängd är inte mellan', '2014-06-23 21:15:14'),
(12320, 'sv', 'siteauditor', 'The page is brocken', 'Sidan fungerar ej', '2014-06-23 21:15:14'),
(12321, 'sv', 'siteauditor', 'The page is having exellent number of backlinks in', 'Sidan har ett perfekt antal backlinks', '2014-06-23 21:15:14'),
(12322, 'sv', 'siteauditor', 'The page is having exellent pagerank', 'Sidan har perfekt Page Rank', '2014-06-23 21:15:14'),
(12323, 'sv', 'siteauditor', 'The page is having good number of backlinks in', 'Sidan har ett bra antal backlinks', '2014-06-23 21:15:14'),
(12324, 'sv', 'siteauditor', 'The page is having good pagerank', 'Sidan har en bra Page Rank', '2014-06-23 21:15:14'),
(12325, 'sv', 'siteauditor', 'The page is having poor pagerank', 'Sidan har en dålig Page Rank', '2014-06-23 21:15:14'),
(12326, 'sv', 'siteauditor', 'The page is having very good pagerank', 'Sidan har en mycket god Page Rank', '2014-06-23 21:15:14'),
(12327, 'sv', 'siteauditor', 'The page is not having backlinks in', 'Sidan har inga backlinks', '2014-06-23 21:15:14'),
(12328, 'sv', 'siteauditor', 'The page is not indexed in', 'Sidan är inte indexerad', '2014-06-23 21:15:14'),
(12329, 'sv', 'siteauditor', 'The page keywords length is not between', 'Sidans keyword-längd är inte mellan', '2014-06-23 21:15:14'),
(12330, 'sv', 'siteauditor', 'The page title length is not between', 'Sidans titellängd är inte mellan', '2014-06-23 21:15:14'),
(12331, 'sv', 'siteauditor', 'The total number of links in page is greater than', 'Totala antalet länkar på sidan är större än', '2014-06-23 21:15:14'),
(12332, 'sv', 'siteauditor', 'to run project again if you stopped execution', 'för att återigen köra projektet i det fall det avbröts', '2014-06-23 21:15:14'),
(12333, 'sv', 'siteauditor', 'to view the reports', 'för att se rapporter', '2014-06-23 21:15:14'),
(12334, 'sv', 'siteauditor', 'Total Links', 'Totalt antal länkar', '2014-06-23 21:15:14'),
(12335, 'sv', 'siteauditor', 'totallinksgreaterallowed', 'Totala antalet länkar kommer överstiga antalet tillåtna länkar per projekt', '2014-06-23 21:15:14'),
(12336, 'sv', 'sitemap', 'Change frequency', 'Uppdateringsfrekvens', '2014-06-23 21:16:00'),
(12337, 'sv', 'sitemap', 'clickproceedsitemap', 'Klicka på <br>Fortsätt</b> för att skapa att skapa sitemap-fil', '2014-06-23 21:16:00'),
(12338, 'sv', 'sitemap', 'Download sitemap file from', 'Ladda ner sitemap från', '2014-06-23 21:16:00'),
(12339, 'sv', 'sitemap', 'Exclude Url', 'Exkludera url', '2014-06-23 21:16:00'),
(12340, 'sv', 'sitemap', 'processtaketime', 'Tiden för körning beror på antalet länkar på din sida. Vänligen vänta på sitemap-filerna', '2014-06-23 21:16:00'),
(12341, 'sv', 'sitemap', 'Sitemap Type', 'Sitemap-typ', '2014-06-23 21:16:00'),
(12342, 'sv', 'theme', 'Download Seo Panel Themes', 'Ladda ner teman för Seo Panel', '2014-06-22 21:27:22'),
(12343, 'sv', 'user', 'Edit User', 'Uppdatera användarinformation', '2014-06-22 21:28:23'),
(12344, 'sv', 'user', 'Saved My Profile Details', 'Spara mina profil-data', '2014-06-22 21:28:23'),
(12345, 'sv', 'website', 'Edit Website', 'Ändra webbplats', '2014-06-22 21:29:34'),
(12346, 'sv', 'website', 'plscrtwebsite', 'Skapa vänligen en webbplats före du använder seo-verktyg och tillägg.', '2014-06-22 21:29:34'),
(12347, 'sv', 'website', 'Website already exist', 'Webbplatsen finns redan', '2014-06-22 21:29:34'),
(12348, 'sv', 'website', 'yourwebalreday', 'din webbplats om du redan skapat en', '2014-06-22 21:29:34'),
(12349, 'sv', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>1000 Directory Package</h1> \r\n <p>\r\n We are providing <b>1000 free active and verified</b> internet directory package, to add into\r\nyour seo panel <b>directory submission tool</b>.\r\n It will help you to <b>increase the backlinks</b> of your websites.\r\n Actually 1000 directory list is <b>introduced</b> to collect some money for <b>future\r\ndevelopment</b> of seo panel.\r\n To get the 1000 directory list please <a href="<?=SP_DONATE_LINK?>" target="_blank">donate</a>\r\n$10 or more to improve the features of seo panel.\r\n If you have any questions about 1000 directory package, please <a href="<?=SP_CONTACT_LINK?>"\r\ntarget="_blank">contact us</a> or open a ticket in <a href="<?=SP_SUPPORT_LINK?>"\r\ntarget="_blank">support system</a>. \r\n </p> \r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Search Engines Package</h1> \r\n <p>\r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr\r\netc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please <a\r\nhref="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo\r\npanel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to\r\nprovide us required search engine domain list.\r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker,\r\nplease <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a\r\nhref="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your\r\nrequirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel\r\nand third party sites.\r\n You can also easily <b>develop</b> seo plugins for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and\r\nwe will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact Us</h1> \r\n <p>\r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below\r\nlink. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and\r\nfeatures</b>. Eg: To set up cron for keyword position checker.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Report Bugs</h1> \r\n <p>\r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2014-06-23 21:45:31'),
(12350, 'sv', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Help Guide</h1> \r\n <p>\r\n You can view the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the\r\n<b>help guide</b>, it contains the <b>documentation</b> for the seo panel tools,plugins and related\r\nfeatures.\r\n <br>It is the best place in internet to <b>get help</b> about seo panel. We hope that you\r\n<b>contribute</b> to the seo panel help guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel help guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n A place to discuss about world''s first open source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your\r\nwebsites. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel forum</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2014-06-23 21:45:31'),
(12351, 'sv', 'support', 'support_cont3', '<fieldset>\r\n<legend>Donate to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Donate to Seo Panel - First Open source seo control panel in the world</h1> \r\n <p>\r\n <b>Donate</b> to seo panel to support first open source seo control panel in the world.\r\n We are planning to <b>add and improve</b> features of seo panel in future. \r\n <br>With all your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please donate some amount to seo panel team.\r\n <br>We will <b>publish</b> your name and site information in <a href="<?=SP_DONATE_LINK?>"\r\ntarget="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2014-06-23 21:45:31'),
(12352, 'fa', 'common', 'Checked', 'بررسی شده', '2018-01-24 13:39:35'),
(12353, 'fa', 'common', 'Powered by', 'ارائه شده توسط', '2018-01-24 13:39:35'),
(12354, 'fa', 'common', 'Thank you', 'سپاس', '2018-01-24 13:39:35'),
(12355, 'en', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Maximum number of proxies used in single execution', '2018-01-23 00:59:29'),
(12356, 'en', 'settings', 'API_SECRET', 'API Secret', '2018-01-23 00:59:29'),
(12357, 'en', 'settings', 'SP_COMPANY_NAME', 'Company Name', '2018-01-23 00:59:29'),
(12358, 'en', 'panel', 'API Settings', 'API Settings', '2015-05-28 23:03:37'),
(12359, 'en', 'panel', 'API Manager', 'API Manager', '2015-05-28 23:03:37'),
(12360, 'en', 'panel', 'API Connection', 'API Connection', '2015-05-28 23:03:37'),
(12361, 'en', 'api', 'API Url', 'API Url', '2015-05-28 23:03:37'),
(12362, 'en', 'panel', 'User Type Manager', 'User Type Manager', '2015-05-28 23:03:37'),
(12363, 'en', 'panel', 'New User Type', 'New User Type', '2015-05-28 23:03:37'),
(12364, 'en', 'common', 'User Type', 'User Type', '2019-08-06 10:09:56'),
(12365, 'en', 'common', 'Keywords Count', 'Keywords Count', '2019-08-06 10:09:56'),
(12366, 'en', 'common', 'Websites Count', 'Websites Count', '2019-08-06 10:09:56'),
(12367, 'en', 'common', 'Price', 'Price', '2019-08-06 10:09:56'),
(12368, 'en', 'common', 'New User Type', 'New User Type', '2019-08-06 10:09:56'),
(12369, 'en', 'common', 'Edit User Type', 'Edit User Type', '2019-08-06 10:09:56'),
(12370, 'en', 'website', 'User Type already exist', 'User Type already exist', '2015-05-28 23:03:37'),
(12371, 'en', 'common', 'Debug', 'Debug', '2019-08-06 10:09:56'),
(12372, 'en', 'subscription', 'Edit Payment Gateway', 'Edit Payment Gateway', '2015-05-28 23:03:37'),
(12373, 'en', 'subscription', 'Sandbox', 'Sandbox', '2015-05-28 23:03:37'),
(12374, 'en', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business Email', '2015-05-28 23:03:37'),
(12375, 'en', 'subscription', 'PP_TOKEN', 'Paypal Token', '2015-05-28 23:03:37'),
(12376, 'en', 'subscription', 'SP_PAYMENT_PLUGIN', 'Default Payment Plugin', '2015-05-28 23:03:37'),
(12377, 'en', 'subscription', 'Subscription', 'Subscription', '2015-05-28 23:03:37'),
(12378, 'en', 'subscription', 'Payment Method', 'Payment Method', '2015-05-28 23:03:37'),
(12379, 'ja', 'api', 'API Url', 'API URL', '2018-08-21 10:17:47'),
(12380, 'ja', 'common', 'Debug', 'デバッグ', '2019-05-25 22:40:02'),
(12381, 'ja', 'common', 'Edit User Type', 'ユーザタイプを編集', '2019-05-25 22:40:02'),
(12382, 'ja', 'common', 'Keywords Count', 'キーワードカウント', '2019-05-25 22:40:02'),
(12383, 'ja', 'common', 'New User Type', '新規ユーザタイプ', '2019-05-25 22:40:02'),
(12384, 'ja', 'common', 'Price', '価格', '2019-05-25 22:40:02'),
(12385, 'ja', 'common', 'User Type', 'ユーザタイプ', '2019-05-25 22:40:02'),
(12386, 'ja', 'common', 'Websites Count', 'ウェブサイトカウント', '2019-05-25 22:40:02'),
(12387, 'ja', 'panel', 'API Connection', 'API接続', '2019-04-01 13:46:57'),
(12388, 'ja', 'panel', 'API Manager', 'API管理', '2019-04-01 13:46:57'),
(12389, 'ja', 'panel', 'API Settings', 'API設定', '2019-04-01 13:46:57'),
(12390, 'ja', 'panel', 'New User Type', '新規ユーザタイプ', '2019-04-01 13:46:57'),
(12391, 'ja', 'panel', 'User Type Manager', 'ユーザタイプ管理', '2019-04-01 13:46:57'),
(12392, 'ja', 'settings', 'API_SECRET', 'APIシークレット', '2019-04-01 13:52:17'),
(12393, 'ja', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', '単一実行で使用する最大プロキシ数', '2019-04-01 13:52:17'),
(12394, 'ja', 'settings', 'SP_COMPANY_NAME', '会社名', '2019-04-01 13:52:17'),
(12395, 'ja', 'subscription', 'Edit Payment Gateway', 'ペイメントゲートウェイ編集', '2019-04-01 13:54:02'),
(12396, 'ja', 'subscription', 'Payment Method', '決済方法', '2019-04-01 13:54:02'),
(12397, 'ja', 'subscription', 'PP_BUSINESS_EMAIL', 'PaypalビジネスEメール', '2019-04-01 13:54:02'),
(12398, 'ja', 'subscription', 'PP_TOKEN', 'Paypalトークン', '2019-04-01 13:54:02'),
(12399, 'ja', 'subscription', 'Sandbox', 'サンドボックス', '2019-04-01 13:54:02'),
(12400, 'ja', 'subscription', 'SP_PAYMENT_PLUGIN', 'デフォルト決済プラグイン', '2019-04-01 13:54:02'),
(12401, 'ja', 'subscription', 'Subscription', 'サブスクリプション', '2019-04-01 13:54:02'),
(12402, 'ja', 'theme', 'Download Seo Panel Themes', 'Seo Panelテーマをダウンロード', '2015-05-29 09:22:35'),
(12403, 'ja', 'website', 'User Type already exist', '既に存在するユーザタイプです', '2019-04-01 13:57:11'),
(12404, 'fr', 'api', 'API Url', 'URL API', '2016-12-09 23:12:12'),
(12405, 'fr', 'common', 'Debug', 'Debug', '2020-02-14 16:05:11'),
(12406, 'fr', 'common', 'Edit User Type', 'Editer le type d''utilisateur', '2020-02-14 16:05:11'),
(12407, 'fr', 'common', 'Keywords Count', 'Nombre de mots', '2020-02-14 16:05:11'),
(12408, 'fr', 'common', 'New User Type', 'Nouveau type d''utilisateur', '2020-02-14 16:05:11'),
(12409, 'fr', 'common', 'Price', 'Prix', '2020-02-14 16:05:11'),
(12410, 'fr', 'common', 'User Type', 'Type d''utilisateur', '2020-02-14 16:05:11'),
(12411, 'fr', 'common', 'Websites Count', 'Nombre de sites', '2020-02-14 16:05:11'),
(12412, 'fr', 'panel', 'API Connection', 'Connexion API', '2020-02-14 16:14:52'),
(12413, 'fr', 'panel', 'API Manager', 'Gestion API', '2020-02-14 16:14:52'),
(12414, 'fr', 'panel', 'API Settings', 'Paramètres API', '2020-02-14 16:14:52'),
(12415, 'fr', 'panel', 'Crawl Log Manager', 'Gestion des logs d''indexation', '2020-02-14 16:14:52'),
(12416, 'fr', 'panel', 'New User Type', 'Nouveau type d''utilisateur', '2020-02-14 16:14:52'),
(12417, 'fr', 'panel', 'User Type Manager', 'Gestion des types d''utilisateur', '2020-02-14 16:14:52'),
(12418, 'fr', 'settings', 'API_SECRET', 'Code secret API', '2019-03-28 18:39:30'),
(12419, 'fr', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Nombre maximum de proxys à utiliser pour une seule exécution', '2019-03-28 18:39:30'),
(12420, 'fr', 'settings', 'SP_COMPANY_NAME', 'Société', '2019-03-28 18:39:30'),
(12421, 'fr', 'subscription', 'Edit Payment Gateway', 'Editer la passerelle de paiement', '2019-03-28 18:42:59'),
(12422, 'fr', 'subscription', 'Payment Method', 'Méthode de paiement', '2019-03-28 18:42:59'),
(12423, 'fr', 'subscription', 'PP_BUSINESS_EMAIL', 'Mail Paypal Business', '2019-03-28 18:42:59'),
(12424, 'fr', 'subscription', 'PP_TOKEN', 'Token Paypal', '2019-03-28 18:42:59'),
(12425, 'fr', 'subscription', 'Sandbox', 'Sandbox', '2019-03-28 18:42:59'),
(12426, 'fr', 'subscription', 'SP_PAYMENT_PLUGIN', 'Module de paiement par défaut', '2019-03-28 18:42:59'),
(12427, 'fr', 'subscription', 'Subscription', 'Abonnement', '2019-03-28 18:42:59'),
(12428, 'fr', 'website', 'User Type already exist', 'Le type d''utilisateur existe déjà.', '2019-03-28 18:44:58'),
(12429, 'bg', 'api', 'API Url', 'API Url', '2016-12-18 21:52:34'),
(12430, 'bg', 'common', 'Debug', 'Дебъг', '2019-05-25 22:00:14'),
(12431, 'bg', 'common', 'Edit User Type', 'Редакция на типа потребител', '2019-05-25 22:00:14'),
(12432, 'bg', 'common', 'Keywords Count', 'Брой ключови думи', '2019-05-25 22:00:14'),
(12433, 'bg', 'common', 'New User Type', 'Нов тип потребител', '2019-05-25 22:00:14'),
(12434, 'bg', 'common', 'Price', 'Цена', '2019-05-25 22:00:14'),
(12435, 'bg', 'common', 'User Type', 'Тип потребител', '2019-05-25 22:00:14'),
(12436, 'bg', 'common', 'Websites Count', 'Брой сайтове', '2019-05-25 22:00:14'),
(12437, 'bg', 'label', 'Cookie', 'Бисквитка', '2018-08-21 11:09:26'),
(12438, 'bg', 'label', 'Fail', 'Грешка', '2018-08-21 11:09:26'),
(12439, 'bg', 'label', 'Order By', 'Подреди по', '2018-08-21 11:09:26'),
(12440, 'bg', 'label', 'Reference', 'Препратка', '2018-08-21 11:09:26'),
(12441, 'bg', 'label', 'Referer', 'Референт', '2018-08-21 11:09:26'),
(12442, 'bg', 'label', 'Subject', 'Относно', '2018-08-21 11:09:26'),
(12443, 'bg', 'label', 'Success', 'Успешно', '2018-08-21 11:09:26'),
(12444, 'bg', 'label', 'User agent', 'Потребителски агент', '2018-08-21 11:09:26'),
(12445, 'bg', 'log', 'Clear All Logs', 'Изчисти всички логове', '2015-05-29 14:50:05'),
(12446, 'bg', 'log', 'Crawl Log Details', 'Логве на обхождане - детайли', '2015-05-29 14:50:05'),
(12447, 'bg', 'log', 'Post Fields', 'Публикувани полета', '2015-05-29 14:50:05'),
(12448, 'bg', 'panel', 'API Connection', 'API Връзка', '2018-08-21 11:14:04'),
(12449, 'bg', 'panel', 'API Manager', 'Управление на API', '2018-08-21 11:14:04'),
(12450, 'bg', 'panel', 'API Settings', 'API настройки', '2018-08-21 11:14:04'),
(12451, 'bg', 'panel', 'Crawl Log Manager', 'Управление на лога за обхождане', '2018-08-21 11:14:04'),
(12452, 'bg', 'panel', 'Log Manager', 'Управление на логовете', '2018-08-21 11:14:04'),
(12453, 'bg', 'panel', 'New User Type', 'Нов потребителкси тип', '2018-08-21 11:14:04'),
(12454, 'bg', 'panel', 'Proxy Perfomance', 'Proxy изпълнение', '2018-08-21 11:14:04'),
(12455, 'bg', 'panel', 'User Type Manager', 'Управление на типове потребители', '2018-08-21 11:14:04'),
(12456, 'bg', 'proxy', 'Request Count', 'Брой заявки', '2016-12-18 22:08:18'),
(12457, 'bg', 'settings', 'API_SECRET', 'API Тайна', '2018-08-21 11:24:42'),
(12458, 'bg', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Максимален брой проксита, използвани за едно изпълнение', '2018-08-21 11:24:42'),
(12459, 'bg', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Проверка с друго прокси, когато обхождането се провали', '2018-08-21 11:24:42'),
(12460, 'bg', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Деактивиране на проксито, когато обхождането се провали', '2018-08-21 11:24:42'),
(12461, 'bg', 'settings', 'SP_COMPANY_NAME', 'Име на компанията', '2018-08-21 11:24:42'),
(12462, 'bg', 'settings', 'SP_TIME_ZONE', 'Времева зона', '2018-08-21 11:24:42'),
(12463, 'bg', 'subscription', 'Edit Payment Gateway', 'Редакция на гейтуейя за плащания', '2018-08-21 11:40:35'),
(12464, 'bg', 'subscription', 'Payment Method', 'Начин на плащане', '2018-08-21 11:40:35'),
(12465, 'bg', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Бизнес имейл', '2018-08-21 11:40:35'),
(12466, 'bg', 'subscription', 'PP_TOKEN', 'Paypal Токън', '2018-08-21 11:40:35'),
(12467, 'bg', 'subscription', 'Sandbox', 'Сендбокс', '2018-08-21 11:40:35'),
(12468, 'bg', 'subscription', 'SP_PAYMENT_PLUGIN', 'Плъгин за плащания по подразбиране', '2018-08-21 11:40:35'),
(12469, 'bg', 'subscription', 'Subscription', 'Абонамент', '2018-08-21 11:40:35'),
(12470, 'bg', 'website', 'User Type already exist', 'Потребителския тип вече съществува', '2016-12-18 22:19:36'),
(12471, 'ru', 'api', 'API Url', 'API Url', '2016-01-13 02:26:45'),
(12472, 'ru', 'common', 'Debug', 'Отладка', '2024-07-17 15:16:33'),
(12473, 'ru', 'common', 'Edit User Type', 'Изменение типа пользователя', '2024-07-17 15:16:33'),
(12474, 'ru', 'common', 'Keywords Count', 'Графа ключевые слова', '2024-07-17 15:16:33'),
(12475, 'ru', 'common', 'New User Type', 'Тип нового пользователя', '2024-07-17 15:16:33'),
(12476, 'ru', 'common', 'Price', 'Цена', '2024-07-17 15:16:33'),
(12477, 'ru', 'common', 'User Type', 'Тип пользователя', '2024-07-17 15:16:33'),
(12478, 'ru', 'common', 'Websites Count', 'Графа сайт', '2024-07-17 15:16:33'),
(12479, 'ru', 'panel', 'API Connection', 'Соединение с API', '2024-07-17 15:19:14'),
(12480, 'ru', 'panel', 'API Manager', 'Управление API', '2024-07-17 15:19:14'),
(12481, 'ru', 'panel', 'API Settings', 'Настройки API', '2024-07-17 15:19:14'),
(12482, 'ru', 'panel', 'New User Type', 'Тип нового пользователя', '2024-07-17 15:19:14'),
(12483, 'ru', 'panel', 'User Type Manager', 'Управление типами пользователей', '2024-07-17 15:19:14'),
(12484, 'ru', 'settings', 'API_SECRET', 'Ключ API', '2024-07-17 15:22:42'),
(12485, 'ru', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Максимальное количество прокси используемых в одном исполнении', '2024-07-17 15:22:42'),
(12486, 'ru', 'settings', 'SP_COMPANY_NAME', 'Название компании', '2024-07-17 15:22:42'),
(12487, 'ru', 'subscription', 'Edit Payment Gateway', 'Изменить платежный шлюз', '2024-07-17 15:24:41'),
(12488, 'ru', 'subscription', 'Payment Method', 'Метод оплаты', '2024-07-17 15:24:41'),
(12489, 'ru', 'subscription', 'PP_BUSINESS_EMAIL', 'Платежный Email Paypal', '2024-07-17 15:24:41'),
(12490, 'ru', 'subscription', 'PP_TOKEN', 'Paypal токен', '2024-07-17 15:24:41'),
(12491, 'ru', 'subscription', 'Sandbox', 'Песочница', '2024-07-17 15:24:41'),
(12492, 'ru', 'subscription', 'SP_PAYMENT_PLUGIN', 'Платежный плагин по умолчанию', '2024-07-17 15:24:41'),
(12493, 'ru', 'subscription', 'Subscription', 'Подписка', '2024-07-17 15:24:41'),
(12494, 'ru', 'website', 'User Type already exist', 'Тип пользователя уже существует', '2019-08-28 13:09:29'),
(12495, 'de', 'api', 'API Url', 'API URL', '2021-01-07 13:34:06'),
(12496, 'de', 'common', 'Debug', 'Debugging', '2021-06-15 01:46:19'),
(12497, 'de', 'common', 'Edit User Type', 'Nutzertypen ändern', '2021-06-15 01:46:19'),
(12498, 'de', 'common', 'Keywords Count', 'Anzahl Keywords', '2021-06-15 01:46:19'),
(12499, 'de', 'common', 'New User Type', 'Neuer Nutzertyp', '2021-06-15 01:46:19'),
(12500, 'de', 'common', 'Price', 'Preis', '2021-06-15 01:46:19'),
(12501, 'de', 'common', 'User Type', 'Nutzertyp', '2021-06-15 01:46:19'),
(12502, 'de', 'common', 'Websites Count', 'Anzahl der Webseiten', '2021-06-15 01:46:19'),
(12503, 'de', 'panel', 'API Connection', 'API Verbindung', '2023-01-03 19:44:32'),
(12504, 'de', 'panel', 'API Manager', 'API Verwaltung', '2023-01-03 19:44:32'),
(12505, 'de', 'panel', 'API Settings', 'API Einstellungen', '2023-01-03 19:44:32'),
(12506, 'de', 'panel', 'New User Type', 'Neuer Nutzertyp', '2023-01-03 19:44:32'),
(12507, 'de', 'panel', 'User Type Manager', 'Benutzertyp Verwaltung', '2023-01-03 19:44:32'),
(12508, 'de', 'settings', 'API_SECRET', 'API Secret', '2021-01-08 13:28:43'),
(12509, 'de', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Maximale Anzahl der Proxies die pro Ausführung genutzt werden', '2021-01-08 13:28:43'),
(12510, 'de', 'settings', 'SP_COMPANY_NAME', 'Firmenname', '2021-01-08 13:28:43'),
(12511, 'de', 'subscription', 'Edit Payment Gateway', 'Zahlungmittel ändern', '2021-01-29 14:00:38'),
(12512, 'de', 'subscription', 'Payment Method', 'Zahlungsmethode', '2021-01-29 14:00:38'),
(12513, 'de', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Emailadresse', '2021-01-29 14:00:38'),
(12514, 'de', 'subscription', 'PP_TOKEN', 'Paypal Token', '2021-01-29 14:00:38'),
(12515, 'de', 'subscription', 'Sandbox', 'Sandbox', '2021-01-29 14:00:38'),
(12516, 'de', 'subscription', 'SP_PAYMENT_PLUGIN', 'Standard Zahlungs-Plugin', '2021-01-29 14:00:38'),
(12517, 'de', 'subscription', 'Subscription', 'Abonnement', '2021-01-29 14:00:38'),
(12518, 'de', 'website', 'User Type already exist', 'Nutzertyp bereits vorhanden', '2021-01-07 13:53:49'),
(12519, 'pt-br', 'api', 'API Url', 'URL da API', '2016-12-09 16:46:20'),
(12520, 'pt-br', 'common', 'Debug', 'Debug', '2019-07-30 00:26:27'),
(12521, 'pt-br', 'common', 'Edit User Type', 'Editar Tipo de Usuário', '2019-07-30 00:26:27'),
(12522, 'pt-br', 'common', 'Keywords Count', 'Contagem de Palavras-chave', '2019-07-30 00:26:27'),
(12523, 'pt-br', 'common', 'New User Type', 'Tipo do Novo Usuário', '2019-07-30 00:26:27'),
(12524, 'pt-br', 'common', 'Price', 'Preço', '2019-07-30 00:26:27'),
(12525, 'pt-br', 'common', 'User Type', 'Tipo de Usuário', '2019-07-30 00:26:27'),
(12526, 'pt-br', 'common', 'Websites Count', 'Contagem de Website', '2019-07-30 00:26:27'),
(12527, 'pt-br', 'label', 'Cookie', 'Cookie', '2018-08-21 18:54:11'),
(12528, 'pt-br', 'label', 'Fail', 'Falha', '2018-08-21 18:54:11'),
(12529, 'pt-br', 'label', 'Order By', 'Organizar Por', '2018-08-21 18:54:11'),
(12530, 'pt-br', 'label', 'Reference', 'Referência', '2018-08-21 18:54:11'),
(12531, 'pt-br', 'label', 'Referer', 'Indicador', '2018-08-21 18:54:11'),
(12532, 'pt-br', 'label', 'Subject', 'Assunto', '2018-08-21 18:54:11'),
(12533, 'pt-br', 'label', 'Success', 'Sucesso', '2018-08-21 18:54:11'),
(12534, 'pt-br', 'label', 'User agent', 'User agent', '2018-08-21 18:54:11'),
(12535, 'pt-br', 'log', 'Clear All Logs', 'Limpar Todos os Logs', '2016-01-04 16:43:11'),
(12536, 'pt-br', 'log', 'Crawl Log Details', 'Detalhes do Log de Rastreamento', '2016-01-04 16:43:11'),
(12537, 'pt-br', 'log', 'Post Fields', 'Campos de Postagem', '2016-01-04 16:43:11'),
(12538, 'pt-br', 'panel', 'API Connection', 'Conexação da API', '2018-01-23 18:32:33'),
(12539, 'pt-br', 'panel', 'API Manager', 'Gerenciador da API', '2018-01-23 18:32:33'),
(12540, 'pt-br', 'panel', 'API Settings', 'Configurações da API', '2018-01-23 18:32:33'),
(12541, 'pt-br', 'panel', 'Crawl Log Manager', 'Gerenciador do Log de Rastreamento', '2018-01-23 18:32:33'),
(12542, 'pt-br', 'panel', 'Log Manager', 'Gerenciador de Logs', '2018-01-23 18:32:33'),
(12543, 'pt-br', 'panel', 'New User Type', 'Tipo do Novo Usuário', '2018-01-23 18:32:33'),
(12544, 'pt-br', 'panel', 'Proxy Perfomance', 'Performance da Proxy', '2018-01-23 18:32:33'),
(12545, 'pt-br', 'panel', 'User Type Manager', 'Gerenciador do Tipo de Usuário', '2018-01-23 18:32:33'),
(12546, 'pt-br', 'settings', 'API_SECRET', 'API Secret', '2018-06-02 17:47:27'),
(12547, 'pt-br', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Número máximos de proxies usados em uma única conexão', '2018-06-02 17:47:27'),
(12548, 'pt-br', 'settings', 'SP_COMPANY_NAME', 'Nome da Empresa', '2018-06-02 17:47:27'),
(12549, 'pt-br', 'settings', 'SP_TIME_ZONE', 'Fuso Horário', '2018-06-02 17:47:27'),
(12550, 'pt-br', 'subscription', 'Edit Payment Gateway', 'Editar Gateway de Pagamento', '2018-01-23 18:37:24'),
(12551, 'pt-br', 'subscription', 'Payment Method', 'Método de Pagamento', '2018-01-23 18:37:24'),
(12552, 'pt-br', 'subscription', 'PP_BUSINESS_EMAIL', 'Email do Paypal', '2018-01-23 18:37:24'),
(12553, 'pt-br', 'subscription', 'PP_TOKEN', 'Token do Paypal', '2018-01-23 18:37:24'),
(12554, 'pt-br', 'subscription', 'Sandbox', 'Sandbox', '2018-01-23 18:37:24'),
(12555, 'pt-br', 'subscription', 'SP_PAYMENT_PLUGIN', 'Plugin Padrão de Pagamento', '2018-01-23 18:37:24'),
(12556, 'pt-br', 'subscription', 'Subscription', 'Assinatura', '2018-01-23 18:37:24'),
(12557, 'pt-br', 'website', 'User Type already exist', 'Tipo de Usuário já existe', '2019-03-29 21:28:26'),
(12558, 'en', 'panel', 'Import Websites', 'Import Websites', '2016-01-02 22:20:42'),
(12559, 'en', 'website', 'Website CSV File', 'Website CSV File', '2016-01-02 22:20:42'),
(12560, 'en', 'website', 'Please enter CSV file', 'Please enter CSV file', '2016-01-02 22:20:42'),
(12561, 'en', 'common', 'Sample CSV File', 'Sample CSV File', '2019-08-06 10:09:56'),
(12562, 'en', 'label', 'Free', 'Free', '2016-01-02 22:20:42'),
(12563, 'en', 'subscription', 'Term', 'Term', '2016-01-02 22:20:42'),
(12564, 'en', 'subscription', 'Renew Subscription', 'Renew Subscription', '2016-01-02 22:20:42'),
(12565, 'en', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2016-01-02 22:20:42'),
(12566, 'en', 'subscription', 'internal-error-payment', 'Internal error occured during payment processing.', '2016-01-02 22:20:42'),
(12567, 'en', 'subscription', 'account-expired', 'Your account expired. Please renew your subscription.', '2016-01-02 22:20:42'),
(12568, 'en', 'subscription', 'transaction-success', 'Your transaction processed successfully.', '2016-01-02 22:20:42'),
(12569, 'en', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2016-01-02 22:20:42'),
(12570, 'en', 'subscription', 'click-activate-pay-plugin', 'Click here to activate payment plugin', '2016-01-02 22:20:42'),
(12571, 'en', 'subscription', 'Currency', 'Currency', '2016-01-02 22:20:42'),
(12572, 'en', 'subscription', 'Website Limit', 'Website Limit', '2016-01-02 22:20:42'),
(12573, 'en', 'subscription', 'Keyword Limit', 'Keyword Limit', '2016-01-02 22:20:42'),
(12574, 'en', 'subscription', 'Subscribe', 'Subscribe', '2016-01-02 22:20:42'),
(12575, 'en', 'subscription', 'Quantity', 'Quantity', '2016-01-02 22:20:42'),
(12576, 'en', 'subscription', 'Amount', 'Amount', '2016-01-02 22:20:42'),
(12577, 'en', 'subscription', 'View Order', 'View Order', '2016-01-02 22:20:42'),
(12578, 'en', 'subscription', 'Paid By', 'Paid By', '2016-01-02 22:20:42'),
(12579, 'en', 'subscription', 'Transaction Log', 'Transaction Log', '2016-01-02 22:20:42'),
(12580, 'en', 'subscription', 'Transaction Id', 'Transaction Id', '2016-01-02 22:20:42'),
(12581, 'en', 'subscription', 'Order Id', 'Order Id', '2016-01-02 22:20:42'),
(12582, 'en', 'login', 'User Type', 'User Type', '2016-01-02 22:20:42'),
(12583, 'en', 'website', 'Your website count already reached the limit', 'Website count already reached the limit for this user!', '2016-01-02 22:20:42'),
(12584, 'en', 'keyword', 'Your keyword count already reached the limit', 'Keyword count already reached the limit for this user!', '2016-01-02 22:20:42'),
(12585, 'en', 'keyword', 'You can add only keywordcount keywords more', 'You can add only [keywordcount] keywords for this user!', '2016-01-02 22:20:42'),
(12586, 'en', 'website', 'You can add only websitecount websites more', 'You can add only [websitecount] websites for this user!', '2016-01-02 22:20:42'),
(12587, 'en', 'user', 'Expiry Date', 'Expiry Date', '2016-01-02 22:20:42'),
(12588, 'fr', 'keyword', 'You can add only keywordcount keywords more', 'Vous ne pouvez ajouter que [keywordcount] mots-clés pour cet utilisateur !', '2016-01-02 23:07:27'),
(12589, 'fr', 'keyword', 'Your keyword count already reached the limit', 'Le nombre maximum de mots-clés est déjà atteint pour cet utilisateur !', '2016-01-02 23:07:27'),
(12590, 'fr', 'label', 'Free', 'Dispo', '2020-02-14 16:12:40'),
(12591, 'fr', 'login', 'User Type', 'Type d''utilisateur', '2019-03-28 16:14:28'),
(12592, 'fr', 'panel', 'Import Websites', 'Import sites web', '2020-02-14 16:14:52'),
(12593, 'fr', 'subscription', 'account-expired', 'Votre compte est expiré. Merci de renouveler votre abonnement.', '2019-03-28 18:42:59'),
(12594, 'fr', 'subscription', 'Amount', 'Montant', '2019-03-28 18:42:59'),
(12595, 'fr', 'subscription', 'click-activate-pay-plugin', 'Cliquez ici pour activer le module de paiement', '2019-03-28 18:42:59'),
(12596, 'fr', 'subscription', 'Currency', 'Monnaie', '2019-03-28 18:42:59'),
(12597, 'fr', 'subscription', 'internal-error-payment', 'Erreur technique lors du paiement.', '2019-03-28 18:42:59'),
(12598, 'fr', 'subscription', 'Keyword Limit', 'Limite mots clés', '2019-03-28 18:42:59'),
(12599, 'fr', 'subscription', 'Order Id', 'N° de Commande', '2019-03-28 18:42:59'),
(12600, 'fr', 'subscription', 'Paid By', 'Payé(e) par', '2019-03-28 18:42:59'),
(12601, 'fr', 'subscription', 'Plans and Pricing', 'Types d''abonnement et tarif', '2019-03-28 18:42:59'),
(12602, 'fr', 'subscription', 'Quantity', 'Quantité', '2019-03-28 18:42:59'),
(12603, 'fr', 'subscription', 'Renew Subscription', 'Renouveler l''abonnement', '2019-03-28 18:42:59'),
(12604, 'fr', 'subscription', 'Subscribe', 'Souscrire', '2019-03-28 18:42:59'),
(12605, 'fr', 'subscription', 'Term', 'Echéance', '2019-03-28 18:42:59'),
(12606, 'fr', 'subscription', 'Transaction Id', 'Id Transaction', '2019-03-28 18:42:59'),
(12607, 'fr', 'subscription', 'Transaction Log', 'Log de la transaction', '2019-03-28 18:42:59'),
(12608, 'fr', 'subscription', 'transaction-success', 'La transaction a été effectuée.', '2019-03-28 18:42:59'),
(12609, 'fr', 'subscription', 'View Order', 'Voir la commande', '2019-03-28 18:42:59'),
(12610, 'fr', 'subscription', 'Website Limit', 'Limite sites web', '2019-03-28 18:42:59'),
(12686, 'en', 'panel', 'Settings', 'Settings', '2016-01-06 02:19:45'),
(12687, 'en', 'subscription', 'Orders', 'Orders', '2016-01-06 02:19:45'),
(12612, 'fr', 'user', 'Expiry Date', 'Expiration', '2016-01-02 23:14:56'),
(12613, 'de', 'common', 'Sample CSV File', 'Beispiel CSV-Datei', '2021-06-15 01:46:19'),
(12614, 'de', 'keyword', 'You can add only keywordcount keywords more', 'Maximal [keywordcount] keywords erlaubt für diesen Benutzer', '2021-06-15 01:48:29'),
(12615, 'de', 'keyword', 'Your keyword count already reached the limit', 'Die Anzahl der Keywords für diesen Benutzer hat bereits das Maximum erreicht.', '2021-06-15 01:48:29'),
(12616, 'de', 'label', 'Free', 'Kostenlos', '2021-01-06 15:13:08'),
(12617, 'de', 'login', 'User Type', 'Benutzer-Typ', '2021-01-06 15:14:32'),
(12618, 'de', 'panel', 'Import Websites', 'Webseiten importieren', '2023-01-03 19:44:32'),
(12619, 'de', 'subscription', 'account-expired', 'Benutzerkonto inaktiv. Bitte verlängern Sie Ihr Abbonement.', '2021-01-29 14:00:38'),
(12620, 'de', 'subscription', 'Amount', 'Summe', '2021-01-29 14:00:38'),
(12621, 'de', 'subscription', 'click-activate-pay-plugin', 'Hier klicken um Zahlungs-plugin zu aktivieren', '2021-01-29 14:00:38'),
(12622, 'de', 'subscription', 'Currency', 'Währung', '2021-01-29 14:00:38'),
(12623, 'de', 'subscription', 'internal-error-payment', 'Interner Serverfehler während Verarbeitung der Zahlung.', '2021-01-29 14:00:38'),
(12624, 'de', 'subscription', 'Keyword Limit', 'Maximale Keywords', '2021-01-29 14:00:38'),
(12625, 'de', 'subscription', 'Order Id', 'Bestell-ID', '2021-01-29 14:00:38'),
(12626, 'de', 'subscription', 'Paid By', 'Zahlung gesendet von', '2021-01-29 14:00:38'),
(12627, 'de', 'subscription', 'Plans and Pricing', 'Pakete und Preise', '2021-01-29 14:00:38'),
(12628, 'de', 'subscription', 'Quantity', 'Anzahl', '2021-01-29 14:00:38'),
(12629, 'de', 'subscription', 'Renew Subscription', 'Abo verlängern', '2021-01-29 14:00:38'),
(12630, 'de', 'subscription', 'Subscribe', 'abonnieren', '2021-01-29 14:00:38'),
(12631, 'de', 'subscription', 'Term', 'Begriff', '2021-01-29 14:00:38'),
(12632, 'de', 'subscription', 'Transaction Id', 'Transaktions-ID', '2021-01-29 14:00:38'),
(12633, 'de', 'subscription', 'Transaction Log', 'Transaktions-Logbuch', '2021-01-29 14:00:38'),
(12634, 'de', 'subscription', 'transaction-success', 'Transaktion erfolgreich durchgeführt.', '2021-01-29 14:00:38'),
(12635, 'de', 'subscription', 'View Order', 'Bestellung ansehen', '2021-01-29 14:00:38'),
(12636, 'de', 'subscription', 'Website Limit', 'Webseiten Limit', '2021-01-29 14:00:38'),
(12688, 'en', 'subscription', 'Payment Gateway Manager', 'Payment Gateway Manager', '2016-01-06 02:19:45'),
(12638, 'de', 'user', 'Expiry Date', 'Ablaufdatum', '2016-01-03 04:30:39'),
(12639, 'de', 'website', 'Please enter CSV file', 'Bitte CSV Datei auswählen', '2021-01-07 13:53:49'),
(12640, 'de', 'website', 'Website CSV File', 'Webseiten CSV Datei', '2021-01-07 13:53:49'),
(12641, 'de', 'website', 'You can add only websitecount websites more', 'Maximal [websitecount] Webseiten erlaubt für diesen Benutzer', '2021-01-07 13:53:49'),
(12642, 'de', 'website', 'Your website count already reached the limit', 'Maximale Anzahl der Webseiten erreicht', '2021-01-07 13:53:49'),
(12643, 'ja', 'common', 'Sample CSV File', 'サンプルCSVファイル', '2019-05-25 22:40:02'),
(12644, 'ja', 'keyword', 'You can add only keywordcount keywords more', 'このユーザには、[keywordcount] 個のキーワードしか追加できません!', '2016-01-04 11:34:06'),
(12645, 'ja', 'keyword', 'Your keyword count already reached the limit', 'このユーザーは、既にキーワードの上限数に達しています。', '2016-01-04 11:34:06'),
(12646, 'ja', 'label', 'Free', 'フリー', '2019-04-01 13:45:51'),
(12647, 'ja', 'login', 'User Type', 'ユーザタイプ', '2018-08-21 10:29:48'),
(12648, 'ja', 'panel', 'Import Websites', 'ウェブサイトインポート', '2019-04-01 13:46:57'),
(12649, 'ja', 'subscription', 'account-expired', 'あなたのアカウントは期限が切れました。サブスクリプションを更新してください。', '2019-04-01 13:54:02'),
(12650, 'ja', 'subscription', 'Amount', '金額', '2019-04-01 13:54:02'),
(12651, 'ja', 'subscription', 'click-activate-pay-plugin', '支払プラグインを有効化するにはこちらをクリック', '2019-04-01 13:54:02'),
(12652, 'ja', 'subscription', 'Currency', '通貨', '2019-04-01 13:54:02'),
(12653, 'ja', 'subscription', 'internal-error-payment', '支払処理中に内部エラーが発生しました。', '2019-04-01 13:54:02'),
(12654, 'ja', 'subscription', 'Keyword Limit', 'キーワード上限', '2019-04-01 13:54:02'),
(12655, 'ja', 'subscription', 'Order Id', '注文ID', '2019-04-01 13:54:02'),
(12656, 'ja', 'subscription', 'Paid By', '支払者', '2019-04-01 13:54:02'),
(12657, 'ja', 'subscription', 'Plans and Pricing', 'プランと価格', '2019-04-01 13:54:02'),
(12658, 'ja', 'subscription', 'Quantity', '数量', '2019-04-01 13:54:02'),
(12659, 'ja', 'subscription', 'Renew Subscription', 'サブスクリプション更新', '2019-04-01 13:54:02'),
(12660, 'ja', 'subscription', 'Subscribe', 'サブスクリプション申込み', '2019-04-01 13:54:02'),
(12661, 'ja', 'subscription', 'Term', '期間', '2019-04-01 13:54:02'),
(12662, 'ja', 'subscription', 'Transaction Id', '決済ID', '2019-04-01 13:54:02'),
(12663, 'ja', 'subscription', 'Transaction Log', '決済記録', '2019-04-01 13:54:02'),
(12664, 'ja', 'subscription', 'transaction-success', '決済が正常に処理されました。', '2019-04-01 13:54:02'),
(12665, 'ja', 'subscription', 'View Order', '注文を見る', '2019-04-01 13:54:02'),
(12666, 'ja', 'subscription', 'Website Limit', 'ウェブサイト上限', '2019-04-01 13:54:02'),
(12667, 'ja', 'subscription', 'Your transaction cancelled', '決済が中止されました。', '2019-04-01 13:54:02'),
(12668, 'ja', 'user', 'Expiry Date', '失効日', '2016-01-04 11:41:28'),
(12669, 'ja', 'website', 'Please enter CSV file', 'CSVファイルを入力してください。', '2019-04-01 13:57:11'),
(12670, 'ja', 'website', 'Website CSV File', 'ウェブサイトCSVファイル', '2019-04-01 13:57:11'),
(12671, 'ja', 'website', 'You can add only websitecount websites more', 'このユーザには、[websitecount] 個のウェブサイトしか追加できません!', '2019-04-01 13:57:11'),
(12672, 'ja', 'website', 'Your website count already reached the limit', 'このユーザは、既にウェブサイトの上限数に達しています。', '2019-04-01 13:57:11'),
(12673, 'fr', 'website', 'Please enter CSV file', 'Veuillez indiquer le fichier CSV', '2019-03-28 18:44:58'),
(12674, 'fr', 'website', 'Website CSV File', 'Fichier CSV des sites web', '2019-03-28 18:44:58'),
(12675, 'fr', 'website', 'You can add only websitecount websites more', 'Vous ne pouvez ajouter que [websitecount] sites web pour cet utilisateur !', '2019-03-28 18:44:58'),
(12676, 'fr', 'website', 'Your website count already reached the limit', 'Le nombre maximum de sites web est atteint pour cet utilisateur !', '2019-03-28 18:44:58'),
(12677, 'fr', 'common', 'Sample CSV File', 'Exemple de fichier CSV', '2020-02-14 16:05:11'),
(12678, 'pt-br', 'common', 'Sample CSV File', 'Arquivo CSV Modelo', '2019-07-30 00:26:27'),
(12679, 'pt-br', 'keyword', 'You can add only keywordcount keywords more', 'Você pode adicionar somente [keywordcount] palavras chaves para este usuário!', '2016-01-04 16:42:09'),
(12680, 'pt-br', 'keyword', 'Your keyword count already reached the limit', 'Este usuário já atingiu o limite de palavras chaves!', '2016-01-04 16:42:09'),
(12681, 'pt-br', 'proxy', 'Request Count', 'Contagem de Requisições', '2016-12-09 16:48:39'),
(12682, 'pt-br', 'panel', 'Import Websites', 'Importar Sites', '2018-01-23 18:32:33'),
(12683, 'pt-br', 'login', 'User Type', 'Tipo de Usuário', '2016-01-04 16:42:58'),
(12684, 'pt-br', 'label', 'Free', 'Livre', '2018-08-21 18:54:11'),
(12685, 'de', 'subscription', 'Your transaction cancelled', 'Transaktion abgebrochen.', '2021-01-29 14:00:38'),
(12689, 'en', 'label', 'Type', 'Type', '2016-01-06 02:25:42'),
(12690, 'en', 'api', 'API Guide', 'API Guide', '2016-01-06 23:25:18'),
(12691, 'ru', 'api', 'API Guide', 'Руководство по API', '2016-01-13 02:26:45'),
(12692, 'ru', 'common', 'Sample CSV File', 'Образец CSV-файла', '2024-07-17 15:16:33'),
(12693, 'ru', 'keyword', 'You can add only keywordcount keywords more', 'Вы можете добавить только [ключевое слово] ключевые слова для данного пользователя!', '2016-01-13 02:28:48'),
(12694, 'ru', 'keyword', 'Your keyword count already reached the limit', 'Количество ключевых слов достигло предела для данного пользователя!', '2016-01-13 02:28:48'),
(12695, 'ru', 'label', 'Free', 'Свободно', '2024-07-17 15:17:22'),
(12696, 'ru', 'label', 'Type', 'Тип', '2024-07-17 15:17:22'),
(12697, 'ru', 'login', 'User Type', 'Тип пользователя', '2018-08-21 21:07:34'),
(12698, 'ru', 'panel', 'Import Websites', 'Импорт сайтов', '2024-07-17 15:19:14'),
(12699, 'ru', 'panel', 'Settings', 'Настройки', '2024-07-17 15:19:14'),
(12700, 'ru', 'subscription', 'account-expired', 'Ваша учетная запись истекла. Пожалуйста, продлите подписку.', '2024-07-17 15:24:41'),
(12701, 'ru', 'subscription', 'Amount', 'Сумма', '2024-07-17 15:24:41'),
(12702, 'ru', 'subscription', 'click-activate-pay-plugin', 'Нажмите для активизировации плагина оплаты', '2024-07-17 15:24:41'),
(12703, 'ru', 'subscription', 'Currency', 'Валюта', '2024-07-17 15:24:41'),
(12704, 'ru', 'subscription', 'internal-error-payment', 'Произошла внутренняя ошибка во время обработки платежа.', '2024-07-17 15:24:41'),
(12705, 'ru', 'subscription', 'Keyword Limit', 'Лимит ключевых слов', '2024-07-17 15:24:41'),
(12706, 'ru', 'subscription', 'Order Id', 'ID заказа', '2024-07-17 15:24:41'),
(12707, 'ru', 'subscription', 'Orders', 'Заказы', '2024-07-17 15:24:41'),
(12708, 'ru', 'subscription', 'Paid By', 'Оплачивается', '2024-07-17 15:24:41'),
(12709, 'ru', 'subscription', 'Payment Gateway Manager', 'Управление платежными шлюзами', '2024-07-17 15:24:41'),
(12710, 'ru', 'subscription', 'Plans and Pricing', 'Тарифы и цены', '2024-07-17 15:24:41'),
(12711, 'ru', 'subscription', 'Quantity', 'Количество', '2024-07-17 15:24:41'),
(12712, 'ru', 'subscription', 'Renew Subscription', 'Продлить подписку', '2024-07-17 15:24:41'),
(12713, 'ru', 'subscription', 'Subscribe', 'Подписка', '2024-07-17 15:24:41'),
(12714, 'ru', 'subscription', 'Term', 'Срок', '2024-07-17 15:24:41'),
(12715, 'ru', 'subscription', 'Transaction Id', 'ID трансзакции', '2024-07-17 15:24:41'),
(12716, 'ru', 'subscription', 'Transaction Log', 'Логи платежей', '2024-07-17 15:24:41'),
(12717, 'ru', 'subscription', 'transaction-success', 'Ваше сделка успешно обработана.', '2024-07-17 15:24:41'),
(12718, 'ru', 'subscription', 'View Order', 'Посмотреть заказ', '2024-07-17 15:24:41'),
(12719, 'ru', 'subscription', 'Website Limit', 'Лимит сайтов', '2024-07-17 15:24:41'),
(12720, 'ru', 'subscription', 'Your transaction cancelled', 'Сделка отменнена.', '2024-07-17 15:24:41'),
(12721, 'ru', 'user', 'Expiry Date', 'Срок действия', '2016-01-13 02:39:26'),
(12722, 'ru', 'website', 'Please enter CSV file', 'Пожалуйста загрузите CSV файл', '2019-08-28 13:09:29'),
(12723, 'ru', 'website', 'Website CSV File', 'CSV файл сайтов', '2019-08-28 13:09:29'),
(12724, 'ru', 'website', 'You can add only websitecount websites more', 'Вы не можете добавить сайт (сайты) для данного пользователя!', '2019-08-28 13:09:29');
INSERT INTO `texts` VALUES
(12725, 'ru', 'website', 'Your website count already reached the limit', 'Количество сайтов уже достигло предела для данного пользователя!', '2019-08-28 13:09:29'),
(12726, 'pt', 'api', 'API Guide', 'Guia API', '2016-01-17 23:53:52'),
(12727, 'pt', 'api', 'API Url', 'API URL', '2016-01-17 23:53:52'),
(12728, 'pt', 'common', 'Debug', 'Debug', '2019-05-25 22:43:55'),
(12729, 'pt', 'common', 'Edit User Type', 'Editar tipo de Utilizador', '2019-05-25 22:43:55'),
(12730, 'pt', 'common', 'Keywords Count', 'Nº de Keywords', '2019-05-25 22:43:55'),
(12731, 'pt', 'common', 'New User Type', 'Novo tipo de Utilizador', '2019-05-25 22:43:55'),
(12732, 'pt', 'common', 'Price', 'Preço', '2019-05-25 22:43:55'),
(12733, 'pt', 'common', 'Sample CSV File', 'Ficheiro Csv amostra', '2019-05-25 22:43:55'),
(12734, 'pt', 'common', 'User Type', 'Tipo de Utilizador', '2019-05-25 22:43:55'),
(12735, 'pt', 'common', 'Websites Count', 'Nº de websites', '2019-05-25 22:43:55'),
(12736, 'pt', 'keyword', 'You can add only keywordcount keywords more', 'Só pode adicionar [keywordcount] keywords para este utilizador!', '2016-01-18 00:11:49'),
(12737, 'pt', 'keyword', 'Your keyword count already reached the limit', 'O nº de Keyword atingiu o limite neste utilizador', '2016-01-18 00:11:49'),
(12738, 'pt', 'label', 'Free', 'Gratuito', '2018-01-26 00:11:22'),
(12739, 'pt', 'label', 'Type', 'Tipo', '2018-01-26 00:11:22'),
(12740, 'pt', 'login', 'User Type', 'Tipo de utilizador', '2016-01-18 00:13:26'),
(12741, 'pt', 'panel', 'API Connection', 'Conecção da API', '2018-01-26 00:18:33'),
(12742, 'pt', 'panel', 'API Manager', 'API Manager ', '2018-01-26 00:18:33'),
(12743, 'pt', 'panel', 'API Settings', 'API Settings ', '2018-01-26 00:18:33'),
(12744, 'pt', 'panel', 'Import Websites', 'Importar websites', '2018-01-26 00:18:33'),
(12745, 'pt', 'panel', 'New User Type', 'Novo tipo de Utilizador', '2018-01-26 00:18:33'),
(12746, 'pt', 'panel', 'Settings', 'Definições', '2018-01-26 00:18:33'),
(12747, 'pt', 'panel', 'User Type Manager', 'Definiçodes de Tipo de Utilizador', '2018-01-26 00:18:33'),
(12748, 'pt', 'settings', 'API_SECRET', 'API password', '2018-01-26 00:23:30'),
(12749, 'pt', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Numero Máximo de proxies utilizado de uma só vez', '2018-01-26 00:23:30'),
(12750, 'pt', 'settings', 'SP_COMPANY_NAME', 'Nome da Empresa', '2018-01-26 00:23:30'),
(12751, 'pt', 'website', 'Please enter CSV file', 'Por Favor introduzir o ficheiro CSV', '2016-01-18 00:19:53'),
(12752, 'pt', 'website', 'User Type already exist', 'O tipo de utilizador já existe', '2016-01-18 00:19:53'),
(12753, 'pt', 'website', 'Website CSV File', 'Ficheiro CSV do website', '2016-01-18 00:19:53'),
(12754, 'pt', 'website', 'You can add only websitecount websites more', 'Só pode utilizar [websitecount] websites neste utilizador!', '2016-01-18 00:19:53'),
(12755, 'pt', 'website', 'Your website count already reached the limit', 'Já chegou ao limite de websites para este utilizador', '2016-01-18 00:19:53'),
(12756, 'pt', 'user', 'Expiry Date', 'Data de Expiração', '2016-01-18 00:20:08'),
(12757, 'pt', 'subscription', 'account-expired', 'A sua conta expirou. Por favor renove a sua subscrição.', '2018-01-26 00:26:54'),
(12758, 'pt', 'subscription', 'Amount', 'Valor a pagar', '2018-01-26 00:26:54'),
(12759, 'pt', 'subscription', 'click-activate-pay-plugin', 'Click aqui para activar o plugin de pagamento', '2018-01-26 00:26:54'),
(12760, 'pt', 'subscription', 'Currency', 'Moeda', '2018-01-26 00:26:54'),
(12761, 'pt', 'subscription', 'Edit Payment Gateway', 'Editar a gateway de pagamento', '2018-01-26 00:26:54'),
(12762, 'pt', 'subscription', 'internal-error-payment', 'Ocurreu um erro interno durante o processamento do pagamento', '2018-01-26 00:26:54'),
(12763, 'pt', 'subscription', 'Keyword Limit', 'Limite de Keyword', '2018-01-26 00:26:54'),
(12764, 'pt', 'subscription', 'Order Id', 'Nº do pedido', '2018-01-26 00:26:54'),
(12765, 'pt', 'subscription', 'Orders', 'Pedidos', '2018-01-26 00:26:54'),
(12766, 'pt', 'subscription', 'Paid By', 'Pago por', '2018-01-26 00:26:54'),
(12767, 'pt', 'subscription', 'Payment Gateway Manager', 'Gestor de gateways de pagamentos', '2018-01-26 00:26:54'),
(12768, 'pt', 'subscription', 'Payment Method', 'Método de pagamento', '2018-01-26 00:26:54'),
(12769, 'pt', 'subscription', 'Plans and Pricing', 'Planos e preços', '2018-01-26 00:26:54'),
(12770, 'pt', 'subscription', 'PP_BUSINESS_EMAIL', 'Email do Paypal', '2018-01-26 00:26:54'),
(12771, 'pt', 'subscription', 'PP_TOKEN', 'Paypal token', '2018-01-26 00:26:54'),
(12772, 'pt', 'subscription', 'Quantity', 'Quantidade', '2018-01-26 00:26:54'),
(12773, 'pt', 'subscription', 'Renew Subscription', 'Renovar subscrição', '2018-01-26 00:26:54'),
(12774, 'pt', 'subscription', 'Sandbox', 'Sandbox', '2018-01-26 00:26:54'),
(12775, 'pt', 'subscription', 'SP_PAYMENT_PLUGIN', '', '2018-01-26 00:26:54'),
(12776, 'pt', 'subscription', 'Subscribe', 'Subscrever', '2018-01-26 00:26:54'),
(12777, 'pt', 'subscription', 'Subscription', 'Subscrição', '2018-01-26 00:26:54'),
(12778, 'pt', 'subscription', 'Term', 'Termos', '2018-01-26 00:26:54'),
(12779, 'pt', 'subscription', 'Transaction Id', 'Nº de transacção', '2018-01-26 00:26:54'),
(12780, 'pt', 'subscription', 'Transaction Log', 'Histórico das Transações', '2018-01-26 00:26:54'),
(12781, 'pt', 'subscription', 'transaction-success', 'A sua Transacção foi processada com sucesso', '2018-01-26 00:26:54'),
(12782, 'pt', 'subscription', 'View Order', 'Ver a encomenda', '2018-01-26 00:26:54'),
(12783, 'pt', 'subscription', 'Website Limit', 'Limite de websites', '2018-01-26 00:26:54'),
(12784, 'pt', 'subscription', 'Your transaction cancelled', 'A sua transacção foi cancelada.', '2018-01-26 00:26:54'),
(12785, 'el', 'api', 'API Guide', 'Οδηγός API', '2018-05-24 12:25:43'),
(12786, 'el', 'api', 'API Url', 'API Url', '2018-05-24 12:25:43'),
(12787, 'el', 'common', 'Debug', 'Debug', '2019-08-28 09:40:52'),
(12788, 'el', 'common', 'Edit User Type', 'Επεξεργασία Τύπου Χρήστη', '2019-08-28 09:40:52'),
(12789, 'el', 'common', 'Keywords Count', 'Αριθμός Λέξεων Κλειδιών', '2019-08-28 09:40:52'),
(12790, 'el', 'common', 'New User Type', 'Νέος Τύπος Χρήστη', '2019-08-28 09:40:52'),
(12791, 'el', 'common', 'Price', 'Κόστος', '2019-08-28 09:40:52'),
(12792, 'el', 'common', 'Sample CSV File', 'Δείγμα CSV Αρχείου', '2019-08-28 09:40:52'),
(12793, 'el', 'common', 'User Type', 'Τύπος Χρήστη', '2019-08-28 09:40:52'),
(12794, 'el', 'common', 'Websites Count', 'Αριθμός Website', '2019-08-28 09:40:52'),
(12795, 'el', 'keyword', 'You can add only keywordcount keywords more', 'Μπορείτε να προσθέσετε μόνο [keywordcount] λέξεις κλειδιά για αυτό το χρήστη! ', '2016-01-27 13:02:49'),
(12796, 'el', 'keyword', 'Your keyword count already reached the limit', 'Ο αριθμός λέξεων κλειδιών έφτασε στο όριο για αυτόν το χρήστη!', '2016-01-27 13:02:49'),
(12797, 'el', 'label', 'Cookie', 'Cookie', '2019-11-28 23:22:10'),
(12798, 'el', 'label', 'Fail', 'Αποτυχία', '2019-11-28 23:22:10'),
(12799, 'el', 'label', 'Free', 'Δωρεάν', '2019-11-28 23:22:10'),
(12800, 'el', 'label', 'Order By', 'Ταξινόμηση Ανά', '2019-11-28 23:22:10'),
(12801, 'el', 'label', 'Reference', 'Αναφορά', '2019-11-28 23:22:10'),
(12802, 'el', 'label', 'Referer', 'Πηγή', '2019-11-28 23:22:10'),
(12803, 'el', 'label', 'Subject', 'Θέμα', '2019-11-28 23:22:10'),
(12804, 'el', 'label', 'Success', 'Επιτυχία', '2019-11-28 23:22:10'),
(12805, 'el', 'label', 'Type', 'Τύπος', '2019-11-28 23:22:10'),
(12806, 'el', 'label', 'User agent', 'Πράκτορας χρήστη', '2019-11-28 23:22:10'),
(12807, 'el', 'log', 'Clear All Logs', 'Καθαρισμός Όλων των Logs', '2016-01-27 13:04:26'),
(12808, 'el', 'log', 'Crawl Log Details', 'Crawl Log Details', '2016-01-27 13:04:26'),
(12809, 'el', 'log', 'Post Fields', 'Post Fields', '2016-01-27 13:04:26'),
(12810, 'el', 'login', 'User Type', 'Τύπος Χρήστη', '2018-08-23 10:13:36'),
(12811, 'el', 'panel', 'API Connection', 'API Connection ', '2019-08-28 09:42:17'),
(12812, 'el', 'panel', 'API Manager', 'API Manager ', '2019-08-28 09:42:17'),
(12813, 'el', 'panel', 'API Settings', 'API Settings ', '2019-08-28 09:42:17'),
(12814, 'el', 'panel', 'Crawl Log Manager', 'Crawl Log Manager ', '2019-08-28 09:42:17'),
(12815, 'el', 'panel', 'Import Websites', 'Εισαγωγή Websites', '2019-08-28 09:42:17'),
(12816, 'el', 'panel', 'Log Manager', 'Log Manager ', '2019-08-28 09:42:17'),
(12817, 'el', 'panel', 'New User Type', 'Νέος Τύπος Χρήστη', '2019-08-28 09:42:17'),
(12818, 'el', 'panel', 'Proxy Perfomance', 'Proxy Perfomance', '2019-08-28 09:42:17'),
(12819, 'el', 'panel', 'Settings', 'Ρυθμίσεις', '2019-08-28 09:42:17'),
(12820, 'el', 'panel', 'User Type Manager', 'Διαχειριστής Τύπων Χρήστη', '2019-08-28 09:42:17'),
(12821, 'el', 'proxy', 'Request Count', 'Request Count', '2016-12-29 18:06:18'),
(12822, 'el', 'settings', 'API_SECRET', 'API Secret', '2019-08-28 09:43:40'),
(12823, 'el', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Maximum number of proxies used in single execution', '2019-08-28 09:43:40'),
(12824, 'el', 'settings', 'SP_COMPANY_NAME', 'Όνομα Εταιρείας', '2019-08-28 09:43:40'),
(12825, 'el', 'settings', 'SP_TIME_ZONE', 'Ζώνη Ώρας', '2019-08-28 09:43:40'),
(12826, 'el', 'subscription', 'account-expired', 'Ο λογαριασμός σας έχει λήξει. Παρακαλώ ανανεώστε τη συνδρομή σας.', '2019-11-28 23:11:38'),
(12827, 'el', 'subscription', 'Amount', 'Ποσό', '2019-11-28 23:11:38'),
(12828, 'el', 'subscription', 'click-activate-pay-plugin', 'Κλικ για να ενεργοποιήσετε το plugin πληρωμής', '2019-11-28 23:11:38'),
(12829, 'el', 'subscription', 'Currency', 'Νόμισμα', '2019-11-28 23:11:38'),
(12830, 'el', 'subscription', 'Edit Payment Gateway', 'Επεξεργασία Payment Gateway', '2019-11-28 23:11:38'),
(12831, 'el', 'subscription', 'internal-error-payment', 'Εσωτερικό σφάλμα κατά την διαδικασία πληρωμής.', '2019-11-28 23:11:38'),
(12832, 'el', 'subscription', 'Keyword Limit', 'Όριο Λέξεων', '2019-11-28 23:11:38'),
(12833, 'el', 'subscription', 'Order Id', 'Id Παραγγελίας', '2019-11-28 23:11:38'),
(12834, 'el', 'subscription', 'Orders', 'Παραγγελίες', '2019-11-28 23:11:38'),
(12835, 'el', 'subscription', 'Paid By', 'Πληρώθηκε Από', '2019-11-28 23:11:38'),
(12836, 'el', 'subscription', 'Payment Gateway Manager', 'Payment Gateway Manager', '2019-11-28 23:11:38'),
(12837, 'el', 'subscription', 'Payment Method', 'Μέθοδος Πληρωμής', '2019-11-28 23:11:38'),
(12838, 'el', 'subscription', 'Plans and Pricing', 'Πακέτα και Κόστος', '2019-11-28 23:11:38'),
(12839, 'el', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business Email', '2019-11-28 23:11:38'),
(12840, 'el', 'subscription', 'PP_TOKEN', 'Paypal Token', '2019-11-28 23:11:38'),
(12841, 'el', 'subscription', 'Quantity', 'Ποσότητα', '2019-11-28 23:11:38'),
(12842, 'el', 'subscription', 'Renew Subscription', 'Ανανέωση Συνδρομής', '2019-11-28 23:11:38'),
(12843, 'el', 'subscription', 'Sandbox', 'Sandbox', '2019-11-28 23:11:38'),
(12844, 'el', 'subscription', 'SP_PAYMENT_PLUGIN', 'Default Payment Plugin', '2019-11-28 23:11:38'),
(12845, 'el', 'subscription', 'Subscribe', 'Εγγραφή', '2019-11-28 23:11:38'),
(12846, 'el', 'subscription', 'Subscription', 'Συνδρομή', '2019-11-28 23:11:38'),
(12847, 'el', 'subscription', 'Term', 'Όρος', '2019-11-28 23:11:38'),
(12848, 'el', 'subscription', 'Transaction Id', 'Id Συναλλαγής', '2019-11-28 23:11:38'),
(12849, 'el', 'subscription', 'Transaction Log', 'Transaction Log', '2019-11-28 23:11:38'),
(12850, 'el', 'subscription', 'transaction-success', 'Η συναλλαγή σας πραγματοποιήθηκε επιτυχώς.', '2019-11-28 23:11:38'),
(12851, 'el', 'subscription', 'View Order', 'Σειρά Προβολής', '2019-11-28 23:11:38'),
(12852, 'el', 'subscription', 'Website Limit', 'Όριο Website', '2019-11-28 23:11:38'),
(12853, 'el', 'subscription', 'Your transaction cancelled', 'Η συναλλαγή σας ακυρώθηκε.', '2019-11-28 23:11:38'),
(12854, 'el', 'user', 'Expiry Date', 'Ημερομηνία Λήξης', '2016-01-27 13:13:11'),
(12855, 'el', 'website', 'Please enter CSV file', 'Παρακαλώ εισάγετε αρχείο CSV', '2019-08-28 09:44:53'),
(12856, 'el', 'website', 'User Type already exist', 'Ο Τύπος χρήστη ήδη υπάρχει', '2019-08-28 09:44:53'),
(12857, 'el', 'website', 'Website CSV File', 'Αρχείο CSV website', '2019-08-28 09:44:53'),
(12858, 'el', 'website', 'You can add only websitecount websites more', 'Μπορείτε να προσθέσετε μόνο [websitecount] websites για αυτό το χρήστη!', '2019-08-28 09:44:53'),
(12859, 'el', 'website', 'Your website count already reached the limit', 'Αυτός ο χρήστης έχει φτάσει στο όριο των website!', '2019-08-28 09:44:53'),
(12860, 'en', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of pages', '2016-06-15 01:22:30'),
(12861, 'en', 'panel', 'MOZ Settings', 'MOZ Settings', '2016-06-15 01:22:30'),
(12862, 'en', 'settings', 'Verify connection', 'Verify connection', '2016-06-15 01:22:30'),
(12863, 'en', 'proxy', 'click-to-get-proxy', 'Click here to get proxy', '2016-06-15 01:22:30'),
(12864, 'en', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2016-06-15 01:22:30'),
(12865, 'en', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2016-06-15 01:22:30'),
(12866, 'en', 'settings', 'click-to-get-moz-account', 'Click here to get MOZ account', '2016-06-15 01:22:30'),
(12867, 'en', 'common', 'MOZ Rank', 'MOZ Rank', '2016-06-15 01:22:30'),
(12868, 'en', 'common', 'Pagerank', 'Pagerank', '2016-06-15 01:22:30'),
(12869, 'en', 'common', 'Page Authority', 'Page Authority', '2016-12-09 13:59:56'),
(12870, 'en', 'common', 'Domain Authority', 'Domain Authority', '2016-12-09 13:59:56'),
(12871, 'en', 'siteauditor', 'The page is having excellent page authority value', 'The page has excellent page authority value', '2016-12-09 13:59:56'),
(12872, 'en', 'siteauditor', 'The page is having very good page authority value', 'The page has very good page authority value', '2016-12-09 13:59:56'),
(12873, 'en', 'siteauditor', 'The page is having good page authority value', 'The page has good page authority value', '2016-12-09 13:59:56'),
(12874, 'en', 'siteauditor', 'The page is having poor page authority value', 'The page has poor page authority value', '2016-12-09 13:59:56'),
(12875, 'it', 'api', 'API Guide', 'Guida API', '2016-12-09 14:15:35'),
(12876, 'it', 'api', 'API Url', 'URL API', '2016-12-09 14:15:35'),
(12877, 'it', 'common', 'Debug', 'Debug', '2022-07-11 15:16:48'),
(12878, 'it', 'common', 'Domain Authority', 'Authority dominio', '2022-07-11 15:16:48'),
(12879, 'it', 'common', 'Edit User Type', 'Moditica tipo utente', '2022-07-11 15:16:48'),
(12880, 'it', 'common', 'Keywords Count', 'Conteggio keywords', '2022-07-11 15:16:48'),
(12881, 'it', 'common', 'MOZ Rank', 'Rank MOZ', '2022-07-11 15:16:48'),
(12882, 'it', 'common', 'New User Type', 'Nuovo tipo utente', '2022-07-11 15:16:48'),
(12883, 'it', 'common', 'Page Authority', 'Authority pagina', '2022-07-11 15:16:48'),
(12884, 'it', 'common', 'Pagerank', 'Pagerank', '2022-07-11 15:16:48'),
(12885, 'it', 'common', 'Price', 'Prezzo', '2022-07-11 15:16:48'),
(12886, 'it', 'common', 'Sample CSV File', 'Modello di file CSV', '2022-07-11 15:16:48'),
(12887, 'it', 'common', 'User Type', 'Tipo utente', '2022-07-11 15:16:48'),
(12888, 'it', 'common', 'Websites Count', 'Conteggio sito web', '2022-07-11 15:16:48'),
(12889, 'it', 'keyword', 'You can add only keywordcount keywords more', 'Puoi aggiungere solo [keywordcount] keywords per questo utente!', '2016-12-09 14:18:13'),
(12890, 'it', 'keyword', 'Your keyword count already reached the limit', 'Il numero massimo di keyword è già stato raggiunto per questo utente!', '2016-12-09 14:18:13'),
(12891, 'it', 'label', 'Free', 'Gratis', '2022-07-11 15:17:58'),
(12892, 'it', 'label', 'Type', 'Tipo', '2022-07-11 15:17:58'),
(12893, 'it', 'login', 'User Type', 'Tipo utente', '2018-08-21 11:07:40'),
(12894, 'it', 'panel', 'API Connection', 'Connessione API', '2022-07-11 15:20:07'),
(12895, 'it', 'panel', 'API Manager', 'Gestione API', '2022-07-11 15:20:07'),
(12896, 'it', 'panel', 'API Settings', 'Impostazioni API', '2022-07-11 15:20:07'),
(12897, 'it', 'panel', 'Import Websites', 'Importa sito web', '2022-07-11 15:20:07'),
(12898, 'it', 'panel', 'MOZ Settings', 'Impostazioni MOZ', '2022-07-11 15:20:07'),
(12899, 'it', 'panel', 'New User Type', 'Nuovo tipo utente', '2022-07-11 15:20:07'),
(12900, 'it', 'panel', 'Settings', 'Impostazioni', '2022-07-11 15:20:07'),
(12901, 'it', 'panel', 'User Type Manager', 'Gestione tipo utente', '2022-07-11 15:20:07'),
(12902, 'it', 'proxy', 'click-to-get-proxy', 'Clica quì per prelevare il proxy', '2016-12-09 14:20:46'),
(12903, 'it', 'settings', 'API_SECRET', 'Chiave segreta API', '2018-08-21 11:16:32'),
(12904, 'it', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Numero massimo di proxy utilizzati per singola esecuzione', '2018-08-21 11:16:32'),
(12905, 'it', 'settings', 'click-to-get-moz-account', 'Clicca quì per prelevare l''account MOZ', '2018-08-21 11:16:32'),
(12906, 'it', 'settings', 'SP_COMPANY_NAME', 'Nome azienda', '2018-08-21 11:16:32'),
(12907, 'it', 'settings', 'SP_MOZ_API_ACCESS_ID', 'ID di accesso', '2018-08-21 11:16:32'),
(12908, 'it', 'settings', 'SP_MOZ_API_SECRET', 'Chiave segreta', '2018-08-21 11:16:32'),
(12909, 'it', 'settings', 'Verify connection', 'Verifica connessione', '2018-08-21 11:16:32'),
(12910, 'it', 'siteauditor', 'Check pagerank of pages', 'Controlla il page rank per le pagine', '2018-08-21 11:14:08'),
(12911, 'it', 'siteauditor', 'The page is having excellent page authority value', 'Questa pagina ha un''eccellente valore di authority', '2018-08-21 11:14:08'),
(12912, 'it', 'siteauditor', 'The page is having good page authority valu', 'Questa pagina ha un buon valore di authority', '2016-12-09 14:23:32'),
(12913, 'it', 'siteauditor', 'The page is having poor page authority value', 'Questa pagina ha un povero valore di authority', '2018-08-21 11:14:08'),
(12914, 'it', 'siteauditor', 'The page is having very good page authority value', 'Questa pagina ha un buonissimo valore di authority', '2018-08-21 11:14:08'),
(12915, 'pt-br', 'api', 'API Guide', 'Guia da API', '2016-12-09 16:46:20'),
(12916, 'pt-br', 'common', 'Domain Authority', 'Autoridade do Domínio', '2019-07-30 00:26:27'),
(12917, 'pt-br', 'common', 'MOZ Rank', 'Rank MOZ', '2019-07-30 00:26:27'),
(12918, 'pt-br', 'common', 'Page Authority', 'Autoridade da Página', '2019-07-30 00:26:27'),
(12919, 'pt-br', 'common', 'Pagerank', 'Pagerank', '2019-07-30 00:26:27'),
(12920, 'pt-br', 'label', 'Type', 'Tipo', '2018-08-21 18:54:11'),
(12921, 'pt-br', 'panel', 'MOZ Settings', 'Configurações MOZ', '2018-01-23 18:32:33'),
(12922, 'pt-br', 'panel', 'Settings', 'Configurações', '2018-01-23 18:32:33'),
(12923, 'pt-br', 'proxy', 'click-to-get-proxy', 'Clique aqui para selecionar proxy', '2016-12-09 16:48:39'),
(12924, 'pt-br', 'settings', 'click-to-get-moz-account', 'Clique aqui para selecionar a conta do MOZ', '2018-06-02 17:47:27'),
(12925, 'pt-br', 'settings', 'SP_MOZ_API_ACCESS_ID', 'ID de acesso', '2018-06-02 17:47:27'),
(12926, 'pt-br', 'settings', 'SP_MOZ_API_SECRET', 'Chave de Acesso', '2018-06-02 17:47:27'),
(12927, 'pt-br', 'settings', 'Verify connection', 'Verificar conexão', '2018-06-02 17:47:27'),
(12928, 'ru', 'common', 'Domain Authority', 'Авторитет домена', '2024-07-17 15:16:33'),
(12929, 'ru', 'common', 'MOZ Rank', 'Рейтинг MOZ', '2024-07-17 15:16:33'),
(12930, 'ru', 'common', 'Page Authority', 'Авторитет страницы', '2024-07-17 15:16:33'),
(12931, 'ru', 'common', 'Pagerank', 'Pagerank', '2024-07-17 15:16:33'),
(12932, 'ru', 'panel', 'MOZ Settings', 'Настройка MOZ', '2024-07-17 15:19:14'),
(12933, 'ru', 'proxy', 'click-to-get-proxy', 'Нажмите для получения прокси', '2016-12-09 21:23:58'),
(12934, 'ru', 'settings', 'click-to-get-moz-account', 'Нажмите для регистрации в MOZ', '2024-07-17 15:22:42'),
(12935, 'ru', 'settings', 'SP_MOZ_API_ACCESS_ID', 'ID доступа', '2024-07-17 15:22:42'),
(12936, 'ru', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2024-07-17 15:22:42'),
(12937, 'ru', 'settings', 'Verify connection', 'Проверить соединение', '2024-07-17 15:22:42'),
(12938, 'ru', 'siteauditor', 'Check pagerank of pages', 'Проверить pagerank страниц', '2017-07-13 20:51:34'),
(12939, 'ru', 'siteauditor', 'The page is having excellent page authority value', 'Страница с отличным соотношением полномочий страницы', '2017-07-13 20:51:34'),
(12940, 'ru', 'siteauditor', 'The page is having good page authority valu', 'Страница с хорошим авторитетом', '2016-12-09 21:27:44'),
(12941, 'ru', 'siteauditor', 'The page is having poor page authority value', 'Страница с плохим авторитетом', '2017-07-13 20:51:34'),
(12942, 'ru', 'siteauditor', 'The page is having very good page authority value', 'Страница с очень хорошим соотношением авторитетом страниц', '2017-07-13 20:51:34'),
(12943, 'fr', 'subscription', 'Orders', 'Commandes', '2019-03-28 18:42:59'),
(12944, 'fr', 'subscription', 'Payment Gateway Manager', 'Gestion de la passerelle de paiement', '2019-03-28 18:42:59'),
(12945, 'fr', 'subscription', 'Your transaction cancelled', 'La transaction est annulée.', '2019-03-28 18:42:59'),
(12946, 'fr', 'siteauditor', 'Check pagerank of pages', 'Vérifier le pagerank des pages', '2018-01-23 03:56:01'),
(12947, 'fr', 'siteauditor', 'The page is having excellent page authority value', 'La page a une excellente valeur page authority', '2018-01-23 03:56:01'),
(12948, 'fr', 'siteauditor', 'The page is having good page authority valu', 'La page a une bonne valeur page autority', '2016-12-09 23:03:26'),
(12949, 'fr', 'siteauditor', 'The page is having poor page authority value', 'La page a une valeur page authority faible', '2018-01-23 03:56:01'),
(12950, 'fr', 'siteauditor', 'The page is having very good page authority value', 'La page a très bonne valeur page authority', '2018-01-23 03:56:01'),
(12951, 'fr', 'settings', 'click-to-get-moz-account', 'Cliquer ici pour obtenir un compte MOZ', '2019-03-28 18:39:30'),
(12952, 'fr', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Identifiant Access ID', '2019-03-28 18:39:30'),
(12953, 'fr', 'settings', 'SP_MOZ_API_SECRET', 'Clé secrète (Secret Key)', '2019-03-28 18:39:30'),
(12954, 'fr', 'settings', 'Verify connection', 'Vérifier la connexion', '2019-03-28 18:39:30'),
(12955, 'fr', 'proxy', 'click-to-get-proxy', 'Cliquer ici pour obtenir un proxy', '2016-12-09 23:07:31'),
(12956, 'fr', 'panel', 'MOZ Settings', 'Paramètres MOZ', '2020-02-14 16:14:52'),
(12957, 'fr', 'panel', 'Settings', 'Paramètres', '2020-02-14 16:14:52'),
(12958, 'fr', 'label', 'Type', 'Type', '2020-02-14 16:12:40'),
(12959, 'fr', 'common', 'Domain Authority', 'Domain Authority', '2020-02-14 16:05:11'),
(12960, 'fr', 'common', 'MOZ Rank', 'MOZ Rank', '2020-02-14 16:05:11'),
(12961, 'fr', 'common', 'Page Authority', 'Page Authority', '2020-02-14 16:05:11'),
(12962, 'fr', 'common', 'Pagerank', 'Pagerank', '2020-02-14 16:05:11'),
(12963, 'fr', 'api', 'API Guide', 'Guide de l''API', '2016-12-09 23:12:12'),
(12964, 'ja', 'api', 'API Guide', 'APIガイド', '2018-08-21 10:17:47'),
(12965, 'ja', 'label', 'Type', 'タイプ', '2019-04-01 13:45:51'),
(12966, 'ja', 'panel', 'MOZ Settings', 'MOZ設定', '2019-04-01 13:46:57'),
(12967, 'ja', 'panel', 'Settings', '設定', '2019-04-01 13:46:57'),
(12968, 'ja', 'proxy', 'click-to-get-proxy', 'クリックしてプロキシを取得', '2016-12-12 06:08:13'),
(12969, 'ja', 'settings', 'click-to-get-moz-account', 'クリックしてMOZアカウントを取得', '2019-04-01 13:52:17'),
(12970, 'ja', 'settings', 'SP_MOZ_API_ACCESS_ID', 'アクセスID', '2019-04-01 13:52:17'),
(12971, 'ja', 'settings', 'SP_MOZ_API_SECRET', 'シークレットキー', '2019-04-01 13:52:17'),
(12972, 'ja', 'settings', 'Verify connection', '接続を認証', '2019-04-01 13:52:17'),
(12973, 'ja', 'common', 'Domain Authority', 'ドメインオーソリティ', '2019-05-25 22:40:02'),
(12974, 'ja', 'common', 'MOZ Rank', 'MOZランク', '2019-05-25 22:40:02'),
(12975, 'ja', 'common', 'Page Authority', 'ページ権限', '2019-05-25 22:40:02'),
(12976, 'ja', 'common', 'Pagerank', 'ページランク', '2019-05-25 22:40:02'),
(12977, 'ja', 'siteauditor', 'Check pagerank of pages', 'ページのページランクを確認する', '2018-01-23 06:19:20'),
(12978, 'ja', 'siteauditor', 'The page is having excellent page authority value', 'ページのオーソリティ値は極めて優秀です', '2018-01-23 06:19:20'),
(12979, 'ja', 'siteauditor', 'The page is having good page authority valu', 'ページのオーソリティ値は良好です\r\n', '2016-12-12 09:56:08'),
(12980, 'ja', 'siteauditor', 'The page is having poor page authority value', 'ページのオーソリティ値は悪いです', '2018-01-23 06:19:20'),
(12981, 'ja', 'siteauditor', 'The page is having very good page authority value', 'ページのオーソリティ値はとても良いです', '2018-01-23 06:19:20'),
(12982, 'ja', 'subscription', 'Orders', '注文', '2019-04-01 13:54:02'),
(12983, 'ja', 'subscription', 'Payment Gateway Manager', 'ペイメントゲートウェイマネージャー', '2019-04-01 13:54:02'),
(12984, 'bg', 'api', 'API Guide', 'API Ръководство', '2016-12-18 21:52:34'),
(12985, 'bg', 'common', 'Domain Authority', 'Домейн ауторити', '2019-05-25 22:00:14'),
(12986, 'bg', 'common', 'MOZ Rank', 'MOZ Ранк', '2019-05-25 22:00:14'),
(12987, 'bg', 'common', 'Page Authority', 'Пейдж ауторити', '2019-05-25 22:00:14'),
(12988, 'bg', 'common', 'Pagerank', 'Пейджранк', '2019-05-25 22:00:14'),
(12989, 'bg', 'common', 'Sample CSV File', 'Примерен CSV файл', '2019-05-25 22:00:14'),
(12990, 'bg', 'keyword', 'You can add only keywordcount keywords more', 'Можете да добавите само [keywordcount] ключови думи за този потребител!', '2016-12-18 22:06:16'),
(12991, 'bg', 'keyword', 'Your keyword count already reached the limit', 'Достигнали сте лимита за ключови думи за този потребител!', '2016-12-18 22:06:16'),
(12992, 'bg', 'label', 'Free', 'Безплатно', '2018-08-21 11:09:26'),
(12993, 'bg', 'label', 'Type', 'Тип', '2018-08-21 11:09:26'),
(12994, 'bg', 'login', 'User Type', 'Тип потребител', '2018-08-21 11:10:13'),
(12995, 'bg', 'panel', 'Import Websites', 'Импортиране на сайтове', '2018-08-21 11:14:04'),
(12996, 'bg', 'panel', 'MOZ Settings', 'MOZ настройки', '2018-08-21 11:14:04'),
(12997, 'bg', 'panel', 'Settings', 'Настройки', '2018-08-21 11:14:04'),
(12998, 'bg', 'proxy', 'click-to-get-proxy', 'Кликнете тук, за да получите прокси', '2016-12-18 22:08:18'),
(12999, 'bg', 'settings', 'click-to-get-moz-account', 'Кликнете тук, за създване на MOZ акаунт', '2018-08-21 11:24:42'),
(13000, 'bg', 'settings', 'SP_MOZ_API_ACCESS_ID', 'ID за достъп', '2018-08-21 11:24:42'),
(13001, 'bg', 'settings', 'SP_MOZ_API_SECRET', 'Секретен ключ', '2018-08-21 11:24:42'),
(13002, 'bg', 'settings', 'Verify connection', 'Верифициране на връзката', '2018-08-21 11:24:42'),
(13003, 'bg', 'siteauditor', 'Check pagerank of pages', 'Проверка на пейджранк на страниците', '2018-08-21 11:25:49'),
(13004, 'bg', 'siteauditor', 'The page is having excellent page authority value', 'Страницата има отличен пейдж ауторити', '2018-08-21 11:25:49'),
(13005, 'bg', 'siteauditor', 'The page is having good page authority valu', 'Страницата има добър пейдж ауторити', '2016-12-18 22:17:52'),
(13006, 'bg', 'siteauditor', 'The page is having poor page authority value', 'Страницата има лош пейдж ауторити', '2018-08-21 11:25:49'),
(13007, 'bg', 'siteauditor', 'The page is having very good page authority value', 'Страницата има много добър пейдж ауторити', '2018-08-21 11:25:49'),
(13008, 'bg', 'subscription', 'account-expired', 'Акаунта Ви е изтекъл. Обновете вашият абонамент', '2018-08-21 11:40:35'),
(13009, 'bg', 'subscription', 'Amount', 'Сума', '2018-08-21 11:40:35'),
(13010, 'bg', 'subscription', 'click-activate-pay-plugin', 'Кликнете тук за да активирате модула за плащания', '2018-08-21 11:40:35'),
(13011, 'bg', 'subscription', 'Currency', 'Валута', '2018-08-21 11:40:35'),
(13012, 'bg', 'subscription', 'internal-error-payment', 'Възникна системна грешка по време на обработване на плащането', '2018-08-21 11:40:35'),
(13013, 'bg', 'subscription', 'Keyword Limit', 'Лимит на ключовите думи', '2018-08-21 11:40:35'),
(13014, 'bg', 'subscription', 'Order Id', 'Поръчка №', '2018-08-21 11:40:35'),
(13015, 'bg', 'subscription', 'Orders', 'Поръчки', '2018-08-21 11:40:35'),
(13016, 'bg', 'subscription', 'Paid By', 'Платени от', '2018-08-21 11:40:35'),
(13017, 'bg', 'subscription', 'Payment Gateway Manager', 'Мениджър на начините за плащане', '2018-08-21 11:40:35'),
(13018, 'bg', 'subscription', 'Plans and Pricing', 'Планове и цени', '2018-08-21 11:40:35'),
(13019, 'bg', 'subscription', 'Quantity', 'Количество', '2018-08-21 11:40:35'),
(13020, 'bg', 'subscription', 'Renew Subscription', 'Поднови абонамента', '2018-08-21 11:40:35'),
(13021, 'bg', 'subscription', 'Subscribe', 'Абонирай се', '2018-08-21 11:40:35'),
(13022, 'bg', 'subscription', 'Term', 'Условия', '2018-08-21 11:40:35'),
(13023, 'bg', 'subscription', 'Transaction Id', 'Транзакция №', '2018-08-21 11:40:35'),
(13024, 'bg', 'subscription', 'Transaction Log', 'Лог на транзакция', '2018-08-21 11:40:35'),
(13025, 'bg', 'subscription', 'transaction-success', 'Транзакция премина успешно', '2018-08-21 11:40:35'),
(13026, 'bg', 'subscription', 'View Order', 'Преглед на поръчка', '2018-08-21 11:40:35'),
(13027, 'bg', 'subscription', 'Website Limit', 'Уебсайт лимит', '2018-08-21 11:40:35'),
(13028, 'bg', 'subscription', 'Your transaction cancelled', 'Вашата транзакция е отменена', '2018-08-21 11:40:35'),
(13029, 'bg', 'user', 'Expiry Date', 'Дата на изтичане', '2016-12-18 22:18:03'),
(13030, 'bg', 'website', 'Please enter CSV file', 'Изберете CSV файл', '2016-12-18 22:19:36'),
(13031, 'bg', 'website', 'Website CSV File', 'CSV файл на Уебсайта', '2016-12-18 22:19:36'),
(13032, 'bg', 'website', 'You can add only websitecount websites more', 'Можете да добавите само [websitecount] уебсайта за този потребител!', '2016-12-18 22:19:36'),
(13033, 'bg', 'website', 'Your website count already reached the limit', 'Достигнали сте лимита за уебсайтове за този потребител.', '2016-12-18 22:19:36'),
(13034, 'el', 'common', 'Domain Authority', 'Domain Authority', '2019-08-28 09:40:52'),
(13035, 'el', 'common', 'MOZ Rank', 'MOZ Rank', '2019-08-28 09:40:52'),
(13036, 'el', 'common', 'Page Authority', 'Page Authority', '2019-08-28 09:40:52'),
(13037, 'el', 'common', 'Pagerank', 'Pagerank', '2019-08-28 09:40:52'),
(13038, 'el', 'panel', 'MOZ Settings', 'MOZ Ρυθμίσεις', '2019-08-28 09:42:17'),
(13039, 'el', 'proxy', 'click-to-get-proxy', 'Κλικ εδώ για να πάρετε proxy', '2016-12-29 18:06:18'),
(13040, 'el', 'settings', 'click-to-get-moz-account', 'Κλικ εδώ για να πάρετε λογαριασμό ΜΟΖ', '2019-08-28 09:43:40'),
(13041, 'el', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2019-08-28 09:43:40'),
(13042, 'el', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2019-08-28 09:43:40'),
(13043, 'el', 'settings', 'Verify connection', 'Verify connection', '2019-08-28 09:43:40'),
(13044, 'el', 'siteauditor', 'Check pagerank of pages', 'Έλεγχος pagerank των σελίδων', '2017-07-18 10:05:38'),
(13045, 'el', 'siteauditor', 'The page is having excellent page authority value', 'Αυτή η σελίδα έχει άριστη page authority value ', '2017-07-18 10:05:38'),
(13046, 'el', 'siteauditor', 'The page is having good page authority valu', 'Αυτή η σελίδα έχει καλή page authority value ', '2016-12-29 18:08:38'),
(13047, 'el', 'siteauditor', 'The page is having poor page authority value', 'Αυτή η σελίδα έχει χαμηλή page authority value ', '2017-07-18 10:05:38'),
(13048, 'el', 'siteauditor', 'The page is having very good page authority value', 'Αυτή η σελίδα έχει πολύ καλή page authority value ', '2017-07-18 10:05:38'),
(13049, 'tr', 'api', 'API Guide', 'API Rehberi', '2017-02-04 18:03:47'),
(13050, 'tr', 'api', 'API Url', 'API Url', '2017-02-04 18:03:47'),
(13051, 'tr', 'common', 'Checked', 'Kontrol Edilmiş', '2019-05-25 22:52:20'),
(13052, 'tr', 'common', 'Debug', 'Hata Ayıklama', '2019-05-25 22:52:20'),
(13053, 'tr', 'common', 'Domain Authority', 'Domain Otoritesi', '2019-05-25 22:52:20'),
(13054, 'tr', 'common', 'Edit User Type', 'Üye Tipi Düzenle', '2019-05-25 22:52:20'),
(13055, 'tr', 'common', 'Keywords Count', 'Kelime Sayısı', '2019-05-25 22:52:20'),
(13056, 'tr', 'common', 'MOZ Rank', 'MOZ Sıralaması', '2019-05-25 22:52:20'),
(13057, 'tr', 'common', 'New User Type', 'Yeni Kullanıcı Türü', '2019-05-25 22:52:20'),
(13058, 'tr', 'common', 'Page Authority', 'Sayfa Otoritesi', '2019-05-25 22:52:20'),
(13059, 'tr', 'common', 'Pagerank', 'Sayfa Sıralaması', '2019-05-25 22:52:20'),
(13060, 'tr', 'common', 'Price', 'Ücret', '2019-05-25 22:52:20'),
(13061, 'tr', 'common', 'Sample CSV File', 'Örnek CSV Dosyası', '2019-05-25 22:52:20'),
(13062, 'tr', 'common', 'Thank you', 'Teşekkürler', '2019-05-25 22:52:20'),
(13063, 'tr', 'common', 'User Type', 'Üye Tipi', '2019-05-25 22:52:20'),
(13064, 'tr', 'common', 'Websites Count', 'Websitesi Sayısı', '2019-05-25 22:52:20'),
(13065, 'tr', 'website', 'Please enter CSV file', 'Lütfen, CSV dosyasını giriniz', '2017-02-04 18:19:01'),
(13066, 'tr', 'website', 'User Type already exist', 'Kullanıcı tipi zaten mevcut', '2017-02-04 18:19:01'),
(13067, 'tr', 'website', 'Website CSV File', 'Website CSV Dosyası', '2017-02-04 18:19:01'),
(13068, 'tr', 'website', 'You can add only websitecount websites more', 'Bu Kullanıcı için yalnızca [websitecount] adet web sitesi ekleyebilirsiniz!', '2017-02-04 18:19:01'),
(13069, 'tr', 'website', 'Your website count already reached the limit', 'Website sayısı bu kullanıcı için limite ulaşmış!', '2017-02-04 18:19:01'),
(13070, 'tr', 'user', 'Expiry Date', 'Bitiş Tarihi', '2017-02-04 18:22:48'),
(13071, 'tr', 'subscription', 'account-expired', 'Hesabınızın süresi bitmiş. Lütfen aboneliğinizi yenileyiniz.', '2017-02-04 18:31:17'),
(13072, 'tr', 'subscription', 'Amount', 'Tutar', '2017-02-04 18:31:17'),
(13073, 'tr', 'subscription', 'click-activate-pay-plugin', 'Ödeme eklentisini Aktif etmek için buraya tıklayınız.', '2017-02-04 18:31:17'),
(13074, 'tr', 'subscription', 'Currency', 'Döviz Kuru', '2017-02-04 18:31:17'),
(13075, 'tr', 'subscription', 'Edit Payment Gateway', 'Ödeme Yöntemi Düzenle', '2017-02-04 18:31:17'),
(13076, 'tr', 'subscription', 'internal-error-payment', '', '2017-02-04 18:31:17'),
(13077, 'tr', 'subscription', 'Keyword Limit', 'Kelime Limiti', '2017-02-04 18:31:17'),
(13078, 'tr', 'subscription', 'Order Id', 'Sipariş ID', '2017-02-04 18:31:17'),
(13079, 'tr', 'subscription', 'Orders', 'Siparişler', '2017-02-04 18:31:17'),
(13080, 'tr', 'subscription', 'Paid By', 'tarafından ödendi', '2017-02-04 18:31:17'),
(13081, 'tr', 'subscription', 'Payment Gateway Manager', 'Ödeme Yöntemi Yöneticisi', '2017-02-04 18:31:17'),
(13082, 'tr', 'subscription', 'Payment Method', 'Ödeme Metodu', '2017-02-04 18:31:17'),
(13083, 'tr', 'subscription', 'Plans and Pricing', 'Paketler ve Ücretler', '2017-02-04 18:31:17'),
(13084, 'tr', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal İş Maili', '2017-02-04 18:31:17'),
(13085, 'tr', 'subscription', 'PP_TOKEN', 'Paypal Token', '2017-02-04 18:31:17'),
(13086, 'tr', 'subscription', 'Quantity', 'Adet', '2017-02-04 18:31:17'),
(13087, 'tr', 'subscription', 'Renew Subscription', 'Aboneliği Yenile', '2017-02-04 18:31:17'),
(13088, 'tr', 'subscription', 'Sandbox', 'Sandbox', '2017-02-04 18:31:17'),
(13089, 'tr', 'subscription', 'SP_PAYMENT_PLUGIN', 'Varsayılan Ödeme Eklentisi', '2017-02-04 18:31:17'),
(13090, 'tr', 'subscription', 'Subscribe', 'Abone Ol', '2017-02-04 18:31:17'),
(13091, 'tr', 'subscription', 'Subscription', 'Abonelik', '2017-02-04 18:31:17'),
(13092, 'tr', 'subscription', 'Term', 'Dönem', '2017-02-04 18:31:17'),
(13093, 'tr', 'subscription', 'Transaction Id', 'İşlem ID', '2017-02-04 18:31:17'),
(13094, 'tr', 'subscription', 'Transaction Log', 'İşlem Log''u', '2017-02-04 18:31:17'),
(13095, 'tr', 'subscription', 'transaction-success', 'İşleminiz başarıyla tamamlandı.', '2017-02-04 18:31:17'),
(13096, 'tr', 'subscription', 'View Order', 'Siparişleri Görüntüle', '2017-02-04 18:31:17'),
(13097, 'tr', 'subscription', 'Website Limit', 'Website Limiti', '2017-02-04 18:31:17'),
(13098, 'tr', 'subscription', 'Your transaction cancelled', 'İptal edilen İşlemler', '2017-02-04 18:31:17'),
(13099, 'tr', 'siteauditor', 'Check pagerank of pages', 'Sayfaların sıralamasını kontrol et', '2017-02-04 18:37:17'),
(13100, 'tr', 'siteauditor', 'The page is having excellent page authority value', 'Sayfa "Mükemmel" Otorite değerine sahip', '2017-02-04 18:37:17'),
(13101, 'tr', 'siteauditor', 'The page is having good page authority valu', 'Sayfa "İyi" otorite değerindedir.', '2017-02-04 18:37:17'),
(13102, 'tr', 'siteauditor', 'The page is having poor page authority value', 'Sayfa "Zayıf" otorite değerindedir', '2017-02-04 18:37:17'),
(13103, 'tr', 'siteauditor', 'The page is having very good page authority value', 'Sayfa "Çok İyi" otorite değerindedir', '2017-02-04 18:37:17'),
(13104, 'tr', 'panel', 'API Connection', 'API Bağlantısı', '2017-02-05 01:50:50'),
(13105, 'tr', 'panel', 'API Manager', 'API Yöneticisi', '2017-02-05 01:50:50'),
(13106, 'tr', 'panel', 'API Settings', 'API Ayarları', '2017-02-05 01:50:50'),
(13107, 'tr', 'panel', 'Crawl Log Manager', 'Tarama Log Yöneticisi', '2017-02-05 01:50:50'),
(13108, 'tr', 'panel', 'Existing', 'Mevcut', '2017-02-05 01:50:50'),
(13109, 'tr', 'panel', 'Import Proxy', 'Proxy içe aktar', '2017-02-05 01:50:50'),
(13110, 'tr', 'panel', 'Import Websites', 'Websitelerini içeri aktar', '2017-02-05 01:50:50'),
(13111, 'tr', 'panel', 'Log Manager', 'Log Yöneticisi', '2017-02-05 01:50:50'),
(13112, 'tr', 'panel', 'MOZ Settings', 'MOZ Ayarları', '2017-02-05 01:50:50'),
(13113, 'tr', 'panel', 'New User Type', 'Yeni Kullanıcı Tipi', '2017-02-05 01:50:50'),
(13114, 'tr', 'panel', 'Proxy Perfomance', 'Proxy Performansı', '2017-02-05 01:50:50'),
(13115, 'tr', 'panel', 'Proxy Settings', 'Proxy Ayarları', '2017-02-05 01:50:50'),
(13116, 'tr', 'panel', 'Settings', 'Ayarlar', '2017-02-05 01:50:50'),
(13117, 'tr', 'panel', 'User Type Manager', 'Kullanıcı Türü Yöneticisi', '2017-02-05 01:50:50'),
(13118, 'tr', 'panel', 'Valid', 'Geçerli', '2017-02-05 01:50:50'),
(13119, 'tr', 'settings', 'allsettingssaved', 'Tüm ayarlar başarıyla kaydedildi!', '2017-02-04 18:45:16'),
(13120, 'tr', 'settings', 'API_SECRET', 'API Secret Kodu', '2017-02-04 18:45:16'),
(13121, 'tr', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Tek uygulama için Maksimum Proxy kullanıldı', '2017-02-04 18:45:16'),
(13122, 'tr', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Tarama hatası olursa, başka bir Proxy ile kontrol et', '2017-02-04 18:45:16'),
(13123, 'tr', 'settings', 'click-to-get-moz-account', 'MOZ hesabı almak için tıklayınız', '2017-02-04 18:45:16'),
(13124, 'tr', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'HTTP Proxy Tüneli aktifleştir', '2017-02-04 18:45:16'),
(13125, 'tr', 'settings', 'PROXY_DEACTIVATE_CRAWL', '', '2017-02-04 18:45:16'),
(13126, 'tr', 'settings', 'SP_COMPANY_NAME', 'Şirket Adı', '2017-02-04 18:45:16'),
(13127, 'tr', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Erişim ID', '2017-02-04 18:45:16'),
(13128, 'tr', 'settings', 'SP_MOZ_API_SECRET', 'Secret Kodu', '2017-02-04 18:45:16'),
(13129, 'tr', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Portu', '2017-02-04 18:45:16'),
(13130, 'tr', 'settings', 'SP_TIME_ZONE', 'Zaman dilimi', '2017-02-04 18:45:16'),
(13131, 'tr', 'settings', 'Verify connection', 'Bağlantı doğrulama', '2017-02-04 18:45:16'),
(13132, 'tr', 'keyword', 'You can add only keywordcount keywords more', 'Bu Kullanıcı için yalnızca [keywordcount] kelime kullanabilirsin.', '2017-02-05 01:48:33'),
(13133, 'tr', 'keyword', 'Your keyword count already reached the limit', 'Kelime sayısı bu kullanıcı için zaten limite ulaştı.', '2017-02-05 01:48:33'),
(13134, 'tr', 'login', 'Forgot password?', 'Şifremi Unuttum!', '2017-02-05 01:55:53'),
(13135, 'tr', 'login', 'internal_error_mail_send', 'Şifre sıfırlama maili gönderirken iç bir hata oluştu!', '2017-02-05 01:55:53'),
(13136, 'tr', 'login', 'password_reset_success_message', '', '2017-02-05 01:55:53'),
(13137, 'tr', 'login', 'Request Password', 'Şifre İste', '2017-02-05 01:55:53'),
(13138, 'tr', 'login', 'to login to your account', 'Hesabınıza giriş yapın', '2017-02-05 01:55:53'),
(13139, 'tr', 'login', 'User Type', 'Kullanıcı Türü', '2017-02-05 01:55:53'),
(13140, 'tr', 'login', 'user_email_not_exist', 'Kullanıcı email adresi sistemde mevcut!', '2017-02-05 01:55:53'),
(13141, 'tr', 'login', 'Your account password is resetted and new password is', 'Hesabınızın şifresi sıfırlandı ve Yeni Şifreniz : ', '2017-02-05 01:55:53'),
(13142, 'tr', 'login', 'Your Password Reset Failed', 'Şifre sıfırlamanız tamamlanmadı', '2017-02-05 01:55:53'),
(13143, 'tr', 'login', 'Your Password Reset Successfully', 'Başarıyla şifrenizi sıfırladınız.', '2017-02-05 01:55:53'),
(13144, 'en', 'panel', 'Google Settings', 'Google Settings', '2017-07-12 23:11:06'),
(13145, 'en', 'settings', 'SP_GOOGLE_API_KEY', 'Google API Key', '2017-07-12 23:11:06'),
(13146, 'en', 'settings', 'click-to-get-google-api-key', 'Click here to get Google API Key', '2017-07-12 23:11:06'),
(13147, 'en', 'seotools', 'pagespeed', 'PageSpeed Insights', '2017-07-12 23:11:06'),
(13148, 'en', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed Checker', '2017-07-12 23:11:06'),
(13149, 'en', 'seotools', 'PageSpeed Reports', 'PageSpeed Reports', '2017-07-12 23:11:06'),
(13150, 'en', 'seotools', 'Generate Reports', 'Generate Reports', '2017-07-12 23:11:06'),
(13151, 'en', 'seotools', 'clickproceedaction', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Results.', '2017-07-12 23:11:06'),
(13152, 'en', 'pagespeed', 'Saved page speed results of', 'Saved page speed results of', '2017-07-12 23:11:06'),
(13153, 'en', 'pagespeed', 'Desktop Speed', 'Desktop Speed', '2017-07-12 23:11:06'),
(13154, 'en', 'pagespeed', 'Mobile Speed', 'Mobile Speed', '2017-07-12 23:11:06'),
(13155, 'en', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2017-07-12 23:11:06'),
(13156, 'en', 'pagespeed', 'PageSpeed Details', 'PageSpeed Details', '2017-07-12 23:11:06'),
(13157, 'en', 'pagespeed', 'Page Speed', 'Page Speed', '2017-07-12 23:11:06'),
(13158, 'en', 'label', 'Desktop', 'Desktop', '2017-07-12 23:11:06'),
(13159, 'en', 'label', 'Mobile', 'Mobile', '2017-07-12 23:11:06'),
(13160, 'en', 'label', 'Speed', 'Speed', '2017-07-12 23:11:06'),
(13161, 'en', 'label', 'Usability', 'Usability', '2017-07-12 23:11:06'),
(13162, 'pt-br', 'label', 'Desktop', 'Desktop', '2018-08-21 18:54:11'),
(13163, 'pt-br', 'label', 'Mobile', 'Mobile', '2018-08-21 18:54:11'),
(13164, 'pt-br', 'label', 'Speed', 'Velocidade', '2018-08-21 18:54:11'),
(13165, 'pt-br', 'label', 'Usability', 'Usabilidade', '2018-08-21 18:54:11'),
(13166, 'pt-br', 'pagespeed', 'Desktop Speed', 'Velocidade no Desktop', '2017-07-13 00:58:33'),
(13167, 'pt-br', 'pagespeed', 'Mobile Speed', 'Velocidade Mobile', '2017-07-13 00:58:33'),
(13168, 'pt-br', 'pagespeed', 'Mobile Usability', 'Usabilidade Mobile', '2017-07-13 00:58:33'),
(13169, 'pt-br', 'pagespeed', 'Page Speed', 'Velocidade da Página', '2017-07-13 00:58:33'),
(13170, 'pt-br', 'pagespeed', 'PageSpeed Details', 'Detalhes da Velocidade da Página', '2017-07-13 00:58:33'),
(13171, 'pt-br', 'pagespeed', 'Saved page speed results of', 'Salvar resultados de velocidade da página', '2017-07-13 00:58:33'),
(13172, 'pt-br', 'panel', 'Google Settings', 'Configurações do Google', '2018-01-23 18:32:33'),
(13173, 'pt-br', 'seotools', 'clickproceedaction', 'Digite as URLs <b>Uma por linha</b>. Clique em <b>Proceder</b> para verificar os resultados.', '2017-07-13 01:00:13'),
(13174, 'pt-br', 'seotools', 'Generate Reports', 'Gerar Relatórios', '2017-07-13 01:00:13'),
(13175, 'pt-br', 'seotools', 'pagespeed', 'PageSpeed Insights', '2017-07-13 01:00:13'),
(13176, 'pt-br', 'seotools', 'PageSpeed Reports', 'Relatórios do PageSpeed', '2017-07-13 01:00:13'),
(13177, 'pt-br', 'seotools', 'Quick PageSpeed Checker', 'Verificar Rápido da Velocidade da Página', '2017-07-13 01:00:13'),
(13178, 'pt-br', 'settings', 'click-to-get-google-api-key', 'Clique aqui para ter acesso à Chave da API do Google', '2018-06-02 17:47:27'),
(13179, 'pt-br', 'settings', 'SP_GOOGLE_API_KEY', 'Chave da API do Google', '2018-06-02 17:47:27'),
(13180, 'pt-br', 'siteauditor', 'Check pagerank of pages', 'Verificar o pagerank das páginas', '2017-07-13 01:01:53'),
(13181, 'pt-br', 'siteauditor', 'The page is having excellent page authority value', 'A página está com uma excelente autoridade', '2017-07-13 01:01:53'),
(13182, 'pt-br', 'siteauditor', 'The page is having good page authority value', 'A página está com uma boa autoridade', '2017-07-13 01:01:53'),
(13183, 'pt-br', 'siteauditor', 'The page is having poor page authority value', 'A página está com uma autoridade fraca', '2017-07-13 01:01:53'),
(13184, 'pt-br', 'siteauditor', 'The page is having very good page authority value', 'A página está com uma autoridade muito boa', '2017-07-13 01:01:53'),
(13185, 'pt-br', 'subscription', 'account-expired', 'Sua conta expirou. Por favor, renove sua assinatura.', '2018-01-23 18:37:24'),
(13186, 'pt-br', 'subscription', 'Amount', 'Total', '2018-01-23 18:37:24'),
(13187, 'pt-br', 'subscription', 'click-activate-pay-plugin', 'Clique aqui para ativar o plugin de pagamento', '2018-01-23 18:37:24'),
(13188, 'pt-br', 'subscription', 'Currency', 'Moeda', '2018-01-23 18:37:24'),
(13189, 'pt-br', 'subscription', 'internal-error-payment', 'Erro interno no processamento de pagamento', '2018-01-23 18:37:24'),
(13190, 'pt-br', 'subscription', 'Keyword Limit', 'Limite de Palavras Chaves', '2018-01-23 18:37:24'),
(13191, 'pt-br', 'subscription', 'Order Id', 'Order Id', '2018-01-23 18:37:24'),
(13192, 'pt-br', 'subscription', 'Orders', 'Pedidos', '2018-01-23 18:37:24'),
(13193, 'pt-br', 'subscription', 'Paid By', 'Pago Por', '2018-01-23 18:37:24'),
(13194, 'pt-br', 'subscription', 'Payment Gateway Manager', 'Gerenciador de Gateway de Pagamento', '2018-01-23 18:37:24'),
(13195, 'pt-br', 'subscription', 'Plans and Pricing', 'Planos e Preços', '2018-01-23 18:37:24'),
(13196, 'pt-br', 'subscription', 'Quantity', 'Quantidade', '2018-01-23 18:37:24'),
(13197, 'pt-br', 'subscription', 'Renew Subscription', 'Renovar Assinatura', '2018-01-23 18:37:24'),
(13198, 'pt-br', 'subscription', 'Subscribe', 'Assinar', '2018-01-23 18:37:24'),
(13199, 'pt-br', 'subscription', 'Term', 'Termo', '2018-01-23 18:37:24'),
(13200, 'pt-br', 'subscription', 'Transaction Id', 'Identificação da Assinatura', '2018-01-23 18:37:24'),
(13201, 'pt-br', 'subscription', 'Transaction Log', 'Log da Transação', '2018-01-23 18:37:24'),
(13202, 'pt-br', 'subscription', 'transaction-success', 'Sua transação foi processada com sucesso.', '2018-01-23 18:37:24'),
(13203, 'pt-br', 'subscription', 'View Order', 'Ver Pedido', '2018-01-23 18:37:24'),
(13204, 'pt-br', 'subscription', 'Website Limit', 'Limite do Site', '2018-01-23 18:37:24'),
(13205, 'pt-br', 'subscription', 'Your transaction cancelled', 'Sua transação foi cancelada.', '2018-01-23 18:37:24'),
(13206, 'pt-br', 'website', 'Please enter CSV file', 'Por favor carregue o arquivo CSV', '2019-03-29 21:28:26'),
(13207, 'pt-br', 'website', 'Website CSV File', 'Arquivo CSV do site', '2019-03-29 21:28:26'),
(13208, 'pt-br', 'website', 'You can add only websitecount websites more', 'Você pode adicionar somente [websitecount] sites para este usuário!', '2019-03-29 21:28:26'),
(13209, 'pt-br', 'website', 'Your website count already reached the limit', 'Limite de sites já alcançados para este usuário!', '2019-03-29 21:28:26'),
(13210, 'pt-br', 'user', 'Expiry Date', 'Data de Expiração', '2017-07-13 01:05:47'),
(13211, 'ru', 'label', 'Desktop', 'Компьютер', '2024-07-17 15:17:22'),
(13212, 'ru', 'label', 'Mobile', 'Смартфон', '2024-07-17 15:17:22'),
(13213, 'ru', 'label', 'Speed', 'Скорость', '2024-07-17 15:17:22'),
(13214, 'ru', 'label', 'Usability', 'Юзабилити', '2024-07-17 15:17:22'),
(13215, 'ru', 'pagespeed', 'Desktop Speed', 'Скорость на десктопе', '2017-07-13 20:45:14'),
(13216, 'ru', 'pagespeed', 'Mobile Speed', 'Скорость на смартфоне', '2017-07-13 20:45:14');
INSERT INTO `texts` VALUES
(13217, 'ru', 'pagespeed', 'Mobile Usability', 'Удобство просмотра мобильной версии', '2017-07-13 20:45:14'),
(13218, 'ru', 'pagespeed', 'Page Speed', 'Скорость страницы', '2017-07-13 20:45:14'),
(13219, 'ru', 'pagespeed', 'PageSpeed Details', 'Подробно', '2017-07-13 20:45:14'),
(13220, 'ru', 'pagespeed', 'Saved page speed results of', 'Сохраненные результаты скорости страницы', '2017-07-13 20:45:14'),
(13221, 'ru', 'panel', 'Google Settings', 'Настройка Google', '2024-07-17 15:19:14'),
(13222, 'ru', 'seotools', 'clickproceedaction', 'Введите URL-адреса <b>Один URL на каждую строку</ b>. Нажмите <b>Продолжить </ b>, для проверки результатов.', '2024-07-17 15:26:22'),
(13223, 'ru', 'seotools', 'Generate Reports', 'Создать отчеты', '2024-07-17 15:26:22'),
(13224, 'ru', 'seotools', 'pagespeed', 'Проверка PageSpeed', '2024-07-17 15:26:22'),
(13225, 'ru', 'seotools', 'PageSpeed Reports', 'Отчеты по PageSpeed', '2024-07-17 15:26:22'),
(13226, 'ru', 'seotools', 'Quick PageSpeed Checker', 'Быстрая проверка скорости страниц', '2024-07-17 15:26:22'),
(13227, 'ru', 'settings', 'click-to-get-google-api-key', 'Нажмите здесь для получения ключа API Google', '2024-07-17 15:22:42'),
(13228, 'ru', 'settings', 'SP_GOOGLE_API_KEY', 'Ключ Google API', '2024-07-17 15:22:42'),
(13229, 'ru', 'siteauditor', 'The page is having good page authority value', 'Страница имеет хорошее значение авторитета страницы', '2017-07-13 20:51:34'),
(13230, 'en', 'settings', 'Please update google settings to get the results', 'Please update google settings to get the results', '2017-07-17 11:26:04'),
(13231, 'en', 'settings', 'Please update MOZ settings to get complete results', 'Please update MOZ settings to get complete results', '2017-07-17 11:26:04'),
(13232, 'el', 'label', 'Desktop', 'Desktop', '2019-11-28 23:22:10'),
(13233, 'el', 'label', 'Mobile', 'Κινητό', '2019-11-28 23:22:10'),
(13234, 'el', 'label', 'Speed', 'Ταχύτητα', '2019-11-28 23:22:10'),
(13235, 'el', 'label', 'Usability', 'Χρησιμότητα', '2019-11-28 23:22:10'),
(13236, 'el', 'pagespeed', 'Desktop Speed', 'Ταχύτητα Desktop', '2017-07-17 15:22:28'),
(13237, 'el', 'pagespeed', 'Mobile Speed', 'Ταχύτητα Κινητού', '2017-07-17 15:22:28'),
(13238, 'el', 'pagespeed', 'Mobile Usability', 'Χρηστικότητα στο Κινητό', '2017-07-17 15:22:28'),
(13239, 'el', 'pagespeed', 'Page Speed', 'Ταχύτητα Σελίδας', '2017-07-17 15:22:28'),
(13240, 'el', 'pagespeed', 'PageSpeed Details', 'Λεπτομέρειες PageSpeed', '2017-07-17 15:22:28'),
(13241, 'el', 'pagespeed', 'Saved page speed results of', 'Αποθήκευση αποτελεσμάτων ταχύτητας σελίδας για', '2017-07-17 15:22:28'),
(13242, 'el', 'panel', 'Google Settings', 'Ρυθμίσεις Google', '2019-08-28 09:42:17'),
(13243, 'el', 'seotools', 'clickproceedaction', 'Πληκτρολογήστε τα URL''s <b>ένα σε κάθε γραμμή</b>. Κλικ στο <b>Εκκίνηση</b> για έλεγχο τον αποτελεσμάτων.', '2019-11-28 23:13:05'),
(13244, 'el', 'seotools', 'Generate Reports', 'Παραγωγή Αναφορών', '2019-11-28 23:13:05'),
(13245, 'el', 'seotools', 'pagespeed', 'PageSpeed Insights', '2019-11-28 23:13:05'),
(13246, 'el', 'seotools', 'PageSpeed Reports', 'Αναφορές PageSpeed', '2019-11-28 23:13:05'),
(13247, 'el', 'seotools', 'Quick PageSpeed Checker', 'Γρήγορος Έλεγχος PageSpeed', '2019-11-28 23:13:05'),
(13248, 'el', 'siteauditor', 'The page is having good page authority value', 'Η σελίδα αυτή έχει καλό authority value.', '2017-07-18 10:05:38'),
(13249, 'el', 'settings', 'click-to-get-google-api-key', 'Κάνετε κλικ εδώ για να πάρετε κλειδί Google API', '2019-08-28 09:43:40'),
(13250, 'el', 'settings', 'Please update google settings to get the results', 'Παρακαλώ ενημερώστε τις ρυθμίσεις Google για να δείτε τα αποτελέσματα', '2019-08-28 09:43:40'),
(13251, 'el', 'settings', 'Please update MOZ settings to get complete results', 'Παρακαλώ ενημερώστε τις ρυθμίσεις ΜΟΖ για να δείτε συνολικά αποτελέσματα', '2019-08-28 09:43:40'),
(13252, 'el', 'settings', 'SP_GOOGLE_API_KEY', 'Κλειδί Google API', '2019-08-28 09:43:40'),
(13253, 'pt', 'common', 'Domain Authority', 'Autoridade do Dominio', '2019-05-25 22:43:55'),
(13254, 'pt', 'common', 'MOZ Rank', 'MOZ Rank ', '2019-05-25 22:43:55'),
(13255, 'pt', 'common', 'Page Authority', 'Page Authority ', '2019-05-25 22:43:55'),
(13256, 'pt', 'common', 'Pagerank', 'Pagerank ', '2019-05-25 22:43:55'),
(13257, 'pt', 'label', 'Desktop', 'Desktop ', '2018-01-26 00:11:22'),
(13258, 'pt', 'label', 'Mobile', 'Mobile ', '2018-01-26 00:11:22'),
(13259, 'pt', 'label', 'Speed', 'Velocidade', '2018-01-26 00:11:22'),
(13260, 'pt', 'label', 'Usability', 'Usabilidade', '2018-01-26 00:11:22'),
(13261, 'en', 'panel', 'User Type Settings', 'User Type Settings', '2018-01-23 01:04:44'),
(13262, 'en', 'common', 'Search Engine Count', 'Search Engine Count', '2018-01-23 01:04:44'),
(13263, 'en', 'subscription', 'infinite_limit_text', '<b>Note</b>: Enter -1 for infinite limit', '2018-01-23 01:04:44'),
(13264, 'en', 'subscription', 'Plugin Access Settings', 'Plugin Access Settings', '2018-01-23 01:04:44'),
(13265, 'en', 'subscription', 'Seo Tools Access Settings', 'Seo Tools Access Settings', '2018-01-23 01:04:44'),
(13266, 'en', 'subscription', 'Directory Submit Limit', 'Directory Submission Limit', '2018-01-23 01:04:44'),
(13267, 'en', 'subscription', 'Directory Submit Daily Limit', 'Daily Directory Submission Limit', '2018-01-23 01:04:44'),
(13268, 'en', 'subscription', 'site_auditor_max_page_limit', 'Site Auditor Maximum Page Limit', '2018-01-23 01:04:44'),
(13269, 'en', 'subscription', 'total_count_greater_account_limit', 'Total count is greater than account limit - [limit]', '2018-01-23 01:04:44'),
(13270, 'en', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Directory submission count is greater than account limit - [limit]', '2018-01-23 01:04:44'),
(13271, 'en', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Directory submission count is greater than daily account limit - [limit]', '2018-01-23 01:04:44'),
(13272, 'en', 'label', 'Access denied', 'Access denied', '2018-01-23 01:04:44'),
(13273, 'en', 'panel', 'Global Reports Settings', 'Global Reports Settings', '2018-01-23 01:04:44'),
(13274, 'fr', 'common', 'Search Engine Count', 'Nombre de moteurs de recherche', '2020-02-14 16:05:11'),
(13275, 'fr', 'label', 'Access denied', 'Accès refusé', '2020-02-14 16:12:40'),
(13276, 'fr', 'label', 'Desktop', 'Bureau', '2020-02-14 16:12:40'),
(13277, 'fr', 'label', 'Mobile', 'Mobile', '2020-02-14 16:12:40'),
(13278, 'fr', 'label', 'Speed', 'Vitesse', '2020-02-14 16:12:40'),
(13279, 'fr', 'label', 'Usability', 'Utilisabilité', '2020-02-14 16:12:40'),
(13280, 'fr', 'panel', 'Global Reports Settings', 'Paramètres généraux des rapports', '2020-02-14 16:14:52'),
(13281, 'fr', 'panel', 'Google Settings', 'Paramètres Google', '2020-02-14 16:14:52'),
(13282, 'fr', 'panel', 'User Type Settings', 'Paramètres des types d''utilisateur', '2020-02-14 16:14:52'),
(13283, 'fr', 'seotools', 'clickproceedaction', 'Indiquez les URLs, <b>une par ligne</b>. Cliquer sur <b>Valider</b> pour voir les résultats.', '2019-03-28 18:37:48'),
(13284, 'fr', 'seotools', 'Generate Reports', 'Générer les rapports', '2019-03-28 18:37:48'),
(13285, 'fr', 'seotools', 'pagespeed', 'Aperçus PageSpeed', '2019-03-28 18:37:48'),
(13286, 'fr', 'seotools', 'PageSpeed Reports', 'Rapports PageSpeed', '2019-03-28 18:37:48'),
(13287, 'fr', 'seotools', 'Quick PageSpeed Checker', 'Vérification rapide PageSpeed', '2019-03-28 18:37:48'),
(13288, 'fr', 'pagespeed', 'Desktop Speed', 'Vitesse de chargement (Ordinateur)', '2018-01-23 03:30:16'),
(13289, 'fr', 'pagespeed', 'Mobile Speed', 'Vitesse de chargement (Mobile)', '2018-01-23 03:30:16'),
(13290, 'fr', 'pagespeed', 'Mobile Usability', 'Ergonomie mobile', '2018-01-23 03:30:16'),
(13291, 'fr', 'pagespeed', 'Page Speed', 'Page Speed', '2018-01-23 03:30:16'),
(13292, 'fr', 'pagespeed', 'PageSpeed Details', 'Détails PageSpeed', '2018-01-23 03:30:16'),
(13293, 'fr', 'pagespeed', 'Saved page speed results of', 'Résultats PageSpeed pour ', '2018-01-23 03:30:16'),
(13294, 'fr', 'settings', 'click-to-get-google-api-key', 'Cliquer ici pour obtenir une clé API Google', '2019-03-28 18:39:30'),
(13295, 'fr', 'settings', 'Please update google settings to get the results', 'Merci de compléter les paramètres Google pour obtenir des résultats.', '2019-03-28 18:39:30'),
(13296, 'fr', 'settings', 'Please update MOZ settings to get complete results', 'Merci de compléter les paramètres MOZ pour obtenir des résultats.', '2019-03-28 18:39:30'),
(13297, 'fr', 'settings', 'SP_GOOGLE_API_KEY', 'Clé API Google', '2019-03-28 18:39:30'),
(13298, 'fr', 'siteauditor', 'The page is having good page authority value', 'La page a une bonne valeur page authority', '2018-01-23 03:56:01'),
(13299, 'fr', 'subscription', 'Directory Submit Daily Limit', 'Limite quotidienne d''envoi aux annuaires', '2019-03-28 18:42:59'),
(13300, 'fr', 'subscription', 'Directory Submit Limit', 'Limite d''envoi aux annuaires', '2019-03-28 18:42:59'),
(13301, 'fr', 'subscription', 'infinite_limit_text', '<b>Note</b>: Indiquer -1 pour ne pas fixer de limite.', '2019-03-28 18:42:59'),
(13302, 'fr', 'subscription', 'Plugin Access Settings', 'Paramètres d''accès au module', '2019-03-28 18:42:59'),
(13303, 'fr', 'subscription', 'Seo Tools Access Settings', 'Paramètres d''accès Seo Tools', '2019-03-28 18:42:59'),
(13304, 'fr', 'subscription', 'site_auditor_max_page_limit', 'Limite maximum de page pour Site Auditor', '2019-03-28 18:42:59'),
(13305, 'fr', 'subscription', 'total_count_greater_account_limit', 'Le nombre total dépasse la limite du compte - [limit]', '2019-03-28 18:42:59'),
(13306, 'fr', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Le nombre d''envois dépasse la limite du compte - [limit]', '2019-03-28 18:42:59'),
(13307, 'fr', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Le nombre d''envois dépasse la limite quotidienne du compte - [limit]', '2019-03-28 18:42:59'),
(13308, 'ja', 'common', 'Search Engine Count', '検索エンジン数', '2019-05-25 22:40:02'),
(13309, 'ja', 'label', 'Access denied', 'アクセス拒否', '2019-04-01 13:45:51'),
(13310, 'ja', 'label', 'Desktop', 'デスクトップ', '2019-04-01 13:45:51'),
(13311, 'ja', 'label', 'Mobile', 'モバイル', '2019-04-01 13:45:51'),
(13312, 'ja', 'label', 'Speed', 'スピード', '2019-04-01 13:45:51'),
(13313, 'ja', 'label', 'Usability', 'ユーザビリティ', '2019-04-01 13:45:51'),
(13314, 'ja', 'pagespeed', 'Desktop Speed', 'デスクトップスピード', '2018-01-23 06:37:34'),
(13315, 'ja', 'pagespeed', 'Mobile Speed', 'モバイルスピード', '2018-01-23 06:37:34'),
(13316, 'ja', 'pagespeed', 'Mobile Usability', 'モバイルユーザビリティ', '2018-01-23 06:37:34'),
(13317, 'ja', 'pagespeed', 'Page Speed', 'ページスピード', '2018-01-23 06:37:34'),
(13318, 'ja', 'pagespeed', 'PageSpeed Details', 'ページスピード詳細', '2018-01-23 06:37:34'),
(13319, 'ja', 'pagespeed', 'Saved page speed results of', '保存されたページスピード結果 -', '2018-01-23 06:37:34'),
(13320, 'ja', 'panel', 'Global Reports Settings', 'グローバルレポート設定', '2019-04-01 13:46:57'),
(13321, 'ja', 'panel', 'Google Settings', 'Google設定', '2019-04-01 13:46:57'),
(13322, 'ja', 'panel', 'User Type Settings', 'ユーザタイプ設定', '2019-04-01 13:46:57'),
(13323, 'ja', 'seotools', 'clickproceedaction', 'URLを<b>改行区切りで入力</b>。結果を確認するには、<b>続行</b>をクリック', '2019-04-01 13:49:13'),
(13324, 'ja', 'seotools', 'Generate Reports', 'レポートを生成', '2019-04-01 13:49:13'),
(13325, 'ja', 'seotools', 'pagespeed', 'ページスピードインサイト', '2019-04-01 13:49:13'),
(13326, 'ja', 'seotools', 'PageSpeed Reports', 'ページスピードレポート', '2019-04-01 13:49:13'),
(13327, 'ja', 'seotools', 'Quick PageSpeed Checker', 'ページスピードチェッカー', '2019-04-01 13:49:13'),
(13328, 'ja', 'settings', 'click-to-get-google-api-key', 'クリックしてGoogle APIキーを取得', '2019-04-01 13:52:17'),
(13329, 'ja', 'settings', 'Please update google settings to get the results', '結果を取得するにはGoogle設定を更新してください。', '2019-04-01 13:52:17'),
(13330, 'ja', 'settings', 'Please update MOZ settings to get complete results', '完全な結果を取得するにはMOZ設定を更新してください。', '2019-04-01 13:52:17'),
(13331, 'ja', 'settings', 'SP_GOOGLE_API_KEY', 'Google API キー', '2019-04-01 13:52:17'),
(13332, 'ja', 'siteauditor', 'The page is having good page authority value', 'ページのオーソリティ値は良好です', '2018-01-23 06:19:20'),
(13333, 'ja', 'subscription', 'Directory Submit Daily Limit', '日毎のディレクトリサブミッション上限', '2019-04-01 13:54:02'),
(13334, 'ja', 'subscription', 'Directory Submit Limit', 'ディレクトリサブミッション上限', '2019-04-01 13:54:02'),
(13335, 'ja', 'subscription', 'infinite_limit_text', '<b>注意</b>: 無限の場合は-1を入力', '2019-04-01 13:54:02'),
(13336, 'ja', 'subscription', 'Plugin Access Settings', 'プラグインアクセス設定', '2019-04-01 13:54:02'),
(13337, 'ja', 'subscription', 'Seo Tools Access Settings', 'SEOツールアクセス設定', '2019-04-01 13:54:02'),
(13338, 'ja', 'subscription', 'site_auditor_max_page_limit', 'サイト監視ページ上限', '2019-04-01 13:54:02'),
(13339, 'ja', 'subscription', 'total_count_greater_account_limit', '合計数がアカウント上限を超えています - [limit]', '2019-04-01 13:54:02'),
(13340, 'ja', 'subscription', 'total_count_greater_account_limit_dir_sub', 'ディレクトリサブミッション数がアカウント上限を超えています - [limit]', '2019-04-01 13:54:02'),
(13341, 'ja', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'ディレクトリサブミッション数が日毎のカウント上限を超えています - [limit]', '2019-04-01 13:54:02'),
(13342, 'pt-br', 'common', 'Search Engine Count', 'Contador do Buscador', '2019-07-30 00:26:27'),
(13343, 'pt-br', 'panel', 'Global Reports Settings', 'Configurações dos Relatórios Globais', '2018-01-23 18:32:33'),
(13344, 'pt-br', 'panel', 'User Type Settings', 'Configurações do Tipo de Usuário', '2018-01-23 18:32:33'),
(13345, 'pt-br', 'label', 'Access denied', 'Acesso negado', '2018-08-21 18:54:11'),
(13346, 'pt-br', 'settings', 'Please update google settings to get the results', 'Por favor atualize as configurações do Google para receber os resultados', '2018-06-02 17:47:27'),
(13347, 'pt-br', 'settings', 'Please update MOZ settings to get complete results', 'Por favor atualize as configurações do MOZ para receber os resultados completos', '2018-06-02 17:47:27'),
(13348, 'pt-br', 'subscription', 'Directory Submit Daily Limit', 'Limite Diário de Envio para Diretórios', '2018-01-23 18:37:24'),
(13349, 'pt-br', 'subscription', 'Directory Submit Limit', 'Limite de Envio para Diretórios', '2018-01-23 18:37:24'),
(13350, 'pt-br', 'subscription', 'infinite_limit_text', '<b>Nota</b>: Digite -1 para limite infinito', '2018-01-23 18:37:24'),
(13351, 'pt-br', 'subscription', 'Plugin Access Settings', 'Configurações de Acesso ao Plugin', '2018-01-23 18:37:24'),
(13352, 'pt-br', 'subscription', 'Seo Tools Access Settings', 'Configurações de Acesso às Ferramentas de SEO', '2018-01-23 18:37:24'),
(13353, 'pt-br', 'subscription', 'site_auditor_max_page_limit', 'Limite Máximo de Páginas do Site Auditor', '2018-01-23 18:37:24'),
(13354, 'pt-br', 'subscription', 'total_count_greater_account_limit', 'Conta total é maior do que o limite da conta - [limit]', '2018-01-23 18:37:24'),
(13355, 'pt-br', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Submissão no diretório é maior que o limite da conta - [limit]', '2018-01-23 18:37:24'),
(13356, 'pt-br', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Submissão no diretório é maior que o limite diário da conta - [limit]', '2018-01-23 18:37:24'),
(13357, 'fa', 'api', 'API Guide', 'راهنمای API', '2018-01-24 13:33:52'),
(13358, 'fa', 'api', 'API Url', 'آدرس API', '2018-01-24 13:33:52'),
(13359, 'fa', 'common', 'Debug', 'اشکال زدایی', '2018-01-24 13:39:35'),
(13360, 'fa', 'common', 'Domain Authority', 'اعتبار دامنه (DA)', '2018-01-24 13:39:35'),
(13361, 'fa', 'common', 'Edit User Type', 'ویرایش نوع کاربری', '2018-01-24 13:39:35'),
(13362, 'fa', 'common', 'Keywords Count', 'تعداد کلمات', '2018-01-24 13:39:35'),
(13363, 'fa', 'common', 'MOZ Rank', 'امتیاز در سایت MOZ', '2018-01-24 13:39:35'),
(13364, 'fa', 'common', 'New User Type', 'نوع کاربر جدید', '2018-01-24 13:39:35'),
(13365, 'fa', 'common', 'Page Authority', 'اعتبار صفحه (PA)', '2018-01-24 13:39:35'),
(13366, 'fa', 'common', 'Pagerank', '<a href="http://www.3eo.ir/4216/%d9%be%db%8c%d8%ac-%d8%b1%d9%86%da%a9-%da%af%d9%88%da%af%d9%84-%d9%86%d9%85%d8%b1%d8%af%d9%87-%d8%a7%d8%b3%d8%aa/">پیج رنک</a>', '2018-01-24 13:39:35'),
(13367, 'fa', 'common', 'Price', 'قیمت', '2018-01-24 13:39:35'),
(13368, 'fa', 'common', 'Sample CSV File', 'نمونه فایل CVS', '2018-01-24 13:39:35'),
(13369, 'fa', 'common', 'Search Engine Count', 'تعداد موتور جستجو', '2018-01-24 13:39:35'),
(13370, 'fa', 'common', 'User Type', 'نوع کاربر', '2018-01-24 13:39:35'),
(13371, 'fa', 'common', 'Websites Count', 'تعداد وب سایت', '2018-01-24 13:39:35'),
(13372, 'fa', 'keyword', 'You can add only keywordcount keywords more', 'شما برای این کاربر فقط [keywordcount] کلمه می توانید اضافه نمایید!', '2018-01-24 13:40:55'),
(13373, 'fa', 'keyword', 'Your keyword count already reached the limit', 'تعداد کلمات مجاز برای این کاربر به پایان رسیده است! ', '2018-01-24 13:40:55'),
(13374, 'fa', 'login', 'Forgot password?', 'پسورد خود را فراموش کرده اید؟', '2018-01-24 17:15:55'),
(13375, 'fa', 'login', 'internal_error_mail_send', 'یک مشکل داخلی در هنگام ارسال ایمیل تغییر پسورد رخ داد!', '2018-01-24 17:15:55'),
(13376, 'fa', 'login', 'password_reset_success_message', 'پسورد شما تغییر یافت. یک ایمیل تایید برای شما ارسال شده است. <br>لطفا ایمیل خود را برای مشاهده پسورد جدید مشاهده نمایید.', '2018-01-24 17:15:55'),
(13377, 'fa', 'login', 'Request Password', 'درخواست پسورد', '2018-01-24 17:15:55'),
(13378, 'fa', 'login', 'to login to your account', 'برای ورود به حساب کاربری خود', '2018-01-24 17:15:55'),
(13379, 'fa', 'login', 'User Type', 'نوع کاربر', '2018-01-24 17:15:55'),
(13380, 'fa', 'login', 'user_email_not_exist', 'چنین ایمیلی در سایت وجود ندارد', '2018-01-24 17:15:55'),
(13381, 'fa', 'login', 'Your account password is resetted and new password is', 'پسورد شما تغییر کرد و پسورد جدید شما این است', '2018-01-24 17:15:55'),
(13382, 'fa', 'login', 'Your Password Reset Failed', 'تغییر پسورد شما موفقیت آمیز نبود', '2018-01-24 17:15:55'),
(13383, 'fa', 'login', 'Your Password Reset Successfully', 'پسورد شما به موفقیت تغییر یافت', '2018-01-24 17:15:55'),
(13384, 'ru', 'common', 'Search Engine Count', 'Количество поисковых систем', '2024-07-17 15:16:33'),
(13385, 'ru', 'label', 'Access denied', 'Доступ запрещен', '2024-07-17 15:17:22'),
(13386, 'ru', 'panel', 'Global Reports Settings', 'Настройка глобальных отчетов', '2024-07-17 15:19:14'),
(13387, 'ru', 'panel', 'User Type Settings', 'Настройки типа пользователя', '2024-07-17 15:19:14'),
(13388, 'ru', 'settings', 'Please update google settings to get the results', 'Пожалуйста, обновите настройки Google, для получения результатов', '2024-07-17 15:22:42'),
(13389, 'ru', 'settings', 'Please update MOZ settings to get complete results', 'Пожалуйста, обновите настройки MOZ, для получения результатов', '2024-07-17 15:22:42'),
(13390, 'ru', 'subscription', 'Directory Submit Daily Limit', 'Ежедневный лимит представления каталога', '2024-07-17 15:24:41'),
(13391, 'ru', 'subscription', 'Directory Submit Limit', 'Лимит представления каталога', '2024-07-17 15:24:41'),
(13392, 'ru', 'subscription', 'infinite_limit_text', '<b>Примечание</b>: Введите -1 для бесконечного предела', '2024-07-17 15:24:41'),
(13393, 'ru', 'subscription', 'Plugin Access Settings', 'Настройки доступа к плагину', '2024-07-17 15:24:41'),
(13394, 'ru', 'subscription', 'Seo Tools Access Settings', 'Настройки доступа к инструментам Seo', '2024-07-17 15:24:41'),
(13395, 'ru', 'subscription', 'site_auditor_max_page_limit', 'Максимальное ограничение страницы', '2024-07-17 15:24:41'),
(13396, 'ru', 'subscription', 'total_count_greater_account_limit', 'Общий счет больше предела учетной записи - [limit]', '2024-07-17 15:24:41'),
(13397, 'ru', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Количество просмотров каталога больше, чем ограничение учетной записи - [limit]', '2024-07-17 15:24:41'),
(13398, 'ru', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Количество записей в каталогах больше, чем дневной лимит - [limit]', '2024-07-17 15:24:41'),
(13399, 'pt', 'common', 'Search Engine Count', 'Nº de Motor de Pesquisas', '2019-05-25 22:43:55'),
(13400, 'pt', 'label', 'Access denied', 'Acesso Negado', '2018-01-26 00:11:22'),
(13401, 'pt', 'pagespeed', 'Desktop Speed', 'Desktop velocidade', '2018-01-26 00:13:43'),
(13402, 'pt', 'pagespeed', 'Mobile Speed', 'Mobile Velocidade', '2018-01-26 00:13:43'),
(13403, 'pt', 'pagespeed', 'Mobile Usability', 'Usabilidade Movel', '2018-01-26 00:13:43'),
(13404, 'pt', 'pagespeed', 'Page Speed', 'Velocidade da pagina', '2018-01-26 00:13:43'),
(13405, 'pt', 'pagespeed', 'PageSpeed Details', 'detalhes da Velocidade da pagina', '2018-01-26 00:13:43'),
(13406, 'pt', 'pagespeed', 'Saved page speed results of', 'Resultados da velocidade das paginas', '2018-01-26 00:13:43'),
(13407, 'pt', 'panel', 'Global Reports Settings', 'Detalhes Global reports', '2018-01-26 00:18:33'),
(13408, 'pt', 'panel', 'Google Settings', 'Configuração google', '2018-01-26 00:18:33'),
(13409, 'pt', 'panel', 'MOZ Settings', 'Configurações MOZ', '2018-01-26 00:18:33'),
(13410, 'pt', 'panel', 'User Type Settings', 'Definições de tipo de user', '2018-01-26 00:18:33'),
(13411, 'pt', 'proxy', 'click-to-get-proxy', 'Click aqui para ter o proxy', '2018-01-26 00:17:58'),
(13412, 'pt', 'seotools', 'clickproceedaction', 'Introduza URL''s <b>um por linha</b>. Click on <b>Proceder</b> para verificar resultados. ', '2018-01-26 00:25:11'),
(13413, 'pt', 'seotools', 'Generate Reports', 'Gerar Relatórios', '2018-01-26 00:25:11'),
(13414, 'pt', 'seotools', 'pagespeed', 'Velocidade das paginas especificações', '2018-01-26 00:25:11'),
(13415, 'pt', 'seotools', 'PageSpeed Reports', 'Relatórios da velocidade das paginas', '2018-01-26 00:25:11'),
(13416, 'pt', 'seotools', 'Quick PageSpeed Checker', 'Velocidade das paginas rapidas', '2018-01-26 00:25:11'),
(13417, 'pt', 'settings', 'click-to-get-google-api-key', 'Click aqui para obter A chave da API do goolge', '2018-01-26 00:23:30'),
(13418, 'pt', 'settings', 'click-to-get-moz-account', 'Click aqui apra obter a Conta MOZ', '2018-01-26 00:23:30'),
(13419, 'pt', 'settings', 'Please update google settings to get the results', 'Por favor verifique as configurações do google para obter resultados', '2018-01-26 00:23:30'),
(13420, 'pt', 'settings', 'Please update MOZ settings to get complete results', 'Por Favor verifique as configurações MOZ para obter resultados completos', '2018-01-26 00:23:30'),
(13421, 'pt', 'settings', 'SP_GOOGLE_API_KEY', 'Google API Key ', '2018-01-26 00:23:30'),
(13422, 'pt', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID ', '2018-01-26 00:23:30'),
(13423, 'pt', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key ', '2018-01-26 00:23:30'),
(13424, 'pt', 'settings', 'Verify connection', 'Verificar coneção', '2018-01-26 00:23:30'),
(13425, 'pt', 'subscription', 'Directory Submit Daily Limit', 'Limite de submissão diária de directórios', '2018-01-26 00:26:54'),
(13426, 'pt', 'subscription', 'Directory Submit Limit', 'Limite de submissão de diretórios', '2018-01-26 00:26:54'),
(13427, 'pt', 'subscription', 'infinite_limit_text', '<b>Note</b>: Introduza -1 for infinito o limite', '2018-01-26 00:26:54'),
(13428, 'pt', 'subscription', 'Plugin Access Settings', 'Definições do plugin de acesso', '2018-01-26 00:26:54'),
(13429, 'pt', 'subscription', 'Seo Tools Access Settings', '', '2018-01-26 00:26:54'),
(13430, 'pt', 'subscription', 'site_auditor_max_page_limit', '', '2018-01-26 00:26:54'),
(13431, 'pt', 'subscription', 'total_count_greater_account_limit', '', '2018-01-26 00:26:54'),
(13432, 'pt', 'subscription', 'total_count_greater_account_limit_dir_sub', '', '2018-01-26 00:26:54'),
(13433, 'pt', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', '', '2018-01-26 00:26:54'),
(13434, 'el', 'common', 'Search Engine Count', 'Μηχανές Αναζήτησης', '2019-08-28 09:40:52'),
(13435, 'el', 'label', 'Access denied', 'Δεν επιτρέπεται η πρόσβαση', '2019-11-28 23:22:10'),
(13436, 'el', 'panel', 'Global Reports Settings', 'Ρυθμίσεις Καθολικών Αναφορών', '2019-08-28 09:42:17'),
(13437, 'el', 'panel', 'User Type Settings', 'Ρυθμίσεις Τύπου Χρήστη', '2019-08-28 09:42:17'),
(13438, 'el', 'subscription', 'Directory Submit Daily Limit', 'Όριο Ημερήσιας Καταχώρισης σε Καταλόγους', '2019-11-28 23:11:38'),
(13439, 'el', 'subscription', 'Directory Submit Limit', 'Όριο Καταχώρισης σε Καταλόγους', '2019-11-28 23:11:38'),
(13440, 'el', 'subscription', 'infinite_limit_text', '<b>Σημείωση</b>: Εισάγετε -1 για να μην έχετε όριο', '2019-11-28 23:11:38'),
(13441, 'el', 'subscription', 'Plugin Access Settings', 'Ρυθμίσεις Πρόσβασης του Plugin', '2019-11-28 23:11:38'),
(13442, 'el', 'subscription', 'Seo Tools Access Settings', 'Ρυθμίσεις Πρόσβασης στα Seo Εργαλεία', '2019-11-28 23:11:38'),
(13443, 'el', 'subscription', 'site_auditor_max_page_limit', 'Μέγιστο Όριο Σελίδας Site Auditor', '2019-11-28 23:11:38'),
(13444, 'el', 'subscription', 'total_count_greater_account_limit', 'Η συνολική μέτρηση είναι μεγαλύτερη από το όριο λογαριασμού - [limit]', '2019-11-28 23:11:38'),
(13445, 'el', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Ο αριθμός καταχώρισης σε καταλόγους είναι μεγαλύτερος από το όριο λογαριασμού - [limit]', '2019-11-28 23:11:38'),
(13446, 'el', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Ο αριθμός καταχώρισης σε καταλόγους είναι μεγαλύτερος από το ημερήσιο όριο λογαριασμού - [limit]', '2019-11-28 23:11:38'),
(13447, 'en', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2018-05-23 23:26:15'),
(13448, 'en', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow user to access the web proxy', '2018-05-23 23:26:15'),
(13449, 'en', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a proxy', '2018-05-23 23:26:15'),
(13450, 'en', 'QuickWebProxy', 'Web Proxy', 'Web Proxy', '2018-05-23 23:26:15'),
(13451, 'en', 'QuickWebProxy', 'Web Server', 'Web Server', '2018-05-23 23:26:15'),
(13452, 'en', 'QuickWebProxy', 'Please enter a valid url', 'Please enter a valid url', '2018-05-23 23:26:15'),
(13453, 'en', 'QuickWebProxy', 'Server list is empty', 'Server list is empty', '2018-05-23 23:26:15'),
(13454, 'en', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send custom header with curl request', '2018-05-23 23:26:15'),
(13455, 'en', 'common', 'Server', 'Server', '2018-05-23 23:26:15'),
(13456, 'fr', 'common', 'Server', 'Serveur', '2020-02-14 16:05:11'),
(13457, 'fr', 'QuickWebProxy', 'Anonymize', 'Anonymiser', '2018-05-24 02:04:23'),
(13458, 'fr', 'QuickWebProxy', 'Please enter a valid url', 'Indiquer une URL valide', '2018-05-24 02:04:23'),
(13459, 'fr', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Autoriser l''utilisateur à accéder au proxy web', '2018-05-24 02:04:23'),
(13460, 'fr', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Autoriser le serveur web à agir en tant que proxy web', '2018-05-24 02:04:23'),
(13461, 'fr', 'QuickWebProxy', 'Server list is empty', 'La lise de serveurs est vide', '2018-05-24 02:04:23'),
(13462, 'fr', 'QuickWebProxy', 'Web Proxy', 'Proxy Web', '2018-05-24 02:04:23'),
(13463, 'fr', 'QuickWebProxy', 'Web Server', 'Serveur Web', '2018-05-24 02:04:23'),
(13464, 'fr', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Utiliser un en-tête personnalisé avec la requête curl', '2019-03-28 18:39:30'),
(13465, 'el', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Αποστολή custom header με curl request ', '2019-08-28 09:43:40'),
(13466, 'el', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2018-05-24 12:24:23'),
(13467, 'el', 'QuickWebProxy', 'Please enter a valid url', 'Παρακαλώ πληκτρολογήστε ένα έγκυρο URL', '2018-05-24 12:24:23'),
(13468, 'el', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Επιτρέψτε στον χρήστη πρόσβαση στο web proxy', '2018-05-24 12:24:23'),
(13469, 'el', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Επιτρέψτε στο server να λειτουργεί ως proxy', '2018-05-24 12:24:23'),
(13470, 'el', 'QuickWebProxy', 'Server list is empty', 'Άδεια λίστα server', '2018-05-24 12:24:23'),
(13471, 'el', 'QuickWebProxy', 'Web Proxy', 'Web Server', '2018-05-24 12:24:23'),
(13472, 'el', 'QuickWebProxy', 'Web Server', 'Web Server', '2018-05-24 12:24:23'),
(13473, 'el', 'common', 'Server', 'Server', '2019-08-28 09:40:52'),
(13474, 'id', 'api', 'API Guide', 'Panduan API', '2018-05-24 17:09:49'),
(13475, 'id', 'api', 'API Url', 'URL API', '2018-05-24 17:09:49'),
(13476, 'id', 'common', 'Checked', 'Diperiksa', '2019-05-25 22:35:48'),
(13477, 'id', 'common', 'Dashboard', 'Dasbor', '2019-05-25 22:35:48'),
(13478, 'id', 'common', 'Debug', 'Debug', '2019-05-25 22:35:48'),
(13479, 'id', 'common', 'Domain Authority', 'Kekuatan Domain', '2019-05-25 22:35:48'),
(13480, 'id', 'common', 'Edit User Type', 'Edit Tipe User', '2019-05-25 22:35:48'),
(13481, 'id', 'common', 'Hello', 'Halo', '2019-05-25 22:35:48'),
(13482, 'id', 'common', 'Home', 'Beranda', '2019-05-25 22:35:48'),
(13483, 'id', 'common', 'Keywords Count', 'Jumlah Kata Kunci', '2019-05-25 22:35:48'),
(13484, 'id', 'common', 'MOZ Rank', 'MOZ Rank', '2019-05-25 22:35:48'),
(13485, 'id', 'common', 'New User Type', 'Tipe User Baru', '2019-05-25 22:35:48'),
(13486, 'id', 'common', 'Page Authority', 'Kekuatan Halaman', '2019-05-25 22:35:48'),
(13487, 'id', 'common', 'Pagerank', 'Pagerank', '2019-05-25 22:35:48'),
(13488, 'id', 'common', 'Powered by', 'Dipersembahkan oleh', '2019-05-25 22:35:48'),
(13489, 'id', 'common', 'Price', 'Harga', '2019-05-25 22:35:48'),
(13490, 'id', 'common', 'Sample CSV File', 'Berkas contoh CSV', '2019-05-25 22:35:48'),
(13491, 'id', 'common', 'Search Engine Count', 'Jumlah Search Engine', '2019-05-25 22:35:48'),
(13492, 'id', 'common', 'Server', 'Server', '2019-05-25 22:35:48'),
(13493, 'id', 'common', 'Thank you', 'Terima kasih', '2019-05-25 22:35:48'),
(13494, 'id', 'common', 'User Type', 'Tipe User', '2019-05-25 22:35:48'),
(13495, 'id', 'common', 'Websites Count', 'Jumlah Website', '2019-05-25 22:35:48'),
(13496, 'id', 'directory', 'clickaddfeatureddirectory', 'Klik di sini untuk menambah direktori unggulan Anda', '2018-05-24 17:18:24'),
(13497, 'id', 'directory', 'Coupon Code', 'Kode Kupon', '2018-05-24 17:18:24'),
(13498, 'id', 'directory', 'Coupon Offer', 'Kupon Penawaran', '2018-05-24 17:18:24'),
(13499, 'id', 'directory', 'couponcodenote', 'Gunakan kode kupon di atas dan dapatkan penawaran [REDUCTION_PER] untuk setiap pengajuan terpilih!', '2018-05-24 17:18:24'),
(13500, 'id', 'directory', 'Directories with out Reciprocal Link', 'Direktori tanpa Link Resiprokal', '2018-05-24 17:18:24'),
(13501, 'id', 'keyword', 'You can add only keywordcount keywords more', 'Anda hanya bisa menambah [keywordcount] kata kunci untuk pengguna ini!', '2018-05-24 17:19:48'),
(13502, 'id', 'keyword', 'Your keyword count already reached the limit', 'Jumlah kata kunci sudah mencapai batas untuk pengguna ini!', '2018-05-24 17:19:48'),
(13503, 'id', 'label', 'Access denied', 'Akses ditolak', '2018-05-24 17:22:20'),
(13504, 'id', 'label', 'Clear All', 'Hapus Semua', '2018-05-24 17:22:20'),
(13505, 'id', 'label', 'Cookie', 'Cookie', '2018-05-24 17:22:20'),
(13506, 'id', 'label', 'Current', 'Sekarang', '2018-05-24 17:22:20'),
(13507, 'id', 'label', 'Daily', 'Harian', '2018-05-24 17:22:20'),
(13508, 'id', 'label', 'Desktop', 'Desktop', '2018-05-24 17:22:20'),
(13509, 'id', 'label', 'Fail', 'Gagal', '2018-05-24 17:22:20'),
(13510, 'id', 'label', 'Free', 'Gratis', '2018-05-24 17:22:20'),
(13511, 'id', 'label', 'Mobile', 'Mobile', '2018-05-24 17:22:20'),
(13512, 'id', 'label', 'Monthly', 'Bulanan', '2018-05-24 17:22:20'),
(13513, 'id', 'label', 'Order By', 'Diurutkan Berdasarkan', '2018-05-24 17:22:20'),
(13514, 'id', 'label', 'Reference', 'Referensi', '2018-05-24 17:22:20'),
(13515, 'id', 'label', 'Referer', 'Referer', '2018-05-24 17:22:20'),
(13516, 'id', 'label', 'Select All', 'Pilih Semua', '2018-05-24 17:22:20'),
(13517, 'id', 'label', 'Speed', 'Kecepatan', '2018-05-24 17:22:20'),
(13518, 'id', 'label', 'Subject', 'Subyek', '2018-05-24 17:22:20'),
(13519, 'id', 'label', 'Success', 'Sukses', '2018-05-24 17:22:20'),
(13520, 'id', 'label', 'Syntax', 'Sintaks', '2018-05-24 17:22:20'),
(13521, 'id', 'label', 'Theme', 'Tema', '2018-05-24 17:22:20'),
(13522, 'id', 'label', 'Type', 'Tipe', '2018-05-24 17:22:20'),
(13523, 'id', 'label', 'Usability', 'Kegunaan', '2018-05-24 17:22:20'),
(13524, 'id', 'label', 'User agent', 'User agent', '2018-05-24 17:22:20'),
(13525, 'id', 'label', 'Weekly', 'Mingguan', '2018-05-24 17:22:20'),
(13526, 'id', 'log', 'Clear All Logs', 'Hapus Semua Log', '2018-05-24 17:23:02'),
(13527, 'id', 'log', 'Crawl Log Details', 'Detail Log Penjelajahan', '2018-05-24 17:23:02'),
(13528, 'id', 'log', 'Post Fields', '', '2018-05-24 17:23:02'),
(13529, 'id', 'login', 'Forgot password?', 'Lupa sandi?', '2018-05-24 17:26:12'),
(13530, 'id', 'login', 'internal_error_mail_send', 'Terjadi kesalahan saat mengirimkan email untuk mereset sandi!', '2018-05-24 17:26:12'),
(13531, 'id', 'login', 'password_reset_success_message', 'Sandi Anda berhasil direset. Sebuah email konfirmasi telah dikirim ke alamat email Anda. <br>Silakan cek inbox Anda untuk mendapatkan sandi yang baru.', '2018-05-24 17:26:12'),
(13532, 'id', 'login', 'Request Password', 'Minta Sandi', '2018-05-24 17:26:12'),
(13533, 'id', 'login', 'to login to your account', 'untuk masuk ke akun Anda', '2018-05-24 17:26:12'),
(13534, 'id', 'login', 'User Type', 'Tipe User', '2018-05-24 17:26:12'),
(13535, 'id', 'login', 'user_email_not_exist', 'Email pengguna tidak ada di dalam sistem!', '2018-05-24 17:26:12'),
(13536, 'id', 'login', 'Your account password is resetted and new password is', 'Sandi akun anda telah direset dan sandi barunya adalah', '2018-05-24 17:26:12'),
(13537, 'id', 'login', 'Your Password Reset Failed', 'Reset Sandi Anda Gagal', '2018-05-24 17:26:12'),
(13538, 'id', 'login', 'Your Password Reset Successfully', 'Sandi Anda Berhasil Direset', '2018-05-24 17:26:12'),
(13539, 'id', 'pagespeed', 'Desktop Speed', 'Kecepatan Desktop', '2018-05-24 17:27:02'),
(13540, 'id', 'pagespeed', 'Mobile Speed', 'Kecepatan Mobile', '2018-05-24 17:27:02'),
(13541, 'id', 'pagespeed', 'Mobile Usability', 'Kegunaan Mobile', '2018-05-24 17:27:02'),
(13542, 'id', 'pagespeed', 'Page Speed', 'Kecepatan Halaman', '2018-05-24 17:27:02'),
(13543, 'id', 'pagespeed', 'PageSpeed Details', 'Detail Kecepatan Halaman', '2018-05-24 17:27:02'),
(13544, 'id', 'pagespeed', 'Saved page speed results of', 'Hasil kecepatan halaman yang tersimpan dari', '2018-05-24 17:27:02'),
(13545, 'id', 'panel', 'API Connection', 'Koneksi API', '2018-05-24 17:29:48'),
(13546, 'id', 'panel', 'API Manager', 'Manajer API', '2018-05-24 17:29:48'),
(13547, 'id', 'panel', 'API Settings', 'Pengaturan API', '2018-05-24 17:29:48'),
(13548, 'id', 'panel', 'Archived Reports', 'Laporan Terarsip', '2018-05-24 17:29:48'),
(13549, 'id', 'panel', 'Crawl Log Manager', 'Manager Log Penjelajahan', '2018-05-24 17:29:48'),
(13550, 'id', 'panel', 'Existing', 'Tersedia', '2018-05-24 17:29:48'),
(13551, 'id', 'panel', 'Global Reports Settings', 'Pengaturan Laporan Global', '2018-05-24 17:29:48'),
(13552, 'id', 'panel', 'Google Settings', 'Pengaturan Google', '2018-05-24 17:29:48'),
(13553, 'id', 'panel', 'Import Proxy', 'Impor Proxy', '2018-05-24 17:29:48'),
(13554, 'id', 'panel', 'Import Websites', 'Impor Website', '2018-05-24 17:29:48'),
(13555, 'id', 'panel', 'Log Manager', 'Manajer Log', '2018-05-24 17:29:48'),
(13556, 'id', 'panel', 'MOZ Settings', 'Pengaturan MOZ', '2018-05-24 17:29:48'),
(13557, 'id', 'panel', 'New User Type', 'Tipe User Baru', '2018-05-24 17:29:48'),
(13558, 'id', 'panel', 'Proxy Perfomance', 'Kinerja Proxy', '2018-05-24 17:29:48'),
(13559, 'id', 'panel', 'Proxy Settings', 'Pengaturan Proxy', '2018-05-24 17:29:48'),
(13560, 'id', 'panel', 'Report Settings', 'Pengaturan Laporan', '2018-05-24 17:29:48'),
(13561, 'id', 'panel', 'Schedule Reports', 'Laporan Jadwal', '2018-05-24 17:29:48'),
(13562, 'id', 'panel', 'Search Engine Manager', 'Manajer Mesin Pencarian', '2018-05-24 17:29:48'),
(13563, 'id', 'panel', 'Settings', 'Pengaturan', '2018-05-24 17:29:48'),
(13564, 'id', 'panel', 'Themes Manager', 'Manajer Tema', '2018-05-24 17:29:48'),
(13565, 'id', 'panel', 'User Type Manager', 'Manajer Tipe User', '2018-05-24 17:29:48'),
(13566, 'id', 'panel', 'User Type Settings', 'Pengaturan Tipe User', '2018-05-24 17:29:48'),
(13567, 'id', 'panel', 'Valid', 'Sah', '2018-05-24 17:29:48'),
(13568, 'id', 'proxy', 'click-to-get-proxy', 'Klik di sini untuk mendapatkan proxy', '2018-05-24 17:31:01'),
(13569, 'id', 'proxy', 'enterproxynote', '', '2018-05-24 17:31:01'),
(13570, 'id', 'proxy', 'proxysyntax', 'Nama Host Proxy, Port Proxy, Nama User Proxy, Sandi Proxy', '2018-05-24 17:31:01'),
(13571, 'id', 'proxy', 'Request Count', 'Jumlah Request', '2018-05-24 17:31:01'),
(13572, 'ja', 'common', 'Server', 'サーバー', '2019-05-25 22:40:02'),
(13573, 'ja', 'QuickWebProxy', 'Anonymize', '匿名化', '2018-05-25 10:30:06'),
(13574, 'ja', 'QuickWebProxy', 'Please enter a valid url', '有効なURLを入力してください', '2018-05-25 10:30:06'),
(13575, 'ja', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'ユーザにウェブプロキシへのアクセスを許可する', '2018-05-25 10:30:06'),
(13576, 'ja', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'ウェブサーバーをプロキシとして動作させる', '2018-05-25 10:30:06'),
(13577, 'ja', 'QuickWebProxy', 'Server list is empty', 'サーバーリストは空です', '2018-05-25 10:30:06'),
(13578, 'ja', 'QuickWebProxy', 'Web Proxy', 'ウェブプロキシ', '2018-05-25 10:30:06'),
(13579, 'ja', 'QuickWebProxy', 'Web Server', 'ウェブサーバー', '2018-05-25 10:30:06'),
(13580, 'ja', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'curlリクエストを付けてカスタムヘッダを送信する', '2019-04-01 13:52:17'),
(13581, 'ru', 'common', 'Server', 'Сервер', '2024-07-17 15:16:33'),
(13582, 'ru', 'QuickWebProxy', 'Anonymize', 'Анонимизировать', '2024-07-17 15:19:58'),
(13583, 'ru', 'QuickWebProxy', 'Please enter a valid url', 'Пожалуйста введите корректный url', '2024-07-17 15:19:58'),
(13584, 'ru', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Разрешить пользователю доступ к веб-прокси', '2024-07-17 15:19:58'),
(13585, 'ru', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Разрешить веб-серверу действовать как прокси-сервер', '2024-07-17 15:19:58'),
(13586, 'ru', 'QuickWebProxy', 'Server list is empty', 'Список серверов пуст', '2024-07-17 15:19:58'),
(13587, 'ru', 'QuickWebProxy', 'Web Proxy', 'Веб-прокси', '2024-07-17 15:19:58'),
(13588, 'ru', 'QuickWebProxy', 'Web Server', 'Веб-сервер', '2024-07-17 15:19:58'),
(13589, 'ru', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Отправить собственный заголовок с запросом на завивание', '2024-07-17 15:22:42'),
(13590, 'pt-br', 'common', 'Server', 'Servidor', '2019-07-30 00:26:27'),
(13591, 'pt-br', 'QuickWebProxy', 'Anonymize', 'Ficar anônimo', '2018-06-02 17:46:40'),
(13592, 'pt-br', 'QuickWebProxy', 'Please enter a valid url', 'Por favor digite uma URL válida', '2018-06-02 17:46:40'),
(13593, 'pt-br', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Permitir acesso do usuário ao proxy', '2018-06-02 17:46:40'),
(13594, 'pt-br', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Permitir servidor web agir como proxy', '2018-06-02 17:46:40'),
(13595, 'pt-br', 'QuickWebProxy', 'Server list is empty', 'Lista de servidores está vazia', '2018-06-02 17:46:40'),
(13596, 'pt-br', 'QuickWebProxy', 'Web Proxy', 'Proxy Web', '2018-06-02 17:46:40'),
(13597, 'pt-br', 'QuickWebProxy', 'Web Server', 'Servidor Web', '2018-06-02 17:46:40'),
(13598, 'pt-br', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Enviar header com requisição curl personalizada', '2018-06-02 17:47:27'),
(13599, 'en', 'label', 'Email Body', 'Email Body', '2018-06-27 01:27:02'),
(13600, 'en', 'label', 'Days', 'Days', '2018-06-27 01:27:02'),
(13601, 'en', 'subscription', 'Email Template Manager', 'Email Template Manager', '2018-06-27 01:27:02'),
(13602, 'en', 'subscription', 'Edit Email Template', 'Edit Email Template', '2018-06-27 01:27:02'),
(13603, 'en', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2018-06-27 01:27:02'),
(13604, 'en', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2018-06-27 01:27:02'),
(13605, 'en', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Notification(After)', '2018-06-27 01:27:02'),
(13606, 'en', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2018-08-21 00:57:21'),
(13607, 'en', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2018-08-21 00:57:21'),
(13608, 'en', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google Analytics Tracking Code', '2018-08-21 00:57:21'),
(13609, 'en', 'panel', 'Connections', 'Connections', '2018-08-21 00:57:21'),
(13610, 'en', 'myaccount', 'Connect', 'Connect', '2018-08-21 00:57:21'),
(13611, 'en', 'myaccount', 'Disconnect', 'Disconnect', '2018-08-21 00:57:21'),
(13612, 'en', 'myaccount', 'Connected', 'Connected', '2018-08-21 00:57:21'),
(13613, 'en', 'myaccount', 'Disconnected', 'Disconnected', '2018-08-21 00:57:21'),
(13614, 'en', 'login', 'Your account activated successfully', 'Your account activated successfully', '2018-08-21 00:57:21'),
(13615, 'en', 'login', 'user_not_activated_msg', 'User is not activated. Please check your mail for activation', '2018-08-21 00:57:21'),
(13616, 'en', 'subscription', 'enable_email_activation', 'Enable Email Activation', '2018-08-21 00:57:21'),
(13617, 'en', 'subscription', 'free_trial_period', 'Free Trial Period', '2018-08-21 00:57:21'),
(13618, 'en', 'register', 'user_confirm_mail_cont_1', 'Thank you for your registration with', '2018-08-21 00:57:21'),
(13619, 'en', 'register', 'user_confirm_mail_cont_2', 'Please click on the following link to confirm registration', '2018-08-21 00:57:21'),
(13620, 'en', 'register', 'user_confirm_content_1', 'Internal error occured while processing confirm request', '2018-08-21 00:57:21'),
(13621, 'en', 'label', 'Feature', 'Feature', '2018-08-21 00:57:21'),
(13622, 'en', 'label', 'Months', 'Months', '2018-08-21 00:57:21'),
(13623, 'en', 'common', 'Pricing', 'Pricing', '2018-08-21 00:58:09'),
(13624, 'en', 'register', 'Registration', 'Registration', '2018-08-21 00:58:09'),
(13625, 'en', 'seotools', 'webmaster-tools', 'Webmaster Tools', '2018-08-21 00:58:09'),
(13626, 'en', 'seotools', 'Keyword Search Reports', 'Keyword Search Reports', '2018-08-21 00:58:09'),
(13627, 'en', 'seotools', 'Keyword Search Summary', 'Keyword Search Summary', '2018-08-21 00:58:09'),
(13628, 'en', 'seotools', 'Website Search Summary', 'Website Search Summary', '2018-08-21 00:58:09'),
(13629, 'en', 'seotools', 'Website Search Reports', 'Website Search Reports', '2018-08-21 00:58:09'),
(13630, 'en', 'seotools', 'Graphical Reports', 'Graphical Reports', '2018-08-21 00:58:09'),
(13631, 'en', 'seotools', 'Quick Checker', 'Quick Checker', '2018-08-21 00:58:09'),
(13632, 'en', 'label', 'Clicks', 'Clicks', '2018-08-21 00:58:09'),
(13633, 'en', 'label', 'Impressions', 'Impressions', '2018-08-21 00:58:09'),
(13634, 'en', 'webmaster', 'Average Position', 'Average Position', '2018-08-21 00:58:09'),
(13635, 'ja', 'common', 'Pricing', '価格設定', '2019-05-25 22:40:02'),
(13636, 'ja', 'label', 'Clicks', 'クリック', '2019-04-01 13:45:51'),
(13637, 'ja', 'label', 'Days', '日', '2019-04-01 13:45:51'),
(13638, 'ja', 'label', 'Email Body', 'メール本文', '2019-04-01 13:45:51'),
(13639, 'ja', 'label', 'Feature', '特長\r\n', '2019-04-01 13:45:51'),
(13640, 'ja', 'label', 'Impressions', 'インプレッション', '2019-04-01 13:45:51'),
(13641, 'ja', 'label', 'Months', '月', '2019-04-01 13:45:51'),
(13642, 'ja', 'login', 'user_not_activated_msg', 'ユーザが有効化されていません。Eメールをご確認ください', '2018-08-21 10:29:48'),
(13643, 'ja', 'login', 'Your account activated successfully', 'アカウントが有効化されました', '2018-08-21 10:29:48'),
(13644, 'ja', 'myaccount', 'Connect', '接続', '2018-08-21 10:30:28'),
(13645, 'ja', 'myaccount', 'Connected', '接続済', '2018-08-21 10:30:28'),
(13646, 'ja', 'myaccount', 'Disconnect', '切断', '2018-08-21 10:30:28'),
(13647, 'ja', 'myaccount', 'Disconnected', '切断済', '2018-08-21 10:30:28'),
(13648, 'ja', 'panel', 'Connections', '接続', '2019-04-01 13:46:57'),
(13649, 'ja', 'register', 'Registration', '登録', '2018-08-21 10:35:40'),
(13650, 'ja', 'register', 'user_confirm_content_1', '確定要求の処理中に内部エラーが発生しました', '2018-08-21 10:35:40'),
(13651, 'ja', 'register', 'user_confirm_mail_cont_1', 'ご登録ありがとうございます:', '2018-08-21 10:35:40'),
(13652, 'ja', 'register', 'user_confirm_mail_cont_2', '登録を確定するには以下のリンクをクリックしてください', '2018-08-21 10:35:40'),
(13653, 'it', 'common', 'Pricing', 'Prezzo', '2022-07-11 15:16:48'),
(13654, 'it', 'common', 'Search Engine Count', 'Conteggio motore di ricerca', '2022-07-11 15:16:48'),
(13655, 'it', 'common', 'Server', 'Server', '2022-07-11 15:16:48'),
(13656, 'bg', 'common', 'Pricing', 'Ценообразуване', '2019-05-25 22:00:14'),
(13657, 'bg', 'common', 'Search Engine Count', 'Брой търсачки', '2019-05-25 22:00:14'),
(13658, 'bg', 'common', 'Server', 'Сървър', '2019-05-25 22:00:14'),
(13659, 'it', 'label', 'Access denied', 'Accesso negato', '2022-07-11 15:17:58'),
(13660, 'it', 'label', 'Clicks', 'Clicks', '2022-07-11 15:17:58'),
(13661, 'it', 'label', 'Days', 'Giorni', '2022-07-11 15:17:58'),
(13662, 'it', 'label', 'Desktop', 'Desktop', '2022-07-11 15:17:58'),
(13663, 'it', 'label', 'Email Body', 'Corpo della email', '2022-07-11 15:17:58'),
(13664, 'it', 'label', 'Feature', 'Caratteristiche', '2022-07-11 15:17:58'),
(13665, 'it', 'label', 'Impressions', 'Impressions', '2022-07-11 15:17:58'),
(13666, 'it', 'label', 'Mobile', 'Mobile', '2022-07-11 15:17:58'),
(13667, 'it', 'label', 'Months', 'Mesi', '2022-07-11 15:17:58'),
(13668, 'it', 'label', 'Speed', 'Velocità', '2022-07-11 15:17:58'),
(13669, 'it', 'label', 'Usability', 'Usabilità', '2022-07-11 15:17:58'),
(13670, 'it', 'login', 'user_not_activated_msg', 'Utente non attivato. Controlla la tua mail per l''attivazione', '2018-08-21 11:07:40'),
(13671, 'it', 'login', 'Your account activated successfully', 'Il tuo account è stato attivato con successo', '2018-08-21 11:07:40'),
(13672, 'it', 'myaccount', 'Connect', 'Connettiti', '2018-08-21 11:08:01'),
(13673, 'it', 'myaccount', 'Connected', 'Connesso', '2018-08-21 11:08:01'),
(13674, 'it', 'myaccount', 'Disconnect', 'Disconnettiti', '2018-08-21 11:08:01'),
(13675, 'it', 'myaccount', 'Disconnected', 'Disconnesso', '2018-08-21 11:08:01'),
(13676, 'it', 'pagespeed', 'Desktop Speed', 'Velocità Desktop', '2018-08-21 11:08:38'),
(13677, 'it', 'pagespeed', 'Mobile Speed', 'Velocità Mobile', '2018-08-21 11:08:38'),
(13678, 'it', 'pagespeed', 'Mobile Usability', 'Usabilità Mobile', '2018-08-21 11:08:38'),
(13679, 'it', 'pagespeed', 'Page Speed', 'Page speed', '2018-08-21 11:08:38'),
(13680, 'it', 'pagespeed', 'PageSpeed Details', 'Dettagli PageSpeed', '2018-08-21 11:08:38');
INSERT INTO `texts` VALUES
(13681, 'it', 'pagespeed', 'Saved page speed results of', 'Salva risultati del page speed di', '2018-08-21 11:08:38'),
(13682, 'bg', 'label', 'Access denied', 'Отказан достъп', '2018-08-21 11:09:26'),
(13683, 'bg', 'label', 'Clicks', 'Кликове', '2018-08-21 11:09:26'),
(13684, 'bg', 'label', 'Days', 'Дни', '2018-08-21 11:09:26'),
(13685, 'bg', 'label', 'Desktop', 'Десктоп', '2018-08-21 11:09:26'),
(13686, 'bg', 'label', 'Email Body', 'Емайл съобщение', '2018-08-21 11:09:26'),
(13687, 'bg', 'label', 'Feature', 'Свойство', '2018-08-21 11:09:26'),
(13688, 'bg', 'label', 'Impressions', 'Импресии', '2018-08-21 11:09:26'),
(13689, 'bg', 'label', 'Mobile', 'Мобилно устройство', '2018-08-21 11:09:26'),
(13690, 'bg', 'label', 'Months', 'Месеци', '2018-08-21 11:09:26'),
(13691, 'bg', 'label', 'Speed', 'Скорост', '2018-08-21 11:09:26'),
(13692, 'bg', 'label', 'Usability', 'Ползваемост', '2018-08-21 11:09:26'),
(13693, 'it', 'panel', 'Connections', 'Connessioni', '2022-07-11 15:20:07'),
(13694, 'it', 'panel', 'Global Reports Settings', 'Report Impostazioni Generali', '2022-07-11 15:20:07'),
(13695, 'it', 'panel', 'Google Settings', 'Impostazioni google', '2022-07-11 15:20:07'),
(13696, 'it', 'panel', 'User Type Settings', 'Impostazioni tipo utente', '2022-07-11 15:20:07'),
(13697, 'bg', 'login', 'user_not_activated_msg', 'Потребителят не е активиран. Моля, проверете емайла си за активиране', '2018-08-21 11:10:13'),
(13698, 'bg', 'login', 'Your account activated successfully', 'Вашият профил е активиран успешно', '2018-08-21 11:10:13'),
(13699, 'it', 'QuickWebProxy', 'Anonymize', 'Anonimizza', '2018-08-21 11:11:02'),
(13700, 'it', 'QuickWebProxy', 'Please enter a valid url', 'Per cortesia inserisci un indirizzo valido', '2018-08-21 11:11:02'),
(13701, 'it', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Permetti agli utenti di accedere al web proxy', '2018-08-21 11:11:02'),
(13702, 'it', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Permetti al web server di funzionare in modalità proxy', '2018-08-21 11:11:02'),
(13703, 'it', 'QuickWebProxy', 'Server list is empty', 'La lista server è vuota', '2018-08-21 11:11:02'),
(13704, 'it', 'QuickWebProxy', 'Web Proxy', 'Web Proxy', '2018-08-21 11:11:02'),
(13705, 'it', 'QuickWebProxy', 'Web Server', 'Web Server', '2018-08-21 11:11:02'),
(13706, 'bg', 'myaccount', 'Connect', 'Свържи', '2018-08-21 11:11:07'),
(13707, 'bg', 'myaccount', 'Connected', 'Свързан', '2018-08-21 11:11:07'),
(13708, 'bg', 'myaccount', 'Disconnect', 'Деактивирай', '2018-08-21 11:11:07'),
(13709, 'bg', 'myaccount', 'Disconnected', 'Деактивиран', '2018-08-21 11:11:07'),
(13710, 'it', 'register', 'Registration', 'Registrazione', '2018-08-21 11:11:51'),
(13711, 'it', 'register', 'user_confirm_content_1', 'Si è verificato un errore durante il processo di conferma della richiesta', '2018-08-21 11:11:51'),
(13712, 'it', 'register', 'user_confirm_mail_cont_1', 'Grazie per la tua registrazione con ', '2018-08-21 11:11:51'),
(13713, 'it', 'register', 'user_confirm_mail_cont_2', 'Clicca sul seguente link per confermare la registrazione', '2018-08-21 11:11:51'),
(13714, 'bg', 'pagespeed', 'Desktop Speed', 'Скорост на страницата за десктоп', '2018-08-21 11:12:59'),
(13715, 'bg', 'pagespeed', 'Mobile Speed', 'Скорост на страницата за мобилни ', '2018-08-21 11:12:59'),
(13716, 'bg', 'pagespeed', 'Mobile Usability', 'Ползваемост на мобилни', '2018-08-21 11:12:59'),
(13717, 'bg', 'pagespeed', 'Page Speed', 'Скорост на страницита', '2018-08-21 11:12:59'),
(13718, 'bg', 'pagespeed', 'PageSpeed Details', 'Детайли на скорост на страницита', '2018-08-21 11:12:59'),
(13719, 'bg', 'pagespeed', 'Saved page speed results of', 'Запазени резултати за скорост на страницита за', '2018-08-21 11:12:59'),
(13720, 'it', 'seotools', 'clickproceedaction', 'Inserisci indirizzi <b>Uno per lines</b>. Clicca su <b>Procedi</b> per vedere i risultati.', '2018-08-21 11:13:41'),
(13721, 'it', 'seotools', 'Generate Reports', 'Genera reports', '2018-08-21 11:13:41'),
(13722, 'it', 'seotools', 'Graphical Reports', 'Report grafico', '2018-08-21 11:13:41'),
(13723, 'it', 'seotools', 'Keyword Search Reports', 'Report ricerca keywords', '2018-08-21 11:13:41'),
(13724, 'it', 'seotools', 'Keyword Search Summary', 'Sommario ricerca keywords', '2018-08-21 11:13:41'),
(13725, 'it', 'seotools', 'pagespeed', ' PageSpeed Insights ', '2018-08-21 11:13:41'),
(13726, 'it', 'seotools', 'PageSpeed Reports', 'Report PageSpeed', '2018-08-21 11:13:41'),
(13727, 'it', 'seotools', 'Quick Checker', 'Controllo veloce', '2018-08-21 11:13:41'),
(13728, 'it', 'seotools', 'Quick PageSpeed Checker', 'Controllo veloce PageSpeed', '2018-08-21 11:13:41'),
(13729, 'it', 'seotools', 'webmaster-tools', ' Webmaster Tools ', '2018-08-21 11:13:41'),
(13730, 'it', 'seotools', 'Website Search Reports', 'Report ricerca sito web', '2018-08-21 11:13:41'),
(13731, 'it', 'seotools', 'Website Search Summary', 'Sommario ricerca sito web', '2018-08-21 11:13:41'),
(13732, 'bg', 'panel', 'Connections', 'Връзки', '2018-08-21 11:14:04'),
(13733, 'bg', 'panel', 'Global Reports Settings', 'Настройки за глобални отчети', '2018-08-21 11:14:04'),
(13734, 'bg', 'panel', 'Google Settings', 'Google настройки', '2018-08-21 11:14:04'),
(13735, 'bg', 'panel', 'User Type Settings', 'Настройки на типа на потребителя', '2018-08-21 11:14:04'),
(13736, 'it', 'siteauditor', 'The page is having good page authority value', 'Questa pagina ha una buona autorità', '2018-08-21 11:14:08'),
(13737, 'bg', 'QuickWebProxy', 'Anonymize', 'Анонимизиране', '2018-08-21 11:15:42'),
(13738, 'bg', 'QuickWebProxy', 'Please enter a valid url', 'Моля, въведете валиден URL адрес', '2018-08-21 11:15:42'),
(13739, 'bg', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Позволи на потребителя достъп до уеб прокси сървъра', '2018-08-21 11:15:42'),
(13740, 'bg', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Разрешаване на уеб сървъра да действа като прокси сървър', '2018-08-21 11:15:42'),
(13741, 'bg', 'QuickWebProxy', 'Server list is empty', 'Списъкът със сървъри е празен', '2018-08-21 11:15:42'),
(13742, 'bg', 'QuickWebProxy', 'Web Proxy', 'Уеб прокси', '2018-08-21 11:15:42'),
(13743, 'bg', 'QuickWebProxy', 'Web Server', 'Уеб сървър', '2018-08-21 11:15:42'),
(13744, 'it', 'settings', 'click-to-get-google-api-key', 'Clicca quì per prendere le API Key di Google', '2018-08-21 11:16:32'),
(13745, 'it', 'settings', 'Please update google settings to get the results', 'Per cortesia aggiorna i settaggi per di google per prendere i risultati', '2018-08-21 11:16:32'),
(13746, 'it', 'settings', 'Please update MOZ settings to get complete results', 'Per cortesia aggiorna i settaggi di MOZ per completare i risultati', '2018-08-21 11:16:32'),
(13747, 'it', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Codice di tracciamento Google Analytics', '2018-08-21 11:16:32'),
(13748, 'it', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'ID Google API Client', '2018-08-21 11:16:32'),
(13749, 'it', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Codice segreto Google API Client', '2018-08-21 11:16:32'),
(13750, 'it', 'settings', 'SP_GOOGLE_API_KEY', 'API Key Google', '2018-08-21 11:16:32'),
(13751, 'it', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Invia header personalizzato con richiesta CURL', '2018-08-21 11:16:32'),
(13752, 'bg', 'register', 'Registration', 'Регистрация', '2018-08-21 11:16:46'),
(13753, 'bg', 'register', 'user_confirm_content_1', 'Възникна грешка при обработката на заявката за потвърждение', '2018-08-21 11:16:46'),
(13754, 'bg', 'register', 'user_confirm_mail_cont_1', 'Благодарим Ви за регистрация с', '2018-08-21 11:16:46'),
(13755, 'bg', 'register', 'user_confirm_mail_cont_2', 'Моля, кликнете върху следната връзка, за да потвърдите регистрацията', '2018-08-21 11:16:46'),
(13756, 'bg', 'seotools', 'clickproceedaction', 'Въведете URL адресите <b>По един на ред</ b>. Кликнете върху <b>Продължи</ b>, за да проверите резултатите.', '2018-08-21 11:21:10'),
(13757, 'bg', 'seotools', 'Generate Reports', 'Генерирай доклади', '2018-08-21 11:21:10'),
(13758, 'bg', 'seotools', 'Graphical Reports', 'Графични доклади', '2018-08-21 11:21:10'),
(13759, 'bg', 'seotools', 'Keyword Search Reports', 'Доклади за ключови думи', '2018-08-21 11:21:10'),
(13760, 'bg', 'seotools', 'Keyword Search Summary', 'Резюме на търсене по ключова дума', '2018-08-21 11:21:10'),
(13761, 'bg', 'seotools', 'pagespeed', 'Статистика на скоростта на страницата', '2018-08-21 11:21:10'),
(13762, 'bg', 'seotools', 'PageSpeed Reports', 'Доклади за скоростта на страницата', '2018-08-21 11:21:10'),
(13763, 'bg', 'seotools', 'Quick Checker', 'Бърза проверка', '2018-08-21 11:21:10'),
(13764, 'bg', 'seotools', 'Quick PageSpeed Checker', 'Бърза проверка на скоростта на страницата', '2018-08-21 11:21:10'),
(13765, 'bg', 'seotools', 'webmaster-tools', 'Уебмастър инструменти', '2018-08-21 11:21:10'),
(13766, 'bg', 'seotools', 'Website Search Reports', 'Доклади за търсене в сайта', '2018-08-21 11:21:10'),
(13767, 'bg', 'seotools', 'Website Search Summary', 'Резюме на търсене в сайта', '2018-08-21 11:21:10'),
(13768, 'it', 'subscription', 'account-expired', 'Il tuo account è scaduto. Rinnova la tua sottoscrizione', '2018-08-21 11:23:43'),
(13769, 'it', 'subscription', 'Amount', 'Quantità', '2018-08-21 11:23:43'),
(13770, 'it', 'subscription', 'click-activate-pay-plugin', 'Clicca per attivare il plugin di pagamento', '2018-08-21 11:23:43'),
(13771, 'it', 'subscription', 'Currency', 'Valuta', '2018-08-21 11:23:43'),
(13772, 'it', 'subscription', 'Directory Submit Daily Limit', 'Limite immisione giornaliero directory', '2018-08-21 11:23:43'),
(13773, 'it', 'subscription', 'Directory Submit Limit', 'Limite invio directory', '2018-08-21 11:23:43'),
(13774, 'it', 'subscription', 'Edit Email Template', 'Template di modifica email', '2018-08-21 11:23:43'),
(13775, 'it', 'subscription', 'Edit Payment Gateway', 'Modifica gateway di pagamento', '2018-08-21 11:23:43'),
(13776, 'it', 'subscription', 'Email Template Manager', 'Gestiore template email', '2018-08-21 11:23:43'),
(13777, 'it', 'subscription', 'enable_email_activation', 'Abilita attivazione email', '2018-08-21 11:23:43'),
(13778, 'it', 'subscription', 'free_trial_period', 'Periodo di prova', '2018-08-21 11:23:43'),
(13779, 'it', 'subscription', 'infinite_limit_text', ' <b>Nota</b>: Inserisci -1 per periodo illimitato', '2018-08-21 11:23:43'),
(13780, 'it', 'subscription', 'internal-error-payment', 'Si è verificato un errore durante il processo', '2018-08-21 11:23:43'),
(13781, 'it', 'subscription', 'Keyword Limit', 'Limite keyword', '2018-08-21 11:23:43'),
(13782, 'it', 'subscription', 'Order Id', 'ID Ordine', '2018-08-21 11:23:43'),
(13783, 'it', 'subscription', 'Orders', 'Ordini', '2018-08-21 11:23:43'),
(13784, 'it', 'subscription', 'Paid By', 'Pagato da', '2018-08-21 11:23:43'),
(13785, 'it', 'subscription', 'Payment Gateway Manager', 'Gestore gateway di pagamento', '2018-08-21 11:23:43'),
(13786, 'it', 'subscription', 'Payment Method', 'Metodo di pagamento', '2018-08-21 11:23:43'),
(13787, 'it', 'subscription', 'Plans and Pricing', 'Piani e prezzi', '2018-08-21 11:23:43'),
(13788, 'it', 'subscription', 'Plugin Access Settings', 'Impostazioni accesso plugin', '2018-08-21 11:23:43'),
(13789, 'it', 'subscription', 'PP_BUSINESS_EMAIL', 'Email paypal business', '2018-08-21 11:23:43'),
(13790, 'it', 'subscription', 'PP_TOKEN', 'Token paypal', '2018-08-21 11:23:43'),
(13791, 'it', 'subscription', 'Quantity', 'Quantità', '2018-08-21 11:23:43'),
(13792, 'it', 'subscription', 'Renew Subscription', 'Rinnova sottoscrizione', '2018-08-21 11:23:43'),
(13793, 'it', 'subscription', 'Sandbox', 'Sandbox', '2018-08-21 11:23:43'),
(13794, 'it', 'subscription', 'Seo Tools Access Settings', 'Accesso impostazioni seo tools', '2018-08-21 11:23:43'),
(13795, 'it', 'subscription', 'site_auditor_max_page_limit', 'Limite massimo di pagine per utilizzo sito', '2018-08-21 11:23:43'),
(13796, 'it', 'subscription', 'SP_PAYMENT_PLUGIN', 'Plugin per pagamento di default', '2018-08-21 11:23:43'),
(13797, 'it', 'subscription', 'Subscribe', 'Sottoscrivi', '2018-08-21 11:23:43'),
(13798, 'it', 'subscription', 'Subscription', 'Sottoscrizione', '2018-08-21 11:23:43'),
(13799, 'it', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Notifica scadenza sottoscrizione (dopo)', '2018-08-21 11:23:43'),
(13800, 'it', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Promemoria di rinnovo sottoscrizione (prima)', '2018-08-21 11:23:43'),
(13801, 'it', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Promemoria di rinnovo sottoscrizione 2 (prima)', '2018-08-21 11:23:43'),
(13802, 'it', 'subscription', 'Term', 'Termini', '2018-08-21 11:23:43'),
(13803, 'it', 'subscription', 'total_count_greater_account_limit', 'Il conteggio totale è maggiore del limite account - [limit] ', '2018-08-21 11:23:43'),
(13804, 'it', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Il conteggio totale è maggiore del limite di immissione directory - [limit] ', '2018-08-21 11:23:43'),
(13805, 'it', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Il conteggio totale è maggiore del limite giornaliero di immissione directory - [limit] ', '2018-08-21 11:23:43'),
(13806, 'it', 'subscription', 'Transaction Id', 'ID Transazione', '2018-08-21 11:23:43'),
(13807, 'it', 'subscription', 'Transaction Log', 'Log transazione', '2018-08-21 11:23:43'),
(13808, 'it', 'subscription', 'transaction-success', 'La transazione è avvenuta con successo', '2018-08-21 11:23:43'),
(13809, 'it', 'subscription', 'View Order', 'Visualizza ordine', '2018-08-21 11:23:43'),
(13810, 'it', 'subscription', 'Website Limit', 'Limite sito web', '2018-08-21 11:23:43'),
(13811, 'it', 'subscription', 'Your transaction cancelled', 'La tua transazione è stata cancellata.', '2018-08-21 11:23:43'),
(13812, 'bg', 'settings', 'click-to-get-google-api-key', 'Кликнете тук, за да получите ключ за Google API', '2018-08-21 11:24:42'),
(13813, 'bg', 'settings', 'Please update google settings to get the results', 'Моля, обновете настройките на Google, за да получите резултатите', '2018-08-21 11:24:42'),
(13814, 'bg', 'settings', 'Please update MOZ settings to get complete results', 'Моля, актуализирайте настройките на MOZ, за да получите пълните резултати', '2018-08-21 11:24:42'),
(13815, 'bg', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Проследяващ код на Google Анализ', '2018-08-21 11:24:42'),
(13816, 'bg', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'ID на клиент на за Google API', '2018-08-21 11:24:42'),
(13817, 'bg', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Тайна на клиент на за Google API', '2018-08-21 11:24:42'),
(13818, 'bg', 'settings', 'SP_GOOGLE_API_KEY', 'Ключ за Google API', '2018-08-21 11:24:42'),
(13819, 'bg', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Изпратете персонализирани хедъри с CURL заявката', '2018-08-21 11:24:42'),
(13820, 'it', 'user', 'Expiry Date', 'Data scadenza', '2018-08-21 11:25:45'),
(13821, 'bg', 'siteauditor', 'The page is having good page authority value', 'Страницата има добри показатели за пейдж ауторити', '2018-08-21 11:25:49'),
(13822, 'it', 'webmaster', 'Average Position', 'Posizione media', '2018-08-21 11:26:08'),
(13823, 'it', 'website', 'Please enter CSV file', 'Inserisci file CSV', '2018-08-21 11:27:14'),
(13824, 'it', 'website', 'User Type already exist', 'Tipo utente già esistente', '2018-08-21 11:27:14'),
(13825, 'it', 'website', 'Website CSV File', 'File CSV Sito web', '2018-08-21 11:27:14'),
(13826, 'it', 'website', 'You can add only websitecount websites more', 'Puoi aggiungere solo [websitecount] per questo utente!', '2018-08-21 11:27:14'),
(13827, 'it', 'website', 'Your website count already reached the limit', 'Conteggio sito web già arrivato al limite per questo utente!', '2018-08-21 11:27:14'),
(13828, 'bg', 'subscription', 'Directory Submit Daily Limit', 'Дневен лимит за регистриране в директории', '2018-08-21 11:40:35'),
(13829, 'bg', 'subscription', 'Directory Submit Limit', 'Лимит за регистриране в директории', '2018-08-21 11:40:35'),
(13830, 'bg', 'subscription', 'Edit Email Template', 'Редакция на емайл темплейта', '2018-08-21 11:40:35'),
(13831, 'bg', 'subscription', 'Email Template Manager', 'Управление на имейл темплейти', '2018-08-21 11:40:35'),
(13832, 'bg', 'subscription', 'enable_email_activation', 'Включиване на активирането по имейл', '2018-08-21 11:40:35'),
(13833, 'bg', 'subscription', 'free_trial_period', 'Безплатен пробен период', '2018-08-21 11:40:35'),
(13834, 'bg', 'subscription', 'infinite_limit_text', '<b>Бележка</b>: Въведете -1 за безкраен лимит', '2018-08-21 11:40:35'),
(13835, 'bg', 'subscription', 'Plugin Access Settings', 'Настройки за достъпа до приставки', '2018-08-21 11:40:35'),
(13836, 'bg', 'subscription', 'Seo Tools Access Settings', 'Настройки за достъп до Seo Инструменти', '2018-08-21 11:40:35'),
(13837, 'bg', 'subscription', 'site_auditor_max_page_limit', 'Одитор на сайта Максимален лимит на страница', '2018-08-21 11:40:35'),
(13838, 'bg', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Известие за Изтичане на членство (След)', '2018-08-21 11:40:35'),
(13839, 'bg', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Известие 1 за Подновяване на на членство (Преди)', '2018-08-21 11:40:35'),
(13840, 'bg', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Известие 2 за Подновяване на на членство (Преди)', '2018-08-21 11:40:35'),
(13841, 'bg', 'subscription', 'total_count_greater_account_limit', 'Броят е по-голям от ограничението на профила - [limit]', '2018-08-21 11:40:35'),
(13842, 'bg', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Броят за публикуване в директории е по-голям от ограничението на профила - [limit]', '2018-08-21 11:40:35'),
(13843, 'bg', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Броят за публикуване в директории на ден е по-голям от ограничението на профила - [limit]', '2018-08-21 11:40:35'),
(13844, 'bg', 'webmaster', 'Average Position', 'Средна позиция', '2018-08-21 11:40:52'),
(13845, 'ja', 'seotools', 'Graphical Reports', 'グラフレポート', '2019-04-01 13:49:13'),
(13846, 'ja', 'seotools', 'Keyword Search Reports', 'キーワード検索レポート', '2019-04-01 13:49:13'),
(13847, 'ja', 'seotools', 'Keyword Search Summary', 'キーワード検索サマリ', '2019-04-01 13:49:13'),
(13848, 'ja', 'seotools', 'Quick Checker', 'クイックチェッカー', '2019-04-01 13:49:13'),
(13849, 'ja', 'seotools', 'webmaster-tools', 'ウェブマスターツール', '2019-04-01 13:49:13'),
(13850, 'ja', 'seotools', 'Website Search Reports', 'ウェブサイト検索レポート', '2019-04-01 13:49:13'),
(13851, 'ja', 'seotools', 'Website Search Summary', 'ウェブサイト検索サマリ', '2019-04-01 13:49:13'),
(13852, 'ja', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Googleアナリティクス トラッキングコード', '2019-04-01 13:52:17'),
(13853, 'ja', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API クライアントID', '2019-04-01 13:52:17'),
(13854, 'ja', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API クライアントシークレット', '2019-04-01 13:52:17'),
(13855, 'ja', 'subscription', 'Edit Email Template', 'Eメールテンプレート編集', '2019-04-01 13:54:02'),
(13856, 'ja', 'subscription', 'Email Template Manager', 'Eメールテンプレートマネージャー', '2019-04-01 13:54:02'),
(13857, 'ja', 'subscription', 'enable_email_activation', 'Eメールアクティベーション有効化', '2019-04-01 13:54:02'),
(13858, 'ja', 'subscription', 'free_trial_period', '無料トライアル期間', '2019-04-01 13:54:02'),
(13859, 'ja', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'メンバーシップ期限切れ通知', '2019-04-01 13:54:02'),
(13860, 'ja', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'メンバーシップ更新リマインダー1', '2019-04-01 13:54:02'),
(13861, 'ja', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'メンバーシップ更新リマインダー2', '2019-04-01 13:54:02'),
(13862, 'ja', 'webmaster', 'Average Position', '平均順位', '2019-04-01 13:55:05'),
(13863, 'pt-br', 'common', 'Pricing', 'Preço', '2019-07-30 00:26:27'),
(13864, 'pt-br', 'label', 'Clicks', 'Clicks', '2018-08-21 18:54:11'),
(13865, 'pt-br', 'label', 'Days', 'Dias', '2018-08-21 18:54:11'),
(13866, 'pt-br', 'label', 'Email Body', 'Corpo do Email', '2018-08-21 18:54:11'),
(13867, 'pt-br', 'label', 'Feature', 'Característica', '2018-08-21 18:54:11'),
(13868, 'pt-br', 'label', 'Impressions', 'Impressões', '2018-08-21 18:54:11'),
(13869, 'pt-br', 'label', 'Months', 'Meses', '2018-08-21 18:54:11'),
(13870, 'ru', 'common', 'Pricing', 'Стоимость', '2024-07-17 15:16:33'),
(13871, 'ru', 'label', 'Clicks', 'Клики', '2024-07-17 15:17:22'),
(13872, 'ru', 'label', 'Days', 'Дней', '2024-07-17 15:17:22'),
(13873, 'ru', 'label', 'Email Body', 'Тело письма', '2024-07-17 15:17:22'),
(13874, 'ru', 'label', 'Feature', 'Характеристика', '2024-07-17 15:17:22'),
(13875, 'ru', 'label', 'Impressions', 'Показы', '2024-07-17 15:17:22'),
(13876, 'ru', 'label', 'Months', 'Месяцев', '2024-07-17 15:17:22'),
(13877, 'ru', 'login', 'user_not_activated_msg', 'Пользователь не активирован. Проверьте ваш Email для активации', '2018-08-21 21:07:34'),
(13878, 'ru', 'login', 'Your account activated successfully', 'Ваш аккаунт успешно активирован', '2018-08-21 21:07:34'),
(13879, 'ru', 'myaccount', 'Connect', 'Соединиться', '2018-08-21 21:08:11'),
(13880, 'ru', 'myaccount', 'Connected', 'Соединен', '2018-08-21 21:08:11'),
(13881, 'ru', 'myaccount', 'Disconnect', 'Отсоединться', '2018-08-21 21:08:11'),
(13882, 'ru', 'myaccount', 'Disconnected', 'Отсоединен', '2018-08-21 21:08:11'),
(13883, 'ru', 'panel', 'Connections', 'Соединения', '2024-07-17 15:19:14'),
(13884, 'ru', 'register', 'Registration', 'Регистрация', '2018-08-21 21:09:39'),
(13885, 'ru', 'register', 'user_confirm_content_1', 'Произошла внутренняя ошибка при обработке запроса подтверждения', '2018-08-21 21:09:39'),
(13886, 'ru', 'register', 'user_confirm_mail_cont_1', 'Спасибо за регистрацию', '2018-08-21 21:09:39'),
(13887, 'ru', 'register', 'user_confirm_mail_cont_2', 'Пожалуйста нажмите на ссылку для подтверждения регистрации', '2018-08-21 21:09:39'),
(13888, 'ru', 'seotools', 'Graphical Reports', 'Графические отчеты', '2024-07-17 15:26:22'),
(13889, 'ru', 'seotools', 'Keyword Search Reports', 'Отчеты поиска по ключевым словам', '2024-07-17 15:26:22'),
(13890, 'ru', 'seotools', 'Keyword Search Summary', 'Сводка по ключевым словам', '2024-07-17 15:26:22'),
(13891, 'ru', 'seotools', 'Quick Checker', 'Быстрая проверка', '2024-07-17 15:26:22'),
(13892, 'ru', 'seotools', 'webmaster-tools', 'Инструменты для веб-мастеров', '2024-07-17 15:26:22'),
(13893, 'ru', 'seotools', 'Website Search Reports', 'Отчеты о поиске по сайту', '2024-07-17 15:26:22'),
(13894, 'ru', 'seotools', 'Website Search Summary', 'Сводка по сайту', '2024-07-17 15:26:22'),
(13895, 'ru', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Код отслеживания Google Analytics', '2024-07-17 15:22:42'),
(13896, 'ru', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2024-07-17 15:22:42'),
(13897, 'ru', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2024-07-17 15:22:42'),
(13898, 'ru', 'subscription', 'Edit Email Template', 'Изменить шаблон Email', '2024-07-17 15:24:41'),
(13899, 'ru', 'subscription', 'Email Template Manager', 'Менеджер почтовых шаблонов', '2024-07-17 15:24:41'),
(13900, 'ru', 'subscription', 'enable_email_activation', 'Включить почтовую активацию', '2024-07-17 15:24:41'),
(13901, 'ru', 'subscription', 'free_trial_period', 'Бесплатный пробный период', '2024-07-17 15:24:41'),
(13902, 'ru', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Уведомление об истечении срока членства (после)', '2024-07-17 15:24:41'),
(13903, 'ru', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Напоминание о продлении 1 (до)', '2024-07-17 15:24:41'),
(13904, 'ru', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Напоминание о продлении 2 (после)', '2024-07-17 15:24:41'),
(13905, 'ru', 'webmaster', 'Average Position', 'Средняя позиция', '2019-01-25 16:01:40'),
(13909, 'el', 'subscription', 'enable_email_activation', 'Επιτρέπεται η Ενεργοποίηση του Email', '2019-11-28 23:11:38'),
(13910, 'el', 'subscription', 'free_trial_period', 'Δωρεάν Δοκιμαστική Περίοδος', '2019-11-28 23:11:38'),
(13911, 'el', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Ειδοποίηση Λήξης Συνδρομής (After)', '2019-11-28 23:11:38'),
(13912, 'el', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', '1η Υπενθύμισης Ανανέωσης Συνδρομής (Before)', '2019-11-28 23:11:38'),
(13913, 'el', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', '2η Υπενθύμιση Ανανέωσης Συνδρομής (Before)', '2019-11-28 23:11:38'),
(13914, 'el', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', ' Google Analytics Tracking Code ', '2019-08-28 09:43:40'),
(13915, 'el', 'settings', 'SP_GOOGLE_API_CLIENT_ID', ' Google API Client Id ', '2019-08-28 09:43:40'),
(13916, 'el', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', ' Google API Client Secret ', '2019-08-28 09:43:40'),
(13917, 'el', 'seotools', 'Graphical Reports', 'Γραφικές Αναφορές', '2019-11-28 23:13:05'),
(13918, 'el', 'seotools', 'Keyword Search Reports', 'Αναφορές Αναζήτησης Λέξεων Κλειδιών', '2019-11-28 23:13:05'),
(13919, 'el', 'seotools', 'Keyword Search Summary', 'Σύνοψη Αναζητήσεων Λέξεων Κλειδιών', '2019-11-28 23:13:05'),
(13920, 'el', 'seotools', 'Quick Checker', 'Γρήγορος έλεγχος', '2019-11-28 23:13:05'),
(13921, 'el', 'seotools', 'webmaster-tools', ' Webmaster Tools ', '2019-11-28 23:13:05'),
(13922, 'el', 'seotools', 'Website Search Reports', 'Αναφορές Αναζήτησης Ιστοσελίδας', '2019-11-28 23:13:05'),
(13923, 'el', 'seotools', 'Website Search Summary', 'Σύνοψη Αναφορών Αναζήτησης Ιστοσελίδας', '2019-11-28 23:13:05'),
(13924, 'el', 'register', 'Registration', 'Εγγραφή', '2018-08-22 14:38:43'),
(13925, 'el', 'register', 'user_confirm_content_1', ' Internal error occured while processing confirm request ', '2018-08-22 14:38:43'),
(13926, 'el', 'register', 'user_confirm_mail_cont_1', 'Ευχαριστούμε για την εγγραφή σας στο', '2018-08-22 14:38:43'),
(13927, 'el', 'register', 'user_confirm_mail_cont_2', 'Παρακαλούμε κάντε κλικ στον ακόλουθο σύνδεσμο για να επιβεβαιώσετε την εγγραφούλα σας.', '2018-08-22 14:38:43'),
(13928, 'el', 'panel', 'Connections', 'Connections', '2019-08-28 09:42:17'),
(13929, 'el', 'myaccount', 'Connect', 'Σύνδεση', '2018-08-22 14:39:53'),
(13930, 'el', 'myaccount', 'Connected', 'Συνδεδεμένος', '2018-08-22 14:39:53'),
(13931, 'el', 'myaccount', 'Disconnect', 'Αποσύνδεση', '2018-08-22 14:39:53'),
(13932, 'el', 'myaccount', 'Disconnected', 'Αποσυνδέθηκε', '2018-08-22 14:39:53'),
(13933, 'el', 'login', 'user_not_activated_msg', 'Ο χρήστης δεν έχει ενεργοποιηθεί. Παρακαλώ ελέγξτε το email ενεργοποίησης.', '2018-08-23 10:13:36'),
(13934, 'el', 'login', 'Your account activated successfully', 'Ο λογαριασμός σας ενεργοποιήθηκε επιτυχώς.', '2018-08-23 10:13:36'),
(13935, 'el', 'label', 'Clicks', 'Κλικ', '2019-11-28 23:22:10'),
(13936, 'el', 'label', 'Days', 'Ημέρες', '2019-11-28 23:22:10'),
(13937, 'el', 'label', 'Email Body', 'Email Body', '2019-11-28 23:22:10'),
(13938, 'el', 'label', 'Feature', 'Χαρακτηριστικό', '2019-11-28 23:22:10'),
(13939, 'el', 'label', 'Impressions', 'Impressions', '2019-11-28 23:22:10'),
(13940, 'el', 'label', 'Months', 'Μήνες', '2019-11-28 23:22:10'),
(13942, 'en', 'panel', 'Report Generation Logs', 'Report Generation Logs', '2018-09-26 00:13:43'),
(13943, 'en', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2018-09-26 00:13:43'),
(13944, 'en', 'settings', 'click-to-get-google-api-client-id', 'Click here to get Google API Client Id', '2018-09-26 00:13:43'),
(13945, 'en', 'home', 'Overall Report Summary', 'Overall Report Summary', '2018-09-26 00:13:43'),
(13946, 'en', 'seotools', 'Edit Seo Tool', 'Edit Seo Tool', '2018-09-26 00:13:43'),
(13947, 'en', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable Proxy for Google API', '2018-09-26 00:13:43'),
(13948, 'en', 'website', 'Sitemap successfully added to webmaster tools', 'Sitemap successfully added to webmaster tools', '2018-11-27 00:02:56'),
(13949, 'en', 'panel', 'Submit Sitemap', 'Submit Sitemap', '2018-11-27 00:02:56'),
(13950, 'en', 'website', 'Website successfully added to webmaster tools', 'Website successfully added to webmaster tools', '2018-11-27 00:02:56'),
(13951, 'en', 'website', 'Successfully imported following websites', 'Successfully imported following websites', '2018-11-27 00:02:56'),
(13952, 'en', 'website', 'Add to Webmaster Tools', 'Add to Webmaster Tools', '2018-11-27 00:02:56'),
(13953, 'en', 'blog', 'Newer Posts', 'Newer Posts', '2019-01-24 01:08:22'),
(13954, 'en', 'blog', 'Older Posts', 'Older Posts', '2019-01-24 01:08:22'),
(13955, 'en', 'webmaster', 'Error: Google api connection failed', 'Error: Google api connection failed', '2019-01-24 01:08:22'),
(13956, 'en', 'webmaster', 'Click here to connect to your google account', 'Click here to connect to your google account', '2019-01-24 01:08:22'),
(13957, 'en', 'common', 'Blog', 'Blog', '2019-01-24 01:08:22'),
(13958, 'en', 'seotools', 'Sitemap Reports Summary', 'Sitemap Reports Summary', '2019-01-24 01:08:22'),
(13959, 'en', 'website', 'Successfully deleted sitemap from webmaster tools', 'Successfully deleted sitemap from webmaster tools', '2019-01-24 01:08:22'),
(13960, 'en', 'website', 'Successfully sync sitemaps from webmaster tools', 'Successfully sync sitemaps from webmaster tools', '2019-01-24 01:08:22'),
(13961, 'en', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2019-01-24 01:08:22'),
(13962, 'en', 'common', 'Errors', 'Errors', '2019-01-24 01:08:22'),
(13963, 'en', 'common', 'Warnings', 'Warnings', '2019-01-24 01:08:22'),
(13964, 'en', 'sitemap', 'Submitted', 'Submitted', '2019-01-24 01:08:22'),
(13965, 'en', 'sitemap', 'Downloaded', 'Downloaded', '2019-01-24 01:08:22'),
(13966, 'en', 'panel', 'Sitemaps', 'Sitemaps', '2019-01-24 01:08:22'),
(13967, 'en', 'blog', 'Nothing Found', 'Nothing Found', '2019-01-24 01:51:58'),
(13968, 'en', 'blog', 'NothingFound_text2', 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', '2019-01-24 01:54:55'),
(13969, 'ru', 'blog', 'Newer Posts', 'Новые посты', '2019-01-25 15:53:01'),
(13970, 'ru', 'blog', 'Nothing Found', 'Ничего нет', '2019-01-25 15:53:01'),
(13971, 'ru', 'blog', 'NothingFound_text2', 'Извините, но прри поиске ничего не найдено. Пожалуйста попробуйте ввести другие ключевые слова.', '2019-01-25 15:53:01'),
(13972, 'ru', 'blog', 'Older Posts', 'Старые посты', '2019-01-25 15:53:01'),
(13973, 'ru', 'common', 'Blog', 'Блог', '2024-07-17 15:16:33'),
(13974, 'ru', 'common', 'Errors', 'Ошибки', '2024-07-17 15:16:33'),
(13975, 'ru', 'common', 'Warnings', 'Предупреждения', '2024-07-17 15:16:33'),
(13980, 'ru', 'seotools', 'Edit Seo Tool', 'Изменить сео инструменты', '2024-07-17 15:26:22'),
(13981, 'ru', 'seotools', 'Sitemap Reports Summary', 'Отчеты по карте сайта', '2024-07-17 15:26:22'),
(13982, 'ru', 'settings', 'Authorised redirect URI', 'Авторизованные редиректы URI', '2024-07-17 15:22:42'),
(13983, 'ru', 'settings', 'click-to-get-google-api-client-id', 'Нажмите здесь для получения Google API Client Id', '2024-07-17 15:22:42'),
(13984, 'ru', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Включить прокси для Google API', '2024-07-17 15:22:42'),
(13985, 'ru', 'sitemap', 'Downloaded', 'Скачено', '2019-01-25 16:00:48'),
(13986, 'ru', 'sitemap', 'Submitted', 'Отправлено', '2019-01-25 16:00:48'),
(13987, 'ru', 'sitemap', 'Sync Sitemaps', 'Синхронизировать карты сайта', '2019-01-25 16:00:48'),
(13988, 'ru', 'webmaster', 'Click here to connect to your google account', 'Кликните здесь для соединения с аккаунтом google', '2019-01-25 16:01:40'),
(13989, 'ru', 'webmaster', 'Error: Google api connection failed', 'Ошибка: Ошибка соединения с Google api', '2019-01-25 16:01:40'),
(13990, 'ru', 'website', 'Add to Webmaster Tools', 'Добавить в инструменты вебмастера', '2019-08-28 13:09:29'),
(13991, 'ru', 'website', 'Sitemap successfully added to webmaster tools', 'Карта сайта успешно добавлена в инструменты вебмастера', '2019-08-28 13:09:29'),
(13992, 'ru', 'website', 'Successfully deleted sitemap from webmaster tools', 'Карта сайта успешно удалена из инструментов вебмастера', '2019-08-28 13:09:29'),
(13993, 'ru', 'website', 'Successfully imported following websites', 'Сайты успешно импортированы', '2019-08-28 13:09:29'),
(13994, 'ru', 'website', 'Successfully sync sitemaps from webmaster tools', 'Карты сайтов успешно синхронизированы в инструментах вебмастера', '2019-08-28 13:09:29'),
(13995, 'ru', 'website', 'Website successfully added to webmaster tools', 'Сайт успешно добавлен в инструменты вебмастера', '2019-08-28 13:09:29'),
(13996, 'el', 'blog', 'Newer Posts', 'Νεότερες δημοσιεύσεις', '2019-01-28 13:40:26'),
(13997, 'el', 'blog', 'Nothing Found', 'Δεν βρέθηκε τίποτα', '2019-01-28 13:40:26'),
(13998, 'el', 'blog', 'NothingFound_text2', 'Συγνώμη αλλά δεν ταίριαξε κάτι με τα κριτήρια σας. Παρακαλώ δοκιμάστε ξανά με διαφορετικές λέξεις κλειδιά.', '2019-01-28 13:40:26'),
(13999, 'el', 'blog', 'Older Posts', 'Παλαιότερες δημοσιεύσεις', '2019-01-28 13:40:26'),
(14000, 'el', 'common', 'Blog', 'Blog', '2019-08-28 09:40:52'),
(14001, 'el', 'common', 'Errors', 'Σφάλματα', '2019-08-28 09:40:52'),
(14002, 'el', 'common', 'Warnings', 'Προειδοποιήσεις', '2019-08-28 09:40:52'),
(14003, 'el', 'website', 'Add to Webmaster Tools', 'Προσθήκη στο Webmaster Tools', '2019-08-28 09:44:53'),
(14004, 'el', 'website', 'Sitemap successfully added to webmaster tools', 'Το Sitemap προστέθηκε επιτυχώς στο webmaster tools ', '2019-08-28 09:44:53'),
(14005, 'el', 'website', 'Successfully deleted sitemap from webmaster tools', 'Το sitemap διαγράφηκε επιτυχώς από το webmaster tools ', '2019-08-28 09:44:53'),
(14006, 'el', 'website', 'Successfully imported following websites', 'Εισήχθησαν επιτυχώς τα ακόλουθα website', '2019-08-28 09:44:53'),
(14007, 'el', 'website', 'Successfully sync sitemaps from webmaster tools', 'Ολοκληρώθηκε ο συγχρονισμός sitemaps για webmaster tools ', '2019-08-28 09:44:53'),
(14008, 'el', 'website', 'Website successfully added to webmaster tools', 'Το website προστέθηκε επιτυχώς στο webmaster tools ', '2019-08-28 09:44:53'),
(14009, 'el', 'webmaster', 'Click here to connect to your google account', 'Κλικ εδώ για να συνδεθείτε με το google account', '2019-01-29 11:39:00'),
(14010, 'el', 'webmaster', 'Error: Google api connection failed', 'Σφάλμα: Απέτυχε η σύνδεση με το Google api', '2019-01-29 11:39:00'),
(14011, 'el', 'sitemap', 'Downloaded', 'Ελήφθη', '2019-01-29 11:40:48'),
(14012, 'el', 'sitemap', 'Submitted', 'Καταχωρήθηκε', '2019-01-29 11:40:48'),
(14013, 'el', 'sitemap', 'Sync Sitemaps', 'Συγχρονισμός των Sitemaps', '2019-01-29 11:40:48'),
(14014, 'el', 'settings', 'Authorised redirect URI', 'Εξουσιοδοτημένο redirect URI', '2019-08-28 09:43:40'),
(14015, 'el', 'settings', 'click-to-get-google-api-client-id', 'Κλικ εδώ για να λάβετε Google API Client Id', '2019-08-28 09:43:40'),
(14016, 'el', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Ενεργοποίηση του Proxy για Google API', '2019-08-28 09:43:40'),
(14017, 'el', 'seotools', 'Edit Seo Tool', 'Επεξεργασία του Εργαλείου Seo', '2019-11-28 23:13:05'),
(14018, 'el', 'seotools', 'Sitemap Reports Summary', 'Σύνοψη Αναφορών Sitemap', '2019-11-28 23:13:05'),
(14019, 'el', 'panel', 'Report Generation Logs', 'Αναφορές Generation Logs ', '2019-08-28 09:42:17'),
(14020, 'el', 'panel', 'Sitemaps', 'Sitemaps', '2019-08-28 09:42:17'),
(14021, 'el', 'panel', 'Submit Sitemap', 'Καταχώρηση Sitemap', '2019-08-28 09:42:17'),
(14022, 'el', 'home', 'Overall Report Summary', 'Overall Σύνοψη Αναφοράς', '2019-11-28 23:25:11'),
(14023, 'en', 'seotools', 'Social Media Report Summary', 'Social Media Report Summary', '2019-03-28 15:34:51'),
(14024, 'en', 'seotools', 'Detailed Reports', 'Detailed Reports', '2019-03-28 15:34:51'),
(14025, 'en', 'label', 'Likes', 'Likes', '2019-03-28 15:34:51'),
(14026, 'en', 'label', 'Followers', 'Followers', '2019-03-28 15:34:51'),
(14027, 'en', 'common', 'Internal error occured', 'Internal error occured', '2019-03-28 15:34:51'),
(14028, 'en', 'socialmedia', 'Your social media link count already reached the limit', 'Your social media link count already reached the limit', '2019-03-28 15:34:51'),
(14029, 'en', 'subscription', 'Social Media Link Count', 'Social Media Link Count', '2019-03-28 15:34:51'),
(14030, 'en', 'socialmedia', 'New Social Media Link', 'New Social Media Link', '2019-03-28 15:34:51'),
(14031, 'en', 'socialmedia', 'Edit Social Media Link', 'Edit Social Media Link', '2019-03-28 15:34:51'),
(14032, 'en', 'common', 'Link', 'Link', '2019-03-28 15:34:51'),
(14033, 'en', 'seotools', 'Social Media Links', 'Social Media Links', '2019-03-28 15:34:51'),
(14034, 'en', 'seotools', 'sm-checker', 'Social Media Checker', '2019-03-28 15:34:51'),
(14035, 'en', 'settings', 'Send Email', 'Send Email', '2019-03-28 15:34:51'),
(14036, 'en', 'panel', 'Test Email Settings', 'Test Email Settings', '2019-03-28 15:34:51'),
(14037, 'fr', 'blog', 'Newer Posts', 'Nouvelles publications', '2019-03-28 16:08:36'),
(14038, 'fr', 'blog', 'Nothing Found', 'Aucun élément trouvé', '2019-03-28 16:08:36'),
(14039, 'fr', 'blog', 'NothingFound_text2', 'Désolé, aucun élément ne correspond aux critères de recherche. Merci d''essayer à nouveau avec des mots clés différents.', '2019-03-28 16:08:36'),
(14040, 'fr', 'blog', 'Older Posts', 'Anciennes publications', '2019-03-28 16:08:36'),
(14041, 'fr', 'common', 'Blog', 'Blog', '2020-02-14 16:05:11'),
(14042, 'fr', 'common', 'Errors', 'Erreurs', '2020-02-14 16:05:11'),
(14043, 'fr', 'common', 'Internal error occured', 'Une erreur interne s''est produite', '2020-02-14 16:05:11'),
(14044, 'fr', 'common', 'Link', 'Lien', '2020-02-14 16:05:11'),
(14045, 'fr', 'common', 'Pricing', 'Tarification', '2020-02-14 16:05:11'),
(14046, 'fr', 'common', 'Warnings', 'Avertissements', '2020-02-14 16:05:11'),
(14047, 'fr', 'label', 'Clicks', 'Clics', '2020-02-14 16:12:40'),
(14048, 'fr', 'label', 'Days', 'Jours', '2020-02-14 16:12:40'),
(14049, 'fr', 'label', 'Email Body', 'Corps du message', '2020-02-14 16:12:40'),
(14050, 'fr', 'label', 'Feature', 'Fonctionnalité', '2020-02-14 16:12:40'),
(14051, 'fr', 'label', 'Followers', 'Followers', '2020-02-14 16:12:40'),
(14052, 'fr', 'label', 'Impressions', 'Affichages', '2020-02-14 16:12:40'),
(14053, 'fr', 'label', 'Likes', 'Mentions J''aime', '2020-02-14 16:12:40'),
(14054, 'fr', 'label', 'Months', 'Mois', '2020-02-14 16:12:40'),
(14055, 'fr', 'login', 'user_not_activated_msg', 'Utilisateur non activé. Merci de vérifier vos mails pour l''activation', '2019-03-28 16:14:28'),
(14056, 'fr', 'login', 'Your account activated successfully', 'Votre compte a bien été activé', '2019-03-28 16:14:28'),
(14062, 'fr', 'panel', 'Connections', 'Connexions', '2020-02-14 16:14:52'),
(14063, 'fr', 'panel', 'Report Generation Logs', 'Log de la génération des rapports', '2020-02-14 16:14:52'),
(14064, 'fr', 'panel', 'Sitemaps', 'Sitemaps', '2020-02-14 16:14:52'),
(14065, 'fr', 'panel', 'Submit Sitemap', 'Envoyer le sitemap', '2020-02-14 16:14:52'),
(14066, 'fr', 'panel', 'Test Email Settings', 'Test des paramètres mail', '2020-02-14 16:14:52'),
(14067, 'fr', 'register', 'Registration', 'Inscription', '2019-03-28 18:34:46'),
(14068, 'fr', 'register', 'user_confirm_content_1', 'Erreur interne lors du traitement de la confirmation d''inscription', '2019-03-28 18:34:46'),
(14069, 'fr', 'register', 'user_confirm_mail_cont_1', 'Merci de votre inscription à ', '2019-03-28 18:34:46'),
(14070, 'fr', 'register', 'user_confirm_mail_cont_2', 'Merci de cliquer sur le lien suivant pour confirmer votre inscription', '2019-03-28 18:34:46'),
(14071, 'fr', 'seotools', 'Detailed Reports', 'Rapports détaillés', '2019-03-28 18:37:48'),
(14072, 'fr', 'seotools', 'Edit Seo Tool', 'Paramétrage Seo', '2019-03-28 18:37:48'),
(14073, 'fr', 'seotools', 'Graphical Reports', 'Rapports graphiques', '2019-03-28 18:37:48'),
(14074, 'fr', 'seotools', 'Keyword Search Reports', 'Rapports de recherche sur mot clé', '2019-03-28 18:37:48'),
(14075, 'fr', 'seotools', 'Keyword Search Summary', 'Résumé des recherches sur mot clé', '2019-03-28 18:37:48'),
(14076, 'fr', 'seotools', 'Quick Checker', 'Vérification rapide', '2019-03-28 18:37:48'),
(14077, 'fr', 'seotools', 'Sitemap Reports Summary', 'Résumé des rapports Sitemap', '2019-03-28 18:37:48'),
(14078, 'fr', 'seotools', 'sm-checker', 'Vérification réseaux sociaux', '2019-03-28 18:37:48'),
(14079, 'fr', 'seotools', 'Social Media Links', 'Liens réseaux sociaux', '2019-03-28 18:37:48'),
(14080, 'fr', 'seotools', 'Social Media Report Summary', 'Rapport réseaux sociaux', '2019-03-28 18:37:48'),
(14081, 'fr', 'seotools', 'webmaster-tools', 'Outils webmaster', '2019-03-28 18:37:48'),
(14082, 'fr', 'seotools', 'Website Search Reports', 'Rapports de recherche web', '2019-03-28 18:37:48'),
(14083, 'fr', 'seotools', 'Website Search Summary', 'Résumé des recherches web', '2019-03-28 18:37:48'),
(14084, 'fr', 'settings', 'Authorised redirect URI', 'URL autorisées pour la redirection', '2019-03-28 18:39:30'),
(14085, 'fr', 'settings', 'click-to-get-google-api-client-id', 'Cliquer ici pour obtenir l''ID Google API', '2019-03-28 18:39:30'),
(14086, 'fr', 'settings', 'Send Email', 'Envoyer le mail', '2019-03-28 18:39:30'),
(14087, 'fr', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Activer le proxy pour l''API Google', '2019-03-28 18:39:30'),
(14088, 'fr', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Code de suivi Google Analytics', '2019-03-28 18:39:30'),
(14089, 'fr', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'ID Google API', '2019-03-28 18:39:30'),
(14090, 'fr', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Secret Google API', '2019-03-28 18:39:30'),
(14091, 'fr', 'sitemap', 'Downloaded', 'Téléchargé', '2019-03-28 18:40:01'),
(14092, 'fr', 'sitemap', 'Submitted', 'Envoyé', '2019-03-28 18:40:01'),
(14093, 'fr', 'sitemap', 'Sync Sitemaps', 'Synchroniser les sitemaps', '2019-03-28 18:40:01'),
(14094, 'fr', 'socialmedia', 'Edit Social Media Link', 'Editer le lien réseaux sociaux', '2019-03-28 18:40:43'),
(14095, 'fr', 'socialmedia', 'New Social Media Link', 'Nouveau lien réseaux sociaux', '2019-03-28 18:40:43'),
(14096, 'fr', 'socialmedia', 'Your social media link count already reached the limit', 'Vous avez atteint la limite du nombre de liens réseaux sociaux', '2019-03-28 18:40:43'),
(14097, 'fr', 'subscription', 'Edit Email Template', 'Modifier le gabarit mail', '2019-03-28 18:42:59'),
(14098, 'fr', 'subscription', 'Email Template Manager', 'Gestion des gabarits mail', '2019-03-28 18:42:59'),
(14099, 'fr', 'subscription', 'enable_email_activation', 'Demander l''activation par mail', '2019-03-28 18:42:59'),
(14100, 'fr', 'subscription', 'free_trial_period', 'Période d''essai gratuite', '2019-03-28 18:42:59'),
(14101, 'fr', 'subscription', 'Social Media Link Count', 'Nombre de liens réseaux sociaux', '2019-03-28 18:42:59'),
(14102, 'fr', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Notification d''abonnement expiré (après)', '2019-03-28 18:42:59'),
(14103, 'fr', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Rappel de renouvellement d''abonnement 1 (avant)', '2019-03-28 18:42:59'),
(14104, 'fr', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Rappel de renouvellement d''abonnement 2 (avant)', '2019-03-28 18:42:59'),
(14105, 'fr', 'webmaster', 'Average Position', 'Position moyenne', '2019-03-28 18:43:38'),
(14106, 'fr', 'webmaster', 'Click here to connect to your google account', 'Cliquer ici pour connecter votre compte Google', '2019-03-28 18:43:38'),
(14107, 'fr', 'webmaster', 'Error: Google api connection failed', 'Erreur de connexion à l''API Google', '2019-03-28 18:43:38'),
(14108, 'fr', 'website', 'Add to Webmaster Tools', 'Ajouter aux outils webmaster', '2019-03-28 18:44:58'),
(14109, 'fr', 'website', 'Sitemap successfully added to webmaster tools', 'Sitemap ajouté aux outils webmaster', '2019-03-28 18:44:58'),
(14110, 'fr', 'website', 'Successfully deleted sitemap from webmaster tools', 'Sitemap supprimé des outils webmaster', '2019-03-28 18:44:58'),
(14111, 'fr', 'website', 'Successfully imported following websites', 'Import réussi des sites web suivants ', '2019-03-28 18:44:58'),
(14112, 'fr', 'website', 'Successfully sync sitemaps from webmaster tools', 'Synchronisation réussie depuis les outils webmaster', '2019-03-28 18:44:58'),
(14113, 'fr', 'website', 'Website successfully added to webmaster tools', 'Site web ajouté aux outils webmaster', '2019-03-28 18:44:58'),
(14114, 'ru', 'common', 'Internal error occured', 'Внутренняя ошибка', '2024-07-17 15:16:33'),
(14115, 'ru', 'common', 'Link', 'Ссылка', '2024-07-17 15:16:33'),
(14116, 'ru', 'label', 'Followers', 'Читатели', '2024-07-17 15:17:22'),
(14117, 'ru', 'label', 'Likes', 'Ссылки', '2024-07-17 15:17:22'),
(14118, 'ru', 'panel', 'Test Email Settings', 'Тестовые настройки Email', '2024-07-17 15:19:14'),
(14119, 'ru', 'seotools', 'Detailed Reports', 'Подробные отчеты', '2024-07-17 15:26:22'),
(14120, 'ru', 'seotools', 'sm-checker', 'Проверка социальных сетей', '2024-07-17 15:26:22'),
(14121, 'ru', 'seotools', 'Social Media Links', 'Ссылки на социальные сети', '2024-07-17 15:26:22'),
(14122, 'ru', 'seotools', 'Social Media Report Summary', 'Отчет о социальных сетях', '2024-07-17 15:26:22'),
(14123, 'ru', 'settings', 'Send Email', 'Отправить письмо', '2024-07-17 15:22:42'),
(14124, 'ru', 'socialmedia', 'Edit Social Media Link', 'Изменить ссылку в социальных сетях', '2024-07-17 15:23:19'),
(14125, 'ru', 'socialmedia', 'New Social Media Link', 'Новая ссылка на социальные сети', '2024-07-17 15:23:19'),
(14126, 'ru', 'socialmedia', 'Your social media link count already reached the limit', 'Количество ссылок в социальных сетях уже достигло предела', '2024-07-17 15:23:19'),
(14127, 'ru', 'subscription', 'Social Media Link Count', 'Количество ссылок в социальных сетях', '2024-07-17 15:24:41');
INSERT INTO `texts` VALUES
(14128, 'pt-br', 'blog', 'Newer Posts', 'Posts Novos', '2019-03-29 21:27:18'),
(14129, 'pt-br', 'blog', 'Nothing Found', 'Nada Encontrado', '2019-03-29 21:27:18'),
(14130, 'pt-br', 'blog', 'NothingFound_text2', 'Desculpe, não encontramos nada. Tentei novamente com palavras diferentes.', '2019-03-29 21:27:18'),
(14131, 'pt-br', 'blog', 'Older Posts', 'Posts Antigos', '2019-03-29 21:27:18'),
(14132, 'pt-br', 'website', 'Add to Webmaster Tools', 'Adicionar ao Webmaster Tools', '2019-03-29 21:28:26'),
(14133, 'pt-br', 'website', 'Sitemap successfully added to webmaster tools', 'Sitemap adicionado com sucesso ao webmaster tools', '2019-03-29 21:28:26'),
(14134, 'pt-br', 'website', 'Successfully deleted sitemap from webmaster tools', 'Sitemap deletado com sucesso ao webmaster tools', '2019-03-29 21:28:26'),
(14135, 'pt-br', 'website', 'Successfully imported following websites', 'Os seguintes sites foram importados com sucesso', '2019-03-29 21:28:26'),
(14136, 'pt-br', 'website', 'Successfully sync sitemaps from webmaster tools', 'Sitemap sincronizados com sucesso ao webmaster tools', '2019-03-29 21:28:26'),
(14137, 'pt-br', 'website', 'Website successfully added to webmaster tools', 'Site adicionado com sucesso ao webmaster tools', '2019-03-29 21:28:26'),
(14138, 'ja', 'blog', 'Newer Posts', '最近の投稿', '2019-04-01 13:40:08'),
(14139, 'ja', 'blog', 'Nothing Found', '見つかりませんでした', '2019-04-01 13:40:08'),
(14140, 'ja', 'blog', 'NothingFound_text2', '検索条件に合致する結果は見つかりませんでした。キーワードを変更して再度お試しください。', '2019-04-01 13:40:08'),
(14141, 'ja', 'blog', 'Older Posts', '過去の投稿', '2019-04-01 13:40:08'),
(14142, 'ja', 'common', 'Blog', 'ブログ', '2019-05-25 22:40:02'),
(14143, 'ja', 'common', 'Errors', 'エラー', '2019-05-25 22:40:02'),
(14144, 'ja', 'common', 'Internal error occured', '内部エラーが発生しました', '2019-05-25 22:40:02'),
(14145, 'ja', 'common', 'Link', 'リンク', '2019-05-25 22:40:02'),
(14146, 'ja', 'common', 'Warnings', '警告', '2019-05-25 22:40:02'),
(14153, 'ja', 'panel', 'Test Email Settings', 'テストメール設定', '2019-04-01 13:46:57'),
(14154, 'ja', 'seotools', 'Detailed Reports', '詳細レポート', '2019-04-01 13:49:13'),
(14155, 'ja', 'seotools', 'Edit Seo Tool', 'Seoツール編集', '2019-04-01 13:49:13'),
(14156, 'ja', 'seotools', 'Sitemap Reports Summary', 'サイトマップレポートサマリー', '2019-04-01 13:49:13'),
(14157, 'ja', 'seotools', 'sm-checker', 'ソーシャルメディアチェッカー', '2019-04-01 13:49:13'),
(14158, 'ja', 'seotools', 'Social Media Links', 'ソーシャルメディアリンク', '2019-04-01 13:49:13'),
(14159, 'ja', 'seotools', 'Social Media Report Summary', 'ソーシャルメディアレポートサマリー', '2019-04-01 13:49:13'),
(14160, 'ja', 'settings', 'Authorised redirect URI', '承認リダイレクトURI', '2019-04-01 13:52:17'),
(14161, 'ja', 'settings', 'click-to-get-google-api-client-id', 'クリックしてGoogle API クライアントIDを取得', '2019-04-01 13:52:17'),
(14162, 'ja', 'settings', 'Send Email', 'Eメールを送信', '2019-04-01 13:52:17'),
(14163, 'ja', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Google APIのプロキシを有効化', '2019-04-01 13:52:17'),
(14164, 'ja', 'sitemap', 'Downloaded', 'ダウンロード済み', '2019-04-01 13:52:58'),
(14165, 'ja', 'sitemap', 'Submitted', '送信済み', '2019-04-01 13:52:58'),
(14166, 'ja', 'sitemap', 'Sync Sitemaps', 'サイトマップを同期', '2019-04-01 13:52:58'),
(14167, 'ja', 'socialmedia', 'Edit Social Media Link', 'ソーシャルメディアリンクを編集', '2019-04-01 13:53:38'),
(14168, 'ja', 'socialmedia', 'New Social Media Link', '新規ソーシャルメディアリンク', '2019-04-01 13:53:38'),
(14169, 'ja', 'socialmedia', 'Your social media link count already reached the limit', 'ソーシャルメディアリンク数が上限に達しています', '2019-04-01 13:53:38'),
(14170, 'ja', 'subscription', 'Social Media Link Count', 'ソーシャルメディアリンク数', '2019-04-01 13:54:02'),
(14171, 'ja', 'webmaster', 'Click here to connect to your google account', 'クリックして自分のGoogleアカウントと連携', '2019-04-01 13:55:05'),
(14172, 'ja', 'webmaster', 'Error: Google api connection failed', 'エラー:Google API接続に失敗しました', '2019-04-01 13:55:05'),
(14173, 'ja', 'website', 'Add to Webmaster Tools', 'ウェブマスターツールに追加', '2019-04-01 13:57:11'),
(14174, 'ja', 'website', 'Sitemap successfully added to webmaster tools', 'サイトマップがウェブマスターツールに追加されました', '2019-04-01 13:57:11'),
(14175, 'ja', 'website', 'Successfully deleted sitemap from webmaster tools', 'サイトマップがウェブマスターツールから削除されました', '2019-04-01 13:57:11'),
(14176, 'ja', 'website', 'Successfully imported following websites', '次のウェブサイトがインポートされました', '2019-04-01 13:57:11'),
(14177, 'ja', 'website', 'Successfully sync sitemaps from webmaster tools', 'ウェブマスターツールからサイトマップを同期しました', '2019-04-01 13:57:11'),
(14178, 'ja', 'website', 'Website successfully added to webmaster tools', 'ウェブサイトがウェブマスターツールに追加されました', '2019-04-01 13:57:11'),
(14179, 'el', 'subscription', 'Social Media Link Count', 'Σύνδεσμοι Social Media', '2019-11-28 23:11:38'),
(14180, 'el', 'socialmedia', 'Edit Social Media Link', 'Επεξεργασία συνδέσμου Social Media', '2019-05-16 12:37:38'),
(14181, 'el', 'socialmedia', 'New Social Media Link', 'Νέος Σύνδεσμος Social Media', '2019-05-16 12:37:38'),
(14182, 'el', 'socialmedia', 'Your social media link count already reached the limit', 'Ο αριθμός συνδέσμων Social Media έφτασε στο όριο του', '2019-05-16 12:37:38'),
(14183, 'el', 'settings', 'Send Email', 'Αποστολή Email', '2019-08-28 09:43:40'),
(14184, 'el', 'seotools', 'Detailed Reports', 'Λεπτομερείς Αναφορές', '2019-11-28 23:13:05'),
(14185, 'el', 'seotools', 'sm-checker', 'Έλεγχος Social Media', '2019-11-28 23:13:05'),
(14186, 'el', 'seotools', 'Social Media Links', 'Σύνδεσμοι Social Media', '2019-11-28 23:13:05'),
(14187, 'el', 'seotools', 'Social Media Report Summary', 'Σύνοψη Αναφοράς Social Media', '2019-11-28 23:13:05'),
(14188, 'el', 'panel', 'Test Email Settings', 'Δοκιμή Ρυθμίσεων Email', '2019-08-28 09:42:17'),
(14189, 'el', 'label', 'Followers', 'Ακόλουθοι', '2019-11-28 23:22:10'),
(14190, 'el', 'label', 'Likes', 'Likes', '2019-11-28 23:22:10'),
(14191, 'el', 'common', 'Internal error occured', 'Προέκυψε Internal error', '2019-08-28 09:40:52'),
(14192, 'el', 'common', 'Link', 'Σύνδεσμος', '2019-08-28 09:40:52'),
(14193, 'en', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2019-05-23 23:26:43'),
(14194, 'en', 'label', 'Month', 'Month', '2019-05-23 23:26:43'),
(14195, 'en', 'common', 'Plugins', 'Plugins', '2019-05-23 23:26:43'),
(14196, 'en', 'common', 'Logout', 'Logout', '2019-05-23 23:26:43'),
(14197, 'en', 'common', 'Tools', 'Tools', '2019-08-06 10:09:56'),
(14198, 'ar', 'common', 'Blog', '', '2019-05-25 21:59:04'),
(14199, 'ar', 'common', 'Checked', '', '2019-05-25 21:59:04'),
(14200, 'ar', 'common', 'Debug', '', '2019-05-25 21:59:04'),
(14201, 'ar', 'common', 'Domain Authority', '', '2019-05-25 21:59:04'),
(14202, 'ar', 'common', 'Edit User Type', '', '2019-05-25 21:59:04'),
(14203, 'ar', 'common', 'Errors', '', '2019-05-25 21:59:04'),
(14204, 'ar', 'common', 'Internal error occured', '', '2019-05-25 21:59:04'),
(14205, 'ar', 'common', 'Keywords Count', '', '2019-05-25 21:59:04'),
(14206, 'ar', 'common', 'Link', '', '2019-05-25 21:59:04'),
(14207, 'ar', 'common', 'Logout', '', '2019-05-25 21:59:04'),
(14208, 'ar', 'common', 'MOZ Rank', '', '2019-05-25 21:59:04'),
(14209, 'ar', 'common', 'New User Type', '', '2019-05-25 21:59:04'),
(14210, 'ar', 'common', 'Page Authority', '', '2019-05-25 21:59:04'),
(14211, 'ar', 'common', 'Pagerank', '', '2019-05-25 21:59:04'),
(14212, 'ar', 'common', 'Plugins', 'الإضافات', '2019-05-25 21:59:04'),
(14213, 'ar', 'common', 'Powered by', '', '2019-05-25 21:59:04'),
(14214, 'ar', 'common', 'Price', '', '2019-05-25 21:59:04'),
(14215, 'ar', 'common', 'Pricing', '', '2019-05-25 21:59:04'),
(14216, 'ar', 'common', 'Sample CSV File', '', '2019-05-25 21:59:04'),
(14217, 'ar', 'common', 'Search Engine Count', '', '2019-05-25 21:59:04'),
(14218, 'ar', 'common', 'Server', '', '2019-05-25 21:59:04'),
(14219, 'ar', 'common', 'Thank you', '', '2019-05-25 21:59:04'),
(14220, 'ar', 'common', 'Tools', 'أدوات', '2019-05-25 21:59:04'),
(14221, 'ar', 'common', 'User Type', '', '2019-05-25 21:59:04'),
(14222, 'ar', 'common', 'Warnings', '', '2019-05-25 21:59:04'),
(14223, 'ar', 'common', 'Websites Count', '', '2019-05-25 21:59:04'),
(14224, 'bg', 'common', 'Blog', '', '2019-05-25 22:00:14'),
(14225, 'bg', 'common', 'Errors', '', '2019-05-25 22:00:14'),
(14226, 'bg', 'common', 'Internal error occured', '', '2019-05-25 22:00:14'),
(14227, 'bg', 'common', 'Link', '', '2019-05-25 22:00:14'),
(14228, 'bg', 'common', 'Logout', '', '2019-05-25 22:00:14'),
(14229, 'bg', 'common', 'Plugins', '', '2019-05-25 22:00:14'),
(14230, 'bg', 'common', 'Tools', 'Инструменти', '2019-05-25 22:00:14'),
(14231, 'bg', 'common', 'Warnings', '', '2019-05-25 22:00:14'),
(14232, 'zh', 'common', 'Blog', '', '2019-05-25 22:01:23'),
(14233, 'zh', 'common', 'Debug', '', '2019-05-25 22:01:23'),
(14234, 'zh', 'common', 'Domain Authority', '', '2019-05-25 22:01:23'),
(14235, 'zh', 'common', 'Edit User Type', '', '2019-05-25 22:01:23'),
(14236, 'zh', 'common', 'Errors', '', '2019-05-25 22:01:23'),
(14237, 'zh', 'common', 'Internal error occured', '', '2019-05-25 22:01:23'),
(14238, 'zh', 'common', 'Keywords Count', '', '2019-05-25 22:01:23'),
(14239, 'zh', 'common', 'Link', '', '2019-05-25 22:01:23'),
(14240, 'zh', 'common', 'Logout', '', '2019-05-25 22:01:23'),
(14241, 'zh', 'common', 'MOZ Rank', '', '2019-05-25 22:01:23'),
(14242, 'zh', 'common', 'New User Type', '', '2019-05-25 22:01:23'),
(14243, 'zh', 'common', 'Page Authority', '', '2019-05-25 22:01:23'),
(14244, 'zh', 'common', 'Pagerank', '', '2019-05-25 22:01:23'),
(14245, 'zh', 'common', 'Plugins', '插件', '2019-05-25 22:01:23'),
(14246, 'zh', 'common', 'Price', '', '2019-05-25 22:01:23'),
(14247, 'zh', 'common', 'Pricing', '', '2019-05-25 22:01:23'),
(14248, 'zh', 'common', 'Sample CSV File', '', '2019-05-25 22:01:23'),
(14249, 'zh', 'common', 'Search Engine Count', '', '2019-05-25 22:01:23'),
(14250, 'zh', 'common', 'Server', '', '2019-05-25 22:01:23'),
(14251, 'zh', 'common', 'Tools', '工具', '2019-05-25 22:01:23'),
(14252, 'zh', 'common', 'User Type', '', '2019-05-25 22:01:23'),
(14253, 'zh', 'common', 'Warnings', '', '2019-05-25 22:01:23'),
(14254, 'zh', 'common', 'Websites Count', '', '2019-05-25 22:01:23'),
(14255, 'cn', 'common', 'Blog', '', '2019-05-25 22:02:13'),
(14256, 'cn', 'common', 'Debug', '', '2019-05-25 22:02:13'),
(14257, 'cn', 'common', 'Domain Authority', '', '2019-05-25 22:02:13'),
(14258, 'cn', 'common', 'Edit User Type', '', '2019-05-25 22:02:13'),
(14259, 'cn', 'common', 'Errors', '', '2019-05-25 22:02:13'),
(14260, 'cn', 'common', 'Internal error occured', '', '2019-05-25 22:02:13'),
(14261, 'cn', 'common', 'Keywords Count', '', '2019-05-25 22:02:13'),
(14262, 'cn', 'common', 'Link', '', '2019-05-25 22:02:13'),
(14263, 'cn', 'common', 'Logout', '', '2019-05-25 22:02:13'),
(14264, 'cn', 'common', 'MOZ Rank', '', '2019-05-25 22:02:13'),
(14265, 'cn', 'common', 'New User Type', '', '2019-05-25 22:02:13'),
(14266, 'cn', 'common', 'Page Authority', '', '2019-05-25 22:02:13'),
(14267, 'cn', 'common', 'Pagerank', '', '2019-05-25 22:02:13'),
(14268, 'cn', 'common', 'Plugins', '插件', '2019-05-25 22:02:13'),
(14269, 'cn', 'common', 'Price', '', '2019-05-25 22:02:13'),
(14270, 'cn', 'common', 'Pricing', '', '2019-05-25 22:02:13'),
(14271, 'cn', 'common', 'Sample CSV File', '', '2019-05-25 22:02:13'),
(14272, 'cn', 'common', 'Search Engine Count', '', '2019-05-25 22:02:13'),
(14273, 'cn', 'common', 'Server', '', '2019-05-25 22:02:13'),
(14274, 'cn', 'common', 'Tools', '工具', '2019-05-25 22:02:13'),
(14275, 'cn', 'common', 'User Type', '', '2019-05-25 22:02:13'),
(14276, 'cn', 'common', 'Warnings', '', '2019-05-25 22:02:13'),
(14277, 'cn', 'common', 'Websites Count', '', '2019-05-25 22:02:13'),
(14278, 'cs', 'common', 'Blog', '', '2019-05-25 22:03:57'),
(14279, 'cs', 'common', 'Checked', '', '2019-05-25 22:03:57'),
(14280, 'cs', 'common', 'Dashboard', '', '2019-05-25 22:03:57'),
(14281, 'cs', 'common', 'Debug', '', '2019-05-25 22:03:57'),
(14282, 'cs', 'common', 'Domain Authority', '', '2019-05-25 22:03:57'),
(14283, 'cs', 'common', 'Edit User Type', '', '2019-05-25 22:03:57'),
(14284, 'cs', 'common', 'Errors', '', '2019-05-25 22:03:57'),
(14285, 'cs', 'common', 'Hello', '', '2019-05-25 22:03:57'),
(14286, 'cs', 'common', 'Home', '', '2019-05-25 22:03:57'),
(14287, 'cs', 'common', 'Internal error occured', '', '2019-05-25 22:03:57'),
(14288, 'cs', 'common', 'Keywords Count', '', '2019-05-25 22:03:57'),
(14289, 'cs', 'common', 'Link', '', '2019-05-25 22:03:57'),
(14290, 'cs', 'common', 'Logout', '', '2019-05-25 22:03:57'),
(14291, 'cs', 'common', 'MOZ Rank', '', '2019-05-25 22:03:57'),
(14292, 'cs', 'common', 'New User Type', '', '2019-05-25 22:03:57'),
(14293, 'cs', 'common', 'Page Authority', '', '2019-05-25 22:03:57'),
(14294, 'cs', 'common', 'Pagerank', '', '2019-05-25 22:03:57'),
(14295, 'cs', 'common', 'Plugins', 'Pluginy', '2019-05-25 22:03:57'),
(14296, 'cs', 'common', 'Powered by', '', '2019-05-25 22:03:57'),
(14297, 'cs', 'common', 'Price', '', '2019-05-25 22:03:57'),
(14298, 'cs', 'common', 'Pricing', '', '2019-05-25 22:03:57'),
(14299, 'cs', 'common', 'Sample CSV File', '', '2019-05-25 22:03:57'),
(14300, 'cs', 'common', 'Search Engine Count', '', '2019-05-25 22:03:57'),
(14301, 'cs', 'common', 'Server', '', '2019-05-25 22:03:57'),
(14302, 'cs', 'common', 'Thank you', '', '2019-05-25 22:03:57'),
(14303, 'cs', 'common', 'Tools', 'Nástroje', '2019-05-25 22:03:57'),
(14304, 'cs', 'common', 'User Type', '', '2019-05-25 22:03:57'),
(14305, 'cs', 'common', 'Warnings', '', '2019-05-25 22:03:57'),
(14306, 'cs', 'common', 'Websites Count', '', '2019-05-25 22:03:57'),
(14307, 'da', 'common', 'Blog', '', '2019-05-25 22:04:54'),
(14308, 'da', 'common', 'Debug', '', '2019-05-25 22:04:54'),
(14309, 'da', 'common', 'Domain Authority', '', '2019-05-25 22:04:54'),
(14310, 'da', 'common', 'Edit User Type', '', '2019-05-25 22:04:54'),
(14311, 'da', 'common', 'Errors', '', '2019-05-25 22:04:54'),
(14312, 'da', 'common', 'Internal error occured', '', '2019-05-25 22:04:54'),
(14313, 'da', 'common', 'Keywords Count', '', '2019-05-25 22:04:54'),
(14314, 'da', 'common', 'Link', '', '2019-05-25 22:04:54'),
(14315, 'da', 'common', 'Logout', '', '2019-05-25 22:04:54'),
(14316, 'da', 'common', 'MOZ Rank', '', '2019-05-25 22:04:54'),
(14317, 'da', 'common', 'New User Type', '', '2019-05-25 22:04:54'),
(14318, 'da', 'common', 'Page Authority', '', '2019-05-25 22:04:54'),
(14319, 'da', 'common', 'Pagerank', '', '2019-05-25 22:04:54'),
(14320, 'da', 'common', 'Plugins', '', '2019-05-25 22:04:54'),
(14321, 'da', 'common', 'Price', '', '2019-05-25 22:04:54'),
(14322, 'da', 'common', 'Pricing', '', '2019-05-25 22:04:54'),
(14323, 'da', 'common', 'Sample CSV File', '', '2019-05-25 22:04:54'),
(14324, 'da', 'common', 'Search Engine Count', '', '2019-05-25 22:04:54'),
(14325, 'da', 'common', 'Server', '', '2019-05-25 22:04:54'),
(14326, 'da', 'common', 'Tools', 'Værktøj', '2019-05-25 22:04:54'),
(14327, 'da', 'common', 'User Type', '', '2019-05-25 22:04:54'),
(14328, 'da', 'common', 'Warnings', '', '2019-05-25 22:04:54'),
(14329, 'da', 'common', 'Websites Count', '', '2019-05-25 22:04:54'),
(14330, 'nl', 'common', 'Blog', '', '2019-05-25 22:06:08'),
(14331, 'nl', 'common', 'Debug', '', '2019-05-25 22:06:08'),
(14332, 'nl', 'common', 'Domain Authority', '', '2019-05-25 22:06:08'),
(14333, 'nl', 'common', 'Edit User Type', '', '2019-05-25 22:06:08'),
(14334, 'nl', 'common', 'Errors', '', '2019-05-25 22:06:08'),
(14335, 'nl', 'common', 'Internal error occured', '', '2019-05-25 22:06:08'),
(14336, 'nl', 'common', 'Keywords Count', '', '2019-05-25 22:06:08'),
(14337, 'nl', 'common', 'Link', '', '2019-05-25 22:06:08'),
(14338, 'nl', 'common', 'Logout', '', '2019-05-25 22:06:08'),
(14339, 'nl', 'common', 'MOZ Rank', '', '2019-05-25 22:06:08'),
(14340, 'nl', 'common', 'New User Type', '', '2019-05-25 22:06:08'),
(14341, 'nl', 'common', 'Page Authority', '', '2019-05-25 22:06:08'),
(14342, 'nl', 'common', 'Pagerank', '', '2019-05-25 22:06:08'),
(14343, 'nl', 'common', 'Plugins', '', '2019-05-25 22:06:08'),
(14344, 'nl', 'common', 'Price', '', '2019-05-25 22:06:08'),
(14345, 'nl', 'common', 'Pricing', '', '2019-05-25 22:06:08'),
(14346, 'nl', 'common', 'Sample CSV File', '', '2019-05-25 22:06:08'),
(14347, 'nl', 'common', 'Search Engine Count', '', '2019-05-25 22:06:08'),
(14348, 'nl', 'common', 'Server', '', '2019-05-25 22:06:08'),
(14349, 'nl', 'common', 'Tools', 'Hulpmiddelen', '2019-05-25 22:06:08'),
(14350, 'nl', 'common', 'User Type', '', '2019-05-25 22:06:08'),
(14351, 'nl', 'common', 'Warnings', '', '2019-05-25 22:06:08'),
(14352, 'nl', 'common', 'Websites Count', '', '2019-05-25 22:06:08'),
(14353, 'fr', 'common', 'Logout', 'Déconnexion', '2020-02-14 16:05:11'),
(14354, 'fr', 'common', 'Plugins', 'Plugins', '2020-02-14 16:05:11'),
(14355, 'fr', 'common', 'Tools', 'Outils', '2020-02-14 16:05:11'),
(14356, 'de', 'common', 'Blog', 'Blog', '2021-06-15 01:46:19'),
(14357, 'de', 'common', 'Domain Authority', 'Domain Authority (DA)', '2021-06-15 01:46:19'),
(14358, 'de', 'common', 'Errors', 'Fehler', '2021-06-15 01:46:19'),
(14359, 'de', 'common', 'Internal error occured', 'Interner Fehler', '2021-06-15 01:46:19'),
(14360, 'de', 'common', 'Link', 'Link', '2021-06-15 01:46:19'),
(14361, 'de', 'common', 'Logout', 'Abmelden', '2021-06-15 01:46:19'),
(14362, 'de', 'common', 'MOZ Rank', 'MOZ Rank', '2021-06-15 01:46:19'),
(14363, 'de', 'common', 'Page Authority', 'Page Authority (PA)', '2021-06-15 01:46:19'),
(14364, 'de', 'common', 'Pagerank', 'Pagerank', '2021-06-15 01:46:19'),
(14365, 'de', 'common', 'Plugins', 'Erweiterungen', '2021-06-15 01:46:19'),
(14366, 'de', 'common', 'Pricing', 'Kosten', '2021-06-15 01:46:19'),
(14367, 'de', 'common', 'Search Engine Count', 'Anzahl Suchmaschinen', '2021-06-15 01:46:19'),
(14368, 'de', 'common', 'Server', 'Server', '2021-06-15 01:46:19'),
(14369, 'de', 'common', 'Tools', 'Werkzeuge', '2021-06-15 01:46:19'),
(14370, 'de', 'common', 'Warnings', 'Warnungen', '2021-06-15 01:46:19'),
(14371, 'el', 'common', 'Logout', 'Αποσύνδεση', '2019-08-28 09:40:52'),
(14372, 'el', 'common', 'Plugins', 'Επεκτάσεις', '2019-08-28 09:40:52'),
(14373, 'el', 'common', 'Tools', 'Εργαλεία', '2019-08-28 09:40:52'),
(14374, 'he', 'common', 'Blog', '', '2019-05-25 22:14:01'),
(14375, 'he', 'common', 'Checked', '', '2019-05-25 22:14:01'),
(14376, 'he', 'common', 'Dashboard', '', '2019-05-25 22:14:01'),
(14377, 'he', 'common', 'Debug', '', '2019-05-25 22:14:01'),
(14378, 'he', 'common', 'Domain Authority', '', '2019-05-25 22:14:01'),
(14379, 'he', 'common', 'Edit User Type', '', '2019-05-25 22:14:01'),
(14380, 'he', 'common', 'Errors', '', '2019-05-25 22:14:01'),
(14381, 'he', 'common', 'Hello', '', '2019-05-25 22:14:01'),
(14382, 'he', 'common', 'Home', '', '2019-05-25 22:14:01'),
(14383, 'he', 'common', 'Internal error occured', '', '2019-05-25 22:14:01'),
(14384, 'he', 'common', 'Keywords Count', '', '2019-05-25 22:14:01'),
(14385, 'he', 'common', 'Link', '', '2019-05-25 22:14:01'),
(14386, 'he', 'common', 'Logout', '', '2019-05-25 22:14:01'),
(14387, 'he', 'common', 'MOZ Rank', '', '2019-05-25 22:14:01'),
(14388, 'he', 'common', 'New User Type', '', '2019-05-25 22:14:01'),
(14389, 'he', 'common', 'Page Authority', '', '2019-05-25 22:14:01'),
(14390, 'he', 'common', 'Pagerank', '', '2019-05-25 22:14:01'),
(14391, 'he', 'common', 'Plugins', 'תוספים', '2019-05-25 22:14:01'),
(14392, 'he', 'common', 'Powered by', '', '2019-05-25 22:14:01'),
(14393, 'he', 'common', 'Price', '', '2019-05-25 22:14:01'),
(14394, 'he', 'common', 'Pricing', '', '2019-05-25 22:14:01'),
(14395, 'he', 'common', 'Sample CSV File', '', '2019-05-25 22:14:01'),
(14396, 'he', 'common', 'Search Engine Count', '', '2019-05-25 22:14:01'),
(14397, 'he', 'common', 'Server', '', '2019-05-25 22:14:01'),
(14398, 'he', 'common', 'Thank you', '', '2019-05-25 22:14:01'),
(14399, 'he', 'common', 'Tools', 'כלים', '2019-05-25 22:14:01'),
(14400, 'he', 'common', 'User Type', '', '2019-05-25 22:14:01'),
(14401, 'he', 'common', 'Warnings', '', '2019-05-25 22:14:01'),
(14402, 'he', 'common', 'Websites Count', '', '2019-05-25 22:14:01'),
(14403, 'hu', 'common', 'Blog', '', '2019-05-25 22:15:43'),
(14404, 'hu', 'common', 'Checked', '', '2019-05-25 22:15:43'),
(14405, 'hu', 'common', 'Debug', '', '2019-05-25 22:15:43'),
(14406, 'hu', 'common', 'Domain Authority', '', '2019-05-25 22:15:43'),
(14407, 'hu', 'common', 'Edit User Type', '', '2019-05-25 22:15:43'),
(14408, 'hu', 'common', 'Errors', '', '2019-05-25 22:15:43'),
(14409, 'hu', 'common', 'Internal error occured', '', '2019-05-25 22:15:43'),
(14410, 'hu', 'common', 'Keywords Count', '', '2019-05-25 22:15:43'),
(14411, 'hu', 'common', 'Link', '', '2019-05-25 22:15:43'),
(14412, 'hu', 'common', 'Logout', '', '2019-05-25 22:15:43'),
(14413, 'hu', 'common', 'MOZ Rank', '', '2019-05-25 22:15:43'),
(14414, 'hu', 'common', 'New User Type', '', '2019-05-25 22:15:43'),
(14415, 'hu', 'common', 'Page Authority', '', '2019-05-25 22:15:43'),
(14416, 'hu', 'common', 'Pagerank', '', '2019-05-25 22:15:43'),
(14417, 'hu', 'common', 'Plugins', 'Dugó', '2019-05-25 22:15:43'),
(14418, 'hu', 'common', 'Price', '', '2019-05-25 22:15:43'),
(14419, 'hu', 'common', 'Pricing', '', '2019-05-25 22:15:43'),
(14420, 'hu', 'common', 'Sample CSV File', '', '2019-05-25 22:15:43'),
(14421, 'hu', 'common', 'Search Engine Count', '', '2019-05-25 22:15:43'),
(14422, 'hu', 'common', 'Server', '', '2019-05-25 22:15:43'),
(14423, 'hu', 'common', 'Thank you', '', '2019-05-25 22:15:43'),
(14424, 'hu', 'common', 'Tools', 'Eszközök', '2019-05-25 22:15:43'),
(14425, 'hu', 'common', 'User Type', '', '2019-05-25 22:15:43'),
(14426, 'hu', 'common', 'Warnings', '', '2019-05-25 22:15:43'),
(14427, 'hu', 'common', 'Websites Count', '', '2019-05-25 22:15:43'),
(14428, 'id', 'common', 'Blog', '', '2019-05-25 22:35:48'),
(14429, 'id', 'common', 'Errors', '', '2019-05-25 22:35:48'),
(14430, 'id', 'common', 'Internal error occured', '', '2019-05-25 22:35:48'),
(14431, 'id', 'common', 'Link', '', '2019-05-25 22:35:48'),
(14432, 'id', 'common', 'Logout', '', '2019-05-25 22:35:48'),
(14433, 'id', 'common', 'Plugins', 'Plugin\r\n', '2019-05-25 22:35:48'),
(14434, 'id', 'common', 'Pricing', '', '2019-05-25 22:35:48'),
(14435, 'id', 'common', 'Tools', 'Alat', '2019-05-25 22:35:48'),
(14436, 'id', 'common', 'Warnings', '', '2019-05-25 22:35:48'),
(14437, 'it', 'common', 'Blog', 'Blog', '2022-07-11 15:16:48'),
(14438, 'it', 'common', 'Errors', 'Errori', '2022-07-11 15:16:48'),
(14439, 'it', 'common', 'Internal error occured', 'Si è presentato un errore', '2022-07-11 15:16:48'),
(14440, 'it', 'common', 'Link', 'Link', '2022-07-11 15:16:48'),
(14441, 'it', 'common', 'Logout', 'Sclollegati', '2022-07-11 15:16:48'),
(14442, 'it', 'common', 'Plugins', 'Plugins', '2022-07-11 15:16:48'),
(14443, 'it', 'common', 'Tools', 'Utensili', '2022-07-11 15:16:48'),
(14444, 'it', 'common', 'Warnings', 'Attenzione', '2022-07-11 15:16:48'),
(14445, 'ja', 'common', 'Logout', '', '2019-05-25 22:40:02'),
(14446, 'ja', 'common', 'Plugins', 'プラグイン', '2019-05-25 22:40:02'),
(14447, 'ja', 'common', 'Tools', '道具', '2019-05-25 22:40:02'),
(14448, 'lt', 'common', 'Blog', '', '2019-05-25 22:41:16'),
(14449, 'lt', 'common', 'Debug', '', '2019-05-25 22:41:16'),
(14450, 'lt', 'common', 'Domain Authority', '', '2019-05-25 22:41:16'),
(14451, 'lt', 'common', 'Edit User Type', '', '2019-05-25 22:41:16'),
(14452, 'lt', 'common', 'Errors', '', '2019-05-25 22:41:16'),
(14453, 'lt', 'common', 'Internal error occured', '', '2019-05-25 22:41:16'),
(14454, 'lt', 'common', 'Keywords Count', '', '2019-05-25 22:41:16'),
(14455, 'lt', 'common', 'Link', '', '2019-05-25 22:41:16'),
(14456, 'lt', 'common', 'Logout', '', '2019-05-25 22:41:16'),
(14457, 'lt', 'common', 'MOZ Rank', '', '2019-05-25 22:41:16'),
(14458, 'lt', 'common', 'New User Type', '', '2019-05-25 22:41:16'),
(14459, 'lt', 'common', 'Page Authority', '', '2019-05-25 22:41:16'),
(14460, 'lt', 'common', 'Pagerank', '', '2019-05-25 22:41:16'),
(14461, 'lt', 'common', 'Plugins', 'Įskiepiai', '2019-05-25 22:41:16'),
(14462, 'lt', 'common', 'Price', '', '2019-05-25 22:41:16'),
(14463, 'lt', 'common', 'Pricing', '', '2019-05-25 22:41:16'),
(14464, 'lt', 'common', 'Sample CSV File', '', '2019-05-25 22:41:16'),
(14465, 'lt', 'common', 'Search Engine Count', '', '2019-05-25 22:41:16'),
(14466, 'lt', 'common', 'Server', '', '2019-05-25 22:41:16'),
(14467, 'lt', 'common', 'Tools', 'Įrankiai', '2019-05-25 22:41:16'),
(14468, 'lt', 'common', 'User Type', '', '2019-05-25 22:41:16'),
(14469, 'lt', 'common', 'Warnings', '', '2019-05-25 22:41:16'),
(14470, 'lt', 'common', 'Websites Count', '', '2019-05-25 22:41:16'),
(14471, 'pl', 'common', 'Blog', '', '2019-05-25 22:43:11'),
(14472, 'pl', 'common', 'Debug', '', '2019-05-25 22:43:11'),
(14473, 'pl', 'common', 'Domain Authority', '', '2019-05-25 22:43:11'),
(14474, 'pl', 'common', 'Edit User Type', '', '2019-05-25 22:43:11'),
(14475, 'pl', 'common', 'Errors', '', '2019-05-25 22:43:11'),
(14476, 'pl', 'common', 'Internal error occured', '', '2019-05-25 22:43:11'),
(14477, 'pl', 'common', 'Keywords Count', '', '2019-05-25 22:43:11'),
(14478, 'pl', 'common', 'Link', '', '2019-05-25 22:43:11'),
(14479, 'pl', 'common', 'Logout', '', '2019-05-25 22:43:11'),
(14480, 'pl', 'common', 'MOZ Rank', '', '2019-05-25 22:43:11'),
(14481, 'pl', 'common', 'New User Type', '', '2019-05-25 22:43:11'),
(14482, 'pl', 'common', 'Page Authority', '', '2019-05-25 22:43:11'),
(14483, 'pl', 'common', 'Pagerank', '', '2019-05-25 22:43:11'),
(14484, 'pl', 'common', 'Plugins', 'Wtyczki', '2019-05-25 22:43:11'),
(14485, 'pl', 'common', 'Price', '', '2019-05-25 22:43:11'),
(14486, 'pl', 'common', 'Pricing', '', '2019-05-25 22:43:11'),
(14487, 'pl', 'common', 'Sample CSV File', '', '2019-05-25 22:43:11'),
(14488, 'pl', 'common', 'Search Engine Count', '', '2019-05-25 22:43:11'),
(14489, 'pl', 'common', 'Server', '', '2019-05-25 22:43:11'),
(14490, 'pl', 'common', 'Tools', 'Przybory', '2019-05-25 22:43:11'),
(14491, 'pl', 'common', 'User Type', '', '2019-05-25 22:43:11'),
(14492, 'pl', 'common', 'Warnings', '', '2019-05-25 22:43:11'),
(14493, 'pl', 'common', 'Websites Count', '', '2019-05-25 22:43:11'),
(14494, 'pt', 'common', 'Blog', '', '2019-05-25 22:43:55'),
(14495, 'pt', 'common', 'Errors', '', '2019-05-25 22:43:55'),
(14496, 'pt', 'common', 'Internal error occured', '', '2019-05-25 22:43:55'),
(14497, 'pt', 'common', 'Link', '', '2019-05-25 22:43:55'),
(14498, 'pt', 'common', 'Logout', '', '2019-05-25 22:43:55'),
(14499, 'pt', 'common', 'Plugins', '', '2019-05-25 22:43:55'),
(14500, 'pt', 'common', 'Pricing', '', '2019-05-25 22:43:55'),
(14501, 'pt', 'common', 'Server', '', '2019-05-25 22:43:55'),
(14502, 'pt', 'common', 'Tools', 'Ferramentas', '2019-05-25 22:43:55'),
(14503, 'pt', 'common', 'Warnings', '', '2019-05-25 22:43:55'),
(14504, 'ro', 'common', 'Blog', '', '2019-05-25 22:44:58'),
(14505, 'ro', 'common', 'Checked', '', '2019-05-25 22:44:58'),
(14506, 'ro', 'common', 'Dashboard', '', '2019-05-25 22:44:58'),
(14507, 'ro', 'common', 'Debug', '', '2019-05-25 22:44:58'),
(14508, 'ro', 'common', 'Domain Authority', '', '2019-05-25 22:44:58'),
(14509, 'ro', 'common', 'Edit User Type', '', '2019-05-25 22:44:58'),
(14510, 'ro', 'common', 'Errors', '', '2019-05-25 22:44:58'),
(14511, 'ro', 'common', 'Home', '', '2019-05-25 22:44:58'),
(14512, 'ro', 'common', 'Internal error occured', '', '2019-05-25 22:44:58'),
(14513, 'ro', 'common', 'Keywords Count', '', '2019-05-25 22:44:58'),
(14514, 'ro', 'common', 'Link', '', '2019-05-25 22:44:58'),
(14515, 'ro', 'common', 'Logout', '', '2019-05-25 22:44:58'),
(14516, 'ro', 'common', 'MOZ Rank', '', '2019-05-25 22:44:58'),
(14517, 'ro', 'common', 'New User Type', '', '2019-05-25 22:44:58'),
(14518, 'ro', 'common', 'Page Authority', '', '2019-05-25 22:44:58'),
(14519, 'ro', 'common', 'Pagerank', '', '2019-05-25 22:44:58'),
(14520, 'ro', 'common', 'Plugins', 'Plugin-uri', '2019-05-25 22:44:58'),
(14521, 'ro', 'common', 'Powered by', '', '2019-05-25 22:44:58'),
(14522, 'ro', 'common', 'Price', '', '2019-05-25 22:44:58'),
(14523, 'ro', 'common', 'Pricing', '', '2019-05-25 22:44:58'),
(14524, 'ro', 'common', 'Sample CSV File', '', '2019-05-25 22:44:58'),
(14525, 'ro', 'common', 'Search Engine Count', '', '2019-05-25 22:44:58'),
(14526, 'ro', 'common', 'Server', '', '2019-05-25 22:44:58'),
(14527, 'ro', 'common', 'Thank you', '', '2019-05-25 22:44:58'),
(14528, 'ro', 'common', 'Tools', 'Unelte', '2019-05-25 22:44:58'),
(14529, 'ro', 'common', 'User Type', '', '2019-05-25 22:44:58'),
(14530, 'ro', 'common', 'Warnings', '', '2019-05-25 22:44:58'),
(14531, 'ro', 'common', 'Websites Count', '', '2019-05-25 22:44:58'),
(14532, 'ru', 'common', 'Logout', 'Выход', '2024-07-17 15:16:33'),
(14533, 'ru', 'common', 'Plugins', 'Плагины', '2024-07-17 15:16:33'),
(14534, 'ru', 'common', 'Tools', 'инструменты', '2024-07-17 15:16:33'),
(14535, 'sk', 'common', 'Blog', '', '2019-05-25 22:47:21'),
(14536, 'sk', 'common', 'Checked', '', '2019-05-25 22:47:21'),
(14537, 'sk', 'common', 'Debug', '', '2019-05-25 22:47:21'),
(14538, 'sk', 'common', 'Domain Authority', '', '2019-05-25 22:47:21'),
(14539, 'sk', 'common', 'Edit User Type', '', '2019-05-25 22:47:21'),
(14540, 'sk', 'common', 'Errors', '', '2019-05-25 22:47:21'),
(14541, 'sk', 'common', 'Internal error occured', '', '2019-05-25 22:47:21'),
(14542, 'sk', 'common', 'Keywords Count', '', '2019-05-25 22:47:21'),
(14543, 'sk', 'common', 'Link', '', '2019-05-25 22:47:21'),
(14544, 'sk', 'common', 'Logout', '', '2019-05-25 22:47:21'),
(14545, 'sk', 'common', 'MOZ Rank', '', '2019-05-25 22:47:21'),
(14546, 'sk', 'common', 'New User Type', '', '2019-05-25 22:47:21'),
(14547, 'sk', 'common', 'Page Authority', '', '2019-05-25 22:47:21'),
(14548, 'sk', 'common', 'Pagerank', '', '2019-05-25 22:47:21'),
(14549, 'sk', 'common', 'Plugins', '', '2019-05-25 22:47:21'),
(14550, 'sk', 'common', 'Price', '', '2019-05-25 22:47:21'),
(14551, 'sk', 'common', 'Pricing', '', '2019-05-25 22:47:21'),
(14552, 'sk', 'common', 'Sample CSV File', '', '2019-05-25 22:47:21'),
(14553, 'sk', 'common', 'Search Engine Count', '', '2019-05-25 22:47:21'),
(14554, 'sk', 'common', 'Server', '', '2019-05-25 22:47:21'),
(14555, 'sk', 'common', 'Thank you', '', '2019-05-25 22:47:21'),
(14556, 'sk', 'common', 'Tools', 'náradie', '2019-05-25 22:47:21'),
(14557, 'sk', 'common', 'User Type', '', '2019-05-25 22:47:21'),
(14558, 'sk', 'common', 'Warnings', '', '2019-05-25 22:47:21'),
(14559, 'sk', 'common', 'Websites Count', '', '2019-05-25 22:47:21'),
(14560, 'sl', 'common', 'Blog', '', '2019-05-25 22:48:22'),
(14561, 'sl', 'common', 'Checked', '', '2019-05-25 22:48:22'),
(14562, 'sl', 'common', 'Dashboard', '', '2019-05-25 22:48:22'),
(14563, 'sl', 'common', 'Debug', '', '2019-05-25 22:48:22'),
(14564, 'sl', 'common', 'Domain Authority', '', '2019-05-25 22:48:22'),
(14565, 'sl', 'common', 'Edit User Type', '', '2019-05-25 22:48:22'),
(14566, 'sl', 'common', 'Errors', '', '2019-05-25 22:48:22'),
(14567, 'sl', 'common', 'Home', '', '2019-05-25 22:48:22'),
(14568, 'sl', 'common', 'Internal error occured', '', '2019-05-25 22:48:22'),
(14569, 'sl', 'common', 'Keywords Count', '', '2019-05-25 22:48:22'),
(14570, 'sl', 'common', 'Link', '', '2019-05-25 22:48:22'),
(14571, 'sl', 'common', 'Logout', '', '2019-05-25 22:48:22'),
(14572, 'sl', 'common', 'MOZ Rank', '', '2019-05-25 22:48:22'),
(14573, 'sl', 'common', 'New User Type', '', '2019-05-25 22:48:22'),
(14574, 'sl', 'common', 'Page Authority', '', '2019-05-25 22:48:22'),
(14575, 'sl', 'common', 'Pagerank', '', '2019-05-25 22:48:22'),
(14576, 'sl', 'common', 'Plugins', 'Vtičniki', '2019-05-25 22:48:22'),
(14577, 'sl', 'common', 'Powered by', '', '2019-05-25 22:48:22'),
(14578, 'sl', 'common', 'Price', '', '2019-05-25 22:48:22'),
(14579, 'sl', 'common', 'Pricing', '', '2019-05-25 22:48:22'),
(14580, 'sl', 'common', 'Sample CSV File', '', '2019-05-25 22:48:22'),
(14581, 'sl', 'common', 'Search Engine Count', '', '2019-05-25 22:48:22'),
(14582, 'sl', 'common', 'Server', '', '2019-05-25 22:48:22'),
(14583, 'sl', 'common', 'Thank you', '', '2019-05-25 22:48:22'),
(14584, 'sl', 'common', 'Tools', 'Orodja', '2019-05-25 22:48:22'),
(14585, 'sl', 'common', 'User Type', '', '2019-05-25 22:48:22'),
(14586, 'sl', 'common', 'Warnings', '', '2019-05-25 22:48:22'),
(14587, 'sl', 'common', 'Websites Count', '', '2019-05-25 22:48:22'),
(14588, 'es', 'common', 'Blog', '', '2019-05-25 22:49:48'),
(14589, 'es', 'common', 'Checked', '', '2019-05-25 22:49:48'),
(14590, 'es', 'common', 'Dashboard', '', '2019-05-25 22:49:48'),
(14591, 'es', 'common', 'Debug', '', '2019-05-25 22:49:48'),
(14592, 'es', 'common', 'Domain Authority', '', '2019-05-25 22:49:48'),
(14593, 'es', 'common', 'Edit User Type', '', '2019-05-25 22:49:48'),
(14594, 'es', 'common', 'Errors', '', '2019-05-25 22:49:48'),
(14595, 'es', 'common', 'Home', '', '2019-05-25 22:49:48'),
(14596, 'es', 'common', 'Internal error occured', '', '2019-05-25 22:49:48'),
(14597, 'es', 'common', 'Keywords Count', '', '2019-05-25 22:49:48'),
(14598, 'es', 'common', 'Link', '', '2019-05-25 22:49:48'),
(14599, 'es', 'common', 'Logout', '', '2019-05-25 22:49:48'),
(14600, 'es', 'common', 'MOZ Rank', '', '2019-05-25 22:49:48'),
(14601, 'es', 'common', 'New User Type', '', '2019-05-25 22:49:48'),
(14602, 'es', 'common', 'Page Authority', '', '2019-05-25 22:49:48'),
(14603, 'es', 'common', 'Pagerank', '', '2019-05-25 22:49:48'),
(14604, 'es', 'common', 'Plugins', 'Complementos', '2019-05-25 22:49:48'),
(14605, 'es', 'common', 'Powered by', '', '2019-05-25 22:49:48'),
(14606, 'es', 'common', 'Price', '', '2019-05-25 22:49:48'),
(14607, 'es', 'common', 'Pricing', '', '2019-05-25 22:49:48'),
(14608, 'es', 'common', 'Sample CSV File', '', '2019-05-25 22:49:48'),
(14609, 'es', 'common', 'Search Engine Count', '', '2019-05-25 22:49:48'),
(14610, 'es', 'common', 'Server', '', '2019-05-25 22:49:48'),
(14611, 'es', 'common', 'Thank you', '', '2019-05-25 22:49:48'),
(14612, 'es', 'common', 'Tools', 'Herramientas', '2019-05-25 22:49:48'),
(14613, 'es', 'common', 'User Type', '', '2019-05-25 22:49:48'),
(14614, 'es', 'common', 'Warnings', '', '2019-05-25 22:49:48'),
(14615, 'es', 'common', 'Websites Count', '', '2019-05-25 22:49:48'),
(14616, 'sv', 'common', 'Blog', '', '2019-05-25 22:50:40'),
(14617, 'sv', 'common', 'Debug', '', '2019-05-25 22:50:40'),
(14618, 'sv', 'common', 'Domain Authority', '', '2019-05-25 22:50:40'),
(14619, 'sv', 'common', 'Edit User Type', '', '2019-05-25 22:50:40'),
(14620, 'sv', 'common', 'Errors', '', '2019-05-25 22:50:40'),
(14621, 'sv', 'common', 'Internal error occured', '', '2019-05-25 22:50:40'),
(14622, 'sv', 'common', 'Keywords Count', '', '2019-05-25 22:50:40'),
(14623, 'sv', 'common', 'Link', '', '2019-05-25 22:50:40'),
(14624, 'sv', 'common', 'Logout', '', '2019-05-25 22:50:40'),
(14625, 'sv', 'common', 'MOZ Rank', '', '2019-05-25 22:50:40'),
(14626, 'sv', 'common', 'New User Type', '', '2019-05-25 22:50:40'),
(14627, 'sv', 'common', 'Page Authority', '', '2019-05-25 22:50:40'),
(14628, 'sv', 'common', 'Pagerank', '', '2019-05-25 22:50:40'),
(14629, 'sv', 'common', 'Plugins', '', '2019-05-25 22:50:40'),
(14630, 'sv', 'common', 'Price', '', '2019-05-25 22:50:40'),
(14631, 'sv', 'common', 'Pricing', '', '2019-05-25 22:50:40'),
(14632, 'sv', 'common', 'Sample CSV File', '', '2019-05-25 22:50:40'),
(14633, 'sv', 'common', 'Search Engine Count', '', '2019-05-25 22:50:40'),
(14634, 'sv', 'common', 'Server', '', '2019-05-25 22:50:40'),
(14635, 'sv', 'common', 'Tools', 'Verktyg', '2019-05-25 22:50:40'),
(14636, 'sv', 'common', 'User Type', '', '2019-05-25 22:50:40'),
(14637, 'sv', 'common', 'Warnings', '', '2019-05-25 22:50:40'),
(14638, 'sv', 'common', 'Websites Count', '', '2019-05-25 22:50:40'),
(14639, 'tr', 'common', 'Blog', '', '2019-05-25 22:52:20'),
(14640, 'tr', 'common', 'Errors', '', '2019-05-25 22:52:20'),
(14641, 'tr', 'common', 'Internal error occured', '', '2019-05-25 22:52:20'),
(14642, 'tr', 'common', 'Link', '', '2019-05-25 22:52:20'),
(14643, 'tr', 'common', 'Logout', '', '2019-05-25 22:52:20'),
(14644, 'tr', 'common', 'Plugins', 'eklentiler', '2019-05-25 22:52:20'),
(14645, 'tr', 'common', 'Pricing', '', '2019-05-25 22:52:20'),
(14646, 'tr', 'common', 'Search Engine Count', '', '2019-05-25 22:52:20'),
(14647, 'tr', 'common', 'Server', '', '2019-05-25 22:52:20'),
(14648, 'tr', 'common', 'Tools', 'Araçlar', '2019-05-25 22:52:20'),
(14649, 'tr', 'common', 'Warnings', '', '2019-05-25 22:52:20'),
(14650, 'vn', 'common', 'Blog', '', '2019-05-25 22:54:57'),
(14651, 'vn', 'common', 'Debug', '', '2019-05-25 22:54:57'),
(14652, 'vn', 'common', 'Domain Authority', '', '2019-05-25 22:54:57'),
(14653, 'vn', 'common', 'Edit User Type', '', '2019-05-25 22:54:57'),
(14654, 'vn', 'common', 'Errors', '', '2019-05-25 22:54:57'),
(14655, 'vn', 'common', 'Internal error occured', '', '2019-05-25 22:54:57'),
(14656, 'vn', 'common', 'Keywords Count', '', '2019-05-25 22:54:57'),
(14657, 'vn', 'common', 'Link', '', '2019-05-25 22:54:57'),
(14658, 'vn', 'common', 'Logout', '', '2019-05-25 22:54:57'),
(14659, 'vn', 'common', 'MOZ Rank', '', '2019-05-25 22:54:57'),
(14660, 'vn', 'common', 'New User Type', '', '2019-05-25 22:54:57'),
(14661, 'vn', 'common', 'Page Authority', '', '2019-05-25 22:54:57'),
(14662, 'vn', 'common', 'Pagerank', '', '2019-05-25 22:54:57'),
(14663, 'vn', 'common', 'Plugins', 'bổ sung', '2019-05-25 22:54:57'),
(14664, 'vn', 'common', 'Price', '', '2019-05-25 22:54:57'),
(14665, 'vn', 'common', 'Pricing', '', '2019-05-25 22:54:57'),
(14666, 'vn', 'common', 'Sample CSV File', '', '2019-05-25 22:54:57'),
(14667, 'vn', 'common', 'Search Engine Count', '', '2019-05-25 22:54:57'),
(14668, 'vn', 'common', 'Server', '', '2019-05-25 22:54:57'),
(14669, 'vn', 'common', 'Tools', 'Công cụ', '2019-05-25 22:54:57'),
(14670, 'vn', 'common', 'User Type', '', '2019-05-25 22:54:57'),
(14671, 'vn', 'common', 'Warnings', '', '2019-05-25 22:54:57'),
(14672, 'vn', 'common', 'Websites Count', '', '2019-05-25 22:54:57'),
(14673, 'pt-br', 'common', 'Blog', 'Blog', '2019-07-30 00:26:27'),
(14674, 'pt-br', 'common', 'Errors', 'Erros', '2019-07-30 00:26:27'),
(14675, 'pt-br', 'common', 'Internal error occured', 'Erro interno', '2019-07-30 00:26:27'),
(14676, 'pt-br', 'common', 'Link', 'Link', '2019-07-30 00:26:27'),
(14677, 'pt-br', 'common', 'Logout', 'Logout', '2019-07-30 00:26:27'),
(14678, 'pt-br', 'common', 'Plugins', 'Plugins', '2019-07-30 00:26:27'),
(14679, 'pt-br', 'common', 'Tools', 'Ferramentas', '2019-07-30 00:26:27'),
(14680, 'pt-br', 'common', 'Warnings', 'Avisos', '2019-07-30 00:26:27'),
(14681, 'en', 'seotools', 'Website Analytics Summary', 'Website Analytics Summary', '2019-08-26 21:32:43'),
(14682, 'en', 'common', 'Source', 'Source', '2019-08-26 21:32:43'),
(14683, 'en', 'analytics', 'view_id_not_found_error', 'Error: Analytics view ID is not set for website. Edit website and update view ID.', '2019-08-26 21:32:43'),
(14684, 'en', 'seotools', 'web-analytics', 'Website Analytics', '2019-08-26 21:32:43'),
(14685, 'en', 'website', 'Google Analytics View Id', 'Google Analytics View Id', '2019-08-26 21:32:43'),
(14686, 'en', 'website', 'Click here to get Google Analytics View Id', 'Click here to get Google Analytics View Id', '2019-08-26 21:32:43'),
(14687, 'en', 'analytics', 'Users', 'Users', '2019-08-26 21:32:43'),
(14688, 'en', 'analytics', 'New Users', 'New Users', '2019-08-26 21:32:43'),
(14689, 'en', 'analytics', 'Sessions', 'Sessions', '2019-08-26 21:32:43'),
(14690, 'en', 'analytics', 'Bounce Rate', 'Bounce Rate', '2019-08-26 21:32:43'),
(14691, 'en', 'analytics', 'Avg. Session Duration', 'Avg. Session Duration', '2019-08-26 21:32:43'),
(14692, 'en', 'analytics', 'Goal Completions', 'Goal Completions', '2019-08-26 21:32:43'),
(14693, 'en', 'common', 'General', 'General', '2019-08-26 21:32:43'),
(14694, 'en', 'reports', 'Reports Generated Successfully', 'Reports Generated Successfully', '2019-08-26 21:32:43'),
(14695, 'en', 'panel', 'Alerts', 'Alerts', '2019-08-26 21:32:43'),
(14696, 'en', 'panel', 'Website Access Manager', 'Website Access Manager', '2019-08-26 21:32:43'),
(14697, 'el', 'analytics', 'Avg_ Session Duration', 'Μέση Διάρκεια Σύνδεσης', '2019-12-05 00:10:51'),
(14698, 'el', 'analytics', 'Bounce Rate', 'Bounce Rate', '2019-12-05 00:10:51'),
(14699, 'el', 'analytics', 'Goal Completions', 'Επίτευξη Στόχων', '2019-12-05 00:10:51'),
(14700, 'el', 'analytics', 'New Users', 'Νέοι Χρήστες', '2019-12-05 00:10:51'),
(14701, 'el', 'analytics', 'Sessions', 'Sessions', '2019-12-05 00:10:51'),
(14702, 'el', 'analytics', 'Users', 'Χρήστες', '2019-12-05 00:10:51'),
(14703, 'el', 'analytics', 'view_id_not_found_error', 'Σφάλμα: Το ID προβολής Analytics δεν έχει καθοριστεί για την ιστοσελίδα. Επεξεργαστείτε την ιστοσελίδα και ενημερώστε το ID προβολής.', '2019-12-05 00:10:51'),
(14715, 'ru', 'analytics', 'Avg_ Session Duration', 'Ср. Длительность сессии', '2024-07-17 15:16:01'),
(14704, 'el', 'common', 'General', 'Γενικά', '2019-08-28 09:40:52'),
(14705, 'el', 'common', 'Source', 'Πηγή', '2019-08-28 09:40:52'),
(14706, 'el', 'label', 'Month', 'Μήνας', '2019-11-28 23:22:10'),
(14707, 'el', 'panel', 'Alerts', 'Alerts', '2019-08-28 09:42:17'),
(14708, 'el', 'panel', 'Website Access Manager', 'Διαχείριση Πρόσβασης Website', '2019-08-28 09:42:17'),
(14709, 'el', 'reports', 'Reports Generated Successfully', 'Οι Αναφορές Δημιουργήθηκαν Επιτυχώς', '2019-08-28 09:42:55'),
(14710, 'el', 'seotools', 'web-analytics', 'Website Analytics ', '2019-11-28 23:13:05'),
(14711, 'el', 'seotools', 'Website Analytics Summary', 'Σύνοψη Website Analytics', '2019-11-28 23:13:05'),
(14712, 'el', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2019-08-28 09:43:40'),
(14714, 'el', 'website', 'Google Analytics View Id', 'Google Analytics View Id', '2019-08-28 09:44:53'),
(14716, 'ru', 'analytics', 'Bounce Rate', 'Показатель отказов', '2024-07-17 15:16:01'),
(14717, 'ru', 'analytics', 'Goal Completions', 'Достигнутые цели', '2024-07-17 15:16:01'),
(14718, 'ru', 'analytics', 'New Users', 'Новый пользователь', '2024-07-17 15:16:01'),
(14719, 'ru', 'analytics', 'Sessions', 'Сессии', '2024-07-17 15:16:01'),
(14720, 'ru', 'analytics', 'Users', 'Пользователи', '2024-07-17 15:16:01'),
(14721, 'ru', 'analytics', 'view_id_not_found_error', 'Ошибка: ID Google Analytics не установлен для сайта. Отредактируйте сайт и обновите ID.', '2024-07-17 15:16:01'),
(14722, 'ru', 'common', 'General', 'Общее', '2024-07-17 15:16:33'),
(14723, 'ru', 'common', 'Source', 'Источник', '2024-07-17 15:16:33'),
(14724, 'ru', 'label', 'Month', 'Месяц', '2024-07-17 15:17:22'),
(14725, 'ru', 'panel', 'Alerts', 'Оповещения', '2024-07-17 15:19:14'),
(14726, 'ru', 'panel', 'Website Access Manager', 'Диспетчер доступа к сайту', '2024-07-17 15:19:14'),
(14727, 'ru', 'reports', 'Reports Generated Successfully', 'Отчеты успешно созданы', '2019-08-28 13:07:50'),
(14728, 'ru', 'seotools', 'web-analytics', 'Аналитика сайта', '2024-07-17 15:26:22'),
(14729, 'ru', 'seotools', 'Website Analytics Summary', 'Аналитика сайта', '2024-07-17 15:26:22'),
(14730, 'ru', 'settings', 'SP_MAIL_ENCRYPTION', 'Шифрование почты', '2024-07-17 15:22:42'),
(14732, 'ru', 'website', 'Google Analytics View Id', 'Google Analytics View Id', '2019-08-28 13:09:29'),
(14733, 'fr', 'analytics', 'Avg_ Session Duration', 'Durée moyenne de session', '2020-02-29 15:13:23'),
(14734, 'fr', 'analytics', 'Bounce Rate', 'Taux de rebond', '2020-02-29 15:13:23'),
(14735, 'fr', 'analytics', 'Goal Completions', 'Réalisation objectif', '2020-02-29 15:13:23'),
(14736, 'fr', 'analytics', 'New Users', 'Nouveaux utilisateurs', '2020-02-29 15:13:23'),
(14737, 'fr', 'analytics', 'Sessions', 'Sessions', '2020-02-29 15:13:23'),
(14738, 'fr', 'analytics', 'Users', 'Utilisateurs', '2020-02-29 15:13:23'),
(14739, 'fr', 'analytics', 'view_id_not_found_error', 'Erreur: L''ID Analytics n''est pas configurée pour ce site web. Editez le site et mettez à jour l''ID.', '2020-02-29 15:13:23'),
(14740, 'fr', 'common', 'General', 'Général', '2020-02-14 16:05:11'),
(14741, 'fr', 'common', 'Source', 'Source', '2020-02-14 16:05:11'),
(14742, 'en', 'label', 'Year', 'Year', '2019-11-27 12:10:59'),
(14743, 'en', 'label', 'Week', 'Week', '2019-11-27 12:10:59'),
(14744, 'en', 'label', 'Day', 'Day', '2019-11-27 12:10:59'),
(14745, 'en', 'label', 'Hour', 'Hour', '2019-11-27 12:10:59'),
(14746, 'en', 'label', 'Minute', 'Minute', '2019-11-27 12:10:59'),
(14747, 'en', 'label', 'Second', 'Second', '2019-11-27 12:10:59'),
(14748, 'en', 'label', 'Ago', 'Ago', '2019-11-27 12:10:59'),
(14749, 'en', 'label', 'Just Now', 'Just Now', '2019-11-27 12:10:59'),
(14750, 'en', 'seotools', 'Review Report Summary', 'Review Report Summary', '2019-11-27 12:10:59'),
(14751, 'en', 'subscription', 'Review Link Count', 'Review Link Count', '2019-11-27 12:10:59'),
(14752, 'en', 'review', 'New Review Link', 'New Review Link', '2019-11-27 12:10:59'),
(14753, 'en', 'review', 'Edit Review Link', 'Edit Review Link', '2019-11-27 12:10:59'),
(14754, 'en', 'seotools', 'Review Links', 'Review Links', '2019-11-27 12:10:59'),
(14755, 'en', 'seotools', 'review-manager', 'Review Manager', '2019-11-27 12:10:59'),
(14756, 'en', 'label', 'Rating', 'Rating', '2019-11-27 12:10:59'),
(14757, 'en', 'label', 'Reviews', 'Reviews', '2019-11-27 12:10:59'),
(14758, 'en', 'home', 'Page Overview Report', 'Page Overview Report', '2019-11-27 12:10:59'),
(14759, 'en', 'home', 'Keyword Overview Report', 'Keyword Overview Report', '2019-11-27 12:10:59'),
(14760, 'en', 'label', 'Overview', 'Overview', '2019-11-27 12:10:59'),
(14761, 'ru', 'home', 'Keyword Overview Report', 'Обзорный отчет по ключевым словам', '2019-11-28 18:27:27'),
(14762, 'ru', 'home', 'Page Overview Report', 'Обзор страницы отчета', '2019-11-28 18:27:27'),
(14763, 'ru', 'label', 'Ago', 'Тому назад', '2024-07-17 15:17:22'),
(14764, 'ru', 'label', 'Day', 'День', '2024-07-17 15:17:22'),
(14765, 'ru', 'label', 'Hour', 'Час', '2024-07-17 15:17:22'),
(14766, 'ru', 'label', 'Just Now', 'Прямо сейчас', '2024-07-17 15:17:22'),
(14767, 'ru', 'label', 'Minute', 'Минута', '2024-07-17 15:17:22'),
(14768, 'ru', 'label', 'Overview', 'Обзор', '2024-07-17 15:17:22'),
(14769, 'ru', 'label', 'Rating', 'Рейтинг', '2024-07-17 15:17:22'),
(14770, 'ru', 'label', 'Reviews', 'Отзывы', '2024-07-17 15:17:22'),
(14771, 'ru', 'label', 'Second', 'Секунда', '2024-07-17 15:17:22'),
(14772, 'ru', 'label', 'Week', 'Неделя', '2024-07-17 15:17:22'),
(14773, 'ru', 'label', 'Year', 'Год', '2024-07-17 15:17:22'),
(14774, 'ru', 'review', 'Edit Review Link', 'Изменить ссылку на отзыв', '2019-11-28 18:29:43'),
(14775, 'ru', 'review', 'New Review Link', 'Новая ссылка на отзыв', '2019-11-28 18:29:43'),
(14776, 'ru', 'seotools', 'Review Links', 'Ссылка на отзыв', '2024-07-17 15:26:22'),
(14777, 'ru', 'seotools', 'Review Report Summary', 'Обзор отчета', '2024-07-17 15:26:22'),
(14778, 'ru', 'seotools', 'review-manager', 'Управление обзорами', '2024-07-17 15:26:22'),
(14779, 'ru', 'subscription', 'Review Link Count', 'Количество ссылок на отзывы', '2024-07-17 15:24:41'),
(14780, 'el', 'subscription', 'Review Link Count', 'Αριθμός Συνδέσμων κριτικών', '2019-11-28 23:11:38'),
(14781, 'el', 'seotools', 'Review Links', 'Σύνδεσμοι Κριτικών', '2019-11-28 23:13:05'),
(14782, 'el', 'seotools', 'Review Report Summary', 'Σύνοψη Αναφορών Κριτικών', '2019-11-28 23:13:05'),
(14783, 'el', 'seotools', 'review-manager', 'Διαχειριστής Κριτικών', '2019-11-28 23:13:05'),
(14784, 'el', 'review', 'Edit Review Link', 'Επεξεργασία Συνδέσμου Κριτικής', '2019-11-28 23:13:41'),
(14785, 'el', 'review', 'New Review Link', 'Νέος Σύνδεσμος Κριτικής', '2019-11-28 23:13:41'),
(14786, 'el', 'label', 'Ago', 'Πριν', '2019-11-28 23:22:10'),
(14787, 'el', 'label', 'Day', 'Ημέρα', '2019-11-28 23:22:10'),
(14788, 'el', 'label', 'Hour', 'Ώρα', '2019-11-28 23:22:10'),
(14789, 'el', 'label', 'Just Now', 'Μόλις Τώρα', '2019-11-28 23:22:10'),
(14790, 'el', 'label', 'Minute', 'Λεπτό', '2019-11-28 23:22:10'),
(14791, 'el', 'label', 'Overview', 'Επισκόπηση', '2019-11-28 23:22:10'),
(14792, 'el', 'label', 'Rating', '', '2019-11-28 23:22:10'),
(14793, 'el', 'label', 'Reviews', 'Κριτικές', '2019-11-28 23:22:10'),
(14794, 'el', 'label', 'Second', 'Δευτερόλεπτο', '2019-11-28 23:22:10'),
(14795, 'el', 'label', 'Week', 'Εβδομάδα', '2019-11-28 23:22:10'),
(14796, 'el', 'label', 'Year', 'Έτος', '2019-11-28 23:22:10'),
(14797, 'el', 'home', 'Keyword Overview Report', 'Αναφορά Σύνοψης Λέξεων Κλειδιών', '2019-11-28 23:25:11'),
(14798, 'el', 'home', 'Page Overview Report', 'Αναφορά Σύνοψης Σελίδας', '2019-11-28 23:25:11'),
(14799, 'el', 'analytics', 'Avg. Session Duration', 'Μέση Διάρκεια Σύνδεσης', '2019-08-26 21:32:43'),
(14800, 'en', 'panel', 'Mail Settings', 'Mail Settings', '2019-12-22 23:31:56'),
(14801, 'en', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2019-12-22 23:31:56'),
(14802, 'en', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for reports generation.\r\nThis action may cause captcha in search engine results.', '2019-12-22 23:31:56'),
(14803, 'en', 'panel', 'Sync Search Engines', 'Sync Search Engines', '2019-12-22 23:31:56');
INSERT INTO `texts` VALUES
(14804, 'fr', 'home', 'Keyword Overview Report', 'Rapport de présentation de mots clé', '2020-02-14 16:07:37'),
(14805, 'fr', 'home', 'Page Overview Report', 'Rapport de présentation de page', '2020-02-14 16:07:37'),
(14806, 'fr', 'label', 'Ago', '(depuis)', '2020-02-14 16:12:40'),
(14807, 'fr', 'label', 'Day', 'Jour', '2020-02-14 16:12:40'),
(14808, 'fr', 'label', 'Hour', 'Heure', '2020-02-14 16:12:40'),
(14809, 'fr', 'label', 'Just Now', 'Maintenant', '2020-02-14 16:12:40'),
(14810, 'fr', 'label', 'Minute', 'Minute', '2020-02-14 16:12:40'),
(14811, 'fr', 'label', 'Month', 'Mois', '2020-02-14 16:12:40'),
(14812, 'fr', 'label', 'Overview', 'Aperçu', '2020-02-14 16:12:40'),
(14813, 'fr', 'label', 'Rating', 'Evaluation', '2020-02-14 16:12:40'),
(14814, 'fr', 'label', 'Reviews', 'Avis', '2020-02-14 16:12:40'),
(14815, 'fr', 'label', 'Second', 'Seconde', '2020-02-14 16:12:40'),
(14816, 'fr', 'label', 'Week', 'Semaine', '2020-02-14 16:12:40'),
(14817, 'fr', 'label', 'Year', 'Année', '2020-02-14 16:12:40'),
(14818, 'fr', 'panel', 'Alerts', 'Alertes', '2020-02-14 16:14:52'),
(14819, 'fr', 'panel', 'Mail Settings', 'Paramètres Mail', '2020-02-14 16:14:52'),
(14820, 'fr', 'panel', 'Sync Search Engines', 'Synchro moteurs de recherche', '2020-02-14 16:14:52'),
(14821, 'fr', 'panel', 'Website Access Manager', 'Gestion des accès aux sites web', '2020-02-14 16:14:52'),
(14822, 'fr', 'analytics', 'Avg. Session Duration', 'Durée moyenne de session', '2019-08-26 21:32:43'),
(14823, 'en', 'socialmedia', 'Click here to get LinkedIn Company Id', 'Click here to get LinkedIn Company Id', '2020-07-31 01:17:58'),
(14824, 'en', 'socialmedia', 'Company Id', 'Company Id', '2020-07-31 01:17:58'),
(14825, 'en', 'log', 'Mail Log Details', 'Mail Log Details', '2020-07-31 01:17:58'),
(14826, 'en', 'label', 'From', 'From', '2020-07-31 01:17:58'),
(14827, 'en', 'panel', 'Current Time', 'Current Time', '2020-07-31 01:17:58'),
(14828, 'en', 'panel', 'Mail Log Manager', 'Mail Log Manager', '2020-07-31 01:17:58'),
(14829, 'en', 'subscription', 'Access Type', 'Access Type', '2020-07-31 01:17:58'),
(14830, 'en', 'label', 'Write', 'Write', '2020-07-31 01:17:58'),
(14831, 'en', 'label', 'Read', 'Read', '2020-07-31 01:17:58'),
(14832, 'en', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification failed', '2020-09-30 08:42:43'),
(14833, 'en', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2020-09-30 08:42:43'),
(14834, 'en', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2020-09-30 08:42:43'),
(14835, 'en', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2020-09-30 08:42:43'),
(14836, 'sr', 'analytics', 'Avg_ Session Duration', 'Prosecno trajanje sesije', '2020-11-24 22:36:57'),
(14837, 'sr', 'analytics', 'Bounce Rate', 'Stopa posete samo jedne stranice', '2020-11-24 22:36:57'),
(14838, 'sr', 'analytics', 'Goal Completions', 'Ostvareni ciljevi', '2020-11-24 22:36:57'),
(14839, 'sr', 'analytics', 'New Users', 'Novi korisnik', '2020-11-24 22:36:57'),
(14840, 'sr', 'analytics', 'Sessions', 'Sesije', '2020-11-24 22:36:57'),
(14841, 'sr', 'analytics', 'Users', 'Korisnici', '2020-11-24 22:36:57'),
(14842, 'sr', 'analytics', 'view_id_not_found_error', 'Greška: ID prikaz analitike nije podešen za sajt Izmenite sajt i ažurirajte ID prikaza.', '2020-11-24 22:36:57'),
(14843, 'sr', 'api', 'API Guide', 'API Vodič', '2020-11-14 23:11:38'),
(14844, 'sr', 'api', 'API Url', 'API Url', '2020-11-14 23:11:38'),
(14845, 'sr', 'backlink', 'clickproceedbacklink', 'Unesite URL adresu <b> Jednu po redu </b>. Kliknite na <b> Nastavi </b> da biste proverili linkove.', '2020-11-14 23:13:07'),
(14846, 'sr', 'backlink', 'Saved backlink results of', 'Sačuvani rezultati linkova od', '2020-11-14 23:13:07'),
(14847, 'sr', 'blog', 'Newer Posts', 'Noviji postovi', '2020-11-14 23:14:38'),
(14848, 'sr', 'blog', 'Nothing Found', 'Ništa nije pronađeno', '2020-11-14 23:14:38'),
(14849, 'sr', 'blog', 'NothingFound_text2', 'Žao nam je, ali ništa se ne podudara sa vašim kriterijumima pretrage. Pokušajte ponovo sa različitim ključnim rečima.', '2020-11-14 23:14:38'),
(14850, 'sr', 'blog', 'Older Posts', 'Stariji postovi', '2020-11-14 23:14:38'),
(14851, 'sr', 'button', 'Cancel', 'Otkaži', '2020-11-14 23:16:30'),
(14852, 'sr', 'button', 'Check Status', 'Proverite status', '2020-11-14 23:16:30'),
(14853, 'sr', 'button', 'Proceed', 'Nastavite', '2020-11-14 23:16:30'),
(14854, 'sr', 'button', 'Reload', 'Refrešujte', '2020-11-14 23:16:30'),
(14855, 'sr', 'button', 'Search', 'Pretraga', '2020-11-14 23:16:30'),
(14856, 'sr', 'button', 'Show Details', 'Prikažite detalje', '2020-11-14 23:16:30'),
(14857, 'sr', 'button', 'Show Records', 'Prikažite sačuvano', '2020-11-14 23:16:30'),
(14858, 'sr', 'button', 'Skip', 'Preskočite', '2020-11-14 23:16:30'),
(14859, 'sr', 'button', 'Submit', 'Pošaljite', '2020-11-14 23:16:30'),
(14860, 'sr', 'common', 'Action', 'Akcija', '2020-11-14 23:39:22'),
(14861, 'sr', 'common', 'Activate', 'Aktivirajte', '2020-11-14 23:39:22'),
(14862, 'sr', 'common', 'Active', 'Aktivno', '2020-11-14 23:39:22'),
(14863, 'sr', 'common', 'Admin Panel', 'Panel Administratora', '2020-11-14 23:39:22'),
(14864, 'sr', 'common', 'Alexa Rank', 'Alexa Rank', '2020-11-14 23:39:22'),
(14865, 'sr', 'common', 'All', 'Svi', '2020-11-14 23:39:22'),
(14866, 'sr', 'common', 'Blog', 'Blog', '2020-11-14 23:39:22'),
(14867, 'sr', 'common', 'Category', 'Kategorija', '2020-11-14 23:39:22'),
(14868, 'sr', 'common', 'Checked', 'Provereno', '2020-11-14 23:39:22'),
(14869, 'sr', 'common', 'contact', 'Kontakt', '2020-11-14 23:39:22'),
(14870, 'sr', 'common', 'copyright', 'Copiright © [godina] www.seopanel.org Sva prava zadržana', '2020-11-14 23:39:22'),
(14871, 'sr', 'common', 'Country', 'Zemlja', '2020-11-14 23:39:22'),
(14872, 'sr', 'common', 'Crawl Meta Data', 'Popisivanje meta podataka', '2020-11-14 23:39:22'),
(14873, 'sr', 'common', 'Dashboard', 'Komandna tabla', '2020-11-14 23:39:22'),
(14874, 'sr', 'common', 'Date', 'Datum', '2020-11-14 23:39:22'),
(14875, 'sr', 'common', 'Debug', 'Otklanjanje grešaka\r\n', '2020-11-14 23:39:22'),
(14876, 'sr', 'common', 'Delete', 'Obrišite', '2020-11-14 23:39:22'),
(14877, 'sr', 'common', 'Details', 'Detalji', '2020-11-14 23:39:22'),
(14878, 'sr', 'common', 'Directory', 'Direktorijum', '2020-11-14 23:39:22'),
(14879, 'sr', 'common', 'Domain Authority', 'Autoritet Domena', '2020-11-14 23:39:22'),
(14880, 'sr', 'common', 'Donate', 'Donirajte', '2020-11-14 23:39:22'),
(14881, 'sr', 'common', 'Edit', 'Izmenite', '2020-11-14 23:39:22'),
(14882, 'sr', 'common', 'Edit User Type', 'Izmenite tip korisnika', '2020-11-14 23:39:22'),
(14883, 'sr', 'common', 'Entry cannot be blank', 'Unos ne može biti prazan', '2020-11-14 23:39:22'),
(14884, 'sr', 'common', 'entrynotvalid', 'Uneti unos nije dobar', '2020-11-14 23:39:22'),
(14885, 'sr', 'common', 'Errors', 'Greške', '2020-11-14 23:39:22'),
(14886, 'sr', 'common', 'failed', 'nije uspelo', '2020-11-14 23:39:22'),
(14887, 'sr', 'common', 'forum', 'Forum', '2020-11-14 23:39:22'),
(14888, 'sr', 'common', 'Found', 'Pronađeno', '2020-11-14 23:39:22'),
(14889, 'sr', 'common', 'General', 'Generalno', '2020-11-14 23:39:22'),
(14890, 'sr', 'common', 'Google Pagerank', 'Google Rang', '2020-11-14 23:39:22'),
(14891, 'sr', 'common', 'Hello', 'Zdravo', '2020-11-14 23:39:22'),
(14892, 'sr', 'common', 'help', 'Pomoć', '2020-11-14 23:39:22'),
(14893, 'sr', 'common', 'hidenews', 'Sakrij vesti sa Seo panela', '2020-11-14 23:39:22'),
(14894, 'sr', 'common', 'Home', 'Početna', '2020-11-14 23:39:22'),
(14895, 'sr', 'common', 'Id', 'Id', '2020-11-14 23:39:22'),
(14896, 'sr', 'common', 'Inactivate', 'Deaktivirajte', '2020-11-14 23:39:22'),
(14897, 'sr', 'common', 'Inactive', 'Neaktivno', '2020-11-14 23:39:22'),
(14898, 'sr', 'common', 'Internal error occured', 'Došlo je do interne greške', '2020-11-14 23:39:22'),
(14899, 'sr', 'common', 'Invalid characters', 'Nevažeći karakteri', '2020-11-14 23:39:22'),
(14900, 'sr', 'common', 'Invalid code entered', 'Unesen je nevažeći kod', '2020-11-14 23:39:22'),
(14901, 'sr', 'common', 'Invalid email address entered', 'Unesena je nevažeća email adresa', '2020-11-14 23:39:22'),
(14902, 'sr', 'common', 'Invalid value', 'Pogrešna vrednost', '2020-11-14 23:39:22'),
(14903, 'sr', 'common', 'Keyword', 'Ključna reč', '2020-11-14 23:39:22'),
(14904, 'sr', 'common', 'Keywords', 'Ključne reči', '2020-11-14 23:39:22'),
(14905, 'sr', 'common', 'Keywords Count', 'Broj ključnih reči', '2020-11-14 23:39:22'),
(14906, 'sr', 'common', 'lang', 'Jezik', '2020-11-14 23:39:22'),
(14907, 'sr', 'common', 'Link', 'Link', '2020-11-14 23:39:22'),
(14908, 'sr', 'common', 'Logout', 'Odjavite se', '2020-11-14 23:39:22'),
(14909, 'sr', 'common', 'MOZ Rank', 'Moz Rang', '2020-11-14 23:39:22'),
(14910, 'sr', 'common', 'My Account', 'Moj nalog', '2020-11-14 23:39:22'),
(14911, 'sr', 'common', 'Name', 'Ime', '2020-11-14 23:39:22'),
(14912, 'sr', 'common', 'New User Type', 'Novi tip korisnika', '2020-11-14 23:39:22'),
(14913, 'sr', 'common', 'No', 'Ne', '2020-11-14 23:39:22'),
(14914, 'sr', 'common', 'No Keywords Found', 'Nisu pronađene ključne reči', '2020-11-14 23:39:22'),
(14915, 'sr', 'common', 'No Records Found', 'Podaci nisu pronađeni', '2020-11-14 23:39:22'),
(14916, 'sr', 'common', 'noactivetools', 'Nisu pronađeni aktivni Seo alati!', '2020-11-14 23:39:22'),
(14917, 'sr', 'common', 'nowebsites', 'Nije pronađen nijedan sajt', '2020-11-14 23:39:22'),
(14918, 'sr', 'common', 'Page Authority', 'Autoritet Stranice', '2020-11-14 23:39:22'),
(14919, 'sr', 'common', 'Pagerank', 'Rang Stranice', '2020-11-14 23:39:22'),
(14920, 'sr', 'common', 'password632', 'Niz lozinke treba da ima dužinu između 6 i 32', '2020-11-14 23:39:22'),
(14921, 'sr', 'common', 'passwordnotmatch', 'Lozinke se ne poklapaju', '2020-11-14 23:39:22'),
(14922, 'sr', 'common', 'Period', 'Period', '2020-11-14 23:39:22'),
(14923, 'sr', 'common', 'Plugins', 'Dodaci', '2020-11-14 23:39:22'),
(14924, 'sr', 'common', 'Powered by', 'Pokreće ga', '2020-11-14 23:39:22'),
(14925, 'sr', 'common', 'Price', 'Cena', '2020-11-14 23:39:22'),
(14926, 'sr', 'common', 'Pricing', 'Cenovnik', '2020-11-14 23:39:22'),
(14927, 'sr', 'common', 'Priority', 'Prioritet', '2020-11-14 23:39:22'),
(14928, 'sr', 'common', 'Profile', 'Profil', '2020-11-14 23:39:22'),
(14929, 'sr', 'common', 'Rank', 'Rang', '2020-11-14 23:39:22'),
(14930, 'sr', 'common', 'reCAPTCHA verification failed', 'verifikacija reCAPTCHA nije uspela', '2020-11-14 23:39:22'),
(14931, 'sr', 'common', 'Reports', 'Izveštaji', '2020-11-14 23:39:22'),
(14932, 'sr', 'common', 'Results', 'Rezultati', '2020-11-14 23:39:22'),
(14933, 'sr', 'common', 'Sample CSV File', 'Primer CSV datoteke', '2020-11-14 23:39:22'),
(14934, 'sr', 'common', 'Search Engine', 'Pretraživač', '2020-11-14 23:39:22'),
(14935, 'sr', 'common', 'Search Engine Count', 'Broj pretraživača', '2020-11-14 23:39:22'),
(14936, 'sr', 'common', 'Select', 'Izaberite', '2020-11-14 23:39:22'),
(14937, 'sr', 'common', 'Seo Plugins', 'SEO dodaci', '2020-11-14 23:39:22'),
(14938, 'sr', 'common', 'Seo Tools', 'SEO alati', '2020-11-14 23:39:22'),
(14939, 'sr', 'common', 'Server', 'Server', '2020-11-14 23:39:22'),
(14940, 'sr', 'common', 'Sign out', 'Odjavite se', '2020-11-14 23:39:22'),
(14941, 'sr', 'common', 'Sign Up', 'Registrujte se', '2020-11-14 23:39:22'),
(14942, 'sr', 'common', 'signin', 'Prijavite se', '2020-11-14 23:39:22'),
(14943, 'sr', 'common', 'Source', 'Izvor', '2020-11-14 23:39:22'),
(14944, 'sr', 'common', 'Status', 'Status', '2020-11-14 23:39:22'),
(14945, 'sr', 'common', 'Support', 'Podrška', '2020-11-14 23:39:22'),
(14946, 'sr', 'common', 'Thank you', 'Hvala!', '2020-11-14 23:39:22'),
(14947, 'sr', 'common', 'Tools', 'Alati', '2020-11-14 23:39:22'),
(14948, 'sr', 'common', 'Total', 'Ukupno', '2020-11-14 23:39:22'),
(14949, 'sr', 'common', 'Url', 'Url', '2020-11-14 23:39:22'),
(14950, 'sr', 'common', 'User', 'Korisnik', '2020-11-14 23:39:22'),
(14951, 'sr', 'common', 'User Panel', 'Korisnički panel', '2020-11-14 23:39:22'),
(14952, 'sr', 'common', 'User Type', 'Tip korisnika', '2020-11-14 23:39:22'),
(14953, 'sr', 'common', 'Warnings', 'Upozorenja', '2020-11-14 23:39:22'),
(14954, 'sr', 'common', 'Website', 'Sajt', '2020-11-14 23:39:22'),
(14955, 'sr', 'common', 'Websites Count', 'Broj Sajtova', '2020-11-14 23:39:22'),
(14956, 'sr', 'common', 'Yes', 'Da', '2020-11-14 23:39:22'),
(14957, 'en', 'panel', 'DataForSEO Settings', 'DataForSEO Settings', '2020-11-20 14:47:34'),
(14958, 'en', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for Backlink and Saturation Checker', '2020-11-20 14:47:34'),
(14959, 'en', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2020-11-20 14:47:34'),
(14960, 'en', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2020-11-20 14:47:34'),
(14961, 'en', 'settings', 'SP_DFS_API_LOGIN', 'API Login', '2020-11-20 14:47:34'),
(14962, 'en', 'settings', 'SP_DFS_API_PASSWORD', 'API Password', '2020-11-20 14:47:34'),
(14963, 'en', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2020-11-20 14:47:34'),
(14964, 'en', 'settings', 'click-to-get-dataforseo-account', 'Click here to get Free DataForSEO account', '2020-11-20 14:47:34'),
(14965, 'sr', 'directory', 'Add back to directory list', 'Dodajte nazad na listu direktorijuma', '2020-11-24 22:51:15'),
(14966, 'sr', 'directory', 'Approved', 'Odobreno', '2020-11-24 22:51:15'),
(14967, 'sr', 'directory', 'Captcha', 'Captcha', '2020-11-24 22:51:15'),
(14968, 'sr', 'directory', 'categorynote', 'Kategorije, razdvojite ih zarezom prema prioritetu. Počnite od najvažnije kategorije.', '2020-11-24 22:51:15'),
(14969, 'sr', 'directory', 'Check Directory Status', 'Proverite status direktorijuma', '2020-11-24 22:51:15'),
(14970, 'sr', 'directory', 'Check Directory Submission Status', 'Preverite status podnošenja direktorijumu', '2020-11-24 22:51:15'),
(14971, 'sr', 'directory', 'clickaddfeatureddirectory', 'Kliknite ovde da biste ovde dodali svoj vlastiti istaknuti direktorijum', '2020-11-24 22:51:15'),
(14972, 'sr', 'directory', 'clicktoproceeddirsts', 'Kliknite na <b> Nastavi </b> da biste proverili status direktorijuma.', '2020-11-24 22:51:15'),
(14973, 'sr', 'directory', 'Confirmation', 'Potvrda', '2020-11-24 22:51:15'),
(14974, 'sr', 'directory', 'Coupon Code', 'kupon kod', '2020-11-24 22:51:15'),
(14975, 'sr', 'directory', 'Coupon Offer', 'Ponuda kupona', '2020-11-24 22:51:15'),
(14976, 'sr', 'directory', 'couponcodenote', 'Koristite gornji kod kupona i dobijte [REDUCTION_PER] ponudu za svaku istaknutu prijavu!', '2020-11-24 22:51:15'),
(14977, 'sr', 'directory', 'desnote', 'Neki direktorijumi zahtevaju najmanje 150 znakova za polje opisa.', '2020-11-24 22:51:15'),
(14978, 'sr', 'directory', 'Directories with out captcha', 'Direktorijumi bez Captche', '2020-11-24 22:51:15'),
(14979, 'sr', 'directory', 'Directories with out Reciprocal Link', 'Direktorijumi bez reciprocalnih linkova', '2020-11-24 22:51:15'),
(14980, 'sr', 'directory', 'Directory Submission Reports', 'Izveštaj Poslatih Direktorijuma', '2020-11-24 22:51:15'),
(14981, 'sr', 'directory', 'Enter the code shown', 'Unesite prikazani kod', '2020-11-24 22:51:15'),
(14982, 'sr', 'directory', 'nocatnote', 'Kategorija prijave nije pronađena na stranici za prijavljivanje. Kliknite na <b> Ponovo učitaj </b> ili <b> Preskoči </b>', '2020-11-24 22:51:15'),
(14983, 'sr', 'directory', 'nodirnote', 'Nisu pronađeni <b> aktivni </b> direktorijumi', '2020-11-24 22:51:15'),
(14984, 'sr', 'directory', 'nosuccessnote', 'Niste dobili poruku o uspehu, proverite poštu da biste pronašli poruku za potvrdu', '2020-11-24 22:51:15'),
(14985, 'sr', 'directory', 'optionalnote', 'Glavni naslovi i opisi za slanje nasumičnih naslova i opisa u direktorijume zabolje\r\nrezultate', '2020-11-24 22:51:15'),
(14986, 'sr', 'directory', 'Owner Email', '', '2020-11-24 22:51:15'),
(14987, 'sr', 'directory', 'Owner Name', '', '2020-11-24 22:51:15'),
(14988, 'sr', 'directory', 'Pending', '', '2020-11-24 22:51:15'),
(14989, 'sr', 'directory', 'Please select a website to proceed', '', '2020-11-24 22:51:15'),
(14990, 'sr', 'directory', 'Reciprocal Link', '', '2020-11-24 22:51:15'),
(14991, 'sr', 'directory', 'selectwebsiteproceed', '', '2020-11-24 22:51:15'),
(14992, 'sr', 'directory', 'selectwebsiteschecksub', '', '2020-11-24 22:51:15'),
(14993, 'sr', 'directory', 'Semi Automatic Directory Submission Tool', '', '2020-11-24 22:51:15'),
(14994, 'sr', 'directory', 'spamemailnote', '', '2020-11-24 22:51:15'),
(14995, 'sr', 'directory', 'Submission Details', '', '2020-11-24 22:51:15'),
(14996, 'sr', 'directory', 'Submit Description', '', '2020-11-24 22:51:15'),
(14997, 'sr', 'directory', 'Submit Keywords', '', '2020-11-24 22:51:15'),
(14998, 'sr', 'directory', 'Submit Title', '', '2020-11-24 22:51:15'),
(14999, 'sr', 'directory', 'Website Category', '', '2020-11-24 22:51:15'),
(15000, 'sr', 'directory', 'Website Url', '', '2020-11-24 22:51:15'),
(15001, 'de', 'analytics', 'Avg_ Session Duration', 'Durchschn. Sitzungsdauer', '2025-12-30 22:29:37'),
(15002, 'de', 'analytics', 'Bounce Rate', 'Absprungrate', '2025-12-30 22:29:37'),
(15003, 'de', 'analytics', 'Goal Completions', 'Erreichte Ziele', '2025-12-30 22:29:37'),
(15004, 'de', 'analytics', 'New Users', 'Neue Nutzer', '2025-12-30 22:29:37'),
(15005, 'de', 'analytics', 'Sessions', 'Sitzungen', '2025-12-30 22:29:37'),
(15006, 'de', 'analytics', 'Users', 'Nutzer', '2025-12-30 22:29:37'),
(15007, 'de', 'analytics', 'view_id_not_found_error', 'Fehler: Analytics View ID ist nicht eingestellt. Bitte Webseite bearbeiten und View ID aktualisieren.', '2025-12-30 22:29:37'),
(15008, 'de', 'blog', 'Newer Posts', 'Neuere Beiträge', '2021-01-06 12:35:07'),
(15009, 'de', 'blog', 'Nothing Found', 'Nichts gefunden', '2021-01-06 12:35:07'),
(15010, 'de', 'blog', 'NothingFound_text2', 'Sorry, leider nichts gefunden. Bitte versuch es mit anderen Suchbegriffen.', '2021-01-06 12:35:07'),
(15011, 'de', 'blog', 'Older Posts', 'Ältere Beiträge', '2021-01-06 12:35:07'),
(15012, 'de', 'common', 'General', 'Allgemein', '2021-06-15 01:46:19'),
(15013, 'de', 'common', 'reCAPTCHA verification failed', 'Captcha falsch', '2021-06-15 01:46:19'),
(15014, 'de', 'common', 'Source', 'Quelle', '2021-06-15 01:46:19'),
(15015, 'de', 'home', 'Keyword Overview Report', 'Keyword-Bericht (Übersicht)', '2021-06-15 01:27:27'),
(15016, 'de', 'home', 'Overall Report Summary', 'Alle Berichte (Übersicht)', '2021-06-15 01:27:27'),
(15017, 'de', 'home', 'Page Overview Report', 'Seiten-Bericht (Übersicht)', '2021-06-15 01:27:27'),
(15021, 'de', 'label', 'Day', 'Tag', '2021-01-06 15:13:08'),
(15022, 'de', 'label', 'Days', 'Tage', '2021-01-06 15:13:08'),
(15023, 'de', 'label', 'Desktop', 'Desktop', '2021-01-06 15:13:08'),
(15024, 'de', 'label', 'Email Body', 'Email Body Inhalt', '2021-01-06 15:13:08'),
(15025, 'de', 'label', 'Feature', 'Feature', '2021-01-06 15:13:08'),
(15026, 'de', 'label', 'Followers', 'Followers', '2021-01-06 15:13:08'),
(15027, 'de', 'label', 'From', 'Von', '2021-01-06 15:13:08'),
(15028, 'de', 'label', 'Hour', 'Stunde', '2021-01-06 15:13:08'),
(15029, 'de', 'label', 'Impressions', 'Impressionen', '2021-01-06 15:13:08'),
(15030, 'de', 'label', 'Just Now', 'Gerade eben', '2021-01-06 15:13:08'),
(15031, 'de', 'label', 'Likes', 'Likes', '2021-01-06 15:13:08'),
(15032, 'de', 'label', 'Minute', 'Minute', '2021-01-06 15:13:08'),
(15033, 'de', 'label', 'Mobile', 'Mobil', '2021-01-06 15:13:08'),
(15034, 'de', 'label', 'Month', 'Monat', '2021-01-06 15:13:08'),
(15035, 'de', 'label', 'Months', 'Monate', '2021-01-06 15:13:08'),
(15036, 'de', 'label', 'Overview', 'Übersicht', '2021-01-06 15:13:08'),
(15037, 'de', 'label', 'Rating', 'Bewertung', '2021-01-06 15:13:08'),
(15038, 'de', 'label', 'Read', 'Lesen', '2021-01-06 15:13:08'),
(15039, 'de', 'label', 'Reviews', 'Bewertungen', '2021-01-06 15:13:08'),
(15040, 'de', 'label', 'Second', 'Sekunde', '2021-01-06 15:13:08'),
(15041, 'de', 'label', 'Speed', 'Geschwindigkeit', '2021-01-06 15:13:08'),
(15042, 'de', 'label', 'Type', 'Typ', '2021-01-06 15:13:08'),
(15043, 'de', 'label', 'Usability', 'Nutzerfreundlichkeit', '2021-01-06 15:13:08'),
(15044, 'de', 'label', 'Week', 'Woche', '2021-01-06 15:13:08'),
(15045, 'de', 'label', 'Write', 'Schreiben', '2021-01-06 15:13:08'),
(15046, 'de', 'label', 'Year', 'Jahr', '2021-01-06 15:13:08'),
(15047, 'de', 'log', 'Mail Log Details', 'Log Details mailen', '2021-01-06 15:13:38'),
(15048, 'de', 'login', 'user_not_activated_msg', 'Benutzer ist nicht aktiviert. Bitte prüfe deine Email Postfach für die Aktivierungs-Mail.', '2021-01-06 15:14:32'),
(15049, 'de', 'login', 'Your account activated successfully', 'Dein Konto wurde erfolgreich aktiviert.', '2021-01-06 15:14:32'),
(15050, 'de', 'myaccount', 'Connect', 'Verbinden', '2021-01-06 15:15:01'),
(15051, 'de', 'myaccount', 'Connected', 'Verbunden', '2021-01-06 15:15:01'),
(15052, 'de', 'myaccount', 'Disconnect', 'Verbindung trennen', '2021-01-06 15:15:01'),
(15053, 'de', 'myaccount', 'Disconnected', 'Verbindung getrennt', '2021-01-06 15:15:01'),
(15054, 'de', 'pagespeed', 'Desktop Speed', 'Desktop Geschwindigkeit', '2021-01-06 15:16:42'),
(15055, 'de', 'pagespeed', 'Mobile Speed', 'Mobile Geschwindigkeit', '2021-01-06 15:16:42'),
(15056, 'de', 'pagespeed', 'Mobile Usability', 'Mobile Benutzerfreundlichkeit', '2021-01-06 15:16:42'),
(15057, 'de', 'pagespeed', 'Page Speed', 'Page Speed', '2021-01-06 15:16:42'),
(15058, 'de', 'pagespeed', 'PageSpeed Details', 'Page Speed Details', '2021-01-06 15:16:42'),
(15059, 'de', 'pagespeed', 'Saved page speed results of', 'Page Speed Ergebnisse speichern von', '2021-01-06 15:16:42'),
(15060, 'de', 'panel', 'Alerts', 'Benachrichtigungen', '2023-01-03 19:44:32'),
(15061, 'de', 'panel', 'Connections', 'Verbindungen', '2023-01-03 19:44:32'),
(15062, 'de', 'panel', 'Current Time', 'Aktuelle Zeit', '2023-01-03 19:44:32'),
(15063, 'de', 'panel', 'DataForSEO Settings', 'DataForSEO Einstellungen', '2023-01-03 19:44:32'),
(15064, 'de', 'panel', 'Global Reports Settings', 'Globale Berichte Einstellungen', '2023-01-03 19:44:32'),
(15065, 'de', 'panel', 'Google Settings', 'Google Einstellungen', '2023-01-03 19:44:32'),
(15066, 'de', 'panel', 'Mail Log Manager', 'Email Log Manager', '2023-01-03 19:44:32'),
(15067, 'de', 'panel', 'Mail Settings', 'Email Einstellungen', '2023-01-03 19:44:32'),
(15068, 'de', 'panel', 'MOZ Settings', 'MOZ Einstellungen', '2023-01-03 19:44:32'),
(15069, 'de', 'panel', 'Report Generation Logs', 'Berichtserstellung Logdateien', '2023-01-03 19:44:32'),
(15070, 'de', 'panel', 'Settings', 'Einstellungen', '2023-01-03 19:44:32'),
(15071, 'de', 'panel', 'Sitemaps', 'Sitemaps', '2023-01-03 19:44:32'),
(15072, 'de', 'panel', 'Submit Sitemap', 'Sitemaps uebermitteln', '2023-01-03 19:44:32'),
(15073, 'de', 'panel', 'Sync Search Engines', 'Suchmaschinen synchronisieren', '2023-01-03 19:44:32'),
(15074, 'de', 'panel', 'Test Email Settings', 'Email Einstellungen testen', '2023-01-03 19:44:32'),
(15075, 'de', 'panel', 'User Type Settings', 'Benutzertyp Einstellungen', '2023-01-03 19:44:32'),
(15076, 'de', 'panel', 'Website Access Manager', 'Webseitenzugriff Manager', '2023-01-03 19:44:32'),
(15077, 'de', 'proxy', 'click-to-get-proxy', 'Klicke hier um Proxy zu erhalten', '2021-01-06 15:21:00'),
(15078, 'de', 'QuickWebProxy', 'Anonymize', 'Anonymisieren', '2021-01-06 15:22:04'),
(15079, 'de', 'QuickWebProxy', 'Please enter a valid url', 'Bitte gueltige URL eintragen', '2021-01-06 15:22:04'),
(15080, 'de', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Benutzer erlauben auf Web Proxy zuzugreifen', '2021-01-06 15:22:04'),
(15081, 'de', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Web Server erlauben als Proxy zu agieren', '2021-01-06 15:22:04'),
(15082, 'de', 'QuickWebProxy', 'Server list is empty', 'Server Liste ist leer', '2021-01-06 15:22:04'),
(15083, 'de', 'QuickWebProxy', 'Web Proxy', 'Web Proxy', '2021-01-06 15:22:04'),
(15084, 'de', 'QuickWebProxy', 'Web Server', 'Web Server', '2021-01-06 15:22:04'),
(15085, 'de', 'register', 'Registration', 'Registrierung', '2021-01-06 15:23:16'),
(15086, 'de', 'register', 'user_confirm_content_1', 'Interner Fehler bei der Bearbeitung der Anfrage', '2021-01-06 15:23:16'),
(15087, 'de', 'register', 'user_confirm_mail_cont_1', 'Danke für deine Registrierung mit', '2021-01-06 15:23:16'),
(15088, 'de', 'register', 'user_confirm_mail_cont_2', 'Bitte klicke auf folgenden Link um die Registrierung abzuschliessen', '2021-01-06 15:23:16'),
(15089, 'de', 'reports', 'Reports Generated Successfully', 'Berichte erfolgreich generiert', '2021-01-06 15:23:32'),
(15090, 'de', 'review', 'Edit Review Link', 'Bewertungslink bearbeiten', '2021-01-06 15:23:52'),
(15091, 'de', 'review', 'New Review Link', 'Neuer Bewertungslink', '2021-01-06 15:23:52'),
(15092, 'de', 'siteauditor', 'Check pagerank of pages', 'Pagerank von Seiten ueberpruefen', '2021-01-06 15:26:09'),
(15093, 'de', 'siteauditor', 'The page is having excellent page authority value', 'Die Seite hat einen ausgezeichneten Page Authority Wert', '2021-01-06 15:26:09'),
(15094, 'de', 'siteauditor', 'The page is having good page authority value', 'Die Seite hat einen guten Page Authority Wert', '2021-01-06 15:26:09'),
(15095, 'de', 'siteauditor', 'The page is having poor page authority value', 'Die Seite hat einen niedrigen Page Authority Wert', '2021-01-06 15:26:09'),
(15096, 'de', 'siteauditor', 'The page is having very good page authority value', 'Die Seite hat einen sehr guten Page Authority Wert', '2021-01-06 15:26:09'),
(15169, 'de', 'analytics', 'Avg. Session Duration', 'Durchschn. Sitzungsdauer', '2021-01-07 23:32:43'),
(15097, 'de', 'api', 'API Guide', 'API Leitfaden', '2021-01-07 13:34:06'),
(15098, 'de', 'seotools', 'clickproceedaction', '<b>Eine URL pro Zeile</b> eintragen. Auf <b>Fortfahren</b> klicken um Ergebnisse zu pruefen.', '2021-01-07 13:40:24'),
(15099, 'de', 'seotools', 'Detailed Reports', 'Detaillierte Berichte', '2021-01-07 13:40:24'),
(15100, 'de', 'seotools', 'Edit Seo Tool', 'SEO Tool bearbeiten', '2021-01-07 13:40:24'),
(15101, 'de', 'seotools', 'Generate Reports', 'Berichte erstellen', '2021-01-07 13:40:24'),
(15102, 'de', 'seotools', 'Graphical Reports', 'Grafische Berichte', '2021-01-07 13:40:24'),
(15103, 'de', 'seotools', 'Keyword Search Reports', 'Keyword Suche Berichte', '2021-01-07 13:40:24'),
(15104, 'de', 'seotools', 'Keyword Search Summary', 'Keyword Suche Zusammenfassung', '2021-01-07 13:40:24'),
(15105, 'de', 'seotools', 'note_report_generation', 'Wir empfehlen Cron Jobs für die Berichterstellung zu nutzen.\r\nDiese Aktion kann das Lösen von Captchas erfordern.', '2021-01-07 13:40:24'),
(15106, 'de', 'seotools', 'pagespeed', 'PageSpeed Insights', '2021-01-07 13:40:24'),
(15107, 'de', 'seotools', 'PageSpeed Reports', 'PageSpeed Berichte', '2021-01-07 13:40:24'),
(15108, 'de', 'seotools', 'Quick Checker', 'Schneller Check', '2021-01-07 13:40:24'),
(15109, 'de', 'seotools', 'Quick PageSpeed Checker', 'Schneller PageSpeed Check', '2021-01-07 13:40:24'),
(15110, 'de', 'seotools', 'Review Links', 'Bewertungs-Links', '2021-01-07 13:40:24'),
(15111, 'de', 'seotools', 'Review Report Summary', 'Bewertungs-Bericht Zusammenfassung', '2021-01-07 13:40:24'),
(15112, 'de', 'seotools', 'review-manager', 'Bewertungs-Manager', '2021-01-07 13:40:24'),
(15113, 'de', 'seotools', 'Sitemap Reports Summary', 'Sitemap Berichte Zusammenfassung', '2021-01-07 13:40:24'),
(15114, 'de', 'seotools', 'sm-checker', 'Social Media Check', '2021-01-07 13:40:24'),
(15115, 'de', 'seotools', 'Social Media Links', 'Social Media Links', '2021-01-07 13:40:24'),
(15116, 'de', 'seotools', 'Social Media Report Summary', 'Social Media Bericht Zusammenfassung', '2021-01-07 13:40:24'),
(15117, 'de', 'seotools', 'web-analytics', 'Webseiten Analyse', '2021-01-07 13:40:24'),
(15118, 'de', 'seotools', 'webmaster-tools', 'Webmaster Tools', '2021-01-07 13:40:24'),
(15119, 'de', 'seotools', 'Website Analytics Summary', 'Webseiten Analyse Zusammenfassung', '2021-01-07 13:40:24'),
(15120, 'de', 'seotools', 'Website Search Reports', 'Webseiten Such-Berichte', '2021-01-07 13:40:24'),
(15121, 'de', 'seotools', 'Website Search Summary', 'Webseiten Such-Zusammenfassung', '2021-01-07 13:40:24'),
(15122, 'de', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2021-01-08 13:28:43'),
(15123, 'de', 'settings', 'click-to-get-dataforseo-account', 'Klicke hier, um ein gratis DataForSEO Konto zu erhalten', '2021-01-08 13:28:43'),
(15124, 'de', 'settings', 'click-to-get-google-api-client-id', 'Klicke hier, um eine Google API Client Id zu erhalten', '2021-01-08 13:28:43'),
(15125, 'de', 'settings', 'click-to-get-google-api-key', 'Klicke hier, um einen Google API Key zu erhalten', '2021-01-08 13:28:43'),
(15126, 'de', 'settings', 'click-to-get-moz-account', 'Klicke hier, um einen MOZ Account zu erhalten', '2021-01-08 13:28:43'),
(15127, 'de', 'settings', 'Please update google settings to get the results', 'Bitte Google Einstellungen aktualisieren um Ergebnisse zu erhalten', '2021-01-08 13:28:43'),
(15128, 'de', 'settings', 'Please update MOZ settings to get complete results', 'Bitte MOZ Einstellungen aktualisieren um vollstaendige Ergebnisse zu erhalten', '2021-01-08 13:28:43'),
(15129, 'de', 'settings', 'Send Email', 'Email senden', '2021-01-08 13:28:43'),
(15130, 'de', 'settings', 'SP_DFS_API_LOGIN', 'API Login', '2021-01-08 13:28:43'),
(15131, 'de', 'settings', 'SP_DFS_API_PASSWORD', 'API Passwort', '2021-01-08 13:28:43'),
(15132, 'de', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Guthaben ($)', '2021-01-08 13:28:43'),
(15133, 'de', 'settings', 'SP_ENABLE_DFS', 'DataForSEO aktivieren', '2021-01-08 13:28:43'),
(15134, 'de', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Aktivieren fuer Backlink und Saettigungs-Check', '2021-01-08 13:28:43'),
(15135, 'de', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Sandbox aktivieren', '2021-01-08 13:28:43'),
(15136, 'de', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Proxy fuer Google API aktivieren', '2021-01-08 13:28:43'),
(15137, 'de', 'settings', 'SP_ENABLE_RECAPTCHA', 'reCaptcha aktivieren', '2021-01-08 13:28:43'),
(15138, 'de', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google Analytics Tracking Code', '2021-01-08 13:28:43'),
(15139, 'de', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client ID', '2021-01-08 13:28:43'),
(15140, 'de', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2021-01-08 13:28:43'),
(15141, 'de', 'settings', 'SP_GOOGLE_API_KEY', 'Google API Key', '2021-01-08 13:28:43'),
(15142, 'de', 'settings', 'SP_MAIL_ENCRYPTION', 'Email Verschluesselung', '2021-01-08 13:28:43'),
(15143, 'de', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2021-01-08 13:28:43'),
(15144, 'de', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2021-01-08 13:28:43'),
(15145, 'de', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCaptcha Secret Key', '2021-01-08 13:28:43'),
(15146, 'de', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCaptcha Site Key', '2021-01-08 13:28:43'),
(15147, 'de', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Benutzerdefinierten header mit curl Anfrage senden', '2021-01-08 13:28:43'),
(15148, 'de', 'settings', 'SP_SENDGRID_API', 'Sendgrid API aktivieren', '2021-01-08 13:28:43'),
(15149, 'de', 'settings', 'Verify connection', 'Verbindung verifizieren', '2021-01-08 13:28:43'),
(15150, 'de', 'sitemap', 'Downloaded', 'Heruntergeladen', '2021-01-07 13:49:35'),
(15151, 'de', 'sitemap', 'Submitted', 'Uebermittelt', '2021-01-07 13:49:35'),
(15152, 'de', 'sitemap', 'Sync Sitemaps', 'Sitemaps synchronisieren', '2021-01-07 13:49:35'),
(15153, 'de', 'socialmedia', 'Click here to get LinkedIn Company Id', 'Hier klicken, um LinkedIn Firman-ID zu erhalten', '2021-01-07 13:50:51'),
(15154, 'de', 'socialmedia', 'Company Id', 'Firmen-ID', '2021-01-07 13:50:51'),
(15155, 'de', 'socialmedia', 'Edit Social Media Link', 'Social Media Link bearbeiten', '2021-01-07 13:50:51'),
(15156, 'de', 'socialmedia', 'New Social Media Link', 'Neuer Social Media Link', '2021-01-07 13:50:51'),
(15157, 'de', 'socialmedia', 'Your social media link count already reached the limit', 'Maximale Anzahl an Social Media Links erreicht', '2021-01-07 13:50:51'),
(15158, 'de', 'webmaster', 'Average Position', 'Durchschnittliche Position', '2021-01-07 13:51:37'),
(15159, 'de', 'webmaster', 'Click here to connect to your google account', 'Hier klicken, um mit Google Konto zu verbinden', '2021-01-07 13:51:37'),
(15160, 'de', 'webmaster', 'Error: Google api connection failed', 'Fehler: Google API Verbindung fehlgeschlagen', '2021-01-07 13:51:37'),
(15161, 'de', 'website', 'Add to Webmaster Tools', 'Zu Webmaster Tools hinzufügen', '2021-01-07 13:53:49'),
(15162, 'de', 'website', 'Click here to get Google Analytics View Id', 'Hier klicken, um Google Analytics View ID zu erhalten', '2021-01-07 13:53:49'),
(15163, 'de', 'website', 'Google Analytics View Id', 'Google Analytics View ID', '2021-01-07 13:53:49'),
(15164, 'de', 'website', 'Sitemap successfully added to webmaster tools', 'Sitemap erfolgreich zu Webmaster Tools hinzugefuegt', '2021-01-07 13:53:49'),
(15165, 'de', 'website', 'Successfully deleted sitemap from webmaster tools', 'Sitemap erfolgreich aus Webmaster Tools entfernt', '2021-01-07 13:53:49'),
(15166, 'de', 'website', 'Successfully imported following websites', 'Erfolgreich folgende Webseiten importiert', '2021-01-07 13:53:49'),
(15167, 'de', 'website', 'Successfully sync sitemaps from webmaster tools', 'Erfolgreich Sitemaps aus Webmaster Tools synchronisiert', '2021-01-07 13:53:49'),
(15168, 'de', 'website', 'Website successfully added to webmaster tools', 'Webseite erfolgreicht zu Webmaster Tools hinzugefuegt', '2021-01-07 13:53:49'),
(15170, 'de', 'subscription', 'Access Type', 'Zugriffstyp', '2021-01-29 14:00:38'),
(15171, 'de', 'subscription', 'Directory Submit Daily Limit', 'Taegliches Verzeichnis-Eintragungs Limit', '2021-01-29 14:00:38'),
(15172, 'de', 'subscription', 'Directory Submit Limit', 'Verzeichnis-Eintragungs Limit', '2021-01-29 14:00:38'),
(15173, 'de', 'subscription', 'Edit Email Template', 'Email Vorlage bearbeiten', '2021-01-29 14:00:38'),
(15174, 'de', 'subscription', 'Email Template Manager', 'Email Vorlagen Manager', '2021-01-29 14:00:38'),
(15175, 'de', 'subscription', 'enable_email_activation', 'Email Aktivierung aktivieren', '2021-01-29 14:00:38'),
(15176, 'de', 'subscription', 'free_trial_period', 'Gratis Test-Zeitraum', '2021-01-29 14:00:38'),
(15177, 'de', 'subscription', 'infinite_limit_text', '<b>Notiz</b>: -1 eintragen für kein Limit', '2021-01-29 14:00:38'),
(15178, 'de', 'subscription', 'Orders', 'Bestellungen', '2021-01-29 14:00:38'),
(15179, 'de', 'subscription', 'Payment Gateway Manager', 'Zahlungsmittel Manager', '2021-01-29 14:00:38'),
(15180, 'de', 'subscription', 'Plugin Access Settings', 'Zugriffseinstellungen fuer Erweiterungen', '2021-01-29 14:00:38'),
(15181, 'de', 'subscription', 'Review Link Count', 'Anzahl Bewertungslinks', '2021-01-29 14:00:38'),
(15182, 'de', 'subscription', 'Seo Tools Access Settings', 'SEO Tools Zugriffseinstellungen', '2021-01-29 14:00:38'),
(15183, 'de', 'subscription', 'site_auditor_max_page_limit', 'Webseiten Auditor Anzahl maximaler Seiten', '2021-01-29 14:00:38'),
(15184, 'de', 'subscription', 'Social Media Link Count', 'Anzahl Social Media Links', '2021-01-29 14:00:38'),
(15185, 'de', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Benachrichtigung fuer abgelaufene Mitgliedschaft (nach)', '2021-01-29 14:00:38'),
(15186, 'de', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Erinnerung Mitgliedschafts-Erneuerung 1 (vor)', '2021-01-29 14:00:38'),
(15187, 'de', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Erinnerung Mitgliedschafts-Erneuerung 2 (vor)', '2021-01-29 14:00:38'),
(15188, 'de', 'subscription', 'total_count_greater_account_limit', 'Gesamtzahl ist hoeher als Konto-Limit - [limit]', '2021-01-29 14:00:38'),
(15189, 'de', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Anzahl der Verzeichnis-Eintragungen ist hoeher als Konto-Limit - [limit]', '2021-01-29 14:00:38'),
(15190, 'de', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Anzahl der Verzeichnis-Eintragungen ist hoeher als taegliches Konto-Limit - [limit]', '2021-01-29 14:00:38'),
(15191, 'en', 'panel', 'Project Manager', 'Project Manager', '2021-08-30 22:43:21'),
(15192, 'en', 'panel', 'Project Summary', 'Project Summary', '2021-08-30 22:43:21'),
(15193, 'en', 'QuickWebProxy', 'Url blocked in the web proxy', 'Url blocked in the web proxy', '2021-08-30 22:43:21'),
(15194, 'en', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web Proxy', '2021-08-30 22:43:21'),
(15195, 'en', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web proxy.', '2021-08-30 22:43:21'),
(15196, 'it', 'analytics', 'Avg_ Session Duration', 'Durata media sessione.', '2022-07-11 15:14:22'),
(15197, 'it', 'analytics', 'Bounce Rate', 'Bounce Rate', '2022-07-11 15:14:22'),
(15198, 'it', 'analytics', 'Goal Completions', 'Obiettivi completati', '2022-07-11 15:14:22'),
(15199, 'it', 'analytics', 'New Users', 'Nuovi utenti', '2022-07-11 15:14:22'),
(15200, 'it', 'analytics', 'Sessions', 'Sessioni', '2022-07-11 15:14:22'),
(15201, 'it', 'analytics', 'Users', 'Utenti', '2022-07-11 15:14:22'),
(15202, 'it', 'analytics', 'view_id_not_found_error', 'Errore: La visualizzazione ID di Analytics non è impostato per il sito web. Modifica il sito web e aggiorna l''ID.', '2022-07-11 15:14:22'),
(15203, 'it', 'blog', 'Newer Posts', 'Nuovi post', '2022-07-11 15:14:12'),
(15204, 'it', 'blog', 'Nothing Found', 'Non è stato trovato nulla', '2022-07-11 15:14:12'),
(15205, 'it', 'blog', 'NothingFound_text2', 'Spiacente ma non c''è corrispondenza tra i criteri di ricerca. Prova per cortesia con parole differenti', '2022-07-11 15:14:12'),
(15206, 'it', 'blog', 'Older Posts', 'Vecchi post', '2022-07-11 15:14:12'),
(15207, 'it', 'common', 'General', 'Generale', '2022-07-11 15:16:48'),
(15208, 'it', 'common', 'reCAPTCHA verification failed', 'Verifica reCAPTCHA fallita', '2022-07-11 15:16:48'),
(15209, 'it', 'common', 'Source', 'Origine', '2022-07-11 15:16:48'),
(15210, 'it', 'home', 'Keyword Overview Report', 'Panoramica rapporto keywords', '2022-07-11 15:16:33'),
(15211, 'it', 'home', 'Overall Report Summary', 'Rapporto generale', '2022-07-11 15:16:33'),
(15212, 'it', 'home', 'Page Overview Report', 'Pagina di rapporto', '2022-07-11 15:16:33'),
(15213, 'it', 'label', 'Ago', 'fa', '2022-07-11 15:17:58'),
(15214, 'it', 'label', 'Day', 'Giorno', '2022-07-11 15:17:58'),
(15215, 'it', 'label', 'Followers', 'Followers', '2022-07-11 15:17:58'),
(15216, 'it', 'label', 'From', 'Da', '2022-07-11 15:17:58'),
(15217, 'it', 'label', 'Hour', 'Ora', '2022-07-11 15:17:58'),
(15218, 'it', 'label', 'Just Now', 'Adesso', '2022-07-11 15:17:58'),
(15219, 'it', 'label', 'Likes', 'Like', '2022-07-11 15:17:58'),
(15220, 'it', 'label', 'Minute', 'Minuto', '2022-07-11 15:17:58'),
(15221, 'it', 'label', 'Month', 'Mese', '2022-07-11 15:17:58'),
(15222, 'it', 'label', 'Overview', 'Panoramica', '2022-07-11 15:17:58'),
(15223, 'it', 'label', 'Rating', 'Rating', '2022-07-11 15:17:58'),
(15224, 'it', 'label', 'Read', 'Letto', '2022-07-11 15:17:58'),
(15225, 'it', 'label', 'Reviews', 'Recensioni', '2022-07-11 15:17:58'),
(15226, 'it', 'label', 'Second', 'Secondo', '2022-07-11 15:17:58'),
(15227, 'it', 'label', 'Week', 'Settimana', '2022-07-11 15:17:58'),
(15228, 'it', 'label', 'Write', 'Scrivi', '2022-07-11 15:17:58'),
(15229, 'it', 'label', 'Year', 'Anno', '2022-07-11 15:17:58'),
(15230, 'it', 'log', 'Mail Log Details', 'Dettagli mail log', '2022-07-11 15:18:13'),
(15231, 'it', 'panel', 'Alerts', 'Avvisi', '2022-07-11 15:20:07'),
(15232, 'it', 'panel', 'Current Time', 'Ora corrente', '2022-07-11 15:20:07'),
(15233, 'it', 'panel', 'DataForSEO Settings', 'Impostazioni DataForSEO', '2022-07-11 15:20:07'),
(15234, 'it', 'panel', 'Mail Log Manager', 'Gestione mail log', '2022-07-11 15:20:07'),
(15235, 'it', 'panel', 'Mail Settings', 'Impostazion mail', '2022-07-11 15:20:07'),
(15236, 'it', 'panel', 'Project Manager', 'Project Manager', '2022-07-11 15:20:07'),
(15237, 'it', 'panel', 'Project Summary', 'Sintesi progetto', '2022-07-11 15:20:07'),
(15238, 'it', 'panel', 'Report Generation Logs', 'Registri di generazione dei rapporti', '2022-07-11 15:20:07'),
(15239, 'it', 'panel', 'Sitemaps', 'Sitemaps', '2022-07-11 15:20:07'),
(15240, 'it', 'panel', 'Submit Sitemap', 'Invia sitemap', '2022-07-11 15:20:07'),
(15241, 'it', 'panel', 'Sync Search Engines', 'Sincronizza motori di ricerca', '2022-07-11 15:20:07'),
(15242, 'it', 'panel', 'Test Email Settings', 'Testa impostazioni email', '2022-07-11 15:20:07'),
(15243, 'it', 'panel', 'Website Access Manager', 'Gestiione accesso sito web', '2022-07-11 15:20:07'),
(15246, 'ru', 'common', 'reCAPTCHA verification failed', 'Проверка reCAPTCHA не удалась', '2024-07-17 15:16:33'),
(15244, 'de', 'panel', 'Project Manager', '', '2023-01-03 19:44:32'),
(15245, 'de', 'panel', 'Project Summary', '', '2023-01-03 19:44:32'),
(15247, 'ru', 'label', 'From', 'От', '2024-07-17 15:17:22'),
(15248, 'ru', 'label', 'Read', 'Читать', '2024-07-17 15:17:22'),
(15249, 'ru', 'label', 'Write', 'Напишите', '2024-07-17 15:17:22'),
(15250, 'ru', 'log', 'Mail Log Details', 'Детали почтового лога', '2024-07-17 15:17:47'),
(15251, 'ru', 'panel', 'Current Time', 'Текущее время', '2024-07-17 15:19:14'),
(15252, 'ru', 'panel', 'DataForSEO Settings', 'Настройки DataForSEO', '2024-07-17 15:19:14'),
(15253, 'ru', 'panel', 'Mail Log Manager', 'Менеджер почтовых логов', '2024-07-17 15:19:14'),
(15254, 'ru', 'panel', 'Mail Settings', 'Настройка почты', '2024-07-17 15:19:14'),
(15255, 'ru', 'panel', 'Project Manager', 'Менеджер проектов', '2024-07-17 15:19:14'),
(15256, 'ru', 'panel', 'Project Summary', 'Резюме проекта', '2024-07-17 15:19:14'),
(15257, 'ru', 'panel', 'Sync Search Engines', 'Синхронизация поисковых систем', '2024-07-17 15:19:14'),
(15258, 'ru', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Заблокированные адреса в веб-прокси', '2024-07-17 15:19:58'),
(15259, 'ru', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Вставьте URL-адреса через запятую, чтобы заблокировать их в веб-прокси.', '2024-07-17 15:19:58'),
(15260, 'ru', 'QuickWebProxy', 'Url blocked in the web proxy', 'URL заблокирован в веб-прокси', '2024-07-17 15:19:58'),
(15261, 'ru', 'seotools', 'note_report_generation', 'Мы рекомендуем использовать задания cron для создания отчетов.\r\nЭто действие может привести к появлению капчи в результатах поиска.', '2024-07-17 15:26:22'),
(15262, 'ru', 'settings', 'click-to-get-dataforseo-account', 'Нажмите здесь, чтобы получить бесплатный аккаунт DataForSEO', '2024-07-17 15:22:42'),
(15263, 'ru', 'settings', 'SP_DFS_API_LOGIN', 'Логин API', '2024-07-17 15:22:42'),
(15264, 'ru', 'settings', 'SP_DFS_API_PASSWORD', 'Пароль API', '2024-07-17 15:22:42'),
(15265, 'ru', 'settings', 'SP_DFS_BALANCE', 'Баланс в DataForSEO ($)', '2024-07-17 15:22:42'),
(15266, 'ru', 'settings', 'SP_ENABLE_DFS', 'Включить DataForSEO', '2024-07-17 15:22:42'),
(15267, 'ru', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Включить проверку обратных ссылок и насыщенности', '2024-07-17 15:22:42'),
(15268, 'ru', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Включить песочницу', '2024-07-17 15:22:42'),
(15269, 'ru', 'settings', 'SP_ENABLE_RECAPTCHA', 'Включить reCAPTCHA', '2024-07-17 15:22:42'),
(15270, 'ru', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'Секретный ключ reCAPTCHA', '2024-07-17 15:22:42'),
(15271, 'ru', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'Ключ сайта reCAPTCHA', '2024-07-17 15:22:42'),
(15272, 'ru', 'settings', 'SP_SENDGRID_API', 'Включить API Sendgrid', '2024-07-17 15:22:42'),
(15273, 'ru', 'socialmedia', 'Click here to get LinkedIn Company Id', 'Нажмите чтобы получить Id LinkedIn', '2024-07-17 15:23:19'),
(15274, 'ru', 'socialmedia', 'Company Id', 'Id компании', '2024-07-17 15:23:19'),
(15275, 'ru', 'subscription', 'Access Type', 'Тип доступа', '2024-07-17 15:24:41'),
(15276, 'en', 'website', 'Sync Google Analytics Properties', 'Sync Google Analytics Properties', '2024-09-03 23:12:17'),
(15277, 'en', 'website', 'Google Analytics Property', 'Google Analytics Property', '2024-09-03 23:12:17'),
(15278, 'en', 'common', 'Invalid Url', 'Invalid Url', '2024-09-03 23:12:17'),
(15279, 'en', 'keyword', 'Ranking Trends', 'Ranking Trends', '2025-10-27 17:18:04'),
(15280, 'en', 'keyword', 'Keyword Ranking Trends', 'Keyword Ranking Trends', '2025-10-27 17:18:04'),
(15281, 'en', 'keyword', 'Keywords Tracked', 'Keywords Tracked', '2025-10-27 17:18:04'),
(15282, 'en', 'keyword', 'Top Keywords', 'Top Keywords', '2025-10-27 17:18:04'),
(15283, 'en', 'label', 'Recent Activity', 'Recent Activity', '2025-10-27 17:18:04'),
(15284, 'en', 'common', 'Rankings', 'Rankings', '2025-10-27 17:18:04'),
(15285, 'en', 'common', 'Range', 'Range', '2025-10-27 17:18:04'),
(15286, 'en', 'common', 'Number', 'Number', '2025-10-27 17:18:04'),
(15287, 'en', 'login', 'Welcome message', 'Welcome back! Please login to your account', '2025-10-27 17:18:04'),
(15288, 'en', 'login', 'Username placeholder', 'Enter your username', '2025-10-27 17:18:04'),
(15289, 'en', 'login', 'Password placeholder', 'Enter your password', '2025-10-27 17:18:04'),
(15290, 'en', 'login', 'No account text', 'Don''t have an account?', '2025-10-27 17:18:04'),
(15291, 'en', 'login', 'Security message', 'Your information is secure and encrypted', '2025-10-27 17:18:04'),
(15292, 'en', 'login', 'Forgot subtitle', 'Enter your email address and we''ll send you instructions to reset your password', '2025-10-27 17:18:04'),
(15293, 'en', 'login', 'Verification', 'Verification', '2025-10-27 17:18:04'),
(15294, 'en', 'login', 'Enter the code', 'Enter the code', '2025-10-27 17:18:04'),
(15295, 'en', 'login', 'Remember password text', 'Remember your password?', '2025-10-27 17:18:04'),
(15296, 'en', 'login', 'Email placeholder', '[email protected]', '2025-10-27 17:18:04'),
(15297, 'en', 'login', 'Sign In', 'Sign In', '2025-10-27 17:18:04'),
(15298, 'en', 'register', 'Register subtitle', 'Join us today and start optimizing your SEO', '2025-10-27 17:18:04'),
(15299, 'en', 'register', 'Subscription Details', 'Subscription Details', '2025-10-27 17:18:04'),
(15300, 'en', 'register', 'Account Information', 'Account Information', '2025-10-27 17:18:04'),
(15301, 'en', 'register', 'Personal Information', 'Personal Information', '2025-10-27 17:18:04'),
(15302, 'en', 'register', 'First name placeholder', 'First name', '2025-10-27 17:18:04'),
(15303, 'en', 'register', 'Last name placeholder', 'Last name', '2025-10-27 17:18:04'),
(15304, 'en', 'register', 'Already have account', 'Already have an account?', '2025-10-27 17:18:04'),
(15305, 'en', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-10-27 17:18:04'),
(15306, 'en', 'guest', 'Hero subtitle', 'World''s First Open Source SEO Control Panel for Multiple Websites', '2025-10-27 17:18:04'),
(15307, 'en', 'guest', 'Hero description', 'A complete open source SEO control panel for managing search engine optimization of your websites. SEO Panel is a powerful toolkit that includes the latest SEO tools to increase and track the performance of your websites.', '2025-10-27 17:18:04'),
(15308, 'en', 'guest', 'Login to Get Started', 'Login to Get Started', '2025-10-27 17:18:04'),
(15309, 'en', 'guest', 'View Demo', 'View Demo', '2025-10-27 17:18:04'),
(15310, 'en', 'guest', 'Powerful SEO Features', 'Powerful SEO Features', '2025-10-27 17:18:04'),
(15311, 'en', 'guest', 'Keyword Position Checker desc', 'Track your keyword rankings across multiple search engines with detailed daily reports and beautiful graphs.', '2025-10-27 17:18:04'),
(15312, 'en', 'guest', 'Backlinks Checker desc', 'Monitor the number of backlinks from major search engines and track your link building progress over time.', '2025-10-27 17:18:04'),
(15313, 'en', 'guest', 'Site Auditor desc', 'Audit all SEO factors of each page and generate XML, HTML, and TEXT sitemaps for search engines.', '2025-10-27 17:18:04'),
(15314, 'en', 'guest', 'Rank Checker desc', 'Check Google PageRank, Alexa Rank, and Moz Rank with comprehensive daily tracking and reporting.', '2025-10-27 17:18:04'),
(15315, 'en', 'guest', 'Search Engine Saturation desc', 'Find the number of indexed pages across different search engines and monitor your indexing progress.', '2025-10-27 17:18:04'),
(15316, 'en', 'guest', 'Plugin Architecture', 'Plugin Architecture', '2025-10-27 17:18:04'),
(15317, 'en', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful plugins including Article Submitter, Meta Tag Generator, and more.', '2025-10-27 17:18:04'),
(15318, 'en', 'guest', 'Directory Submission desc', 'Automatically submit your websites to major free and paid directories with status tracking.', '2025-10-27 17:18:04'),
(15319, 'en', 'guest', 'Social Media Integration', 'Social Media Integration', '2025-10-27 17:18:04'),
(15320, 'en', 'guest', 'Social Media Integration desc', 'Integrate with Google Analytics, Search Console, and social media platforms for comprehensive reporting.', '2025-10-27 17:18:04'),
(15321, 'en', 'guest', 'Why Choose SEO Panel?', 'Why Choose SEO Panel?', '2025-10-27 17:18:04'),
(15322, 'en', 'guest', '100% Open Source', '100% Open Source', '2025-10-27 17:18:04'),
(15323, 'en', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. Download, customize, and use without any restrictions.', '2025-10-27 17:18:04'),
(15324, 'en', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-10-27 17:18:04'),
(15325, 'en', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their websites.', '2025-10-27 17:18:04'),
(15326, 'en', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-10-27 17:18:04'),
(15327, 'en', 'guest', 'Highly Extensible desc', 'Easily develop and install custom plugins to extend functionality according to your needs.', '2025-10-27 17:18:04'),
(15328, 'en', 'guest', 'Multi-Website Support', 'Multi-Website Support', '2025-10-27 17:18:04'),
(15329, 'en', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited websites from a single control panel with centralized reporting.', '2025-10-27 17:18:04');
INSERT INTO `texts` VALUES
(15330, 'en', 'guest', 'Resources & Support', 'Resources & Support', '2025-10-27 17:18:04'),
(15331, 'en', 'guest', 'Download SEO Panel', 'Download SEO Panel', '2025-10-27 17:18:04'),
(15332, 'en', 'guest', 'Documentation', 'Documentation', '2025-10-27 17:18:04'),
(15333, 'en', 'guest', 'Get Support', 'Get Support', '2025-10-27 17:18:04'),
(15334, 'en', 'guest', 'Browse Plugins', 'Browse Plugins', '2025-10-27 17:18:04'),
(15335, 'en', 'guest', 'Contact Us', 'Contact Us', '2025-10-27 17:18:04'),
(15336, 'en', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-10-27 17:18:04'),
(15337, 'en', 'guest', 'Support Development', 'Support Development', '2025-10-27 17:18:04'),
(15338, 'en', 'dashboard', 'Keyword Statistics', 'Keyword Statistics', '2025-10-27 17:18:04'),
(15339, 'en', 'dashboard', 'Top 3', 'Top 3', '2025-10-27 17:18:04'),
(15340, 'en', 'dashboard', 'Top 10', 'Top 10', '2025-10-27 17:18:04'),
(15341, 'en', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-10-27 17:18:04'),
(15342, 'en', 'dashboard', 'Keyword Distribution by Rank', 'Keyword Distribution by Rank', '2025-10-27 17:18:04'),
(15343, 'en', 'dashboard', 'Keywords by Ranking Position', 'Keywords by Ranking Position', '2025-10-27 17:18:04'),
(15344, 'en', 'dashboard', 'Ranking Volatility', 'Ranking Volatility', '2025-10-27 17:18:04'),
(15345, 'en', 'dashboard', 'Keywords with most ranking fluctuations', 'Keywords with most ranking fluctuations', '2025-10-27 17:18:04'),
(15346, 'en', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile Keywords', '2025-10-27 17:18:04'),
(15347, 'en', 'dashboard', 'Volatility Score', 'Volatility Score', '2025-10-27 17:18:04'),
(15348, 'en', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility Score (Standard Deviation)', '2025-10-27 17:18:04'),
(15349, 'en', 'dashboard', 'Best Rank', 'Best Rank', '2025-10-27 17:18:04'),
(15350, 'en', 'dashboard', 'Worst Rank', 'Worst Rank', '2025-10-27 17:18:04'),
(15351, 'en', 'dashboard', 'Avg Rank', 'Avg Rank', '2025-10-27 17:18:04'),
(15352, 'en', 'dashboard', 'Trend', 'Trend', '2025-10-27 17:18:04'),
(15353, 'en', 'dashboard', 'Volatility', 'Volatility', '2025-10-27 17:18:04'),
(15354, 'en', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'Volatility data requires at least 2 ranking checks within the selected period.', '2025-10-27 17:18:04'),
(15355, 'en', 'dashboard', 'positions', 'positions', '2025-10-27 17:18:04'),
(15356, 'en', 'common', 'API Token', 'API Token', '2025-10-27 17:18:04'),
(15357, 'en', 'common', 'Spam Score', 'Spam Score', '2025-10-27 17:18:04'),
(15358, 'en', 'common', 'Metric', 'Metric', '2025-10-27 17:18:04'),
(15359, 'en', 'backlink', 'Backlink Count', 'Backlink Count', '2025-10-27 17:18:04'),
(15360, 'en', 'backlink', 'Domain Backlink Count', 'Domain Backlink Count', '2025-10-27 17:18:04'),
(15361, 'en', 'backlink', 'Domain Backlinks', 'Domain Backlinks', '2025-10-27 17:18:04'),
(15362, 'es', 'common', 'API Token', 'Token API', '2025-11-01 22:39:38'),
(15363, 'es', 'common', 'General', 'General', '2025-11-01 22:39:38'),
(15364, 'es', 'common', 'Invalid Url', 'URL inválida', '2025-11-01 22:39:38'),
(15365, 'es', 'common', 'Metric', 'Métrica', '2025-11-01 22:39:38'),
(15366, 'es', 'common', 'Number', 'Número', '2025-11-01 22:39:38'),
(15367, 'es', 'common', 'Range', 'Rango', '2025-11-01 22:39:38'),
(15368, 'es', 'common', 'Rankings', 'Rankings', '2025-11-01 22:39:38'),
(15369, 'es', 'common', 'reCAPTCHA verification failed', 'Verificación reCAPTCHA fallida', '2025-11-01 22:39:38'),
(15370, 'es', 'common', 'Source', 'Fuente', '2025-11-01 22:39:38'),
(15371, 'es', 'common', 'Spam Score', 'Puntuación de Spam', '2025-11-01 22:39:38'),
(15372, 'es', 'label', 'Access denied', 'Acceso denegado', '2025-11-01 22:39:38'),
(15373, 'es', 'label', 'Ago', 'Hace', '2025-11-01 22:39:38'),
(15374, 'es', 'label', 'Clear All', 'Limpiar todo', '2025-11-01 22:39:38'),
(15375, 'es', 'label', 'Clicks', 'Clics', '2025-11-01 22:39:38'),
(15376, 'es', 'label', 'Cookie', 'Cookie', '2025-11-01 22:39:38'),
(15377, 'es', 'label', 'Current', 'Actual', '2025-11-01 22:39:38'),
(15378, 'es', 'label', 'Day', 'Día', '2025-11-01 22:39:38'),
(15379, 'es', 'label', 'Days', 'Días', '2025-11-01 22:39:38'),
(15380, 'es', 'label', 'Desktop', 'Escritorio', '2025-11-01 22:39:38'),
(15381, 'es', 'label', 'Email Body', 'Cuerpo del correo', '2025-11-01 22:39:38'),
(15382, 'es', 'label', 'Fail', 'Fallo', '2025-11-01 22:39:38'),
(15383, 'es', 'label', 'Feature', 'Característica', '2025-11-01 22:39:38'),
(15384, 'es', 'label', 'Followers', 'Seguidores', '2025-11-01 22:39:38'),
(15385, 'es', 'label', 'Free', 'Gratis', '2025-11-01 22:39:38'),
(15386, 'es', 'label', 'From', 'De', '2025-11-01 22:39:38'),
(15387, 'es', 'label', 'Hour', 'Hora', '2025-11-01 22:39:38'),
(15388, 'es', 'label', 'Impressions', 'Impresiones', '2025-11-01 22:39:38'),
(15389, 'es', 'label', 'Just Now', 'Justo ahora', '2025-11-01 22:39:38'),
(15390, 'es', 'label', 'Likes', 'Me gusta', '2025-11-01 22:39:38'),
(15391, 'es', 'label', 'Minute', 'Minuto', '2025-11-01 22:39:38'),
(15392, 'es', 'label', 'Mobile', 'Móvil', '2025-11-01 22:39:38'),
(15393, 'es', 'label', 'Month', 'Mes', '2025-11-01 22:39:38'),
(15394, 'es', 'label', 'Months', 'Meses', '2025-11-01 22:39:38'),
(15395, 'es', 'label', 'Order By', 'Ordenar por', '2025-11-01 22:39:38'),
(15396, 'es', 'label', 'Overview', 'Resumen', '2025-11-01 22:39:38'),
(15397, 'es', 'label', 'Rating', 'Calificación', '2025-11-01 22:39:38'),
(15398, 'es', 'label', 'Read', 'Leer', '2025-11-01 22:39:38'),
(15399, 'es', 'label', 'Recent Activity', 'Actividad reciente', '2025-11-01 22:39:38'),
(15400, 'es', 'label', 'Reference', 'Referencia', '2025-11-01 22:39:38'),
(15401, 'es', 'label', 'Referer', 'Referente', '2025-11-01 22:39:38'),
(15402, 'es', 'label', 'Reviews', 'Reseñas', '2025-11-01 22:39:38'),
(15403, 'es', 'label', 'Second', 'Segundo', '2025-11-01 22:39:38'),
(15404, 'es', 'label', 'Select All', 'Seleccionar todo', '2025-11-01 22:39:38'),
(15405, 'es', 'label', 'Speed', 'Velocidad', '2025-11-01 22:39:38'),
(15406, 'es', 'label', 'Subject', 'Asunto', '2025-11-01 22:39:38'),
(15407, 'es', 'label', 'Success', 'Éxito', '2025-11-01 22:39:38'),
(15408, 'es', 'label', 'Syntax', 'Sintaxis', '2025-11-01 22:39:38'),
(15409, 'es', 'label', 'Theme', 'Tema', '2025-11-01 22:39:38'),
(15410, 'es', 'label', 'Type', 'Tipo', '2025-11-01 22:39:38'),
(15411, 'es', 'label', 'Week', 'Semana', '2025-11-01 22:39:38'),
(15412, 'es', 'label', 'Year', 'Año', '2025-11-01 22:39:38'),
(15413, 'es', 'analytics', 'Avg. Session Duration', 'Duración media de sesión', '2025-11-01 22:39:38'),
(15414, 'es', 'analytics', 'Bounce Rate', 'Tasa de rebote', '2025-11-01 22:39:38'),
(15415, 'es', 'analytics', 'New Users', 'Nuevos usuarios', '2025-11-01 22:39:38'),
(15416, 'es', 'analytics', 'Page Views', 'Páginas vistas', '2025-11-01 22:39:38'),
(15417, 'es', 'analytics', 'Pages / Session', 'Páginas por sesión', '2025-11-01 22:39:38'),
(15418, 'es', 'analytics', 'Sessions', 'Sesiones', '2025-11-01 22:39:38'),
(15419, 'es', 'analytics', 'Users', 'Usuarios', '2025-11-01 22:39:38'),
(15420, 'es', 'backlink', 'Backlink Count', 'Recuento de backlinks', '2025-11-01 22:39:38'),
(15421, 'es', 'backlink', 'Domain Backlink Count', 'Recuento de backlinks del dominio', '2025-11-01 22:39:38'),
(15422, 'es', 'backlink', 'Domain Backlinks', 'Backlinks del dominio', '2025-11-01 22:39:38'),
(15423, 'es', 'dashboard', 'Avg Rank', 'Rango promedio', '2025-11-01 22:39:38'),
(15424, 'es', 'dashboard', 'Best Rank', 'Mejor rango', '2025-11-01 22:39:38'),
(15425, 'es', 'dashboard', 'Keyword Distribution by Rank', 'Distribución de palabras clave por rango', '2025-11-01 22:39:38'),
(15426, 'es', 'dashboard', 'Keyword Statistics', 'Estadísticas de palabras clave', '2025-11-01 22:39:38'),
(15427, 'es', 'dashboard', 'Keywords by Ranking Position', 'Palabras clave por posición de ranking', '2025-11-01 22:39:38'),
(15428, 'es', 'dashboard', 'Keywords with most ranking fluctuations', 'Palabras clave con más fluctuaciones de ranking', '2025-11-01 22:39:38'),
(15429, 'es', 'dashboard', 'Not Ranked', 'Sin clasificar', '2025-11-01 22:39:38'),
(15430, 'es', 'dashboard', 'positions', 'posiciones', '2025-11-01 22:39:38'),
(15431, 'es', 'dashboard', 'Ranking Volatility', 'Volatilidad del ranking', '2025-11-01 22:39:38'),
(15432, 'es', 'dashboard', 'Top 10', 'Top 10', '2025-11-01 22:39:38'),
(15433, 'es', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 palabras clave más volátiles', '2025-11-01 22:39:38'),
(15434, 'es', 'dashboard', 'Top 3', 'Top 3', '2025-11-01 22:39:38'),
(15435, 'es', 'dashboard', 'Trend', 'Tendencia', '2025-11-01 22:39:38'),
(15436, 'es', 'dashboard', 'Volatility', 'Volatilidad', '2025-11-01 22:39:38'),
(15437, 'es', 'dashboard', 'Volatility Score', 'Puntuación de volatilidad', '2025-11-01 22:39:38'),
(15438, 'es', 'dashboard', 'Worst Rank', 'Peor rango', '2025-11-01 22:39:38'),
(15439, 'es', 'keyword', 'Keyword Ranking Trends', 'Tendencias de ranking de palabras clave', '2025-11-01 22:39:38'),
(15440, 'es', 'keyword', 'Keywords Tracked', 'Palabras clave rastreadas', '2025-11-01 22:39:38'),
(15441, 'es', 'keyword', 'Ranking Trends', 'Tendencias de ranking', '2025-11-01 22:39:38'),
(15442, 'es', 'keyword', 'Top Keywords', 'Principales palabras clave', '2025-11-01 22:39:38'),
(15443, 'es', 'login', 'Email placeholder', '[email protected]', '2025-11-01 22:39:38'),
(15444, 'es', 'login', 'Enter the code', 'Ingrese el código', '2025-11-01 22:39:38'),
(15445, 'es', 'login', 'Forgot subtitle', 'Ingrese su dirección de correo electrónico y le enviaremos instrucciones para restablecer su contraseña', '2025-11-01 22:39:38'),
(15446, 'es', 'login', 'No account text', '¿No tiene una cuenta?', '2025-11-01 22:39:38'),
(15447, 'es', 'login', 'Password placeholder', 'Ingrese su contraseña', '2025-11-01 22:39:38'),
(15448, 'es', 'login', 'Remember password text', '¿Recuerda su contraseña?', '2025-11-01 22:39:38'),
(15449, 'es', 'login', 'Security message', 'Su información está segura y encriptada', '2025-11-01 22:39:38'),
(15450, 'es', 'login', 'Sign In', 'Iniciar sesión', '2025-11-01 22:39:38'),
(15451, 'es', 'login', 'Username placeholder', 'Ingrese su nombre de usuario', '2025-11-01 22:39:38'),
(15452, 'es', 'login', 'Verification', 'Verificación', '2025-11-01 22:39:38'),
(15453, 'es', 'login', 'Welcome message', '¡Bienvenido de nuevo! Por favor inicie sesión en su cuenta', '2025-11-01 22:39:38'),
(15454, 'es', 'register', 'Account Information', 'Información de la cuenta', '2025-11-01 22:39:38'),
(15455, 'es', 'register', 'Already have account', '¿Ya tiene una cuenta?', '2025-11-01 22:39:38'),
(15456, 'es', 'register', 'First name placeholder', 'Nombre', '2025-11-01 22:39:38'),
(15457, 'es', 'register', 'Last name placeholder', 'Apellido', '2025-11-01 22:39:38'),
(15458, 'es', 'register', 'Personal Information', 'Información personal', '2025-11-01 22:39:38'),
(15459, 'es', 'register', 'Register subtitle', 'Únase hoy y comience a optimizar su SEO', '2025-11-01 22:39:38'),
(15460, 'es', 'register', 'Subscription Details', 'Detalles de suscripción', '2025-11-01 22:39:38'),
(15461, 'es', 'website', 'Google Analytics Property', 'Propiedad de Google Analytics', '2025-11-01 22:39:38'),
(15462, 'es', 'website', 'Sync Google Analytics Properties', 'Sincronizar propiedades de Google Analytics', '2025-11-01 22:39:38'),
(15463, 'es', 'button', 'Add New', 'Agregar nuevo', '2025-11-01 22:39:38'),
(15464, 'es', 'button', 'Apply', 'Aplicar', '2025-11-01 22:39:38'),
(15465, 'es', 'button', 'Back', 'Volver', '2025-11-01 22:39:38'),
(15466, 'es', 'button', 'Clear', 'Limpiar', '2025-11-01 22:39:38'),
(15467, 'es', 'button', 'Close', 'Cerrar', '2025-11-01 22:39:38'),
(15468, 'es', 'button', 'Download', 'Descargar', '2025-11-01 22:39:38'),
(15469, 'es', 'button', 'Export', 'Exportar', '2025-11-01 22:39:38'),
(15470, 'es', 'button', 'Filter', 'Filtrar', '2025-11-01 22:39:38'),
(15471, 'es', 'button', 'Refresh', 'Actualizar', '2025-11-01 22:39:38'),
(15472, 'es', 'settings', 'Advanced', 'Avanzado', '2025-11-01 22:39:38'),
(15473, 'es', 'settings', 'Configuration', 'Configuración', '2025-11-01 22:39:38'),
(15474, 'es', 'settings', 'Preferences', 'Preferencias', '2025-11-01 22:39:38'),
(15475, 'pt', 'common', 'API Token', 'Token da API', '2025-11-01 22:39:38'),
(15476, 'pt', 'common', 'General', 'Geral', '2025-11-01 22:39:38'),
(15477, 'pt', 'common', 'Invalid Url', 'URL inválido', '2025-11-01 22:39:38'),
(15478, 'pt', 'common', 'Metric', 'Métrica', '2025-11-01 22:39:38'),
(15479, 'pt', 'common', 'Number', 'Número', '2025-11-01 22:39:38'),
(15480, 'pt', 'common', 'Range', 'Intervalo', '2025-11-01 22:39:38'),
(15481, 'pt', 'common', 'Rankings', 'Rankings', '2025-11-01 22:39:38'),
(15482, 'pt', 'common', 'Source', 'Fonte', '2025-11-01 22:39:38'),
(15483, 'pt', 'common', 'Spam Score', 'Pontuação de Spam', '2025-11-01 22:39:38'),
(15484, 'pt', 'label', 'Ago', 'Atrás', '2025-11-01 22:43:59'),
(15485, 'pt', 'label', 'Clicks', 'Cliques', '2025-11-01 22:44:47'),
(15486, 'pt', 'label', 'Day', 'Dia', '2025-11-01 22:46:08'),
(15487, 'pt', 'label', 'Days', 'Dias', '2025-11-01 22:46:08'),
(15488, 'pt', 'label', 'Email Body', 'Corpo do email', '2025-11-01 22:46:46'),
(15489, 'pt', 'label', 'Feature', 'Recurso', '2025-11-01 22:47:10'),
(15490, 'pt', 'label', 'Followers', 'Seguidores', '2025-11-01 22:47:10'),
(15491, 'pt', 'label', 'From', 'De', '2025-11-01 22:47:50'),
(15492, 'pt', 'label', 'Hour', 'Hora', '2025-11-01 22:47:50'),
(15493, 'pt', 'label', 'Impressions', 'Impressões', '2025-11-01 22:47:50'),
(15494, 'pt', 'label', 'Just Now', 'Agora mesmo', '2025-11-01 22:47:50'),
(15495, 'pt', 'label', 'Likes', 'Curtidas', '2025-11-01 22:47:50'),
(15496, 'pt', 'label', 'Minute', 'Minuto', '2025-11-01 22:47:50'),
(15497, 'pt', 'label', 'Month', 'Mês', '2025-11-01 22:48:03'),
(15498, 'pt', 'label', 'Months', 'Meses', '2025-11-01 22:48:03'),
(15499, 'pt', 'label', 'Overview', 'Visão Geral', '2025-11-01 22:48:13'),
(15500, 'pt', 'label', 'Rating', 'Avaliação', '2025-11-01 22:48:13'),
(15501, 'pt', 'label', 'Read', 'Ler', '2025-11-01 22:48:13'),
(15502, 'pt', 'label', 'Recent Activity', 'Atividade recente', '2025-11-01 22:48:13'),
(15503, 'pt', 'label', 'Reviews', 'Avaliações', '2025-11-01 22:48:25'),
(15504, 'pt', 'label', 'Second', 'Segundo', '2025-11-01 22:48:25'),
(15505, 'pt', 'label', 'Week', 'Semana', '2025-11-01 22:49:24'),
(15506, 'pt', 'label', 'Year', 'Ano', '2025-11-01 22:49:24'),
(15507, 'pt', 'analytics', 'Avg. Session Duration', 'Duração média da sessão', '2025-11-01 22:50:01'),
(15508, 'pt', 'analytics', 'Bounce Rate', 'Taxa de rejeição', '2025-11-01 22:50:01'),
(15509, 'pt', 'analytics', 'New Users', 'Novos usuários', '2025-11-01 22:50:01'),
(15510, 'pt', 'analytics', 'Page Views', 'Visualizações de página', '2025-11-01 22:50:01'),
(15511, 'pt', 'analytics', 'Sessions', 'Sessões', '2025-11-01 22:50:01'),
(15512, 'pt', 'analytics', 'Users', 'Usuários', '2025-11-01 22:50:01'),
(15513, 'pt', 'backlink', 'Backlink Count', 'Contagem de backlinks', '2025-11-01 22:50:01'),
(15514, 'pt', 'backlink', 'Domain Backlinks', 'Backlinks do domínio', '2025-11-01 22:50:01'),
(15515, 'pt', 'dashboard', 'Avg Rank', 'Classificação média', '2025-11-01 22:50:01'),
(15516, 'pt', 'dashboard', 'Best Rank', 'Melhor classificação', '2025-11-01 22:50:01'),
(15517, 'pt', 'dashboard', 'Not Ranked', 'Não classificado', '2025-11-01 22:50:01'),
(15518, 'pt', 'dashboard', 'Top 10', 'Top 10', '2025-11-01 22:50:01'),
(15519, 'pt', 'dashboard', 'Top 3', 'Top 3', '2025-11-01 22:50:01'),
(15520, 'pt', 'dashboard', 'Trend', 'Tendência', '2025-11-01 22:50:01'),
(15521, 'pt', 'dashboard', 'Volatility', 'Volatilidade', '2025-11-01 22:50:01'),
(15522, 'pt', 'dashboard', 'Worst Rank', 'Pior classificação', '2025-11-01 22:50:01'),
(15523, 'pt', 'keyword', 'Keywords Tracked', 'Palavras-chave rastreadas', '2025-11-01 22:50:01'),
(15524, 'pt', 'keyword', 'Top Keywords', 'Principais palavras-chave', '2025-11-01 22:50:01'),
(15525, 'pt', 'login', 'Email placeholder', '[email protected]', '2025-11-01 22:50:01'),
(15526, 'pt', 'login', 'Enter the code', 'Digite o código', '2025-11-01 22:50:01'),
(15527, 'pt', 'login', 'No account text', 'Não tem uma conta?', '2025-11-01 22:50:01'),
(15528, 'pt', 'login', 'Password placeholder', 'Digite sua senha', '2025-11-01 22:50:01'),
(15529, 'pt', 'login', 'Sign In', 'Entrar', '2025-11-01 22:50:01'),
(15530, 'pt', 'login', 'Username placeholder', 'Digite seu nome de usuário', '2025-11-01 22:50:01'),
(15531, 'pt', 'login', 'Verification', 'Verificação', '2025-11-01 22:50:01'),
(15532, 'pt', 'login', 'Welcome message', 'Bem-vindo de volta! Por favor, faça login na sua conta', '2025-11-01 22:50:01'),
(15533, 'pt', 'register', 'Account Information', 'Informações da conta', '2025-11-01 22:50:01'),
(15534, 'pt', 'register', 'Already have account', 'Já tem uma conta?', '2025-11-01 22:50:01'),
(15535, 'pt', 'register', 'First name placeholder', 'Nome', '2025-11-01 22:50:01'),
(15536, 'pt', 'register', 'Last name placeholder', 'Sobrenome', '2025-11-01 22:50:01'),
(15537, 'pt', 'register', 'Personal Information', 'Informações pessoais', '2025-11-01 22:50:01'),
(15538, 'pt', 'website', 'Google Analytics Property', 'Propriedade do Google Analytics', '2025-11-01 22:50:01'),
(15539, 'pt', 'button', 'Add New', 'Adicionar novo', '2025-11-01 22:50:01'),
(15540, 'pt', 'button', 'Apply', 'Aplicar', '2025-11-01 22:50:01'),
(15541, 'pt', 'button', 'Back', 'Voltar', '2025-11-01 22:50:01'),
(15542, 'pt', 'button', 'Clear', 'Limpar', '2025-11-01 22:50:01'),
(15543, 'pt', 'button', 'Close', 'Fechar', '2025-11-01 22:50:01'),
(15544, 'pt', 'button', 'Download', 'Baixar', '2025-11-01 22:50:01'),
(15545, 'pt', 'button', 'Export', 'Exportar', '2025-11-01 22:50:01'),
(15546, 'pt', 'button', 'Filter', 'Filtrar', '2025-11-01 22:50:01'),
(15547, 'pt', 'button', 'Refresh', 'Atualizar', '2025-11-01 22:50:01'),
(15548, 'it', 'common', 'API Token', 'Token API', '2025-11-01 22:50:45'),
(15549, 'it', 'common', 'Invalid Url', 'URL non valido', '2025-11-01 22:50:59'),
(15550, 'it', 'common', 'Metric', 'Metrica', '2025-11-01 22:50:59'),
(15551, 'it', 'common', 'Number', 'Numero', '2025-11-01 22:50:59'),
(15552, 'it', 'common', 'Range', 'Intervallo', '2025-11-01 22:50:59'),
(15553, 'it', 'common', 'Rankings', 'Classifiche', '2025-11-01 22:50:59'),
(15554, 'it', 'common', 'Spam Score', 'Punteggio Spam', '2025-11-01 22:51:06'),
(15555, 'it', 'label', 'Recent Activity', 'Attività recente', '2025-11-01 22:56:21'),
(15556, 'it', 'analytics', 'Avg. Session Duration', 'Durata media sessione', '2025-11-01 22:56:21'),
(15557, 'it', 'analytics', 'Page Views', 'Visualizzazioni pagina', '2025-11-01 22:56:21'),
(15558, 'it', 'dashboard', 'Avg Rank', 'Posizione media', '2025-11-01 22:56:21'),
(15559, 'it', 'dashboard', 'Best Rank', 'Migliore posizione', '2025-11-01 22:56:21'),
(15560, 'it', 'dashboard', 'Not Ranked', 'Non classificato', '2025-11-01 22:56:21'),
(15561, 'it', 'dashboard', 'Top 10', 'Top 10', '2025-11-01 22:56:21'),
(15562, 'it', 'dashboard', 'Top 3', 'Top 3', '2025-11-01 22:56:21'),
(15563, 'it', 'dashboard', 'Trend', 'Tendenza', '2025-11-01 22:56:21'),
(15564, 'it', 'dashboard', 'Volatility', 'Volatilità', '2025-11-01 22:56:21'),
(15565, 'it', 'dashboard', 'Worst Rank', 'Peggiore posizione', '2025-11-01 22:56:21'),
(15566, 'it', 'keyword', 'Keywords Tracked', 'Parole chiave tracciate', '2025-11-01 22:56:21'),
(15567, 'it', 'keyword', 'Top Keywords', 'Parole chiave principali', '2025-11-01 22:56:21'),
(15568, 'it', 'login', 'Email placeholder', '[email protected]', '2025-11-01 22:56:21'),
(15569, 'it', 'login', 'Enter the code', 'Inserisci il codice', '2025-11-01 22:56:21'),
(15570, 'it', 'login', 'No account text', 'Non hai un account?', '2025-11-01 22:56:21'),
(15571, 'it', 'login', 'Password placeholder', 'Inserisci la password', '2025-11-01 22:56:21'),
(15572, 'it', 'login', 'Sign In', 'Accedi', '2025-11-01 22:56:21'),
(15573, 'it', 'login', 'Username placeholder', 'Inserisci nome utente', '2025-11-01 22:56:21'),
(15574, 'it', 'login', 'Verification', 'Verifica', '2025-11-01 22:56:21'),
(15575, 'it', 'login', 'Welcome message', 'Bentornato! Accedi al tuo account', '2025-11-01 22:56:21'),
(15576, 'it', 'register', 'Account Information', 'Informazioni account', '2025-11-01 22:56:21'),
(15577, 'it', 'register', 'Already have account', 'Hai già un account?', '2025-11-01 22:56:21'),
(15578, 'it', 'register', 'First name placeholder', 'Nome', '2025-11-01 22:56:21'),
(15579, 'it', 'register', 'Last name placeholder', 'Cognome', '2025-11-01 22:56:21'),
(15580, 'it', 'register', 'Personal Information', 'Informazioni personali', '2025-11-01 22:56:21'),
(15581, 'it', 'button', 'Add New', 'Aggiungi nuovo', '2025-11-01 22:56:21'),
(15582, 'it', 'button', 'Apply', 'Applica', '2025-11-01 22:56:21'),
(15583, 'it', 'button', 'Back', 'Indietro', '2025-11-01 22:56:21'),
(15584, 'it', 'button', 'Clear', 'Cancella', '2025-11-01 22:56:21'),
(15585, 'it', 'button', 'Close', 'Chiudi', '2025-11-01 22:56:21'),
(15586, 'it', 'button', 'Download', 'Scarica', '2025-11-01 22:56:21'),
(15587, 'it', 'button', 'Export', 'Esporta', '2025-11-01 22:56:21'),
(15588, 'it', 'button', 'Filter', 'Filtra', '2025-11-01 22:56:21'),
(15589, 'it', 'button', 'Refresh', 'Aggiorna', '2025-11-01 22:56:21'),
(15590, 'pt-br', 'common', 'API Token', 'Token da API', '2025-11-01 22:58:16'),
(15591, 'pt-br', 'common', 'General', 'Geral', '2025-11-01 22:58:16'),
(15592, 'pt-br', 'common', 'Invalid Url', 'URL inválida', '2025-11-01 22:58:16'),
(15593, 'pt-br', 'common', 'Metric', 'Métrica', '2025-11-01 22:58:16'),
(15594, 'pt-br', 'common', 'Number', 'Número', '2025-11-01 22:58:16'),
(15595, 'pt-br', 'common', 'Range', 'Intervalo', '2025-11-01 22:58:16'),
(15596, 'pt-br', 'common', 'Rankings', 'Rankings', '2025-11-01 22:58:16'),
(15597, 'pt-br', 'common', 'Spam Score', 'Pontuação de Spam', '2025-11-01 22:58:16'),
(15598, 'pt-br', 'label', 'Ago', 'Atrás', '2025-11-01 22:58:16'),
(15599, 'pt-br', 'label', 'Day', 'Dia', '2025-11-01 22:58:16'),
(15600, 'pt-br', 'label', 'Followers', 'Seguidores', '2025-11-01 22:58:16'),
(15601, 'pt-br', 'label', 'Hour', 'Hora', '2025-11-01 22:58:16'),
(15602, 'pt-br', 'label', 'Just Now', 'Agora mesmo', '2025-11-01 22:58:16'),
(15603, 'pt-br', 'label', 'Likes', 'Curtidas', '2025-11-01 22:58:16'),
(15604, 'pt-br', 'label', 'Month', 'Mês', '2025-11-01 22:58:16'),
(15605, 'pt-br', 'label', 'Overview', 'Visão Geral', '2025-11-01 22:58:16'),
(15606, 'pt-br', 'label', 'Recent Activity', 'Atividade recente', '2025-11-01 22:58:16'),
(15607, 'pt-br', 'label', 'Reviews', 'Avaliações', '2025-11-01 22:58:16'),
(15608, 'pt-br', 'dashboard', 'Avg Rank', 'Posição média', '2025-11-01 22:58:16'),
(15609, 'pt-br', 'dashboard', 'Best Rank', 'Melhor posição', '2025-11-01 22:58:16'),
(15610, 'pt-br', 'dashboard', 'Top 10', 'Top 10', '2025-11-01 22:58:16'),
(15611, 'pt-br', 'dashboard', 'Trend', 'Tendência', '2025-11-01 22:58:16'),
(15612, 'pt-br', 'login', 'Email placeholder', '[email protected]', '2025-11-01 22:58:16'),
(15613, 'pt-br', 'login', 'Sign In', 'Entrar', '2025-11-01 22:58:16'),
(15614, 'pt-br', 'login', 'Welcome message', 'Bem-vindo! Faça login na sua conta', '2025-11-01 22:58:16'),
(15615, 'pt-br', 'button', 'Apply', 'Aplicar', '2025-11-01 22:58:16'),
(15616, 'pt-br', 'button', 'Clear', 'Limpar', '2025-11-01 22:58:16'),
(15617, 'pt-br', 'button', 'Download', 'Baixar', '2025-11-01 22:58:16'),
(15618, 'pt-br', 'button', 'Export', 'Exportar', '2025-11-01 22:58:16'),
(15619, 'tr', 'common', 'API Token', 'API Jetonu', '2025-11-01 22:58:16'),
(15620, 'tr', 'common', 'General', 'Genel', '2025-11-01 22:58:16'),
(15621, 'tr', 'common', 'Invalid Url', 'Geçersiz URL', '2025-11-01 22:58:16'),
(15622, 'tr', 'common', 'Metric', 'Metrik', '2025-11-01 22:58:16'),
(15623, 'tr', 'common', 'Number', 'Numara', '2025-11-01 22:58:16'),
(15624, 'tr', 'common', 'Range', 'Aralık', '2025-11-01 22:58:16'),
(15625, 'tr', 'common', 'Rankings', 'Sıralamalar', '2025-11-01 22:58:16'),
(15626, 'tr', 'common', 'Spam Score', 'Spam Puanı', '2025-11-01 22:58:16'),
(15627, 'tr', 'label', 'Access denied', 'Erişim reddedildi', '2025-11-01 22:58:16'),
(15628, 'tr', 'label', 'Ago', 'Önce', '2025-11-01 22:58:16'),
(15629, 'tr', 'label', 'Clicks', 'Tıklamalar', '2025-11-01 22:58:16'),
(15630, 'tr', 'label', 'Day', 'Gün', '2025-11-01 22:58:16'),
(15631, 'tr', 'label', 'Days', 'Günler', '2025-11-01 22:58:16'),
(15632, 'tr', 'label', 'Desktop', 'Masaüstü', '2025-11-01 22:58:16'),
(15633, 'tr', 'label', 'Fail', 'Başarısız', '2025-11-01 22:58:16'),
(15634, 'tr', 'label', 'Feature', 'Özellik', '2025-11-01 22:58:16'),
(15635, 'tr', 'label', 'Followers', 'Takipçiler', '2025-11-01 22:58:16'),
(15636, 'tr', 'label', 'Free', 'Ücretsiz', '2025-11-01 22:58:16'),
(15637, 'tr', 'label', 'Hour', 'Saat', '2025-11-01 22:58:16'),
(15638, 'tr', 'label', 'Impressions', 'Gösterimler', '2025-11-01 22:58:16'),
(15639, 'tr', 'label', 'Just Now', 'Şimdi', '2025-11-01 22:58:16'),
(15640, 'tr', 'label', 'Likes', 'Beğeniler', '2025-11-01 22:58:16'),
(15641, 'tr', 'label', 'Mobile', 'Mobil', '2025-11-01 22:58:16'),
(15642, 'tr', 'label', 'Month', 'Ay', '2025-11-01 22:58:16'),
(15643, 'tr', 'label', 'Overview', 'Genel Bakış', '2025-11-01 22:58:16'),
(15644, 'tr', 'label', 'Recent Activity', 'Son Aktivite', '2025-11-01 22:58:16'),
(15645, 'tr', 'label', 'Speed', 'Hız', '2025-11-01 22:58:16'),
(15646, 'tr', 'label', 'Success', 'Başarılı', '2025-11-01 22:58:16'),
(15647, 'tr', 'label', 'Type', 'Tür', '2025-11-01 22:58:16'),
(15648, 'tr', 'label', 'Week', 'Hafta', '2025-11-01 22:58:16'),
(15649, 'tr', 'label', 'Year', 'Yıl', '2025-11-01 22:58:16'),
(15650, 'tr', 'dashboard', 'Avg Rank', 'Ortalama Sıra', '2025-11-01 22:58:16'),
(15651, 'tr', 'dashboard', 'Best Rank', 'En İyi Sıra', '2025-11-01 22:58:16'),
(15652, 'tr', 'dashboard', 'Top 10', 'İlk 10', '2025-11-01 22:58:16'),
(15653, 'tr', 'dashboard', 'Trend', 'Trend', '2025-11-01 22:58:16'),
(15654, 'tr', 'login', 'Sign In', 'Giriş Yap', '2025-11-01 22:58:16'),
(15655, 'tr', 'login', 'Welcome message', 'Hoş geldiniz! Lütfen hesabınıza giriş yapın', '2025-11-01 22:58:16'),
(15656, 'tr', 'button', 'Apply', 'Uygula', '2025-11-01 22:58:16'),
(15657, 'tr', 'button', 'Clear', 'Temizle', '2025-11-01 22:58:16'),
(15658, 'tr', 'button', 'Download', 'İndir', '2025-11-01 22:58:16'),
(15659, 'tr', 'button', 'Export', 'Dışa Aktar', '2025-11-01 22:58:16'),
(15660, 'tr', 'button', 'Filter', 'Filtrele', '2025-11-01 22:58:16'),
(15661, 'tr', 'button', 'Refresh', 'Yenile', '2025-11-01 22:58:16'),
(15662, 'el', 'common', 'API Token', 'Κλειδί API', '2025-11-01 22:58:16'),
(15663, 'el', 'common', 'Invalid Url', 'Μη έγκυρη διεύθυνση URL', '2025-11-01 22:58:16'),
(15664, 'el', 'common', 'Metric', 'Μέτρηση', '2025-11-01 22:58:16'),
(15665, 'el', 'common', 'Number', 'Αριθμός', '2025-11-01 22:58:16'),
(15666, 'el', 'common', 'Range', 'Εύρος', '2025-11-01 22:58:16'),
(15667, 'el', 'common', 'Rankings', 'Κατατάξεις', '2025-11-01 22:58:16'),
(15668, 'el', 'common', 'reCAPTCHA verification failed', 'Η επαλήθευση reCAPTCHA απέτυχε', '2025-11-01 22:58:16'),
(15669, 'el', 'common', 'Spam Score', 'Βαθμολογία Spam', '2025-11-01 22:58:16'),
(15670, 'el', 'label', 'From', 'Από', '2025-11-01 22:58:16'),
(15671, 'el', 'label', 'Read', 'Ανάγνωση', '2025-11-01 22:58:16'),
(15672, 'el', 'label', 'Recent Activity', 'Πρόσφατη δραστηριότητα', '2025-11-01 22:58:16'),
(15673, 'el', 'label', 'Write', 'Γράψιμο', '2025-11-01 22:58:16'),
(15674, 'el', 'login', 'Email placeholder', '[email protected]', '2025-11-01 22:58:16'),
(15675, 'el', 'login', 'Enter the code', 'Εισαγάγετε τον κωδικό', '2025-11-01 22:58:16'),
(15676, 'el', 'login', 'No account text', 'Δεν έχετε λογαριασμό;', '2025-11-01 22:58:16'),
(15677, 'el', 'login', 'Password placeholder', 'Εισαγάγετε τον κωδικό σας', '2025-11-01 22:58:16'),
(15678, 'el', 'login', 'Sign In', 'Σύνδεση', '2025-11-01 22:58:16'),
(15679, 'el', 'login', 'Username placeholder', 'Εισαγάγετε το όνομα χρήστη', '2025-11-01 22:58:16'),
(15680, 'el', 'login', 'Verification', 'Επαλήθευση', '2025-11-01 22:58:16'),
(15681, 'el', 'login', 'Welcome message', 'Καλώς ήρθατε! Συνδεθείτε στον λογαριασμό σας', '2025-11-01 22:58:16'),
(15682, 'el', 'dashboard', 'Avg Rank', 'Μέση θέση', '2025-11-01 22:58:16'),
(15683, 'el', 'dashboard', 'Best Rank', 'Καλύτερη θέση', '2025-11-01 22:58:16'),
(15684, 'el', 'dashboard', 'Keyword Statistics', 'Στατιστικά λέξεων-κλειδιών', '2025-11-01 22:58:16'),
(15685, 'el', 'dashboard', 'Not Ranked', 'Χωρίς κατάταξη', '2025-11-01 22:58:16'),
(15686, 'el', 'dashboard', 'Top 10', 'Κορυφαία 10', '2025-11-01 22:58:16'),
(15687, 'el', 'dashboard', 'Top 3', 'Κορυφαία 3', '2025-11-01 22:58:16'),
(15688, 'el', 'dashboard', 'Trend', 'Τάση', '2025-11-01 22:58:16'),
(15689, 'el', 'dashboard', 'Volatility', 'Μεταβλητότητα', '2025-11-01 22:58:16'),
(15690, 'el', 'dashboard', 'Worst Rank', 'Χειρότερη θέση', '2025-11-01 22:58:16'),
(15691, 'el', 'button', 'Apply', 'Εφαρμογή', '2025-11-01 22:58:16'),
(15692, 'el', 'button', 'Clear', 'Εκκαθάριση', '2025-11-01 22:58:16'),
(15693, 'el', 'button', 'Download', 'Λήψη', '2025-11-01 22:58:16'),
(15694, 'el', 'button', 'Export', 'Εξαγωγή', '2025-11-01 22:58:16'),
(15695, 'el', 'button', 'Filter', 'Φίλτρο', '2025-11-01 22:58:16'),
(15696, 'el', 'button', 'Refresh', 'Ανανέωση', '2025-11-01 22:58:16'),
(15697, 'pl', 'common', 'API Token', 'Token API', '2025-11-01 22:58:16'),
(15698, 'pl', 'common', 'General', 'Ogólne', '2025-11-01 22:58:16'),
(15699, 'pl', 'common', 'Invalid Url', 'Nieprawidłowy URL', '2025-11-01 22:58:16'),
(15700, 'pl', 'common', 'Metric', 'Metryka', '2025-11-01 22:58:16'),
(15701, 'pl', 'common', 'Number', 'Numer', '2025-11-01 22:58:16'),
(15702, 'pl', 'common', 'Range', 'Zakres', '2025-11-01 22:58:16'),
(15703, 'pl', 'common', 'Rankings', 'Rankingi', '2025-11-01 22:58:16'),
(15704, 'pl', 'common', 'reCAPTCHA verification failed', 'Weryfikacja reCAPTCHA nie powiodła się', '2025-11-01 22:58:16'),
(15705, 'pl', 'common', 'Source', 'Źródło', '2025-11-01 22:58:16'),
(15706, 'pl', 'common', 'Spam Score', 'Wynik spamu', '2025-11-01 22:58:16'),
(15707, 'pl', 'label', 'Access denied', 'Odmowa dostępu', '2025-11-01 22:58:16'),
(15708, 'pl', 'label', 'Ago', 'temu', '2025-11-01 22:58:16'),
(15709, 'pl', 'label', 'Clicks', 'Kliknięcia', '2025-11-01 22:58:16'),
(15710, 'pl', 'label', 'Day', 'dzień', '2025-11-01 22:58:16'),
(15711, 'pl', 'label', 'Days', 'dni', '2025-11-01 22:58:16'),
(15712, 'pl', 'label', 'Desktop', 'Pulpit', '2025-11-01 22:58:16'),
(15713, 'pl', 'label', 'Email Body', 'Treść e-maila', '2025-11-01 22:58:16'),
(15714, 'pl', 'label', 'Feature', 'Funkcja', '2025-11-01 22:58:16'),
(15715, 'pl', 'label', 'Followers', 'Obserwujący', '2025-11-01 22:58:16'),
(15716, 'pl', 'label', 'Free', 'Darmowy', '2025-11-01 22:58:16'),
(15717, 'pl', 'label', 'From', 'Od', '2025-11-01 22:58:16'),
(15718, 'pl', 'label', 'Hour', 'godzina', '2025-11-01 22:58:16'),
(15719, 'pl', 'label', 'Impressions', 'Wyświetlenia', '2025-11-01 22:58:16'),
(15720, 'pl', 'label', 'Just Now', 'Właśnie teraz', '2025-11-01 22:58:16'),
(15721, 'pl', 'label', 'Likes', 'Polubienia', '2025-11-01 22:58:16'),
(15722, 'pl', 'label', 'Minute', 'minuta', '2025-11-01 22:58:16'),
(15723, 'pl', 'label', 'Mobile', 'Mobilny', '2025-11-01 22:58:16'),
(15724, 'pl', 'label', 'Month', 'miesiąc', '2025-11-01 22:58:16'),
(15725, 'pl', 'label', 'Months', 'miesiące', '2025-11-01 22:58:16'),
(15726, 'pl', 'label', 'Overview', 'Przegląd', '2025-11-01 22:58:16'),
(15727, 'pl', 'label', 'Rating', 'Ocena', '2025-11-01 22:58:16'),
(15728, 'pl', 'label', 'Read', 'Czytaj', '2025-11-01 22:58:16'),
(15729, 'pl', 'label', 'Recent Activity', 'Ostatnia aktywność', '2025-11-01 22:58:16'),
(15730, 'pl', 'label', 'Reviews', 'Recenzje', '2025-11-01 22:58:16'),
(15731, 'pl', 'label', 'Second', 'sekunda', '2025-11-01 22:58:16'),
(15732, 'pl', 'label', 'Speed', 'Szybkość', '2025-11-01 22:58:16'),
(15733, 'pl', 'label', 'Type', 'Typ', '2025-11-01 22:58:16'),
(15734, 'pl', 'label', 'Usability', 'Użyteczność', '2025-11-01 22:58:16'),
(15735, 'pl', 'label', 'Week', 'tydzień', '2025-11-01 22:58:16'),
(15736, 'pl', 'label', 'Write', 'Pisz', '2025-11-01 22:58:16'),
(15737, 'pl', 'label', 'Year', 'rok', '2025-11-01 22:58:16'),
(15738, 'pl', 'login', 'Email placeholder', '[email protected]', '2025-11-01 22:58:16'),
(15739, 'pl', 'login', 'Enter the code', 'Wprowadź kod', '2025-11-01 22:58:16'),
(15740, 'pl', 'login', 'No account text', 'Nie masz konta?', '2025-11-01 22:58:16'),
(15741, 'pl', 'login', 'Password placeholder', 'Wprowadź hasło', '2025-11-01 22:58:16'),
(15742, 'pl', 'login', 'Sign In', 'Zaloguj się', '2025-11-01 22:58:16'),
(15743, 'pl', 'login', 'Username placeholder', 'Wprowadź nazwę użytkownika', '2025-11-01 22:58:16'),
(15744, 'pl', 'login', 'Verification', 'Weryfikacja', '2025-11-01 22:58:16'),
(15745, 'pl', 'login', 'Welcome message', 'Witaj ponownie! Zaloguj się na swoje konto', '2025-11-01 22:58:16'),
(15746, 'pl', 'dashboard', 'Avg Rank', 'Średnia pozycja', '2025-11-01 22:58:16'),
(15747, 'pl', 'dashboard', 'Best Rank', 'Najlepsza pozycja', '2025-11-01 22:58:16'),
(15748, 'pl', 'dashboard', 'Not Ranked', 'Bez pozycji', '2025-11-01 22:58:16'),
(15749, 'pl', 'dashboard', 'Top 10', 'Top 10', '2025-11-01 22:58:16'),
(15750, 'pl', 'dashboard', 'Top 3', 'Top 3', '2025-11-01 22:58:16'),
(15751, 'pl', 'dashboard', 'Trend', 'Trend', '2025-11-01 22:58:16'),
(15752, 'pl', 'dashboard', 'Volatility', 'Zmienność', '2025-11-01 22:58:16'),
(15753, 'pl', 'dashboard', 'Worst Rank', 'Najgorsza pozycja', '2025-11-01 22:58:16'),
(15754, 'pl', 'analytics', 'Avg. Session Duration', 'Średni czas sesji', '2025-11-01 22:58:16'),
(15755, 'pl', 'analytics', 'Bounce Rate', 'Współczynnik odrzuceń', '2025-11-01 22:58:16'),
(15756, 'pl', 'analytics', 'New Users', 'Nowi użytkownicy', '2025-11-01 22:58:16'),
(15757, 'pl', 'analytics', 'Sessions', 'Sesje', '2025-11-01 22:58:16'),
(15758, 'pl', 'analytics', 'Users', 'Użytkownicy', '2025-11-01 22:58:16'),
(15759, 'pl', 'button', 'Apply', 'Zastosuj', '2025-11-01 22:58:16'),
(15760, 'pl', 'button', 'Clear', 'Wyczyść', '2025-11-01 22:58:16'),
(15761, 'pl', 'button', 'Download', 'Pobierz', '2025-11-01 22:58:16'),
(15762, 'pl', 'button', 'Export', 'Eksportuj', '2025-11-01 22:58:16'),
(15763, 'pl', 'button', 'Filter', 'Filtruj', '2025-11-01 22:58:16'),
(15764, 'pl', 'button', 'Refresh', 'Odśwież', '2025-11-01 22:58:16'),
(15765, 'nl', 'common', 'API Token', 'API Token', '2025-11-01 22:58:16'),
(15766, 'nl', 'common', 'General', 'Algemeen', '2025-11-01 22:58:16'),
(15767, 'nl', 'common', 'Invalid Url', 'Ongeldige URL', '2025-11-01 22:58:16'),
(15768, 'nl', 'common', 'Metric', 'Metriek', '2025-11-01 22:58:16'),
(15769, 'nl', 'common', 'Number', 'Nummer', '2025-11-01 22:58:16'),
(15770, 'nl', 'common', 'Range', 'Bereik', '2025-11-01 22:58:16'),
(15771, 'nl', 'common', 'Rankings', 'Rankings', '2025-11-01 22:58:16'),
(15772, 'nl', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA-verificatie mislukt', '2025-11-01 22:58:16'),
(15773, 'nl', 'common', 'Source', 'Bron', '2025-11-01 22:58:16'),
(15774, 'nl', 'common', 'Spam Score', 'Spamscore', '2025-11-01 22:58:16'),
(15775, 'nl', 'label', 'Access denied', 'Toegang geweigerd', '2025-11-01 22:58:16'),
(15776, 'nl', 'label', 'Ago', 'geleden', '2025-11-01 22:58:16'),
(15777, 'nl', 'label', 'Clicks', 'Klikken', '2025-11-01 22:58:16'),
(15778, 'nl', 'label', 'Cookie', 'Cookie', '2025-11-01 22:58:16'),
(15779, 'nl', 'label', 'Day', 'dag', '2025-11-01 22:58:16'),
(15780, 'nl', 'label', 'Days', 'dagen', '2025-11-01 22:58:16'),
(15781, 'nl', 'label', 'Desktop', 'Desktop', '2025-11-01 22:58:16'),
(15782, 'nl', 'label', 'Email Body', 'E-mailtekst', '2025-11-01 22:58:16'),
(15783, 'nl', 'label', 'Fail', 'Mislukt', '2025-11-01 22:58:16'),
(15784, 'nl', 'label', 'Feature', 'Functie', '2025-11-01 22:58:16'),
(15785, 'nl', 'label', 'Followers', 'Volgers', '2025-11-01 22:58:16'),
(15786, 'nl', 'label', 'Free', 'Gratis', '2025-11-01 22:58:16'),
(15787, 'nl', 'label', 'From', 'Van', '2025-11-01 22:58:16'),
(15788, 'nl', 'label', 'Hour', 'uur', '2025-11-01 22:58:16'),
(15789, 'nl', 'label', 'Impressions', 'Vertoningen', '2025-11-01 22:58:16'),
(15790, 'nl', 'label', 'Just Now', 'Zojuist', '2025-11-01 22:58:16'),
(15791, 'nl', 'label', 'Likes', 'Vind-ik-leuks', '2025-11-01 22:58:16'),
(15792, 'nl', 'label', 'Minute', 'minuut', '2025-11-01 22:58:16'),
(15793, 'nl', 'label', 'Mobile', 'Mobiel', '2025-11-01 22:58:16'),
(15794, 'nl', 'label', 'Month', 'maand', '2025-11-01 22:58:16'),
(15795, 'nl', 'label', 'Months', 'maanden', '2025-11-01 22:58:16'),
(15796, 'nl', 'label', 'Order By', 'Sorteren op', '2025-11-01 22:58:16'),
(15797, 'nl', 'label', 'Overview', 'Overzicht', '2025-11-01 22:58:16'),
(15798, 'nl', 'label', 'Rating', 'Beoordeling', '2025-11-01 22:58:16'),
(15799, 'nl', 'label', 'Read', 'Lezen', '2025-11-01 22:58:16'),
(15800, 'nl', 'label', 'Recent Activity', 'Recente activiteit', '2025-11-01 22:58:16'),
(15801, 'nl', 'label', 'Reference', 'Referentie', '2025-11-01 22:58:16'),
(15802, 'nl', 'label', 'Referer', 'Verwijzer', '2025-11-01 22:58:16'),
(15803, 'nl', 'label', 'Reviews', 'Reviews', '2025-11-01 22:58:16'),
(15804, 'nl', 'label', 'Second', 'seconde', '2025-11-01 22:58:16'),
(15805, 'nl', 'label', 'Speed', 'Snelheid', '2025-11-01 22:58:16'),
(15806, 'nl', 'label', 'Subject', 'Onderwerp', '2025-11-01 22:58:16'),
(15807, 'nl', 'label', 'Success', 'Succes', '2025-11-01 22:58:16'),
(15808, 'nl', 'label', 'Type', 'Type', '2025-11-01 22:58:16'),
(15809, 'nl', 'label', 'Usability', 'Bruikbaarheid', '2025-11-01 22:58:16'),
(15810, 'nl', 'label', 'User agent', 'User agent', '2025-11-01 22:58:16'),
(15811, 'nl', 'label', 'Week', 'week', '2025-11-01 22:58:16'),
(15812, 'nl', 'label', 'Write', 'Schrijven', '2025-11-01 22:58:16'),
(15813, 'nl', 'label', 'Year', 'jaar', '2025-11-01 22:58:16'),
(15814, 'nl', 'login', 'Email placeholder', '[email protected]', '2025-11-01 22:58:16'),
(15815, 'nl', 'login', 'Enter the code', 'Voer de code in', '2025-11-01 22:58:16'),
(15816, 'nl', 'login', 'No account text', 'Heb je geen account?', '2025-11-01 22:58:16'),
(15817, 'nl', 'login', 'Password placeholder', 'Voer je wachtwoord in', '2025-11-01 22:58:16'),
(15818, 'nl', 'login', 'Sign In', 'Inloggen', '2025-11-01 22:58:16'),
(15819, 'nl', 'login', 'Username placeholder', 'Voer je gebruikersnaam in', '2025-11-01 22:58:16'),
(15820, 'nl', 'login', 'Verification', 'Verificatie', '2025-11-01 22:58:16'),
(15821, 'nl', 'login', 'Welcome message', 'Welkom terug! Log in op je account', '2025-11-01 22:58:16'),
(15822, 'nl', 'dashboard', 'Avg Rank', 'Gemiddelde positie', '2025-11-01 22:58:16'),
(15823, 'nl', 'dashboard', 'Best Rank', 'Beste positie', '2025-11-01 22:58:16'),
(15824, 'nl', 'dashboard', 'Not Ranked', 'Niet gerangschikt', '2025-11-01 22:58:16'),
(15825, 'nl', 'dashboard', 'Top 10', 'Top 10', '2025-11-01 22:58:16'),
(15826, 'nl', 'dashboard', 'Top 3', 'Top 3', '2025-11-01 22:58:16'),
(15827, 'nl', 'dashboard', 'Trend', 'Trend', '2025-11-01 22:58:16'),
(15828, 'nl', 'dashboard', 'Volatility', 'Volatiliteit', '2025-11-01 22:58:16'),
(15829, 'nl', 'dashboard', 'Worst Rank', 'Slechtste positie', '2025-11-01 22:58:16'),
(15830, 'nl', 'analytics', 'Avg. Session Duration', 'Gem. sessieduur', '2025-11-01 22:58:16'),
(15831, 'nl', 'analytics', 'Bounce Rate', 'Bouncepercentage', '2025-11-01 22:58:16'),
(15832, 'nl', 'analytics', 'New Users', 'Nieuwe gebruikers', '2025-11-01 22:58:16'),
(15833, 'nl', 'analytics', 'Sessions', 'Sessies', '2025-11-01 22:58:16'),
(15834, 'nl', 'analytics', 'Users', 'Gebruikers', '2025-11-01 22:58:16'),
(15835, 'nl', 'button', 'Apply', 'Toepassen', '2025-11-01 22:58:16'),
(15836, 'nl', 'button', 'Clear', 'Wissen', '2025-11-01 22:58:16'),
(15837, 'nl', 'button', 'Download', 'Downloaden', '2025-11-01 22:58:16'),
(15838, 'nl', 'button', 'Export', 'Exporteren', '2025-11-01 22:58:16'),
(15839, 'nl', 'button', 'Filter', 'Filteren', '2025-11-01 22:58:16'),
(15840, 'nl', 'button', 'Refresh', 'Vernieuwen', '2025-11-01 22:58:16'),
(15841, 'sv', 'common', 'API Token', 'API-token', '2025-11-01 22:58:16'),
(15842, 'sv', 'common', 'General', 'Allmänt', '2025-11-01 22:58:16'),
(15843, 'sv', 'common', 'Invalid Url', 'Ogiltig URL', '2025-11-01 22:58:16'),
(15844, 'sv', 'common', 'Metric', 'Mätetal', '2025-11-01 22:58:16'),
(15845, 'sv', 'common', 'Number', 'Nummer', '2025-11-01 22:58:16'),
(15846, 'sv', 'common', 'Range', 'Intervall', '2025-11-01 22:58:16'),
(15847, 'sv', 'common', 'Rankings', 'Rankings', '2025-11-01 22:58:16'),
(15848, 'sv', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA-verifiering misslyckades', '2025-11-01 22:58:16'),
(15849, 'sv', 'common', 'Source', 'Källa', '2025-11-01 22:58:16'),
(15850, 'sv', 'common', 'Spam Score', 'Spampoäng', '2025-11-01 22:58:16'),
(15851, 'sv', 'label', 'Access denied', 'Åtkomst nekad', '2025-11-01 22:58:16'),
(15852, 'sv', 'label', 'Ago', 'sedan', '2025-11-01 22:58:16'),
(15853, 'sv', 'label', 'Clicks', 'Klick', '2025-11-01 22:58:16'),
(15854, 'sv', 'label', 'Day', 'dag', '2025-11-01 22:58:16'),
(15855, 'sv', 'label', 'Days', 'dagar', '2025-11-01 22:58:16'),
(15856, 'sv', 'label', 'Desktop', 'Skrivbord', '2025-11-01 22:58:16'),
(15857, 'sv', 'label', 'Email Body', 'E-posttext', '2025-11-01 22:58:16'),
(15858, 'sv', 'label', 'Feature', 'Funktion', '2025-11-01 22:58:16'),
(15859, 'sv', 'label', 'Followers', 'Följare', '2025-11-01 22:58:16'),
(15860, 'sv', 'label', 'Free', 'Gratis', '2025-11-01 22:58:16'),
(15861, 'sv', 'label', 'From', 'Från', '2025-11-01 22:58:16'),
(15862, 'sv', 'label', 'Hour', 'timme', '2025-11-01 22:58:16'),
(15863, 'sv', 'label', 'Impressions', 'Visningar', '2025-11-01 22:58:16'),
(15864, 'sv', 'label', 'Just Now', 'Nyss', '2025-11-01 22:58:16'),
(15865, 'sv', 'label', 'Likes', 'Gillningar', '2025-11-01 22:58:16'),
(15866, 'sv', 'label', 'Minute', 'minut', '2025-11-01 22:58:16'),
(15867, 'sv', 'label', 'Mobile', 'Mobil', '2025-11-01 22:58:16'),
(15868, 'sv', 'label', 'Month', 'månad', '2025-11-01 22:58:16'),
(15869, 'sv', 'label', 'Months', 'månader', '2025-11-01 22:58:16'),
(15870, 'sv', 'label', 'Overview', 'Översikt', '2025-11-01 22:58:16'),
(15871, 'sv', 'label', 'Rating', 'Betyg', '2025-11-01 22:58:16'),
(15872, 'sv', 'label', 'Read', 'Läs', '2025-11-01 22:58:16'),
(15873, 'sv', 'label', 'Recent Activity', 'Senaste aktivitet', '2025-11-01 22:58:16'),
(15874, 'sv', 'label', 'Reviews', 'Recensioner', '2025-11-01 22:58:16'),
(15875, 'sv', 'label', 'Second', 'sekund', '2025-11-01 22:58:16'),
(15876, 'sv', 'label', 'Speed', 'Hastighet', '2025-11-01 22:58:16'),
(15877, 'sv', 'label', 'Type', 'Typ', '2025-11-01 22:58:16'),
(15878, 'sv', 'label', 'Usability', 'Användbarhet', '2025-11-01 22:58:16'),
(15879, 'sv', 'label', 'Week', 'vecka', '2025-11-01 22:58:16'),
(15880, 'sv', 'label', 'Write', 'Skriv', '2025-11-01 22:58:16'),
(15881, 'sv', 'label', 'Year', 'år', '2025-11-01 22:58:16'),
(15882, 'sv', 'login', 'Email placeholder', '[email protected]', '2025-11-01 22:58:16'),
(15883, 'sv', 'login', 'Enter the code', 'Ange koden', '2025-11-01 22:58:16'),
(15884, 'sv', 'login', 'No account text', 'Har du inget konto?', '2025-11-01 22:58:16'),
(15885, 'sv', 'login', 'Password placeholder', 'Ange ditt lösenord', '2025-11-01 22:58:16'),
(15886, 'sv', 'login', 'Sign In', 'Logga in', '2025-11-01 22:58:16'),
(15887, 'sv', 'login', 'Username placeholder', 'Ange ditt användarnamn', '2025-11-01 22:58:16'),
(15888, 'sv', 'login', 'Verification', 'Verifiering', '2025-11-01 22:58:16'),
(15889, 'sv', 'login', 'Welcome message', 'Välkommen tillbaka! Logga in på ditt konto', '2025-11-01 22:58:16'),
(15890, 'sv', 'dashboard', 'Avg Rank', 'Genomsnittlig position', '2025-11-01 22:58:16'),
(15891, 'sv', 'dashboard', 'Best Rank', 'Bästa position', '2025-11-01 22:58:16'),
(15892, 'sv', 'dashboard', 'Not Ranked', 'Ej rankad', '2025-11-01 22:58:16'),
(15893, 'sv', 'dashboard', 'Top 10', 'Topp 10', '2025-11-01 22:58:16'),
(15894, 'sv', 'dashboard', 'Top 3', 'Topp 3', '2025-11-01 22:58:16'),
(15895, 'sv', 'dashboard', 'Trend', 'Trend', '2025-11-01 22:58:16'),
(15896, 'sv', 'dashboard', 'Volatility', 'Volatilitet', '2025-11-01 22:58:16'),
(15897, 'sv', 'dashboard', 'Worst Rank', 'Sämsta position', '2025-11-01 22:58:16'),
(15898, 'sv', 'analytics', 'Avg. Session Duration', 'Genomsnittlig sessionstid', '2025-11-01 22:58:16'),
(15899, 'sv', 'analytics', 'Bounce Rate', 'Avvisningsfrekvens', '2025-11-01 22:58:16'),
(15900, 'sv', 'analytics', 'New Users', 'Nya användare', '2025-11-01 22:58:16'),
(15901, 'sv', 'analytics', 'Sessions', 'Sessioner', '2025-11-01 22:58:16'),
(15902, 'sv', 'analytics', 'Users', 'Användare', '2025-11-01 22:58:16'),
(15903, 'sv', 'button', 'Apply', 'Tillämpa', '2025-11-01 22:58:16'),
(15904, 'sv', 'button', 'Clear', 'Rensa', '2025-11-01 22:58:16'),
(15905, 'sv', 'button', 'Download', 'Ladda ner', '2025-11-01 22:58:16'),
(15906, 'sv', 'button', 'Export', 'Exportera', '2025-11-01 22:58:16'),
(15907, 'sv', 'button', 'Filter', 'Filtrera', '2025-11-01 22:58:16'),
(15908, 'sv', 'button', 'Refresh', 'Uppdatera', '2025-11-01 22:58:16'),
(15909, 'id', 'common', 'API Token', 'Token API', '2025-11-01 22:58:16'),
(15910, 'id', 'common', 'General', 'Umum', '2025-11-01 22:58:16'),
(15911, 'id', 'common', 'Invalid Url', 'URL tidak valid', '2025-11-01 22:58:16'),
(15912, 'id', 'common', 'Metric', 'Metrik', '2025-11-01 22:58:16'),
(15913, 'id', 'common', 'Number', 'Nomor', '2025-11-01 22:58:16'),
(15914, 'id', 'common', 'Range', 'Rentang', '2025-11-01 22:58:16'),
(15915, 'id', 'common', 'Rankings', 'Peringkat', '2025-11-01 22:58:16'),
(15916, 'id', 'common', 'reCAPTCHA verification failed', 'Verifikasi reCAPTCHA gagal', '2025-11-01 22:58:16'),
(15917, 'id', 'common', 'Source', 'Sumber', '2025-11-01 22:58:16'),
(15918, 'id', 'common', 'Spam Score', 'Skor Spam', '2025-11-01 22:58:16'),
(15919, 'id', 'label', 'Ago', 'yang lalu', '2025-11-01 22:58:16'),
(15920, 'id', 'label', 'Clicks', 'Klik', '2025-11-01 22:58:16'),
(15921, 'id', 'label', 'Day', 'hari', '2025-11-01 22:58:16'),
(15922, 'id', 'label', 'Days', 'hari', '2025-11-01 22:58:16'),
(15923, 'id', 'label', 'Email Body', 'Isi email', '2025-11-01 22:58:16'),
(15924, 'id', 'label', 'Feature', 'Fitur', '2025-11-01 22:58:16'),
(15925, 'id', 'label', 'Followers', 'Pengikut', '2025-11-01 22:58:16'),
(15926, 'id', 'label', 'From', 'Dari', '2025-11-01 22:58:16'),
(15927, 'id', 'label', 'Hour', 'jam', '2025-11-01 22:58:16'),
(15928, 'id', 'label', 'Impressions', 'Tayangan', '2025-11-01 22:58:16'),
(15929, 'id', 'label', 'Just Now', 'Baru saja', '2025-11-01 22:58:16'),
(15930, 'id', 'label', 'Likes', 'Suka', '2025-11-01 22:58:16'),
(15931, 'id', 'label', 'Minute', 'menit', '2025-11-01 22:58:16'),
(15932, 'id', 'label', 'Month', 'bulan', '2025-11-01 22:58:16'),
(15933, 'id', 'label', 'Months', 'bulan', '2025-11-01 22:58:16'),
(15934, 'id', 'label', 'Overview', 'Ikhtisar', '2025-11-01 22:58:16'),
(15935, 'id', 'label', 'Rating', 'Peringkat', '2025-11-01 22:58:16'),
(15936, 'id', 'label', 'Read', 'Baca', '2025-11-01 22:58:16'),
(15937, 'id', 'label', 'Recent Activity', 'Aktivitas terbaru', '2025-11-01 22:58:16'),
(15938, 'id', 'label', 'Reviews', 'Ulasan', '2025-11-01 22:58:16'),
(15939, 'id', 'label', 'Second', 'detik', '2025-11-01 22:58:16'),
(15940, 'id', 'label', 'Week', 'minggu', '2025-11-01 22:58:16'),
(15941, 'id', 'label', 'Write', 'Tulis', '2025-11-01 22:58:16'),
(15942, 'id', 'label', 'Year', 'tahun', '2025-11-01 22:58:16'),
(15943, 'id', 'login', 'Email placeholder', '[email protected]', '2025-11-01 22:58:16'),
(15944, 'id', 'login', 'Enter the code', 'Masukkan kode', '2025-11-01 22:58:16'),
(15945, 'id', 'login', 'No account text', 'Belum punya akun?', '2025-11-01 22:58:16'),
(15946, 'id', 'login', 'Password placeholder', 'Masukkan kata sandi Anda', '2025-11-01 22:58:16'),
(15947, 'id', 'login', 'Sign In', 'Masuk', '2025-11-01 22:58:16'),
(15948, 'id', 'login', 'Username placeholder', 'Masukkan nama pengguna', '2025-11-01 22:58:16'),
(15949, 'id', 'login', 'Verification', 'Verifikasi', '2025-11-01 22:58:16'),
(15950, 'id', 'login', 'Welcome message', 'Selamat datang kembali! Silakan masuk ke akun Anda', '2025-11-01 22:58:16'),
(15951, 'id', 'dashboard', 'Avg Rank', 'Peringkat rata-rata', '2025-11-01 22:58:16'),
(15952, 'id', 'dashboard', 'Best Rank', 'Peringkat terbaik', '2025-11-01 22:58:16'),
(15953, 'id', 'dashboard', 'Not Ranked', 'Tidak diperingkat', '2025-11-01 22:58:16'),
(15954, 'id', 'dashboard', 'Top 10', 'Top 10', '2025-11-01 22:58:16'),
(15955, 'id', 'dashboard', 'Top 3', 'Top 3', '2025-11-01 22:58:16'),
(15956, 'id', 'dashboard', 'Trend', 'Tren', '2025-11-01 22:58:16'),
(15957, 'id', 'dashboard', 'Volatility', 'Volatilitas', '2025-11-01 22:58:16'),
(15958, 'id', 'dashboard', 'Worst Rank', 'Peringkat terburuk', '2025-11-01 22:58:16'),
(15959, 'id', 'analytics', 'Avg. Session Duration', 'Durasi sesi rata-rata', '2025-11-01 22:58:16'),
(15960, 'id', 'analytics', 'Bounce Rate', 'Tingkat pentalan', '2025-11-01 22:58:16'),
(15961, 'id', 'analytics', 'New Users', 'Pengguna baru', '2025-11-01 22:58:16'),
(15962, 'id', 'analytics', 'Sessions', 'Sesi', '2025-11-01 22:58:16'),
(15963, 'id', 'analytics', 'Users', 'Pengguna', '2025-11-01 22:58:16'),
(15964, 'id', 'button', 'Apply', 'Terapkan', '2025-11-01 22:58:16'),
(15965, 'id', 'button', 'Clear', 'Hapus', '2025-11-01 22:58:16'),
(15966, 'id', 'button', 'Download', 'Unduh', '2025-11-01 22:58:16'),
(15967, 'id', 'button', 'Export', 'Ekspor', '2025-11-01 22:58:16'),
(15968, 'id', 'button', 'Filter', 'Filter', '2025-11-01 22:58:16'),
(15969, 'id', 'button', 'Refresh', 'Muat ulang', '2025-11-01 22:58:16'),
(15970, 'ro', 'common', 'API Token', 'Token API', '2025-11-01 22:58:16'),
(15971, 'ro', 'common', 'General', 'General', '2025-11-01 22:58:16'),
(15972, 'ro', 'common', 'Invalid Url', 'URL invalid', '2025-11-01 22:58:16'),
(15973, 'ro', 'common', 'Metric', 'Metrică', '2025-11-01 22:58:16'),
(15974, 'ro', 'common', 'Number', 'Număr', '2025-11-01 22:58:16'),
(15975, 'ro', 'common', 'Range', 'Interval', '2025-11-01 22:58:16'),
(15976, 'ro', 'common', 'Rankings', 'Clasamente', '2025-11-01 22:58:16'),
(15977, 'ro', 'common', 'reCAPTCHA verification failed', 'Verificarea reCAPTCHA a eșuat', '2025-11-01 22:58:16'),
(15978, 'ro', 'common', 'Source', 'Sursă', '2025-11-01 22:58:16'),
(15979, 'ro', 'common', 'Spam Score', 'Scor spam', '2025-11-01 22:58:16'),
(15980, 'ro', 'label', 'Access denied', 'Acces refuzat', '2025-11-01 22:58:16'),
(15981, 'ro', 'label', 'Ago', 'în urmă', '2025-11-01 22:58:16');
INSERT INTO `texts` VALUES
(15982, 'ro', 'label', 'Clear All', 'Șterge tot', '2025-11-01 22:58:16'),
(15983, 'ro', 'label', 'Clicks', 'Clicuri', '2025-11-01 22:58:16'),
(15984, 'ro', 'label', 'Cookie', 'Cookie', '2025-11-01 22:58:16'),
(15985, 'ro', 'label', 'Current', 'Curent', '2025-11-01 22:58:16'),
(15986, 'ro', 'label', 'Day', 'zi', '2025-11-01 22:58:16'),
(15987, 'ro', 'label', 'Days', 'zile', '2025-11-01 22:58:16'),
(15988, 'ro', 'label', 'Desktop', 'Desktop', '2025-11-01 22:58:16'),
(15989, 'ro', 'label', 'Email Body', 'Conținut email', '2025-11-01 22:58:16'),
(15990, 'ro', 'label', 'Fail', 'Eșec', '2025-11-01 22:58:16'),
(15991, 'ro', 'label', 'Feature', 'Funcție', '2025-11-01 22:58:16'),
(15992, 'ro', 'label', 'Followers', 'Urmăritori', '2025-11-01 22:58:16'),
(15993, 'ro', 'label', 'Free', 'Gratuit', '2025-11-01 22:58:16'),
(15994, 'ro', 'label', 'From', 'De la', '2025-11-01 22:58:16'),
(15995, 'ro', 'label', 'Hour', 'oră', '2025-11-01 22:58:16'),
(15996, 'ro', 'label', 'Impressions', 'Afișări', '2025-11-01 22:58:16'),
(15997, 'ro', 'label', 'Just Now', 'Chiar acum', '2025-11-01 22:58:16'),
(15998, 'ro', 'label', 'Likes', 'Aprecieri', '2025-11-01 22:58:16'),
(15999, 'ro', 'label', 'Minute', 'minut', '2025-11-01 22:58:16'),
(16000, 'ro', 'label', 'Mobile', 'Mobil', '2025-11-01 22:58:16'),
(16001, 'ro', 'label', 'Month', 'lună', '2025-11-01 22:58:16'),
(16002, 'ro', 'label', 'Months', 'luni', '2025-11-01 22:58:16'),
(16003, 'ro', 'label', 'Order By', 'Sortează după', '2025-11-01 22:58:16'),
(16004, 'ro', 'label', 'Overview', 'Prezentare generală', '2025-11-01 22:58:16'),
(16005, 'ro', 'label', 'Rating', 'Evaluare', '2025-11-01 22:58:16'),
(16006, 'ro', 'label', 'Read', 'Citește', '2025-11-01 22:58:16'),
(16007, 'ro', 'label', 'Recent Activity', 'Activitate recentă', '2025-11-01 22:58:16'),
(16008, 'ro', 'label', 'Reference', 'Referință', '2025-11-01 22:58:16'),
(16009, 'ro', 'label', 'Referer', 'Referrer', '2025-11-01 22:58:16'),
(16010, 'ro', 'label', 'Reviews', 'Recenzii', '2025-11-01 22:58:16'),
(16011, 'ro', 'label', 'Second', 'secundă', '2025-11-01 22:58:16'),
(16012, 'ro', 'label', 'Select All', 'Selectează tot', '2025-11-01 22:58:16'),
(16013, 'ro', 'label', 'Speed', 'Viteză', '2025-11-01 22:58:16'),
(16014, 'ro', 'label', 'Subject', 'Subiect', '2025-11-01 22:58:16'),
(16015, 'ro', 'label', 'Success', 'Succes', '2025-11-01 22:58:16'),
(16016, 'ro', 'label', 'Syntax', 'Sintaxă', '2025-11-01 22:58:16'),
(16017, 'ro', 'label', 'Theme', 'Temă', '2025-11-01 22:58:16'),
(16018, 'ro', 'label', 'Type', 'Tip', '2025-11-01 22:58:16'),
(16019, 'ro', 'label', 'Usability', 'Utilizabilitate', '2025-11-01 22:58:16'),
(16020, 'ro', 'label', 'User agent', 'Agent utilizator', '2025-11-01 22:58:16'),
(16021, 'ro', 'label', 'Week', 'săptămână', '2025-11-01 22:58:16'),
(16022, 'ro', 'label', 'Write', 'Scrie', '2025-11-01 22:58:16'),
(16023, 'ro', 'label', 'Year', 'an', '2025-11-01 22:58:16'),
(16024, 'ro', 'login', 'Email placeholder', '[email protected]', '2025-11-01 22:58:16'),
(16025, 'ro', 'login', 'Enter the code', 'Introdu codul', '2025-11-01 22:58:16'),
(16026, 'ro', 'login', 'Forgot password?', 'Ai uitat parola?', '2025-11-01 22:58:16'),
(16027, 'ro', 'login', 'No account text', 'Nu ai cont?', '2025-11-01 22:58:16'),
(16028, 'ro', 'login', 'Password placeholder', 'Introdu parola', '2025-11-01 22:58:16'),
(16029, 'ro', 'login', 'Sign In', 'Autentificare', '2025-11-01 22:58:16'),
(16030, 'ro', 'login', 'Username placeholder', 'Introdu numele de utilizator', '2025-11-01 22:58:16'),
(16031, 'ro', 'login', 'Verification', 'Verificare', '2025-11-01 22:58:16'),
(16032, 'ro', 'login', 'Welcome message', 'Bun venit înapoi! Te rugăm să te autentifici', '2025-11-01 22:58:16'),
(16033, 'ro', 'dashboard', 'Avg Rank', 'Poziție medie', '2025-11-01 22:58:16'),
(16034, 'ro', 'dashboard', 'Best Rank', 'Cea mai bună poziție', '2025-11-01 22:58:16'),
(16035, 'ro', 'dashboard', 'Not Ranked', 'Neclasificat', '2025-11-01 22:58:16'),
(16036, 'ro', 'dashboard', 'Top 10', 'Top 10', '2025-11-01 22:58:16'),
(16037, 'ro', 'dashboard', 'Top 3', 'Top 3', '2025-11-01 22:58:16'),
(16038, 'ro', 'dashboard', 'Trend', 'Tendință', '2025-11-01 22:58:16'),
(16039, 'ro', 'dashboard', 'Volatility', 'Volatilitate', '2025-11-01 22:58:16'),
(16040, 'ro', 'dashboard', 'Worst Rank', 'Cea mai proastă poziție', '2025-11-01 22:58:16'),
(16041, 'ro', 'analytics', 'Avg. Session Duration', 'Durată medie sesiune', '2025-11-01 22:58:16'),
(16042, 'ro', 'analytics', 'Bounce Rate', 'Rată de respingere', '2025-11-01 22:58:16'),
(16043, 'ro', 'analytics', 'New Users', 'Utilizatori noi', '2025-11-01 22:58:16'),
(16044, 'ro', 'analytics', 'Sessions', 'Sesiuni', '2025-11-01 22:58:16'),
(16045, 'ro', 'analytics', 'Users', 'Utilizatori', '2025-11-01 22:58:16'),
(16046, 'ro', 'button', 'Apply', 'Aplică', '2025-11-01 22:58:16'),
(16047, 'ro', 'button', 'Clear', 'Șterge', '2025-11-01 22:58:16'),
(16048, 'ro', 'button', 'Download', 'Descarcă', '2025-11-01 22:58:16'),
(16049, 'ro', 'button', 'Export', 'Exportă', '2025-11-01 22:58:16'),
(16050, 'ro', 'button', 'Filter', 'Filtrează', '2025-11-01 22:58:16'),
(16051, 'ro', 'button', 'Refresh', 'Reîmprospătează', '2025-11-01 22:58:16'),
(16052, 'vn', 'common', 'API Token', 'Mã API', '2025-11-01 22:58:16'),
(16053, 'vn', 'common', 'General', 'Chung', '2025-11-01 22:58:16'),
(16054, 'vn', 'common', 'Invalid Url', 'URL không hợp lệ', '2025-11-01 22:58:16'),
(16055, 'vn', 'common', 'Metric', 'Số liệu', '2025-11-01 22:58:16'),
(16056, 'vn', 'common', 'Number', 'Số', '2025-11-01 22:58:16'),
(16057, 'vn', 'common', 'Range', 'Phạm vi', '2025-11-01 22:58:16'),
(16058, 'vn', 'common', 'Rankings', 'Xếp hạng', '2025-11-01 22:58:16'),
(16059, 'vn', 'common', 'reCAPTCHA verification failed', 'Xác minh reCAPTCHA thất bại', '2025-11-01 22:58:16'),
(16060, 'vn', 'common', 'Source', 'Nguồn', '2025-11-01 22:58:16'),
(16061, 'vn', 'common', 'Spam Score', 'Điểm spam', '2025-11-01 22:58:16'),
(16062, 'vn', 'label', 'Access denied', 'Truy cập bị từ chối', '2025-11-01 22:58:16'),
(16063, 'vn', 'label', 'Ago', 'trước', '2025-11-01 22:58:16'),
(16064, 'vn', 'label', 'Clicks', 'Lượt nhấp', '2025-11-01 22:58:16'),
(16065, 'vn', 'label', 'Cookie', 'Cookie', '2025-11-01 22:58:16'),
(16066, 'vn', 'label', 'Day', 'ngày', '2025-11-01 22:58:16'),
(16067, 'vn', 'label', 'Days', 'ngày', '2025-11-01 22:58:16'),
(16068, 'vn', 'label', 'Desktop', 'Máy tính', '2025-11-01 22:58:16'),
(16069, 'vn', 'label', 'Email Body', 'Nội dung email', '2025-11-01 22:58:16'),
(16070, 'vn', 'label', 'Fail', 'Thất bại', '2025-11-01 22:58:16'),
(16071, 'vn', 'label', 'Feature', 'Tính năng', '2025-11-01 22:58:16'),
(16072, 'vn', 'label', 'Followers', 'Người theo dõi', '2025-11-01 22:58:16'),
(16073, 'vn', 'label', 'Free', 'Miễn phí', '2025-11-01 22:58:16'),
(16074, 'vn', 'label', 'From', 'Từ', '2025-11-01 22:58:16'),
(16075, 'vn', 'label', 'Hour', 'giờ', '2025-11-01 22:58:16'),
(16076, 'vn', 'label', 'Impressions', 'Lượt hiển thị', '2025-11-01 22:58:16'),
(16077, 'vn', 'label', 'Just Now', 'Vừa xong', '2025-11-01 22:58:16'),
(16078, 'vn', 'label', 'Likes', 'Lượt thích', '2025-11-01 22:58:16'),
(16079, 'vn', 'label', 'Minute', 'phút', '2025-11-01 22:58:16'),
(16080, 'vn', 'label', 'Mobile', 'Di động', '2025-11-01 22:58:16'),
(16081, 'vn', 'label', 'Month', 'tháng', '2025-11-01 22:58:16'),
(16082, 'vn', 'label', 'Months', 'tháng', '2025-11-01 22:58:16'),
(16083, 'vn', 'label', 'Order By', 'Sắp xếp theo', '2025-11-01 22:58:16'),
(16084, 'vn', 'label', 'Overview', 'Tổng quan', '2025-11-01 22:58:16'),
(16085, 'vn', 'label', 'Rating', 'Đánh giá', '2025-11-01 22:58:16'),
(16086, 'vn', 'label', 'Read', 'Đọc', '2025-11-01 22:58:16'),
(16087, 'vn', 'label', 'Recent Activity', 'Hoạt động gần đây', '2025-11-01 22:58:16'),
(16088, 'vn', 'label', 'Reference', 'Tham chiếu', '2025-11-01 22:58:16'),
(16089, 'vn', 'label', 'Referer', 'Người giới thiệu', '2025-11-01 22:58:16'),
(16090, 'vn', 'label', 'Reviews', 'Đánh giá', '2025-11-01 22:58:16'),
(16091, 'vn', 'label', 'Second', 'giây', '2025-11-01 22:58:16'),
(16092, 'vn', 'label', 'Speed', 'Tốc độ', '2025-11-01 22:58:16'),
(16093, 'vn', 'label', 'Subject', 'Chủ đề', '2025-11-01 22:58:16'),
(16094, 'vn', 'label', 'Success', 'Thành công', '2025-11-01 22:58:16'),
(16095, 'vn', 'label', 'Type', 'Loại', '2025-11-01 22:58:16'),
(16096, 'vn', 'label', 'Usability', 'Khả năng sử dụng', '2025-11-01 22:58:16'),
(16097, 'vn', 'label', 'User agent', 'Tác nhân người dùng', '2025-11-01 22:58:16'),
(16098, 'vn', 'label', 'Week', 'tuần', '2025-11-01 22:58:16'),
(16099, 'vn', 'label', 'Write', 'Viết', '2025-11-01 22:58:16'),
(16100, 'vn', 'label', 'Year', 'năm', '2025-11-01 22:58:16'),
(16101, 'vn', 'login', 'Email placeholder', '[email protected]', '2025-11-01 22:58:16'),
(16102, 'vn', 'login', 'Enter the code', 'Nhập mã', '2025-11-01 22:58:16'),
(16103, 'vn', 'login', 'No account text', 'Chưa có tài khoản?', '2025-11-01 22:58:16'),
(16104, 'vn', 'login', 'Password placeholder', 'Nhập mật khẩu', '2025-11-01 22:58:16'),
(16105, 'vn', 'login', 'Sign In', 'Đăng nhập', '2025-11-01 22:58:16'),
(16106, 'vn', 'login', 'Username placeholder', 'Nhập tên người dùng', '2025-11-01 22:58:16'),
(16107, 'vn', 'login', 'Verification', 'Xác minh', '2025-11-01 22:58:16'),
(16108, 'vn', 'login', 'Welcome message', 'Chào mừng trở lại! Vui lòng đăng nhập', '2025-11-01 22:58:16'),
(16109, 'vn', 'dashboard', 'Avg Rank', 'Thứ hạng trung bình', '2025-11-01 22:58:16'),
(16110, 'vn', 'dashboard', 'Best Rank', 'Thứ hạng tốt nhất', '2025-11-01 22:58:16'),
(16111, 'vn', 'dashboard', 'Not Ranked', 'Chưa xếp hạng', '2025-11-01 22:58:16'),
(16112, 'vn', 'dashboard', 'Top 10', 'Top 10', '2025-11-01 22:58:16'),
(16113, 'vn', 'dashboard', 'Top 3', 'Top 3', '2025-11-01 22:58:16'),
(16114, 'vn', 'dashboard', 'Trend', 'Xu hướng', '2025-11-01 22:58:16'),
(16115, 'vn', 'dashboard', 'Volatility', 'Biến động', '2025-11-01 22:58:16'),
(16116, 'vn', 'dashboard', 'Worst Rank', 'Thứ hạng tệ nhất', '2025-11-01 22:58:16'),
(16117, 'vn', 'analytics', 'Avg. Session Duration', 'Thời lượng phiên TB', '2025-11-01 22:58:16'),
(16118, 'vn', 'analytics', 'Bounce Rate', 'Tỷ lệ thoát', '2025-11-01 22:58:16'),
(16119, 'vn', 'analytics', 'New Users', 'Người dùng mới', '2025-11-01 22:58:16'),
(16120, 'vn', 'analytics', 'Sessions', 'Phiên', '2025-11-01 22:58:16'),
(16121, 'vn', 'analytics', 'Users', 'Người dùng', '2025-11-01 22:58:16'),
(16122, 'vn', 'button', 'Apply', 'Áp dụng', '2025-11-01 22:58:16'),
(16123, 'vn', 'button', 'Clear', 'Xóa', '2025-11-01 22:58:16'),
(16124, 'vn', 'button', 'Download', 'Tải xuống', '2025-11-01 22:58:16'),
(16125, 'vn', 'button', 'Export', 'Xuất', '2025-11-01 22:58:16'),
(16126, 'vn', 'button', 'Filter', 'Lọc', '2025-11-01 22:58:16'),
(16127, 'vn', 'button', 'Refresh', 'Làm mới', '2025-11-01 22:58:16'),
(16128, 'ru', 'analytics', 'Avg. Session Duration', 'Средняя продолжительность сеанса', '2025-11-01 23:00:06'),
(16129, 'ru', 'backlink', 'Backlink Count', 'Количество обратных ссылок', '2025-11-01 23:00:06'),
(16130, 'ru', 'backlink', 'Domain Backlink Count', 'Количество обратных ссылок домена', '2025-11-01 23:00:06'),
(16131, 'ru', 'backlink', 'Domain Backlinks', 'Обратные ссылки домена', '2025-11-01 23:00:06'),
(16132, 'ru', 'common', 'API Token', 'API токен', '2025-11-01 23:00:06'),
(16133, 'ru', 'common', 'Invalid Url', 'Неверный URL', '2025-11-01 23:00:06'),
(16134, 'ru', 'common', 'Metric', 'Метрика', '2025-11-01 23:00:06'),
(16135, 'ru', 'common', 'Number', 'Номер', '2025-11-01 23:00:06'),
(16136, 'ru', 'common', 'Range', 'Диапазон', '2025-11-01 23:00:06'),
(16137, 'ru', 'common', 'Rankings', 'Рейтинги', '2025-11-01 23:00:06'),
(16138, 'ru', 'common', 'Spam Score', 'Спам-рейтинг', '2025-11-01 23:00:06'),
(16139, 'ru', 'dashboard', 'Avg Rank', 'Средний рейтинг', '2025-11-01 23:00:06'),
(16140, 'ru', 'dashboard', 'Best Rank', 'Лучший рейтинг', '2025-11-01 23:00:06'),
(16141, 'ru', 'dashboard', 'Keyword Distribution by Rank', 'Распределение ключевых слов по рейтингу', '2025-11-01 23:00:06'),
(16142, 'ru', 'dashboard', 'Keyword Statistics', 'Статистика ключевых слов', '2025-11-01 23:00:06'),
(16143, 'ru', 'dashboard', 'Keywords by Ranking Position', 'Ключевые слова по позиции рейтинга', '2025-11-01 23:00:06'),
(16144, 'ru', 'dashboard', 'Keywords with most ranking fluctuations', 'Ключевые слова с наибольшими колебаниями рейтинга', '2025-11-01 23:00:06'),
(16145, 'ru', 'dashboard', 'Not Ranked', 'Не ранжировано', '2025-11-01 23:00:06'),
(16146, 'ru', 'dashboard', 'positions', 'позиции', '2025-11-01 23:00:06'),
(16147, 'ru', 'dashboard', 'Ranking Volatility', 'Волатильность рейтинга', '2025-11-01 23:00:06'),
(16148, 'ru', 'dashboard', 'Top 10', 'Топ 10', '2025-11-01 23:00:06'),
(16149, 'ru', 'dashboard', 'Top 10 Most Volatile Keywords', 'Топ 10 самых волатильных ключевых слов', '2025-11-01 23:00:06'),
(16150, 'ru', 'dashboard', 'Top 3', 'Топ 3', '2025-11-01 23:00:06'),
(16151, 'ru', 'dashboard', 'Trend', 'Тренд', '2025-11-01 23:00:06'),
(16152, 'ru', 'dashboard', 'Volatility', 'Волатильность', '2025-11-01 23:00:06'),
(16153, 'ru', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'Данные волатильности требуют как минимум 2 проверки рейтинга в выбранный период', '2025-11-01 23:00:06'),
(16154, 'ru', 'dashboard', 'Volatility Score', 'Показатель волатильности', '2025-11-01 23:00:06'),
(16155, 'ru', 'dashboard', 'Volatility Score (Standard Deviation)', 'Показатель волатильности (стандартное отклонение)', '2025-11-01 23:00:06'),
(16156, 'ru', 'dashboard', 'Worst Rank', 'Худший рейтинг', '2025-11-01 23:00:06'),
(16157, 'ru', 'guest', '100% Open Source', '100% открытый исходный код', '2025-11-01 23:00:06'),
(16158, 'ru', 'guest', '100% Open Source desc', 'Бесплатное программное обеспечение под лицензией GNU GPL. Загружайте, настраивайте и используйте без ограничений.', '2025-11-01 23:00:06'),
(16159, 'ru', 'guest', 'Backlinks Checker desc', 'Отслеживайте количество обратных ссылок от основных поисковых систем и следите за прогрессом создания ссылок.', '2025-11-01 23:00:06'),
(16160, 'ru', 'guest', 'Browse Plugins', 'Обзор плагинов', '2025-11-01 23:00:06'),
(16161, 'ru', 'guest', 'Cloud Hosted', 'Облачный хостинг', '2025-11-01 23:00:06'),
(16162, 'ru', 'guest', 'Contact Us', 'Связаться с нами', '2025-11-01 23:00:06'),
(16163, 'ru', 'guest', 'Directory Submission desc', 'Автоматическая отправка ваших сайтов в основные бесплатные и платные каталоги с отслеживанием статуса.', '2025-11-01 23:00:06'),
(16164, 'ru', 'guest', 'Documentation', 'Документация', '2025-11-01 23:00:06'),
(16165, 'ru', 'guest', 'Download SEO Panel', 'Скачать SEO Panel', '2025-11-01 23:00:06'),
(16166, 'ru', 'guest', 'Get Support', 'Получить поддержку', '2025-11-01 23:00:06'),
(16167, 'ru', 'guest', 'Hero description', 'Полноценная панель управления SEO с открытым исходным кодом для управления оптимизацией ваших сайтов. SEO Panel - это мощный набор инструментов, включающий новейшие SEO-инструменты для повышения и отслеживания производительности ваших сайтов.', '2025-11-01 23:00:06'),
(16168, 'ru', 'guest', 'Hero subtitle', 'Первая в мире панель управления SEO с открытым исходным кодом для нескольких сайтов', '2025-11-01 23:00:06'),
(16169, 'ru', 'guest', 'Highly Extensible', 'Высокая расширяемость', '2025-11-01 23:00:06'),
(16170, 'ru', 'guest', 'Highly Extensible desc', 'Легко разрабатывайте и устанавливайте пользовательские плагины для расширения функциональности в соответствии с вашими потребностями.', '2025-11-01 23:00:06'),
(16171, 'ru', 'guest', 'Keyword Position Checker desc', 'Отслеживайте позиции ваших ключевых слов в различных поисковых системах с подробными ежедневными отчетами и красивыми графиками.', '2025-11-01 23:00:06'),
(16172, 'ru', 'guest', 'Login to Get Started', 'Войдите, чтобы начать', '2025-11-01 23:00:06'),
(16173, 'ru', 'guest', 'Multi-Website Support', 'Поддержка нескольких сайтов', '2025-11-01 23:00:06'),
(16174, 'ru', 'guest', 'Multi-Website Support desc', 'Управляйте SEO для неограниченного количества сайтов из единой панели управления с централизованной отчетностью.', '2025-11-01 23:00:06'),
(16175, 'ru', 'guest', 'Plugin Architecture', 'Архитектура плагинов', '2025-11-01 23:00:06'),
(16176, 'ru', 'guest', 'Plugin Architecture desc', 'Расширяйте функциональность с помощью мощных плагинов, включая Article Submitter, Meta Tag Generator и другие.', '2025-11-01 23:00:06'),
(16177, 'ru', 'guest', 'Powerful SEO Features', 'Мощные SEO функции', '2025-11-01 23:00:06'),
(16178, 'ru', 'guest', 'Rank Checker desc', 'Проверяйте Google PageRank, Alexa Rank и Moz Rank с комплексным ежедневным отслеживанием и отчетностью.', '2025-11-01 23:00:06'),
(16179, 'ru', 'guest', 'Resources & Support', 'Ресурсы и поддержка', '2025-11-01 23:00:06'),
(16180, 'ru', 'guest', 'Search Engine Saturation desc', 'Узнайте количество проиндексированных страниц в различных поисковых системах и отслеживайте прогресс индексации.', '2025-11-01 23:00:06'),
(16181, 'ru', 'guest', 'Site Auditor desc', 'Проверяйте все SEO-факторы каждой страницы и генерируйте карты сайта в форматах XML, HTML и TEXT для поисковых систем.', '2025-11-01 23:00:06'),
(16182, 'ru', 'guest', 'Social Media Integration', 'Интеграция с социальными сетями', '2025-11-01 23:00:06'),
(16183, 'ru', 'guest', 'Social Media Integration desc', 'Интегрируйтесь с Google Analytics, Search Console и платформами социальных сетей для комплексной отчетности.', '2025-11-01 23:00:06'),
(16184, 'ru', 'guest', 'Support Development', 'Поддержать разработку', '2025-11-01 23:00:06'),
(16185, 'ru', 'guest', 'Trusted by Thousands', 'Доверие тысяч', '2025-11-01 23:00:06'),
(16186, 'ru', 'guest', 'Trusted by Thousands desc', 'С 2010 года тысячи веб-мастеров по всему миру используют SEO Panel для оптимизации своих сайтов.', '2025-11-01 23:00:06'),
(16187, 'ru', 'guest', 'View Demo', 'Посмотреть демо', '2025-11-01 23:00:06'),
(16188, 'ru', 'guest', 'Welcome to SEO Panel', 'Добро пожаловать в SEO Panel', '2025-11-01 23:00:06'),
(16189, 'ru', 'guest', 'Why Choose SEO Panel?', 'Почему стоит выбрать SEO Panel?', '2025-11-01 23:00:06'),
(16190, 'ru', 'keyword', 'Keyword Ranking Trends', 'Тренды рейтинга ключевых слов', '2025-11-01 23:00:06'),
(16191, 'ru', 'keyword', 'Keywords Tracked', 'Отслеживаемые ключевые слова', '2025-11-01 23:00:06'),
(16192, 'ru', 'keyword', 'Ranking Trends', 'Тренды рейтинга', '2025-11-01 23:00:06'),
(16193, 'ru', 'keyword', 'Top Keywords', 'Топ ключевых слов', '2025-11-01 23:00:06'),
(16194, 'ru', 'label', 'Recent Activity', 'Недавняя активность', '2025-11-01 23:00:06'),
(16195, 'ru', 'login', 'Email placeholder', 'ваш@email.com', '2025-11-01 23:00:06'),
(16196, 'ru', 'login', 'Enter the code', 'Введите код', '2025-11-01 23:00:06'),
(16197, 'ru', 'login', 'Forgot subtitle', 'Введите свой адрес электронной почты, и мы отправим вам инструкции для сброса пароля', '2025-11-01 23:00:06'),
(16198, 'ru', 'login', 'No account text', 'Нет учетной записи?', '2025-11-01 23:00:06'),
(16199, 'ru', 'login', 'Password placeholder', 'Введите пароль', '2025-11-01 23:00:06'),
(16200, 'ru', 'login', 'Remember password text', 'Помните свой пароль?', '2025-11-01 23:00:06'),
(16201, 'ru', 'login', 'Security message', 'Ваша информация защищена и зашифрована', '2025-11-01 23:00:06'),
(16202, 'ru', 'login', 'Sign In', 'Войти', '2025-11-01 23:00:06'),
(16203, 'ru', 'login', 'Username placeholder', 'Введите имя пользователя', '2025-11-01 23:00:06'),
(16204, 'ru', 'login', 'Verification', 'Проверка', '2025-11-01 23:00:06'),
(16205, 'ru', 'login', 'Welcome message', 'С возвращением! Пожалуйста, войдите в свою учетную запись', '2025-11-01 23:00:06'),
(16206, 'ru', 'register', 'Account Information', 'Информация об учетной записи', '2025-11-01 23:00:06'),
(16207, 'ru', 'register', 'Already have account', 'Уже есть учетная запись?', '2025-11-01 23:00:06'),
(16208, 'ru', 'register', 'First name placeholder', 'Имя', '2025-11-01 23:00:06'),
(16209, 'ru', 'register', 'Last name placeholder', 'Фамилия', '2025-11-01 23:00:06'),
(16210, 'ru', 'register', 'Personal Information', 'Персональная информация', '2025-11-01 23:00:06'),
(16211, 'ru', 'register', 'Register subtitle', 'Присоединяйтесь к нам сегодня и начните оптимизировать свое SEO', '2025-11-01 23:00:06'),
(16212, 'ru', 'register', 'Subscription Details', 'Детали подписки', '2025-11-01 23:00:06'),
(16213, 'ru', 'website', 'Google Analytics Property', 'Ресурс Google Analytics', '2025-11-01 23:00:06'),
(16214, 'ru', 'website', 'Sync Google Analytics Properties', 'Синхронизировать ресурсы Google Analytics', '2025-11-01 23:00:06'),
(16215, 'de', 'backlink', 'Backlink Count', 'Backlink-Anzahl', '2025-11-01 23:00:06'),
(16216, 'de', 'backlink', 'Domain Backlink Count', 'Domain-Backlink-Anzahl', '2025-11-01 23:00:06'),
(16217, 'de', 'backlink', 'Domain Backlinks', 'Domain-Backlinks', '2025-11-01 23:00:06'),
(16218, 'de', 'common', 'API Token', 'API-Token', '2025-11-01 23:00:06'),
(16219, 'de', 'common', 'Invalid Url', 'Ungültige URL', '2025-11-01 23:00:06'),
(16220, 'de', 'common', 'Metric', 'Metrik', '2025-11-01 23:00:06'),
(16221, 'de', 'common', 'Number', 'Nummer', '2025-11-01 23:00:06'),
(16222, 'de', 'common', 'Range', 'Bereich', '2025-11-01 23:00:06'),
(16223, 'de', 'common', 'Rankings', 'Rankings', '2025-11-01 23:00:06'),
(16224, 'de', 'common', 'Spam Score', 'Spam-Bewertung', '2025-11-01 23:00:06'),
(16225, 'de', 'dashboard', 'Avg Rank', 'Durchschn. Rang', '2025-11-01 23:00:06'),
(16226, 'de', 'dashboard', 'Best Rank', 'Bester Rang', '2025-11-01 23:00:06'),
(16227, 'de', 'dashboard', 'Keyword Distribution by Rank', 'Keyword-Verteilung nach Rang', '2025-11-01 23:00:06'),
(16228, 'de', 'dashboard', 'Keyword Statistics', 'Keyword-Statistiken', '2025-11-01 23:00:06'),
(16229, 'de', 'dashboard', 'Keywords by Ranking Position', 'Keywords nach Ranking-Position', '2025-11-01 23:00:06'),
(16230, 'de', 'dashboard', 'Keywords with most ranking fluctuations', 'Keywords mit den meisten Ranking-Schwankungen', '2025-11-01 23:00:06'),
(16231, 'de', 'dashboard', 'Not Ranked', 'Nicht eingestuft', '2025-11-01 23:00:06'),
(16232, 'de', 'dashboard', 'positions', 'Positionen', '2025-11-01 23:00:06'),
(16233, 'de', 'dashboard', 'Ranking Volatility', 'Ranking-Volatilität', '2025-11-01 23:00:06'),
(16234, 'de', 'dashboard', 'Top 10', 'Top 10', '2025-11-01 23:00:06'),
(16235, 'de', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 volatilste Keywords', '2025-11-01 23:00:06'),
(16236, 'de', 'dashboard', 'Top 3', 'Top 3', '2025-11-01 23:00:06'),
(16237, 'de', 'dashboard', 'Trend', 'Trend', '2025-11-01 23:00:06'),
(16238, 'de', 'dashboard', 'Volatility', 'Volatilität', '2025-11-01 23:00:06'),
(16239, 'de', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'Volatilitätsdaten erfordern mindestens 2 Ranking-Prüfungen innerhalb des ausgewählten Zeitraums', '2025-11-01 23:00:06'),
(16240, 'de', 'dashboard', 'Volatility Score', 'Volatilitätswert', '2025-11-01 23:00:06'),
(16241, 'de', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatilitätswert (Standardabweichung)', '2025-11-01 23:00:06'),
(16242, 'de', 'dashboard', 'Worst Rank', 'Schlechtester Rang', '2025-11-01 23:00:06'),
(16243, 'de', 'guest', '100% Open Source', '100% Open Source', '2025-11-01 23:00:06'),
(16244, 'de', 'guest', '100% Open Source desc', 'Freie Software unter GNU GPL-Lizenz. Herunterladen, anpassen und ohne Einschränkungen verwenden.', '2025-11-01 23:00:06'),
(16245, 'de', 'guest', 'Backlinks Checker desc', 'Überwachen Sie die Anzahl der Backlinks von großen Suchmaschinen und verfolgen Sie Ihren Linkaufbau-Fortschritt im Laufe der Zeit.', '2025-11-01 23:00:06'),
(16246, 'de', 'guest', 'Browse Plugins', 'Plugins durchsuchen', '2025-11-01 23:00:06'),
(16247, 'de', 'guest', 'Cloud Hosted', 'Cloud-gehostet', '2025-11-01 23:00:06'),
(16248, 'de', 'guest', 'Contact Us', 'Kontaktieren Sie uns', '2025-11-01 23:00:06'),
(16249, 'de', 'guest', 'Directory Submission desc', 'Reichen Sie Ihre Websites automatisch bei großen kostenlosen und kostenpflichtigen Verzeichnissen ein mit Statusverfolgung.', '2025-11-01 23:00:06'),
(16250, 'de', 'guest', 'Documentation', 'Dokumentation', '2025-11-01 23:00:06'),
(16251, 'de', 'guest', 'Download SEO Panel', 'SEO Panel herunterladen', '2025-11-01 23:00:06'),
(16252, 'de', 'guest', 'Get Support', 'Support erhalten', '2025-11-01 23:00:06'),
(16253, 'de', 'guest', 'Hero description', 'Ein vollständiges Open-Source-SEO-Kontrollpanel zur Verwaltung der Suchmaschinenoptimierung Ihrer Websites. SEO Panel ist ein leistungsstarkes Toolkit mit den neuesten SEO-Tools zur Steigerung und Verfolgung der Leistung Ihrer Websites.', '2025-11-01 23:00:06'),
(16254, 'de', 'guest', 'Hero subtitle', 'Weltweit erstes Open-Source-SEO-Kontrollpanel für mehrere Websites', '2025-11-01 23:00:06'),
(16255, 'de', 'guest', 'Highly Extensible', 'Hochgradig erweiterbar', '2025-11-01 23:00:06'),
(16256, 'de', 'guest', 'Highly Extensible desc', 'Entwickeln und installieren Sie einfach benutzerdefinierte Plugins, um die Funktionalität nach Ihren Bedürfnissen zu erweitern.', '2025-11-01 23:00:06'),
(16257, 'de', 'guest', 'Keyword Position Checker desc', 'Verfolgen Sie Ihre Keyword-Rankings über mehrere Suchmaschinen mit detaillierten täglichen Berichten und schönen Grafiken.', '2025-11-01 23:00:06'),
(16258, 'de', 'guest', 'Login to Get Started', 'Anmelden um zu starten', '2025-11-01 23:00:06'),
(16259, 'de', 'guest', 'Multi-Website Support', 'Multi-Website-Unterstützung', '2025-11-01 23:00:06'),
(16260, 'de', 'guest', 'Multi-Website Support desc', 'Verwalten Sie SEO für unbegrenzt viele Websites von einem einzigen Kontrollpanel mit zentralisierter Berichterstattung.', '2025-11-01 23:00:06'),
(16261, 'de', 'guest', 'Plugin Architecture', 'Plugin-Architektur', '2025-11-01 23:00:06'),
(16262, 'de', 'guest', 'Plugin Architecture desc', 'Erweitern Sie die Funktionalität mit leistungsstarken Plugins wie Article Submitter, Meta Tag Generator und mehr.', '2025-11-01 23:00:06'),
(16263, 'de', 'guest', 'Powerful SEO Features', 'Leistungsstarke SEO-Funktionen', '2025-11-01 23:00:06'),
(16264, 'de', 'guest', 'Rank Checker desc', 'Überprüfen Sie Google PageRank, Alexa Rank und Moz Rank mit umfassender täglicher Verfolgung und Berichterstattung.', '2025-11-01 23:00:06'),
(16265, 'de', 'guest', 'Resources & Support', 'Ressourcen & Support', '2025-11-01 23:00:06'),
(16266, 'de', 'guest', 'Search Engine Saturation desc', 'Finden Sie die Anzahl der indizierten Seiten über verschiedene Suchmaschinen und überwachen Sie Ihren Indexierungsfortschritt.', '2025-11-01 23:00:06'),
(16267, 'de', 'guest', 'Site Auditor desc', 'Prüfen Sie alle SEO-Faktoren jeder Seite und generieren Sie XML-, HTML- und TEXT-Sitemaps für Suchmaschinen.', '2025-11-01 23:00:06'),
(16268, 'de', 'guest', 'Social Media Integration', 'Social-Media-Integration', '2025-11-01 23:00:06'),
(16269, 'de', 'guest', 'Social Media Integration desc', 'Integrieren Sie mit Google Analytics, Search Console und Social-Media-Plattformen für umfassende Berichte.', '2025-11-01 23:00:06'),
(16270, 'de', 'guest', 'Support Development', 'Entwicklung unterstützen', '2025-11-01 23:00:06'),
(16271, 'de', 'guest', 'Trusted by Thousands', 'Vertraut von Tausenden', '2025-11-01 23:00:06'),
(16272, 'de', 'guest', 'Trusted by Thousands desc', 'Seit 2010 nutzen Tausende von Webmastern weltweit SEO Panel zur Optimierung ihrer Websites.', '2025-11-01 23:00:06'),
(16273, 'de', 'guest', 'View Demo', 'Demo ansehen', '2025-11-01 23:00:06'),
(16274, 'de', 'guest', 'Welcome to SEO Panel', 'Willkommen bei SEO Panel', '2025-11-01 23:00:06'),
(16275, 'de', 'guest', 'Why Choose SEO Panel?', 'Warum SEO Panel wählen?', '2025-11-01 23:00:06'),
(16276, 'de', 'keyword', 'Keyword Ranking Trends', 'Keyword-Ranking-Trends', '2025-11-01 23:00:06'),
(16277, 'de', 'keyword', 'Keywords Tracked', 'Verfolgte Keywords', '2025-11-01 23:00:06'),
(16278, 'de', 'keyword', 'Ranking Trends', 'Ranking-Trends', '2025-11-01 23:00:06'),
(16279, 'de', 'keyword', 'Top Keywords', 'Top-Keywords', '2025-11-01 23:00:06'),
(16280, 'de', 'label', 'Recent Activity', 'Kürzliche Aktivität', '2025-11-01 23:00:06'),
(16281, 'de', 'login', 'Email placeholder', '[email protected]', '2025-11-01 23:00:06'),
(16282, 'de', 'login', 'Enter the code', 'Code eingeben', '2025-11-01 23:00:06'),
(16283, 'de', 'login', 'Forgot subtitle', 'Geben Sie Ihre E-Mail-Adresse ein und wir senden Ihnen Anweisungen zum Zurücksetzen Ihres Passworts', '2025-11-01 23:00:06'),
(16284, 'de', 'login', 'No account text', 'Noch kein Konto?', '2025-11-01 23:00:06'),
(16285, 'de', 'login', 'Password placeholder', 'Passwort eingeben', '2025-11-01 23:00:06'),
(16286, 'de', 'login', 'Remember password text', 'Passwort merken?', '2025-11-01 23:00:06'),
(16287, 'de', 'login', 'Security message', 'Ihre Informationen sind sicher und verschlüsselt', '2025-11-01 23:00:06'),
(16288, 'de', 'login', 'Sign In', 'Anmelden', '2025-11-01 23:00:06'),
(16289, 'de', 'login', 'Username placeholder', 'Benutzername eingeben', '2025-11-01 23:00:06'),
(16290, 'de', 'login', 'Verification', 'Verifizierung', '2025-11-01 23:00:06'),
(16291, 'de', 'login', 'Welcome message', 'Willkommen zurück! Bitte melden Sie sich bei Ihrem Konto an', '2025-11-01 23:00:06'),
(16292, 'de', 'register', 'Account Information', 'Kontoinformationen', '2025-11-01 23:00:06'),
(16293, 'de', 'register', 'Already have account', 'Bereits ein Konto?', '2025-11-01 23:00:06'),
(16294, 'de', 'register', 'First name placeholder', 'Vorname', '2025-11-01 23:00:06'),
(16295, 'de', 'register', 'Last name placeholder', 'Nachname', '2025-11-01 23:00:06'),
(16296, 'de', 'register', 'Personal Information', 'Persönliche Informationen', '2025-11-01 23:00:06'),
(16297, 'de', 'register', 'Register subtitle', 'Treten Sie noch heute bei und beginnen Sie mit der Optimierung Ihrer SEO', '2025-11-01 23:00:06'),
(16298, 'de', 'register', 'Subscription Details', 'Abonnementdetails', '2025-11-01 23:00:06'),
(16299, 'de', 'website', 'Google Analytics Property', 'Google Analytics-Property', '2025-11-01 23:00:06'),
(16300, 'de', 'website', 'Sync Google Analytics Properties', 'Google Analytics-Properties synchronisieren', '2025-11-01 23:00:06'),
(16301, 'fr', 'common', 'API Token', 'Jeton API', '2025-11-01 23:00:06'),
(16302, 'fr', 'common', 'Invalid Url', 'URL invalide', '2025-11-01 23:00:06'),
(16303, 'fr', 'common', 'Metric', 'Métrique', '2025-11-01 23:00:06'),
(16304, 'fr', 'common', 'Number', 'Numéro', '2025-11-01 23:00:06'),
(16305, 'fr', 'common', 'Range', 'Plage', '2025-11-01 23:00:06'),
(16306, 'fr', 'common', 'Rankings', 'Classements', '2025-11-01 23:00:06'),
(16307, 'fr', 'common', 'Spam Score', 'Score de spam', '2025-11-01 23:00:06'),
(16308, 'fr', 'dashboard', 'Avg Rank', 'Rang moyen', '2025-11-01 23:00:06'),
(16309, 'fr', 'dashboard', 'Best Rank', 'Meilleur rang', '2025-11-01 23:00:06'),
(16310, 'fr', 'dashboard', 'Not Ranked', 'Non classé', '2025-11-01 23:00:06'),
(16311, 'fr', 'dashboard', 'Top 10', 'Top 10', '2025-11-01 23:00:06'),
(16312, 'fr', 'dashboard', 'Top 3', 'Top 3', '2025-11-01 23:00:06'),
(16313, 'fr', 'dashboard', 'Trend', 'Tendance', '2025-11-01 23:00:06'),
(16314, 'fr', 'dashboard', 'Volatility', 'Volatilité', '2025-11-01 23:00:06'),
(16315, 'fr', 'dashboard', 'Worst Rank', 'Pire rang', '2025-11-01 23:00:06'),
(16316, 'fr', 'guest', 'Browse Plugins', 'Parcourir les plugins', '2025-11-01 23:00:06'),
(16317, 'fr', 'guest', 'Cloud Hosted', 'Hébergement cloud', '2025-11-01 23:00:06'),
(16318, 'fr', 'guest', 'Contact Us', 'Nous contacter', '2025-11-01 23:00:06'),
(16319, 'fr', 'guest', 'Documentation', 'Documentation', '2025-11-01 23:00:06'),
(16320, 'fr', 'guest', 'Download SEO Panel', 'Télécharger SEO Panel', '2025-11-01 23:00:06'),
(16321, 'fr', 'guest', 'Get Support', 'Obtenir de l''aide', '2025-11-01 23:00:06'),
(16322, 'fr', 'guest', 'Login to Get Started', 'Connectez-vous pour commencer', '2025-11-01 23:00:06'),
(16323, 'fr', 'guest', 'View Demo', 'Voir la démo', '2025-11-01 23:00:06'),
(16324, 'fr', 'guest', 'Welcome to SEO Panel', 'Bienvenue sur SEO Panel', '2025-11-01 23:00:06'),
(16325, 'fr', 'guest', 'Why Choose SEO Panel?', 'Pourquoi choisir SEO Panel?', '2025-11-01 23:00:06'),
(16326, 'fr', 'keyword', 'Keywords Tracked', 'Mots-clés suivis', '2025-11-01 23:00:06'),
(16327, 'fr', 'keyword', 'Top Keywords', 'Meilleurs mots-clés', '2025-11-01 23:00:06'),
(16328, 'fr', 'login', 'Email placeholder', '[email protected]', '2025-11-01 23:00:06'),
(16329, 'fr', 'login', 'Enter the code', 'Entrez le code', '2025-11-01 23:00:06'),
(16330, 'fr', 'login', 'No account text', 'Vous n''avez pas de compte?', '2025-11-01 23:00:06'),
(16331, 'fr', 'login', 'Password placeholder', 'Entrez votre mot de passe', '2025-11-01 23:00:06'),
(16332, 'fr', 'login', 'Remember password text', 'Vous souvenez-vous de votre mot de passe?', '2025-11-01 23:00:06'),
(16333, 'fr', 'login', 'Sign In', 'Se connecter', '2025-11-01 23:00:06'),
(16334, 'fr', 'login', 'Username placeholder', 'Entrez votre nom d''utilisateur', '2025-11-01 23:00:06'),
(16335, 'fr', 'login', 'Verification', 'Vérification', '2025-11-01 23:00:06'),
(16336, 'fr', 'login', 'Welcome message', 'Bienvenue! Veuillez vous connecter à votre compte', '2025-11-01 23:00:06'),
(16337, 'fr', 'register', 'Account Information', 'Informations du compte', '2025-11-01 23:00:06'),
(16338, 'fr', 'register', 'Already have account', 'Vous avez déjà un compte?', '2025-11-01 23:00:06'),
(16339, 'fr', 'register', 'First name placeholder', 'Prénom', '2025-11-01 23:00:06'),
(16340, 'fr', 'register', 'Last name placeholder', 'Nom de famille', '2025-11-01 23:00:06'),
(16341, 'fr', 'register', 'Personal Information', 'Informations personnelles', '2025-11-01 23:00:06'),
(16342, 'fr', 'register', 'Subscription Details', 'Détails de l''abonnement', '2025-11-01 23:00:06'),
(16343, 'fr', 'website', 'Google Analytics Property', 'Propriété Google Analytics', '2025-11-01 23:00:06'),
(16344, 'fr', 'website', 'Sync Google Analytics Properties', 'Synchroniser les propriétés Google Analytics', '2025-11-01 23:00:06'),
(32306, 'bs', 'siteauditor', 'Check pages indexed or not', 'Check pages indexed or not', '2025-11-21 01:07:03'),
(32305, 'bs', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of pages', '2025-11-21 01:07:03'),
(32303, 'bs', 'siteauditor', 'Check broken links in a page', 'Check broken links in a page', '2025-11-21 01:07:03'),
(32304, 'bs', 'siteauditor', 'Check google pagerank of pages', 'Check google pagerank of pages', '2025-11-21 01:07:03'),
(32302, 'bs', 'siteauditor', 'Check backlinks of pages', 'Provjeri povratne linkove of pages', '2025-11-21 01:07:03'),
(32301, 'bs', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded Od Mapa sajta', '2025-11-21 01:07:03'),
(32300, 'bs', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded Od Izvještaji', '2025-11-21 01:07:03'),
(32299, 'bs', 'siteauditor', 'Anchor', 'Anchor', '2025-11-21 01:07:03'),
(32298, 'bs', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up to Datum.', '2025-11-21 01:07:03'),
(32297, 'bs', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up to Datum. <br>Please Preuzmi Novo version', '2025-11-21 01:07:03'),
(32296, 'bs', 'settings', 'Verify connection', 'Verify connection', '2025-11-21 01:07:03'),
(32295, 'bs', 'settings', 'syssettingssaved', 'Sistemske postavke Sačuvano Uspješno!', '2025-11-21 01:07:03'),
(32294, 'bs', 'settings', 'SP_USER_REGISTRATION', 'Korisnik Registracija interface', '2025-11-21 01:07:03'),
(32293, 'bs', 'settings', 'SP_USER_GEN_REPORT', 'Allow Korisnik to Generiši Izvještaji', '2025-11-21 01:07:03'),
(32292, 'bs', 'settings', 'SP_USER_AGENT', 'Korisnik agent', '2025-11-21 01:07:03'),
(32291, 'bs', 'settings', 'SP_TITLE', 'Seo Panel Naslov', '2025-11-21 01:07:03'),
(32290, 'bs', 'settings', 'SP_TIME_ZONE', 'Time Zone', '2025-11-21 01:07:03'),
(32289, 'bs', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Minimum Allowed izvještavanje Interval', '2025-11-21 01:07:03'),
(32288, 'bs', 'settings', 'SP_SMTP_USERNAME', 'SMTP Korisničko ime', '2025-11-21 01:07:03'),
(32287, 'bs', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2025-11-21 01:07:03'),
(32286, 'bs', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Lozinka', '2025-11-21 01:07:03'),
(32285, 'bs', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2025-11-21 01:07:03'),
(32284, 'bs', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2025-11-21 01:07:03'),
(32283, 'bs', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2025-11-21 01:07:03'),
(32282, 'bs', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send custom header with curl request', '2025-11-21 01:07:03'),
(32281, 'bs', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of E-pošta notifications for Izvještaji', '2025-11-21 01:07:03'),
(32280, 'bs', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Indeksiranje relative links in a page', '2025-11-21 01:07:03'),
(32279, 'bs', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2025-11-21 01:07:03'),
(32278, 'bs', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2025-11-21 01:07:03'),
(32277, 'bs', 'settings', 'SP_PAGINGNO', 'Number of entries per page', '2025-11-21 01:07:03'),
(32276, 'bs', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Number of Ključne riječi needs to be Provjereno in each cron execution', '2025-11-21 01:07:03'),
(32275, 'bs', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2025-11-21 01:07:03'),
(32274, 'bs', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2025-11-21 01:07:03'),
(32273, 'bs', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2025-11-21 01:07:03'),
(32272, 'bs', 'settings', 'SP_KEYWORDS', 'Seo Panel Ključne riječi', '2025-11-21 01:07:03'),
(32271, 'bs', 'settings', 'SP_HOTLINKING', 'Image hotlink protection Omogućeno', '2025-11-21 01:07:03'),
(32270, 'bs', 'settings', 'SP_GOOGLE_API_KEY', 'Google API Key', '2025-11-21 01:07:03'),
(32269, 'bs', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2025-11-21 01:07:03'),
(32268, 'bs', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2025-11-21 01:07:03'),
(32267, 'bs', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google Analitika praćenje Code', '2025-11-21 01:07:03'),
(32266, 'bs', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2025-11-21 01:07:03'),
(32265, 'bs', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable Proxy for Google API', '2025-11-21 01:07:03'),
(32264, 'bs', 'settings', 'SP_ENABLE_PROXY', 'Enable Proxy', '2025-11-21 01:07:03'),
(32263, 'bs', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2025-11-21 01:07:03'),
(32262, 'bs', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for Povratni link and Provjera zasićenosti', '2025-11-21 01:07:03'),
(32261, 'bs', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2025-11-21 01:07:03'),
(32260, 'bs', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2025-11-21 01:07:03'),
(32259, 'bs', 'settings', 'SP_DFS_API_PASSWORD', 'API Lozinka', '2025-11-21 01:07:03'),
(32258, 'bs', 'settings', 'SP_DFS_API_LOGIN', 'API Prijava', '2025-11-21 01:07:03'),
(32257, 'bs', 'settings', 'SP_DESCRIPTION', 'Seo Panel Opis', '2025-11-21 01:07:03'),
(32256, 'bs', 'settings', 'SP_DEFAULTLANG', 'Default Jezik', '2025-11-21 01:07:03'),
(32255, 'bs', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider Indeksiranje(seconds)', '2025-11-21 01:07:03'),
(32254, 'bs', 'settings', 'SP_COMPANY_NAME', 'Company Ime', '2025-11-21 01:07:03'),
(32253, 'bs', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2025-11-21 01:07:03'),
(32252, 'bs', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow Korisnici to schedule Izvještaj', '2025-11-21 01:07:03'),
(32251, 'bs', 'settings', 'seopanel_title', 'Seo Panel: World''s Prvo Otvori source seo control panel for managing multiple web sites', '2025-11-21 01:07:03'),
(32250, 'bs', 'settings', 'seopanel_description', 'A complete free control panel for managing Pretraživač optimization of your Web stranice. It containing lots of hot SEO alati to increase and track the performace your Web stranice. Its an Otvori source software and also you can develop your own SEO dodaci for seo panel.', '2025-11-21 01:07:03'),
(32249, 'bs', 'settings', 'Send Email', 'Send E-pošta', '2025-11-21 01:07:03'),
(32248, 'bs', 'settings', 'SA_MAX_NO_PAGES', 'Maximum number of pages allowed per Web stranica', '2025-11-21 01:07:03'),
(32247, 'bs', 'settings', 'SA_CRAWL_DELAY_TIME', 'Revizor web stranice Indeksiranje delay between each pages', '2025-11-21 01:07:03'),
(32246, 'bs', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate Proxy When Crawling Neuspjelo', '2025-11-21 01:07:03'),
(32245, 'bs', 'settings', 'Please update MOZ settings to get complete results', 'Please Ažuriraj MOZ Postavke to get complete Rezultati', '2025-11-21 01:07:03'),
(32244, 'bs', 'settings', 'Please update google settings to get the results', 'Please Ažuriraj google Postavke to get the Rezultati', '2025-11-21 01:07:03'),
(32243, 'bs', 'settings', 'getallpluginfree', 'Also get Sve <b>Dodaci</b> we develop for <b>Free!</b>', '2025-11-21 01:07:03'),
(32242, 'bs', 'settings', 'entersmtpdetails', 'Please enter SMTP mail configuration', '2025-11-21 01:07:03'),
(32241, 'bs', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP Proxy Tunnel', '2025-11-21 01:07:03'),
(32240, 'bs', 'settings', 'click-to-get-moz-account', 'Kliknite ovdje to get MOZ Račun', '2025-11-21 01:07:03'),
(32239, 'bs', 'settings', 'click-to-get-google-api-key', 'Kliknite ovdje to get Google API Key', '2025-11-21 01:07:03'),
(32238, 'bs', 'settings', 'click-to-get-google-api-client-id', 'Kliknite ovdje to get Google API Client Id', '2025-11-21 01:07:03'),
(32237, 'bs', 'settings', 'click-to-get-dataforseo-account', 'Kliknite ovdje to get Free DataForSEO Račun', '2025-11-21 01:07:03'),
(32236, 'bs', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Doniraj $100</b> and become a <b>sponsor</b> of Seo Panel.', '2025-11-21 01:07:03'),
(32235, 'bs', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another Proxy When Crawling Neuspjelo', '2025-11-21 01:07:03'),
(32234, 'bs', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Maximum number of proxies used in single execution', '2025-11-21 01:07:03'),
(32233, 'bs', 'settings', 'Check for Updates', 'Check for Updates', '2025-11-21 01:07:03'),
(32232, 'bs', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2025-11-21 01:07:03'),
(32231, 'bs', 'settings', 'API_SECRET', 'API Secret', '2025-11-21 01:07:03'),
(32230, 'bs', 'settings', 'allsettingssaved', 'Sve Postavke Sačuvano Uspješno!', '2025-11-21 01:07:03'),
(32229, 'bs', 'seotools', 'Website Search Summary', 'Web stranica Pretraži Summary', '2025-11-21 01:07:03'),
(32228, 'bs', 'seotools', 'Website Search Reports', 'Web stranica Pretraži Izvještaji', '2025-11-21 01:07:03'),
(32227, 'bs', 'seotools', 'Website Analytics Summary', 'Web stranica Analitika Summary', '2025-11-21 01:07:03'),
(32226, 'bs', 'seotools', 'webmaster-tools', 'Webmaster alati', '2025-11-21 01:07:03'),
(32225, 'bs', 'seotools', 'web-analytics', 'Web stranica Analitika', '2025-11-21 01:07:03'),
(32224, 'bs', 'seotools', 'User Access', 'Korisnik Access', '2025-11-21 01:07:03'),
(32223, 'bs', 'seotools', 'Submission Reports', 'Slanje Izvještaji', '2025-11-21 01:07:03'),
(32222, 'bs', 'seotools', 'Social Media Report Summary', 'Društveni mediji Izvještaj Summary', '2025-11-21 01:07:03'),
(32220, 'bs', 'seotools', 'sm-checker', 'Društveni mediji Provjera', '2025-11-21 01:07:03'),
(32221, 'bs', 'seotools', 'Social Media Links', 'Društveni mediji Links', '2025-11-21 01:07:03'),
(32219, 'bs', 'seotools', 'Skipped Directories', 'Skipped Directories', '2025-11-21 01:07:03'),
(32218, 'bs', 'seotools', 'sitemap-generator', 'Mapa sajta Generator', '2025-11-21 01:07:03'),
(32217, 'bs', 'seotools', 'Sitemap Reports Summary', 'Mapa sajta Izvještaji Summary', '2025-11-21 01:07:03'),
(32216, 'bs', 'seotools', 'site-auditor', 'Revizor web stranice', '2025-11-21 01:07:03'),
(32213, 'bs', 'seotools', 'review-manager', 'Upravljanje recenzijama', '2025-11-21 01:07:03'),
(32214, 'bs', 'seotools', 'Saturation Reports', 'Zasićenost Izvještaji', '2025-11-21 01:07:03'),
(32215, 'bs', 'seotools', 'saturation-checker', 'Zasićenost pretraživača', '2025-11-21 01:07:03'),
(32212, 'bs', 'seotools', 'Review Report Summary', 'Recenzija Izvještaj Summary', '2025-11-21 01:07:03'),
(32211, 'bs', 'seotools', 'Review Links', 'Recenzija Links', '2025-11-21 01:07:03'),
(32209, 'bs', 'seotools', 'Rank Reports', 'Rang Izvještaji', '2025-11-21 01:07:03'),
(32210, 'bs', 'seotools', 'rank-checker', 'Provjera ranga', '2025-11-21 01:07:03'),
(32208, 'bs', 'seotools', 'Quick Saturation Checker', 'Quick Provjera zasićenosti', '2025-11-21 01:07:03'),
(32207, 'bs', 'seotools', 'Quick Rank Checker', 'Quick Provjera ranga', '2025-11-21 01:07:03'),
(32206, 'bs', 'seotools', 'Quick Position Checker', 'Quick Provjera pozicije', '2025-11-21 01:07:03'),
(32205, 'bs', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed Provjera', '2025-11-21 01:07:03'),
(32204, 'bs', 'seotools', 'Quick Checker', 'Quick Provjera', '2025-11-21 01:07:03'),
(32202, 'bs', 'seotools', 'PageSpeed Reports', 'PageSpeed Izvještaji', '2025-11-21 01:07:03'),
(32203, 'bs', 'seotools', 'Quick Backlinks Checker', 'Quick Provjera povratnih linkova', '2025-11-21 01:07:03'),
(32201, 'bs', 'seotools', 'pagespeed', 'PageSpeed Insights', '2025-11-21 01:07:03'),
(32200, 'bs', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for Izvještaji generation.\r\nThis Akcija may cause captcha in Pretraživač Rezultati.', '2025-11-21 01:07:03'),
(32199, 'bs', 'seotools', 'Keywords Manager', 'Ključne riječi Upravitelj', '2025-11-21 01:07:03'),
(32196, 'bs', 'seotools', 'Keyword Search Reports', 'Ključna riječ Pretraži Izvještaji', '2025-11-21 01:07:03'),
(32197, 'bs', 'seotools', 'Keyword Search Summary', 'Ključna riječ Pretraži Summary', '2025-11-21 01:07:03'),
(32198, 'bs', 'seotools', 'keyword-position-checker', 'Provjera pozicije ključne riječi', '2025-11-21 01:07:03'),
(32195, 'bs', 'seotools', 'Keyword Position Summary', 'Pozicija ključne riječi Summary', '2025-11-21 01:07:03'),
(32193, 'bs', 'seotools', 'Graphical Reports', 'Graphical Izvještaji', '2025-11-21 01:07:03'),
(32194, 'bs', 'seotools', 'Import Project Links', 'Uvezi Project Links', '2025-11-21 01:07:03'),
(32192, 'bs', 'seotools', 'Graphical Position Reports', 'Graphical Pozicija Izvještaji', '2025-11-21 01:07:03'),
(32191, 'bs', 'seotools', 'Google Sitemap Generator', 'Google Mapa sajta Generator', '2025-11-21 01:07:03'),
(32189, 'bs', 'seotools', 'Generate Reports', 'Generiši Izvještaji', '2025-11-21 01:07:03'),
(32190, 'bs', 'seotools', 'Generate Saturation Reports', 'Generiši Zasićenost Izvještaji', '2025-11-21 01:07:03'),
(32187, 'bs', 'seotools', 'Generate Keyword Reports', 'Generiši Ključna riječ Izvještaji', '2025-11-21 01:07:03'),
(32188, 'bs', 'seotools', 'Generate Rank Reports', 'Generiši Rang Izvještaji', '2025-11-21 01:07:03'),
(32185, 'bs', 'seotools', 'Featured Submission', 'Featured Slanje', '2025-11-21 01:07:03'),
(32186, 'bs', 'seotools', 'Generate Backlinks Reports', 'Generiši Povratni linkovi Izvještaji', '2025-11-21 01:07:03'),
(32184, 'bs', 'seotools', 'Edit Seo Tool', 'Uredi Seo Alat', '2025-11-21 01:07:03'),
(32183, 'bs', 'seotools', 'directory-submission', 'Slanje u direktorij', '2025-11-21 01:07:03'),
(32181, 'bs', 'seotools', 'Detailed Position Reports', 'Detailed Pozicija Izvještaji', '2025-11-21 01:07:03'),
(32182, 'bs', 'seotools', 'Detailed Reports', 'detaljni izvještaji', '2025-11-21 01:07:03');
INSERT INTO `texts` VALUES
(32180, 'bs', 'seotools', 'clickproceedaction', 'Unesite URL''s <b>Jedan po liniji</b>. Kliknite na <b>Nastavi</b> za provjeru Rezultati.', '2025-11-21 01:07:03'),
(32179, 'bs', 'seotools', 'clickgeneratereports', 'Kliknite na <b>Nastavi</b> to Generiši Izvještaji', '2025-11-21 01:07:03'),
(32177, 'bs', 'seotools', 'Backlinks Reports', 'Povratni linkovi Izvještaji', '2025-11-21 01:07:03'),
(32178, 'bs', 'seotools', 'Check Submission Status', 'Check Slanje Status', '2025-11-21 01:07:03'),
(32176, 'bs', 'seotools', 'backlink-checker', 'Provjera povratnih linkova', '2025-11-21 01:07:03'),
(32175, 'bs', 'seotools', 'Automatic Submission', 'Automatic Slanje', '2025-11-21 01:07:03'),
(32174, 'bs', 'seotools', 'Auditor Settings', 'Auditor Postavke', '2025-11-21 01:07:03'),
(32173, 'bs', 'seotools', 'Auditor Reports', 'Auditor Izvještaji', '2025-11-21 01:07:03'),
(32163, 'bs', 'review', 'Edit Review Link', 'Uredi Recenzija Link', '2025-11-21 01:07:03'),
(32164, 'bs', 'review', 'New Review Link', 'Novo Recenzija Link', '2025-11-21 01:07:03'),
(32165, 'bs', 'saturation', 'clickproceedsaturation', 'Unesite URL''s <b>Jedan po liniji</b>. Kliknite na <b>Nastavi</b> za provjeru Zasićenost pretraživača Rezultati', '2025-11-21 01:07:03'),
(32166, 'bs', 'saturation', 'GenerateSaturationReports', 'Generiši Zasićenost pretraživača Izvještaji', '2025-11-21 01:07:03'),
(32167, 'bs', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick Provjera zasićenosti pretraživača', '2025-11-21 01:07:03'),
(32168, 'bs', 'saturation', 'Saved Search Engine Saturation results of', 'Sačuvano Zasićenost pretraživača Rezultati of', '2025-11-21 01:07:03'),
(32169, 'bs', 'saturation', 'Search Engine Saturation Reports', 'Zasićenost pretraživača Izvještaji', '2025-11-21 01:07:03'),
(32170, 'bs', 'searchengine', 'max_results', 'Maximum number of Rezultati', '2025-11-21 01:07:03'),
(32171, 'bs', 'searchengine', 'no_of_results_page', 'Number of Rezultati per page', '2025-11-21 01:07:03'),
(32172, 'bs', 'seotools', 'Auditor Projects', 'Auditor Projects', '2025-11-21 01:07:03'),
(32131, 'bs', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a Proxy', '2025-11-21 01:07:03'),
(32132, 'bs', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web Proxy', '2025-11-21 01:07:03'),
(32133, 'bs', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web Proxy.', '2025-11-21 01:07:03'),
(32134, 'bs', 'QuickWebProxy', 'Server list is empty', 'Server Lista is empty', '2025-11-21 01:07:03'),
(32135, 'bs', 'QuickWebProxy', 'Url blocked in the web proxy', 'URL blocked in the web Proxy', '2025-11-21 01:07:03'),
(32136, 'bs', 'QuickWebProxy', 'Web Proxy', 'Web Proxy', '2025-11-21 01:07:03'),
(32137, 'bs', 'QuickWebProxy', 'Web Server', 'Web Server', '2025-11-21 01:07:03'),
(32138, 'bs', 'rank', 'enterurlproceed', 'Unesite URL''s <b>Jedan po liniji</b>. Kliknite na <b>Nastavi</b> za provjeru Google and Alexa rang.', '2025-11-21 01:07:03'),
(32139, 'bs', 'rank', 'Google and Alexa Rank Reports', 'Google and Alexa rang Izvještaji', '2025-11-21 01:07:03'),
(32140, 'bs', 'rank', 'Saved rank results of', 'Sačuvano Rezultati ranga of', '2025-11-21 01:07:03'),
(32141, 'bs', 'register', 'Account Information', 'Račun Informacija', '2025-11-21 01:07:03'),
(32142, 'bs', 'register', 'Already have account', 'Already have an Račun?', '2025-11-21 01:07:03'),
(32143, 'bs', 'register', 'First name placeholder', 'Ime', '2025-11-21 01:07:03'),
(32144, 'bs', 'register', 'Last name placeholder', 'Prezime', '2025-11-21 01:07:03'),
(32145, 'bs', 'register', 'Personal Information', 'Personal Informacija', '2025-11-21 01:07:03'),
(32146, 'bs', 'register', 'Register subtitle', 'Join us Danas and Početak optimizing your SEO', '2025-11-21 01:07:03'),
(32147, 'bs', 'register', 'Registration', 'Registracija', '2025-11-21 01:07:03'),
(32148, 'bs', 'register', 'Subscription Details', 'Pretplata Detalji', '2025-11-21 01:07:03'),
(32149, 'bs', 'register', 'user_confirm_content_1', 'Internal Greška occured while processing confirm request', '2025-11-21 01:07:03'),
(32150, 'bs', 'register', 'user_confirm_mail_cont_1', 'Thank you for your Registracija with', '2025-11-21 01:07:03'),
(32151, 'bs', 'register', 'user_confirm_mail_cont_2', 'Please Kliknite na the following link to confirm Registracija', '2025-11-21 01:07:03'),
(32152, 'bs', 'report', '2 Days', '2 Days', '2025-11-21 01:07:03'),
(32153, 'bs', 'report', 'Email notification', 'E-pošta notification', '2025-11-21 01:07:03'),
(32154, 'bs', 'report', 'keywordnumbercheckedcronnote', 'Note: Default 0 means Sve Ključne riječi should be Provjereno', '2025-11-21 01:07:03'),
(32155, 'bs', 'report', 'Next report generation time', 'Sljedeće Izvještaj generation time', '2025-11-21 01:07:03'),
(32156, 'bs', 'report', 'Reports generation interval', 'Izvještaji generation interval', '2025-11-21 01:07:03'),
(32157, 'bs', 'report', 'reportsettingssaved', 'Izvještaj Postavke Sačuvano Uspješno!', '2025-11-21 01:07:03'),
(32158, 'bs', 'report', 'sheduledsuccessfully', 'Scheduled Izvještaj generation Uspješno!', '2025-11-21 01:07:03'),
(32159, 'bs', 'reports', 'report_email_body_text1', 'Your Izvještaji generated Uspješno in seo panel. Please check the attached Izvještaji.', '2025-11-21 01:07:03'),
(32160, 'bs', 'reports', 'report_email_body_text2', 'If above Izvještaji are not clear, Please [LOGIN_LINK] to Prikaži the Izvještaji directly Od your Račun.', '2025-11-21 01:07:03'),
(32161, 'bs', 'reports', 'report_email_subject', 'Your SEO Izvještaji generated Uspješno', '2025-11-21 01:07:03'),
(32162, 'bs', 'reports', 'Reports Generated Successfully', 'Izvještaji Generated Uspješno', '2025-11-21 01:07:03'),
(32124, 'bs', 'proxy', 'Proxy Username', 'Proxy Korisničko ime', '2025-11-21 01:07:03'),
(32125, 'bs', 'proxy', 'Proxyalreadyexist', 'Proxy already exist!', '2025-11-21 01:07:03'),
(32126, 'bs', 'proxy', 'proxysyntax', 'Proxy Hostname, Proxy Port, Proxy Korisničko ime, Proxy Lozinka', '2025-11-21 01:07:03'),
(32127, 'bs', 'proxy', 'Request Count', 'Request Broj', '2025-11-21 01:07:03'),
(32128, 'bs', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2025-11-21 01:07:03'),
(32129, 'bs', 'QuickWebProxy', 'Please enter a valid url', 'Please enter a valid URL', '2025-11-21 01:07:03'),
(32130, 'bs', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow Korisnik to access the web Proxy', '2025-11-21 01:07:03'),
(32123, 'bs', 'proxy', 'Proxy Password', 'Proxy Lozinka', '2025-11-21 01:07:03'),
(32122, 'bs', 'proxy', 'enterproxynote', 'Enter Proxy Jedan po liniji in following format.', '2025-11-21 01:07:03'),
(32121, 'bs', 'proxy', 'Edit Proxy', 'Uredi Proxy', '2025-11-21 01:07:03'),
(32120, 'bs', 'proxy', 'click-to-get-proxy', 'Kliknite ovdje to get Proxy', '2025-11-21 01:07:03'),
(32119, 'bs', 'plugin', 'Seo Plugin Details', 'Seo Dodatak Detalji', '2025-11-21 01:07:03'),
(32118, 'bs', 'plugin', 'Plugin Name', 'Dodatak Ime', '2025-11-21 01:07:03'),
(32117, 'bs', 'plugin', 'Edit Seo Plugin', 'Uredi Seo Dodatak', '2025-11-21 01:07:03'),
(32116, 'bs', 'plugin', 'Download Seo Panel Plugins', 'Preuzmi SEO Panel dodaci', '2025-11-21 01:07:03'),
(32115, 'bs', 'panel', 'Website Manager', 'Web stranica Upravitelj', '2025-11-21 01:07:03'),
(32114, 'bs', 'panel', 'Website Access Manager', 'Web stranica Access Upravitelj', '2025-11-21 01:07:03'),
(32113, 'bs', 'panel', 'Valid', 'Valid', '2025-11-21 01:07:03'),
(32112, 'bs', 'panel', 'User Type Settings', 'Korisnik Tip Postavke', '2025-11-21 01:07:03'),
(32111, 'bs', 'panel', 'User Type Manager', 'Korisnik Tip Upravitelj', '2025-11-21 01:07:03'),
(32109, 'bs', 'panel', 'Themes Manager', 'Themes Upravitelj', '2025-11-21 01:07:03'),
(32110, 'bs', 'panel', 'User Manager', 'Korisnik Upravitelj', '2025-11-21 01:07:03'),
(32108, 'bs', 'panel', 'Test Email Settings', 'Test Postavke e-pošte', '2025-11-21 01:07:03'),
(32107, 'bs', 'panel', 'System Settings', 'Sistemske postavke', '2025-11-21 01:07:03'),
(32106, 'bs', 'panel', 'Sync Search Engines', 'Sync Pretraživači', '2025-11-21 01:07:03'),
(32105, 'bs', 'panel', 'Submit Sitemap', 'Pošalji Mapa sajta', '2025-11-21 01:07:03'),
(32104, 'bs', 'panel', 'Sitemaps', 'Sitemaps', '2025-11-21 01:07:03'),
(32103, 'bs', 'panel', 'Settings', 'Postavke', '2025-11-21 01:07:03'),
(32102, 'bs', 'panel', 'Seo Tools Manager', 'SEO alati Upravitelj', '2025-11-21 01:07:03'),
(32101, 'bs', 'panel', 'Seo Plugins Manager', 'SEO dodaci Upravitelj', '2025-11-21 01:07:03'),
(32099, 'bs', 'panel', 'Schedule Reports', 'Schedule Izvještaji', '2025-11-21 01:07:03'),
(32100, 'bs', 'panel', 'Search Engine Manager', 'Pretraživač Upravitelj', '2025-11-21 01:07:03'),
(32098, 'bs', 'panel', 'Reports Manager', 'Izvještaji Upravitelj', '2025-11-21 01:07:03'),
(32097, 'bs', 'panel', 'Report Settings', 'Izvještaj Postavke', '2025-11-21 01:07:03'),
(32096, 'bs', 'panel', 'Report Generation Manager', 'Izvještaj Generation Upravitelj', '2025-11-21 01:07:03'),
(32095, 'bs', 'panel', 'Report Generation Logs', 'Izvještaj Generation Logs', '2025-11-21 01:07:03'),
(32094, 'bs', 'panel', 'Proxy Settings', 'Postavke proxyja', '2025-11-21 01:07:03'),
(32093, 'bs', 'panel', 'Proxy Perfomance', 'Proxy Perfomance', '2025-11-21 01:07:03'),
(32092, 'bs', 'panel', 'Proxy Manager', 'Upravitelj proxyja', '2025-11-21 01:07:03'),
(32091, 'bs', 'panel', 'Project Summary', 'Project Summary', '2025-11-21 01:07:03'),
(32090, 'bs', 'panel', 'Project Manager', 'Upravitelj projekta', '2025-11-21 01:07:03'),
(32089, 'bs', 'panel', 'New Website', 'Novo Web stranica', '2025-11-21 01:07:03'),
(32088, 'bs', 'panel', 'New User Type', 'Novo Korisnik Tip', '2025-11-21 01:07:03'),
(32087, 'bs', 'panel', 'New User', 'Novo Korisnik', '2025-11-21 01:07:03'),
(32086, 'bs', 'panel', 'New Proxy', 'Novo Proxy', '2025-11-21 01:07:03'),
(32085, 'bs', 'panel', 'New Project', 'Novo Project', '2025-11-21 01:07:03'),
(32084, 'bs', 'panel', 'My Profile', 'My Profil', '2025-11-21 01:07:03'),
(32083, 'bs', 'panel', 'MOZ Settings', 'MOZ Postavke', '2025-11-21 01:07:03'),
(32082, 'bs', 'panel', 'Mail Settings', 'Mail Postavke', '2025-11-21 01:07:03'),
(32081, 'bs', 'panel', 'Mail Log Manager', 'Upravitelj zapisa e-pošte', '2025-11-21 01:07:03'),
(32080, 'bs', 'panel', 'Log Manager', 'Upravitelj zapisa', '2025-11-21 01:07:03'),
(32079, 'bs', 'panel', 'Import Websites', 'Uvezi Web stranice', '2025-11-21 01:07:03'),
(32078, 'bs', 'panel', 'Import Proxy', 'Uvezi Proxy', '2025-11-21 01:07:03'),
(32077, 'bs', 'panel', 'Google Settings', 'Google Postavke', '2025-11-21 01:07:03'),
(32076, 'bs', 'panel', 'Global Reports Settings', 'Global Izvještaji Postavke', '2025-11-21 01:07:03'),
(32075, 'bs', 'panel', 'Existing', 'Existing', '2025-11-21 01:07:03'),
(32074, 'bs', 'panel', 'Edit Project', 'Uredi Project', '2025-11-21 01:07:03'),
(32073, 'bs', 'panel', 'Edit My Profile', 'Uredi My Profil', '2025-11-21 01:07:03'),
(32072, 'bs', 'panel', 'Directory Manager', 'Upravitelj direktorija', '2025-11-21 01:07:03'),
(32071, 'bs', 'panel', 'DataForSEO Settings', 'DataForSEO Postavke', '2025-11-21 01:07:03'),
(32070, 'bs', 'panel', 'Current Time', 'Current Time', '2025-11-21 01:07:03'),
(32069, 'bs', 'panel', 'Cron Command', 'Cron Command', '2025-11-21 01:07:03'),
(32068, 'bs', 'panel', 'Crawl Log Manager', 'Upravitelj zapisa indeksiranja', '2025-11-21 01:07:03'),
(32067, 'bs', 'panel', 'Connections', 'Connections', '2025-11-21 01:07:03'),
(32066, 'bs', 'panel', 'Check Directory', 'Provjeri direktorij', '2025-11-21 01:07:03'),
(32065, 'bs', 'panel', 'Archived Reports', 'Archived Izvještaji', '2025-11-21 01:07:03'),
(32064, 'bs', 'panel', 'API Settings', 'API Postavke', '2025-11-21 01:07:03'),
(32063, 'bs', 'panel', 'API Manager', 'API upravitelj', '2025-11-21 01:07:03'),
(32062, 'bs', 'panel', 'API Connection', 'API Connection', '2025-11-21 01:07:03'),
(32061, 'bs', 'panel', 'alsocheckfollowlink', 'Također provjerite sljedeći link ako trebate više detalja.', '2025-11-21 01:07:03'),
(32060, 'bs', 'panel', 'Alerts', 'Alerts', '2025-11-21 01:07:03'),
(32059, 'bs', 'panel', 'Add following command to your cron tab', 'Dodaj following command to your cron tab', '2025-11-21 01:07:03'),
(32058, 'bs', 'panel', 'About Us', 'About Us', '2025-11-21 01:07:03'),
(32057, 'bs', 'pagespeed', 'Saved page speed results of', 'Sačuvano Brzina stranice Rezultati of', '2025-11-21 01:07:03'),
(32056, 'bs', 'pagespeed', 'PageSpeed Details', 'PageSpeed Detalji', '2025-11-21 01:07:03'),
(32055, 'bs', 'pagespeed', 'Page Speed', 'Brzina stranice', '2025-11-21 01:07:03'),
(32054, 'bs', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2025-11-21 01:07:03'),
(32053, 'bs', 'pagespeed', 'Mobile Speed', 'Mobile Speed', '2025-11-21 01:07:03'),
(32052, 'bs', 'pagespeed', 'Desktop Speed', 'Desktop Speed', '2025-11-21 01:07:03'),
(32051, 'bs', 'myaccount', 'Disconnected', 'Disconnected', '2025-11-21 01:07:03'),
(32050, 'bs', 'myaccount', 'Disconnect', 'Disconnect', '2025-11-21 01:07:03'),
(32049, 'bs', 'myaccount', 'Connected', 'Connected', '2025-11-21 01:07:03'),
(32048, 'bs', 'myaccount', 'Connect', 'Connect', '2025-11-21 01:07:03'),
(32047, 'bs', 'login', 'Your Password Reset Successfully', 'Vaša lozinka je uspješno resetovana', '2025-11-21 01:07:03'),
(32046, 'bs', 'login', 'Your Password Reset Failed', 'Your Lozinka Reset Neuspjelo', '2025-11-21 01:07:03'),
(32045, 'bs', 'login', 'Your account password is resetted and new password is', 'Your Račun Lozinka is resetted and Nova lozinka is', '2025-11-21 01:07:03'),
(32044, 'bs', 'login', 'Your account activated successfully', 'Vaš račun je uspješno aktiviran', '2025-11-21 01:07:03'),
(32042, 'bs', 'login', 'Verification', 'Verification', '2025-11-21 01:07:03'),
(32043, 'bs', 'login', 'Welcome message', 'Welcome Nazad! Please Prijava to your Račun', '2025-11-21 01:07:03'),
(32041, 'bs', 'login', 'usernameexist', 'Korisničko ime already exist!', '2025-11-21 01:07:03'),
(32040, 'bs', 'login', 'Username placeholder', 'Enter your Korisničko ime', '2025-11-21 01:07:03'),
(32039, 'bs', 'login', 'Username', 'Korisničko ime', '2025-11-21 01:07:03'),
(32038, 'bs', 'login', 'user_not_activated_msg', 'Korisnik nije aktiviran. Molimo provjerite vašu poštu za aktivaciju', '2025-11-21 01:07:03'),
(32037, 'bs', 'login', 'user_email_not_exist', 'E-pošta korisnika is not existing in system!', '2025-11-21 01:07:03'),
(32036, 'bs', 'login', 'User Type', 'Korisnik Tip', '2025-11-21 01:07:03'),
(32035, 'bs', 'login', 'User inactive', 'Korisnik inactive', '2025-11-21 01:07:03'),
(32034, 'bs', 'login', 'to login to your account', 'to Prijava to your Račun', '2025-11-21 01:07:03'),
(32033, 'bs', 'login', 'Sign in to your account', 'Prijavite se na svoj račun', '2025-11-21 01:07:03'),
(32032, 'bs', 'login', 'Sign In', 'Prijavite se', '2025-11-21 01:07:03'),
(32031, 'bs', 'login', 'Security message', 'Your Informacija is secure and encrypted', '2025-11-21 01:07:03'),
(32030, 'bs', 'login', 'Request Password', 'Request Lozinka', '2025-11-21 01:07:03'),
(32028, 'bs', 'login', 'Register', 'Registracija', '2025-11-21 01:07:03'),
(32029, 'bs', 'login', 'Remember password text', 'Remember your Lozinka?', '2025-11-21 01:07:03'),
(32027, 'bs', 'login', 'password_reset_success_message', 'Vaša lozinka je uspješno resetovana. Potvrda je poslana na adresu e-pošte. <br>Molimo provjerite vaše prijemno sanduče to get your Nova lozinka.', '2025-11-21 01:07:03'),
(32026, 'bs', 'login', 'Password placeholder', 'Enter your Lozinka', '2025-11-21 01:07:03'),
(32025, 'bs', 'login', 'Password incorrect', 'Lozinka incorrect', '2025-11-21 01:07:03'),
(32024, 'bs', 'login', 'Password', 'Lozinka', '2025-11-21 01:07:03'),
(32023, 'bs', 'login', 'No account text', 'Don''t have an Račun?', '2025-11-21 01:07:03'),
(32022, 'bs', 'login', 'newaccountsuccess', 'Novi račun uspješno kreiran!', '2025-11-21 01:07:03'),
(32021, 'bs', 'login', 'Login incorrect', 'Prijava incorrect', '2025-11-21 01:07:03'),
(32020, 'bs', 'login', 'Login', 'Prijava', '2025-11-21 01:07:03'),
(32019, 'bs', 'login', 'Last Name', 'Prezime', '2025-11-21 01:07:03'),
(32018, 'bs', 'login', 'internal_error_mail_send', 'An internal Greška occured while sending Lozinka reset mail!', '2025-11-21 01:07:03'),
(32017, 'bs', 'login', 'Forgot subtitle', 'Enter your E-pošta address and we''ll send you instructions to reset your Lozinka', '2025-11-21 01:07:03'),
(32016, 'bs', 'login', 'Forgot password?', 'Zaboravljena lozinka?', '2025-11-21 01:07:03'),
(32015, 'bs', 'login', 'First Name', 'Ime', '2025-11-21 01:07:03'),
(32014, 'bs', 'login', 'Enter the code as it is shown', 'Unesite kod kako je prikazan', '2025-11-21 01:07:03'),
(32013, 'bs', 'login', 'Enter the code', 'Unesite kod', '2025-11-21 01:07:03'),
(32012, 'bs', 'login', 'emailexist', 'E-pošta already exist!', '2025-11-21 01:07:03'),
(32011, 'bs', 'login', 'Email placeholder', 'your@E-pošta.com', '2025-11-21 01:07:03'),
(32010, 'bs', 'login', 'Email', 'E-pošta', '2025-11-21 01:07:03'),
(32009, 'bs', 'login', 'Create New Account', 'Kreiraj Novo Račun', '2025-11-21 01:07:03'),
(32008, 'bs', 'login', 'Create my account', 'Kreiraj Moj račun', '2025-11-21 01:07:03'),
(32007, 'bs', 'login', 'Confirm Password', 'Potvrdi lozinku', '2025-11-21 01:07:03'),
(32006, 'bs', 'log', 'Post Fields', 'Objava Fields', '2025-11-21 01:07:03'),
(32005, 'bs', 'log', 'Mail Log Details', 'Mail Log Detalji', '2025-11-21 01:07:03'),
(32004, 'bs', 'log', 'Crawl Log Details', 'Indeksiranje Log Detalji', '2025-11-21 01:07:03'),
(32003, 'bs', 'log', 'Clear All Logs', 'Clear Sve Logs', '2025-11-21 01:07:03'),
(32002, 'bs', 'label', 'Year', 'Year', '2025-11-21 01:07:03'),
(32001, 'bs', 'label', 'Write', 'Write', '2025-11-21 01:07:03'),
(32000, 'bs', 'label', 'Weekly', 'Weekly', '2025-11-21 01:07:03'),
(31999, 'bs', 'label', 'Week', 'Week', '2025-11-21 01:07:03'),
(31998, 'bs', 'label', 'wantproceed', 'Do you really want to Nastavi?', '2025-11-21 01:07:03'),
(31997, 'bs', 'label', 'View Reports', 'Prikaži Izvještaji', '2025-11-21 01:07:03'),
(31996, 'bs', 'label', 'Version', 'Version', '2025-11-21 01:07:03'),
(31995, 'bs', 'label', 'User agent', 'Korisnik agent', '2025-11-21 01:07:03'),
(31994, 'bs', 'label', 'Usability', 'Usability', '2025-11-21 01:07:03'),
(31993, 'bs', 'label', 'Upgrade', 'Upgrade', '2025-11-21 01:07:03'),
(31992, 'bs', 'label', 'Updated', 'Ažurirano', '2025-11-21 01:07:03'),
(31991, 'bs', 'label', 'Type', 'Tip', '2025-11-21 01:07:03'),
(31990, 'bs', 'label', 'Translators', 'Translators', '2025-11-21 01:07:03'),
(31989, 'bs', 'label', 'translation by', 'translation by', '2025-11-21 01:07:03'),
(31988, 'bs', 'label', 'Total Results', 'Ukupni rezultati', '2025-11-21 01:07:03'),
(31987, 'bs', 'label', 'Title', 'Naslov', '2025-11-21 01:07:03'),
(31986, 'bs', 'label', 'Theme', 'Theme', '2025-11-21 01:07:03'),
(31985, 'bs', 'label', 'Syntax', 'Syntax', '2025-11-21 01:07:03'),
(31984, 'bs', 'label', 'Success', 'Uspjeh', '2025-11-21 01:07:03'),
(31983, 'bs', 'label', 'Subject', 'Subject', '2025-11-21 01:07:03'),
(31982, 'bs', 'label', 'Sponsors', 'Sponsors', '2025-11-21 01:07:03'),
(31981, 'bs', 'label', 'Speed', 'Speed', '2025-11-21 01:07:03'),
(31980, 'bs', 'label', 'Select All', 'Odaberi Sve', '2025-11-21 01:07:03'),
(31979, 'bs', 'label', 'Second', 'Second', '2025-11-21 01:07:03'),
(31978, 'bs', 'label', 'Score', 'Ocjena', '2025-11-21 01:07:03'),
(31977, 'bs', 'label', 'Reviews', 'Recenzije', '2025-11-21 01:07:03'),
(31976, 'bs', 'label', 'Report Type', 'Tip izvještaja', '2025-11-21 01:07:03'),
(31975, 'bs', 'label', 'Referer', 'Referer', '2025-11-21 01:07:03'),
(31974, 'bs', 'label', 'Reference', 'Reference', '2025-11-21 01:07:03'),
(31972, 'bs', 'label', 'Read', 'Read', '2025-11-21 01:07:03'),
(31973, 'bs', 'label', 'Recent Activity', 'Recent Activity', '2025-11-21 01:07:03'),
(31971, 'bs', 'label', 'Re-install', 'Re-install', '2025-11-21 01:07:03'),
(31970, 'bs', 'label', 'Rating', 'Rating', '2025-11-21 01:07:03'),
(31969, 'bs', 'label', 'Proxy', 'Proxy', '2025-11-21 01:07:03'),
(31967, 'bs', 'label', 'Port', 'Port', '2025-11-21 01:07:03'),
(31968, 'bs', 'label', 'Project', 'Project', '2025-11-21 01:07:03'),
(31966, 'bs', 'label', 'Plugin', 'Dodatak', '2025-11-21 01:07:03'),
(31965, 'bs', 'label', 'Overview', 'Pregled', '2025-11-21 01:07:03'),
(31964, 'bs', 'label', 'Order By', 'Order By', '2025-11-21 01:07:03'),
(31963, 'bs', 'label', 'noactiveplugins', 'No Aktivan SEO dodaci Found!', '2025-11-21 01:07:03'),
(31961, 'bs', 'label', 'Monthly', 'Monthly', '2025-11-21 01:07:03'),
(31962, 'bs', 'label', 'Months', 'Months', '2025-11-21 01:07:03'),
(31960, 'bs', 'label', 'Month', 'Month', '2025-11-21 01:07:03'),
(31958, 'bs', 'label', 'Minute', 'Minute', '2025-11-21 01:07:03'),
(31959, 'bs', 'label', 'Mobile', 'Mobile', '2025-11-21 01:07:03'),
(31957, 'bs', 'label', 'Likes', 'Likes', '2025-11-21 01:07:03'),
(31956, 'bs', 'label', 'Keywords', 'Ključne riječi', '2025-11-21 01:07:03'),
(31955, 'bs', 'label', 'Just Now', 'Just Now', '2025-11-21 01:07:03'),
(31954, 'bs', 'label', 'Installation', 'Installation', '2025-11-21 01:07:03'),
(31953, 'bs', 'label', 'Include', 'Include', '2025-11-21 01:07:03'),
(31951, 'bs', 'label', 'Hour', 'Hour', '2025-11-21 01:07:03'),
(31952, 'bs', 'label', 'Impressions', 'Impressions', '2025-11-21 01:07:03'),
(31950, 'bs', 'label', 'From', 'Od', '2025-11-21 01:07:03'),
(31949, 'bs', 'label', 'Free', 'Free', '2025-11-21 01:07:03'),
(31948, 'bs', 'label', 'Followers', 'Followers', '2025-11-21 01:07:03'),
(31947, 'bs', 'label', 'Feature', 'Feature', '2025-11-21 01:07:03'),
(31946, 'bs', 'label', 'Fail', 'Fail', '2025-11-21 01:07:03'),
(31945, 'bs', 'label', 'Exclude', 'Exclude', '2025-11-21 01:07:03'),
(31944, 'bs', 'label', 'Email Body', 'E-pošta Body', '2025-11-21 01:07:03'),
(31943, 'bs', 'label', 'Download', 'Preuzmi', '2025-11-21 01:07:03'),
(31942, 'bs', 'label', 'Developers', 'Developers', '2025-11-21 01:07:03'),
(31941, 'bs', 'label', 'Desktop', 'Desktop', '2025-11-21 01:07:03'),
(31939, 'bs', 'label', 'Days', 'Days', '2025-11-21 01:07:03'),
(31940, 'bs', 'label', 'Description', 'Opis', '2025-11-21 01:07:03'),
(31937, 'bs', 'label', 'Daily', 'Daily', '2025-11-21 01:07:03'),
(31938, 'bs', 'label', 'Day', 'Day', '2025-11-21 01:07:03'),
(31936, 'bs', 'label', 'Current', 'Current', '2025-11-21 01:07:03'),
(31935, 'bs', 'label', 'Cron', 'Cron', '2025-11-21 01:07:03'),
(31933, 'bs', 'label', 'Cookie', 'Cookie', '2025-11-21 01:07:03'),
(31934, 'bs', 'label', 'Count', 'Broj', '2025-11-21 01:07:03'),
(31932, 'bs', 'label', 'Comments', 'Comments', '2025-11-21 01:07:03'),
(31931, 'bs', 'label', 'Clicks', 'Klikovi', '2025-11-21 01:07:03'),
(31930, 'bs', 'label', 'Click Here', 'Kliknite ovdje', '2025-11-21 01:07:03'),
(31929, 'bs', 'label', 'Clear All', 'Clear Sve', '2025-11-21 01:07:03'),
(31927, 'bs', 'label', 'Author', 'Author', '2025-11-21 01:07:03'),
(31928, 'bs', 'label', 'Brocken', 'Broken', '2025-11-21 01:07:03'),
(31925, 'bs', 'label', 'already exist', 'already exist', '2025-11-21 01:07:03'),
(31926, 'bs', 'label', 'Authentication', 'Authentication', '2025-11-21 01:07:03'),
(31924, 'bs', 'label', 'Ago', 'Ago', '2025-11-21 01:07:03'),
(31923, 'bs', 'label', 'Access denied', 'Access denied', '2025-11-21 01:07:03'),
(31922, 'bs', 'keyword', 'Your keyword count already reached the limit', 'Ključna riječ Broj already reached the limit for this Korisnik!', '2025-11-21 01:07:03'),
(31921, 'bs', 'keyword', 'You can add only keywordcount keywords more', 'You can Dodaj only [keywordcount] Ključne riječi for this Korisnik!', '2025-11-21 01:07:03'),
(31920, 'bs', 'keyword', 'Top Keywords', 'Top Ključne riječi', '2025-11-21 01:07:03'),
(31919, 'bs', 'keyword', 'to create new keywords', 'to Kreiraj Novo Ključne riječi', '2025-11-21 01:07:03'),
(31918, 'bs', 'keyword', 'Successfully crawled keyword', 'Uspješno indeksirana ključna riječ', '2025-11-21 01:07:03'),
(31917, 'bs', 'keyword', 'Show All results', 'Show Sve Rezultati', '2025-11-21 01:07:03'),
(31916, 'bs', 'keyword', 'results from ', 'Rezultati Od ', '2025-11-21 01:07:03'),
(31915, 'bs', 'keyword', 'Ranking Trends', 'Ranking Trends', '2025-11-21 01:07:03'),
(31914, 'bs', 'keyword', 'Quick Keyword Position Checker', 'Brza provjera pozicije ključne riječi', '2025-11-21 01:07:03'),
(31913, 'bs', 'keyword', 'pleaseselecttool', 'Molimo odaberite barem jedan SEO alat', '2025-11-21 01:07:03'),
(31912, 'bs', 'keyword', 'not assigned to required search engines', 'not assigned to required Pretraživači', '2025-11-21 01:07:03'),
(31911, 'bs', 'keyword', 'New Keyword', 'Novo Ključna riječ', '2025-11-21 01:07:03'),
(31910, 'bs', 'keyword', 'Keywords Tracked', 'Ključne riječi Tracked', '2025-11-21 01:07:03'),
(31909, 'bs', 'keyword', 'Keyword Ranking Trends', 'Ključna riječ Ranking Trends', '2025-11-21 01:07:03'),
(31908, 'bs', 'keyword', 'Keyword Position Report', 'Pozicija ključne riječi Izvještaj', '2025-11-21 01:07:03'),
(31907, 'bs', 'keyword', 'Keyword already exist', 'Ključna riječ already exist', '2025-11-21 01:07:03'),
(31906, 'bs', 'keyword', 'Insert keywords separated with comma', 'Insert Ključne riječi separated with comma', '2025-11-21 01:07:03'),
(31905, 'bs', 'keyword', 'Import Keywords', 'Uvezi Ključne riječi', '2025-11-21 01:07:03'),
(31904, 'bs', 'keyword', 'Graphical Keyword Position Reports', 'Graphical Pozicija ključne riječi Izvještaji', '2025-11-21 01:07:03'),
(31903, 'bs', 'keyword', 'Edit Keyword', 'Uredi ključnu riječ', '2025-11-21 01:07:03'),
(31902, 'bs', 'keyword', 'Detailed Keyword Position Reports', 'Detailed Pozicija ključne riječi Izvještaji', '2025-11-21 01:07:03'),
(31901, 'bs', 'keyword', 'Crawling keyword', 'Crawling Ključna riječ', '2025-11-21 01:07:03'),
(31900, 'bs', 'home', 'Website Statistics', 'Web stranica Statistics', '2025-11-21 01:07:03'),
(31899, 'bs', 'home', 'SiteNameUrl', 'Site Ime/URL', '2025-11-21 01:07:03'),
(31898, 'bs', 'home', 'Ranks', 'Ranks', '2025-11-21 01:07:03'),
(31897, 'bs', 'home', 'Pages Indexed', 'Pages Indexed', '2025-11-21 01:07:03'),
(31896, 'bs', 'home', 'Page Overview Report', 'Page Overview Izvještaj', '2025-11-21 01:07:03'),
(31894, 'bs', 'home', 'Keyword Overview Report', 'Ključna riječ Overview Izvještaj', '2025-11-21 01:07:03'),
(31895, 'bs', 'home', 'Overall Report Summary', 'Overall Izvještaj Summary', '2025-11-21 01:07:03'),
(31893, 'bs', 'home', 'Indexed', 'Indexed', '2025-11-21 01:07:03'),
(38656, 'ca', 'review', 'Total Review Links', 'Enllaços totals de ressenyes', '2026-01-19 22:58:50'),
(38657, 'cn', 'review', 'Total Review Links', '评论链接总数', '2026-01-19 22:58:50'),
(38658, 'cs', 'review', 'Total Review Links', 'Celkový počet odkazů na recenze', '2026-01-19 22:58:50'),
(38659, 'da', 'review', 'Total Review Links', 'Samlede anmeldelseslinks', '2026-01-19 22:58:50'),
(38660, 'de', 'review', 'Total Review Links', 'Gesamt Bewertungslinks', '2026-01-19 22:58:50'),
(38661, 'el', 'review', 'Total Review Links', 'Συνολικοί σύνδεσμοι αξιολογήσεων', '2026-01-19 22:58:50'),
(38662, 'es', 'review', 'Total Review Links', 'Enlaces totales de reseñas', '2026-01-19 22:58:50'),
(38663, 'es-ar', 'review', 'Total Review Links', 'Enlaces totales de reseñas', '2026-01-19 22:58:50'),
(38664, 'fa', 'review', 'Total Review Links', 'مجموع لینک های بررسی', '2026-01-19 22:58:50'),
(38665, 'fi', 'review', 'Total Review Links', 'Arvostelulinkit yhteensä', '2026-01-19 22:58:50'),
(38666, 'fr', 'review', 'Total Review Links', 'Total des liens d''avis', '2026-01-19 22:58:50'),
(38667, 'he', 'review', 'Total Review Links', 'סך הכל קישורי ביקורת', '2026-01-19 22:58:50'),
(38668, 'hi', 'review', 'Total Review Links', 'कुल समीक्षा लिंक', '2026-01-19 22:58:50'),
(38669, 'hr', 'review', 'Total Review Links', 'Ukupno linkova recenzija', '2026-01-19 22:58:50'),
(38670, 'hu', 'review', 'Total Review Links', 'Összes értékelési link', '2026-01-19 22:58:50'),
(38671, 'hy', 'review', 'Total Review Links', 'Ակնարկների հղումների ընդհանուր թիվը', '2026-01-19 22:58:50'),
(38672, 'id', 'review', 'Total Review Links', 'Total Tautan Ulasan', '2026-01-19 22:58:50'),
(38673, 'it', 'review', 'Total Review Links', 'Link Recensioni Totali', '2026-01-19 22:58:50'),
(38674, 'ja', 'review', 'Total Review Links', 'レビューリンク総数', '2026-01-19 22:58:50'),
(38675, 'ko', 'review', 'Total Review Links', '전체 리뷰 링크', '2026-01-19 22:58:50'),
(38676, 'lt', 'review', 'Total Review Links', 'Viso atsiliepimų nuorodų', '2026-01-19 22:58:50'),
(38677, 'mk', 'review', 'Total Review Links', 'Вкупно линкови за рецензии', '2026-01-19 22:58:50'),
(38678, 'nl', 'review', 'Total Review Links', 'Totaal aantal beoordelingslinks', '2026-01-19 22:58:50'),
(38679, 'no', 'review', 'Total Review Links', 'Totalt antall anmeldelseslenker', '2026-01-19 22:58:50'),
(38680, 'pl', 'review', 'Total Review Links', 'Łączna liczba linków recenzji', '2026-01-19 22:58:50'),
(38681, 'pt', 'review', 'Total Review Links', 'Links totais de avaliações', '2026-01-19 22:58:50'),
(38682, 'pt-br', 'review', 'Total Review Links', 'Links totais de avaliações', '2026-01-19 22:58:50'),
(38683, 'ro', 'review', 'Total Review Links', 'Total link-uri recenzii', '2026-01-19 22:58:50'),
(38684, 'ru', 'review', 'Total Review Links', 'Всего ссылок на отзывы', '2026-01-19 22:58:50'),
(38685, 'sk', 'review', 'Total Review Links', 'Celkový počet odkazov na recenzie', '2026-01-19 22:58:50'),
(38686, 'sl', 'review', 'Total Review Links', 'Skupaj povezav za mnenja', '2026-01-19 22:58:50'),
(38687, 'sq', 'review', 'Total Review Links', 'Totali i lidhjeve të rishikimeve', '2026-01-19 22:58:50'),
(38688, 'sr', 'review', 'Total Review Links', 'Укупно линкова рецензија', '2026-01-19 22:58:50'),
(38689, 'sv', 'review', 'Total Review Links', 'Totalt antal recensionslänkar', '2026-01-19 22:58:50'),
(38690, 'sw', 'review', 'Total Review Links', 'Jumla ya Viungo vya Mapitio', '2026-01-19 22:58:50'),
(38691, 'th', 'review', 'Total Review Links', 'จำนวนลิงก์รีวิวทั้งหมด', '2026-01-19 22:58:50'),
(38692, 'tl', 'review', 'Total Review Links', 'Kabuuang Review Links', '2026-01-19 22:58:50'),
(38693, 'tr', 'review', 'Total Review Links', 'Toplam İnceleme Bağlantıları', '2026-01-19 22:58:50'),
(38694, 'uk', 'review', 'Total Review Links', 'Загальна кількість посилань на відгуки', '2026-01-19 22:58:50'),
(38695, 'vn', 'review', 'Total Review Links', 'Tổng số liên kết đánh giá', '2026-01-19 22:58:50'),
(38696, 'zh', 'review', 'Total Review Links', '评论链接总数', '2026-01-19 22:58:50'),
(38697, 'en', 'review', 'Total Reviews', 'Total Reviews', '2026-01-19 22:58:50'),
(38698, 'ar', 'review', 'Total Reviews', 'إجمالي المراجعات', '2026-01-19 22:58:50'),
(38699, 'bg', 'review', 'Total Reviews', 'Общо отзиви', '2026-01-19 22:58:50'),
(38700, 'bs', 'review', 'Total Reviews', 'Ukupno recenzija', '2026-01-19 22:58:50'),
(38701, 'ca', 'review', 'Total Reviews', 'Ressenyes totals', '2026-01-19 22:58:50'),
(38702, 'cn', 'review', 'Total Reviews', '评论总数', '2026-01-19 22:58:50'),
(38703, 'cs', 'review', 'Total Reviews', 'Celkový počet recenzí', '2026-01-19 22:58:50'),
(38704, 'da', 'review', 'Total Reviews', 'Samlede anmeldelser', '2026-01-19 22:58:50'),
(38705, 'de', 'review', 'Total Reviews', 'Gesamtanzahl Bewertungen', '2026-01-19 22:58:50'),
(38706, 'el', 'review', 'Total Reviews', 'Σύνολο αξιολογήσεων', '2026-01-19 22:58:50'),
(38707, 'es', 'review', 'Total Reviews', 'Reseñas totales', '2026-01-19 22:58:50'),
(38708, 'es-ar', 'review', 'Total Reviews', 'Reseñas totales', '2026-01-19 22:58:50'),
(38709, 'fa', 'review', 'Total Reviews', 'مجموع بررسی ها', '2026-01-19 22:58:50'),
(38710, 'fi', 'review', 'Total Reviews', 'Arvostelut yhteensä', '2026-01-19 22:58:50'),
(38711, 'fr', 'review', 'Total Reviews', 'Total des avis', '2026-01-19 22:58:50'),
(38712, 'he', 'review', 'Total Reviews', 'סך הכל ביקורות', '2026-01-19 22:58:50'),
(38713, 'hi', 'review', 'Total Reviews', 'कुल समीक्षाएं', '2026-01-19 22:58:50'),
(38714, 'hr', 'review', 'Total Reviews', 'Ukupno recenzija', '2026-01-19 22:58:50'),
(38715, 'hu', 'review', 'Total Reviews', 'Összes értékelés', '2026-01-19 22:58:50'),
(38716, 'hy', 'review', 'Total Reviews', 'Ակնարկների ընդհանուր թիվը', '2026-01-19 22:58:50'),
(38717, 'id', 'review', 'Total Reviews', 'Total Ulasan', '2026-01-19 22:58:50'),
(38718, 'it', 'review', 'Total Reviews', 'Recensioni Totali', '2026-01-19 22:58:50'),
(38719, 'ja', 'review', 'Total Reviews', 'レビュー総数', '2026-01-19 22:58:50'),
(38720, 'ko', 'review', 'Total Reviews', '전체 리뷰', '2026-01-19 22:58:50'),
(38721, 'lt', 'review', 'Total Reviews', 'Viso atsiliepimų', '2026-01-19 22:58:50'),
(31888, 'bs', 'home', 'Backlinks', 'Povratni linkovi', '2025-11-21 01:07:03'),
(31889, 'bs', 'home', 'Directory Submission', 'Slanje u direktorij', '2025-11-21 01:07:03'),
(31887, 'bs', 'home', 'Account Summary', 'Račun Summary', '2025-11-21 01:07:03'),
(31886, 'bs', 'guest', 'Why Choose SEO Panel?', 'Why Choose SEO Panel?', '2025-11-21 01:07:03'),
(31885, 'bs', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-11-21 01:07:03'),
(31884, 'bs', 'guest', 'View Demo', 'Prikaži Demo', '2025-11-21 01:07:03'),
(31883, 'bs', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their Web stranice.', '2025-11-21 01:07:03'),
(31882, 'bs', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-11-21 01:07:03'),
(31881, 'bs', 'guest', 'Support Development', 'Support Development', '2025-11-21 01:07:03'),
(31880, 'bs', 'guest', 'Social Media Integration desc', 'Integrate with Google Analitika, Pretraži Console, and Društveni mediji platforms for comprehensive izvještavanje.', '2025-11-21 01:07:03'),
(31879, 'bs', 'guest', 'Social Media Integration', 'Društveni mediji Integration', '2025-11-21 01:07:03'),
(31878, 'bs', 'guest', 'Site Auditor desc', 'Provjeri sve SEO faktore svake stranice and generiši XML, HTML i TEXT mape sajta za pretraživače.', '2025-11-21 01:07:03'),
(31877, 'bs', 'guest', 'Search Engine Saturation desc', 'Find the number of indexed pages across different Pretraživači and monitor your indexing progress.', '2025-11-21 01:07:03'),
(31876, 'bs', 'guest', 'Resources & Support', 'Resources & Support', '2025-11-21 01:07:03'),
(31875, 'bs', 'guest', 'Rank Checker desc', 'Check Google PageRank, Alexa rang, and Moz Rang sa sveobuhvatnim dnevnim praćenjem i izvještavanjem.', '2025-11-21 01:07:03'),
(31874, 'bs', 'guest', 'Powerful SEO Features', 'Powerful SEO Karakteristike', '2025-11-21 01:07:03'),
(31873, 'bs', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful Dodaci including Article Submitter, Meta Tag Generator, and more.', '2025-11-21 01:07:03'),
(31872, 'bs', 'guest', 'Plugin Architecture', 'Dodatak Architecture', '2025-11-21 01:07:03'),
(31871, 'bs', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited Web stranice Od a single control panel with centralized izvještavanje.', '2025-11-21 01:07:03'),
(31870, 'bs', 'guest', 'Multi-Website Support', 'Multi-Web stranica Support', '2025-11-21 01:07:03'),
(31869, 'bs', 'guest', 'Login to Get Started', 'Prijava to Get Started', '2025-11-21 01:07:03'),
(31868, 'bs', 'guest', 'Keyword Position Checker desc', 'Track your Ključna riječ rankings across multiple Pretraživači with detailed daily Izvještaji and beautiful graphs.', '2025-11-21 01:07:03'),
(31866, 'bs', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-11-21 01:07:03'),
(31867, 'bs', 'guest', 'Highly Extensible desc', 'Easily develop and install custom Dodaci to extend functionality according to your needs.', '2025-11-21 01:07:03'),
(31865, 'bs', 'guest', 'Hero subtitle', 'World''s Prvo Otvori Source SEO Control Panel for Multiple Web stranice', '2025-11-21 01:07:03'),
(31864, 'bs', 'guest', 'Hero description', 'A complete Otvori source SEO control panel for managing Pretraživač optimization of your Web stranice. SEO Panel is a powerful toolkit that includes the latest SEO alati to increase and track the performance of your Web stranice.', '2025-11-21 01:07:03'),
(31863, 'bs', 'guest', 'Get Support', 'Get Support', '2025-11-21 01:07:03'),
(31862, 'bs', 'guest', 'Download SEO Panel', 'Preuzmi SEO Panel', '2025-11-21 01:07:03'),
(31861, 'bs', 'guest', 'Documentation', 'Documentation', '2025-11-21 01:07:03'),
(31860, 'bs', 'guest', 'Directory Submission desc', 'Automatically Pošalji your Web stranice to major free and paid directories with Status praćenje.', '2025-11-21 01:07:03'),
(31859, 'bs', 'guest', 'Contact Us', 'Kontakt Us', '2025-11-21 01:07:03'),
(31858, 'bs', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-11-21 01:07:03'),
(31857, 'bs', 'guest', 'Browse Plugins', 'Browse Dodaci', '2025-11-21 01:07:03'),
(31856, 'bs', 'guest', 'Backlinks Checker desc', 'Monitor the number of Povratni linkovi Od major Pretraživači and track your link building progress over time.', '2025-11-21 01:07:03'),
(31854, 'bs', 'guest', '100% Open Source', '100% Otvori Source', '2025-11-21 01:07:03'),
(31855, 'bs', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. Preuzmi, customize, and use without any restrictions.', '2025-11-21 01:07:03'),
(31853, 'bs', 'directory', 'Website Url', 'URL web stranice', '2025-11-21 01:07:03'),
(31852, 'bs', 'directory', 'Website Category', 'Web stranica Kategorija', '2025-11-21 01:07:03'),
(31851, 'bs', 'directory', 'Submit Title', 'Pošalji Naslov', '2025-11-21 01:07:03'),
(31850, 'bs', 'directory', 'Submit Keywords', 'Pošalji Ključne riječi', '2025-11-21 01:07:03'),
(31849, 'bs', 'directory', 'Submit Description', 'Pošalji Opis', '2025-11-21 01:07:03'),
(31848, 'bs', 'directory', 'Submission Details', 'Slanje Detalji', '2025-11-21 01:07:03'),
(31847, 'bs', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary E-pošta address.', '2025-11-21 01:07:03'),
(31846, 'bs', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi Alat za automatsko slanje u direktorij', '2025-11-21 01:07:03'),
(31845, 'bs', 'directory', 'selectwebsiteschecksub', 'Odaberi <b>Web stranica</b> to <b>Nastavi</b> check Slanje u direktorij.', '2025-11-21 01:07:03'),
(31844, 'bs', 'directory', 'selectwebsiteproceed', 'Odaberi <b>Web stranica</b> to <b>Nastavi</b> Slanje u direktorij.<br>Check <b>Directories with out captcha</b> to Pošalji to directories with out captcha', '2025-11-21 01:07:03'),
(31843, 'bs', 'directory', 'Reciprocal Link', 'Reciprocal Link', '2025-11-21 01:07:03'),
(31841, 'bs', 'directory', 'Pending', 'Na čekanju', '2025-11-21 01:07:03'),
(31842, 'bs', 'directory', 'Please select a website to proceed', 'Molimo odaberite web stranicu za nastavak', '2025-11-21 01:07:03'),
(31840, 'bs', 'directory', 'Owner Name', 'Owner Ime', '2025-11-21 01:07:03'),
(31839, 'bs', 'directory', 'Owner Email', 'Owner E-pošta', '2025-11-21 01:07:03'),
(31838, 'bs', 'directory', 'optionalnote', 'Optional titles and descriptions to Pošalji random Naslov and Opis to directories for better Rezultati.', '2025-11-21 01:07:03'),
(31837, 'bs', 'directory', 'nosuccessnote', 'Nije primljena poruka o uspjehu, Molimo provjerite vašu poštu za poruku potvrde', '2025-11-21 01:07:03'),
(31836, 'bs', 'directory', 'nodirnote', 'No <b>Aktivan</b> directories Found', '2025-11-21 01:07:03'),
(31835, 'bs', 'directory', 'nocatnote', 'Kategorija slanja nije pronađena na stranici slanja. Please Kliknite na <b>Učitaj ponovo</b> or <b>Preskoči</b>', '2025-11-21 01:07:03'),
(31834, 'bs', 'directory', 'Enter the code shown', 'Unesite prikazani kod', '2025-11-21 01:07:03'),
(31833, 'bs', 'directory', 'Directory Submission Reports', 'Slanje u direktorij Izvještaji', '2025-11-21 01:07:03'),
(31832, 'bs', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Link', '2025-11-21 01:07:03'),
(31831, 'bs', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2025-11-21 01:07:03'),
(31830, 'bs', 'directory', 'desnote', 'Some directories require minimum 150 characters for the Opis field.', '2025-11-21 01:07:03'),
(31829, 'bs', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured Slanje!', '2025-11-21 01:07:03'),
(31828, 'bs', 'directory', 'Coupon Offer', 'Coupon Offer', '2025-11-21 01:07:03'),
(31827, 'bs', 'directory', 'Coupon Code', 'Coupon Code', '2025-11-21 01:07:03'),
(31826, 'bs', 'directory', 'Confirmation', 'Potvrda', '2025-11-21 01:07:03'),
(31825, 'bs', 'directory', 'clicktoproceeddirsts', 'Kliknite na <b>Nastavi</b> to Provjeri Status direktorija.', '2025-11-21 01:07:03'),
(31824, 'bs', 'directory', 'clickaddfeatureddirectory', 'Kliknite ovdje da dodate svoj istaknuti direktorij', '2025-11-21 01:07:03'),
(31822, 'bs', 'directory', 'Check Directory Status', 'Provjeri status direktorija', '2025-11-21 01:07:03'),
(31823, 'bs', 'directory', 'Check Directory Submission Status', 'Provjeri status slanja u direktorij', '2025-11-21 01:07:03'),
(31820, 'bs', 'directory', 'Captcha', 'Captcha', '2025-11-21 01:07:03'),
(31821, 'bs', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. Početak with Top priority Kategorija.', '2025-11-21 01:07:03'),
(31819, 'bs', 'directory', 'Approved', 'Odobreno', '2025-11-21 01:07:03'),
(31818, 'bs', 'directory', 'Add back to directory list', 'Dodaj nazad na listu direktorija', '2025-11-21 01:07:03'),
(31817, 'bs', 'dashboard', 'Worst Rank', 'Worst Rang', '2025-11-21 01:07:03'),
(31816, 'bs', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility Ocjena (Standard Deviation)', '2025-11-21 01:07:03'),
(31815, 'bs', 'dashboard', 'Volatility Score', 'Volatility Ocjena', '2025-11-21 01:07:03'),
(31814, 'bs', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'Podaci o volatilnosti zahtijevaju najmanje 2 provjere ranga unutar odabranog perioda.', '2025-11-21 01:07:03'),
(31813, 'bs', 'dashboard', 'Volatility', 'Volatility', '2025-11-21 01:07:03'),
(31812, 'bs', 'dashboard', 'Trend', 'Trend', '2025-11-21 01:07:03'),
(31811, 'bs', 'dashboard', 'Top 3', 'Top 3', '2025-11-21 01:07:03'),
(31810, 'bs', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile Ključne riječi', '2025-11-21 01:07:03'),
(31809, 'bs', 'dashboard', 'Top 10', 'Top 10', '2025-11-21 01:07:03'),
(31808, 'bs', 'dashboard', 'Ranking Volatility', 'Ranking Volatility', '2025-11-21 01:07:03'),
(31807, 'bs', 'dashboard', 'positions', 'positions', '2025-11-21 01:07:03'),
(31806, 'bs', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-11-21 01:07:03'),
(31805, 'bs', 'dashboard', 'Keywords with most ranking fluctuations', 'Ključne riječi with most ranking fluctuations', '2025-11-21 01:07:03'),
(31804, 'bs', 'dashboard', 'Keywords by Ranking Position', 'Ključne riječi by Ranking Pozicija', '2025-11-21 01:07:03'),
(31803, 'bs', 'dashboard', 'Keyword Statistics', 'Ključna riječ Statistics', '2025-11-21 01:07:03'),
(31802, 'bs', 'dashboard', 'Keyword Distribution by Rank', 'Ključna riječ Distribution by Rang', '2025-11-21 01:07:03'),
(31801, 'bs', 'dashboard', 'Best Rank', 'Best Rang', '2025-11-21 01:07:03'),
(31800, 'bs', 'dashboard', 'Avg Rank', 'Avg Rang', '2025-11-21 01:07:03'),
(31799, 'bs', 'common', 'Yes', 'Da', '2025-11-21 01:07:03'),
(31798, 'bs', 'common', 'Websites Count', 'Web stranice Broj', '2025-11-21 01:07:03'),
(31797, 'bs', 'common', 'Website', 'Web stranica', '2025-11-21 01:07:03'),
(31796, 'bs', 'common', 'Warnings', 'Warnings', '2025-11-21 01:07:03'),
(31795, 'bs', 'common', 'User Type', 'Korisnik Tip', '2025-11-21 01:07:03'),
(31794, 'bs', 'common', 'User Panel', 'Korisnik Panel', '2025-11-21 01:07:03'),
(31792, 'bs', 'common', 'Url', 'URL', '2025-11-21 01:07:03'),
(31793, 'bs', 'common', 'User', 'Korisnik', '2025-11-21 01:07:03'),
(31791, 'bs', 'common', 'Total', 'Ukupno', '2025-11-21 01:07:03'),
(31790, 'bs', 'common', 'Tools', 'Alati', '2025-11-21 01:07:03'),
(31789, 'bs', 'common', 'Thank you', 'Thank you', '2025-11-21 01:07:03'),
(31788, 'bs', 'common', 'Support', 'Support', '2025-11-21 01:07:03'),
(31786, 'bs', 'common', 'Spam Score', 'Spam Ocjena', '2025-11-21 01:07:03'),
(31787, 'bs', 'common', 'Status', 'Status', '2025-11-21 01:07:03'),
(31785, 'bs', 'common', 'Source', 'Source', '2025-11-21 01:07:03'),
(31784, 'bs', 'common', 'signin', 'Prijavite se', '2025-11-21 01:07:03'),
(31782, 'bs', 'common', 'Sign out', 'Odjavite se', '2025-11-21 01:07:03'),
(31783, 'bs', 'common', 'Sign Up', 'Registruj se', '2025-11-21 01:07:03'),
(31780, 'bs', 'common', 'Seo Tools', 'SEO alati', '2025-11-21 01:07:03'),
(31781, 'bs', 'common', 'Server', 'Server', '2025-11-21 01:07:03'),
(31778, 'bs', 'common', 'Select', 'Odaberi', '2025-11-21 01:07:03'),
(31779, 'bs', 'common', 'Seo Plugins', 'SEO dodaci', '2025-11-21 01:07:03'),
(31777, 'bs', 'common', 'Search Engine Count', 'Pretraživač Broj', '2025-11-21 01:07:03'),
(31776, 'bs', 'common', 'Search Engine', 'Pretraživač', '2025-11-21 01:07:03'),
(31775, 'bs', 'common', 'Sample CSV File', 'Sample CSV File', '2025-11-21 01:07:03'),
(31774, 'bs', 'common', 'Results', 'Rezultati', '2025-11-21 01:07:03'),
(31773, 'bs', 'common', 'Reports', 'Izvještaji', '2025-11-21 01:07:03'),
(31772, 'bs', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification Neuspjelo', '2025-11-21 01:07:03'),
(31726, 'bs', 'common', 'General', 'General', '2025-11-21 01:07:03'),
(31727, 'bs', 'common', 'Google Pagerank', 'Google Pagerank', '2025-11-21 01:07:03'),
(31728, 'bs', 'common', 'Hello', 'Hello', '2025-11-21 01:07:03'),
(31729, 'bs', 'common', 'help', 'Pomoć', '2025-11-21 01:07:03'),
(31730, 'bs', 'common', 'hidenews', 'Hide Seo Panel News', '2025-11-21 01:07:03'),
(31731, 'bs', 'common', 'Home', 'Početna', '2025-11-21 01:07:03'),
(31732, 'bs', 'common', 'Id', 'Id', '2025-11-21 01:07:03'),
(31733, 'bs', 'common', 'Inactivate', 'Inactivate', '2025-11-21 01:07:03'),
(31734, 'bs', 'common', 'Inactive', 'Inactive', '2025-11-21 01:07:03'),
(31735, 'bs', 'common', 'Internal error occured', 'Internal Greška occured', '2025-11-21 01:07:03'),
(31736, 'bs', 'common', 'Invalid characters', 'Invalid characters', '2025-11-21 01:07:03'),
(31737, 'bs', 'common', 'Invalid code entered', 'Unesen je neispravan kod', '2025-11-21 01:07:03'),
(31738, 'bs', 'common', 'Invalid email address entered', 'Unesena je neispravna adresa e-pošte', '2025-11-21 01:07:03'),
(31739, 'bs', 'common', 'Invalid Url', 'Invalid URL', '2025-11-21 01:07:03'),
(31740, 'bs', 'common', 'Invalid value', 'Invalid Vrijednost', '2025-11-21 01:07:03'),
(31741, 'bs', 'common', 'Keyword', 'Ključna riječ', '2025-11-21 01:07:03'),
(31742, 'bs', 'common', 'Keywords', 'Ključne riječi', '2025-11-21 01:07:03'),
(31743, 'bs', 'common', 'Keywords Count', 'Ključne riječi Broj', '2025-11-21 01:07:03'),
(31744, 'bs', 'common', 'lang', 'Jezik', '2025-11-21 01:07:03'),
(31745, 'bs', 'common', 'Link', 'Link', '2025-11-21 01:07:03'),
(31746, 'bs', 'common', 'Logout', 'Odjava', '2025-11-21 01:07:03'),
(31747, 'bs', 'common', 'Metric', 'Metric', '2025-11-21 01:07:03'),
(31748, 'bs', 'common', 'MOZ Rank', 'MOZ Rang', '2025-11-21 01:07:03'),
(31749, 'bs', 'common', 'My Account', 'Moj račun', '2025-11-21 01:07:03'),
(31750, 'bs', 'Common', 'Name', 'Ime', '2025-11-21 01:07:03'),
(31751, 'bs', 'common', 'New User Type', 'Novo Korisnik Tip', '2025-11-21 01:07:03'),
(31752, 'bs', 'common', 'No', 'Ne', '2025-11-21 01:07:03'),
(31753, 'bs', 'common', 'No Keywords Found', 'No Ključne riječi Found', '2025-11-21 01:07:03'),
(31754, 'bs', 'common', 'No Records Found', 'Nema pronađenih zapisa', '2025-11-21 01:07:03'),
(31755, 'bs', 'common', 'noactivetools', 'No Aktivan SEO alati Found!', '2025-11-21 01:07:03'),
(31756, 'bs', 'common', 'nowebsites', 'No Web stranice Found', '2025-11-21 01:07:03'),
(31757, 'bs', 'common', 'Number', 'Number', '2025-11-21 01:07:03'),
(31758, 'bs', 'common', 'Page Authority', 'Autoritet stranice', '2025-11-21 01:07:03'),
(31759, 'bs', 'common', 'Pagerank', 'Pagerank', '2025-11-21 01:07:03'),
(31760, 'bs', 'common', 'password632', 'The Lozinka string should have a length between 6 and 32', '2025-11-21 01:07:03'),
(31761, 'bs', 'common', 'passwordnotmatch', 'The passwords do not match', '2025-11-21 01:07:03'),
(31762, 'bs', 'common', 'Period', 'Period', '2025-11-21 01:07:03'),
(31763, 'bs', 'common', 'Plugins', 'Dodaci', '2025-11-21 01:07:03'),
(31764, 'bs', 'common', 'Powered by', 'Powered by', '2025-11-21 01:07:03'),
(31765, 'bs', 'common', 'Price', 'Price', '2025-11-21 01:07:03'),
(31766, 'bs', 'common', 'Pricing', 'Pricing', '2025-11-21 01:07:03'),
(31767, 'bs', 'common', 'Priority', 'Priority', '2025-11-21 01:07:03'),
(31768, 'bs', 'common', 'Profile', 'Profil', '2025-11-21 01:07:03'),
(31769, 'bs', 'common', 'Range', 'Range', '2025-11-21 01:07:03'),
(31770, 'bs', 'common', 'Rank', 'Rang', '2025-11-21 01:07:03'),
(31771, 'bs', 'common', 'Rankings', 'Rankings', '2025-11-21 01:07:03'),
(31708, 'bs', 'common', 'Country', 'Zemlja', '2025-11-21 01:07:03'),
(31709, 'bs', 'common', 'Crawl Meta Data', 'Indeksiraj meta podatke', '2025-11-21 01:07:03'),
(31710, 'bs', 'common', 'Dashboard', 'Kontrolna tabla', '2025-11-21 01:07:03'),
(31711, 'bs', 'common', 'Date', 'Datum', '2025-11-21 01:07:03'),
(31712, 'bs', 'common', 'Debug', 'Otklanjanje grešaka', '2025-11-21 01:07:03'),
(31713, 'bs', 'common', 'Delete', 'Izbriši', '2025-11-21 01:07:03'),
(31714, 'bs', 'common', 'Details', 'Detalji', '2025-11-21 01:07:03'),
(31715, 'bs', 'common', 'Directory', 'Direktorij', '2025-11-21 01:07:03'),
(31716, 'bs', 'common', 'Domain Authority', 'Autoritet domene', '2025-11-21 01:07:03'),
(31717, 'bs', 'common', 'Donate', 'Doniraj', '2025-11-21 01:07:03'),
(31718, 'bs', 'common', 'Edit', 'Uredi', '2025-11-21 01:07:03'),
(31719, 'bs', 'common', 'Edit User Type', 'Uredi korisnika Tip', '2025-11-21 01:07:03'),
(31720, 'bs', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2025-11-21 01:07:03'),
(31721, 'bs', 'common', 'entrynotvalid', 'Uneseni unos ne izgleda validan', '2025-11-21 01:07:03'),
(31722, 'bs', 'common', 'Errors', 'Errors', '2025-11-21 01:07:03'),
(31723, 'bs', 'common', 'failed', 'Neuspjelo', '2025-11-21 01:07:03'),
(31724, 'bs', 'common', 'forum', 'Forum', '2025-11-21 01:07:03'),
(31725, 'bs', 'common', 'Found', 'Found', '2025-11-21 01:07:03'),
(31695, 'bs', 'button', 'Submit', 'Pošalji', '2025-11-21 01:07:03'),
(31696, 'bs', 'common', 'Action', 'Akcija', '2025-11-21 01:07:03');
INSERT INTO `texts` VALUES
(31697, 'bs', 'common', 'Activate', 'Aktiviraj', '2025-11-21 01:07:03'),
(31698, 'bs', 'common', 'Active', 'Aktivan', '2025-11-21 01:07:03'),
(31699, 'bs', 'common', 'Admin Panel', 'Admin panel', '2025-11-21 01:07:03'),
(31700, 'bs', 'common', 'Alexa Rank', 'Alexa rang', '2025-11-21 01:07:03'),
(31701, 'bs', 'common', 'All', 'Sve', '2025-11-21 01:07:03'),
(31702, 'bs', 'common', 'API Token', 'API token', '2025-11-21 01:07:03'),
(31703, 'bs', 'common', 'Blog', 'Blog', '2025-11-21 01:07:03'),
(31704, 'bs', 'common', 'Category', 'Kategorija', '2025-11-21 01:07:03'),
(31705, 'bs', 'common', 'Checked', 'Provjereno', '2025-11-21 01:07:03'),
(31706, 'bs', 'common', 'contact', 'Kontakt', '2025-11-21 01:07:03'),
(31707, 'bs', 'common', 'copyright', 'Copyright © [year] www.seopanel.org Sve rights reserved', '2025-11-21 01:07:03'),
(31694, 'bs', 'button', 'Skip', 'Preskoči', '2025-11-21 01:07:03'),
(31693, 'bs', 'button', 'Show Records', 'Prikaži zapise', '2025-11-21 01:07:03'),
(31692, 'bs', 'button', 'Show Details', 'Prikaži detalje', '2025-11-21 01:07:03'),
(31691, 'bs', 'button', 'Search', 'Pretraži', '2025-11-21 01:07:03'),
(31689, 'bs', 'button', 'Proceed', 'Nastavi', '2025-11-21 01:07:03'),
(31690, 'bs', 'button', 'Reload', 'Učitaj ponovo', '2025-11-21 01:07:03'),
(31688, 'bs', 'button', 'Check Status', 'Provjeri status', '2025-11-21 01:07:03'),
(31687, 'bs', 'button', 'Cancel', 'Otkaži', '2025-11-21 01:07:03'),
(31686, 'bs', 'blog', 'Older Posts', 'Starije objave', '2025-11-21 01:07:03'),
(31685, 'bs', 'blog', 'NothingFound_text2', 'Žao nam je, ali ništa ne odgovara vašim kriterijima pretrage. Molimo pokušajte ponovo sa nekim drugim ključnim riječima.', '2025-11-21 01:07:03'),
(31684, 'bs', 'blog', 'Nothing Found', 'Ništa nije pronađeno', '2025-11-21 01:07:03'),
(31683, 'bs', 'blog', 'Newer Posts', 'Novije objave', '2025-11-21 01:07:03'),
(31682, 'bs', 'backlink', 'Saved backlink results of', 'Sačuvano Povratni link Rezultati of', '2025-11-21 01:07:03'),
(31681, 'bs', 'backlink', 'Domain Backlinks', 'Povratni linkovi domene', '2025-11-21 01:07:03'),
(31680, 'bs', 'backlink', 'Domain Backlink Count', 'Broj povratnih linkova domene', '2025-11-21 01:07:03'),
(31679, 'bs', 'backlink', 'clickproceedbacklink', 'Unesite URL''s <b>Jedan po liniji</b>. Kliknite na <b>Nastavi</b> to Provjeri povratne linkove.', '2025-11-21 01:07:03'),
(31678, 'bs', 'backlink', 'Backlink Count', 'Broj povratnih linkova', '2025-11-21 01:07:03'),
(31676, 'bs', 'api', 'API Guide', 'API Guide', '2025-11-21 01:07:03'),
(31677, 'bs', 'api', 'API Url', 'API URL', '2025-11-21 01:07:03'),
(31675, 'bs', 'analytics', 'view_id_not_found_error', 'Greška: Analitika Prikaži ID is not set for Web stranica. Uredi web stranicu and Ažuriraj Prikaži ID.', '2025-11-21 01:07:03'),
(31673, 'bs', 'analytics', 'Sessions', 'Sesije', '2025-11-21 01:07:03'),
(31674, 'bs', 'analytics', 'Users', 'Korisnici', '2025-11-21 01:07:03'),
(31672, 'bs', 'analytics', 'New Users', 'Novi korisnici', '2025-11-21 01:07:03'),
(31670, 'bs', 'analytics', 'Bounce Rate', 'Stopa napuštanja', '2025-11-21 01:07:03'),
(31671, 'bs', 'analytics', 'Goal Completions', 'Postignuća ciljeva', '2025-11-21 01:07:03'),
(31669, 'bs', 'analytics', 'Avg. Session Duration', 'Prosječno trajanje sesije', '2025-11-21 01:07:03'),
(31570, 'ca', 'siteauditor', 'The page is not having backlinks in', 'The page does not have Enllaços entrants in', '2025-11-21 01:03:34'),
(31569, 'ca', 'siteauditor', 'The page is having very good pagerank', 'The page has very good pagerank', '2025-11-21 01:03:34'),
(31568, 'ca', 'siteauditor', 'The page is having very good page authority value', 'The page has very good Autoritat de la pàgina Valor', '2025-11-21 01:03:34'),
(31567, 'ca', 'siteauditor', 'The page is having poor pagerank', 'The page has poor pagerank', '2025-11-21 01:03:34'),
(31565, 'ca', 'siteauditor', 'The page is having good pagerank', 'The page has good pagerank', '2025-11-21 01:03:34'),
(31563, 'ca', 'siteauditor', 'The page is having good number of backlinks in', 'The page has good number of Enllaços entrants in', '2025-11-21 01:03:34'),
(31562, 'ca', 'siteauditor', 'The page is having exellent pagerank', 'The page has excellent pagerank', '2025-11-21 01:03:34'),
(31557, 'ca', 'siteauditor', 'Store all links found in a page', 'Store Tot links found in a page', '2025-11-21 01:03:34'),
(31552, 'ca', 'siteauditor', 'Recheck Pages', 'Recheck Pages', '2025-11-21 01:03:34'),
(31550, 'ca', 'siteauditor', 'Project Url', 'Project URL', '2025-11-21 01:03:34'),
(31547, 'ca', 'siteauditor', 'Pages Found', 'Pages Found', '2025-11-21 01:03:34'),
(31545, 'ca', 'siteauditor', 'Page Link', 'Page Link', '2025-11-21 01:03:34'),
(31541, 'ca', 'siteauditor', 'Nofollow', 'Nofollow', '2025-11-21 01:03:34'),
(31536, 'ca', 'siteauditor', 'Link Reports', 'Link Informes', '2025-11-21 01:03:34'),
(31535, 'ca', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links De the Informes', '2025-11-21 01:03:34'),
(31529, 'ca', 'siteauditor', 'Exclude links', 'Exclude links', '2025-11-21 01:03:34'),
(31528, 'ca', 'siteauditor', 'Duplicate Title', 'Duplicate Títol', '2025-11-21 01:03:34'),
(31525, 'ca', 'siteauditor', 'Crawling Page', 'Crawling Page', '2025-11-21 01:03:34'),
(31523, 'ca', 'siteauditor', 'Crawled Pages', 'Indexat Pages', '2025-11-21 01:03:34'),
(31522, 'ca', 'siteauditor', 'Crawled', 'Indexat', '2025-11-21 01:03:34'),
(31518, 'ca', 'siteauditor', 'Check pages indexed or not', 'Check pages indexed or not', '2025-11-21 01:03:34'),
(31516, 'ca', 'siteauditor', 'Check google pagerank of pages', 'Check google pagerank of pages', '2025-11-21 01:03:34'),
(31512, 'ca', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded De Informes', '2025-11-21 01:03:34'),
(31511, 'ca', 'siteauditor', 'Anchor', 'Anchor', '2025-11-21 01:03:34'),
(31510, 'ca', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up to Data.', '2025-11-21 01:03:34'),
(31509, 'ca', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up to Data. <br>Please Descarregar Nou version', '2025-11-21 01:03:34'),
(31508, 'ca', 'settings', 'Verify connection', 'Verify connection', '2025-11-21 01:03:34'),
(31507, 'ca', 'settings', 'syssettingssaved', 'Configuració del sistema Desat Correctament!', '2025-11-21 01:03:34'),
(31506, 'ca', 'settings', 'SP_USER_REGISTRATION', 'Usuari Registre interface', '2025-11-21 01:03:34'),
(31505, 'ca', 'settings', 'SP_USER_GEN_REPORT', 'Allow Usuari to Generar Informes', '2025-11-21 01:03:34'),
(31502, 'ca', 'settings', 'SP_TIME_ZONE', 'Time Zone', '2025-11-21 01:03:34'),
(31503, 'ca', 'settings', 'SP_TITLE', 'Seo Panel Títol', '2025-11-21 01:03:34'),
(31504, 'ca', 'settings', 'SP_USER_AGENT', 'Usuari agent', '2025-11-21 01:03:34'),
(31501, 'ca', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Minimum Allowed informes Interval', '2025-11-21 01:03:34'),
(31500, 'ca', 'settings', 'SP_SMTP_USERNAME', 'SMTP Nom d''usuari', '2025-11-21 01:03:34'),
(31499, 'ca', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2025-11-21 01:03:34'),
(31497, 'ca', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2025-11-21 01:03:34'),
(31498, 'ca', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Contrasenya', '2025-11-21 01:03:34'),
(31496, 'ca', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2025-11-21 01:03:34'),
(31495, 'ca', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2025-11-21 01:03:34'),
(31494, 'ca', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send custom header with curl request', '2025-11-21 01:03:34'),
(31493, 'ca', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of Correu electrònic notifications for Informes', '2025-11-21 01:03:34'),
(31492, 'ca', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Indexació relative links in a page', '2025-11-21 01:03:34'),
(31489, 'ca', 'settings', 'SP_PAGINGNO', 'Number of entries per page', '2025-11-21 01:03:34'),
(31490, 'ca', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2025-11-21 01:03:34'),
(31491, 'ca', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2025-11-21 01:03:34'),
(31488, 'ca', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Number of Paraules clau needs to be Verificat in each cron execution', '2025-11-21 01:03:34'),
(31486, 'ca', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2025-11-21 01:03:34'),
(31487, 'ca', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2025-11-21 01:03:34'),
(31484, 'ca', 'settings', 'SP_KEYWORDS', 'Seo Panel Paraules clau', '2025-11-21 01:03:34'),
(31485, 'ca', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2025-11-21 01:03:34'),
(31483, 'ca', 'settings', 'SP_HOTLINKING', 'Image hotlink protection Activat', '2025-11-21 01:03:34'),
(31481, 'ca', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2025-11-21 01:03:34'),
(31482, 'ca', 'settings', 'SP_GOOGLE_API_KEY', 'Google API Key', '2025-11-21 01:03:34'),
(31479, 'ca', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google Analítiques seguiment Code', '2025-11-21 01:03:34'),
(31480, 'ca', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2025-11-21 01:03:34'),
(31477, 'ca', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable Proxy for Google API', '2025-11-21 01:03:34'),
(31478, 'ca', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2025-11-21 01:03:34'),
(31476, 'ca', 'settings', 'SP_ENABLE_PROXY', 'Enable Proxy', '2025-11-21 01:03:34'),
(31475, 'ca', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2025-11-21 01:03:34'),
(31473, 'ca', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2025-11-21 01:03:34'),
(31474, 'ca', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for Enllaç entrant and Verificador de saturació', '2025-11-21 01:03:34'),
(31472, 'ca', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2025-11-21 01:03:34'),
(31470, 'ca', 'settings', 'SP_DFS_API_LOGIN', 'API Iniciar sessió', '2025-11-21 01:03:34'),
(31471, 'ca', 'settings', 'SP_DFS_API_PASSWORD', 'API Contrasenya', '2025-11-21 01:03:34'),
(31469, 'ca', 'settings', 'SP_DESCRIPTION', 'Seo Panel Descripció', '2025-11-21 01:03:34'),
(31468, 'ca', 'settings', 'SP_DEFAULTLANG', 'Default Idioma', '2025-11-21 01:03:34'),
(31467, 'ca', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider Indexació(seconds)', '2025-11-21 01:03:34'),
(31466, 'ca', 'settings', 'SP_COMPANY_NAME', 'Company Nom', '2025-11-21 01:03:34'),
(31465, 'ca', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2025-11-21 01:03:34'),
(31464, 'ca', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow Usuaris to schedule Informe', '2025-11-21 01:03:34'),
(31463, 'ca', 'settings', 'seopanel_title', 'Seo Panel: World''s Primer Obrir source seo control panel for managing multiple web sites', '2025-11-21 01:03:34'),
(31462, 'ca', 'settings', 'seopanel_description', 'A complete free control panel for managing Motor de cerca optimization of your Llocs web. It containing lots of hot Eines SEO to increase and track the performace your Llocs web. Its an Obrir source software and also you can develop your own Complements SEO for seo panel.', '2025-11-21 01:03:34'),
(31461, 'ca', 'settings', 'Send Email', 'Send Correu electrònic', '2025-11-21 01:03:34'),
(31460, 'ca', 'settings', 'SA_MAX_NO_PAGES', 'Maximum number of pages allowed per Lloc web', '2025-11-21 01:03:34'),
(31459, 'ca', 'settings', 'SA_CRAWL_DELAY_TIME', 'Auditor del lloc Indexació delay between each pages', '2025-11-21 01:03:34'),
(31458, 'ca', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate Proxy When Crawling Fallat', '2025-11-21 01:03:34'),
(31457, 'ca', 'settings', 'Please update MOZ settings to get complete results', 'Please Actualitzar MOZ Configuració to get complete Resultats', '2025-11-21 01:03:34'),
(31456, 'ca', 'settings', 'Please update google settings to get the results', 'Please Actualitzar google Configuració to get the Resultats', '2025-11-21 01:03:34'),
(31455, 'ca', 'settings', 'getallpluginfree', 'Also get Tot <b>Complements</b> we develop for <b>Free!</b>', '2025-11-21 01:03:34'),
(31454, 'ca', 'settings', 'entersmtpdetails', 'Please enter SMTP mail configuration', '2025-11-21 01:03:34'),
(31453, 'ca', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP Proxy Tunnel', '2025-11-21 01:03:34'),
(31452, 'ca', 'settings', 'click-to-get-moz-account', 'Feu clic aquí to get MOZ Compte', '2025-11-21 01:03:34'),
(31451, 'ca', 'settings', 'click-to-get-google-api-key', 'Feu clic aquí to get Google API Key', '2025-11-21 01:03:34'),
(31450, 'ca', 'settings', 'click-to-get-google-api-client-id', 'Feu clic aquí to get Google API Client Id', '2025-11-21 01:03:34'),
(31449, 'ca', 'settings', 'click-to-get-dataforseo-account', 'Feu clic aquí to get Free DataForSEO Compte', '2025-11-21 01:03:34'),
(31448, 'ca', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Donar $100</b> and become a <b>sponsor</b> of Seo Panel.', '2025-11-21 01:03:34'),
(31447, 'ca', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another Proxy When Crawling Fallat', '2025-11-21 01:03:34'),
(31445, 'ca', 'settings', 'Check for Updates', 'Check for Updates', '2025-11-21 01:03:34'),
(31446, 'ca', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Maximum number of proxies used in single execution', '2025-11-21 01:03:34'),
(31443, 'ca', 'settings', 'API_SECRET', 'API Secret', '2025-11-21 01:03:34'),
(31439, 'ca', 'seotools', 'Website Analytics Summary', 'Lloc web Analítiques Summary', '2025-11-21 01:03:34'),
(31438, 'ca', 'seotools', 'webmaster-tools', 'Eines de webmaster', '2025-11-21 01:03:34'),
(31437, 'ca', 'seotools', 'web-analytics', 'Lloc web Analítiques', '2025-11-21 01:03:34'),
(31434, 'ca', 'seotools', 'Social Media Report Summary', 'Xarxes socials Informe Summary', '2025-11-21 01:03:34'),
(31433, 'ca', 'seotools', 'Social Media Links', 'Xarxes socials Links', '2025-11-21 01:03:34'),
(31432, 'ca', 'seotools', 'sm-checker', 'Xarxes socials Verificador', '2025-11-21 01:03:34'),
(31431, 'ca', 'seotools', 'Skipped Directories', 'Skipped Directories', '2025-11-21 01:03:34'),
(31426, 'ca', 'seotools', 'Saturation Reports', 'Saturació Informes', '2025-11-21 01:03:34'),
(31425, 'ca', 'seotools', 'review-manager', 'Gestor de ressenyes', '2025-11-21 01:03:34'),
(31424, 'ca', 'seotools', 'Review Report Summary', 'Ressenya Informe Summary', '2025-11-21 01:03:34'),
(31423, 'ca', 'seotools', 'Review Links', 'Ressenya Links', '2025-11-21 01:03:34'),
(31422, 'ca', 'seotools', 'rank-checker', 'Verificador de posició', '2025-11-21 01:03:34'),
(31421, 'ca', 'seotools', 'Rank Reports', 'Posició Informes', '2025-11-21 01:03:34'),
(31420, 'ca', 'seotools', 'Quick Saturation Checker', 'Quick Verificador de saturació', '2025-11-21 01:03:34'),
(31419, 'ca', 'seotools', 'Quick Rank Checker', 'Quick Verificador de posició', '2025-11-21 01:03:34'),
(31418, 'ca', 'seotools', 'Quick Position Checker', 'Quick Verificador de posició', '2025-11-21 01:03:34'),
(31417, 'ca', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed Verificador', '2025-11-21 01:03:34'),
(31416, 'ca', 'seotools', 'Quick Checker', 'Quick Verificador', '2025-11-21 01:03:34'),
(31415, 'ca', 'seotools', 'Quick Backlinks Checker', 'Quick Verificador d''enllaços entrants', '2025-11-21 01:03:34'),
(31413, 'ca', 'seotools', 'pagespeed', 'PageSpeed Insights', '2025-11-21 01:03:34'),
(31412, 'ca', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for Informes generation.\r\nThis Acció may cause captcha in Motor de cerca Resultats.', '2025-11-21 01:03:34'),
(31411, 'ca', 'seotools', 'Keywords Manager', 'Paraules clau Gestor', '2025-11-21 01:03:34'),
(31409, 'ca', 'seotools', 'Keyword Search Summary', 'Paraula clau Cercar Summary', '2025-11-21 01:03:34'),
(31408, 'ca', 'seotools', 'Keyword Search Reports', 'Paraula clau Cercar Informes', '2025-11-21 01:03:34'),
(31407, 'ca', 'seotools', 'Keyword Position Summary', 'Posició de paraula clau Summary', '2025-11-21 01:03:34'),
(31406, 'ca', 'seotools', 'Import Project Links', 'Importar Project Links', '2025-11-21 01:03:34'),
(31405, 'ca', 'seotools', 'Graphical Reports', 'Graphical Informes', '2025-11-21 01:03:34'),
(31404, 'ca', 'seotools', 'Graphical Position Reports', 'Graphical Posició Informes', '2025-11-21 01:03:34'),
(31401, 'ca', 'seotools', 'Generate Reports', 'Generar Informes', '2025-11-21 01:03:34'),
(31400, 'ca', 'seotools', 'Generate Rank Reports', 'Generar Posició Informes', '2025-11-21 01:03:34'),
(31399, 'ca', 'seotools', 'Generate Keyword Reports', 'Generar Paraula clau Informes', '2025-11-21 01:03:34'),
(31398, 'ca', 'seotools', 'Generate Backlinks Reports', 'Generar Enllaços entrants Informes', '2025-11-21 01:03:34'),
(31397, 'ca', 'seotools', 'Featured Submission', 'Featured Enviament', '2025-11-21 01:03:34'),
(31396, 'ca', 'seotools', 'Edit Seo Tool', 'Editar Seo Eina', '2025-11-21 01:03:34'),
(31395, 'ca', 'seotools', 'directory-submission', 'Enviament a directoris', '2025-11-21 01:03:34'),
(31394, 'ca', 'seotools', 'Detailed Reports', 'informes detallats', '2025-11-21 01:03:34'),
(31393, 'ca', 'seotools', 'Detailed Position Reports', 'Detailed Posició Informes', '2025-11-21 01:03:34'),
(31392, 'ca', 'seotools', 'clickproceedaction', 'Introduïu l''URL''s <b>Una per línia</b>. Feu clic a <b>Continuar</b> per verificar Resultats.', '2025-11-21 01:03:34'),
(31391, 'ca', 'seotools', 'clickgeneratereports', 'Feu clic a <b>Continuar</b> to Generar Informes', '2025-11-21 01:03:34'),
(31390, 'ca', 'seotools', 'Check Submission Status', 'Check Enviament Estat', '2025-11-21 01:03:34'),
(31389, 'ca', 'seotools', 'Backlinks Reports', 'Enllaços entrants Informes', '2025-11-21 01:03:34'),
(31388, 'ca', 'seotools', 'backlink-checker', 'Verificador d''enllaços entrants', '2025-11-21 01:03:34'),
(31387, 'ca', 'seotools', 'Automatic Submission', 'Automatic Enviament', '2025-11-21 01:03:34'),
(31386, 'ca', 'seotools', 'Auditor Settings', 'Auditor Configuració', '2025-11-21 01:03:34'),
(31385, 'ca', 'seotools', 'Auditor Reports', 'Auditor Informes', '2025-11-21 01:03:34'),
(31384, 'ca', 'seotools', 'Auditor Projects', 'Auditor Projects', '2025-11-21 01:03:34'),
(31383, 'ca', 'searchengine', 'no_of_results_page', 'Number of Resultats per page', '2025-11-21 01:03:34'),
(31382, 'ca', 'searchengine', 'max_results', 'Maximum number of Resultats', '2025-11-21 01:03:34'),
(31381, 'ca', 'saturation', 'Search Engine Saturation Reports', 'Saturació del motor de cerca Informes', '2025-11-21 01:03:34'),
(31380, 'ca', 'saturation', 'Saved Search Engine Saturation results of', 'Desat Saturació del motor de cerca Resultats of', '2025-11-21 01:03:34'),
(31379, 'ca', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick Verificador de saturació del motor de cerca', '2025-11-21 01:03:34'),
(31378, 'ca', 'saturation', 'GenerateSaturationReports', 'Generar Saturació del motor de cerca Informes', '2025-11-21 01:03:34'),
(31377, 'ca', 'saturation', 'clickproceedsaturation', 'Introduïu l''URL''s <b>Una per línia</b>. Feu clic a <b>Continuar</b> per verificar Saturació del motor de cerca Resultats', '2025-11-21 01:03:34'),
(31376, 'ca', 'review', 'New Review Link', 'Nou Ressenya Link', '2025-11-21 01:03:34'),
(31375, 'ca', 'review', 'Edit Review Link', 'Editar Ressenya Link', '2025-11-21 01:03:34'),
(31374, 'ca', 'reports', 'Reports Generated Successfully', 'Informes Generated Correctament', '2025-11-21 01:03:34'),
(31373, 'ca', 'reports', 'report_email_subject', 'Your SEO Informes generated Correctament', '2025-11-21 01:03:34'),
(31372, 'ca', 'reports', 'report_email_body_text2', 'If above Informes are not clear, Please [LOGIN_LINK] to Veure the Informes directly De your Compte.', '2025-11-21 01:03:34'),
(31370, 'ca', 'report', 'sheduledsuccessfully', 'Scheduled Informe generation Correctament!', '2025-11-21 01:03:34'),
(31369, 'ca', 'report', 'reportsettingssaved', 'Informe Configuració Desat Correctament!', '2025-11-21 01:03:34'),
(31367, 'ca', 'report', 'Next report generation time', 'Següent Informe generation time', '2025-11-21 01:03:34'),
(31366, 'ca', 'report', 'keywordnumbercheckedcronnote', 'Note: Default 0 means Tot Paraules clau should be Verificat', '2025-11-21 01:03:34'),
(31364, 'ca', 'report', '2 Days', '2 Days', '2025-11-21 01:03:34'),
(31365, 'ca', 'report', 'Email notification', 'Correu electrònic notification', '2025-11-21 01:03:34'),
(31363, 'ca', 'register', 'user_confirm_mail_cont_2', 'Please Feu clic a the following link to confirm Registre', '2025-11-21 01:03:34'),
(31362, 'ca', 'register', 'user_confirm_mail_cont_1', 'Thank you for your Registre with', '2025-11-21 01:03:34'),
(31360, 'ca', 'register', 'Subscription Details', 'Subscripció Detalls', '2025-11-21 01:03:34'),
(31359, 'ca', 'register', 'Registration', 'Registre', '2025-11-21 01:03:34'),
(31358, 'ca', 'register', 'Register subtitle', 'Join us Avui and Iniciar optimizing your SEO', '2025-11-21 01:03:34'),
(31357, 'ca', 'register', 'Personal Information', 'Personal Informació', '2025-11-21 01:03:34'),
(31356, 'ca', 'register', 'Last name placeholder', 'Cognoms', '2025-11-21 01:03:34'),
(31355, 'ca', 'register', 'First name placeholder', 'Nom', '2025-11-21 01:03:34'),
(31354, 'ca', 'register', 'Already have account', 'Already have an Compte?', '2025-11-21 01:03:34'),
(31353, 'ca', 'register', 'Account Information', 'Compte Informació', '2025-11-21 01:03:34'),
(31352, 'ca', 'rank', 'Saved rank results of', 'Desat Resultats de posició of', '2025-11-21 01:03:34'),
(31351, 'ca', 'rank', 'Google and Alexa Rank Reports', 'Google and Posició Alexa Informes', '2025-11-21 01:03:34'),
(31350, 'ca', 'rank', 'enterurlproceed', 'Introduïu l''URL''s <b>Una per línia</b>. Feu clic a <b>Continuar</b> per verificar Google and Posició Alexa.', '2025-11-21 01:03:34'),
(31349, 'ca', 'QuickWebProxy', 'Web Server', 'Web Server', '2025-11-21 01:03:34'),
(31348, 'ca', 'QuickWebProxy', 'Web Proxy', 'Web Proxy', '2025-11-21 01:03:34'),
(31347, 'ca', 'QuickWebProxy', 'Url blocked in the web proxy', 'URL blocked in the web Proxy', '2025-11-21 01:03:34'),
(31346, 'ca', 'QuickWebProxy', 'Server list is empty', 'Server Llista is empty', '2025-11-21 01:03:34'),
(31339, 'ca', 'proxy', 'Request Count', 'Request Recompte', '2025-11-21 01:03:34'),
(31295, 'ca', 'panel', 'MOZ Settings', 'MOZ Configuració', '2025-11-21 01:03:34'),
(31296, 'ca', 'panel', 'My Profile', 'My Perfil', '2025-11-21 01:03:34'),
(31289, 'ca', 'panel', 'Google Settings', 'Google Configuració', '2025-11-21 01:03:34'),
(31290, 'ca', 'panel', 'Import Proxy', 'Importar Proxy', '2025-11-21 01:03:34'),
(31287, 'ca', 'panel', 'Existing', 'Existing', '2025-11-21 01:03:34'),
(31284, 'ca', 'panel', 'Directory Manager', 'Gestor de directoris', '2025-11-21 01:03:34'),
(31270, 'ca', 'panel', 'About Us', 'About Us', '2025-11-21 01:03:34'),
(31269, 'ca', 'pagespeed', 'Saved page speed results of', 'Desat Velocitat de pàgina Resultats of', '2025-11-21 01:03:34'),
(31268, 'ca', 'pagespeed', 'PageSpeed Details', 'PageSpeed Detalls', '2025-11-21 01:03:34'),
(31267, 'ca', 'pagespeed', 'Page Speed', 'Velocitat de pàgina', '2025-11-21 01:03:34'),
(31266, 'ca', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2025-11-21 01:03:34'),
(31265, 'ca', 'pagespeed', 'Mobile Speed', 'Mobile Speed', '2025-11-21 01:03:34'),
(31263, 'ca', 'myaccount', 'Disconnected', 'Disconnected', '2025-11-21 01:03:34'),
(31264, 'ca', 'pagespeed', 'Desktop Speed', 'Desktop Speed', '2025-11-21 01:03:34'),
(31261, 'ca', 'myaccount', 'Connected', 'Connected', '2025-11-21 01:03:34'),
(31262, 'ca', 'myaccount', 'Disconnect', 'Disconnect', '2025-11-21 01:03:34'),
(31260, 'ca', 'myaccount', 'Connect', 'Connect', '2025-11-21 01:03:34'),
(31259, 'ca', 'login', 'Your Password Reset Successfully', 'La vostra contrasenya s''ha restablert correctament', '2025-11-21 01:03:34'),
(31258, 'ca', 'login', 'Your Password Reset Failed', 'Your Contrasenya Reset Fallat', '2025-11-21 01:03:34'),
(31257, 'ca', 'login', 'Your account password is resetted and new password is', 'Your Compte Contrasenya is resetted and Nova contrasenya is', '2025-11-21 01:03:34'),
(31256, 'ca', 'login', 'Your account activated successfully', 'El vostre compte s''ha activat correctament', '2025-11-21 01:03:34'),
(31255, 'ca', 'login', 'Welcome message', 'Welcome Enrere! Please Iniciar sessió to your Compte', '2025-11-21 01:03:34'),
(31254, 'ca', 'login', 'Verification', 'Verification', '2025-11-21 01:03:34'),
(31253, 'ca', 'login', 'usernameexist', 'Nom d''usuari already exist!', '2025-11-21 01:03:34'),
(31252, 'ca', 'login', 'Username placeholder', 'Enter your Nom d''usuari', '2025-11-21 01:03:34'),
(31251, 'ca', 'login', 'Username', 'Nom d''usuari', '2025-11-21 01:03:34'),
(31250, 'ca', 'login', 'user_not_activated_msg', 'L''usuari no està activat. Si us plau, comproveu el vostre correu per a l''activació', '2025-11-21 01:03:34'),
(31249, 'ca', 'login', 'user_email_not_exist', 'Correu de l''usuari is not existing in system!', '2025-11-21 01:03:34'),
(31248, 'ca', 'login', 'User Type', 'Usuari Tipus', '2025-11-21 01:03:34'),
(31247, 'ca', 'login', 'User inactive', 'Usuari inactive', '2025-11-21 01:03:34'),
(31246, 'ca', 'login', 'to login to your account', 'to Iniciar sessió to your Compte', '2025-11-21 01:03:34'),
(31245, 'ca', 'login', 'Sign in to your account', 'Inicieu sessió al vostre compte', '2025-11-21 01:03:34'),
(31244, 'ca', 'login', 'Sign In', 'Iniciar sessió', '2025-11-21 01:03:34'),
(31243, 'ca', 'login', 'Security message', 'Your Informació is secure and encrypted', '2025-11-21 01:03:34'),
(31242, 'ca', 'login', 'Request Password', 'Request Contrasenya', '2025-11-21 01:03:34'),
(31241, 'ca', 'login', 'Remember password text', 'Remember your Contrasenya?', '2025-11-21 01:03:34'),
(31240, 'ca', 'login', 'Register', 'Registrar-se', '2025-11-21 01:03:34'),
(31239, 'ca', 'login', 'password_reset_success_message', 'La vostra contrasenya s''ha restablert correctament. S''ha enviat un correu de confirmació a l''adreça de correu electrònic. <br>Si us plau, comproveu la vostra safata d''entrada to get your Nova contrasenya.', '2025-11-21 01:03:34'),
(31238, 'ca', 'login', 'Password placeholder', 'Enter your Contrasenya', '2025-11-21 01:03:34'),
(31237, 'ca', 'login', 'Password incorrect', 'Contrasenya incorrect', '2025-11-21 01:03:34'),
(31235, 'ca', 'login', 'No account text', 'Don''t have an Compte?', '2025-11-21 01:03:34'),
(31236, 'ca', 'login', 'Password', 'Contrasenya', '2025-11-21 01:03:34'),
(31233, 'ca', 'login', 'Login incorrect', 'Iniciar sessió incorrect', '2025-11-21 01:03:34'),
(31234, 'ca', 'login', 'newaccountsuccess', 'Nou compte creat correctament!', '2025-11-21 01:03:34'),
(31232, 'ca', 'login', 'Login', 'Iniciar sessió', '2025-11-21 01:03:34'),
(31231, 'ca', 'login', 'Last Name', 'Cognoms', '2025-11-21 01:03:34'),
(31230, 'ca', 'login', 'internal_error_mail_send', 'An internal Error occured while sending Contrasenya reset mail!', '2025-11-21 01:03:34'),
(31229, 'ca', 'login', 'Forgot subtitle', 'Enter your Correu electrònic address and we''ll send you instructions to reset your Contrasenya', '2025-11-21 01:03:34'),
(31157, 'ca', 'label', 'Exclude', 'Exclude', '2025-11-21 01:03:34'),
(31156, 'ca', 'label', 'Email Body', 'Correu electrònic Body', '2025-11-21 01:03:34'),
(31155, 'ca', 'label', 'Download', 'Descarregar', '2025-11-21 01:03:34'),
(31153, 'ca', 'label', 'Desktop', 'Desktop', '2025-11-21 01:03:34'),
(31154, 'ca', 'label', 'Developers', 'Developers', '2025-11-21 01:03:34'),
(31152, 'ca', 'label', 'Description', 'Descripció', '2025-11-21 01:03:34'),
(31150, 'ca', 'label', 'Day', 'Day', '2025-11-21 01:03:34'),
(31151, 'ca', 'label', 'Days', 'Days', '2025-11-21 01:03:34'),
(31148, 'ca', 'label', 'Current', 'Current', '2025-11-21 01:03:34'),
(31147, 'ca', 'label', 'Cron', 'Cron', '2025-11-21 01:03:34'),
(31146, 'ca', 'label', 'Count', 'Recompte', '2025-11-21 01:03:34'),
(31142, 'ca', 'label', 'Click Here', 'Feu clic aquí', '2025-11-21 01:03:34'),
(31143, 'ca', 'label', 'Clicks', 'Clics', '2025-11-21 01:03:34'),
(31140, 'ca', 'label', 'Brocken', 'Broken', '2025-11-21 01:03:34'),
(31141, 'ca', 'label', 'Clear All', 'Clear Tot', '2025-11-21 01:03:34'),
(31138, 'ca', 'label', 'Authentication', 'Authentication', '2025-11-21 01:03:34'),
(31139, 'ca', 'label', 'Author', 'Author', '2025-11-21 01:03:34'),
(31136, 'ca', 'label', 'Ago', 'Ago', '2025-11-21 01:03:34'),
(31137, 'ca', 'label', 'already exist', 'already exist', '2025-11-21 01:03:34'),
(31135, 'ca', 'label', 'Access denied', 'Access denied', '2025-11-21 01:03:34'),
(31133, 'ca', 'keyword', 'You can add only keywordcount keywords more', 'You can Afegir only [keywordcount] Paraules clau for this Usuari!', '2025-11-21 01:03:34'),
(31132, 'ca', 'keyword', 'Top Keywords', 'Top Paraules clau', '2025-11-21 01:03:34'),
(31131, 'ca', 'keyword', 'to create new keywords', 'to Crear Nou Paraules clau', '2025-11-21 01:03:34'),
(29942, 'fi', 'siteauditor', 'Check pages indexed or not', 'Check pages indexed or not', '2025-11-21 00:59:35'),
(29941, 'fi', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of pages', '2025-11-21 00:59:35'),
(29940, 'fi', 'siteauditor', 'Check google pagerank of pages', 'Check google pagerank of pages', '2025-11-21 00:59:35'),
(29939, 'fi', 'siteauditor', 'Check broken links in a page', 'Check broken links in a page', '2025-11-21 00:59:35'),
(29938, 'fi', 'siteauditor', 'Check backlinks of pages', 'Tarkista takaisinlinkit of pages', '2025-11-21 00:59:35'),
(29937, 'fi', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded Alkaen Sivustokartta', '2025-11-21 00:59:35'),
(29936, 'fi', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded Alkaen Raportit', '2025-11-21 00:59:35'),
(29935, 'fi', 'siteauditor', 'Anchor', 'Anchor', '2025-11-21 00:59:35'),
(29934, 'fi', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up to Päivämäärä.', '2025-11-21 00:59:35'),
(29933, 'fi', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up to Päivämäärä. <br>Please Lataa Uusi version', '2025-11-21 00:59:35'),
(29932, 'fi', 'settings', 'Verify connection', 'Verify connection', '2025-11-21 00:59:35'),
(29931, 'fi', 'settings', 'syssettingssaved', 'Järjestelmäasetukset Tallennettu Onnistuneesti!', '2025-11-21 00:59:35'),
(29930, 'fi', 'settings', 'SP_USER_REGISTRATION', 'Käyttäjä Rekisteröityminen interface', '2025-11-21 00:59:35'),
(29929, 'fi', 'settings', 'SP_USER_GEN_REPORT', 'Allow Käyttäjä to Luo Raportit', '2025-11-21 00:59:35'),
(29928, 'fi', 'settings', 'SP_USER_AGENT', 'Käyttäjä agent', '2025-11-21 00:59:35'),
(29927, 'fi', 'settings', 'SP_TITLE', 'Seo Panel Otsikko', '2025-11-21 00:59:35'),
(29926, 'fi', 'settings', 'SP_TIME_ZONE', 'Time Zone', '2025-11-21 00:59:35'),
(29925, 'fi', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Minimum Allowed raportointi Interval', '2025-11-21 00:59:35'),
(29924, 'fi', 'settings', 'SP_SMTP_USERNAME', 'SMTP Käyttäjänimi', '2025-11-21 00:59:35'),
(29923, 'fi', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2025-11-21 00:59:35'),
(29922, 'fi', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Salasana', '2025-11-21 00:59:35'),
(29921, 'fi', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2025-11-21 00:59:35'),
(29920, 'fi', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2025-11-21 00:59:35'),
(29919, 'fi', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2025-11-21 00:59:35'),
(29918, 'fi', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send custom header with curl request', '2025-11-21 00:59:35'),
(29917, 'fi', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of Sähköposti notifications for Raportit', '2025-11-21 00:59:35'),
(29916, 'fi', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Indeksointi relative links in a page', '2025-11-21 00:59:35'),
(29915, 'fi', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2025-11-21 00:59:35'),
(29914, 'fi', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2025-11-21 00:59:35'),
(29913, 'fi', 'settings', 'SP_PAGINGNO', 'Number of entries per page', '2025-11-21 00:59:35'),
(29912, 'fi', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Number of Avainsanat needs to be Tarkistettu in each cron execution', '2025-11-21 00:59:35'),
(29911, 'fi', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2025-11-21 00:59:35'),
(29910, 'fi', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2025-11-21 00:59:35'),
(29909, 'fi', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2025-11-21 00:59:35'),
(29908, 'fi', 'settings', 'SP_KEYWORDS', 'Seo Panel Avainsanat', '2025-11-21 00:59:35'),
(29907, 'fi', 'settings', 'SP_HOTLINKING', 'Image hotlink protection Käytössä', '2025-11-21 00:59:35'),
(29906, 'fi', 'settings', 'SP_GOOGLE_API_KEY', 'Google API Key', '2025-11-21 00:59:35'),
(29905, 'fi', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2025-11-21 00:59:35'),
(29904, 'fi', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2025-11-21 00:59:35'),
(29903, 'fi', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google Analytiikka seuranta Code', '2025-11-21 00:59:35'),
(29902, 'fi', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2025-11-21 00:59:35'),
(29901, 'fi', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable Välityspalvelin for Google API', '2025-11-21 00:59:35'),
(29900, 'fi', 'settings', 'SP_ENABLE_PROXY', 'Enable Välityspalvelin', '2025-11-21 00:59:35'),
(29899, 'fi', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2025-11-21 00:59:35'),
(29898, 'fi', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for Takaisinlinkki and Kyllästymistarkistaja', '2025-11-21 00:59:35'),
(29897, 'fi', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2025-11-21 00:59:35'),
(29896, 'fi', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2025-11-21 00:59:35'),
(29895, 'fi', 'settings', 'SP_DFS_API_PASSWORD', 'API Salasana', '2025-11-21 00:59:35'),
(29894, 'fi', 'settings', 'SP_DFS_API_LOGIN', 'API Kirjaudu sisään', '2025-11-21 00:59:35'),
(29893, 'fi', 'settings', 'SP_DESCRIPTION', 'Seo Panel Kuvaus', '2025-11-21 00:59:35'),
(29892, 'fi', 'settings', 'SP_DEFAULTLANG', 'Default Kieli', '2025-11-21 00:59:35'),
(29891, 'fi', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider Indeksointi(seconds)', '2025-11-21 00:59:35'),
(29890, 'fi', 'settings', 'SP_COMPANY_NAME', 'Company Nimi', '2025-11-21 00:59:35'),
(29889, 'fi', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2025-11-21 00:59:35'),
(29888, 'fi', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow Käyttäjät to schedule Raportti', '2025-11-21 00:59:35'),
(29887, 'fi', 'settings', 'seopanel_title', 'Seo Panel: World''s Ensimmäinen Avaa source seo control panel for managing multiple web sites', '2025-11-21 00:59:35'),
(29886, 'fi', 'settings', 'seopanel_description', 'A complete free control panel for managing Hakukone optimization of your Verkkosivustot. It containing lots of hot SEO-työkalut to increase and track the performace your Verkkosivustot. Its an Avaa source software and also you can develop your own SEO-laajennukset for seo panel.', '2025-11-21 00:59:35'),
(29885, 'fi', 'settings', 'Send Email', 'Send Sähköposti', '2025-11-21 00:59:35'),
(29884, 'fi', 'settings', 'SA_MAX_NO_PAGES', 'Maximum number of pages allowed per Verkkosivusto', '2025-11-21 00:59:35'),
(29883, 'fi', 'settings', 'SA_CRAWL_DELAY_TIME', 'Sivuston tarkastaja Indeksointi delay between each pages', '2025-11-21 00:59:35'),
(29882, 'fi', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate Välityspalvelin When Crawling Epäonnistui', '2025-11-21 00:59:35'),
(29881, 'fi', 'settings', 'Please update MOZ settings to get complete results', 'Please Päivitä MOZ Asetukset to get complete Tulokset', '2025-11-21 00:59:35'),
(29880, 'fi', 'settings', 'Please update google settings to get the results', 'Please Päivitä google Asetukset to get the Tulokset', '2025-11-21 00:59:35'),
(29879, 'fi', 'settings', 'getallpluginfree', 'Also get Kaikki <b>Laajennukset</b> we develop for <b>Free!</b>', '2025-11-21 00:59:35'),
(29878, 'fi', 'settings', 'entersmtpdetails', 'Please enter SMTP mail configuration', '2025-11-21 00:59:35'),
(29877, 'fi', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP Välityspalvelin Tunnel', '2025-11-21 00:59:35'),
(29876, 'fi', 'settings', 'click-to-get-moz-account', 'Klikkaa tästä to get MOZ Tili', '2025-11-21 00:59:35'),
(29875, 'fi', 'settings', 'click-to-get-google-api-key', 'Klikkaa tästä to get Google API Key', '2025-11-21 00:59:35'),
(29874, 'fi', 'settings', 'click-to-get-google-api-client-id', 'Klikkaa tästä to get Google API Client Id', '2025-11-21 00:59:35'),
(29873, 'fi', 'settings', 'click-to-get-dataforseo-account', 'Klikkaa tästä to get Free DataForSEO Tili', '2025-11-21 00:59:35'),
(29872, 'fi', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Lahjoita $100</b> and become a <b>sponsor</b> of Seo Panel.', '2025-11-21 00:59:35'),
(29871, 'fi', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another Välityspalvelin When Crawling Epäonnistui', '2025-11-21 00:59:35'),
(29870, 'fi', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Maximum number of proxies used in single execution', '2025-11-21 00:59:35'),
(29869, 'fi', 'settings', 'Check for Updates', 'Check for Updates', '2025-11-21 00:59:35'),
(29867, 'fi', 'settings', 'API_SECRET', 'API Secret', '2025-11-21 00:59:35'),
(29868, 'fi', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2025-11-21 00:59:35'),
(29866, 'fi', 'settings', 'allsettingssaved', 'Kaikki Asetukset Tallennettu Onnistuneesti!', '2025-11-21 00:59:35'),
(29864, 'fi', 'seotools', 'Website Search Reports', 'Verkkosivusto Hae Raportit', '2025-11-21 00:59:35'),
(29865, 'fi', 'seotools', 'Website Search Summary', 'Verkkosivusto Hae Summary', '2025-11-21 00:59:35'),
(29863, 'fi', 'seotools', 'Website Analytics Summary', 'Verkkosivusto Analytiikka Summary', '2025-11-21 00:59:35'),
(29862, 'fi', 'seotools', 'webmaster-tools', 'Webmaster-työkalut', '2025-11-21 00:59:35'),
(29861, 'fi', 'seotools', 'web-analytics', 'Verkkosivusto Analytiikka', '2025-11-21 00:59:35'),
(29860, 'fi', 'seotools', 'User Access', 'Käyttäjä Access', '2025-11-21 00:59:35'),
(29858, 'fi', 'seotools', 'Social Media Report Summary', 'Sosiaalinen media Raportti Summary', '2025-11-21 00:59:35'),
(29859, 'fi', 'seotools', 'Submission Reports', 'Lähettäminen Raportit', '2025-11-21 00:59:35'),
(29856, 'fi', 'seotools', 'sm-checker', 'Sosiaalinen media Tarkistaja', '2025-11-21 00:59:35'),
(29857, 'fi', 'seotools', 'Social Media Links', 'Sosiaalinen media Links', '2025-11-21 00:59:35'),
(29855, 'fi', 'seotools', 'Skipped Directories', 'Skipped Directories', '2025-11-21 00:59:35'),
(29854, 'fi', 'seotools', 'sitemap-generator', 'Sivustokartta Generator', '2025-11-21 00:59:35'),
(29853, 'fi', 'seotools', 'Sitemap Reports Summary', 'Sivustokartta Raportit Summary', '2025-11-21 00:59:35'),
(29852, 'fi', 'seotools', 'site-auditor', 'Sivuston tarkastaja', '2025-11-21 00:59:35'),
(29849, 'fi', 'seotools', 'review-manager', 'Arvostelujen hallinta', '2025-11-21 00:59:35'),
(29850, 'fi', 'seotools', 'Saturation Reports', 'Kyllästyminen Raportit', '2025-11-21 00:59:35'),
(29851, 'fi', 'seotools', 'saturation-checker', 'Hakukoneen kyllästyminen', '2025-11-21 00:59:35'),
(29848, 'fi', 'seotools', 'Review Report Summary', 'Arvostelu Raportti Summary', '2025-11-21 00:59:35'),
(29847, 'fi', 'seotools', 'Review Links', 'Arvostelu Links', '2025-11-21 00:59:35'),
(29845, 'fi', 'seotools', 'Rank Reports', 'Sijoitus Raportit', '2025-11-21 00:59:35'),
(29846, 'fi', 'seotools', 'rank-checker', 'Sijoitustarkistaja', '2025-11-21 00:59:35'),
(29844, 'fi', 'seotools', 'Quick Saturation Checker', 'Quick Kyllästymistarkistaja', '2025-11-21 00:59:35'),
(29843, 'fi', 'seotools', 'Quick Rank Checker', 'Quick Sijoitustarkistaja', '2025-11-21 00:59:35'),
(29842, 'fi', 'seotools', 'Quick Position Checker', 'Quick Sijaintitarkistaja', '2025-11-21 00:59:35'),
(29841, 'fi', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed Tarkistaja', '2025-11-21 00:59:35'),
(29840, 'fi', 'seotools', 'Quick Checker', 'Quick Tarkistaja', '2025-11-21 00:59:35'),
(29838, 'fi', 'seotools', 'PageSpeed Reports', 'PageSpeed Raportit', '2025-11-21 00:59:35'),
(29839, 'fi', 'seotools', 'Quick Backlinks Checker', 'Quick Takaisinlinkkien tarkistaja', '2025-11-21 00:59:35'),
(29837, 'fi', 'seotools', 'pagespeed', 'PageSpeed Insights', '2025-11-21 00:59:35'),
(29836, 'fi', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for Raportit generation.\r\nThis Toiminto may cause captcha in Hakukone Tulokset.', '2025-11-21 00:59:35'),
(29835, 'fi', 'seotools', 'Keywords Manager', 'Avainsanat Hallinta', '2025-11-21 00:59:35'),
(29834, 'fi', 'seotools', 'keyword-position-checker', 'Avainsanan sijaintitarkistaja', '2025-11-21 00:59:35'),
(29831, 'fi', 'seotools', 'Keyword Position Summary', 'Avainsanan asema Summary', '2025-11-21 00:59:35'),
(29832, 'fi', 'seotools', 'Keyword Search Reports', 'Avainsana Hae Raportit', '2025-11-21 00:59:35'),
(29833, 'fi', 'seotools', 'Keyword Search Summary', 'Avainsana Hae Summary', '2025-11-21 00:59:35'),
(29830, 'fi', 'seotools', 'Import Project Links', 'Tuo Project Links', '2025-11-21 00:59:35'),
(29829, 'fi', 'seotools', 'Graphical Reports', 'Graphical Raportit', '2025-11-21 00:59:35'),
(29828, 'fi', 'seotools', 'Graphical Position Reports', 'Graphical Asema Raportit', '2025-11-21 00:59:35'),
(29826, 'fi', 'seotools', 'Generate Saturation Reports', 'Luo Kyllästyminen Raportit', '2025-11-21 00:59:35'),
(29827, 'fi', 'seotools', 'Google Sitemap Generator', 'Google Sivustokartta Generator', '2025-11-21 00:59:35'),
(29825, 'fi', 'seotools', 'Generate Reports', 'Luo Raportit', '2025-11-21 00:59:35'),
(29823, 'fi', 'seotools', 'Generate Keyword Reports', 'Luo Avainsana Raportit', '2025-11-21 00:59:35'),
(29824, 'fi', 'seotools', 'Generate Rank Reports', 'Luo Sijoitus Raportit', '2025-11-21 00:59:35'),
(29821, 'fi', 'seotools', 'Featured Submission', 'Featured Lähettäminen', '2025-11-21 00:59:35'),
(29822, 'fi', 'seotools', 'Generate Backlinks Reports', 'Luo Takaisinlinkit Raportit', '2025-11-21 00:59:35'),
(29820, 'fi', 'seotools', 'Edit Seo Tool', 'Muokkaa Seo Työkalu', '2025-11-21 00:59:35'),
(29819, 'fi', 'seotools', 'directory-submission', 'Hakemistolähettäminen', '2025-11-21 00:59:35'),
(29818, 'fi', 'seotools', 'Detailed Reports', 'yksityiskohtaiset raportit', '2025-11-21 00:59:35'),
(29817, 'fi', 'seotools', 'Detailed Position Reports', 'Detailed Asema Raportit', '2025-11-21 00:59:35'),
(29816, 'fi', 'seotools', 'clickproceedaction', 'Syötä URL''s <b>Yksi per rivi</b>. Klikkaa <b>Jatka</b> tarkistaaksesi Tulokset.', '2025-11-21 00:59:35'),
(29815, 'fi', 'seotools', 'clickgeneratereports', 'Klikkaa <b>Jatka</b> to Luo Raportit', '2025-11-21 00:59:35'),
(29814, 'fi', 'seotools', 'Check Submission Status', 'Check Lähettäminen Tila', '2025-11-21 00:59:35'),
(29813, 'fi', 'seotools', 'Backlinks Reports', 'Takaisinlinkit Raportit', '2025-11-21 00:59:35'),
(29812, 'fi', 'seotools', 'backlink-checker', 'Takaisinlinkkien tarkistaja', '2025-11-21 00:59:35'),
(29811, 'fi', 'seotools', 'Automatic Submission', 'Automatic Lähettäminen', '2025-11-21 00:59:35'),
(29810, 'fi', 'seotools', 'Auditor Settings', 'Auditor Asetukset', '2025-11-21 00:59:35'),
(29809, 'fi', 'seotools', 'Auditor Reports', 'Auditor Raportit', '2025-11-21 00:59:35'),
(29808, 'fi', 'seotools', 'Auditor Projects', 'Auditor Projects', '2025-11-21 00:59:35'),
(29807, 'fi', 'searchengine', 'no_of_results_page', 'Number of Tulokset per page', '2025-11-21 00:59:35'),
(29797, 'fi', 'reports', 'report_email_subject', 'Your SEO Raportit generated Onnistuneesti', '2025-11-21 00:59:35'),
(29798, 'fi', 'reports', 'Reports Generated Successfully', 'Raportit Generated Onnistuneesti', '2025-11-21 00:59:35'),
(29799, 'fi', 'review', 'Edit Review Link', 'Muokkaa Arvostelu Link', '2025-11-21 00:59:35'),
(29800, 'fi', 'review', 'New Review Link', 'Uusi Arvostelu Link', '2025-11-21 00:59:35'),
(29801, 'fi', 'saturation', 'clickproceedsaturation', 'Syötä URL''s <b>Yksi per rivi</b>. Klikkaa <b>Jatka</b> tarkistaaksesi Hakukoneen kyllästyminen Tulokset', '2025-11-21 00:59:35'),
(29802, 'fi', 'saturation', 'GenerateSaturationReports', 'Luo Hakukoneen kyllästyminen Raportit', '2025-11-21 00:59:35'),
(29803, 'fi', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick Hakukoneen kyllästymistarkistaja', '2025-11-21 00:59:35'),
(29804, 'fi', 'saturation', 'Saved Search Engine Saturation results of', 'Tallennettu Hakukoneen kyllästyminen Tulokset of', '2025-11-21 00:59:35'),
(29805, 'fi', 'saturation', 'Search Engine Saturation Reports', 'Hakukoneen kyllästyminen Raportit', '2025-11-21 00:59:35'),
(29806, 'fi', 'searchengine', 'max_results', 'Maximum number of Tulokset', '2025-11-21 00:59:35'),
(29766, 'fi', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow Käyttäjä to access the web Välityspalvelin', '2025-11-21 00:59:35'),
(29767, 'fi', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a Välityspalvelin', '2025-11-21 00:59:35'),
(29768, 'fi', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web Välityspalvelin', '2025-11-21 00:59:35'),
(29769, 'fi', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web Välityspalvelin.', '2025-11-21 00:59:35'),
(29770, 'fi', 'QuickWebProxy', 'Server list is empty', 'Server Luettelo is empty', '2025-11-21 00:59:35'),
(29771, 'fi', 'QuickWebProxy', 'Url blocked in the web proxy', 'URL blocked in the web Välityspalvelin', '2025-11-21 00:59:35'),
(29772, 'fi', 'QuickWebProxy', 'Web Proxy', 'Web Välityspalvelin', '2025-11-21 00:59:35'),
(29773, 'fi', 'QuickWebProxy', 'Web Server', 'Web Server', '2025-11-21 00:59:35'),
(29774, 'fi', 'rank', 'enterurlproceed', 'Syötä URL''s <b>Yksi per rivi</b>. Klikkaa <b>Jatka</b> tarkistaaksesi Google and Alexa-sijoitus.', '2025-11-21 00:59:35'),
(29775, 'fi', 'rank', 'Google and Alexa Rank Reports', 'Google and Alexa-sijoitus Raportit', '2025-11-21 00:59:35'),
(29776, 'fi', 'rank', 'Saved rank results of', 'Tallennettu Sijoitustulokset of', '2025-11-21 00:59:35'),
(29777, 'fi', 'register', 'Account Information', 'Tili Tiedot', '2025-11-21 00:59:35'),
(29778, 'fi', 'register', 'Already have account', 'Already have an Tili?', '2025-11-21 00:59:35'),
(29779, 'fi', 'register', 'First name placeholder', 'Etunimi', '2025-11-21 00:59:35'),
(29780, 'fi', 'register', 'Last name placeholder', 'Sukunimi', '2025-11-21 00:59:35'),
(29781, 'fi', 'register', 'Personal Information', 'Personal Tiedot', '2025-11-21 00:59:35'),
(29782, 'fi', 'register', 'Register subtitle', 'Join us Tänään and Aloita optimizing your SEO', '2025-11-21 00:59:35'),
(29783, 'fi', 'register', 'Registration', 'Rekisteröityminen', '2025-11-21 00:59:35'),
(29784, 'fi', 'register', 'Subscription Details', 'Tilaus Tiedot', '2025-11-21 00:59:35'),
(29785, 'fi', 'register', 'user_confirm_content_1', 'Internal Virhe occured while processing confirm request', '2025-11-21 00:59:35'),
(29786, 'fi', 'register', 'user_confirm_mail_cont_1', 'Thank you for your Rekisteröityminen with', '2025-11-21 00:59:35'),
(29787, 'fi', 'register', 'user_confirm_mail_cont_2', 'Please Klikkaa the following link to confirm Rekisteröityminen', '2025-11-21 00:59:35'),
(29788, 'fi', 'report', '2 Days', '2 Days', '2025-11-21 00:59:35'),
(29789, 'fi', 'report', 'Email notification', 'Sähköposti notification', '2025-11-21 00:59:35'),
(29790, 'fi', 'report', 'keywordnumbercheckedcronnote', 'Note: Default 0 means Kaikki Avainsanat should be Tarkistettu', '2025-11-21 00:59:35'),
(29791, 'fi', 'report', 'Next report generation time', 'Seuraava Raportti generation time', '2025-11-21 00:59:35'),
(29792, 'fi', 'report', 'Reports generation interval', 'Raportit generation interval', '2025-11-21 00:59:35'),
(29793, 'fi', 'report', 'reportsettingssaved', 'Raportti Asetukset Tallennettu Onnistuneesti!', '2025-11-21 00:59:35'),
(29794, 'fi', 'report', 'sheduledsuccessfully', 'Scheduled Raportti generation Onnistuneesti!', '2025-11-21 00:59:35'),
(29795, 'fi', 'reports', 'report_email_body_text1', 'Your Raportit generated Onnistuneesti in seo panel. Please check the attached Raportit.', '2025-11-21 00:59:35'),
(29796, 'fi', 'reports', 'report_email_body_text2', 'If above Raportit are not clear, Please [LOGIN_LINK] to Näytä the Raportit directly Alkaen your Tili.', '2025-11-21 00:59:35'),
(29759, 'fi', 'proxy', 'Proxy Password', 'Välityspalvelin Salasana', '2025-11-21 00:59:35'),
(29760, 'fi', 'proxy', 'Proxy Username', 'Välityspalvelin Käyttäjänimi', '2025-11-21 00:59:35'),
(29761, 'fi', 'proxy', 'Proxyalreadyexist', 'Välityspalvelin already exist!', '2025-11-21 00:59:35'),
(29762, 'fi', 'proxy', 'proxysyntax', 'Välityspalvelin Hostname, Välityspalvelin Port, Välityspalvelin Käyttäjänimi, Välityspalvelin Salasana', '2025-11-21 00:59:35'),
(29763, 'fi', 'proxy', 'Request Count', 'Request Määrä', '2025-11-21 00:59:35'),
(29764, 'fi', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2025-11-21 00:59:35'),
(29765, 'fi', 'QuickWebProxy', 'Please enter a valid url', 'Please enter a valid URL', '2025-11-21 00:59:35'),
(29758, 'fi', 'proxy', 'enterproxynote', 'Enter Välityspalvelin Yksi per rivi in following format.', '2025-11-21 00:59:35'),
(29757, 'fi', 'proxy', 'Edit Proxy', 'Muokkaa Välityspalvelin', '2025-11-21 00:59:35'),
(29756, 'fi', 'proxy', 'click-to-get-proxy', 'Klikkaa tästä to get Välityspalvelin', '2025-11-21 00:59:35'),
(29755, 'fi', 'plugin', 'Seo Plugin Details', 'Seo Laajennus Tiedot', '2025-11-21 00:59:35'),
(29754, 'fi', 'plugin', 'Plugin Name', 'Laajennus Nimi', '2025-11-21 00:59:35'),
(29753, 'fi', 'plugin', 'Edit Seo Plugin', 'Muokkaa Seo Laajennus', '2025-11-21 00:59:35'),
(29752, 'fi', 'plugin', 'Download Seo Panel Plugins', 'Lataa SEO Panel -laajennukset', '2025-11-21 00:59:35'),
(29751, 'fi', 'panel', 'Website Manager', 'Verkkosivusto Hallinta', '2025-11-21 00:59:35'),
(29749, 'fi', 'panel', 'Valid', 'Valid', '2025-11-21 00:59:35'),
(29750, 'fi', 'panel', 'Website Access Manager', 'Verkkosivusto Access Hallinta', '2025-11-21 00:59:35'),
(29748, 'fi', 'panel', 'User Type Settings', 'Käyttäjä Tyyppi Asetukset', '2025-11-21 00:59:35'),
(29747, 'fi', 'panel', 'User Type Manager', 'Käyttäjä Tyyppi Hallinta', '2025-11-21 00:59:35'),
(29746, 'fi', 'panel', 'User Manager', 'Käyttäjä Hallinta', '2025-11-21 00:59:35'),
(29745, 'fi', 'panel', 'Themes Manager', 'Themes Hallinta', '2025-11-21 00:59:35');
INSERT INTO `texts` VALUES
(29744, 'fi', 'panel', 'Test Email Settings', 'Test Sähköpostiasetukset', '2025-11-21 00:59:35'),
(29743, 'fi', 'panel', 'System Settings', 'Järjestelmäasetukset', '2025-11-21 00:59:35'),
(29742, 'fi', 'panel', 'Sync Search Engines', 'Sync Hakukoneet', '2025-11-21 00:59:35'),
(29741, 'fi', 'panel', 'Submit Sitemap', 'Lähetä Sivustokartta', '2025-11-21 00:59:35'),
(29740, 'fi', 'panel', 'Sitemaps', 'Sitemaps', '2025-11-21 00:59:35'),
(29739, 'fi', 'panel', 'Settings', 'Asetukset', '2025-11-21 00:59:35'),
(29738, 'fi', 'panel', 'Seo Tools Manager', 'SEO-työkalut Hallinta', '2025-11-21 00:59:35'),
(29736, 'fi', 'panel', 'Search Engine Manager', 'Hakukone Hallinta', '2025-11-21 00:59:35'),
(29737, 'fi', 'panel', 'Seo Plugins Manager', 'SEO-laajennukset Hallinta', '2025-11-21 00:59:35'),
(29735, 'fi', 'panel', 'Schedule Reports', 'Schedule Raportit', '2025-11-21 00:59:35'),
(29734, 'fi', 'panel', 'Reports Manager', 'Raportit Hallinta', '2025-11-21 00:59:35'),
(29733, 'fi', 'panel', 'Report Settings', 'Raportti Asetukset', '2025-11-21 00:59:35'),
(29732, 'fi', 'panel', 'Report Generation Manager', 'Raportti Generation Hallinta', '2025-11-21 00:59:35'),
(29731, 'fi', 'panel', 'Report Generation Logs', 'Raportti Generation Logs', '2025-11-21 00:59:35'),
(29730, 'fi', 'panel', 'Proxy Settings', 'Välityspalvelinasetukset', '2025-11-21 00:59:35'),
(29729, 'fi', 'panel', 'Proxy Perfomance', 'Välityspalvelin Perfomance', '2025-11-21 00:59:35'),
(29728, 'fi', 'panel', 'Proxy Manager', 'Välityspalvelinhallinta', '2025-11-21 00:59:35'),
(29727, 'fi', 'panel', 'Project Summary', 'Project Summary', '2025-11-21 00:59:35'),
(29726, 'fi', 'panel', 'Project Manager', 'Projektinhallinta', '2025-11-21 00:59:35'),
(29725, 'fi', 'panel', 'New Website', 'Uusi Verkkosivusto', '2025-11-21 00:59:35'),
(29724, 'fi', 'panel', 'New User Type', 'Uusi Käyttäjä Tyyppi', '2025-11-21 00:59:35'),
(29723, 'fi', 'panel', 'New User', 'Uusi Käyttäjä', '2025-11-21 00:59:35'),
(29722, 'fi', 'panel', 'New Proxy', 'Uusi Välityspalvelin', '2025-11-21 00:59:35'),
(29721, 'fi', 'panel', 'New Project', 'Uusi Project', '2025-11-21 00:59:35'),
(29720, 'fi', 'panel', 'My Profile', 'My Profiili', '2025-11-21 00:59:35'),
(29719, 'fi', 'panel', 'MOZ Settings', 'MOZ Asetukset', '2025-11-21 00:59:35'),
(29718, 'fi', 'panel', 'Mail Settings', 'Mail Asetukset', '2025-11-21 00:59:35'),
(29717, 'fi', 'panel', 'Mail Log Manager', 'Sähköpostilokihallinta', '2025-11-21 00:59:35'),
(29716, 'fi', 'panel', 'Log Manager', 'Lokihallinta', '2025-11-21 00:59:35'),
(29715, 'fi', 'panel', 'Import Websites', 'Tuo Verkkosivustot', '2025-11-21 00:59:35'),
(29714, 'fi', 'panel', 'Import Proxy', 'Tuo Välityspalvelin', '2025-11-21 00:59:35'),
(29713, 'fi', 'panel', 'Google Settings', 'Google Asetukset', '2025-11-21 00:59:35'),
(29712, 'fi', 'panel', 'Global Reports Settings', 'Global Raportit Asetukset', '2025-11-21 00:59:35'),
(29711, 'fi', 'panel', 'Existing', 'Existing', '2025-11-21 00:59:35'),
(29710, 'fi', 'panel', 'Edit Project', 'Muokkaa Project', '2025-11-21 00:59:35'),
(29709, 'fi', 'panel', 'Edit My Profile', 'Muokkaa My Profiili', '2025-11-21 00:59:35'),
(29708, 'fi', 'panel', 'Directory Manager', 'Hakemistohallinta', '2025-11-21 00:59:35'),
(29707, 'fi', 'panel', 'DataForSEO Settings', 'DataForSEO Asetukset', '2025-11-21 00:59:35'),
(29706, 'fi', 'panel', 'Current Time', 'Current Time', '2025-11-21 00:59:35'),
(29705, 'fi', 'panel', 'Cron Command', 'Cron Command', '2025-11-21 00:59:35'),
(29704, 'fi', 'panel', 'Crawl Log Manager', 'Indeksointilokihallinta', '2025-11-21 00:59:35'),
(29703, 'fi', 'panel', 'Connections', 'Connections', '2025-11-21 00:59:35'),
(29702, 'fi', 'panel', 'Check Directory', 'Tarkista hakemisto', '2025-11-21 00:59:35'),
(29701, 'fi', 'panel', 'Archived Reports', 'Archived Raportit', '2025-11-21 00:59:35'),
(29700, 'fi', 'panel', 'API Settings', 'API Asetukset', '2025-11-21 00:59:35'),
(29699, 'fi', 'panel', 'API Manager', 'API-hallinta', '2025-11-21 00:59:35'),
(29698, 'fi', 'panel', 'API Connection', 'API Connection', '2025-11-21 00:59:35'),
(29697, 'fi', 'panel', 'alsocheckfollowlink', 'Tarkista myös seuraava linkki, jos tarvitset lisätietoja.', '2025-11-21 00:59:35'),
(29696, 'fi', 'panel', 'Alerts', 'Alerts', '2025-11-21 00:59:35'),
(29695, 'fi', 'panel', 'Add following command to your cron tab', 'Lisää following command to your cron tab', '2025-11-21 00:59:35'),
(29694, 'fi', 'panel', 'About Us', 'About Us', '2025-11-21 00:59:35'),
(29693, 'fi', 'pagespeed', 'Saved page speed results of', 'Tallennettu Sivun nopeus Tulokset of', '2025-11-21 00:59:35'),
(29692, 'fi', 'pagespeed', 'PageSpeed Details', 'PageSpeed Tiedot', '2025-11-21 00:59:35'),
(29691, 'fi', 'pagespeed', 'Page Speed', 'Sivun nopeus', '2025-11-21 00:59:35'),
(29690, 'fi', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2025-11-21 00:59:35'),
(29689, 'fi', 'pagespeed', 'Mobile Speed', 'Mobile Speed', '2025-11-21 00:59:35'),
(29688, 'fi', 'pagespeed', 'Desktop Speed', 'Desktop Speed', '2025-11-21 00:59:35'),
(29687, 'fi', 'myaccount', 'Disconnected', 'Disconnected', '2025-11-21 00:59:35'),
(29686, 'fi', 'myaccount', 'Disconnect', 'Disconnect', '2025-11-21 00:59:35'),
(29685, 'fi', 'myaccount', 'Connected', 'Connected', '2025-11-21 00:59:35'),
(29684, 'fi', 'myaccount', 'Connect', 'Connect', '2025-11-21 00:59:35'),
(29683, 'fi', 'login', 'Your Password Reset Successfully', 'Salasanasi nollattu onnistuneesti', '2025-11-21 00:59:35'),
(29682, 'fi', 'login', 'Your Password Reset Failed', 'Your Salasana Reset Epäonnistui', '2025-11-21 00:59:35'),
(29681, 'fi', 'login', 'Your account password is resetted and new password is', 'Your Tili Salasana is resetted and Uusi salasana is', '2025-11-21 00:59:35'),
(29680, 'fi', 'login', 'Your account activated successfully', 'Tilisi aktivoitu onnistuneesti', '2025-11-21 00:59:35'),
(29678, 'fi', 'login', 'Verification', 'Verification', '2025-11-21 00:59:35'),
(29679, 'fi', 'login', 'Welcome message', 'Welcome Takaisin! Please Kirjaudu sisään to your Tili', '2025-11-21 00:59:35'),
(29677, 'fi', 'login', 'usernameexist', 'Käyttäjänimi already exist!', '2025-11-21 00:59:35'),
(29676, 'fi', 'login', 'Username placeholder', 'Enter your Käyttäjänimi', '2025-11-21 00:59:35'),
(29675, 'fi', 'login', 'Username', 'Käyttäjänimi', '2025-11-21 00:59:35'),
(29674, 'fi', 'login', 'user_not_activated_msg', 'Käyttäjä ei ole aktivoitu. Tarkista sähköpostisi aktivoidaksesi', '2025-11-21 00:59:35'),
(29673, 'fi', 'login', 'user_email_not_exist', 'Käyttäjän sähköposti is not existing in system!', '2025-11-21 00:59:35'),
(29672, 'fi', 'login', 'User Type', 'Käyttäjä Tyyppi', '2025-11-21 00:59:35'),
(29671, 'fi', 'login', 'User inactive', 'Käyttäjä inactive', '2025-11-21 00:59:35'),
(29670, 'fi', 'login', 'to login to your account', 'to Kirjaudu sisään to your Tili', '2025-11-21 00:59:35'),
(29669, 'fi', 'login', 'Sign in to your account', 'Kirjaudu tilillesi', '2025-11-21 00:59:35'),
(29668, 'fi', 'login', 'Sign In', 'Kirjaudu sisään', '2025-11-21 00:59:35'),
(29667, 'fi', 'login', 'Security message', 'Your Tiedot is secure and encrypted', '2025-11-21 00:59:35'),
(29666, 'fi', 'login', 'Request Password', 'Request Salasana', '2025-11-21 00:59:35'),
(29664, 'fi', 'login', 'Register', 'Rekisteröidy', '2025-11-21 00:59:35'),
(29665, 'fi', 'login', 'Remember password text', 'Remember your Salasana?', '2025-11-21 00:59:35'),
(29663, 'fi', 'login', 'password_reset_success_message', 'Salasanasi nollattu onnistuneesti. Vahvistusviesti lähetetty sähköpostiosoitteeseen. <br>Tarkista saapuneet viestisi to get your Uusi salasana.', '2025-11-21 00:59:35'),
(29662, 'fi', 'login', 'Password placeholder', 'Enter your Salasana', '2025-11-21 00:59:35'),
(29661, 'fi', 'login', 'Password incorrect', 'Salasana incorrect', '2025-11-21 00:59:35'),
(29660, 'fi', 'login', 'Password', 'Salasana', '2025-11-21 00:59:35'),
(29659, 'fi', 'login', 'No account text', 'Don''t have an Tili?', '2025-11-21 00:59:35'),
(29658, 'fi', 'login', 'newaccountsuccess', 'Uusi tili luotu onnistuneesti!', '2025-11-21 00:59:35'),
(29657, 'fi', 'login', 'Login incorrect', 'Kirjaudu sisään incorrect', '2025-11-21 00:59:35'),
(29655, 'fi', 'login', 'Last Name', 'Sukunimi', '2025-11-21 00:59:35'),
(29656, 'fi', 'login', 'Login', 'Kirjaudu sisään', '2025-11-21 00:59:35'),
(29654, 'fi', 'login', 'internal_error_mail_send', 'An internal Virhe occured while sending Salasana reset mail!', '2025-11-21 00:59:35'),
(29653, 'fi', 'login', 'Forgot subtitle', 'Enter your Sähköposti address and we''ll send you instructions to reset your Salasana', '2025-11-21 00:59:35'),
(29652, 'fi', 'login', 'Forgot password?', 'Unohditko salasanan?', '2025-11-21 00:59:35'),
(29651, 'fi', 'login', 'First Name', 'Etunimi', '2025-11-21 00:59:35'),
(29650, 'fi', 'login', 'Enter the code as it is shown', 'Syötä koodi sellaisena kuin se näytetään', '2025-11-21 00:59:35'),
(29649, 'fi', 'login', 'Enter the code', 'Syötä koodi', '2025-11-21 00:59:35'),
(29648, 'fi', 'login', 'emailexist', 'Sähköposti already exist!', '2025-11-21 00:59:35'),
(29647, 'fi', 'login', 'Email placeholder', 'your@Sähköposti.com', '2025-11-21 00:59:35'),
(29646, 'fi', 'login', 'Email', 'Sähköposti', '2025-11-21 00:59:35'),
(29645, 'fi', 'login', 'Create New Account', 'Luo Uusi Tili', '2025-11-21 00:59:35'),
(29644, 'fi', 'login', 'Create my account', 'Luo Oma tili', '2025-11-21 00:59:35'),
(29643, 'fi', 'login', 'Confirm Password', 'Vahvista salasana', '2025-11-21 00:59:35'),
(29642, 'fi', 'log', 'Post Fields', 'Julkaisu Fields', '2025-11-21 00:59:35'),
(29641, 'fi', 'log', 'Mail Log Details', 'Mail Log Tiedot', '2025-11-21 00:59:35'),
(29640, 'fi', 'log', 'Crawl Log Details', 'Indeksointi Log Tiedot', '2025-11-21 00:59:35'),
(29639, 'fi', 'log', 'Clear All Logs', 'Clear Kaikki Logs', '2025-11-21 00:59:35'),
(29638, 'fi', 'label', 'Year', 'Year', '2025-11-21 00:59:35'),
(29637, 'fi', 'label', 'Write', 'Write', '2025-11-21 00:59:35'),
(29636, 'fi', 'label', 'Weekly', 'Weekly', '2025-11-21 00:59:35'),
(29635, 'fi', 'label', 'Week', 'Week', '2025-11-21 00:59:35'),
(29634, 'fi', 'label', 'wantproceed', 'Do you really want to Jatka?', '2025-11-21 00:59:35'),
(29633, 'fi', 'label', 'View Reports', 'Näytä Raportit', '2025-11-21 00:59:35'),
(29632, 'fi', 'label', 'Version', 'Version', '2025-11-21 00:59:35'),
(29631, 'fi', 'label', 'User agent', 'Käyttäjä agent', '2025-11-21 00:59:35'),
(29630, 'fi', 'label', 'Usability', 'Usability', '2025-11-21 00:59:35'),
(29629, 'fi', 'label', 'Upgrade', 'Upgrade', '2025-11-21 00:59:35'),
(29628, 'fi', 'label', 'Updated', 'Päivitetty', '2025-11-21 00:59:35'),
(29627, 'fi', 'label', 'Type', 'Tyyppi', '2025-11-21 00:59:35'),
(29626, 'fi', 'label', 'Translators', 'Translators', '2025-11-21 00:59:35'),
(29625, 'fi', 'label', 'translation by', 'translation by', '2025-11-21 00:59:35'),
(29624, 'fi', 'label', 'Total Results', 'Tuloksia yhteensä', '2025-11-21 00:59:35'),
(29623, 'fi', 'label', 'Title', 'Otsikko', '2025-11-21 00:59:35'),
(29622, 'fi', 'label', 'Theme', 'Theme', '2025-11-21 00:59:35'),
(29621, 'fi', 'label', 'Syntax', 'Syntax', '2025-11-21 00:59:35'),
(29620, 'fi', 'label', 'Success', 'Onnistui', '2025-11-21 00:59:35'),
(29619, 'fi', 'label', 'Subject', 'Subject', '2025-11-21 00:59:35'),
(29618, 'fi', 'label', 'Sponsors', 'Sponsors', '2025-11-21 00:59:35'),
(29617, 'fi', 'label', 'Speed', 'Speed', '2025-11-21 00:59:35'),
(29616, 'fi', 'label', 'Select All', 'Valitse Kaikki', '2025-11-21 00:59:35'),
(29615, 'fi', 'label', 'Second', 'Second', '2025-11-21 00:59:35'),
(29614, 'fi', 'label', 'Score', 'Pisteet', '2025-11-21 00:59:35'),
(29613, 'fi', 'label', 'Reviews', 'Arvostelut', '2025-11-21 00:59:35'),
(29612, 'fi', 'label', 'Report Type', 'Raportin tyyppi', '2025-11-21 00:59:35'),
(29611, 'fi', 'label', 'Referer', 'Referer', '2025-11-21 00:59:35'),
(29610, 'fi', 'label', 'Reference', 'Reference', '2025-11-21 00:59:35'),
(29609, 'fi', 'label', 'Recent Activity', 'Recent Activity', '2025-11-21 00:59:35'),
(29608, 'fi', 'label', 'Read', 'Read', '2025-11-21 00:59:35'),
(29607, 'fi', 'label', 'Re-install', 'Re-install', '2025-11-21 00:59:35'),
(29606, 'fi', 'label', 'Rating', 'Rating', '2025-11-21 00:59:35'),
(29605, 'fi', 'label', 'Proxy', 'Välityspalvelin', '2025-11-21 00:59:35'),
(29604, 'fi', 'label', 'Project', 'Project', '2025-11-21 00:59:35'),
(29603, 'fi', 'label', 'Port', 'Port', '2025-11-21 00:59:35'),
(29602, 'fi', 'label', 'Plugin', 'Laajennus', '2025-11-21 00:59:35'),
(29601, 'fi', 'label', 'Overview', 'Yleiskatsaus', '2025-11-21 00:59:35'),
(29600, 'fi', 'label', 'Order By', 'Order By', '2025-11-21 00:59:35'),
(29599, 'fi', 'label', 'noactiveplugins', 'No Aktiivinen SEO-laajennukset Found!', '2025-11-21 00:59:35'),
(29598, 'fi', 'label', 'Months', 'Months', '2025-11-21 00:59:35'),
(29597, 'fi', 'label', 'Monthly', 'Monthly', '2025-11-21 00:59:35'),
(29595, 'fi', 'label', 'Mobile', 'Mobile', '2025-11-21 00:59:35'),
(29596, 'fi', 'label', 'Month', 'Month', '2025-11-21 00:59:35'),
(29593, 'fi', 'label', 'Likes', 'Likes', '2025-11-21 00:59:35'),
(29594, 'fi', 'label', 'Minute', 'Minute', '2025-11-21 00:59:35'),
(29592, 'fi', 'label', 'Keywords', 'Avainsanat', '2025-11-21 00:59:35'),
(29590, 'fi', 'label', 'Installation', 'Installation', '2025-11-21 00:59:35'),
(29591, 'fi', 'label', 'Just Now', 'Just Now', '2025-11-21 00:59:35'),
(29589, 'fi', 'label', 'Include', 'Include', '2025-11-21 00:59:35'),
(29587, 'fi', 'label', 'Hour', 'Hour', '2025-11-21 00:59:35'),
(29588, 'fi', 'label', 'Impressions', 'Impressions', '2025-11-21 00:59:35'),
(29586, 'fi', 'label', 'From', 'Alkaen', '2025-11-21 00:59:35'),
(29584, 'fi', 'label', 'Followers', 'Followers', '2025-11-21 00:59:35'),
(29585, 'fi', 'label', 'Free', 'Free', '2025-11-21 00:59:35'),
(29582, 'fi', 'label', 'Fail', 'Fail', '2025-11-21 00:59:35'),
(29583, 'fi', 'label', 'Feature', 'Feature', '2025-11-21 00:59:35'),
(29581, 'fi', 'label', 'Exclude', 'Exclude', '2025-11-21 00:59:35'),
(29580, 'fi', 'label', 'Email Body', 'Sähköposti Body', '2025-11-21 00:59:35'),
(29579, 'fi', 'label', 'Download', 'Lataa', '2025-11-21 00:59:35'),
(29578, 'fi', 'label', 'Developers', 'Developers', '2025-11-21 00:59:35'),
(29577, 'fi', 'label', 'Desktop', 'Desktop', '2025-11-21 00:59:35'),
(29576, 'fi', 'label', 'Description', 'Kuvaus', '2025-11-21 00:59:35'),
(29574, 'fi', 'label', 'Day', 'Day', '2025-11-21 00:59:35'),
(29575, 'fi', 'label', 'Days', 'Days', '2025-11-21 00:59:35'),
(29573, 'fi', 'label', 'Daily', 'Daily', '2025-11-21 00:59:35'),
(29572, 'fi', 'label', 'Current', 'Current', '2025-11-21 00:59:35'),
(29571, 'fi', 'label', 'Cron', 'Cron', '2025-11-21 00:59:35'),
(29569, 'fi', 'label', 'Cookie', 'Cookie', '2025-11-21 00:59:35'),
(29570, 'fi', 'label', 'Count', 'Määrä', '2025-11-21 00:59:35'),
(29568, 'fi', 'label', 'Comments', 'Comments', '2025-11-21 00:59:35'),
(29567, 'fi', 'label', 'Clicks', 'Klikkaukset', '2025-11-21 00:59:35'),
(29566, 'fi', 'label', 'Click Here', 'Klikkaa tästä', '2025-11-21 00:59:35'),
(29564, 'fi', 'label', 'Brocken', 'Broken', '2025-11-21 00:59:35'),
(29565, 'fi', 'label', 'Clear All', 'Clear Kaikki', '2025-11-21 00:59:35'),
(29563, 'fi', 'label', 'Author', 'Author', '2025-11-21 00:59:35'),
(29562, 'fi', 'label', 'Authentication', 'Authentication', '2025-11-21 00:59:35'),
(29561, 'fi', 'label', 'already exist', 'already exist', '2025-11-21 00:59:35'),
(29560, 'fi', 'label', 'Ago', 'Ago', '2025-11-21 00:59:35'),
(29559, 'fi', 'label', 'Access denied', 'Access denied', '2025-11-21 00:59:35'),
(29558, 'fi', 'keyword', 'Your keyword count already reached the limit', 'Avainsana Määrä already reached the limit for this Käyttäjä!', '2025-11-21 00:59:35'),
(29557, 'fi', 'keyword', 'You can add only keywordcount keywords more', 'You can Lisää only [keywordcount] Avainsanat for this Käyttäjä!', '2025-11-21 00:59:35'),
(29556, 'fi', 'keyword', 'Top Keywords', 'Top Avainsanat', '2025-11-21 00:59:35'),
(29555, 'fi', 'keyword', 'to create new keywords', 'to Luo Uusi Avainsanat', '2025-11-21 00:59:35'),
(29554, 'fi', 'keyword', 'Successfully crawled keyword', 'Avainsana indeksoitu onnistuneesti', '2025-11-21 00:59:35'),
(29553, 'fi', 'keyword', 'Show All results', 'Show Kaikki Tulokset', '2025-11-21 00:59:35'),
(29551, 'fi', 'keyword', 'Ranking Trends', 'Ranking Trends', '2025-11-21 00:59:35'),
(29552, 'fi', 'keyword', 'results from ', 'Tulokset Alkaen ', '2025-11-21 00:59:35'),
(29550, 'fi', 'keyword', 'Quick Keyword Position Checker', 'Nopea avainsanan sijaintitarkistaja', '2025-11-21 00:59:35'),
(29549, 'fi', 'keyword', 'pleaseselecttool', 'Valitse vähintään yksi SEO-työkalu', '2025-11-21 00:59:35'),
(29548, 'fi', 'keyword', 'not assigned to required search engines', 'not assigned to required Hakukoneet', '2025-11-21 00:59:35'),
(29547, 'fi', 'keyword', 'New Keyword', 'Uusi Avainsana', '2025-11-21 00:59:35'),
(29546, 'fi', 'keyword', 'Keywords Tracked', 'Avainsanat Tracked', '2025-11-21 00:59:35'),
(29545, 'fi', 'keyword', 'Keyword Ranking Trends', 'Avainsana Ranking Trends', '2025-11-21 00:59:35'),
(29544, 'fi', 'keyword', 'Keyword Position Report', 'Avainsanan asema Raportti', '2025-11-21 00:59:35'),
(29543, 'fi', 'keyword', 'Keyword already exist', 'Avainsana already exist', '2025-11-21 00:59:35'),
(29542, 'fi', 'keyword', 'Insert keywords separated with comma', 'Insert Avainsanat separated with comma', '2025-11-21 00:59:35'),
(29541, 'fi', 'keyword', 'Import Keywords', 'Tuo Avainsanat', '2025-11-21 00:59:35'),
(29540, 'fi', 'keyword', 'Graphical Keyword Position Reports', 'Graphical Avainsanan asema Raportit', '2025-11-21 00:59:35'),
(29539, 'fi', 'keyword', 'Edit Keyword', 'Muokkaa avainsanaa', '2025-11-21 00:59:35'),
(29538, 'fi', 'keyword', 'Detailed Keyword Position Reports', 'Detailed Avainsanan asema Raportit', '2025-11-21 00:59:35'),
(29537, 'fi', 'keyword', 'Crawling keyword', 'Crawling Avainsana', '2025-11-21 00:59:35'),
(29536, 'fi', 'home', 'Website Statistics', 'Verkkosivusto Statistics', '2025-11-21 00:59:35'),
(29535, 'fi', 'home', 'SiteNameUrl', 'Site Nimi/URL', '2025-11-21 00:59:35'),
(29534, 'fi', 'home', 'Ranks', 'Ranks', '2025-11-21 00:59:35'),
(29533, 'fi', 'home', 'Pages Indexed', 'Pages Indexed', '2025-11-21 00:59:35'),
(29532, 'fi', 'home', 'Page Overview Report', 'Page Overview Raportti', '2025-11-21 00:59:35'),
(29531, 'fi', 'home', 'Overall Report Summary', 'Overall Raportti Summary', '2025-11-21 00:59:35'),
(29530, 'fi', 'home', 'Keyword Overview Report', 'Avainsana Overview Raportti', '2025-11-21 00:59:35'),
(29529, 'fi', 'home', 'Indexed', 'Indexed', '2025-11-21 00:59:35'),
(38601, 'th', 'socialmedia', 'No social media data available', 'ไม่มีข้อมูลโซเชียลมีเดีย <a href="seo-tools.php?menu_sec=sm-checker">เพิ่มลิงก์โซเชียลมีเดีย</a>เพื่อเริ่มติดตามประสิทธิภาพโซเชียลมีเดียของคุณ', '2026-01-19 22:56:41'),
(38602, 'tl', 'socialmedia', 'No social media data available', 'Walang available na data ng social media. <a href="seo-tools.php?menu_sec=sm-checker">Magdagdag ng mga link ng social media</a> upang magsimulang subaybayan ang iyong performance sa social media.', '2026-01-19 22:56:41'),
(38603, 'tr', 'socialmedia', 'No social media data available', 'Sosyal medya verisi mevcut değil. Sosyal medya performansınızı izlemeye başlamak için <a href="seo-tools.php?menu_sec=sm-checker">sosyal medya bağlantıları ekleyin</a>.', '2026-01-19 22:56:41'),
(38604, 'uk', 'socialmedia', 'No social media data available', 'Дані соціальних мереж недоступні. <a href="seo-tools.php?menu_sec=sm-checker">Додайте посилання на соціальні мережі</a>, щоб почати відстежувати ефективність ваших соціальних мереж.', '2026-01-19 22:56:41'),
(38605, 'vn', 'socialmedia', 'No social media data available', 'Không có dữ liệu mạng xã hội. <a href="seo-tools.php?menu_sec=sm-checker">Thêm liên kết mạng xã hội</a> để bắt đầu theo dõi hiệu suất mạng xã hội của bạn.', '2026-01-19 22:56:41'),
(38606, 'zh', 'socialmedia', 'No social media data available', '暂无社交媒体数据。<a href="seo-tools.php?menu_sec=sm-checker">添加社交媒体链接</a>以开始跟踪您的社交媒体表现。', '2026-01-19 22:56:41'),
(38607, 'en', 'review', 'Review Statistics', 'Review Statistics', '2026-01-19 22:58:50'),
(38608, 'ar', 'review', 'Review Statistics', 'إحصائيات المراجعات', '2026-01-19 22:58:50'),
(38609, 'bg', 'review', 'Review Statistics', 'Статистика на отзивите', '2026-01-19 22:58:50'),
(38610, 'bs', 'review', 'Review Statistics', 'Statistika recenzija', '2026-01-19 22:58:50'),
(38611, 'ca', 'review', 'Review Statistics', 'Estadístiques de ressenyes', '2026-01-19 22:58:50'),
(38612, 'cn', 'review', 'Review Statistics', '评论统计', '2026-01-19 22:58:50'),
(38613, 'cs', 'review', 'Review Statistics', 'Statistiky recenzí', '2026-01-19 22:58:50'),
(38614, 'da', 'review', 'Review Statistics', 'Anmeldelsesstatistik', '2026-01-19 22:58:50'),
(38615, 'de', 'review', 'Review Statistics', 'Bewertungsstatistiken', '2026-01-19 22:58:50'),
(38616, 'el', 'review', 'Review Statistics', 'Στατιστικά αξιολογήσεων', '2026-01-19 22:58:50'),
(38617, 'es', 'review', 'Review Statistics', 'Estadísticas de Reseñas', '2026-01-19 22:58:50'),
(38618, 'es-ar', 'review', 'Review Statistics', 'Estadísticas de Reseñas', '2026-01-19 22:58:50'),
(38619, 'fa', 'review', 'Review Statistics', 'آمار بررسی ها', '2026-01-19 22:58:50'),
(38620, 'fi', 'review', 'Review Statistics', 'Arvostelujen tilastot', '2026-01-19 22:58:50'),
(38621, 'fr', 'review', 'Review Statistics', 'Statistiques des avis', '2026-01-19 22:58:50'),
(38622, 'he', 'review', 'Review Statistics', 'סטטיסטיקת ביקורות', '2026-01-19 22:58:50'),
(38623, 'hi', 'review', 'Review Statistics', 'समीक्षा सांख्यिकी', '2026-01-19 22:58:50'),
(38624, 'hr', 'review', 'Review Statistics', 'Statistika recenzija', '2026-01-19 22:58:50'),
(38625, 'hu', 'review', 'Review Statistics', 'Értékelési statisztikák', '2026-01-19 22:58:50'),
(38626, 'hy', 'review', 'Review Statistics', 'Ակնարկների վիճակագրություն', '2026-01-19 22:58:50'),
(38627, 'id', 'review', 'Review Statistics', 'Statistik Ulasan', '2026-01-19 22:58:50'),
(38628, 'it', 'review', 'Review Statistics', 'Statistiche Recensioni', '2026-01-19 22:58:50'),
(38629, 'ja', 'review', 'Review Statistics', 'レビュー統計', '2026-01-19 22:58:50'),
(38630, 'ko', 'review', 'Review Statistics', '리뷰 통계', '2026-01-19 22:58:50'),
(38631, 'lt', 'review', 'Review Statistics', 'Atsiliepimų statistika', '2026-01-19 22:58:50'),
(38632, 'mk', 'review', 'Review Statistics', 'Статистика на рецензии', '2026-01-19 22:58:50'),
(38633, 'nl', 'review', 'Review Statistics', 'Beoordelingsstatistieken', '2026-01-19 22:58:50'),
(38634, 'no', 'review', 'Review Statistics', 'Anmeldelsesstatistikk', '2026-01-19 22:58:50'),
(38635, 'pl', 'review', 'Review Statistics', 'Statystyki recenzji', '2026-01-19 22:58:50'),
(38636, 'pt', 'review', 'Review Statistics', 'Estatísticas de Avaliações', '2026-01-19 22:58:50'),
(38637, 'pt-br', 'review', 'Review Statistics', 'Estatísticas de Avaliações', '2026-01-19 22:58:50'),
(38638, 'ro', 'review', 'Review Statistics', 'Statistici Recenzii', '2026-01-19 22:58:50'),
(38639, 'ru', 'review', 'Review Statistics', 'Статистика отзывов', '2026-01-19 22:58:50'),
(38640, 'sk', 'review', 'Review Statistics', 'Štatistiky recenzií', '2026-01-19 22:58:50'),
(38641, 'sl', 'review', 'Review Statistics', 'Statistika mnenj', '2026-01-19 22:58:50'),
(38642, 'sq', 'review', 'Review Statistics', 'Statistikat e rishikimeve', '2026-01-19 22:58:50'),
(38643, 'sr', 'review', 'Review Statistics', 'Статистика рецензија', '2026-01-19 22:58:50'),
(38644, 'sv', 'review', 'Review Statistics', 'Recensionsstatistik', '2026-01-19 22:58:50'),
(38645, 'sw', 'review', 'Review Statistics', 'Takwimu za Mapitio', '2026-01-19 22:58:50'),
(38646, 'th', 'review', 'Review Statistics', 'สถิติรีวิว', '2026-01-19 22:58:50'),
(38647, 'tl', 'review', 'Review Statistics', 'Mga Istatistika ng Review', '2026-01-19 22:58:50'),
(38648, 'tr', 'review', 'Review Statistics', 'İnceleme İstatistikleri', '2026-01-19 22:58:50'),
(38649, 'uk', 'review', 'Review Statistics', 'Статистика відгуків', '2026-01-19 22:58:50'),
(38650, 'vn', 'review', 'Review Statistics', 'Thống kê đánh giá', '2026-01-19 22:58:50'),
(38651, 'zh', 'review', 'Review Statistics', '评论统计', '2026-01-19 22:58:50'),
(38652, 'en', 'review', 'Total Review Links', 'Total Review Links', '2026-01-19 22:58:50'),
(38653, 'ar', 'review', 'Total Review Links', 'إجمالي روابط المراجعات', '2026-01-19 22:58:50'),
(38654, 'bg', 'review', 'Total Review Links', 'Общо връзки за отзиви', '2026-01-19 22:58:50'),
(38655, 'bs', 'review', 'Total Review Links', 'Ukupno linkova recenzija', '2026-01-19 22:58:50'),
(29524, 'fi', 'home', 'Backlinks', 'Takaisinlinkit', '2025-11-21 00:59:35'),
(29525, 'fi', 'home', 'Directory Submission', 'Hakemistolähettäminen', '2025-11-21 00:59:35'),
(29523, 'fi', 'home', 'Account Summary', 'Tili Summary', '2025-11-21 00:59:35'),
(29522, 'fi', 'guest', 'Why Choose SEO Panel?', 'Why Choose SEO Panel?', '2025-11-21 00:59:35'),
(29521, 'fi', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-11-21 00:59:35'),
(29520, 'fi', 'guest', 'View Demo', 'Näytä Demo', '2025-11-21 00:59:35'),
(29519, 'fi', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their Verkkosivustot.', '2025-11-21 00:59:35'),
(29518, 'fi', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-11-21 00:59:35'),
(29517, 'fi', 'guest', 'Support Development', 'Support Development', '2025-11-21 00:59:35'),
(29516, 'fi', 'guest', 'Social Media Integration desc', 'Integrate with Google Analytiikka, Hae Console, and Sosiaalinen media platforms for comprehensive raportointi.', '2025-11-21 00:59:35'),
(29515, 'fi', 'guest', 'Social Media Integration', 'Sosiaalinen media Integration', '2025-11-21 00:59:35'),
(29514, 'fi', 'guest', 'Site Auditor desc', 'Tarkista jokaisen sivun kaikki SEO-tekijät and luo XML-, HTML- ja TEXT-sivustokartat hakukoneille.', '2025-11-21 00:59:35'),
(29513, 'fi', 'guest', 'Search Engine Saturation desc', 'Find the number of indexed pages across different Hakukoneet and monitor your indexing progress.', '2025-11-21 00:59:35'),
(29512, 'fi', 'guest', 'Resources & Support', 'Resources & Support', '2025-11-21 00:59:35'),
(29511, 'fi', 'guest', 'Rank Checker desc', 'Check Google PageRank, Alexa-sijoitus, and Moz Sijoitus kattavalla päivittäisellä seurannalla ja raportoinnilla.', '2025-11-21 00:59:35'),
(29510, 'fi', 'guest', 'Powerful SEO Features', 'Powerful SEO Ominaisuudet', '2025-11-21 00:59:35'),
(29509, 'fi', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful Laajennukset including Article Submitter, Meta Tag Generator, and more.', '2025-11-21 00:59:35'),
(29508, 'fi', 'guest', 'Plugin Architecture', 'Laajennus Architecture', '2025-11-21 00:59:35'),
(29507, 'fi', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited Verkkosivustot Alkaen a single control panel with centralized raportointi.', '2025-11-21 00:59:35'),
(29506, 'fi', 'guest', 'Multi-Website Support', 'Multi-Verkkosivusto Support', '2025-11-21 00:59:35'),
(29505, 'fi', 'guest', 'Login to Get Started', 'Kirjaudu sisään to Get Started', '2025-11-21 00:59:35'),
(29504, 'fi', 'guest', 'Keyword Position Checker desc', 'Track your Avainsana rankings across multiple Hakukoneet with detailed daily Raportit and beautiful graphs.', '2025-11-21 00:59:35'),
(29502, 'fi', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-11-21 00:59:35'),
(29503, 'fi', 'guest', 'Highly Extensible desc', 'Easily develop and install custom Laajennukset to extend functionality according to your needs.', '2025-11-21 00:59:35'),
(29501, 'fi', 'guest', 'Hero subtitle', 'World''s Ensimmäinen Avaa Source SEO Control Panel for Multiple Verkkosivustot', '2025-11-21 00:59:35'),
(29500, 'fi', 'guest', 'Hero description', 'A complete Avaa source SEO control panel for managing Hakukone optimization of your Verkkosivustot. SEO Panel is a powerful toolkit that includes the latest SEO-työkalut to increase and track the performance of your Verkkosivustot.', '2025-11-21 00:59:35'),
(29499, 'fi', 'guest', 'Get Support', 'Get Support', '2025-11-21 00:59:35'),
(29498, 'fi', 'guest', 'Download SEO Panel', 'Lataa SEO Panel', '2025-11-21 00:59:35'),
(29497, 'fi', 'guest', 'Documentation', 'Documentation', '2025-11-21 00:59:35'),
(29496, 'fi', 'guest', 'Directory Submission desc', 'Automatically Lähetä your Verkkosivustot to major free and paid directories with Tila seuranta.', '2025-11-21 00:59:35'),
(29495, 'fi', 'guest', 'Contact Us', 'Ota yhteyttä Us', '2025-11-21 00:59:35'),
(29493, 'fi', 'guest', 'Browse Plugins', 'Browse Laajennukset', '2025-11-21 00:59:35'),
(29494, 'fi', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-11-21 00:59:35'),
(29492, 'fi', 'guest', 'Backlinks Checker desc', 'Monitor the number of Takaisinlinkit Alkaen major Hakukoneet and track your link building progress over time.', '2025-11-21 00:59:35'),
(29491, 'fi', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. Lataa, customize, and use without any restrictions.', '2025-11-21 00:59:35'),
(29490, 'fi', 'guest', '100% Open Source', '100% Avaa Source', '2025-11-21 00:59:35'),
(29489, 'fi', 'directory', 'Website Url', 'Verkkosivuston URL', '2025-11-21 00:59:35'),
(29487, 'fi', 'directory', 'Submit Title', 'Lähetä Otsikko', '2025-11-21 00:59:35'),
(29488, 'fi', 'directory', 'Website Category', 'Verkkosivusto Kategoria', '2025-11-21 00:59:35'),
(29486, 'fi', 'directory', 'Submit Keywords', 'Lähetä Avainsanat', '2025-11-21 00:59:35'),
(29485, 'fi', 'directory', 'Submit Description', 'Lähetä Kuvaus', '2025-11-21 00:59:35'),
(29484, 'fi', 'directory', 'Submission Details', 'Lähettäminen Tiedot', '2025-11-21 00:59:35'),
(29483, 'fi', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary Sähköposti address.', '2025-11-21 00:59:35'),
(29482, 'fi', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi Automaattinen hakemistolähettämistyökalu', '2025-11-21 00:59:35'),
(29481, 'fi', 'directory', 'selectwebsiteschecksub', 'Valitse <b>Verkkosivusto</b> to <b>Jatka</b> check Hakemistolähettäminen.', '2025-11-21 00:59:35'),
(29480, 'fi', 'directory', 'selectwebsiteproceed', 'Valitse <b>Verkkosivusto</b> to <b>Jatka</b> Hakemistolähettäminen.<br>Check <b>Directories with out captcha</b> to Lähetä to directories with out captcha', '2025-11-21 00:59:35'),
(29479, 'fi', 'directory', 'Reciprocal Link', 'Reciprocal Link', '2025-11-21 00:59:35'),
(29477, 'fi', 'directory', 'Pending', 'Odottaa', '2025-11-21 00:59:35'),
(29478, 'fi', 'directory', 'Please select a website to proceed', 'Valitse verkkosivusto jatkaaksesi', '2025-11-21 00:59:35'),
(29476, 'fi', 'directory', 'Owner Name', 'Owner Nimi', '2025-11-21 00:59:35'),
(29475, 'fi', 'directory', 'Owner Email', 'Owner Sähköposti', '2025-11-21 00:59:35'),
(29474, 'fi', 'directory', 'optionalnote', 'Optional titles and descriptions to Lähetä random Otsikko and Kuvaus to directories for better Tulokset.', '2025-11-21 00:59:35'),
(29473, 'fi', 'directory', 'nosuccessnote', 'Onnistumisviestiä ei saatu, Tarkista sähköpostisi vahvistusviestin löytämiseksi', '2025-11-21 00:59:35'),
(29472, 'fi', 'directory', 'nodirnote', 'No <b>Aktiivinen</b> directories Found', '2025-11-21 00:59:35'),
(29471, 'fi', 'directory', 'nocatnote', 'Lähetysluokkaa ei löydy lähetyssivulta. Please Klikkaa <b>Lataa uudelleen</b> or <b>Ohita</b>', '2025-11-21 00:59:35'),
(29470, 'fi', 'directory', 'Enter the code shown', 'Syötä näytetty koodi', '2025-11-21 00:59:35'),
(29469, 'fi', 'directory', 'Directory Submission Reports', 'Hakemistolähettäminen Raportit', '2025-11-21 00:59:35'),
(29468, 'fi', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Link', '2025-11-21 00:59:35'),
(29467, 'fi', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2025-11-21 00:59:35'),
(29466, 'fi', 'directory', 'desnote', 'Some directories require minimum 150 characters for the Kuvaus field.', '2025-11-21 00:59:35'),
(29465, 'fi', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured Lähettäminen!', '2025-11-21 00:59:35'),
(29463, 'fi', 'directory', 'Coupon Code', 'Coupon Code', '2025-11-21 00:59:35'),
(29464, 'fi', 'directory', 'Coupon Offer', 'Coupon Offer', '2025-11-21 00:59:35'),
(29462, 'fi', 'directory', 'Confirmation', 'Vahvistus', '2025-11-21 00:59:35'),
(29461, 'fi', 'directory', 'clicktoproceeddirsts', 'Klikkaa <b>Jatka</b> to Tarkista hakemiston tila.', '2025-11-21 00:59:35'),
(29459, 'fi', 'directory', 'Check Directory Submission Status', 'Tarkista hakemistolähettämisen tila', '2025-11-21 00:59:35'),
(29460, 'fi', 'directory', 'clickaddfeatureddirectory', 'Klikkaa tästä lisätäksesi oman suositellun hakemiston', '2025-11-21 00:59:35'),
(29458, 'fi', 'directory', 'Check Directory Status', 'Tarkista hakemiston tila', '2025-11-21 00:59:35'),
(29457, 'fi', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. Aloita with Top priority Kategoria.', '2025-11-21 00:59:35'),
(29456, 'fi', 'directory', 'Captcha', 'Captcha', '2025-11-21 00:59:35'),
(29455, 'fi', 'directory', 'Approved', 'Hyväksytty', '2025-11-21 00:59:35'),
(29453, 'fi', 'dashboard', 'Worst Rank', 'Worst Sijoitus', '2025-11-21 00:59:35'),
(29454, 'fi', 'directory', 'Add back to directory list', 'Lisää takaisin hakemistoluetteloon', '2025-11-21 00:59:35'),
(29452, 'fi', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility Pisteet (Standard Deviation)', '2025-11-21 00:59:35'),
(29451, 'fi', 'dashboard', 'Volatility Score', 'Volatility Pisteet', '2025-11-21 00:59:35'),
(29450, 'fi', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'Volatiliteettitiedot vaativat vähintään 2 sijoitustarkistusta valitulla ajanjaksolla.', '2025-11-21 00:59:35'),
(29449, 'fi', 'dashboard', 'Volatility', 'Volatility', '2025-11-21 00:59:35'),
(29448, 'fi', 'dashboard', 'Trend', 'Trend', '2025-11-21 00:59:35'),
(29447, 'fi', 'dashboard', 'Top 3', 'Top 3', '2025-11-21 00:59:35'),
(29446, 'fi', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile Avainsanat', '2025-11-21 00:59:35'),
(29445, 'fi', 'dashboard', 'Top 10', 'Top 10', '2025-11-21 00:59:35'),
(29444, 'fi', 'dashboard', 'Ranking Volatility', 'Ranking Volatility', '2025-11-21 00:59:35'),
(29443, 'fi', 'dashboard', 'positions', 'positions', '2025-11-21 00:59:35'),
(29442, 'fi', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-11-21 00:59:35'),
(29441, 'fi', 'dashboard', 'Keywords with most ranking fluctuations', 'Avainsanat with most ranking fluctuations', '2025-11-21 00:59:35'),
(29440, 'fi', 'dashboard', 'Keywords by Ranking Position', 'Avainsanat by Ranking Asema', '2025-11-21 00:59:35'),
(29439, 'fi', 'dashboard', 'Keyword Statistics', 'Avainsana Statistics', '2025-11-21 00:59:35'),
(29438, 'fi', 'dashboard', 'Keyword Distribution by Rank', 'Avainsana Distribution by Sijoitus', '2025-11-21 00:59:35'),
(29437, 'fi', 'dashboard', 'Best Rank', 'Best Sijoitus', '2025-11-21 00:59:35'),
(29436, 'fi', 'dashboard', 'Avg Rank', 'Avg Sijoitus', '2025-11-21 00:59:35'),
(29435, 'fi', 'common', 'Yes', 'Kyllä', '2025-11-21 00:59:35'),
(29434, 'fi', 'common', 'Websites Count', 'Verkkosivustot Määrä', '2025-11-21 00:59:35'),
(29433, 'fi', 'common', 'Website', 'Verkkosivusto', '2025-11-21 00:59:35'),
(29432, 'fi', 'common', 'Warnings', 'Warnings', '2025-11-21 00:59:35'),
(29431, 'fi', 'common', 'User Type', 'Käyttäjä Tyyppi', '2025-11-21 00:59:35'),
(29430, 'fi', 'common', 'User Panel', 'Käyttäjä Panel', '2025-11-21 00:59:35'),
(29428, 'fi', 'common', 'Url', 'URL', '2025-11-21 00:59:35'),
(29429, 'fi', 'common', 'User', 'Käyttäjä', '2025-11-21 00:59:35'),
(29427, 'fi', 'common', 'Total', 'Yhteensä', '2025-11-21 00:59:35'),
(29426, 'fi', 'common', 'Tools', 'Työkalut', '2025-11-21 00:59:35'),
(29425, 'fi', 'common', 'Thank you', 'Thank you', '2025-11-21 00:59:35'),
(29423, 'fi', 'common', 'Status', 'Tila', '2025-11-21 00:59:35'),
(29424, 'fi', 'common', 'Support', 'Support', '2025-11-21 00:59:35'),
(29421, 'fi', 'common', 'Source', 'Source', '2025-11-21 00:59:35'),
(29422, 'fi', 'common', 'Spam Score', 'Spam Pisteet', '2025-11-21 00:59:35'),
(29420, 'fi', 'common', 'signin', 'Kirjaudu sisään', '2025-11-21 00:59:35'),
(29419, 'fi', 'common', 'Sign Up', 'Luo tili', '2025-11-21 00:59:35'),
(29417, 'fi', 'common', 'Server', 'Server', '2025-11-21 00:59:35'),
(29418, 'fi', 'common', 'Sign out', 'Kirjaudu ulos', '2025-11-21 00:59:35'),
(29415, 'fi', 'common', 'Seo Plugins', 'SEO-laajennukset', '2025-11-21 00:59:35'),
(29416, 'fi', 'common', 'Seo Tools', 'SEO-työkalut', '2025-11-21 00:59:35'),
(29413, 'fi', 'common', 'Search Engine Count', 'Hakukone Määrä', '2025-11-21 00:59:35'),
(29414, 'fi', 'common', 'Select', 'Valitse', '2025-11-21 00:59:35'),
(29412, 'fi', 'common', 'Search Engine', 'Hakukone', '2025-11-21 00:59:35'),
(29410, 'fi', 'common', 'Results', 'Tulokset', '2025-11-21 00:59:35'),
(29411, 'fi', 'common', 'Sample CSV File', 'Sample CSV File', '2025-11-21 00:59:35'),
(29409, 'fi', 'common', 'Reports', 'Raportit', '2025-11-21 00:59:35'),
(29408, 'fi', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification Epäonnistui', '2025-11-21 00:59:35'),
(29361, 'fi', 'common', 'Found', 'Found', '2025-11-21 00:59:35'),
(29362, 'fi', 'common', 'General', 'General', '2025-11-21 00:59:35'),
(29363, 'fi', 'common', 'Google Pagerank', 'Google Pagerank', '2025-11-21 00:59:35'),
(29364, 'fi', 'common', 'Hello', 'Hello', '2025-11-21 00:59:35'),
(29365, 'fi', 'common', 'help', 'Apua', '2025-11-21 00:59:35'),
(29366, 'fi', 'common', 'hidenews', 'Hide Seo Panel News', '2025-11-21 00:59:35'),
(29367, 'fi', 'common', 'Home', 'Etusivu', '2025-11-21 00:59:35'),
(29368, 'fi', 'common', 'Id', 'Id', '2025-11-21 00:59:35'),
(29369, 'fi', 'common', 'Inactivate', 'Inactivate', '2025-11-21 00:59:35'),
(29370, 'fi', 'common', 'Inactive', 'Inactive', '2025-11-21 00:59:35'),
(29371, 'fi', 'common', 'Internal error occured', 'Internal Virhe occured', '2025-11-21 00:59:35'),
(29372, 'fi', 'common', 'Invalid characters', 'Invalid characters', '2025-11-21 00:59:35'),
(29373, 'fi', 'common', 'Invalid code entered', 'Virheellinen koodi', '2025-11-21 00:59:35'),
(29374, 'fi', 'common', 'Invalid email address entered', 'Virheellinen sähköpostiosoite', '2025-11-21 00:59:35'),
(29375, 'fi', 'common', 'Invalid Url', 'Invalid URL', '2025-11-21 00:59:35'),
(29376, 'fi', 'common', 'Invalid value', 'Invalid Arvo', '2025-11-21 00:59:35'),
(29377, 'fi', 'common', 'Keyword', 'Avainsana', '2025-11-21 00:59:35'),
(29378, 'fi', 'common', 'Keywords', 'Avainsanat', '2025-11-21 00:59:35'),
(29379, 'fi', 'common', 'Keywords Count', 'Avainsanat Määrä', '2025-11-21 00:59:35'),
(29380, 'fi', 'common', 'lang', 'Kieli', '2025-11-21 00:59:35'),
(29381, 'fi', 'common', 'Link', 'Link', '2025-11-21 00:59:35'),
(29382, 'fi', 'common', 'Logout', 'Kirjaudu ulos', '2025-11-21 00:59:35'),
(29383, 'fi', 'common', 'Metric', 'Metric', '2025-11-21 00:59:35'),
(29384, 'fi', 'common', 'MOZ Rank', 'MOZ Sijoitus', '2025-11-21 00:59:35'),
(29385, 'fi', 'common', 'My Account', 'Oma tili', '2025-11-21 00:59:35'),
(29386, 'fi', 'Common', 'Name', 'Nimi', '2025-11-21 00:59:35'),
(29387, 'fi', 'common', 'New User Type', 'Uusi Käyttäjä Tyyppi', '2025-11-21 00:59:35'),
(29388, 'fi', 'common', 'No', 'Ei', '2025-11-21 00:59:35'),
(29389, 'fi', 'common', 'No Keywords Found', 'No Avainsanat Found', '2025-11-21 00:59:35'),
(29390, 'fi', 'common', 'No Records Found', 'Tietueita ei löytynyt', '2025-11-21 00:59:35'),
(29391, 'fi', 'common', 'noactivetools', 'No Aktiivinen SEO-työkalut Found!', '2025-11-21 00:59:35'),
(29392, 'fi', 'common', 'nowebsites', 'No Verkkosivustot Found', '2025-11-21 00:59:35'),
(29393, 'fi', 'common', 'Number', 'Number', '2025-11-21 00:59:35'),
(29394, 'fi', 'common', 'Page Authority', 'Sivun auktoriteetti', '2025-11-21 00:59:35'),
(29395, 'fi', 'common', 'Pagerank', 'Pagerank', '2025-11-21 00:59:35'),
(29396, 'fi', 'common', 'password632', 'The Salasana string should have a length between 6 and 32', '2025-11-21 00:59:35'),
(29397, 'fi', 'common', 'passwordnotmatch', 'The passwords do not match', '2025-11-21 00:59:35'),
(29398, 'fi', 'common', 'Period', 'Period', '2025-11-21 00:59:35'),
(29399, 'fi', 'common', 'Plugins', 'Laajennukset', '2025-11-21 00:59:35'),
(29400, 'fi', 'common', 'Powered by', 'Powered by', '2025-11-21 00:59:35'),
(29401, 'fi', 'common', 'Price', 'Price', '2025-11-21 00:59:35'),
(29402, 'fi', 'common', 'Pricing', 'Pricing', '2025-11-21 00:59:35'),
(29403, 'fi', 'common', 'Priority', 'Priority', '2025-11-21 00:59:35'),
(29404, 'fi', 'common', 'Profile', 'Profiili', '2025-11-21 00:59:35'),
(29405, 'fi', 'common', 'Range', 'Range', '2025-11-21 00:59:35'),
(29406, 'fi', 'common', 'Rank', 'Sijoitus', '2025-11-21 00:59:35'),
(29407, 'fi', 'common', 'Rankings', 'Rankings', '2025-11-21 00:59:35'),
(29344, 'fi', 'common', 'Country', 'Maa', '2025-11-21 00:59:35'),
(29345, 'fi', 'common', 'Crawl Meta Data', 'Indeksoi metatiedot', '2025-11-21 00:59:35'),
(29346, 'fi', 'common', 'Dashboard', 'Hallintapaneeli', '2025-11-21 00:59:35'),
(29347, 'fi', 'common', 'Date', 'Päivämäärä', '2025-11-21 00:59:35'),
(29348, 'fi', 'common', 'Debug', 'Virheenkorjaus', '2025-11-21 00:59:35'),
(29349, 'fi', 'common', 'Delete', 'Poista', '2025-11-21 00:59:35'),
(29350, 'fi', 'common', 'Details', 'Tiedot', '2025-11-21 00:59:35'),
(29351, 'fi', 'common', 'Directory', 'Hakemisto', '2025-11-21 00:59:35'),
(29352, 'fi', 'common', 'Domain Authority', 'Verkkotunnuksen auktoriteetti', '2025-11-21 00:59:35'),
(29353, 'fi', 'common', 'Donate', 'Lahjoita', '2025-11-21 00:59:35'),
(29354, 'fi', 'common', 'Edit', 'Muokkaa', '2025-11-21 00:59:35'),
(29355, 'fi', 'common', 'Edit User Type', 'Muokkaa käyttäjää Tyyppi', '2025-11-21 00:59:35'),
(29356, 'fi', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2025-11-21 00:59:35'),
(29357, 'fi', 'common', 'entrynotvalid', 'Syötetty merkintä ei vaikuta kelvolliselta', '2025-11-21 00:59:35'),
(29358, 'fi', 'common', 'Errors', 'Errors', '2025-11-21 00:59:35'),
(29359, 'fi', 'common', 'failed', 'Epäonnistui', '2025-11-21 00:59:35'),
(29360, 'fi', 'common', 'forum', 'Foorumi', '2025-11-21 00:59:35'),
(29331, 'fi', 'button', 'Submit', 'Lähetä', '2025-11-21 00:59:35'),
(29332, 'fi', 'common', 'Action', 'Toiminto', '2025-11-21 00:59:35'),
(29333, 'fi', 'common', 'Activate', 'Aktivoi', '2025-11-21 00:59:35'),
(29334, 'fi', 'common', 'Active', 'Aktiivinen', '2025-11-21 00:59:35'),
(29335, 'fi', 'common', 'Admin Panel', 'Ylläpitopaneeli', '2025-11-21 00:59:35'),
(29336, 'fi', 'common', 'Alexa Rank', 'Alexa-sijoitus', '2025-11-21 00:59:35'),
(29337, 'fi', 'common', 'All', 'Kaikki', '2025-11-21 00:59:35'),
(29338, 'fi', 'common', 'API Token', 'API-tunnus', '2025-11-21 00:59:35'),
(29339, 'fi', 'common', 'Blog', 'Blogi', '2025-11-21 00:59:35'),
(29340, 'fi', 'common', 'Category', 'Kategoria', '2025-11-21 00:59:35'),
(29341, 'fi', 'common', 'Checked', 'Tarkistettu', '2025-11-21 00:59:35'),
(29342, 'fi', 'common', 'contact', 'Ota yhteyttä', '2025-11-21 00:59:35'),
(29343, 'fi', 'common', 'copyright', 'Copyright © [year] www.seopanel.org Kaikki rights reserved', '2025-11-21 00:59:35'),
(29330, 'fi', 'button', 'Skip', 'Ohita', '2025-11-21 00:59:35'),
(29329, 'fi', 'button', 'Show Records', 'Näytä tietueet', '2025-11-21 00:59:35'),
(29328, 'fi', 'button', 'Show Details', 'Näytä tiedot', '2025-11-21 00:59:35'),
(29327, 'fi', 'button', 'Search', 'Hae', '2025-11-21 00:59:35'),
(29326, 'fi', 'button', 'Reload', 'Lataa uudelleen', '2025-11-21 00:59:35'),
(29324, 'fi', 'button', 'Check Status', 'Tarkista tila', '2025-11-21 00:59:35'),
(29325, 'fi', 'button', 'Proceed', 'Jatka', '2025-11-21 00:59:35'),
(29323, 'fi', 'button', 'Cancel', 'Peruuta', '2025-11-21 00:59:35'),
(29322, 'fi', 'blog', 'Older Posts', 'Vanhemmat julkaisut', '2025-11-21 00:59:35'),
(29321, 'fi', 'blog', 'NothingFound_text2', 'Valitettavasti mikään ei vastannut hakukriteereitäsi. Yritä uudelleen eri avainsanoilla.', '2025-11-21 00:59:35'),
(29320, 'fi', 'blog', 'Nothing Found', 'Mitään ei löytynyt', '2025-11-21 00:59:35'),
(29319, 'fi', 'blog', 'Newer Posts', 'Uudemmat julkaisut', '2025-11-21 00:59:35'),
(29318, 'fi', 'backlink', 'Saved backlink results of', 'Tallennettu Takaisinlinkki Tulokset of', '2025-11-21 00:59:35'),
(29317, 'fi', 'backlink', 'Domain Backlinks', 'Verkkotunnuksen takaisinlinkit', '2025-11-21 00:59:35'),
(29316, 'fi', 'backlink', 'Domain Backlink Count', 'Verkkotunnuksen takaisinlinkkien määrä', '2025-11-21 00:59:35'),
(29315, 'fi', 'backlink', 'clickproceedbacklink', 'Syötä URL''s <b>Yksi per rivi</b>. Klikkaa <b>Jatka</b> to Tarkista takaisinlinkit.', '2025-11-21 00:59:35'),
(29314, 'fi', 'backlink', 'Backlink Count', 'Takaisinlinkkien määrä', '2025-11-21 00:59:35'),
(29312, 'fi', 'api', 'API Guide', 'API Guide', '2025-11-21 00:59:35'),
(29313, 'fi', 'api', 'API Url', 'API URL', '2025-11-21 00:59:35'),
(29311, 'fi', 'analytics', 'view_id_not_found_error', 'Virhe: Analytiikka Näytä ID is not set for Verkkosivusto. Muokkaa verkkosivustoa and Päivitä Näytä ID.', '2025-11-21 00:59:35'),
(29309, 'fi', 'analytics', 'Sessions', 'Istunnot', '2025-11-21 00:59:35'),
(29310, 'fi', 'analytics', 'Users', 'Käyttäjät', '2025-11-21 00:59:35'),
(29308, 'fi', 'analytics', 'New Users', 'Uudet käyttäjät', '2025-11-21 00:59:35'),
(29306, 'fi', 'analytics', 'Bounce Rate', 'Poistumisprosentti', '2025-11-21 00:59:35'),
(29307, 'fi', 'analytics', 'Goal Completions', 'Tavoitteiden täyttyminen', '2025-11-21 00:59:35'),
(29305, 'fi', 'analytics', 'Avg. Session Duration', 'Keskimääräinen istunnon kesto', '2025-11-21 00:59:35'),
(28253, 'hi', 'seotools', 'Graphical Reports', 'Graphical रिपोर्ट', '2025-11-21 00:47:07'),
(28252, 'hi', 'seotools', 'Graphical Position Reports', 'Graphical स्थिति रिपोर्ट', '2025-11-21 00:47:07'),
(28251, 'hi', 'seotools', 'Google Sitemap Generator', 'Google साइटमैप Generator', '2025-11-21 00:47:07'),
(28250, 'hi', 'seotools', 'Generate Saturation Reports', 'बनाएं संतृप्ति रिपोर्ट', '2025-11-21 00:47:07'),
(28249, 'hi', 'seotools', 'Generate Reports', 'बनाएं रिपोर्ट', '2025-11-21 00:47:07'),
(28248, 'hi', 'seotools', 'Generate Rank Reports', 'बनाएं रैंक रिपोर्ट', '2025-11-21 00:47:07'),
(28247, 'hi', 'seotools', 'Generate Keyword Reports', 'बनाएं मुख्य शब्द रिपोर्ट', '2025-11-21 00:47:07'),
(28246, 'hi', 'seotools', 'Generate Backlinks Reports', 'बनाएं बैकलिंक रिपोर्ट', '2025-11-21 00:47:07'),
(28245, 'hi', 'seotools', 'Featured Submission', 'Featured सबमिशन', '2025-11-21 00:47:07'),
(28244, 'hi', 'seotools', 'Edit Seo Tool', 'संपादित करें Seo उपकरण', '2025-11-21 00:47:07'),
(28243, 'hi', 'seotools', 'directory-submission', 'निर्देशिका सबमिशन', '2025-11-21 00:47:07'),
(28242, 'hi', 'seotools', 'Detailed Reports', 'विस्तृत रिपोर्ट', '2025-11-21 00:47:07'),
(28241, 'hi', 'seotools', 'Detailed Position Reports', 'Detailed स्थिति रिपोर्ट', '2025-11-21 00:47:07'),
(28240, 'hi', 'seotools', 'clickproceedaction', 'URL दर्ज करें''s <b>प्रति पंक्ति एक</b>. क्लिक करें <b>आगे बढ़ें</b> जांचने के लिए परिणाम.', '2025-11-21 00:47:07'),
(28239, 'hi', 'seotools', 'clickgeneratereports', 'क्लिक करें <b>आगे बढ़ें</b> to बनाएं रिपोर्ट', '2025-11-21 00:47:07'),
(28238, 'hi', 'seotools', 'Check Submission Status', 'Check सबमिशन स्थिति', '2025-11-21 00:47:07'),
(28237, 'hi', 'seotools', 'Backlinks Reports', 'बैकलिंक रिपोर्ट', '2025-11-21 00:47:07'),
(28236, 'hi', 'seotools', 'backlink-checker', 'बैकलिंक जांचकर्ता', '2025-11-21 00:47:07'),
(28235, 'hi', 'seotools', 'Automatic Submission', 'Automatic सबमिशन', '2025-11-21 00:47:07'),
(28234, 'hi', 'seotools', 'Auditor Settings', 'Auditor सेटिंग्स', '2025-11-21 00:47:07'),
(28233, 'hi', 'seotools', 'Auditor Reports', 'Auditor रिपोर्ट', '2025-11-21 00:47:07'),
(28232, 'hi', 'seotools', 'Auditor Projects', 'Auditor Projects', '2025-11-21 00:47:07'),
(28231, 'hi', 'searchengine', 'no_of_results_page', 'Number of परिणाम per page', '2025-11-21 00:47:07'),
(28230, 'hi', 'searchengine', 'max_results', 'Maximum number of परिणाम', '2025-11-21 00:47:07'),
(28229, 'hi', 'saturation', 'Search Engine Saturation Reports', 'खोज इंजन संतृप्ति रिपोर्ट', '2025-11-21 00:47:07'),
(28228, 'hi', 'saturation', 'Saved Search Engine Saturation results of', 'सहेजा गया खोज इंजन संतृप्ति परिणाम of', '2025-11-21 00:47:07'),
(28227, 'hi', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick खोज इंजन संतृप्ति जांचकर्ता', '2025-11-21 00:47:07'),
(28226, 'hi', 'saturation', 'GenerateSaturationReports', 'बनाएं खोज इंजन संतृप्ति रिपोर्ट', '2025-11-21 00:47:07'),
(28225, 'hi', 'saturation', 'clickproceedsaturation', 'URL दर्ज करें''s <b>प्रति पंक्ति एक</b>. क्लिक करें <b>आगे बढ़ें</b> जांचने के लिए खोज इंजन संतृप्ति परिणाम', '2025-11-21 00:47:07'),
(28224, 'hi', 'review', 'New Review Link', 'नया समीक्षा Link', '2025-11-21 00:47:07');
INSERT INTO `texts` VALUES
(28223, 'hi', 'review', 'Edit Review Link', 'संपादित करें समीक्षा Link', '2025-11-21 00:47:07'),
(28222, 'hi', 'reports', 'Reports Generated Successfully', 'रिपोर्ट Generated सफलतापूर्वक', '2025-11-21 00:47:07'),
(28221, 'hi', 'reports', 'report_email_subject', 'Your SEO रिपोर्ट generated सफलतापूर्वक', '2025-11-21 00:47:07'),
(28220, 'hi', 'reports', 'report_email_body_text2', 'If above रिपोर्ट are not clear, Please [LOGIN_LINK] to देखें the रिपोर्ट directly से your खाता.', '2025-11-21 00:47:07'),
(28219, 'hi', 'reports', 'report_email_body_text1', 'Your रिपोर्ट generated सफलतापूर्वक in seo panel. Please check the attached रिपोर्ट.', '2025-11-21 00:47:07'),
(28218, 'hi', 'report', 'sheduledsuccessfully', 'Scheduled रिपोर्ट generation सफलतापूर्वक!', '2025-11-21 00:47:07'),
(28217, 'hi', 'report', 'reportsettingssaved', 'रिपोर्ट सेटिंग्स सहेजा गया सफलतापूर्वक!', '2025-11-21 00:47:07'),
(28216, 'hi', 'report', 'Reports generation interval', 'रिपोर्ट generation interval', '2025-11-21 00:47:07'),
(28215, 'hi', 'report', 'Next report generation time', 'अगला रिपोर्ट generation time', '2025-11-21 00:47:07'),
(28214, 'hi', 'report', 'keywordnumbercheckedcronnote', 'Note: Default 0 means सभी मुख्य शब्द should be जांच की गई', '2025-11-21 00:47:07'),
(28213, 'hi', 'report', 'Email notification', 'ईमेल notification', '2025-11-21 00:47:07'),
(28212, 'hi', 'report', '2 Days', '2 Days', '2025-11-21 00:47:07'),
(28211, 'hi', 'register', 'user_confirm_mail_cont_2', 'Please क्लिक करें the following link to confirm पंजीकरण', '2025-11-21 00:47:07'),
(28210, 'hi', 'register', 'user_confirm_mail_cont_1', 'Thank you for your पंजीकरण with', '2025-11-21 00:47:07'),
(28209, 'hi', 'register', 'user_confirm_content_1', 'Internal त्रुटि occured while processing confirm request', '2025-11-21 00:47:07'),
(28208, 'hi', 'register', 'Subscription Details', 'सदस्यता विवरण', '2025-11-21 00:47:07'),
(28207, 'hi', 'register', 'Registration', 'पंजीकरण', '2025-11-21 00:47:07'),
(28206, 'hi', 'register', 'Register subtitle', 'Join us आज and शुरू optimizing your SEO', '2025-11-21 00:47:07'),
(28205, 'hi', 'register', 'Personal Information', 'Personal जानकारी', '2025-11-21 00:47:07'),
(28204, 'hi', 'register', 'Last name placeholder', 'अंतिम नाम', '2025-11-21 00:47:07'),
(28203, 'hi', 'register', 'First name placeholder', 'पहला नाम', '2025-11-21 00:47:07'),
(28202, 'hi', 'register', 'Already have account', 'Already have an खाता?', '2025-11-21 00:47:07'),
(28201, 'hi', 'register', 'Account Information', 'खाता जानकारी', '2025-11-21 00:47:07'),
(28199, 'hi', 'rank', 'Google and Alexa Rank Reports', 'Google and एलेक्सा रैंक रिपोर्ट', '2025-11-21 00:47:07'),
(28200, 'hi', 'rank', 'Saved rank results of', 'सहेजा गया रैंक परिणाम of', '2025-11-21 00:47:07'),
(28198, 'hi', 'rank', 'enterurlproceed', 'URL दर्ज करें''s <b>प्रति पंक्ति एक</b>. क्लिक करें <b>आगे बढ़ें</b> जांचने के लिए Google and एलेक्सा रैंक.', '2025-11-21 00:47:07'),
(28197, 'hi', 'QuickWebProxy', 'Web Server', 'Web Server', '2025-11-21 00:47:07'),
(28196, 'hi', 'QuickWebProxy', 'Web Proxy', 'Web प्रॉक्सी', '2025-11-21 00:47:07'),
(28195, 'hi', 'QuickWebProxy', 'Url blocked in the web proxy', 'URL blocked in the web प्रॉक्सी', '2025-11-21 00:47:07'),
(28194, 'hi', 'QuickWebProxy', 'Server list is empty', 'Server सूची is empty', '2025-11-21 00:47:07'),
(28193, 'hi', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web प्रॉक्सी.', '2025-11-21 00:47:07'),
(28192, 'hi', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web प्रॉक्सी', '2025-11-21 00:47:07'),
(28191, 'hi', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a प्रॉक्सी', '2025-11-21 00:47:07'),
(28190, 'hi', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow उपयोगकर्ता to access the web प्रॉक्सी', '2025-11-21 00:47:07'),
(28189, 'hi', 'QuickWebProxy', 'Please enter a valid url', 'Please enter a valid URL', '2025-11-21 00:47:07'),
(28188, 'hi', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2025-11-21 00:47:07'),
(28187, 'hi', 'proxy', 'Request Count', 'Request गिनती', '2025-11-21 00:47:07'),
(28186, 'hi', 'proxy', 'proxysyntax', 'प्रॉक्सी Hostname, प्रॉक्सी Port, प्रॉक्सी उपयोगकर्ता नाम, प्रॉक्सी पासवर्ड', '2025-11-21 00:47:07'),
(28185, 'hi', 'proxy', 'Proxyalreadyexist', 'प्रॉक्सी already exist!', '2025-11-21 00:47:07'),
(28183, 'hi', 'proxy', 'Proxy Password', 'प्रॉक्सी पासवर्ड', '2025-11-21 00:47:07'),
(28184, 'hi', 'proxy', 'Proxy Username', 'प्रॉक्सी उपयोगकर्ता नाम', '2025-11-21 00:47:07'),
(28182, 'hi', 'proxy', 'enterproxynote', 'Enter प्रॉक्सी प्रति पंक्ति एक in following format.', '2025-11-21 00:47:07'),
(28181, 'hi', 'proxy', 'Edit Proxy', 'संपादित करें प्रॉक्सी', '2025-11-21 00:47:07'),
(28180, 'hi', 'proxy', 'click-to-get-proxy', 'यहां क्लिक करें to get प्रॉक्सी', '2025-11-21 00:47:07'),
(28178, 'hi', 'plugin', 'Plugin Name', 'प्लगइन नाम', '2025-11-21 00:47:07'),
(28179, 'hi', 'plugin', 'Seo Plugin Details', 'Seo प्लगइन विवरण', '2025-11-21 00:47:07'),
(28177, 'hi', 'plugin', 'Edit Seo Plugin', 'संपादित करें Seo प्लगइन', '2025-11-21 00:47:07'),
(28176, 'hi', 'plugin', 'Download Seo Panel Plugins', 'डाउनलोड करें SEO पैनल प्लगइन्स', '2025-11-21 00:47:07'),
(28175, 'hi', 'panel', 'Website Manager', 'वेबसाइट प्रबंधक', '2025-11-21 00:47:07'),
(28174, 'hi', 'panel', 'Website Access Manager', 'वेबसाइट Access प्रबंधक', '2025-11-21 00:47:07'),
(28173, 'hi', 'panel', 'Valid', 'Valid', '2025-11-21 00:47:07'),
(28172, 'hi', 'panel', 'User Type Settings', 'उपयोगकर्ता प्रकार सेटिंग्स', '2025-11-21 00:47:07'),
(28170, 'hi', 'panel', 'User Manager', 'उपयोगकर्ता प्रबंधक', '2025-11-21 00:47:07'),
(28171, 'hi', 'panel', 'User Type Manager', 'उपयोगकर्ता प्रकार प्रबंधक', '2025-11-21 00:47:07'),
(28169, 'hi', 'panel', 'Themes Manager', 'Themes प्रबंधक', '2025-11-21 00:47:07'),
(28168, 'hi', 'panel', 'Test Email Settings', 'Test ईमेल सेटिंग्स', '2025-11-21 00:47:07'),
(28167, 'hi', 'panel', 'System Settings', 'सिस्टम सेटिंग्स', '2025-11-21 00:47:07'),
(28166, 'hi', 'panel', 'Sync Search Engines', 'Sync खोज इंजन', '2025-11-21 00:47:07'),
(28163, 'hi', 'panel', 'Settings', 'सेटिंग्स', '2025-11-21 00:47:07'),
(28164, 'hi', 'panel', 'Sitemaps', 'Sitemaps', '2025-11-21 00:47:07'),
(28165, 'hi', 'panel', 'Submit Sitemap', 'जमा करें साइटमैप', '2025-11-21 00:47:07'),
(28162, 'hi', 'panel', 'Seo Tools Manager', 'SEO उपकरण प्रबंधक', '2025-11-21 00:47:07'),
(28161, 'hi', 'panel', 'Seo Plugins Manager', 'SEO प्लगइन्स प्रबंधक', '2025-11-21 00:47:07'),
(28159, 'hi', 'panel', 'Schedule Reports', 'Schedule रिपोर्ट', '2025-11-21 00:47:07'),
(28160, 'hi', 'panel', 'Search Engine Manager', 'खोज इंजन प्रबंधक', '2025-11-21 00:47:07'),
(28158, 'hi', 'panel', 'Reports Manager', 'रिपोर्ट प्रबंधक', '2025-11-21 00:47:07'),
(28157, 'hi', 'panel', 'Report Settings', 'रिपोर्ट सेटिंग्स', '2025-11-21 00:47:07'),
(28156, 'hi', 'panel', 'Report Generation Manager', 'रिपोर्ट Generation प्रबंधक', '2025-11-21 00:47:07'),
(28155, 'hi', 'panel', 'Report Generation Logs', 'रिपोर्ट Generation Logs', '2025-11-21 00:47:07'),
(28154, 'hi', 'panel', 'Proxy Settings', 'प्रॉक्सी सेटिंग्स', '2025-11-21 00:47:07'),
(28153, 'hi', 'panel', 'Proxy Perfomance', 'प्रॉक्सी Perfomance', '2025-11-21 00:47:07'),
(28152, 'hi', 'panel', 'Proxy Manager', 'प्रॉक्सी प्रबंधक', '2025-11-21 00:47:07'),
(28151, 'hi', 'panel', 'Project Summary', 'Project Summary', '2025-11-21 00:47:07'),
(28149, 'hi', 'panel', 'New Website', 'नया वेबसाइट', '2025-11-21 00:47:07'),
(28150, 'hi', 'panel', 'Project Manager', 'प्रोजेक्ट प्रबंधक', '2025-11-21 00:47:07'),
(28147, 'hi', 'panel', 'New User', 'नया उपयोगकर्ता', '2025-11-21 00:47:07'),
(28148, 'hi', 'panel', 'New User Type', 'नया उपयोगकर्ता प्रकार', '2025-11-21 00:47:07'),
(28146, 'hi', 'panel', 'New Proxy', 'नया प्रॉक्सी', '2025-11-21 00:47:07'),
(28145, 'hi', 'panel', 'New Project', 'नया Project', '2025-11-21 00:47:07'),
(28144, 'hi', 'panel', 'My Profile', 'My प्रोफ़ाइल', '2025-11-21 00:47:07'),
(28143, 'hi', 'panel', 'MOZ Settings', 'MOZ सेटिंग्स', '2025-11-21 00:47:07'),
(28142, 'hi', 'panel', 'Mail Settings', 'Mail सेटिंग्स', '2025-11-21 00:47:07'),
(28141, 'hi', 'panel', 'Mail Log Manager', 'मेल लॉग प्रबंधक', '2025-11-21 00:47:07'),
(28140, 'hi', 'panel', 'Log Manager', 'लॉग प्रबंधक', '2025-11-21 00:47:07'),
(28129, 'hi', 'panel', 'Cron Command', 'Cron Command', '2025-11-21 00:47:07'),
(28130, 'hi', 'panel', 'Current Time', 'Current Time', '2025-11-21 00:47:07'),
(28131, 'hi', 'panel', 'DataForSEO Settings', 'DataForSEO सेटिंग्स', '2025-11-21 00:47:07'),
(28132, 'hi', 'panel', 'Directory Manager', 'निर्देशिका प्रबंधक', '2025-11-21 00:47:07'),
(28133, 'hi', 'panel', 'Edit My Profile', 'संपादित करें My प्रोफ़ाइल', '2025-11-21 00:47:07'),
(28134, 'hi', 'panel', 'Edit Project', 'संपादित करें Project', '2025-11-21 00:47:07'),
(28135, 'hi', 'panel', 'Existing', 'Existing', '2025-11-21 00:47:07'),
(28136, 'hi', 'panel', 'Global Reports Settings', 'Global रिपोर्ट सेटिंग्स', '2025-11-21 00:47:07'),
(28137, 'hi', 'panel', 'Google Settings', 'Google सेटिंग्स', '2025-11-21 00:47:07'),
(28138, 'hi', 'panel', 'Import Proxy', 'आयात करें प्रॉक्सी', '2025-11-21 00:47:07'),
(28139, 'hi', 'panel', 'Import Websites', 'आयात करें वेबसाइटें', '2025-11-21 00:47:07'),
(28098, 'hi', 'login', 'user_not_activated_msg', 'उपयोगकर्ता सक्रिय नहीं है. सक्रियण के लिए कृपया अपना मेल जांचें', '2025-11-21 00:47:07'),
(28099, 'hi', 'login', 'Username', 'उपयोगकर्ता नाम', '2025-11-21 00:47:07'),
(28100, 'hi', 'login', 'Username placeholder', 'Enter your उपयोगकर्ता नाम', '2025-11-21 00:47:07'),
(28101, 'hi', 'login', 'usernameexist', 'उपयोगकर्ता नाम already exist!', '2025-11-21 00:47:07'),
(28102, 'hi', 'login', 'Verification', 'Verification', '2025-11-21 00:47:07'),
(28103, 'hi', 'login', 'Welcome message', 'Welcome वापस! Please लॉगिन to your खाता', '2025-11-21 00:47:07'),
(28104, 'hi', 'login', 'Your account activated successfully', 'आपका खाता सफलतापूर्वक सक्रिय किया गया', '2025-11-21 00:47:07'),
(28105, 'hi', 'login', 'Your account password is resetted and new password is', 'Your खाता पासवर्ड is resetted and नया पासवर्ड is', '2025-11-21 00:47:07'),
(28106, 'hi', 'login', 'Your Password Reset Failed', 'Your पासवर्ड Reset विफल', '2025-11-21 00:47:07'),
(28107, 'hi', 'login', 'Your Password Reset Successfully', 'आपका पासवर्ड सफलतापूर्वक रीसेट किया गया', '2025-11-21 00:47:07'),
(28108, 'hi', 'myaccount', 'Connect', 'Connect', '2025-11-21 00:47:07'),
(28109, 'hi', 'myaccount', 'Connected', 'Connected', '2025-11-21 00:47:07'),
(28110, 'hi', 'myaccount', 'Disconnect', 'Disconnect', '2025-11-21 00:47:07'),
(28111, 'hi', 'myaccount', 'Disconnected', 'Disconnected', '2025-11-21 00:47:07'),
(28112, 'hi', 'pagespeed', 'Desktop Speed', 'Desktop Speed', '2025-11-21 00:47:07'),
(28113, 'hi', 'pagespeed', 'Mobile Speed', 'Mobile Speed', '2025-11-21 00:47:07'),
(28114, 'hi', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2025-11-21 00:47:07'),
(28115, 'hi', 'pagespeed', 'Page Speed', 'पेज स्पीड', '2025-11-21 00:47:07'),
(28116, 'hi', 'pagespeed', 'PageSpeed Details', 'PageSpeed विवरण', '2025-11-21 00:47:07'),
(28117, 'hi', 'pagespeed', 'Saved page speed results of', 'सहेजा गया पेज स्पीड परिणाम of', '2025-11-21 00:47:07'),
(28118, 'hi', 'panel', 'About Us', 'About Us', '2025-11-21 00:47:07'),
(28119, 'hi', 'panel', 'Add following command to your cron tab', 'जोड़ें following command to your cron tab', '2025-11-21 00:47:07'),
(28120, 'hi', 'panel', 'Alerts', 'Alerts', '2025-11-21 00:47:07'),
(28121, 'hi', 'panel', 'alsocheckfollowlink', 'यदि आपको अधिक विवरण चाहिए तो निम्न लिंक भी जांचें.', '2025-11-21 00:47:07'),
(28122, 'hi', 'panel', 'API Connection', 'API Connection', '2025-11-21 00:47:07'),
(28123, 'hi', 'panel', 'API Manager', 'API प्रबंधक', '2025-11-21 00:47:07'),
(28124, 'hi', 'panel', 'API Settings', 'API सेटिंग्स', '2025-11-21 00:47:07'),
(28125, 'hi', 'panel', 'Archived Reports', 'Archived रिपोर्ट', '2025-11-21 00:47:07'),
(28126, 'hi', 'panel', 'Check Directory', 'निर्देशिका जांचें', '2025-11-21 00:47:07'),
(28127, 'hi', 'panel', 'Connections', 'Connections', '2025-11-21 00:47:07'),
(28128, 'hi', 'panel', 'Crawl Log Manager', 'क्रॉल लॉग प्रबंधक', '2025-11-21 00:47:07'),
(28092, 'hi', 'login', 'Sign In', 'साइन इन करें', '2025-11-21 00:47:07'),
(28093, 'hi', 'login', 'Sign in to your account', 'अपने खाते में साइन इन करें', '2025-11-21 00:47:07'),
(28094, 'hi', 'login', 'to login to your account', 'to लॉगिन to your खाता', '2025-11-21 00:47:07'),
(28095, 'hi', 'login', 'User inactive', 'उपयोगकर्ता inactive', '2025-11-21 00:47:07'),
(28096, 'hi', 'login', 'User Type', 'उपयोगकर्ता प्रकार', '2025-11-21 00:47:07'),
(28097, 'hi', 'login', 'user_email_not_exist', 'उपयोगकर्ता ईमेल is not existing in system!', '2025-11-21 00:47:07'),
(28091, 'hi', 'login', 'Security message', 'Your जानकारी is secure and encrypted', '2025-11-21 00:47:07'),
(28090, 'hi', 'login', 'Request Password', 'Request पासवर्ड', '2025-11-21 00:47:07'),
(28089, 'hi', 'login', 'Remember password text', 'Remember your पासवर्ड?', '2025-11-21 00:47:07'),
(28088, 'hi', 'login', 'Register', 'पंजीकरण करें', '2025-11-21 00:47:07'),
(28087, 'hi', 'login', 'password_reset_success_message', 'आपका पासवर्ड सफलतापूर्वक रीसेट किया गया. ईमेल पते पर एक पुष्टि मेल भेजा गया. <br>कृपया अपना इनबॉक्स जांचें to get your नया पासवर्ड.', '2025-11-21 00:47:07'),
(28086, 'hi', 'login', 'Password placeholder', 'Enter your पासवर्ड', '2025-11-21 00:47:07'),
(28085, 'hi', 'login', 'Password incorrect', 'पासवर्ड incorrect', '2025-11-21 00:47:07'),
(28084, 'hi', 'login', 'Password', 'पासवर्ड', '2025-11-21 00:47:07'),
(28083, 'hi', 'login', 'No account text', 'Don''t have an खाता?', '2025-11-21 00:47:07'),
(28082, 'hi', 'login', 'newaccountsuccess', 'नया खाता सफलतापूर्वक बनाया गया!', '2025-11-21 00:47:07'),
(28081, 'hi', 'login', 'Login incorrect', 'लॉगिन incorrect', '2025-11-21 00:47:07'),
(28080, 'hi', 'login', 'Login', 'लॉगिन', '2025-11-21 00:47:07'),
(28079, 'hi', 'login', 'Last Name', 'अंतिम नाम', '2025-11-21 00:47:07'),
(28078, 'hi', 'login', 'internal_error_mail_send', 'An internal त्रुटि occured while sending पासवर्ड reset mail!', '2025-11-21 00:47:07'),
(28077, 'hi', 'login', 'Forgot subtitle', 'Enter your ईमेल address and we''ll send you instructions to reset your पासवर्ड', '2025-11-21 00:47:07'),
(28076, 'hi', 'login', 'Forgot password?', 'पासवर्ड भूल गए?', '2025-11-21 00:47:07'),
(28075, 'hi', 'login', 'First Name', 'पहला नाम', '2025-11-21 00:47:07'),
(28074, 'hi', 'login', 'Enter the code as it is shown', 'कोड को जैसा दिखाया गया है वैसे ही दर्ज करें', '2025-11-21 00:47:07'),
(28073, 'hi', 'login', 'Enter the code', 'कोड दर्ज करें', '2025-11-21 00:47:07'),
(28072, 'hi', 'login', 'emailexist', 'ईमेल already exist!', '2025-11-21 00:47:07'),
(28071, 'hi', 'login', 'Email placeholder', 'your@ईमेल.com', '2025-11-21 00:47:07'),
(28070, 'hi', 'login', 'Email', 'ईमेल', '2025-11-21 00:47:07'),
(28069, 'hi', 'login', 'Create New Account', 'बनाएं नया खाता', '2025-11-21 00:47:07'),
(28068, 'hi', 'login', 'Create my account', 'बनाएं मेरा खाता', '2025-11-21 00:47:07'),
(28067, 'hi', 'login', 'Confirm Password', 'पासवर्ड की पुष्टि करें', '2025-11-21 00:47:07'),
(28066, 'hi', 'log', 'Post Fields', 'पोस्ट Fields', '2025-11-21 00:47:07'),
(28065, 'hi', 'log', 'Mail Log Details', 'Mail Log विवरण', '2025-11-21 00:47:07'),
(28064, 'hi', 'log', 'Crawl Log Details', 'क्रॉल Log विवरण', '2025-11-21 00:47:07'),
(28063, 'hi', 'log', 'Clear All Logs', 'Clear सभी Logs', '2025-11-21 00:47:07'),
(28062, 'hi', 'label', 'Year', 'Year', '2025-11-21 00:47:07'),
(28061, 'hi', 'label', 'Write', 'Write', '2025-11-21 00:47:07'),
(28060, 'hi', 'label', 'Weekly', 'Weekly', '2025-11-21 00:47:07'),
(28059, 'hi', 'label', 'Week', 'Week', '2025-11-21 00:47:07'),
(28058, 'hi', 'label', 'wantproceed', 'Do you really want to आगे बढ़ें?', '2025-11-21 00:47:07'),
(28057, 'hi', 'label', 'View Reports', 'देखें रिपोर्ट', '2025-11-21 00:47:07'),
(28056, 'hi', 'label', 'Version', 'Version', '2025-11-21 00:47:07'),
(28055, 'hi', 'label', 'User agent', 'उपयोगकर्ता agent', '2025-11-21 00:47:07'),
(28054, 'hi', 'label', 'Usability', 'Usability', '2025-11-21 00:47:07'),
(28053, 'hi', 'label', 'Upgrade', 'Upgrade', '2025-11-21 00:47:07'),
(28052, 'hi', 'label', 'Updated', 'अपडेट किया गया', '2025-11-21 00:47:07'),
(28051, 'hi', 'label', 'Type', 'प्रकार', '2025-11-21 00:47:07'),
(28050, 'hi', 'label', 'Translators', 'Translators', '2025-11-21 00:47:07'),
(28049, 'hi', 'label', 'translation by', 'translation by', '2025-11-21 00:47:07'),
(28048, 'hi', 'label', 'Total Results', 'कुल परिणाम', '2025-11-21 00:47:07'),
(28047, 'hi', 'label', 'Title', 'शीर्षक', '2025-11-21 00:47:07'),
(28046, 'hi', 'label', 'Theme', 'Theme', '2025-11-21 00:47:07'),
(28045, 'hi', 'label', 'Syntax', 'Syntax', '2025-11-21 00:47:07'),
(28044, 'hi', 'label', 'Success', 'सफलता', '2025-11-21 00:47:07'),
(28043, 'hi', 'label', 'Subject', 'Subject', '2025-11-21 00:47:07'),
(28042, 'hi', 'label', 'Sponsors', 'Sponsors', '2025-11-21 00:47:07'),
(28041, 'hi', 'label', 'Speed', 'Speed', '2025-11-21 00:47:07'),
(28040, 'hi', 'label', 'Select All', 'चुनें सभी', '2025-11-21 00:47:07'),
(28039, 'hi', 'label', 'Second', 'Second', '2025-11-21 00:47:07'),
(28038, 'hi', 'label', 'Score', 'स्कोर', '2025-11-21 00:47:07'),
(28037, 'hi', 'label', 'Reviews', 'समीक्षाएं', '2025-11-21 00:47:07'),
(28036, 'hi', 'label', 'Report Type', 'रिपोर्ट प्रकार', '2025-11-21 00:47:07'),
(28035, 'hi', 'label', 'Referer', 'Referer', '2025-11-21 00:47:07'),
(28034, 'hi', 'label', 'Reference', 'Reference', '2025-11-21 00:47:07'),
(28033, 'hi', 'label', 'Recent Activity', 'Recent Activity', '2025-11-21 00:47:07'),
(28032, 'hi', 'label', 'Read', 'Read', '2025-11-21 00:47:07'),
(28031, 'hi', 'label', 'Re-install', 'Re-install', '2025-11-21 00:47:07'),
(28030, 'hi', 'label', 'Rating', 'Rating', '2025-11-21 00:47:07'),
(28029, 'hi', 'label', 'Proxy', 'प्रॉक्सी', '2025-11-21 00:47:07'),
(28028, 'hi', 'label', 'Project', 'Project', '2025-11-21 00:47:07'),
(28027, 'hi', 'label', 'Port', 'Port', '2025-11-21 00:47:07'),
(28026, 'hi', 'label', 'Plugin', 'प्लगइन', '2025-11-21 00:47:07'),
(28025, 'hi', 'label', 'Overview', 'अवलोकन', '2025-11-21 00:47:07'),
(28024, 'hi', 'label', 'Order By', 'Order By', '2025-11-21 00:47:07'),
(28023, 'hi', 'label', 'noactiveplugins', 'No सक्रिय SEO प्लगइन्स Found!', '2025-11-21 00:47:07'),
(28022, 'hi', 'label', 'Months', 'Months', '2025-11-21 00:47:07'),
(28021, 'hi', 'label', 'Monthly', 'Monthly', '2025-11-21 00:47:07'),
(28020, 'hi', 'label', 'Month', 'Month', '2025-11-21 00:47:07'),
(28018, 'hi', 'label', 'Minute', 'Minute', '2025-11-21 00:47:07'),
(28019, 'hi', 'label', 'Mobile', 'Mobile', '2025-11-21 00:47:07'),
(28016, 'hi', 'label', 'Keywords', 'मुख्य शब्द', '2025-11-21 00:47:07'),
(28017, 'hi', 'label', 'Likes', 'Likes', '2025-11-21 00:47:07'),
(28015, 'hi', 'label', 'Just Now', 'Just Now', '2025-11-21 00:47:07'),
(28014, 'hi', 'label', 'Installation', 'Installation', '2025-11-21 00:47:07'),
(28013, 'hi', 'label', 'Include', 'Include', '2025-11-21 00:47:07'),
(28012, 'hi', 'label', 'Impressions', 'Impressions', '2025-11-21 00:47:07'),
(28011, 'hi', 'label', 'Hour', 'Hour', '2025-11-21 00:47:07'),
(28010, 'hi', 'label', 'From', 'से', '2025-11-21 00:47:07'),
(28009, 'hi', 'label', 'Free', 'Free', '2025-11-21 00:47:07'),
(28006, 'hi', 'label', 'Fail', 'Fail', '2025-11-21 00:47:07'),
(28007, 'hi', 'label', 'Feature', 'Feature', '2025-11-21 00:47:07'),
(28008, 'hi', 'label', 'Followers', 'Followers', '2025-11-21 00:47:07'),
(28005, 'hi', 'label', 'Exclude', 'Exclude', '2025-11-21 00:47:07'),
(28004, 'hi', 'label', 'Email Body', 'ईमेल Body', '2025-11-21 00:47:07'),
(28003, 'hi', 'label', 'Download', 'डाउनलोड करें', '2025-11-21 00:47:07'),
(28002, 'hi', 'label', 'Developers', 'Developers', '2025-11-21 00:47:07'),
(28001, 'hi', 'label', 'Desktop', 'Desktop', '2025-11-21 00:47:07'),
(28000, 'hi', 'label', 'Description', 'विवरण', '2025-11-21 00:47:07'),
(27999, 'hi', 'label', 'Days', 'Days', '2025-11-21 00:47:07'),
(27998, 'hi', 'label', 'Day', 'Day', '2025-11-21 00:47:07'),
(27997, 'hi', 'label', 'Daily', 'Daily', '2025-11-21 00:47:07'),
(27995, 'hi', 'label', 'Cron', 'Cron', '2025-11-21 00:47:07'),
(27996, 'hi', 'label', 'Current', 'Current', '2025-11-21 00:47:07'),
(27994, 'hi', 'label', 'Count', 'गिनती', '2025-11-21 00:47:07'),
(27993, 'hi', 'label', 'Cookie', 'Cookie', '2025-11-21 00:47:07'),
(27992, 'hi', 'label', 'Comments', 'Comments', '2025-11-21 00:47:07'),
(27991, 'hi', 'label', 'Clicks', 'क्लिक', '2025-11-21 00:47:07'),
(27990, 'hi', 'label', 'Click Here', 'यहां क्लिक करें', '2025-11-21 00:47:07'),
(27989, 'hi', 'label', 'Clear All', 'Clear सभी', '2025-11-21 00:47:07'),
(27987, 'hi', 'label', 'Author', 'Author', '2025-11-21 00:47:07'),
(27988, 'hi', 'label', 'Brocken', 'Broken', '2025-11-21 00:47:07'),
(27986, 'hi', 'label', 'Authentication', 'Authentication', '2025-11-21 00:47:07'),
(27984, 'hi', 'label', 'Ago', 'Ago', '2025-11-21 00:47:07'),
(27985, 'hi', 'label', 'already exist', 'already exist', '2025-11-21 00:47:07'),
(27983, 'hi', 'label', 'Access denied', 'Access denied', '2025-11-21 00:47:07'),
(27982, 'hi', 'keyword', 'Your keyword count already reached the limit', 'मुख्य शब्द गिनती already reached the limit for this उपयोगकर्ता!', '2025-11-21 00:47:07'),
(27981, 'hi', 'keyword', 'You can add only keywordcount keywords more', 'You can जोड़ें only [keywordcount] मुख्य शब्द for this उपयोगकर्ता!', '2025-11-21 00:47:07'),
(27980, 'hi', 'keyword', 'Top Keywords', 'Top मुख्य शब्द', '2025-11-21 00:47:07'),
(27979, 'hi', 'keyword', 'to create new keywords', 'to बनाएं नया मुख्य शब्द', '2025-11-21 00:47:07'),
(27978, 'hi', 'keyword', 'Successfully crawled keyword', 'मुख्य शब्द सफलतापूर्वक क्रॉल किया गया', '2025-11-21 00:47:07'),
(27977, 'hi', 'keyword', 'Show All results', 'Show सभी परिणाम', '2025-11-21 00:47:07'),
(27976, 'hi', 'keyword', 'results from ', 'परिणाम से ', '2025-11-21 00:47:07'),
(27975, 'hi', 'keyword', 'Ranking Trends', 'Ranking Trends', '2025-11-21 00:47:07'),
(27974, 'hi', 'keyword', 'Quick Keyword Position Checker', 'त्वरित मुख्य शब्द स्थिति जांचकर्ता', '2025-11-21 00:47:07'),
(27973, 'hi', 'keyword', 'pleaseselecttool', 'कृपया कम से कम एक SEO उपकरण चुनें', '2025-11-21 00:47:07'),
(27972, 'hi', 'keyword', 'not assigned to required search engines', 'not assigned to required खोज इंजन', '2025-11-21 00:47:07'),
(27971, 'hi', 'keyword', 'New Keyword', 'नया मुख्य शब्द', '2025-11-21 00:47:07'),
(27970, 'hi', 'keyword', 'Keywords Tracked', 'मुख्य शब्द Tracked', '2025-11-21 00:47:07'),
(27969, 'hi', 'keyword', 'Keyword Ranking Trends', 'मुख्य शब्द Ranking Trends', '2025-11-21 00:47:07'),
(27968, 'hi', 'keyword', 'Keyword Position Report', 'मुख्य शब्द स्थिति रिपोर्ट', '2025-11-21 00:47:07'),
(27967, 'hi', 'keyword', 'Keyword already exist', 'मुख्य शब्द already exist', '2025-11-21 00:47:07'),
(27966, 'hi', 'keyword', 'Insert keywords separated with comma', 'Insert मुख्य शब्द separated with comma', '2025-11-21 00:47:07'),
(27965, 'hi', 'keyword', 'Import Keywords', 'आयात करें मुख्य शब्द', '2025-11-21 00:47:07'),
(27964, 'hi', 'keyword', 'Graphical Keyword Position Reports', 'Graphical मुख्य शब्द स्थिति रिपोर्ट', '2025-11-21 00:47:07'),
(27963, 'hi', 'keyword', 'Edit Keyword', 'मुख्य शब्द संपादित करें', '2025-11-21 00:47:07'),
(27962, 'hi', 'keyword', 'Detailed Keyword Position Reports', 'Detailed मुख्य शब्द स्थिति रिपोर्ट', '2025-11-21 00:47:07'),
(27961, 'hi', 'keyword', 'Crawling keyword', 'Crawling मुख्य शब्द', '2025-11-21 00:47:07'),
(27960, 'hi', 'home', 'Website Statistics', 'वेबसाइट Statistics', '2025-11-21 00:47:07'),
(27959, 'hi', 'home', 'SiteNameUrl', 'Site नाम/URL', '2025-11-21 00:47:07'),
(27958, 'hi', 'home', 'Ranks', 'Ranks', '2025-11-21 00:47:07'),
(27957, 'hi', 'home', 'Pages Indexed', 'Pages Indexed', '2025-11-21 00:47:07'),
(27956, 'hi', 'home', 'Page Overview Report', 'Page Overview रिपोर्ट', '2025-11-21 00:47:07'),
(27955, 'hi', 'home', 'Overall Report Summary', 'Overall रिपोर्ट Summary', '2025-11-21 00:47:07'),
(27954, 'hi', 'home', 'Keyword Overview Report', 'मुख्य शब्द Overview रिपोर्ट', '2025-11-21 00:47:07'),
(27953, 'hi', 'home', 'Indexed', 'Indexed', '2025-11-21 00:47:07'),
(38572, 'es', 'socialmedia', 'No social media data available', 'No hay datos de redes sociales disponibles. <a href="seo-tools.php?menu_sec=sm-checker">Agregue enlaces de redes sociales</a> para comenzar a rastrear su rendimiento en redes sociales.', '2026-01-19 22:56:41'),
(38573, 'es-ar', 'socialmedia', 'No social media data available', 'No hay datos de redes sociales disponibles. <a href="seo-tools.php?menu_sec=sm-checker">Agregue enlaces de redes sociales</a> para comenzar a rastrear su rendimiento en redes sociales.', '2026-01-19 22:56:41'),
(38574, 'fa', 'socialmedia', 'No social media data available', 'داده های رسانه های اجتماعی در دسترس نیست. <a href="seo-tools.php?menu_sec=sm-checker">لینک های رسانه های اجتماعی را اضافه کنید</a> تا ردیابی عملکرد رسانه های اجتماعی خود را شروع کنید.', '2026-01-19 22:56:41'),
(38575, 'fi', 'socialmedia', 'No social media data available', 'Sosiaalisen median tietoja ei ole saatavilla. <a href="seo-tools.php?menu_sec=sm-checker">Lisää sosiaalisen median linkkejä</a> aloittaaksesi sosiaalisen median suorituskyvyn seurannan.', '2026-01-19 22:56:41'),
(38576, 'fr', 'socialmedia', 'No social media data available', 'Aucune donnée de médias sociaux disponible. <a href="seo-tools.php?menu_sec=sm-checker">Ajoutez des liens de médias sociaux</a> pour commencer à suivre vos performances sur les médias sociaux.', '2026-01-19 22:56:41'),
(38577, 'he', 'socialmedia', 'No social media data available', 'אין נתונים זמינים ממדיה חברתית. <a href="seo-tools.php?menu_sec=sm-checker">הוסף קישורי מדיה חברתית</a> כדי להתחיל לעקוב אחר ביצועי המדיה החברתית שלך.', '2026-01-19 22:56:41'),
(38578, 'hi', 'socialmedia', 'No social media data available', 'कोई सोशल मीडिया डेटा उपलब्ध नहीं है। अपने सोशल मीडिया प्रदर्शन को ट्रैक करना शुरू करने के लिए <a href="seo-tools.php?menu_sec=sm-checker">सोशल मीडिया लिंक जोड़ें</a>।', '2026-01-19 22:56:41'),
(38579, 'hr', 'socialmedia', 'No social media data available', 'Nema dostupnih podataka o društvenim medijima. <a href="seo-tools.php?menu_sec=sm-checker">Dodajte linkove društvenih medija</a> da biste počeli pratiti učinak svojih društvenih medija.', '2026-01-19 22:56:41'),
(38580, 'hu', 'socialmedia', 'No social media data available', 'Nincsenek elérhető közösségi média adatok. <a href="seo-tools.php?menu_sec=sm-checker">Adjon hozzá közösségi média hivatkozásokat</a>, hogy elkezdhesse követni közösségi média teljesítményét.', '2026-01-19 22:56:41'),
(38581, 'hy', 'socialmedia', 'No social media data available', 'Սոցիալական մեդիայի տվյալներ չկան: <a href="seo-tools.php?menu_sec=sm-checker">Ավելացրեք սոցիալական մեդիայի հղումներ</a>՝ սկսելու հետևել ձեր սոցիալական մեդիայի արդյունավետությանը:', '2026-01-19 22:56:41'),
(38582, 'id', 'socialmedia', 'No social media data available', 'Tidak ada data media sosial yang tersedia. <a href="seo-tools.php?menu_sec=sm-checker">Tambahkan tautan media sosial</a> untuk mulai melacak kinerja media sosial Anda.', '2026-01-19 22:56:41'),
(38583, 'it', 'socialmedia', 'No social media data available', 'Nessun dato sui social media disponibile. <a href="seo-tools.php?menu_sec=sm-checker">Aggiungi link ai social media</a> per iniziare a monitorare le prestazioni dei tuoi social media.', '2026-01-19 22:56:41'),
(38584, 'ja', 'socialmedia', 'No social media data available', 'ソーシャルメディアのデータはありません。ソーシャルメディアのパフォーマンスの追跡を開始するには、<a href="seo-tools.php?menu_sec=sm-checker">ソーシャルメディアリンクを追加</a>してください。', '2026-01-19 22:56:41'),
(38585, 'ko', 'socialmedia', 'No social media data available', '사용 가능한 소셜 미디어 데이터가 없습니다. 소셜 미디어 성과 추적을 시작하려면 <a href="seo-tools.php?menu_sec=sm-checker">소셜 미디어 링크를 추가</a>하세요.', '2026-01-19 22:56:41'),
(38586, 'lt', 'socialmedia', 'No social media data available', 'Nėra socialinės žiniasklaidos duomenų. <a href="seo-tools.php?menu_sec=sm-checker">Pridėkite socialinės žiniasklaidos nuorodas</a>, kad pradėtumėte stebėti savo socialinės žiniasklaidos veiklą.', '2026-01-19 22:56:41'),
(38587, 'mk', 'socialmedia', 'No social media data available', 'Нема достапни податоци за социјални медиуми. <a href="seo-tools.php?menu_sec=sm-checker">Додадете линкови на социјални медиуми</a> за да започнете со следење на вашиот учинок на социјалните медиуми.', '2026-01-19 22:56:41'),
(38588, 'nl', 'socialmedia', 'No social media data available', 'Geen sociale media gegevens beschikbaar. <a href="seo-tools.php?menu_sec=sm-checker">Voeg sociale media links toe</a> om uw sociale media prestaties te gaan volgen.', '2026-01-19 22:56:41'),
(38589, 'no', 'socialmedia', 'No social media data available', 'Ingen sosiale medier data tilgjengelig. <a href="seo-tools.php?menu_sec=sm-checker">Legg til sosiale medier lenker</a> for å begynne å spore sosiale medier ytelsen din.', '2026-01-19 22:56:41'),
(38590, 'pl', 'socialmedia', 'No social media data available', 'Brak dostępnych danych mediów społecznościowych. <a href="seo-tools.php?menu_sec=sm-checker">Dodaj linki do mediów społecznościowych</a>, aby rozpocząć śledzenie wydajności mediów społecznościowych.', '2026-01-19 22:56:41'),
(38591, 'pt', 'socialmedia', 'No social media data available', 'Nenhum dado de redes sociais disponível. <a href="seo-tools.php?menu_sec=sm-checker">Adicione links de redes sociais</a> para começar a rastrear o desempenho de suas redes sociais.', '2026-01-19 22:56:41'),
(38592, 'pt-br', 'socialmedia', 'No social media data available', 'Nenhum dado de redes sociais disponível. <a href="seo-tools.php?menu_sec=sm-checker">Adicione links de redes sociais</a> para começar a rastrear o desempenho de suas redes sociais.', '2026-01-19 22:56:41'),
(38593, 'ro', 'socialmedia', 'No social media data available', 'Nu sunt disponibile date despre social media. <a href="seo-tools.php?menu_sec=sm-checker">Adăugați linkuri de social media</a> pentru a începe să urmăriți performanța social media.', '2026-01-19 22:56:41'),
(38594, 'ru', 'socialmedia', 'No social media data available', 'Данные социальных сетей недоступны. <a href="seo-tools.php?menu_sec=sm-checker">Добавьте ссылки на социальные сети</a>, чтобы начать отслеживать эффективность социальных сетей.', '2026-01-19 22:56:41'),
(38595, 'sk', 'socialmedia', 'No social media data available', 'Nie sú k dispozícii žiadne údaje zo sociálnych médií. <a href="seo-tools.php?menu_sec=sm-checker">Pridajte odkazy na sociálne médiá</a>, aby ste mohli začať sledovať výkon svojich sociálnych médií.', '2026-01-19 22:56:41'),
(38596, 'sl', 'socialmedia', 'No social media data available', 'Ni podatkov o družbenih medijih. <a href="seo-tools.php?menu_sec=sm-checker">Dodajte povezave družbenih medijev</a>, da začnete slediti uspešnosti svojih družbenih medijev.', '2026-01-19 22:56:41'),
(38597, 'sq', 'socialmedia', 'No social media data available', 'Nuk ka të dhëna të mediave sociale në dispozicion. <a href="seo-tools.php?menu_sec=sm-checker">Shtoni lidhje të mediave sociale</a> për të filluar gjurmimin e performancës suaj në mediat sociale.', '2026-01-19 22:56:41'),
(38598, 'sr', 'socialmedia', 'No social media data available', 'Нема доступних података о друштвеним медијима. <a href="seo-tools.php?menu_sec=sm-checker">Додајте линкове друштвених медија</a> да бисте започели праћење учинка својих друштвених медија.', '2026-01-19 22:56:41'),
(38599, 'sv', 'socialmedia', 'No social media data available', 'Inga sociala mediedata tillgängliga. <a href="seo-tools.php?menu_sec=sm-checker">Lägg till sociala medier länkar</a> för att börja spåra din sociala medier prestanda.', '2026-01-19 22:56:41'),
(38600, 'sw', 'socialmedia', 'No social media data available', 'Hakuna data ya mitandao ya kijamii inayopatikana. <a href="seo-tools.php?menu_sec=sm-checker">Ongeza viungo vya mitandao ya kijamii</a> ili kuanza kufuatilia utendaji wa mitandao yako ya kijamii.', '2026-01-19 22:56:41'),
(27949, 'hi', 'home', 'Directory Submission', 'निर्देशिका सबमिशन', '2025-11-21 00:47:07'),
(27948, 'hi', 'home', 'Backlinks', 'बैकलिंक', '2025-11-21 00:47:07'),
(27947, 'hi', 'home', 'Account Summary', 'खाता Summary', '2025-11-21 00:47:07'),
(27946, 'hi', 'guest', 'Why Choose SEO Panel?', 'Why Choose SEO Panel?', '2025-11-21 00:47:07'),
(27945, 'hi', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-11-21 00:47:07'),
(27944, 'hi', 'guest', 'View Demo', 'देखें Demo', '2025-11-21 00:47:07'),
(27943, 'hi', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their वेबसाइटें.', '2025-11-21 00:47:07'),
(27942, 'hi', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-11-21 00:47:07'),
(27941, 'hi', 'guest', 'Support Development', 'Support Development', '2025-11-21 00:47:07'),
(27940, 'hi', 'guest', 'Social Media Integration desc', 'Integrate with Google विश्लेषण, खोजें Console, and सोशल मीडिया platforms for comprehensive रिपोर्टिंग.', '2025-11-21 00:47:07'),
(27939, 'hi', 'guest', 'Social Media Integration', 'सोशल मीडिया Integration', '2025-11-21 00:47:07'),
(27938, 'hi', 'guest', 'Site Auditor desc', 'प्रत्येक पेज के सभी SEO कारकों का ऑडिट करें and XML, HTML और TEXT साइटमैप बनाएं खोज इंजनों के लिए.', '2025-11-21 00:47:07'),
(27937, 'hi', 'guest', 'Search Engine Saturation desc', 'Find the number of indexed pages across different खोज इंजन and monitor your indexing progress.', '2025-11-21 00:47:07'),
(27936, 'hi', 'guest', 'Resources & Support', 'Resources & Support', '2025-11-21 00:47:07'),
(27935, 'hi', 'guest', 'Rank Checker desc', 'Check Google PageRank, एलेक्सा रैंक, and Moz रैंक व्यापक दैनिक ट्रैकिंग और रिपोर्टिंग के साथ.', '2025-11-21 00:47:07'),
(27934, 'hi', 'guest', 'Powerful SEO Features', 'Powerful SEO सुविधाएं', '2025-11-21 00:47:07'),
(27933, 'hi', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful प्लगइन्स including Article Submitter, Meta Tag Generator, and more.', '2025-11-21 00:47:07'),
(27932, 'hi', 'guest', 'Plugin Architecture', 'प्लगइन Architecture', '2025-11-21 00:47:07'),
(27930, 'hi', 'guest', 'Multi-Website Support', 'Multi-वेबसाइट Support', '2025-11-21 00:47:07'),
(27931, 'hi', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited वेबसाइटें से a single control panel with centralized रिपोर्टिंग.', '2025-11-21 00:47:07'),
(27929, 'hi', 'guest', 'Login to Get Started', 'लॉगिन to Get Started', '2025-11-21 00:47:07'),
(27928, 'hi', 'guest', 'Keyword Position Checker desc', 'Track your मुख्य शब्द rankings across multiple खोज इंजन with detailed daily रिपोर्ट and beautiful graphs.', '2025-11-21 00:47:07'),
(27927, 'hi', 'guest', 'Highly Extensible desc', 'Easily develop and install custom प्लगइन्स to extend functionality according to your needs.', '2025-11-21 00:47:07'),
(27926, 'hi', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-11-21 00:47:07'),
(27925, 'hi', 'guest', 'Hero subtitle', 'World''s पहला खोलें Source SEO Control Panel for Multiple वेबसाइटें', '2025-11-21 00:47:07'),
(27924, 'hi', 'guest', 'Hero description', 'A complete खोलें source SEO control panel for managing खोज इंजन optimization of your वेबसाइटें. SEO Panel is a powerful toolkit that includes the latest SEO उपकरण to increase and track the performance of your वेबसाइटें.', '2025-11-21 00:47:07'),
(27923, 'hi', 'guest', 'Get Support', 'Get Support', '2025-11-21 00:47:07'),
(27922, 'hi', 'guest', 'Download SEO Panel', 'डाउनलोड करें SEO Panel', '2025-11-21 00:47:07'),
(27921, 'hi', 'guest', 'Documentation', 'Documentation', '2025-11-21 00:47:07'),
(27920, 'hi', 'guest', 'Directory Submission desc', 'Automatically जमा करें your वेबसाइटें to major free and paid directories with स्थिति ट्रैकिंग.', '2025-11-21 00:47:07'),
(27919, 'hi', 'guest', 'Contact Us', 'संपर्क करें Us', '2025-11-21 00:47:07'),
(27918, 'hi', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-11-21 00:47:07'),
(27917, 'hi', 'guest', 'Browse Plugins', 'Browse प्लगइन्स', '2025-11-21 00:47:07'),
(27916, 'hi', 'guest', 'Backlinks Checker desc', 'Monitor the number of बैकलिंक से major खोज इंजन and track your link building progress over time.', '2025-11-21 00:47:07'),
(27915, 'hi', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. डाउनलोड करें, customize, and use without any restrictions.', '2025-11-21 00:47:07'),
(27914, 'hi', 'guest', '100% Open Source', '100% खोलें Source', '2025-11-21 00:47:07'),
(27913, 'hi', 'directory', 'Website Url', 'वेबसाइट URL', '2025-11-21 00:47:07'),
(27912, 'hi', 'directory', 'Website Category', 'वेबसाइट श्रेणी', '2025-11-21 00:47:07'),
(27911, 'hi', 'directory', 'Submit Title', 'जमा करें शीर्षक', '2025-11-21 00:47:07'),
(27910, 'hi', 'directory', 'Submit Keywords', 'जमा करें मुख्य शब्द', '2025-11-21 00:47:07'),
(27909, 'hi', 'directory', 'Submit Description', 'जमा करें विवरण', '2025-11-21 00:47:07'),
(27908, 'hi', 'directory', 'Submission Details', 'सबमिशन विवरण', '2025-11-21 00:47:07'),
(27907, 'hi', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary ईमेल address.', '2025-11-21 00:47:07'),
(27906, 'hi', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi स्वचालित निर्देशिका सबमिशन उपकरण', '2025-11-21 00:47:07'),
(27905, 'hi', 'directory', 'selectwebsiteschecksub', 'चुनें <b>वेबसाइट</b> to <b>आगे बढ़ें</b> check निर्देशिका सबमिशन.', '2025-11-21 00:47:07'),
(27904, 'hi', 'directory', 'selectwebsiteproceed', 'चुनें <b>वेबसाइट</b> to <b>आगे बढ़ें</b> निर्देशिका सबमिशन.<br>Check <b>Directories with out captcha</b> to जमा करें to directories with out captcha', '2025-11-21 00:47:07'),
(27903, 'hi', 'directory', 'Reciprocal Link', 'Reciprocal Link', '2025-11-21 00:47:07'),
(27902, 'hi', 'directory', 'Please select a website to proceed', 'जारी रखने के लिए कृपया एक वेबसाइट चुनें', '2025-11-21 00:47:07'),
(27901, 'hi', 'directory', 'Pending', 'लंबित', '2025-11-21 00:47:07'),
(27900, 'hi', 'directory', 'Owner Name', 'Owner नाम', '2025-11-21 00:47:07'),
(27899, 'hi', 'directory', 'Owner Email', 'Owner ईमेल', '2025-11-21 00:47:07'),
(27898, 'hi', 'directory', 'optionalnote', 'Optional titles and descriptions to जमा करें random शीर्षक and विवरण to directories for better परिणाम.', '2025-11-21 00:47:07'),
(27897, 'hi', 'directory', 'nosuccessnote', 'सफलता संदेश नहीं मिला, पुष्टि संदेश खोजने के लिए कृपया अपना मेल जांचें', '2025-11-21 00:47:07'),
(27896, 'hi', 'directory', 'nodirnote', 'No <b>सक्रिय</b> directories Found', '2025-11-21 00:47:07'),
(27895, 'hi', 'directory', 'nocatnote', 'सबमिशन पेज में सबमिशन श्रेणी नहीं मिली. Please क्लिक करें <b>पुनः लोड करें</b> or <b>छोड़ें</b>', '2025-11-21 00:47:07'),
(27894, 'hi', 'directory', 'Enter the code shown', 'दिखाया गया कोड दर्ज करें', '2025-11-21 00:47:07'),
(27893, 'hi', 'directory', 'Directory Submission Reports', 'निर्देशिका सबमिशन रिपोर्ट', '2025-11-21 00:47:07'),
(27892, 'hi', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Link', '2025-11-21 00:47:07'),
(27891, 'hi', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2025-11-21 00:47:07'),
(27890, 'hi', 'directory', 'desnote', 'Some directories require minimum 150 characters for the विवरण field.', '2025-11-21 00:47:07'),
(27888, 'hi', 'directory', 'Coupon Offer', 'Coupon Offer', '2025-11-21 00:47:07'),
(27889, 'hi', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured सबमिशन!', '2025-11-21 00:47:07'),
(27887, 'hi', 'directory', 'Coupon Code', 'Coupon Code', '2025-11-21 00:47:07'),
(27886, 'hi', 'directory', 'Confirmation', 'पुष्टि', '2025-11-21 00:47:07'),
(27885, 'hi', 'directory', 'clicktoproceeddirsts', 'क्लिक करें <b>आगे बढ़ें</b> to निर्देशिका स्थिति जांचें.', '2025-11-21 00:47:07'),
(27884, 'hi', 'directory', 'clickaddfeatureddirectory', 'अपनी विशेष निर्देशिका जोड़ने के लिए यहां क्लिक करें', '2025-11-21 00:47:07'),
(27883, 'hi', 'directory', 'Check Directory Submission Status', 'निर्देशिका सबमिशन स्थिति जांचें', '2025-11-21 00:47:07'),
(27882, 'hi', 'directory', 'Check Directory Status', 'निर्देशिका स्थिति जांचें', '2025-11-21 00:47:07'),
(27880, 'hi', 'directory', 'Captcha', 'Captcha', '2025-11-21 00:47:07'),
(27881, 'hi', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. शुरू with Top priority श्रेणी.', '2025-11-21 00:47:07'),
(27879, 'hi', 'directory', 'Approved', 'स्वीकृत', '2025-11-21 00:47:07'),
(27878, 'hi', 'directory', 'Add back to directory list', 'निर्देशिका सूची में वापस जोड़ें', '2025-11-21 00:47:07'),
(27877, 'hi', 'dashboard', 'Worst Rank', 'Worst रैंक', '2025-11-21 00:47:07'),
(27876, 'hi', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility स्कोर (Standard Deviation)', '2025-11-21 00:47:07'),
(27875, 'hi', 'dashboard', 'Volatility Score', 'Volatility स्कोर', '2025-11-21 00:47:07'),
(27874, 'hi', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'अस्थिरता डेटा के लिए चयनित अवधि के भीतर कम से कम 2 रैंकिंग जांच की आवश्यकता होती है.', '2025-11-21 00:47:07'),
(27873, 'hi', 'dashboard', 'Volatility', 'Volatility', '2025-11-21 00:47:07'),
(27871, 'hi', 'dashboard', 'Top 3', 'Top 3', '2025-11-21 00:47:07'),
(27872, 'hi', 'dashboard', 'Trend', 'Trend', '2025-11-21 00:47:07'),
(27869, 'hi', 'dashboard', 'Top 10', 'Top 10', '2025-11-21 00:47:07'),
(27870, 'hi', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile मुख्य शब्द', '2025-11-21 00:47:07'),
(27867, 'hi', 'dashboard', 'positions', 'positions', '2025-11-21 00:47:07'),
(27868, 'hi', 'dashboard', 'Ranking Volatility', 'Ranking Volatility', '2025-11-21 00:47:07'),
(27866, 'hi', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-11-21 00:47:07'),
(27865, 'hi', 'dashboard', 'Keywords with most ranking fluctuations', 'मुख्य शब्द with most ranking fluctuations', '2025-11-21 00:47:07'),
(27864, 'hi', 'dashboard', 'Keywords by Ranking Position', 'मुख्य शब्द by Ranking स्थिति', '2025-11-21 00:47:07'),
(27863, 'hi', 'dashboard', 'Keyword Statistics', 'मुख्य शब्द Statistics', '2025-11-21 00:47:07');
INSERT INTO `texts` VALUES
(27861, 'hi', 'dashboard', 'Best Rank', 'Best रैंक', '2025-11-21 00:47:07'),
(27862, 'hi', 'dashboard', 'Keyword Distribution by Rank', 'मुख्य शब्द Distribution by रैंक', '2025-11-21 00:47:07'),
(27860, 'hi', 'dashboard', 'Avg Rank', 'Avg रैंक', '2025-11-21 00:47:07'),
(27859, 'hi', 'common', 'Yes', 'हां', '2025-11-21 00:47:07'),
(27858, 'hi', 'common', 'Websites Count', 'वेबसाइटें गिनती', '2025-11-21 00:47:07'),
(27857, 'hi', 'common', 'Website', 'वेबसाइट', '2025-11-21 00:47:07'),
(27856, 'hi', 'common', 'Warnings', 'Warnings', '2025-11-21 00:47:07'),
(27854, 'hi', 'common', 'User Panel', 'उपयोगकर्ता Panel', '2025-11-21 00:47:07'),
(27855, 'hi', 'common', 'User Type', 'उपयोगकर्ता प्रकार', '2025-11-21 00:47:07'),
(27852, 'hi', 'common', 'Url', 'URL', '2025-11-21 00:47:07'),
(27853, 'hi', 'common', 'User', 'उपयोगकर्ता', '2025-11-21 00:47:07'),
(27850, 'hi', 'common', 'Tools', 'उपकरण', '2025-11-21 00:47:07'),
(27851, 'hi', 'common', 'Total', 'कुल', '2025-11-21 00:47:07'),
(27848, 'hi', 'common', 'Support', 'Support', '2025-11-21 00:47:07'),
(27849, 'hi', 'common', 'Thank you', 'Thank you', '2025-11-21 00:47:07'),
(27847, 'hi', 'common', 'Status', 'स्थिति', '2025-11-21 00:47:07'),
(27846, 'hi', 'common', 'Spam Score', 'Spam स्कोर', '2025-11-21 00:47:07'),
(27845, 'hi', 'common', 'Source', 'Source', '2025-11-21 00:47:07'),
(27844, 'hi', 'common', 'signin', 'साइन इन करें', '2025-11-21 00:47:07'),
(27843, 'hi', 'common', 'Sign Up', 'साइन अप करें', '2025-11-21 00:47:07'),
(27841, 'hi', 'common', 'Server', 'Server', '2025-11-21 00:47:07'),
(27842, 'hi', 'common', 'Sign out', 'साइन आउट', '2025-11-21 00:47:07'),
(27840, 'hi', 'common', 'Seo Tools', 'SEO उपकरण', '2025-11-21 00:47:07'),
(27839, 'hi', 'common', 'Seo Plugins', 'SEO प्लगइन्स', '2025-11-21 00:47:07'),
(27838, 'hi', 'common', 'Select', 'चुनें', '2025-11-21 00:47:07'),
(27837, 'hi', 'common', 'Search Engine Count', 'खोज इंजन गिनती', '2025-11-21 00:47:07'),
(27836, 'hi', 'common', 'Search Engine', 'खोज इंजन', '2025-11-21 00:47:07'),
(27835, 'hi', 'common', 'Sample CSV File', 'Sample CSV File', '2025-11-21 00:47:07'),
(27834, 'hi', 'common', 'Results', 'परिणाम', '2025-11-21 00:47:07'),
(27833, 'hi', 'common', 'Reports', 'रिपोर्ट', '2025-11-21 00:47:07'),
(27832, 'hi', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification विफल', '2025-11-21 00:47:07'),
(27831, 'hi', 'common', 'Rankings', 'Rankings', '2025-11-21 00:47:07'),
(27830, 'hi', 'common', 'Rank', 'रैंक', '2025-11-21 00:47:07'),
(27829, 'hi', 'common', 'Range', 'Range', '2025-11-21 00:47:07'),
(27827, 'hi', 'common', 'Priority', 'Priority', '2025-11-21 00:47:07'),
(27828, 'hi', 'common', 'Profile', 'प्रोफ़ाइल', '2025-11-21 00:47:07'),
(27826, 'hi', 'common', 'Pricing', 'Pricing', '2025-11-21 00:47:07'),
(27825, 'hi', 'common', 'Price', 'Price', '2025-11-21 00:47:07'),
(27824, 'hi', 'common', 'Powered by', 'Powered by', '2025-11-21 00:47:07'),
(27822, 'hi', 'common', 'Period', 'Period', '2025-11-21 00:47:07'),
(27823, 'hi', 'common', 'Plugins', 'प्लगइन्स', '2025-11-21 00:47:07'),
(27821, 'hi', 'common', 'passwordnotmatch', 'The passwords do not match', '2025-11-21 00:47:07'),
(27820, 'hi', 'common', 'password632', 'The पासवर्ड string should have a length between 6 and 32', '2025-11-21 00:47:07'),
(27819, 'hi', 'common', 'Pagerank', 'Pagerank', '2025-11-21 00:47:07'),
(27817, 'hi', 'common', 'Number', 'Number', '2025-11-21 00:47:07'),
(27818, 'hi', 'common', 'Page Authority', 'पेज अथॉरिटी', '2025-11-21 00:47:07'),
(27815, 'hi', 'common', 'noactivetools', 'No सक्रिय SEO उपकरण Found!', '2025-11-21 00:47:07'),
(27816, 'hi', 'common', 'nowebsites', 'No वेबसाइटें Found', '2025-11-21 00:47:07'),
(27814, 'hi', 'common', 'No Records Found', 'कोई रिकॉर्ड नहीं मिला', '2025-11-21 00:47:07'),
(27813, 'hi', 'common', 'No Keywords Found', 'No मुख्य शब्द Found', '2025-11-21 00:47:07'),
(27812, 'hi', 'common', 'No', 'नहीं', '2025-11-21 00:47:07'),
(27771, 'hi', 'common', 'Date', 'तारीख', '2025-11-21 00:47:07'),
(27772, 'hi', 'common', 'Debug', 'डिबग', '2025-11-21 00:47:07'),
(27773, 'hi', 'common', 'Delete', 'हटाएं', '2025-11-21 00:47:07'),
(27774, 'hi', 'common', 'Details', 'विवरण', '2025-11-21 00:47:07'),
(27775, 'hi', 'common', 'Directory', 'निर्देशिका', '2025-11-21 00:47:07'),
(27776, 'hi', 'common', 'Domain Authority', 'डोमेन अथॉरिटी', '2025-11-21 00:47:07'),
(27777, 'hi', 'common', 'Donate', 'दान करें', '2025-11-21 00:47:07'),
(27778, 'hi', 'common', 'Edit', 'संपादित करें', '2025-11-21 00:47:07'),
(27779, 'hi', 'common', 'Edit User Type', 'उपयोगकर्ता संपादित करें प्रकार', '2025-11-21 00:47:07'),
(27780, 'hi', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2025-11-21 00:47:07'),
(27781, 'hi', 'common', 'entrynotvalid', 'दर्ज की गई प्रविष्टि मान्य नहीं लगती', '2025-11-21 00:47:07'),
(27782, 'hi', 'common', 'Errors', 'Errors', '2025-11-21 00:47:07'),
(27783, 'hi', 'common', 'failed', 'विफल', '2025-11-21 00:47:07'),
(27784, 'hi', 'common', 'forum', 'मंच', '2025-11-21 00:47:07'),
(27785, 'hi', 'common', 'Found', 'Found', '2025-11-21 00:47:07'),
(27786, 'hi', 'common', 'General', 'General', '2025-11-21 00:47:07'),
(27787, 'hi', 'common', 'Google Pagerank', 'Google Pagerank', '2025-11-21 00:47:07'),
(27788, 'hi', 'common', 'Hello', 'Hello', '2025-11-21 00:47:07'),
(27789, 'hi', 'common', 'help', 'मदद', '2025-11-21 00:47:07'),
(27790, 'hi', 'common', 'hidenews', 'Hide Seo Panel News', '2025-11-21 00:47:07'),
(27791, 'hi', 'common', 'Home', 'होम', '2025-11-21 00:47:07'),
(27792, 'hi', 'common', 'Id', 'Id', '2025-11-21 00:47:07'),
(27793, 'hi', 'common', 'Inactivate', 'Inactivate', '2025-11-21 00:47:07'),
(27794, 'hi', 'common', 'Inactive', 'Inactive', '2025-11-21 00:47:07'),
(27795, 'hi', 'common', 'Internal error occured', 'Internal त्रुटि occured', '2025-11-21 00:47:07'),
(27796, 'hi', 'common', 'Invalid characters', 'Invalid characters', '2025-11-21 00:47:07'),
(27797, 'hi', 'common', 'Invalid code entered', 'अमान्य कोड दर्ज किया गया', '2025-11-21 00:47:07'),
(27798, 'hi', 'common', 'Invalid email address entered', 'अमान्य ईमेल पता दर्ज किया गया', '2025-11-21 00:47:07'),
(27799, 'hi', 'common', 'Invalid Url', 'Invalid URL', '2025-11-21 00:47:07'),
(27800, 'hi', 'common', 'Invalid value', 'Invalid मूल्य', '2025-11-21 00:47:07'),
(27801, 'hi', 'common', 'Keyword', 'मुख्य शब्द', '2025-11-21 00:47:07'),
(27802, 'hi', 'common', 'Keywords', 'मुख्य शब्द', '2025-11-21 00:47:07'),
(27803, 'hi', 'common', 'Keywords Count', 'मुख्य शब्द गिनती', '2025-11-21 00:47:07'),
(27804, 'hi', 'common', 'lang', 'भाषा', '2025-11-21 00:47:07'),
(27805, 'hi', 'common', 'Link', 'Link', '2025-11-21 00:47:07'),
(27806, 'hi', 'common', 'Logout', 'लॉगआउट', '2025-11-21 00:47:07'),
(27807, 'hi', 'common', 'Metric', 'Metric', '2025-11-21 00:47:07'),
(27808, 'hi', 'common', 'MOZ Rank', 'MOZ रैंक', '2025-11-21 00:47:07'),
(27809, 'hi', 'common', 'My Account', 'मेरा खाता', '2025-11-21 00:47:07'),
(27810, 'hi', 'Common', 'Name', 'नाम', '2025-11-21 00:47:07'),
(27811, 'hi', 'common', 'New User Type', 'नया उपयोगकर्ता प्रकार', '2025-11-21 00:47:07'),
(27757, 'hi', 'common', 'Activate', 'सक्रिय करें', '2025-11-21 00:47:07'),
(27758, 'hi', 'common', 'Active', 'सक्रिय', '2025-11-21 00:47:07'),
(27759, 'hi', 'common', 'Admin Panel', 'व्यवस्थापक पैनल', '2025-11-21 00:47:07'),
(27760, 'hi', 'common', 'Alexa Rank', 'एलेक्सा रैंक', '2025-11-21 00:47:07'),
(27761, 'hi', 'common', 'All', 'सभी', '2025-11-21 00:47:07'),
(27762, 'hi', 'common', 'API Token', 'API टोकन', '2025-11-21 00:47:07'),
(27763, 'hi', 'common', 'Blog', 'ब्लॉग', '2025-11-21 00:47:07'),
(27764, 'hi', 'common', 'Category', 'श्रेणी', '2025-11-21 00:47:07'),
(27765, 'hi', 'common', 'Checked', 'जांच की गई', '2025-11-21 00:47:07'),
(27766, 'hi', 'common', 'contact', 'संपर्क करें', '2025-11-21 00:47:07'),
(27767, 'hi', 'common', 'copyright', 'Copyright © [year] www.seopanel.org सभी rights reserved', '2025-11-21 00:47:07'),
(27768, 'hi', 'common', 'Country', 'देश', '2025-11-21 00:47:07'),
(27769, 'hi', 'common', 'Crawl Meta Data', 'क्रॉल मेटा डेटा', '2025-11-21 00:47:07'),
(27770, 'hi', 'common', 'Dashboard', 'डैशबोर्ड', '2025-11-21 00:47:07'),
(27746, 'hi', 'blog', 'Older Posts', 'पुरानी पोस्ट', '2025-11-21 00:47:07'),
(27747, 'hi', 'button', 'Cancel', 'रद्द करें', '2025-11-21 00:47:07'),
(27748, 'hi', 'button', 'Check Status', 'स्थिति जांचें', '2025-11-21 00:47:07'),
(27749, 'hi', 'button', 'Proceed', 'आगे बढ़ें', '2025-11-21 00:47:07'),
(27750, 'hi', 'button', 'Reload', 'पुनः लोड करें', '2025-11-21 00:47:07'),
(27751, 'hi', 'button', 'Search', 'खोजें', '2025-11-21 00:47:07'),
(27752, 'hi', 'button', 'Show Details', 'विवरण दिखाएं', '2025-11-21 00:47:07'),
(27753, 'hi', 'button', 'Show Records', 'रिकॉर्ड दिखाएं', '2025-11-21 00:47:07'),
(27754, 'hi', 'button', 'Skip', 'छोड़ें', '2025-11-21 00:47:07'),
(27755, 'hi', 'button', 'Submit', 'जमा करें', '2025-11-21 00:47:07'),
(27756, 'hi', 'common', 'Action', 'कार्रवाई', '2025-11-21 00:47:07'),
(27745, 'hi', 'blog', 'NothingFound_text2', 'क्षमा करें, लेकिन आपके खोज मानदंड से कुछ भी मेल नहीं खाता. कृपया कुछ अलग मुख्य शब्दों के साथ पुनः प्रयास करें.', '2025-11-21 00:47:07'),
(27744, 'hi', 'blog', 'Nothing Found', 'कुछ नहीं मिला', '2025-11-21 00:47:07'),
(27743, 'hi', 'blog', 'Newer Posts', 'नई पोस्ट', '2025-11-21 00:47:07'),
(27742, 'hi', 'backlink', 'Saved backlink results of', 'सहेजा गया बैकलिंक परिणाम of', '2025-11-21 00:47:07'),
(27741, 'hi', 'backlink', 'Domain Backlinks', 'डोमेन बैकलिंक', '2025-11-21 00:47:07'),
(27740, 'hi', 'backlink', 'Domain Backlink Count', 'डोमेन बैकलिंक संख्या', '2025-11-21 00:47:07'),
(27738, 'hi', 'backlink', 'Backlink Count', 'बैकलिंक संख्या', '2025-11-21 00:47:07'),
(27739, 'hi', 'backlink', 'clickproceedbacklink', 'URL दर्ज करें''s <b>प्रति पंक्ति एक</b>. क्लिक करें <b>आगे बढ़ें</b> to बैकलिंक जांचें.', '2025-11-21 00:47:07'),
(27737, 'hi', 'api', 'API Url', 'API URL', '2025-11-21 00:47:07'),
(27736, 'hi', 'api', 'API Guide', 'API Guide', '2025-11-21 00:47:07'),
(27735, 'hi', 'analytics', 'view_id_not_found_error', 'त्रुटि: विश्लेषण देखें ID is not set for वेबसाइट. वेबसाइट संपादित करें and अपडेट करें देखें ID.', '2025-11-21 00:47:07'),
(27734, 'hi', 'analytics', 'Users', 'उपयोगकर्ता', '2025-11-21 00:47:07'),
(27733, 'hi', 'analytics', 'Sessions', 'सत्र', '2025-11-21 00:47:07'),
(27732, 'hi', 'analytics', 'New Users', 'नए उपयोगकर्ता', '2025-11-21 00:47:07'),
(27730, 'hi', 'analytics', 'Bounce Rate', 'बाउंस दर', '2025-11-21 00:47:07'),
(27731, 'hi', 'analytics', 'Goal Completions', 'लक्ष्य पूर्णता', '2025-11-21 00:47:07'),
(27729, 'hi', 'analytics', 'Avg. Session Duration', 'औसत सत्र अवधि', '2025-11-21 00:47:07'),
(30730, 'hr', 'siteauditor', 'Check pages indexed or not', 'Check pages indexed or not', '2025-11-21 01:00:22'),
(30729, 'hr', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of pages', '2025-11-21 01:00:22'),
(30727, 'hr', 'siteauditor', 'Check broken links in a page', 'Check broken links in a page', '2025-11-21 01:00:22'),
(30728, 'hr', 'siteauditor', 'Check google pagerank of pages', 'Check google pagerank of pages', '2025-11-21 01:00:22'),
(30726, 'hr', 'siteauditor', 'Check backlinks of pages', 'Provjeri povratne poveznice of pages', '2025-11-21 01:00:22'),
(30725, 'hr', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded Od Karta stranice', '2025-11-21 01:00:22'),
(30724, 'hr', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded Od Izvješća', '2025-11-21 01:00:22'),
(30723, 'hr', 'siteauditor', 'Anchor', 'Anchor', '2025-11-21 01:00:22'),
(30722, 'hr', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up to Datum.', '2025-11-21 01:00:22'),
(30721, 'hr', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up to Datum. <br>Please Preuzmi Novo version', '2025-11-21 01:00:22'),
(30720, 'hr', 'settings', 'Verify connection', 'Verify connection', '2025-11-21 01:00:22'),
(30719, 'hr', 'settings', 'syssettingssaved', 'Postavke sustava Spremljeno Uspješno!', '2025-11-21 01:00:22'),
(30718, 'hr', 'settings', 'SP_USER_REGISTRATION', 'Korisnik Registracija interface', '2025-11-21 01:00:22'),
(30717, 'hr', 'settings', 'SP_USER_GEN_REPORT', 'Allow Korisnik to Generiraj Izvješća', '2025-11-21 01:00:22'),
(30716, 'hr', 'settings', 'SP_USER_AGENT', 'Korisnik agent', '2025-11-21 01:00:22'),
(30715, 'hr', 'settings', 'SP_TITLE', 'Seo Panel Naslov', '2025-11-21 01:00:22'),
(30714, 'hr', 'settings', 'SP_TIME_ZONE', 'Time Zone', '2025-11-21 01:00:22'),
(30713, 'hr', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Minimum Allowed izvještavanje Interval', '2025-11-21 01:00:22'),
(30712, 'hr', 'settings', 'SP_SMTP_USERNAME', 'SMTP Korisničko ime', '2025-11-21 01:00:22'),
(30711, 'hr', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2025-11-21 01:00:22'),
(30710, 'hr', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Lozinka', '2025-11-21 01:00:22'),
(30709, 'hr', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2025-11-21 01:00:22'),
(30708, 'hr', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2025-11-21 01:00:22'),
(30707, 'hr', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2025-11-21 01:00:22'),
(30706, 'hr', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send custom header with curl request', '2025-11-21 01:00:22'),
(30705, 'hr', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of E-pošta notifications for Izvješća', '2025-11-21 01:00:22'),
(30704, 'hr', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Indeksiranje relative links in a page', '2025-11-21 01:00:22'),
(30703, 'hr', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2025-11-21 01:00:22'),
(30702, 'hr', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2025-11-21 01:00:22'),
(30701, 'hr', 'settings', 'SP_PAGINGNO', 'Number of entries per page', '2025-11-21 01:00:22'),
(30700, 'hr', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Number of Ključne riječi needs to be Provjereno in each cron execution', '2025-11-21 01:00:22'),
(30699, 'hr', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2025-11-21 01:00:22'),
(30698, 'hr', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2025-11-21 01:00:22'),
(30697, 'hr', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2025-11-21 01:00:22'),
(30696, 'hr', 'settings', 'SP_KEYWORDS', 'Seo Panel Ključne riječi', '2025-11-21 01:00:22'),
(30695, 'hr', 'settings', 'SP_HOTLINKING', 'Image hotlink protection Omogućeno', '2025-11-21 01:00:22'),
(30694, 'hr', 'settings', 'SP_GOOGLE_API_KEY', 'Google API Key', '2025-11-21 01:00:22'),
(30693, 'hr', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2025-11-21 01:00:22'),
(30692, 'hr', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2025-11-21 01:00:22'),
(30691, 'hr', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google Analitika praćenje Code', '2025-11-21 01:00:22'),
(30690, 'hr', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2025-11-21 01:00:22'),
(30689, 'hr', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable Proxy for Google API', '2025-11-21 01:00:22'),
(30688, 'hr', 'settings', 'SP_ENABLE_PROXY', 'Enable Proxy', '2025-11-21 01:00:22'),
(30687, 'hr', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2025-11-21 01:00:22'),
(30686, 'hr', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for Povratna poveznica and Provjera zasićenosti', '2025-11-21 01:00:22'),
(30685, 'hr', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2025-11-21 01:00:22'),
(30684, 'hr', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2025-11-21 01:00:22'),
(30683, 'hr', 'settings', 'SP_DFS_API_PASSWORD', 'API Lozinka', '2025-11-21 01:00:22'),
(30682, 'hr', 'settings', 'SP_DFS_API_LOGIN', 'API Prijava', '2025-11-21 01:00:22'),
(30681, 'hr', 'settings', 'SP_DESCRIPTION', 'Seo Panel Opis', '2025-11-21 01:00:22'),
(30680, 'hr', 'settings', 'SP_DEFAULTLANG', 'Default Jezik', '2025-11-21 01:00:22'),
(30679, 'hr', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider Indeksiranje(seconds)', '2025-11-21 01:00:22'),
(30678, 'hr', 'settings', 'SP_COMPANY_NAME', 'Company Ime', '2025-11-21 01:00:22'),
(30677, 'hr', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2025-11-21 01:00:22'),
(30676, 'hr', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow Korisnici to schedule Izvješće', '2025-11-21 01:00:22'),
(30675, 'hr', 'settings', 'seopanel_title', 'Seo Panel: World''s Prvo Otvori source seo control panel for managing multiple web sites', '2025-11-21 01:00:22'),
(30674, 'hr', 'settings', 'seopanel_description', 'A complete free control panel for managing Tražilica optimization of your Web stranice. It containing lots of hot SEO alati to increase and track the performace your Web stranice. Its an Otvori source software and also you can develop your own SEO dodaci for seo panel.', '2025-11-21 01:00:22'),
(30673, 'hr', 'settings', 'Send Email', 'Send E-pošta', '2025-11-21 01:00:22'),
(30672, 'hr', 'settings', 'SA_MAX_NO_PAGES', 'Maximum number of pages allowed per Web stranica', '2025-11-21 01:00:22'),
(30671, 'hr', 'settings', 'SA_CRAWL_DELAY_TIME', 'Revizor web stranice Indeksiranje delay between each pages', '2025-11-21 01:00:22'),
(30670, 'hr', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate Proxy When Crawling Neuspjelo', '2025-11-21 01:00:22'),
(30669, 'hr', 'settings', 'Please update MOZ settings to get complete results', 'Please Ažuriraj MOZ Postavke to get complete Rezultati', '2025-11-21 01:00:22'),
(30668, 'hr', 'settings', 'Please update google settings to get the results', 'Please Ažuriraj google Postavke to get the Rezultati', '2025-11-21 01:00:22'),
(30667, 'hr', 'settings', 'getallpluginfree', 'Also get Sve <b>Dodaci</b> we develop for <b>Free!</b>', '2025-11-21 01:00:22'),
(30666, 'hr', 'settings', 'entersmtpdetails', 'Please enter SMTP mail configuration', '2025-11-21 01:00:22'),
(30665, 'hr', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP Proxy Tunnel', '2025-11-21 01:00:22'),
(30664, 'hr', 'settings', 'click-to-get-moz-account', 'Kliknite ovdje to get MOZ Račun', '2025-11-21 01:00:22'),
(30663, 'hr', 'settings', 'click-to-get-google-api-key', 'Kliknite ovdje to get Google API Key', '2025-11-21 01:00:22'),
(30662, 'hr', 'settings', 'click-to-get-google-api-client-id', 'Kliknite ovdje to get Google API Client Id', '2025-11-21 01:00:22'),
(30661, 'hr', 'settings', 'click-to-get-dataforseo-account', 'Kliknite ovdje to get Free DataForSEO Račun', '2025-11-21 01:00:22'),
(30660, 'hr', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Doniraj $100</b> and become a <b>sponsor</b> of Seo Panel.', '2025-11-21 01:00:22'),
(30659, 'hr', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another Proxy When Crawling Neuspjelo', '2025-11-21 01:00:22'),
(30658, 'hr', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Maximum number of proxies used in single execution', '2025-11-21 01:00:22'),
(30657, 'hr', 'settings', 'Check for Updates', 'Check for Updates', '2025-11-21 01:00:22'),
(30656, 'hr', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2025-11-21 01:00:22'),
(30655, 'hr', 'settings', 'API_SECRET', 'API Secret', '2025-11-21 01:00:22'),
(30654, 'hr', 'settings', 'allsettingssaved', 'Sve Postavke Spremljeno Uspješno!', '2025-11-21 01:00:22'),
(30653, 'hr', 'seotools', 'Website Search Summary', 'Web stranica Pretraži Summary', '2025-11-21 01:00:22'),
(30652, 'hr', 'seotools', 'Website Search Reports', 'Web stranica Pretraži Izvješća', '2025-11-21 01:00:22'),
(30651, 'hr', 'seotools', 'Website Analytics Summary', 'Web stranica Analitika Summary', '2025-11-21 01:00:22'),
(30650, 'hr', 'seotools', 'webmaster-tools', 'Webmaster alati', '2025-11-21 01:00:22'),
(30649, 'hr', 'seotools', 'web-analytics', 'Web stranica Analitika', '2025-11-21 01:00:22'),
(30648, 'hr', 'seotools', 'User Access', 'Korisnik Access', '2025-11-21 01:00:22'),
(30647, 'hr', 'seotools', 'Submission Reports', 'Slanje Izvješća', '2025-11-21 01:00:22'),
(30646, 'hr', 'seotools', 'Social Media Report Summary', 'Društveni mediji Izvješće Summary', '2025-11-21 01:00:22'),
(30644, 'hr', 'seotools', 'sm-checker', 'Društveni mediji Provjera', '2025-11-21 01:00:22'),
(30645, 'hr', 'seotools', 'Social Media Links', 'Društveni mediji Links', '2025-11-21 01:00:22'),
(30643, 'hr', 'seotools', 'Skipped Directories', 'Skipped Directories', '2025-11-21 01:00:22'),
(30642, 'hr', 'seotools', 'sitemap-generator', 'Karta stranice Generator', '2025-11-21 01:00:22'),
(30641, 'hr', 'seotools', 'Sitemap Reports Summary', 'Karta stranice Izvješća Summary', '2025-11-21 01:00:22'),
(30640, 'hr', 'seotools', 'site-auditor', 'Revizor web stranice', '2025-11-21 01:00:22'),
(30637, 'hr', 'seotools', 'review-manager', 'Upravljanje recenzijama', '2025-11-21 01:00:22'),
(30638, 'hr', 'seotools', 'Saturation Reports', 'Zasićenost Izvješća', '2025-11-21 01:00:22'),
(30639, 'hr', 'seotools', 'saturation-checker', 'Zasićenost tražilice', '2025-11-21 01:00:22'),
(30636, 'hr', 'seotools', 'Review Report Summary', 'Recenzija Izvješće Summary', '2025-11-21 01:00:22'),
(30635, 'hr', 'seotools', 'Review Links', 'Recenzija Links', '2025-11-21 01:00:22'),
(30633, 'hr', 'seotools', 'Rank Reports', 'Rang Izvješća', '2025-11-21 01:00:22'),
(30634, 'hr', 'seotools', 'rank-checker', 'Provjera ranga', '2025-11-21 01:00:22'),
(30632, 'hr', 'seotools', 'Quick Saturation Checker', 'Quick Provjera zasićenosti', '2025-11-21 01:00:22'),
(30631, 'hr', 'seotools', 'Quick Rank Checker', 'Quick Provjera ranga', '2025-11-21 01:00:22'),
(30630, 'hr', 'seotools', 'Quick Position Checker', 'Quick Provjera pozicije', '2025-11-21 01:00:22'),
(30629, 'hr', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed Provjera', '2025-11-21 01:00:22'),
(30628, 'hr', 'seotools', 'Quick Checker', 'Quick Provjera', '2025-11-21 01:00:22'),
(30626, 'hr', 'seotools', 'PageSpeed Reports', 'PageSpeed Izvješća', '2025-11-21 01:00:22'),
(30627, 'hr', 'seotools', 'Quick Backlinks Checker', 'Quick Provjera povratnih poveznica', '2025-11-21 01:00:22'),
(30625, 'hr', 'seotools', 'pagespeed', 'PageSpeed Insights', '2025-11-21 01:00:22'),
(30624, 'hr', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for Izvješća generation.\r\nThis Radnja may cause captcha in Tražilica Rezultati.', '2025-11-21 01:00:22'),
(30623, 'hr', 'seotools', 'Keywords Manager', 'Ključne riječi Upravitelj', '2025-11-21 01:00:22'),
(30620, 'hr', 'seotools', 'Keyword Search Reports', 'Ključna riječ Pretraži Izvješća', '2025-11-21 01:00:22'),
(30621, 'hr', 'seotools', 'Keyword Search Summary', 'Ključna riječ Pretraži Summary', '2025-11-21 01:00:22'),
(30622, 'hr', 'seotools', 'keyword-position-checker', 'Provjera pozicije ključne riječi', '2025-11-21 01:00:22'),
(30619, 'hr', 'seotools', 'Keyword Position Summary', 'Pozicija ključne riječi Summary', '2025-11-21 01:00:22'),
(30617, 'hr', 'seotools', 'Graphical Reports', 'Graphical Izvješća', '2025-11-21 01:00:22'),
(30618, 'hr', 'seotools', 'Import Project Links', 'Uvezi Project Links', '2025-11-21 01:00:22'),
(30616, 'hr', 'seotools', 'Graphical Position Reports', 'Graphical Pozicija Izvješća', '2025-11-21 01:00:22'),
(30615, 'hr', 'seotools', 'Google Sitemap Generator', 'Google Karta stranice Generator', '2025-11-21 01:00:22'),
(30613, 'hr', 'seotools', 'Generate Reports', 'Generiraj Izvješća', '2025-11-21 01:00:22'),
(30614, 'hr', 'seotools', 'Generate Saturation Reports', 'Generiraj Zasićenost Izvješća', '2025-11-21 01:00:22'),
(30611, 'hr', 'seotools', 'Generate Keyword Reports', 'Generiraj Ključna riječ Izvješća', '2025-11-21 01:00:22'),
(30612, 'hr', 'seotools', 'Generate Rank Reports', 'Generiraj Rang Izvješća', '2025-11-21 01:00:22'),
(30609, 'hr', 'seotools', 'Featured Submission', 'Featured Slanje', '2025-11-21 01:00:22'),
(30610, 'hr', 'seotools', 'Generate Backlinks Reports', 'Generiraj Povratne poveznice Izvješća', '2025-11-21 01:00:22'),
(30608, 'hr', 'seotools', 'Edit Seo Tool', 'Uredi Seo Alat', '2025-11-21 01:00:22'),
(30607, 'hr', 'seotools', 'directory-submission', 'Slanje u direktorij', '2025-11-21 01:00:22'),
(30605, 'hr', 'seotools', 'Detailed Position Reports', 'Detailed Pozicija Izvješća', '2025-11-21 01:00:22'),
(30606, 'hr', 'seotools', 'Detailed Reports', 'detaljna izvješća', '2025-11-21 01:00:22'),
(30604, 'hr', 'seotools', 'clickproceedaction', 'Unesite URL''s <b>Jedan po retku</b>. Kliknite na <b>Nastavi</b> za provjeru Rezultati.', '2025-11-21 01:00:22'),
(30603, 'hr', 'seotools', 'clickgeneratereports', 'Kliknite na <b>Nastavi</b> to Generiraj Izvješća', '2025-11-21 01:00:22'),
(30601, 'hr', 'seotools', 'Backlinks Reports', 'Povratne poveznice Izvješća', '2025-11-21 01:00:22'),
(30602, 'hr', 'seotools', 'Check Submission Status', 'Check Slanje Status', '2025-11-21 01:00:22'),
(30600, 'hr', 'seotools', 'backlink-checker', 'Provjera povratnih poveznica', '2025-11-21 01:00:22'),
(30599, 'hr', 'seotools', 'Automatic Submission', 'Automatic Slanje', '2025-11-21 01:00:22'),
(30598, 'hr', 'seotools', 'Auditor Settings', 'Auditor Postavke', '2025-11-21 01:00:22'),
(30597, 'hr', 'seotools', 'Auditor Reports', 'Auditor Izvješća', '2025-11-21 01:00:22'),
(30587, 'hr', 'review', 'Edit Review Link', 'Uredi Recenzija Link', '2025-11-21 01:00:22'),
(30588, 'hr', 'review', 'New Review Link', 'Novo Recenzija Link', '2025-11-21 01:00:22'),
(30589, 'hr', 'saturation', 'clickproceedsaturation', 'Unesite URL''s <b>Jedan po retku</b>. Kliknite na <b>Nastavi</b> za provjeru Zasićenost tražilice Rezultati', '2025-11-21 01:00:22'),
(30590, 'hr', 'saturation', 'GenerateSaturationReports', 'Generiraj Zasićenost tražilice Izvješća', '2025-11-21 01:00:22'),
(30591, 'hr', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick Provjera zasićenosti tražilice', '2025-11-21 01:00:22'),
(30592, 'hr', 'saturation', 'Saved Search Engine Saturation results of', 'Spremljeno Zasićenost tražilice Rezultati of', '2025-11-21 01:00:22'),
(30593, 'hr', 'saturation', 'Search Engine Saturation Reports', 'Zasićenost tražilice Izvješća', '2025-11-21 01:00:22'),
(30594, 'hr', 'searchengine', 'max_results', 'Maximum number of Rezultati', '2025-11-21 01:00:22'),
(30595, 'hr', 'searchengine', 'no_of_results_page', 'Number of Rezultati per page', '2025-11-21 01:00:22'),
(30596, 'hr', 'seotools', 'Auditor Projects', 'Auditor Projects', '2025-11-21 01:00:22'),
(30555, 'hr', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a Proxy', '2025-11-21 01:00:22'),
(30556, 'hr', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web Proxy', '2025-11-21 01:00:22'),
(30557, 'hr', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web Proxy.', '2025-11-21 01:00:22'),
(30558, 'hr', 'QuickWebProxy', 'Server list is empty', 'Server Popis is empty', '2025-11-21 01:00:22'),
(30559, 'hr', 'QuickWebProxy', 'Url blocked in the web proxy', 'URL blocked in the web Proxy', '2025-11-21 01:00:22'),
(30560, 'hr', 'QuickWebProxy', 'Web Proxy', 'Web Proxy', '2025-11-21 01:00:22'),
(30561, 'hr', 'QuickWebProxy', 'Web Server', 'Web Server', '2025-11-21 01:00:22'),
(30562, 'hr', 'rank', 'enterurlproceed', 'Unesite URL''s <b>Jedan po retku</b>. Kliknite na <b>Nastavi</b> za provjeru Google and Alexa rang.', '2025-11-21 01:00:22'),
(30563, 'hr', 'rank', 'Google and Alexa Rank Reports', 'Google and Alexa rang Izvješća', '2025-11-21 01:00:22'),
(30564, 'hr', 'rank', 'Saved rank results of', 'Spremljeno Rezultati ranga of', '2025-11-21 01:00:22'),
(30565, 'hr', 'register', 'Account Information', 'Račun Informacija', '2025-11-21 01:00:22'),
(30566, 'hr', 'register', 'Already have account', 'Already have an Račun?', '2025-11-21 01:00:22'),
(30567, 'hr', 'register', 'First name placeholder', 'Ime', '2025-11-21 01:00:22'),
(30568, 'hr', 'register', 'Last name placeholder', 'Prezime', '2025-11-21 01:00:22'),
(30569, 'hr', 'register', 'Personal Information', 'Personal Informacija', '2025-11-21 01:00:22'),
(30570, 'hr', 'register', 'Register subtitle', 'Join us Danas and Početak optimizing your SEO', '2025-11-21 01:00:22'),
(30571, 'hr', 'register', 'Registration', 'Registracija', '2025-11-21 01:00:22'),
(30572, 'hr', 'register', 'Subscription Details', 'Pretplata Detalji', '2025-11-21 01:00:22'),
(30573, 'hr', 'register', 'user_confirm_content_1', 'Internal Greška occured while processing confirm request', '2025-11-21 01:00:22'),
(30574, 'hr', 'register', 'user_confirm_mail_cont_1', 'Thank you for your Registracija with', '2025-11-21 01:00:22'),
(30575, 'hr', 'register', 'user_confirm_mail_cont_2', 'Please Kliknite na the following link to confirm Registracija', '2025-11-21 01:00:22'),
(30576, 'hr', 'report', '2 Days', '2 Days', '2025-11-21 01:00:22'),
(30577, 'hr', 'report', 'Email notification', 'E-pošta notification', '2025-11-21 01:00:22'),
(30578, 'hr', 'report', 'keywordnumbercheckedcronnote', 'Note: Default 0 means Sve Ključne riječi should be Provjereno', '2025-11-21 01:00:22'),
(30579, 'hr', 'report', 'Next report generation time', 'Sljedeće Izvješće generation time', '2025-11-21 01:00:22'),
(30580, 'hr', 'report', 'Reports generation interval', 'Izvješća generation interval', '2025-11-21 01:00:22'),
(30581, 'hr', 'report', 'reportsettingssaved', 'Izvješće Postavke Spremljeno Uspješno!', '2025-11-21 01:00:22'),
(30582, 'hr', 'report', 'sheduledsuccessfully', 'Scheduled Izvješće generation Uspješno!', '2025-11-21 01:00:22'),
(30583, 'hr', 'reports', 'report_email_body_text1', 'Your Izvješća generated Uspješno in seo panel. Please check the attached Izvješća.', '2025-11-21 01:00:22'),
(30584, 'hr', 'reports', 'report_email_body_text2', 'If above Izvješća are not clear, Please [LOGIN_LINK] to Prikaži the Izvješća directly Od your Račun.', '2025-11-21 01:00:22'),
(30585, 'hr', 'reports', 'report_email_subject', 'Your SEO Izvješća generated Uspješno', '2025-11-21 01:00:22'),
(30586, 'hr', 'reports', 'Reports Generated Successfully', 'Izvješća Generated Uspješno', '2025-11-21 01:00:22'),
(30548, 'hr', 'proxy', 'Proxy Username', 'Proxy Korisničko ime', '2025-11-21 01:00:22'),
(30549, 'hr', 'proxy', 'Proxyalreadyexist', 'Proxy already exist!', '2025-11-21 01:00:22'),
(30550, 'hr', 'proxy', 'proxysyntax', 'Proxy Hostname, Proxy Port, Proxy Korisničko ime, Proxy Lozinka', '2025-11-21 01:00:22'),
(30551, 'hr', 'proxy', 'Request Count', 'Request Broj', '2025-11-21 01:00:22'),
(30552, 'hr', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2025-11-21 01:00:22'),
(30553, 'hr', 'QuickWebProxy', 'Please enter a valid url', 'Please enter a valid URL', '2025-11-21 01:00:22'),
(30554, 'hr', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow Korisnik to access the web Proxy', '2025-11-21 01:00:22'),
(30547, 'hr', 'proxy', 'Proxy Password', 'Proxy Lozinka', '2025-11-21 01:00:22'),
(30546, 'hr', 'proxy', 'enterproxynote', 'Enter Proxy Jedan po retku in following format.', '2025-11-21 01:00:22'),
(30545, 'hr', 'proxy', 'Edit Proxy', 'Uredi Proxy', '2025-11-21 01:00:22'),
(30544, 'hr', 'proxy', 'click-to-get-proxy', 'Kliknite ovdje to get Proxy', '2025-11-21 01:00:22'),
(30543, 'hr', 'plugin', 'Seo Plugin Details', 'Seo Dodatak Detalji', '2025-11-21 01:00:22'),
(30542, 'hr', 'plugin', 'Plugin Name', 'Dodatak Ime', '2025-11-21 01:00:22'),
(30541, 'hr', 'plugin', 'Edit Seo Plugin', 'Uredi Seo Dodatak', '2025-11-21 01:00:22'),
(30540, 'hr', 'plugin', 'Download Seo Panel Plugins', 'Preuzmi SEO Panel dodaci', '2025-11-21 01:00:22'),
(30539, 'hr', 'panel', 'Website Manager', 'Web stranica Upravitelj', '2025-11-21 01:00:22'),
(30538, 'hr', 'panel', 'Website Access Manager', 'Web stranica Access Upravitelj', '2025-11-21 01:00:22'),
(30537, 'hr', 'panel', 'Valid', 'Valid', '2025-11-21 01:00:22'),
(30536, 'hr', 'panel', 'User Type Settings', 'Korisnik Vrsta Postavke', '2025-11-21 01:00:22'),
(30535, 'hr', 'panel', 'User Type Manager', 'Korisnik Vrsta Upravitelj', '2025-11-21 01:00:22'),
(30533, 'hr', 'panel', 'Themes Manager', 'Themes Upravitelj', '2025-11-21 01:00:22'),
(30534, 'hr', 'panel', 'User Manager', 'Korisnik Upravitelj', '2025-11-21 01:00:22'),
(30532, 'hr', 'panel', 'Test Email Settings', 'Test Postavke e-pošte', '2025-11-21 01:00:22'),
(30531, 'hr', 'panel', 'System Settings', 'Postavke sustava', '2025-11-21 01:00:22'),
(30530, 'hr', 'panel', 'Sync Search Engines', 'Sync Tražilice', '2025-11-21 01:00:22'),
(30529, 'hr', 'panel', 'Submit Sitemap', 'Pošalji Karta stranice', '2025-11-21 01:00:22'),
(30528, 'hr', 'panel', 'Sitemaps', 'Sitemaps', '2025-11-21 01:00:22'),
(30527, 'hr', 'panel', 'Settings', 'Postavke', '2025-11-21 01:00:22'),
(30526, 'hr', 'panel', 'Seo Tools Manager', 'SEO alati Upravitelj', '2025-11-21 01:00:22'),
(30525, 'hr', 'panel', 'Seo Plugins Manager', 'SEO dodaci Upravitelj', '2025-11-21 01:00:22'),
(30523, 'hr', 'panel', 'Schedule Reports', 'Schedule Izvješća', '2025-11-21 01:00:22'),
(30524, 'hr', 'panel', 'Search Engine Manager', 'Tražilica Upravitelj', '2025-11-21 01:00:22'),
(30522, 'hr', 'panel', 'Reports Manager', 'Izvješća Upravitelj', '2025-11-21 01:00:22'),
(30521, 'hr', 'panel', 'Report Settings', 'Izvješće Postavke', '2025-11-21 01:00:22'),
(30520, 'hr', 'panel', 'Report Generation Manager', 'Izvješće Generation Upravitelj', '2025-11-21 01:00:22'),
(30519, 'hr', 'panel', 'Report Generation Logs', 'Izvješće Generation Logs', '2025-11-21 01:00:22'),
(30518, 'hr', 'panel', 'Proxy Settings', 'Postavke proxyja', '2025-11-21 01:00:22'),
(30517, 'hr', 'panel', 'Proxy Perfomance', 'Proxy Perfomance', '2025-11-21 01:00:22'),
(30516, 'hr', 'panel', 'Proxy Manager', 'Upravitelj proxyja', '2025-11-21 01:00:22'),
(30515, 'hr', 'panel', 'Project Summary', 'Project Summary', '2025-11-21 01:00:22'),
(30514, 'hr', 'panel', 'Project Manager', 'Upravitelj projekta', '2025-11-21 01:00:22'),
(30513, 'hr', 'panel', 'New Website', 'Novo Web stranica', '2025-11-21 01:00:22'),
(30512, 'hr', 'panel', 'New User Type', 'Novo Korisnik Vrsta', '2025-11-21 01:00:22'),
(30511, 'hr', 'panel', 'New User', 'Novo Korisnik', '2025-11-21 01:00:22'),
(30510, 'hr', 'panel', 'New Proxy', 'Novo Proxy', '2025-11-21 01:00:22'),
(30509, 'hr', 'panel', 'New Project', 'Novo Project', '2025-11-21 01:00:22'),
(30508, 'hr', 'panel', 'My Profile', 'My Profil', '2025-11-21 01:00:22'),
(30507, 'hr', 'panel', 'MOZ Settings', 'MOZ Postavke', '2025-11-21 01:00:22'),
(30506, 'hr', 'panel', 'Mail Settings', 'Mail Postavke', '2025-11-21 01:00:22'),
(30505, 'hr', 'panel', 'Mail Log Manager', 'Upravitelj zapisa e-pošte', '2025-11-21 01:00:22'),
(30504, 'hr', 'panel', 'Log Manager', 'Upravitelj zapisa', '2025-11-21 01:00:22'),
(30503, 'hr', 'panel', 'Import Websites', 'Uvezi Web stranice', '2025-11-21 01:00:22'),
(30502, 'hr', 'panel', 'Import Proxy', 'Uvezi Proxy', '2025-11-21 01:00:22'),
(30501, 'hr', 'panel', 'Google Settings', 'Google Postavke', '2025-11-21 01:00:22'),
(30500, 'hr', 'panel', 'Global Reports Settings', 'Global Izvješća Postavke', '2025-11-21 01:00:22'),
(30499, 'hr', 'panel', 'Existing', 'Existing', '2025-11-21 01:00:22'),
(30498, 'hr', 'panel', 'Edit Project', 'Uredi Project', '2025-11-21 01:00:22'),
(30497, 'hr', 'panel', 'Edit My Profile', 'Uredi My Profil', '2025-11-21 01:00:22'),
(30496, 'hr', 'panel', 'Directory Manager', 'Upravitelj direktorija', '2025-11-21 01:00:22'),
(30495, 'hr', 'panel', 'DataForSEO Settings', 'DataForSEO Postavke', '2025-11-21 01:00:22'),
(30494, 'hr', 'panel', 'Current Time', 'Current Time', '2025-11-21 01:00:22'),
(30493, 'hr', 'panel', 'Cron Command', 'Cron Command', '2025-11-21 01:00:22'),
(30492, 'hr', 'panel', 'Crawl Log Manager', 'Upravitelj zapisa indeksiranja', '2025-11-21 01:00:22'),
(30491, 'hr', 'panel', 'Connections', 'Connections', '2025-11-21 01:00:22'),
(30490, 'hr', 'panel', 'Check Directory', 'Provjeri direktorij', '2025-11-21 01:00:22'),
(30489, 'hr', 'panel', 'Archived Reports', 'Archived Izvješća', '2025-11-21 01:00:22'),
(30488, 'hr', 'panel', 'API Settings', 'API Postavke', '2025-11-21 01:00:22'),
(30487, 'hr', 'panel', 'API Manager', 'API upravitelj', '2025-11-21 01:00:22'),
(30486, 'hr', 'panel', 'API Connection', 'API Connection', '2025-11-21 01:00:22'),
(30485, 'hr', 'panel', 'alsocheckfollowlink', 'Također provjerite sljedeću poveznicu ako trebate više detalja.', '2025-11-21 01:00:22'),
(30484, 'hr', 'panel', 'Alerts', 'Alerts', '2025-11-21 01:00:22'),
(30483, 'hr', 'panel', 'Add following command to your cron tab', 'Dodaj following command to your cron tab', '2025-11-21 01:00:22'),
(30482, 'hr', 'panel', 'About Us', 'About Us', '2025-11-21 01:00:22'),
(30481, 'hr', 'pagespeed', 'Saved page speed results of', 'Spremljeno Brzina stranice Rezultati of', '2025-11-21 01:00:22'),
(30480, 'hr', 'pagespeed', 'PageSpeed Details', 'PageSpeed Detalji', '2025-11-21 01:00:22'),
(30479, 'hr', 'pagespeed', 'Page Speed', 'Brzina stranice', '2025-11-21 01:00:22'),
(30478, 'hr', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2025-11-21 01:00:22'),
(30477, 'hr', 'pagespeed', 'Mobile Speed', 'Mobile Speed', '2025-11-21 01:00:22'),
(30476, 'hr', 'pagespeed', 'Desktop Speed', 'Desktop Speed', '2025-11-21 01:00:22'),
(30475, 'hr', 'myaccount', 'Disconnected', 'Disconnected', '2025-11-21 01:00:22'),
(30474, 'hr', 'myaccount', 'Disconnect', 'Disconnect', '2025-11-21 01:00:22'),
(30473, 'hr', 'myaccount', 'Connected', 'Connected', '2025-11-21 01:00:22'),
(30472, 'hr', 'myaccount', 'Connect', 'Connect', '2025-11-21 01:00:22'),
(30471, 'hr', 'login', 'Your Password Reset Successfully', 'Vaša lozinka je uspješno resetirana', '2025-11-21 01:00:22'),
(30470, 'hr', 'login', 'Your Password Reset Failed', 'Your Lozinka Reset Neuspjelo', '2025-11-21 01:00:22'),
(30469, 'hr', 'login', 'Your account password is resetted and new password is', 'Your Račun Lozinka is resetted and Nova lozinka is', '2025-11-21 01:00:22'),
(30468, 'hr', 'login', 'Your account activated successfully', 'Vaš račun je uspješno aktiviran', '2025-11-21 01:00:22'),
(30466, 'hr', 'login', 'Verification', 'Verification', '2025-11-21 01:00:22'),
(30467, 'hr', 'login', 'Welcome message', 'Welcome Natrag! Please Prijava to your Račun', '2025-11-21 01:00:22'),
(30465, 'hr', 'login', 'usernameexist', 'Korisničko ime already exist!', '2025-11-21 01:00:22'),
(30464, 'hr', 'login', 'Username placeholder', 'Enter your Korisničko ime', '2025-11-21 01:00:22'),
(30463, 'hr', 'login', 'Username', 'Korisničko ime', '2025-11-21 01:00:22'),
(30462, 'hr', 'login', 'user_not_activated_msg', 'Korisnik nije aktiviran. Molimo provjerite svoju poštu za aktivaciju', '2025-11-21 01:00:22'),
(30461, 'hr', 'login', 'user_email_not_exist', 'E-pošta korisnika is not existing in system!', '2025-11-21 01:00:22'),
(30460, 'hr', 'login', 'User Type', 'Korisnik Vrsta', '2025-11-21 01:00:22'),
(30459, 'hr', 'login', 'User inactive', 'Korisnik inactive', '2025-11-21 01:00:22'),
(30458, 'hr', 'login', 'to login to your account', 'to Prijava to your Račun', '2025-11-21 01:00:22'),
(30457, 'hr', 'login', 'Sign in to your account', 'Prijavite se na svoj račun', '2025-11-21 01:00:22'),
(30456, 'hr', 'login', 'Sign In', 'Prijavite se', '2025-11-21 01:00:22'),
(30455, 'hr', 'login', 'Security message', 'Your Informacija is secure and encrypted', '2025-11-21 01:00:22'),
(30454, 'hr', 'login', 'Request Password', 'Request Lozinka', '2025-11-21 01:00:22'),
(30452, 'hr', 'login', 'Register', 'Registracija', '2025-11-21 01:00:22'),
(30453, 'hr', 'login', 'Remember password text', 'Remember your Lozinka?', '2025-11-21 01:00:22'),
(30451, 'hr', 'login', 'password_reset_success_message', 'Vaša lozinka je uspješno resetirana. Potvrda je poslana na adresu e-pošte. <br>Molimo provjerite svoj inbox to get your Nova lozinka.', '2025-11-21 01:00:22'),
(30450, 'hr', 'login', 'Password placeholder', 'Enter your Lozinka', '2025-11-21 01:00:22'),
(30449, 'hr', 'login', 'Password incorrect', 'Lozinka incorrect', '2025-11-21 01:00:22'),
(30448, 'hr', 'login', 'Password', 'Lozinka', '2025-11-21 01:00:22'),
(30447, 'hr', 'login', 'No account text', 'Don''t have an Račun?', '2025-11-21 01:00:22'),
(30446, 'hr', 'login', 'newaccountsuccess', 'Novi račun uspješno kreiran!', '2025-11-21 01:00:22'),
(30445, 'hr', 'login', 'Login incorrect', 'Prijava incorrect', '2025-11-21 01:00:22'),
(30444, 'hr', 'login', 'Login', 'Prijava', '2025-11-21 01:00:22'),
(30443, 'hr', 'login', 'Last Name', 'Prezime', '2025-11-21 01:00:22'),
(30442, 'hr', 'login', 'internal_error_mail_send', 'An internal Greška occured while sending Lozinka reset mail!', '2025-11-21 01:00:22'),
(30441, 'hr', 'login', 'Forgot subtitle', 'Enter your E-pošta address and we''ll send you instructions to reset your Lozinka', '2025-11-21 01:00:22'),
(30440, 'hr', 'login', 'Forgot password?', 'Zaboravljena lozinka?', '2025-11-21 01:00:22'),
(30439, 'hr', 'login', 'First Name', 'Ime', '2025-11-21 01:00:22'),
(30438, 'hr', 'login', 'Enter the code as it is shown', 'Unesite kod kao što je prikazan', '2025-11-21 01:00:22'),
(30437, 'hr', 'login', 'Enter the code', 'Unesite kod', '2025-11-21 01:00:22'),
(30436, 'hr', 'login', 'emailexist', 'E-pošta already exist!', '2025-11-21 01:00:22'),
(30435, 'hr', 'login', 'Email placeholder', 'your@E-pošta.com', '2025-11-21 01:00:22'),
(30434, 'hr', 'login', 'Email', 'E-pošta', '2025-11-21 01:00:22'),
(30433, 'hr', 'login', 'Create New Account', 'Kreiraj Novo Račun', '2025-11-21 01:00:22'),
(30432, 'hr', 'login', 'Create my account', 'Kreiraj Moj račun', '2025-11-21 01:00:22'),
(30431, 'hr', 'login', 'Confirm Password', 'Potvrdi lozinku', '2025-11-21 01:00:22'),
(30430, 'hr', 'log', 'Post Fields', 'Objava Fields', '2025-11-21 01:00:22'),
(30429, 'hr', 'log', 'Mail Log Details', 'Mail Log Detalji', '2025-11-21 01:00:22'),
(30428, 'hr', 'log', 'Crawl Log Details', 'Indeksiranje Log Detalji', '2025-11-21 01:00:22'),
(30427, 'hr', 'log', 'Clear All Logs', 'Clear Sve Logs', '2025-11-21 01:00:22'),
(30426, 'hr', 'label', 'Year', 'Year', '2025-11-21 01:00:22'),
(30425, 'hr', 'label', 'Write', 'Write', '2025-11-21 01:00:22'),
(30424, 'hr', 'label', 'Weekly', 'Weekly', '2025-11-21 01:00:22'),
(30423, 'hr', 'label', 'Week', 'Week', '2025-11-21 01:00:22'),
(30422, 'hr', 'label', 'wantproceed', 'Do you really want to Nastavi?', '2025-11-21 01:00:22'),
(30421, 'hr', 'label', 'View Reports', 'Prikaži Izvješća', '2025-11-21 01:00:22'),
(30420, 'hr', 'label', 'Version', 'Version', '2025-11-21 01:00:22'),
(30419, 'hr', 'label', 'User agent', 'Korisnik agent', '2025-11-21 01:00:22'),
(30418, 'hr', 'label', 'Usability', 'Usability', '2025-11-21 01:00:22'),
(30417, 'hr', 'label', 'Upgrade', 'Upgrade', '2025-11-21 01:00:22'),
(30416, 'hr', 'label', 'Updated', 'Ažurirano', '2025-11-21 01:00:22'),
(30415, 'hr', 'label', 'Type', 'Vrsta', '2025-11-21 01:00:22'),
(30414, 'hr', 'label', 'Translators', 'Translators', '2025-11-21 01:00:22'),
(30413, 'hr', 'label', 'translation by', 'translation by', '2025-11-21 01:00:22'),
(30412, 'hr', 'label', 'Total Results', 'Ukupni rezultati', '2025-11-21 01:00:22'),
(30411, 'hr', 'label', 'Title', 'Naslov', '2025-11-21 01:00:22'),
(30410, 'hr', 'label', 'Theme', 'Theme', '2025-11-21 01:00:22'),
(30409, 'hr', 'label', 'Syntax', 'Syntax', '2025-11-21 01:00:22'),
(30408, 'hr', 'label', 'Success', 'Uspjeh', '2025-11-21 01:00:22'),
(30407, 'hr', 'label', 'Subject', 'Subject', '2025-11-21 01:00:22'),
(30406, 'hr', 'label', 'Sponsors', 'Sponsors', '2025-11-21 01:00:22'),
(30405, 'hr', 'label', 'Speed', 'Speed', '2025-11-21 01:00:22'),
(30404, 'hr', 'label', 'Select All', 'Odaberi Sve', '2025-11-21 01:00:22'),
(30403, 'hr', 'label', 'Second', 'Second', '2025-11-21 01:00:22'),
(30402, 'hr', 'label', 'Score', 'Ocjena', '2025-11-21 01:00:22'),
(30401, 'hr', 'label', 'Reviews', 'Recenzije', '2025-11-21 01:00:22'),
(30400, 'hr', 'label', 'Report Type', 'Vrsta izvješća', '2025-11-21 01:00:22'),
(30399, 'hr', 'label', 'Referer', 'Referer', '2025-11-21 01:00:22'),
(30398, 'hr', 'label', 'Reference', 'Reference', '2025-11-21 01:00:22'),
(30396, 'hr', 'label', 'Read', 'Read', '2025-11-21 01:00:22'),
(30397, 'hr', 'label', 'Recent Activity', 'Recent Activity', '2025-11-21 01:00:22'),
(30395, 'hr', 'label', 'Re-install', 'Re-install', '2025-11-21 01:00:22'),
(30394, 'hr', 'label', 'Rating', 'Rating', '2025-11-21 01:00:22'),
(30393, 'hr', 'label', 'Proxy', 'Proxy', '2025-11-21 01:00:22'),
(30391, 'hr', 'label', 'Port', 'Port', '2025-11-21 01:00:22'),
(30392, 'hr', 'label', 'Project', 'Project', '2025-11-21 01:00:22'),
(30390, 'hr', 'label', 'Plugin', 'Dodatak', '2025-11-21 01:00:22'),
(30389, 'hr', 'label', 'Overview', 'Pregled', '2025-11-21 01:00:22'),
(30388, 'hr', 'label', 'Order By', 'Order By', '2025-11-21 01:00:22'),
(30387, 'hr', 'label', 'noactiveplugins', 'No Aktivan SEO dodaci Found!', '2025-11-21 01:00:22'),
(30385, 'hr', 'label', 'Monthly', 'Monthly', '2025-11-21 01:00:22'),
(30386, 'hr', 'label', 'Months', 'Months', '2025-11-21 01:00:22'),
(30384, 'hr', 'label', 'Month', 'Month', '2025-11-21 01:00:22'),
(30382, 'hr', 'label', 'Minute', 'Minute', '2025-11-21 01:00:22'),
(30383, 'hr', 'label', 'Mobile', 'Mobile', '2025-11-21 01:00:22'),
(30381, 'hr', 'label', 'Likes', 'Likes', '2025-11-21 01:00:22'),
(30380, 'hr', 'label', 'Keywords', 'Ključne riječi', '2025-11-21 01:00:22'),
(30379, 'hr', 'label', 'Just Now', 'Just Now', '2025-11-21 01:00:22'),
(30378, 'hr', 'label', 'Installation', 'Installation', '2025-11-21 01:00:22'),
(30377, 'hr', 'label', 'Include', 'Include', '2025-11-21 01:00:22'),
(30375, 'hr', 'label', 'Hour', 'Hour', '2025-11-21 01:00:22'),
(30376, 'hr', 'label', 'Impressions', 'Impressions', '2025-11-21 01:00:22'),
(30374, 'hr', 'label', 'From', 'Od', '2025-11-21 01:00:22'),
(30373, 'hr', 'label', 'Free', 'Free', '2025-11-21 01:00:22'),
(30372, 'hr', 'label', 'Followers', 'Followers', '2025-11-21 01:00:22'),
(30371, 'hr', 'label', 'Feature', 'Feature', '2025-11-21 01:00:22'),
(30370, 'hr', 'label', 'Fail', 'Fail', '2025-11-21 01:00:22'),
(30369, 'hr', 'label', 'Exclude', 'Exclude', '2025-11-21 01:00:22'),
(30368, 'hr', 'label', 'Email Body', 'E-pošta Body', '2025-11-21 01:00:22'),
(30367, 'hr', 'label', 'Download', 'Preuzmi', '2025-11-21 01:00:22'),
(30366, 'hr', 'label', 'Developers', 'Developers', '2025-11-21 01:00:22'),
(30365, 'hr', 'label', 'Desktop', 'Desktop', '2025-11-21 01:00:22'),
(30363, 'hr', 'label', 'Days', 'Days', '2025-11-21 01:00:22'),
(30364, 'hr', 'label', 'Description', 'Opis', '2025-11-21 01:00:22'),
(30361, 'hr', 'label', 'Daily', 'Daily', '2025-11-21 01:00:22'),
(30362, 'hr', 'label', 'Day', 'Day', '2025-11-21 01:00:22'),
(30360, 'hr', 'label', 'Current', 'Current', '2025-11-21 01:00:22'),
(30359, 'hr', 'label', 'Cron', 'Cron', '2025-11-21 01:00:22'),
(30357, 'hr', 'label', 'Cookie', 'Cookie', '2025-11-21 01:00:22'),
(30358, 'hr', 'label', 'Count', 'Broj', '2025-11-21 01:00:22'),
(30356, 'hr', 'label', 'Comments', 'Comments', '2025-11-21 01:00:22'),
(30355, 'hr', 'label', 'Clicks', 'Klikovi', '2025-11-21 01:00:22'),
(30354, 'hr', 'label', 'Click Here', 'Kliknite ovdje', '2025-11-21 01:00:22'),
(30353, 'hr', 'label', 'Clear All', 'Clear Sve', '2025-11-21 01:00:22'),
(30351, 'hr', 'label', 'Author', 'Author', '2025-11-21 01:00:22'),
(30352, 'hr', 'label', 'Brocken', 'Broken', '2025-11-21 01:00:22'),
(30349, 'hr', 'label', 'already exist', 'already exist', '2025-11-21 01:00:22'),
(30350, 'hr', 'label', 'Authentication', 'Authentication', '2025-11-21 01:00:22'),
(30348, 'hr', 'label', 'Ago', 'Ago', '2025-11-21 01:00:22'),
(30347, 'hr', 'label', 'Access denied', 'Access denied', '2025-11-21 01:00:22'),
(30346, 'hr', 'keyword', 'Your keyword count already reached the limit', 'Ključna riječ Broj already reached the limit for this Korisnik!', '2025-11-21 01:00:22'),
(30345, 'hr', 'keyword', 'You can add only keywordcount keywords more', 'You can Dodaj only [keywordcount] Ključne riječi for this Korisnik!', '2025-11-21 01:00:22'),
(30344, 'hr', 'keyword', 'Top Keywords', 'Top Ključne riječi', '2025-11-21 01:00:22'),
(30343, 'hr', 'keyword', 'to create new keywords', 'to Kreiraj Novo Ključne riječi', '2025-11-21 01:00:22'),
(30342, 'hr', 'keyword', 'Successfully crawled keyword', 'Uspješno indeksirana ključna riječ', '2025-11-21 01:00:22'),
(30341, 'hr', 'keyword', 'Show All results', 'Show Sve Rezultati', '2025-11-21 01:00:22'),
(30340, 'hr', 'keyword', 'results from ', 'Rezultati Od ', '2025-11-21 01:00:22'),
(30339, 'hr', 'keyword', 'Ranking Trends', 'Ranking Trends', '2025-11-21 01:00:22'),
(30338, 'hr', 'keyword', 'Quick Keyword Position Checker', 'Brza provjera pozicije ključne riječi', '2025-11-21 01:00:22'),
(30337, 'hr', 'keyword', 'pleaseselecttool', 'Molimo odaberite barem jedan SEO alat', '2025-11-21 01:00:22');
INSERT INTO `texts` VALUES
(30336, 'hr', 'keyword', 'not assigned to required search engines', 'not assigned to required Tražilice', '2025-11-21 01:00:22'),
(30335, 'hr', 'keyword', 'New Keyword', 'Novo Ključna riječ', '2025-11-21 01:00:22'),
(30334, 'hr', 'keyword', 'Keywords Tracked', 'Ključne riječi Tracked', '2025-11-21 01:00:22'),
(30333, 'hr', 'keyword', 'Keyword Ranking Trends', 'Ključna riječ Ranking Trends', '2025-11-21 01:00:22'),
(30332, 'hr', 'keyword', 'Keyword Position Report', 'Pozicija ključne riječi Izvješće', '2025-11-21 01:00:22'),
(30331, 'hr', 'keyword', 'Keyword already exist', 'Ključna riječ already exist', '2025-11-21 01:00:22'),
(30330, 'hr', 'keyword', 'Insert keywords separated with comma', 'Insert Ključne riječi separated with comma', '2025-11-21 01:00:22'),
(30329, 'hr', 'keyword', 'Import Keywords', 'Uvezi Ključne riječi', '2025-11-21 01:00:22'),
(30328, 'hr', 'keyword', 'Graphical Keyword Position Reports', 'Graphical Pozicija ključne riječi Izvješća', '2025-11-21 01:00:22'),
(30327, 'hr', 'keyword', 'Edit Keyword', 'Uredi ključnu riječ', '2025-11-21 01:00:22'),
(30326, 'hr', 'keyword', 'Detailed Keyword Position Reports', 'Detailed Pozicija ključne riječi Izvješća', '2025-11-21 01:00:22'),
(30325, 'hr', 'keyword', 'Crawling keyword', 'Crawling Ključna riječ', '2025-11-21 01:00:22'),
(30324, 'hr', 'home', 'Website Statistics', 'Web stranica Statistics', '2025-11-21 01:00:22'),
(30323, 'hr', 'home', 'SiteNameUrl', 'Site Ime/URL', '2025-11-21 01:00:22'),
(30322, 'hr', 'home', 'Ranks', 'Ranks', '2025-11-21 01:00:22'),
(30321, 'hr', 'home', 'Pages Indexed', 'Pages Indexed', '2025-11-21 01:00:22'),
(30320, 'hr', 'home', 'Page Overview Report', 'Page Overview Izvješće', '2025-11-21 01:00:22'),
(30318, 'hr', 'home', 'Keyword Overview Report', 'Ključna riječ Overview Izvješće', '2025-11-21 01:00:22'),
(30319, 'hr', 'home', 'Overall Report Summary', 'Overall Izvješće Summary', '2025-11-21 01:00:22'),
(30317, 'hr', 'home', 'Indexed', 'Indexed', '2025-11-21 01:00:22'),
(38523, 'cs', 'socialmedia', 'Last Checked', 'Naposledy zkontrolováno', '2026-01-19 22:56:41'),
(38524, 'da', 'socialmedia', 'Last Checked', 'Sidst kontrolleret', '2026-01-19 22:56:41'),
(38525, 'de', 'socialmedia', 'Last Checked', 'Zuletzt geprüft', '2026-01-19 22:56:41'),
(38526, 'el', 'socialmedia', 'Last Checked', 'Τελευταίος έλεγχος', '2026-01-19 22:56:41'),
(38527, 'es', 'socialmedia', 'Last Checked', 'Última verificación', '2026-01-19 22:56:41'),
(38528, 'es-ar', 'socialmedia', 'Last Checked', 'Última verificación', '2026-01-19 22:56:41'),
(38529, 'fa', 'socialmedia', 'Last Checked', 'آخرین بررسی', '2026-01-19 22:56:41'),
(38530, 'fi', 'socialmedia', 'Last Checked', 'Viimeksi tarkistettu', '2026-01-19 22:56:41'),
(38531, 'fr', 'socialmedia', 'Last Checked', 'Dernière vérification', '2026-01-19 22:56:41'),
(38532, 'he', 'socialmedia', 'Last Checked', 'נבדק לאחרונה', '2026-01-19 22:56:41'),
(38533, 'hi', 'socialmedia', 'Last Checked', 'अंतिम जांच', '2026-01-19 22:56:41'),
(38534, 'hr', 'socialmedia', 'Last Checked', 'Posljednja provjera', '2026-01-19 22:56:41'),
(38535, 'hu', 'socialmedia', 'Last Checked', 'Utoljára ellenőrizve', '2026-01-19 22:56:41'),
(38536, 'hy', 'socialmedia', 'Last Checked', 'Վերջին ստուգումը', '2026-01-19 22:56:41'),
(38537, 'id', 'socialmedia', 'Last Checked', 'Terakhir Diperiksa', '2026-01-19 22:56:41'),
(38538, 'it', 'socialmedia', 'Last Checked', 'Ultimo Controllo', '2026-01-19 22:56:41'),
(38539, 'ja', 'socialmedia', 'Last Checked', '最終確認日', '2026-01-19 22:56:41'),
(38540, 'ko', 'socialmedia', 'Last Checked', '마지막 확인', '2026-01-19 22:56:41'),
(38541, 'lt', 'socialmedia', 'Last Checked', 'Paskutinį kartą tikrinta', '2026-01-19 22:56:41'),
(38542, 'mk', 'socialmedia', 'Last Checked', 'Последна проверка', '2026-01-19 22:56:41'),
(38543, 'nl', 'socialmedia', 'Last Checked', 'Laatst gecontroleerd', '2026-01-19 22:56:41'),
(38544, 'no', 'socialmedia', 'Last Checked', 'Sist sjekket', '2026-01-19 22:56:41'),
(38545, 'pl', 'socialmedia', 'Last Checked', 'Ostatnio sprawdzone', '2026-01-19 22:56:41'),
(38546, 'pt', 'socialmedia', 'Last Checked', 'Última verificação', '2026-01-19 22:56:41'),
(38547, 'pt-br', 'socialmedia', 'Last Checked', 'Última verificação', '2026-01-19 22:56:41'),
(38548, 'ro', 'socialmedia', 'Last Checked', 'Ultima verificare', '2026-01-19 22:56:41'),
(38549, 'ru', 'socialmedia', 'Last Checked', 'Последняя проверка', '2026-01-19 22:56:41'),
(38550, 'sk', 'socialmedia', 'Last Checked', 'Naposledy skontrolované', '2026-01-19 22:56:41'),
(38551, 'sl', 'socialmedia', 'Last Checked', 'Nazadnje preverjeno', '2026-01-19 22:56:41'),
(38552, 'sq', 'socialmedia', 'Last Checked', 'Kontrolluar për herë të fundit', '2026-01-19 22:56:41'),
(38553, 'sr', 'socialmedia', 'Last Checked', 'Последња провера', '2026-01-19 22:56:41'),
(38554, 'sv', 'socialmedia', 'Last Checked', 'Senast kontrollerad', '2026-01-19 22:56:41'),
(38555, 'sw', 'socialmedia', 'Last Checked', 'Iliangaliwa Mwisho', '2026-01-19 22:56:41'),
(38556, 'th', 'socialmedia', 'Last Checked', 'ตรวจสอบล่าสุด', '2026-01-19 22:56:41'),
(38557, 'tl', 'socialmedia', 'Last Checked', 'Huling Sinuri', '2026-01-19 22:56:41'),
(38558, 'tr', 'socialmedia', 'Last Checked', 'Son Kontrol', '2026-01-19 22:56:41'),
(38559, 'uk', 'socialmedia', 'Last Checked', 'Остання перевірка', '2026-01-19 22:56:41'),
(38560, 'vn', 'socialmedia', 'Last Checked', 'Kiểm tra lần cuối', '2026-01-19 22:56:41'),
(38561, 'zh', 'socialmedia', 'Last Checked', '最后检查', '2026-01-19 22:56:41'),
(38562, 'en', 'socialmedia', 'No social media data available', 'No social media data available. <a href="seo-tools.php?menu_sec=sm-checker">Add social media links</a> to start tracking your social media performance.', '2026-01-19 22:56:41'),
(38563, 'ar', 'socialmedia', 'No social media data available', 'لا توجد بيانات وسائل التواصل الاجتماعي. <a href="seo-tools.php?menu_sec=sm-checker">أضف روابط وسائل التواصل الاجتماعي</a> لبدء تتبع أداء وسائل التواصل الاجتماعي الخاصة بك.', '2026-01-19 22:56:41'),
(38564, 'bg', 'socialmedia', 'No social media data available', 'Няма налични данни за социални медии. <a href="seo-tools.php?menu_sec=sm-checker">Добавете връзки към социални медии</a>, за да започнете да следите ефективността на вашите социални медии.', '2026-01-19 22:56:41'),
(38565, 'bs', 'socialmedia', 'No social media data available', 'Nema dostupnih podataka o društvenim medijima. <a href="seo-tools.php?menu_sec=sm-checker">Dodajte linkove društvenih medija</a> da biste počeli pratiti učinak svojih društvenih medija.', '2026-01-19 22:56:41'),
(38566, 'ca', 'socialmedia', 'No social media data available', 'No hi ha dades de xarxes socials disponibles. <a href="seo-tools.php?menu_sec=sm-checker">Afegiu enllaços de xarxes socials</a> per començar a fer el seguiment del vostre rendiment a les xarxes socials.', '2026-01-19 22:56:41'),
(38567, 'cn', 'socialmedia', 'No social media data available', '暂无社交媒体数据。<a href="seo-tools.php?menu_sec=sm-checker">添加社交媒体链接</a>以开始跟踪您的社交媒体表现。', '2026-01-19 22:56:41'),
(38568, 'cs', 'socialmedia', 'No social media data available', 'Nejsou k dispozici žádná data sociálních médií. <a href="seo-tools.php?menu_sec=sm-checker">Přidejte odkazy na sociální média</a>, abyste mohli začít sledovat výkon svých sociálních médií.', '2026-01-19 22:56:41'),
(38569, 'da', 'socialmedia', 'No social media data available', 'Ingen sociale mediedata tilgængelige. <a href="seo-tools.php?menu_sec=sm-checker">Tilføj sociale medie links</a> for at begynde at spore din sociale mediepræstation.', '2026-01-19 22:56:41'),
(38570, 'de', 'socialmedia', 'No social media data available', 'Keine Social-Media-Daten verfügbar. <a href="seo-tools.php?menu_sec=sm-checker">Fügen Sie Social-Media-Links hinzu</a>, um Ihre Social-Media-Leistung zu verfolgen.', '2026-01-19 22:56:41'),
(38571, 'el', 'socialmedia', 'No social media data available', 'Δεν υπάρχουν διαθέσιμα δεδομένα κοινωνικών μέσων. <a href="seo-tools.php?menu_sec=sm-checker">Προσθέστε συνδέσμους κοινωνικών μέσων</a> για να ξεκινήσετε την παρακολούθηση της απόδοσης των κοινωνικών σας μέσων.', '2026-01-19 22:56:41'),
(30312, 'hr', 'home', 'Backlinks', 'Povratne poveznice', '2025-11-21 01:00:22'),
(30313, 'hr', 'home', 'Directory Submission', 'Slanje u direktorij', '2025-11-21 01:00:22'),
(30311, 'hr', 'home', 'Account Summary', 'Račun Summary', '2025-11-21 01:00:22'),
(30310, 'hr', 'guest', 'Why Choose SEO Panel?', 'Why Choose SEO Panel?', '2025-11-21 01:00:22'),
(30309, 'hr', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-11-21 01:00:22'),
(30308, 'hr', 'guest', 'View Demo', 'Prikaži Demo', '2025-11-21 01:00:22'),
(30307, 'hr', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their Web stranice.', '2025-11-21 01:00:22'),
(30306, 'hr', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-11-21 01:00:22'),
(30305, 'hr', 'guest', 'Support Development', 'Support Development', '2025-11-21 01:00:22'),
(30304, 'hr', 'guest', 'Social Media Integration desc', 'Integrate with Google Analitika, Pretraži Console, and Društveni mediji platforms for comprehensive izvještavanje.', '2025-11-21 01:00:22'),
(30303, 'hr', 'guest', 'Social Media Integration', 'Društveni mediji Integration', '2025-11-21 01:00:22'),
(30302, 'hr', 'guest', 'Site Auditor desc', 'Provjeri sve SEO faktore svake stranice and generiraj XML, HTML i TEXT karte stranice za tražilice.', '2025-11-21 01:00:22'),
(30301, 'hr', 'guest', 'Search Engine Saturation desc', 'Find the number of indexed pages across different Tražilice and monitor your indexing progress.', '2025-11-21 01:00:22'),
(30300, 'hr', 'guest', 'Resources & Support', 'Resources & Support', '2025-11-21 01:00:22'),
(30299, 'hr', 'guest', 'Rank Checker desc', 'Check Google PageRank, Alexa rang, and Moz Rang s sveobuhvatnim dnevnim praćenjem i izvještavanjem.', '2025-11-21 01:00:22'),
(30298, 'hr', 'guest', 'Powerful SEO Features', 'Powerful SEO Značajke', '2025-11-21 01:00:22'),
(30297, 'hr', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful Dodaci including Article Submitter, Meta Tag Generator, and more.', '2025-11-21 01:00:22'),
(30296, 'hr', 'guest', 'Plugin Architecture', 'Dodatak Architecture', '2025-11-21 01:00:22'),
(30295, 'hr', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited Web stranice Od a single control panel with centralized izvještavanje.', '2025-11-21 01:00:22'),
(30294, 'hr', 'guest', 'Multi-Website Support', 'Multi-Web stranica Support', '2025-11-21 01:00:22'),
(30293, 'hr', 'guest', 'Login to Get Started', 'Prijava to Get Started', '2025-11-21 01:00:22'),
(30292, 'hr', 'guest', 'Keyword Position Checker desc', 'Track your Ključna riječ rankings across multiple Tražilice with detailed daily Izvješća and beautiful graphs.', '2025-11-21 01:00:22'),
(30290, 'hr', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-11-21 01:00:22'),
(30291, 'hr', 'guest', 'Highly Extensible desc', 'Easily develop and install custom Dodaci to extend functionality according to your needs.', '2025-11-21 01:00:22'),
(30289, 'hr', 'guest', 'Hero subtitle', 'World''s Prvo Otvori Source SEO Control Panel for Multiple Web stranice', '2025-11-21 01:00:22'),
(30288, 'hr', 'guest', 'Hero description', 'A complete Otvori source SEO control panel for managing Tražilica optimization of your Web stranice. SEO Panel is a powerful toolkit that includes the latest SEO alati to increase and track the performance of your Web stranice.', '2025-11-21 01:00:22'),
(30287, 'hr', 'guest', 'Get Support', 'Get Support', '2025-11-21 01:00:22'),
(30286, 'hr', 'guest', 'Download SEO Panel', 'Preuzmi SEO Panel', '2025-11-21 01:00:22'),
(30285, 'hr', 'guest', 'Documentation', 'Documentation', '2025-11-21 01:00:22'),
(30284, 'hr', 'guest', 'Directory Submission desc', 'Automatically Pošalji your Web stranice to major free and paid directories with Status praćenje.', '2025-11-21 01:00:22'),
(30283, 'hr', 'guest', 'Contact Us', 'Kontakt Us', '2025-11-21 01:00:22'),
(30282, 'hr', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-11-21 01:00:22'),
(30281, 'hr', 'guest', 'Browse Plugins', 'Browse Dodaci', '2025-11-21 01:00:22'),
(30280, 'hr', 'guest', 'Backlinks Checker desc', 'Monitor the number of Povratne poveznice Od major Tražilice and track your link building progress over time.', '2025-11-21 01:00:22'),
(30278, 'hr', 'guest', '100% Open Source', '100% Otvori Source', '2025-11-21 01:00:22'),
(30279, 'hr', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. Preuzmi, customize, and use without any restrictions.', '2025-11-21 01:00:22'),
(30277, 'hr', 'directory', 'Website Url', 'URL web stranice', '2025-11-21 01:00:22'),
(30276, 'hr', 'directory', 'Website Category', 'Web stranica Kategorija', '2025-11-21 01:00:22'),
(30275, 'hr', 'directory', 'Submit Title', 'Pošalji Naslov', '2025-11-21 01:00:22'),
(30274, 'hr', 'directory', 'Submit Keywords', 'Pošalji Ključne riječi', '2025-11-21 01:00:22'),
(30273, 'hr', 'directory', 'Submit Description', 'Pošalji Opis', '2025-11-21 01:00:22'),
(30272, 'hr', 'directory', 'Submission Details', 'Slanje Detalji', '2025-11-21 01:00:22'),
(30271, 'hr', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary E-pošta address.', '2025-11-21 01:00:22'),
(30270, 'hr', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi Alat za automatsko slanje u direktorij', '2025-11-21 01:00:22'),
(30269, 'hr', 'directory', 'selectwebsiteschecksub', 'Odaberi <b>Web stranica</b> to <b>Nastavi</b> check Slanje u direktorij.', '2025-11-21 01:00:22'),
(30268, 'hr', 'directory', 'selectwebsiteproceed', 'Odaberi <b>Web stranica</b> to <b>Nastavi</b> Slanje u direktorij.<br>Check <b>Directories with out captcha</b> to Pošalji to directories with out captcha', '2025-11-21 01:00:22'),
(30267, 'hr', 'directory', 'Reciprocal Link', 'Reciprocal Link', '2025-11-21 01:00:22'),
(30265, 'hr', 'directory', 'Pending', 'Na čekanju', '2025-11-21 01:00:22'),
(30266, 'hr', 'directory', 'Please select a website to proceed', 'Molimo odaberite web stranicu za nastavak', '2025-11-21 01:00:22'),
(30264, 'hr', 'directory', 'Owner Name', 'Owner Ime', '2025-11-21 01:00:22'),
(30263, 'hr', 'directory', 'Owner Email', 'Owner E-pošta', '2025-11-21 01:00:22'),
(30262, 'hr', 'directory', 'optionalnote', 'Optional titles and descriptions to Pošalji random Naslov and Opis to directories for better Rezultati.', '2025-11-21 01:00:22'),
(30261, 'hr', 'directory', 'nosuccessnote', 'Niste dobili poruku o uspjehu, Molimo provjerite svoju poštu za poruku potvrde', '2025-11-21 01:00:22'),
(30260, 'hr', 'directory', 'nodirnote', 'No <b>Aktivan</b> directories Found', '2025-11-21 01:00:22'),
(30259, 'hr', 'directory', 'nocatnote', 'Kategorija slanja nije pronađena na stranici slanja. Please Kliknite na <b>Učitaj ponovno</b> or <b>Preskoči</b>', '2025-11-21 01:00:22'),
(30258, 'hr', 'directory', 'Enter the code shown', 'Unesite prikazani kod', '2025-11-21 01:00:22'),
(30257, 'hr', 'directory', 'Directory Submission Reports', 'Slanje u direktorij Izvješća', '2025-11-21 01:00:22'),
(30256, 'hr', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Link', '2025-11-21 01:00:22'),
(30255, 'hr', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2025-11-21 01:00:22'),
(30254, 'hr', 'directory', 'desnote', 'Some directories require minimum 150 characters for the Opis field.', '2025-11-21 01:00:22'),
(30253, 'hr', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured Slanje!', '2025-11-21 01:00:22'),
(30252, 'hr', 'directory', 'Coupon Offer', 'Coupon Offer', '2025-11-21 01:00:22'),
(30251, 'hr', 'directory', 'Coupon Code', 'Coupon Code', '2025-11-21 01:00:22'),
(30250, 'hr', 'directory', 'Confirmation', 'Potvrda', '2025-11-21 01:00:22'),
(30249, 'hr', 'directory', 'clicktoproceeddirsts', 'Kliknite na <b>Nastavi</b> to Provjeri Status direktorija.', '2025-11-21 01:00:22'),
(30248, 'hr', 'directory', 'clickaddfeatureddirectory', 'Kliknite ovdje da dodate svoj istaknuti direktorij', '2025-11-21 01:00:22'),
(30246, 'hr', 'directory', 'Check Directory Status', 'Provjeri status direktorija', '2025-11-21 01:00:22'),
(30247, 'hr', 'directory', 'Check Directory Submission Status', 'Provjeri status slanja u direktorij', '2025-11-21 01:00:22'),
(30244, 'hr', 'directory', 'Captcha', 'Captcha', '2025-11-21 01:00:22'),
(30245, 'hr', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. Početak with Top priority Kategorija.', '2025-11-21 01:00:22'),
(30243, 'hr', 'directory', 'Approved', 'Odobreno', '2025-11-21 01:00:22'),
(30242, 'hr', 'directory', 'Add back to directory list', 'Dodaj natrag na popis direktorija', '2025-11-21 01:00:22'),
(30241, 'hr', 'dashboard', 'Worst Rank', 'Worst Rang', '2025-11-21 01:00:22'),
(30240, 'hr', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility Ocjena (Standard Deviation)', '2025-11-21 01:00:22'),
(30239, 'hr', 'dashboard', 'Volatility Score', 'Volatility Ocjena', '2025-11-21 01:00:22'),
(30238, 'hr', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'Podaci o volatilnosti zahtijevaju najmanje 2 provjere ranga unutar odabranog razdoblja.', '2025-11-21 01:00:22'),
(30237, 'hr', 'dashboard', 'Volatility', 'Volatility', '2025-11-21 01:00:22'),
(30236, 'hr', 'dashboard', 'Trend', 'Trend', '2025-11-21 01:00:22'),
(30235, 'hr', 'dashboard', 'Top 3', 'Top 3', '2025-11-21 01:00:22'),
(30234, 'hr', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile Ključne riječi', '2025-11-21 01:00:22'),
(30233, 'hr', 'dashboard', 'Top 10', 'Top 10', '2025-11-21 01:00:22'),
(30232, 'hr', 'dashboard', 'Ranking Volatility', 'Ranking Volatility', '2025-11-21 01:00:22'),
(30231, 'hr', 'dashboard', 'positions', 'positions', '2025-11-21 01:00:22'),
(30230, 'hr', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-11-21 01:00:22'),
(30229, 'hr', 'dashboard', 'Keywords with most ranking fluctuations', 'Ključne riječi with most ranking fluctuations', '2025-11-21 01:00:22'),
(30228, 'hr', 'dashboard', 'Keywords by Ranking Position', 'Ključne riječi by Ranking Pozicija', '2025-11-21 01:00:22'),
(30227, 'hr', 'dashboard', 'Keyword Statistics', 'Ključna riječ Statistics', '2025-11-21 01:00:22'),
(30226, 'hr', 'dashboard', 'Keyword Distribution by Rank', 'Ključna riječ Distribution by Rang', '2025-11-21 01:00:22'),
(30225, 'hr', 'dashboard', 'Best Rank', 'Best Rang', '2025-11-21 01:00:22'),
(30224, 'hr', 'dashboard', 'Avg Rank', 'Avg Rang', '2025-11-21 01:00:22'),
(30223, 'hr', 'common', 'Yes', 'Da', '2025-11-21 01:00:22'),
(30222, 'hr', 'common', 'Websites Count', 'Web stranice Broj', '2025-11-21 01:00:22'),
(30221, 'hr', 'common', 'Website', 'Web stranica', '2025-11-21 01:00:22'),
(30220, 'hr', 'common', 'Warnings', 'Warnings', '2025-11-21 01:00:22'),
(30219, 'hr', 'common', 'User Type', 'Korisnik Vrsta', '2025-11-21 01:00:22'),
(30218, 'hr', 'common', 'User Panel', 'Korisnik Panel', '2025-11-21 01:00:22'),
(30216, 'hr', 'common', 'Url', 'URL', '2025-11-21 01:00:22'),
(30217, 'hr', 'common', 'User', 'Korisnik', '2025-11-21 01:00:22'),
(30215, 'hr', 'common', 'Total', 'Ukupno', '2025-11-21 01:00:22'),
(30214, 'hr', 'common', 'Tools', 'Alati', '2025-11-21 01:00:22'),
(30213, 'hr', 'common', 'Thank you', 'Thank you', '2025-11-21 01:00:22'),
(30212, 'hr', 'common', 'Support', 'Support', '2025-11-21 01:00:22'),
(30210, 'hr', 'common', 'Spam Score', 'Spam Ocjena', '2025-11-21 01:00:22'),
(30211, 'hr', 'common', 'Status', 'Status', '2025-11-21 01:00:22'),
(30209, 'hr', 'common', 'Source', 'Source', '2025-11-21 01:00:22'),
(30208, 'hr', 'common', 'signin', 'Prijavite se', '2025-11-21 01:00:22'),
(30206, 'hr', 'common', 'Sign out', 'Odjavite se', '2025-11-21 01:00:22'),
(30207, 'hr', 'common', 'Sign Up', 'Registriraj se', '2025-11-21 01:00:22'),
(30204, 'hr', 'common', 'Seo Tools', 'SEO alati', '2025-11-21 01:00:22'),
(30205, 'hr', 'common', 'Server', 'Server', '2025-11-21 01:00:22'),
(30202, 'hr', 'common', 'Select', 'Odaberi', '2025-11-21 01:00:22'),
(30203, 'hr', 'common', 'Seo Plugins', 'SEO dodaci', '2025-11-21 01:00:22'),
(30201, 'hr', 'common', 'Search Engine Count', 'Tražilica Broj', '2025-11-21 01:00:22'),
(30200, 'hr', 'common', 'Search Engine', 'Tražilica', '2025-11-21 01:00:22'),
(30199, 'hr', 'common', 'Sample CSV File', 'Sample CSV File', '2025-11-21 01:00:22'),
(30198, 'hr', 'common', 'Results', 'Rezultati', '2025-11-21 01:00:22'),
(30197, 'hr', 'common', 'Reports', 'Izvješća', '2025-11-21 01:00:22'),
(30196, 'hr', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification Neuspjelo', '2025-11-21 01:00:22'),
(30149, 'hr', 'common', 'Found', 'Found', '2025-11-21 01:00:22'),
(30150, 'hr', 'common', 'General', 'General', '2025-11-21 01:00:22'),
(30151, 'hr', 'common', 'Google Pagerank', 'Google Pagerank', '2025-11-21 01:00:22'),
(30152, 'hr', 'common', 'Hello', 'Hello', '2025-11-21 01:00:22'),
(30153, 'hr', 'common', 'help', 'Pomoć', '2025-11-21 01:00:22'),
(30154, 'hr', 'common', 'hidenews', 'Hide Seo Panel News', '2025-11-21 01:00:22'),
(30155, 'hr', 'common', 'Home', 'Početna', '2025-11-21 01:00:22'),
(30156, 'hr', 'common', 'Id', 'Id', '2025-11-21 01:00:22'),
(30157, 'hr', 'common', 'Inactivate', 'Inactivate', '2025-11-21 01:00:22'),
(30158, 'hr', 'common', 'Inactive', 'Inactive', '2025-11-21 01:00:22'),
(30159, 'hr', 'common', 'Internal error occured', 'Internal Greška occured', '2025-11-21 01:00:22'),
(30160, 'hr', 'common', 'Invalid characters', 'Invalid characters', '2025-11-21 01:00:22'),
(30161, 'hr', 'common', 'Invalid code entered', 'Unesen je neispravan kod', '2025-11-21 01:00:22'),
(30162, 'hr', 'common', 'Invalid email address entered', 'Unesena je neispravna adresa e-pošte', '2025-11-21 01:00:22'),
(30163, 'hr', 'common', 'Invalid Url', 'Invalid URL', '2025-11-21 01:00:22'),
(30164, 'hr', 'common', 'Invalid value', 'Invalid Vrijednost', '2025-11-21 01:00:22'),
(30165, 'hr', 'common', 'Keyword', 'Ključna riječ', '2025-11-21 01:00:22'),
(30166, 'hr', 'common', 'Keywords', 'Ključne riječi', '2025-11-21 01:00:22'),
(30167, 'hr', 'common', 'Keywords Count', 'Ključne riječi Broj', '2025-11-21 01:00:22'),
(30168, 'hr', 'common', 'lang', 'Jezik', '2025-11-21 01:00:22'),
(30169, 'hr', 'common', 'Link', 'Link', '2025-11-21 01:00:22'),
(30170, 'hr', 'common', 'Logout', 'Odjava', '2025-11-21 01:00:22'),
(30171, 'hr', 'common', 'Metric', 'Metric', '2025-11-21 01:00:22'),
(30172, 'hr', 'common', 'MOZ Rank', 'MOZ Rang', '2025-11-21 01:00:22'),
(30173, 'hr', 'common', 'My Account', 'Moj račun', '2025-11-21 01:00:22'),
(30174, 'hr', 'Common', 'Name', 'Ime', '2025-11-21 01:00:22'),
(30175, 'hr', 'common', 'New User Type', 'Novo Korisnik Vrsta', '2025-11-21 01:00:22'),
(30176, 'hr', 'common', 'No', 'Ne', '2025-11-21 01:00:22'),
(30177, 'hr', 'common', 'No Keywords Found', 'No Ključne riječi Found', '2025-11-21 01:00:22'),
(30178, 'hr', 'common', 'No Records Found', 'Nema pronađenih zapisa', '2025-11-21 01:00:22'),
(30179, 'hr', 'common', 'noactivetools', 'No Aktivan SEO alati Found!', '2025-11-21 01:00:22'),
(30180, 'hr', 'common', 'nowebsites', 'No Web stranice Found', '2025-11-21 01:00:22'),
(30181, 'hr', 'common', 'Number', 'Number', '2025-11-21 01:00:22'),
(30182, 'hr', 'common', 'Page Authority', 'Autoritet stranice', '2025-11-21 01:00:22'),
(30183, 'hr', 'common', 'Pagerank', 'Pagerank', '2025-11-21 01:00:22'),
(30184, 'hr', 'common', 'password632', 'The Lozinka string should have a length between 6 and 32', '2025-11-21 01:00:22'),
(30185, 'hr', 'common', 'passwordnotmatch', 'The passwords do not match', '2025-11-21 01:00:22'),
(30186, 'hr', 'common', 'Period', 'Period', '2025-11-21 01:00:22'),
(30187, 'hr', 'common', 'Plugins', 'Dodaci', '2025-11-21 01:00:22'),
(30188, 'hr', 'common', 'Powered by', 'Powered by', '2025-11-21 01:00:22'),
(30189, 'hr', 'common', 'Price', 'Price', '2025-11-21 01:00:22'),
(30190, 'hr', 'common', 'Pricing', 'Pricing', '2025-11-21 01:00:22'),
(30191, 'hr', 'common', 'Priority', 'Priority', '2025-11-21 01:00:22'),
(30192, 'hr', 'common', 'Profile', 'Profil', '2025-11-21 01:00:22'),
(30193, 'hr', 'common', 'Range', 'Range', '2025-11-21 01:00:22'),
(30194, 'hr', 'common', 'Rank', 'Rang', '2025-11-21 01:00:22'),
(30195, 'hr', 'common', 'Rankings', 'Rankings', '2025-11-21 01:00:22'),
(30132, 'hr', 'common', 'Country', 'Zemlja', '2025-11-21 01:00:22'),
(30133, 'hr', 'common', 'Crawl Meta Data', 'Indeksiraj meta podatke', '2025-11-21 01:00:22'),
(30134, 'hr', 'common', 'Dashboard', 'Kontrolna ploča', '2025-11-21 01:00:22'),
(30135, 'hr', 'common', 'Date', 'Datum', '2025-11-21 01:00:22'),
(30136, 'hr', 'common', 'Debug', 'Otklanjanje grešaka', '2025-11-21 01:00:22'),
(30137, 'hr', 'common', 'Delete', 'Izbriši', '2025-11-21 01:00:22'),
(30138, 'hr', 'common', 'Details', 'Detalji', '2025-11-21 01:00:22'),
(30139, 'hr', 'common', 'Directory', 'Direktorij', '2025-11-21 01:00:22'),
(30140, 'hr', 'common', 'Domain Authority', 'Autoritet domene', '2025-11-21 01:00:22'),
(30141, 'hr', 'common', 'Donate', 'Doniraj', '2025-11-21 01:00:22'),
(30142, 'hr', 'common', 'Edit', 'Uredi', '2025-11-21 01:00:22'),
(30143, 'hr', 'common', 'Edit User Type', 'Uredi korisnika Vrsta', '2025-11-21 01:00:22'),
(30144, 'hr', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2025-11-21 01:00:22'),
(30145, 'hr', 'common', 'entrynotvalid', 'Uneseni unos ne čini se važećim', '2025-11-21 01:00:22'),
(30146, 'hr', 'common', 'Errors', 'Errors', '2025-11-21 01:00:22'),
(30147, 'hr', 'common', 'failed', 'Neuspjelo', '2025-11-21 01:00:22'),
(30148, 'hr', 'common', 'forum', 'Forum', '2025-11-21 01:00:22'),
(30119, 'hr', 'button', 'Submit', 'Pošalji', '2025-11-21 01:00:22'),
(30120, 'hr', 'common', 'Action', 'Radnja', '2025-11-21 01:00:22'),
(30121, 'hr', 'common', 'Activate', 'Aktiviraj', '2025-11-21 01:00:22'),
(30122, 'hr', 'common', 'Active', 'Aktivan', '2025-11-21 01:00:22'),
(30123, 'hr', 'common', 'Admin Panel', 'Admin panel', '2025-11-21 01:00:22'),
(30124, 'hr', 'common', 'Alexa Rank', 'Alexa rang', '2025-11-21 01:00:22'),
(30125, 'hr', 'common', 'All', 'Sve', '2025-11-21 01:00:22'),
(30126, 'hr', 'common', 'API Token', 'API token', '2025-11-21 01:00:22'),
(30127, 'hr', 'common', 'Blog', 'Blog', '2025-11-21 01:00:22'),
(30128, 'hr', 'common', 'Category', 'Kategorija', '2025-11-21 01:00:22'),
(30129, 'hr', 'common', 'Checked', 'Provjereno', '2025-11-21 01:00:22'),
(30130, 'hr', 'common', 'contact', 'Kontakt', '2025-11-21 01:00:22'),
(30131, 'hr', 'common', 'copyright', 'Copyright © [year] www.seopanel.org Sve rights reserved', '2025-11-21 01:00:22'),
(30118, 'hr', 'button', 'Skip', 'Preskoči', '2025-11-21 01:00:22'),
(30117, 'hr', 'button', 'Show Records', 'Prikaži zapise', '2025-11-21 01:00:22'),
(30116, 'hr', 'button', 'Show Details', 'Prikaži detalje', '2025-11-21 01:00:22'),
(30115, 'hr', 'button', 'Search', 'Pretraži', '2025-11-21 01:00:22'),
(30113, 'hr', 'button', 'Proceed', 'Nastavi', '2025-11-21 01:00:22'),
(30114, 'hr', 'button', 'Reload', 'Učitaj ponovno', '2025-11-21 01:00:22'),
(30112, 'hr', 'button', 'Check Status', 'Provjeri status', '2025-11-21 01:00:22'),
(30111, 'hr', 'button', 'Cancel', 'Otkaži', '2025-11-21 01:00:22'),
(30110, 'hr', 'blog', 'Older Posts', 'Starije objave', '2025-11-21 01:00:22'),
(30109, 'hr', 'blog', 'NothingFound_text2', 'Nažalost, ništa ne odgovara vašim kriterijima pretraživanja. Molimo pokušajte ponovno s nekim drugim ključnim riječima.', '2025-11-21 01:00:22'),
(30108, 'hr', 'blog', 'Nothing Found', 'Ništa nije pronađeno', '2025-11-21 01:00:22'),
(30107, 'hr', 'blog', 'Newer Posts', 'Novije objave', '2025-11-21 01:00:22'),
(30106, 'hr', 'backlink', 'Saved backlink results of', 'Spremljeno Povratna poveznica Rezultati of', '2025-11-21 01:00:22'),
(30105, 'hr', 'backlink', 'Domain Backlinks', 'Povratne poveznice domene', '2025-11-21 01:00:22'),
(30104, 'hr', 'backlink', 'Domain Backlink Count', 'Broj povratnih poveznica domene', '2025-11-21 01:00:22'),
(30103, 'hr', 'backlink', 'clickproceedbacklink', 'Unesite URL''s <b>Jedan po retku</b>. Kliknite na <b>Nastavi</b> to Provjeri povratne poveznice.', '2025-11-21 01:00:22'),
(30102, 'hr', 'backlink', 'Backlink Count', 'Broj povratnih poveznica', '2025-11-21 01:00:22'),
(30100, 'hr', 'api', 'API Guide', 'API Guide', '2025-11-21 01:00:22'),
(30101, 'hr', 'api', 'API Url', 'API URL', '2025-11-21 01:00:22'),
(30099, 'hr', 'analytics', 'view_id_not_found_error', 'Greška: Analitika Prikaži ID is not set for Web stranica. Uredi web stranicu and Ažuriraj Prikaži ID.', '2025-11-21 01:00:22'),
(30097, 'hr', 'analytics', 'Sessions', 'Sesije', '2025-11-21 01:00:22'),
(30098, 'hr', 'analytics', 'Users', 'Korisnici', '2025-11-21 01:00:22'),
(30096, 'hr', 'analytics', 'New Users', 'Novi korisnici', '2025-11-21 01:00:22'),
(30094, 'hr', 'analytics', 'Bounce Rate', 'Stopa napuštanja', '2025-11-21 01:00:22'),
(30095, 'hr', 'analytics', 'Goal Completions', 'Postignuća ciljeva', '2025-11-21 01:00:22'),
(30093, 'hr', 'analytics', 'Avg. Session Duration', 'Prosječno trajanje sesije', '2025-11-21 01:00:22'),
(33028, 'hy', 'settings', 'click-to-get-moz-account', 'Սեղմեք այստեղ to get MOZ Հաշիվ', '2025-11-21 01:13:08'),
(33027, 'hy', 'settings', 'click-to-get-google-api-key', 'Սեղմեք այստեղ to get Google API Key', '2025-11-21 01:13:08'),
(33026, 'hy', 'settings', 'click-to-get-google-api-client-id', 'Սեղմեք այստեղ to get Google API Client Id', '2025-11-21 01:13:08'),
(33025, 'hy', 'settings', 'click-to-get-dataforseo-account', 'Սեղմեք այստեղ to get Free DataForSEO Հաշիվ', '2025-11-21 01:13:08'),
(33024, 'hy', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Նվիրաբերել $100</b> and become a <b>sponsor</b> of Seo Panel.', '2025-11-21 01:13:08'),
(33023, 'hy', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another Պրոքսի When Crawling Ձախողված', '2025-11-21 01:13:08'),
(33022, 'hy', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Maximum number of proxies used in single execution', '2025-11-21 01:13:08'),
(33021, 'hy', 'settings', 'Check for Updates', 'Check for Updates', '2025-11-21 01:13:08'),
(33020, 'hy', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2025-11-21 01:13:08'),
(33019, 'hy', 'settings', 'API_SECRET', 'API Secret', '2025-11-21 01:13:08'),
(33018, 'hy', 'settings', 'allsettingssaved', 'Բոլորը Կարգավորումներ Պահպանված Հաջողությամբ!', '2025-11-21 01:13:08'),
(33017, 'hy', 'seotools', 'Website Search Summary', 'Կայք Որոնել Summary', '2025-11-21 01:13:08'),
(33016, 'hy', 'seotools', 'Website Search Reports', 'Կայք Որոնել Հաշվետվություններ', '2025-11-21 01:13:08'),
(33015, 'hy', 'seotools', 'Website Analytics Summary', 'Կայք Վերլուծություն Summary', '2025-11-21 01:13:08'),
(33014, 'hy', 'seotools', 'webmaster-tools', 'Վեբմաստերի գործիքներ', '2025-11-21 01:13:08'),
(33013, 'hy', 'seotools', 'web-analytics', 'Կայք Վերլուծություն', '2025-11-21 01:13:08'),
(33012, 'hy', 'seotools', 'User Access', 'Օգտատեր Access', '2025-11-21 01:13:08'),
(33011, 'hy', 'seotools', 'Submission Reports', 'Ներկայացում Հաշվետվություններ', '2025-11-21 01:13:08'),
(33010, 'hy', 'seotools', 'Social Media Report Summary', 'Սոցիալական մեդիա Հաշվետվություն Summary', '2025-11-21 01:13:08'),
(33009, 'hy', 'seotools', 'Social Media Links', 'Սոցիալական մեդիա Links', '2025-11-21 01:13:08'),
(33008, 'hy', 'seotools', 'sm-checker', 'Սոցիալական մեդիա Ստուգիչ', '2025-11-21 01:13:08'),
(33007, 'hy', 'seotools', 'Skipped Directories', 'Skipped Directories', '2025-11-21 01:13:08'),
(33006, 'hy', 'seotools', 'sitemap-generator', 'Կայքի քարտեզ Generator', '2025-11-21 01:13:08'),
(33005, 'hy', 'seotools', 'Sitemap Reports Summary', 'Կայքի քարտեզ Հաշվետվություններ Summary', '2025-11-21 01:13:08'),
(33004, 'hy', 'seotools', 'site-auditor', 'Կայքի աուդիտոր', '2025-11-21 01:13:08'),
(33003, 'hy', 'seotools', 'saturation-checker', 'Որոնիչի հագեցվածություն', '2025-11-21 01:13:08'),
(33002, 'hy', 'seotools', 'Saturation Reports', 'Հագեցվածություն Հաշվետվություններ', '2025-11-21 01:13:08'),
(33001, 'hy', 'seotools', 'review-manager', 'Ակնարկների կառավարիչ', '2025-11-21 01:13:08'),
(33000, 'hy', 'seotools', 'Review Report Summary', 'Ակնարկ Հաշվետվություն Summary', '2025-11-21 01:13:08'),
(32999, 'hy', 'seotools', 'Review Links', 'Ակնարկ Links', '2025-11-21 01:13:08'),
(32998, 'hy', 'seotools', 'rank-checker', 'Դիրքի ստուգում', '2025-11-21 01:13:08'),
(32997, 'hy', 'seotools', 'Rank Reports', 'Դիրք Հաշվետվություններ', '2025-11-21 01:13:08'),
(32996, 'hy', 'seotools', 'Quick Saturation Checker', 'Quick Հագեցվածության ստուգում', '2025-11-21 01:13:08'),
(32995, 'hy', 'seotools', 'Quick Rank Checker', 'Quick Դիրքի ստուգում', '2025-11-21 01:13:08'),
(32994, 'hy', 'seotools', 'Quick Position Checker', 'Quick Դիրք Ստուգիչ', '2025-11-21 01:13:08'),
(32993, 'hy', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed Ստուգիչ', '2025-11-21 01:13:08'),
(32992, 'hy', 'seotools', 'Quick Checker', 'Quick Ստուգիչ', '2025-11-21 01:13:08'),
(32991, 'hy', 'seotools', 'Quick Backlinks Checker', 'Quick Հետադարձ հղումներ Ստուգիչ', '2025-11-21 01:13:08'),
(32990, 'hy', 'seotools', 'PageSpeed Reports', 'PageSpeed Հաշվետվություններ', '2025-11-21 01:13:08'),
(32989, 'hy', 'seotools', 'pagespeed', 'PageSpeed Insights', '2025-11-21 01:13:08'),
(32988, 'hy', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for Հաշվետվություններ generation.\r\nThis Գործողություն may cause captcha in Որոնիչ results.', '2025-11-21 01:13:08'),
(32987, 'hy', 'seotools', 'Keywords Manager', 'Հիմնաբառեր Կառավարիչ', '2025-11-21 01:13:08'),
(32986, 'hy', 'seotools', 'keyword-position-checker', 'Հիմնաբառի դիրքը Ստուգիչ', '2025-11-21 01:13:08'),
(32985, 'hy', 'seotools', 'Keyword Search Summary', 'Հիմնաբառ Որոնել Summary', '2025-11-21 01:13:08'),
(32984, 'hy', 'seotools', 'Keyword Search Reports', 'Հիմնաբառ Որոնել Հաշվետվություններ', '2025-11-21 01:13:08'),
(32983, 'hy', 'seotools', 'Keyword Position Summary', 'Հիմնաբառի դիրքը Summary', '2025-11-21 01:13:08'),
(32982, 'hy', 'seotools', 'Import Project Links', 'Ներմուծել Project Links', '2025-11-21 01:13:08'),
(32981, 'hy', 'seotools', 'Graphical Reports', 'Graphical Հաշվետվություններ', '2025-11-21 01:13:08'),
(32980, 'hy', 'seotools', 'Graphical Position Reports', 'Graphical Դիրք Հաշվետվություններ', '2025-11-21 01:13:08'),
(32979, 'hy', 'seotools', 'Google Sitemap Generator', 'Google Կայքի քարտեզ Generator', '2025-11-21 01:13:08'),
(32978, 'hy', 'seotools', 'Generate Saturation Reports', 'Ստեղծել Հագեցվածություն Հաշվետվություններ', '2025-11-21 01:13:08'),
(32977, 'hy', 'seotools', 'Generate Reports', 'Ստեղծել Հաշվետվություններ', '2025-11-21 01:13:08'),
(32976, 'hy', 'seotools', 'Generate Rank Reports', 'Ստեղծել Դիրք Հաշվետվություններ', '2025-11-21 01:13:08'),
(32975, 'hy', 'seotools', 'Generate Keyword Reports', 'Ստեղծել Հիմնաբառ Հաշվետվություններ', '2025-11-21 01:13:08'),
(32974, 'hy', 'seotools', 'Generate Backlinks Reports', 'Ստեղծել Հետադարձ հղումներ Հաշվետվություններ', '2025-11-21 01:13:08'),
(32973, 'hy', 'seotools', 'Featured Submission', 'Featured Ներկայացում', '2025-11-21 01:13:08'),
(32972, 'hy', 'seotools', 'Edit Seo Tool', 'Խմբագրել Seo Գործիք', '2025-11-21 01:13:08'),
(32971, 'hy', 'seotools', 'directory-submission', 'Տեղեկատուի ներկայացում', '2025-11-21 01:13:08'),
(32970, 'hy', 'seotools', 'Detailed Reports', 'Detailed Հաշվետվություններ', '2025-11-21 01:13:08'),
(32969, 'hy', 'seotools', 'Detailed Position Reports', 'Detailed Դիրք Հաշվետվություններ', '2025-11-21 01:13:08'),
(32968, 'hy', 'seotools', 'clickproceedaction', 'Մուտքագրեք URL''s <b>Մեկը մեկ տողում</b>. Սեղմեք <b>Շարունակել</b> ստուգելու համար Results.', '2025-11-21 01:13:08'),
(32967, 'hy', 'seotools', 'clickgeneratereports', 'Սեղմեք <b>Շարունակել</b> to Ստեղծել Հաշվետվություններ', '2025-11-21 01:13:08'),
(32966, 'hy', 'seotools', 'Check Submission Status', 'Check Ներկայացում Կարգավիճակ', '2025-11-21 01:13:08'),
(32965, 'hy', 'seotools', 'Backlinks Reports', 'Հետադարձ հղումներ Հաշվետվություններ', '2025-11-21 01:13:08'),
(32964, 'hy', 'seotools', 'backlink-checker', 'Հետադարձ հղումներ Ստուգիչ', '2025-11-21 01:13:08'),
(32963, 'hy', 'seotools', 'Automatic Submission', 'Automatic Ներկայացում', '2025-11-21 01:13:08'),
(32962, 'hy', 'seotools', 'Auditor Settings', 'Auditor Կարգավորումներ', '2025-11-21 01:13:08'),
(32961, 'hy', 'seotools', 'Auditor Reports', 'Auditor Հաշվետվություններ', '2025-11-21 01:13:08'),
(32959, 'hy', 'searchengine', 'no_of_results_page', 'Number of results per page', '2025-11-21 01:13:08'),
(32960, 'hy', 'seotools', 'Auditor Projects', 'Auditor Projects', '2025-11-21 01:13:08'),
(32958, 'hy', 'searchengine', 'max_results', 'Maximum number of results', '2025-11-21 01:13:08'),
(32957, 'hy', 'saturation', 'Search Engine Saturation Reports', 'Որոնիչի հագեցվածություն Հաշվետվություններ', '2025-11-21 01:13:08'),
(32956, 'hy', 'saturation', 'Saved Search Engine Saturation results of', 'Պահպանված Որոնիչի հագեցվածություն results of', '2025-11-21 01:13:08'),
(32955, 'hy', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick Որոնիչի հագեցվածություն Ստուգիչ', '2025-11-21 01:13:08'),
(32954, 'hy', 'saturation', 'GenerateSaturationReports', 'Ստեղծել Որոնիչի հագեցվածություն Հաշվետվություններ', '2025-11-21 01:13:08'),
(32953, 'hy', 'saturation', 'clickproceedsaturation', 'Մուտքագրեք URL''s <b>Մեկը մեկ տողում</b>. Սեղմեք <b>Շարունակել</b> ստուգելու համար Որոնիչի հագեցվածություն Results', '2025-11-21 01:13:08'),
(32952, 'hy', 'review', 'New Review Link', 'Նոր Ակնարկ Link', '2025-11-21 01:13:08'),
(32950, 'hy', 'reports', 'Reports Generated Successfully', 'Հաշվետվություններ Generated Հաջողությամբ', '2025-11-21 01:13:08'),
(32951, 'hy', 'review', 'Edit Review Link', 'Խմբագրել Ակնարկ Link', '2025-11-21 01:13:08'),
(32949, 'hy', 'reports', 'report_email_subject', 'Your SEO Հաշվետվություններ generated Հաջողությամբ', '2025-11-21 01:13:08'),
(32948, 'hy', 'reports', 'report_email_body_text2', 'If above Հաշվետվություններ are not clear, Please [LOGIN_LINK] to Դիտել the Հաշվետվություններ directly Սկսած your Հաշիվ.', '2025-11-21 01:13:08'),
(32947, 'hy', 'reports', 'report_email_body_text1', 'Your Հաշվետվություններ generated Հաջողությամբ in seo panel. Please check the attached Հաշվետվություններ.', '2025-11-21 01:13:08'),
(32946, 'hy', 'report', 'sheduledsuccessfully', 'Scheduled Հաշվետվություն generation Հաջողությամբ!', '2025-11-21 01:13:08'),
(32945, 'hy', 'report', 'reportsettingssaved', 'Հաշվետվություն Կարգավորումներ Պահպանված Հաջողությամբ!', '2025-11-21 01:13:08'),
(32944, 'hy', 'report', 'Reports generation interval', 'Հաշվետվություններ generation interval', '2025-11-21 01:13:08'),
(32943, 'hy', 'report', 'Next report generation time', 'Հաջորդ Հաշվետվություն generation time', '2025-11-21 01:13:08'),
(32942, 'hy', 'report', 'keywordnumbercheckedcronnote', 'Note: Default 0 means Բոլորը Հիմնաբառեր should be Ստուգված', '2025-11-21 01:13:08'),
(32941, 'hy', 'report', 'Email notification', 'Էլ․ փոստ notification', '2025-11-21 01:13:08'),
(32939, 'hy', 'register', 'user_confirm_mail_cont_2', 'Please Սեղմեք the following link to confirm Գրանցում', '2025-11-21 01:13:08'),
(32940, 'hy', 'report', '2 Days', '2 Days', '2025-11-21 01:13:08'),
(32938, 'hy', 'register', 'user_confirm_mail_cont_1', 'Thank you for your Գրանցում with', '2025-11-21 01:13:08'),
(32937, 'hy', 'register', 'user_confirm_content_1', 'Internal Սխալ occured while processing confirm request', '2025-11-21 01:13:08'),
(32935, 'hy', 'register', 'Registration', 'Գրանցում', '2025-11-21 01:13:08'),
(32936, 'hy', 'register', 'Subscription Details', 'Բաժանորդագրություն Մանրամասներ', '2025-11-21 01:13:08'),
(32934, 'hy', 'register', 'Register subtitle', 'Join us Այսօր and Սկիզբ optimizing your SEO', '2025-11-21 01:13:08'),
(32932, 'hy', 'register', 'Last name placeholder', 'Ազգանուն', '2025-11-21 01:13:08'),
(32933, 'hy', 'register', 'Personal Information', 'Personal Տեղեկություն', '2025-11-21 01:13:08'),
(32931, 'hy', 'register', 'First name placeholder', 'Անուն', '2025-11-21 01:13:08'),
(32930, 'hy', 'register', 'Already have account', 'Already have an Հաշիվ?', '2025-11-21 01:13:08'),
(32929, 'hy', 'register', 'Account Information', 'Հաշիվ Տեղեկություն', '2025-11-21 01:13:08'),
(32928, 'hy', 'rank', 'Saved rank results of', 'Պահպանված Դիրքի արդյունքներ of', '2025-11-21 01:13:08'),
(32927, 'hy', 'rank', 'Google and Alexa Rank Reports', 'Google and Alexa դիրք Հաշվետվություններ', '2025-11-21 01:13:08'),
(32926, 'hy', 'rank', 'enterurlproceed', 'Մուտքագրեք URL''s <b>Մեկը մեկ տողում</b>. Սեղմեք <b>Շարունակել</b> ստուգելու համար Google and Alexa դիրք.', '2025-11-21 01:13:08'),
(32925, 'hy', 'QuickWebProxy', 'Web Server', 'Web Server', '2025-11-21 01:13:08'),
(32924, 'hy', 'QuickWebProxy', 'Web Proxy', 'Web Պրոքսի', '2025-11-21 01:13:08'),
(32923, 'hy', 'QuickWebProxy', 'Url blocked in the web proxy', 'URL blocked in the web Պրոքսի', '2025-11-21 01:13:08'),
(32922, 'hy', 'QuickWebProxy', 'Server list is empty', 'Server list is empty', '2025-11-21 01:13:08'),
(32921, 'hy', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web Պրոքսի.', '2025-11-21 01:13:08'),
(32920, 'hy', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web Պրոքսի', '2025-11-21 01:13:08'),
(32919, 'hy', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a Պրոքսի', '2025-11-21 01:13:08'),
(32908, 'hy', 'proxy', 'click-to-get-proxy', 'Սեղմեք այստեղ to get Պրոքսի', '2025-11-21 01:13:08'),
(32909, 'hy', 'proxy', 'Edit Proxy', 'Խմբագրել Պրոքսի', '2025-11-21 01:13:08'),
(32910, 'hy', 'proxy', 'enterproxynote', 'Enter Պրոքսի Մեկը մեկ տողում in following format.', '2025-11-21 01:13:08'),
(32911, 'hy', 'proxy', 'Proxy Password', 'Պրոքսի Գաղտնաբառ', '2025-11-21 01:13:08'),
(32912, 'hy', 'proxy', 'Proxy Username', 'Պրոքսի Օգտանուն', '2025-11-21 01:13:08'),
(32913, 'hy', 'proxy', 'Proxyalreadyexist', 'Պրոքսի already exist!', '2025-11-21 01:13:08'),
(32914, 'hy', 'proxy', 'proxysyntax', 'Պրոքսի Hostname, Պրոքսի Port, Պրոքսի Օգտանուն, Պրոքսի Գաղտնաբառ', '2025-11-21 01:13:08'),
(32915, 'hy', 'proxy', 'Request Count', 'Request Քանակ', '2025-11-21 01:13:08'),
(32916, 'hy', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2025-11-21 01:13:08'),
(32917, 'hy', 'QuickWebProxy', 'Please enter a valid url', 'Please enter a valid URL', '2025-11-21 01:13:08'),
(32918, 'hy', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow Օգտատեր to access the web Պրոքսի', '2025-11-21 01:13:08'),
(32872, 'hy', 'panel', 'My Profile', 'My Պրոֆիլ', '2025-11-21 01:13:08'),
(32873, 'hy', 'panel', 'New Project', 'Նոր Project', '2025-11-21 01:13:08'),
(32874, 'hy', 'panel', 'New Proxy', 'Նոր Պրոքսի', '2025-11-21 01:13:08'),
(32875, 'hy', 'panel', 'New User', 'Նոր Օգտատեր', '2025-11-21 01:13:08'),
(32876, 'hy', 'panel', 'New User Type', 'Նոր Օգտատեր Տեսակ', '2025-11-21 01:13:08'),
(32877, 'hy', 'panel', 'New Website', 'Նոր Կայք', '2025-11-21 01:13:08'),
(32878, 'hy', 'panel', 'Project Manager', 'Project Կառավարիչ', '2025-11-21 01:13:08'),
(32879, 'hy', 'panel', 'Project Summary', 'Project Summary', '2025-11-21 01:13:08'),
(32880, 'hy', 'panel', 'Proxy Manager', 'Պրոքսի Կառավարիչ', '2025-11-21 01:13:08'),
(32881, 'hy', 'panel', 'Proxy Perfomance', 'Պրոքսի Perfomance', '2025-11-21 01:13:08'),
(32882, 'hy', 'panel', 'Proxy Settings', 'Պրոքսիի կարգավորումներ', '2025-11-21 01:13:08'),
(32883, 'hy', 'panel', 'Report Generation Logs', 'Հաշվետվություն Generation Logs', '2025-11-21 01:13:08'),
(32884, 'hy', 'panel', 'Report Generation Manager', 'Հաշվետվություն Generation Կառավարիչ', '2025-11-21 01:13:08'),
(32885, 'hy', 'panel', 'Report Settings', 'Հաշվետվություն Կարգավորումներ', '2025-11-21 01:13:08'),
(32886, 'hy', 'panel', 'Reports Manager', 'Հաշվետվություններ Կառավարիչ', '2025-11-21 01:13:08'),
(32887, 'hy', 'panel', 'Schedule Reports', 'Schedule Հաշվետվություններ', '2025-11-21 01:13:08'),
(32888, 'hy', 'panel', 'Search Engine Manager', 'Որոնիչ Կառավարիչ', '2025-11-21 01:13:08'),
(32889, 'hy', 'panel', 'Seo Plugins Manager', 'SEO հավելումներ Կառավարիչ', '2025-11-21 01:13:08'),
(32890, 'hy', 'panel', 'Seo Tools Manager', 'SEO գործիքներ Կառավարիչ', '2025-11-21 01:13:08'),
(32891, 'hy', 'panel', 'Settings', 'Կարգավորումներ', '2025-11-21 01:13:08'),
(32892, 'hy', 'panel', 'Sitemaps', 'Sitemaps', '2025-11-21 01:13:08'),
(32893, 'hy', 'panel', 'Submit Sitemap', 'Ուղարկել Կայքի քարտեզ', '2025-11-21 01:13:08'),
(32894, 'hy', 'panel', 'Sync Search Engines', 'Sync Որոնիչներ', '2025-11-21 01:13:08'),
(32895, 'hy', 'panel', 'System Settings', 'Համակարգի կարգավորումներ', '2025-11-21 01:13:08'),
(32896, 'hy', 'panel', 'Test Email Settings', 'Test Էլ․ փոստի կարգավորումներ', '2025-11-21 01:13:08'),
(32897, 'hy', 'panel', 'Themes Manager', 'Themes Կառավարիչ', '2025-11-21 01:13:08'),
(32898, 'hy', 'panel', 'User Manager', 'Օգտատեր Կառավարիչ', '2025-11-21 01:13:08'),
(32899, 'hy', 'panel', 'User Type Manager', 'Օգտատեր Տեսակ Կառավարիչ', '2025-11-21 01:13:08'),
(32900, 'hy', 'panel', 'User Type Settings', 'Օգտատեր Տեսակ Կարգավորումներ', '2025-11-21 01:13:08'),
(32901, 'hy', 'panel', 'Valid', 'Valid', '2025-11-21 01:13:08'),
(32902, 'hy', 'panel', 'Website Access Manager', 'Կայք Access Կառավարիչ', '2025-11-21 01:13:08'),
(32903, 'hy', 'panel', 'Website Manager', 'Կայք Կառավարիչ', '2025-11-21 01:13:08'),
(32904, 'hy', 'plugin', 'Download Seo Panel Plugins', 'Ներբեռնել Seo Panel Հավելումներ', '2025-11-21 01:13:08'),
(32905, 'hy', 'plugin', 'Edit Seo Plugin', 'Խմբագրել Seo Հավելում', '2025-11-21 01:13:08'),
(32906, 'hy', 'plugin', 'Plugin Name', 'Հավելում Անուն', '2025-11-21 01:13:08'),
(32907, 'hy', 'plugin', 'Seo Plugin Details', 'Seo Հավելում Մանրամասներ', '2025-11-21 01:13:08'),
(32865, 'hy', 'panel', 'Google Settings', 'Google Կարգավորումներ', '2025-11-21 01:13:08'),
(32866, 'hy', 'panel', 'Import Proxy', 'Ներմուծել Պրոքսի', '2025-11-21 01:13:08'),
(32867, 'hy', 'panel', 'Import Websites', 'Ներմուծել Կայքեր', '2025-11-21 01:13:08'),
(32868, 'hy', 'panel', 'Log Manager', 'Log Կառավարիչ', '2025-11-21 01:13:08'),
(32869, 'hy', 'panel', 'Mail Log Manager', 'Mail Log Կառավարիչ', '2025-11-21 01:13:08'),
(32870, 'hy', 'panel', 'Mail Settings', 'Mail Կարգավորումներ', '2025-11-21 01:13:08'),
(32871, 'hy', 'panel', 'MOZ Settings', 'MOZ Կարգավորումներ', '2025-11-21 01:13:08'),
(32864, 'hy', 'panel', 'Global Reports Settings', 'Global Հաշվետվություններ Կարգավորումներ', '2025-11-21 01:13:08'),
(32863, 'hy', 'panel', 'Existing', 'Existing', '2025-11-21 01:13:08'),
(32862, 'hy', 'panel', 'Edit Project', 'Խմբագրել Project', '2025-11-21 01:13:08'),
(32861, 'hy', 'panel', 'Edit My Profile', 'Խմբագրել My Պրոֆիլ', '2025-11-21 01:13:08'),
(32860, 'hy', 'panel', 'Directory Manager', 'Տեղեկատու Կառավարիչ', '2025-11-21 01:13:08'),
(32858, 'hy', 'panel', 'Current Time', 'Current Time', '2025-11-21 01:13:08'),
(32859, 'hy', 'panel', 'DataForSEO Settings', 'DataForSEO Կարգավորումներ', '2025-11-21 01:13:08'),
(32857, 'hy', 'panel', 'Cron Command', 'Cron Command', '2025-11-21 01:13:08');
INSERT INTO `texts` VALUES
(32856, 'hy', 'panel', 'Crawl Log Manager', 'Սողոսկում Log Կառավարիչ', '2025-11-21 01:13:08'),
(32855, 'hy', 'panel', 'Connections', 'Connections', '2025-11-21 01:13:08'),
(32854, 'hy', 'panel', 'Check Directory', 'Check Տեղեկատու', '2025-11-21 01:13:08'),
(32853, 'hy', 'panel', 'Archived Reports', 'Archived Հաշվետվություններ', '2025-11-21 01:13:08'),
(32852, 'hy', 'panel', 'API Settings', 'API Կարգավորումներ', '2025-11-21 01:13:08'),
(32851, 'hy', 'panel', 'API Manager', 'API Կառավարիչ', '2025-11-21 01:13:08'),
(32850, 'hy', 'panel', 'API Connection', 'API Connection', '2025-11-21 01:13:08'),
(32848, 'hy', 'panel', 'Alerts', 'Alerts', '2025-11-21 01:13:08'),
(32849, 'hy', 'panel', 'alsocheckfollowlink', 'Also check following link if you need more Մանրամասներ.', '2025-11-21 01:13:08'),
(32847, 'hy', 'panel', 'Add following command to your cron tab', 'Ավելացնել following command to your cron tab', '2025-11-21 01:13:08'),
(32846, 'hy', 'panel', 'About Us', 'About Us', '2025-11-21 01:13:08'),
(32844, 'hy', 'pagespeed', 'PageSpeed Details', 'PageSpeed Մանրամասներ', '2025-11-21 01:13:08'),
(32845, 'hy', 'pagespeed', 'Saved page speed results of', 'Պահպանված Էջի արագություն results of', '2025-11-21 01:13:08'),
(32843, 'hy', 'pagespeed', 'Page Speed', 'Էջի արագություն', '2025-11-21 01:13:08'),
(32842, 'hy', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2025-11-21 01:13:08'),
(32841, 'hy', 'pagespeed', 'Mobile Speed', 'Mobile Speed', '2025-11-21 01:13:08'),
(32840, 'hy', 'pagespeed', 'Desktop Speed', 'Desktop Speed', '2025-11-21 01:13:08'),
(32839, 'hy', 'myaccount', 'Disconnected', 'Disconnected', '2025-11-21 01:13:08'),
(32838, 'hy', 'myaccount', 'Disconnect', 'Disconnect', '2025-11-21 01:13:08'),
(32837, 'hy', 'myaccount', 'Connected', 'Connected', '2025-11-21 01:13:08'),
(32836, 'hy', 'myaccount', 'Connect', 'Connect', '2025-11-21 01:13:08'),
(32835, 'hy', 'login', 'Your Password Reset Successfully', 'Your Գաղտնաբառ Reset Հաջողությամբ', '2025-11-21 01:13:08'),
(32834, 'hy', 'login', 'Your Password Reset Failed', 'Your Գաղտնաբառ Reset Ձախողված', '2025-11-21 01:13:08'),
(32833, 'hy', 'login', 'Your account password is resetted and new password is', 'Your Հաշիվ Գաղտնաբառ is resetted and Նոր գաղտնաբառ is', '2025-11-21 01:13:08'),
(32832, 'hy', 'login', 'Your account activated successfully', 'Your Հաշիվ Ակտիվացված Հաջողությամբ', '2025-11-21 01:13:08'),
(32831, 'hy', 'login', 'Welcome message', 'Welcome Հետ! Please Մուտք to your Հաշիվ', '2025-11-21 01:13:08'),
(32830, 'hy', 'login', 'Verification', 'Verification', '2025-11-21 01:13:08'),
(32829, 'hy', 'login', 'usernameexist', 'Օգտանուն already exist!', '2025-11-21 01:13:08'),
(32828, 'hy', 'login', 'Username placeholder', 'Enter your Օգտանուն', '2025-11-21 01:13:08'),
(32827, 'hy', 'login', 'Username', 'Օգտանուն', '2025-11-21 01:13:08'),
(32826, 'hy', 'login', 'user_not_activated_msg', 'Օգտատեր is not Ակտիվացված. Please check your mail for activation', '2025-11-21 01:13:08'),
(32825, 'hy', 'login', 'user_email_not_exist', 'Օգտատիրոջ էլ․ փոստ is not existing in system!', '2025-11-21 01:13:08'),
(32824, 'hy', 'login', 'User Type', 'Օգտատեր Տեսակ', '2025-11-21 01:13:08'),
(32823, 'hy', 'login', 'User inactive', 'Օգտատեր inactive', '2025-11-21 01:13:08'),
(32822, 'hy', 'login', 'to login to your account', 'to Մուտք to your Հաշիվ', '2025-11-21 01:13:08'),
(32821, 'hy', 'login', 'Sign in to your account', 'Մուտք գործեք ձեր հաշիվ', '2025-11-21 01:13:08'),
(32820, 'hy', 'login', 'Sign In', 'Մուտք', '2025-11-21 01:13:08'),
(32819, 'hy', 'login', 'Security message', 'Your Տեղեկություն is secure and encrypted', '2025-11-21 01:13:08'),
(32818, 'hy', 'login', 'Request Password', 'Request Գաղտնաբառ', '2025-11-21 01:13:08'),
(32817, 'hy', 'login', 'Remember password text', 'Remember your Գաղտնաբառ?', '2025-11-21 01:13:08'),
(32816, 'hy', 'login', 'Register', 'Գրանցվել', '2025-11-21 01:13:08'),
(32815, 'hy', 'login', 'password_reset_success_message', 'Your Գաղտնաբառ reset Հաջողությամբ. A Հաստատում mail send to Էլ․ փոստ address. <br>Please check your inbox to get your Նոր գաղտնաբառ.', '2025-11-21 01:13:08'),
(32814, 'hy', 'login', 'Password placeholder', 'Enter your Գաղտնաբառ', '2025-11-21 01:13:08'),
(32813, 'hy', 'login', 'Password incorrect', 'Գաղտնաբառ incorrect', '2025-11-21 01:13:08'),
(32812, 'hy', 'login', 'Password', 'Գաղտնաբառ', '2025-11-21 01:13:08'),
(32811, 'hy', 'login', 'No account text', 'Don''t have an Հաշիվ?', '2025-11-21 01:13:08'),
(32810, 'hy', 'login', 'newaccountsuccess', 'Նոր Հաշիվ Ստեղծված Հաջողությամբ!', '2025-11-21 01:13:08'),
(32809, 'hy', 'login', 'Login incorrect', 'Մուտք incorrect', '2025-11-21 01:13:08'),
(32808, 'hy', 'login', 'Login', 'Մուտք', '2025-11-21 01:13:08'),
(32807, 'hy', 'login', 'Last Name', 'Ազգանուն', '2025-11-21 01:13:08'),
(32806, 'hy', 'login', 'internal_error_mail_send', 'An internal Սխալ occured while sending Գաղտնաբառ reset mail!', '2025-11-21 01:13:08'),
(32805, 'hy', 'login', 'Forgot subtitle', 'Enter your Էլ․ փոստ address and we''ll send you instructions to reset your Գաղտնաբառ', '2025-11-21 01:13:08'),
(32803, 'hy', 'login', 'First Name', 'Անուն', '2025-11-21 01:13:08'),
(32804, 'hy', 'login', 'Forgot password?', 'Մոռացե՞լ եք գաղտնաբառը?', '2025-11-21 01:13:08'),
(32802, 'hy', 'login', 'Enter the code as it is shown', 'Մուտքագրեք կոդը այնպես, ինչպես ցուցադրված է', '2025-11-21 01:13:08'),
(32801, 'hy', 'login', 'Enter the code', 'Մուտքագրեք կոդը', '2025-11-21 01:13:08'),
(32800, 'hy', 'login', 'emailexist', 'Էլ․ փոստ already exist!', '2025-11-21 01:13:08'),
(32799, 'hy', 'login', 'Email placeholder', 'your@Էլ․ փոստ.com', '2025-11-21 01:13:08'),
(32798, 'hy', 'login', 'Email', 'Էլ․ փոստ', '2025-11-21 01:13:08'),
(32796, 'hy', 'login', 'Create my account', 'Ստեղծել Իմ հաշիվը', '2025-11-21 01:13:08'),
(32797, 'hy', 'login', 'Create New Account', 'Ստեղծել Նոր Հաշիվ', '2025-11-21 01:13:08'),
(32795, 'hy', 'login', 'Confirm Password', 'Հաստատել գաղտնաբառը', '2025-11-21 01:13:08'),
(32794, 'hy', 'log', 'Post Fields', 'Գրառում Fields', '2025-11-21 01:13:08'),
(32793, 'hy', 'log', 'Mail Log Details', 'Mail Log Մանրամասներ', '2025-11-21 01:13:08'),
(32792, 'hy', 'log', 'Crawl Log Details', 'Սողոսկում Log Մանրամասներ', '2025-11-21 01:13:08'),
(32791, 'hy', 'log', 'Clear All Logs', 'Clear Բոլորը Logs', '2025-11-21 01:13:08'),
(32790, 'hy', 'label', 'Year', 'Year', '2025-11-21 01:13:08'),
(32788, 'hy', 'label', 'Weekly', 'Weekly', '2025-11-21 01:13:08'),
(32789, 'hy', 'label', 'Write', 'Write', '2025-11-21 01:13:08'),
(32787, 'hy', 'label', 'Week', 'Week', '2025-11-21 01:13:08'),
(32786, 'hy', 'label', 'wantproceed', 'Do you really want to Շարունակել?', '2025-11-21 01:13:08'),
(32785, 'hy', 'label', 'View Reports', 'Դիտել Հաշվետվություններ', '2025-11-21 01:13:08'),
(32784, 'hy', 'label', 'Version', 'Version', '2025-11-21 01:13:08'),
(32782, 'hy', 'label', 'Usability', 'Usability', '2025-11-21 01:13:08'),
(32783, 'hy', 'label', 'User agent', 'Օգտատեր agent', '2025-11-21 01:13:08'),
(32780, 'hy', 'label', 'Updated', 'Թարմացված', '2025-11-21 01:13:08'),
(32781, 'hy', 'label', 'Upgrade', 'Upgrade', '2025-11-21 01:13:08'),
(32779, 'hy', 'label', 'Type', 'Տեսակ', '2025-11-21 01:13:08'),
(32778, 'hy', 'label', 'Translators', 'Translators', '2025-11-21 01:13:08'),
(32777, 'hy', 'label', 'translation by', 'translation by', '2025-11-21 01:13:08'),
(32776, 'hy', 'label', 'Total Results', 'Ընդամենը Results', '2025-11-21 01:13:08'),
(32775, 'hy', 'label', 'Title', 'Վերնագիր', '2025-11-21 01:13:08'),
(32774, 'hy', 'label', 'Theme', 'Theme', '2025-11-21 01:13:08'),
(32773, 'hy', 'label', 'Syntax', 'Syntax', '2025-11-21 01:13:08'),
(32772, 'hy', 'label', 'Success', 'Հաջողություն', '2025-11-21 01:13:08'),
(32771, 'hy', 'label', 'Subject', 'Subject', '2025-11-21 01:13:08'),
(32769, 'hy', 'label', 'Speed', 'Speed', '2025-11-21 01:13:08'),
(32770, 'hy', 'label', 'Sponsors', 'Sponsors', '2025-11-21 01:13:08'),
(32767, 'hy', 'label', 'Second', 'Second', '2025-11-21 01:13:08'),
(32768, 'hy', 'label', 'Select All', 'Ընտրել Բոլորը', '2025-11-21 01:13:08'),
(32765, 'hy', 'label', 'Reviews', 'Ակնարկներ', '2025-11-21 01:13:08'),
(32766, 'hy', 'label', 'Score', 'Գնահատական', '2025-11-21 01:13:08'),
(32764, 'hy', 'label', 'Report Type', 'Հաշվետվության տեսակ', '2025-11-21 01:13:08'),
(32763, 'hy', 'label', 'Referer', 'Referer', '2025-11-21 01:13:08'),
(32762, 'hy', 'label', 'Reference', 'Reference', '2025-11-21 01:13:08'),
(32761, 'hy', 'label', 'Recent Activity', 'Recent Activity', '2025-11-21 01:13:08'),
(32760, 'hy', 'label', 'Read', 'Read', '2025-11-21 01:13:08'),
(32759, 'hy', 'label', 'Re-install', 'Re-install', '2025-11-21 01:13:08'),
(32758, 'hy', 'label', 'Rating', 'Rating', '2025-11-21 01:13:08'),
(32757, 'hy', 'label', 'Proxy', 'Պրոքսի', '2025-11-21 01:13:08'),
(32756, 'hy', 'label', 'Project', 'Project', '2025-11-21 01:13:08'),
(32755, 'hy', 'label', 'Port', 'Port', '2025-11-21 01:13:08'),
(32754, 'hy', 'label', 'Plugin', 'Հավելում', '2025-11-21 01:13:08'),
(32753, 'hy', 'label', 'Overview', 'Ակնարկ', '2025-11-21 01:13:08'),
(32752, 'hy', 'label', 'Order By', 'Order By', '2025-11-21 01:13:08'),
(32751, 'hy', 'label', 'noactiveplugins', 'No Ակտիվ SEO հավելումներ Found!', '2025-11-21 01:13:08'),
(32750, 'hy', 'label', 'Months', 'Months', '2025-11-21 01:13:08'),
(32749, 'hy', 'label', 'Monthly', 'Monthly', '2025-11-21 01:13:08'),
(32748, 'hy', 'label', 'Month', 'Month', '2025-11-21 01:13:08'),
(32747, 'hy', 'label', 'Mobile', 'Mobile', '2025-11-21 01:13:08'),
(32746, 'hy', 'label', 'Minute', 'Minute', '2025-11-21 01:13:08'),
(32745, 'hy', 'label', 'Likes', 'Likes', '2025-11-21 01:13:08'),
(32744, 'hy', 'label', 'Keywords', 'Հիմնաբառեր', '2025-11-21 01:13:08'),
(32743, 'hy', 'label', 'Just Now', 'Just Now', '2025-11-21 01:13:08'),
(32742, 'hy', 'label', 'Installation', 'Installation', '2025-11-21 01:13:08'),
(32741, 'hy', 'label', 'Include', 'Include', '2025-11-21 01:13:08'),
(32740, 'hy', 'label', 'Impressions', 'Impressions', '2025-11-21 01:13:08'),
(32739, 'hy', 'label', 'Hour', 'Hour', '2025-11-21 01:13:08'),
(32738, 'hy', 'label', 'From', 'Սկսած', '2025-11-21 01:13:08'),
(32737, 'hy', 'label', 'Free', 'Free', '2025-11-21 01:13:08'),
(32736, 'hy', 'label', 'Followers', 'Followers', '2025-11-21 01:13:08'),
(32735, 'hy', 'label', 'Feature', 'Feature', '2025-11-21 01:13:08'),
(32734, 'hy', 'label', 'Fail', 'Fail', '2025-11-21 01:13:08'),
(32733, 'hy', 'label', 'Exclude', 'Exclude', '2025-11-21 01:13:08'),
(32732, 'hy', 'label', 'Email Body', 'Էլ․ փոստ Body', '2025-11-21 01:13:08'),
(32731, 'hy', 'label', 'Download', 'Ներբեռնել', '2025-11-21 01:13:08'),
(32730, 'hy', 'label', 'Developers', 'Developers', '2025-11-21 01:13:08'),
(32729, 'hy', 'label', 'Desktop', 'Desktop', '2025-11-21 01:13:08'),
(32728, 'hy', 'label', 'Description', 'Նկարագրություն', '2025-11-21 01:13:08'),
(32727, 'hy', 'label', 'Days', 'Days', '2025-11-21 01:13:08'),
(32726, 'hy', 'label', 'Day', 'Day', '2025-11-21 01:13:08'),
(32725, 'hy', 'label', 'Daily', 'Daily', '2025-11-21 01:13:08'),
(32724, 'hy', 'label', 'Current', 'Current', '2025-11-21 01:13:08'),
(32723, 'hy', 'label', 'Cron', 'Cron', '2025-11-21 01:13:08'),
(32722, 'hy', 'label', 'Count', 'Քանակ', '2025-11-21 01:13:08'),
(32721, 'hy', 'label', 'Cookie', 'Cookie', '2025-11-21 01:13:08'),
(32720, 'hy', 'label', 'Comments', 'Comments', '2025-11-21 01:13:08'),
(32719, 'hy', 'label', 'Clicks', 'Clicks', '2025-11-21 01:13:08'),
(32718, 'hy', 'label', 'Click Here', 'Սեղմեք այստեղ', '2025-11-21 01:13:08'),
(32717, 'hy', 'label', 'Clear All', 'Clear Բոլորը', '2025-11-21 01:13:08'),
(32716, 'hy', 'label', 'Brocken', 'Broken', '2025-11-21 01:13:08'),
(32715, 'hy', 'label', 'Author', 'Author', '2025-11-21 01:13:08'),
(32714, 'hy', 'label', 'Authentication', 'Authentication', '2025-11-21 01:13:08'),
(32713, 'hy', 'label', 'already exist', 'already exist', '2025-11-21 01:13:08'),
(32712, 'hy', 'label', 'Ago', 'Ago', '2025-11-21 01:13:08'),
(32711, 'hy', 'label', 'Access denied', 'Access denied', '2025-11-21 01:13:08'),
(32710, 'hy', 'keyword', 'Your keyword count already reached the limit', 'Հիմնաբառ Քանակ already reached the limit for this Օգտատեր!', '2025-11-21 01:13:08'),
(32709, 'hy', 'keyword', 'You can add only keywordcount keywords more', 'You can Ավելացնել only [keywordcount] Հիմնաբառեր for this Օգտատեր!', '2025-11-21 01:13:08'),
(32708, 'hy', 'keyword', 'Top Keywords', 'Top Հիմնաբառեր', '2025-11-21 01:13:08'),
(32707, 'hy', 'keyword', 'to create new keywords', 'to Ստեղծել Նոր Հիմնաբառեր', '2025-11-21 01:13:08'),
(32705, 'hy', 'keyword', 'Show All results', 'Show Բոլորը results', '2025-11-21 01:13:08'),
(32706, 'hy', 'keyword', 'Successfully crawled keyword', 'Հաջողությամբ Սողոսկված Հիմնաբառ', '2025-11-21 01:13:08'),
(32704, 'hy', 'keyword', 'results from ', 'results Սկսած ', '2025-11-21 01:13:08'),
(32703, 'hy', 'keyword', 'Ranking Trends', 'Ranking Trends', '2025-11-21 01:13:08'),
(32702, 'hy', 'keyword', 'Quick Keyword Position Checker', 'Quick Հիմնաբառի դիրքը Ստուգիչ', '2025-11-21 01:13:08'),
(32701, 'hy', 'keyword', 'pleaseselecttool', 'Խնդրում ենք ընտրել առնվազն մեկ SEO գործիք', '2025-11-21 01:13:08'),
(32700, 'hy', 'keyword', 'not assigned to required search engines', 'not assigned to required Որոնիչներ', '2025-11-21 01:13:08'),
(32699, 'hy', 'keyword', 'New Keyword', 'Նոր Հիմնաբառ', '2025-11-21 01:13:08'),
(32698, 'hy', 'keyword', 'Keywords Tracked', 'Հիմնաբառեր Tracked', '2025-11-21 01:13:08'),
(32697, 'hy', 'keyword', 'Keyword Ranking Trends', 'Հիմնաբառ Ranking Trends', '2025-11-21 01:13:08'),
(32696, 'hy', 'keyword', 'Keyword Position Report', 'Հիմնաբառի դիրքը Հաշվետվություն', '2025-11-21 01:13:08'),
(32695, 'hy', 'keyword', 'Keyword already exist', 'Հիմնաբառ already exist', '2025-11-21 01:13:08'),
(32694, 'hy', 'keyword', 'Insert keywords separated with comma', 'Insert Հիմնաբառեր separated with comma', '2025-11-21 01:13:08'),
(32693, 'hy', 'keyword', 'Import Keywords', 'Ներմուծել Հիմնաբառեր', '2025-11-21 01:13:08'),
(32692, 'hy', 'keyword', 'Graphical Keyword Position Reports', 'Graphical Հիմնաբառի դիրքը Հաշվետվություններ', '2025-11-21 01:13:08'),
(32691, 'hy', 'keyword', 'Edit Keyword', 'Խմբագրել հիմնաբառը', '2025-11-21 01:13:08'),
(32690, 'hy', 'keyword', 'Detailed Keyword Position Reports', 'Detailed Հիմնաբառի դիրքը Հաշվետվություններ', '2025-11-21 01:13:08'),
(32689, 'hy', 'keyword', 'Crawling keyword', 'Crawling Հիմնաբառ', '2025-11-21 01:13:08'),
(32688, 'hy', 'home', 'Website Statistics', 'Կայք Statistics', '2025-11-21 01:13:08'),
(32686, 'hy', 'home', 'Ranks', 'Ranks', '2025-11-21 01:13:08'),
(32687, 'hy', 'home', 'SiteNameUrl', 'Site Անուն/URL', '2025-11-21 01:13:08'),
(32685, 'hy', 'home', 'Pages Indexed', 'Pages Indexed', '2025-11-21 01:13:08'),
(32684, 'hy', 'home', 'Page Overview Report', 'Page Overview Հաշվետվություն', '2025-11-21 01:13:08'),
(32683, 'hy', 'home', 'Overall Report Summary', 'Overall Հաշվետվություն Summary', '2025-11-21 01:13:08'),
(32682, 'hy', 'home', 'Keyword Overview Report', 'Հիմնաբառ Overview Հաշվետվություն', '2025-11-21 01:13:08'),
(38453, 'nl', 'socialmedia', 'Social Media Profile Details', 'Sociale media profielgegevens', '2026-01-19 22:56:41'),
(32681, 'hy', 'home', 'Indexed', 'Indexed', '2025-11-21 01:13:08'),
(38454, 'no', 'socialmedia', 'Social Media Profile Details', 'Sosiale medier profildetaljer', '2026-01-19 22:56:41'),
(38455, 'pl', 'socialmedia', 'Social Media Profile Details', 'Szczegóły profilu mediów społecznościowych', '2026-01-19 22:56:41'),
(38456, 'pt', 'socialmedia', 'Social Media Profile Details', 'Detalhes do perfil de redes sociais', '2026-01-19 22:56:41'),
(38457, 'pt-br', 'socialmedia', 'Social Media Profile Details', 'Detalhes do perfil de redes sociais', '2026-01-19 22:56:41'),
(38458, 'ro', 'socialmedia', 'Social Media Profile Details', 'Detalii profil Social Media', '2026-01-19 22:56:41'),
(38459, 'ru', 'socialmedia', 'Social Media Profile Details', 'Детали профиля социальных сетей', '2026-01-19 22:56:41'),
(38460, 'sk', 'socialmedia', 'Social Media Profile Details', 'Podrobnosti profilu sociálnych médií', '2026-01-19 22:56:41'),
(38461, 'sl', 'socialmedia', 'Social Media Profile Details', 'Podrobnosti profila družbenih medijev', '2026-01-19 22:56:41'),
(38462, 'sq', 'socialmedia', 'Social Media Profile Details', 'Detajet e profilit të mediave sociale', '2026-01-19 22:56:41'),
(38463, 'sr', 'socialmedia', 'Social Media Profile Details', 'Детаљи профила друштвених медија', '2026-01-19 22:56:41'),
(38464, 'sv', 'socialmedia', 'Social Media Profile Details', 'Sociala medier profildetaljer', '2026-01-19 22:56:41'),
(38465, 'sw', 'socialmedia', 'Social Media Profile Details', 'Maelezo ya Wasifu wa Mitandao ya Kijamii', '2026-01-19 22:56:41'),
(38466, 'th', 'socialmedia', 'Social Media Profile Details', 'รายละเอียดโปรไฟล์โซเชียลมีเดีย', '2026-01-19 22:56:41'),
(38467, 'tl', 'socialmedia', 'Social Media Profile Details', 'Mga Detalye ng Profile ng Social Media', '2026-01-19 22:56:41'),
(38468, 'tr', 'socialmedia', 'Social Media Profile Details', 'Sosyal Medya Profil Detayları', '2026-01-19 22:56:41'),
(38469, 'uk', 'socialmedia', 'Social Media Profile Details', 'Деталі профілю соціальних мереж', '2026-01-19 22:56:41'),
(38470, 'vn', 'socialmedia', 'Social Media Profile Details', 'Chi tiết hồ sơ mạng xã hội', '2026-01-19 22:56:41'),
(38471, 'zh', 'socialmedia', 'Social Media Profile Details', '社交媒体资料详情', '2026-01-19 22:56:41'),
(38472, 'en', 'socialmedia', 'Platform', 'Platform', '2026-01-19 22:56:41'),
(38473, 'ar', 'socialmedia', 'Platform', 'المنصة', '2026-01-19 22:56:41'),
(38474, 'bg', 'socialmedia', 'Platform', 'Платформа', '2026-01-19 22:56:41'),
(38475, 'bs', 'socialmedia', 'Platform', 'Platforma', '2026-01-19 22:56:41'),
(38476, 'ca', 'socialmedia', 'Platform', 'Plataforma', '2026-01-19 22:56:41'),
(38477, 'cn', 'socialmedia', 'Platform', '平台', '2026-01-19 22:56:41'),
(38478, 'cs', 'socialmedia', 'Platform', 'Platforma', '2026-01-19 22:56:41'),
(38479, 'da', 'socialmedia', 'Platform', 'Platform', '2026-01-19 22:56:41'),
(38480, 'de', 'socialmedia', 'Platform', 'Plattform', '2026-01-19 22:56:41'),
(38481, 'el', 'socialmedia', 'Platform', 'Πλατφόρμα', '2026-01-19 22:56:41'),
(38482, 'es', 'socialmedia', 'Platform', 'Plataforma', '2026-01-19 22:56:41'),
(38483, 'es-ar', 'socialmedia', 'Platform', 'Plataforma', '2026-01-19 22:56:41'),
(38484, 'fa', 'socialmedia', 'Platform', 'پلتفرم', '2026-01-19 22:56:41'),
(38485, 'fi', 'socialmedia', 'Platform', 'Alusta', '2026-01-19 22:56:41'),
(38486, 'fr', 'socialmedia', 'Platform', 'Plateforme', '2026-01-19 22:56:41'),
(38487, 'he', 'socialmedia', 'Platform', 'פלטפורמה', '2026-01-19 22:56:41'),
(38488, 'hi', 'socialmedia', 'Platform', 'प्लेटफार्म', '2026-01-19 22:56:41'),
(38489, 'hr', 'socialmedia', 'Platform', 'Platforma', '2026-01-19 22:56:41'),
(38490, 'hu', 'socialmedia', 'Platform', 'Platform', '2026-01-19 22:56:41'),
(38491, 'hy', 'socialmedia', 'Platform', 'Հարթակ', '2026-01-19 22:56:41'),
(38492, 'id', 'socialmedia', 'Platform', 'Platform', '2026-01-19 22:56:41'),
(38493, 'it', 'socialmedia', 'Platform', 'Piattaforma', '2026-01-19 22:56:41'),
(38494, 'ja', 'socialmedia', 'Platform', 'プラットフォーム', '2026-01-19 22:56:41'),
(38495, 'ko', 'socialmedia', 'Platform', '플랫폼', '2026-01-19 22:56:41'),
(38496, 'lt', 'socialmedia', 'Platform', 'Platforma', '2026-01-19 22:56:41'),
(38497, 'mk', 'socialmedia', 'Platform', 'Платформа', '2026-01-19 22:56:41'),
(38498, 'nl', 'socialmedia', 'Platform', 'Platform', '2026-01-19 22:56:41'),
(38499, 'no', 'socialmedia', 'Platform', 'Plattform', '2026-01-19 22:56:41'),
(38500, 'pl', 'socialmedia', 'Platform', 'Platforma', '2026-01-19 22:56:41'),
(38501, 'pt', 'socialmedia', 'Platform', 'Plataforma', '2026-01-19 22:56:41'),
(38502, 'pt-br', 'socialmedia', 'Platform', 'Plataforma', '2026-01-19 22:56:41'),
(38503, 'ro', 'socialmedia', 'Platform', 'Platformă', '2026-01-19 22:56:41'),
(38504, 'ru', 'socialmedia', 'Platform', 'Платформа', '2026-01-19 22:56:41'),
(38505, 'sk', 'socialmedia', 'Platform', 'Platforma', '2026-01-19 22:56:41'),
(38506, 'sl', 'socialmedia', 'Platform', 'Platforma', '2026-01-19 22:56:41'),
(38507, 'sq', 'socialmedia', 'Platform', 'Platforma', '2026-01-19 22:56:41'),
(38508, 'sr', 'socialmedia', 'Platform', 'Платформа', '2026-01-19 22:56:41'),
(38509, 'sv', 'socialmedia', 'Platform', 'Plattform', '2026-01-19 22:56:41'),
(38510, 'sw', 'socialmedia', 'Platform', 'Jukwaa', '2026-01-19 22:56:41'),
(38511, 'th', 'socialmedia', 'Platform', 'แพลตฟอร์ม', '2026-01-19 22:56:41'),
(38512, 'tl', 'socialmedia', 'Platform', 'Platform', '2026-01-19 22:56:41'),
(38513, 'tr', 'socialmedia', 'Platform', 'Platform', '2026-01-19 22:56:41'),
(38514, 'uk', 'socialmedia', 'Platform', 'Платформа', '2026-01-19 22:56:41'),
(38515, 'vn', 'socialmedia', 'Platform', 'Nền tảng', '2026-01-19 22:56:41'),
(38516, 'zh', 'socialmedia', 'Platform', '平台', '2026-01-19 22:56:41'),
(38517, 'en', 'socialmedia', 'Last Checked', 'Last Checked', '2026-01-19 22:56:41'),
(38518, 'ar', 'socialmedia', 'Last Checked', 'آخر فحص', '2026-01-19 22:56:41'),
(38519, 'bg', 'socialmedia', 'Last Checked', 'Последно проверен', '2026-01-19 22:56:41'),
(38520, 'bs', 'socialmedia', 'Last Checked', 'Posljednja provjera', '2026-01-19 22:56:41'),
(38521, 'ca', 'socialmedia', 'Last Checked', 'Última comprovació', '2026-01-19 22:56:41'),
(38522, 'cn', 'socialmedia', 'Last Checked', '最后检查', '2026-01-19 22:56:41'),
(32677, 'hy', 'home', 'Directory Submission', 'Տեղեկատուի ներկայացում', '2025-11-21 01:13:08'),
(32676, 'hy', 'home', 'Backlinks', 'Հետադարձ հղումներ', '2025-11-21 01:13:08'),
(32674, 'hy', 'guest', 'Why Choose SEO Panel?', 'Why Choose SEO Panel?', '2025-11-21 01:13:08'),
(32675, 'hy', 'home', 'Account Summary', 'Հաշիվ Summary', '2025-11-21 01:13:08'),
(32673, 'hy', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-11-21 01:13:08'),
(32672, 'hy', 'guest', 'View Demo', 'Դիտել Demo', '2025-11-21 01:13:08'),
(32671, 'hy', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their Կայքեր.', '2025-11-21 01:13:08'),
(32670, 'hy', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-11-21 01:13:08'),
(32668, 'hy', 'guest', 'Social Media Integration desc', 'Integrate with Google Վերլուծություն, Որոնել Console, and Սոցիալական մեդիա platforms for comprehensive հաշվետվություն.', '2025-11-21 01:13:08'),
(32669, 'hy', 'guest', 'Support Development', 'Support Development', '2025-11-21 01:13:08'),
(32667, 'hy', 'guest', 'Social Media Integration', 'Սոցիալական մեդիա Integration', '2025-11-21 01:13:08'),
(32666, 'hy', 'guest', 'Site Auditor desc', 'Աուդիտ Բոլորը SEO factors of each page and Ստեղծել XML, HTML, and TEXT sitemaps for Որոնիչներ.', '2025-11-21 01:13:08'),
(32665, 'hy', 'guest', 'Search Engine Saturation desc', 'Find the number of indexed pages across different Որոնիչներ and monitor your indexing progress.', '2025-11-21 01:13:08'),
(32664, 'hy', 'guest', 'Resources & Support', 'Resources & Support', '2025-11-21 01:13:08'),
(32663, 'hy', 'guest', 'Rank Checker desc', 'Check Google PageRank, Alexa դիրք, and Moz Դիրք with comprehensive daily հետևում and հաշվետվություն.', '2025-11-21 01:13:08'),
(32662, 'hy', 'guest', 'Powerful SEO Features', 'Powerful SEO Հնարավորություններ', '2025-11-21 01:13:08'),
(32661, 'hy', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful Հավելումներ including Article Submitter, Meta Tag Generator, and more.', '2025-11-21 01:13:08'),
(32660, 'hy', 'guest', 'Plugin Architecture', 'Հավելում Architecture', '2025-11-21 01:13:08'),
(32659, 'hy', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited Կայքեր Սկսած a single control panel with centralized հաշվետվություն.', '2025-11-21 01:13:08'),
(32658, 'hy', 'guest', 'Multi-Website Support', 'Multi-Կայք Support', '2025-11-21 01:13:08'),
(32657, 'hy', 'guest', 'Login to Get Started', 'Մուտք to Get Started', '2025-11-21 01:13:08'),
(32656, 'hy', 'guest', 'Keyword Position Checker desc', 'Track your Հիմնաբառ rankings across multiple Որոնիչներ with detailed daily Հաշվետվություններ and beautiful graphs.', '2025-11-21 01:13:08'),
(32655, 'hy', 'guest', 'Highly Extensible desc', 'Easily develop and install custom Հավելումներ to extend functionality according to your needs.', '2025-11-21 01:13:08'),
(32654, 'hy', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-11-21 01:13:08'),
(32653, 'hy', 'guest', 'Hero subtitle', 'World''s Առաջին Բացել Source SEO Control Panel for Multiple Կայքեր', '2025-11-21 01:13:08'),
(32652, 'hy', 'guest', 'Hero description', 'A complete Բացել source SEO control panel for managing Որոնիչ optimization of your Կայքեր. SEO Panel is a powerful toolkit that includes the latest SEO գործիքներ to increase and track the performance of your Կայքեր.', '2025-11-21 01:13:08'),
(32651, 'hy', 'guest', 'Get Support', 'Get Support', '2025-11-21 01:13:08'),
(32650, 'hy', 'guest', 'Download SEO Panel', 'Ներբեռնել SEO Panel', '2025-11-21 01:13:08'),
(32649, 'hy', 'guest', 'Documentation', 'Documentation', '2025-11-21 01:13:08'),
(32648, 'hy', 'guest', 'Directory Submission desc', 'Automatically Ուղարկել your Կայքեր to major free and paid directories with Կարգավիճակ հետևում.', '2025-11-21 01:13:08'),
(32647, 'hy', 'guest', 'Contact Us', 'Կապ Us', '2025-11-21 01:13:08'),
(32646, 'hy', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-11-21 01:13:08'),
(32645, 'hy', 'guest', 'Browse Plugins', 'Browse Հավելումներ', '2025-11-21 01:13:08'),
(32644, 'hy', 'guest', 'Backlinks Checker desc', 'Monitor the number of Հետադարձ հղումներ Սկսած major Որոնիչներ and track your link building progress over time.', '2025-11-21 01:13:08'),
(32643, 'hy', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. Ներբեռնել, customize, and use without any restrictions.', '2025-11-21 01:13:08'),
(32642, 'hy', 'guest', '100% Open Source', '100% Բացել Source', '2025-11-21 01:13:08'),
(32641, 'hy', 'directory', 'Website Url', 'Կայքի URL', '2025-11-21 01:13:08'),
(32640, 'hy', 'directory', 'Website Category', 'Կայք Կատեգորիա', '2025-11-21 01:13:08'),
(32639, 'hy', 'directory', 'Submit Title', 'Ուղարկել Վերնագիր', '2025-11-21 01:13:08'),
(32638, 'hy', 'directory', 'Submit Keywords', 'Ուղարկել Հիմնաբառեր', '2025-11-21 01:13:08'),
(32637, 'hy', 'directory', 'Submit Description', 'Ուղարկել Նկարագրություն', '2025-11-21 01:13:08'),
(32636, 'hy', 'directory', 'Submission Details', 'Ներկայացում Մանրամասներ', '2025-11-21 01:13:08'),
(32635, 'hy', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary Էլ․ փոստ address.', '2025-11-21 01:13:08'),
(32634, 'hy', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi Automatic Տեղեկատուի ներկայացում Գործիք', '2025-11-21 01:13:08'),
(32633, 'hy', 'directory', 'selectwebsiteschecksub', 'Ընտրել a <b>Կայք</b> to <b>Շարունակել</b> check Տեղեկատուի ներկայացում.', '2025-11-21 01:13:08'),
(32632, 'hy', 'directory', 'selectwebsiteproceed', 'Ընտրել a <b>Կայք</b> to <b>Շարունակել</b> Տեղեկատուի ներկայացում.<br>Check <b>Directories with out captcha</b> to Ուղարկել to directories with out captcha', '2025-11-21 01:13:08'),
(32631, 'hy', 'directory', 'Reciprocal Link', 'Reciprocal Link', '2025-11-21 01:13:08'),
(32630, 'hy', 'directory', 'Please select a website to proceed', 'Խնդրում ենք ընտրել կայք՝ շարունակելու համար', '2025-11-21 01:13:08'),
(32629, 'hy', 'directory', 'Pending', 'Սպասման մեջ', '2025-11-21 01:13:08'),
(32628, 'hy', 'directory', 'Owner Name', 'Owner Անուն', '2025-11-21 01:13:08'),
(32627, 'hy', 'directory', 'Owner Email', 'Owner Էլ․ փոստ', '2025-11-21 01:13:08'),
(32626, 'hy', 'directory', 'optionalnote', 'Optional titles and descriptions to Ուղարկել random Վերնագիր and Նկարագրություն to directories for better results.', '2025-11-21 01:13:08'),
(32625, 'hy', 'directory', 'nosuccessnote', 'Didn''t get Հաջողություն message, Please check your mail to find the confirm message', '2025-11-21 01:13:08'),
(32624, 'hy', 'directory', 'nodirnote', 'No <b>Ակտիվ</b> directories Found', '2025-11-21 01:13:08'),
(32623, 'hy', 'directory', 'nocatnote', 'The Ներկայացում Կատեգորիա not found in Ներկայացում page. Please Սեղմեք <b>Վերաբեռնել</b> or <b>Բաց թողնել</b>', '2025-11-21 01:13:08'),
(32622, 'hy', 'directory', 'Enter the code shown', 'Մուտքագրեք ցուցադրված կոդը', '2025-11-21 01:13:08'),
(32621, 'hy', 'directory', 'Directory Submission Reports', 'Տեղեկատուի ներկայացում Հաշվետվություններ', '2025-11-21 01:13:08'),
(32620, 'hy', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Link', '2025-11-21 01:13:08'),
(32619, 'hy', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2025-11-21 01:13:08'),
(32618, 'hy', 'directory', 'desnote', 'Some directories require minimum 150 characters for the Նկարագրություն field.', '2025-11-21 01:13:08'),
(32617, 'hy', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured Ներկայացում!', '2025-11-21 01:13:08'),
(32615, 'hy', 'directory', 'Coupon Code', 'Coupon Code', '2025-11-21 01:13:08'),
(32616, 'hy', 'directory', 'Coupon Offer', 'Coupon Offer', '2025-11-21 01:13:08'),
(32614, 'hy', 'directory', 'Confirmation', 'Հաստատում', '2025-11-21 01:13:08'),
(32613, 'hy', 'directory', 'clicktoproceeddirsts', 'Սեղմեք <b>Շարունակել</b> ստուգելու համար Տեղեկատու Կարգավիճակ.', '2025-11-21 01:13:08'),
(32612, 'hy', 'directory', 'clickaddfeatureddirectory', 'Սեղմեք այստեղ to Ավելացնել your own featured Տեղեկատու here', '2025-11-21 01:13:08'),
(32611, 'hy', 'directory', 'Check Directory Submission Status', 'Check Տեղեկատուի ներկայացում Կարգավիճակ', '2025-11-21 01:13:08'),
(32610, 'hy', 'directory', 'Check Directory Status', 'Check Տեղեկատու Կարգավիճակ', '2025-11-21 01:13:08'),
(32609, 'hy', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. Սկիզբ with Top priority Կատեգորիա.', '2025-11-21 01:13:08'),
(32607, 'hy', 'directory', 'Approved', 'Հաստատված', '2025-11-21 01:13:08'),
(32608, 'hy', 'directory', 'Captcha', 'Captcha', '2025-11-21 01:13:08'),
(32606, 'hy', 'directory', 'Add back to directory list', 'Ավելացնել Հետ to Տեղեկատու list', '2025-11-21 01:13:08'),
(32605, 'hy', 'dashboard', 'Worst Rank', 'Worst Դիրք', '2025-11-21 01:13:08'),
(32604, 'hy', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility Գնահատական (Standard Deviation)', '2025-11-21 01:13:08'),
(32603, 'hy', 'dashboard', 'Volatility Score', 'Volatility Գնահատական', '2025-11-21 01:13:08'),
(32602, 'hy', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'Volatility data requires at least 2 ranking checks within the Ընտրված period.', '2025-11-21 01:13:08'),
(32601, 'hy', 'dashboard', 'Volatility', 'Volatility', '2025-11-21 01:13:08'),
(32599, 'hy', 'dashboard', 'Top 3', 'Top 3', '2025-11-21 01:13:08'),
(32600, 'hy', 'dashboard', 'Trend', 'Trend', '2025-11-21 01:13:08'),
(32598, 'hy', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile Հիմնաբառեր', '2025-11-21 01:13:08'),
(32597, 'hy', 'dashboard', 'Top 10', 'Top 10', '2025-11-21 01:13:08'),
(32596, 'hy', 'dashboard', 'Ranking Volatility', 'Ranking Volatility', '2025-11-21 01:13:08'),
(32595, 'hy', 'dashboard', 'positions', 'positions', '2025-11-21 01:13:08'),
(32594, 'hy', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-11-21 01:13:08'),
(32593, 'hy', 'dashboard', 'Keywords with most ranking fluctuations', 'Հիմնաբառեր with most ranking fluctuations', '2025-11-21 01:13:08'),
(32592, 'hy', 'dashboard', 'Keywords by Ranking Position', 'Հիմնաբառեր by Ranking Դիրք', '2025-11-21 01:13:08'),
(32591, 'hy', 'dashboard', 'Keyword Statistics', 'Հիմնաբառ Statistics', '2025-11-21 01:13:08'),
(32590, 'hy', 'dashboard', 'Keyword Distribution by Rank', 'Հիմնաբառ Distribution by Դիրք', '2025-11-21 01:13:08'),
(32589, 'hy', 'dashboard', 'Best Rank', 'Best Դիրք', '2025-11-21 01:13:08'),
(32588, 'hy', 'dashboard', 'Avg Rank', 'Avg Դիրք', '2025-11-21 01:13:08'),
(32587, 'hy', 'common', 'Yes', 'Այո', '2025-11-21 01:13:08'),
(32586, 'hy', 'common', 'Websites Count', 'Կայքեր Քանակ', '2025-11-21 01:13:08'),
(32585, 'hy', 'common', 'Website', 'Կայք', '2025-11-21 01:13:08'),
(32584, 'hy', 'common', 'Warnings', 'Warnings', '2025-11-21 01:13:08'),
(32583, 'hy', 'common', 'User Type', 'Օգտատեր Տեսակ', '2025-11-21 01:13:08'),
(32582, 'hy', 'common', 'User Panel', 'Օգտատեր Panel', '2025-11-21 01:13:08'),
(32580, 'hy', 'common', 'Url', 'URL', '2025-11-21 01:13:08'),
(32581, 'hy', 'common', 'User', 'Օգտատեր', '2025-11-21 01:13:08'),
(32579, 'hy', 'common', 'Total', 'Ընդամենը', '2025-11-21 01:13:08'),
(32578, 'hy', 'common', 'Tools', 'Գործիքներ', '2025-11-21 01:13:08'),
(32577, 'hy', 'common', 'Thank you', 'Thank you', '2025-11-21 01:13:08'),
(32576, 'hy', 'common', 'Support', 'Support', '2025-11-21 01:13:08'),
(32575, 'hy', 'common', 'Status', 'Կարգավիճակ', '2025-11-21 01:13:08'),
(32574, 'hy', 'common', 'Spam Score', 'Spam Գնահատական', '2025-11-21 01:13:08'),
(32573, 'hy', 'common', 'Source', 'Source', '2025-11-21 01:13:08'),
(32572, 'hy', 'common', 'signin', 'Մուտք', '2025-11-21 01:13:08'),
(32571, 'hy', 'common', 'Sign Up', 'Գրանցվել', '2025-11-21 01:13:08'),
(32570, 'hy', 'common', 'Sign out', 'Ելք', '2025-11-21 01:13:08'),
(32569, 'hy', 'common', 'Server', 'Server', '2025-11-21 01:13:08'),
(32568, 'hy', 'common', 'Seo Tools', 'SEO գործիքներ', '2025-11-21 01:13:08'),
(32567, 'hy', 'common', 'Seo Plugins', 'SEO հավելումներ', '2025-11-21 01:13:08'),
(32566, 'hy', 'common', 'Select', 'Ընտրել', '2025-11-21 01:13:08'),
(32565, 'hy', 'common', 'Search Engine Count', 'Որոնիչ Քանակ', '2025-11-21 01:13:08'),
(32564, 'hy', 'common', 'Search Engine', 'Որոնիչ', '2025-11-21 01:13:08'),
(32563, 'hy', 'common', 'Sample CSV File', 'Sample CSV File', '2025-11-21 01:13:08'),
(32562, 'hy', 'common', 'Results', 'Results', '2025-11-21 01:13:08'),
(32561, 'hy', 'common', 'Reports', 'Հաշվետվություններ', '2025-11-21 01:13:08'),
(32560, 'hy', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification Ձախողված', '2025-11-21 01:13:08'),
(32558, 'hy', 'common', 'Rank', 'Դիրք', '2025-11-21 01:13:08'),
(32559, 'hy', 'common', 'Rankings', 'Rankings', '2025-11-21 01:13:08'),
(32557, 'hy', 'common', 'Range', 'Range', '2025-11-21 01:13:08'),
(32555, 'hy', 'common', 'Priority', 'Priority', '2025-11-21 01:13:08'),
(32556, 'hy', 'common', 'Profile', 'Պրոֆիլ', '2025-11-21 01:13:08'),
(32553, 'hy', 'common', 'Price', 'Price', '2025-11-21 01:13:08'),
(32554, 'hy', 'common', 'Pricing', 'Pricing', '2025-11-21 01:13:08'),
(32551, 'hy', 'common', 'Plugins', 'Հավելումներ', '2025-11-21 01:13:08'),
(32552, 'hy', 'common', 'Powered by', 'Powered by', '2025-11-21 01:13:08'),
(32550, 'hy', 'common', 'Period', 'Period', '2025-11-21 01:13:08'),
(32549, 'hy', 'common', 'passwordnotmatch', 'The passwords do not match', '2025-11-21 01:13:08'),
(32548, 'hy', 'common', 'password632', 'The Գաղտնաբառ string should have a length between 6 and 32', '2025-11-21 01:13:08'),
(32547, 'hy', 'common', 'Pagerank', 'Pagerank', '2025-11-21 01:13:08'),
(32546, 'hy', 'common', 'Page Authority', 'Էջի հեղինակություն', '2025-11-21 01:13:08'),
(32504, 'hy', 'common', 'Domain Authority', 'Տիրույթի հեղինակություն', '2025-11-21 01:13:08'),
(32505, 'hy', 'common', 'Donate', 'Նվիրաբերել', '2025-11-21 01:13:08'),
(32506, 'hy', 'common', 'Edit', 'Խմբագրել', '2025-11-21 01:13:08'),
(32507, 'hy', 'common', 'Edit User Type', 'Խմբագրել օգտատիրոջը Տեսակ', '2025-11-21 01:13:08'),
(32508, 'hy', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2025-11-21 01:13:08'),
(32509, 'hy', 'common', 'entrynotvalid', 'The entry entered doesn''t seem to be valid', '2025-11-21 01:13:08'),
(32510, 'hy', 'common', 'Errors', 'Errors', '2025-11-21 01:13:08'),
(32511, 'hy', 'common', 'failed', 'Ձախողված', '2025-11-21 01:13:08'),
(32512, 'hy', 'common', 'forum', 'Ֆորում', '2025-11-21 01:13:08'),
(32513, 'hy', 'common', 'Found', 'Found', '2025-11-21 01:13:08'),
(32514, 'hy', 'common', 'General', 'General', '2025-11-21 01:13:08'),
(32515, 'hy', 'common', 'Google Pagerank', 'Google Pagerank', '2025-11-21 01:13:08'),
(32516, 'hy', 'common', 'Hello', 'Hello', '2025-11-21 01:13:08'),
(32517, 'hy', 'common', 'help', 'Օգնություն', '2025-11-21 01:13:08'),
(32518, 'hy', 'common', 'hidenews', 'Hide Seo Panel News', '2025-11-21 01:13:08'),
(32519, 'hy', 'common', 'Home', 'Գլխավոր', '2025-11-21 01:13:08'),
(32520, 'hy', 'common', 'Id', 'Id', '2025-11-21 01:13:08'),
(32521, 'hy', 'common', 'Inactivate', 'Inactivate', '2025-11-21 01:13:08'),
(32522, 'hy', 'common', 'Inactive', 'Inactive', '2025-11-21 01:13:08'),
(32523, 'hy', 'common', 'Internal error occured', 'Internal Սխալ occured', '2025-11-21 01:13:08'),
(32524, 'hy', 'common', 'Invalid characters', 'Invalid characters', '2025-11-21 01:13:08'),
(32525, 'hy', 'common', 'Invalid code entered', 'Մուտքագրված է անվավեր կոդ', '2025-11-21 01:13:08'),
(32526, 'hy', 'common', 'Invalid email address entered', 'Մուտքագրված է անվավեր էլ․ փոստի հասցե', '2025-11-21 01:13:08'),
(32527, 'hy', 'common', 'Invalid Url', 'Invalid URL', '2025-11-21 01:13:08'),
(32528, 'hy', 'common', 'Invalid value', 'Invalid Արժեք', '2025-11-21 01:13:08'),
(32529, 'hy', 'common', 'Keyword', 'Հիմնաբառ', '2025-11-21 01:13:08'),
(32530, 'hy', 'common', 'Keywords', 'Հիմնաբառեր', '2025-11-21 01:13:08'),
(32531, 'hy', 'common', 'Keywords Count', 'Հիմնաբառեր Քանակ', '2025-11-21 01:13:08'),
(32532, 'hy', 'common', 'lang', 'Լեզու', '2025-11-21 01:13:08'),
(32533, 'hy', 'common', 'Link', 'Link', '2025-11-21 01:13:08'),
(32534, 'hy', 'common', 'Logout', 'Ելք', '2025-11-21 01:13:08'),
(32535, 'hy', 'common', 'Metric', 'Metric', '2025-11-21 01:13:08'),
(32536, 'hy', 'common', 'MOZ Rank', 'MOZ Դիրք', '2025-11-21 01:13:08'),
(32537, 'hy', 'common', 'My Account', 'Իմ հաշիվը', '2025-11-21 01:13:08'),
(32538, 'hy', 'Common', 'Name', 'Անուն', '2025-11-21 01:13:08'),
(32539, 'hy', 'common', 'New User Type', 'Նոր Օգտատեր Տեսակ', '2025-11-21 01:13:08'),
(32540, 'hy', 'common', 'No', 'Ոչ', '2025-11-21 01:13:08'),
(32541, 'hy', 'common', 'No Keywords Found', 'No Հիմնաբառեր Found', '2025-11-21 01:13:08'),
(32542, 'hy', 'common', 'No Records Found', 'Գրառումներ չեն գտնվել', '2025-11-21 01:13:08'),
(32543, 'hy', 'common', 'noactivetools', 'No Ակտիվ SEO գործիքներ Found!', '2025-11-21 01:13:08'),
(32544, 'hy', 'common', 'nowebsites', 'No Կայքեր Found', '2025-11-21 01:13:08'),
(32545, 'hy', 'common', 'Number', 'Number', '2025-11-21 01:13:08'),
(32488, 'hy', 'common', 'Alexa Rank', 'Alexa դիրք', '2025-11-21 01:13:08'),
(32489, 'hy', 'common', 'All', 'Բոլորը', '2025-11-21 01:13:08'),
(32490, 'hy', 'common', 'API Token', 'API նշան', '2025-11-21 01:13:08'),
(32491, 'hy', 'common', 'Blog', 'Բլոգ', '2025-11-21 01:13:08'),
(32492, 'hy', 'common', 'Category', 'Կատեգորիա', '2025-11-21 01:13:08'),
(32493, 'hy', 'common', 'Checked', 'Ստուգված', '2025-11-21 01:13:08'),
(32494, 'hy', 'common', 'contact', 'Կապ', '2025-11-21 01:13:08'),
(32495, 'hy', 'common', 'copyright', 'Copyright © [year] www.seopanel.org Բոլորը rights reserved', '2025-11-21 01:13:08'),
(32496, 'hy', 'common', 'Country', 'Երկիր', '2025-11-21 01:13:08'),
(32497, 'hy', 'common', 'Crawl Meta Data', 'Սողոսկել մետա տվյալները', '2025-11-21 01:13:08'),
(32498, 'hy', 'common', 'Dashboard', 'Վահանակ', '2025-11-21 01:13:08'),
(32499, 'hy', 'common', 'Date', 'Ամսաթիվ', '2025-11-21 01:13:08'),
(32500, 'hy', 'common', 'Debug', 'Վրիպազերծում', '2025-11-21 01:13:08'),
(32501, 'hy', 'common', 'Delete', 'Ջնջել', '2025-11-21 01:13:08'),
(32502, 'hy', 'common', 'Details', 'Մանրամասներ', '2025-11-21 01:13:08'),
(32503, 'hy', 'common', 'Directory', 'Տեղեկատու', '2025-11-21 01:13:08'),
(32477, 'hy', 'button', 'Proceed', 'Շարունակել', '2025-11-21 01:13:08'),
(32478, 'hy', 'button', 'Reload', 'Վերաբեռնել', '2025-11-21 01:13:08'),
(32479, 'hy', 'button', 'Search', 'Որոնել', '2025-11-21 01:13:08'),
(32480, 'hy', 'button', 'Show Details', 'Ցույց տալ մանրամասները', '2025-11-21 01:13:08'),
(32481, 'hy', 'button', 'Show Records', 'Ցույց տալ գրառումները', '2025-11-21 01:13:08'),
(32482, 'hy', 'button', 'Skip', 'Բաց թողնել', '2025-11-21 01:13:08'),
(32483, 'hy', 'button', 'Submit', 'Ուղարկել', '2025-11-21 01:13:08'),
(32484, 'hy', 'common', 'Action', 'Գործողություն', '2025-11-21 01:13:08'),
(32485, 'hy', 'common', 'Activate', 'Ակտիվացնել', '2025-11-21 01:13:08'),
(32486, 'hy', 'common', 'Active', 'Ակտիվ', '2025-11-21 01:13:08'),
(32487, 'hy', 'common', 'Admin Panel', 'Ադմինի վահանակ', '2025-11-21 01:13:08'),
(32476, 'hy', 'button', 'Check Status', 'Ստուգել կարգավիճակը', '2025-11-21 01:13:08'),
(32475, 'hy', 'button', 'Cancel', 'Չեղարկել', '2025-11-21 01:13:08'),
(32474, 'hy', 'blog', 'Older Posts', 'Ավելի հին գրառումներ', '2025-11-21 01:13:08'),
(32473, 'hy', 'blog', 'NothingFound_text2', 'Sorry, but nothing matched your Որոնել criteria. Խնդրում ենք նորից փորձել with some different Հիմնաբառեր.', '2025-11-21 01:13:08'),
(32472, 'hy', 'blog', 'Nothing Found', 'Ոչինչ չի գտնվել', '2025-11-21 01:13:08'),
(32471, 'hy', 'blog', 'Newer Posts', 'Ավելի նոր գրառումներ', '2025-11-21 01:13:08'),
(32470, 'hy', 'backlink', 'Saved backlink results of', 'Պահպանված Հետադարձ հղում results of', '2025-11-21 01:13:08'),
(32469, 'hy', 'backlink', 'Domain Backlinks', 'Տիրույթի հետադարձ հղումներ', '2025-11-21 01:13:08'),
(32468, 'hy', 'backlink', 'Domain Backlink Count', 'Տիրույթի հետադարձ հղումների քանակ', '2025-11-21 01:13:08'),
(32467, 'hy', 'backlink', 'clickproceedbacklink', 'Մուտքագրեք URL''s <b>Մեկը մեկ տողում</b>. Սեղմեք <b>Շարունակել</b> to Ստուգել հետադարձ հղումները.', '2025-11-21 01:13:08'),
(32465, 'hy', 'api', 'API Url', 'API URL', '2025-11-21 01:13:08'),
(32466, 'hy', 'backlink', 'Backlink Count', 'Հետադարձ հղումների քանակ', '2025-11-21 01:13:08'),
(32464, 'hy', 'api', 'API Guide', 'API Guide', '2025-11-21 01:13:08'),
(32463, 'hy', 'analytics', 'view_id_not_found_error', 'Սխալ: Վերլուծություն Դիտել ID is not set for Կայք. Խմբագրել կայքը and Թարմացնել Դիտել ID.', '2025-11-21 01:13:08'),
(32462, 'hy', 'analytics', 'Users', 'Օգտատերեր', '2025-11-21 01:13:08'),
(32460, 'hy', 'analytics', 'New Users', 'Նոր օգտատերեր', '2025-11-21 01:13:08'),
(32461, 'hy', 'analytics', 'Sessions', 'Նստաշրջաններ', '2025-11-21 01:13:08'),
(32459, 'hy', 'analytics', 'Goal Completions', 'Նպատակների իրականացում', '2025-11-21 01:13:08'),
(32458, 'hy', 'analytics', 'Bounce Rate', 'Մերժման տոկոս', '2025-11-21 01:13:08'),
(32457, 'hy', 'analytics', 'Avg. Session Duration', 'Նստաշրջանի միջին տևողություն', '2025-11-21 01:13:08'),
(27578, 'ko', 'siteauditor', 'Check pages indexed or not', 'Check pages indexed or not', '2025-11-21 00:41:47'),
(27577, 'ko', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of pages', '2025-11-21 00:41:47'),
(27576, 'ko', 'siteauditor', 'Check google pagerank of pages', 'Check google pagerank of pages', '2025-11-21 00:41:47'),
(27575, 'ko', 'siteauditor', 'Check broken links in a page', 'Check broken links in a page', '2025-11-21 00:41:47'),
(27574, 'ko', 'siteauditor', 'Check backlinks of pages', '백링크 확인 of pages', '2025-11-21 00:41:47'),
(27573, 'ko', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded 부터 사이트맵', '2025-11-21 00:41:47'),
(27572, 'ko', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded 부터 보고서', '2025-11-21 00:41:47'),
(27571, 'ko', 'siteauditor', 'Anchor', 'Anchor', '2025-11-21 00:41:47'),
(27570, 'ko', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up to 날짜.', '2025-11-21 00:41:47'),
(27569, 'ko', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up to 날짜. <br>Please 다운로드 새로운 version', '2025-11-21 00:41:47'),
(27568, 'ko', 'settings', 'Verify connection', 'Verify connection', '2025-11-21 00:41:47'),
(27567, 'ko', 'settings', 'syssettingssaved', '시스템 설정 저장됨 성공적으로!', '2025-11-21 00:41:47'),
(27566, 'ko', 'settings', 'SP_USER_REGISTRATION', '사용자 등록 interface', '2025-11-21 00:41:47'),
(27565, 'ko', 'settings', 'SP_USER_GEN_REPORT', 'Allow 사용자 to 생성 보고서', '2025-11-21 00:41:47'),
(27564, 'ko', 'settings', 'SP_USER_AGENT', '사용자 agent', '2025-11-21 00:41:47'),
(27563, 'ko', 'settings', 'SP_TITLE', 'Seo Panel 제목', '2025-11-21 00:41:47'),
(27562, 'ko', 'settings', 'SP_TIME_ZONE', 'Time Zone', '2025-11-21 00:41:47'),
(27561, 'ko', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Minimum Allowed 보고 Interval', '2025-11-21 00:41:47'),
(27560, 'ko', 'settings', 'SP_SMTP_USERNAME', 'SMTP 사용자명', '2025-11-21 00:41:47'),
(27559, 'ko', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2025-11-21 00:41:47'),
(27558, 'ko', 'settings', 'SP_SMTP_PASSWORD', 'SMTP 비밀번호', '2025-11-21 00:41:47'),
(27557, 'ko', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2025-11-21 00:41:47'),
(27556, 'ko', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2025-11-21 00:41:47'),
(27555, 'ko', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2025-11-21 00:41:47'),
(27554, 'ko', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send custom header with curl request', '2025-11-21 00:41:47'),
(27553, 'ko', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of 이메일 notifications for 보고서', '2025-11-21 00:41:47'),
(27552, 'ko', 'settings', 'SP_RELATIVE_LINK_CRAWL', '크롤 relative links in a page', '2025-11-21 00:41:47'),
(27551, 'ko', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2025-11-21 00:41:47'),
(27550, 'ko', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2025-11-21 00:41:47'),
(27549, 'ko', 'settings', 'SP_PAGINGNO', 'Number of entries per page', '2025-11-21 00:41:47'),
(27548, 'ko', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Number of 키워드 needs to be 확인됨 in each cron execution', '2025-11-21 00:41:47'),
(27547, 'ko', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2025-11-21 00:41:47'),
(27546, 'ko', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2025-11-21 00:41:47'),
(27545, 'ko', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2025-11-21 00:41:47'),
(27544, 'ko', 'settings', 'SP_KEYWORDS', 'Seo Panel 키워드', '2025-11-21 00:41:47'),
(27543, 'ko', 'settings', 'SP_HOTLINKING', 'Image hotlink protection 활성화', '2025-11-21 00:41:47'),
(27542, 'ko', 'settings', 'SP_GOOGLE_API_KEY', 'Google API Key', '2025-11-21 00:41:47'),
(27541, 'ko', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2025-11-21 00:41:47'),
(27540, 'ko', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2025-11-21 00:41:47'),
(27539, 'ko', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google 분석 추적 Code', '2025-11-21 00:41:47'),
(27538, 'ko', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2025-11-21 00:41:47');
INSERT INTO `texts` VALUES
(27537, 'ko', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable 프록시 for Google API', '2025-11-21 00:41:47'),
(27536, 'ko', 'settings', 'SP_ENABLE_PROXY', 'Enable 프록시', '2025-11-21 00:41:47'),
(27535, 'ko', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2025-11-21 00:41:47'),
(27534, 'ko', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for 백링크 and 포화도 확인 도구', '2025-11-21 00:41:47'),
(27533, 'ko', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2025-11-21 00:41:47'),
(27532, 'ko', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2025-11-21 00:41:47'),
(27531, 'ko', 'settings', 'SP_DFS_API_PASSWORD', 'API 비밀번호', '2025-11-21 00:41:47'),
(27530, 'ko', 'settings', 'SP_DFS_API_LOGIN', 'API 로그인', '2025-11-21 00:41:47'),
(27529, 'ko', 'settings', 'SP_DESCRIPTION', 'Seo Panel 설명', '2025-11-21 00:41:47'),
(27528, 'ko', 'settings', 'SP_DEFAULTLANG', 'Default 언어', '2025-11-21 00:41:47'),
(27527, 'ko', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider 크롤(seconds)', '2025-11-21 00:41:47'),
(27526, 'ko', 'settings', 'SP_COMPANY_NAME', 'Company 이름', '2025-11-21 00:41:47'),
(27525, 'ko', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2025-11-21 00:41:47'),
(27524, 'ko', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow 사용자 to schedule 보고서', '2025-11-21 00:41:47'),
(27523, 'ko', 'settings', 'seopanel_title', 'Seo Panel: World''s 처음 열기 source seo control panel for managing multiple web sites', '2025-11-21 00:41:47'),
(27522, 'ko', 'settings', 'seopanel_description', 'A complete free control panel for managing 검색 엔진 optimization of your 웹사이트. It containing lots of hot SEO 도구 to increase and track the performace your 웹사이트. Its an 열기 source software and also you can develop your own SEO 플러그인 for seo panel.', '2025-11-21 00:41:47'),
(27521, 'ko', 'settings', 'Send Email', 'Send 이메일', '2025-11-21 00:41:47'),
(27520, 'ko', 'settings', 'SA_MAX_NO_PAGES', 'Maximum number of pages allowed per 웹사이트', '2025-11-21 00:41:47'),
(27519, 'ko', 'settings', 'SA_CRAWL_DELAY_TIME', '사이트 감사 크롤 delay between each pages', '2025-11-21 00:41:47'),
(27518, 'ko', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate 프록시 When Crawling 실패', '2025-11-21 00:41:47'),
(27517, 'ko', 'settings', 'Please update MOZ settings to get complete results', 'Please 업데이트 MOZ 설정 to get complete 결과', '2025-11-21 00:41:47'),
(27516, 'ko', 'settings', 'Please update google settings to get the results', 'Please 업데이트 google 설정 to get the 결과', '2025-11-21 00:41:47'),
(27515, 'ko', 'settings', 'getallpluginfree', 'Also get 전체 <b>플러그인</b> we develop for <b>Free!</b>', '2025-11-21 00:41:47'),
(27514, 'ko', 'settings', 'entersmtpdetails', 'Please enter SMTP mail configuration', '2025-11-21 00:41:47'),
(27513, 'ko', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP 프록시 Tunnel', '2025-11-21 00:41:47'),
(27512, 'ko', 'settings', 'click-to-get-moz-account', '여기를 클릭하세요 to get MOZ 계정', '2025-11-21 00:41:47'),
(27510, 'ko', 'settings', 'click-to-get-google-api-client-id', '여기를 클릭하세요 to get Google API Client Id', '2025-11-21 00:41:47'),
(27511, 'ko', 'settings', 'click-to-get-google-api-key', '여기를 클릭하세요 to get Google API Key', '2025-11-21 00:41:47'),
(27509, 'ko', 'settings', 'click-to-get-dataforseo-account', '여기를 클릭하세요 to get Free DataForSEO 계정', '2025-11-21 00:41:47'),
(27508, 'ko', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>기부 $100</b> and become a <b>sponsor</b> of Seo Panel.', '2025-11-21 00:41:47'),
(27507, 'ko', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another 프록시 When Crawling 실패', '2025-11-21 00:41:47'),
(27506, 'ko', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Maximum number of proxies used in single execution', '2025-11-21 00:41:47'),
(27505, 'ko', 'settings', 'Check for Updates', 'Check for Updates', '2025-11-21 00:41:47'),
(27504, 'ko', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2025-11-21 00:41:47'),
(27503, 'ko', 'settings', 'API_SECRET', 'API Secret', '2025-11-21 00:41:47'),
(27502, 'ko', 'settings', 'allsettingssaved', '전체 설정 저장됨 성공적으로!', '2025-11-21 00:41:47'),
(27501, 'ko', 'seotools', 'Website Search Summary', '웹사이트 검색 Summary', '2025-11-21 00:41:47'),
(27500, 'ko', 'seotools', 'Website Search Reports', '웹사이트 검색 보고서', '2025-11-21 00:41:47'),
(27499, 'ko', 'seotools', 'Website Analytics Summary', '웹사이트 분석 Summary', '2025-11-21 00:41:47'),
(27498, 'ko', 'seotools', 'webmaster-tools', '웹마스터 도구', '2025-11-21 00:41:47'),
(27497, 'ko', 'seotools', 'web-analytics', '웹사이트 분석', '2025-11-21 00:41:47'),
(27496, 'ko', 'seotools', 'User Access', '사용자 Access', '2025-11-21 00:41:47'),
(27494, 'ko', 'seotools', 'Social Media Report Summary', '소셜 미디어 보고서 Summary', '2025-11-21 00:41:47'),
(27495, 'ko', 'seotools', 'Submission Reports', '제출 보고서', '2025-11-21 00:41:47'),
(27492, 'ko', 'seotools', 'sm-checker', '소셜 미디어 확인 도구', '2025-11-21 00:41:47'),
(27493, 'ko', 'seotools', 'Social Media Links', '소셜 미디어 Links', '2025-11-21 00:41:47'),
(27491, 'ko', 'seotools', 'Skipped Directories', 'Skipped Directories', '2025-11-21 00:41:47'),
(27490, 'ko', 'seotools', 'sitemap-generator', '사이트맵 Generator', '2025-11-21 00:41:47'),
(27489, 'ko', 'seotools', 'Sitemap Reports Summary', '사이트맵 보고서 Summary', '2025-11-21 00:41:47'),
(27488, 'ko', 'seotools', 'site-auditor', '사이트 감사', '2025-11-21 00:41:47'),
(27486, 'ko', 'seotools', 'Saturation Reports', '포화도 보고서', '2025-11-21 00:41:47'),
(27487, 'ko', 'seotools', 'saturation-checker', '검색 엔진 포화도', '2025-11-21 00:41:47'),
(27484, 'ko', 'seotools', 'Review Report Summary', '리뷰 보고서 Summary', '2025-11-21 00:41:47'),
(27485, 'ko', 'seotools', 'review-manager', '리뷰 관리자', '2025-11-21 00:41:47'),
(27483, 'ko', 'seotools', 'Review Links', '리뷰 Links', '2025-11-21 00:41:47'),
(27481, 'ko', 'seotools', 'Rank Reports', '순위 보고서', '2025-11-21 00:41:47'),
(27482, 'ko', 'seotools', 'rank-checker', '순위 확인 도구', '2025-11-21 00:41:47'),
(27480, 'ko', 'seotools', 'Quick Saturation Checker', 'Quick 포화도 확인 도구', '2025-11-21 00:41:47'),
(27479, 'ko', 'seotools', 'Quick Rank Checker', 'Quick 순위 확인 도구', '2025-11-21 00:41:47'),
(27478, 'ko', 'seotools', 'Quick Position Checker', 'Quick 위치 확인 도구', '2025-11-21 00:41:47'),
(27477, 'ko', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed 확인 도구', '2025-11-21 00:41:47'),
(27476, 'ko', 'seotools', 'Quick Checker', 'Quick 확인 도구', '2025-11-21 00:41:47'),
(27474, 'ko', 'seotools', 'PageSpeed Reports', 'PageSpeed 보고서', '2025-11-21 00:41:47'),
(27475, 'ko', 'seotools', 'Quick Backlinks Checker', 'Quick 백링크 확인 도구', '2025-11-21 00:41:47'),
(27473, 'ko', 'seotools', 'pagespeed', 'PageSpeed Insights', '2025-11-21 00:41:47'),
(27472, 'ko', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for 보고서 generation.\r\nThis 작업 may cause captcha in 검색 엔진 결과.', '2025-11-21 00:41:47'),
(27471, 'ko', 'seotools', 'Keywords Manager', '키워드 관리자', '2025-11-21 00:41:47'),
(27468, 'ko', 'seotools', 'Keyword Search Reports', '키워드 검색 보고서', '2025-11-21 00:41:47'),
(27469, 'ko', 'seotools', 'Keyword Search Summary', '키워드 검색 Summary', '2025-11-21 00:41:47'),
(27470, 'ko', 'seotools', 'keyword-position-checker', '키워드 위치 확인 도구', '2025-11-21 00:41:47'),
(27467, 'ko', 'seotools', 'Keyword Position Summary', '키워드 위치 Summary', '2025-11-21 00:41:47'),
(27466, 'ko', 'seotools', 'Import Project Links', '가져오기 Project Links', '2025-11-21 00:41:47'),
(27465, 'ko', 'seotools', 'Graphical Reports', 'Graphical 보고서', '2025-11-21 00:41:47'),
(27463, 'ko', 'seotools', 'Google Sitemap Generator', 'Google 사이트맵 Generator', '2025-11-21 00:41:47'),
(27464, 'ko', 'seotools', 'Graphical Position Reports', 'Graphical 위치 보고서', '2025-11-21 00:41:47'),
(27462, 'ko', 'seotools', 'Generate Saturation Reports', '생성 포화도 보고서', '2025-11-21 00:41:47'),
(27460, 'ko', 'seotools', 'Generate Rank Reports', '생성 순위 보고서', '2025-11-21 00:41:47'),
(27461, 'ko', 'seotools', 'Generate Reports', '생성 보고서', '2025-11-21 00:41:47'),
(27458, 'ko', 'seotools', 'Generate Backlinks Reports', '생성 백링크 보고서', '2025-11-21 00:41:47'),
(27459, 'ko', 'seotools', 'Generate Keyword Reports', '생성 키워드 보고서', '2025-11-21 00:41:47'),
(27456, 'ko', 'seotools', 'Edit Seo Tool', '편집 Seo 도구', '2025-11-21 00:41:47'),
(27457, 'ko', 'seotools', 'Featured Submission', 'Featured 제출', '2025-11-21 00:41:47'),
(27455, 'ko', 'seotools', 'directory-submission', '디렉토리 제출', '2025-11-21 00:41:47'),
(27454, 'ko', 'seotools', 'Detailed Reports', '상세 보고서', '2025-11-21 00:41:47'),
(27453, 'ko', 'seotools', 'Detailed Position Reports', 'Detailed 위치 보고서', '2025-11-21 00:41:47'),
(27452, 'ko', 'seotools', 'clickproceedaction', 'URL을 입력하세요''s <b>한 줄에 하나씩</b>. 클릭하세요 <b>계속</b> 확인하려면 결과.', '2025-11-21 00:41:47'),
(27451, 'ko', 'seotools', 'clickgeneratereports', '클릭하세요 <b>계속</b> to 생성 보고서', '2025-11-21 00:41:47'),
(27450, 'ko', 'seotools', 'Check Submission Status', 'Check 제출 상태', '2025-11-21 00:41:47'),
(27449, 'ko', 'seotools', 'Backlinks Reports', '백링크 보고서', '2025-11-21 00:41:47'),
(27448, 'ko', 'seotools', 'backlink-checker', '백링크 확인 도구', '2025-11-21 00:41:47'),
(27447, 'ko', 'seotools', 'Automatic Submission', 'Automatic 제출', '2025-11-21 00:41:47'),
(27446, 'ko', 'seotools', 'Auditor Settings', 'Auditor 설정', '2025-11-21 00:41:47'),
(27445, 'ko', 'seotools', 'Auditor Reports', 'Auditor 보고서', '2025-11-21 00:41:47'),
(27444, 'ko', 'seotools', 'Auditor Projects', 'Auditor Projects', '2025-11-21 00:41:47'),
(27434, 'ko', 'reports', 'Reports Generated Successfully', '보고서 Generated 성공적으로', '2025-11-21 00:41:47'),
(27435, 'ko', 'review', 'Edit Review Link', '편집 리뷰 Link', '2025-11-21 00:41:47'),
(27436, 'ko', 'review', 'New Review Link', '새로운 리뷰 Link', '2025-11-21 00:41:47'),
(27437, 'ko', 'saturation', 'clickproceedsaturation', 'URL을 입력하세요''s <b>한 줄에 하나씩</b>. 클릭하세요 <b>계속</b> 확인하려면 검색 엔진 포화도 결과', '2025-11-21 00:41:47'),
(27438, 'ko', 'saturation', 'GenerateSaturationReports', '생성 검색 엔진 포화도 보고서', '2025-11-21 00:41:47'),
(27439, 'ko', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick 검색 엔진 포화도 확인 도구', '2025-11-21 00:41:47'),
(27440, 'ko', 'saturation', 'Saved Search Engine Saturation results of', '저장됨 검색 엔진 포화도 결과 of', '2025-11-21 00:41:47'),
(27441, 'ko', 'saturation', 'Search Engine Saturation Reports', '검색 엔진 포화도 보고서', '2025-11-21 00:41:47'),
(27442, 'ko', 'searchengine', 'max_results', 'Maximum number of 결과', '2025-11-21 00:41:47'),
(27443, 'ko', 'searchengine', 'no_of_results_page', 'Number of 결과 per page', '2025-11-21 00:41:47'),
(27403, 'ko', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a 프록시', '2025-11-21 00:41:47'),
(27404, 'ko', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web 프록시', '2025-11-21 00:41:47'),
(27405, 'ko', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web 프록시.', '2025-11-21 00:41:47'),
(27406, 'ko', 'QuickWebProxy', 'Server list is empty', 'Server 목록 is empty', '2025-11-21 00:41:47'),
(27407, 'ko', 'QuickWebProxy', 'Url blocked in the web proxy', 'URL blocked in the web 프록시', '2025-11-21 00:41:47'),
(27408, 'ko', 'QuickWebProxy', 'Web Proxy', 'Web 프록시', '2025-11-21 00:41:47'),
(27409, 'ko', 'QuickWebProxy', 'Web Server', 'Web Server', '2025-11-21 00:41:47'),
(27410, 'ko', 'rank', 'enterurlproceed', 'URL을 입력하세요''s <b>한 줄에 하나씩</b>. 클릭하세요 <b>계속</b> 확인하려면 Google and Alexa 순위.', '2025-11-21 00:41:47'),
(27411, 'ko', 'rank', 'Google and Alexa Rank Reports', 'Google and Alexa 순위 보고서', '2025-11-21 00:41:47'),
(27412, 'ko', 'rank', 'Saved rank results of', '저장됨 순위 결과 of', '2025-11-21 00:41:47'),
(27413, 'ko', 'register', 'Account Information', '계정 정보', '2025-11-21 00:41:47'),
(27414, 'ko', 'register', 'Already have account', 'Already have an 계정?', '2025-11-21 00:41:47'),
(27415, 'ko', 'register', 'First name placeholder', '이름', '2025-11-21 00:41:47'),
(27416, 'ko', 'register', 'Last name placeholder', '성', '2025-11-21 00:41:47'),
(27417, 'ko', 'register', 'Personal Information', 'Personal 정보', '2025-11-21 00:41:47'),
(27418, 'ko', 'register', 'Register subtitle', 'Join us 오늘 and 시작 optimizing your SEO', '2025-11-21 00:41:47'),
(27419, 'ko', 'register', 'Registration', '등록', '2025-11-21 00:41:47'),
(27420, 'ko', 'register', 'Subscription Details', '구독 상세정보', '2025-11-21 00:41:47'),
(27421, 'ko', 'register', 'user_confirm_content_1', 'Internal 오류 occured while processing confirm request', '2025-11-21 00:41:47'),
(27422, 'ko', 'register', 'user_confirm_mail_cont_1', 'Thank you for your 등록 with', '2025-11-21 00:41:47'),
(27423, 'ko', 'register', 'user_confirm_mail_cont_2', 'Please 클릭하세요 the following link to confirm 등록', '2025-11-21 00:41:47'),
(27424, 'ko', 'report', '2 Days', '2 Days', '2025-11-21 00:41:47'),
(27425, 'ko', 'report', 'Email notification', '이메일 notification', '2025-11-21 00:41:47'),
(27426, 'ko', 'report', 'keywordnumbercheckedcronnote', 'Note: Default 0 means 전체 키워드 should be 확인됨', '2025-11-21 00:41:47'),
(27427, 'ko', 'report', 'Next report generation time', '다음 보고서 generation time', '2025-11-21 00:41:47'),
(27428, 'ko', 'report', 'Reports generation interval', '보고서 generation interval', '2025-11-21 00:41:47'),
(27429, 'ko', 'report', 'reportsettingssaved', '보고서 설정 저장됨 성공적으로!', '2025-11-21 00:41:47'),
(27430, 'ko', 'report', 'sheduledsuccessfully', 'Scheduled 보고서 generation 성공적으로!', '2025-11-21 00:41:47'),
(27431, 'ko', 'reports', 'report_email_body_text1', 'Your 보고서 generated 성공적으로 in seo panel. Please check the attached 보고서.', '2025-11-21 00:41:47'),
(27432, 'ko', 'reports', 'report_email_body_text2', 'If above 보고서 are not clear, Please [LOGIN_LINK] to 보기 the 보고서 directly 부터 your 계정.', '2025-11-21 00:41:47'),
(27433, 'ko', 'reports', 'report_email_subject', 'Your SEO 보고서 generated 성공적으로', '2025-11-21 00:41:47'),
(27395, 'ko', 'proxy', 'Proxy Password', '프록시 비밀번호', '2025-11-21 00:41:47'),
(27396, 'ko', 'proxy', 'Proxy Username', '프록시 사용자명', '2025-11-21 00:41:47'),
(27397, 'ko', 'proxy', 'Proxyalreadyexist', '프록시 already exist!', '2025-11-21 00:41:47'),
(27398, 'ko', 'proxy', 'proxysyntax', '프록시 Hostname, 프록시 Port, 프록시 사용자명, 프록시 비밀번호', '2025-11-21 00:41:47'),
(27399, 'ko', 'proxy', 'Request Count', 'Request 수', '2025-11-21 00:41:47'),
(27400, 'ko', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2025-11-21 00:41:47'),
(27401, 'ko', 'QuickWebProxy', 'Please enter a valid url', 'Please enter a valid URL', '2025-11-21 00:41:47'),
(27402, 'ko', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow 사용자 to access the web 프록시', '2025-11-21 00:41:47'),
(27394, 'ko', 'proxy', 'enterproxynote', 'Enter 프록시 한 줄에 하나씩 in following format.', '2025-11-21 00:41:47'),
(27393, 'ko', 'proxy', 'Edit Proxy', '편집 프록시', '2025-11-21 00:41:47'),
(27392, 'ko', 'proxy', 'click-to-get-proxy', '여기를 클릭하세요 to get 프록시', '2025-11-21 00:41:47'),
(27391, 'ko', 'plugin', 'Seo Plugin Details', 'Seo 플러그인 상세정보', '2025-11-21 00:41:47'),
(27390, 'ko', 'plugin', 'Plugin Name', '플러그인 이름', '2025-11-21 00:41:47'),
(27389, 'ko', 'plugin', 'Edit Seo Plugin', '편집 Seo 플러그인', '2025-11-21 00:41:47'),
(27388, 'ko', 'plugin', 'Download Seo Panel Plugins', '다운로드 SEO 패널 플러그인', '2025-11-21 00:41:47'),
(27387, 'ko', 'panel', 'Website Manager', '웹사이트 관리자', '2025-11-21 00:41:47'),
(27385, 'ko', 'panel', 'Valid', 'Valid', '2025-11-21 00:41:47'),
(27386, 'ko', 'panel', 'Website Access Manager', '웹사이트 Access 관리자', '2025-11-21 00:41:47'),
(27384, 'ko', 'panel', 'User Type Settings', '사용자 유형 설정', '2025-11-21 00:41:47'),
(27383, 'ko', 'panel', 'User Type Manager', '사용자 유형 관리자', '2025-11-21 00:41:47'),
(27382, 'ko', 'panel', 'User Manager', '사용자 관리자', '2025-11-21 00:41:47'),
(27381, 'ko', 'panel', 'Themes Manager', 'Themes 관리자', '2025-11-21 00:41:47'),
(27380, 'ko', 'panel', 'Test Email Settings', 'Test 이메일 설정', '2025-11-21 00:41:47'),
(27379, 'ko', 'panel', 'System Settings', '시스템 설정', '2025-11-21 00:41:47'),
(27378, 'ko', 'panel', 'Sync Search Engines', 'Sync 검색 엔진', '2025-11-21 00:41:47'),
(27377, 'ko', 'panel', 'Submit Sitemap', '제출 사이트맵', '2025-11-21 00:41:47'),
(27376, 'ko', 'panel', 'Sitemaps', 'Sitemaps', '2025-11-21 00:41:47'),
(27375, 'ko', 'panel', 'Settings', '설정', '2025-11-21 00:41:47'),
(27374, 'ko', 'panel', 'Seo Tools Manager', 'SEO 도구 관리자', '2025-11-21 00:41:47'),
(27373, 'ko', 'panel', 'Seo Plugins Manager', 'SEO 플러그인 관리자', '2025-11-21 00:41:47'),
(27371, 'ko', 'panel', 'Schedule Reports', 'Schedule 보고서', '2025-11-21 00:41:47'),
(27372, 'ko', 'panel', 'Search Engine Manager', '검색 엔진 관리자', '2025-11-21 00:41:47'),
(27370, 'ko', 'panel', 'Reports Manager', '보고서 관리자', '2025-11-21 00:41:47'),
(27369, 'ko', 'panel', 'Report Settings', '보고서 설정', '2025-11-21 00:41:47'),
(27368, 'ko', 'panel', 'Report Generation Manager', '보고서 Generation 관리자', '2025-11-21 00:41:47'),
(27367, 'ko', 'panel', 'Report Generation Logs', '보고서 Generation Logs', '2025-11-21 00:41:47'),
(27366, 'ko', 'panel', 'Proxy Settings', '프록시 설정', '2025-11-21 00:41:47'),
(27365, 'ko', 'panel', 'Proxy Perfomance', '프록시 Perfomance', '2025-11-21 00:41:47'),
(27364, 'ko', 'panel', 'Proxy Manager', '프록시 관리자', '2025-11-21 00:41:47'),
(27363, 'ko', 'panel', 'Project Summary', 'Project Summary', '2025-11-21 00:41:47'),
(27362, 'ko', 'panel', 'Project Manager', '프로젝트 관리자', '2025-11-21 00:41:47'),
(27361, 'ko', 'panel', 'New Website', '새로운 웹사이트', '2025-11-21 00:41:47'),
(27360, 'ko', 'panel', 'New User Type', '새로운 사용자 유형', '2025-11-21 00:41:47'),
(27359, 'ko', 'panel', 'New User', '새로운 사용자', '2025-11-21 00:41:47'),
(27358, 'ko', 'panel', 'New Proxy', '새로운 프록시', '2025-11-21 00:41:47'),
(27357, 'ko', 'panel', 'New Project', '새로운 Project', '2025-11-21 00:41:47'),
(27356, 'ko', 'panel', 'My Profile', 'My 프로필', '2025-11-21 00:41:47'),
(27355, 'ko', 'panel', 'MOZ Settings', 'MOZ 설정', '2025-11-21 00:41:47'),
(27354, 'ko', 'panel', 'Mail Settings', 'Mail 설정', '2025-11-21 00:41:47'),
(27353, 'ko', 'panel', 'Mail Log Manager', '메일 로그 관리자', '2025-11-21 00:41:47'),
(27352, 'ko', 'panel', 'Log Manager', '로그 관리자', '2025-11-21 00:41:47'),
(27351, 'ko', 'panel', 'Import Websites', '가져오기 웹사이트', '2025-11-21 00:41:47'),
(27350, 'ko', 'panel', 'Import Proxy', '가져오기 프록시', '2025-11-21 00:41:47'),
(27349, 'ko', 'panel', 'Google Settings', 'Google 설정', '2025-11-21 00:41:47'),
(27348, 'ko', 'panel', 'Global Reports Settings', 'Global 보고서 설정', '2025-11-21 00:41:47'),
(27347, 'ko', 'panel', 'Existing', 'Existing', '2025-11-21 00:41:47'),
(27346, 'ko', 'panel', 'Edit Project', '편집 Project', '2025-11-21 00:41:47'),
(27345, 'ko', 'panel', 'Edit My Profile', '편집 My 프로필', '2025-11-21 00:41:47'),
(27344, 'ko', 'panel', 'Directory Manager', '디렉토리 관리자', '2025-11-21 00:41:47'),
(27343, 'ko', 'panel', 'DataForSEO Settings', 'DataForSEO 설정', '2025-11-21 00:41:47'),
(27342, 'ko', 'panel', 'Current Time', 'Current Time', '2025-11-21 00:41:47'),
(27341, 'ko', 'panel', 'Cron Command', 'Cron Command', '2025-11-21 00:41:47'),
(27340, 'ko', 'panel', 'Crawl Log Manager', '크롤 로그 관리자', '2025-11-21 00:41:47'),
(27339, 'ko', 'panel', 'Connections', 'Connections', '2025-11-21 00:41:47'),
(27338, 'ko', 'panel', 'Check Directory', '디렉토리 확인', '2025-11-21 00:41:47'),
(27337, 'ko', 'panel', 'Archived Reports', 'Archived 보고서', '2025-11-21 00:41:47'),
(27336, 'ko', 'panel', 'API Settings', 'API 설정', '2025-11-21 00:41:47'),
(27335, 'ko', 'panel', 'API Manager', 'API 관리자', '2025-11-21 00:41:47'),
(27334, 'ko', 'panel', 'API Connection', 'API Connection', '2025-11-21 00:41:47'),
(27333, 'ko', 'panel', 'alsocheckfollowlink', '자세한 내용이 필요한 경우 다음 링크를 확인하세요.', '2025-11-21 00:41:47'),
(27332, 'ko', 'panel', 'Alerts', 'Alerts', '2025-11-21 00:41:47'),
(27331, 'ko', 'panel', 'Add following command to your cron tab', '추가 following command to your cron tab', '2025-11-21 00:41:47'),
(27330, 'ko', 'panel', 'About Us', 'About Us', '2025-11-21 00:41:47'),
(27329, 'ko', 'pagespeed', 'Saved page speed results of', '저장됨 페이지 속도 결과 of', '2025-11-21 00:41:47'),
(27328, 'ko', 'pagespeed', 'PageSpeed Details', 'PageSpeed 상세정보', '2025-11-21 00:41:47'),
(27327, 'ko', 'pagespeed', 'Page Speed', '페이지 속도', '2025-11-21 00:41:47'),
(27326, 'ko', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2025-11-21 00:41:47'),
(27325, 'ko', 'pagespeed', 'Mobile Speed', 'Mobile Speed', '2025-11-21 00:41:47'),
(27324, 'ko', 'pagespeed', 'Desktop Speed', 'Desktop Speed', '2025-11-21 00:41:47'),
(27323, 'ko', 'myaccount', 'Disconnected', 'Disconnected', '2025-11-21 00:41:47'),
(27322, 'ko', 'myaccount', 'Disconnect', 'Disconnect', '2025-11-21 00:41:47'),
(27321, 'ko', 'myaccount', 'Connected', 'Connected', '2025-11-21 00:41:47'),
(27320, 'ko', 'myaccount', 'Connect', 'Connect', '2025-11-21 00:41:47'),
(27319, 'ko', 'login', 'Your Password Reset Successfully', '비밀번호가 성공적으로 재설정되었습니다', '2025-11-21 00:41:47'),
(27318, 'ko', 'login', 'Your Password Reset Failed', 'Your 비밀번호 Reset 실패', '2025-11-21 00:41:47'),
(27317, 'ko', 'login', 'Your account password is resetted and new password is', 'Your 계정 비밀번호 is resetted and 새 비밀번호 is', '2025-11-21 00:41:47'),
(27316, 'ko', 'login', 'Your account activated successfully', '계정이 성공적으로 활성화되었습니다', '2025-11-21 00:41:47'),
(27315, 'ko', 'login', 'Welcome message', 'Welcome 뒤로! Please 로그인 to your 계정', '2025-11-21 00:41:47'),
(27313, 'ko', 'login', 'usernameexist', '사용자명 already exist!', '2025-11-21 00:41:47'),
(27314, 'ko', 'login', 'Verification', 'Verification', '2025-11-21 00:41:47'),
(27312, 'ko', 'login', 'Username placeholder', 'Enter your 사용자명', '2025-11-21 00:41:47'),
(27311, 'ko', 'login', 'Username', '사용자명', '2025-11-21 00:41:47'),
(27310, 'ko', 'login', 'user_not_activated_msg', '사용자가 활성화되지 않았습니다. 활성화를 위해 메일을 확인하세요', '2025-11-21 00:41:47'),
(27309, 'ko', 'login', 'user_email_not_exist', '사용자 이메일 is not existing in system!', '2025-11-21 00:41:47'),
(27308, 'ko', 'login', 'User Type', '사용자 유형', '2025-11-21 00:41:47'),
(27307, 'ko', 'login', 'User inactive', '사용자 inactive', '2025-11-21 00:41:47'),
(27306, 'ko', 'login', 'to login to your account', 'to 로그인 to your 계정', '2025-11-21 00:41:47'),
(27305, 'ko', 'login', 'Sign in to your account', '계정에 로그인', '2025-11-21 00:41:47'),
(27304, 'ko', 'login', 'Sign In', '로그인', '2025-11-21 00:41:47'),
(27303, 'ko', 'login', 'Security message', 'Your 정보 is secure and encrypted', '2025-11-21 00:41:47'),
(27302, 'ko', 'login', 'Request Password', 'Request 비밀번호', '2025-11-21 00:41:47'),
(27301, 'ko', 'login', 'Remember password text', 'Remember your 비밀번호?', '2025-11-21 00:41:47'),
(27300, 'ko', 'login', 'Register', '회원가입', '2025-11-21 00:41:47'),
(27299, 'ko', 'login', 'password_reset_success_message', '비밀번호가 성공적으로 재설정되었습니다. 확인 메일이 이메일 주소로 전송되었습니다. <br>받은편지함을 확인하세요 to get your 새 비밀번호.', '2025-11-21 00:41:47'),
(27298, 'ko', 'login', 'Password placeholder', 'Enter your 비밀번호', '2025-11-21 00:41:47'),
(27297, 'ko', 'login', 'Password incorrect', '비밀번호 incorrect', '2025-11-21 00:41:47'),
(27296, 'ko', 'login', 'Password', '비밀번호', '2025-11-21 00:41:47'),
(27295, 'ko', 'login', 'No account text', 'Don''t have an 계정?', '2025-11-21 00:41:47'),
(27294, 'ko', 'login', 'newaccountsuccess', '새 계정이 성공적으로 생성되었습니다!', '2025-11-21 00:41:47'),
(27293, 'ko', 'login', 'Login incorrect', '로그인 incorrect', '2025-11-21 00:41:47'),
(27291, 'ko', 'login', 'Last Name', '성', '2025-11-21 00:41:47'),
(27292, 'ko', 'login', 'Login', '로그인', '2025-11-21 00:41:47'),
(27290, 'ko', 'login', 'internal_error_mail_send', 'An internal 오류 occured while sending 비밀번호 reset mail!', '2025-11-21 00:41:47'),
(27289, 'ko', 'login', 'Forgot subtitle', 'Enter your 이메일 address and we''ll send you instructions to reset your 비밀번호', '2025-11-21 00:41:47'),
(27288, 'ko', 'login', 'Forgot password?', '비밀번호 찾기?', '2025-11-21 00:41:47'),
(27287, 'ko', 'login', 'First Name', '이름', '2025-11-21 00:41:47'),
(27286, 'ko', 'login', 'Enter the code as it is shown', '표시된 대로 코드를 입력하세요', '2025-11-21 00:41:47'),
(27285, 'ko', 'login', 'Enter the code', '코드를 입력하세요', '2025-11-21 00:41:47'),
(27284, 'ko', 'login', 'emailexist', '이메일 already exist!', '2025-11-21 00:41:47'),
(27283, 'ko', 'login', 'Email placeholder', 'your@이메일.com', '2025-11-21 00:41:47'),
(27282, 'ko', 'login', 'Email', '이메일', '2025-11-21 00:41:47'),
(27281, 'ko', 'login', 'Create New Account', '생성 새로운 계정', '2025-11-21 00:41:47'),
(27280, 'ko', 'login', 'Create my account', '생성 내 계정', '2025-11-21 00:41:47'),
(27279, 'ko', 'login', 'Confirm Password', '비밀번호 확인', '2025-11-21 00:41:47'),
(27278, 'ko', 'log', 'Post Fields', '게시물 Fields', '2025-11-21 00:41:47'),
(27277, 'ko', 'log', 'Mail Log Details', 'Mail Log 상세정보', '2025-11-21 00:41:47'),
(27276, 'ko', 'log', 'Crawl Log Details', '크롤 Log 상세정보', '2025-11-21 00:41:47'),
(27275, 'ko', 'log', 'Clear All Logs', 'Clear 전체 Logs', '2025-11-21 00:41:47'),
(27274, 'ko', 'label', 'Year', 'Year', '2025-11-21 00:41:47'),
(27273, 'ko', 'label', 'Write', 'Write', '2025-11-21 00:41:47'),
(27272, 'ko', 'label', 'Weekly', 'Weekly', '2025-11-21 00:41:47'),
(27271, 'ko', 'label', 'Week', 'Week', '2025-11-21 00:41:47'),
(27270, 'ko', 'label', 'wantproceed', 'Do you really want to 계속?', '2025-11-21 00:41:47'),
(27269, 'ko', 'label', 'View Reports', '보기 보고서', '2025-11-21 00:41:47'),
(27268, 'ko', 'label', 'Version', 'Version', '2025-11-21 00:41:47'),
(27267, 'ko', 'label', 'User agent', '사용자 agent', '2025-11-21 00:41:47'),
(27266, 'ko', 'label', 'Usability', 'Usability', '2025-11-21 00:41:47'),
(27265, 'ko', 'label', 'Upgrade', 'Upgrade', '2025-11-21 00:41:47'),
(27264, 'ko', 'label', 'Updated', '업데이트됨', '2025-11-21 00:41:47'),
(27263, 'ko', 'label', 'Type', '유형', '2025-11-21 00:41:47'),
(27262, 'ko', 'label', 'Translators', 'Translators', '2025-11-21 00:41:47'),
(27261, 'ko', 'label', 'translation by', 'translation by', '2025-11-21 00:41:47'),
(27260, 'ko', 'label', 'Total Results', '전체 결과', '2025-11-21 00:41:47'),
(27259, 'ko', 'label', 'Title', '제목', '2025-11-21 00:41:47'),
(27258, 'ko', 'label', 'Theme', 'Theme', '2025-11-21 00:41:47'),
(27257, 'ko', 'label', 'Syntax', 'Syntax', '2025-11-21 00:41:47'),
(27256, 'ko', 'label', 'Success', '성공', '2025-11-21 00:41:47'),
(27255, 'ko', 'label', 'Subject', 'Subject', '2025-11-21 00:41:47'),
(27254, 'ko', 'label', 'Sponsors', 'Sponsors', '2025-11-21 00:41:47'),
(27253, 'ko', 'label', 'Speed', 'Speed', '2025-11-21 00:41:47'),
(27252, 'ko', 'label', 'Select All', '선택 전체', '2025-11-21 00:41:47'),
(27251, 'ko', 'label', 'Second', 'Second', '2025-11-21 00:41:47'),
(27250, 'ko', 'label', 'Score', '점수', '2025-11-21 00:41:47'),
(27249, 'ko', 'label', 'Reviews', '리뷰', '2025-11-21 00:41:47'),
(27248, 'ko', 'label', 'Report Type', '보고서 유형', '2025-11-21 00:41:47'),
(27247, 'ko', 'label', 'Referer', 'Referer', '2025-11-21 00:41:47'),
(27246, 'ko', 'label', 'Reference', 'Reference', '2025-11-21 00:41:47'),
(27244, 'ko', 'label', 'Read', 'Read', '2025-11-21 00:41:47'),
(27245, 'ko', 'label', 'Recent Activity', 'Recent Activity', '2025-11-21 00:41:47'),
(27243, 'ko', 'label', 'Re-install', 'Re-install', '2025-11-21 00:41:47'),
(27242, 'ko', 'label', 'Rating', 'Rating', '2025-11-21 00:41:47'),
(27240, 'ko', 'label', 'Project', 'Project', '2025-11-21 00:41:47'),
(27241, 'ko', 'label', 'Proxy', '프록시', '2025-11-21 00:41:47'),
(27239, 'ko', 'label', 'Port', 'Port', '2025-11-21 00:41:47'),
(27238, 'ko', 'label', 'Plugin', '플러그인', '2025-11-21 00:41:47'),
(27237, 'ko', 'label', 'Overview', '개요', '2025-11-21 00:41:47'),
(27236, 'ko', 'label', 'Order By', 'Order By', '2025-11-21 00:41:47'),
(27234, 'ko', 'label', 'Months', 'Months', '2025-11-21 00:41:47'),
(27235, 'ko', 'label', 'noactiveplugins', 'No 활성 SEO 플러그인 Found!', '2025-11-21 00:41:47'),
(27233, 'ko', 'label', 'Monthly', 'Monthly', '2025-11-21 00:41:47'),
(27231, 'ko', 'label', 'Mobile', 'Mobile', '2025-11-21 00:41:47'),
(27232, 'ko', 'label', 'Month', 'Month', '2025-11-21 00:41:47'),
(27230, 'ko', 'label', 'Minute', 'Minute', '2025-11-21 00:41:47'),
(27228, 'ko', 'label', 'Keywords', '키워드', '2025-11-21 00:41:47'),
(27229, 'ko', 'label', 'Likes', 'Likes', '2025-11-21 00:41:47'),
(27227, 'ko', 'label', 'Just Now', 'Just Now', '2025-11-21 00:41:47'),
(27226, 'ko', 'label', 'Installation', 'Installation', '2025-11-21 00:41:47'),
(27225, 'ko', 'label', 'Include', 'Include', '2025-11-21 00:41:47'),
(27223, 'ko', 'label', 'Hour', 'Hour', '2025-11-21 00:41:47'),
(27224, 'ko', 'label', 'Impressions', 'Impressions', '2025-11-21 00:41:47'),
(27222, 'ko', 'label', 'From', '부터', '2025-11-21 00:41:47'),
(27221, 'ko', 'label', 'Free', 'Free', '2025-11-21 00:41:47'),
(27220, 'ko', 'label', 'Followers', 'Followers', '2025-11-21 00:41:47'),
(27219, 'ko', 'label', 'Feature', 'Feature', '2025-11-21 00:41:47'),
(27218, 'ko', 'label', 'Fail', 'Fail', '2025-11-21 00:41:47'),
(27217, 'ko', 'label', 'Exclude', 'Exclude', '2025-11-21 00:41:47'),
(27216, 'ko', 'label', 'Email Body', '이메일 Body', '2025-11-21 00:41:47'),
(27215, 'ko', 'label', 'Download', '다운로드', '2025-11-21 00:41:47'),
(27214, 'ko', 'label', 'Developers', 'Developers', '2025-11-21 00:41:47'),
(27212, 'ko', 'label', 'Description', '설명', '2025-11-21 00:41:47'),
(27213, 'ko', 'label', 'Desktop', 'Desktop', '2025-11-21 00:41:47'),
(27210, 'ko', 'label', 'Day', 'Day', '2025-11-21 00:41:47'),
(27211, 'ko', 'label', 'Days', 'Days', '2025-11-21 00:41:47'),
(27208, 'ko', 'label', 'Current', 'Current', '2025-11-21 00:41:47'),
(27209, 'ko', 'label', 'Daily', 'Daily', '2025-11-21 00:41:47'),
(27207, 'ko', 'label', 'Cron', 'Cron', '2025-11-21 00:41:47'),
(27206, 'ko', 'label', 'Count', '수', '2025-11-21 00:41:47'),
(27204, 'ko', 'label', 'Comments', 'Comments', '2025-11-21 00:41:47'),
(27205, 'ko', 'label', 'Cookie', 'Cookie', '2025-11-21 00:41:47'),
(27203, 'ko', 'label', 'Clicks', '클릭', '2025-11-21 00:41:47'),
(27202, 'ko', 'label', 'Click Here', '여기를 클릭하세요', '2025-11-21 00:41:47'),
(27201, 'ko', 'label', 'Clear All', 'Clear 전체', '2025-11-21 00:41:47'),
(27199, 'ko', 'label', 'Author', 'Author', '2025-11-21 00:41:47'),
(27200, 'ko', 'label', 'Brocken', 'Broken', '2025-11-21 00:41:47'),
(27197, 'ko', 'label', 'already exist', 'already exist', '2025-11-21 00:41:47'),
(27198, 'ko', 'label', 'Authentication', 'Authentication', '2025-11-21 00:41:47'),
(27195, 'ko', 'label', 'Access denied', 'Access denied', '2025-11-21 00:41:47'),
(27196, 'ko', 'label', 'Ago', 'Ago', '2025-11-21 00:41:47'),
(27194, 'ko', 'keyword', 'Your keyword count already reached the limit', '키워드 수 already reached the limit for this 사용자!', '2025-11-21 00:41:47'),
(27193, 'ko', 'keyword', 'You can add only keywordcount keywords more', 'You can 추가 only [keywordcount] 키워드 for this 사용자!', '2025-11-21 00:41:47'),
(27191, 'ko', 'keyword', 'to create new keywords', 'to 생성 새로운 키워드', '2025-11-21 00:41:47'),
(27192, 'ko', 'keyword', 'Top Keywords', 'Top 키워드', '2025-11-21 00:41:47'),
(27190, 'ko', 'keyword', 'Successfully crawled keyword', '키워드를 성공적으로 크롤했습니다', '2025-11-21 00:41:47'),
(27188, 'ko', 'keyword', 'results from ', '결과 부터 ', '2025-11-21 00:41:47'),
(27189, 'ko', 'keyword', 'Show All results', 'Show 전체 결과', '2025-11-21 00:41:47'),
(27187, 'ko', 'keyword', 'Ranking Trends', 'Ranking Trends', '2025-11-21 00:41:47'),
(27186, 'ko', 'keyword', 'Quick Keyword Position Checker', '빠른 키워드 위치 확인 도구', '2025-11-21 00:41:47'),
(27185, 'ko', 'keyword', 'pleaseselecttool', '최소한 하나의 SEO 도구를 선택하세요', '2025-11-21 00:41:47'),
(27184, 'ko', 'keyword', 'not assigned to required search engines', 'not assigned to required 검색 엔진', '2025-11-21 00:41:47'),
(27183, 'ko', 'keyword', 'New Keyword', '새로운 키워드', '2025-11-21 00:41:47'),
(27182, 'ko', 'keyword', 'Keywords Tracked', '키워드 Tracked', '2025-11-21 00:41:47'),
(27181, 'ko', 'keyword', 'Keyword Ranking Trends', '키워드 Ranking Trends', '2025-11-21 00:41:47'),
(27179, 'ko', 'keyword', 'Keyword already exist', '키워드 already exist', '2025-11-21 00:41:47'),
(27180, 'ko', 'keyword', 'Keyword Position Report', '키워드 위치 보고서', '2025-11-21 00:41:47'),
(27178, 'ko', 'keyword', 'Insert keywords separated with comma', 'Insert 키워드 separated with comma', '2025-11-21 00:41:47'),
(27177, 'ko', 'keyword', 'Import Keywords', '가져오기 키워드', '2025-11-21 00:41:47'),
(27176, 'ko', 'keyword', 'Graphical Keyword Position Reports', 'Graphical 키워드 위치 보고서', '2025-11-21 00:41:47'),
(27175, 'ko', 'keyword', 'Edit Keyword', '키워드 편집', '2025-11-21 00:41:47'),
(27174, 'ko', 'keyword', 'Detailed Keyword Position Reports', 'Detailed 키워드 위치 보고서', '2025-11-21 00:41:47'),
(27173, 'ko', 'keyword', 'Crawling keyword', 'Crawling 키워드', '2025-11-21 00:41:47'),
(27172, 'ko', 'home', 'Website Statistics', '웹사이트 Statistics', '2025-11-21 00:41:47'),
(27170, 'ko', 'home', 'Ranks', 'Ranks', '2025-11-21 00:41:47'),
(27171, 'ko', 'home', 'SiteNameUrl', 'Site 이름/URL', '2025-11-21 00:41:47'),
(27169, 'ko', 'home', 'Pages Indexed', 'Pages Indexed', '2025-11-21 00:41:47'),
(27168, 'ko', 'home', 'Page Overview Report', 'Page Overview 보고서', '2025-11-21 00:41:47'),
(27167, 'ko', 'home', 'Overall Report Summary', 'Overall 보고서 Summary', '2025-11-21 00:41:47'),
(27166, 'ko', 'home', 'Keyword Overview Report', '키워드 Overview 보고서', '2025-11-21 00:41:47'),
(27165, 'ko', 'home', 'Indexed', 'Indexed', '2025-11-21 00:41:47'),
(38401, 'hy', 'socialmedia', 'Top Social Media Profiles', 'Լավագույն սոցիալական մեդիայի պրոֆիլներ', '2026-01-19 22:56:41'),
(38402, 'id', 'socialmedia', 'Top Social Media Profiles', 'Profil Media Sosial Teratas', '2026-01-19 22:56:41'),
(38403, 'it', 'socialmedia', 'Top Social Media Profiles', 'Migliori Profili Social Media', '2026-01-19 22:56:41'),
(38404, 'ja', 'socialmedia', 'Top Social Media Profiles', 'トップソーシャルメディアプロフィール', '2026-01-19 22:56:41'),
(38405, 'ko', 'socialmedia', 'Top Social Media Profiles', '상위 소셜 미디어 프로필', '2026-01-19 22:56:41'),
(38406, 'lt', 'socialmedia', 'Top Social Media Profiles', 'Geriausios socialinės žiniasklaidos paskyros', '2026-01-19 22:56:41'),
(38407, 'mk', 'socialmedia', 'Top Social Media Profiles', 'Топ профили на социјални медиуми', '2026-01-19 22:56:41'),
(38408, 'nl', 'socialmedia', 'Top Social Media Profiles', 'Top sociale media profielen', '2026-01-19 22:56:41'),
(38409, 'no', 'socialmedia', 'Top Social Media Profiles', 'Topp sosiale medier profiler', '2026-01-19 22:56:41'),
(38410, 'pl', 'socialmedia', 'Top Social Media Profiles', 'Najlepsze profile mediów społecznościowych', '2026-01-19 22:56:41'),
(38411, 'pt', 'socialmedia', 'Top Social Media Profiles', 'Principais perfis de redes sociais', '2026-01-19 22:56:41'),
(38412, 'pt-br', 'socialmedia', 'Top Social Media Profiles', 'Principais perfis de redes sociais', '2026-01-19 22:56:41'),
(38413, 'ro', 'socialmedia', 'Top Social Media Profiles', 'Top profiluri Social Media', '2026-01-19 22:56:41'),
(38414, 'ru', 'socialmedia', 'Top Social Media Profiles', 'Топ профилей социальных сетей', '2026-01-19 22:56:41'),
(38415, 'sk', 'socialmedia', 'Top Social Media Profiles', 'Top profily sociálnych médií', '2026-01-19 22:56:41'),
(38416, 'sl', 'socialmedia', 'Top Social Media Profiles', 'Najboljši profili družbenih medijev', '2026-01-19 22:56:41'),
(38417, 'sq', 'socialmedia', 'Top Social Media Profiles', 'Profilet kryesore të mediave sociale', '2026-01-19 22:56:41'),
(38418, 'sr', 'socialmedia', 'Top Social Media Profiles', 'Топ профили друштвених медија', '2026-01-19 22:56:41'),
(38419, 'sv', 'socialmedia', 'Top Social Media Profiles', 'Bästa sociala medier profiler', '2026-01-19 22:56:41'),
(38420, 'sw', 'socialmedia', 'Top Social Media Profiles', 'Wasifu Bora wa Mitandao ya Kijamii', '2026-01-19 22:56:41'),
(38421, 'th', 'socialmedia', 'Top Social Media Profiles', 'โปรไฟล์โซเชียลมีเดียชั้นนำ', '2026-01-19 22:56:41'),
(38422, 'tl', 'socialmedia', 'Top Social Media Profiles', 'Nangungunang Mga Profile ng Social Media', '2026-01-19 22:56:41'),
(38423, 'tr', 'socialmedia', 'Top Social Media Profiles', 'En İyi Sosyal Medya Profilleri', '2026-01-19 22:56:41'),
(38424, 'uk', 'socialmedia', 'Top Social Media Profiles', 'Топ профілів соціальних мереж', '2026-01-19 22:56:41'),
(38425, 'vn', 'socialmedia', 'Top Social Media Profiles', 'Hồ sơ mạng xã hội hàng đầu', '2026-01-19 22:56:41'),
(38426, 'zh', 'socialmedia', 'Top Social Media Profiles', '热门社交媒体资料', '2026-01-19 22:56:41'),
(38427, 'en', 'socialmedia', 'Social Media Profile Details', 'Social Media Profile Details', '2026-01-19 22:56:41'),
(38428, 'ar', 'socialmedia', 'Social Media Profile Details', 'تفاصيل ملف وسائل التواصل الاجتماعي', '2026-01-19 22:56:41'),
(38429, 'bg', 'socialmedia', 'Social Media Profile Details', 'Детайли на профила в социалните медии', '2026-01-19 22:56:41'),
(38430, 'bs', 'socialmedia', 'Social Media Profile Details', 'Detalji profila društvenih medija', '2026-01-19 22:56:41'),
(38431, 'ca', 'socialmedia', 'Social Media Profile Details', 'Detalls del perfil de xarxes socials', '2026-01-19 22:56:41'),
(38432, 'cn', 'socialmedia', 'Social Media Profile Details', '社交媒体资料详情', '2026-01-19 22:56:41'),
(38433, 'cs', 'socialmedia', 'Social Media Profile Details', 'Podrobnosti profilu sociálních médií', '2026-01-19 22:56:41'),
(38434, 'da', 'socialmedia', 'Social Media Profile Details', 'Sociale medie profildetaljer', '2026-01-19 22:56:41'),
(38435, 'de', 'socialmedia', 'Social Media Profile Details', 'Social-Media-Profildetails', '2026-01-19 22:56:41'),
(38436, 'el', 'socialmedia', 'Social Media Profile Details', 'Λεπτομέρειες προφίλ κοινωνικών μέσων', '2026-01-19 22:56:41'),
(38437, 'es', 'socialmedia', 'Social Media Profile Details', 'Detalles del perfil de redes sociales', '2026-01-19 22:56:41'),
(38438, 'es-ar', 'socialmedia', 'Social Media Profile Details', 'Detalles del perfil de redes sociales', '2026-01-19 22:56:41'),
(38439, 'fa', 'socialmedia', 'Social Media Profile Details', 'جزئیات پروفایل رسانه های اجتماعی', '2026-01-19 22:56:41'),
(38440, 'fi', 'socialmedia', 'Social Media Profile Details', 'Sosiaalisen median profiilin tiedot', '2026-01-19 22:56:41'),
(38441, 'fr', 'socialmedia', 'Social Media Profile Details', 'Détails du profil de médias sociaux', '2026-01-19 22:56:41'),
(38442, 'he', 'socialmedia', 'Social Media Profile Details', 'פרטי פרופיל מדיה חברתית', '2026-01-19 22:56:41'),
(38443, 'hi', 'socialmedia', 'Social Media Profile Details', 'सोशल मीडिया प्रोफाइल विवरण', '2026-01-19 22:56:41'),
(38444, 'hr', 'socialmedia', 'Social Media Profile Details', 'Detalji profila društvenih medija', '2026-01-19 22:56:41'),
(38445, 'hu', 'socialmedia', 'Social Media Profile Details', 'Közösségi média profil részletei', '2026-01-19 22:56:41'),
(38446, 'hy', 'socialmedia', 'Social Media Profile Details', 'Սոցիալական մեդիայի պրոֆիլի մանրամասներ', '2026-01-19 22:56:41'),
(38447, 'id', 'socialmedia', 'Social Media Profile Details', 'Detail Profil Media Sosial', '2026-01-19 22:56:41'),
(38448, 'it', 'socialmedia', 'Social Media Profile Details', 'Dettagli Profilo Social Media', '2026-01-19 22:56:41'),
(38449, 'ja', 'socialmedia', 'Social Media Profile Details', 'ソーシャルメディアプロフィール詳細', '2026-01-19 22:56:41'),
(38450, 'ko', 'socialmedia', 'Social Media Profile Details', '소셜 미디어 프로필 세부정보', '2026-01-19 22:56:41'),
(38451, 'lt', 'socialmedia', 'Social Media Profile Details', 'Socialinės žiniasklaidos paskyros detalės', '2026-01-19 22:56:41'),
(38452, 'mk', 'socialmedia', 'Social Media Profile Details', 'Детали на профилот на социјални медиуми', '2026-01-19 22:56:41'),
(27160, 'ko', 'home', 'Backlinks', '백링크', '2025-11-21 00:41:47'),
(27161, 'ko', 'home', 'Directory Submission', '디렉토리 제출', '2025-11-21 00:41:47'),
(27159, 'ko', 'home', 'Account Summary', '계정 Summary', '2025-11-21 00:41:47'),
(27158, 'ko', 'guest', 'Why Choose SEO Panel?', 'Why Choose SEO Panel?', '2025-11-21 00:41:47'),
(27157, 'ko', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-11-21 00:41:47'),
(27156, 'ko', 'guest', 'View Demo', '보기 Demo', '2025-11-21 00:41:47'),
(27155, 'ko', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their 웹사이트.', '2025-11-21 00:41:47'),
(27154, 'ko', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-11-21 00:41:47'),
(27153, 'ko', 'guest', 'Support Development', 'Support Development', '2025-11-21 00:41:47'),
(27152, 'ko', 'guest', 'Social Media Integration desc', 'Integrate with Google 분석, 검색 Console, and 소셜 미디어 platforms for comprehensive 보고.', '2025-11-21 00:41:47'),
(27151, 'ko', 'guest', 'Social Media Integration', '소셜 미디어 Integration', '2025-11-21 00:41:47'),
(27150, 'ko', 'guest', 'Site Auditor desc', '각 페이지의 모든 SEO 요소 감사 and XML, HTML 및 TEXT 사이트맵 생성 검색 엔진용.', '2025-11-21 00:41:47'),
(27149, 'ko', 'guest', 'Search Engine Saturation desc', 'Find the number of indexed pages across different 검색 엔진 and monitor your indexing progress.', '2025-11-21 00:41:47'),
(27148, 'ko', 'guest', 'Resources & Support', 'Resources & Support', '2025-11-21 00:41:47'),
(27147, 'ko', 'guest', 'Rank Checker desc', 'Check Google PageRank, Alexa 순위, and Moz 순위 종합적인 일일 추적 및 보고 기능 포함.', '2025-11-21 00:41:47'),
(27146, 'ko', 'guest', 'Powerful SEO Features', 'Powerful SEO 기능', '2025-11-21 00:41:47'),
(27145, 'ko', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful 플러그인 including Article Submitter, 메타 태그 생성기, and more.', '2025-11-21 00:41:47'),
(27144, 'ko', 'guest', 'Plugin Architecture', '플러그인 Architecture', '2025-11-21 00:41:47'),
(27143, 'ko', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited 웹사이트 부터 a single control panel with centralized 보고.', '2025-11-21 00:41:47'),
(27142, 'ko', 'guest', 'Multi-Website Support', 'Multi-웹사이트 Support', '2025-11-21 00:41:47'),
(27141, 'ko', 'guest', 'Login to Get Started', '로그인 to Get Started', '2025-11-21 00:41:47'),
(27140, 'ko', 'guest', 'Keyword Position Checker desc', 'Track your 키워드 rankings across multiple 검색 엔진 with detailed daily 보고서 and beautiful graphs.', '2025-11-21 00:41:47'),
(27138, 'ko', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-11-21 00:41:47'),
(27139, 'ko', 'guest', 'Highly Extensible desc', 'Easily develop and install custom 플러그인 to extend functionality according to your needs.', '2025-11-21 00:41:47'),
(27137, 'ko', 'guest', 'Hero subtitle', 'World''s 처음 열기 Source SEO Control Panel for Multiple 웹사이트', '2025-11-21 00:41:47'),
(27136, 'ko', 'guest', 'Hero description', 'A complete 열기 source SEO control panel for managing 검색 엔진 optimization of your 웹사이트. SEO Panel is a powerful toolkit that includes the latest SEO 도구 to increase and track the performance of your 웹사이트.', '2025-11-21 00:41:47'),
(27135, 'ko', 'guest', 'Get Support', 'Get Support', '2025-11-21 00:41:47'),
(27134, 'ko', 'guest', 'Download SEO Panel', '다운로드 SEO Panel', '2025-11-21 00:41:47'),
(27133, 'ko', 'guest', 'Documentation', 'Documentation', '2025-11-21 00:41:47'),
(27132, 'ko', 'guest', 'Directory Submission desc', 'Automatically 제출 your 웹사이트 to major free and paid directories with 상태 추적.', '2025-11-21 00:41:47'),
(27131, 'ko', 'guest', 'Contact Us', '연락처 Us', '2025-11-21 00:41:47'),
(27130, 'ko', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-11-21 00:41:47'),
(27129, 'ko', 'guest', 'Browse Plugins', 'Browse 플러그인', '2025-11-21 00:41:47'),
(27128, 'ko', 'guest', 'Backlinks Checker desc', 'Monitor the number of 백링크 부터 major 검색 엔진 and track your link building progress over time.', '2025-11-21 00:41:47'),
(27126, 'ko', 'guest', '100% Open Source', '100% 열기 Source', '2025-11-21 00:41:47'),
(27127, 'ko', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. 다운로드, customize, and use without any restrictions.', '2025-11-21 00:41:47'),
(27125, 'ko', 'directory', 'Website Url', '웹사이트 URL', '2025-11-21 00:41:47'),
(27124, 'ko', 'directory', 'Website Category', '웹사이트 카테고리', '2025-11-21 00:41:47'),
(27123, 'ko', 'directory', 'Submit Title', '제출 제목', '2025-11-21 00:41:47'),
(27122, 'ko', 'directory', 'Submit Keywords', '제출 키워드', '2025-11-21 00:41:47'),
(27121, 'ko', 'directory', 'Submit Description', '제출 설명', '2025-11-21 00:41:47'),
(27120, 'ko', 'directory', 'Submission Details', '제출 상세정보', '2025-11-21 00:41:47'),
(27119, 'ko', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary 이메일 address.', '2025-11-21 00:41:47'),
(27118, 'ko', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi 자동 디렉토리 제출 도구', '2025-11-21 00:41:47'),
(27117, 'ko', 'directory', 'selectwebsiteschecksub', '선택 <b>웹사이트</b> to <b>계속</b> check 디렉토리 제출.', '2025-11-21 00:41:47'),
(27116, 'ko', 'directory', 'selectwebsiteproceed', '선택 <b>웹사이트</b> to <b>계속</b> 디렉토리 제출.<br>Check <b>Directories with out captcha</b> to 제출 directories with out captcha', '2025-11-21 00:41:47'),
(27115, 'ko', 'directory', 'Reciprocal Link', 'Reciprocal Link', '2025-11-21 00:41:47'),
(27114, 'ko', 'directory', 'Please select a website to proceed', '계속하려면 웹사이트를 선택하세요', '2025-11-21 00:41:47'),
(27113, 'ko', 'directory', 'Pending', '대기중', '2025-11-21 00:41:47'),
(27111, 'ko', 'directory', 'Owner Email', 'Owner 이메일', '2025-11-21 00:41:47'),
(27112, 'ko', 'directory', 'Owner Name', 'Owner 이름', '2025-11-21 00:41:47'),
(27110, 'ko', 'directory', 'optionalnote', 'Optional titles and descriptions to 제출 random 제목 and 설명 to directories for better 결과.', '2025-11-21 00:41:47'),
(27108, 'ko', 'directory', 'nodirnote', 'No <b>활성</b> directories Found', '2025-11-21 00:41:47'),
(27109, 'ko', 'directory', 'nosuccessnote', '성공 메시지를 받지 못했습니다, 확인 메시지를 찾으려면 메일을 확인하세요', '2025-11-21 00:41:47'),
(27107, 'ko', 'directory', 'nocatnote', '제출 페이지에서 제출 카테고리를 찾을 수 없습니다. Please 클릭하세요 <b>새로고침</b> or <b>건너뛰기</b>', '2025-11-21 00:41:47'),
(27106, 'ko', 'directory', 'Enter the code shown', '표시된 코드를 입력하세요', '2025-11-21 00:41:47'),
(27105, 'ko', 'directory', 'Directory Submission Reports', '디렉토리 제출 보고서', '2025-11-21 00:41:47'),
(27103, 'ko', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2025-11-21 00:41:47'),
(27104, 'ko', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Link', '2025-11-21 00:41:47'),
(27102, 'ko', 'directory', 'desnote', 'Some directories require minimum 150 characters for the 설명 field.', '2025-11-21 00:41:47'),
(27100, 'ko', 'directory', 'Coupon Offer', 'Coupon Offer', '2025-11-21 00:41:47'),
(27101, 'ko', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured 제출!', '2025-11-21 00:41:47'),
(27099, 'ko', 'directory', 'Coupon Code', 'Coupon Code', '2025-11-21 00:41:47'),
(27098, 'ko', 'directory', 'Confirmation', '확인', '2025-11-21 00:41:47');
INSERT INTO `texts` VALUES
(27097, 'ko', 'directory', 'clicktoproceeddirsts', '클릭하세요 <b>계속</b> to 디렉토리 상태 확인.', '2025-11-21 00:41:47'),
(27096, 'ko', 'directory', 'clickaddfeatureddirectory', '여기를 클릭하여 추천 디렉토리를 추가하세요', '2025-11-21 00:41:47'),
(27095, 'ko', 'directory', 'Check Directory Submission Status', '디렉토리 제출 상태 확인', '2025-11-21 00:41:47'),
(27094, 'ko', 'directory', 'Check Directory Status', '디렉토리 상태 확인', '2025-11-21 00:41:47'),
(27093, 'ko', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. 시작 with Top priority 카테고리.', '2025-11-21 00:41:47'),
(27092, 'ko', 'directory', 'Captcha', 'Captcha', '2025-11-21 00:41:47'),
(27090, 'ko', 'directory', 'Add back to directory list', '디렉토리 목록에 다시 추가', '2025-11-21 00:41:47'),
(27091, 'ko', 'directory', 'Approved', '승인됨', '2025-11-21 00:41:47'),
(27089, 'ko', 'dashboard', 'Worst Rank', 'Worst 순위', '2025-11-21 00:41:47'),
(27088, 'ko', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility 점수 (Standard Deviation)', '2025-11-21 00:41:47'),
(27087, 'ko', 'dashboard', 'Volatility Score', 'Volatility 점수', '2025-11-21 00:41:47'),
(27086, 'ko', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', '변동성 데이터는 선택한 기간 내에 최소 2번의 순위 확인이 필요합니다.', '2025-11-21 00:41:47'),
(27085, 'ko', 'dashboard', 'Volatility', 'Volatility', '2025-11-21 00:41:47'),
(27084, 'ko', 'dashboard', 'Trend', 'Trend', '2025-11-21 00:41:47'),
(27083, 'ko', 'dashboard', 'Top 3', 'Top 3', '2025-11-21 00:41:47'),
(27082, 'ko', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile 키워드', '2025-11-21 00:41:47'),
(27081, 'ko', 'dashboard', 'Top 10', 'Top 10', '2025-11-21 00:41:47'),
(27079, 'ko', 'dashboard', 'positions', 'positions', '2025-11-21 00:41:47'),
(27080, 'ko', 'dashboard', 'Ranking Volatility', 'Ranking Volatility', '2025-11-21 00:41:47'),
(27078, 'ko', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-11-21 00:41:47'),
(27077, 'ko', 'dashboard', 'Keywords with most ranking fluctuations', '키워드 with most ranking fluctuations', '2025-11-21 00:41:47'),
(27076, 'ko', 'dashboard', 'Keywords by Ranking Position', '키워드 by Ranking 위치', '2025-11-21 00:41:47'),
(27075, 'ko', 'dashboard', 'Keyword Statistics', '키워드 Statistics', '2025-11-21 00:41:47'),
(27074, 'ko', 'dashboard', 'Keyword Distribution by Rank', '키워드 Distribution by 순위', '2025-11-21 00:41:47'),
(27073, 'ko', 'dashboard', 'Best Rank', 'Best 순위', '2025-11-21 00:41:47'),
(27072, 'ko', 'dashboard', 'Avg Rank', 'Avg 순위', '2025-11-21 00:41:47'),
(27071, 'ko', 'common', 'Yes', '예', '2025-11-21 00:41:47'),
(27070, 'ko', 'common', 'Websites Count', '웹사이트 수', '2025-11-21 00:41:47'),
(27069, 'ko', 'common', 'Website', '웹사이트', '2025-11-21 00:41:47'),
(27068, 'ko', 'common', 'Warnings', 'Warnings', '2025-11-21 00:41:47'),
(27067, 'ko', 'common', 'User Type', '사용자 유형', '2025-11-21 00:41:47'),
(27066, 'ko', 'common', 'User Panel', '사용자 Panel', '2025-11-21 00:41:47'),
(27065, 'ko', 'common', 'User', '사용자', '2025-11-21 00:41:47'),
(27064, 'ko', 'common', 'Url', 'URL', '2025-11-21 00:41:47'),
(27063, 'ko', 'common', 'Total', '합계', '2025-11-21 00:41:47'),
(27061, 'ko', 'common', 'Thank you', 'Thank you', '2025-11-21 00:41:47'),
(27062, 'ko', 'common', 'Tools', '도구', '2025-11-21 00:41:47'),
(27060, 'ko', 'common', 'Support', 'Support', '2025-11-21 00:41:47'),
(27058, 'ko', 'common', 'Spam Score', 'Spam 점수', '2025-11-21 00:41:47'),
(27059, 'ko', 'common', 'Status', '상태', '2025-11-21 00:41:47'),
(27057, 'ko', 'common', 'Source', 'Source', '2025-11-21 00:41:47'),
(27055, 'ko', 'common', 'Sign Up', '가입', '2025-11-21 00:41:47'),
(27056, 'ko', 'common', 'signin', '로그인', '2025-11-21 00:41:47'),
(27053, 'ko', 'common', 'Server', 'Server', '2025-11-21 00:41:47'),
(27054, 'ko', 'common', 'Sign out', '로그아웃', '2025-11-21 00:41:47'),
(27051, 'ko', 'common', 'Seo Plugins', 'SEO 플러그인', '2025-11-21 00:41:47'),
(27052, 'ko', 'common', 'Seo Tools', 'SEO 도구', '2025-11-21 00:41:47'),
(27050, 'ko', 'common', 'Select', '선택', '2025-11-21 00:41:47'),
(27049, 'ko', 'common', 'Search Engine Count', '검색 엔진 수', '2025-11-21 00:41:47'),
(27048, 'ko', 'common', 'Search Engine', '검색 엔진', '2025-11-21 00:41:47'),
(27047, 'ko', 'common', 'Sample CSV File', 'Sample CSV File', '2025-11-21 00:41:47'),
(27045, 'ko', 'common', 'Reports', '보고서', '2025-11-21 00:41:47'),
(27046, 'ko', 'common', 'Results', '결과', '2025-11-21 00:41:47'),
(27000, 'ko', 'common', 'Hello', 'Hello', '2025-11-21 00:41:47'),
(27001, 'ko', 'common', 'help', '도움말', '2025-11-21 00:41:47'),
(27002, 'ko', 'common', 'hidenews', 'Hide Seo Panel News', '2025-11-21 00:41:47'),
(27003, 'ko', 'common', 'Home', '홈', '2025-11-21 00:41:47'),
(27004, 'ko', 'common', 'Id', 'Id', '2025-11-21 00:41:47'),
(27005, 'ko', 'common', 'Inactivate', 'Inactivate', '2025-11-21 00:41:47'),
(27006, 'ko', 'common', 'Inactive', 'Inactive', '2025-11-21 00:41:47'),
(27007, 'ko', 'common', 'Internal error occured', 'Internal 오류 occured', '2025-11-21 00:41:47'),
(27008, 'ko', 'common', 'Invalid characters', 'Invalid characters', '2025-11-21 00:41:47'),
(27009, 'ko', 'common', 'Invalid code entered', '잘못된 코드가 입력되었습니다', '2025-11-21 00:41:47'),
(27010, 'ko', 'common', 'Invalid email address entered', '잘못된 이메일 주소가 입력되었습니다', '2025-11-21 00:41:47'),
(27011, 'ko', 'common', 'Invalid Url', 'Invalid URL', '2025-11-21 00:41:47'),
(27012, 'ko', 'common', 'Invalid value', 'Invalid 값', '2025-11-21 00:41:47'),
(27013, 'ko', 'common', 'Keyword', '키워드', '2025-11-21 00:41:47'),
(27014, 'ko', 'common', 'Keywords', '키워드', '2025-11-21 00:41:47'),
(27015, 'ko', 'common', 'Keywords Count', '키워드 수', '2025-11-21 00:41:47'),
(27016, 'ko', 'common', 'lang', '언어', '2025-11-21 00:41:47'),
(27017, 'ko', 'common', 'Link', 'Link', '2025-11-21 00:41:47'),
(27018, 'ko', 'common', 'Logout', '로그아웃', '2025-11-21 00:41:47'),
(27019, 'ko', 'common', 'Metric', 'Metric', '2025-11-21 00:41:47'),
(27020, 'ko', 'common', 'MOZ Rank', 'MOZ 순위', '2025-11-21 00:41:47'),
(27021, 'ko', 'common', 'My Account', '내 계정', '2025-11-21 00:41:47'),
(27022, 'ko', 'Common', 'Name', '이름', '2025-11-21 00:41:47'),
(27023, 'ko', 'common', 'New User Type', '새로운 사용자 유형', '2025-11-21 00:41:47'),
(27024, 'ko', 'common', 'No', '아니오', '2025-11-21 00:41:47'),
(27025, 'ko', 'common', 'No Keywords Found', 'No 키워드 Found', '2025-11-21 00:41:47'),
(27026, 'ko', 'common', 'No Records Found', '레코드를 찾을 수 없습니다', '2025-11-21 00:41:47'),
(27027, 'ko', 'common', 'noactivetools', 'No 활성 SEO 도구 Found!', '2025-11-21 00:41:47'),
(27028, 'ko', 'common', 'nowebsites', 'No 웹사이트 Found', '2025-11-21 00:41:47'),
(27029, 'ko', 'common', 'Number', 'Number', '2025-11-21 00:41:47'),
(27030, 'ko', 'common', 'Page Authority', '페이지 권한', '2025-11-21 00:41:47'),
(27031, 'ko', 'common', 'Pagerank', 'Pagerank', '2025-11-21 00:41:47'),
(27032, 'ko', 'common', 'password632', 'The 비밀번호 string should have a length between 6 and 32', '2025-11-21 00:41:47'),
(27033, 'ko', 'common', 'passwordnotmatch', 'The passwords do not match', '2025-11-21 00:41:47'),
(27034, 'ko', 'common', 'Period', 'Period', '2025-11-21 00:41:47'),
(27035, 'ko', 'common', 'Plugins', '플러그인', '2025-11-21 00:41:47'),
(27036, 'ko', 'common', 'Powered by', 'Powered by', '2025-11-21 00:41:47'),
(27037, 'ko', 'common', 'Price', 'Price', '2025-11-21 00:41:47'),
(27038, 'ko', 'common', 'Pricing', 'Pricing', '2025-11-21 00:41:47'),
(27039, 'ko', 'common', 'Priority', 'Priority', '2025-11-21 00:41:47'),
(27040, 'ko', 'common', 'Profile', '프로필', '2025-11-21 00:41:47'),
(27041, 'ko', 'common', 'Range', 'Range', '2025-11-21 00:41:47'),
(27042, 'ko', 'common', 'Rank', '순위', '2025-11-21 00:41:47'),
(27043, 'ko', 'common', 'Rankings', 'Rankings', '2025-11-21 00:41:47'),
(27044, 'ko', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification 실패', '2025-11-21 00:41:47'),
(26982, 'ko', 'common', 'Dashboard', '대시보드', '2025-11-21 00:41:47'),
(26983, 'ko', 'common', 'Date', '날짜', '2025-11-21 00:41:47'),
(26984, 'ko', 'common', 'Debug', '디버그', '2025-11-21 00:41:47'),
(26985, 'ko', 'common', 'Delete', '삭제', '2025-11-21 00:41:47'),
(26986, 'ko', 'common', 'Details', '상세정보', '2025-11-21 00:41:47'),
(26987, 'ko', 'common', 'Directory', '디렉토리', '2025-11-21 00:41:47'),
(26988, 'ko', 'common', 'Domain Authority', '도메인 권한', '2025-11-21 00:41:47'),
(26989, 'ko', 'common', 'Donate', '기부', '2025-11-21 00:41:47'),
(26990, 'ko', 'common', 'Edit', '편집', '2025-11-21 00:41:47'),
(26991, 'ko', 'common', 'Edit User Type', '사용자 편집 유형', '2025-11-21 00:41:47'),
(26992, 'ko', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2025-11-21 00:41:47'),
(26993, 'ko', 'common', 'entrynotvalid', '입력한 항목이 유효하지 않은 것 같습니다', '2025-11-21 00:41:47'),
(26994, 'ko', 'common', 'Errors', 'Errors', '2025-11-21 00:41:47'),
(26995, 'ko', 'common', 'failed', '실패', '2025-11-21 00:41:47'),
(26996, 'ko', 'common', 'forum', '포럼', '2025-11-21 00:41:47'),
(26997, 'ko', 'common', 'Found', 'Found', '2025-11-21 00:41:47'),
(26998, 'ko', 'common', 'General', 'General', '2025-11-21 00:41:47'),
(26999, 'ko', 'common', 'Google Pagerank', 'Google Pagerank', '2025-11-21 00:41:47'),
(26969, 'ko', 'common', 'Activate', '활성화', '2025-11-21 00:41:47'),
(26970, 'ko', 'common', 'Active', '활성', '2025-11-21 00:41:47'),
(26971, 'ko', 'common', 'Admin Panel', '관리자 패널', '2025-11-21 00:41:47'),
(26972, 'ko', 'common', 'Alexa Rank', 'Alexa 순위', '2025-11-21 00:41:47'),
(26973, 'ko', 'common', 'All', '전체', '2025-11-21 00:41:47'),
(26974, 'ko', 'common', 'API Token', 'API 토큰', '2025-11-21 00:41:47'),
(26975, 'ko', 'common', 'Blog', '블로그', '2025-11-21 00:41:47'),
(26976, 'ko', 'common', 'Category', '카테고리', '2025-11-21 00:41:47'),
(26977, 'ko', 'common', 'Checked', '확인됨', '2025-11-21 00:41:47'),
(26978, 'ko', 'common', 'contact', '연락처', '2025-11-21 00:41:47'),
(26979, 'ko', 'common', 'copyright', 'Copyright © [year] www.seopanel.org 전체 rights reserved', '2025-11-21 00:41:47'),
(26980, 'ko', 'common', 'Country', '국가', '2025-11-21 00:41:47'),
(26981, 'ko', 'common', 'Crawl Meta Data', '크롤 메타 데이터', '2025-11-21 00:41:47'),
(26968, 'ko', 'common', 'Action', '작업', '2025-11-21 00:41:47'),
(26967, 'ko', 'button', 'Submit', '제출', '2025-11-21 00:41:47'),
(26966, 'ko', 'button', 'Skip', '건너뛰기', '2025-11-21 00:41:47'),
(26965, 'ko', 'button', 'Show Records', '레코드 보기', '2025-11-21 00:41:47'),
(26963, 'ko', 'button', 'Search', '검색', '2025-11-21 00:41:47'),
(26964, 'ko', 'button', 'Show Details', '상세정보 보기', '2025-11-21 00:41:47'),
(26961, 'ko', 'button', 'Proceed', '계속', '2025-11-21 00:41:47'),
(26962, 'ko', 'button', 'Reload', '새로고침', '2025-11-21 00:41:47'),
(26960, 'ko', 'button', 'Check Status', '상태 확인', '2025-11-21 00:41:47'),
(26958, 'ko', 'blog', 'Older Posts', '이전 게시물', '2025-11-21 00:41:47'),
(26959, 'ko', 'button', 'Cancel', '취소', '2025-11-21 00:41:47'),
(26957, 'ko', 'blog', 'NothingFound_text2', '죄송합니다만, 검색 기준과 일치하는 항목이 없습니다. 다른 키워드로 다시 시도해 주세요.', '2025-11-21 00:41:47'),
(26956, 'ko', 'blog', 'Nothing Found', '결과 없음', '2025-11-21 00:41:47'),
(26955, 'ko', 'blog', 'Newer Posts', '최신 게시물', '2025-11-21 00:41:47'),
(26954, 'ko', 'backlink', 'Saved backlink results of', '저장됨 백링크 결과 of', '2025-11-21 00:41:47'),
(26952, 'ko', 'backlink', 'Domain Backlink Count', '도메인 백링크 수', '2025-11-21 00:41:47'),
(26953, 'ko', 'backlink', 'Domain Backlinks', '도메인 백링크', '2025-11-21 00:41:47'),
(26951, 'ko', 'backlink', 'clickproceedbacklink', 'URL을 입력하세요''s <b>한 줄에 하나씩</b>. 클릭하세요 <b>계속</b> to 백링크 확인.', '2025-11-21 00:41:47'),
(26949, 'ko', 'api', 'API Url', 'API URL', '2025-11-21 00:41:47'),
(26950, 'ko', 'backlink', 'Backlink Count', '백링크 수', '2025-11-21 00:41:47'),
(26948, 'ko', 'api', 'API Guide', 'API Guide', '2025-11-21 00:41:47'),
(26946, 'ko', 'analytics', 'Users', '사용자', '2025-11-21 00:41:47'),
(26947, 'ko', 'analytics', 'view_id_not_found_error', '오류: 분석 보기 ID is not set for 웹사이트. 웹사이트 편집 and 업데이트 보기 ID.', '2025-11-21 00:41:47'),
(26944, 'ko', 'analytics', 'New Users', '신규 사용자', '2025-11-21 00:41:47'),
(26945, 'ko', 'analytics', 'Sessions', '세션', '2025-11-21 00:41:47'),
(26942, 'ko', 'analytics', 'Bounce Rate', '이탈률', '2025-11-21 00:41:47'),
(26943, 'ko', 'analytics', 'Goal Completions', '목표 완료', '2025-11-21 00:41:47'),
(26941, 'ko', 'analytics', 'Avg. Session Duration', '평균 세션 시간', '2025-11-21 00:41:47'),
(33836, 'mk', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2025-11-21 01:14:38'),
(33835, 'mk', 'settings', 'SP_DFS_API_PASSWORD', 'API Лозинка', '2025-11-21 01:14:38'),
(33834, 'mk', 'settings', 'SP_DFS_API_LOGIN', 'API Најава', '2025-11-21 01:14:38'),
(33833, 'mk', 'settings', 'SP_DESCRIPTION', 'Seo Panel Опис', '2025-11-21 01:14:38'),
(33832, 'mk', 'settings', 'SP_DEFAULTLANG', 'Стандардно Јазик', '2025-11-21 01:14:38'),
(33831, 'mk', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider crawl(seconds)', '2025-11-21 01:14:38'),
(33829, 'mk', 'settings', 'SP_API_KEY', 'Seo Panel API клуч', '2025-11-21 01:14:38'),
(33830, 'mk', 'settings', 'SP_COMPANY_NAME', 'Company Име', '2025-11-21 01:14:38'),
(33828, 'mk', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow Корисници to Распоред Извештај', '2025-11-21 01:14:38'),
(33827, 'mk', 'settings', 'seopanel_title', 'Seo Panel: World''s Прва open Извор seo control panel for managing multiple web sites', '2025-11-21 01:14:38'),
(33826, 'mk', 'settings', 'seopanel_description', 'A complete free control panel for managing Пребарувач optimization of your Веб-страници. It containing lots of hot SEO Алатки to Зголемување and track the performace your Веб-страници. Its an open Извор software and also you can develop your own seo Приклучоци for seo panel.', '2025-11-21 01:14:38'),
(33825, 'mk', 'settings', 'Send Email', 'Send Е-пошта', '2025-11-21 01:14:38'),
(33824, 'mk', 'settings', 'SA_MAX_NO_PAGES', 'Максимум Број of Страници allowed per Веб-страница', '2025-11-21 01:14:38'),
(33823, 'mk', 'settings', 'SA_CRAWL_DELAY_TIME', 'Ревизор на сајт crawl delay between each Страници', '2025-11-21 01:14:38'),
(33822, 'mk', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate Proxy When Crawling Неуспешно', '2025-11-21 01:14:38'),
(33821, 'mk', 'settings', 'Please update MOZ settings to get complete results', 'Please Ажурирај MOZ Поставки to get complete Резултати', '2025-11-21 01:14:38'),
(33820, 'mk', 'settings', 'Please update google settings to get the results', 'Please Ажурирај Google Поставки to get the Резултати', '2025-11-21 01:14:38'),
(33819, 'mk', 'settings', 'getallpluginfree', 'Also get all <b>Приклучоци</b> we develop for <b>Free!</b>', '2025-11-21 01:14:38'),
(33818, 'mk', 'settings', 'entersmtpdetails', 'Ве молиме внесете SMTP mail Конфигурација', '2025-11-21 01:14:38'),
(33817, 'mk', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP Proxy Tunnel', '2025-11-21 01:14:38'),
(33816, 'mk', 'settings', 'click-to-get-moz-account', 'Кликнете овде to get MOZ Сметка', '2025-11-21 01:14:38'),
(33815, 'mk', 'settings', 'click-to-get-google-api-key', 'Кликнете овде to get Google API клуч', '2025-11-21 01:14:38'),
(33814, 'mk', 'settings', 'click-to-get-google-api-client-id', 'Кликнете овде to get Google API Client Id', '2025-11-21 01:14:38'),
(33813, 'mk', 'settings', 'click-to-get-dataforseo-account', 'Кликнете овде to get Free DataForSEO Сметка', '2025-11-21 01:14:38'),
(33812, 'mk', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Donate $100</b> and become a <b>sponsor</b> of Seo Panel.', '2025-11-21 01:14:38'),
(33811, 'mk', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another Proxy When Crawling Неуспешно', '2025-11-21 01:14:38'),
(33810, 'mk', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Максимум Број of proxies used in single execution', '2025-11-21 01:14:38'),
(33809, 'mk', 'settings', 'Check for Updates', 'Check for Updates', '2025-11-21 01:14:38'),
(33808, 'mk', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2025-11-21 01:14:38'),
(33807, 'mk', 'settings', 'API_SECRET', 'API Secret', '2025-11-21 01:14:38'),
(33806, 'mk', 'settings', 'allsettingssaved', 'All Поставки saved successfully!', '2025-11-21 01:14:38'),
(33805, 'mk', 'seotools', 'Website Search Summary', 'Веб-страница Пребарување Summary', '2025-11-21 01:14:38'),
(33804, 'mk', 'seotools', 'Website Search Reports', 'Веб-страница Пребарување Извештаи', '2025-11-21 01:14:38'),
(33803, 'mk', 'seotools', 'Website Analytics Summary', 'Веб-страница Аналитика Summary', '2025-11-21 01:14:38'),
(33802, 'mk', 'seotools', 'webmaster-tools', 'Webmaster Алатки', '2025-11-21 01:14:38'),
(33801, 'mk', 'seotools', 'web-analytics', 'Веб-страница Аналитика', '2025-11-21 01:14:38'),
(33800, 'mk', 'seotools', 'User Access', 'Корисник Access', '2025-11-21 01:14:38'),
(33799, 'mk', 'seotools', 'Submission Reports', 'Submission Извештаи', '2025-11-21 01:14:38'),
(33798, 'mk', 'seotools', 'Social Media Report Summary', 'Социјални медиуми Извештај Summary', '2025-11-21 01:14:38'),
(33797, 'mk', 'seotools', 'Social Media Links', 'Социјални медиуми Links', '2025-11-21 01:14:38'),
(33796, 'mk', 'seotools', 'sm-checker', 'Социјални медиуми Checker', '2025-11-21 01:14:38'),
(33795, 'mk', 'seotools', 'Skipped Directories', 'Skipped Directories', '2025-11-21 01:14:38'),
(33794, 'mk', 'seotools', 'sitemap-generator', 'Sitemap Generator', '2025-11-21 01:14:38'),
(33793, 'mk', 'seotools', 'Sitemap Reports Summary', 'Sitemap Извештаи Summary', '2025-11-21 01:14:38'),
(33792, 'mk', 'seotools', 'site-auditor', 'Ревизор на сајт', '2025-11-21 01:14:38'),
(33791, 'mk', 'seotools', 'saturation-checker', 'Заситеност на пребарувач', '2025-11-21 01:14:38'),
(33790, 'mk', 'seotools', 'Saturation Reports', 'Saturation Извештаи', '2025-11-21 01:14:38'),
(33789, 'mk', 'seotools', 'review-manager', 'Рецензија Manager', '2025-11-21 01:14:38'),
(33788, 'mk', 'seotools', 'Review Report Summary', 'Рецензија Извештај Summary', '2025-11-21 01:14:38'),
(33787, 'mk', 'seotools', 'Review Links', 'Рецензија Links', '2025-11-21 01:14:38'),
(33786, 'mk', 'seotools', 'rank-checker', 'Проверка на рангирање', '2025-11-21 01:14:38'),
(33785, 'mk', 'seotools', 'Rank Reports', 'Ранг Извештаи', '2025-11-21 01:14:38'),
(33784, 'mk', 'seotools', 'Quick Saturation Checker', 'Quick Проверка на заситеност', '2025-11-21 01:14:38'),
(33783, 'mk', 'seotools', 'Quick Rank Checker', 'Quick Проверка на рангирање', '2025-11-21 01:14:38'),
(33782, 'mk', 'seotools', 'Quick Position Checker', 'Quick Позиција Checker', '2025-11-21 01:14:38'),
(33781, 'mk', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed Checker', '2025-11-21 01:14:38'),
(33780, 'mk', 'seotools', 'Quick Checker', 'Quick Checker', '2025-11-21 01:14:38'),
(33779, 'mk', 'seotools', 'Quick Backlinks Checker', 'Quick Врски Checker', '2025-11-21 01:14:38'),
(33778, 'mk', 'seotools', 'PageSpeed Reports', 'PageSpeed Извештаи', '2025-11-21 01:14:38'),
(33777, 'mk', 'seotools', 'pagespeed', 'PageSpeed Insights', '2025-11-21 01:14:38'),
(33776, 'mk', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for Извештаи generation.\r\nThis action may cause captcha in Пребарувач Резултати.', '2025-11-21 01:14:38'),
(33775, 'mk', 'seotools', 'Keywords Manager', 'Клучни зборови Manager', '2025-11-21 01:14:38'),
(33774, 'mk', 'seotools', 'keyword-position-checker', 'Позиција на клучни зборови Checker', '2025-11-21 01:14:38'),
(33773, 'mk', 'seotools', 'Keyword Search Summary', 'Клучен збор Пребарување Summary', '2025-11-21 01:14:38'),
(33772, 'mk', 'seotools', 'Keyword Search Reports', 'Клучен збор Пребарување Извештаи', '2025-11-21 01:14:38'),
(33771, 'mk', 'seotools', 'Keyword Position Summary', 'Позиција на клучни зборови Summary', '2025-11-21 01:14:38'),
(33770, 'mk', 'seotools', 'Import Project Links', 'Увези Проект Links', '2025-11-21 01:14:38'),
(33769, 'mk', 'seotools', 'Graphical Reports', 'Graphical Извештаи', '2025-11-21 01:14:38'),
(33768, 'mk', 'seotools', 'Graphical Position Reports', 'Graphical Позиција Извештаи', '2025-11-21 01:14:38'),
(33767, 'mk', 'seotools', 'Google Sitemap Generator', 'Google Sitemap Generator', '2025-11-21 01:14:38'),
(33766, 'mk', 'seotools', 'Generate Saturation Reports', 'Generate Saturation Извештаи', '2025-11-21 01:14:38'),
(33765, 'mk', 'seotools', 'Generate Reports', 'Generate Извештаи', '2025-11-21 01:14:38'),
(33764, 'mk', 'seotools', 'Generate Rank Reports', 'Generate Ранг Извештаи', '2025-11-21 01:14:38'),
(33763, 'mk', 'seotools', 'Generate Keyword Reports', 'Generate Клучен збор Извештаи', '2025-11-21 01:14:38'),
(33762, 'mk', 'seotools', 'Generate Backlinks Reports', 'Generate Врски Извештаи', '2025-11-21 01:14:38'),
(33761, 'mk', 'seotools', 'Featured Submission', 'Featured Submission', '2025-11-21 01:14:38'),
(33760, 'mk', 'seotools', 'Edit Seo Tool', 'Уреди Seo Tool', '2025-11-21 01:14:38'),
(33759, 'mk', 'seotools', 'directory-submission', 'Директориум Submission', '2025-11-21 01:14:38'),
(33758, 'mk', 'seotools', 'Detailed Reports', 'Detailed Извештаи', '2025-11-21 01:14:38'),
(33757, 'mk', 'seotools', 'Detailed Position Reports', 'Detailed Позиција Извештаи', '2025-11-21 01:14:38'),
(33756, 'mk', 'seotools', 'clickproceedaction', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Резултати.', '2025-11-21 01:14:38'),
(33755, 'mk', 'seotools', 'clickgeneratereports', 'Click on <b>Proceed</b> to generate Извештаи', '2025-11-21 01:14:38'),
(33752, 'mk', 'seotools', 'backlink-checker', 'Врски Checker', '2025-11-21 01:14:38'),
(33753, 'mk', 'seotools', 'Backlinks Reports', 'Врски Извештаи', '2025-11-21 01:14:38'),
(33754, 'mk', 'seotools', 'Check Submission Status', 'Check Submission Статус', '2025-11-21 01:14:38'),
(33751, 'mk', 'seotools', 'Automatic Submission', 'Автоматски Submission', '2025-11-21 01:14:38'),
(33750, 'mk', 'seotools', 'Auditor Settings', 'Auditor Поставки', '2025-11-21 01:14:38'),
(33748, 'mk', 'seotools', 'Auditor Projects', 'Auditor Проекти', '2025-11-21 01:14:38'),
(33749, 'mk', 'seotools', 'Auditor Reports', 'Auditor Извештаи', '2025-11-21 01:14:38'),
(33747, 'mk', 'searchengine', 'no_of_results_page', 'Број of Резултати per Страница', '2025-11-21 01:14:38'),
(33746, 'mk', 'searchengine', 'max_results', 'Максимум Број of Резултати', '2025-11-21 01:14:38'),
(33745, 'mk', 'saturation', 'Search Engine Saturation Reports', 'Заситеност на пребарувач Извештаи', '2025-11-21 01:14:38'),
(33744, 'mk', 'saturation', 'Saved Search Engine Saturation results of', 'Saved Заситеност на пребарувач Резултати of', '2025-11-21 01:14:38'),
(33743, 'mk', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick Заситеност на пребарувач Checker', '2025-11-21 01:14:38'),
(33742, 'mk', 'saturation', 'GenerateSaturationReports', 'Generate Заситеност на пребарувач Извештаи', '2025-11-21 01:14:38'),
(33741, 'mk', 'saturation', 'clickproceedsaturation', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Заситеност на пребарувач Резултати', '2025-11-21 01:14:38'),
(33739, 'mk', 'review', 'Edit Review Link', 'Уреди Рецензија Врска', '2025-11-21 01:14:38'),
(33740, 'mk', 'review', 'New Review Link', 'New Рецензија Врска', '2025-11-21 01:14:38'),
(33738, 'mk', 'reports', 'Reports Generated Successfully', 'Извештаи Generated Successfully', '2025-11-21 01:14:38'),
(33737, 'mk', 'reports', 'report_email_subject', 'Your SEO Извештаи generated successfully', '2025-11-21 01:14:38'),
(33736, 'mk', 'reports', 'report_email_body_text2', 'If above Извештаи are not Избриши, Please [LOGIN_LINK] to Преглед the Извештаи directly from your Сметка.', '2025-11-21 01:14:38'),
(33735, 'mk', 'reports', 'report_email_body_text1', 'Your Извештаи generated successfully in seo panel. Please check the attached Извештаи.', '2025-11-21 01:14:38'),
(33734, 'mk', 'report', 'sheduledsuccessfully', 'Закажано Извештај generation successfully!', '2025-11-21 01:14:38'),
(33732, 'mk', 'report', 'Reports generation interval', 'Извештаи generation interval', '2025-11-21 01:14:38'),
(33733, 'mk', 'report', 'reportsettingssaved', 'Извештај Поставки saved successfully!', '2025-11-21 01:14:38'),
(33731, 'mk', 'report', 'Next report generation time', 'Следно Извештај generation Време', '2025-11-21 01:14:38'),
(33729, 'mk', 'report', 'Email notification', 'Е-пошта Известување', '2025-11-21 01:14:38'),
(33730, 'mk', 'report', 'keywordnumbercheckedcronnote', 'Белешка: Стандардно 0 means all Клучни зборови should be checked', '2025-11-21 01:14:38'),
(33728, 'mk', 'report', '2 Days', '2 Days', '2025-11-21 01:14:38'),
(33727, 'mk', 'register', 'user_confirm_mail_cont_2', 'Please click on the following Врска to Потврди registration', '2025-11-21 01:14:38'),
(33726, 'mk', 'register', 'user_confirm_mail_cont_1', 'Thank you for your registration with', '2025-11-21 01:14:38'),
(33725, 'mk', 'register', 'user_confirm_content_1', 'Internal Грешка occured while Обработка Потврди request', '2025-11-21 01:14:38'),
(33724, 'mk', 'register', 'Subscription Details', 'Subscription Детали', '2025-11-21 01:14:38'),
(33723, 'mk', 'register', 'Registration', 'Registration', '2025-11-21 01:14:38'),
(33722, 'mk', 'register', 'Register subtitle', 'Join us Денес and start optimizing your SEO', '2025-11-21 01:14:38'),
(33721, 'mk', 'register', 'Personal Information', 'Personal Информација', '2025-11-21 01:14:38'),
(33710, 'mk', 'QuickWebProxy', 'Server list is empty', 'Server list is empty', '2025-11-21 01:14:38'),
(33711, 'mk', 'QuickWebProxy', 'Url blocked in the web proxy', 'Url blocked in the web proxy', '2025-11-21 01:14:38'),
(33712, 'mk', 'QuickWebProxy', 'Web Proxy', 'Web Proxy', '2025-11-21 01:14:38'),
(33713, 'mk', 'QuickWebProxy', 'Web Server', 'Web Server', '2025-11-21 01:14:38'),
(33714, 'mk', 'rank', 'enterurlproceed', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Google and Alexa ранг.', '2025-11-21 01:14:38'),
(33715, 'mk', 'rank', 'Google and Alexa Rank Reports', 'Google and Alexa ранг Извештаи', '2025-11-21 01:14:38'),
(33716, 'mk', 'rank', 'Saved rank results of', 'Saved Ранг Резултати of', '2025-11-21 01:14:38'),
(33717, 'mk', 'register', 'Account Information', 'Сметка Информација', '2025-11-21 01:14:38'),
(33718, 'mk', 'register', 'Already have account', 'Already have an Сметка?', '2025-11-21 01:14:38'),
(33719, 'mk', 'register', 'First name placeholder', 'Прва Име', '2025-11-21 01:14:38'),
(33720, 'mk', 'register', 'Last name placeholder', 'Последна Име', '2025-11-21 01:14:38'),
(33674, 'mk', 'panel', 'Reports Manager', 'Извештаи Manager', '2025-11-21 01:14:38'),
(33675, 'mk', 'panel', 'Schedule Reports', 'Распоред Извештаи', '2025-11-21 01:14:38'),
(33676, 'mk', 'panel', 'Search Engine Manager', 'Пребарувач Manager', '2025-11-21 01:14:38'),
(33677, 'mk', 'panel', 'Seo Plugins Manager', 'Seo Приклучоци Manager', '2025-11-21 01:14:38'),
(33678, 'mk', 'panel', 'Seo Tools Manager', 'SEO Алатки Manager', '2025-11-21 01:14:38'),
(33679, 'mk', 'panel', 'Settings', 'Поставки', '2025-11-21 01:14:38'),
(33680, 'mk', 'panel', 'Sitemaps', 'Sitemaps', '2025-11-21 01:14:38'),
(33681, 'mk', 'panel', 'Submit Sitemap', 'Испрати Sitemap', '2025-11-21 01:14:38'),
(33682, 'mk', 'panel', 'Sync Search Engines', 'Sync Пребарувачи', '2025-11-21 01:14:38'),
(33683, 'mk', 'panel', 'System Settings', 'Системски поставки', '2025-11-21 01:14:38'),
(33684, 'mk', 'panel', 'Test Email Settings', 'Test Поставки за е-пошта', '2025-11-21 01:14:38'),
(33685, 'mk', 'panel', 'Themes Manager', 'Themes Manager', '2025-11-21 01:14:38'),
(33686, 'mk', 'panel', 'User Manager', 'Корисник Manager', '2025-11-21 01:14:38'),
(33687, 'mk', 'panel', 'User Type Manager', 'Корисник Тип Manager', '2025-11-21 01:14:38'),
(33688, 'mk', 'panel', 'User Type Settings', 'Корисник Тип Поставки', '2025-11-21 01:14:38'),
(33689, 'mk', 'panel', 'Valid', 'Валидно', '2025-11-21 01:14:38'),
(33690, 'mk', 'panel', 'Website Access Manager', 'Веб-страница Access Manager', '2025-11-21 01:14:38'),
(33691, 'mk', 'panel', 'Website Manager', 'Веб-страница Manager', '2025-11-21 01:14:38'),
(33692, 'mk', 'plugin', 'Download Seo Panel Plugins', 'Преземи Seo Panel Приклучоци', '2025-11-21 01:14:38'),
(33693, 'mk', 'plugin', 'Edit Seo Plugin', 'Уреди Seo Plugin', '2025-11-21 01:14:38'),
(33694, 'mk', 'plugin', 'Plugin Name', 'Plugin Име', '2025-11-21 01:14:38'),
(33695, 'mk', 'plugin', 'Seo Plugin Details', 'Seo Plugin Детали', '2025-11-21 01:14:38'),
(33696, 'mk', 'proxy', 'click-to-get-proxy', 'Кликнете овде to get proxy', '2025-11-21 01:14:38'),
(33697, 'mk', 'proxy', 'Edit Proxy', 'Уреди Proxy', '2025-11-21 01:14:38'),
(33698, 'mk', 'proxy', 'enterproxynote', 'Enter proxy one per line in following Формат.', '2025-11-21 01:14:38'),
(33699, 'mk', 'proxy', 'Proxy Password', 'Proxy Лозинка', '2025-11-21 01:14:38'),
(33700, 'mk', 'proxy', 'Proxy Username', 'Proxy Корисничко име', '2025-11-21 01:14:38'),
(33701, 'mk', 'proxy', 'Proxyalreadyexist', 'Proxy already exist!', '2025-11-21 01:14:38'),
(33702, 'mk', 'proxy', 'proxysyntax', 'Proxy Hostname, Proxy Port, Proxy Корисничко име, Proxy Лозинка', '2025-11-21 01:14:38'),
(33703, 'mk', 'proxy', 'Request Count', 'Request Број', '2025-11-21 01:14:38'),
(33704, 'mk', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2025-11-21 01:14:38'),
(33705, 'mk', 'QuickWebProxy', 'Please enter a valid url', 'Ве молиме внесете a Валидно url', '2025-11-21 01:14:38'),
(33706, 'mk', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow Корисник to access the web proxy', '2025-11-21 01:14:38'),
(33707, 'mk', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a proxy', '2025-11-21 01:14:38'),
(33708, 'mk', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web Proxy', '2025-11-21 01:14:38'),
(33709, 'mk', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web proxy.', '2025-11-21 01:14:38'),
(33666, 'mk', 'panel', 'Project Manager', 'Проект Manager', '2025-11-21 01:14:38'),
(33667, 'mk', 'panel', 'Project Summary', 'Проект Summary', '2025-11-21 01:14:38'),
(33668, 'mk', 'panel', 'Proxy Manager', 'Proxy Manager', '2025-11-21 01:14:38'),
(33669, 'mk', 'panel', 'Proxy Perfomance', 'Proxy Perfomance', '2025-11-21 01:14:38'),
(33670, 'mk', 'panel', 'Proxy Settings', 'Proxy Поставки', '2025-11-21 01:14:38'),
(33671, 'mk', 'panel', 'Report Generation Logs', 'Извештај Generation Logs', '2025-11-21 01:14:38'),
(33672, 'mk', 'panel', 'Report Generation Manager', 'Извештај Generation Manager', '2025-11-21 01:14:38'),
(33673, 'mk', 'panel', 'Report Settings', 'Извештај Поставки', '2025-11-21 01:14:38'),
(33665, 'mk', 'panel', 'New Website', 'New Веб-страница', '2025-11-21 01:14:38'),
(33664, 'mk', 'panel', 'New User Type', 'New Корисник Тип', '2025-11-21 01:14:38'),
(33663, 'mk', 'panel', 'New User', 'New Корисник', '2025-11-21 01:14:38'),
(33662, 'mk', 'panel', 'New Proxy', 'New Proxy', '2025-11-21 01:14:38'),
(33661, 'mk', 'panel', 'New Project', 'New Проект', '2025-11-21 01:14:38'),
(33660, 'mk', 'panel', 'My Profile', 'My Профил', '2025-11-21 01:14:38'),
(33659, 'mk', 'panel', 'MOZ Settings', 'MOZ Поставки', '2025-11-21 01:14:38'),
(33658, 'mk', 'panel', 'Mail Settings', 'Mail Поставки', '2025-11-21 01:14:38'),
(33657, 'mk', 'panel', 'Mail Log Manager', 'Mail Log Manager', '2025-11-21 01:14:38'),
(33656, 'mk', 'panel', 'Log Manager', 'Log Manager', '2025-11-21 01:14:38'),
(33655, 'mk', 'panel', 'Import Websites', 'Увези Веб-страници', '2025-11-21 01:14:38'),
(33654, 'mk', 'panel', 'Import Proxy', 'Увези Proxy', '2025-11-21 01:14:38'),
(33653, 'mk', 'panel', 'Google Settings', 'Google Поставки', '2025-11-21 01:14:38'),
(33652, 'mk', 'panel', 'Global Reports Settings', 'Global Извештаи Поставки', '2025-11-21 01:14:38'),
(33651, 'mk', 'panel', 'Existing', 'Existing', '2025-11-21 01:14:38'),
(33650, 'mk', 'panel', 'Edit Project', 'Уреди Проект', '2025-11-21 01:14:38'),
(33649, 'mk', 'panel', 'Edit My Profile', 'Уреди My Профил', '2025-11-21 01:14:38'),
(33648, 'mk', 'panel', 'Directory Manager', 'Директориум Manager', '2025-11-21 01:14:38'),
(33647, 'mk', 'panel', 'DataForSEO Settings', 'DataForSEO Поставки', '2025-11-21 01:14:38'),
(33646, 'mk', 'panel', 'Current Time', 'Current Време', '2025-11-21 01:14:38'),
(33645, 'mk', 'panel', 'Cron Command', 'Cron Command', '2025-11-21 01:14:38'),
(33644, 'mk', 'panel', 'Crawl Log Manager', 'Crawl Log Manager', '2025-11-21 01:14:38'),
(33643, 'mk', 'panel', 'Connections', 'Connections', '2025-11-21 01:14:38'),
(33642, 'mk', 'panel', 'Check Directory', 'Check Директориум', '2025-11-21 01:14:38'),
(33640, 'mk', 'panel', 'API Settings', 'API поставки', '2025-11-21 01:14:38'),
(33641, 'mk', 'panel', 'Archived Reports', 'Archived Извештаи', '2025-11-21 01:14:38'),
(33638, 'mk', 'panel', 'API Connection', 'API Connection', '2025-11-21 01:14:38'),
(33639, 'mk', 'panel', 'API Manager', 'API Manager', '2025-11-21 01:14:38'),
(33637, 'mk', 'panel', 'alsocheckfollowlink', 'Also check following Врска if you need more Детали.', '2025-11-21 01:14:38'),
(33636, 'mk', 'panel', 'Alerts', 'Алерти', '2025-11-21 01:14:38'),
(33635, 'mk', 'panel', 'Add following command to your cron tab', 'Add following command to your cron tab', '2025-11-21 01:14:38'),
(33634, 'mk', 'panel', 'About Us', 'За нас Us', '2025-11-21 01:14:38'),
(33633, 'mk', 'pagespeed', 'Saved page speed results of', 'Saved Страница Брзина Резултати of', '2025-11-21 01:14:38'),
(33632, 'mk', 'pagespeed', 'PageSpeed Details', 'PageSpeed Детали', '2025-11-21 01:14:38'),
(33631, 'mk', 'pagespeed', 'Page Speed', 'Страница Брзина', '2025-11-21 01:14:38'),
(33630, 'mk', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2025-11-21 01:14:38'),
(33629, 'mk', 'pagespeed', 'Mobile Speed', 'Mobile Брзина', '2025-11-21 01:14:38'),
(33628, 'mk', 'pagespeed', 'Desktop Speed', 'Desktop Брзина', '2025-11-21 01:14:38'),
(33627, 'mk', 'myaccount', 'Disconnected', 'Исклучено', '2025-11-21 01:14:38'),
(33626, 'mk', 'myaccount', 'Disconnect', 'Исклучи', '2025-11-21 01:14:38'),
(33625, 'mk', 'myaccount', 'Connected', 'Поврзано', '2025-11-21 01:14:38'),
(33624, 'mk', 'myaccount', 'Connect', 'Поврзи', '2025-11-21 01:14:38'),
(33623, 'mk', 'login', 'Your Password Reset Successfully', 'Your Лозинка Ресетирај Successfully', '2025-11-21 01:14:38'),
(33622, 'mk', 'login', 'Your Password Reset Failed', 'Your Лозинка Ресетирај Неуспешно', '2025-11-21 01:14:38'),
(33621, 'mk', 'login', 'Your account password is resetted and new password is', 'Your Сметка Лозинка is resetted and new Лозинка is', '2025-11-21 01:14:38'),
(33620, 'mk', 'login', 'Your account activated successfully', 'Your Сметка activated successfully', '2025-11-21 01:14:38'),
(33619, 'mk', 'login', 'Welcome message', 'Welcome Назад! Please Најава to your Сметка', '2025-11-21 01:14:38'),
(33618, 'mk', 'login', 'Verification', 'Verification', '2025-11-21 01:14:38'),
(33617, 'mk', 'login', 'usernameexist', 'Корисничко име already exist!', '2025-11-21 01:14:38'),
(33616, 'mk', 'login', 'Username placeholder', 'Enter your Корисничко име', '2025-11-21 01:14:38'),
(33615, 'mk', 'login', 'Username', 'Корисничко име', '2025-11-21 01:14:38'),
(33614, 'mk', 'login', 'user_not_activated_msg', 'Корисник is not activated. Please check your mail for activation', '2025-11-21 01:14:38'),
(33613, 'mk', 'login', 'user_email_not_exist', 'Корисник Е-пошта is not existing in system!', '2025-11-21 01:14:38'),
(33612, 'mk', 'login', 'User Type', 'Корисник Тип', '2025-11-21 01:14:38'),
(33611, 'mk', 'login', 'User inactive', 'Корисник Неактивен', '2025-11-21 01:14:38'),
(33610, 'mk', 'login', 'to login to your account', 'to Најава to your Сметка', '2025-11-21 01:14:38'),
(33609, 'mk', 'login', 'Sign in to your account', 'Најави се to your Сметка', '2025-11-21 01:14:38'),
(33608, 'mk', 'login', 'Sign In', 'Најави се', '2025-11-21 01:14:38'),
(33607, 'mk', 'login', 'Security message', 'Your Информација is secure and encrypted', '2025-11-21 01:14:38'),
(33606, 'mk', 'login', 'Request Password', 'Request Лозинка', '2025-11-21 01:14:38'),
(33605, 'mk', 'login', 'Remember password text', 'Remember your Лозинка?', '2025-11-21 01:14:38'),
(33604, 'mk', 'login', 'Register', 'Register', '2025-11-21 01:14:38'),
(33603, 'mk', 'login', 'password_reset_success_message', 'Your Лозинка Ресетирај successfully. A confirmation mail send to Е-пошта address. <br>Please check your inbox to get your new Лозинка.', '2025-11-21 01:14:38'),
(33602, 'mk', 'login', 'Password placeholder', 'Enter your Лозинка', '2025-11-21 01:14:38'),
(33601, 'mk', 'login', 'Password incorrect', 'Лозинка incorrect', '2025-11-21 01:14:38'),
(33600, 'mk', 'login', 'Password', 'Лозинка', '2025-11-21 01:14:38'),
(33599, 'mk', 'login', 'No account text', 'Don''t have an Сметка?', '2025-11-21 01:14:38'),
(33598, 'mk', 'login', 'newaccountsuccess', 'New Сметка created successfully!', '2025-11-21 01:14:38'),
(33597, 'mk', 'login', 'Login incorrect', 'Најава incorrect', '2025-11-21 01:14:38'),
(33596, 'mk', 'login', 'Login', 'Најава', '2025-11-21 01:14:38'),
(33595, 'mk', 'login', 'Last Name', 'Последна Име', '2025-11-21 01:14:38'),
(33594, 'mk', 'login', 'internal_error_mail_send', 'An internal Грешка occured while sending Лозинка Ресетирај mail!', '2025-11-21 01:14:38'),
(33593, 'mk', 'login', 'Forgot subtitle', 'Enter your Е-пошта address and we''ll send you instructions to Ресетирај your Лозинка', '2025-11-21 01:14:38'),
(33592, 'mk', 'login', 'Forgot password?', 'Заборавена лозинка?', '2025-11-21 01:14:38'),
(33591, 'mk', 'login', 'First Name', 'Прва Име', '2025-11-21 01:14:38'),
(33590, 'mk', 'login', 'Enter the code as it is shown', 'Enter the code as it is shown', '2025-11-21 01:14:38'),
(33589, 'mk', 'login', 'Enter the code', 'Enter the code', '2025-11-21 01:14:38'),
(33588, 'mk', 'login', 'emailexist', 'Е-пошта already exist!', '2025-11-21 01:14:38'),
(33587, 'mk', 'login', 'Email placeholder', 'your@Е-пошта.com', '2025-11-21 01:14:38'),
(33586, 'mk', 'login', 'Email', 'Е-пошта', '2025-11-21 01:14:38'),
(33585, 'mk', 'login', 'Create New Account', 'Креирај New Сметка', '2025-11-21 01:14:38'),
(33584, 'mk', 'login', 'Create my account', 'Креирај Мојата сметка', '2025-11-21 01:14:38'),
(33583, 'mk', 'login', 'Confirm Password', 'Потврди Лозинка', '2025-11-21 01:14:38'),
(33582, 'mk', 'log', 'Post Fields', 'Post Fields', '2025-11-21 01:14:38'),
(33581, 'mk', 'log', 'Mail Log Details', 'Mail Log Детали', '2025-11-21 01:14:38'),
(33579, 'mk', 'log', 'Clear All Logs', 'Избриши All Logs', '2025-11-21 01:14:38'),
(33580, 'mk', 'log', 'Crawl Log Details', 'Crawl Log Детали', '2025-11-21 01:14:38'),
(33578, 'mk', 'label', 'Year', 'Year', '2025-11-21 01:14:38'),
(33576, 'mk', 'label', 'Weekly', 'Неделно', '2025-11-21 01:14:38'),
(33577, 'mk', 'label', 'Write', 'Write', '2025-11-21 01:14:38'),
(33575, 'mk', 'label', 'Week', 'Week', '2025-11-21 01:14:38'),
(33574, 'mk', 'label', 'wantproceed', 'Do you really want to proceed?', '2025-11-21 01:14:38'),
(33573, 'mk', 'label', 'View Reports', 'Преглед Извештаи', '2025-11-21 01:14:38'),
(33572, 'mk', 'label', 'Version', 'Верзија', '2025-11-21 01:14:38'),
(33571, 'mk', 'label', 'User agent', 'Корисник agent', '2025-11-21 01:14:38'),
(33570, 'mk', 'label', 'Usability', 'Usability', '2025-11-21 01:14:38'),
(33569, 'mk', 'label', 'Upgrade', 'Upgrade', '2025-11-21 01:14:38'),
(33568, 'mk', 'label', 'Updated', 'Updated', '2025-11-21 01:14:38'),
(33567, 'mk', 'label', 'Type', 'Тип', '2025-11-21 01:14:38'),
(33566, 'mk', 'label', 'Translators', 'Translators', '2025-11-21 01:14:38'),
(33565, 'mk', 'label', 'translation by', 'translation by', '2025-11-21 01:14:38'),
(33564, 'mk', 'label', 'Total Results', 'Вкупно Резултати', '2025-11-21 01:14:38'),
(33563, 'mk', 'label', 'Title', 'Наслов', '2025-11-21 01:14:38'),
(33562, 'mk', 'label', 'Theme', 'Theme', '2025-11-21 01:14:38'),
(33561, 'mk', 'label', 'Syntax', 'Syntax', '2025-11-21 01:14:38'),
(33560, 'mk', 'label', 'Success', 'Успех', '2025-11-21 01:14:38'),
(33559, 'mk', 'label', 'Subject', 'Subject', '2025-11-21 01:14:38'),
(33558, 'mk', 'label', 'Sponsors', 'Sponsors', '2025-11-21 01:14:38'),
(33557, 'mk', 'label', 'Speed', 'Брзина', '2025-11-21 01:14:38'),
(33556, 'mk', 'label', 'Select All', 'Избери All', '2025-11-21 01:14:38'),
(33555, 'mk', 'label', 'Second', 'Second', '2025-11-21 01:14:38'),
(33554, 'mk', 'label', 'Score', 'Резултат', '2025-11-21 01:14:38'),
(33553, 'mk', 'label', 'Reviews', 'Рецензии', '2025-11-21 01:14:38'),
(33552, 'mk', 'label', 'Report Type', 'Извештај Тип', '2025-11-21 01:14:38'),
(33551, 'mk', 'label', 'Referer', 'Referer', '2025-11-21 01:14:38'),
(33550, 'mk', 'label', 'Reference', 'Reference', '2025-11-21 01:14:38'),
(33549, 'mk', 'label', 'Recent Activity', 'Неодамнешна активност', '2025-11-21 01:14:38'),
(33548, 'mk', 'label', 'Read', 'Read', '2025-11-21 01:14:38'),
(33547, 'mk', 'label', 'Re-install', 'Re-install', '2025-11-21 01:14:38'),
(33546, 'mk', 'label', 'Rating', 'Оцена', '2025-11-21 01:14:38'),
(33545, 'mk', 'label', 'Proxy', 'Proxy', '2025-11-21 01:14:38'),
(33544, 'mk', 'label', 'Project', 'Проект', '2025-11-21 01:14:38'),
(33543, 'mk', 'label', 'Port', 'Port', '2025-11-21 01:14:38'),
(33542, 'mk', 'label', 'Plugin', 'Plugin', '2025-11-21 01:14:38'),
(33541, 'mk', 'label', 'Overview', 'Преглед', '2025-11-21 01:14:38'),
(33540, 'mk', 'label', 'Order By', 'Order By', '2025-11-21 01:14:38'),
(33539, 'mk', 'label', 'noactiveplugins', 'No Активен Seo Приклучоци Found!', '2025-11-21 01:14:38'),
(33538, 'mk', 'label', 'Months', 'Months', '2025-11-21 01:14:38'),
(33537, 'mk', 'label', 'Monthly', 'Месечно', '2025-11-21 01:14:38'),
(33536, 'mk', 'label', 'Month', 'Month', '2025-11-21 01:14:38'),
(33535, 'mk', 'label', 'Mobile', 'Mobile', '2025-11-21 01:14:38'),
(33534, 'mk', 'label', 'Minute', 'Minute', '2025-11-21 01:14:38'),
(33533, 'mk', 'label', 'Likes', 'Допаѓања', '2025-11-21 01:14:38'),
(33532, 'mk', 'label', 'Keywords', 'Клучни зборови', '2025-11-21 01:14:38'),
(33531, 'mk', 'label', 'Just Now', 'Just Now', '2025-11-21 01:14:38'),
(33530, 'mk', 'label', 'Installation', 'Installation', '2025-11-21 01:14:38'),
(33529, 'mk', 'label', 'Include', 'Include', '2025-11-21 01:14:38'),
(33528, 'mk', 'label', 'Impressions', 'Impressions', '2025-11-21 01:14:38'),
(33527, 'mk', 'label', 'Hour', 'Hour', '2025-11-21 01:14:38'),
(33526, 'mk', 'label', 'From', 'From', '2025-11-21 01:14:38'),
(33525, 'mk', 'label', 'Free', 'Free', '2025-11-21 01:14:38'),
(33524, 'mk', 'label', 'Followers', 'Followers', '2025-11-21 01:14:38'),
(33523, 'mk', 'label', 'Feature', 'Feature', '2025-11-21 01:14:38'),
(33522, 'mk', 'label', 'Fail', 'Fail', '2025-11-21 01:14:38'),
(33521, 'mk', 'label', 'Exclude', 'Exclude', '2025-11-21 01:14:38'),
(33520, 'mk', 'label', 'Email Body', 'Е-пошта Body', '2025-11-21 01:14:38'),
(33519, 'mk', 'label', 'Download', 'Преземи', '2025-11-21 01:14:38'),
(33518, 'mk', 'label', 'Developers', 'Developers', '2025-11-21 01:14:38'),
(33517, 'mk', 'label', 'Desktop', 'Desktop', '2025-11-21 01:14:38'),
(33516, 'mk', 'label', 'Description', 'Опис', '2025-11-21 01:14:38'),
(33515, 'mk', 'label', 'Days', 'Days', '2025-11-21 01:14:38'),
(33514, 'mk', 'label', 'Day', 'Day', '2025-11-21 01:14:38'),
(33513, 'mk', 'label', 'Daily', 'Дневно', '2025-11-21 01:14:38'),
(33512, 'mk', 'label', 'Current', 'Current', '2025-11-21 01:14:38'),
(33511, 'mk', 'label', 'Cron', 'Cron', '2025-11-21 01:14:38'),
(33510, 'mk', 'label', 'Count', 'Број', '2025-11-21 01:14:38'),
(33509, 'mk', 'label', 'Cookie', 'Cookie', '2025-11-21 01:14:38'),
(33508, 'mk', 'label', 'Comments', 'Comments', '2025-11-21 01:14:38'),
(33507, 'mk', 'label', 'Clicks', 'Clicks', '2025-11-21 01:14:38'),
(33506, 'mk', 'label', 'Click Here', 'Кликнете овде', '2025-11-21 01:14:38'),
(33505, 'mk', 'label', 'Clear All', 'Избриши All', '2025-11-21 01:14:38'),
(33504, 'mk', 'label', 'Brocken', 'Broken', '2025-11-21 01:14:38'),
(33503, 'mk', 'label', 'Author', 'Author', '2025-11-21 01:14:38'),
(33502, 'mk', 'label', 'Authentication', 'Authentication', '2025-11-21 01:14:38'),
(33500, 'mk', 'label', 'Ago', 'Ago', '2025-11-21 01:14:38'),
(33501, 'mk', 'label', 'already exist', 'already exist', '2025-11-21 01:14:38'),
(33499, 'mk', 'label', 'Access denied', 'Пристапот е одбиен', '2025-11-21 01:14:38'),
(33498, 'mk', 'keyword', 'Your keyword count already reached the limit', 'Клучен збор Број already reached the limit for this Корисник!', '2025-11-21 01:14:38'),
(33497, 'mk', 'keyword', 'You can add only keywordcount keywords more', 'You can add only [keywordcount] Клучни зборови for this Корисник!', '2025-11-21 01:14:38'),
(33496, 'mk', 'keyword', 'Top Keywords', 'Top Клучни зборови', '2025-11-21 01:14:38'),
(33495, 'mk', 'keyword', 'to create new keywords', 'to Креирај new Клучни зборови', '2025-11-21 01:14:38'),
(33494, 'mk', 'keyword', 'Successfully crawled keyword', 'Successfully crawled Клучен збор', '2025-11-21 01:14:38'),
(33493, 'mk', 'keyword', 'Show All results', 'Show All Резултати', '2025-11-21 01:14:38'),
(33492, 'mk', 'keyword', 'results from ', 'Резултати from ', '2025-11-21 01:14:38'),
(33491, 'mk', 'keyword', 'Ranking Trends', 'Рангирање Trends', '2025-11-21 01:14:38'),
(33490, 'mk', 'keyword', 'Quick Keyword Position Checker', 'Quick Позиција на клучни зборови Checker', '2025-11-21 01:14:38'),
(33489, 'mk', 'keyword', 'pleaseselecttool', 'Ве молиме изберете atleast one SEO Алатки', '2025-11-21 01:14:38'),
(33488, 'mk', 'keyword', 'not assigned to required search engines', 'not assigned to Задолжително Пребарувачи', '2025-11-21 01:14:38'),
(33487, 'mk', 'keyword', 'New Keyword', 'New Клучен збор', '2025-11-21 01:14:38'),
(33486, 'mk', 'keyword', 'Keywords Tracked', 'Клучни зборови Tracked', '2025-11-21 01:14:38'),
(33485, 'mk', 'keyword', 'Keyword Ranking Trends', 'Клучен збор Рангирање Trends', '2025-11-21 01:14:38'),
(33484, 'mk', 'keyword', 'Keyword Position Report', 'Позиција на клучни зборови Извештај', '2025-11-21 01:14:38'),
(33483, 'mk', 'keyword', 'Keyword already exist', 'Клучен збор already exist', '2025-11-21 01:14:38'),
(33482, 'mk', 'keyword', 'Insert keywords separated with comma', 'Insert Клучни зборови separated with comma', '2025-11-21 01:14:38'),
(33481, 'mk', 'keyword', 'Import Keywords', 'Увези Клучни зборови', '2025-11-21 01:14:38'),
(33480, 'mk', 'keyword', 'Graphical Keyword Position Reports', 'Graphical Позиција на клучни зборови Извештаи', '2025-11-21 01:14:38'),
(33479, 'mk', 'keyword', 'Edit Keyword', 'Уреди клучен збор', '2025-11-21 01:14:38'),
(33478, 'mk', 'keyword', 'Detailed Keyword Position Reports', 'Detailed Позиција на клучни зборови Извештаи', '2025-11-21 01:14:38'),
(33477, 'mk', 'keyword', 'Crawling keyword', 'Crawling Клучен збор', '2025-11-21 01:14:38');
INSERT INTO `texts` VALUES
(33474, 'mk', 'home', 'Ranks', 'Ranks', '2025-11-21 01:14:38'),
(33475, 'mk', 'home', 'SiteNameUrl', 'Site Име/Url', '2025-11-21 01:14:38'),
(33476, 'mk', 'home', 'Website Statistics', 'Веб-страница Статистика', '2025-11-21 01:14:38'),
(33473, 'mk', 'home', 'Pages Indexed', 'Страници Indexed', '2025-11-21 01:14:38'),
(33472, 'mk', 'home', 'Page Overview Report', 'Страница Overview Извештај', '2025-11-21 01:14:38'),
(33471, 'mk', 'home', 'Overall Report Summary', 'Overall Извештај Summary', '2025-11-21 01:14:38'),
(33470, 'mk', 'home', 'Keyword Overview Report', 'Клучен збор Overview Извештај', '2025-11-21 01:14:38'),
(33469, 'mk', 'home', 'Indexed', 'Indexed', '2025-11-21 01:14:38'),
(38350, 'fi', 'socialmedia', 'Social Media Growth Trends', 'Sosiaalisen median kasvutrendit', '2026-01-19 22:56:41'),
(38351, 'fr', 'socialmedia', 'Social Media Growth Trends', 'Tendances de croissance des médias sociaux', '2026-01-19 22:56:41'),
(38352, 'he', 'socialmedia', 'Social Media Growth Trends', 'מגמות צמיחה במדיה חברתית', '2026-01-19 22:56:41'),
(38353, 'hi', 'socialmedia', 'Social Media Growth Trends', 'सोशल मीडिया विकास रुझान', '2026-01-19 22:56:41'),
(38354, 'hr', 'socialmedia', 'Social Media Growth Trends', 'Trendovi rasta društvenih medija', '2026-01-19 22:56:41'),
(38355, 'hu', 'socialmedia', 'Social Media Growth Trends', 'Közösségi média növekedési trendek', '2026-01-19 22:56:41'),
(38356, 'hy', 'socialmedia', 'Social Media Growth Trends', 'Սոցիալական մեդիայի աճի միտումներ', '2026-01-19 22:56:41'),
(38357, 'id', 'socialmedia', 'Social Media Growth Trends', 'Tren Pertumbuhan Media Sosial', '2026-01-19 22:56:41'),
(38358, 'it', 'socialmedia', 'Social Media Growth Trends', 'Tendenze di Crescita Social Media', '2026-01-19 22:56:41'),
(38359, 'ja', 'socialmedia', 'Social Media Growth Trends', 'ソーシャルメディア成長トレンド', '2026-01-19 22:56:41'),
(38360, 'ko', 'socialmedia', 'Social Media Growth Trends', '소셜 미디어 성장 추세', '2026-01-19 22:56:41'),
(38361, 'lt', 'socialmedia', 'Social Media Growth Trends', 'Socialinės žiniasklaidos augimo tendencijos', '2026-01-19 22:56:41'),
(38362, 'mk', 'socialmedia', 'Social Media Growth Trends', 'Трендови на раст на социјални медиуми', '2026-01-19 22:56:41'),
(38363, 'nl', 'socialmedia', 'Social Media Growth Trends', 'Groeitrends van sociale media', '2026-01-19 22:56:41'),
(38364, 'no', 'socialmedia', 'Social Media Growth Trends', 'Veksttrender for sosiale medier', '2026-01-19 22:56:41'),
(38365, 'pl', 'socialmedia', 'Social Media Growth Trends', 'Trendy wzrostu mediów społecznościowych', '2026-01-19 22:56:41'),
(38366, 'pt', 'socialmedia', 'Social Media Growth Trends', 'Tendências de crescimento de redes sociais', '2026-01-19 22:56:41'),
(38367, 'pt-br', 'socialmedia', 'Social Media Growth Trends', 'Tendências de crescimento de redes sociais', '2026-01-19 22:56:41'),
(38368, 'ro', 'socialmedia', 'Social Media Growth Trends', 'Tendințe de creștere Social Media', '2026-01-19 22:56:41'),
(38369, 'ru', 'socialmedia', 'Social Media Growth Trends', 'Тренды роста социальных сетей', '2026-01-19 22:56:41'),
(38370, 'sk', 'socialmedia', 'Social Media Growth Trends', 'Trendy rastu sociálnych médií', '2026-01-19 22:56:41'),
(38371, 'sl', 'socialmedia', 'Social Media Growth Trends', 'Trendi rasti družbenih medijev', '2026-01-19 22:56:41'),
(38372, 'sq', 'socialmedia', 'Social Media Growth Trends', 'Tendencat e rritjes së mediave sociale', '2026-01-19 22:56:41'),
(38373, 'sr', 'socialmedia', 'Social Media Growth Trends', 'Трендови раста друштвених медија', '2026-01-19 22:56:41'),
(38374, 'sv', 'socialmedia', 'Social Media Growth Trends', 'Tillväxttrender för sociala medier', '2026-01-19 22:56:41'),
(38375, 'sw', 'socialmedia', 'Social Media Growth Trends', 'Mwelekeo wa Ukuaji wa Mitandao ya Kijamii', '2026-01-19 22:56:41'),
(38376, 'th', 'socialmedia', 'Social Media Growth Trends', 'แนวโน้มการเติบโตของโซเชียลมีเดีย', '2026-01-19 22:56:41'),
(38377, 'tl', 'socialmedia', 'Social Media Growth Trends', 'Mga Uso ng Paglaki ng Social Media', '2026-01-19 22:56:41'),
(38378, 'tr', 'socialmedia', 'Social Media Growth Trends', 'Sosyal Medya Büyüme Trendleri', '2026-01-19 22:56:41'),
(38379, 'uk', 'socialmedia', 'Social Media Growth Trends', 'Тренди зростання соціальних мереж', '2026-01-19 22:56:41'),
(38380, 'vn', 'socialmedia', 'Social Media Growth Trends', 'Xu hướng tăng trưởng mạng xã hội', '2026-01-19 22:56:41'),
(38381, 'zh', 'socialmedia', 'Social Media Growth Trends', '社交媒体增长趋势', '2026-01-19 22:56:41'),
(38382, 'en', 'socialmedia', 'Top Social Media Profiles', 'Top Social Media Profiles', '2026-01-19 22:56:41'),
(38383, 'ar', 'socialmedia', 'Top Social Media Profiles', 'أفضل ملفات وسائل التواصل الاجتماعي', '2026-01-19 22:56:41'),
(38384, 'bg', 'socialmedia', 'Top Social Media Profiles', 'Топ профили в социалните медии', '2026-01-19 22:56:41'),
(38385, 'bs', 'socialmedia', 'Top Social Media Profiles', 'Najbolji profili društvenih medija', '2026-01-19 22:56:41'),
(38386, 'ca', 'socialmedia', 'Top Social Media Profiles', 'Principals perfils de xarxes socials', '2026-01-19 22:56:41'),
(38387, 'cn', 'socialmedia', 'Top Social Media Profiles', '热门社交媒体资料', '2026-01-19 22:56:41'),
(38388, 'cs', 'socialmedia', 'Top Social Media Profiles', 'Top profily sociálních médií', '2026-01-19 22:56:41'),
(38389, 'da', 'socialmedia', 'Top Social Media Profiles', 'Top sociale medie profiler', '2026-01-19 22:56:41'),
(38390, 'de', 'socialmedia', 'Top Social Media Profiles', 'Top Social-Media-Profile', '2026-01-19 22:56:41'),
(38391, 'el', 'socialmedia', 'Top Social Media Profiles', 'Κορυφαία προφίλ κοινωνικών μέσων', '2026-01-19 22:56:41'),
(38392, 'es', 'socialmedia', 'Top Social Media Profiles', 'Principales perfiles de redes sociales', '2026-01-19 22:56:41'),
(38393, 'es-ar', 'socialmedia', 'Top Social Media Profiles', 'Principales perfiles de redes sociales', '2026-01-19 22:56:41'),
(38394, 'fa', 'socialmedia', 'Top Social Media Profiles', 'برترین پروفایل های رسانه های اجتماعی', '2026-01-19 22:56:41'),
(38395, 'fi', 'socialmedia', 'Top Social Media Profiles', 'Parhaat sosiaalisen median profiilit', '2026-01-19 22:56:41'),
(38396, 'fr', 'socialmedia', 'Top Social Media Profiles', 'Meilleurs profils de médias sociaux', '2026-01-19 22:56:41'),
(38397, 'he', 'socialmedia', 'Top Social Media Profiles', 'פרופילי מדיה חברתית מובילים', '2026-01-19 22:56:41'),
(38398, 'hi', 'socialmedia', 'Top Social Media Profiles', 'शीर्ष सोशल मीडिया प्रोफाइल', '2026-01-19 22:56:41'),
(38399, 'hr', 'socialmedia', 'Top Social Media Profiles', 'Najbolji profili društvenih medija', '2026-01-19 22:56:41'),
(38400, 'hu', 'socialmedia', 'Top Social Media Profiles', 'Legjobb közösségi média profilok', '2026-01-19 22:56:41'),
(33465, 'mk', 'home', 'Directory Submission', 'Директориум Submission', '2025-11-21 01:14:38'),
(33464, 'mk', 'home', 'Backlinks', 'Врски', '2025-11-21 01:14:38'),
(33463, 'mk', 'home', 'Account Summary', 'Сметка Summary', '2025-11-21 01:14:38'),
(33460, 'mk', 'guest', 'View Demo', 'Преглед Demo', '2025-11-21 01:14:38'),
(33461, 'mk', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-11-21 01:14:38'),
(33462, 'mk', 'guest', 'Why Choose SEO Panel?', 'Why Одбери SEO Panel?', '2025-11-21 01:14:38'),
(33459, 'mk', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their Веб-страници.', '2025-11-21 01:14:38'),
(33458, 'mk', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-11-21 01:14:38'),
(33457, 'mk', 'guest', 'Support Development', 'Поддршка Development', '2025-11-21 01:14:38'),
(33456, 'mk', 'guest', 'Social Media Integration desc', 'Integrate with Google Аналитика, Пребарување Console, and Социјални медиуми platforms for comprehensive reporting.', '2025-11-21 01:14:38'),
(33455, 'mk', 'guest', 'Social Media Integration', 'Социјални медиуми Интеграција', '2025-11-21 01:14:38'),
(33454, 'mk', 'guest', 'Site Auditor desc', 'Audit all SEO factors of each Страница and generate XML, HTML, and Текст sitemaps for Пребарувачи.', '2025-11-21 01:14:38'),
(33453, 'mk', 'guest', 'Search Engine Saturation desc', 'Find the Број of Индексирани страници across different Пребарувачи and monitor your indexing progress.', '2025-11-21 01:14:38'),
(33452, 'mk', 'guest', 'Resources & Support', 'Resources & Поддршка', '2025-11-21 01:14:38'),
(33451, 'mk', 'guest', 'Rank Checker desc', 'Check Google PageRank, Alexa ранг, and Moz ранг with comprehensive Дневно tracking and reporting.', '2025-11-21 01:14:38'),
(33450, 'mk', 'guest', 'Powerful SEO Features', 'Powerful SEO Features', '2025-11-21 01:14:38'),
(33448, 'mk', 'guest', 'Plugin Architecture', 'Plugin Architecture', '2025-11-21 01:14:38'),
(33449, 'mk', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful Приклучоци including Article Submitter, Генератор на мета ознаки, and more.', '2025-11-21 01:14:38'),
(33447, 'mk', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited Веб-страници from a single control panel with centralized reporting.', '2025-11-21 01:14:38'),
(33446, 'mk', 'guest', 'Multi-Website Support', 'Multi-Веб-страница Поддршка', '2025-11-21 01:14:38'),
(33445, 'mk', 'guest', 'Login to Get Started', 'Најава to Започнете', '2025-11-21 01:14:38'),
(33444, 'mk', 'guest', 'Keyword Position Checker desc', 'Track your Клучен збор Рангирања across multiple Пребарувачи with detailed Дневно Извештаи and beautiful graphs.', '2025-11-21 01:14:38'),
(33443, 'mk', 'guest', 'Highly Extensible desc', 'Easily develop and install Прилагодено Приклучоци to extend functionality according to your needs.', '2025-11-21 01:14:38'),
(33442, 'mk', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-11-21 01:14:38'),
(33441, 'mk', 'guest', 'Hero subtitle', 'World''s Прва Open Извор SEO Control Panel for Multiple Веб-страници', '2025-11-21 01:14:38'),
(33440, 'mk', 'guest', 'Hero description', 'A complete open Извор SEO control panel for managing Пребарувач optimization of your Веб-страници. SEO Panel is a powerful toolkit that includes the Најново SEO Алатки to Зголемување and track the Перформанси of your Веб-страници.', '2025-11-21 01:14:38'),
(33439, 'mk', 'guest', 'Get Support', 'Get Поддршка', '2025-11-21 01:14:38'),
(33438, 'mk', 'guest', 'Download SEO Panel', 'Преземи SEO Panel', '2025-11-21 01:14:38'),
(33437, 'mk', 'guest', 'Documentation', 'Документација', '2025-11-21 01:14:38'),
(33436, 'mk', 'guest', 'Directory Submission desc', 'Automatically Испрати your Веб-страници to major free and paid directories with Статус tracking.', '2025-11-21 01:14:38'),
(33435, 'mk', 'guest', 'Contact Us', 'Контакт Us', '2025-11-21 01:14:38'),
(33434, 'mk', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-11-21 01:14:38'),
(33433, 'mk', 'guest', 'Browse Plugins', 'Browse Приклучоци', '2025-11-21 01:14:38'),
(33432, 'mk', 'guest', 'Backlinks Checker desc', 'Monitor the Број of Врски from major Пребарувачи and track your Врска building progress over Време.', '2025-11-21 01:14:38'),
(33431, 'mk', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. Преземи, customize, and use without any restrictions.', '2025-11-21 01:14:38'),
(33430, 'mk', 'guest', '100% Open Source', '100% Open Извор', '2025-11-21 01:14:38'),
(33429, 'mk', 'directory', 'Website Url', 'URL на веб-страница', '2025-11-21 01:14:38'),
(33428, 'mk', 'directory', 'Website Category', 'Веб-страница Категорија', '2025-11-21 01:14:38'),
(33427, 'mk', 'directory', 'Submit Title', 'Испрати Наслов', '2025-11-21 01:14:38'),
(33426, 'mk', 'directory', 'Submit Keywords', 'Испрати Клучни зборови', '2025-11-21 01:14:38'),
(33425, 'mk', 'directory', 'Submit Description', 'Испрати Опис', '2025-11-21 01:14:38'),
(33424, 'mk', 'directory', 'Submission Details', 'Submission Детали', '2025-11-21 01:14:38'),
(33423, 'mk', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary Е-пошта address.', '2025-11-21 01:14:38'),
(33422, 'mk', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi Автоматски Директориум Submission Tool', '2025-11-21 01:14:38'),
(33421, 'mk', 'directory', 'selectwebsiteschecksub', 'Избери a <b>Веб-страница</b> to <b>Proceed</b> check Директориум submission.', '2025-11-21 01:14:38'),
(33420, 'mk', 'directory', 'selectwebsiteproceed', 'Избери a <b>Веб-страница</b> to <b>Proceed</b> Директориум submission.<br>Check <b>Directories with out captcha</b> to Испрати to directories with out captcha', '2025-11-21 01:14:38'),
(33419, 'mk', 'directory', 'Reciprocal Link', 'Reciprocal Врска', '2025-11-21 01:14:38'),
(33418, 'mk', 'directory', 'Please select a website to proceed', 'Ве молиме изберете a Веб-страница to proceed', '2025-11-21 01:14:38'),
(33417, 'mk', 'directory', 'Pending', 'Во очекување', '2025-11-21 01:14:38'),
(33416, 'mk', 'directory', 'Owner Name', 'Owner Име', '2025-11-21 01:14:38'),
(33415, 'mk', 'directory', 'Owner Email', 'Owner Е-пошта', '2025-11-21 01:14:38'),
(33414, 'mk', 'directory', 'optionalnote', 'Опционално titles and descriptions to Испрати random Наслов and Опис to directories for better Резултати.', '2025-11-21 01:14:38'),
(33413, 'mk', 'directory', 'nosuccessnote', 'Didn''t get Успех Порака, Please check your mail to find the Потврди Порака', '2025-11-21 01:14:38'),
(33412, 'mk', 'directory', 'nodirnote', 'No <b>Активен</b> directories Found', '2025-11-21 01:14:38'),
(33411, 'mk', 'directory', 'nocatnote', 'The submission Категорија not found in submission Страница. Please click on <b>Reload</b> or <b>Skip</b>', '2025-11-21 01:14:38'),
(33410, 'mk', 'directory', 'Enter the code shown', 'Enter the code shown', '2025-11-21 01:14:38'),
(33409, 'mk', 'directory', 'Directory Submission Reports', 'Директориум Submission Извештаи', '2025-11-21 01:14:38'),
(33408, 'mk', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Врска', '2025-11-21 01:14:38'),
(33407, 'mk', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2025-11-21 01:14:38'),
(33406, 'mk', 'directory', 'desnote', 'Some directories require Минимум 150 characters for the Опис field.', '2025-11-21 01:14:38'),
(33404, 'mk', 'directory', 'Coupon Offer', 'Coupon Offer', '2025-11-21 01:14:38'),
(33405, 'mk', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured submission!', '2025-11-21 01:14:38'),
(33403, 'mk', 'directory', 'Coupon Code', 'Coupon Code', '2025-11-21 01:14:38'),
(33402, 'mk', 'directory', 'Confirmation', 'Confirmation', '2025-11-21 01:14:38'),
(33401, 'mk', 'directory', 'clicktoproceeddirsts', 'Click on <b>Proceed</b> to Check Директориум Статус.', '2025-11-21 01:14:38'),
(33400, 'mk', 'directory', 'clickaddfeatureddirectory', 'Кликнете овде to add your own featured Директориум here', '2025-11-21 01:14:38'),
(33399, 'mk', 'directory', 'Check Directory Submission Status', 'Check Директориум Submission Статус', '2025-11-21 01:14:38'),
(33398, 'mk', 'directory', 'Check Directory Status', 'Check Директориум Статус', '2025-11-21 01:14:38'),
(33396, 'mk', 'directory', 'Captcha', 'Captcha', '2025-11-21 01:14:38'),
(33397, 'mk', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. Start with Top priority Категорија.', '2025-11-21 01:14:38'),
(33395, 'mk', 'directory', 'Approved', 'Approved', '2025-11-21 01:14:38'),
(33394, 'mk', 'directory', 'Add back to directory list', 'Add Назад to Директориум list', '2025-11-21 01:14:38'),
(33393, 'mk', 'dashboard', 'Worst Rank', 'Worst Ранг', '2025-11-21 01:14:38'),
(33392, 'mk', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility Резултат (Standard Deviation)', '2025-11-21 01:14:38'),
(33391, 'mk', 'dashboard', 'Volatility Score', 'Volatility Резултат', '2025-11-21 01:14:38'),
(33390, 'mk', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'Volatility data requires at least 2 Рангирање checks within the selected period.', '2025-11-21 01:14:38'),
(33389, 'mk', 'dashboard', 'Volatility', 'Volatility', '2025-11-21 01:14:38'),
(33388, 'mk', 'dashboard', 'Trend', 'Trend', '2025-11-21 01:14:38'),
(33387, 'mk', 'dashboard', 'Top 3', 'Top 3', '2025-11-21 01:14:38'),
(33386, 'mk', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile Клучни зборови', '2025-11-21 01:14:38'),
(33385, 'mk', 'dashboard', 'Top 10', 'Top 10', '2025-11-21 01:14:38'),
(33384, 'mk', 'dashboard', 'Ranking Volatility', 'Рангирање Volatility', '2025-11-21 01:14:38'),
(33383, 'mk', 'dashboard', 'positions', 'positions', '2025-11-21 01:14:38'),
(33382, 'mk', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-11-21 01:14:38'),
(33381, 'mk', 'dashboard', 'Keywords with most ranking fluctuations', 'Клучни зборови with most Рангирање fluctuations', '2025-11-21 01:14:38'),
(33380, 'mk', 'dashboard', 'Keywords by Ranking Position', 'Клучни зборови by Рангирање Позиција', '2025-11-21 01:14:38'),
(33379, 'mk', 'dashboard', 'Keyword Statistics', 'Клучен збор Статистика', '2025-11-21 01:14:38'),
(33378, 'mk', 'dashboard', 'Keyword Distribution by Rank', 'Клучен збор Distribution by Ранг', '2025-11-21 01:14:38'),
(33377, 'mk', 'dashboard', 'Best Rank', 'Best Ранг', '2025-11-21 01:14:38'),
(33375, 'mk', 'common', 'Yes', 'Да', '2025-11-21 01:14:38'),
(33376, 'mk', 'dashboard', 'Avg Rank', 'Avg Ранг', '2025-11-21 01:14:38'),
(33374, 'mk', 'common', 'Websites Count', 'Веб-страници Број', '2025-11-21 01:14:38'),
(33372, 'mk', 'common', 'Warnings', 'Warnings', '2025-11-21 01:14:38'),
(33373, 'mk', 'common', 'Website', 'Веб-страница', '2025-11-21 01:14:38'),
(33371, 'mk', 'common', 'User Type', 'Корисник Тип', '2025-11-21 01:14:38'),
(33370, 'mk', 'common', 'User Panel', 'Корисник Panel', '2025-11-21 01:14:38'),
(33368, 'mk', 'common', 'Url', 'URL', '2025-11-21 01:14:38'),
(33369, 'mk', 'common', 'User', 'Корисник', '2025-11-21 01:14:38'),
(33367, 'mk', 'common', 'Total', 'Вкупно', '2025-11-21 01:14:38'),
(33366, 'mk', 'common', 'Tools', 'Алатки', '2025-11-21 01:14:38'),
(33365, 'mk', 'common', 'Thank you', 'Thank you', '2025-11-21 01:14:38'),
(33364, 'mk', 'common', 'Support', 'Поддршка', '2025-11-21 01:14:38'),
(33363, 'mk', 'common', 'Status', 'Статус', '2025-11-21 01:14:38'),
(33362, 'mk', 'common', 'Spam Score', 'Spam Резултат', '2025-11-21 01:14:38'),
(33361, 'mk', 'common', 'Source', 'Извор', '2025-11-21 01:14:38'),
(33360, 'mk', 'common', 'signin', 'Најави се', '2025-11-21 01:14:38'),
(33359, 'mk', 'common', 'Sign Up', 'Регистрирај се', '2025-11-21 01:14:38'),
(33358, 'mk', 'common', 'Sign out', 'Sign out', '2025-11-21 01:14:38'),
(33357, 'mk', 'common', 'Server', 'Server', '2025-11-21 01:14:38'),
(33356, 'mk', 'common', 'Seo Tools', 'SEO Алатки', '2025-11-21 01:14:38'),
(33355, 'mk', 'common', 'Seo Plugins', 'Seo Приклучоци', '2025-11-21 01:14:38'),
(33354, 'mk', 'common', 'Select', 'Избери', '2025-11-21 01:14:38'),
(33353, 'mk', 'common', 'Search Engine Count', 'Пребарувач Број', '2025-11-21 01:14:38'),
(33352, 'mk', 'common', 'Search Engine', 'Пребарувач', '2025-11-21 01:14:38'),
(33351, 'mk', 'common', 'Sample CSV File', 'Sample CSV Датотека', '2025-11-21 01:14:38'),
(33349, 'mk', 'common', 'Reports', 'Извештаи', '2025-11-21 01:14:38'),
(33350, 'mk', 'common', 'Results', 'Резултати', '2025-11-21 01:14:38'),
(33348, 'mk', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification Неуспешно', '2025-11-21 01:14:38'),
(33346, 'mk', 'common', 'Rank', 'Ранг', '2025-11-21 01:14:38'),
(33347, 'mk', 'common', 'Rankings', 'Рангирања', '2025-11-21 01:14:38'),
(33345, 'mk', 'common', 'Range', 'Range', '2025-11-21 01:14:38'),
(33343, 'mk', 'common', 'Priority', 'Priority', '2025-11-21 01:14:38'),
(33344, 'mk', 'common', 'Profile', 'Профил', '2025-11-21 01:14:38'),
(33342, 'mk', 'common', 'Pricing', 'Pricing', '2025-11-21 01:14:38'),
(33341, 'mk', 'common', 'Price', 'Price', '2025-11-21 01:14:38'),
(33340, 'mk', 'common', 'Powered by', 'Powered by', '2025-11-21 01:14:38'),
(33298, 'mk', 'common', 'Errors', 'Errors', '2025-11-21 01:14:38'),
(33299, 'mk', 'common', 'failed', 'Неуспешно', '2025-11-21 01:14:38'),
(33300, 'mk', 'common', 'forum', 'Forum', '2025-11-21 01:14:38'),
(33301, 'mk', 'common', 'Found', 'Found', '2025-11-21 01:14:38'),
(33302, 'mk', 'common', 'General', 'General', '2025-11-21 01:14:38'),
(33303, 'mk', 'common', 'Google Pagerank', 'Google Pagerank', '2025-11-21 01:14:38'),
(33304, 'mk', 'common', 'Hello', 'Hello', '2025-11-21 01:14:38'),
(33305, 'mk', 'common', 'help', 'Помош', '2025-11-21 01:14:38'),
(33306, 'mk', 'common', 'hidenews', 'Hide Seo Panel News', '2025-11-21 01:14:38'),
(33307, 'mk', 'common', 'Home', 'Почетна', '2025-11-21 01:14:38'),
(33308, 'mk', 'common', 'Id', 'Id', '2025-11-21 01:14:38'),
(33309, 'mk', 'common', 'Inactivate', 'Inactivate', '2025-11-21 01:14:38'),
(33310, 'mk', 'common', 'Inactive', 'Неактивен', '2025-11-21 01:14:38'),
(33311, 'mk', 'common', 'Internal error occured', 'Internal Грешка occured', '2025-11-21 01:14:38'),
(33312, 'mk', 'common', 'Invalid characters', 'Невалидно characters', '2025-11-21 01:14:38'),
(33313, 'mk', 'common', 'Invalid code entered', 'Невалидно code entered', '2025-11-21 01:14:38'),
(33314, 'mk', 'common', 'Invalid email address entered', 'Невалидно Е-пошта address entered', '2025-11-21 01:14:38'),
(33315, 'mk', 'common', 'Invalid Url', 'Невалидно Url', '2025-11-21 01:14:38'),
(33316, 'mk', 'common', 'Invalid value', 'Невалидно Вредност', '2025-11-21 01:14:38'),
(33317, 'mk', 'common', 'Keyword', 'Клучен збор', '2025-11-21 01:14:38'),
(33318, 'mk', 'common', 'Keywords', 'Клучни зборови', '2025-11-21 01:14:38'),
(33319, 'mk', 'common', 'Keywords Count', 'Клучни зборови Број', '2025-11-21 01:14:38'),
(33320, 'mk', 'common', 'lang', 'Јазик', '2025-11-21 01:14:38'),
(33321, 'mk', 'common', 'Link', 'Врска', '2025-11-21 01:14:38'),
(33322, 'mk', 'common', 'Logout', 'Одјава', '2025-11-21 01:14:38'),
(33323, 'mk', 'common', 'Metric', 'Metric', '2025-11-21 01:14:38'),
(33324, 'mk', 'common', 'MOZ Rank', 'Moz ранг', '2025-11-21 01:14:38'),
(33325, 'mk', 'common', 'My Account', 'Мојата сметка', '2025-11-21 01:14:38'),
(33326, 'mk', 'Common', 'Name', 'Име', '2025-11-21 01:14:38'),
(33327, 'mk', 'common', 'New User Type', 'New Корисник Тип', '2025-11-21 01:14:38'),
(33328, 'mk', 'common', 'No', 'Не', '2025-11-21 01:14:38'),
(33329, 'mk', 'common', 'No Keywords Found', 'No Клучни зборови Found', '2025-11-21 01:14:38'),
(33330, 'mk', 'common', 'No Records Found', 'No Records Found', '2025-11-21 01:14:38'),
(33331, 'mk', 'common', 'noactivetools', 'No Активен SEO Алатки Found!', '2025-11-21 01:14:38'),
(33332, 'mk', 'common', 'nowebsites', 'No Веб-страници Found', '2025-11-21 01:14:38'),
(33333, 'mk', 'common', 'Number', 'Број', '2025-11-21 01:14:38'),
(33334, 'mk', 'common', 'Page Authority', 'Авторитет на страница', '2025-11-21 01:14:38'),
(33335, 'mk', 'common', 'Pagerank', 'Pagerank', '2025-11-21 01:14:38'),
(33336, 'mk', 'common', 'password632', 'The Лозинка string should have a length between 6 and 32', '2025-11-21 01:14:38'),
(33337, 'mk', 'common', 'passwordnotmatch', 'The passwords do not match', '2025-11-21 01:14:38'),
(33338, 'mk', 'common', 'Period', 'Period', '2025-11-21 01:14:38'),
(33339, 'mk', 'common', 'Plugins', 'Приклучоци', '2025-11-21 01:14:38'),
(33283, 'mk', 'common', 'copyright', 'Copyright © [year] www.seopanel.org All rights reserved', '2025-11-21 01:14:38'),
(33284, 'mk', 'common', 'Country', 'Држава', '2025-11-21 01:14:38'),
(33285, 'mk', 'common', 'Crawl Meta Data', 'Crawl Meta Data', '2025-11-21 01:14:38'),
(33286, 'mk', 'common', 'Dashboard', 'Контролна табла', '2025-11-21 01:14:38'),
(33287, 'mk', 'common', 'Date', 'Датум', '2025-11-21 01:14:38'),
(33288, 'mk', 'common', 'Debug', 'Debug', '2025-11-21 01:14:38'),
(33289, 'mk', 'common', 'Delete', 'Избриши', '2025-11-21 01:14:38'),
(33290, 'mk', 'common', 'Details', 'Детали', '2025-11-21 01:14:38'),
(33291, 'mk', 'common', 'Directory', 'Директориум', '2025-11-21 01:14:38'),
(33292, 'mk', 'common', 'Domain Authority', 'Авторитет на домен', '2025-11-21 01:14:38'),
(33293, 'mk', 'common', 'Donate', 'Donate', '2025-11-21 01:14:38'),
(33294, 'mk', 'common', 'Edit', 'Уреди', '2025-11-21 01:14:38'),
(33295, 'mk', 'common', 'Edit User Type', 'Уреди Корисник Тип', '2025-11-21 01:14:38'),
(33296, 'mk', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2025-11-21 01:14:38'),
(33297, 'mk', 'common', 'entrynotvalid', 'The entry entered doesn''t seem to be Валидно', '2025-11-21 01:14:38'),
(33269, 'mk', 'button', 'Show Records', 'Show Records', '2025-11-21 01:14:38'),
(33270, 'mk', 'button', 'Skip', 'Skip', '2025-11-21 01:14:38'),
(33271, 'mk', 'button', 'Submit', 'Испрати', '2025-11-21 01:14:38'),
(33272, 'mk', 'common', 'Action', 'Action', '2025-11-21 01:14:38'),
(33273, 'mk', 'common', 'Activate', 'Activate', '2025-11-21 01:14:38'),
(33274, 'mk', 'common', 'Active', 'Активен', '2025-11-21 01:14:38'),
(33275, 'mk', 'common', 'Admin Panel', 'Администратор Panel', '2025-11-21 01:14:38'),
(33276, 'mk', 'common', 'Alexa Rank', 'Alexa ранг', '2025-11-21 01:14:38'),
(33277, 'mk', 'common', 'All', 'Сите', '2025-11-21 01:14:38'),
(33278, 'mk', 'common', 'API Token', 'API Token', '2025-11-21 01:14:38'),
(33279, 'mk', 'common', 'Blog', 'Blog', '2025-11-21 01:14:38'),
(33280, 'mk', 'common', 'Category', 'Категорија', '2025-11-21 01:14:38'),
(33281, 'mk', 'common', 'Checked', 'Checked', '2025-11-21 01:14:38'),
(33282, 'mk', 'common', 'contact', 'Контакт', '2025-11-21 01:14:38'),
(33268, 'mk', 'button', 'Show Details', 'Show Детали', '2025-11-21 01:14:38'),
(33267, 'mk', 'button', 'Search', 'Пребарување', '2025-11-21 01:14:38'),
(33266, 'mk', 'button', 'Reload', 'Reload', '2025-11-21 01:14:38'),
(33265, 'mk', 'button', 'Proceed', 'Proceed', '2025-11-21 01:14:38'),
(33264, 'mk', 'button', 'Check Status', 'Check Статус', '2025-11-21 01:14:38'),
(33262, 'mk', 'blog', 'Older Posts', 'Older Posts', '2025-11-21 01:14:38'),
(33263, 'mk', 'button', 'Cancel', 'Откажи', '2025-11-21 01:14:38'),
(33261, 'mk', 'blog', 'NothingFound_text2', 'Sorry, but nothing matched your Пребарување criteria. Ве молиме обидете се повторно with some different Клучни зборови.', '2025-11-21 01:14:38'),
(33260, 'mk', 'blog', 'Nothing Found', 'Nothing Found', '2025-11-21 01:14:38'),
(33259, 'mk', 'blog', 'Newer Posts', 'Newer Posts', '2025-11-21 01:14:38'),
(33258, 'mk', 'backlink', 'Saved backlink results of', 'Saved Врска Резултати of', '2025-11-21 01:14:38'),
(33257, 'mk', 'backlink', 'Domain Backlinks', 'Domain Врски', '2025-11-21 01:14:38'),
(33256, 'mk', 'backlink', 'Domain Backlink Count', 'Domain Врска Број', '2025-11-21 01:14:38'),
(33255, 'mk', 'backlink', 'clickproceedbacklink', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Врски.', '2025-11-21 01:14:38'),
(33253, 'mk', 'api', 'API Url', 'API Url', '2025-11-21 01:14:38'),
(33254, 'mk', 'backlink', 'Backlink Count', 'Врска Број', '2025-11-21 01:14:38'),
(33252, 'mk', 'api', 'API Guide', 'API Guide', '2025-11-21 01:14:38'),
(33251, 'mk', 'analytics', 'view_id_not_found_error', 'Грешка: Аналитика Преглед ID is not set for Веб-страница. Уреди веб-страница and Ажурирај Преглед ID.', '2025-11-21 01:14:38'),
(33249, 'mk', 'analytics', 'Sessions', 'Сесии', '2025-11-21 01:14:38'),
(33250, 'mk', 'analytics', 'Users', 'Корисници', '2025-11-21 01:14:38'),
(33248, 'mk', 'analytics', 'New Users', 'New Корисници', '2025-11-21 01:14:38'),
(33246, 'mk', 'analytics', 'Bounce Rate', 'Стапка на отскокнување', '2025-11-21 01:14:38'),
(33247, 'mk', 'analytics', 'Goal Completions', 'Goal Completions', '2025-11-21 01:14:38'),
(33245, 'mk', 'analytics', 'Avg. Session Duration', 'Avg. Session Duration', '2025-11-21 01:14:38'),
(34685, 'no', 'siteauditor', 'Import Project Links', 'Importer Prosjekt Links', '2025-11-21 01:20:43'),
(34684, 'no', 'siteauditor', 'External Links', 'External Links', '2025-11-21 01:20:43'),
(34683, 'no', 'siteauditor', 'External', 'External', '2025-11-21 01:20:43'),
(34682, 'no', 'siteauditor', 'Execute with cron', 'Execute with cron', '2025-11-21 01:20:43'),
(34680, 'no', 'siteauditor', 'Duplicate Title', 'Duplicate Tittel', '2025-11-21 01:20:43'),
(34681, 'no', 'siteauditor', 'Exclude links', 'Exclude links', '2025-11-21 01:20:43'),
(34679, 'no', 'siteauditor', 'Duplicate Keywords', 'Duplicate Nøkkelord', '2025-11-21 01:20:43'),
(34676, 'no', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'crawled successfully! Waiting for crawling Neste Side for', '2025-11-21 01:20:43'),
(34674, 'no', 'siteauditor', 'Crawled', 'Crawled', '2025-11-21 01:20:43'),
(34673, 'no', 'siteauditor', 'Completed project execution', 'Fullført Prosjekt execution', '2025-11-21 01:20:43'),
(34668, 'no', 'siteauditor', 'Check google pagerank of pages', 'Check Google pagerank of Sider', '2025-11-21 01:20:43'),
(34667, 'no', 'siteauditor', 'Check broken links in a page', 'Check broken links in a Side', '2025-11-21 01:20:43'),
(34666, 'no', 'siteauditor', 'Check backlinks of pages', 'Check Tilbakekoblinger of Sider', '2025-11-21 01:20:43'),
(34665, 'no', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded from sitemap', '2025-11-21 01:20:43'),
(34664, 'no', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded from Rapporter', '2025-11-21 01:20:43'),
(34663, 'no', 'siteauditor', 'Anchor', 'Anchor', '2025-11-21 01:20:43'),
(34662, 'no', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up Til dato.', '2025-11-21 01:20:43'),
(34661, 'no', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up Til dato. <br>Please Last ned new Versjon', '2025-11-21 01:20:43'),
(34660, 'no', 'settings', 'Verify connection', 'Verify connection', '2025-11-21 01:20:43'),
(34659, 'no', 'settings', 'syssettingssaved', 'Systeminnstillinger saved successfully!', '2025-11-21 01:20:43'),
(34658, 'no', 'settings', 'SP_USER_REGISTRATION', 'Bruker registration interface', '2025-11-21 01:20:43'),
(34657, 'no', 'settings', 'SP_USER_GEN_REPORT', 'Allow Bruker to generate Rapporter', '2025-11-21 01:20:43'),
(34656, 'no', 'settings', 'SP_USER_AGENT', 'Bruker agent', '2025-11-21 01:20:43'),
(34655, 'no', 'settings', 'SP_TITLE', 'Seo Panel Tittel', '2025-11-21 01:20:43'),
(34654, 'no', 'settings', 'SP_TIME_ZONE', 'Tid Zone', '2025-11-21 01:20:43'),
(34653, 'no', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Minimum Allowed Reporting Interval', '2025-11-21 01:20:43'),
(34652, 'no', 'settings', 'SP_SMTP_USERNAME', 'SMTP Brukernavn', '2025-11-21 01:20:43'),
(34651, 'no', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2025-11-21 01:20:43'),
(34650, 'no', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Passord', '2025-11-21 01:20:43'),
(34649, 'no', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2025-11-21 01:20:43'),
(34648, 'no', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2025-11-21 01:20:43'),
(34647, 'no', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2025-11-21 01:20:43'),
(34646, 'no', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send Tilpasset header with curl request', '2025-11-21 01:20:43'),
(34645, 'no', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of E-post Varsler for Rapporter', '2025-11-21 01:20:43'),
(34644, 'no', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Crawl relative links in a Side', '2025-11-21 01:20:43'),
(34643, 'no', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2025-11-21 01:20:43'),
(34642, 'no', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2025-11-21 01:20:43'),
(34641, 'no', 'settings', 'SP_PAGINGNO', 'Nummer of entries per Side', '2025-11-21 01:20:43'),
(34640, 'no', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Nummer of Nøkkelord needs to be checked in each cron execution', '2025-11-21 01:20:43'),
(34639, 'no', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2025-11-21 01:20:43'),
(34638, 'no', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2025-11-21 01:20:43'),
(34637, 'no', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2025-11-21 01:20:43'),
(34636, 'no', 'settings', 'SP_KEYWORDS', 'Seo Panel Nøkkelord', '2025-11-21 01:20:43'),
(34635, 'no', 'settings', 'SP_HOTLINKING', 'Image hotlink protection Aktivert', '2025-11-21 01:20:43'),
(34634, 'no', 'settings', 'SP_GOOGLE_API_KEY', 'Google API-nøkkel', '2025-11-21 01:20:43'),
(34633, 'no', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2025-11-21 01:20:43'),
(34632, 'no', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2025-11-21 01:20:43'),
(34631, 'no', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google Analyse Tracking Code', '2025-11-21 01:20:43'),
(34630, 'no', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2025-11-21 01:20:43'),
(34629, 'no', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable Proxy for Google API', '2025-11-21 01:20:43'),
(34628, 'no', 'settings', 'SP_ENABLE_PROXY', 'Enable Proxy', '2025-11-21 01:20:43'),
(34627, 'no', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2025-11-21 01:20:43'),
(34626, 'no', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for Tilbakekobling and Metningssjekker', '2025-11-21 01:20:43'),
(34625, 'no', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2025-11-21 01:20:43'),
(34624, 'no', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2025-11-21 01:20:43'),
(34623, 'no', 'settings', 'SP_DFS_API_PASSWORD', 'API Passord', '2025-11-21 01:20:43'),
(34622, 'no', 'settings', 'SP_DFS_API_LOGIN', 'API Logg inn', '2025-11-21 01:20:43'),
(34621, 'no', 'settings', 'SP_DESCRIPTION', 'Seo Panel Beskrivelse', '2025-11-21 01:20:43'),
(34620, 'no', 'settings', 'SP_DEFAULTLANG', 'Standard Språk', '2025-11-21 01:20:43'),
(34619, 'no', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider crawl(seconds)', '2025-11-21 01:20:43'),
(34618, 'no', 'settings', 'SP_COMPANY_NAME', 'Company Navn', '2025-11-21 01:20:43'),
(34617, 'no', 'settings', 'SP_API_KEY', 'Seo Panel API-nøkkel', '2025-11-21 01:20:43'),
(34616, 'no', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow Brukere to Planlegg Rapport', '2025-11-21 01:20:43'),
(34615, 'no', 'settings', 'seopanel_title', 'Seo Panel: World''s Første open Kilde seo control panel for managing multiple web sites', '2025-11-21 01:20:43'),
(34614, 'no', 'settings', 'seopanel_description', 'A complete free control panel for managing Søkemotor optimization of your Nettsteder. It containing lots of hot SEO-verktøy to Økning and track the performace your Nettsteder. Its an open Kilde software and also you can develop your own seo Tillegg for seo panel.', '2025-11-21 01:20:43'),
(34613, 'no', 'settings', 'Send Email', 'Send E-post', '2025-11-21 01:20:43'),
(34612, 'no', 'settings', 'SA_MAX_NO_PAGES', 'Maksimum Nummer of Sider allowed per Nettsted', '2025-11-21 01:20:43'),
(34611, 'no', 'settings', 'SA_CRAWL_DELAY_TIME', 'Nettstedrevisor crawl delay between each Sider', '2025-11-21 01:20:43'),
(34610, 'no', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate Proxy When Crawling Mislyktes', '2025-11-21 01:20:43'),
(34609, 'no', 'settings', 'Please update MOZ settings to get complete results', 'Please Oppdater MOZ Innstillinger to get complete Resultater', '2025-11-21 01:20:43'),
(34608, 'no', 'settings', 'Please update google settings to get the results', 'Please Oppdater Google Innstillinger to get the Resultater', '2025-11-21 01:20:43'),
(34607, 'no', 'settings', 'getallpluginfree', 'Also get all <b>Tillegg</b> we develop for <b>Free!</b>', '2025-11-21 01:20:43'),
(34606, 'no', 'settings', 'entersmtpdetails', 'Vennligst skriv inn SMTP mail Konfigurasjon', '2025-11-21 01:20:43'),
(34604, 'no', 'settings', 'click-to-get-moz-account', 'Klikk her to get MOZ Konto', '2025-11-21 01:20:43'),
(34605, 'no', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP Proxy Tunnel', '2025-11-21 01:20:43'),
(34603, 'no', 'settings', 'click-to-get-google-api-key', 'Klikk her to get Google API-nøkkel', '2025-11-21 01:20:43'),
(34602, 'no', 'settings', 'click-to-get-google-api-client-id', 'Klikk her to get Google API Client Id', '2025-11-21 01:20:43'),
(34601, 'no', 'settings', 'click-to-get-dataforseo-account', 'Klikk her to get Free DataForSEO Konto', '2025-11-21 01:20:43'),
(34600, 'no', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Donate $100</b> and become a <b>sponsor</b> of Seo Panel.', '2025-11-21 01:20:43'),
(34599, 'no', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another Proxy When Crawling Mislyktes', '2025-11-21 01:20:43'),
(34598, 'no', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Maksimum Nummer of proxies used in single execution', '2025-11-21 01:20:43'),
(34597, 'no', 'settings', 'Check for Updates', 'Check for Updates', '2025-11-21 01:20:43'),
(34596, 'no', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2025-11-21 01:20:43'),
(34595, 'no', 'settings', 'API_SECRET', 'API Secret', '2025-11-21 01:20:43'),
(34594, 'no', 'settings', 'allsettingssaved', 'All Innstillinger saved successfully!', '2025-11-21 01:20:43'),
(34593, 'no', 'seotools', 'Website Search Summary', 'Nettsted Søk Summary', '2025-11-21 01:20:43'),
(34591, 'no', 'seotools', 'Website Analytics Summary', 'Nettsted Analyse Summary', '2025-11-21 01:20:43'),
(34592, 'no', 'seotools', 'Website Search Reports', 'Nettsted Søk Rapporter', '2025-11-21 01:20:43'),
(34590, 'no', 'seotools', 'webmaster-tools', 'Webmaster Verktøy', '2025-11-21 01:20:43'),
(34588, 'no', 'seotools', 'User Access', 'Bruker Access', '2025-11-21 01:20:43'),
(34589, 'no', 'seotools', 'web-analytics', 'Nettsted Analyse', '2025-11-21 01:20:43'),
(34587, 'no', 'seotools', 'Submission Reports', 'Submission Rapporter', '2025-11-21 01:20:43'),
(34586, 'no', 'seotools', 'Social Media Report Summary', 'Sosiale medier Rapport Summary', '2025-11-21 01:20:43'),
(34585, 'no', 'seotools', 'Social Media Links', 'Sosiale medier Links', '2025-11-21 01:20:43'),
(34584, 'no', 'seotools', 'sm-checker', 'Sosiale medier Checker', '2025-11-21 01:20:43'),
(34583, 'no', 'seotools', 'Skipped Directories', 'Skipped Directories', '2025-11-21 01:20:43'),
(34581, 'no', 'seotools', 'Sitemap Reports Summary', 'Sitemap Rapporter Summary', '2025-11-21 01:20:43'),
(34582, 'no', 'seotools', 'sitemap-generator', 'Sitemap Generator', '2025-11-21 01:20:43'),
(34579, 'no', 'seotools', 'saturation-checker', 'Søkemotormetning', '2025-11-21 01:20:43'),
(34580, 'no', 'seotools', 'site-auditor', 'Nettstedrevisor', '2025-11-21 01:20:43'),
(34578, 'no', 'seotools', 'Saturation Reports', 'Saturation Rapporter', '2025-11-21 01:20:43'),
(34576, 'no', 'seotools', 'Review Report Summary', 'Anmeldelse Rapport Summary', '2025-11-21 01:20:43'),
(34577, 'no', 'seotools', 'review-manager', 'Anmeldelse Manager', '2025-11-21 01:20:43'),
(34575, 'no', 'seotools', 'Review Links', 'Anmeldelse Links', '2025-11-21 01:20:43'),
(34574, 'no', 'seotools', 'rank-checker', 'Rangsjekker', '2025-11-21 01:20:43'),
(34571, 'no', 'seotools', 'Quick Rank Checker', 'Quick Rangsjekker', '2025-11-21 01:20:43'),
(34572, 'no', 'seotools', 'Quick Saturation Checker', 'Quick Metningssjekker', '2025-11-21 01:20:43'),
(34573, 'no', 'seotools', 'Rank Reports', 'Rang Rapporter', '2025-11-21 01:20:43'),
(34570, 'no', 'seotools', 'Quick Position Checker', 'Quick Posisjon Checker', '2025-11-21 01:20:43'),
(34568, 'no', 'seotools', 'Quick Checker', 'Quick Checker', '2025-11-21 01:20:43'),
(34569, 'no', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed Checker', '2025-11-21 01:20:43'),
(34566, 'no', 'seotools', 'PageSpeed Reports', 'PageSpeed Rapporter', '2025-11-21 01:20:43'),
(34567, 'no', 'seotools', 'Quick Backlinks Checker', 'Quick Tilbakekoblinger Checker', '2025-11-21 01:20:43'),
(34565, 'no', 'seotools', 'pagespeed', 'PageSpeed Insights', '2025-11-21 01:20:43'),
(34564, 'no', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for Rapporter generation.\r\nThis action may cause captcha in Søkemotor Resultater.', '2025-11-21 01:20:43'),
(34562, 'no', 'seotools', 'keyword-position-checker', 'Nøkkelordposisjon Checker', '2025-11-21 01:20:43'),
(34563, 'no', 'seotools', 'Keywords Manager', 'Nøkkelord Manager', '2025-11-21 01:20:43'),
(34560, 'no', 'seotools', 'Keyword Search Reports', 'Nøkkelord Søk Rapporter', '2025-11-21 01:20:43'),
(34561, 'no', 'seotools', 'Keyword Search Summary', 'Nøkkelord Søk Summary', '2025-11-21 01:20:43'),
(34558, 'no', 'seotools', 'Import Project Links', 'Importer Prosjekt Links', '2025-11-21 01:20:43'),
(34559, 'no', 'seotools', 'Keyword Position Summary', 'Nøkkelordposisjon Summary', '2025-11-21 01:20:43'),
(34557, 'no', 'seotools', 'Graphical Reports', 'Graphical Rapporter', '2025-11-21 01:20:43'),
(34556, 'no', 'seotools', 'Graphical Position Reports', 'Graphical Posisjon Rapporter', '2025-11-21 01:20:43'),
(34554, 'no', 'seotools', 'Generate Saturation Reports', 'Generate Saturation Rapporter', '2025-11-21 01:20:43'),
(34555, 'no', 'seotools', 'Google Sitemap Generator', 'Google Sitemap Generator', '2025-11-21 01:20:43'),
(34553, 'no', 'seotools', 'Generate Reports', 'Generate Rapporter', '2025-11-21 01:20:43'),
(34551, 'no', 'seotools', 'Generate Keyword Reports', 'Generate Nøkkelord Rapporter', '2025-11-21 01:20:43'),
(34552, 'no', 'seotools', 'Generate Rank Reports', 'Generate Rang Rapporter', '2025-11-21 01:20:43'),
(34550, 'no', 'seotools', 'Generate Backlinks Reports', 'Generate Tilbakekoblinger Rapporter', '2025-11-21 01:20:43'),
(34549, 'no', 'seotools', 'Featured Submission', 'Featured Submission', '2025-11-21 01:20:43'),
(34548, 'no', 'seotools', 'Edit Seo Tool', 'Rediger Seo Tool', '2025-11-21 01:20:43'),
(34536, 'no', 'seotools', 'Auditor Projects', 'Auditor Prosjekter', '2025-11-21 01:20:43'),
(34537, 'no', 'seotools', 'Auditor Reports', 'Auditor Rapporter', '2025-11-21 01:20:43'),
(34538, 'no', 'seotools', 'Auditor Settings', 'Auditor Innstillinger', '2025-11-21 01:20:43'),
(34539, 'no', 'seotools', 'Automatic Submission', 'Automatisk Submission', '2025-11-21 01:20:43'),
(34540, 'no', 'seotools', 'backlink-checker', 'Tilbakekoblinger Checker', '2025-11-21 01:20:43'),
(34541, 'no', 'seotools', 'Backlinks Reports', 'Tilbakekoblinger Rapporter', '2025-11-21 01:20:43'),
(34542, 'no', 'seotools', 'Check Submission Status', 'Check Submission Status', '2025-11-21 01:20:43'),
(34543, 'no', 'seotools', 'clickgeneratereports', 'Click on <b>Proceed</b> to generate Rapporter', '2025-11-21 01:20:43'),
(34544, 'no', 'seotools', 'clickproceedaction', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Resultater.', '2025-11-21 01:20:43'),
(34545, 'no', 'seotools', 'Detailed Position Reports', 'Detailed Posisjon Rapporter', '2025-11-21 01:20:43'),
(34546, 'no', 'seotools', 'Detailed Reports', 'Detailed Rapporter', '2025-11-21 01:20:43'),
(34547, 'no', 'seotools', 'directory-submission', 'Katalog Submission', '2025-11-21 01:20:43'),
(34505, 'no', 'register', 'Account Information', 'Konto Informasjon', '2025-11-21 01:20:43'),
(34506, 'no', 'register', 'Already have account', 'Already have an Konto?', '2025-11-21 01:20:43'),
(34507, 'no', 'register', 'First name placeholder', 'Første Navn', '2025-11-21 01:20:43'),
(34508, 'no', 'register', 'Last name placeholder', 'Siste Navn', '2025-11-21 01:20:43'),
(34509, 'no', 'register', 'Personal Information', 'Personal Informasjon', '2025-11-21 01:20:43'),
(34510, 'no', 'register', 'Register subtitle', 'Join us I dag and start optimizing your SEO', '2025-11-21 01:20:43'),
(34511, 'no', 'register', 'Registration', 'Registration', '2025-11-21 01:20:43'),
(34512, 'no', 'register', 'Subscription Details', 'Subscription Detaljer', '2025-11-21 01:20:43'),
(34513, 'no', 'register', 'user_confirm_content_1', 'Internal Feil occured while Behandler Bekreft request', '2025-11-21 01:20:43'),
(34514, 'no', 'register', 'user_confirm_mail_cont_1', 'Thank you for your registration with', '2025-11-21 01:20:43'),
(34515, 'no', 'register', 'user_confirm_mail_cont_2', 'Please click on the following Lenke to Bekreft registration', '2025-11-21 01:20:43'),
(34516, 'no', 'report', '2 Days', '2 Days', '2025-11-21 01:20:43'),
(34517, 'no', 'report', 'Email notification', 'E-post Varsel', '2025-11-21 01:20:43'),
(34518, 'no', 'report', 'keywordnumbercheckedcronnote', 'Notat: Standard 0 means all Nøkkelord should be checked', '2025-11-21 01:20:43'),
(34519, 'no', 'report', 'Next report generation time', 'Neste Rapport generation Tid', '2025-11-21 01:20:43'),
(34520, 'no', 'report', 'Reports generation interval', 'Rapporter generation interval', '2025-11-21 01:20:43'),
(34521, 'no', 'report', 'reportsettingssaved', 'Rapport Innstillinger saved successfully!', '2025-11-21 01:20:43'),
(34522, 'no', 'report', 'sheduledsuccessfully', 'Planlagt Rapport generation successfully!', '2025-11-21 01:20:43'),
(34523, 'no', 'reports', 'report_email_body_text1', 'Your Rapporter generated successfully in seo panel. Please check the attached Rapporter.', '2025-11-21 01:20:43'),
(34524, 'no', 'reports', 'report_email_body_text2', 'If above Rapporter are not Tøm, Please [LOGIN_LINK] to Vis the Rapporter directly from your Konto.', '2025-11-21 01:20:43'),
(34525, 'no', 'reports', 'report_email_subject', 'Your SEO Rapporter generated successfully', '2025-11-21 01:20:43'),
(34526, 'no', 'reports', 'Reports Generated Successfully', 'Rapporter Generated Successfully', '2025-11-21 01:20:43'),
(34527, 'no', 'review', 'Edit Review Link', 'Rediger Anmeldelse Lenke', '2025-11-21 01:20:43'),
(34528, 'no', 'review', 'New Review Link', 'New Anmeldelse Lenke', '2025-11-21 01:20:43'),
(34529, 'no', 'saturation', 'clickproceedsaturation', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Søkemotormetning Resultater', '2025-11-21 01:20:43'),
(34530, 'no', 'saturation', 'GenerateSaturationReports', 'Generate Søkemotormetning Rapporter', '2025-11-21 01:20:43'),
(34531, 'no', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick Søkemotormetning Checker', '2025-11-21 01:20:43'),
(34532, 'no', 'saturation', 'Saved Search Engine Saturation results of', 'Saved Søkemotormetning Resultater of', '2025-11-21 01:20:43'),
(34533, 'no', 'saturation', 'Search Engine Saturation Reports', 'Søkemotormetning Rapporter', '2025-11-21 01:20:43'),
(34534, 'no', 'searchengine', 'max_results', 'Maksimum Nummer of Resultater', '2025-11-21 01:20:43'),
(34535, 'no', 'searchengine', 'no_of_results_page', 'Nummer of Resultater per Side', '2025-11-21 01:20:43'),
(34499, 'no', 'QuickWebProxy', 'Url blocked in the web proxy', 'Url blocked in the web proxy', '2025-11-21 01:20:43'),
(34500, 'no', 'QuickWebProxy', 'Web Proxy', 'Web Proxy', '2025-11-21 01:20:43'),
(34501, 'no', 'QuickWebProxy', 'Web Server', 'Web Server', '2025-11-21 01:20:43'),
(34502, 'no', 'rank', 'enterurlproceed', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Google and Alexa-rang.', '2025-11-21 01:20:43'),
(34503, 'no', 'rank', 'Google and Alexa Rank Reports', 'Google and Alexa-rang Rapporter', '2025-11-21 01:20:43'),
(34504, 'no', 'rank', 'Saved rank results of', 'Saved Rang Resultater of', '2025-11-21 01:20:43'),
(34498, 'no', 'QuickWebProxy', 'Server list is empty', 'Server list is empty', '2025-11-21 01:20:43'),
(34497, 'no', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web proxy.', '2025-11-21 01:20:43'),
(34496, 'no', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web Proxy', '2025-11-21 01:20:43'),
(34495, 'no', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a proxy', '2025-11-21 01:20:43'),
(34494, 'no', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow Bruker to access the web proxy', '2025-11-21 01:20:43'),
(34493, 'no', 'QuickWebProxy', 'Please enter a valid url', 'Vennligst skriv inn a Gyldig url', '2025-11-21 01:20:43'),
(34492, 'no', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2025-11-21 01:20:43'),
(34491, 'no', 'proxy', 'Request Count', 'Request Antall', '2025-11-21 01:20:43'),
(34490, 'no', 'proxy', 'proxysyntax', 'Proxy Hostname, Proxy Port, Proxy Brukernavn, Proxy Passord', '2025-11-21 01:20:43');
INSERT INTO `texts` VALUES
(34489, 'no', 'proxy', 'Proxyalreadyexist', 'Proxy already exist!', '2025-11-21 01:20:43'),
(34488, 'no', 'proxy', 'Proxy Username', 'Proxy Brukernavn', '2025-11-21 01:20:43'),
(34487, 'no', 'proxy', 'Proxy Password', 'Proxy Passord', '2025-11-21 01:20:43'),
(34486, 'no', 'proxy', 'enterproxynote', 'Enter proxy one per line in following Format.', '2025-11-21 01:20:43'),
(34485, 'no', 'proxy', 'Edit Proxy', 'Rediger Proxy', '2025-11-21 01:20:43'),
(34484, 'no', 'proxy', 'click-to-get-proxy', 'Klikk her to get proxy', '2025-11-21 01:20:43'),
(34483, 'no', 'plugin', 'Seo Plugin Details', 'Seo Plugin Detaljer', '2025-11-21 01:20:43'),
(34482, 'no', 'plugin', 'Plugin Name', 'Plugin Navn', '2025-11-21 01:20:43'),
(34481, 'no', 'plugin', 'Edit Seo Plugin', 'Rediger Seo Plugin', '2025-11-21 01:20:43'),
(34480, 'no', 'plugin', 'Download Seo Panel Plugins', 'Last ned Seo Panel Tillegg', '2025-11-21 01:20:43'),
(34478, 'no', 'panel', 'Website Access Manager', 'Nettsted Access Manager', '2025-11-21 01:20:43'),
(34479, 'no', 'panel', 'Website Manager', 'Nettsted Manager', '2025-11-21 01:20:43'),
(34476, 'no', 'panel', 'User Type Settings', 'Bruker Type Innstillinger', '2025-11-21 01:20:43'),
(34477, 'no', 'panel', 'Valid', 'Gyldig', '2025-11-21 01:20:43'),
(34475, 'no', 'panel', 'User Type Manager', 'Bruker Type Manager', '2025-11-21 01:20:43'),
(34474, 'no', 'panel', 'User Manager', 'Bruker Manager', '2025-11-21 01:20:43'),
(34473, 'no', 'panel', 'Themes Manager', 'Themes Manager', '2025-11-21 01:20:43'),
(34472, 'no', 'panel', 'Test Email Settings', 'Test E-postinnstillinger', '2025-11-21 01:20:43'),
(34471, 'no', 'panel', 'System Settings', 'Systeminnstillinger', '2025-11-21 01:20:43'),
(34470, 'no', 'panel', 'Sync Search Engines', 'Sync Søkemotorer', '2025-11-21 01:20:43'),
(34469, 'no', 'panel', 'Submit Sitemap', 'Send inn Sitemap', '2025-11-21 01:20:43'),
(34468, 'no', 'panel', 'Sitemaps', 'Sitemaps', '2025-11-21 01:20:43'),
(34467, 'no', 'panel', 'Settings', 'Innstillinger', '2025-11-21 01:20:43'),
(34466, 'no', 'panel', 'Seo Tools Manager', 'SEO-verktøy Manager', '2025-11-21 01:20:43'),
(34465, 'no', 'panel', 'Seo Plugins Manager', 'Seo Tillegg Manager', '2025-11-21 01:20:43'),
(34464, 'no', 'panel', 'Search Engine Manager', 'Søkemotor Manager', '2025-11-21 01:20:43'),
(34463, 'no', 'panel', 'Schedule Reports', 'Planlegg Rapporter', '2025-11-21 01:20:43'),
(34462, 'no', 'panel', 'Reports Manager', 'Rapporter Manager', '2025-11-21 01:20:43'),
(34461, 'no', 'panel', 'Report Settings', 'Rapport Innstillinger', '2025-11-21 01:20:43'),
(34460, 'no', 'panel', 'Report Generation Manager', 'Rapport Generation Manager', '2025-11-21 01:20:43'),
(34459, 'no', 'panel', 'Report Generation Logs', 'Rapport Generation Logs', '2025-11-21 01:20:43'),
(34458, 'no', 'panel', 'Proxy Settings', 'Proxy Innstillinger', '2025-11-21 01:20:43'),
(34457, 'no', 'panel', 'Proxy Perfomance', 'Proxy Perfomance', '2025-11-21 01:20:43'),
(34456, 'no', 'panel', 'Proxy Manager', 'Proxy Manager', '2025-11-21 01:20:43'),
(34455, 'no', 'panel', 'Project Summary', 'Prosjekt Summary', '2025-11-21 01:20:43'),
(34454, 'no', 'panel', 'Project Manager', 'Prosjekt Manager', '2025-11-21 01:20:43'),
(34453, 'no', 'panel', 'New Website', 'New Nettsted', '2025-11-21 01:20:43'),
(34452, 'no', 'panel', 'New User Type', 'New Bruker Type', '2025-11-21 01:20:43'),
(34451, 'no', 'panel', 'New User', 'New Bruker', '2025-11-21 01:20:43'),
(34450, 'no', 'panel', 'New Proxy', 'New Proxy', '2025-11-21 01:20:43'),
(34449, 'no', 'panel', 'New Project', 'New Prosjekt', '2025-11-21 01:20:43'),
(34448, 'no', 'panel', 'My Profile', 'My Profil', '2025-11-21 01:20:43'),
(34447, 'no', 'panel', 'MOZ Settings', 'MOZ Innstillinger', '2025-11-21 01:20:43'),
(34446, 'no', 'panel', 'Mail Settings', 'Mail Innstillinger', '2025-11-21 01:20:43'),
(34445, 'no', 'panel', 'Mail Log Manager', 'Mail Log Manager', '2025-11-21 01:20:43'),
(34444, 'no', 'panel', 'Log Manager', 'Log Manager', '2025-11-21 01:20:43'),
(34443, 'no', 'panel', 'Import Websites', 'Importer Nettsteder', '2025-11-21 01:20:43'),
(34442, 'no', 'panel', 'Import Proxy', 'Importer Proxy', '2025-11-21 01:20:43'),
(34441, 'no', 'panel', 'Google Settings', 'Google Innstillinger', '2025-11-21 01:20:43'),
(34440, 'no', 'panel', 'Global Reports Settings', 'Global Rapporter Innstillinger', '2025-11-21 01:20:43'),
(34439, 'no', 'panel', 'Existing', 'Existing', '2025-11-21 01:20:43'),
(34438, 'no', 'panel', 'Edit Project', 'Rediger Prosjekt', '2025-11-21 01:20:43'),
(34437, 'no', 'panel', 'Edit My Profile', 'Rediger My Profil', '2025-11-21 01:20:43'),
(34436, 'no', 'panel', 'Directory Manager', 'Katalog Manager', '2025-11-21 01:20:43'),
(34435, 'no', 'panel', 'DataForSEO Settings', 'DataForSEO Innstillinger', '2025-11-21 01:20:43'),
(34434, 'no', 'panel', 'Current Time', 'Current Tid', '2025-11-21 01:20:43'),
(34433, 'no', 'panel', 'Cron Command', 'Cron Command', '2025-11-21 01:20:43'),
(34432, 'no', 'panel', 'Crawl Log Manager', 'Crawl Log Manager', '2025-11-21 01:20:43'),
(34431, 'no', 'panel', 'Connections', 'Connections', '2025-11-21 01:20:43'),
(34430, 'no', 'panel', 'Check Directory', 'Check Katalog', '2025-11-21 01:20:43'),
(34429, 'no', 'panel', 'Archived Reports', 'Archived Rapporter', '2025-11-21 01:20:43'),
(34428, 'no', 'panel', 'API Settings', 'API-innstillinger', '2025-11-21 01:20:43'),
(34427, 'no', 'panel', 'API Manager', 'API Manager', '2025-11-21 01:20:43'),
(34426, 'no', 'panel', 'API Connection', 'API Connection', '2025-11-21 01:20:43'),
(34425, 'no', 'panel', 'alsocheckfollowlink', 'Also check following Lenke if you need more Detaljer.', '2025-11-21 01:20:43'),
(34424, 'no', 'panel', 'Alerts', 'Alarmer', '2025-11-21 01:20:43'),
(34422, 'no', 'panel', 'About Us', 'Om Us', '2025-11-21 01:20:43'),
(34423, 'no', 'panel', 'Add following command to your cron tab', 'Add following command to your cron tab', '2025-11-21 01:20:43'),
(34421, 'no', 'pagespeed', 'Saved page speed results of', 'Saved Side Hastighet Resultater of', '2025-11-21 01:20:43'),
(34420, 'no', 'pagespeed', 'PageSpeed Details', 'PageSpeed Detaljer', '2025-11-21 01:20:43'),
(34419, 'no', 'pagespeed', 'Page Speed', 'Side Hastighet', '2025-11-21 01:20:43'),
(34418, 'no', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2025-11-21 01:20:43'),
(34417, 'no', 'pagespeed', 'Mobile Speed', 'Mobile Hastighet', '2025-11-21 01:20:43'),
(34416, 'no', 'pagespeed', 'Desktop Speed', 'Desktop Hastighet', '2025-11-21 01:20:43'),
(34415, 'no', 'myaccount', 'Disconnected', 'Frakoblet', '2025-11-21 01:20:43'),
(34413, 'no', 'myaccount', 'Connected', 'Tilkoblet', '2025-11-21 01:20:43'),
(34414, 'no', 'myaccount', 'Disconnect', 'Koble fra', '2025-11-21 01:20:43'),
(34412, 'no', 'myaccount', 'Connect', 'Koble til', '2025-11-21 01:20:43'),
(34411, 'no', 'login', 'Your Password Reset Successfully', 'Your Passord Tilbakestill Successfully', '2025-11-21 01:20:43'),
(34410, 'no', 'login', 'Your Password Reset Failed', 'Your Passord Tilbakestill Mislyktes', '2025-11-21 01:20:43'),
(34409, 'no', 'login', 'Your account password is resetted and new password is', 'Your Konto Passord is resetted and new Passord is', '2025-11-21 01:20:43'),
(34408, 'no', 'login', 'Your account activated successfully', 'Your Konto activated successfully', '2025-11-21 01:20:43'),
(34407, 'no', 'login', 'Welcome message', 'Welcome Tilbake! Please Logg inn to your Konto', '2025-11-21 01:20:43'),
(34406, 'no', 'login', 'Verification', 'Verification', '2025-11-21 01:20:43'),
(34405, 'no', 'login', 'usernameexist', 'Brukernavn already exist!', '2025-11-21 01:20:43'),
(34404, 'no', 'login', 'Username placeholder', 'Enter your Brukernavn', '2025-11-21 01:20:43'),
(34403, 'no', 'login', 'Username', 'Brukernavn', '2025-11-21 01:20:43'),
(34402, 'no', 'login', 'user_not_activated_msg', 'Bruker is not activated. Please check your mail for activation', '2025-11-21 01:20:43'),
(34401, 'no', 'login', 'user_email_not_exist', 'Bruker E-post is not existing in system!', '2025-11-21 01:20:43'),
(34400, 'no', 'login', 'User Type', 'Bruker Type', '2025-11-21 01:20:43'),
(34399, 'no', 'login', 'User inactive', 'Bruker Inaktiv', '2025-11-21 01:20:43'),
(34398, 'no', 'login', 'to login to your account', 'to Logg inn to your Konto', '2025-11-21 01:20:43'),
(34397, 'no', 'login', 'Sign in to your account', 'Logg inn to your Konto', '2025-11-21 01:20:43'),
(34396, 'no', 'login', 'Sign In', 'Logg inn', '2025-11-21 01:20:43'),
(34395, 'no', 'login', 'Security message', 'Your Informasjon is secure and encrypted', '2025-11-21 01:20:43'),
(34394, 'no', 'login', 'Request Password', 'Request Passord', '2025-11-21 01:20:43'),
(34393, 'no', 'login', 'Remember password text', 'Remember your Passord?', '2025-11-21 01:20:43'),
(34392, 'no', 'login', 'Register', 'Register', '2025-11-21 01:20:43'),
(34391, 'no', 'login', 'password_reset_success_message', 'Your Passord Tilbakestill successfully. A confirmation mail send to E-post address. <br>Please check your inbox to get your new Passord.', '2025-11-21 01:20:43'),
(34390, 'no', 'login', 'Password placeholder', 'Enter your Passord', '2025-11-21 01:20:43'),
(34389, 'no', 'login', 'Password incorrect', 'Passord incorrect', '2025-11-21 01:20:43'),
(34388, 'no', 'login', 'Password', 'Passord', '2025-11-21 01:20:43'),
(34387, 'no', 'login', 'No account text', 'Don''t have an Konto?', '2025-11-21 01:20:43'),
(34386, 'no', 'login', 'newaccountsuccess', 'New Konto created successfully!', '2025-11-21 01:20:43'),
(34385, 'no', 'login', 'Login incorrect', 'Logg inn incorrect', '2025-11-21 01:20:43'),
(34384, 'no', 'login', 'Login', 'Logg inn', '2025-11-21 01:20:43'),
(34383, 'no', 'login', 'Last Name', 'Siste Navn', '2025-11-21 01:20:43'),
(34382, 'no', 'login', 'internal_error_mail_send', 'An internal Feil occured while sending Passord Tilbakestill mail!', '2025-11-21 01:20:43'),
(34381, 'no', 'login', 'Forgot subtitle', 'Enter your E-post address and we''ll send you instructions to Tilbakestill your Passord', '2025-11-21 01:20:43'),
(34380, 'no', 'login', 'Forgot password?', 'Glemt passord?', '2025-11-21 01:20:43'),
(34379, 'no', 'login', 'First Name', 'Første Navn', '2025-11-21 01:20:43'),
(34378, 'no', 'login', 'Enter the code as it is shown', 'Enter the code as it is shown', '2025-11-21 01:20:43'),
(34377, 'no', 'login', 'Enter the code', 'Enter the code', '2025-11-21 01:20:43'),
(34376, 'no', 'login', 'emailexist', 'E-post already exist!', '2025-11-21 01:20:43'),
(34375, 'no', 'login', 'Email placeholder', '[email protected]', '2025-11-21 01:20:43'),
(34374, 'no', 'login', 'Email', 'E-post', '2025-11-21 01:20:43'),
(34373, 'no', 'login', 'Create New Account', 'Opprett New Konto', '2025-11-21 01:20:43'),
(34372, 'no', 'login', 'Create my account', 'Opprett Min konto', '2025-11-21 01:20:43'),
(34371, 'no', 'login', 'Confirm Password', 'Bekreft Passord', '2025-11-21 01:20:43'),
(34370, 'no', 'log', 'Post Fields', 'Post Fields', '2025-11-21 01:20:43'),
(34369, 'no', 'log', 'Mail Log Details', 'Mail Log Detaljer', '2025-11-21 01:20:43'),
(34368, 'no', 'log', 'Crawl Log Details', 'Crawl Log Detaljer', '2025-11-21 01:20:43'),
(34367, 'no', 'log', 'Clear All Logs', 'Tøm All Logs', '2025-11-21 01:20:43'),
(34366, 'no', 'label', 'Year', 'Year', '2025-11-21 01:20:43'),
(34365, 'no', 'label', 'Write', 'Write', '2025-11-21 01:20:43'),
(34364, 'no', 'label', 'Weekly', 'Ukentlig', '2025-11-21 01:20:43'),
(34363, 'no', 'label', 'Week', 'Week', '2025-11-21 01:20:43'),
(34362, 'no', 'label', 'wantproceed', 'Do you really want to proceed?', '2025-11-21 01:20:43'),
(34361, 'no', 'label', 'View Reports', 'Vis Rapporter', '2025-11-21 01:20:43'),
(34360, 'no', 'label', 'Version', 'Versjon', '2025-11-21 01:20:43'),
(34359, 'no', 'label', 'User agent', 'Bruker agent', '2025-11-21 01:20:43'),
(34358, 'no', 'label', 'Usability', 'Usability', '2025-11-21 01:20:43'),
(34357, 'no', 'label', 'Upgrade', 'Upgrade', '2025-11-21 01:20:43'),
(34356, 'no', 'label', 'Updated', 'Updated', '2025-11-21 01:20:43'),
(34355, 'no', 'label', 'Type', 'Type', '2025-11-21 01:20:43'),
(34354, 'no', 'label', 'Translators', 'Translators', '2025-11-21 01:20:43'),
(34353, 'no', 'label', 'translation by', 'translation by', '2025-11-21 01:20:43'),
(34352, 'no', 'label', 'Total Results', 'Totalt Resultater', '2025-11-21 01:20:43'),
(34351, 'no', 'label', 'Title', 'Tittel', '2025-11-21 01:20:43'),
(34350, 'no', 'label', 'Theme', 'Theme', '2025-11-21 01:20:43'),
(34349, 'no', 'label', 'Syntax', 'Syntax', '2025-11-21 01:20:43'),
(34348, 'no', 'label', 'Success', 'Suksess', '2025-11-21 01:20:43'),
(34347, 'no', 'label', 'Subject', 'Subject', '2025-11-21 01:20:43'),
(34346, 'no', 'label', 'Sponsors', 'Sponsors', '2025-11-21 01:20:43'),
(34345, 'no', 'label', 'Speed', 'Hastighet', '2025-11-21 01:20:43'),
(34344, 'no', 'label', 'Select All', 'Velg All', '2025-11-21 01:20:43'),
(34343, 'no', 'label', 'Second', 'Second', '2025-11-21 01:20:43'),
(34341, 'no', 'label', 'Reviews', 'Anmeldelser', '2025-11-21 01:20:43'),
(34342, 'no', 'label', 'Score', 'Poengsum', '2025-11-21 01:20:43'),
(34340, 'no', 'label', 'Report Type', 'Rapport Type', '2025-11-21 01:20:43'),
(34339, 'no', 'label', 'Referer', 'Referer', '2025-11-21 01:20:43'),
(34338, 'no', 'label', 'Reference', 'Reference', '2025-11-21 01:20:43'),
(34337, 'no', 'label', 'Recent Activity', 'Nylig aktivitet', '2025-11-21 01:20:43'),
(34335, 'no', 'label', 'Re-install', 'Re-install', '2025-11-21 01:20:43'),
(34336, 'no', 'label', 'Read', 'Read', '2025-11-21 01:20:43'),
(34334, 'no', 'label', 'Rating', 'Vurdering', '2025-11-21 01:20:43'),
(34332, 'no', 'label', 'Project', 'Prosjekt', '2025-11-21 01:20:43'),
(34333, 'no', 'label', 'Proxy', 'Proxy', '2025-11-21 01:20:43'),
(34331, 'no', 'label', 'Port', 'Port', '2025-11-21 01:20:43'),
(34329, 'no', 'label', 'Overview', 'Oversikt', '2025-11-21 01:20:43'),
(34330, 'no', 'label', 'Plugin', 'Plugin', '2025-11-21 01:20:43'),
(34328, 'no', 'label', 'Order By', 'Order By', '2025-11-21 01:20:43'),
(34326, 'no', 'label', 'Months', 'Months', '2025-11-21 01:20:43'),
(34327, 'no', 'label', 'noactiveplugins', 'No Aktiv Seo Tillegg Found!', '2025-11-21 01:20:43'),
(34324, 'no', 'label', 'Month', 'Month', '2025-11-21 01:20:43'),
(34325, 'no', 'label', 'Monthly', 'Månedlig', '2025-11-21 01:20:43'),
(34323, 'no', 'label', 'Mobile', 'Mobile', '2025-11-21 01:20:43'),
(34322, 'no', 'label', 'Minute', 'Minute', '2025-11-21 01:20:43'),
(34321, 'no', 'label', 'Likes', 'Liker', '2025-11-21 01:20:43'),
(34320, 'no', 'label', 'Keywords', 'Nøkkelord', '2025-11-21 01:20:43'),
(34319, 'no', 'label', 'Just Now', 'Just Now', '2025-11-21 01:20:43'),
(34317, 'no', 'label', 'Include', 'Include', '2025-11-21 01:20:43'),
(34318, 'no', 'label', 'Installation', 'Installation', '2025-11-21 01:20:43'),
(34316, 'no', 'label', 'Impressions', 'Impressions', '2025-11-21 01:20:43'),
(34315, 'no', 'label', 'Hour', 'Hour', '2025-11-21 01:20:43'),
(34313, 'no', 'label', 'Free', 'Free', '2025-11-21 01:20:43'),
(34314, 'no', 'label', 'From', 'From', '2025-11-21 01:20:43'),
(34312, 'no', 'label', 'Followers', 'Followers', '2025-11-21 01:20:43'),
(34310, 'no', 'label', 'Fail', 'Fail', '2025-11-21 01:20:43'),
(34311, 'no', 'label', 'Feature', 'Feature', '2025-11-21 01:20:43'),
(34309, 'no', 'label', 'Exclude', 'Exclude', '2025-11-21 01:20:43'),
(34308, 'no', 'label', 'Email Body', 'E-post Body', '2025-11-21 01:20:43'),
(34307, 'no', 'label', 'Download', 'Last ned', '2025-11-21 01:20:43'),
(34306, 'no', 'label', 'Developers', 'Developers', '2025-11-21 01:20:43'),
(34305, 'no', 'label', 'Desktop', 'Desktop', '2025-11-21 01:20:43'),
(34303, 'no', 'label', 'Days', 'Days', '2025-11-21 01:20:43'),
(34304, 'no', 'label', 'Description', 'Beskrivelse', '2025-11-21 01:20:43'),
(34301, 'no', 'label', 'Daily', 'Daglig', '2025-11-21 01:20:43'),
(34302, 'no', 'label', 'Day', 'Day', '2025-11-21 01:20:43'),
(34299, 'no', 'label', 'Cron', 'Cron', '2025-11-21 01:20:43'),
(34300, 'no', 'label', 'Current', 'Current', '2025-11-21 01:20:43'),
(34297, 'no', 'label', 'Cookie', 'Cookie', '2025-11-21 01:20:43'),
(34298, 'no', 'label', 'Count', 'Antall', '2025-11-21 01:20:43'),
(34295, 'no', 'label', 'Clicks', 'Clicks', '2025-11-21 01:20:43'),
(34296, 'no', 'label', 'Comments', 'Comments', '2025-11-21 01:20:43'),
(34294, 'no', 'label', 'Click Here', 'Klikk her', '2025-11-21 01:20:43'),
(34293, 'no', 'label', 'Clear All', 'Tøm All', '2025-11-21 01:20:43'),
(34292, 'no', 'label', 'Brocken', 'Broken', '2025-11-21 01:20:43'),
(34290, 'no', 'label', 'Authentication', 'Authentication', '2025-11-21 01:20:43'),
(34291, 'no', 'label', 'Author', 'Author', '2025-11-21 01:20:43'),
(34289, 'no', 'label', 'already exist', 'already exist', '2025-11-21 01:20:43'),
(34288, 'no', 'label', 'Ago', 'Ago', '2025-11-21 01:20:43'),
(34287, 'no', 'label', 'Access denied', 'Tilgang nektet', '2025-11-21 01:20:43'),
(34286, 'no', 'keyword', 'Your keyword count already reached the limit', 'Nøkkelord Antall already reached the limit for this Bruker!', '2025-11-21 01:20:43'),
(34285, 'no', 'keyword', 'You can add only keywordcount keywords more', 'You can add only [keywordcount] Nøkkelord for this Bruker!', '2025-11-21 01:20:43'),
(34284, 'no', 'keyword', 'Top Keywords', 'Top Nøkkelord', '2025-11-21 01:20:43'),
(34283, 'no', 'keyword', 'to create new keywords', 'to Opprett new Nøkkelord', '2025-11-21 01:20:43'),
(34282, 'no', 'keyword', 'Successfully crawled keyword', 'Successfully crawled Nøkkelord', '2025-11-21 01:20:43'),
(34281, 'no', 'keyword', 'Show All results', 'Show All Resultater', '2025-11-21 01:20:43'),
(34280, 'no', 'keyword', 'results from ', 'Resultater from ', '2025-11-21 01:20:43'),
(34279, 'no', 'keyword', 'Ranking Trends', 'Rangering Trends', '2025-11-21 01:20:43'),
(34278, 'no', 'keyword', 'Quick Keyword Position Checker', 'Quick Nøkkelordposisjon Checker', '2025-11-21 01:20:43'),
(34277, 'no', 'keyword', 'pleaseselecttool', 'Vennligst velg atleast one SEO-verktøy', '2025-11-21 01:20:43'),
(34276, 'no', 'keyword', 'not assigned to required search engines', 'not assigned to Påkrevd Søkemotorer', '2025-11-21 01:20:43'),
(34275, 'no', 'keyword', 'New Keyword', 'New Nøkkelord', '2025-11-21 01:20:43'),
(34274, 'no', 'keyword', 'Keywords Tracked', 'Nøkkelord Tracked', '2025-11-21 01:20:43'),
(34273, 'no', 'keyword', 'Keyword Ranking Trends', 'Nøkkelord Rangering Trends', '2025-11-21 01:20:43'),
(34272, 'no', 'keyword', 'Keyword Position Report', 'Nøkkelordposisjon Rapport', '2025-11-21 01:20:43'),
(34271, 'no', 'keyword', 'Keyword already exist', 'Nøkkelord already exist', '2025-11-21 01:20:43'),
(34270, 'no', 'keyword', 'Insert keywords separated with comma', 'Insert Nøkkelord separated with comma', '2025-11-21 01:20:43'),
(34269, 'no', 'keyword', 'Import Keywords', 'Importer Nøkkelord', '2025-11-21 01:20:43'),
(34268, 'no', 'keyword', 'Graphical Keyword Position Reports', 'Graphical Nøkkelordposisjon Rapporter', '2025-11-21 01:20:43'),
(34267, 'no', 'keyword', 'Edit Keyword', 'Rediger nøkkelord', '2025-11-21 01:20:43'),
(34266, 'no', 'keyword', 'Detailed Keyword Position Reports', 'Detailed Nøkkelordposisjon Rapporter', '2025-11-21 01:20:43'),
(34265, 'no', 'keyword', 'Crawling keyword', 'Crawling Nøkkelord', '2025-11-21 01:20:43'),
(34262, 'no', 'home', 'Ranks', 'Ranks', '2025-11-21 01:20:43'),
(34263, 'no', 'home', 'SiteNameUrl', 'Site Navn/Url', '2025-11-21 01:20:43'),
(34264, 'no', 'home', 'Website Statistics', 'Nettsted Statistikk', '2025-11-21 01:20:43'),
(34261, 'no', 'home', 'Pages Indexed', 'Sider Indexed', '2025-11-21 01:20:43'),
(34260, 'no', 'home', 'Page Overview Report', 'Side Overview Rapport', '2025-11-21 01:20:43'),
(34259, 'no', 'home', 'Overall Report Summary', 'Overall Rapport Summary', '2025-11-21 01:20:43'),
(34258, 'no', 'home', 'Keyword Overview Report', 'Nøkkelord Overview Rapport', '2025-11-21 01:20:43'),
(38292, 'en', 'socialmedia', 'Likes by Platform', 'Likes by Platform', '2026-01-19 22:56:41'),
(34257, 'no', 'home', 'Indexed', 'Indexed', '2025-11-21 01:20:43'),
(38293, 'ar', 'socialmedia', 'Likes by Platform', 'الإعجابات حسب المنصة', '2026-01-19 22:56:41'),
(38294, 'bg', 'socialmedia', 'Likes by Platform', 'Харесвания по платформа', '2026-01-19 22:56:41'),
(38295, 'bs', 'socialmedia', 'Likes by Platform', 'Sviđanja po platformi', '2026-01-19 22:56:41'),
(38296, 'ca', 'socialmedia', 'Likes by Platform', 'M''agrada per plataforma', '2026-01-19 22:56:41'),
(38297, 'cn', 'socialmedia', 'Likes by Platform', '各平台点赞数', '2026-01-19 22:56:41'),
(38298, 'cs', 'socialmedia', 'Likes by Platform', 'To se mi líbí podle platformy', '2026-01-19 22:56:41'),
(38299, 'da', 'socialmedia', 'Likes by Platform', 'Likes efter platform', '2026-01-19 22:56:41'),
(38300, 'de', 'socialmedia', 'Likes by Platform', 'Likes nach Plattform', '2026-01-19 22:56:41'),
(38301, 'el', 'socialmedia', 'Likes by Platform', 'Like ανά πλατφόρμα', '2026-01-19 22:56:41'),
(38302, 'es', 'socialmedia', 'Likes by Platform', 'Me gusta por plataforma', '2026-01-19 22:56:41'),
(38303, 'es-ar', 'socialmedia', 'Likes by Platform', 'Me gusta por plataforma', '2026-01-19 22:56:41'),
(38304, 'fa', 'socialmedia', 'Likes by Platform', 'پسندیدن ها بر اساس پلتفرم', '2026-01-19 22:56:41'),
(38305, 'fi', 'socialmedia', 'Likes by Platform', 'Tykkäykset alustittain', '2026-01-19 22:56:41'),
(38306, 'fr', 'socialmedia', 'Likes by Platform', 'J''aime par plateforme', '2026-01-19 22:56:41'),
(38307, 'he', 'socialmedia', 'Likes by Platform', 'לייקים לפי פלטפורמה', '2026-01-19 22:56:41'),
(38308, 'hi', 'socialmedia', 'Likes by Platform', 'प्लेटफ़ॉर्म के अनुसार पसंद', '2026-01-19 22:56:41'),
(38309, 'hr', 'socialmedia', 'Likes by Platform', 'Sviđanja po platformi', '2026-01-19 22:56:41'),
(38310, 'hu', 'socialmedia', 'Likes by Platform', 'Kedvelések platformonként', '2026-01-19 22:56:41'),
(38311, 'hy', 'socialmedia', 'Likes by Platform', 'Հավանումներ ըստ հարթակի', '2026-01-19 22:56:41'),
(38312, 'id', 'socialmedia', 'Likes by Platform', 'Suka menurut Platform', '2026-01-19 22:56:41'),
(38313, 'it', 'socialmedia', 'Likes by Platform', 'Like per Piattaforma', '2026-01-19 22:56:41'),
(38314, 'ja', 'socialmedia', 'Likes by Platform', 'プラットフォーム別いいね', '2026-01-19 22:56:41'),
(38315, 'ko', 'socialmedia', 'Likes by Platform', '플랫폼별 좋아요', '2026-01-19 22:56:41'),
(38316, 'lt', 'socialmedia', 'Likes by Platform', 'Patinka pagal platformą', '2026-01-19 22:56:41'),
(38317, 'mk', 'socialmedia', 'Likes by Platform', 'Допаѓања по платформа', '2026-01-19 22:56:41'),
(38318, 'nl', 'socialmedia', 'Likes by Platform', 'Likes per platform', '2026-01-19 22:56:41'),
(38319, 'no', 'socialmedia', 'Likes by Platform', 'Likes etter plattform', '2026-01-19 22:56:41'),
(38320, 'pl', 'socialmedia', 'Likes by Platform', 'Polubienia według platformy', '2026-01-19 22:56:41'),
(38321, 'pt', 'socialmedia', 'Likes by Platform', 'Curtidas por plataforma', '2026-01-19 22:56:41'),
(38322, 'pt-br', 'socialmedia', 'Likes by Platform', 'Curtidas por plataforma', '2026-01-19 22:56:41'),
(38323, 'ro', 'socialmedia', 'Likes by Platform', 'Aprecieri pe platformă', '2026-01-19 22:56:41'),
(38324, 'ru', 'socialmedia', 'Likes by Platform', 'Лайки по платформам', '2026-01-19 22:56:41'),
(38325, 'sk', 'socialmedia', 'Likes by Platform', 'Páči sa mi to podľa platformy', '2026-01-19 22:56:41'),
(38326, 'sl', 'socialmedia', 'Likes by Platform', 'Všečki po platformi', '2026-01-19 22:56:41'),
(38327, 'sq', 'socialmedia', 'Likes by Platform', 'Pëlqime sipas platformës', '2026-01-19 22:56:41'),
(38328, 'sr', 'socialmedia', 'Likes by Platform', 'Допадања по платформи', '2026-01-19 22:56:41'),
(38329, 'sv', 'socialmedia', 'Likes by Platform', 'Gilla-markeringar per plattform', '2026-01-19 22:56:41'),
(38330, 'sw', 'socialmedia', 'Likes by Platform', 'Vipendwa kwa Jukwaa', '2026-01-19 22:56:41'),
(38331, 'th', 'socialmedia', 'Likes by Platform', 'ไลค์ตามแพลตฟอร์ม', '2026-01-19 22:56:41'),
(38332, 'tl', 'socialmedia', 'Likes by Platform', 'Mga Gusto ayon sa Platform', '2026-01-19 22:56:41'),
(38333, 'tr', 'socialmedia', 'Likes by Platform', 'Platforma göre beğeniler', '2026-01-19 22:56:41'),
(38334, 'uk', 'socialmedia', 'Likes by Platform', 'Вподобання за платформами', '2026-01-19 22:56:41'),
(38335, 'vn', 'socialmedia', 'Likes by Platform', 'Lượt thích theo nền tảng', '2026-01-19 22:56:41'),
(38336, 'zh', 'socialmedia', 'Likes by Platform', '各平台点赞数', '2026-01-19 22:56:41'),
(38337, 'en', 'socialmedia', 'Social Media Growth Trends', 'Social Media Growth Trends', '2026-01-19 22:56:41'),
(38338, 'ar', 'socialmedia', 'Social Media Growth Trends', 'اتجاهات نمو وسائل التواصل الاجتماعي', '2026-01-19 22:56:41'),
(38339, 'bg', 'socialmedia', 'Social Media Growth Trends', 'Тенденции на растеж на социалните медии', '2026-01-19 22:56:41'),
(38340, 'bs', 'socialmedia', 'Social Media Growth Trends', 'Trendovi rasta društvenih medija', '2026-01-19 22:56:41'),
(38341, 'ca', 'socialmedia', 'Social Media Growth Trends', 'Tendències de creixement de xarxes socials', '2026-01-19 22:56:41'),
(38342, 'cn', 'socialmedia', 'Social Media Growth Trends', '社交媒体增长趋势', '2026-01-19 22:56:41'),
(38343, 'cs', 'socialmedia', 'Social Media Growth Trends', 'Trendy růstu sociálních médií', '2026-01-19 22:56:41'),
(38344, 'da', 'socialmedia', 'Social Media Growth Trends', 'Væksttrends for sociale medier', '2026-01-19 22:56:41'),
(38345, 'de', 'socialmedia', 'Social Media Growth Trends', 'Social-Media-Wachstumstrends', '2026-01-19 22:56:41'),
(38346, 'el', 'socialmedia', 'Social Media Growth Trends', 'Τάσεις ανάπτυξης κοινωνικών μέσων', '2026-01-19 22:56:41'),
(38347, 'es', 'socialmedia', 'Social Media Growth Trends', 'Tendencias de crecimiento en redes sociales', '2026-01-19 22:56:41'),
(38348, 'es-ar', 'socialmedia', 'Social Media Growth Trends', 'Tendencias de crecimiento en redes sociales', '2026-01-19 22:56:41'),
(38349, 'fa', 'socialmedia', 'Social Media Growth Trends', 'روندهای رشد رسانه های اجتماعی', '2026-01-19 22:56:41'),
(34253, 'no', 'home', 'Directory Submission', 'Katalog Submission', '2025-11-21 01:20:43'),
(34251, 'no', 'home', 'Account Summary', 'Konto Summary', '2025-11-21 01:20:43'),
(34252, 'no', 'home', 'Backlinks', 'Tilbakekoblinger', '2025-11-21 01:20:43'),
(34250, 'no', 'guest', 'Why Choose SEO Panel?', 'Why Velg SEO Panel?', '2025-11-21 01:20:43'),
(34249, 'no', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-11-21 01:20:43'),
(34248, 'no', 'guest', 'View Demo', 'Vis Demo', '2025-11-21 01:20:43'),
(34247, 'no', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their Nettsteder.', '2025-11-21 01:20:43'),
(34246, 'no', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-11-21 01:20:43'),
(34245, 'no', 'guest', 'Support Development', 'Støtte Development', '2025-11-21 01:20:43'),
(34244, 'no', 'guest', 'Social Media Integration desc', 'Integrate with Google Analyse, Søk Console, and Sosiale medier platforms for comprehensive reporting.', '2025-11-21 01:20:43'),
(34243, 'no', 'guest', 'Social Media Integration', 'Sosiale medier Integrasjon', '2025-11-21 01:20:43'),
(34242, 'no', 'guest', 'Site Auditor desc', 'Audit all SEO factors of each Side and generate XML, HTML, and Tekst sitemaps for Søkemotorer.', '2025-11-21 01:20:43'),
(34241, 'no', 'guest', 'Search Engine Saturation desc', 'Find the Nummer of Indekserte sider across different Søkemotorer and monitor your indexing progress.', '2025-11-21 01:20:43'),
(34240, 'no', 'guest', 'Resources & Support', 'Resources & Støtte', '2025-11-21 01:20:43'),
(34239, 'no', 'guest', 'Rank Checker desc', 'Check Google PageRank, Alexa-rang, and Moz-rang with comprehensive Daglig tracking and reporting.', '2025-11-21 01:20:43'),
(34238, 'no', 'guest', 'Powerful SEO Features', 'Powerful SEO Features', '2025-11-21 01:20:43'),
(34237, 'no', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful Tillegg including Article Submitter, Metakode-generator, and more.', '2025-11-21 01:20:43'),
(34236, 'no', 'guest', 'Plugin Architecture', 'Plugin Architecture', '2025-11-21 01:20:43'),
(34235, 'no', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited Nettsteder from a single control panel with centralized reporting.', '2025-11-21 01:20:43'),
(34234, 'no', 'guest', 'Multi-Website Support', 'Multi-Nettsted Støtte', '2025-11-21 01:20:43'),
(34233, 'no', 'guest', 'Login to Get Started', 'Logg inn to Kom i gang', '2025-11-21 01:20:43'),
(34232, 'no', 'guest', 'Keyword Position Checker desc', 'Track your Nøkkelord Rangeringer across multiple Søkemotorer with detailed Daglig Rapporter and beautiful graphs.', '2025-11-21 01:20:43'),
(34231, 'no', 'guest', 'Highly Extensible desc', 'Easily develop and install Tilpasset Tillegg to extend functionality according to your needs.', '2025-11-21 01:20:43'),
(34230, 'no', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-11-21 01:20:43'),
(34229, 'no', 'guest', 'Hero subtitle', 'World''s Første Open Kilde SEO Control Panel for Multiple Nettsteder', '2025-11-21 01:20:43'),
(34228, 'no', 'guest', 'Hero description', 'A complete open Kilde SEO control panel for managing Søkemotor optimization of your Nettsteder. SEO Panel is a powerful toolkit that includes the Siste SEO-verktøy to Økning and track the Ytelse of your Nettsteder.', '2025-11-21 01:20:43'),
(34227, 'no', 'guest', 'Get Support', 'Get Støtte', '2025-11-21 01:20:43'),
(34225, 'no', 'guest', 'Documentation', 'Dokumentasjon', '2025-11-21 01:20:43'),
(34226, 'no', 'guest', 'Download SEO Panel', 'Last ned SEO Panel', '2025-11-21 01:20:43'),
(34224, 'no', 'guest', 'Directory Submission desc', 'Automatically Send inn your Nettsteder to major free and paid directories with Status tracking.', '2025-11-21 01:20:43'),
(34223, 'no', 'guest', 'Contact Us', 'Kontakt Us', '2025-11-21 01:20:43'),
(34221, 'no', 'guest', 'Browse Plugins', 'Browse Tillegg', '2025-11-21 01:20:43'),
(34222, 'no', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-11-21 01:20:43'),
(34220, 'no', 'guest', 'Backlinks Checker desc', 'Monitor the Nummer of Tilbakekoblinger from major Søkemotorer and track your Lenke building progress over Tid.', '2025-11-21 01:20:43'),
(34219, 'no', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. Last ned, customize, and use without any restrictions.', '2025-11-21 01:20:43'),
(34218, 'no', 'guest', '100% Open Source', '100% Open Kilde', '2025-11-21 01:20:43'),
(34217, 'no', 'directory', 'Website Url', 'Nettsted-URL', '2025-11-21 01:20:43'),
(34216, 'no', 'directory', 'Website Category', 'Nettsted Kategori', '2025-11-21 01:20:43'),
(34215, 'no', 'directory', 'Submit Title', 'Send inn Tittel', '2025-11-21 01:20:43'),
(34214, 'no', 'directory', 'Submit Keywords', 'Send inn Nøkkelord', '2025-11-21 01:20:43'),
(34213, 'no', 'directory', 'Submit Description', 'Send inn Beskrivelse', '2025-11-21 01:20:43'),
(34212, 'no', 'directory', 'Submission Details', 'Submission Detaljer', '2025-11-21 01:20:43'),
(34211, 'no', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary E-post address.', '2025-11-21 01:20:43'),
(34210, 'no', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi Automatisk Katalog Submission Tool', '2025-11-21 01:20:43'),
(34209, 'no', 'directory', 'selectwebsiteschecksub', 'Velg a <b>Nettsted</b> to <b>Proceed</b> check Katalog submission.', '2025-11-21 01:20:43'),
(34207, 'no', 'directory', 'Reciprocal Link', 'Reciprocal Lenke', '2025-11-21 01:20:43'),
(34208, 'no', 'directory', 'selectwebsiteproceed', 'Velg a <b>Nettsted</b> to <b>Proceed</b> Katalog submission.<br>Check <b>Directories with out captcha</b> to Send inn to directories with out captcha', '2025-11-21 01:20:43'),
(34205, 'no', 'directory', 'Pending', 'Ventende', '2025-11-21 01:20:43'),
(34206, 'no', 'directory', 'Please select a website to proceed', 'Vennligst velg a Nettsted to proceed', '2025-11-21 01:20:43'),
(34204, 'no', 'directory', 'Owner Name', 'Owner Navn', '2025-11-21 01:20:43'),
(34203, 'no', 'directory', 'Owner Email', 'Owner E-post', '2025-11-21 01:20:43'),
(34202, 'no', 'directory', 'optionalnote', 'Valgfritt titles and descriptions to Send inn random Tittel and Beskrivelse to directories for better Resultater.', '2025-11-21 01:20:43'),
(34201, 'no', 'directory', 'nosuccessnote', 'Didn''t get Suksess Melding, Please check your mail to find the Bekreft Melding', '2025-11-21 01:20:43'),
(34200, 'no', 'directory', 'nodirnote', 'No <b>Aktiv</b> directories Found', '2025-11-21 01:20:43'),
(34198, 'no', 'directory', 'Enter the code shown', 'Enter the code shown', '2025-11-21 01:20:43'),
(34199, 'no', 'directory', 'nocatnote', 'The submission Kategori not found in submission Side. Please click on <b>Reload</b> or <b>Skip</b>', '2025-11-21 01:20:43'),
(34197, 'no', 'directory', 'Directory Submission Reports', 'Katalog Submission Rapporter', '2025-11-21 01:20:43'),
(34196, 'no', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Lenke', '2025-11-21 01:20:43'),
(34195, 'no', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2025-11-21 01:20:43'),
(34194, 'no', 'directory', 'desnote', 'Some directories require Minimum 150 characters for the Beskrivelse field.', '2025-11-21 01:20:43'),
(34193, 'no', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured submission!', '2025-11-21 01:20:43'),
(34191, 'no', 'directory', 'Coupon Code', 'Coupon Code', '2025-11-21 01:20:43'),
(34192, 'no', 'directory', 'Coupon Offer', 'Coupon Offer', '2025-11-21 01:20:43'),
(34190, 'no', 'directory', 'Confirmation', 'Confirmation', '2025-11-21 01:20:43'),
(34189, 'no', 'directory', 'clicktoproceeddirsts', 'Click on <b>Proceed</b> to Check Katalog Status.', '2025-11-21 01:20:43'),
(34188, 'no', 'directory', 'clickaddfeatureddirectory', 'Klikk her to add your own featured Katalog here', '2025-11-21 01:20:43'),
(34187, 'no', 'directory', 'Check Directory Submission Status', 'Check Katalog Submission Status', '2025-11-21 01:20:43'),
(34186, 'no', 'directory', 'Check Directory Status', 'Check Katalog Status', '2025-11-21 01:20:43'),
(34184, 'no', 'directory', 'Captcha', 'Captcha', '2025-11-21 01:20:43'),
(34185, 'no', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. Start with Top priority Kategori.', '2025-11-21 01:20:43'),
(34183, 'no', 'directory', 'Approved', 'Approved', '2025-11-21 01:20:43'),
(34182, 'no', 'directory', 'Add back to directory list', 'Add Tilbake to Katalog list', '2025-11-21 01:20:43'),
(34181, 'no', 'dashboard', 'Worst Rank', 'Worst Rang', '2025-11-21 01:20:43'),
(34180, 'no', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility Poengsum (Standard Deviation)', '2025-11-21 01:20:43'),
(34179, 'no', 'dashboard', 'Volatility Score', 'Volatility Poengsum', '2025-11-21 01:20:43'),
(34178, 'no', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'Volatility data requires at least 2 Rangering checks within the selected period.', '2025-11-21 01:20:43'),
(34177, 'no', 'dashboard', 'Volatility', 'Volatility', '2025-11-21 01:20:43'),
(34176, 'no', 'dashboard', 'Trend', 'Trend', '2025-11-21 01:20:43'),
(34175, 'no', 'dashboard', 'Top 3', 'Top 3', '2025-11-21 01:20:43'),
(34174, 'no', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile Nøkkelord', '2025-11-21 01:20:43'),
(34173, 'no', 'dashboard', 'Top 10', 'Top 10', '2025-11-21 01:20:43'),
(34172, 'no', 'dashboard', 'Ranking Volatility', 'Rangering Volatility', '2025-11-21 01:20:43'),
(34171, 'no', 'dashboard', 'positions', 'positions', '2025-11-21 01:20:43'),
(34170, 'no', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-11-21 01:20:43'),
(34169, 'no', 'dashboard', 'Keywords with most ranking fluctuations', 'Nøkkelord with most Rangering fluctuations', '2025-11-21 01:20:43'),
(34168, 'no', 'dashboard', 'Keywords by Ranking Position', 'Nøkkelord by Rangering Posisjon', '2025-11-21 01:20:43'),
(34167, 'no', 'dashboard', 'Keyword Statistics', 'Nøkkelord Statistikk', '2025-11-21 01:20:43'),
(34166, 'no', 'dashboard', 'Keyword Distribution by Rank', 'Nøkkelord Distribution by Rang', '2025-11-21 01:20:43'),
(34165, 'no', 'dashboard', 'Best Rank', 'Best Rang', '2025-11-21 01:20:43'),
(34163, 'no', 'common', 'Yes', 'Ja', '2025-11-21 01:20:43'),
(34164, 'no', 'dashboard', 'Avg Rank', 'Avg Rang', '2025-11-21 01:20:43'),
(34162, 'no', 'common', 'Websites Count', 'Nettsteder Antall', '2025-11-21 01:20:43'),
(34161, 'no', 'common', 'Website', 'Nettsted', '2025-11-21 01:20:43'),
(34160, 'no', 'common', 'Warnings', 'Warnings', '2025-11-21 01:20:43'),
(34159, 'no', 'common', 'User Type', 'Bruker Type', '2025-11-21 01:20:43'),
(34157, 'no', 'common', 'User', 'Bruker', '2025-11-21 01:20:43'),
(34158, 'no', 'common', 'User Panel', 'Bruker Panel', '2025-11-21 01:20:43'),
(34155, 'no', 'common', 'Total', 'Totalt', '2025-11-21 01:20:43'),
(34156, 'no', 'common', 'Url', 'URL', '2025-11-21 01:20:43'),
(34153, 'no', 'common', 'Thank you', 'Thank you', '2025-11-21 01:20:43'),
(34154, 'no', 'common', 'Tools', 'Verktøy', '2025-11-21 01:20:43'),
(34152, 'no', 'common', 'Support', 'Støtte', '2025-11-21 01:20:43'),
(34150, 'no', 'common', 'Spam Score', 'Spam Poengsum', '2025-11-21 01:20:43'),
(34151, 'no', 'common', 'Status', 'Status', '2025-11-21 01:20:43'),
(34148, 'no', 'common', 'signin', 'Logg inn', '2025-11-21 01:20:43'),
(34149, 'no', 'common', 'Source', 'Kilde', '2025-11-21 01:20:43'),
(34145, 'no', 'common', 'Server', 'Server', '2025-11-21 01:20:43'),
(34146, 'no', 'common', 'Sign out', 'Sign out', '2025-11-21 01:20:43'),
(34147, 'no', 'common', 'Sign Up', 'Registrer deg', '2025-11-21 01:20:43'),
(34144, 'no', 'common', 'Seo Tools', 'SEO-verktøy', '2025-11-21 01:20:43'),
(34143, 'no', 'common', 'Seo Plugins', 'Seo Tillegg', '2025-11-21 01:20:43'),
(34142, 'no', 'common', 'Select', 'Velg', '2025-11-21 01:20:43'),
(34141, 'no', 'common', 'Search Engine Count', 'Søkemotor Antall', '2025-11-21 01:20:43'),
(34140, 'no', 'common', 'Search Engine', 'Søkemotor', '2025-11-21 01:20:43'),
(34139, 'no', 'common', 'Sample CSV File', 'Sample CSV Fil', '2025-11-21 01:20:43'),
(34094, 'no', 'common', 'hidenews', 'Hide Seo Panel News', '2025-11-21 01:20:43'),
(34095, 'no', 'common', 'Home', 'Hjem', '2025-11-21 01:20:43'),
(34096, 'no', 'common', 'Id', 'Id', '2025-11-21 01:20:43'),
(34097, 'no', 'common', 'Inactivate', 'Inactivate', '2025-11-21 01:20:43'),
(34098, 'no', 'common', 'Inactive', 'Inaktiv', '2025-11-21 01:20:43'),
(34099, 'no', 'common', 'Internal error occured', 'Internal Feil occured', '2025-11-21 01:20:43'),
(34100, 'no', 'common', 'Invalid characters', 'Ugyldig characters', '2025-11-21 01:20:43'),
(34101, 'no', 'common', 'Invalid code entered', 'Ugyldig code entered', '2025-11-21 01:20:43'),
(34102, 'no', 'common', 'Invalid email address entered', 'Ugyldig E-post address entered', '2025-11-21 01:20:43'),
(34103, 'no', 'common', 'Invalid Url', 'Ugyldig Url', '2025-11-21 01:20:43'),
(34104, 'no', 'common', 'Invalid value', 'Ugyldig Verdi', '2025-11-21 01:20:43'),
(34105, 'no', 'common', 'Keyword', 'Nøkkelord', '2025-11-21 01:20:43'),
(34106, 'no', 'common', 'Keywords', 'Nøkkelord', '2025-11-21 01:20:43'),
(34107, 'no', 'common', 'Keywords Count', 'Nøkkelord Antall', '2025-11-21 01:20:43'),
(34108, 'no', 'common', 'lang', 'Språk', '2025-11-21 01:20:43'),
(34109, 'no', 'common', 'Link', 'Lenke', '2025-11-21 01:20:43'),
(34110, 'no', 'common', 'Logout', 'Logg ut', '2025-11-21 01:20:43'),
(34111, 'no', 'common', 'Metric', 'Metric', '2025-11-21 01:20:43'),
(34112, 'no', 'common', 'MOZ Rank', 'Moz-rang', '2025-11-21 01:20:43'),
(34113, 'no', 'common', 'My Account', 'Min konto', '2025-11-21 01:20:43'),
(34114, 'no', 'Common', 'Name', 'Navn', '2025-11-21 01:20:43'),
(34115, 'no', 'common', 'New User Type', 'New Bruker Type', '2025-11-21 01:20:43'),
(34116, 'no', 'common', 'No', 'Nei', '2025-11-21 01:20:43'),
(34117, 'no', 'common', 'No Keywords Found', 'No Nøkkelord Found', '2025-11-21 01:20:43'),
(34118, 'no', 'common', 'No Records Found', 'No Records Found', '2025-11-21 01:20:43'),
(34119, 'no', 'common', 'noactivetools', 'No Aktiv SEO-verktøy Found!', '2025-11-21 01:20:43'),
(34120, 'no', 'common', 'nowebsites', 'No Nettsteder Found', '2025-11-21 01:20:43'),
(34121, 'no', 'common', 'Number', 'Nummer', '2025-11-21 01:20:43'),
(34122, 'no', 'common', 'Page Authority', 'Sideautoritet', '2025-11-21 01:20:43'),
(34123, 'no', 'common', 'Pagerank', 'Pagerank', '2025-11-21 01:20:43'),
(34124, 'no', 'common', 'password632', 'The Passord string should have a length between 6 and 32', '2025-11-21 01:20:43'),
(34125, 'no', 'common', 'passwordnotmatch', 'The passwords do not match', '2025-11-21 01:20:43'),
(34126, 'no', 'common', 'Period', 'Period', '2025-11-21 01:20:43'),
(34127, 'no', 'common', 'Plugins', 'Tillegg', '2025-11-21 01:20:43'),
(34128, 'no', 'common', 'Powered by', 'Powered by', '2025-11-21 01:20:43'),
(34129, 'no', 'common', 'Price', 'Price', '2025-11-21 01:20:43'),
(34130, 'no', 'common', 'Pricing', 'Pricing', '2025-11-21 01:20:43'),
(34131, 'no', 'common', 'Priority', 'Priority', '2025-11-21 01:20:43'),
(34132, 'no', 'common', 'Profile', 'Profil', '2025-11-21 01:20:43'),
(34133, 'no', 'common', 'Range', 'Range', '2025-11-21 01:20:43'),
(34134, 'no', 'common', 'Rank', 'Rang', '2025-11-21 01:20:43'),
(34135, 'no', 'common', 'Rankings', 'Rangeringer', '2025-11-21 01:20:43'),
(34136, 'no', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification Mislyktes', '2025-11-21 01:20:43'),
(34137, 'no', 'common', 'Reports', 'Rapporter', '2025-11-21 01:20:43'),
(34138, 'no', 'common', 'Results', 'Resultater', '2025-11-21 01:20:43'),
(34076, 'no', 'common', 'Debug', 'Debug', '2025-11-21 01:20:43'),
(34077, 'no', 'common', 'Delete', 'Slett', '2025-11-21 01:20:43'),
(34078, 'no', 'common', 'Details', 'Detaljer', '2025-11-21 01:20:43'),
(34079, 'no', 'common', 'Directory', 'Katalog', '2025-11-21 01:20:43'),
(34080, 'no', 'common', 'Domain Authority', 'Domeneautoritet', '2025-11-21 01:20:43'),
(34081, 'no', 'common', 'Donate', 'Donate', '2025-11-21 01:20:43'),
(34082, 'no', 'common', 'Edit', 'Rediger', '2025-11-21 01:20:43'),
(34083, 'no', 'common', 'Edit User Type', 'Rediger Bruker Type', '2025-11-21 01:20:43'),
(34084, 'no', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2025-11-21 01:20:43'),
(34085, 'no', 'common', 'entrynotvalid', 'The entry entered doesn''t seem to be Gyldig', '2025-11-21 01:20:43'),
(34086, 'no', 'common', 'Errors', 'Errors', '2025-11-21 01:20:43'),
(34087, 'no', 'common', 'failed', 'Mislyktes', '2025-11-21 01:20:43'),
(34088, 'no', 'common', 'forum', 'Forum', '2025-11-21 01:20:43'),
(34089, 'no', 'common', 'Found', 'Found', '2025-11-21 01:20:43'),
(34090, 'no', 'common', 'General', 'General', '2025-11-21 01:20:43'),
(34091, 'no', 'common', 'Google Pagerank', 'Google Pagerank', '2025-11-21 01:20:43'),
(34092, 'no', 'common', 'Hello', 'Hello', '2025-11-21 01:20:43'),
(34093, 'no', 'common', 'help', 'Hjelp', '2025-11-21 01:20:43'),
(34063, 'no', 'common', 'Admin Panel', 'Administrator Panel', '2025-11-21 01:20:43'),
(34064, 'no', 'common', 'Alexa Rank', 'Alexa-rang', '2025-11-21 01:20:43'),
(34065, 'no', 'common', 'All', 'Alle', '2025-11-21 01:20:43'),
(34066, 'no', 'common', 'API Token', 'API Token', '2025-11-21 01:20:43'),
(34067, 'no', 'common', 'Blog', 'Blog', '2025-11-21 01:20:43'),
(34068, 'no', 'common', 'Category', 'Kategori', '2025-11-21 01:20:43'),
(34069, 'no', 'common', 'Checked', 'Checked', '2025-11-21 01:20:43'),
(34070, 'no', 'common', 'contact', 'Kontakt', '2025-11-21 01:20:43'),
(34071, 'no', 'common', 'copyright', 'Copyright © [year] www.seopanel.org All rights reserved', '2025-11-21 01:20:43'),
(34072, 'no', 'common', 'Country', 'Land', '2025-11-21 01:20:43'),
(34073, 'no', 'common', 'Crawl Meta Data', 'Crawl Meta Data', '2025-11-21 01:20:43'),
(34074, 'no', 'common', 'Dashboard', 'Dashbord', '2025-11-21 01:20:43'),
(34075, 'no', 'common', 'Date', 'Dato', '2025-11-21 01:20:43'),
(34062, 'no', 'common', 'Active', 'Aktiv', '2025-11-21 01:20:43'),
(34061, 'no', 'common', 'Activate', 'Activate', '2025-11-21 01:20:43'),
(34060, 'no', 'common', 'Action', 'Action', '2025-11-21 01:20:43'),
(34059, 'no', 'button', 'Submit', 'Send inn', '2025-11-21 01:20:43'),
(34058, 'no', 'button', 'Skip', 'Skip', '2025-11-21 01:20:43'),
(34056, 'no', 'button', 'Show Details', 'Show Detaljer', '2025-11-21 01:20:43'),
(34057, 'no', 'button', 'Show Records', 'Show Records', '2025-11-21 01:20:43'),
(34054, 'no', 'button', 'Reload', 'Reload', '2025-11-21 01:20:43'),
(34055, 'no', 'button', 'Search', 'Søk', '2025-11-21 01:20:43'),
(34053, 'no', 'button', 'Proceed', 'Proceed', '2025-11-21 01:20:43'),
(34051, 'no', 'button', 'Cancel', 'Avbryt', '2025-11-21 01:20:43'),
(34052, 'no', 'button', 'Check Status', 'Check Status', '2025-11-21 01:20:43'),
(34050, 'no', 'blog', 'Older Posts', 'Older Posts', '2025-11-21 01:20:43'),
(34049, 'no', 'blog', 'NothingFound_text2', 'Sorry, but nothing matched your Søk criteria. Vennligst prøv igjen with some different Nøkkelord.', '2025-11-21 01:20:43'),
(34048, 'no', 'blog', 'Nothing Found', 'Nothing Found', '2025-11-21 01:20:43'),
(34047, 'no', 'blog', 'Newer Posts', 'Newer Posts', '2025-11-21 01:20:43'),
(34046, 'no', 'backlink', 'Saved backlink results of', 'Saved Tilbakekobling Resultater of', '2025-11-21 01:20:43'),
(34044, 'no', 'backlink', 'Domain Backlink Count', 'Domain Tilbakekobling Antall', '2025-11-21 01:20:43'),
(34045, 'no', 'backlink', 'Domain Backlinks', 'Domain Tilbakekoblinger', '2025-11-21 01:20:43'),
(34042, 'no', 'backlink', 'Backlink Count', 'Tilbakekobling Antall', '2025-11-21 01:20:43'),
(34043, 'no', 'backlink', 'clickproceedbacklink', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Tilbakekoblinger.', '2025-11-21 01:20:43'),
(34041, 'no', 'api', 'API Url', 'API Url', '2025-11-21 01:20:43'),
(34040, 'no', 'api', 'API Guide', 'API Guide', '2025-11-21 01:20:43'),
(34039, 'no', 'analytics', 'view_id_not_found_error', 'Feil: Analyse Vis ID is not set for Nettsted. Rediger nettsted and Oppdater Vis ID.', '2025-11-21 01:20:43'),
(34038, 'no', 'analytics', 'Users', 'Brukere', '2025-11-21 01:20:43'),
(34036, 'no', 'analytics', 'New Users', 'New Brukere', '2025-11-21 01:20:43'),
(34037, 'no', 'analytics', 'Sessions', 'Økter', '2025-11-21 01:20:43'),
(34034, 'no', 'analytics', 'Bounce Rate', 'Avvisningsrate', '2025-11-21 01:20:43'),
(34035, 'no', 'analytics', 'Goal Completions', 'Goal Completions', '2025-11-21 01:20:43'),
(34033, 'no', 'analytics', 'Avg. Session Duration', 'Avg. Session Duration', '2025-11-21 01:20:43'),
(35463, 'sq', 'siteauditor', 'Crawled Pages', 'Crawled Faqet', '2025-11-21 01:21:01'),
(35462, 'sq', 'siteauditor', 'Crawled', 'Crawled', '2025-11-21 01:21:01'),
(35461, 'sq', 'siteauditor', 'Completed project execution', 'I përfunduar Projekti execution', '2025-11-21 01:21:01'),
(35459, 'sq', 'siteauditor', 'Check Score', 'Check Rezultati', '2025-11-21 01:21:01'),
(35460, 'sq', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will Rritje the execution Koha of a Projekti', '2025-11-21 01:21:01'),
(35458, 'sq', 'siteauditor', 'Check pages indexed or not', 'Check Faqet indexed or not', '2025-11-21 01:21:01'),
(35457, 'sq', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of Faqet', '2025-11-21 01:21:01'),
(35456, 'sq', 'siteauditor', 'Check google pagerank of pages', 'Check Google pagerank of Faqet', '2025-11-21 01:21:01'),
(35455, 'sq', 'siteauditor', 'Check broken links in a page', 'Check broken links in a Faqja', '2025-11-21 01:21:01'),
(35454, 'sq', 'siteauditor', 'Check backlinks of pages', 'Check Lidhje mbrapsht of Faqet', '2025-11-21 01:21:01'),
(35453, 'sq', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded from sitemap', '2025-11-21 01:21:01'),
(35452, 'sq', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded from Raportet', '2025-11-21 01:21:01'),
(35451, 'sq', 'siteauditor', 'Anchor', 'Anchor', '2025-11-21 01:21:01'),
(35450, 'sq', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up Deri në datë.', '2025-11-21 01:21:01'),
(35449, 'sq', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up Deri në datë. <br>Please Shkarko new Versioni', '2025-11-21 01:21:01'),
(35448, 'sq', 'settings', 'Verify connection', 'Verify connection', '2025-11-21 01:21:01'),
(35447, 'sq', 'settings', 'syssettingssaved', 'Cilësimet e sistemit saved successfully!', '2025-11-21 01:21:01'),
(35446, 'sq', 'settings', 'SP_USER_REGISTRATION', 'Përdoruesi registration interface', '2025-11-21 01:21:01'),
(35445, 'sq', 'settings', 'SP_USER_GEN_REPORT', 'Allow Përdoruesi to generate Raportet', '2025-11-21 01:21:01'),
(35444, 'sq', 'settings', 'SP_USER_AGENT', 'Përdoruesi agent', '2025-11-21 01:21:01'),
(35443, 'sq', 'settings', 'SP_TITLE', 'Seo Panel Titulli', '2025-11-21 01:21:01'),
(35442, 'sq', 'settings', 'SP_TIME_ZONE', 'Koha Zone', '2025-11-21 01:21:01'),
(35441, 'sq', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Minimumi Allowed Reporting Interval', '2025-11-21 01:21:01'),
(35440, 'sq', 'settings', 'SP_SMTP_USERNAME', 'SMTP Emri i përdoruesit', '2025-11-21 01:21:01'),
(35439, 'sq', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2025-11-21 01:21:01'),
(35438, 'sq', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Fjalëkalimi', '2025-11-21 01:21:01'),
(35437, 'sq', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2025-11-21 01:21:01'),
(35436, 'sq', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2025-11-21 01:21:01'),
(35435, 'sq', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2025-11-21 01:21:01'),
(35434, 'sq', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send I personalizuar header with curl request', '2025-11-21 01:21:01'),
(35433, 'sq', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of Email-i Njoftimet for Raportet', '2025-11-21 01:21:01'),
(35432, 'sq', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Crawl relative links in a Faqja', '2025-11-21 01:21:01'),
(35431, 'sq', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2025-11-21 01:21:01'),
(35430, 'sq', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2025-11-21 01:21:01'),
(35429, 'sq', 'settings', 'SP_PAGINGNO', 'Numri of entries per Faqja', '2025-11-21 01:21:01');
INSERT INTO `texts` VALUES
(35428, 'sq', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Numri of Fjalë kyçe needs to be checked in each cron execution', '2025-11-21 01:21:01'),
(35427, 'sq', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2025-11-21 01:21:01'),
(35426, 'sq', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2025-11-21 01:21:01'),
(35425, 'sq', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2025-11-21 01:21:01'),
(35424, 'sq', 'settings', 'SP_KEYWORDS', 'Seo Panel Fjalë kyçe', '2025-11-21 01:21:01'),
(35423, 'sq', 'settings', 'SP_HOTLINKING', 'Image hotlink protection I aktivizuar', '2025-11-21 01:21:01'),
(35422, 'sq', 'settings', 'SP_GOOGLE_API_KEY', 'Google Çelësi API', '2025-11-21 01:21:01'),
(35421, 'sq', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2025-11-21 01:21:01'),
(35420, 'sq', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2025-11-21 01:21:01'),
(35419, 'sq', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google Analitika Tracking Code', '2025-11-21 01:21:01'),
(35418, 'sq', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2025-11-21 01:21:01'),
(35417, 'sq', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable Proxy for Google API', '2025-11-21 01:21:01'),
(35416, 'sq', 'settings', 'SP_ENABLE_PROXY', 'Enable Proxy', '2025-11-21 01:21:01'),
(35415, 'sq', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2025-11-21 01:21:01'),
(35414, 'sq', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for Lidhje mbrapsht and Kontrollues ngopjeje', '2025-11-21 01:21:01'),
(35413, 'sq', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2025-11-21 01:21:01'),
(35412, 'sq', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2025-11-21 01:21:01'),
(35411, 'sq', 'settings', 'SP_DFS_API_PASSWORD', 'API Fjalëkalimi', '2025-11-21 01:21:01'),
(35410, 'sq', 'settings', 'SP_DFS_API_LOGIN', 'API Hyrje', '2025-11-21 01:21:01'),
(35409, 'sq', 'settings', 'SP_DESCRIPTION', 'Seo Panel Përshkrimi', '2025-11-21 01:21:01'),
(35408, 'sq', 'settings', 'SP_DEFAULTLANG', 'Parazgjedhur Gjuha', '2025-11-21 01:21:01'),
(35407, 'sq', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider crawl(seconds)', '2025-11-21 01:21:01'),
(35406, 'sq', 'settings', 'SP_COMPANY_NAME', 'Company Emri', '2025-11-21 01:21:01'),
(35405, 'sq', 'settings', 'SP_API_KEY', 'Seo Panel Çelësi API', '2025-11-21 01:21:01'),
(35404, 'sq', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow Përdoruesit to Orari Raporti', '2025-11-21 01:21:01'),
(35403, 'sq', 'settings', 'seopanel_title', 'Seo Panel: World''s Parë open Burimi seo control panel for managing multiple web sites', '2025-11-21 01:21:01'),
(35402, 'sq', 'settings', 'seopanel_description', 'A complete free control panel for managing Motor kërkimi optimization of your Faqet. It containing lots of hot Mjete SEO to Rritje and track the performace your Faqet. Its an open Burimi software and also you can develop your own seo Shtojcat for seo panel.', '2025-11-21 01:21:01'),
(35401, 'sq', 'settings', 'Send Email', 'Send Email-i', '2025-11-21 01:21:01'),
(35400, 'sq', 'settings', 'SA_MAX_NO_PAGES', 'Maksimumi Numri of Faqet allowed per Faqja', '2025-11-21 01:21:01'),
(35399, 'sq', 'settings', 'SA_CRAWL_DELAY_TIME', 'Auditues faqeje crawl delay between each Faqet', '2025-11-21 01:21:01'),
(35398, 'sq', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate Proxy When Crawling Dështoi', '2025-11-21 01:21:01'),
(35397, 'sq', 'settings', 'Please update MOZ settings to get complete results', 'Please Përditëso MOZ Cilësimet to get complete Rezultatet', '2025-11-21 01:21:01'),
(35396, 'sq', 'settings', 'Please update google settings to get the results', 'Please Përditëso Google Cilësimet to get the Rezultatet', '2025-11-21 01:21:01'),
(35395, 'sq', 'settings', 'getallpluginfree', 'Also get all <b>Shtojcat</b> we develop for <b>Free!</b>', '2025-11-21 01:21:01'),
(35394, 'sq', 'settings', 'entersmtpdetails', 'Ju lutem shkruani SMTP mail Konfigurimi', '2025-11-21 01:21:01'),
(35393, 'sq', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP Proxy Tunnel', '2025-11-21 01:21:01'),
(35392, 'sq', 'settings', 'click-to-get-moz-account', 'Klikoni këtu to get MOZ Llogaria', '2025-11-21 01:21:01'),
(35391, 'sq', 'settings', 'click-to-get-google-api-key', 'Klikoni këtu to get Google Çelësi API', '2025-11-21 01:21:01'),
(35390, 'sq', 'settings', 'click-to-get-google-api-client-id', 'Klikoni këtu to get Google API Client Id', '2025-11-21 01:21:01'),
(35389, 'sq', 'settings', 'click-to-get-dataforseo-account', 'Klikoni këtu to get Free DataForSEO Llogaria', '2025-11-21 01:21:01'),
(35388, 'sq', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Donate $100</b> and become a <b>sponsor</b> of Seo Panel.', '2025-11-21 01:21:01'),
(35387, 'sq', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another Proxy When Crawling Dështoi', '2025-11-21 01:21:01'),
(35385, 'sq', 'settings', 'Check for Updates', 'Check for Updates', '2025-11-21 01:21:01'),
(35386, 'sq', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Maksimumi Numri of proxies used in single execution', '2025-11-21 01:21:01'),
(35384, 'sq', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2025-11-21 01:21:01'),
(35383, 'sq', 'settings', 'API_SECRET', 'API Secret', '2025-11-21 01:21:01'),
(35382, 'sq', 'settings', 'allsettingssaved', 'All Cilësimet saved successfully!', '2025-11-21 01:21:01'),
(35381, 'sq', 'seotools', 'Website Search Summary', 'Faqja Kërko Summary', '2025-11-21 01:21:01'),
(35380, 'sq', 'seotools', 'Website Search Reports', 'Faqja Kërko Raportet', '2025-11-21 01:21:01'),
(35379, 'sq', 'seotools', 'Website Analytics Summary', 'Faqja Analitika Summary', '2025-11-21 01:21:01'),
(35378, 'sq', 'seotools', 'webmaster-tools', 'Webmaster Mjetet', '2025-11-21 01:21:01'),
(35376, 'sq', 'seotools', 'User Access', 'Përdoruesi Access', '2025-11-21 01:21:01'),
(35377, 'sq', 'seotools', 'web-analytics', 'Faqja Analitika', '2025-11-21 01:21:01'),
(35375, 'sq', 'seotools', 'Submission Reports', 'Submission Raportet', '2025-11-21 01:21:01'),
(35374, 'sq', 'seotools', 'Social Media Report Summary', 'Media sociale Raporti Summary', '2025-11-21 01:21:01'),
(35373, 'sq', 'seotools', 'Social Media Links', 'Media sociale Links', '2025-11-21 01:21:01'),
(35372, 'sq', 'seotools', 'sm-checker', 'Media sociale Checker', '2025-11-21 01:21:01'),
(35370, 'sq', 'seotools', 'sitemap-generator', 'Sitemap Generator', '2025-11-21 01:21:01'),
(35371, 'sq', 'seotools', 'Skipped Directories', 'Skipped Directories', '2025-11-21 01:21:01'),
(35368, 'sq', 'seotools', 'site-auditor', 'Auditues faqeje', '2025-11-21 01:21:01'),
(35369, 'sq', 'seotools', 'Sitemap Reports Summary', 'Sitemap Raportet Summary', '2025-11-21 01:21:01'),
(35367, 'sq', 'seotools', 'saturation-checker', 'Ngopja e motorit të kërkimit', '2025-11-21 01:21:01'),
(35366, 'sq', 'seotools', 'Saturation Reports', 'Saturation Raportet', '2025-11-21 01:21:01'),
(35365, 'sq', 'seotools', 'review-manager', 'Rishikimi Manager', '2025-11-21 01:21:01'),
(35364, 'sq', 'seotools', 'Review Report Summary', 'Rishikimi Raporti Summary', '2025-11-21 01:21:01'),
(35363, 'sq', 'seotools', 'Review Links', 'Rishikimi Links', '2025-11-21 01:21:01'),
(35362, 'sq', 'seotools', 'rank-checker', 'Kontrollues renditjeje', '2025-11-21 01:21:01'),
(35361, 'sq', 'seotools', 'Rank Reports', 'Renditja Raportet', '2025-11-21 01:21:01'),
(35359, 'sq', 'seotools', 'Quick Rank Checker', 'Quick Kontrollues renditjeje', '2025-11-21 01:21:01'),
(35360, 'sq', 'seotools', 'Quick Saturation Checker', 'Quick Kontrollues ngopjeje', '2025-11-21 01:21:01'),
(35358, 'sq', 'seotools', 'Quick Position Checker', 'Quick Pozicioni Checker', '2025-11-21 01:21:01'),
(35357, 'sq', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed Checker', '2025-11-21 01:21:01'),
(35356, 'sq', 'seotools', 'Quick Checker', 'Quick Checker', '2025-11-21 01:21:01'),
(35355, 'sq', 'seotools', 'Quick Backlinks Checker', 'Quick Lidhje mbrapsht Checker', '2025-11-21 01:21:01'),
(35354, 'sq', 'seotools', 'PageSpeed Reports', 'PageSpeed Raportet', '2025-11-21 01:21:01'),
(35353, 'sq', 'seotools', 'pagespeed', 'PageSpeed Insights', '2025-11-21 01:21:01'),
(35351, 'sq', 'seotools', 'Keywords Manager', 'Fjalë kyçe Manager', '2025-11-21 01:21:01'),
(35352, 'sq', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for Raportet generation.\r\nThis action may cause captcha in Motor kërkimi Rezultatet.', '2025-11-21 01:21:01'),
(35350, 'sq', 'seotools', 'keyword-position-checker', 'Pozicioni i fjalës kyçe Checker', '2025-11-21 01:21:01'),
(35349, 'sq', 'seotools', 'Keyword Search Summary', 'Fjalë kyçe Kërko Summary', '2025-11-21 01:21:01'),
(35348, 'sq', 'seotools', 'Keyword Search Reports', 'Fjalë kyçe Kërko Raportet', '2025-11-21 01:21:01'),
(35346, 'sq', 'seotools', 'Import Project Links', 'Importo Projekti Links', '2025-11-21 01:21:01'),
(35347, 'sq', 'seotools', 'Keyword Position Summary', 'Pozicioni i fjalës kyçe Summary', '2025-11-21 01:21:01'),
(35345, 'sq', 'seotools', 'Graphical Reports', 'Graphical Raportet', '2025-11-21 01:21:01'),
(35343, 'sq', 'seotools', 'Google Sitemap Generator', 'Google Sitemap Generator', '2025-11-21 01:21:01'),
(35344, 'sq', 'seotools', 'Graphical Position Reports', 'Graphical Pozicioni Raportet', '2025-11-21 01:21:01'),
(35341, 'sq', 'seotools', 'Generate Reports', 'Generate Raportet', '2025-11-21 01:21:01'),
(35342, 'sq', 'seotools', 'Generate Saturation Reports', 'Generate Saturation Raportet', '2025-11-21 01:21:01'),
(35339, 'sq', 'seotools', 'Generate Keyword Reports', 'Generate Fjalë kyçe Raportet', '2025-11-21 01:21:01'),
(35340, 'sq', 'seotools', 'Generate Rank Reports', 'Generate Renditja Raportet', '2025-11-21 01:21:01'),
(35337, 'sq', 'seotools', 'Featured Submission', 'Featured Submission', '2025-11-21 01:21:01'),
(35338, 'sq', 'seotools', 'Generate Backlinks Reports', 'Generate Lidhje mbrapsht Raportet', '2025-11-21 01:21:01'),
(35336, 'sq', 'seotools', 'Edit Seo Tool', 'Ndrysho Seo Tool', '2025-11-21 01:21:01'),
(35335, 'sq', 'seotools', 'directory-submission', 'Direktoria Submission', '2025-11-21 01:21:01'),
(35333, 'sq', 'seotools', 'Detailed Position Reports', 'Detailed Pozicioni Raportet', '2025-11-21 01:21:01'),
(35334, 'sq', 'seotools', 'Detailed Reports', 'Detailed Raportet', '2025-11-21 01:21:01'),
(35331, 'sq', 'seotools', 'clickgeneratereports', 'Click on <b>Proceed</b> to generate Raportet', '2025-11-21 01:21:01'),
(35332, 'sq', 'seotools', 'clickproceedaction', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Rezultatet.', '2025-11-21 01:21:01'),
(35330, 'sq', 'seotools', 'Check Submission Status', 'Check Submission Statusi', '2025-11-21 01:21:01'),
(35329, 'sq', 'seotools', 'Backlinks Reports', 'Lidhje mbrapsht Raportet', '2025-11-21 01:21:01'),
(35328, 'sq', 'seotools', 'backlink-checker', 'Lidhje mbrapsht Checker', '2025-11-21 01:21:01'),
(35318, 'sq', 'saturation', 'GenerateSaturationReports', 'Generate Ngopja e motorit të kërkimit Raportet', '2025-11-21 01:21:01'),
(35319, 'sq', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick Ngopja e motorit të kërkimit Checker', '2025-11-21 01:21:01'),
(35320, 'sq', 'saturation', 'Saved Search Engine Saturation results of', 'Saved Ngopja e motorit të kërkimit Rezultatet of', '2025-11-21 01:21:01'),
(35321, 'sq', 'saturation', 'Search Engine Saturation Reports', 'Ngopja e motorit të kërkimit Raportet', '2025-11-21 01:21:01'),
(35322, 'sq', 'searchengine', 'max_results', 'Maksimumi Numri of Rezultatet', '2025-11-21 01:21:01'),
(35323, 'sq', 'searchengine', 'no_of_results_page', 'Numri of Rezultatet per Faqja', '2025-11-21 01:21:01'),
(35324, 'sq', 'seotools', 'Auditor Projects', 'Auditor Projektet', '2025-11-21 01:21:01'),
(35325, 'sq', 'seotools', 'Auditor Reports', 'Auditor Raportet', '2025-11-21 01:21:01'),
(35326, 'sq', 'seotools', 'Auditor Settings', 'Auditor Cilësimet', '2025-11-21 01:21:01'),
(35327, 'sq', 'seotools', 'Automatic Submission', 'Automatik Submission', '2025-11-21 01:21:01'),
(35286, 'sq', 'QuickWebProxy', 'Server list is empty', 'Server list is empty', '2025-11-21 01:21:01'),
(35287, 'sq', 'QuickWebProxy', 'Url blocked in the web proxy', 'Url blocked in the web proxy', '2025-11-21 01:21:01'),
(35288, 'sq', 'QuickWebProxy', 'Web Proxy', 'Web Proxy', '2025-11-21 01:21:01'),
(35289, 'sq', 'QuickWebProxy', 'Web Server', 'Web Server', '2025-11-21 01:21:01'),
(35290, 'sq', 'rank', 'enterurlproceed', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Google and Renditja Alexa.', '2025-11-21 01:21:01'),
(35291, 'sq', 'rank', 'Google and Alexa Rank Reports', 'Google and Renditja Alexa Raportet', '2025-11-21 01:21:01'),
(35292, 'sq', 'rank', 'Saved rank results of', 'Saved Renditja Rezultatet of', '2025-11-21 01:21:01'),
(35293, 'sq', 'register', 'Account Information', 'Llogaria Informacioni', '2025-11-21 01:21:01'),
(35294, 'sq', 'register', 'Already have account', 'Already have an Llogaria?', '2025-11-21 01:21:01'),
(35295, 'sq', 'register', 'First name placeholder', 'Parë Emri', '2025-11-21 01:21:01'),
(35296, 'sq', 'register', 'Last name placeholder', 'Fundit Emri', '2025-11-21 01:21:01'),
(35297, 'sq', 'register', 'Personal Information', 'Personal Informacioni', '2025-11-21 01:21:01'),
(35298, 'sq', 'register', 'Register subtitle', 'Join us Sot and start optimizing your SEO', '2025-11-21 01:21:01'),
(35299, 'sq', 'register', 'Registration', 'Registration', '2025-11-21 01:21:01'),
(35300, 'sq', 'register', 'Subscription Details', 'Subscription Detajet', '2025-11-21 01:21:01'),
(35301, 'sq', 'register', 'user_confirm_content_1', 'Internal Gabim occured while Duke u përpunuar Konfirmo request', '2025-11-21 01:21:01'),
(35302, 'sq', 'register', 'user_confirm_mail_cont_1', 'Thank you for your registration with', '2025-11-21 01:21:01'),
(35303, 'sq', 'register', 'user_confirm_mail_cont_2', 'Please click on the following Lidhje to Konfirmo registration', '2025-11-21 01:21:01'),
(35304, 'sq', 'report', '2 Days', '2 Days', '2025-11-21 01:21:01'),
(35305, 'sq', 'report', 'Email notification', 'Email-i Njoftimi', '2025-11-21 01:21:01'),
(35306, 'sq', 'report', 'keywordnumbercheckedcronnote', 'Shënim: Parazgjedhur 0 means all Fjalë kyçe should be checked', '2025-11-21 01:21:01'),
(35307, 'sq', 'report', 'Next report generation time', 'Tjetër Raporti generation Koha', '2025-11-21 01:21:01'),
(35308, 'sq', 'report', 'Reports generation interval', 'Raportet generation interval', '2025-11-21 01:21:01'),
(35309, 'sq', 'report', 'reportsettingssaved', 'Raporti Cilësimet saved successfully!', '2025-11-21 01:21:01'),
(35310, 'sq', 'report', 'sheduledsuccessfully', 'I planifikuar Raporti generation successfully!', '2025-11-21 01:21:01'),
(35311, 'sq', 'reports', 'report_email_body_text1', 'Your Raportet generated successfully in seo panel. Please check the attached Raportet.', '2025-11-21 01:21:01'),
(35312, 'sq', 'reports', 'report_email_body_text2', 'If above Raportet are not Pastro, Please [LOGIN_LINK] to Shiko the Raportet directly from your Llogaria.', '2025-11-21 01:21:01'),
(35313, 'sq', 'reports', 'report_email_subject', 'Your SEO Raportet generated successfully', '2025-11-21 01:21:01'),
(35314, 'sq', 'reports', 'Reports Generated Successfully', 'Raportet Generated Successfully', '2025-11-21 01:21:01'),
(35315, 'sq', 'review', 'Edit Review Link', 'Ndrysho Rishikimi Lidhje', '2025-11-21 01:21:01'),
(35316, 'sq', 'review', 'New Review Link', 'New Rishikimi Lidhje', '2025-11-21 01:21:01'),
(35317, 'sq', 'saturation', 'clickproceedsaturation', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Ngopja e motorit të kërkimit Rezultatet', '2025-11-21 01:21:01'),
(35279, 'sq', 'proxy', 'Request Count', 'Request Numri', '2025-11-21 01:21:01'),
(35280, 'sq', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2025-11-21 01:21:01'),
(35281, 'sq', 'QuickWebProxy', 'Please enter a valid url', 'Ju lutem shkruani a E vlefshme url', '2025-11-21 01:21:01'),
(35282, 'sq', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow Përdoruesi to access the web proxy', '2025-11-21 01:21:01'),
(35283, 'sq', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a proxy', '2025-11-21 01:21:01'),
(35284, 'sq', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web Proxy', '2025-11-21 01:21:01'),
(35285, 'sq', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web proxy.', '2025-11-21 01:21:01'),
(35278, 'sq', 'proxy', 'proxysyntax', 'Proxy Hostname, Proxy Port, Proxy Emri i përdoruesit, Proxy Fjalëkalimi', '2025-11-21 01:21:01'),
(35277, 'sq', 'proxy', 'Proxyalreadyexist', 'Proxy already exist!', '2025-11-21 01:21:01'),
(35276, 'sq', 'proxy', 'Proxy Username', 'Proxy Emri i përdoruesit', '2025-11-21 01:21:01'),
(35275, 'sq', 'proxy', 'Proxy Password', 'Proxy Fjalëkalimi', '2025-11-21 01:21:01'),
(35274, 'sq', 'proxy', 'enterproxynote', 'Enter proxy one per line in following Formati.', '2025-11-21 01:21:01'),
(35273, 'sq', 'proxy', 'Edit Proxy', 'Ndrysho Proxy', '2025-11-21 01:21:01'),
(35272, 'sq', 'proxy', 'click-to-get-proxy', 'Klikoni këtu to get proxy', '2025-11-21 01:21:01'),
(35271, 'sq', 'plugin', 'Seo Plugin Details', 'Seo Plugin Detajet', '2025-11-21 01:21:01'),
(35270, 'sq', 'plugin', 'Plugin Name', 'Plugin Emri', '2025-11-21 01:21:01'),
(35269, 'sq', 'plugin', 'Edit Seo Plugin', 'Ndrysho Seo Plugin', '2025-11-21 01:21:01'),
(35268, 'sq', 'plugin', 'Download Seo Panel Plugins', 'Shkarko Seo Panel Shtojcat', '2025-11-21 01:21:01'),
(35267, 'sq', 'panel', 'Website Manager', 'Faqja Manager', '2025-11-21 01:21:01'),
(35266, 'sq', 'panel', 'Website Access Manager', 'Faqja Access Manager', '2025-11-21 01:21:01'),
(35265, 'sq', 'panel', 'Valid', 'E vlefshme', '2025-11-21 01:21:01'),
(35264, 'sq', 'panel', 'User Type Settings', 'Përdoruesi Lloji Cilësimet', '2025-11-21 01:21:01'),
(35263, 'sq', 'panel', 'User Type Manager', 'Përdoruesi Lloji Manager', '2025-11-21 01:21:01'),
(35262, 'sq', 'panel', 'User Manager', 'Përdoruesi Manager', '2025-11-21 01:21:01'),
(35261, 'sq', 'panel', 'Themes Manager', 'Themes Manager', '2025-11-21 01:21:01'),
(35260, 'sq', 'panel', 'Test Email Settings', 'Test Cilësimet e Email-i-it', '2025-11-21 01:21:01'),
(35259, 'sq', 'panel', 'System Settings', 'Cilësimet e sistemit', '2025-11-21 01:21:01'),
(35258, 'sq', 'panel', 'Sync Search Engines', 'Sync Motorët e kërkimit', '2025-11-21 01:21:01'),
(35257, 'sq', 'panel', 'Submit Sitemap', 'Dërgo Sitemap', '2025-11-21 01:21:01'),
(35255, 'sq', 'panel', 'Settings', 'Cilësimet', '2025-11-21 01:21:01'),
(35256, 'sq', 'panel', 'Sitemaps', 'Sitemaps', '2025-11-21 01:21:01'),
(35254, 'sq', 'panel', 'Seo Tools Manager', 'Mjete SEO Manager', '2025-11-21 01:21:01'),
(35253, 'sq', 'panel', 'Seo Plugins Manager', 'Seo Shtojcat Manager', '2025-11-21 01:21:01'),
(35252, 'sq', 'panel', 'Search Engine Manager', 'Motor kërkimi Manager', '2025-11-21 01:21:01'),
(35251, 'sq', 'panel', 'Schedule Reports', 'Orari Raportet', '2025-11-21 01:21:01'),
(35250, 'sq', 'panel', 'Reports Manager', 'Raportet Manager', '2025-11-21 01:21:01'),
(35249, 'sq', 'panel', 'Report Settings', 'Raporti Cilësimet', '2025-11-21 01:21:01'),
(35248, 'sq', 'panel', 'Report Generation Manager', 'Raporti Generation Manager', '2025-11-21 01:21:01'),
(35247, 'sq', 'panel', 'Report Generation Logs', 'Raporti Generation Logs', '2025-11-21 01:21:01'),
(35246, 'sq', 'panel', 'Proxy Settings', 'Proxy Cilësimet', '2025-11-21 01:21:01'),
(35245, 'sq', 'panel', 'Proxy Perfomance', 'Proxy Perfomance', '2025-11-21 01:21:01'),
(35244, 'sq', 'panel', 'Proxy Manager', 'Proxy Manager', '2025-11-21 01:21:01'),
(35243, 'sq', 'panel', 'Project Summary', 'Projekti Summary', '2025-11-21 01:21:01'),
(35242, 'sq', 'panel', 'Project Manager', 'Projekti Manager', '2025-11-21 01:21:01'),
(35241, 'sq', 'panel', 'New Website', 'New Faqja', '2025-11-21 01:21:01'),
(35240, 'sq', 'panel', 'New User Type', 'New Përdoruesi Lloji', '2025-11-21 01:21:01'),
(35239, 'sq', 'panel', 'New User', 'New Përdoruesi', '2025-11-21 01:21:01'),
(35238, 'sq', 'panel', 'New Proxy', 'New Proxy', '2025-11-21 01:21:01'),
(35237, 'sq', 'panel', 'New Project', 'New Projekti', '2025-11-21 01:21:01'),
(35236, 'sq', 'panel', 'My Profile', 'My Profili', '2025-11-21 01:21:01'),
(35235, 'sq', 'panel', 'MOZ Settings', 'MOZ Cilësimet', '2025-11-21 01:21:01'),
(35234, 'sq', 'panel', 'Mail Settings', 'Mail Cilësimet', '2025-11-21 01:21:01'),
(35233, 'sq', 'panel', 'Mail Log Manager', 'Mail Log Manager', '2025-11-21 01:21:01'),
(35232, 'sq', 'panel', 'Log Manager', 'Log Manager', '2025-11-21 01:21:01'),
(35231, 'sq', 'panel', 'Import Websites', 'Importo Faqet', '2025-11-21 01:21:01'),
(35230, 'sq', 'panel', 'Import Proxy', 'Importo Proxy', '2025-11-21 01:21:01'),
(35229, 'sq', 'panel', 'Google Settings', 'Google Cilësimet', '2025-11-21 01:21:01'),
(35228, 'sq', 'panel', 'Global Reports Settings', 'Global Raportet Cilësimet', '2025-11-21 01:21:01'),
(35227, 'sq', 'panel', 'Existing', 'Existing', '2025-11-21 01:21:01'),
(35226, 'sq', 'panel', 'Edit Project', 'Ndrysho Projekti', '2025-11-21 01:21:01'),
(35225, 'sq', 'panel', 'Edit My Profile', 'Ndrysho My Profili', '2025-11-21 01:21:01'),
(35224, 'sq', 'panel', 'Directory Manager', 'Direktoria Manager', '2025-11-21 01:21:01'),
(35223, 'sq', 'panel', 'DataForSEO Settings', 'DataForSEO Cilësimet', '2025-11-21 01:21:01'),
(35222, 'sq', 'panel', 'Current Time', 'Current Koha', '2025-11-21 01:21:01'),
(35221, 'sq', 'panel', 'Cron Command', 'Cron Command', '2025-11-21 01:21:01'),
(35220, 'sq', 'panel', 'Crawl Log Manager', 'Crawl Log Manager', '2025-11-21 01:21:01'),
(35219, 'sq', 'panel', 'Connections', 'Connections', '2025-11-21 01:21:01'),
(35218, 'sq', 'panel', 'Check Directory', 'Check Direktoria', '2025-11-21 01:21:01'),
(35217, 'sq', 'panel', 'Archived Reports', 'Archived Raportet', '2025-11-21 01:21:01'),
(35216, 'sq', 'panel', 'API Settings', 'Cilësimet API', '2025-11-21 01:21:01'),
(35215, 'sq', 'panel', 'API Manager', 'API Manager', '2025-11-21 01:21:01'),
(35214, 'sq', 'panel', 'API Connection', 'API Connection', '2025-11-21 01:21:01'),
(35213, 'sq', 'panel', 'alsocheckfollowlink', 'Also check following Lidhje if you need more Detajet.', '2025-11-21 01:21:01'),
(35212, 'sq', 'panel', 'Alerts', 'Alarmet', '2025-11-21 01:21:01'),
(35211, 'sq', 'panel', 'Add following command to your cron tab', 'Add following command to your cron tab', '2025-11-21 01:21:01'),
(35210, 'sq', 'panel', 'About Us', 'Rreth Us', '2025-11-21 01:21:01'),
(35209, 'sq', 'pagespeed', 'Saved page speed results of', 'Saved Faqja Shpejtësia Rezultatet of', '2025-11-21 01:21:01'),
(35208, 'sq', 'pagespeed', 'PageSpeed Details', 'PageSpeed Detajet', '2025-11-21 01:21:01'),
(35207, 'sq', 'pagespeed', 'Page Speed', 'Faqja Shpejtësia', '2025-11-21 01:21:01'),
(35206, 'sq', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2025-11-21 01:21:01'),
(35205, 'sq', 'pagespeed', 'Mobile Speed', 'Mobile Shpejtësia', '2025-11-21 01:21:01'),
(35204, 'sq', 'pagespeed', 'Desktop Speed', 'Desktop Shpejtësia', '2025-11-21 01:21:01'),
(35203, 'sq', 'myaccount', 'Disconnected', 'I shkëputur', '2025-11-21 01:21:01'),
(35201, 'sq', 'myaccount', 'Connected', 'I lidhur', '2025-11-21 01:21:01'),
(35202, 'sq', 'myaccount', 'Disconnect', 'Shkëputuni', '2025-11-21 01:21:01'),
(35200, 'sq', 'myaccount', 'Connect', 'Lidhuni', '2025-11-21 01:21:01'),
(35199, 'sq', 'login', 'Your Password Reset Successfully', 'Your Fjalëkalimi Rivendos Successfully', '2025-11-21 01:21:01'),
(35198, 'sq', 'login', 'Your Password Reset Failed', 'Your Fjalëkalimi Rivendos Dështoi', '2025-11-21 01:21:01'),
(35196, 'sq', 'login', 'Your account activated successfully', 'Your Llogaria activated successfully', '2025-11-21 01:21:01'),
(35197, 'sq', 'login', 'Your account password is resetted and new password is', 'Your Llogaria Fjalëkalimi is resetted and new Fjalëkalimi is', '2025-11-21 01:21:01'),
(35195, 'sq', 'login', 'Welcome message', 'Welcome Prapa! Please Hyrje to your Llogaria', '2025-11-21 01:21:01'),
(35194, 'sq', 'login', 'Verification', 'Verification', '2025-11-21 01:21:01'),
(35193, 'sq', 'login', 'usernameexist', 'Emri i përdoruesit already exist!', '2025-11-21 01:21:01'),
(35192, 'sq', 'login', 'Username placeholder', 'Enter your Emri i përdoruesit', '2025-11-21 01:21:01'),
(35191, 'sq', 'login', 'Username', 'Emri i përdoruesit', '2025-11-21 01:21:01'),
(35190, 'sq', 'login', 'user_not_activated_msg', 'Përdoruesi is not activated. Please check your mail for activation', '2025-11-21 01:21:01'),
(35189, 'sq', 'login', 'user_email_not_exist', 'Përdoruesi Email-i is not existing in system!', '2025-11-21 01:21:01'),
(35188, 'sq', 'login', 'User Type', 'Përdoruesi Lloji', '2025-11-21 01:21:01'),
(35187, 'sq', 'login', 'User inactive', 'Përdoruesi Joaktiv', '2025-11-21 01:21:01'),
(35186, 'sq', 'login', 'to login to your account', 'to Hyrje to your Llogaria', '2025-11-21 01:21:01'),
(35185, 'sq', 'login', 'Sign in to your account', 'Hyni to your Llogaria', '2025-11-21 01:21:01'),
(35184, 'sq', 'login', 'Sign In', 'Hyni', '2025-11-21 01:21:01'),
(35182, 'sq', 'login', 'Request Password', 'Request Fjalëkalimi', '2025-11-21 01:21:01'),
(35183, 'sq', 'login', 'Security message', 'Your Informacioni is secure and encrypted', '2025-11-21 01:21:01'),
(35181, 'sq', 'login', 'Remember password text', 'Remember your Fjalëkalimi?', '2025-11-21 01:21:01'),
(35180, 'sq', 'login', 'Register', 'Register', '2025-11-21 01:21:01'),
(35179, 'sq', 'login', 'password_reset_success_message', 'Your Fjalëkalimi Rivendos successfully. A confirmation mail send to Email-i address. <br>Please check your inbox to get your new Fjalëkalimi.', '2025-11-21 01:21:01'),
(35178, 'sq', 'login', 'Password placeholder', 'Enter your Fjalëkalimi', '2025-11-21 01:21:01'),
(35177, 'sq', 'login', 'Password incorrect', 'Fjalëkalimi incorrect', '2025-11-21 01:21:01'),
(35176, 'sq', 'login', 'Password', 'Fjalëkalimi', '2025-11-21 01:21:01'),
(35175, 'sq', 'login', 'No account text', 'Don''t have an Llogaria?', '2025-11-21 01:21:01'),
(35173, 'sq', 'login', 'Login incorrect', 'Hyrje incorrect', '2025-11-21 01:21:01'),
(35174, 'sq', 'login', 'newaccountsuccess', 'New Llogaria created successfully!', '2025-11-21 01:21:01'),
(35171, 'sq', 'login', 'Last Name', 'Fundit Emri', '2025-11-21 01:21:01'),
(35172, 'sq', 'login', 'Login', 'Hyrje', '2025-11-21 01:21:01'),
(35170, 'sq', 'login', 'internal_error_mail_send', 'An internal Gabim occured while sending Fjalëkalimi Rivendos mail!', '2025-11-21 01:21:01'),
(35169, 'sq', 'login', 'Forgot subtitle', 'Enter your Email-i address and we''ll send you instructions to Rivendos your Fjalëkalimi', '2025-11-21 01:21:01'),
(35168, 'sq', 'login', 'Forgot password?', 'Keni harruar fjalëkalimin?', '2025-11-21 01:21:01'),
(35167, 'sq', 'login', 'First Name', 'Parë Emri', '2025-11-21 01:21:01'),
(35166, 'sq', 'login', 'Enter the code as it is shown', 'Enter the code as it is shown', '2025-11-21 01:21:01'),
(35165, 'sq', 'login', 'Enter the code', 'Enter the code', '2025-11-21 01:21:01'),
(35164, 'sq', 'login', 'emailexist', 'Email-i already exist!', '2025-11-21 01:21:01'),
(35163, 'sq', 'login', 'Email placeholder', '[email protected]', '2025-11-21 01:21:01'),
(35162, 'sq', 'login', 'Email', 'Email-i', '2025-11-21 01:21:01'),
(35161, 'sq', 'login', 'Create New Account', 'Krijo New Llogaria', '2025-11-21 01:21:01'),
(35160, 'sq', 'login', 'Create my account', 'Krijo Llogaria ime', '2025-11-21 01:21:01'),
(35159, 'sq', 'login', 'Confirm Password', 'Konfirmo Fjalëkalimi', '2025-11-21 01:21:01'),
(35158, 'sq', 'log', 'Post Fields', 'Post Fields', '2025-11-21 01:21:01'),
(35157, 'sq', 'log', 'Mail Log Details', 'Mail Log Detajet', '2025-11-21 01:21:01'),
(35156, 'sq', 'log', 'Crawl Log Details', 'Crawl Log Detajet', '2025-11-21 01:21:01'),
(35155, 'sq', 'log', 'Clear All Logs', 'Pastro All Logs', '2025-11-21 01:21:01'),
(35154, 'sq', 'label', 'Year', 'Year', '2025-11-21 01:21:01'),
(35153, 'sq', 'label', 'Write', 'Write', '2025-11-21 01:21:01'),
(35152, 'sq', 'label', 'Weekly', 'Çdo javë', '2025-11-21 01:21:01'),
(35151, 'sq', 'label', 'Week', 'Week', '2025-11-21 01:21:01'),
(35150, 'sq', 'label', 'wantproceed', 'Do you really want to proceed?', '2025-11-21 01:21:01'),
(35149, 'sq', 'label', 'View Reports', 'Shiko Raportet', '2025-11-21 01:21:01'),
(35148, 'sq', 'label', 'Version', 'Versioni', '2025-11-21 01:21:01'),
(35147, 'sq', 'label', 'User agent', 'Përdoruesi agent', '2025-11-21 01:21:01'),
(35146, 'sq', 'label', 'Usability', 'Usability', '2025-11-21 01:21:01'),
(35145, 'sq', 'label', 'Upgrade', 'Upgrade', '2025-11-21 01:21:01'),
(35144, 'sq', 'label', 'Updated', 'Updated', '2025-11-21 01:21:01'),
(35143, 'sq', 'label', 'Type', 'Lloji', '2025-11-21 01:21:01'),
(35142, 'sq', 'label', 'Translators', 'Translators', '2025-11-21 01:21:01'),
(35141, 'sq', 'label', 'translation by', 'translation by', '2025-11-21 01:21:01'),
(35140, 'sq', 'label', 'Total Results', 'Gjithsej Rezultatet', '2025-11-21 01:21:01'),
(35139, 'sq', 'label', 'Title', 'Titulli', '2025-11-21 01:21:01'),
(35138, 'sq', 'label', 'Theme', 'Theme', '2025-11-21 01:21:01'),
(35137, 'sq', 'label', 'Syntax', 'Syntax', '2025-11-21 01:21:01'),
(35136, 'sq', 'label', 'Success', 'Sukses', '2025-11-21 01:21:01'),
(35135, 'sq', 'label', 'Subject', 'Subject', '2025-11-21 01:21:01'),
(35134, 'sq', 'label', 'Sponsors', 'Sponsors', '2025-11-21 01:21:01'),
(35133, 'sq', 'label', 'Speed', 'Shpejtësia', '2025-11-21 01:21:01'),
(35132, 'sq', 'label', 'Select All', 'Zgjidh All', '2025-11-21 01:21:01'),
(35131, 'sq', 'label', 'Second', 'Second', '2025-11-21 01:21:01'),
(35130, 'sq', 'label', 'Score', 'Rezultati', '2025-11-21 01:21:01'),
(35129, 'sq', 'label', 'Reviews', 'Rishikimet', '2025-11-21 01:21:01'),
(35128, 'sq', 'label', 'Report Type', 'Raporti Lloji', '2025-11-21 01:21:01'),
(35127, 'sq', 'label', 'Referer', 'Referer', '2025-11-21 01:21:01'),
(35126, 'sq', 'label', 'Reference', 'Reference', '2025-11-21 01:21:01'),
(35125, 'sq', 'label', 'Recent Activity', 'Aktiviteti i fundit', '2025-11-21 01:21:01'),
(35124, 'sq', 'label', 'Read', 'Read', '2025-11-21 01:21:01'),
(35123, 'sq', 'label', 'Re-install', 'Re-install', '2025-11-21 01:21:01'),
(35122, 'sq', 'label', 'Rating', 'Vlerësimi', '2025-11-21 01:21:01'),
(35120, 'sq', 'label', 'Project', 'Projekti', '2025-11-21 01:21:01'),
(35121, 'sq', 'label', 'Proxy', 'Proxy', '2025-11-21 01:21:01'),
(35119, 'sq', 'label', 'Port', 'Port', '2025-11-21 01:21:01'),
(35118, 'sq', 'label', 'Plugin', 'Plugin', '2025-11-21 01:21:01'),
(35117, 'sq', 'label', 'Overview', 'Përmbledhje', '2025-11-21 01:21:01'),
(35116, 'sq', 'label', 'Order By', 'Order By', '2025-11-21 01:21:01'),
(35114, 'sq', 'label', 'Months', 'Months', '2025-11-21 01:21:01'),
(35115, 'sq', 'label', 'noactiveplugins', 'No Aktiv Seo Shtojcat Found!', '2025-11-21 01:21:01'),
(35113, 'sq', 'label', 'Monthly', 'Çdo muaj', '2025-11-21 01:21:01'),
(35111, 'sq', 'label', 'Mobile', 'Mobile', '2025-11-21 01:21:01'),
(35112, 'sq', 'label', 'Month', 'Month', '2025-11-21 01:21:01'),
(35110, 'sq', 'label', 'Minute', 'Minute', '2025-11-21 01:21:01'),
(35108, 'sq', 'label', 'Keywords', 'Fjalë kyçe', '2025-11-21 01:21:01'),
(35109, 'sq', 'label', 'Likes', 'Pëlqimet', '2025-11-21 01:21:01'),
(35107, 'sq', 'label', 'Just Now', 'Just Now', '2025-11-21 01:21:01'),
(35106, 'sq', 'label', 'Installation', 'Installation', '2025-11-21 01:21:01'),
(35105, 'sq', 'label', 'Include', 'Include', '2025-11-21 01:21:01'),
(35103, 'sq', 'label', 'Hour', 'Hour', '2025-11-21 01:21:01'),
(35104, 'sq', 'label', 'Impressions', 'Impressions', '2025-11-21 01:21:01'),
(35102, 'sq', 'label', 'From', 'From', '2025-11-21 01:21:01'),
(35101, 'sq', 'label', 'Free', 'Free', '2025-11-21 01:21:01'),
(35100, 'sq', 'label', 'Followers', 'Followers', '2025-11-21 01:21:01'),
(35099, 'sq', 'label', 'Feature', 'Feature', '2025-11-21 01:21:01'),
(35098, 'sq', 'label', 'Fail', 'Fail', '2025-11-21 01:21:01'),
(35097, 'sq', 'label', 'Exclude', 'Exclude', '2025-11-21 01:21:01'),
(35096, 'sq', 'label', 'Email Body', 'Email-i Body', '2025-11-21 01:21:01'),
(35095, 'sq', 'label', 'Download', 'Shkarko', '2025-11-21 01:21:01'),
(35094, 'sq', 'label', 'Developers', 'Developers', '2025-11-21 01:21:01'),
(35093, 'sq', 'label', 'Desktop', 'Desktop', '2025-11-21 01:21:01'),
(35091, 'sq', 'label', 'Days', 'Days', '2025-11-21 01:21:01'),
(35092, 'sq', 'label', 'Description', 'Përshkrimi', '2025-11-21 01:21:01'),
(35089, 'sq', 'label', 'Daily', 'Çdo ditë', '2025-11-21 01:21:01'),
(35090, 'sq', 'label', 'Day', 'Day', '2025-11-21 01:21:01'),
(35088, 'sq', 'label', 'Current', 'Current', '2025-11-21 01:21:01'),
(35087, 'sq', 'label', 'Cron', 'Cron', '2025-11-21 01:21:01'),
(35085, 'sq', 'label', 'Cookie', 'Cookie', '2025-11-21 01:21:01'),
(35086, 'sq', 'label', 'Count', 'Numri', '2025-11-21 01:21:01'),
(35084, 'sq', 'label', 'Comments', 'Comments', '2025-11-21 01:21:01'),
(35083, 'sq', 'label', 'Clicks', 'Clicks', '2025-11-21 01:21:01'),
(35082, 'sq', 'label', 'Click Here', 'Klikoni këtu', '2025-11-21 01:21:01'),
(35081, 'sq', 'label', 'Clear All', 'Pastro All', '2025-11-21 01:21:01'),
(35079, 'sq', 'label', 'Author', 'Author', '2025-11-21 01:21:01'),
(35080, 'sq', 'label', 'Brocken', 'Broken', '2025-11-21 01:21:01'),
(35077, 'sq', 'label', 'already exist', 'already exist', '2025-11-21 01:21:01'),
(35078, 'sq', 'label', 'Authentication', 'Authentication', '2025-11-21 01:21:01'),
(35076, 'sq', 'label', 'Ago', 'Ago', '2025-11-21 01:21:01'),
(35075, 'sq', 'label', 'Access denied', 'Hyrja e refuzuar', '2025-11-21 01:21:01'),
(35074, 'sq', 'keyword', 'Your keyword count already reached the limit', 'Fjalë kyçe Numri already reached the limit for this Përdoruesi!', '2025-11-21 01:21:01'),
(35073, 'sq', 'keyword', 'You can add only keywordcount keywords more', 'You can add only [keywordcount] Fjalë kyçe for this Përdoruesi!', '2025-11-21 01:21:01'),
(35072, 'sq', 'keyword', 'Top Keywords', 'Top Fjalë kyçe', '2025-11-21 01:21:01'),
(35071, 'sq', 'keyword', 'to create new keywords', 'to Krijo new Fjalë kyçe', '2025-11-21 01:21:01'),
(35070, 'sq', 'keyword', 'Successfully crawled keyword', 'Successfully crawled Fjalë kyçe', '2025-11-21 01:21:01'),
(35069, 'sq', 'keyword', 'Show All results', 'Show All Rezultatet', '2025-11-21 01:21:01'),
(35068, 'sq', 'keyword', 'results from ', 'Rezultatet from ', '2025-11-21 01:21:01'),
(35067, 'sq', 'keyword', 'Ranking Trends', 'Renditje Trends', '2025-11-21 01:21:01'),
(35066, 'sq', 'keyword', 'Quick Keyword Position Checker', 'Quick Pozicioni i fjalës kyçe Checker', '2025-11-21 01:21:01'),
(35065, 'sq', 'keyword', 'pleaseselecttool', 'Ju lutem zgjidhni atleast one Mjete SEO', '2025-11-21 01:21:01'),
(35064, 'sq', 'keyword', 'not assigned to required search engines', 'not assigned to E detyrueshme Motorët e kërkimit', '2025-11-21 01:21:01'),
(35063, 'sq', 'keyword', 'New Keyword', 'New Fjalë kyçe', '2025-11-21 01:21:01'),
(35062, 'sq', 'keyword', 'Keywords Tracked', 'Fjalë kyçe Tracked', '2025-11-21 01:21:01'),
(35061, 'sq', 'keyword', 'Keyword Ranking Trends', 'Fjalë kyçe Renditje Trends', '2025-11-21 01:21:01'),
(35060, 'sq', 'keyword', 'Keyword Position Report', 'Pozicioni i fjalës kyçe Raporti', '2025-11-21 01:21:01'),
(35059, 'sq', 'keyword', 'Keyword already exist', 'Fjalë kyçe already exist', '2025-11-21 01:21:01'),
(35058, 'sq', 'keyword', 'Insert keywords separated with comma', 'Insert Fjalë kyçe separated with comma', '2025-11-21 01:21:01'),
(35057, 'sq', 'keyword', 'Import Keywords', 'Importo Fjalë kyçe', '2025-11-21 01:21:01'),
(35056, 'sq', 'keyword', 'Graphical Keyword Position Reports', 'Graphical Pozicioni i fjalës kyçe Raportet', '2025-11-21 01:21:01'),
(35055, 'sq', 'keyword', 'Edit Keyword', 'Ndrysho fjalën kyçe', '2025-11-21 01:21:01'),
(35054, 'sq', 'keyword', 'Detailed Keyword Position Reports', 'Detailed Pozicioni i fjalës kyçe Raportet', '2025-11-21 01:21:01'),
(35053, 'sq', 'keyword', 'Crawling keyword', 'Crawling Fjalë kyçe', '2025-11-21 01:21:01'),
(35052, 'sq', 'home', 'Website Statistics', 'Faqja Statistikat', '2025-11-21 01:21:01'),
(35051, 'sq', 'home', 'SiteNameUrl', 'Site Emri/Url', '2025-11-21 01:21:01'),
(35050, 'sq', 'home', 'Ranks', 'Ranks', '2025-11-21 01:21:01'),
(35049, 'sq', 'home', 'Pages Indexed', 'Faqet Indexed', '2025-11-21 01:21:01'),
(35048, 'sq', 'home', 'Page Overview Report', 'Faqja Overview Raporti', '2025-11-21 01:21:01'),
(35046, 'sq', 'home', 'Keyword Overview Report', 'Fjalë kyçe Overview Raporti', '2025-11-21 01:21:01'),
(35047, 'sq', 'home', 'Overall Report Summary', 'Overall Raporti Summary', '2025-11-21 01:21:01'),
(35045, 'sq', 'home', 'Indexed', 'Indexed', '2025-11-21 01:21:01'),
(38232, 'pt-br', 'socialmedia', 'Total Likes', 'Curtidas totais', '2026-01-19 22:56:41'),
(38233, 'ro', 'socialmedia', 'Total Likes', 'Total aprecieri', '2026-01-19 22:56:41'),
(38234, 'ru', 'socialmedia', 'Total Likes', 'Всего лайков', '2026-01-19 22:56:41'),
(38235, 'sk', 'socialmedia', 'Total Likes', 'Celkový počet páči sa mi to', '2026-01-19 22:56:41'),
(38236, 'sl', 'socialmedia', 'Total Likes', 'Skupaj všečkov', '2026-01-19 22:56:41'),
(38237, 'sq', 'socialmedia', 'Total Likes', 'Totali i pëlqimeve', '2026-01-19 22:56:41'),
(38238, 'sr', 'socialmedia', 'Total Likes', 'Укупно допадања', '2026-01-19 22:56:41'),
(38239, 'sv', 'socialmedia', 'Total Likes', 'Totalt antal gilla-markeringar', '2026-01-19 22:56:41'),
(38240, 'sw', 'socialmedia', 'Total Likes', 'Jumla ya Vipendwa', '2026-01-19 22:56:41'),
(38241, 'th', 'socialmedia', 'Total Likes', 'จำนวนไลค์ทั้งหมด', '2026-01-19 22:56:41'),
(38242, 'tl', 'socialmedia', 'Total Likes', 'Kabuuang Mga Gusto', '2026-01-19 22:56:41'),
(38243, 'tr', 'socialmedia', 'Total Likes', 'Toplam Beğeni', '2026-01-19 22:56:41'),
(38244, 'uk', 'socialmedia', 'Total Likes', 'Загальна кількість вподобань', '2026-01-19 22:56:41'),
(38245, 'vn', 'socialmedia', 'Total Likes', 'Tổng số lượt thích', '2026-01-19 22:56:41'),
(38246, 'zh', 'socialmedia', 'Total Likes', '点赞总数', '2026-01-19 22:56:41'),
(38247, 'en', 'socialmedia', 'Followers by Platform', 'Followers by Platform', '2026-01-19 22:56:41'),
(38248, 'ar', 'socialmedia', 'Followers by Platform', 'المتابعون حسب المنصة', '2026-01-19 22:56:41'),
(38249, 'bg', 'socialmedia', 'Followers by Platform', 'Последователи по платформа', '2026-01-19 22:56:41'),
(38250, 'bs', 'socialmedia', 'Followers by Platform', 'Pratioci po platformi', '2026-01-19 22:56:41'),
(38251, 'ca', 'socialmedia', 'Followers by Platform', 'Seguidors per plataforma', '2026-01-19 22:56:41'),
(38252, 'cn', 'socialmedia', 'Followers by Platform', '各平台粉丝数', '2026-01-19 22:56:41'),
(38253, 'cs', 'socialmedia', 'Followers by Platform', 'Sledující podle platformy', '2026-01-19 22:56:41'),
(38254, 'da', 'socialmedia', 'Followers by Platform', 'Følgere efter platform', '2026-01-19 22:56:41'),
(38255, 'de', 'socialmedia', 'Followers by Platform', 'Follower nach Plattform', '2026-01-19 22:56:41'),
(38256, 'el', 'socialmedia', 'Followers by Platform', 'Ακόλουθοι ανά πλατφόρμα', '2026-01-19 22:56:41'),
(38257, 'es', 'socialmedia', 'Followers by Platform', 'Seguidores por plataforma', '2026-01-19 22:56:41'),
(38258, 'es-ar', 'socialmedia', 'Followers by Platform', 'Seguidores por plataforma', '2026-01-19 22:56:41'),
(38259, 'fa', 'socialmedia', 'Followers by Platform', 'دنبال کنندگان بر اساس پلتفرم', '2026-01-19 22:56:41'),
(38260, 'fi', 'socialmedia', 'Followers by Platform', 'Seuraajat alustittain', '2026-01-19 22:56:41'),
(38261, 'fr', 'socialmedia', 'Followers by Platform', 'Abonnés par plateforme', '2026-01-19 22:56:41'),
(38262, 'he', 'socialmedia', 'Followers by Platform', 'עוקבים לפי פלטפורמה', '2026-01-19 22:56:41'),
(38263, 'hi', 'socialmedia', 'Followers by Platform', 'प्लेटफ़ॉर्म के अनुसार अनुयायी', '2026-01-19 22:56:41'),
(38264, 'hr', 'socialmedia', 'Followers by Platform', 'Pratitelji po platformi', '2026-01-19 22:56:41'),
(38265, 'hu', 'socialmedia', 'Followers by Platform', 'Követők platformonként', '2026-01-19 22:56:41'),
(38266, 'hy', 'socialmedia', 'Followers by Platform', 'Հետևորդներ ըստ հարթակի', '2026-01-19 22:56:41'),
(38267, 'id', 'socialmedia', 'Followers by Platform', 'Pengikut menurut Platform', '2026-01-19 22:56:41'),
(38268, 'it', 'socialmedia', 'Followers by Platform', 'Follower per Piattaforma', '2026-01-19 22:56:41'),
(38269, 'ja', 'socialmedia', 'Followers by Platform', 'プラットフォーム別フォロワー', '2026-01-19 22:56:41'),
(38270, 'ko', 'socialmedia', 'Followers by Platform', '플랫폼별 팔로워', '2026-01-19 22:56:41'),
(38271, 'lt', 'socialmedia', 'Followers by Platform', 'Sekėjai pagal platformą', '2026-01-19 22:56:41'),
(38272, 'mk', 'socialmedia', 'Followers by Platform', 'Следбеници по платформа', '2026-01-19 22:56:41'),
(38273, 'nl', 'socialmedia', 'Followers by Platform', 'Volgers per platform', '2026-01-19 22:56:41'),
(38274, 'no', 'socialmedia', 'Followers by Platform', 'Følgere etter plattform', '2026-01-19 22:56:41'),
(38275, 'pl', 'socialmedia', 'Followers by Platform', 'Obserwujący według platformy', '2026-01-19 22:56:41'),
(38276, 'pt', 'socialmedia', 'Followers by Platform', 'Seguidores por plataforma', '2026-01-19 22:56:41'),
(38277, 'pt-br', 'socialmedia', 'Followers by Platform', 'Seguidores por plataforma', '2026-01-19 22:56:41'),
(38278, 'ro', 'socialmedia', 'Followers by Platform', 'Urmăritori pe platformă', '2026-01-19 22:56:41'),
(38279, 'ru', 'socialmedia', 'Followers by Platform', 'Подписчики по платформам', '2026-01-19 22:56:41'),
(38280, 'sk', 'socialmedia', 'Followers by Platform', 'Sledovatelia podľa platformy', '2026-01-19 22:56:41'),
(38281, 'sl', 'socialmedia', 'Followers by Platform', 'Sledilci po platformi', '2026-01-19 22:56:41'),
(38282, 'sq', 'socialmedia', 'Followers by Platform', 'Ndjekës sipas platformës', '2026-01-19 22:56:41'),
(38283, 'sr', 'socialmedia', 'Followers by Platform', 'Пратиоци по платформи', '2026-01-19 22:56:41'),
(38284, 'sv', 'socialmedia', 'Followers by Platform', 'Följare per plattform', '2026-01-19 22:56:41'),
(38285, 'sw', 'socialmedia', 'Followers by Platform', 'Wafuasi kwa Jukwaa', '2026-01-19 22:56:41'),
(38286, 'th', 'socialmedia', 'Followers by Platform', 'ผู้ติดตามตามแพลตฟอร์ม', '2026-01-19 22:56:41'),
(38287, 'tl', 'socialmedia', 'Followers by Platform', 'Mga Tagasunod ayon sa Platform', '2026-01-19 22:56:41'),
(38288, 'tr', 'socialmedia', 'Followers by Platform', 'Platforma göre takipçiler', '2026-01-19 22:56:41'),
(38289, 'uk', 'socialmedia', 'Followers by Platform', 'Підписники за платформами', '2026-01-19 22:56:41'),
(38290, 'vn', 'socialmedia', 'Followers by Platform', 'Người theo dõi theo nền tảng', '2026-01-19 22:56:41'),
(38291, 'zh', 'socialmedia', 'Followers by Platform', '各平台粉丝数', '2026-01-19 22:56:41'),
(35040, 'sq', 'home', 'Backlinks', 'Lidhje mbrapsht', '2025-11-21 01:21:01'),
(35041, 'sq', 'home', 'Directory Submission', 'Direktoria Submission', '2025-11-21 01:21:01'),
(35039, 'sq', 'home', 'Account Summary', 'Llogaria Summary', '2025-11-21 01:21:01'),
(35038, 'sq', 'guest', 'Why Choose SEO Panel?', 'Why Zgjidh SEO Panel?', '2025-11-21 01:21:01'),
(35037, 'sq', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-11-21 01:21:01'),
(35036, 'sq', 'guest', 'View Demo', 'Shiko Demo', '2025-11-21 01:21:01'),
(35035, 'sq', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their Faqet.', '2025-11-21 01:21:01'),
(35034, 'sq', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-11-21 01:21:01'),
(35033, 'sq', 'guest', 'Support Development', 'Mbështetje Development', '2025-11-21 01:21:01'),
(35032, 'sq', 'guest', 'Social Media Integration desc', 'Integrate with Google Analitika, Kërko Console, and Media sociale platforms for comprehensive reporting.', '2025-11-21 01:21:01'),
(35031, 'sq', 'guest', 'Social Media Integration', 'Media sociale Integrimi', '2025-11-21 01:21:01'),
(35030, 'sq', 'guest', 'Site Auditor desc', 'Audit all SEO factors of each Faqja and generate XML, HTML, and Teksti sitemaps for Motorët e kërkimit.', '2025-11-21 01:21:01'),
(35029, 'sq', 'guest', 'Search Engine Saturation desc', 'Find the Numri of Faqet e indeksuara across different Motorët e kërkimit and monitor your indexing progress.', '2025-11-21 01:21:01'),
(35028, 'sq', 'guest', 'Resources & Support', 'Resources & Mbështetje', '2025-11-21 01:21:01'),
(35027, 'sq', 'guest', 'Rank Checker desc', 'Check Google PageRank, Renditja Alexa, and Renditja Moz with comprehensive Çdo ditë tracking and reporting.', '2025-11-21 01:21:01'),
(35026, 'sq', 'guest', 'Powerful SEO Features', 'Powerful SEO Features', '2025-11-21 01:21:01'),
(35025, 'sq', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful Shtojcat including Article Submitter, Gjenerues meta etiketash, and more.', '2025-11-21 01:21:01'),
(35024, 'sq', 'guest', 'Plugin Architecture', 'Plugin Architecture', '2025-11-21 01:21:01'),
(35023, 'sq', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited Faqet from a single control panel with centralized reporting.', '2025-11-21 01:21:01'),
(35022, 'sq', 'guest', 'Multi-Website Support', 'Multi-Faqja Mbështetje', '2025-11-21 01:21:01'),
(35021, 'sq', 'guest', 'Login to Get Started', 'Hyrje to Filloni', '2025-11-21 01:21:01'),
(35020, 'sq', 'guest', 'Keyword Position Checker desc', 'Track your Fjalë kyçe Renditjet across multiple Motorët e kërkimit with detailed Çdo ditë Raportet and beautiful graphs.', '2025-11-21 01:21:01'),
(35018, 'sq', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-11-21 01:21:01'),
(35019, 'sq', 'guest', 'Highly Extensible desc', 'Easily develop and install I personalizuar Shtojcat to extend functionality according to your needs.', '2025-11-21 01:21:01'),
(35017, 'sq', 'guest', 'Hero subtitle', 'World''s Parë Open Burimi SEO Control Panel for Multiple Faqet', '2025-11-21 01:21:01'),
(35016, 'sq', 'guest', 'Hero description', 'A complete open Burimi SEO control panel for managing Motor kërkimi optimization of your Faqet. SEO Panel is a powerful toolkit that includes the Më i fundit Mjete SEO to Rritje and track the Performanca of your Faqet.', '2025-11-21 01:21:01'),
(35015, 'sq', 'guest', 'Get Support', 'Get Mbështetje', '2025-11-21 01:21:01'),
(35013, 'sq', 'guest', 'Documentation', 'Dokumentacioni', '2025-11-21 01:21:01'),
(35014, 'sq', 'guest', 'Download SEO Panel', 'Shkarko SEO Panel', '2025-11-21 01:21:01'),
(35012, 'sq', 'guest', 'Directory Submission desc', 'Automatically Dërgo your Faqet to major free and paid directories with Statusi tracking.', '2025-11-21 01:21:01'),
(35010, 'sq', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-11-21 01:21:01'),
(35011, 'sq', 'guest', 'Contact Us', 'Kontakti Us', '2025-11-21 01:21:01'),
(35009, 'sq', 'guest', 'Browse Plugins', 'Browse Shtojcat', '2025-11-21 01:21:01'),
(35008, 'sq', 'guest', 'Backlinks Checker desc', 'Monitor the Numri of Lidhje mbrapsht from major Motorët e kërkimit and track your Lidhje building progress over Koha.', '2025-11-21 01:21:01'),
(35007, 'sq', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. Shkarko, customize, and use without any restrictions.', '2025-11-21 01:21:01'),
(35006, 'sq', 'guest', '100% Open Source', '100% Open Burimi', '2025-11-21 01:21:01'),
(35004, 'sq', 'directory', 'Website Category', 'Faqja Kategoria', '2025-11-21 01:21:01'),
(35005, 'sq', 'directory', 'Website Url', 'URL e faqes', '2025-11-21 01:21:01'),
(35003, 'sq', 'directory', 'Submit Title', 'Dërgo Titulli', '2025-11-21 01:21:01'),
(35002, 'sq', 'directory', 'Submit Keywords', 'Dërgo Fjalë kyçe', '2025-11-21 01:21:01'),
(35001, 'sq', 'directory', 'Submit Description', 'Dërgo Përshkrimi', '2025-11-21 01:21:01'),
(35000, 'sq', 'directory', 'Submission Details', 'Submission Detajet', '2025-11-21 01:21:01'),
(34999, 'sq', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary Email-i address.', '2025-11-21 01:21:01'),
(34998, 'sq', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi Automatik Direktoria Submission Tool', '2025-11-21 01:21:01'),
(34997, 'sq', 'directory', 'selectwebsiteschecksub', 'Zgjidh a <b>Faqja</b> to <b>Proceed</b> check Direktoria submission.', '2025-11-21 01:21:01'),
(34996, 'sq', 'directory', 'selectwebsiteproceed', 'Zgjidh a <b>Faqja</b> to <b>Proceed</b> Direktoria submission.<br>Check <b>Directories with out captcha</b> to Dërgo to directories with out captcha', '2025-11-21 01:21:01'),
(34995, 'sq', 'directory', 'Reciprocal Link', 'Reciprocal Lidhje', '2025-11-21 01:21:01'),
(34994, 'sq', 'directory', 'Please select a website to proceed', 'Ju lutem zgjidhni a Faqja to proceed', '2025-11-21 01:21:01'),
(34993, 'sq', 'directory', 'Pending', 'Në pritje', '2025-11-21 01:21:01'),
(34992, 'sq', 'directory', 'Owner Name', 'Owner Emri', '2025-11-21 01:21:01'),
(34991, 'sq', 'directory', 'Owner Email', 'Owner Email-i', '2025-11-21 01:21:01'),
(34990, 'sq', 'directory', 'optionalnote', 'Opsionale titles and descriptions to Dërgo random Titulli and Përshkrimi to directories for better Rezultatet.', '2025-11-21 01:21:01'),
(34989, 'sq', 'directory', 'nosuccessnote', 'Didn''t get Sukses Mesazhi, Please check your mail to find the Konfirmo Mesazhi', '2025-11-21 01:21:01'),
(34988, 'sq', 'directory', 'nodirnote', 'No <b>Aktiv</b> directories Found', '2025-11-21 01:21:01'),
(34987, 'sq', 'directory', 'nocatnote', 'The submission Kategoria not found in submission Faqja. Please click on <b>Reload</b> or <b>Skip</b>', '2025-11-21 01:21:01'),
(34986, 'sq', 'directory', 'Enter the code shown', 'Enter the code shown', '2025-11-21 01:21:01'),
(34985, 'sq', 'directory', 'Directory Submission Reports', 'Direktoria Submission Raportet', '2025-11-21 01:21:01'),
(34984, 'sq', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Lidhje', '2025-11-21 01:21:01'),
(34983, 'sq', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2025-11-21 01:21:01'),
(34982, 'sq', 'directory', 'desnote', 'Some directories require Minimumi 150 characters for the Përshkrimi field.', '2025-11-21 01:21:01');
INSERT INTO `texts` VALUES
(34981, 'sq', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured submission!', '2025-11-21 01:21:01'),
(34980, 'sq', 'directory', 'Coupon Offer', 'Coupon Offer', '2025-11-21 01:21:01'),
(34979, 'sq', 'directory', 'Coupon Code', 'Coupon Code', '2025-11-21 01:21:01'),
(34978, 'sq', 'directory', 'Confirmation', 'Confirmation', '2025-11-21 01:21:01'),
(34977, 'sq', 'directory', 'clicktoproceeddirsts', 'Click on <b>Proceed</b> to Check Direktoria Statusi.', '2025-11-21 01:21:01'),
(34976, 'sq', 'directory', 'clickaddfeatureddirectory', 'Klikoni këtu to add your own featured Direktoria here', '2025-11-21 01:21:01'),
(34975, 'sq', 'directory', 'Check Directory Submission Status', 'Check Direktoria Submission Statusi', '2025-11-21 01:21:01'),
(34974, 'sq', 'directory', 'Check Directory Status', 'Check Direktoria Statusi', '2025-11-21 01:21:01'),
(34973, 'sq', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. Start with Top priority Kategoria.', '2025-11-21 01:21:01'),
(34971, 'sq', 'directory', 'Approved', 'Approved', '2025-11-21 01:21:01'),
(34972, 'sq', 'directory', 'Captcha', 'Captcha', '2025-11-21 01:21:01'),
(34970, 'sq', 'directory', 'Add back to directory list', 'Add Prapa to Direktoria list', '2025-11-21 01:21:01'),
(34969, 'sq', 'dashboard', 'Worst Rank', 'Worst Renditja', '2025-11-21 01:21:01'),
(34968, 'sq', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility Rezultati (Standard Deviation)', '2025-11-21 01:21:01'),
(34967, 'sq', 'dashboard', 'Volatility Score', 'Volatility Rezultati', '2025-11-21 01:21:01'),
(34966, 'sq', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'Volatility data requires at least 2 Renditje checks within the selected period.', '2025-11-21 01:21:01'),
(34965, 'sq', 'dashboard', 'Volatility', 'Volatility', '2025-11-21 01:21:01'),
(34964, 'sq', 'dashboard', 'Trend', 'Trend', '2025-11-21 01:21:01'),
(34963, 'sq', 'dashboard', 'Top 3', 'Top 3', '2025-11-21 01:21:01'),
(34962, 'sq', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile Fjalë kyçe', '2025-11-21 01:21:01'),
(34961, 'sq', 'dashboard', 'Top 10', 'Top 10', '2025-11-21 01:21:01'),
(34960, 'sq', 'dashboard', 'Ranking Volatility', 'Renditje Volatility', '2025-11-21 01:21:01'),
(34959, 'sq', 'dashboard', 'positions', 'positions', '2025-11-21 01:21:01'),
(34958, 'sq', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-11-21 01:21:01'),
(34957, 'sq', 'dashboard', 'Keywords with most ranking fluctuations', 'Fjalë kyçe with most Renditje fluctuations', '2025-11-21 01:21:01'),
(34956, 'sq', 'dashboard', 'Keywords by Ranking Position', 'Fjalë kyçe by Renditje Pozicioni', '2025-11-21 01:21:01'),
(34955, 'sq', 'dashboard', 'Keyword Statistics', 'Fjalë kyçe Statistikat', '2025-11-21 01:21:01'),
(34954, 'sq', 'dashboard', 'Keyword Distribution by Rank', 'Fjalë kyçe Distribution by Renditja', '2025-11-21 01:21:01'),
(34953, 'sq', 'dashboard', 'Best Rank', 'Best Renditja', '2025-11-21 01:21:01'),
(34951, 'sq', 'common', 'Yes', 'Po', '2025-11-21 01:21:01'),
(34952, 'sq', 'dashboard', 'Avg Rank', 'Avg Renditja', '2025-11-21 01:21:01'),
(34950, 'sq', 'common', 'Websites Count', 'Faqet Numri', '2025-11-21 01:21:01'),
(34949, 'sq', 'common', 'Website', 'Faqja', '2025-11-21 01:21:01'),
(34948, 'sq', 'common', 'Warnings', 'Warnings', '2025-11-21 01:21:01'),
(34947, 'sq', 'common', 'User Type', 'Përdoruesi Lloji', '2025-11-21 01:21:01'),
(34946, 'sq', 'common', 'User Panel', 'Përdoruesi Panel', '2025-11-21 01:21:01'),
(34944, 'sq', 'common', 'Url', 'URL', '2025-11-21 01:21:01'),
(34945, 'sq', 'common', 'User', 'Përdoruesi', '2025-11-21 01:21:01'),
(34942, 'sq', 'common', 'Tools', 'Mjetet', '2025-11-21 01:21:01'),
(34943, 'sq', 'common', 'Total', 'Gjithsej', '2025-11-21 01:21:01'),
(34941, 'sq', 'common', 'Thank you', 'Thank you', '2025-11-21 01:21:01'),
(34940, 'sq', 'common', 'Support', 'Mbështetje', '2025-11-21 01:21:01'),
(34938, 'sq', 'common', 'Spam Score', 'Spam Rezultati', '2025-11-21 01:21:01'),
(34939, 'sq', 'common', 'Status', 'Statusi', '2025-11-21 01:21:01'),
(34936, 'sq', 'common', 'signin', 'Hyni', '2025-11-21 01:21:01'),
(34937, 'sq', 'common', 'Source', 'Burimi', '2025-11-21 01:21:01'),
(34933, 'sq', 'common', 'Server', 'Server', '2025-11-21 01:21:01'),
(34934, 'sq', 'common', 'Sign out', 'Sign out', '2025-11-21 01:21:01'),
(34935, 'sq', 'common', 'Sign Up', 'Regjistrohuni', '2025-11-21 01:21:01'),
(34932, 'sq', 'common', 'Seo Tools', 'Mjete SEO', '2025-11-21 01:21:01'),
(34931, 'sq', 'common', 'Seo Plugins', 'Seo Shtojcat', '2025-11-21 01:21:01'),
(34930, 'sq', 'common', 'Select', 'Zgjidh', '2025-11-21 01:21:01'),
(34929, 'sq', 'common', 'Search Engine Count', 'Motor kërkimi Numri', '2025-11-21 01:21:01'),
(34928, 'sq', 'common', 'Search Engine', 'Motor kërkimi', '2025-11-21 01:21:01'),
(34927, 'sq', 'common', 'Sample CSV File', 'Sample CSV Skedari', '2025-11-21 01:21:01'),
(34881, 'sq', 'common', 'help', 'Ndihmë', '2025-11-21 01:21:01'),
(34882, 'sq', 'common', 'hidenews', 'Hide Seo Panel News', '2025-11-21 01:21:01'),
(34883, 'sq', 'common', 'Home', 'Kreu', '2025-11-21 01:21:01'),
(34884, 'sq', 'common', 'Id', 'Id', '2025-11-21 01:21:01'),
(34885, 'sq', 'common', 'Inactivate', 'Inactivate', '2025-11-21 01:21:01'),
(34886, 'sq', 'common', 'Inactive', 'Joaktiv', '2025-11-21 01:21:01'),
(34887, 'sq', 'common', 'Internal error occured', 'Internal Gabim occured', '2025-11-21 01:21:01'),
(34888, 'sq', 'common', 'Invalid characters', 'E pavlefshme characters', '2025-11-21 01:21:01'),
(34889, 'sq', 'common', 'Invalid code entered', 'E pavlefshme code entered', '2025-11-21 01:21:01'),
(34890, 'sq', 'common', 'Invalid email address entered', 'E pavlefshme Email-i address entered', '2025-11-21 01:21:01'),
(34891, 'sq', 'common', 'Invalid Url', 'E pavlefshme Url', '2025-11-21 01:21:01'),
(34892, 'sq', 'common', 'Invalid value', 'E pavlefshme Vlera', '2025-11-21 01:21:01'),
(34893, 'sq', 'common', 'Keyword', 'Fjalë kyçe', '2025-11-21 01:21:01'),
(34894, 'sq', 'common', 'Keywords', 'Fjalë kyçe', '2025-11-21 01:21:01'),
(34895, 'sq', 'common', 'Keywords Count', 'Fjalë kyçe Numri', '2025-11-21 01:21:01'),
(34896, 'sq', 'common', 'lang', 'Gjuha', '2025-11-21 01:21:01'),
(34897, 'sq', 'common', 'Link', 'Lidhje', '2025-11-21 01:21:01'),
(34898, 'sq', 'common', 'Logout', 'Dilni', '2025-11-21 01:21:01'),
(34899, 'sq', 'common', 'Metric', 'Metric', '2025-11-21 01:21:01'),
(34900, 'sq', 'common', 'MOZ Rank', 'Renditja Moz', '2025-11-21 01:21:01'),
(34901, 'sq', 'common', 'My Account', 'Llogaria ime', '2025-11-21 01:21:01'),
(34902, 'sq', 'Common', 'Name', 'Emri', '2025-11-21 01:21:01'),
(34903, 'sq', 'common', 'New User Type', 'New Përdoruesi Lloji', '2025-11-21 01:21:01'),
(34904, 'sq', 'common', 'No', 'Jo', '2025-11-21 01:21:01'),
(34905, 'sq', 'common', 'No Keywords Found', 'No Fjalë kyçe Found', '2025-11-21 01:21:01'),
(34906, 'sq', 'common', 'No Records Found', 'No Records Found', '2025-11-21 01:21:01'),
(34907, 'sq', 'common', 'noactivetools', 'No Aktiv Mjete SEO Found!', '2025-11-21 01:21:01'),
(34908, 'sq', 'common', 'nowebsites', 'No Faqet Found', '2025-11-21 01:21:01'),
(34909, 'sq', 'common', 'Number', 'Numri', '2025-11-21 01:21:01'),
(34910, 'sq', 'common', 'Page Authority', 'Autoriteti i faqes', '2025-11-21 01:21:01'),
(34911, 'sq', 'common', 'Pagerank', 'Pagerank', '2025-11-21 01:21:01'),
(34912, 'sq', 'common', 'password632', 'The Fjalëkalimi string should have a length between 6 and 32', '2025-11-21 01:21:01'),
(34913, 'sq', 'common', 'passwordnotmatch', 'The passwords do not match', '2025-11-21 01:21:01'),
(34914, 'sq', 'common', 'Period', 'Period', '2025-11-21 01:21:01'),
(34915, 'sq', 'common', 'Plugins', 'Shtojcat', '2025-11-21 01:21:01'),
(34916, 'sq', 'common', 'Powered by', 'Powered by', '2025-11-21 01:21:01'),
(34917, 'sq', 'common', 'Price', 'Price', '2025-11-21 01:21:01'),
(34918, 'sq', 'common', 'Pricing', 'Pricing', '2025-11-21 01:21:01'),
(34919, 'sq', 'common', 'Priority', 'Priority', '2025-11-21 01:21:01'),
(34920, 'sq', 'common', 'Profile', 'Profili', '2025-11-21 01:21:01'),
(34921, 'sq', 'common', 'Range', 'Range', '2025-11-21 01:21:01'),
(34922, 'sq', 'common', 'Rank', 'Renditja', '2025-11-21 01:21:01'),
(34923, 'sq', 'common', 'Rankings', 'Renditjet', '2025-11-21 01:21:01'),
(34924, 'sq', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification Dështoi', '2025-11-21 01:21:01'),
(34925, 'sq', 'common', 'Reports', 'Raportet', '2025-11-21 01:21:01'),
(34926, 'sq', 'common', 'Results', 'Rezultatet', '2025-11-21 01:21:01'),
(34863, 'sq', 'common', 'Date', 'Data', '2025-11-21 01:21:01'),
(34864, 'sq', 'common', 'Debug', 'Debug', '2025-11-21 01:21:01'),
(34865, 'sq', 'common', 'Delete', 'Fshi', '2025-11-21 01:21:01'),
(34866, 'sq', 'common', 'Details', 'Detajet', '2025-11-21 01:21:01'),
(34867, 'sq', 'common', 'Directory', 'Direktoria', '2025-11-21 01:21:01'),
(34868, 'sq', 'common', 'Domain Authority', 'Autoriteti i domenit', '2025-11-21 01:21:01'),
(34869, 'sq', 'common', 'Donate', 'Donate', '2025-11-21 01:21:01'),
(34870, 'sq', 'common', 'Edit', 'Ndrysho', '2025-11-21 01:21:01'),
(34871, 'sq', 'common', 'Edit User Type', 'Ndrysho Përdoruesi Lloji', '2025-11-21 01:21:01'),
(34872, 'sq', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2025-11-21 01:21:01'),
(34873, 'sq', 'common', 'entrynotvalid', 'The entry entered doesn''t seem to be E vlefshme', '2025-11-21 01:21:01'),
(34874, 'sq', 'common', 'Errors', 'Errors', '2025-11-21 01:21:01'),
(34875, 'sq', 'common', 'failed', 'Dështoi', '2025-11-21 01:21:01'),
(34876, 'sq', 'common', 'forum', 'Forum', '2025-11-21 01:21:01'),
(34877, 'sq', 'common', 'Found', 'Found', '2025-11-21 01:21:01'),
(34878, 'sq', 'common', 'General', 'General', '2025-11-21 01:21:01'),
(34879, 'sq', 'common', 'Google Pagerank', 'Google Pagerank', '2025-11-21 01:21:01'),
(34880, 'sq', 'common', 'Hello', 'Hello', '2025-11-21 01:21:01'),
(34850, 'sq', 'common', 'Active', 'Aktiv', '2025-11-21 01:21:01'),
(34851, 'sq', 'common', 'Admin Panel', 'Administrator Panel', '2025-11-21 01:21:01'),
(34852, 'sq', 'common', 'Alexa Rank', 'Renditja Alexa', '2025-11-21 01:21:01'),
(34853, 'sq', 'common', 'All', 'Të gjitha', '2025-11-21 01:21:01'),
(34854, 'sq', 'common', 'API Token', 'API Token', '2025-11-21 01:21:01'),
(34855, 'sq', 'common', 'Blog', 'Blog', '2025-11-21 01:21:01'),
(34856, 'sq', 'common', 'Category', 'Kategoria', '2025-11-21 01:21:01'),
(34857, 'sq', 'common', 'Checked', 'Checked', '2025-11-21 01:21:01'),
(34858, 'sq', 'common', 'contact', 'Kontakti', '2025-11-21 01:21:01'),
(34859, 'sq', 'common', 'copyright', 'Copyright © [year] www.seopanel.org All rights reserved', '2025-11-21 01:21:01'),
(34860, 'sq', 'common', 'Country', 'Shteti', '2025-11-21 01:21:01'),
(34861, 'sq', 'common', 'Crawl Meta Data', 'Crawl Meta Data', '2025-11-21 01:21:01'),
(34862, 'sq', 'common', 'Dashboard', 'Paneli', '2025-11-21 01:21:01'),
(34849, 'sq', 'common', 'Activate', 'Activate', '2025-11-21 01:21:01'),
(34848, 'sq', 'common', 'Action', 'Action', '2025-11-21 01:21:01'),
(34847, 'sq', 'button', 'Submit', 'Dërgo', '2025-11-21 01:21:01'),
(34846, 'sq', 'button', 'Skip', 'Skip', '2025-11-21 01:21:01'),
(34845, 'sq', 'button', 'Show Records', 'Show Records', '2025-11-21 01:21:01'),
(34843, 'sq', 'button', 'Search', 'Kërko', '2025-11-21 01:21:01'),
(34844, 'sq', 'button', 'Show Details', 'Show Detajet', '2025-11-21 01:21:01'),
(34841, 'sq', 'button', 'Proceed', 'Proceed', '2025-11-21 01:21:01'),
(34842, 'sq', 'button', 'Reload', 'Reload', '2025-11-21 01:21:01'),
(34840, 'sq', 'button', 'Check Status', 'Check Statusi', '2025-11-21 01:21:01'),
(34838, 'sq', 'blog', 'Older Posts', 'Older Posts', '2025-11-21 01:21:01'),
(34839, 'sq', 'button', 'Cancel', 'Anulo', '2025-11-21 01:21:01'),
(34837, 'sq', 'blog', 'NothingFound_text2', 'Sorry, but nothing matched your Kërko criteria. Ju lutem provoni përsëri with some different Fjalë kyçe.', '2025-11-21 01:21:01'),
(34836, 'sq', 'blog', 'Nothing Found', 'Nothing Found', '2025-11-21 01:21:01'),
(34835, 'sq', 'blog', 'Newer Posts', 'Newer Posts', '2025-11-21 01:21:01'),
(34834, 'sq', 'backlink', 'Saved backlink results of', 'Saved Lidhje mbrapsht Rezultatet of', '2025-11-21 01:21:01'),
(34832, 'sq', 'backlink', 'Domain Backlink Count', 'Domain Lidhje mbrapsht Numri', '2025-11-21 01:21:01'),
(34833, 'sq', 'backlink', 'Domain Backlinks', 'Domain Lidhje mbrapsht', '2025-11-21 01:21:01'),
(34830, 'sq', 'backlink', 'Backlink Count', 'Lidhje mbrapsht Numri', '2025-11-21 01:21:01'),
(34831, 'sq', 'backlink', 'clickproceedbacklink', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Lidhje mbrapsht.', '2025-11-21 01:21:01'),
(34829, 'sq', 'api', 'API Url', 'API Url', '2025-11-21 01:21:01'),
(34828, 'sq', 'api', 'API Guide', 'API Guide', '2025-11-21 01:21:01'),
(34827, 'sq', 'analytics', 'view_id_not_found_error', 'Gabim: Analitika Shiko ID is not set for Faqja. Ndrysho faqen and Përditëso Shiko ID.', '2025-11-21 01:21:01'),
(34825, 'sq', 'analytics', 'Sessions', 'Sesionet', '2025-11-21 01:21:01'),
(34826, 'sq', 'analytics', 'Users', 'Përdoruesit', '2025-11-21 01:21:01'),
(34824, 'sq', 'analytics', 'New Users', 'New Përdoruesit', '2025-11-21 01:21:01'),
(34822, 'sq', 'analytics', 'Bounce Rate', 'Norma e kërcimit', '2025-11-21 01:21:01'),
(34823, 'sq', 'analytics', 'Goal Completions', 'Goal Completions', '2025-11-21 01:21:01'),
(34821, 'sq', 'analytics', 'Avg. Session Duration', 'Avg. Session Duration', '2025-11-21 01:21:01'),
(36257, 'sw', 'siteauditor', 'Exclude links', 'Exclude links', '2025-11-21 01:21:20'),
(36256, 'sw', 'siteauditor', 'Duplicate Title', 'Duplicate Kichwa', '2025-11-21 01:21:20'),
(36255, 'sw', 'siteauditor', 'Duplicate Keywords', 'Duplicate Maneno muhimu', '2025-11-21 01:21:20'),
(36253, 'sw', 'siteauditor', 'Crawling Page', 'Crawling Ukurasa', '2025-11-21 01:21:20'),
(36254, 'sw', 'siteauditor', 'Duplicate Description', 'Duplicate Maelezo', '2025-11-21 01:21:20'),
(36252, 'sw', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'crawled successfully! Waiting for crawling Ifuatayo Ukurasa for', '2025-11-21 01:21:20'),
(36251, 'sw', 'siteauditor', 'Crawled Pages', 'Crawled Kurasa', '2025-11-21 01:21:20'),
(36250, 'sw', 'siteauditor', 'Crawled', 'Crawled', '2025-11-21 01:21:20'),
(36249, 'sw', 'siteauditor', 'Completed project execution', 'Imekamilika Mradi execution', '2025-11-21 01:21:20'),
(36248, 'sw', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will Ongezeko the execution Muda of a Mradi', '2025-11-21 01:21:20'),
(36247, 'sw', 'siteauditor', 'Check Score', 'Check Alama', '2025-11-21 01:21:20'),
(36246, 'sw', 'siteauditor', 'Check pages indexed or not', 'Check Kurasa indexed or not', '2025-11-21 01:21:20'),
(36245, 'sw', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of Kurasa', '2025-11-21 01:21:20'),
(36244, 'sw', 'siteauditor', 'Check google pagerank of pages', 'Check Google pagerank of Kurasa', '2025-11-21 01:21:20'),
(36243, 'sw', 'siteauditor', 'Check broken links in a page', 'Check broken links in a Ukurasa', '2025-11-21 01:21:20'),
(36242, 'sw', 'siteauditor', 'Check backlinks of pages', 'Check Viungo vya nyuma of Kurasa', '2025-11-21 01:21:20'),
(36241, 'sw', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded from sitemap', '2025-11-21 01:21:20'),
(36240, 'sw', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded from Ripoti', '2025-11-21 01:21:20'),
(36239, 'sw', 'siteauditor', 'Anchor', 'Anchor', '2025-11-21 01:21:20'),
(36238, 'sw', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up Hadi tarehe.', '2025-11-21 01:21:20'),
(36237, 'sw', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up Hadi tarehe. <br>Please Pakua new Toleo', '2025-11-21 01:21:20'),
(36236, 'sw', 'settings', 'Verify connection', 'Verify connection', '2025-11-21 01:21:20'),
(36235, 'sw', 'settings', 'syssettingssaved', 'Mipangilio ya mfumo saved successfully!', '2025-11-21 01:21:20'),
(36234, 'sw', 'settings', 'SP_USER_REGISTRATION', 'Mtumiaji registration interface', '2025-11-21 01:21:20'),
(36233, 'sw', 'settings', 'SP_USER_GEN_REPORT', 'Allow Mtumiaji to generate Ripoti', '2025-11-21 01:21:20'),
(36232, 'sw', 'settings', 'SP_USER_AGENT', 'Mtumiaji agent', '2025-11-21 01:21:20'),
(36231, 'sw', 'settings', 'SP_TITLE', 'Seo Panel Kichwa', '2025-11-21 01:21:20'),
(36230, 'sw', 'settings', 'SP_TIME_ZONE', 'Muda Zone', '2025-11-21 01:21:20'),
(36229, 'sw', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Chini kabisa Allowed Reporting Interval', '2025-11-21 01:21:20'),
(36228, 'sw', 'settings', 'SP_SMTP_USERNAME', 'SMTP Jina la mtumiaji', '2025-11-21 01:21:20'),
(36227, 'sw', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2025-11-21 01:21:20'),
(36226, 'sw', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Neno la siri', '2025-11-21 01:21:20'),
(36225, 'sw', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2025-11-21 01:21:20'),
(36224, 'sw', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2025-11-21 01:21:20'),
(36223, 'sw', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2025-11-21 01:21:20'),
(36222, 'sw', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send Maalum header with curl request', '2025-11-21 01:21:20'),
(36221, 'sw', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of Barua pepe Arifa for Ripoti', '2025-11-21 01:21:20'),
(36220, 'sw', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Crawl relative links in a Ukurasa', '2025-11-21 01:21:20'),
(36219, 'sw', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2025-11-21 01:21:20'),
(36218, 'sw', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2025-11-21 01:21:20'),
(36217, 'sw', 'settings', 'SP_PAGINGNO', 'Nambari of entries per Ukurasa', '2025-11-21 01:21:20'),
(36216, 'sw', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Nambari of Maneno muhimu needs to be checked in each cron execution', '2025-11-21 01:21:20'),
(36215, 'sw', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2025-11-21 01:21:20'),
(36214, 'sw', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2025-11-21 01:21:20'),
(36213, 'sw', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2025-11-21 01:21:20'),
(36212, 'sw', 'settings', 'SP_KEYWORDS', 'Seo Panel Maneno muhimu', '2025-11-21 01:21:20'),
(36211, 'sw', 'settings', 'SP_HOTLINKING', 'Image hotlink protection Imewashwa', '2025-11-21 01:21:20'),
(36210, 'sw', 'settings', 'SP_GOOGLE_API_KEY', 'Google Ufunguo wa API', '2025-11-21 01:21:20'),
(36209, 'sw', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2025-11-21 01:21:20'),
(36208, 'sw', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2025-11-21 01:21:20'),
(36207, 'sw', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google Uchanganuzi Tracking Code', '2025-11-21 01:21:20'),
(36206, 'sw', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2025-11-21 01:21:20'),
(36205, 'sw', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable Proxy for Google API', '2025-11-21 01:21:20'),
(36204, 'sw', 'settings', 'SP_ENABLE_PROXY', 'Enable Proxy', '2025-11-21 01:21:20'),
(36203, 'sw', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2025-11-21 01:21:20'),
(36202, 'sw', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for Kiungo cha nyuma and Kikaguzi cha kumalizika', '2025-11-21 01:21:20'),
(36201, 'sw', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2025-11-21 01:21:20'),
(36200, 'sw', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2025-11-21 01:21:20'),
(36199, 'sw', 'settings', 'SP_DFS_API_PASSWORD', 'API Neno la siri', '2025-11-21 01:21:20'),
(36198, 'sw', 'settings', 'SP_DFS_API_LOGIN', 'API Ingia', '2025-11-21 01:21:20'),
(36197, 'sw', 'settings', 'SP_DESCRIPTION', 'Seo Panel Maelezo', '2025-11-21 01:21:20'),
(36196, 'sw', 'settings', 'SP_DEFAULTLANG', 'Chaguo-msingi Lugha', '2025-11-21 01:21:20'),
(36195, 'sw', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider crawl(seconds)', '2025-11-21 01:21:20'),
(36194, 'sw', 'settings', 'SP_COMPANY_NAME', 'Company Jina', '2025-11-21 01:21:20'),
(36193, 'sw', 'settings', 'SP_API_KEY', 'Seo Panel Ufunguo wa API', '2025-11-21 01:21:20'),
(36192, 'sw', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow Watumiaji to Ratiba Ripoti', '2025-11-21 01:21:20'),
(36191, 'sw', 'settings', 'seopanel_title', 'Seo Panel: World''s Ya kwanza open Chanzo seo control panel for managing multiple web sites', '2025-11-21 01:21:20'),
(36190, 'sw', 'settings', 'seopanel_description', 'A complete free control panel for managing Injini ya utafutaji optimization of your Tovuti. It containing lots of hot Zana za SEO to Ongezeko and track the performace your Tovuti. Its an open Chanzo software and also you can develop your own seo Programu-jalizi for seo panel.', '2025-11-21 01:21:20'),
(36189, 'sw', 'settings', 'Send Email', 'Send Barua pepe', '2025-11-21 01:21:20'),
(36187, 'sw', 'settings', 'SA_CRAWL_DELAY_TIME', 'Mkaguzi wa tovuti crawl delay between each Kurasa', '2025-11-21 01:21:20'),
(36188, 'sw', 'settings', 'SA_MAX_NO_PAGES', 'Upeo wa juu Nambari of Kurasa allowed per Tovuti', '2025-11-21 01:21:20'),
(36186, 'sw', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate Proxy When Crawling Imeshindwa', '2025-11-21 01:21:20'),
(36185, 'sw', 'settings', 'Please update MOZ settings to get complete results', 'Please Sasisha MOZ Mipangilio to get complete Matokeo', '2025-11-21 01:21:20'),
(36184, 'sw', 'settings', 'Please update google settings to get the results', 'Please Sasisha Google Mipangilio to get the Matokeo', '2025-11-21 01:21:20'),
(36183, 'sw', 'settings', 'getallpluginfree', 'Also get all <b>Programu-jalizi</b> we develop for <b>Free!</b>', '2025-11-21 01:21:20'),
(36182, 'sw', 'settings', 'entersmtpdetails', 'Tafadhali ingiza SMTP mail Usanidi', '2025-11-21 01:21:20'),
(36181, 'sw', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP Proxy Tunnel', '2025-11-21 01:21:20'),
(36180, 'sw', 'settings', 'click-to-get-moz-account', 'Bonyeza hapa to get MOZ Akaunti', '2025-11-21 01:21:20'),
(36179, 'sw', 'settings', 'click-to-get-google-api-key', 'Bonyeza hapa to get Google Ufunguo wa API', '2025-11-21 01:21:20'),
(36178, 'sw', 'settings', 'click-to-get-google-api-client-id', 'Bonyeza hapa to get Google API Client Id', '2025-11-21 01:21:20'),
(36177, 'sw', 'settings', 'click-to-get-dataforseo-account', 'Bonyeza hapa to get Free DataForSEO Akaunti', '2025-11-21 01:21:20'),
(36176, 'sw', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Donate $100</b> and become a <b>sponsor</b> of Seo Panel.', '2025-11-21 01:21:20'),
(36175, 'sw', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another Proxy When Crawling Imeshindwa', '2025-11-21 01:21:20'),
(36173, 'sw', 'settings', 'Check for Updates', 'Check for Updates', '2025-11-21 01:21:20'),
(36174, 'sw', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Upeo wa juu Nambari of proxies used in single execution', '2025-11-21 01:21:20'),
(36171, 'sw', 'settings', 'API_SECRET', 'API Secret', '2025-11-21 01:21:20'),
(36172, 'sw', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2025-11-21 01:21:20'),
(36170, 'sw', 'settings', 'allsettingssaved', 'All Mipangilio saved successfully!', '2025-11-21 01:21:20'),
(36169, 'sw', 'seotools', 'Website Search Summary', 'Tovuti Tafuta Summary', '2025-11-21 01:21:20'),
(36168, 'sw', 'seotools', 'Website Search Reports', 'Tovuti Tafuta Ripoti', '2025-11-21 01:21:20'),
(36167, 'sw', 'seotools', 'Website Analytics Summary', 'Tovuti Uchanganuzi Summary', '2025-11-21 01:21:20'),
(36166, 'sw', 'seotools', 'webmaster-tools', 'Webmaster Zana', '2025-11-21 01:21:20'),
(36164, 'sw', 'seotools', 'User Access', 'Mtumiaji Access', '2025-11-21 01:21:20'),
(36165, 'sw', 'seotools', 'web-analytics', 'Tovuti Uchanganuzi', '2025-11-21 01:21:20'),
(36163, 'sw', 'seotools', 'Submission Reports', 'Submission Ripoti', '2025-11-21 01:21:20'),
(36162, 'sw', 'seotools', 'Social Media Report Summary', 'Mitandao ya kijamii Ripoti Summary', '2025-11-21 01:21:20'),
(36160, 'sw', 'seotools', 'sm-checker', 'Mitandao ya kijamii Checker', '2025-11-21 01:21:20'),
(36161, 'sw', 'seotools', 'Social Media Links', 'Mitandao ya kijamii Links', '2025-11-21 01:21:20'),
(36159, 'sw', 'seotools', 'Skipped Directories', 'Skipped Directories', '2025-11-21 01:21:20'),
(36158, 'sw', 'seotools', 'sitemap-generator', 'Sitemap Generator', '2025-11-21 01:21:20'),
(36157, 'sw', 'seotools', 'Sitemap Reports Summary', 'Sitemap Ripoti Summary', '2025-11-21 01:21:20'),
(36156, 'sw', 'seotools', 'site-auditor', 'Mkaguzi wa tovuti', '2025-11-21 01:21:20'),
(36154, 'sw', 'seotools', 'Saturation Reports', 'Saturation Ripoti', '2025-11-21 01:21:20'),
(36155, 'sw', 'seotools', 'saturation-checker', 'Kumalizika kwa injini ya utafutaji', '2025-11-21 01:21:20'),
(36152, 'sw', 'seotools', 'Review Report Summary', 'Mapitio Ripoti Summary', '2025-11-21 01:21:20'),
(36153, 'sw', 'seotools', 'review-manager', 'Mapitio Manager', '2025-11-21 01:21:20'),
(36151, 'sw', 'seotools', 'Review Links', 'Mapitio Links', '2025-11-21 01:21:20'),
(36150, 'sw', 'seotools', 'rank-checker', 'Kikaguzi cha daraja', '2025-11-21 01:21:20'),
(36149, 'sw', 'seotools', 'Rank Reports', 'Daraja Ripoti', '2025-11-21 01:21:20'),
(36148, 'sw', 'seotools', 'Quick Saturation Checker', 'Quick Kikaguzi cha kumalizika', '2025-11-21 01:21:20'),
(36147, 'sw', 'seotools', 'Quick Rank Checker', 'Quick Kikaguzi cha daraja', '2025-11-21 01:21:20'),
(36144, 'sw', 'seotools', 'Quick Checker', 'Quick Checker', '2025-11-21 01:21:20'),
(36145, 'sw', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed Checker', '2025-11-21 01:21:20'),
(36146, 'sw', 'seotools', 'Quick Position Checker', 'Quick Nafasi Checker', '2025-11-21 01:21:20'),
(36143, 'sw', 'seotools', 'Quick Backlinks Checker', 'Quick Viungo vya nyuma Checker', '2025-11-21 01:21:20'),
(36141, 'sw', 'seotools', 'pagespeed', 'PageSpeed Insights', '2025-11-21 01:21:20'),
(36142, 'sw', 'seotools', 'PageSpeed Reports', 'PageSpeed Ripoti', '2025-11-21 01:21:20'),
(36140, 'sw', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for Ripoti generation.\r\nThis action may cause captcha in Injini ya utafutaji Matokeo.', '2025-11-21 01:21:20'),
(36139, 'sw', 'seotools', 'Keywords Manager', 'Maneno muhimu Manager', '2025-11-21 01:21:20'),
(36137, 'sw', 'seotools', 'Keyword Search Summary', 'Neno muhimu Tafuta Summary', '2025-11-21 01:21:20'),
(36138, 'sw', 'seotools', 'keyword-position-checker', 'Nafasi ya neno muhimu Checker', '2025-11-21 01:21:20'),
(36135, 'sw', 'seotools', 'Keyword Position Summary', 'Nafasi ya neno muhimu Summary', '2025-11-21 01:21:20'),
(36136, 'sw', 'seotools', 'Keyword Search Reports', 'Neno muhimu Tafuta Ripoti', '2025-11-21 01:21:20'),
(36134, 'sw', 'seotools', 'Import Project Links', 'Leta Mradi Links', '2025-11-21 01:21:20'),
(36133, 'sw', 'seotools', 'Graphical Reports', 'Graphical Ripoti', '2025-11-21 01:21:20'),
(36132, 'sw', 'seotools', 'Graphical Position Reports', 'Graphical Nafasi Ripoti', '2025-11-21 01:21:20'),
(36131, 'sw', 'seotools', 'Google Sitemap Generator', 'Google Sitemap Generator', '2025-11-21 01:21:20'),
(36129, 'sw', 'seotools', 'Generate Reports', 'Generate Ripoti', '2025-11-21 01:21:20'),
(36130, 'sw', 'seotools', 'Generate Saturation Reports', 'Generate Saturation Ripoti', '2025-11-21 01:21:20'),
(36128, 'sw', 'seotools', 'Generate Rank Reports', 'Generate Daraja Ripoti', '2025-11-21 01:21:20'),
(36127, 'sw', 'seotools', 'Generate Keyword Reports', 'Generate Neno muhimu Ripoti', '2025-11-21 01:21:20'),
(36126, 'sw', 'seotools', 'Generate Backlinks Reports', 'Generate Viungo vya nyuma Ripoti', '2025-11-21 01:21:20'),
(36125, 'sw', 'seotools', 'Featured Submission', 'Featured Submission', '2025-11-21 01:21:20'),
(36124, 'sw', 'seotools', 'Edit Seo Tool', 'Hariri Seo Tool', '2025-11-21 01:21:20'),
(36123, 'sw', 'seotools', 'directory-submission', 'Saraka Submission', '2025-11-21 01:21:20'),
(36122, 'sw', 'seotools', 'Detailed Reports', 'Detailed Ripoti', '2025-11-21 01:21:20'),
(36121, 'sw', 'seotools', 'Detailed Position Reports', 'Detailed Nafasi Ripoti', '2025-11-21 01:21:20'),
(36109, 'sw', 'saturation', 'Search Engine Saturation Reports', 'Kumalizika kwa injini ya utafutaji Ripoti', '2025-11-21 01:21:20'),
(36110, 'sw', 'searchengine', 'max_results', 'Upeo wa juu Nambari of Matokeo', '2025-11-21 01:21:20'),
(36111, 'sw', 'searchengine', 'no_of_results_page', 'Nambari of Matokeo per Ukurasa', '2025-11-21 01:21:20'),
(36112, 'sw', 'seotools', 'Auditor Projects', 'Auditor Miradi', '2025-11-21 01:21:20'),
(36113, 'sw', 'seotools', 'Auditor Reports', 'Auditor Ripoti', '2025-11-21 01:21:20'),
(36114, 'sw', 'seotools', 'Auditor Settings', 'Auditor Mipangilio', '2025-11-21 01:21:20'),
(36115, 'sw', 'seotools', 'Automatic Submission', 'Kiotomatiki Submission', '2025-11-21 01:21:20'),
(36116, 'sw', 'seotools', 'backlink-checker', 'Viungo vya nyuma Checker', '2025-11-21 01:21:20'),
(36117, 'sw', 'seotools', 'Backlinks Reports', 'Viungo vya nyuma Ripoti', '2025-11-21 01:21:20'),
(36118, 'sw', 'seotools', 'Check Submission Status', 'Check Submission Hali', '2025-11-21 01:21:20'),
(36119, 'sw', 'seotools', 'clickgeneratereports', 'Click on <b>Proceed</b> to generate Ripoti', '2025-11-21 01:21:20'),
(36120, 'sw', 'seotools', 'clickproceedaction', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Matokeo.', '2025-11-21 01:21:20'),
(36078, 'sw', 'rank', 'enterurlproceed', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Google and Daraja la Alexa.', '2025-11-21 01:21:20'),
(36079, 'sw', 'rank', 'Google and Alexa Rank Reports', 'Google and Daraja la Alexa Ripoti', '2025-11-21 01:21:20'),
(36080, 'sw', 'rank', 'Saved rank results of', 'Saved Daraja Matokeo of', '2025-11-21 01:21:20'),
(36081, 'sw', 'register', 'Account Information', 'Akaunti Taarifa', '2025-11-21 01:21:20'),
(36082, 'sw', 'register', 'Already have account', 'Already have an Akaunti?', '2025-11-21 01:21:20'),
(36083, 'sw', 'register', 'First name placeholder', 'Ya kwanza Jina', '2025-11-21 01:21:20'),
(36084, 'sw', 'register', 'Last name placeholder', 'Ya mwisho Jina', '2025-11-21 01:21:20'),
(36085, 'sw', 'register', 'Personal Information', 'Personal Taarifa', '2025-11-21 01:21:20'),
(36086, 'sw', 'register', 'Register subtitle', 'Join us Leo and start optimizing your SEO', '2025-11-21 01:21:20'),
(36087, 'sw', 'register', 'Registration', 'Registration', '2025-11-21 01:21:20'),
(36088, 'sw', 'register', 'Subscription Details', 'Subscription Maelezo', '2025-11-21 01:21:20'),
(36089, 'sw', 'register', 'user_confirm_content_1', 'Internal Hitilafu occured while Inachakata Thibitisha request', '2025-11-21 01:21:20'),
(36090, 'sw', 'register', 'user_confirm_mail_cont_1', 'Thank you for your registration with', '2025-11-21 01:21:20'),
(36091, 'sw', 'register', 'user_confirm_mail_cont_2', 'Please click on the following Kiungo to Thibitisha registration', '2025-11-21 01:21:20'),
(36092, 'sw', 'report', '2 Days', '2 Days', '2025-11-21 01:21:20'),
(36093, 'sw', 'report', 'Email notification', 'Barua pepe Arifa', '2025-11-21 01:21:20'),
(36094, 'sw', 'report', 'keywordnumbercheckedcronnote', 'Kumbukumbu: Chaguo-msingi 0 means all Maneno muhimu should be checked', '2025-11-21 01:21:20'),
(36095, 'sw', 'report', 'Next report generation time', 'Ifuatayo Ripoti generation Muda', '2025-11-21 01:21:20'),
(36096, 'sw', 'report', 'Reports generation interval', 'Ripoti generation interval', '2025-11-21 01:21:20'),
(36097, 'sw', 'report', 'reportsettingssaved', 'Ripoti Mipangilio saved successfully!', '2025-11-21 01:21:20'),
(36098, 'sw', 'report', 'sheduledsuccessfully', 'Imepangwa Ripoti generation successfully!', '2025-11-21 01:21:20'),
(36099, 'sw', 'reports', 'report_email_body_text1', 'Your Ripoti generated successfully in seo panel. Please check the attached Ripoti.', '2025-11-21 01:21:20'),
(36100, 'sw', 'reports', 'report_email_body_text2', 'If above Ripoti are not Futa, Please [LOGIN_LINK] to Tazama the Ripoti directly from your Akaunti.', '2025-11-21 01:21:20'),
(36101, 'sw', 'reports', 'report_email_subject', 'Your SEO Ripoti generated successfully', '2025-11-21 01:21:20'),
(36102, 'sw', 'reports', 'Reports Generated Successfully', 'Ripoti Generated Successfully', '2025-11-21 01:21:20'),
(36103, 'sw', 'review', 'Edit Review Link', 'Hariri Mapitio Kiungo', '2025-11-21 01:21:20'),
(36104, 'sw', 'review', 'New Review Link', 'New Mapitio Kiungo', '2025-11-21 01:21:20'),
(36105, 'sw', 'saturation', 'clickproceedsaturation', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Kumalizika kwa injini ya utafutaji Matokeo', '2025-11-21 01:21:20'),
(36106, 'sw', 'saturation', 'GenerateSaturationReports', 'Generate Kumalizika kwa injini ya utafutaji Ripoti', '2025-11-21 01:21:20'),
(36107, 'sw', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick Kumalizika kwa injini ya utafutaji Checker', '2025-11-21 01:21:20'),
(36108, 'sw', 'saturation', 'Saved Search Engine Saturation results of', 'Saved Kumalizika kwa injini ya utafutaji Matokeo of', '2025-11-21 01:21:20'),
(36072, 'sw', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web Proxy', '2025-11-21 01:21:20'),
(36073, 'sw', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web proxy.', '2025-11-21 01:21:20'),
(36074, 'sw', 'QuickWebProxy', 'Server list is empty', 'Server list is empty', '2025-11-21 01:21:20'),
(36075, 'sw', 'QuickWebProxy', 'Url blocked in the web proxy', 'Url blocked in the web proxy', '2025-11-21 01:21:20'),
(36076, 'sw', 'QuickWebProxy', 'Web Proxy', 'Web Proxy', '2025-11-21 01:21:20'),
(36077, 'sw', 'QuickWebProxy', 'Web Server', 'Web Server', '2025-11-21 01:21:20'),
(36071, 'sw', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a proxy', '2025-11-21 01:21:20'),
(36070, 'sw', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow Mtumiaji to access the web proxy', '2025-11-21 01:21:20'),
(36069, 'sw', 'QuickWebProxy', 'Please enter a valid url', 'Tafadhali ingiza a Sahihi url', '2025-11-21 01:21:20'),
(36068, 'sw', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2025-11-21 01:21:20'),
(36067, 'sw', 'proxy', 'Request Count', 'Request Hesabu', '2025-11-21 01:21:20'),
(36066, 'sw', 'proxy', 'proxysyntax', 'Proxy Hostname, Proxy Port, Proxy Jina la mtumiaji, Proxy Neno la siri', '2025-11-21 01:21:20'),
(36065, 'sw', 'proxy', 'Proxyalreadyexist', 'Proxy already exist!', '2025-11-21 01:21:20'),
(36064, 'sw', 'proxy', 'Proxy Username', 'Proxy Jina la mtumiaji', '2025-11-21 01:21:20'),
(36063, 'sw', 'proxy', 'Proxy Password', 'Proxy Neno la siri', '2025-11-21 01:21:20'),
(36062, 'sw', 'proxy', 'enterproxynote', 'Enter proxy one per line in following Muundo.', '2025-11-21 01:21:20'),
(36061, 'sw', 'proxy', 'Edit Proxy', 'Hariri Proxy', '2025-11-21 01:21:20'),
(36060, 'sw', 'proxy', 'click-to-get-proxy', 'Bonyeza hapa to get proxy', '2025-11-21 01:21:20'),
(36059, 'sw', 'plugin', 'Seo Plugin Details', 'Seo Plugin Maelezo', '2025-11-21 01:21:20'),
(36058, 'sw', 'plugin', 'Plugin Name', 'Plugin Jina', '2025-11-21 01:21:20'),
(36057, 'sw', 'plugin', 'Edit Seo Plugin', 'Hariri Seo Plugin', '2025-11-21 01:21:20'),
(36056, 'sw', 'plugin', 'Download Seo Panel Plugins', 'Pakua Seo Panel Programu-jalizi', '2025-11-21 01:21:20'),
(36055, 'sw', 'panel', 'Website Manager', 'Tovuti Manager', '2025-11-21 01:21:20'),
(36054, 'sw', 'panel', 'Website Access Manager', 'Tovuti Access Manager', '2025-11-21 01:21:20'),
(36053, 'sw', 'panel', 'Valid', 'Sahihi', '2025-11-21 01:21:20'),
(36052, 'sw', 'panel', 'User Type Settings', 'Mtumiaji Aina Mipangilio', '2025-11-21 01:21:20'),
(36051, 'sw', 'panel', 'User Type Manager', 'Mtumiaji Aina Manager', '2025-11-21 01:21:20'),
(36050, 'sw', 'panel', 'User Manager', 'Mtumiaji Manager', '2025-11-21 01:21:20'),
(36048, 'sw', 'panel', 'Test Email Settings', 'Test Mipangilio ya barua pepe', '2025-11-21 01:21:20'),
(36049, 'sw', 'panel', 'Themes Manager', 'Themes Manager', '2025-11-21 01:21:20'),
(36047, 'sw', 'panel', 'System Settings', 'Mipangilio ya mfumo', '2025-11-21 01:21:20'),
(36046, 'sw', 'panel', 'Sync Search Engines', 'Sync Injini za utafutaji', '2025-11-21 01:21:20'),
(36045, 'sw', 'panel', 'Submit Sitemap', 'Wasilisha Sitemap', '2025-11-21 01:21:20'),
(36044, 'sw', 'panel', 'Sitemaps', 'Sitemaps', '2025-11-21 01:21:20'),
(36043, 'sw', 'panel', 'Settings', 'Mipangilio', '2025-11-21 01:21:20'),
(36042, 'sw', 'panel', 'Seo Tools Manager', 'Zana za SEO Manager', '2025-11-21 01:21:20'),
(36041, 'sw', 'panel', 'Seo Plugins Manager', 'Seo Programu-jalizi Manager', '2025-11-21 01:21:20'),
(36040, 'sw', 'panel', 'Search Engine Manager', 'Injini ya utafutaji Manager', '2025-11-21 01:21:20'),
(36039, 'sw', 'panel', 'Schedule Reports', 'Ratiba Ripoti', '2025-11-21 01:21:20'),
(36038, 'sw', 'panel', 'Reports Manager', 'Ripoti Manager', '2025-11-21 01:21:20'),
(36037, 'sw', 'panel', 'Report Settings', 'Ripoti Mipangilio', '2025-11-21 01:21:20'),
(36036, 'sw', 'panel', 'Report Generation Manager', 'Ripoti Generation Manager', '2025-11-21 01:21:20'),
(36035, 'sw', 'panel', 'Report Generation Logs', 'Ripoti Generation Logs', '2025-11-21 01:21:20'),
(36034, 'sw', 'panel', 'Proxy Settings', 'Proxy Mipangilio', '2025-11-21 01:21:20'),
(36033, 'sw', 'panel', 'Proxy Perfomance', 'Proxy Perfomance', '2025-11-21 01:21:20'),
(36032, 'sw', 'panel', 'Proxy Manager', 'Proxy Manager', '2025-11-21 01:21:20'),
(36031, 'sw', 'panel', 'Project Summary', 'Mradi Summary', '2025-11-21 01:21:20'),
(36030, 'sw', 'panel', 'Project Manager', 'Mradi Manager', '2025-11-21 01:21:20'),
(36029, 'sw', 'panel', 'New Website', 'New Tovuti', '2025-11-21 01:21:20'),
(36028, 'sw', 'panel', 'New User Type', 'New Mtumiaji Aina', '2025-11-21 01:21:20'),
(36027, 'sw', 'panel', 'New User', 'New Mtumiaji', '2025-11-21 01:21:20'),
(36026, 'sw', 'panel', 'New Proxy', 'New Proxy', '2025-11-21 01:21:20'),
(36025, 'sw', 'panel', 'New Project', 'New Mradi', '2025-11-21 01:21:20'),
(36024, 'sw', 'panel', 'My Profile', 'My Wasifu', '2025-11-21 01:21:20'),
(36023, 'sw', 'panel', 'MOZ Settings', 'MOZ Mipangilio', '2025-11-21 01:21:20'),
(36022, 'sw', 'panel', 'Mail Settings', 'Mail Mipangilio', '2025-11-21 01:21:20'),
(36021, 'sw', 'panel', 'Mail Log Manager', 'Mail Log Manager', '2025-11-21 01:21:20'),
(36020, 'sw', 'panel', 'Log Manager', 'Log Manager', '2025-11-21 01:21:20'),
(36019, 'sw', 'panel', 'Import Websites', 'Leta Tovuti', '2025-11-21 01:21:20'),
(36018, 'sw', 'panel', 'Import Proxy', 'Leta Proxy', '2025-11-21 01:21:20'),
(36017, 'sw', 'panel', 'Google Settings', 'Google Mipangilio', '2025-11-21 01:21:20'),
(36016, 'sw', 'panel', 'Global Reports Settings', 'Global Ripoti Mipangilio', '2025-11-21 01:21:20'),
(36015, 'sw', 'panel', 'Existing', 'Existing', '2025-11-21 01:21:20'),
(36014, 'sw', 'panel', 'Edit Project', 'Hariri Mradi', '2025-11-21 01:21:20'),
(36013, 'sw', 'panel', 'Edit My Profile', 'Hariri My Wasifu', '2025-11-21 01:21:20'),
(36012, 'sw', 'panel', 'Directory Manager', 'Saraka Manager', '2025-11-21 01:21:20'),
(36011, 'sw', 'panel', 'DataForSEO Settings', 'DataForSEO Mipangilio', '2025-11-21 01:21:20'),
(36010, 'sw', 'panel', 'Current Time', 'Current Muda', '2025-11-21 01:21:20'),
(36009, 'sw', 'panel', 'Cron Command', 'Cron Command', '2025-11-21 01:21:20'),
(36008, 'sw', 'panel', 'Crawl Log Manager', 'Crawl Log Manager', '2025-11-21 01:21:20'),
(36007, 'sw', 'panel', 'Connections', 'Connections', '2025-11-21 01:21:20'),
(36006, 'sw', 'panel', 'Check Directory', 'Check Saraka', '2025-11-21 01:21:20'),
(36005, 'sw', 'panel', 'Archived Reports', 'Archived Ripoti', '2025-11-21 01:21:20'),
(36004, 'sw', 'panel', 'API Settings', 'Mipangilio ya API', '2025-11-21 01:21:20'),
(36003, 'sw', 'panel', 'API Manager', 'API Manager', '2025-11-21 01:21:20'),
(36002, 'sw', 'panel', 'API Connection', 'API Connection', '2025-11-21 01:21:20'),
(36001, 'sw', 'panel', 'alsocheckfollowlink', 'Also check following Kiungo if you need more Maelezo.', '2025-11-21 01:21:20'),
(36000, 'sw', 'panel', 'Alerts', 'Tahadhari', '2025-11-21 01:21:20'),
(35999, 'sw', 'panel', 'Add following command to your cron tab', 'Add following command to your cron tab', '2025-11-21 01:21:20'),
(35998, 'sw', 'panel', 'About Us', 'Kuhusu Us', '2025-11-21 01:21:20'),
(35997, 'sw', 'pagespeed', 'Saved page speed results of', 'Saved Ukurasa Kasi Matokeo of', '2025-11-21 01:21:20'),
(35996, 'sw', 'pagespeed', 'PageSpeed Details', 'PageSpeed Maelezo', '2025-11-21 01:21:20'),
(35994, 'sw', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2025-11-21 01:21:20'),
(35995, 'sw', 'pagespeed', 'Page Speed', 'Ukurasa Kasi', '2025-11-21 01:21:20'),
(35993, 'sw', 'pagespeed', 'Mobile Speed', 'Mobile Kasi', '2025-11-21 01:21:20'),
(35992, 'sw', 'pagespeed', 'Desktop Speed', 'Desktop Kasi', '2025-11-21 01:21:20'),
(35991, 'sw', 'myaccount', 'Disconnected', 'Imetenganishwa', '2025-11-21 01:21:20'),
(35990, 'sw', 'myaccount', 'Disconnect', 'Tenganisha', '2025-11-21 01:21:20'),
(35989, 'sw', 'myaccount', 'Connected', 'Imeunganishwa', '2025-11-21 01:21:20'),
(35988, 'sw', 'myaccount', 'Connect', 'Unganisha', '2025-11-21 01:21:20'),
(35987, 'sw', 'login', 'Your Password Reset Successfully', 'Your Neno la siri Weka upya Successfully', '2025-11-21 01:21:20'),
(35986, 'sw', 'login', 'Your Password Reset Failed', 'Your Neno la siri Weka upya Imeshindwa', '2025-11-21 01:21:20'),
(35985, 'sw', 'login', 'Your account password is resetted and new password is', 'Your Akaunti Neno la siri is resetted and new Neno la siri is', '2025-11-21 01:21:20'),
(35984, 'sw', 'login', 'Your account activated successfully', 'Your Akaunti activated successfully', '2025-11-21 01:21:20'),
(35983, 'sw', 'login', 'Welcome message', 'Welcome Rudi! Please Ingia to your Akaunti', '2025-11-21 01:21:20'),
(35982, 'sw', 'login', 'Verification', 'Verification', '2025-11-21 01:21:20'),
(35981, 'sw', 'login', 'usernameexist', 'Jina la mtumiaji already exist!', '2025-11-21 01:21:20'),
(35980, 'sw', 'login', 'Username placeholder', 'Enter your Jina la mtumiaji', '2025-11-21 01:21:20'),
(35979, 'sw', 'login', 'Username', 'Jina la mtumiaji', '2025-11-21 01:21:20'),
(35978, 'sw', 'login', 'user_not_activated_msg', 'Mtumiaji is not activated. Please check your mail for activation', '2025-11-21 01:21:20'),
(35977, 'sw', 'login', 'user_email_not_exist', 'Mtumiaji Barua pepe is not existing in system!', '2025-11-21 01:21:20'),
(35976, 'sw', 'login', 'User Type', 'Mtumiaji Aina', '2025-11-21 01:21:20'),
(35974, 'sw', 'login', 'to login to your account', 'to Ingia to your Akaunti', '2025-11-21 01:21:20'),
(35975, 'sw', 'login', 'User inactive', 'Mtumiaji Siyo amilifu', '2025-11-21 01:21:20'),
(35972, 'sw', 'login', 'Sign In', 'Ingia', '2025-11-21 01:21:20'),
(35973, 'sw', 'login', 'Sign in to your account', 'Ingia to your Akaunti', '2025-11-21 01:21:20'),
(35971, 'sw', 'login', 'Security message', 'Your Taarifa is secure and encrypted', '2025-11-21 01:21:20'),
(35970, 'sw', 'login', 'Request Password', 'Request Neno la siri', '2025-11-21 01:21:20'),
(35969, 'sw', 'login', 'Remember password text', 'Remember your Neno la siri?', '2025-11-21 01:21:20'),
(35968, 'sw', 'login', 'Register', 'Register', '2025-11-21 01:21:20'),
(35967, 'sw', 'login', 'password_reset_success_message', 'Your Neno la siri Weka upya successfully. A confirmation mail send to Barua pepe address. <br>Please check your inbox to get your new Neno la siri.', '2025-11-21 01:21:20'),
(35966, 'sw', 'login', 'Password placeholder', 'Enter your Neno la siri', '2025-11-21 01:21:20'),
(35964, 'sw', 'login', 'Password', 'Neno la siri', '2025-11-21 01:21:20'),
(35965, 'sw', 'login', 'Password incorrect', 'Neno la siri incorrect', '2025-11-21 01:21:20'),
(35963, 'sw', 'login', 'No account text', 'Don''t have an Akaunti?', '2025-11-21 01:21:20'),
(35962, 'sw', 'login', 'newaccountsuccess', 'New Akaunti created successfully!', '2025-11-21 01:21:20'),
(35961, 'sw', 'login', 'Login incorrect', 'Ingia incorrect', '2025-11-21 01:21:20'),
(35960, 'sw', 'login', 'Login', 'Ingia', '2025-11-21 01:21:20'),
(35959, 'sw', 'login', 'Last Name', 'Ya mwisho Jina', '2025-11-21 01:21:20'),
(35958, 'sw', 'login', 'internal_error_mail_send', 'An internal Hitilafu occured while sending Neno la siri Weka upya mail!', '2025-11-21 01:21:20'),
(35957, 'sw', 'login', 'Forgot subtitle', 'Enter your Barua pepe address and we''ll send you instructions to Weka upya your Neno la siri', '2025-11-21 01:21:20'),
(35956, 'sw', 'login', 'Forgot password?', 'Umesahau neno la siri?', '2025-11-21 01:21:20'),
(35955, 'sw', 'login', 'First Name', 'Ya kwanza Jina', '2025-11-21 01:21:20'),
(35954, 'sw', 'login', 'Enter the code as it is shown', 'Enter the code as it is shown', '2025-11-21 01:21:20'),
(35953, 'sw', 'login', 'Enter the code', 'Enter the code', '2025-11-21 01:21:20'),
(35952, 'sw', 'login', 'emailexist', 'Barua pepe already exist!', '2025-11-21 01:21:20'),
(35951, 'sw', 'login', 'Email placeholder', 'your@Barua pepe.com', '2025-11-21 01:21:20'),
(35950, 'sw', 'login', 'Email', 'Barua pepe', '2025-11-21 01:21:20'),
(35949, 'sw', 'login', 'Create New Account', 'Unda New Akaunti', '2025-11-21 01:21:20'),
(35948, 'sw', 'login', 'Create my account', 'Unda Akaunti yangu', '2025-11-21 01:21:20'),
(35947, 'sw', 'login', 'Confirm Password', 'Thibitisha Neno la siri', '2025-11-21 01:21:20'),
(35946, 'sw', 'log', 'Post Fields', 'Post Fields', '2025-11-21 01:21:20'),
(35945, 'sw', 'log', 'Mail Log Details', 'Mail Log Maelezo', '2025-11-21 01:21:20'),
(35944, 'sw', 'log', 'Crawl Log Details', 'Crawl Log Maelezo', '2025-11-21 01:21:20'),
(35943, 'sw', 'log', 'Clear All Logs', 'Futa All Logs', '2025-11-21 01:21:20'),
(35942, 'sw', 'label', 'Year', 'Year', '2025-11-21 01:21:20'),
(35941, 'sw', 'label', 'Write', 'Write', '2025-11-21 01:21:20'),
(35940, 'sw', 'label', 'Weekly', 'Kila wiki', '2025-11-21 01:21:20'),
(35939, 'sw', 'label', 'Week', 'Week', '2025-11-21 01:21:20'),
(35938, 'sw', 'label', 'wantproceed', 'Do you really want to proceed?', '2025-11-21 01:21:20'),
(35937, 'sw', 'label', 'View Reports', 'Tazama Ripoti', '2025-11-21 01:21:20'),
(35936, 'sw', 'label', 'Version', 'Toleo', '2025-11-21 01:21:20'),
(35935, 'sw', 'label', 'User agent', 'Mtumiaji agent', '2025-11-21 01:21:20'),
(35934, 'sw', 'label', 'Usability', 'Usability', '2025-11-21 01:21:20'),
(35933, 'sw', 'label', 'Upgrade', 'Upgrade', '2025-11-21 01:21:20'),
(35932, 'sw', 'label', 'Updated', 'Updated', '2025-11-21 01:21:20'),
(35931, 'sw', 'label', 'Type', 'Aina', '2025-11-21 01:21:20'),
(35930, 'sw', 'label', 'Translators', 'Translators', '2025-11-21 01:21:20'),
(35929, 'sw', 'label', 'translation by', 'translation by', '2025-11-21 01:21:20'),
(35928, 'sw', 'label', 'Total Results', 'Jumla Matokeo', '2025-11-21 01:21:20'),
(35927, 'sw', 'label', 'Title', 'Kichwa', '2025-11-21 01:21:20'),
(35926, 'sw', 'label', 'Theme', 'Theme', '2025-11-21 01:21:20'),
(35925, 'sw', 'label', 'Syntax', 'Syntax', '2025-11-21 01:21:20'),
(35924, 'sw', 'label', 'Success', 'Mafanikio', '2025-11-21 01:21:20'),
(35923, 'sw', 'label', 'Subject', 'Subject', '2025-11-21 01:21:20'),
(35922, 'sw', 'label', 'Sponsors', 'Sponsors', '2025-11-21 01:21:20'),
(35921, 'sw', 'label', 'Speed', 'Kasi', '2025-11-21 01:21:20'),
(35920, 'sw', 'label', 'Select All', 'Chagua All', '2025-11-21 01:21:20'),
(35919, 'sw', 'label', 'Second', 'Second', '2025-11-21 01:21:20'),
(35918, 'sw', 'label', 'Score', 'Alama', '2025-11-21 01:21:20'),
(35916, 'sw', 'label', 'Report Type', 'Ripoti Aina', '2025-11-21 01:21:20'),
(35917, 'sw', 'label', 'Reviews', 'Mapitio', '2025-11-21 01:21:20'),
(35915, 'sw', 'label', 'Referer', 'Referer', '2025-11-21 01:21:20'),
(35914, 'sw', 'label', 'Reference', 'Reference', '2025-11-21 01:21:20'),
(35913, 'sw', 'label', 'Recent Activity', 'Shughuli za hivi karibuni', '2025-11-21 01:21:20'),
(35912, 'sw', 'label', 'Read', 'Read', '2025-11-21 01:21:20'),
(35910, 'sw', 'label', 'Rating', 'Ukadiriaji', '2025-11-21 01:21:20'),
(35911, 'sw', 'label', 'Re-install', 'Re-install', '2025-11-21 01:21:20'),
(35909, 'sw', 'label', 'Proxy', 'Proxy', '2025-11-21 01:21:20'),
(35907, 'sw', 'label', 'Port', 'Port', '2025-11-21 01:21:20'),
(35908, 'sw', 'label', 'Project', 'Mradi', '2025-11-21 01:21:20'),
(35906, 'sw', 'label', 'Plugin', 'Plugin', '2025-11-21 01:21:20'),
(35904, 'sw', 'label', 'Order By', 'Order By', '2025-11-21 01:21:20'),
(35905, 'sw', 'label', 'Overview', 'Muhtasari', '2025-11-21 01:21:20'),
(35902, 'sw', 'label', 'Months', 'Months', '2025-11-21 01:21:20'),
(35903, 'sw', 'label', 'noactiveplugins', 'No Amilifu Seo Programu-jalizi Found!', '2025-11-21 01:21:20'),
(35900, 'sw', 'label', 'Month', 'Month', '2025-11-21 01:21:20'),
(35901, 'sw', 'label', 'Monthly', 'Kila mwezi', '2025-11-21 01:21:20'),
(35899, 'sw', 'label', 'Mobile', 'Mobile', '2025-11-21 01:21:20'),
(35898, 'sw', 'label', 'Minute', 'Minute', '2025-11-21 01:21:20'),
(35897, 'sw', 'label', 'Likes', 'Kupenda', '2025-11-21 01:21:20'),
(35896, 'sw', 'label', 'Keywords', 'Maneno muhimu', '2025-11-21 01:21:20'),
(35895, 'sw', 'label', 'Just Now', 'Just Now', '2025-11-21 01:21:20'),
(35893, 'sw', 'label', 'Include', 'Include', '2025-11-21 01:21:20'),
(35894, 'sw', 'label', 'Installation', 'Installation', '2025-11-21 01:21:20'),
(35892, 'sw', 'label', 'Impressions', 'Impressions', '2025-11-21 01:21:20'),
(35891, 'sw', 'label', 'Hour', 'Hour', '2025-11-21 01:21:20'),
(35889, 'sw', 'label', 'Free', 'Free', '2025-11-21 01:21:20'),
(35890, 'sw', 'label', 'From', 'From', '2025-11-21 01:21:20'),
(35888, 'sw', 'label', 'Followers', 'Followers', '2025-11-21 01:21:20'),
(35886, 'sw', 'label', 'Fail', 'Fail', '2025-11-21 01:21:20'),
(35887, 'sw', 'label', 'Feature', 'Feature', '2025-11-21 01:21:20'),
(35885, 'sw', 'label', 'Exclude', 'Exclude', '2025-11-21 01:21:20'),
(35884, 'sw', 'label', 'Email Body', 'Barua pepe Body', '2025-11-21 01:21:20'),
(35882, 'sw', 'label', 'Developers', 'Developers', '2025-11-21 01:21:20'),
(35883, 'sw', 'label', 'Download', 'Pakua', '2025-11-21 01:21:20'),
(35881, 'sw', 'label', 'Desktop', 'Desktop', '2025-11-21 01:21:20'),
(35880, 'sw', 'label', 'Description', 'Maelezo', '2025-11-21 01:21:20'),
(35879, 'sw', 'label', 'Days', 'Days', '2025-11-21 01:21:20'),
(35877, 'sw', 'label', 'Daily', 'Kila siku', '2025-11-21 01:21:20'),
(35878, 'sw', 'label', 'Day', 'Day', '2025-11-21 01:21:20'),
(35875, 'sw', 'label', 'Cron', 'Cron', '2025-11-21 01:21:20'),
(35876, 'sw', 'label', 'Current', 'Current', '2025-11-21 01:21:20'),
(35873, 'sw', 'label', 'Cookie', 'Cookie', '2025-11-21 01:21:20'),
(35874, 'sw', 'label', 'Count', 'Hesabu', '2025-11-21 01:21:20'),
(35871, 'sw', 'label', 'Clicks', 'Clicks', '2025-11-21 01:21:20'),
(35872, 'sw', 'label', 'Comments', 'Comments', '2025-11-21 01:21:20');
INSERT INTO `texts` VALUES
(35870, 'sw', 'label', 'Click Here', 'Bonyeza hapa', '2025-11-21 01:21:20'),
(35869, 'sw', 'label', 'Clear All', 'Futa All', '2025-11-21 01:21:20'),
(35868, 'sw', 'label', 'Brocken', 'Broken', '2025-11-21 01:21:20'),
(35866, 'sw', 'label', 'Authentication', 'Authentication', '2025-11-21 01:21:20'),
(35867, 'sw', 'label', 'Author', 'Author', '2025-11-21 01:21:20'),
(35865, 'sw', 'label', 'already exist', 'already exist', '2025-11-21 01:21:20'),
(35864, 'sw', 'label', 'Ago', 'Ago', '2025-11-21 01:21:20'),
(35863, 'sw', 'label', 'Access denied', 'Ufikiaji umekataliwa', '2025-11-21 01:21:20'),
(35862, 'sw', 'keyword', 'Your keyword count already reached the limit', 'Neno muhimu Hesabu already reached the limit for this Mtumiaji!', '2025-11-21 01:21:20'),
(35861, 'sw', 'keyword', 'You can add only keywordcount keywords more', 'You can add only [keywordcount] Maneno muhimu for this Mtumiaji!', '2025-11-21 01:21:20'),
(35860, 'sw', 'keyword', 'Top Keywords', 'Top Maneno muhimu', '2025-11-21 01:21:20'),
(35859, 'sw', 'keyword', 'to create new keywords', 'to Unda new Maneno muhimu', '2025-11-21 01:21:20'),
(35858, 'sw', 'keyword', 'Successfully crawled keyword', 'Successfully crawled Neno muhimu', '2025-11-21 01:21:20'),
(35857, 'sw', 'keyword', 'Show All results', 'Show All Matokeo', '2025-11-21 01:21:20'),
(35856, 'sw', 'keyword', 'results from ', 'Matokeo from ', '2025-11-21 01:21:20'),
(35855, 'sw', 'keyword', 'Ranking Trends', 'Upangaji Trends', '2025-11-21 01:21:20'),
(35854, 'sw', 'keyword', 'Quick Keyword Position Checker', 'Quick Nafasi ya neno muhimu Checker', '2025-11-21 01:21:20'),
(35853, 'sw', 'keyword', 'pleaseselecttool', 'Tafadhali chagua atleast one Zana za SEO', '2025-11-21 01:21:20'),
(35852, 'sw', 'keyword', 'not assigned to required search engines', 'not assigned to Inahitajika Injini za utafutaji', '2025-11-21 01:21:20'),
(35851, 'sw', 'keyword', 'New Keyword', 'New Neno muhimu', '2025-11-21 01:21:20'),
(35850, 'sw', 'keyword', 'Keywords Tracked', 'Maneno muhimu Tracked', '2025-11-21 01:21:20'),
(35849, 'sw', 'keyword', 'Keyword Ranking Trends', 'Neno muhimu Upangaji Trends', '2025-11-21 01:21:20'),
(35848, 'sw', 'keyword', 'Keyword Position Report', 'Nafasi ya neno muhimu Ripoti', '2025-11-21 01:21:20'),
(35847, 'sw', 'keyword', 'Keyword already exist', 'Neno muhimu already exist', '2025-11-21 01:21:20'),
(35846, 'sw', 'keyword', 'Insert keywords separated with comma', 'Insert Maneno muhimu separated with comma', '2025-11-21 01:21:20'),
(35845, 'sw', 'keyword', 'Import Keywords', 'Leta Maneno muhimu', '2025-11-21 01:21:20'),
(35844, 'sw', 'keyword', 'Graphical Keyword Position Reports', 'Graphical Nafasi ya neno muhimu Ripoti', '2025-11-21 01:21:20'),
(35843, 'sw', 'keyword', 'Edit Keyword', 'Hariri neno muhimu', '2025-11-21 01:21:20'),
(35842, 'sw', 'keyword', 'Detailed Keyword Position Reports', 'Detailed Nafasi ya neno muhimu Ripoti', '2025-11-21 01:21:20'),
(35841, 'sw', 'keyword', 'Crawling keyword', 'Crawling Neno muhimu', '2025-11-21 01:21:20'),
(35838, 'sw', 'home', 'Ranks', 'Ranks', '2025-11-21 01:21:20'),
(35839, 'sw', 'home', 'SiteNameUrl', 'Site Jina/Url', '2025-11-21 01:21:20'),
(35840, 'sw', 'home', 'Website Statistics', 'Tovuti Takwimu', '2025-11-21 01:21:20'),
(35837, 'sw', 'home', 'Pages Indexed', 'Kurasa Indexed', '2025-11-21 01:21:20'),
(35836, 'sw', 'home', 'Page Overview Report', 'Ukurasa Overview Ripoti', '2025-11-21 01:21:20'),
(35835, 'sw', 'home', 'Overall Report Summary', 'Overall Ripoti Summary', '2025-11-21 01:21:20'),
(35834, 'sw', 'home', 'Keyword Overview Report', 'Neno muhimu Overview Ripoti', '2025-11-21 01:21:20'),
(35833, 'sw', 'home', 'Indexed', 'Indexed', '2025-11-21 01:21:20'),
(38163, 'cs', 'socialmedia', 'Total Followers', 'Celkový počet sledujících', '2026-01-19 22:56:41'),
(38164, 'da', 'socialmedia', 'Total Followers', 'Samlede følgere', '2026-01-19 22:56:41'),
(38165, 'de', 'socialmedia', 'Total Followers', 'Gesamtanzahl Follower', '2026-01-19 22:56:41'),
(38166, 'el', 'socialmedia', 'Total Followers', 'Σύνολο ακολούθων', '2026-01-19 22:56:41'),
(38167, 'es', 'socialmedia', 'Total Followers', 'Seguidores totales', '2026-01-19 22:56:41'),
(38168, 'es-ar', 'socialmedia', 'Total Followers', 'Seguidores totales', '2026-01-19 22:56:41'),
(38169, 'fa', 'socialmedia', 'Total Followers', 'مجموع دنبال کنندگان', '2026-01-19 22:56:41'),
(38170, 'fi', 'socialmedia', 'Total Followers', 'Seuraajat yhteensä', '2026-01-19 22:56:41'),
(38171, 'fr', 'socialmedia', 'Total Followers', 'Total des abonnés', '2026-01-19 22:56:41'),
(38172, 'he', 'socialmedia', 'Total Followers', 'סך הכל עוקבים', '2026-01-19 22:56:41'),
(38173, 'hi', 'socialmedia', 'Total Followers', 'कुल अनुयायी', '2026-01-19 22:56:41'),
(38174, 'hr', 'socialmedia', 'Total Followers', 'Ukupno pratitelja', '2026-01-19 22:56:41'),
(38175, 'hu', 'socialmedia', 'Total Followers', 'Összes követő', '2026-01-19 22:56:41'),
(38176, 'hy', 'socialmedia', 'Total Followers', 'Հետևորդների ընդհանուր թիվը', '2026-01-19 22:56:41'),
(38177, 'id', 'socialmedia', 'Total Followers', 'Total Pengikut', '2026-01-19 22:56:41'),
(38178, 'it', 'socialmedia', 'Total Followers', 'Follower Totali', '2026-01-19 22:56:41'),
(38179, 'ja', 'socialmedia', 'Total Followers', 'フォロワー総数', '2026-01-19 22:56:41'),
(38180, 'ko', 'socialmedia', 'Total Followers', '전체 팔로워', '2026-01-19 22:56:41'),
(38181, 'lt', 'socialmedia', 'Total Followers', 'Viso sekėjų', '2026-01-19 22:56:41'),
(38182, 'mk', 'socialmedia', 'Total Followers', 'Вкупно следбеници', '2026-01-19 22:56:41'),
(38183, 'nl', 'socialmedia', 'Total Followers', 'Totaal aantal volgers', '2026-01-19 22:56:41'),
(38184, 'no', 'socialmedia', 'Total Followers', 'Totalt antall følgere', '2026-01-19 22:56:41'),
(38185, 'pl', 'socialmedia', 'Total Followers', 'Łączna liczba obserwujących', '2026-01-19 22:56:41'),
(38186, 'pt', 'socialmedia', 'Total Followers', 'Seguidores totais', '2026-01-19 22:56:41'),
(38187, 'pt-br', 'socialmedia', 'Total Followers', 'Seguidores totais', '2026-01-19 22:56:41'),
(38188, 'ro', 'socialmedia', 'Total Followers', 'Total urmăritori', '2026-01-19 22:56:41'),
(38189, 'ru', 'socialmedia', 'Total Followers', 'Всего подписчиков', '2026-01-19 22:56:41'),
(38190, 'sk', 'socialmedia', 'Total Followers', 'Celkový počet sledovateľov', '2026-01-19 22:56:41'),
(38191, 'sl', 'socialmedia', 'Total Followers', 'Skupaj sledilcev', '2026-01-19 22:56:41'),
(38192, 'sq', 'socialmedia', 'Total Followers', 'Totali i ndjekësve', '2026-01-19 22:56:41'),
(38193, 'sr', 'socialmedia', 'Total Followers', 'Укупно пратилаца', '2026-01-19 22:56:41'),
(38194, 'sv', 'socialmedia', 'Total Followers', 'Totalt antal följare', '2026-01-19 22:56:41'),
(38195, 'sw', 'socialmedia', 'Total Followers', 'Jumla ya Wafuasi', '2026-01-19 22:56:41'),
(38196, 'th', 'socialmedia', 'Total Followers', 'จำนวนผู้ติดตามทั้งหมด', '2026-01-19 22:56:41'),
(38197, 'tl', 'socialmedia', 'Total Followers', 'Kabuuang Mga Tagasunod', '2026-01-19 22:56:41'),
(38198, 'tr', 'socialmedia', 'Total Followers', 'Toplam Takipçi', '2026-01-19 22:56:41'),
(38199, 'uk', 'socialmedia', 'Total Followers', 'Загальна кількість підписників', '2026-01-19 22:56:41'),
(38200, 'vn', 'socialmedia', 'Total Followers', 'Tổng số người theo dõi', '2026-01-19 22:56:41'),
(38201, 'zh', 'socialmedia', 'Total Followers', '粉丝总数', '2026-01-19 22:56:41'),
(38202, 'en', 'socialmedia', 'Total Likes', 'Total Likes', '2026-01-19 22:56:41'),
(38203, 'ar', 'socialmedia', 'Total Likes', 'إجمالي الإعجابات', '2026-01-19 22:56:41'),
(38204, 'bg', 'socialmedia', 'Total Likes', 'Общо харесвания', '2026-01-19 22:56:41'),
(38205, 'bs', 'socialmedia', 'Total Likes', 'Ukupno sviđanja', '2026-01-19 22:56:41'),
(38206, 'ca', 'socialmedia', 'Total Likes', 'M''agrada totals', '2026-01-19 22:56:41'),
(38207, 'cn', 'socialmedia', 'Total Likes', '点赞总数', '2026-01-19 22:56:41'),
(38208, 'cs', 'socialmedia', 'Total Likes', 'Celkový počet To se mi líbí', '2026-01-19 22:56:41'),
(38209, 'da', 'socialmedia', 'Total Likes', 'Samlede likes', '2026-01-19 22:56:41'),
(38210, 'de', 'socialmedia', 'Total Likes', 'Gesamtanzahl Likes', '2026-01-19 22:56:41'),
(38211, 'el', 'socialmedia', 'Total Likes', 'Σύνολο like', '2026-01-19 22:56:41'),
(38212, 'es', 'socialmedia', 'Total Likes', 'Me gusta totales', '2026-01-19 22:56:41'),
(38213, 'es-ar', 'socialmedia', 'Total Likes', 'Me gusta totales', '2026-01-19 22:56:41'),
(38214, 'fa', 'socialmedia', 'Total Likes', 'مجموع پسندیدن ها', '2026-01-19 22:56:41'),
(38215, 'fi', 'socialmedia', 'Total Likes', 'Tykkäykset yhteensä', '2026-01-19 22:56:41'),
(38216, 'fr', 'socialmedia', 'Total Likes', 'Total des j''aime', '2026-01-19 22:56:41'),
(38217, 'he', 'socialmedia', 'Total Likes', 'סך הכל לייקים', '2026-01-19 22:56:41'),
(38218, 'hi', 'socialmedia', 'Total Likes', 'कुल पसंद', '2026-01-19 22:56:41'),
(38219, 'hr', 'socialmedia', 'Total Likes', 'Ukupno sviđanja', '2026-01-19 22:56:41'),
(38220, 'hu', 'socialmedia', 'Total Likes', 'Összes kedvelés', '2026-01-19 22:56:41'),
(38221, 'hy', 'socialmedia', 'Total Likes', 'Հավանումների ընդհանուր թիվը', '2026-01-19 22:56:41'),
(38222, 'id', 'socialmedia', 'Total Likes', 'Total Suka', '2026-01-19 22:56:41'),
(38223, 'it', 'socialmedia', 'Total Likes', 'Like Totali', '2026-01-19 22:56:41'),
(38224, 'ja', 'socialmedia', 'Total Likes', 'いいね総数', '2026-01-19 22:56:41'),
(38225, 'ko', 'socialmedia', 'Total Likes', '전체 좋아요', '2026-01-19 22:56:41'),
(38226, 'lt', 'socialmedia', 'Total Likes', 'Viso patinka', '2026-01-19 22:56:41'),
(38227, 'mk', 'socialmedia', 'Total Likes', 'Вкупно допаѓања', '2026-01-19 22:56:41'),
(38228, 'nl', 'socialmedia', 'Total Likes', 'Totaal aantal likes', '2026-01-19 22:56:41'),
(38229, 'no', 'socialmedia', 'Total Likes', 'Totalt antall likes', '2026-01-19 22:56:41'),
(38230, 'pl', 'socialmedia', 'Total Likes', 'Łączna liczba polubień', '2026-01-19 22:56:41'),
(38231, 'pt', 'socialmedia', 'Total Likes', 'Curtidas totais', '2026-01-19 22:56:41'),
(35829, 'sw', 'home', 'Directory Submission', 'Saraka Submission', '2025-11-21 01:21:20'),
(35827, 'sw', 'home', 'Account Summary', 'Akaunti Summary', '2025-11-21 01:21:20'),
(35828, 'sw', 'home', 'Backlinks', 'Viungo vya nyuma', '2025-11-21 01:21:20'),
(35826, 'sw', 'guest', 'Why Choose SEO Panel?', 'Why Chagua SEO Panel?', '2025-11-21 01:21:20'),
(35825, 'sw', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-11-21 01:21:20'),
(35824, 'sw', 'guest', 'View Demo', 'Tazama Demo', '2025-11-21 01:21:20'),
(35823, 'sw', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their Tovuti.', '2025-11-21 01:21:20'),
(35822, 'sw', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-11-21 01:21:20'),
(35821, 'sw', 'guest', 'Support Development', 'Msaada Development', '2025-11-21 01:21:20'),
(35820, 'sw', 'guest', 'Social Media Integration desc', 'Integrate with Google Uchanganuzi, Tafuta Console, and Mitandao ya kijamii platforms for comprehensive reporting.', '2025-11-21 01:21:20'),
(35819, 'sw', 'guest', 'Social Media Integration', 'Mitandao ya kijamii Ujumuishaji', '2025-11-21 01:21:20'),
(35818, 'sw', 'guest', 'Site Auditor desc', 'Audit all SEO factors of each Ukurasa and generate XML, HTML, and Maandishi sitemaps for Injini za utafutaji.', '2025-11-21 01:21:20'),
(35816, 'sw', 'guest', 'Resources & Support', 'Resources & Msaada', '2025-11-21 01:21:20'),
(35817, 'sw', 'guest', 'Search Engine Saturation desc', 'Find the Nambari of Kurasa zilizoorodheshwa across different Injini za utafutaji and monitor your indexing progress.', '2025-11-21 01:21:20'),
(35815, 'sw', 'guest', 'Rank Checker desc', 'Check Google PageRank, Daraja la Alexa, and Daraja la Moz with comprehensive Kila siku tracking and reporting.', '2025-11-21 01:21:20'),
(35814, 'sw', 'guest', 'Powerful SEO Features', 'Powerful SEO Features', '2025-11-21 01:21:20'),
(35813, 'sw', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful Programu-jalizi including Article Submitter, Kizalishaji cha lebo za meta, and more.', '2025-11-21 01:21:20'),
(35812, 'sw', 'guest', 'Plugin Architecture', 'Plugin Architecture', '2025-11-21 01:21:20'),
(35811, 'sw', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited Tovuti from a single control panel with centralized reporting.', '2025-11-21 01:21:20'),
(35810, 'sw', 'guest', 'Multi-Website Support', 'Multi-Tovuti Msaada', '2025-11-21 01:21:20'),
(35809, 'sw', 'guest', 'Login to Get Started', 'Ingia to Anza', '2025-11-21 01:21:20'),
(35808, 'sw', 'guest', 'Keyword Position Checker desc', 'Track your Neno muhimu Upangaji across multiple Injini za utafutaji with detailed Kila siku Ripoti and beautiful graphs.', '2025-11-21 01:21:20'),
(35807, 'sw', 'guest', 'Highly Extensible desc', 'Easily develop and install Maalum Programu-jalizi to extend functionality according to your needs.', '2025-11-21 01:21:20'),
(35806, 'sw', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-11-21 01:21:20'),
(35805, 'sw', 'guest', 'Hero subtitle', 'World''s Ya kwanza Open Chanzo SEO Control Panel for Multiple Tovuti', '2025-11-21 01:21:20'),
(35803, 'sw', 'guest', 'Get Support', 'Get Msaada', '2025-11-21 01:21:20'),
(35804, 'sw', 'guest', 'Hero description', 'A complete open Chanzo SEO control panel for managing Injini ya utafutaji optimization of your Tovuti. SEO Panel is a powerful toolkit that includes the Ya hivi karibuni Zana za SEO to Ongezeko and track the Utendaji of your Tovuti.', '2025-11-21 01:21:20'),
(35802, 'sw', 'guest', 'Download SEO Panel', 'Pakua SEO Panel', '2025-11-21 01:21:20'),
(35801, 'sw', 'guest', 'Documentation', 'Nyaraka', '2025-11-21 01:21:20'),
(35800, 'sw', 'guest', 'Directory Submission desc', 'Automatically Wasilisha your Tovuti to major free and paid directories with Hali tracking.', '2025-11-21 01:21:20'),
(35799, 'sw', 'guest', 'Contact Us', 'Mawasiliano Us', '2025-11-21 01:21:20'),
(35797, 'sw', 'guest', 'Browse Plugins', 'Browse Programu-jalizi', '2025-11-21 01:21:20'),
(35798, 'sw', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-11-21 01:21:20'),
(35796, 'sw', 'guest', 'Backlinks Checker desc', 'Monitor the Nambari of Viungo vya nyuma from major Injini za utafutaji and track your Kiungo building progress over Muda.', '2025-11-21 01:21:20'),
(35795, 'sw', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. Pakua, customize, and use without any restrictions.', '2025-11-21 01:21:20'),
(35794, 'sw', 'guest', '100% Open Source', '100% Open Chanzo', '2025-11-21 01:21:20'),
(35793, 'sw', 'directory', 'Website Url', 'URL ya tovuti', '2025-11-21 01:21:20'),
(35792, 'sw', 'directory', 'Website Category', 'Tovuti Jamii', '2025-11-21 01:21:20'),
(35791, 'sw', 'directory', 'Submit Title', 'Wasilisha Kichwa', '2025-11-21 01:21:20'),
(35790, 'sw', 'directory', 'Submit Keywords', 'Wasilisha Maneno muhimu', '2025-11-21 01:21:20'),
(35789, 'sw', 'directory', 'Submit Description', 'Wasilisha Maelezo', '2025-11-21 01:21:20'),
(35788, 'sw', 'directory', 'Submission Details', 'Submission Maelezo', '2025-11-21 01:21:20'),
(35787, 'sw', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary Barua pepe address.', '2025-11-21 01:21:20'),
(35786, 'sw', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi Kiotomatiki Saraka Submission Tool', '2025-11-21 01:21:20'),
(35785, 'sw', 'directory', 'selectwebsiteschecksub', 'Chagua a <b>Tovuti</b> to <b>Proceed</b> check Saraka submission.', '2025-11-21 01:21:20'),
(35783, 'sw', 'directory', 'Reciprocal Link', 'Reciprocal Kiungo', '2025-11-21 01:21:20'),
(35784, 'sw', 'directory', 'selectwebsiteproceed', 'Chagua a <b>Tovuti</b> to <b>Proceed</b> Saraka submission.<br>Check <b>Directories with out captcha</b> to Wasilisha to directories with out captcha', '2025-11-21 01:21:20'),
(35781, 'sw', 'directory', 'Pending', 'Inasubiri', '2025-11-21 01:21:20'),
(35782, 'sw', 'directory', 'Please select a website to proceed', 'Tafadhali chagua a Tovuti to proceed', '2025-11-21 01:21:20'),
(35780, 'sw', 'directory', 'Owner Name', 'Owner Jina', '2025-11-21 01:21:20'),
(35779, 'sw', 'directory', 'Owner Email', 'Owner Barua pepe', '2025-11-21 01:21:20'),
(35778, 'sw', 'directory', 'optionalnote', 'Si lazima titles and descriptions to Wasilisha random Kichwa and Maelezo to directories for better Matokeo.', '2025-11-21 01:21:20'),
(35777, 'sw', 'directory', 'nosuccessnote', 'Didn''t get Mafanikio Ujumbe, Please check your mail to find the Thibitisha Ujumbe', '2025-11-21 01:21:20'),
(35776, 'sw', 'directory', 'nodirnote', 'No <b>Amilifu</b> directories Found', '2025-11-21 01:21:20'),
(35774, 'sw', 'directory', 'Enter the code shown', 'Enter the code shown', '2025-11-21 01:21:20'),
(35775, 'sw', 'directory', 'nocatnote', 'The submission Jamii not found in submission Ukurasa. Please click on <b>Reload</b> or <b>Skip</b>', '2025-11-21 01:21:20'),
(35773, 'sw', 'directory', 'Directory Submission Reports', 'Saraka Submission Ripoti', '2025-11-21 01:21:20'),
(35772, 'sw', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Kiungo', '2025-11-21 01:21:20'),
(35771, 'sw', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2025-11-21 01:21:20'),
(35770, 'sw', 'directory', 'desnote', 'Some directories require Chini kabisa 150 characters for the Maelezo field.', '2025-11-21 01:21:20'),
(35769, 'sw', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured submission!', '2025-11-21 01:21:20'),
(35767, 'sw', 'directory', 'Coupon Code', 'Coupon Code', '2025-11-21 01:21:20'),
(35768, 'sw', 'directory', 'Coupon Offer', 'Coupon Offer', '2025-11-21 01:21:20'),
(35766, 'sw', 'directory', 'Confirmation', 'Confirmation', '2025-11-21 01:21:20'),
(35765, 'sw', 'directory', 'clicktoproceeddirsts', 'Click on <b>Proceed</b> to Check Saraka Hali.', '2025-11-21 01:21:20'),
(35764, 'sw', 'directory', 'clickaddfeatureddirectory', 'Bonyeza hapa to add your own featured Saraka here', '2025-11-21 01:21:20'),
(35763, 'sw', 'directory', 'Check Directory Submission Status', 'Check Saraka Submission Hali', '2025-11-21 01:21:20'),
(35762, 'sw', 'directory', 'Check Directory Status', 'Check Saraka Hali', '2025-11-21 01:21:20'),
(35761, 'sw', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. Start with Top priority Jamii.', '2025-11-21 01:21:20'),
(35759, 'sw', 'directory', 'Approved', 'Approved', '2025-11-21 01:21:20'),
(35760, 'sw', 'directory', 'Captcha', 'Captcha', '2025-11-21 01:21:20'),
(35758, 'sw', 'directory', 'Add back to directory list', 'Add Rudi to Saraka list', '2025-11-21 01:21:20'),
(35757, 'sw', 'dashboard', 'Worst Rank', 'Worst Daraja', '2025-11-21 01:21:20'),
(35756, 'sw', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility Alama (Standard Deviation)', '2025-11-21 01:21:20'),
(35755, 'sw', 'dashboard', 'Volatility Score', 'Volatility Alama', '2025-11-21 01:21:20'),
(35754, 'sw', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'Volatility data requires at least 2 Upangaji checks within the selected period.', '2025-11-21 01:21:20'),
(35753, 'sw', 'dashboard', 'Volatility', 'Volatility', '2025-11-21 01:21:20'),
(35751, 'sw', 'dashboard', 'Top 3', 'Top 3', '2025-11-21 01:21:20'),
(35752, 'sw', 'dashboard', 'Trend', 'Trend', '2025-11-21 01:21:20'),
(35750, 'sw', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile Maneno muhimu', '2025-11-21 01:21:20'),
(35749, 'sw', 'dashboard', 'Top 10', 'Top 10', '2025-11-21 01:21:20'),
(35748, 'sw', 'dashboard', 'Ranking Volatility', 'Upangaji Volatility', '2025-11-21 01:21:20'),
(35747, 'sw', 'dashboard', 'positions', 'positions', '2025-11-21 01:21:20'),
(35746, 'sw', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-11-21 01:21:20'),
(35745, 'sw', 'dashboard', 'Keywords with most ranking fluctuations', 'Maneno muhimu with most Upangaji fluctuations', '2025-11-21 01:21:20'),
(35744, 'sw', 'dashboard', 'Keywords by Ranking Position', 'Maneno muhimu by Upangaji Nafasi', '2025-11-21 01:21:20'),
(35743, 'sw', 'dashboard', 'Keyword Statistics', 'Neno muhimu Takwimu', '2025-11-21 01:21:20'),
(35742, 'sw', 'dashboard', 'Keyword Distribution by Rank', 'Neno muhimu Distribution by Daraja', '2025-11-21 01:21:20'),
(35741, 'sw', 'dashboard', 'Best Rank', 'Best Daraja', '2025-11-21 01:21:20'),
(35739, 'sw', 'common', 'Yes', 'Ndiyo', '2025-11-21 01:21:20'),
(35740, 'sw', 'dashboard', 'Avg Rank', 'Avg Daraja', '2025-11-21 01:21:20'),
(35738, 'sw', 'common', 'Websites Count', 'Tovuti Hesabu', '2025-11-21 01:21:20'),
(35737, 'sw', 'common', 'Website', 'Tovuti', '2025-11-21 01:21:20'),
(35736, 'sw', 'common', 'Warnings', 'Warnings', '2025-11-21 01:21:20'),
(35735, 'sw', 'common', 'User Type', 'Mtumiaji Aina', '2025-11-21 01:21:20'),
(35733, 'sw', 'common', 'User', 'Mtumiaji', '2025-11-21 01:21:20'),
(35734, 'sw', 'common', 'User Panel', 'Mtumiaji Panel', '2025-11-21 01:21:20'),
(35731, 'sw', 'common', 'Total', 'Jumla', '2025-11-21 01:21:20'),
(35732, 'sw', 'common', 'Url', 'URL', '2025-11-21 01:21:20'),
(35729, 'sw', 'common', 'Thank you', 'Thank you', '2025-11-21 01:21:20'),
(35730, 'sw', 'common', 'Tools', 'Zana', '2025-11-21 01:21:20'),
(35728, 'sw', 'common', 'Support', 'Msaada', '2025-11-21 01:21:20'),
(35726, 'sw', 'common', 'Spam Score', 'Spam Alama', '2025-11-21 01:21:20'),
(35727, 'sw', 'common', 'Status', 'Hali', '2025-11-21 01:21:20'),
(35724, 'sw', 'common', 'signin', 'Ingia', '2025-11-21 01:21:20'),
(35725, 'sw', 'common', 'Source', 'Chanzo', '2025-11-21 01:21:20'),
(35721, 'sw', 'common', 'Server', 'Server', '2025-11-21 01:21:20'),
(35722, 'sw', 'common', 'Sign out', 'Sign out', '2025-11-21 01:21:20'),
(35723, 'sw', 'common', 'Sign Up', 'Jiandikishe', '2025-11-21 01:21:20'),
(35720, 'sw', 'common', 'Seo Tools', 'Zana za SEO', '2025-11-21 01:21:20'),
(35719, 'sw', 'common', 'Seo Plugins', 'Seo Programu-jalizi', '2025-11-21 01:21:20'),
(35718, 'sw', 'common', 'Select', 'Chagua', '2025-11-21 01:21:20'),
(35717, 'sw', 'common', 'Search Engine Count', 'Injini ya utafutaji Hesabu', '2025-11-21 01:21:20'),
(35716, 'sw', 'common', 'Search Engine', 'Injini ya utafutaji', '2025-11-21 01:21:20'),
(35670, 'sw', 'common', 'hidenews', 'Hide Seo Panel News', '2025-11-21 01:21:20'),
(35671, 'sw', 'common', 'Home', 'Nyumbani', '2025-11-21 01:21:20'),
(35672, 'sw', 'common', 'Id', 'Id', '2025-11-21 01:21:20'),
(35673, 'sw', 'common', 'Inactivate', 'Inactivate', '2025-11-21 01:21:20'),
(35674, 'sw', 'common', 'Inactive', 'Siyo amilifu', '2025-11-21 01:21:20'),
(35675, 'sw', 'common', 'Internal error occured', 'Internal Hitilafu occured', '2025-11-21 01:21:20'),
(35676, 'sw', 'common', 'Invalid characters', 'Si sahihi characters', '2025-11-21 01:21:20'),
(35677, 'sw', 'common', 'Invalid code entered', 'Si sahihi code entered', '2025-11-21 01:21:20'),
(35678, 'sw', 'common', 'Invalid email address entered', 'Si sahihi Barua pepe address entered', '2025-11-21 01:21:20'),
(35679, 'sw', 'common', 'Invalid Url', 'Si sahihi Url', '2025-11-21 01:21:20'),
(35680, 'sw', 'common', 'Invalid value', 'Si sahihi Thamani', '2025-11-21 01:21:20'),
(35681, 'sw', 'common', 'Keyword', 'Neno muhimu', '2025-11-21 01:21:20'),
(35682, 'sw', 'common', 'Keywords', 'Maneno muhimu', '2025-11-21 01:21:20'),
(35683, 'sw', 'common', 'Keywords Count', 'Maneno muhimu Hesabu', '2025-11-21 01:21:20'),
(35684, 'sw', 'common', 'lang', 'Lugha', '2025-11-21 01:21:20'),
(35685, 'sw', 'common', 'Link', 'Kiungo', '2025-11-21 01:21:20'),
(35686, 'sw', 'common', 'Logout', 'Ondoka', '2025-11-21 01:21:20'),
(35687, 'sw', 'common', 'Metric', 'Metric', '2025-11-21 01:21:20'),
(35688, 'sw', 'common', 'MOZ Rank', 'Daraja la Moz', '2025-11-21 01:21:20'),
(35689, 'sw', 'common', 'My Account', 'Akaunti yangu', '2025-11-21 01:21:20'),
(35690, 'sw', 'Common', 'Name', 'Jina', '2025-11-21 01:21:20'),
(35691, 'sw', 'common', 'New User Type', 'New Mtumiaji Aina', '2025-11-21 01:21:20'),
(35692, 'sw', 'common', 'No', 'Hapana', '2025-11-21 01:21:20'),
(35693, 'sw', 'common', 'No Keywords Found', 'No Maneno muhimu Found', '2025-11-21 01:21:20'),
(35694, 'sw', 'common', 'No Records Found', 'No Records Found', '2025-11-21 01:21:20'),
(35695, 'sw', 'common', 'noactivetools', 'No Amilifu Zana za SEO Found!', '2025-11-21 01:21:20'),
(35696, 'sw', 'common', 'nowebsites', 'No Tovuti Found', '2025-11-21 01:21:20'),
(35697, 'sw', 'common', 'Number', 'Nambari', '2025-11-21 01:21:20'),
(35698, 'sw', 'common', 'Page Authority', 'Mamlaka ya ukurasa', '2025-11-21 01:21:20'),
(35699, 'sw', 'common', 'Pagerank', 'Pagerank', '2025-11-21 01:21:20'),
(35700, 'sw', 'common', 'password632', 'The Neno la siri string should have a length between 6 and 32', '2025-11-21 01:21:20'),
(35701, 'sw', 'common', 'passwordnotmatch', 'The passwords do not match', '2025-11-21 01:21:20'),
(35702, 'sw', 'common', 'Period', 'Period', '2025-11-21 01:21:20'),
(35703, 'sw', 'common', 'Plugins', 'Programu-jalizi', '2025-11-21 01:21:20'),
(35704, 'sw', 'common', 'Powered by', 'Powered by', '2025-11-21 01:21:20'),
(35705, 'sw', 'common', 'Price', 'Price', '2025-11-21 01:21:20'),
(35706, 'sw', 'common', 'Pricing', 'Pricing', '2025-11-21 01:21:20'),
(35707, 'sw', 'common', 'Priority', 'Priority', '2025-11-21 01:21:20'),
(35708, 'sw', 'common', 'Profile', 'Wasifu', '2025-11-21 01:21:20'),
(35709, 'sw', 'common', 'Range', 'Range', '2025-11-21 01:21:20'),
(35710, 'sw', 'common', 'Rank', 'Daraja', '2025-11-21 01:21:20'),
(35711, 'sw', 'common', 'Rankings', 'Upangaji', '2025-11-21 01:21:20'),
(35712, 'sw', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification Imeshindwa', '2025-11-21 01:21:20'),
(35713, 'sw', 'common', 'Reports', 'Ripoti', '2025-11-21 01:21:20'),
(35714, 'sw', 'common', 'Results', 'Matokeo', '2025-11-21 01:21:20'),
(35715, 'sw', 'common', 'Sample CSV File', 'Sample CSV Faili', '2025-11-21 01:21:20'),
(35652, 'sw', 'common', 'Debug', 'Debug', '2025-11-21 01:21:20'),
(35653, 'sw', 'common', 'Delete', 'Futa', '2025-11-21 01:21:20'),
(35654, 'sw', 'common', 'Details', 'Maelezo', '2025-11-21 01:21:20'),
(35655, 'sw', 'common', 'Directory', 'Saraka', '2025-11-21 01:21:20'),
(35656, 'sw', 'common', 'Domain Authority', 'Mamlaka ya kikoa', '2025-11-21 01:21:20'),
(35657, 'sw', 'common', 'Donate', 'Donate', '2025-11-21 01:21:20'),
(35658, 'sw', 'common', 'Edit', 'Hariri', '2025-11-21 01:21:20'),
(35659, 'sw', 'common', 'Edit User Type', 'Hariri Mtumiaji Aina', '2025-11-21 01:21:20'),
(35660, 'sw', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2025-11-21 01:21:20'),
(35661, 'sw', 'common', 'entrynotvalid', 'The entry entered doesn''t seem to be Sahihi', '2025-11-21 01:21:20'),
(35662, 'sw', 'common', 'Errors', 'Errors', '2025-11-21 01:21:20'),
(35663, 'sw', 'common', 'failed', 'Imeshindwa', '2025-11-21 01:21:20'),
(35664, 'sw', 'common', 'forum', 'Forum', '2025-11-21 01:21:20'),
(35665, 'sw', 'common', 'Found', 'Found', '2025-11-21 01:21:20'),
(35666, 'sw', 'common', 'General', 'General', '2025-11-21 01:21:20'),
(35667, 'sw', 'common', 'Google Pagerank', 'Google Pagerank', '2025-11-21 01:21:20'),
(35668, 'sw', 'common', 'Hello', 'Hello', '2025-11-21 01:21:20'),
(35669, 'sw', 'common', 'help', 'Msaada', '2025-11-21 01:21:20'),
(35639, 'sw', 'common', 'Admin Panel', 'Msimamizi Panel', '2025-11-21 01:21:20'),
(35640, 'sw', 'common', 'Alexa Rank', 'Daraja la Alexa', '2025-11-21 01:21:20'),
(35641, 'sw', 'common', 'All', 'Zote', '2025-11-21 01:21:20'),
(35642, 'sw', 'common', 'API Token', 'API Token', '2025-11-21 01:21:20'),
(35643, 'sw', 'common', 'Blog', 'Blog', '2025-11-21 01:21:20'),
(35644, 'sw', 'common', 'Category', 'Jamii', '2025-11-21 01:21:20'),
(35645, 'sw', 'common', 'Checked', 'Checked', '2025-11-21 01:21:20'),
(35646, 'sw', 'common', 'contact', 'Mawasiliano', '2025-11-21 01:21:20'),
(35647, 'sw', 'common', 'copyright', 'Copyright © [year] www.seopanel.org All rights reserved', '2025-11-21 01:21:20'),
(35648, 'sw', 'common', 'Country', 'Nchi', '2025-11-21 01:21:20'),
(35649, 'sw', 'common', 'Crawl Meta Data', 'Crawl Meta Data', '2025-11-21 01:21:20'),
(35650, 'sw', 'common', 'Dashboard', 'Dashibodi', '2025-11-21 01:21:20'),
(35651, 'sw', 'common', 'Date', 'Tarehe', '2025-11-21 01:21:20'),
(35638, 'sw', 'common', 'Active', 'Amilifu', '2025-11-21 01:21:20'),
(35637, 'sw', 'common', 'Activate', 'Activate', '2025-11-21 01:21:20'),
(35636, 'sw', 'common', 'Action', 'Action', '2025-11-21 01:21:20'),
(35635, 'sw', 'button', 'Submit', 'Wasilisha', '2025-11-21 01:21:20'),
(35634, 'sw', 'button', 'Skip', 'Skip', '2025-11-21 01:21:20'),
(35632, 'sw', 'button', 'Show Details', 'Show Maelezo', '2025-11-21 01:21:20'),
(35633, 'sw', 'button', 'Show Records', 'Show Records', '2025-11-21 01:21:20'),
(35630, 'sw', 'button', 'Reload', 'Reload', '2025-11-21 01:21:20'),
(35631, 'sw', 'button', 'Search', 'Tafuta', '2025-11-21 01:21:20'),
(35629, 'sw', 'button', 'Proceed', 'Proceed', '2025-11-21 01:21:20'),
(35627, 'sw', 'button', 'Cancel', 'Ghairi', '2025-11-21 01:21:20'),
(35628, 'sw', 'button', 'Check Status', 'Check Hali', '2025-11-21 01:21:20'),
(35626, 'sw', 'blog', 'Older Posts', 'Older Posts', '2025-11-21 01:21:20'),
(35625, 'sw', 'blog', 'NothingFound_text2', 'Sorry, but nothing matched your Tafuta criteria. Tafadhali jaribu tena with some different Maneno muhimu.', '2025-11-21 01:21:20'),
(35624, 'sw', 'blog', 'Nothing Found', 'Nothing Found', '2025-11-21 01:21:20'),
(35623, 'sw', 'blog', 'Newer Posts', 'Newer Posts', '2025-11-21 01:21:20'),
(35622, 'sw', 'backlink', 'Saved backlink results of', 'Saved Kiungo cha nyuma Matokeo of', '2025-11-21 01:21:20'),
(35620, 'sw', 'backlink', 'Domain Backlink Count', 'Domain Kiungo cha nyuma Hesabu', '2025-11-21 01:21:20'),
(35621, 'sw', 'backlink', 'Domain Backlinks', 'Domain Viungo vya nyuma', '2025-11-21 01:21:20'),
(35618, 'sw', 'backlink', 'Backlink Count', 'Kiungo cha nyuma Hesabu', '2025-11-21 01:21:20'),
(35619, 'sw', 'backlink', 'clickproceedbacklink', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Viungo vya nyuma.', '2025-11-21 01:21:20'),
(35617, 'sw', 'api', 'API Url', 'API Url', '2025-11-21 01:21:20'),
(35616, 'sw', 'api', 'API Guide', 'API Guide', '2025-11-21 01:21:20'),
(35615, 'sw', 'analytics', 'view_id_not_found_error', 'Hitilafu: Uchanganuzi Tazama ID is not set for Tovuti. Hariri tovuti and Sasisha Tazama ID.', '2025-11-21 01:21:20'),
(35613, 'sw', 'analytics', 'Sessions', 'Vipindi', '2025-11-21 01:21:20'),
(35614, 'sw', 'analytics', 'Users', 'Watumiaji', '2025-11-21 01:21:20'),
(35612, 'sw', 'analytics', 'New Users', 'New Watumiaji', '2025-11-21 01:21:20'),
(35610, 'sw', 'analytics', 'Bounce Rate', 'Kiwango cha kurudi', '2025-11-21 01:21:20'),
(35611, 'sw', 'analytics', 'Goal Completions', 'Goal Completions', '2025-11-21 01:21:20'),
(35609, 'sw', 'analytics', 'Avg. Session Duration', 'Avg. Session Duration', '2025-11-21 01:21:20'),
(29051, 'th', 'seotools', 'Quick Backlinks Checker', 'Quick ตัวตรวจสอบแบ็คลิงก์', '2025-11-21 00:58:59'),
(29050, 'th', 'seotools', 'PageSpeed Reports', 'PageSpeed รายงาน', '2025-11-21 00:58:59'),
(29049, 'th', 'seotools', 'pagespeed', 'PageSpeed Insights', '2025-11-21 00:58:59'),
(29048, 'th', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for รายงาน generation.\r\nThis การดำเนินการ may cause captcha in เครื่องมือค้นหา ผลลัพธ์.', '2025-11-21 00:58:59'),
(29047, 'th', 'seotools', 'Keywords Manager', 'คำสำคัญ ตัวจัดการ', '2025-11-21 00:58:59'),
(29046, 'th', 'seotools', 'keyword-position-checker', 'ตัวตรวจสอบตำแหน่งคำสำคัญ', '2025-11-21 00:58:59'),
(29045, 'th', 'seotools', 'Keyword Search Summary', 'คำสำคัญ ค้นหา Summary', '2025-11-21 00:58:59'),
(29044, 'th', 'seotools', 'Keyword Search Reports', 'คำสำคัญ ค้นหา รายงาน', '2025-11-21 00:58:59'),
(29043, 'th', 'seotools', 'Keyword Position Summary', 'ตำแหน่งคำสำคัญ Summary', '2025-11-21 00:58:59'),
(29042, 'th', 'seotools', 'Import Project Links', 'นำเข้า Project Links', '2025-11-21 00:58:59'),
(29041, 'th', 'seotools', 'Graphical Reports', 'Graphical รายงาน', '2025-11-21 00:58:59'),
(29040, 'th', 'seotools', 'Graphical Position Reports', 'Graphical ตำแหน่ง รายงาน', '2025-11-21 00:58:59'),
(29039, 'th', 'seotools', 'Google Sitemap Generator', 'Google แผนผังเว็บไซต์ Generator', '2025-11-21 00:58:59'),
(29038, 'th', 'seotools', 'Generate Saturation Reports', 'สร้าง ความอิ่มตัว รายงาน', '2025-11-21 00:58:59'),
(29037, 'th', 'seotools', 'Generate Reports', 'สร้าง รายงาน', '2025-11-21 00:58:59'),
(29036, 'th', 'seotools', 'Generate Rank Reports', 'สร้าง อันดับ รายงาน', '2025-11-21 00:58:59'),
(29035, 'th', 'seotools', 'Generate Keyword Reports', 'สร้าง คำสำคัญ รายงาน', '2025-11-21 00:58:59'),
(29034, 'th', 'seotools', 'Generate Backlinks Reports', 'สร้าง แบ็คลิงก์ รายงาน', '2025-11-21 00:58:59'),
(29033, 'th', 'seotools', 'Featured Submission', 'Featured การส่ง', '2025-11-21 00:58:59'),
(29032, 'th', 'seotools', 'Edit Seo Tool', 'แก้ไข Seo เครื่องมือ', '2025-11-21 00:58:59'),
(29031, 'th', 'seotools', 'directory-submission', 'การส่งไดเรกทอรี', '2025-11-21 00:58:59'),
(29030, 'th', 'seotools', 'Detailed Reports', 'รายงานโดยละเอียด', '2025-11-21 00:58:59'),
(29029, 'th', 'seotools', 'Detailed Position Reports', 'Detailed ตำแหน่ง รายงาน', '2025-11-21 00:58:59'),
(29028, 'th', 'seotools', 'clickproceedaction', 'ใส่ URL''s <b>หนึ่งรายการต่อบรรทัด</b>. คลิกที่ <b>ดำเนินการต่อ</b> เพื่อตรวจสอบ ผลลัพธ์.', '2025-11-21 00:58:59'),
(29027, 'th', 'seotools', 'clickgeneratereports', 'คลิกที่ <b>ดำเนินการต่อ</b> to สร้าง รายงาน', '2025-11-21 00:58:59'),
(29026, 'th', 'seotools', 'Check Submission Status', 'Check การส่ง สถานะ', '2025-11-21 00:58:59'),
(29025, 'th', 'seotools', 'Backlinks Reports', 'แบ็คลิงก์ รายงาน', '2025-11-21 00:58:59'),
(29024, 'th', 'seotools', 'backlink-checker', 'ตัวตรวจสอบแบ็คลิงก์', '2025-11-21 00:58:59'),
(29023, 'th', 'seotools', 'Automatic Submission', 'Automatic การส่ง', '2025-11-21 00:58:59'),
(29022, 'th', 'seotools', 'Auditor Settings', 'Auditor การตั้งค่า', '2025-11-21 00:58:59'),
(29021, 'th', 'seotools', 'Auditor Reports', 'Auditor รายงาน', '2025-11-21 00:58:59'),
(29020, 'th', 'seotools', 'Auditor Projects', 'Auditor Projects', '2025-11-21 00:58:59'),
(29019, 'th', 'searchengine', 'no_of_results_page', 'Number of ผลลัพธ์ per page', '2025-11-21 00:58:59'),
(29018, 'th', 'searchengine', 'max_results', 'Maximum number of ผลลัพธ์', '2025-11-21 00:58:59'),
(29017, 'th', 'saturation', 'Search Engine Saturation Reports', 'ความอิ่มตัวของเครื่องมือค้นหา รายงาน', '2025-11-21 00:58:59'),
(29016, 'th', 'saturation', 'Saved Search Engine Saturation results of', 'บันทึกแล้ว ความอิ่มตัวของเครื่องมือค้นหา ผลลัพธ์ of', '2025-11-21 00:58:59'),
(29015, 'th', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick ตัวตรวจสอบความอิ่มตัวของเครื่องมือค้นหา', '2025-11-21 00:58:59'),
(29014, 'th', 'saturation', 'GenerateSaturationReports', 'สร้าง ความอิ่มตัวของเครื่องมือค้นหา รายงาน', '2025-11-21 00:58:59'),
(29013, 'th', 'saturation', 'clickproceedsaturation', 'ใส่ URL''s <b>หนึ่งรายการต่อบรรทัด</b>. คลิกที่ <b>ดำเนินการต่อ</b> เพื่อตรวจสอบ ความอิ่มตัวของเครื่องมือค้นหา ผลลัพธ์', '2025-11-21 00:58:59'),
(29012, 'th', 'review', 'New Review Link', 'ใหม่ รีวิว Link', '2025-11-21 00:58:59'),
(29011, 'th', 'review', 'Edit Review Link', 'แก้ไข รีวิว Link', '2025-11-21 00:58:59'),
(29010, 'th', 'reports', 'Reports Generated Successfully', 'รายงาน Generated สำเร็จ', '2025-11-21 00:58:59'),
(29009, 'th', 'reports', 'report_email_subject', 'Your SEO รายงาน generated สำเร็จ', '2025-11-21 00:58:59'),
(29008, 'th', 'reports', 'report_email_body_text2', 'If above รายงาน are not clear, Please [LOGIN_LINK] to ดู the รายงาน directly จาก your บัญชี.', '2025-11-21 00:58:59'),
(29007, 'th', 'reports', 'report_email_body_text1', 'Your รายงาน generated สำเร็จ in seo panel. Please check the attached รายงาน.', '2025-11-21 00:58:59'),
(29006, 'th', 'report', 'sheduledsuccessfully', 'Scheduled รายงาน generation สำเร็จ!', '2025-11-21 00:58:59'),
(29005, 'th', 'report', 'reportsettingssaved', 'รายงาน การตั้งค่า บันทึกแล้ว สำเร็จ!', '2025-11-21 00:58:59'),
(29004, 'th', 'report', 'Reports generation interval', 'รายงาน generation interval', '2025-11-21 00:58:59'),
(29003, 'th', 'report', 'Next report generation time', 'ถัดไป รายงาน generation time', '2025-11-21 00:58:59'),
(29001, 'th', 'report', 'Email notification', 'อีเมล notification', '2025-11-21 00:58:59'),
(29002, 'th', 'report', 'keywordnumbercheckedcronnote', 'Note: Default 0 means ทั้งหมด คำสำคัญ should be ตรวจสอบแล้ว', '2025-11-21 00:58:59'),
(29000, 'th', 'report', '2 Days', '2 Days', '2025-11-21 00:58:59'),
(28999, 'th', 'register', 'user_confirm_mail_cont_2', 'Please คลิกที่ the following link to confirm การลงทะเบียน', '2025-11-21 00:58:59'),
(28998, 'th', 'register', 'user_confirm_mail_cont_1', 'Thank you for your การลงทะเบียน with', '2025-11-21 00:58:59'),
(28997, 'th', 'register', 'user_confirm_content_1', 'Internal ข้อผิดพลาด occured while processing confirm request', '2025-11-21 00:58:59'),
(28996, 'th', 'register', 'Subscription Details', 'การสมัครสมาชิก รายละเอียด', '2025-11-21 00:58:59'),
(28995, 'th', 'register', 'Registration', 'การลงทะเบียน', '2025-11-21 00:58:59'),
(28994, 'th', 'register', 'Register subtitle', 'Join us วันนี้ and เริ่มต้น optimizing your SEO', '2025-11-21 00:58:59'),
(28993, 'th', 'register', 'Personal Information', 'Personal ข้อมูล', '2025-11-21 00:58:59'),
(28992, 'th', 'register', 'Last name placeholder', 'นามสกุล', '2025-11-21 00:58:59'),
(28991, 'th', 'register', 'First name placeholder', 'ชื่อ', '2025-11-21 00:58:59'),
(28990, 'th', 'register', 'Already have account', 'Already have an บัญชี?', '2025-11-21 00:58:59'),
(28989, 'th', 'register', 'Account Information', 'บัญชี ข้อมูล', '2025-11-21 00:58:59'),
(28988, 'th', 'rank', 'Saved rank results of', 'บันทึกแล้ว ผลลัพธ์อันดับ of', '2025-11-21 00:58:59'),
(28987, 'th', 'rank', 'Google and Alexa Rank Reports', 'Google and อันดับ Alexa รายงาน', '2025-11-21 00:58:59'),
(28985, 'th', 'QuickWebProxy', 'Web Server', 'Web Server', '2025-11-21 00:58:59'),
(28986, 'th', 'rank', 'enterurlproceed', 'ใส่ URL''s <b>หนึ่งรายการต่อบรรทัด</b>. คลิกที่ <b>ดำเนินการต่อ</b> เพื่อตรวจสอบ Google and อันดับ Alexa.', '2025-11-21 00:58:59'),
(28984, 'th', 'QuickWebProxy', 'Web Proxy', 'Web พร็อกซี', '2025-11-21 00:58:59'),
(28983, 'th', 'QuickWebProxy', 'Url blocked in the web proxy', 'URL blocked in the web พร็อกซี', '2025-11-21 00:58:59'),
(28981, 'th', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web พร็อกซี.', '2025-11-21 00:58:59'),
(28982, 'th', 'QuickWebProxy', 'Server list is empty', 'Server รายการ is empty', '2025-11-21 00:58:59'),
(28980, 'th', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web พร็อกซี', '2025-11-21 00:58:59'),
(28979, 'th', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a พร็อกซี', '2025-11-21 00:58:59'),
(28978, 'th', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow ผู้ใช้ to access the web พร็อกซี', '2025-11-21 00:58:59'),
(28977, 'th', 'QuickWebProxy', 'Please enter a valid url', 'Please enter a valid URL', '2025-11-21 00:58:59'),
(28976, 'th', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2025-11-21 00:58:59'),
(28975, 'th', 'proxy', 'Request Count', 'Request จำนวน', '2025-11-21 00:58:59'),
(28974, 'th', 'proxy', 'proxysyntax', 'พร็อกซี Hostname, พร็อกซี Port, พร็อกซี ชื่อผู้ใช้, พร็อกซี รหัสผ่าน', '2025-11-21 00:58:59'),
(28973, 'th', 'proxy', 'Proxyalreadyexist', 'พร็อกซี already exist!', '2025-11-21 00:58:59'),
(28972, 'th', 'proxy', 'Proxy Username', 'พร็อกซี ชื่อผู้ใช้', '2025-11-21 00:58:59'),
(28971, 'th', 'proxy', 'Proxy Password', 'พร็อกซี รหัสผ่าน', '2025-11-21 00:58:59'),
(28970, 'th', 'proxy', 'enterproxynote', 'Enter พร็อกซี หนึ่งรายการต่อบรรทัด in following format.', '2025-11-21 00:58:59'),
(28969, 'th', 'proxy', 'Edit Proxy', 'แก้ไข พร็อกซี', '2025-11-21 00:58:59'),
(28967, 'th', 'plugin', 'Seo Plugin Details', 'Seo ปลั๊กอิน รายละเอียด', '2025-11-21 00:58:59'),
(28968, 'th', 'proxy', 'click-to-get-proxy', 'คลิกที่นี่ to get พร็อกซี', '2025-11-21 00:58:59'),
(28966, 'th', 'plugin', 'Plugin Name', 'ปลั๊กอิน ชื่อ', '2025-11-21 00:58:59'),
(28965, 'th', 'plugin', 'Edit Seo Plugin', 'แก้ไข Seo ปลั๊กอิน', '2025-11-21 00:58:59'),
(28963, 'th', 'panel', 'Website Manager', 'เว็บไซต์ ตัวจัดการ', '2025-11-21 00:58:59'),
(28964, 'th', 'plugin', 'Download Seo Panel Plugins', 'ดาวน์โหลด ปลั๊กอิน SEO Panel', '2025-11-21 00:58:59'),
(28962, 'th', 'panel', 'Website Access Manager', 'เว็บไซต์ Access ตัวจัดการ', '2025-11-21 00:58:59'),
(28961, 'th', 'panel', 'Valid', 'Valid', '2025-11-21 00:58:59'),
(28960, 'th', 'panel', 'User Type Settings', 'ผู้ใช้ ประเภท การตั้งค่า', '2025-11-21 00:58:59'),
(28959, 'th', 'panel', 'User Type Manager', 'ผู้ใช้ ประเภท ตัวจัดการ', '2025-11-21 00:58:59'),
(28958, 'th', 'panel', 'User Manager', 'ผู้ใช้ ตัวจัดการ', '2025-11-21 00:58:59'),
(28957, 'th', 'panel', 'Themes Manager', 'Themes ตัวจัดการ', '2025-11-21 00:58:59'),
(28956, 'th', 'panel', 'Test Email Settings', 'Test การตั้งค่าอีเมล', '2025-11-21 00:58:59'),
(28955, 'th', 'panel', 'System Settings', 'การตั้งค่าระบบ', '2025-11-21 00:58:59'),
(28954, 'th', 'panel', 'Sync Search Engines', 'Sync เครื่องมือค้นหา', '2025-11-21 00:58:59'),
(28953, 'th', 'panel', 'Submit Sitemap', 'ส่ง แผนผังเว็บไซต์', '2025-11-21 00:58:59'),
(28951, 'th', 'panel', 'Settings', 'การตั้งค่า', '2025-11-21 00:58:59'),
(28952, 'th', 'panel', 'Sitemaps', 'Sitemaps', '2025-11-21 00:58:59'),
(28950, 'th', 'panel', 'Seo Tools Manager', 'เครื่องมือ SEO ตัวจัดการ', '2025-11-21 00:58:59'),
(28949, 'th', 'panel', 'Seo Plugins Manager', 'ปลั๊กอิน SEO ตัวจัดการ', '2025-11-21 00:58:59'),
(28948, 'th', 'panel', 'Search Engine Manager', 'เครื่องมือค้นหา ตัวจัดการ', '2025-11-21 00:58:59'),
(28947, 'th', 'panel', 'Schedule Reports', 'Schedule รายงาน', '2025-11-21 00:58:59'),
(28946, 'th', 'panel', 'Reports Manager', 'รายงาน ตัวจัดการ', '2025-11-21 00:58:59'),
(28935, 'th', 'panel', 'New User', 'ใหม่ ผู้ใช้', '2025-11-21 00:58:59'),
(28936, 'th', 'panel', 'New User Type', 'ใหม่ ผู้ใช้ ประเภท', '2025-11-21 00:58:59'),
(28937, 'th', 'panel', 'New Website', 'ใหม่ เว็บไซต์', '2025-11-21 00:58:59'),
(28938, 'th', 'panel', 'Project Manager', 'ตัวจัดการโครงการ', '2025-11-21 00:58:59'),
(28939, 'th', 'panel', 'Project Summary', 'Project Summary', '2025-11-21 00:58:59'),
(28940, 'th', 'panel', 'Proxy Manager', 'ตัวจัดการพร็อกซี', '2025-11-21 00:58:59'),
(28941, 'th', 'panel', 'Proxy Perfomance', 'พร็อกซี Perfomance', '2025-11-21 00:58:59'),
(28942, 'th', 'panel', 'Proxy Settings', 'การตั้งค่าพร็อกซี', '2025-11-21 00:58:59'),
(28943, 'th', 'panel', 'Report Generation Logs', 'รายงาน Generation Logs', '2025-11-21 00:58:59'),
(28944, 'th', 'panel', 'Report Generation Manager', 'รายงาน Generation ตัวจัดการ', '2025-11-21 00:58:59'),
(28945, 'th', 'panel', 'Report Settings', 'รายงาน การตั้งค่า', '2025-11-21 00:58:59'),
(28900, 'th', 'pagespeed', 'Desktop Speed', 'Desktop Speed', '2025-11-21 00:58:59'),
(28901, 'th', 'pagespeed', 'Mobile Speed', 'Mobile Speed', '2025-11-21 00:58:59'),
(28902, 'th', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2025-11-21 00:58:59'),
(28903, 'th', 'pagespeed', 'Page Speed', 'ความเร็วหน้า', '2025-11-21 00:58:59'),
(28904, 'th', 'pagespeed', 'PageSpeed Details', 'PageSpeed รายละเอียด', '2025-11-21 00:58:59'),
(28905, 'th', 'pagespeed', 'Saved page speed results of', 'บันทึกแล้ว ความเร็วหน้า ผลลัพธ์ of', '2025-11-21 00:58:59'),
(28906, 'th', 'panel', 'About Us', 'About Us', '2025-11-21 00:58:59'),
(28907, 'th', 'panel', 'Add following command to your cron tab', 'เพิ่ม following command to your cron tab', '2025-11-21 00:58:59'),
(28908, 'th', 'panel', 'Alerts', 'Alerts', '2025-11-21 00:58:59'),
(28909, 'th', 'panel', 'alsocheckfollowlink', 'ตรวจสอบลิงก์ต่อไปนี้ด้วยหากคุณต้องการรายละเอียดเพิ่มเติม.', '2025-11-21 00:58:59'),
(28910, 'th', 'panel', 'API Connection', 'API Connection', '2025-11-21 00:58:59'),
(28911, 'th', 'panel', 'API Manager', 'ตัวจัดการ API', '2025-11-21 00:58:59'),
(28912, 'th', 'panel', 'API Settings', 'API การตั้งค่า', '2025-11-21 00:58:59'),
(28913, 'th', 'panel', 'Archived Reports', 'Archived รายงาน', '2025-11-21 00:58:59'),
(28914, 'th', 'panel', 'Check Directory', 'ตรวจสอบไดเรกทอรี', '2025-11-21 00:58:59'),
(28915, 'th', 'panel', 'Connections', 'Connections', '2025-11-21 00:58:59'),
(28916, 'th', 'panel', 'Crawl Log Manager', 'ตัวจัดการบันทึกการคลาน', '2025-11-21 00:58:59'),
(28917, 'th', 'panel', 'Cron Command', 'Cron Command', '2025-11-21 00:58:59'),
(28918, 'th', 'panel', 'Current Time', 'Current Time', '2025-11-21 00:58:59'),
(28919, 'th', 'panel', 'DataForSEO Settings', 'DataForSEO การตั้งค่า', '2025-11-21 00:58:59'),
(28920, 'th', 'panel', 'Directory Manager', 'ตัวจัดการไดเรกทอรี', '2025-11-21 00:58:59'),
(28921, 'th', 'panel', 'Edit My Profile', 'แก้ไข My โปรไฟล์', '2025-11-21 00:58:59'),
(28922, 'th', 'panel', 'Edit Project', 'แก้ไข Project', '2025-11-21 00:58:59'),
(28923, 'th', 'panel', 'Existing', 'Existing', '2025-11-21 00:58:59'),
(28924, 'th', 'panel', 'Global Reports Settings', 'Global รายงาน การตั้งค่า', '2025-11-21 00:58:59'),
(28925, 'th', 'panel', 'Google Settings', 'Google การตั้งค่า', '2025-11-21 00:58:59'),
(28926, 'th', 'panel', 'Import Proxy', 'นำเข้า พร็อกซี', '2025-11-21 00:58:59'),
(28927, 'th', 'panel', 'Import Websites', 'นำเข้า เว็บไซต์', '2025-11-21 00:58:59'),
(28928, 'th', 'panel', 'Log Manager', 'ตัวจัดการบันทึก', '2025-11-21 00:58:59'),
(28929, 'th', 'panel', 'Mail Log Manager', 'ตัวจัดการบันทึกอีเมล', '2025-11-21 00:58:59'),
(28930, 'th', 'panel', 'Mail Settings', 'Mail การตั้งค่า', '2025-11-21 00:58:59'),
(28931, 'th', 'panel', 'MOZ Settings', 'MOZ การตั้งค่า', '2025-11-21 00:58:59'),
(28932, 'th', 'panel', 'My Profile', 'My โปรไฟล์', '2025-11-21 00:58:59'),
(28933, 'th', 'panel', 'New Project', 'ใหม่ Project', '2025-11-21 00:58:59'),
(28934, 'th', 'panel', 'New Proxy', 'ใหม่ พร็อกซี', '2025-11-21 00:58:59');
INSERT INTO `texts` VALUES
(28894, 'th', 'login', 'Your Password Reset Failed', 'Your รหัสผ่าน Reset ล้มเหลว', '2025-11-21 00:58:59'),
(28895, 'th', 'login', 'Your Password Reset Successfully', 'รีเซ็ตรหัสผ่านของคุณสำเร็จ', '2025-11-21 00:58:59'),
(28896, 'th', 'myaccount', 'Connect', 'Connect', '2025-11-21 00:58:59'),
(28897, 'th', 'myaccount', 'Connected', 'Connected', '2025-11-21 00:58:59'),
(28898, 'th', 'myaccount', 'Disconnect', 'Disconnect', '2025-11-21 00:58:59'),
(28899, 'th', 'myaccount', 'Disconnected', 'Disconnected', '2025-11-21 00:58:59'),
(28893, 'th', 'login', 'Your account password is resetted and new password is', 'Your บัญชี รหัสผ่าน is resetted and รหัสผ่านใหม่ is', '2025-11-21 00:58:59'),
(28892, 'th', 'login', 'Your account activated successfully', 'เปิดใช้งานบัญชีของคุณสำเร็จ', '2025-11-21 00:58:59'),
(28891, 'th', 'login', 'Welcome message', 'Welcome กลับ! Please เข้าสู่ระบบ to your บัญชี', '2025-11-21 00:58:59'),
(28890, 'th', 'login', 'Verification', 'Verification', '2025-11-21 00:58:59'),
(28889, 'th', 'login', 'usernameexist', 'ชื่อผู้ใช้ already exist!', '2025-11-21 00:58:59'),
(28888, 'th', 'login', 'Username placeholder', 'Enter your ชื่อผู้ใช้', '2025-11-21 00:58:59'),
(28887, 'th', 'login', 'Username', 'ชื่อผู้ใช้', '2025-11-21 00:58:59'),
(28886, 'th', 'login', 'user_not_activated_msg', 'ผู้ใช้ยังไม่ได้เปิดใช้งาน. กรุณาตรวจสอบอีเมลของคุณเพื่อเปิดใช้งาน', '2025-11-21 00:58:59'),
(28885, 'th', 'login', 'user_email_not_exist', 'อีเมลผู้ใช้ is not existing in system!', '2025-11-21 00:58:59'),
(28884, 'th', 'login', 'User Type', 'ผู้ใช้ ประเภท', '2025-11-21 00:58:59'),
(28883, 'th', 'login', 'User inactive', 'ผู้ใช้ inactive', '2025-11-21 00:58:59'),
(28882, 'th', 'login', 'to login to your account', 'to เข้าสู่ระบบ to your บัญชี', '2025-11-21 00:58:59'),
(28881, 'th', 'login', 'Sign in to your account', 'เข้าสู่ระบบบัญชีของคุณ', '2025-11-21 00:58:59'),
(28880, 'th', 'login', 'Sign In', 'ลงชื่อเข้าใช้', '2025-11-21 00:58:59'),
(28879, 'th', 'login', 'Security message', 'Your ข้อมูล is secure and encrypted', '2025-11-21 00:58:59'),
(28878, 'th', 'login', 'Request Password', 'Request รหัสผ่าน', '2025-11-21 00:58:59'),
(28877, 'th', 'login', 'Remember password text', 'Remember your รหัสผ่าน?', '2025-11-21 00:58:59'),
(28876, 'th', 'login', 'Register', 'ลงทะเบียน', '2025-11-21 00:58:59'),
(28875, 'th', 'login', 'password_reset_success_message', 'รีเซ็ตรหัสผ่านของคุณสำเร็จ. ส่งอีเมลยืนยันไปยังที่อยู่อีเมลแล้ว. <br>กรุณาตรวจสอบกล่องจดหมายของคุณ to get your รหัสผ่านใหม่.', '2025-11-21 00:58:59'),
(28874, 'th', 'login', 'Password placeholder', 'Enter your รหัสผ่าน', '2025-11-21 00:58:59'),
(28873, 'th', 'login', 'Password incorrect', 'รหัสผ่าน incorrect', '2025-11-21 00:58:59'),
(28872, 'th', 'login', 'Password', 'รหัสผ่าน', '2025-11-21 00:58:59'),
(28871, 'th', 'login', 'No account text', 'Don''t have an บัญชี?', '2025-11-21 00:58:59'),
(28870, 'th', 'login', 'newaccountsuccess', 'สร้างบัญชีใหม่สำเร็จ!', '2025-11-21 00:58:59'),
(28869, 'th', 'login', 'Login incorrect', 'เข้าสู่ระบบ incorrect', '2025-11-21 00:58:59'),
(28868, 'th', 'login', 'Login', 'เข้าสู่ระบบ', '2025-11-21 00:58:59'),
(28867, 'th', 'login', 'Last Name', 'นามสกุล', '2025-11-21 00:58:59'),
(28866, 'th', 'login', 'internal_error_mail_send', 'An internal ข้อผิดพลาด occured while sending รหัสผ่าน reset mail!', '2025-11-21 00:58:59'),
(28865, 'th', 'login', 'Forgot subtitle', 'Enter your อีเมล address and we''ll send you instructions to reset your รหัสผ่าน', '2025-11-21 00:58:59'),
(28864, 'th', 'login', 'Forgot password?', 'ลืมรหัสผ่าน?', '2025-11-21 00:58:59'),
(28863, 'th', 'login', 'First Name', 'ชื่อ', '2025-11-21 00:58:59'),
(28862, 'th', 'login', 'Enter the code as it is shown', 'ใส่รหัสตามที่แสดง', '2025-11-21 00:58:59'),
(28861, 'th', 'login', 'Enter the code', 'ใส่รหัส', '2025-11-21 00:58:59'),
(28860, 'th', 'login', 'emailexist', 'อีเมล already exist!', '2025-11-21 00:58:59'),
(28859, 'th', 'login', 'Email placeholder', 'your@อีเมล.com', '2025-11-21 00:58:59'),
(28858, 'th', 'login', 'Email', 'อีเมล', '2025-11-21 00:58:59'),
(28857, 'th', 'login', 'Create New Account', 'สร้าง ใหม่ บัญชี', '2025-11-21 00:58:59'),
(28856, 'th', 'login', 'Create my account', 'สร้าง บัญชีของฉัน', '2025-11-21 00:58:59'),
(28855, 'th', 'login', 'Confirm Password', 'ยืนยันรหัสผ่าน', '2025-11-21 00:58:59'),
(28854, 'th', 'log', 'Post Fields', 'โพสต์ Fields', '2025-11-21 00:58:59'),
(28853, 'th', 'log', 'Mail Log Details', 'Mail Log รายละเอียด', '2025-11-21 00:58:59'),
(28852, 'th', 'log', 'Crawl Log Details', 'คลาน Log รายละเอียด', '2025-11-21 00:58:59'),
(28851, 'th', 'log', 'Clear All Logs', 'Clear ทั้งหมด Logs', '2025-11-21 00:58:59'),
(28850, 'th', 'label', 'Year', 'Year', '2025-11-21 00:58:59'),
(28849, 'th', 'label', 'Write', 'Write', '2025-11-21 00:58:59'),
(28848, 'th', 'label', 'Weekly', 'Weekly', '2025-11-21 00:58:59'),
(28847, 'th', 'label', 'Week', 'Week', '2025-11-21 00:58:59'),
(28846, 'th', 'label', 'wantproceed', 'Do you really want to ดำเนินการต่อ?', '2025-11-21 00:58:59'),
(28845, 'th', 'label', 'View Reports', 'ดู รายงาน', '2025-11-21 00:58:59'),
(28844, 'th', 'label', 'Version', 'Version', '2025-11-21 00:58:59'),
(28843, 'th', 'label', 'User agent', 'ผู้ใช้ agent', '2025-11-21 00:58:59'),
(28842, 'th', 'label', 'Usability', 'Usability', '2025-11-21 00:58:59'),
(28841, 'th', 'label', 'Upgrade', 'Upgrade', '2025-11-21 00:58:59'),
(28840, 'th', 'label', 'Updated', 'อัปเดตแล้ว', '2025-11-21 00:58:59'),
(28839, 'th', 'label', 'Type', 'ประเภท', '2025-11-21 00:58:59'),
(28838, 'th', 'label', 'Translators', 'Translators', '2025-11-21 00:58:59'),
(28837, 'th', 'label', 'translation by', 'translation by', '2025-11-21 00:58:59'),
(28835, 'th', 'label', 'Title', 'หัวข้อ', '2025-11-21 00:58:59'),
(28836, 'th', 'label', 'Total Results', 'ผลลัพธ์ทั้งหมด', '2025-11-21 00:58:59'),
(28833, 'th', 'label', 'Syntax', 'Syntax', '2025-11-21 00:58:59'),
(28834, 'th', 'label', 'Theme', 'Theme', '2025-11-21 00:58:59'),
(28832, 'th', 'label', 'Success', 'สำเร็จ', '2025-11-21 00:58:59'),
(28831, 'th', 'label', 'Subject', 'Subject', '2025-11-21 00:58:59'),
(28830, 'th', 'label', 'Sponsors', 'Sponsors', '2025-11-21 00:58:59'),
(28829, 'th', 'label', 'Speed', 'Speed', '2025-11-21 00:58:59'),
(28828, 'th', 'label', 'Select All', 'เลือก ทั้งหมด', '2025-11-21 00:58:59'),
(28827, 'th', 'label', 'Second', 'Second', '2025-11-21 00:58:59'),
(28825, 'th', 'label', 'Reviews', 'รีวิว', '2025-11-21 00:58:59'),
(28826, 'th', 'label', 'Score', 'คะแนน', '2025-11-21 00:58:59'),
(28824, 'th', 'label', 'Report Type', 'ประเภทรายงาน', '2025-11-21 00:58:59'),
(28823, 'th', 'label', 'Referer', 'Referer', '2025-11-21 00:58:59'),
(28822, 'th', 'label', 'Reference', 'Reference', '2025-11-21 00:58:59'),
(28821, 'th', 'label', 'Recent Activity', 'Recent Activity', '2025-11-21 00:58:59'),
(28820, 'th', 'label', 'Read', 'Read', '2025-11-21 00:58:59'),
(28819, 'th', 'label', 'Re-install', 'Re-install', '2025-11-21 00:58:59'),
(28818, 'th', 'label', 'Rating', 'Rating', '2025-11-21 00:58:59'),
(28817, 'th', 'label', 'Proxy', 'พร็อกซี', '2025-11-21 00:58:59'),
(28816, 'th', 'label', 'Project', 'Project', '2025-11-21 00:58:59'),
(28814, 'th', 'label', 'Plugin', 'ปลั๊กอิน', '2025-11-21 00:58:59'),
(28815, 'th', 'label', 'Port', 'Port', '2025-11-21 00:58:59'),
(28813, 'th', 'label', 'Overview', 'ภาพรวม', '2025-11-21 00:58:59'),
(28812, 'th', 'label', 'Order By', 'Order By', '2025-11-21 00:58:59'),
(28810, 'th', 'label', 'Months', 'Months', '2025-11-21 00:58:59'),
(28811, 'th', 'label', 'noactiveplugins', 'No ใช้งานอยู่ ปลั๊กอิน SEO Found!', '2025-11-21 00:58:59'),
(28808, 'th', 'label', 'Month', 'Month', '2025-11-21 00:58:59'),
(28809, 'th', 'label', 'Monthly', 'Monthly', '2025-11-21 00:58:59'),
(28806, 'th', 'label', 'Minute', 'Minute', '2025-11-21 00:58:59'),
(28807, 'th', 'label', 'Mobile', 'Mobile', '2025-11-21 00:58:59'),
(28805, 'th', 'label', 'Likes', 'Likes', '2025-11-21 00:58:59'),
(28803, 'th', 'label', 'Just Now', 'Just Now', '2025-11-21 00:58:59'),
(28804, 'th', 'label', 'Keywords', 'คำสำคัญ', '2025-11-21 00:58:59'),
(28802, 'th', 'label', 'Installation', 'Installation', '2025-11-21 00:58:59'),
(28801, 'th', 'label', 'Include', 'Include', '2025-11-21 00:58:59'),
(28800, 'th', 'label', 'Impressions', 'Impressions', '2025-11-21 00:58:59'),
(28799, 'th', 'label', 'Hour', 'Hour', '2025-11-21 00:58:59'),
(28798, 'th', 'label', 'From', 'จาก', '2025-11-21 00:58:59'),
(28797, 'th', 'label', 'Free', 'Free', '2025-11-21 00:58:59'),
(28796, 'th', 'label', 'Followers', 'Followers', '2025-11-21 00:58:59'),
(28794, 'th', 'label', 'Fail', 'Fail', '2025-11-21 00:58:59'),
(28795, 'th', 'label', 'Feature', 'Feature', '2025-11-21 00:58:59'),
(28792, 'th', 'label', 'Email Body', 'อีเมล Body', '2025-11-21 00:58:59'),
(28793, 'th', 'label', 'Exclude', 'Exclude', '2025-11-21 00:58:59'),
(28790, 'th', 'label', 'Developers', 'Developers', '2025-11-21 00:58:59'),
(28791, 'th', 'label', 'Download', 'ดาวน์โหลด', '2025-11-21 00:58:59'),
(28789, 'th', 'label', 'Desktop', 'Desktop', '2025-11-21 00:58:59'),
(28788, 'th', 'label', 'Description', 'คำอธิบาย', '2025-11-21 00:58:59'),
(28787, 'th', 'label', 'Days', 'Days', '2025-11-21 00:58:59'),
(28786, 'th', 'label', 'Day', 'Day', '2025-11-21 00:58:59'),
(28785, 'th', 'label', 'Daily', 'Daily', '2025-11-21 00:58:59'),
(28784, 'th', 'label', 'Current', 'Current', '2025-11-21 00:58:59'),
(28783, 'th', 'label', 'Cron', 'Cron', '2025-11-21 00:58:59'),
(28782, 'th', 'label', 'Count', 'จำนวน', '2025-11-21 00:58:59'),
(28781, 'th', 'label', 'Cookie', 'Cookie', '2025-11-21 00:58:59'),
(28780, 'th', 'label', 'Comments', 'Comments', '2025-11-21 00:58:59'),
(28779, 'th', 'label', 'Clicks', 'คลิก', '2025-11-21 00:58:59'),
(28778, 'th', 'label', 'Click Here', 'คลิกที่นี่', '2025-11-21 00:58:59'),
(28777, 'th', 'label', 'Clear All', 'Clear ทั้งหมด', '2025-11-21 00:58:59'),
(28776, 'th', 'label', 'Brocken', 'Broken', '2025-11-21 00:58:59'),
(28775, 'th', 'label', 'Author', 'Author', '2025-11-21 00:58:59'),
(28774, 'th', 'label', 'Authentication', 'Authentication', '2025-11-21 00:58:59'),
(28773, 'th', 'label', 'already exist', 'already exist', '2025-11-21 00:58:59'),
(28772, 'th', 'label', 'Ago', 'Ago', '2025-11-21 00:58:59'),
(28771, 'th', 'label', 'Access denied', 'Access denied', '2025-11-21 00:58:59'),
(28770, 'th', 'keyword', 'Your keyword count already reached the limit', 'คำสำคัญ จำนวน already reached the limit for this ผู้ใช้!', '2025-11-21 00:58:59'),
(28769, 'th', 'keyword', 'You can add only keywordcount keywords more', 'You can เพิ่ม only [keywordcount] คำสำคัญ for this ผู้ใช้!', '2025-11-21 00:58:59'),
(28768, 'th', 'keyword', 'Top Keywords', 'Top คำสำคัญ', '2025-11-21 00:58:59'),
(28767, 'th', 'keyword', 'to create new keywords', 'to สร้าง ใหม่ คำสำคัญ', '2025-11-21 00:58:59'),
(28766, 'th', 'keyword', 'Successfully crawled keyword', 'คลานคำสำคัญสำเร็จ', '2025-11-21 00:58:59'),
(28765, 'th', 'keyword', 'Show All results', 'Show ทั้งหมด ผลลัพธ์', '2025-11-21 00:58:59'),
(28764, 'th', 'keyword', 'results from ', 'ผลลัพธ์ จาก ', '2025-11-21 00:58:59'),
(28763, 'th', 'keyword', 'Ranking Trends', 'Ranking Trends', '2025-11-21 00:58:59'),
(28762, 'th', 'keyword', 'Quick Keyword Position Checker', 'ตัวตรวจสอบตำแหน่งคำสำคัญแบบเร็ว', '2025-11-21 00:58:59'),
(28761, 'th', 'keyword', 'pleaseselecttool', 'กรุณาเลือกเครื่องมือ SEO อย่างน้อยหนึ่งตัว', '2025-11-21 00:58:59'),
(28760, 'th', 'keyword', 'not assigned to required search engines', 'not assigned to required เครื่องมือค้นหา', '2025-11-21 00:58:59'),
(28759, 'th', 'keyword', 'New Keyword', 'ใหม่ คำสำคัญ', '2025-11-21 00:58:59'),
(28758, 'th', 'keyword', 'Keywords Tracked', 'คำสำคัญ Tracked', '2025-11-21 00:58:59'),
(28757, 'th', 'keyword', 'Keyword Ranking Trends', 'คำสำคัญ Ranking Trends', '2025-11-21 00:58:59'),
(28756, 'th', 'keyword', 'Keyword Position Report', 'ตำแหน่งคำสำคัญ รายงาน', '2025-11-21 00:58:59'),
(28755, 'th', 'keyword', 'Keyword already exist', 'คำสำคัญ already exist', '2025-11-21 00:58:59'),
(28754, 'th', 'keyword', 'Insert keywords separated with comma', 'Insert คำสำคัญ separated with comma', '2025-11-21 00:58:59'),
(28753, 'th', 'keyword', 'Import Keywords', 'นำเข้า คำสำคัญ', '2025-11-21 00:58:59'),
(28752, 'th', 'keyword', 'Graphical Keyword Position Reports', 'Graphical ตำแหน่งคำสำคัญ รายงาน', '2025-11-21 00:58:59'),
(28751, 'th', 'keyword', 'Edit Keyword', 'แก้ไขคำสำคัญ', '2025-11-21 00:58:59'),
(28750, 'th', 'keyword', 'Detailed Keyword Position Reports', 'Detailed ตำแหน่งคำสำคัญ รายงาน', '2025-11-21 00:58:59'),
(28749, 'th', 'keyword', 'Crawling keyword', 'Crawling คำสำคัญ', '2025-11-21 00:58:59'),
(28748, 'th', 'home', 'Website Statistics', 'เว็บไซต์ Statistics', '2025-11-21 00:58:59'),
(28747, 'th', 'home', 'SiteNameUrl', 'Site ชื่อ/URL', '2025-11-21 00:58:59'),
(28746, 'th', 'home', 'Ranks', 'Ranks', '2025-11-21 00:58:59'),
(28744, 'th', 'home', 'Page Overview Report', 'Page Overview รายงาน', '2025-11-21 00:58:59'),
(28745, 'th', 'home', 'Pages Indexed', 'Pages Indexed', '2025-11-21 00:58:59'),
(28743, 'th', 'home', 'Overall Report Summary', 'Overall รายงาน Summary', '2025-11-21 00:58:59'),
(28742, 'th', 'home', 'Keyword Overview Report', 'คำสำคัญ Overview รายงาน', '2025-11-21 00:58:59'),
(28741, 'th', 'home', 'Indexed', 'Indexed', '2025-11-21 00:58:59'),
(38110, 'vn', 'socialmedia', 'Social Media Statistics', 'Thống kê mạng xã hội', '2026-01-19 22:56:41'),
(38111, 'zh', 'socialmedia', 'Social Media Statistics', '社交媒体统计', '2026-01-19 22:56:41'),
(38112, 'en', 'socialmedia', 'Total Social Media Links', 'Total Social Media Links', '2026-01-19 22:56:41'),
(38113, 'ar', 'socialmedia', 'Total Social Media Links', 'إجمالي روابط وسائل التواصل الاجتماعي', '2026-01-19 22:56:41'),
(38114, 'bg', 'socialmedia', 'Total Social Media Links', 'Общо връзки към социални медии', '2026-01-19 22:56:41'),
(38115, 'bs', 'socialmedia', 'Total Social Media Links', 'Ukupno linkova društvenih medija', '2026-01-19 22:56:41'),
(38116, 'ca', 'socialmedia', 'Total Social Media Links', 'Enllaços totals de xarxes socials', '2026-01-19 22:56:41'),
(38117, 'cn', 'socialmedia', 'Total Social Media Links', '社交媒体链接总数', '2026-01-19 22:56:41'),
(38118, 'cs', 'socialmedia', 'Total Social Media Links', 'Celkový počet odkazů sociálních médií', '2026-01-19 22:56:41'),
(38119, 'da', 'socialmedia', 'Total Social Media Links', 'Samlede sociale medie links', '2026-01-19 22:56:41'),
(38120, 'de', 'socialmedia', 'Total Social Media Links', 'Gesamt Social-Media-Links', '2026-01-19 22:56:41'),
(38121, 'el', 'socialmedia', 'Total Social Media Links', 'Συνολικοί σύνδεσμοι κοινωνικών μέσων', '2026-01-19 22:56:41'),
(38122, 'es', 'socialmedia', 'Total Social Media Links', 'Enlaces totales de redes sociales', '2026-01-19 22:56:41'),
(38123, 'es-ar', 'socialmedia', 'Total Social Media Links', 'Enlaces totales de redes sociales', '2026-01-19 22:56:41'),
(38124, 'fa', 'socialmedia', 'Total Social Media Links', 'مجموع لینک های رسانه های اجتماعی', '2026-01-19 22:56:41'),
(38125, 'fi', 'socialmedia', 'Total Social Media Links', 'Sosiaalisen median linkit yhteensä', '2026-01-19 22:56:41'),
(38126, 'fr', 'socialmedia', 'Total Social Media Links', 'Total des liens de médias sociaux', '2026-01-19 22:56:41'),
(38127, 'he', 'socialmedia', 'Total Social Media Links', 'סך הכל קישורי מדיה חברתית', '2026-01-19 22:56:41'),
(38128, 'hi', 'socialmedia', 'Total Social Media Links', 'कुल सोशल मीडिया लिंक', '2026-01-19 22:56:41'),
(38129, 'hr', 'socialmedia', 'Total Social Media Links', 'Ukupno linkova društvenih medija', '2026-01-19 22:56:41'),
(38130, 'hu', 'socialmedia', 'Total Social Media Links', 'Összes közösségi média link', '2026-01-19 22:56:41'),
(38131, 'hy', 'socialmedia', 'Total Social Media Links', 'Սոցիալական մեդիայի հղումների ընդհանուր թիվը', '2026-01-19 22:56:41'),
(38132, 'id', 'socialmedia', 'Total Social Media Links', 'Total Tautan Media Sosial', '2026-01-19 22:56:41'),
(38133, 'it', 'socialmedia', 'Total Social Media Links', 'Link Social Media Totali', '2026-01-19 22:56:41'),
(38134, 'ja', 'socialmedia', 'Total Social Media Links', 'ソーシャルメディアリンク総数', '2026-01-19 22:56:41'),
(38135, 'ko', 'socialmedia', 'Total Social Media Links', '전체 소셜 미디어 링크', '2026-01-19 22:56:41'),
(38136, 'lt', 'socialmedia', 'Total Social Media Links', 'Viso socialinės žiniasklaidos nuorodų', '2026-01-19 22:56:41'),
(38137, 'mk', 'socialmedia', 'Total Social Media Links', 'Вкупно линкови на социјални медиуми', '2026-01-19 22:56:41'),
(38138, 'nl', 'socialmedia', 'Total Social Media Links', 'Totaal aantal sociale media links', '2026-01-19 22:56:41'),
(38139, 'no', 'socialmedia', 'Total Social Media Links', 'Totalt antall sosiale medier lenker', '2026-01-19 22:56:41'),
(38140, 'pl', 'socialmedia', 'Total Social Media Links', 'Łączna liczba linków mediów społecznościowych', '2026-01-19 22:56:41'),
(38141, 'pt', 'socialmedia', 'Total Social Media Links', 'Links totais de redes sociais', '2026-01-19 22:56:41'),
(38142, 'pt-br', 'socialmedia', 'Total Social Media Links', 'Links totais de redes sociais', '2026-01-19 22:56:41'),
(38143, 'ro', 'socialmedia', 'Total Social Media Links', 'Total link-uri Social Media', '2026-01-19 22:56:41'),
(38144, 'ru', 'socialmedia', 'Total Social Media Links', 'Всего ссылок социальных сетей', '2026-01-19 22:56:41'),
(38145, 'sk', 'socialmedia', 'Total Social Media Links', 'Celkový počet odkazov sociálnych médií', '2026-01-19 22:56:41'),
(38146, 'sl', 'socialmedia', 'Total Social Media Links', 'Skupaj povezav družbenih medijev', '2026-01-19 22:56:41'),
(38147, 'sq', 'socialmedia', 'Total Social Media Links', 'Totali i lidhjeve të mediave sociale', '2026-01-19 22:56:41'),
(38148, 'sr', 'socialmedia', 'Total Social Media Links', 'Укупно линкова друштвених медија', '2026-01-19 22:56:41'),
(38149, 'sv', 'socialmedia', 'Total Social Media Links', 'Totalt antal sociala medier länkar', '2026-01-19 22:56:41'),
(38150, 'sw', 'socialmedia', 'Total Social Media Links', 'Jumla ya Viungo vya Mitandao ya Kijamii', '2026-01-19 22:56:41'),
(38151, 'th', 'socialmedia', 'Total Social Media Links', 'จำนวนลิงก์โซเชียลมีเดียทั้งหมด', '2026-01-19 22:56:41'),
(38152, 'tl', 'socialmedia', 'Total Social Media Links', 'Kabuuang Social Media Links', '2026-01-19 22:56:41'),
(38153, 'tr', 'socialmedia', 'Total Social Media Links', 'Toplam Sosyal Medya Bağlantıları', '2026-01-19 22:56:41'),
(38154, 'uk', 'socialmedia', 'Total Social Media Links', 'Загальна кількість посилань на соціальні мережі', '2026-01-19 22:56:41'),
(38155, 'vn', 'socialmedia', 'Total Social Media Links', 'Tổng số liên kết mạng xã hội', '2026-01-19 22:56:41'),
(38156, 'zh', 'socialmedia', 'Total Social Media Links', '社交媒体链接总数', '2026-01-19 22:56:41'),
(38157, 'en', 'socialmedia', 'Total Followers', 'Total Followers', '2026-01-19 22:56:41'),
(38158, 'ar', 'socialmedia', 'Total Followers', 'إجمالي المتابعين', '2026-01-19 22:56:41'),
(38159, 'bg', 'socialmedia', 'Total Followers', 'Общо последователи', '2026-01-19 22:56:41'),
(38160, 'bs', 'socialmedia', 'Total Followers', 'Ukupno pratilaca', '2026-01-19 22:56:41'),
(38161, 'ca', 'socialmedia', 'Total Followers', 'Seguidors totals', '2026-01-19 22:56:41'),
(38162, 'cn', 'socialmedia', 'Total Followers', '粉丝总数', '2026-01-19 22:56:41'),
(28737, 'th', 'home', 'Directory Submission', 'การส่งไดเรกทอรี', '2025-11-21 00:58:59'),
(28736, 'th', 'home', 'Backlinks', 'แบ็คลิงก์', '2025-11-21 00:58:59'),
(28735, 'th', 'home', 'Account Summary', 'บัญชี Summary', '2025-11-21 00:58:59'),
(28734, 'th', 'guest', 'Why Choose SEO Panel?', 'Why Choose SEO Panel?', '2025-11-21 00:58:59'),
(28733, 'th', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-11-21 00:58:59'),
(28732, 'th', 'guest', 'View Demo', 'ดู Demo', '2025-11-21 00:58:59'),
(28731, 'th', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their เว็บไซต์.', '2025-11-21 00:58:59'),
(28730, 'th', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-11-21 00:58:59'),
(28729, 'th', 'guest', 'Support Development', 'Support Development', '2025-11-21 00:58:59'),
(28728, 'th', 'guest', 'Social Media Integration desc', 'Integrate with Google การวิเคราะห์, ค้นหา Console, and โซเชียลมีเดีย platforms for comprehensive การรายงาน.', '2025-11-21 00:58:59'),
(28727, 'th', 'guest', 'Social Media Integration', 'โซเชียลมีเดีย Integration', '2025-11-21 00:58:59'),
(28726, 'th', 'guest', 'Site Auditor desc', 'ตรวจสอบปัจจัย SEO ทั้งหมดของแต่ละหน้า and สร้างแผนผังเว็บไซต์ XML, HTML และ TEXT สำหรับเครื่องมือค้นหา.', '2025-11-21 00:58:59'),
(28725, 'th', 'guest', 'Search Engine Saturation desc', 'Find the number of indexed pages across different เครื่องมือค้นหา and monitor your indexing progress.', '2025-11-21 00:58:59'),
(28724, 'th', 'guest', 'Resources & Support', 'Resources & Support', '2025-11-21 00:58:59'),
(28723, 'th', 'guest', 'Rank Checker desc', 'Check Google PageRank, อันดับ Alexa, and Moz อันดับ พร้อมการติดตามและรายงานรายวันที่ครอบคลุม.', '2025-11-21 00:58:59'),
(28722, 'th', 'guest', 'Powerful SEO Features', 'Powerful SEO คุณสมบัติ', '2025-11-21 00:58:59'),
(28721, 'th', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful ปลั๊กอิน including Article Submitter, Meta Tag Generator, and more.', '2025-11-21 00:58:59'),
(28720, 'th', 'guest', 'Plugin Architecture', 'ปลั๊กอิน Architecture', '2025-11-21 00:58:59'),
(28717, 'th', 'guest', 'Login to Get Started', 'เข้าสู่ระบบ to Get Started', '2025-11-21 00:58:59'),
(28718, 'th', 'guest', 'Multi-Website Support', 'Multi-เว็บไซต์ Support', '2025-11-21 00:58:59'),
(28719, 'th', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited เว็บไซต์ จาก a single control panel with centralized การรายงาน.', '2025-11-21 00:58:59'),
(28716, 'th', 'guest', 'Keyword Position Checker desc', 'Track your คำสำคัญ rankings across multiple เครื่องมือค้นหา with detailed daily รายงาน and beautiful graphs.', '2025-11-21 00:58:59'),
(28715, 'th', 'guest', 'Highly Extensible desc', 'Easily develop and install custom ปลั๊กอิน to extend functionality according to your needs.', '2025-11-21 00:58:59'),
(28714, 'th', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-11-21 00:58:59'),
(28713, 'th', 'guest', 'Hero subtitle', 'World''s แรก เปิด Source SEO Control Panel for Multiple เว็บไซต์', '2025-11-21 00:58:59'),
(28712, 'th', 'guest', 'Hero description', 'A complete เปิด source SEO control panel for managing เครื่องมือค้นหา optimization of your เว็บไซต์. SEO Panel is a powerful toolkit that includes the latest เครื่องมือ SEO to increase and track the performance of your เว็บไซต์.', '2025-11-21 00:58:59'),
(28711, 'th', 'guest', 'Get Support', 'Get Support', '2025-11-21 00:58:59'),
(28710, 'th', 'guest', 'Download SEO Panel', 'ดาวน์โหลด SEO Panel', '2025-11-21 00:58:59'),
(28709, 'th', 'guest', 'Documentation', 'Documentation', '2025-11-21 00:58:59'),
(28708, 'th', 'guest', 'Directory Submission desc', 'Automatically ส่ง your เว็บไซต์ to major free and paid directories with สถานะ การติดตาม.', '2025-11-21 00:58:59'),
(28707, 'th', 'guest', 'Contact Us', 'ติดต่อ Us', '2025-11-21 00:58:59'),
(28706, 'th', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-11-21 00:58:59'),
(28705, 'th', 'guest', 'Browse Plugins', 'Browse ปลั๊กอิน', '2025-11-21 00:58:59'),
(28704, 'th', 'guest', 'Backlinks Checker desc', 'Monitor the number of แบ็คลิงก์ จาก major เครื่องมือค้นหา and track your link building progress over time.', '2025-11-21 00:58:59'),
(28703, 'th', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. ดาวน์โหลด, customize, and use without any restrictions.', '2025-11-21 00:58:59'),
(28702, 'th', 'guest', '100% Open Source', '100% เปิด Source', '2025-11-21 00:58:59'),
(28701, 'th', 'directory', 'Website Url', 'URL เว็บไซต์', '2025-11-21 00:58:59'),
(28700, 'th', 'directory', 'Website Category', 'เว็บไซต์ หมวดหมู่', '2025-11-21 00:58:59'),
(28699, 'th', 'directory', 'Submit Title', 'ส่ง หัวข้อ', '2025-11-21 00:58:59'),
(28698, 'th', 'directory', 'Submit Keywords', 'ส่ง คำสำคัญ', '2025-11-21 00:58:59'),
(28697, 'th', 'directory', 'Submit Description', 'ส่ง คำอธิบาย', '2025-11-21 00:58:59'),
(28696, 'th', 'directory', 'Submission Details', 'การส่ง รายละเอียด', '2025-11-21 00:58:59'),
(28695, 'th', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary อีเมล address.', '2025-11-21 00:58:59'),
(28694, 'th', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi เครื่องมือส่งไดเรกทอรีอัตโนมัติ', '2025-11-21 00:58:59'),
(28693, 'th', 'directory', 'selectwebsiteschecksub', 'เลือก <b>เว็บไซต์</b> to <b>ดำเนินการต่อ</b> check การส่งไดเรกทอรี.', '2025-11-21 00:58:59'),
(28692, 'th', 'directory', 'selectwebsiteproceed', 'เลือก <b>เว็บไซต์</b> to <b>ดำเนินการต่อ</b> การส่งไดเรกทอรี.<br>Check <b>Directories with out captcha</b> to ส่ง to directories with out captcha', '2025-11-21 00:58:59'),
(28691, 'th', 'directory', 'Reciprocal Link', 'Reciprocal Link', '2025-11-21 00:58:59'),
(28689, 'th', 'directory', 'Pending', 'รอดำเนินการ', '2025-11-21 00:58:59'),
(28690, 'th', 'directory', 'Please select a website to proceed', 'กรุณาเลือกเว็บไซต์เพื่อดำเนินการต่อ', '2025-11-21 00:58:59'),
(28688, 'th', 'directory', 'Owner Name', 'Owner ชื่อ', '2025-11-21 00:58:59'),
(28687, 'th', 'directory', 'Owner Email', 'Owner อีเมล', '2025-11-21 00:58:59'),
(28686, 'th', 'directory', 'optionalnote', 'Optional titles and descriptions to ส่ง random หัวข้อ and คำอธิบาย to directories for better ผลลัพธ์.', '2025-11-21 00:58:59'),
(28685, 'th', 'directory', 'nosuccessnote', 'ไม่ได้รับข้อความสำเร็จ, กรุณาตรวจสอบอีเมลของคุณเพื่อหาข้อความยืนยัน', '2025-11-21 00:58:59'),
(28684, 'th', 'directory', 'nodirnote', 'No <b>ใช้งานอยู่</b> directories Found', '2025-11-21 00:58:59'),
(28683, 'th', 'directory', 'nocatnote', 'ไม่พบหมวดหมู่การส่งในหน้าการส่ง. Please คลิกที่ <b>โหลดใหม่</b> or <b>ข้าม</b>', '2025-11-21 00:58:59'),
(28682, 'th', 'directory', 'Enter the code shown', 'ใส่รหัสที่แสดง', '2025-11-21 00:58:59'),
(28681, 'th', 'directory', 'Directory Submission Reports', 'การส่งไดเรกทอรี รายงาน', '2025-11-21 00:58:59'),
(28680, 'th', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Link', '2025-11-21 00:58:59'),
(28679, 'th', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2025-11-21 00:58:59'),
(28678, 'th', 'directory', 'desnote', 'Some directories require minimum 150 characters for the คำอธิบาย field.', '2025-11-21 00:58:59'),
(28677, 'th', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured การส่ง!', '2025-11-21 00:58:59'),
(28676, 'th', 'directory', 'Coupon Offer', 'Coupon Offer', '2025-11-21 00:58:59'),
(28675, 'th', 'directory', 'Coupon Code', 'Coupon Code', '2025-11-21 00:58:59'),
(28674, 'th', 'directory', 'Confirmation', 'การยืนยัน', '2025-11-21 00:58:59'),
(28673, 'th', 'directory', 'clicktoproceeddirsts', 'คลิกที่ <b>ดำเนินการต่อ</b> to ตรวจสอบสถานะไดเรกทอรี.', '2025-11-21 00:58:59'),
(28672, 'th', 'directory', 'clickaddfeatureddirectory', 'คลิกที่นี่เพื่อเพิ่มไดเรกทอรีแนะนำของคุณเอง', '2025-11-21 00:58:59'),
(28671, 'th', 'directory', 'Check Directory Submission Status', 'ตรวจสอบสถานะการส่งไดเรกทอรี', '2025-11-21 00:58:59'),
(28670, 'th', 'directory', 'Check Directory Status', 'ตรวจสอบสถานะไดเรกทอรี', '2025-11-21 00:58:59'),
(28668, 'th', 'directory', 'Captcha', 'Captcha', '2025-11-21 00:58:59'),
(28669, 'th', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. เริ่มต้น with Top priority หมวดหมู่.', '2025-11-21 00:58:59'),
(28667, 'th', 'directory', 'Approved', 'อนุมัติแล้ว', '2025-11-21 00:58:59'),
(28666, 'th', 'directory', 'Add back to directory list', 'เพิ่มกลับไปยังรายการไดเรกทอรี', '2025-11-21 00:58:59'),
(28665, 'th', 'dashboard', 'Worst Rank', 'Worst อันดับ', '2025-11-21 00:58:59'),
(28664, 'th', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility คะแนน (Standard Deviation)', '2025-11-21 00:58:59'),
(28663, 'th', 'dashboard', 'Volatility Score', 'Volatility คะแนน', '2025-11-21 00:58:59'),
(28662, 'th', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'ข้อมูลความผันผวนต้องการการตรวจสอบอันดับอย่างน้อย 2 ครั้งภายในช่วงเวลาที่เลือก.', '2025-11-21 00:58:59'),
(28661, 'th', 'dashboard', 'Volatility', 'Volatility', '2025-11-21 00:58:59'),
(28659, 'th', 'dashboard', 'Top 3', 'Top 3', '2025-11-21 00:58:59'),
(28660, 'th', 'dashboard', 'Trend', 'Trend', '2025-11-21 00:58:59'),
(28658, 'th', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile คำสำคัญ', '2025-11-21 00:58:59'),
(28656, 'th', 'dashboard', 'Ranking Volatility', 'Ranking Volatility', '2025-11-21 00:58:59'),
(28657, 'th', 'dashboard', 'Top 10', 'Top 10', '2025-11-21 00:58:59'),
(28654, 'th', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-11-21 00:58:59'),
(28655, 'th', 'dashboard', 'positions', 'positions', '2025-11-21 00:58:59'),
(28653, 'th', 'dashboard', 'Keywords with most ranking fluctuations', 'คำสำคัญ with most ranking fluctuations', '2025-11-21 00:58:59'),
(28652, 'th', 'dashboard', 'Keywords by Ranking Position', 'คำสำคัญ by Ranking ตำแหน่ง', '2025-11-21 00:58:59'),
(28651, 'th', 'dashboard', 'Keyword Statistics', 'คำสำคัญ Statistics', '2025-11-21 00:58:59'),
(28650, 'th', 'dashboard', 'Keyword Distribution by Rank', 'คำสำคัญ Distribution by อันดับ', '2025-11-21 00:58:59'),
(28648, 'th', 'dashboard', 'Avg Rank', 'Avg อันดับ', '2025-11-21 00:58:59'),
(28649, 'th', 'dashboard', 'Best Rank', 'Best อันดับ', '2025-11-21 00:58:59'),
(28647, 'th', 'common', 'Yes', 'ใช่', '2025-11-21 00:58:59'),
(28645, 'th', 'common', 'Website', 'เว็บไซต์', '2025-11-21 00:58:59'),
(28646, 'th', 'common', 'Websites Count', 'เว็บไซต์ จำนวน', '2025-11-21 00:58:59'),
(28644, 'th', 'common', 'Warnings', 'Warnings', '2025-11-21 00:58:59'),
(28643, 'th', 'common', 'User Type', 'ผู้ใช้ ประเภท', '2025-11-21 00:58:59'),
(28642, 'th', 'common', 'User Panel', 'ผู้ใช้ Panel', '2025-11-21 00:58:59'),
(28640, 'th', 'common', 'Url', 'URL', '2025-11-21 00:58:59'),
(28641, 'th', 'common', 'User', 'ผู้ใช้', '2025-11-21 00:58:59'),
(28639, 'th', 'common', 'Total', 'ทั้งหมด', '2025-11-21 00:58:59'),
(28638, 'th', 'common', 'Tools', 'เครื่องมือ', '2025-11-21 00:58:59'),
(28636, 'th', 'common', 'Support', 'Support', '2025-11-21 00:58:59'),
(28637, 'th', 'common', 'Thank you', 'Thank you', '2025-11-21 00:58:59'),
(28635, 'th', 'common', 'Status', 'สถานะ', '2025-11-21 00:58:59'),
(28634, 'th', 'common', 'Spam Score', 'Spam คะแนน', '2025-11-21 00:58:59'),
(28633, 'th', 'common', 'Source', 'Source', '2025-11-21 00:58:59'),
(28632, 'th', 'common', 'signin', 'ลงชื่อเข้าใช้', '2025-11-21 00:58:59'),
(28631, 'th', 'common', 'Sign Up', 'สมัครสมาชิก', '2025-11-21 00:58:59'),
(28630, 'th', 'common', 'Sign out', 'ออกจากระบบ', '2025-11-21 00:58:59'),
(28629, 'th', 'common', 'Server', 'Server', '2025-11-21 00:58:59'),
(28628, 'th', 'common', 'Seo Tools', 'เครื่องมือ SEO', '2025-11-21 00:58:59'),
(28626, 'th', 'common', 'Select', 'เลือก', '2025-11-21 00:58:59'),
(28627, 'th', 'common', 'Seo Plugins', 'ปลั๊กอิน SEO', '2025-11-21 00:58:59'),
(28625, 'th', 'common', 'Search Engine Count', 'เครื่องมือค้นหา จำนวน', '2025-11-21 00:58:59'),
(28624, 'th', 'common', 'Search Engine', 'เครื่องมือค้นหา', '2025-11-21 00:58:59'),
(28623, 'th', 'common', 'Sample CSV File', 'Sample CSV File', '2025-11-21 00:58:59'),
(28622, 'th', 'common', 'Results', 'ผลลัพธ์', '2025-11-21 00:58:59'),
(28621, 'th', 'common', 'Reports', 'รายงาน', '2025-11-21 00:58:59'),
(28620, 'th', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification ล้มเหลว', '2025-11-21 00:58:59'),
(28619, 'th', 'common', 'Rankings', 'Rankings', '2025-11-21 00:58:59'),
(28618, 'th', 'common', 'Rank', 'อันดับ', '2025-11-21 00:58:59'),
(28617, 'th', 'common', 'Range', 'Range', '2025-11-21 00:58:59'),
(28616, 'th', 'common', 'Profile', 'โปรไฟล์', '2025-11-21 00:58:59'),
(28614, 'th', 'common', 'Pricing', 'Pricing', '2025-11-21 00:58:59'),
(28615, 'th', 'common', 'Priority', 'Priority', '2025-11-21 00:58:59'),
(28613, 'th', 'common', 'Price', 'Price', '2025-11-21 00:58:59'),
(28612, 'th', 'common', 'Powered by', 'Powered by', '2025-11-21 00:58:59'),
(28611, 'th', 'common', 'Plugins', 'ปลั๊กอิน', '2025-11-21 00:58:59'),
(28610, 'th', 'common', 'Period', 'Period', '2025-11-21 00:58:59'),
(28609, 'th', 'common', 'passwordnotmatch', 'The passwords do not match', '2025-11-21 00:58:59'),
(28607, 'th', 'common', 'Pagerank', 'Pagerank', '2025-11-21 00:58:59'),
(28608, 'th', 'common', 'password632', 'The รหัสผ่าน string should have a length between 6 and 32', '2025-11-21 00:58:59'),
(28605, 'th', 'common', 'Number', 'Number', '2025-11-21 00:58:59'),
(28606, 'th', 'common', 'Page Authority', 'อำนาจหน้า', '2025-11-21 00:58:59'),
(28604, 'th', 'common', 'nowebsites', 'No เว็บไซต์ Found', '2025-11-21 00:58:59'),
(28603, 'th', 'common', 'noactivetools', 'No ใช้งานอยู่ เครื่องมือ SEO Found!', '2025-11-21 00:58:59'),
(28602, 'th', 'common', 'No Records Found', 'ไม่พบบันทึก', '2025-11-21 00:58:59'),
(28600, 'th', 'common', 'No', 'ไม่', '2025-11-21 00:58:59'),
(28601, 'th', 'common', 'No Keywords Found', 'No คำสำคัญ Found', '2025-11-21 00:58:59'),
(28598, 'th', 'Common', 'Name', 'ชื่อ', '2025-11-21 00:58:59'),
(28599, 'th', 'common', 'New User Type', 'ใหม่ ผู้ใช้ ประเภท', '2025-11-21 00:58:59'),
(28558, 'th', 'common', 'Dashboard', 'แดชบอร์ด', '2025-11-21 00:58:59'),
(28559, 'th', 'common', 'Date', 'วันที่', '2025-11-21 00:58:59'),
(28560, 'th', 'common', 'Debug', 'แก้ไขข้อผิดพลาด', '2025-11-21 00:58:59'),
(28561, 'th', 'common', 'Delete', 'ลบ', '2025-11-21 00:58:59'),
(28562, 'th', 'common', 'Details', 'รายละเอียด', '2025-11-21 00:58:59'),
(28563, 'th', 'common', 'Directory', 'ไดเรกทอรี', '2025-11-21 00:58:59'),
(28564, 'th', 'common', 'Domain Authority', 'อำนาจโดเมน', '2025-11-21 00:58:59'),
(28565, 'th', 'common', 'Donate', 'บริจาค', '2025-11-21 00:58:59'),
(28566, 'th', 'common', 'Edit', 'แก้ไข', '2025-11-21 00:58:59'),
(28567, 'th', 'common', 'Edit User Type', 'แก้ไขผู้ใช้ ประเภท', '2025-11-21 00:58:59'),
(28568, 'th', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2025-11-21 00:58:59'),
(28569, 'th', 'common', 'entrynotvalid', 'รายการที่ใส่ดูเหมือนจะไม่ถูกต้อง', '2025-11-21 00:58:59'),
(28570, 'th', 'common', 'Errors', 'Errors', '2025-11-21 00:58:59'),
(28571, 'th', 'common', 'failed', 'ล้มเหลว', '2025-11-21 00:58:59'),
(28572, 'th', 'common', 'forum', 'ฟอรั่ม', '2025-11-21 00:58:59'),
(28573, 'th', 'common', 'Found', 'Found', '2025-11-21 00:58:59'),
(28574, 'th', 'common', 'General', 'General', '2025-11-21 00:58:59'),
(28575, 'th', 'common', 'Google Pagerank', 'Google Pagerank', '2025-11-21 00:58:59'),
(28576, 'th', 'common', 'Hello', 'Hello', '2025-11-21 00:58:59'),
(28577, 'th', 'common', 'help', 'ช่วยเหลือ', '2025-11-21 00:58:59'),
(28578, 'th', 'common', 'hidenews', 'Hide Seo Panel News', '2025-11-21 00:58:59'),
(28579, 'th', 'common', 'Home', 'หน้าแรก', '2025-11-21 00:58:59'),
(28580, 'th', 'common', 'Id', 'Id', '2025-11-21 00:58:59'),
(28581, 'th', 'common', 'Inactivate', 'Inactivate', '2025-11-21 00:58:59'),
(28582, 'th', 'common', 'Inactive', 'Inactive', '2025-11-21 00:58:59'),
(28583, 'th', 'common', 'Internal error occured', 'Internal ข้อผิดพลาด occured', '2025-11-21 00:58:59'),
(28584, 'th', 'common', 'Invalid characters', 'Invalid characters', '2025-11-21 00:58:59'),
(28585, 'th', 'common', 'Invalid code entered', 'รหัสที่ใส่ไม่ถูกต้อง', '2025-11-21 00:58:59'),
(28586, 'th', 'common', 'Invalid email address entered', 'ที่อยู่อีเมลที่ใส่ไม่ถูกต้อง', '2025-11-21 00:58:59'),
(28587, 'th', 'common', 'Invalid Url', 'Invalid URL', '2025-11-21 00:58:59'),
(28588, 'th', 'common', 'Invalid value', 'Invalid ค่า', '2025-11-21 00:58:59'),
(28589, 'th', 'common', 'Keyword', 'คำสำคัญ', '2025-11-21 00:58:59'),
(28590, 'th', 'common', 'Keywords', 'คำสำคัญ', '2025-11-21 00:58:59'),
(28591, 'th', 'common', 'Keywords Count', 'คำสำคัญ จำนวน', '2025-11-21 00:58:59'),
(28592, 'th', 'common', 'lang', 'ภาษา', '2025-11-21 00:58:59'),
(28593, 'th', 'common', 'Link', 'Link', '2025-11-21 00:58:59'),
(28594, 'th', 'common', 'Logout', 'ออกจากระบบ', '2025-11-21 00:58:59'),
(28595, 'th', 'common', 'Metric', 'Metric', '2025-11-21 00:58:59'),
(28596, 'th', 'common', 'MOZ Rank', 'MOZ อันดับ', '2025-11-21 00:58:59'),
(28597, 'th', 'common', 'My Account', 'บัญชีของฉัน', '2025-11-21 00:58:59'),
(28544, 'th', 'common', 'Action', 'การดำเนินการ', '2025-11-21 00:58:59'),
(28545, 'th', 'common', 'Activate', 'เปิดใช้งาน', '2025-11-21 00:58:59'),
(28546, 'th', 'common', 'Active', 'ใช้งานอยู่', '2025-11-21 00:58:59'),
(28547, 'th', 'common', 'Admin Panel', 'แผงควบคุมผู้ดูแลระบบ', '2025-11-21 00:58:59'),
(28548, 'th', 'common', 'Alexa Rank', 'อันดับ Alexa', '2025-11-21 00:58:59'),
(28549, 'th', 'common', 'All', 'ทั้งหมด', '2025-11-21 00:58:59'),
(28550, 'th', 'common', 'API Token', 'โทเค็น API', '2025-11-21 00:58:59'),
(28551, 'th', 'common', 'Blog', 'บล็อก', '2025-11-21 00:58:59'),
(28552, 'th', 'common', 'Category', 'หมวดหมู่', '2025-11-21 00:58:59'),
(28553, 'th', 'common', 'Checked', 'ตรวจสอบแล้ว', '2025-11-21 00:58:59'),
(28554, 'th', 'common', 'contact', 'ติดต่อ', '2025-11-21 00:58:59'),
(28555, 'th', 'common', 'copyright', 'Copyright © [year] www.seopanel.org ทั้งหมด rights reserved', '2025-11-21 00:58:59'),
(28556, 'th', 'common', 'Country', 'ประเทศ', '2025-11-21 00:58:59'),
(28557, 'th', 'common', 'Crawl Meta Data', 'คลานเมตาดาต้า', '2025-11-21 00:58:59'),
(28534, 'th', 'blog', 'Older Posts', 'โพสต์เก่ากว่า', '2025-11-21 00:58:59'),
(28535, 'th', 'button', 'Cancel', 'ยกเลิก', '2025-11-21 00:58:59'),
(28536, 'th', 'button', 'Check Status', 'ตรวจสอบสถานะ', '2025-11-21 00:58:59'),
(28537, 'th', 'button', 'Proceed', 'ดำเนินการต่อ', '2025-11-21 00:58:59'),
(28538, 'th', 'button', 'Reload', 'โหลดใหม่', '2025-11-21 00:58:59'),
(28539, 'th', 'button', 'Search', 'ค้นหา', '2025-11-21 00:58:59'),
(28540, 'th', 'button', 'Show Details', 'แสดงรายละเอียด', '2025-11-21 00:58:59'),
(28541, 'th', 'button', 'Show Records', 'แสดงบันทึก', '2025-11-21 00:58:59'),
(28542, 'th', 'button', 'Skip', 'ข้าม', '2025-11-21 00:58:59'),
(28543, 'th', 'button', 'Submit', 'ส่ง', '2025-11-21 00:58:59'),
(28533, 'th', 'blog', 'NothingFound_text2', 'ขออภัย ไม่มีสิ่งใดตรงกับเกณฑ์การค้นหาของคุณ. กรุณาลองอีกครั้งด้วยคำสำคัญที่แตกต่างกัน.', '2025-11-21 00:58:59'),
(28532, 'th', 'blog', 'Nothing Found', 'ไม่พบข้อมูล', '2025-11-21 00:58:59'),
(28531, 'th', 'blog', 'Newer Posts', 'โพสต์ใหม่กว่า', '2025-11-21 00:58:59'),
(28530, 'th', 'backlink', 'Saved backlink results of', 'บันทึกแล้ว แบ็คลิงก์ ผลลัพธ์ of', '2025-11-21 00:58:59'),
(28529, 'th', 'backlink', 'Domain Backlinks', 'แบ็คลิงก์โดเมน', '2025-11-21 00:58:59'),
(28528, 'th', 'backlink', 'Domain Backlink Count', 'จำนวนแบ็คลิงก์โดเมน', '2025-11-21 00:58:59'),
(28527, 'th', 'backlink', 'clickproceedbacklink', 'ใส่ URL''s <b>หนึ่งรายการต่อบรรทัด</b>. คลิกที่ <b>ดำเนินการต่อ</b> to ตรวจสอบแบ็คลิงก์.', '2025-11-21 00:58:59'),
(28526, 'th', 'backlink', 'Backlink Count', 'จำนวนแบ็คลิงก์', '2025-11-21 00:58:59'),
(28524, 'th', 'api', 'API Guide', 'API Guide', '2025-11-21 00:58:59'),
(28525, 'th', 'api', 'API Url', 'API URL', '2025-11-21 00:58:59'),
(28523, 'th', 'analytics', 'view_id_not_found_error', 'ข้อผิดพลาด: การวิเคราะห์ ดู ID is not set for เว็บไซต์. แก้ไขเว็บไซต์ and อัปเดต ดู ID.', '2025-11-21 00:58:59'),
(28522, 'th', 'analytics', 'Users', 'ผู้ใช้', '2025-11-21 00:58:59'),
(28520, 'th', 'analytics', 'New Users', 'ผู้ใช้ใหม่', '2025-11-21 00:58:59'),
(28521, 'th', 'analytics', 'Sessions', 'เซสชัน', '2025-11-21 00:58:59'),
(28519, 'th', 'analytics', 'Goal Completions', 'การทำเป้าหมายสำเร็จ', '2025-11-21 00:58:59'),
(28518, 'th', 'analytics', 'Bounce Rate', 'อัตราตีกลับ', '2025-11-21 00:58:59'),
(28517, 'th', 'analytics', 'Avg. Session Duration', 'ระยะเวลาเซสชันเฉลี่ย', '2025-11-21 00:58:59'),
(37037, 'tl', 'siteauditor', 'Completed project execution', 'Nakumpleto Proyekto execution', '2025-11-21 01:24:52'),
(37036, 'tl', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will Pagtaas the execution Oras of a Proyekto', '2025-11-21 01:24:52'),
(37035, 'tl', 'siteauditor', 'Check Score', 'Check Puntos', '2025-11-21 01:24:52'),
(37034, 'tl', 'siteauditor', 'Check pages indexed or not', 'Check Mga Pahina indexed or not', '2025-11-21 01:24:52'),
(37033, 'tl', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of Mga Pahina', '2025-11-21 01:24:52'),
(37031, 'tl', 'siteauditor', 'Check broken links in a page', 'Check broken links in a Pahina', '2025-11-21 01:24:52'),
(37030, 'tl', 'siteauditor', 'Check backlinks of pages', 'Check Mga Backlink of Mga Pahina', '2025-11-21 01:24:52'),
(37029, 'tl', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded from sitemap', '2025-11-21 01:24:52'),
(37028, 'tl', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded from Mga Ulat', '2025-11-21 01:24:52'),
(37027, 'tl', 'siteauditor', 'Anchor', 'Anchor', '2025-11-21 01:24:52'),
(37026, 'tl', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up Hanggang Petsa.', '2025-11-21 01:24:52'),
(37025, 'tl', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up Hanggang Petsa. <br>Please Mag-download new Bersyon', '2025-11-21 01:24:52'),
(37024, 'tl', 'settings', 'Verify connection', 'Verify connection', '2025-11-21 01:24:52'),
(37023, 'tl', 'settings', 'syssettingssaved', 'Mga Setting ng Sistema saved successfully!', '2025-11-21 01:24:52'),
(37022, 'tl', 'settings', 'SP_USER_REGISTRATION', 'Gumagamit registration interface', '2025-11-21 01:24:52'),
(37021, 'tl', 'settings', 'SP_USER_GEN_REPORT', 'Allow Gumagamit to generate Mga Ulat', '2025-11-21 01:24:52'),
(37020, 'tl', 'settings', 'SP_USER_AGENT', 'Gumagamit agent', '2025-11-21 01:24:52'),
(37019, 'tl', 'settings', 'SP_TITLE', 'Seo Panel Pamagat', '2025-11-21 01:24:52'),
(37018, 'tl', 'settings', 'SP_TIME_ZONE', 'Oras Zone', '2025-11-21 01:24:52'),
(37017, 'tl', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Pinakamababa Allowed Reporting Interval', '2025-11-21 01:24:52'),
(37016, 'tl', 'settings', 'SP_SMTP_USERNAME', 'SMTP Username', '2025-11-21 01:24:52'),
(37015, 'tl', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2025-11-21 01:24:52'),
(37014, 'tl', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Password', '2025-11-21 01:24:52'),
(37013, 'tl', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2025-11-21 01:24:52'),
(37012, 'tl', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2025-11-21 01:24:52'),
(37011, 'tl', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2025-11-21 01:24:52'),
(37010, 'tl', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send Custom header with curl request', '2025-11-21 01:24:52'),
(37009, 'tl', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of Email Mga Abiso for Mga Ulat', '2025-11-21 01:24:52');
INSERT INTO `texts` VALUES
(37008, 'tl', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Crawl relative links in a Pahina', '2025-11-21 01:24:52'),
(37007, 'tl', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2025-11-21 01:24:52'),
(37006, 'tl', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2025-11-21 01:24:52'),
(37005, 'tl', 'settings', 'SP_PAGINGNO', 'Numero of entries per Pahina', '2025-11-21 01:24:52'),
(37004, 'tl', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Numero of Mga Keyword needs to be checked in each cron execution', '2025-11-21 01:24:52'),
(37003, 'tl', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2025-11-21 01:24:52'),
(37002, 'tl', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2025-11-21 01:24:52'),
(37001, 'tl', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2025-11-21 01:24:52'),
(37000, 'tl', 'settings', 'SP_KEYWORDS', 'Seo Panel Mga Keyword', '2025-11-21 01:24:52'),
(36999, 'tl', 'settings', 'SP_HOTLINKING', 'Image hotlink protection Naka-enable', '2025-11-21 01:24:52'),
(36998, 'tl', 'settings', 'SP_GOOGLE_API_KEY', 'Google API Key', '2025-11-21 01:24:52'),
(36997, 'tl', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2025-11-21 01:24:52'),
(36996, 'tl', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2025-11-21 01:24:52'),
(36995, 'tl', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google Analytics Tracking Code', '2025-11-21 01:24:52'),
(36994, 'tl', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2025-11-21 01:24:52'),
(36993, 'tl', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable Proxy for Google API', '2025-11-21 01:24:52'),
(36992, 'tl', 'settings', 'SP_ENABLE_PROXY', 'Enable Proxy', '2025-11-21 01:24:52'),
(36991, 'tl', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2025-11-21 01:24:52'),
(36990, 'tl', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for Backlink and Tagasuri ng Saturation', '2025-11-21 01:24:52'),
(36989, 'tl', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2025-11-21 01:24:52'),
(36988, 'tl', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2025-11-21 01:24:52'),
(36987, 'tl', 'settings', 'SP_DFS_API_PASSWORD', 'API Password', '2025-11-21 01:24:52'),
(36986, 'tl', 'settings', 'SP_DFS_API_LOGIN', 'API Mag-login', '2025-11-21 01:24:52'),
(36985, 'tl', 'settings', 'SP_DESCRIPTION', 'Seo Panel Paglalarawan', '2025-11-21 01:24:52'),
(36984, 'tl', 'settings', 'SP_DEFAULTLANG', 'Default Wika', '2025-11-21 01:24:52'),
(36983, 'tl', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider crawl(seconds)', '2025-11-21 01:24:52'),
(36982, 'tl', 'settings', 'SP_COMPANY_NAME', 'Company Pangalan', '2025-11-21 01:24:52'),
(36981, 'tl', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2025-11-21 01:24:52'),
(36980, 'tl', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow Mga Gumagamit to Iskedyul Ulat', '2025-11-21 01:24:52'),
(36979, 'tl', 'settings', 'seopanel_title', 'Seo Panel: World''s Una open Pinagmulan seo control panel for managing multiple web sites', '2025-11-21 01:24:52'),
(36978, 'tl', 'settings', 'seopanel_description', 'A complete free control panel for managing Maghanap Engine optimization of your Mga Website. It containing lots of hot Mga SEO Mga Kagamitan to Pagtaas and track the performace your Mga Website. Its an open Pinagmulan software and also you can develop your own seo Mga Plugin for seo panel.', '2025-11-21 01:24:52'),
(36977, 'tl', 'settings', 'Send Email', 'Send Email', '2025-11-21 01:24:52'),
(36976, 'tl', 'settings', 'SA_MAX_NO_PAGES', 'Pinakamataas Numero of Mga Pahina allowed per Website', '2025-11-21 01:24:52'),
(36975, 'tl', 'settings', 'SA_CRAWL_DELAY_TIME', 'Tagasuri ng Site crawl delay between each Mga Pahina', '2025-11-21 01:24:52'),
(36974, 'tl', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate Proxy When Crawling Nabigo', '2025-11-21 01:24:52'),
(36973, 'tl', 'settings', 'Please update MOZ settings to get complete results', 'Please I-update MOZ Mga Setting to get complete Mga Resulta', '2025-11-21 01:24:52'),
(36972, 'tl', 'settings', 'Please update google settings to get the results', 'Please I-update Google Mga Setting to get the Mga Resulta', '2025-11-21 01:24:52'),
(36971, 'tl', 'settings', 'getallpluginfree', 'Also get all <b>Mga Plugin</b> we develop for <b>Free!</b>', '2025-11-21 01:24:52'),
(36970, 'tl', 'settings', 'entersmtpdetails', 'Pakipasok SMTP mail Kaayusan', '2025-11-21 01:24:52'),
(36969, 'tl', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP Proxy Tunnel', '2025-11-21 01:24:52'),
(36968, 'tl', 'settings', 'click-to-get-moz-account', 'Mag-click dito to get MOZ Account', '2025-11-21 01:24:52'),
(36967, 'tl', 'settings', 'click-to-get-google-api-key', 'Mag-click dito to get Google API Key', '2025-11-21 01:24:52'),
(36966, 'tl', 'settings', 'click-to-get-google-api-client-id', 'Mag-click dito to get Google API Client Id', '2025-11-21 01:24:52'),
(36965, 'tl', 'settings', 'click-to-get-dataforseo-account', 'Mag-click dito to get Free DataForSEO Account', '2025-11-21 01:24:52'),
(36964, 'tl', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Donate $100</b> and become a <b>sponsor</b> of Seo Panel.', '2025-11-21 01:24:52'),
(36963, 'tl', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another Proxy When Crawling Nabigo', '2025-11-21 01:24:52'),
(36961, 'tl', 'settings', 'Check for Updates', 'Check for Updates', '2025-11-21 01:24:52'),
(36962, 'tl', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Pinakamataas Numero of proxies used in single execution', '2025-11-21 01:24:52'),
(36960, 'tl', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2025-11-21 01:24:52'),
(36959, 'tl', 'settings', 'API_SECRET', 'API Secret', '2025-11-21 01:24:52'),
(36958, 'tl', 'settings', 'allsettingssaved', 'All Mga Setting saved successfully!', '2025-11-21 01:24:52'),
(36957, 'tl', 'seotools', 'Website Search Summary', 'Website Maghanap Summary', '2025-11-21 01:24:52'),
(36956, 'tl', 'seotools', 'Website Search Reports', 'Website Maghanap Mga Ulat', '2025-11-21 01:24:52'),
(36955, 'tl', 'seotools', 'Website Analytics Summary', 'Website Analytics Summary', '2025-11-21 01:24:52'),
(36954, 'tl', 'seotools', 'webmaster-tools', 'Webmaster Mga Kagamitan', '2025-11-21 01:24:52'),
(36952, 'tl', 'seotools', 'User Access', 'Gumagamit Access', '2025-11-21 01:24:52'),
(36953, 'tl', 'seotools', 'web-analytics', 'Website Analytics', '2025-11-21 01:24:52'),
(36951, 'tl', 'seotools', 'Submission Reports', 'Submission Mga Ulat', '2025-11-21 01:24:52'),
(36950, 'tl', 'seotools', 'Social Media Report Summary', 'Social Media Ulat Summary', '2025-11-21 01:24:52'),
(36949, 'tl', 'seotools', 'Social Media Links', 'Social Media Links', '2025-11-21 01:24:52'),
(36946, 'tl', 'seotools', 'sitemap-generator', 'Sitemap Generator', '2025-11-21 01:24:52'),
(36947, 'tl', 'seotools', 'Skipped Directories', 'Skipped Directories', '2025-11-21 01:24:52'),
(36948, 'tl', 'seotools', 'sm-checker', 'Social Media Checker', '2025-11-21 01:24:52'),
(36945, 'tl', 'seotools', 'Sitemap Reports Summary', 'Sitemap Mga Ulat Summary', '2025-11-21 01:24:52'),
(36944, 'tl', 'seotools', 'site-auditor', 'Tagasuri ng Site', '2025-11-21 01:24:52'),
(36942, 'tl', 'seotools', 'Saturation Reports', 'Saturation Mga Ulat', '2025-11-21 01:24:52'),
(36943, 'tl', 'seotools', 'saturation-checker', 'Saturation ng Search Engine', '2025-11-21 01:24:52'),
(36941, 'tl', 'seotools', 'review-manager', 'Review Manager', '2025-11-21 01:24:52'),
(36940, 'tl', 'seotools', 'Review Report Summary', 'Review Ulat Summary', '2025-11-21 01:24:52'),
(36939, 'tl', 'seotools', 'Review Links', 'Review Links', '2025-11-21 01:24:52'),
(36938, 'tl', 'seotools', 'rank-checker', 'Tagasuri ng Ranggo', '2025-11-21 01:24:52'),
(36936, 'tl', 'seotools', 'Quick Saturation Checker', 'Quick Tagasuri ng Saturation', '2025-11-21 01:24:52'),
(36937, 'tl', 'seotools', 'Rank Reports', 'Ranggo Mga Ulat', '2025-11-21 01:24:52'),
(36935, 'tl', 'seotools', 'Quick Rank Checker', 'Quick Tagasuri ng Ranggo', '2025-11-21 01:24:52'),
(36934, 'tl', 'seotools', 'Quick Position Checker', 'Quick Posisyon Checker', '2025-11-21 01:24:52'),
(36933, 'tl', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed Checker', '2025-11-21 01:24:52'),
(36932, 'tl', 'seotools', 'Quick Checker', 'Quick Checker', '2025-11-21 01:24:52'),
(36931, 'tl', 'seotools', 'Quick Backlinks Checker', 'Quick Mga Backlink Checker', '2025-11-21 01:24:52'),
(36930, 'tl', 'seotools', 'PageSpeed Reports', 'PageSpeed Mga Ulat', '2025-11-21 01:24:52'),
(36928, 'tl', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for Mga Ulat generation.\r\nThis action may cause captcha in Maghanap Engine Mga Resulta.', '2025-11-21 01:24:52'),
(36929, 'tl', 'seotools', 'pagespeed', 'PageSpeed Insights', '2025-11-21 01:24:52'),
(36927, 'tl', 'seotools', 'Keywords Manager', 'Mga Keyword Manager', '2025-11-21 01:24:52'),
(36925, 'tl', 'seotools', 'Keyword Search Summary', 'Keyword Maghanap Summary', '2025-11-21 01:24:52'),
(36926, 'tl', 'seotools', 'keyword-position-checker', 'Posisyon ng Keyword Checker', '2025-11-21 01:24:52'),
(36924, 'tl', 'seotools', 'Keyword Search Reports', 'Keyword Maghanap Mga Ulat', '2025-11-21 01:24:52'),
(36923, 'tl', 'seotools', 'Keyword Position Summary', 'Posisyon ng Keyword Summary', '2025-11-21 01:24:52'),
(36922, 'tl', 'seotools', 'Import Project Links', 'I-import Proyekto Links', '2025-11-21 01:24:52'),
(36921, 'tl', 'seotools', 'Graphical Reports', 'Graphical Mga Ulat', '2025-11-21 01:24:52'),
(36920, 'tl', 'seotools', 'Graphical Position Reports', 'Graphical Posisyon Mga Ulat', '2025-11-21 01:24:52'),
(36919, 'tl', 'seotools', 'Google Sitemap Generator', 'Google Sitemap Generator', '2025-11-21 01:24:52'),
(36918, 'tl', 'seotools', 'Generate Saturation Reports', 'Generate Saturation Mga Ulat', '2025-11-21 01:24:52'),
(36917, 'tl', 'seotools', 'Generate Reports', 'Generate Mga Ulat', '2025-11-21 01:24:52'),
(36916, 'tl', 'seotools', 'Generate Rank Reports', 'Generate Ranggo Mga Ulat', '2025-11-21 01:24:52'),
(36915, 'tl', 'seotools', 'Generate Keyword Reports', 'Generate Keyword Mga Ulat', '2025-11-21 01:24:52'),
(36913, 'tl', 'seotools', 'Featured Submission', 'Featured Submission', '2025-11-21 01:24:52'),
(36914, 'tl', 'seotools', 'Generate Backlinks Reports', 'Generate Mga Backlink Mga Ulat', '2025-11-21 01:24:52'),
(36912, 'tl', 'seotools', 'Edit Seo Tool', 'I-edit Seo Tool', '2025-11-21 01:24:52'),
(36910, 'tl', 'seotools', 'Detailed Reports', 'Detailed Mga Ulat', '2025-11-21 01:24:52'),
(36911, 'tl', 'seotools', 'directory-submission', 'Direktoryo Submission', '2025-11-21 01:24:52'),
(36909, 'tl', 'seotools', 'Detailed Position Reports', 'Detailed Posisyon Mga Ulat', '2025-11-21 01:24:52'),
(36908, 'tl', 'seotools', 'clickproceedaction', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Mga Resulta.', '2025-11-21 01:24:52'),
(36907, 'tl', 'seotools', 'clickgeneratereports', 'Click on <b>Proceed</b> to generate Mga Ulat', '2025-11-21 01:24:52'),
(36906, 'tl', 'seotools', 'Check Submission Status', 'Check Submission Katayuan', '2025-11-21 01:24:52'),
(36905, 'tl', 'seotools', 'Backlinks Reports', 'Mga Backlink Mga Ulat', '2025-11-21 01:24:52'),
(36895, 'tl', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick Saturation ng Maghanap Engine Checker', '2025-11-21 01:24:52'),
(36896, 'tl', 'saturation', 'Saved Search Engine Saturation results of', 'Saved Saturation ng Maghanap Engine Mga Resulta of', '2025-11-21 01:24:52'),
(36897, 'tl', 'saturation', 'Search Engine Saturation Reports', 'Saturation ng Maghanap Engine Mga Ulat', '2025-11-21 01:24:52'),
(36898, 'tl', 'searchengine', 'max_results', 'Pinakamataas Numero of Mga Resulta', '2025-11-21 01:24:52'),
(36899, 'tl', 'searchengine', 'no_of_results_page', 'Numero of Mga Resulta per Pahina', '2025-11-21 01:24:52'),
(36900, 'tl', 'seotools', 'Auditor Projects', 'Auditor Mga Proyekto', '2025-11-21 01:24:52'),
(36901, 'tl', 'seotools', 'Auditor Reports', 'Auditor Mga Ulat', '2025-11-21 01:24:52'),
(36902, 'tl', 'seotools', 'Auditor Settings', 'Auditor Mga Setting', '2025-11-21 01:24:52'),
(36903, 'tl', 'seotools', 'Automatic Submission', 'Awtomatiko Submission', '2025-11-21 01:24:52'),
(36904, 'tl', 'seotools', 'backlink-checker', 'Mga Backlink Checker', '2025-11-21 01:24:52'),
(36863, 'tl', 'QuickWebProxy', 'Url blocked in the web proxy', 'Url blocked in the web proxy', '2025-11-21 01:24:52'),
(36864, 'tl', 'QuickWebProxy', 'Web Proxy', 'Web Proxy', '2025-11-21 01:24:52'),
(36865, 'tl', 'QuickWebProxy', 'Web Server', 'Web Server', '2025-11-21 01:24:52'),
(36866, 'tl', 'rank', 'enterurlproceed', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Google and Alexa Ranggo.', '2025-11-21 01:24:52'),
(36867, 'tl', 'rank', 'Google and Alexa Rank Reports', 'Google and Alexa Ranggo Mga Ulat', '2025-11-21 01:24:52'),
(36868, 'tl', 'rank', 'Saved rank results of', 'Saved Ranggo Mga Resulta of', '2025-11-21 01:24:52'),
(36869, 'tl', 'register', 'Account Information', 'Account Impormasyon', '2025-11-21 01:24:52'),
(36870, 'tl', 'register', 'Already have account', 'Already have an Account?', '2025-11-21 01:24:52'),
(36871, 'tl', 'register', 'First name placeholder', 'Una Pangalan', '2025-11-21 01:24:52'),
(36872, 'tl', 'register', 'Last name placeholder', 'Huli Pangalan', '2025-11-21 01:24:52'),
(36873, 'tl', 'register', 'Personal Information', 'Personal Impormasyon', '2025-11-21 01:24:52'),
(36874, 'tl', 'register', 'Register subtitle', 'Join us Ngayon and start optimizing your SEO', '2025-11-21 01:24:52'),
(36875, 'tl', 'register', 'Registration', 'Registration', '2025-11-21 01:24:52'),
(36876, 'tl', 'register', 'Subscription Details', 'Subscription Mga Detalye', '2025-11-21 01:24:52'),
(36877, 'tl', 'register', 'user_confirm_content_1', 'Internal Error occured while Pinoproseso Kumpirmahin request', '2025-11-21 01:24:52'),
(36878, 'tl', 'register', 'user_confirm_mail_cont_1', 'Thank you for your registration with', '2025-11-21 01:24:52'),
(36879, 'tl', 'register', 'user_confirm_mail_cont_2', 'Please click on the following Link to Kumpirmahin registration', '2025-11-21 01:24:52'),
(36880, 'tl', 'report', '2 Days', '2 Days', '2025-11-21 01:24:52'),
(36881, 'tl', 'report', 'Email notification', 'Email Abiso', '2025-11-21 01:24:52'),
(36882, 'tl', 'report', 'keywordnumbercheckedcronnote', 'Tala: Default 0 means all Mga Keyword should be checked', '2025-11-21 01:24:52'),
(36883, 'tl', 'report', 'Next report generation time', 'Susunod Ulat generation Oras', '2025-11-21 01:24:52'),
(36884, 'tl', 'report', 'Reports generation interval', 'Mga Ulat generation interval', '2025-11-21 01:24:52'),
(36885, 'tl', 'report', 'reportsettingssaved', 'Ulat Mga Setting saved successfully!', '2025-11-21 01:24:52'),
(36886, 'tl', 'report', 'sheduledsuccessfully', 'Naka-iskedyul Ulat generation successfully!', '2025-11-21 01:24:52'),
(36887, 'tl', 'reports', 'report_email_body_text1', 'Your Mga Ulat generated successfully in seo panel. Please check the attached Mga Ulat.', '2025-11-21 01:24:52'),
(36888, 'tl', 'reports', 'report_email_body_text2', 'If above Mga Ulat are not Linisin, Please [LOGIN_LINK] to Tingnan the Mga Ulat directly from your Account.', '2025-11-21 01:24:52'),
(36889, 'tl', 'reports', 'report_email_subject', 'Your SEO Mga Ulat generated successfully', '2025-11-21 01:24:52'),
(36890, 'tl', 'reports', 'Reports Generated Successfully', 'Mga Ulat Generated Successfully', '2025-11-21 01:24:52'),
(36891, 'tl', 'review', 'Edit Review Link', 'I-edit Review Link', '2025-11-21 01:24:52'),
(36892, 'tl', 'review', 'New Review Link', 'New Review Link', '2025-11-21 01:24:52'),
(36893, 'tl', 'saturation', 'clickproceedsaturation', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Saturation ng Maghanap Engine Mga Resulta', '2025-11-21 01:24:52'),
(36894, 'tl', 'saturation', 'GenerateSaturationReports', 'Generate Saturation ng Maghanap Engine Mga Ulat', '2025-11-21 01:24:52'),
(36858, 'tl', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow Gumagamit to access the web proxy', '2025-11-21 01:24:52'),
(36859, 'tl', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a proxy', '2025-11-21 01:24:52'),
(36860, 'tl', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web Proxy', '2025-11-21 01:24:52'),
(36861, 'tl', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web proxy.', '2025-11-21 01:24:52'),
(36862, 'tl', 'QuickWebProxy', 'Server list is empty', 'Server list is empty', '2025-11-21 01:24:52'),
(36857, 'tl', 'QuickWebProxy', 'Please enter a valid url', 'Pakipasok a Wasto url', '2025-11-21 01:24:52'),
(36856, 'tl', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2025-11-21 01:24:52'),
(36855, 'tl', 'proxy', 'Request Count', 'Request Bilang', '2025-11-21 01:24:52'),
(36854, 'tl', 'proxy', 'proxysyntax', 'Proxy Hostname, Proxy Port, Proxy Username, Proxy Password', '2025-11-21 01:24:52'),
(36853, 'tl', 'proxy', 'Proxyalreadyexist', 'Proxy already exist!', '2025-11-21 01:24:52'),
(36852, 'tl', 'proxy', 'Proxy Username', 'Proxy Username', '2025-11-21 01:24:52'),
(36851, 'tl', 'proxy', 'Proxy Password', 'Proxy Password', '2025-11-21 01:24:52'),
(36850, 'tl', 'proxy', 'enterproxynote', 'Enter proxy one per line in following Format.', '2025-11-21 01:24:52'),
(36849, 'tl', 'proxy', 'Edit Proxy', 'I-edit Proxy', '2025-11-21 01:24:52'),
(36848, 'tl', 'proxy', 'click-to-get-proxy', 'Mag-click dito to get proxy', '2025-11-21 01:24:52'),
(36847, 'tl', 'plugin', 'Seo Plugin Details', 'Seo Plugin Mga Detalye', '2025-11-21 01:24:52'),
(36846, 'tl', 'plugin', 'Plugin Name', 'Plugin Pangalan', '2025-11-21 01:24:52'),
(36845, 'tl', 'plugin', 'Edit Seo Plugin', 'I-edit Seo Plugin', '2025-11-21 01:24:52'),
(36844, 'tl', 'plugin', 'Download Seo Panel Plugins', 'Mag-download Seo Panel Mga Plugin', '2025-11-21 01:24:52'),
(36843, 'tl', 'panel', 'Website Manager', 'Website Manager', '2025-11-21 01:24:52'),
(36842, 'tl', 'panel', 'Website Access Manager', 'Website Access Manager', '2025-11-21 01:24:52'),
(36841, 'tl', 'panel', 'Valid', 'Wasto', '2025-11-21 01:24:52'),
(36840, 'tl', 'panel', 'User Type Settings', 'Gumagamit Uri Mga Setting', '2025-11-21 01:24:52'),
(36839, 'tl', 'panel', 'User Type Manager', 'Gumagamit Uri Manager', '2025-11-21 01:24:52'),
(36838, 'tl', 'panel', 'User Manager', 'Gumagamit Manager', '2025-11-21 01:24:52'),
(36837, 'tl', 'panel', 'Themes Manager', 'Themes Manager', '2025-11-21 01:24:52'),
(36836, 'tl', 'panel', 'Test Email Settings', 'Test Mga Setting ng Email', '2025-11-21 01:24:52'),
(36834, 'tl', 'panel', 'Sync Search Engines', 'Sync Mga Maghanap Engine', '2025-11-21 01:24:52'),
(36835, 'tl', 'panel', 'System Settings', 'Mga Setting ng Sistema', '2025-11-21 01:24:52'),
(36832, 'tl', 'panel', 'Sitemaps', 'Sitemaps', '2025-11-21 01:24:52'),
(36833, 'tl', 'panel', 'Submit Sitemap', 'Isumite Sitemap', '2025-11-21 01:24:52'),
(36831, 'tl', 'panel', 'Settings', 'Mga Setting', '2025-11-21 01:24:52'),
(36830, 'tl', 'panel', 'Seo Tools Manager', 'Mga SEO Mga Kagamitan Manager', '2025-11-21 01:24:52'),
(36829, 'tl', 'panel', 'Seo Plugins Manager', 'Seo Mga Plugin Manager', '2025-11-21 01:24:52'),
(36828, 'tl', 'panel', 'Search Engine Manager', 'Maghanap Engine Manager', '2025-11-21 01:24:52'),
(36827, 'tl', 'panel', 'Schedule Reports', 'Iskedyul Mga Ulat', '2025-11-21 01:24:52'),
(36826, 'tl', 'panel', 'Reports Manager', 'Mga Ulat Manager', '2025-11-21 01:24:52'),
(36825, 'tl', 'panel', 'Report Settings', 'Ulat Mga Setting', '2025-11-21 01:24:52'),
(36824, 'tl', 'panel', 'Report Generation Manager', 'Ulat Generation Manager', '2025-11-21 01:24:52'),
(36823, 'tl', 'panel', 'Report Generation Logs', 'Ulat Generation Logs', '2025-11-21 01:24:52'),
(36822, 'tl', 'panel', 'Proxy Settings', 'Proxy Mga Setting', '2025-11-21 01:24:52'),
(36821, 'tl', 'panel', 'Proxy Perfomance', 'Proxy Perfomance', '2025-11-21 01:24:52'),
(36820, 'tl', 'panel', 'Proxy Manager', 'Proxy Manager', '2025-11-21 01:24:52'),
(36819, 'tl', 'panel', 'Project Summary', 'Proyekto Summary', '2025-11-21 01:24:52'),
(36818, 'tl', 'panel', 'Project Manager', 'Proyekto Manager', '2025-11-21 01:24:52'),
(36817, 'tl', 'panel', 'New Website', 'New Website', '2025-11-21 01:24:52'),
(36816, 'tl', 'panel', 'New User Type', 'New Gumagamit Uri', '2025-11-21 01:24:52'),
(36815, 'tl', 'panel', 'New User', 'New Gumagamit', '2025-11-21 01:24:52'),
(36814, 'tl', 'panel', 'New Proxy', 'New Proxy', '2025-11-21 01:24:52'),
(36813, 'tl', 'panel', 'New Project', 'New Proyekto', '2025-11-21 01:24:52'),
(36812, 'tl', 'panel', 'My Profile', 'My Profile', '2025-11-21 01:24:52'),
(36811, 'tl', 'panel', 'MOZ Settings', 'MOZ Mga Setting', '2025-11-21 01:24:52'),
(36810, 'tl', 'panel', 'Mail Settings', 'Mail Mga Setting', '2025-11-21 01:24:52'),
(36809, 'tl', 'panel', 'Mail Log Manager', 'Mail Log Manager', '2025-11-21 01:24:52'),
(36808, 'tl', 'panel', 'Log Manager', 'Log Manager', '2025-11-21 01:24:52'),
(36807, 'tl', 'panel', 'Import Websites', 'I-import Mga Website', '2025-11-21 01:24:52'),
(36806, 'tl', 'panel', 'Import Proxy', 'I-import Proxy', '2025-11-21 01:24:52'),
(36805, 'tl', 'panel', 'Google Settings', 'Google Mga Setting', '2025-11-21 01:24:52'),
(36804, 'tl', 'panel', 'Global Reports Settings', 'Global Mga Ulat Mga Setting', '2025-11-21 01:24:52'),
(36803, 'tl', 'panel', 'Existing', 'Existing', '2025-11-21 01:24:52'),
(36802, 'tl', 'panel', 'Edit Project', 'I-edit Proyekto', '2025-11-21 01:24:52'),
(36801, 'tl', 'panel', 'Edit My Profile', 'I-edit My Profile', '2025-11-21 01:24:52'),
(36800, 'tl', 'panel', 'Directory Manager', 'Direktoryo Manager', '2025-11-21 01:24:52'),
(36799, 'tl', 'panel', 'DataForSEO Settings', 'DataForSEO Mga Setting', '2025-11-21 01:24:52'),
(36798, 'tl', 'panel', 'Current Time', 'Current Oras', '2025-11-21 01:24:52'),
(36797, 'tl', 'panel', 'Cron Command', 'Cron Command', '2025-11-21 01:24:52'),
(36796, 'tl', 'panel', 'Crawl Log Manager', 'Crawl Log Manager', '2025-11-21 01:24:52'),
(36795, 'tl', 'panel', 'Connections', 'Connections', '2025-11-21 01:24:52'),
(36794, 'tl', 'panel', 'Check Directory', 'Check Direktoryo', '2025-11-21 01:24:52'),
(36793, 'tl', 'panel', 'Archived Reports', 'Archived Mga Ulat', '2025-11-21 01:24:52'),
(36792, 'tl', 'panel', 'API Settings', 'Mga API Setting', '2025-11-21 01:24:52'),
(36791, 'tl', 'panel', 'API Manager', 'API Manager', '2025-11-21 01:24:52'),
(36790, 'tl', 'panel', 'API Connection', 'API Connection', '2025-11-21 01:24:52'),
(36789, 'tl', 'panel', 'alsocheckfollowlink', 'Also check following Link if you need more Mga Detalye.', '2025-11-21 01:24:52'),
(36788, 'tl', 'panel', 'Alerts', 'Mga Alerto', '2025-11-21 01:24:52'),
(36787, 'tl', 'panel', 'Add following command to your cron tab', 'Add following command to your cron tab', '2025-11-21 01:24:52'),
(36786, 'tl', 'panel', 'About Us', 'Tungkol Us', '2025-11-21 01:24:52'),
(36785, 'tl', 'pagespeed', 'Saved page speed results of', 'Saved Pahina Bilis Mga Resulta of', '2025-11-21 01:24:52'),
(36784, 'tl', 'pagespeed', 'PageSpeed Details', 'PageSpeed Mga Detalye', '2025-11-21 01:24:52'),
(36783, 'tl', 'pagespeed', 'Page Speed', 'Pahina Bilis', '2025-11-21 01:24:52'),
(36782, 'tl', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2025-11-21 01:24:52'),
(36780, 'tl', 'pagespeed', 'Desktop Speed', 'Desktop Bilis', '2025-11-21 01:24:52'),
(36781, 'tl', 'pagespeed', 'Mobile Speed', 'Mobile Bilis', '2025-11-21 01:24:52'),
(36779, 'tl', 'myaccount', 'Disconnected', 'Hindi nakakonekta', '2025-11-21 01:24:52'),
(36778, 'tl', 'myaccount', 'Disconnect', 'Mag-disconnect', '2025-11-21 01:24:52'),
(36777, 'tl', 'myaccount', 'Connected', 'Nakakonekta', '2025-11-21 01:24:52'),
(36776, 'tl', 'myaccount', 'Connect', 'Kumonekta', '2025-11-21 01:24:52'),
(36775, 'tl', 'login', 'Your Password Reset Successfully', 'Your Password I-reset Successfully', '2025-11-21 01:24:52'),
(36773, 'tl', 'login', 'Your account password is resetted and new password is', 'Your Account Password is resetted and new Password is', '2025-11-21 01:24:52'),
(36774, 'tl', 'login', 'Your Password Reset Failed', 'Your Password I-reset Nabigo', '2025-11-21 01:24:52'),
(36772, 'tl', 'login', 'Your account activated successfully', 'Your Account activated successfully', '2025-11-21 01:24:52'),
(36771, 'tl', 'login', 'Welcome message', 'Welcome Bumalik! Please Mag-login to your Account', '2025-11-21 01:24:52'),
(36770, 'tl', 'login', 'Verification', 'Verification', '2025-11-21 01:24:52'),
(36769, 'tl', 'login', 'usernameexist', 'Username already exist!', '2025-11-21 01:24:52'),
(36768, 'tl', 'login', 'Username placeholder', 'Enter your Username', '2025-11-21 01:24:52'),
(36767, 'tl', 'login', 'Username', 'Username', '2025-11-21 01:24:52'),
(36766, 'tl', 'login', 'user_not_activated_msg', 'Gumagamit is not activated. Please check your mail for activation', '2025-11-21 01:24:52'),
(36765, 'tl', 'login', 'user_email_not_exist', 'Gumagamit Email is not existing in system!', '2025-11-21 01:24:52'),
(36764, 'tl', 'login', 'User Type', 'Gumagamit Uri', '2025-11-21 01:24:52'),
(36763, 'tl', 'login', 'User inactive', 'Gumagamit Hindi Aktibo', '2025-11-21 01:24:52'),
(36762, 'tl', 'login', 'to login to your account', 'to Mag-login to your Account', '2025-11-21 01:24:52'),
(36761, 'tl', 'login', 'Sign in to your account', 'Mag-sign in to your Account', '2025-11-21 01:24:52'),
(36760, 'tl', 'login', 'Sign In', 'Mag-sign in', '2025-11-21 01:24:52'),
(36759, 'tl', 'login', 'Security message', 'Your Impormasyon is secure and encrypted', '2025-11-21 01:24:52'),
(36758, 'tl', 'login', 'Request Password', 'Request Password', '2025-11-21 01:24:52'),
(36757, 'tl', 'login', 'Remember password text', 'Remember your Password?', '2025-11-21 01:24:52'),
(36756, 'tl', 'login', 'Register', 'Register', '2025-11-21 01:24:52'),
(36755, 'tl', 'login', 'password_reset_success_message', 'Your Password I-reset successfully. A confirmation mail send to Email address. <br>Please check your inbox to get your new Password.', '2025-11-21 01:24:52'),
(36754, 'tl', 'login', 'Password placeholder', 'Enter your Password', '2025-11-21 01:24:52'),
(36753, 'tl', 'login', 'Password incorrect', 'Password incorrect', '2025-11-21 01:24:52'),
(36752, 'tl', 'login', 'Password', 'Password', '2025-11-21 01:24:52'),
(36751, 'tl', 'login', 'No account text', 'Don''t have an Account?', '2025-11-21 01:24:52'),
(36750, 'tl', 'login', 'newaccountsuccess', 'New Account created successfully!', '2025-11-21 01:24:52'),
(36748, 'tl', 'login', 'Login', 'Mag-login', '2025-11-21 01:24:52'),
(36749, 'tl', 'login', 'Login incorrect', 'Mag-login incorrect', '2025-11-21 01:24:52'),
(36747, 'tl', 'login', 'Last Name', 'Huli Pangalan', '2025-11-21 01:24:52'),
(36746, 'tl', 'login', 'internal_error_mail_send', 'An internal Error occured while sending Password I-reset mail!', '2025-11-21 01:24:52'),
(36745, 'tl', 'login', 'Forgot subtitle', 'Enter your Email address and we''ll send you instructions to I-reset your Password', '2025-11-21 01:24:52'),
(36744, 'tl', 'login', 'Forgot password?', 'Nakalimutan ang Password?', '2025-11-21 01:24:52'),
(36743, 'tl', 'login', 'First Name', 'Una Pangalan', '2025-11-21 01:24:52'),
(36742, 'tl', 'login', 'Enter the code as it is shown', 'Enter the code as it is shown', '2025-11-21 01:24:52'),
(36741, 'tl', 'login', 'Enter the code', 'Enter the code', '2025-11-21 01:24:52'),
(36740, 'tl', 'login', 'emailexist', 'Email already exist!', '2025-11-21 01:24:52'),
(36739, 'tl', 'login', 'Email placeholder', '[email protected]', '2025-11-21 01:24:52'),
(36738, 'tl', 'login', 'Email', 'Email', '2025-11-21 01:24:52'),
(36737, 'tl', 'login', 'Create New Account', 'Lumikha New Account', '2025-11-21 01:24:52'),
(36736, 'tl', 'login', 'Create my account', 'Lumikha Aking Account', '2025-11-21 01:24:52'),
(36735, 'tl', 'login', 'Confirm Password', 'Kumpirmahin Password', '2025-11-21 01:24:52'),
(36734, 'tl', 'log', 'Post Fields', 'Post Fields', '2025-11-21 01:24:52'),
(36733, 'tl', 'log', 'Mail Log Details', 'Mail Log Mga Detalye', '2025-11-21 01:24:52'),
(36732, 'tl', 'log', 'Crawl Log Details', 'Crawl Log Mga Detalye', '2025-11-21 01:24:52'),
(36731, 'tl', 'log', 'Clear All Logs', 'Linisin All Logs', '2025-11-21 01:24:52'),
(36730, 'tl', 'label', 'Year', 'Year', '2025-11-21 01:24:52'),
(36729, 'tl', 'label', 'Write', 'Write', '2025-11-21 01:24:52'),
(36728, 'tl', 'label', 'Weekly', 'Lingguhan', '2025-11-21 01:24:52'),
(36727, 'tl', 'label', 'Week', 'Week', '2025-11-21 01:24:52'),
(36726, 'tl', 'label', 'wantproceed', 'Do you really want to proceed?', '2025-11-21 01:24:52'),
(36725, 'tl', 'label', 'View Reports', 'Tingnan Mga Ulat', '2025-11-21 01:24:52'),
(36724, 'tl', 'label', 'Version', 'Bersyon', '2025-11-21 01:24:52'),
(36723, 'tl', 'label', 'User agent', 'Gumagamit agent', '2025-11-21 01:24:52'),
(36722, 'tl', 'label', 'Usability', 'Usability', '2025-11-21 01:24:52'),
(36721, 'tl', 'label', 'Upgrade', 'Upgrade', '2025-11-21 01:24:52'),
(36720, 'tl', 'label', 'Updated', 'Updated', '2025-11-21 01:24:52'),
(36719, 'tl', 'label', 'Type', 'Uri', '2025-11-21 01:24:52'),
(36718, 'tl', 'label', 'Translators', 'Translators', '2025-11-21 01:24:52'),
(36717, 'tl', 'label', 'translation by', 'translation by', '2025-11-21 01:24:52'),
(36716, 'tl', 'label', 'Total Results', 'Kabuuan Mga Resulta', '2025-11-21 01:24:52'),
(36715, 'tl', 'label', 'Title', 'Pamagat', '2025-11-21 01:24:52'),
(36714, 'tl', 'label', 'Theme', 'Theme', '2025-11-21 01:24:52'),
(36713, 'tl', 'label', 'Syntax', 'Syntax', '2025-11-21 01:24:52'),
(36712, 'tl', 'label', 'Success', 'Tagumpay', '2025-11-21 01:24:52'),
(36711, 'tl', 'label', 'Subject', 'Subject', '2025-11-21 01:24:52'),
(36710, 'tl', 'label', 'Sponsors', 'Sponsors', '2025-11-21 01:24:52'),
(36709, 'tl', 'label', 'Speed', 'Bilis', '2025-11-21 01:24:52'),
(36708, 'tl', 'label', 'Select All', 'Pumili All', '2025-11-21 01:24:52'),
(36707, 'tl', 'label', 'Second', 'Second', '2025-11-21 01:24:52'),
(36706, 'tl', 'label', 'Score', 'Puntos', '2025-11-21 01:24:52'),
(36705, 'tl', 'label', 'Reviews', 'Mga Review', '2025-11-21 01:24:52'),
(36704, 'tl', 'label', 'Report Type', 'Ulat Uri', '2025-11-21 01:24:52'),
(36703, 'tl', 'label', 'Referer', 'Referer', '2025-11-21 01:24:52'),
(36702, 'tl', 'label', 'Reference', 'Reference', '2025-11-21 01:24:52'),
(36701, 'tl', 'label', 'Recent Activity', 'Kamakailang Aktibidad', '2025-11-21 01:24:52'),
(36700, 'tl', 'label', 'Read', 'Read', '2025-11-21 01:24:52'),
(36699, 'tl', 'label', 'Re-install', 'Re-install', '2025-11-21 01:24:52'),
(36698, 'tl', 'label', 'Rating', 'Rating', '2025-11-21 01:24:52'),
(36696, 'tl', 'label', 'Project', 'Proyekto', '2025-11-21 01:24:52'),
(36697, 'tl', 'label', 'Proxy', 'Proxy', '2025-11-21 01:24:52'),
(36695, 'tl', 'label', 'Port', 'Port', '2025-11-21 01:24:52'),
(36694, 'tl', 'label', 'Plugin', 'Plugin', '2025-11-21 01:24:52'),
(36693, 'tl', 'label', 'Overview', 'Pangkalahatang-ideya', '2025-11-21 01:24:52'),
(36692, 'tl', 'label', 'Order By', 'Order By', '2025-11-21 01:24:52'),
(36690, 'tl', 'label', 'Months', 'Months', '2025-11-21 01:24:52'),
(36691, 'tl', 'label', 'noactiveplugins', 'No Aktibo Seo Mga Plugin Found!', '2025-11-21 01:24:52'),
(36689, 'tl', 'label', 'Monthly', 'Buwanan', '2025-11-21 01:24:52'),
(36687, 'tl', 'label', 'Mobile', 'Mobile', '2025-11-21 01:24:52'),
(36688, 'tl', 'label', 'Month', 'Month', '2025-11-21 01:24:52'),
(36686, 'tl', 'label', 'Minute', 'Minute', '2025-11-21 01:24:52'),
(36684, 'tl', 'label', 'Keywords', 'Mga Keyword', '2025-11-21 01:24:52'),
(36685, 'tl', 'label', 'Likes', 'Mga Like', '2025-11-21 01:24:52'),
(36683, 'tl', 'label', 'Just Now', 'Just Now', '2025-11-21 01:24:52'),
(36682, 'tl', 'label', 'Installation', 'Installation', '2025-11-21 01:24:52'),
(36681, 'tl', 'label', 'Include', 'Include', '2025-11-21 01:24:52'),
(36679, 'tl', 'label', 'Hour', 'Hour', '2025-11-21 01:24:52'),
(36680, 'tl', 'label', 'Impressions', 'Impressions', '2025-11-21 01:24:52'),
(36678, 'tl', 'label', 'From', 'From', '2025-11-21 01:24:52'),
(36677, 'tl', 'label', 'Free', 'Free', '2025-11-21 01:24:52'),
(36676, 'tl', 'label', 'Followers', 'Followers', '2025-11-21 01:24:52'),
(36675, 'tl', 'label', 'Feature', 'Feature', '2025-11-21 01:24:52'),
(36674, 'tl', 'label', 'Fail', 'Fail', '2025-11-21 01:24:52'),
(36673, 'tl', 'label', 'Exclude', 'Exclude', '2025-11-21 01:24:52'),
(36672, 'tl', 'label', 'Email Body', 'Email Body', '2025-11-21 01:24:52'),
(36671, 'tl', 'label', 'Download', 'Mag-download', '2025-11-21 01:24:52'),
(36670, 'tl', 'label', 'Developers', 'Developers', '2025-11-21 01:24:52'),
(36668, 'tl', 'label', 'Description', 'Paglalarawan', '2025-11-21 01:24:52'),
(36669, 'tl', 'label', 'Desktop', 'Desktop', '2025-11-21 01:24:52'),
(36666, 'tl', 'label', 'Day', 'Day', '2025-11-21 01:24:52'),
(36667, 'tl', 'label', 'Days', 'Days', '2025-11-21 01:24:52'),
(36664, 'tl', 'label', 'Current', 'Current', '2025-11-21 01:24:52'),
(36665, 'tl', 'label', 'Daily', 'Araw-araw', '2025-11-21 01:24:52'),
(36663, 'tl', 'label', 'Cron', 'Cron', '2025-11-21 01:24:52'),
(36662, 'tl', 'label', 'Count', 'Bilang', '2025-11-21 01:24:52'),
(36660, 'tl', 'label', 'Comments', 'Comments', '2025-11-21 01:24:52'),
(36661, 'tl', 'label', 'Cookie', 'Cookie', '2025-11-21 01:24:52'),
(36659, 'tl', 'label', 'Clicks', 'Clicks', '2025-11-21 01:24:52'),
(36658, 'tl', 'label', 'Click Here', 'Mag-click dito', '2025-11-21 01:24:52'),
(36657, 'tl', 'label', 'Clear All', 'Linisin All', '2025-11-21 01:24:52'),
(36656, 'tl', 'label', 'Brocken', 'Broken', '2025-11-21 01:24:52'),
(36654, 'tl', 'label', 'Authentication', 'Authentication', '2025-11-21 01:24:52'),
(36655, 'tl', 'label', 'Author', 'Author', '2025-11-21 01:24:52'),
(36652, 'tl', 'label', 'Ago', 'Ago', '2025-11-21 01:24:52'),
(36653, 'tl', 'label', 'already exist', 'already exist', '2025-11-21 01:24:52'),
(36651, 'tl', 'label', 'Access denied', 'Ipinagkait ang Access', '2025-11-21 01:24:52'),
(36650, 'tl', 'keyword', 'Your keyword count already reached the limit', 'Keyword Bilang already reached the limit for this Gumagamit!', '2025-11-21 01:24:52'),
(36648, 'tl', 'keyword', 'Top Keywords', 'Top Mga Keyword', '2025-11-21 01:24:52'),
(36649, 'tl', 'keyword', 'You can add only keywordcount keywords more', 'You can add only [keywordcount] Mga Keyword for this Gumagamit!', '2025-11-21 01:24:52'),
(36647, 'tl', 'keyword', 'to create new keywords', 'to Lumikha new Mga Keyword', '2025-11-21 01:24:52'),
(36645, 'tl', 'keyword', 'Show All results', 'Show All Mga Resulta', '2025-11-21 01:24:52'),
(36646, 'tl', 'keyword', 'Successfully crawled keyword', 'Successfully crawled Keyword', '2025-11-21 01:24:52'),
(36644, 'tl', 'keyword', 'results from ', 'Mga Resulta from ', '2025-11-21 01:24:52'),
(36643, 'tl', 'keyword', 'Ranking Trends', 'Ranggo Trends', '2025-11-21 01:24:52'),
(36642, 'tl', 'keyword', 'Quick Keyword Position Checker', 'Quick Posisyon ng Keyword Checker', '2025-11-21 01:24:52'),
(36641, 'tl', 'keyword', 'pleaseselecttool', 'Pakipili atleast one Mga SEO Mga Kagamitan', '2025-11-21 01:24:52'),
(36640, 'tl', 'keyword', 'not assigned to required search engines', 'not assigned to Kinakailangan Mga Maghanap Engine', '2025-11-21 01:24:52'),
(36639, 'tl', 'keyword', 'New Keyword', 'New Keyword', '2025-11-21 01:24:52'),
(36638, 'tl', 'keyword', 'Keywords Tracked', 'Mga Keyword Tracked', '2025-11-21 01:24:52'),
(36637, 'tl', 'keyword', 'Keyword Ranking Trends', 'Keyword Ranggo Trends', '2025-11-21 01:24:52'),
(36636, 'tl', 'keyword', 'Keyword Position Report', 'Posisyon ng Keyword Ulat', '2025-11-21 01:24:52'),
(36635, 'tl', 'keyword', 'Keyword already exist', 'Keyword already exist', '2025-11-21 01:24:52'),
(36634, 'tl', 'keyword', 'Insert keywords separated with comma', 'Insert Mga Keyword separated with comma', '2025-11-21 01:24:52'),
(36633, 'tl', 'keyword', 'Import Keywords', 'I-import Mga Keyword', '2025-11-21 01:24:52'),
(36632, 'tl', 'keyword', 'Graphical Keyword Position Reports', 'Graphical Posisyon ng Keyword Mga Ulat', '2025-11-21 01:24:52'),
(36631, 'tl', 'keyword', 'Edit Keyword', 'I-edit ang Keyword', '2025-11-21 01:24:52'),
(36630, 'tl', 'keyword', 'Detailed Keyword Position Reports', 'Detailed Posisyon ng Keyword Mga Ulat', '2025-11-21 01:24:52'),
(36629, 'tl', 'keyword', 'Crawling keyword', 'Crawling Keyword', '2025-11-21 01:24:52'),
(36628, 'tl', 'home', 'Website Statistics', 'Website Mga Istatistika', '2025-11-21 01:24:52'),
(36627, 'tl', 'home', 'SiteNameUrl', 'Site Pangalan/Url', '2025-11-21 01:24:52'),
(36626, 'tl', 'home', 'Ranks', 'Ranks', '2025-11-21 01:24:52'),
(36625, 'tl', 'home', 'Pages Indexed', 'Mga Pahina Indexed', '2025-11-21 01:24:52'),
(36624, 'tl', 'home', 'Page Overview Report', 'Pahina Overview Ulat', '2025-11-21 01:24:52'),
(36623, 'tl', 'home', 'Overall Report Summary', 'Overall Ulat Summary', '2025-11-21 01:24:52'),
(36622, 'tl', 'home', 'Keyword Overview Report', 'Keyword Overview Ulat', '2025-11-21 01:24:52'),
(36621, 'tl', 'home', 'Indexed', 'Indexed', '2025-11-21 01:24:52'),
(38051, 'zh', 'label', 'Social Media', '社交媒体', '2026-01-19 22:53:39'),
(38052, 'ar', 'label', 'Overview', 'نظرة عامة', '2026-01-19 22:55:00'),
(38053, 'bg', 'label', 'Overview', 'Общ преглед', '2026-01-19 22:55:00'),
(38054, 'cn', 'label', 'Overview', '概述', '2026-01-19 22:55:00'),
(38055, 'cs', 'label', 'Overview', 'Přehled', '2026-01-19 22:55:00'),
(38056, 'da', 'label', 'Overview', 'Oversigt', '2026-01-19 22:55:00'),
(38057, 'es-ar', 'label', 'Overview', 'Resumen', '2026-01-19 22:55:00'),
(38058, 'fa', 'label', 'Overview', 'بررسی اجمالی', '2026-01-19 22:55:00'),
(38059, 'he', 'label', 'Overview', 'סקירה כללית', '2026-01-19 22:55:00'),
(38060, 'hu', 'label', 'Overview', 'Áttekintés', '2026-01-19 22:55:00'),
(38061, 'ja', 'label', 'Overview', '概要', '2026-01-19 22:55:00'),
(38062, 'lt', 'label', 'Overview', 'Apžvalga', '2026-01-19 22:55:00'),
(38063, 'sk', 'label', 'Overview', 'Prehľad', '2026-01-19 22:55:00'),
(38064, 'sl', 'label', 'Overview', 'Pregled', '2026-01-19 22:55:00'),
(38065, 'sr', 'label', 'Overview', 'Преглед', '2026-01-19 22:55:00'),
(38066, 'zh', 'label', 'Overview', '概述', '2026-01-19 22:55:00'),
(38067, 'en', 'socialmedia', 'Social Media Statistics', 'Social Media Statistics', '2026-01-19 22:56:41'),
(38068, 'ar', 'socialmedia', 'Social Media Statistics', 'إحصائيات وسائل التواصل الاجتماعي', '2026-01-19 22:56:41'),
(38069, 'bg', 'socialmedia', 'Social Media Statistics', 'Статистика на социалните медии', '2026-01-19 22:56:41'),
(38070, 'bs', 'socialmedia', 'Social Media Statistics', 'Statistika društvenih medija', '2026-01-19 22:56:41'),
(38071, 'ca', 'socialmedia', 'Social Media Statistics', 'Estadístiques de xarxes socials', '2026-01-19 22:56:41'),
(38072, 'cn', 'socialmedia', 'Social Media Statistics', '社交媒体统计', '2026-01-19 22:56:41'),
(38073, 'cs', 'socialmedia', 'Social Media Statistics', 'Statistiky sociálních médií', '2026-01-19 22:56:41'),
(38074, 'da', 'socialmedia', 'Social Media Statistics', 'Sociale medier statistik', '2026-01-19 22:56:41'),
(38075, 'de', 'socialmedia', 'Social Media Statistics', 'Social-Media-Statistiken', '2026-01-19 22:56:41'),
(38076, 'el', 'socialmedia', 'Social Media Statistics', 'Στατιστικά κοινωνικών μέσων', '2026-01-19 22:56:41'),
(38077, 'es', 'socialmedia', 'Social Media Statistics', 'Estadísticas de Redes Sociales', '2026-01-19 22:56:41'),
(38078, 'es-ar', 'socialmedia', 'Social Media Statistics', 'Estadísticas de Redes Sociales', '2026-01-19 22:56:41'),
(38079, 'fa', 'socialmedia', 'Social Media Statistics', 'آمار رسانه های اجتماعی', '2026-01-19 22:56:41'),
(38080, 'fi', 'socialmedia', 'Social Media Statistics', 'Sosiaalisen median tilastot', '2026-01-19 22:56:41'),
(38081, 'fr', 'socialmedia', 'Social Media Statistics', 'Statistiques des médias sociaux', '2026-01-19 22:56:41'),
(38082, 'he', 'socialmedia', 'Social Media Statistics', 'סטטיסטיקה של מדיה חברתית', '2026-01-19 22:56:41'),
(38083, 'hi', 'socialmedia', 'Social Media Statistics', 'सोशल मीडिया सांख्यिकी', '2026-01-19 22:56:41'),
(38084, 'hr', 'socialmedia', 'Social Media Statistics', 'Statistika društvenih medija', '2026-01-19 22:56:41'),
(38085, 'hu', 'socialmedia', 'Social Media Statistics', 'Közösségi média statisztikák', '2026-01-19 22:56:41'),
(38086, 'hy', 'socialmedia', 'Social Media Statistics', 'Սոցիալական մեդիայի վիճակագրություն', '2026-01-19 22:56:41'),
(38087, 'id', 'socialmedia', 'Social Media Statistics', 'Statistik Media Sosial', '2026-01-19 22:56:41'),
(38088, 'it', 'socialmedia', 'Social Media Statistics', 'Statistiche Social Media', '2026-01-19 22:56:41'),
(38089, 'ja', 'socialmedia', 'Social Media Statistics', 'ソーシャルメディア統計', '2026-01-19 22:56:41'),
(38090, 'ko', 'socialmedia', 'Social Media Statistics', '소셜 미디어 통계', '2026-01-19 22:56:41'),
(38091, 'lt', 'socialmedia', 'Social Media Statistics', 'Socialinės žiniasklaidos statistika', '2026-01-19 22:56:41'),
(38092, 'mk', 'socialmedia', 'Social Media Statistics', 'Статистика на социјални медиуми', '2026-01-19 22:56:41'),
(38093, 'nl', 'socialmedia', 'Social Media Statistics', 'Sociale media statistieken', '2026-01-19 22:56:41'),
(38094, 'no', 'socialmedia', 'Social Media Statistics', 'Sosiale medier statistikk', '2026-01-19 22:56:41'),
(38095, 'pl', 'socialmedia', 'Social Media Statistics', 'Statystyki mediów społecznościowych', '2026-01-19 22:56:41'),
(38096, 'pt', 'socialmedia', 'Social Media Statistics', 'Estatísticas de Redes Sociais', '2026-01-19 22:56:41'),
(38097, 'pt-br', 'socialmedia', 'Social Media Statistics', 'Estatísticas de Redes Sociais', '2026-01-19 22:56:41'),
(38098, 'ro', 'socialmedia', 'Social Media Statistics', 'Statistici Social Media', '2026-01-19 22:56:41'),
(38099, 'ru', 'socialmedia', 'Social Media Statistics', 'Статистика социальных сетей', '2026-01-19 22:56:41'),
(38100, 'sk', 'socialmedia', 'Social Media Statistics', 'Štatistiky sociálnych médií', '2026-01-19 22:56:41'),
(38101, 'sl', 'socialmedia', 'Social Media Statistics', 'Statistika družbenih medijev', '2026-01-19 22:56:41'),
(38102, 'sq', 'socialmedia', 'Social Media Statistics', 'Statistikat e mediave sociale', '2026-01-19 22:56:41'),
(38103, 'sr', 'socialmedia', 'Social Media Statistics', 'Статистика друштвених медија', '2026-01-19 22:56:41'),
(38104, 'sv', 'socialmedia', 'Social Media Statistics', 'Statistik för sociala medier', '2026-01-19 22:56:41'),
(38105, 'sw', 'socialmedia', 'Social Media Statistics', 'Takwimu za Mitandao ya Kijamii', '2026-01-19 22:56:41'),
(38106, 'th', 'socialmedia', 'Social Media Statistics', 'สถิติโซเชียลมีเดีย', '2026-01-19 22:56:41'),
(38107, 'tl', 'socialmedia', 'Social Media Statistics', 'Mga Istatistika ng Social Media', '2026-01-19 22:56:41'),
(38108, 'tr', 'socialmedia', 'Social Media Statistics', 'Sosyal Medya İstatistikleri', '2026-01-19 22:56:41'),
(38109, 'uk', 'socialmedia', 'Social Media Statistics', 'Статистика соціальних мереж', '2026-01-19 22:56:41'),
(36617, 'tl', 'home', 'Directory Submission', 'Direktoryo Submission', '2025-11-21 01:24:52'),
(36616, 'tl', 'home', 'Backlinks', 'Mga Backlink', '2025-11-21 01:24:52'),
(36615, 'tl', 'home', 'Account Summary', 'Account Summary', '2025-11-21 01:24:52'),
(36614, 'tl', 'guest', 'Why Choose SEO Panel?', 'Why Pumili SEO Panel?', '2025-11-21 01:24:52'),
(36613, 'tl', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-11-21 01:24:52'),
(36612, 'tl', 'guest', 'View Demo', 'Tingnan Demo', '2025-11-21 01:24:52'),
(36611, 'tl', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their Mga Website.', '2025-11-21 01:24:52'),
(36610, 'tl', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-11-21 01:24:52'),
(36609, 'tl', 'guest', 'Support Development', 'Suporta Development', '2025-11-21 01:24:52'),
(36608, 'tl', 'guest', 'Social Media Integration desc', 'Integrate with Google Analytics, Maghanap Console, and Social Media platforms for comprehensive reporting.', '2025-11-21 01:24:52'),
(36607, 'tl', 'guest', 'Social Media Integration', 'Social Media Integrasyon', '2025-11-21 01:24:52'),
(36606, 'tl', 'guest', 'Site Auditor desc', 'Audit all SEO factors of each Pahina and generate XML, HTML, and Teksto sitemaps for Mga Maghanap Engine.', '2025-11-21 01:24:52'),
(36605, 'tl', 'guest', 'Search Engine Saturation desc', 'Find the Numero of Mga Naka-index na Pahina across different Mga Maghanap Engine and monitor your indexing progress.', '2025-11-21 01:24:52'),
(36604, 'tl', 'guest', 'Resources & Support', 'Resources & Suporta', '2025-11-21 01:24:52'),
(36603, 'tl', 'guest', 'Rank Checker desc', 'Check Google PageRank, Alexa Ranggo, and Moz Ranggo with comprehensive Araw-araw tracking and reporting.', '2025-11-21 01:24:52'),
(36602, 'tl', 'guest', 'Powerful SEO Features', 'Powerful SEO Features', '2025-11-21 01:24:52'),
(36600, 'tl', 'guest', 'Plugin Architecture', 'Plugin Architecture', '2025-11-21 01:24:52'),
(36601, 'tl', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful Mga Plugin including Article Submitter, Tagagawa ng Meta Tag, and more.', '2025-11-21 01:24:52'),
(36599, 'tl', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited Mga Website from a single control panel with centralized reporting.', '2025-11-21 01:24:52'),
(36598, 'tl', 'guest', 'Multi-Website Support', 'Multi-Website Suporta', '2025-11-21 01:24:52'),
(36597, 'tl', 'guest', 'Login to Get Started', 'Mag-login to Magsimula', '2025-11-21 01:24:52'),
(36596, 'tl', 'guest', 'Keyword Position Checker desc', 'Track your Keyword Mga Ranggo across multiple Mga Maghanap Engine with detailed Araw-araw Mga Ulat and beautiful graphs.', '2025-11-21 01:24:52'),
(36595, 'tl', 'guest', 'Highly Extensible desc', 'Easily develop and install Custom Mga Plugin to extend functionality according to your needs.', '2025-11-21 01:24:52'),
(36594, 'tl', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-11-21 01:24:52'),
(36593, 'tl', 'guest', 'Hero subtitle', 'World''s Una Open Pinagmulan SEO Control Panel for Multiple Mga Website', '2025-11-21 01:24:52'),
(36592, 'tl', 'guest', 'Hero description', 'A complete open Pinagmulan SEO control panel for managing Maghanap Engine optimization of your Mga Website. SEO Panel is a powerful toolkit that includes the Pinakabago Mga SEO Mga Kagamitan to Pagtaas and track the Performance of your Mga Website.', '2025-11-21 01:24:52'),
(36591, 'tl', 'guest', 'Get Support', 'Get Suporta', '2025-11-21 01:24:52'),
(36590, 'tl', 'guest', 'Download SEO Panel', 'Mag-download SEO Panel', '2025-11-21 01:24:52'),
(36589, 'tl', 'guest', 'Documentation', 'Dokumentasyon', '2025-11-21 01:24:52'),
(36587, 'tl', 'guest', 'Contact Us', 'Makipag-ugnayan Us', '2025-11-21 01:24:52'),
(36588, 'tl', 'guest', 'Directory Submission desc', 'Automatically Isumite your Mga Website to major free and paid directories with Katayuan tracking.', '2025-11-21 01:24:52'),
(36586, 'tl', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-11-21 01:24:52'),
(36585, 'tl', 'guest', 'Browse Plugins', 'Browse Mga Plugin', '2025-11-21 01:24:52'),
(36584, 'tl', 'guest', 'Backlinks Checker desc', 'Monitor the Numero of Mga Backlink from major Mga Maghanap Engine and track your Link building progress over Oras.', '2025-11-21 01:24:52'),
(36582, 'tl', 'guest', '100% Open Source', '100% Open Pinagmulan', '2025-11-21 01:24:52'),
(36583, 'tl', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. Mag-download, customize, and use without any restrictions.', '2025-11-21 01:24:52'),
(36581, 'tl', 'directory', 'Website Url', 'URL ng Website', '2025-11-21 01:24:52'),
(36580, 'tl', 'directory', 'Website Category', 'Website Kategorya', '2025-11-21 01:24:52'),
(36579, 'tl', 'directory', 'Submit Title', 'Isumite Pamagat', '2025-11-21 01:24:52'),
(36578, 'tl', 'directory', 'Submit Keywords', 'Isumite Mga Keyword', '2025-11-21 01:24:52'),
(36577, 'tl', 'directory', 'Submit Description', 'Isumite Paglalarawan', '2025-11-21 01:24:52'),
(36576, 'tl', 'directory', 'Submission Details', 'Submission Mga Detalye', '2025-11-21 01:24:52'),
(36575, 'tl', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary Email address.', '2025-11-21 01:24:52'),
(36574, 'tl', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi Awtomatiko Direktoryo Submission Tool', '2025-11-21 01:24:52'),
(36573, 'tl', 'directory', 'selectwebsiteschecksub', 'Pumili a <b>Website</b> to <b>Proceed</b> check Direktoryo submission.', '2025-11-21 01:24:52'),
(36571, 'tl', 'directory', 'Reciprocal Link', 'Reciprocal Link', '2025-11-21 01:24:52'),
(36572, 'tl', 'directory', 'selectwebsiteproceed', 'Pumili a <b>Website</b> to <b>Proceed</b> Direktoryo submission.<br>Check <b>Directories with out captcha</b> to Isumite to directories with out captcha', '2025-11-21 01:24:52'),
(36570, 'tl', 'directory', 'Please select a website to proceed', 'Pakipili a Website to proceed', '2025-11-21 01:24:52'),
(36569, 'tl', 'directory', 'Pending', 'Nakabinbin', '2025-11-21 01:24:52'),
(36567, 'tl', 'directory', 'Owner Email', 'Owner Email', '2025-11-21 01:24:52'),
(36568, 'tl', 'directory', 'Owner Name', 'Owner Pangalan', '2025-11-21 01:24:52'),
(36566, 'tl', 'directory', 'optionalnote', 'Opsyonal titles and descriptions to Isumite random Pamagat and Paglalarawan to directories for better Mga Resulta.', '2025-11-21 01:24:52'),
(36565, 'tl', 'directory', 'nosuccessnote', 'Didn''t get Tagumpay Mensahe, Please check your mail to find the Kumpirmahin Mensahe', '2025-11-21 01:24:52'),
(36564, 'tl', 'directory', 'nodirnote', 'No <b>Aktibo</b> directories Found', '2025-11-21 01:24:52'),
(36563, 'tl', 'directory', 'nocatnote', 'The submission Kategorya not found in submission Pahina. Please click on <b>Reload</b> or <b>Skip</b>', '2025-11-21 01:24:52'),
(36562, 'tl', 'directory', 'Enter the code shown', 'Enter the code shown', '2025-11-21 01:24:52'),
(36561, 'tl', 'directory', 'Directory Submission Reports', 'Direktoryo Submission Mga Ulat', '2025-11-21 01:24:52'),
(36560, 'tl', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Link', '2025-11-21 01:24:52'),
(36559, 'tl', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2025-11-21 01:24:52');
INSERT INTO `texts` VALUES
(36558, 'tl', 'directory', 'desnote', 'Some directories require Pinakamababa 150 characters for the Paglalarawan field.', '2025-11-21 01:24:52'),
(36557, 'tl', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured submission!', '2025-11-21 01:24:52'),
(36555, 'tl', 'directory', 'Coupon Code', 'Coupon Code', '2025-11-21 01:24:52'),
(36556, 'tl', 'directory', 'Coupon Offer', 'Coupon Offer', '2025-11-21 01:24:52'),
(36554, 'tl', 'directory', 'Confirmation', 'Confirmation', '2025-11-21 01:24:52'),
(36553, 'tl', 'directory', 'clicktoproceeddirsts', 'Click on <b>Proceed</b> to Check Direktoryo Katayuan.', '2025-11-21 01:24:52'),
(36551, 'tl', 'directory', 'Check Directory Submission Status', 'Check Direktoryo Submission Katayuan', '2025-11-21 01:24:52'),
(36552, 'tl', 'directory', 'clickaddfeatureddirectory', 'Mag-click dito to add your own featured Direktoryo here', '2025-11-21 01:24:52'),
(36550, 'tl', 'directory', 'Check Directory Status', 'Check Direktoryo Katayuan', '2025-11-21 01:24:52'),
(36549, 'tl', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. Start with Top priority Kategorya.', '2025-11-21 01:24:52'),
(36548, 'tl', 'directory', 'Captcha', 'Captcha', '2025-11-21 01:24:52'),
(36547, 'tl', 'directory', 'Approved', 'Approved', '2025-11-21 01:24:52'),
(36545, 'tl', 'dashboard', 'Worst Rank', 'Worst Ranggo', '2025-11-21 01:24:52'),
(36546, 'tl', 'directory', 'Add back to directory list', 'Add Bumalik to Direktoryo list', '2025-11-21 01:24:52'),
(36544, 'tl', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility Puntos (Standard Deviation)', '2025-11-21 01:24:52'),
(36543, 'tl', 'dashboard', 'Volatility Score', 'Volatility Puntos', '2025-11-21 01:24:52'),
(36542, 'tl', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'Volatility data requires at least 2 Ranggo checks within the selected period.', '2025-11-21 01:24:52'),
(36541, 'tl', 'dashboard', 'Volatility', 'Volatility', '2025-11-21 01:24:52'),
(36540, 'tl', 'dashboard', 'Trend', 'Trend', '2025-11-21 01:24:52'),
(36539, 'tl', 'dashboard', 'Top 3', 'Top 3', '2025-11-21 01:24:52'),
(36538, 'tl', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile Mga Keyword', '2025-11-21 01:24:52'),
(36537, 'tl', 'dashboard', 'Top 10', 'Top 10', '2025-11-21 01:24:52'),
(36536, 'tl', 'dashboard', 'Ranking Volatility', 'Ranggo Volatility', '2025-11-21 01:24:52'),
(36534, 'tl', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-11-21 01:24:52'),
(36535, 'tl', 'dashboard', 'positions', 'positions', '2025-11-21 01:24:52'),
(36533, 'tl', 'dashboard', 'Keywords with most ranking fluctuations', 'Mga Keyword with most Ranggo fluctuations', '2025-11-21 01:24:52'),
(36532, 'tl', 'dashboard', 'Keywords by Ranking Position', 'Mga Keyword by Ranggo Posisyon', '2025-11-21 01:24:52'),
(36531, 'tl', 'dashboard', 'Keyword Statistics', 'Keyword Mga Istatistika', '2025-11-21 01:24:52'),
(36530, 'tl', 'dashboard', 'Keyword Distribution by Rank', 'Keyword Distribution by Ranggo', '2025-11-21 01:24:52'),
(36529, 'tl', 'dashboard', 'Best Rank', 'Best Ranggo', '2025-11-21 01:24:52'),
(36528, 'tl', 'dashboard', 'Avg Rank', 'Avg Ranggo', '2025-11-21 01:24:52'),
(36527, 'tl', 'common', 'Yes', 'Oo', '2025-11-21 01:24:52'),
(36526, 'tl', 'common', 'Websites Count', 'Mga Website Bilang', '2025-11-21 01:24:52'),
(36525, 'tl', 'common', 'Website', 'Website', '2025-11-21 01:24:52'),
(36524, 'tl', 'common', 'Warnings', 'Warnings', '2025-11-21 01:24:52'),
(36523, 'tl', 'common', 'User Type', 'Gumagamit Uri', '2025-11-21 01:24:52'),
(36522, 'tl', 'common', 'User Panel', 'Gumagamit Panel', '2025-11-21 01:24:52'),
(36521, 'tl', 'common', 'User', 'Gumagamit', '2025-11-21 01:24:52'),
(36520, 'tl', 'common', 'Url', 'URL', '2025-11-21 01:24:52'),
(36519, 'tl', 'common', 'Total', 'Kabuuan', '2025-11-21 01:24:52'),
(36517, 'tl', 'common', 'Thank you', 'Thank you', '2025-11-21 01:24:52'),
(36518, 'tl', 'common', 'Tools', 'Mga Kagamitan', '2025-11-21 01:24:52'),
(36515, 'tl', 'common', 'Status', 'Katayuan', '2025-11-21 01:24:52'),
(36516, 'tl', 'common', 'Support', 'Suporta', '2025-11-21 01:24:52'),
(36514, 'tl', 'common', 'Spam Score', 'Spam Puntos', '2025-11-21 01:24:52'),
(36513, 'tl', 'common', 'Source', 'Pinagmulan', '2025-11-21 01:24:52'),
(36511, 'tl', 'common', 'Sign Up', 'Mag-sign up', '2025-11-21 01:24:52'),
(36512, 'tl', 'common', 'signin', 'Mag-sign in', '2025-11-21 01:24:52'),
(36509, 'tl', 'common', 'Server', 'Server', '2025-11-21 01:24:52'),
(36510, 'tl', 'common', 'Sign out', 'Sign out', '2025-11-21 01:24:52'),
(36507, 'tl', 'common', 'Seo Plugins', 'Seo Mga Plugin', '2025-11-21 01:24:52'),
(36508, 'tl', 'common', 'Seo Tools', 'Mga SEO Tools', '2025-11-21 01:24:52'),
(36506, 'tl', 'common', 'Select', 'Pumili', '2025-11-21 01:24:52'),
(36505, 'tl', 'common', 'Search Engine Count', 'Maghanap Engine Bilang', '2025-11-21 01:24:52'),
(36504, 'tl', 'common', 'Search Engine', 'Search Engine', '2025-11-21 01:24:52'),
(36503, 'tl', 'common', 'Sample CSV File', 'Sample CSV File', '2025-11-21 01:24:52'),
(36501, 'tl', 'common', 'Reports', 'Mga Ulat', '2025-11-21 01:24:52'),
(36502, 'tl', 'common', 'Results', 'Mga Resulta', '2025-11-21 01:24:52'),
(36457, 'tl', 'common', 'help', 'Tulong', '2025-11-21 01:24:52'),
(36458, 'tl', 'common', 'hidenews', 'Hide Seo Panel News', '2025-11-21 01:24:52'),
(36459, 'tl', 'common', 'Home', 'Home', '2025-11-21 01:24:52'),
(36460, 'tl', 'common', 'Id', 'Id', '2025-11-21 01:24:52'),
(36461, 'tl', 'common', 'Inactivate', 'Inactivate', '2025-11-21 01:24:52'),
(36462, 'tl', 'common', 'Inactive', 'Hindi Aktibo', '2025-11-21 01:24:52'),
(36463, 'tl', 'common', 'Internal error occured', 'Internal Error occured', '2025-11-21 01:24:52'),
(36464, 'tl', 'common', 'Invalid characters', 'Hindi wasto characters', '2025-11-21 01:24:52'),
(36465, 'tl', 'common', 'Invalid code entered', 'Hindi wasto code entered', '2025-11-21 01:24:52'),
(36466, 'tl', 'common', 'Invalid email address entered', 'Hindi wasto Email address entered', '2025-11-21 01:24:52'),
(36467, 'tl', 'common', 'Invalid Url', 'Hindi wasto Url', '2025-11-21 01:24:52'),
(36468, 'tl', 'common', 'Invalid value', 'Hindi wasto Halaga', '2025-11-21 01:24:52'),
(36469, 'tl', 'common', 'Keyword', 'Keyword', '2025-11-21 01:24:52'),
(36470, 'tl', 'common', 'Keywords', 'Mga Keyword', '2025-11-21 01:24:52'),
(36471, 'tl', 'common', 'Keywords Count', 'Mga Keyword Bilang', '2025-11-21 01:24:52'),
(36472, 'tl', 'common', 'lang', 'Wika', '2025-11-21 01:24:52'),
(36473, 'tl', 'common', 'Link', 'Link', '2025-11-21 01:24:52'),
(36474, 'tl', 'common', 'Logout', 'Mag-logout', '2025-11-21 01:24:52'),
(36475, 'tl', 'common', 'Metric', 'Metric', '2025-11-21 01:24:52'),
(36476, 'tl', 'common', 'MOZ Rank', 'Moz Rank', '2025-11-21 01:24:52'),
(36477, 'tl', 'common', 'My Account', 'Aking Account', '2025-11-21 01:24:52'),
(36478, 'tl', 'Common', 'Name', 'Pangalan', '2025-11-21 01:24:52'),
(36479, 'tl', 'common', 'New User Type', 'New Gumagamit Uri', '2025-11-21 01:24:52'),
(36480, 'tl', 'common', 'No', 'Hindi', '2025-11-21 01:24:52'),
(36481, 'tl', 'common', 'No Keywords Found', 'No Mga Keyword Found', '2025-11-21 01:24:52'),
(36482, 'tl', 'common', 'No Records Found', 'No Records Found', '2025-11-21 01:24:52'),
(36483, 'tl', 'common', 'noactivetools', 'No Aktibo Mga SEO Mga Kagamitan Found!', '2025-11-21 01:24:52'),
(36484, 'tl', 'common', 'nowebsites', 'No Mga Website Found', '2025-11-21 01:24:52'),
(36485, 'tl', 'common', 'Number', 'Numero', '2025-11-21 01:24:52'),
(36486, 'tl', 'common', 'Page Authority', 'Page Authority', '2025-11-21 01:24:52'),
(36487, 'tl', 'common', 'Pagerank', 'Pagerank', '2025-11-21 01:24:52'),
(36488, 'tl', 'common', 'password632', 'The Password string should have a length between 6 and 32', '2025-11-21 01:24:52'),
(36489, 'tl', 'common', 'passwordnotmatch', 'The passwords do not match', '2025-11-21 01:24:52'),
(36490, 'tl', 'common', 'Period', 'Period', '2025-11-21 01:24:52'),
(36491, 'tl', 'common', 'Plugins', 'Mga Plugin', '2025-11-21 01:24:52'),
(36492, 'tl', 'common', 'Powered by', 'Powered by', '2025-11-21 01:24:52'),
(36493, 'tl', 'common', 'Price', 'Price', '2025-11-21 01:24:52'),
(36494, 'tl', 'common', 'Pricing', 'Pricing', '2025-11-21 01:24:52'),
(36495, 'tl', 'common', 'Priority', 'Priority', '2025-11-21 01:24:52'),
(36496, 'tl', 'common', 'Profile', 'Profile', '2025-11-21 01:24:52'),
(36497, 'tl', 'common', 'Range', 'Range', '2025-11-21 01:24:52'),
(36498, 'tl', 'common', 'Rank', 'Ranggo', '2025-11-21 01:24:52'),
(36499, 'tl', 'common', 'Rankings', 'Mga Ranggo', '2025-11-21 01:24:52'),
(36500, 'tl', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification Nabigo', '2025-11-21 01:24:52'),
(36439, 'tl', 'common', 'Date', 'Petsa', '2025-11-21 01:24:52'),
(36440, 'tl', 'common', 'Debug', 'Debug', '2025-11-21 01:24:52'),
(36441, 'tl', 'common', 'Delete', 'Tanggalin', '2025-11-21 01:24:52'),
(36442, 'tl', 'common', 'Details', 'Mga Detalye', '2025-11-21 01:24:52'),
(36443, 'tl', 'common', 'Directory', 'Direktoryo', '2025-11-21 01:24:52'),
(36444, 'tl', 'common', 'Domain Authority', 'Domain Authority', '2025-11-21 01:24:52'),
(36445, 'tl', 'common', 'Donate', 'Donate', '2025-11-21 01:24:52'),
(36446, 'tl', 'common', 'Edit', 'I-edit', '2025-11-21 01:24:52'),
(36447, 'tl', 'common', 'Edit User Type', 'I-edit Gumagamit Uri', '2025-11-21 01:24:52'),
(36448, 'tl', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2025-11-21 01:24:52'),
(36449, 'tl', 'common', 'entrynotvalid', 'The entry entered doesn''t seem to be Wasto', '2025-11-21 01:24:52'),
(36450, 'tl', 'common', 'Errors', 'Errors', '2025-11-21 01:24:52'),
(36451, 'tl', 'common', 'failed', 'Nabigo', '2025-11-21 01:24:52'),
(36452, 'tl', 'common', 'forum', 'Forum', '2025-11-21 01:24:52'),
(36453, 'tl', 'common', 'Found', 'Found', '2025-11-21 01:24:52'),
(36454, 'tl', 'common', 'General', 'General', '2025-11-21 01:24:52'),
(36455, 'tl', 'common', 'Google Pagerank', 'Google Pagerank', '2025-11-21 01:24:52'),
(36456, 'tl', 'common', 'Hello', 'Hello', '2025-11-21 01:24:52'),
(36426, 'tl', 'common', 'Active', 'Aktibo', '2025-11-21 01:24:52'),
(36427, 'tl', 'common', 'Admin Panel', 'Admin Panel', '2025-11-21 01:24:52'),
(36428, 'tl', 'common', 'Alexa Rank', 'Alexa Rank', '2025-11-21 01:24:52'),
(36429, 'tl', 'common', 'All', 'Lahat', '2025-11-21 01:24:52'),
(36430, 'tl', 'common', 'API Token', 'API Token', '2025-11-21 01:24:52'),
(36431, 'tl', 'common', 'Blog', 'Blog', '2025-11-21 01:24:52'),
(36432, 'tl', 'common', 'Category', 'Kategorya', '2025-11-21 01:24:52'),
(36433, 'tl', 'common', 'Checked', 'Checked', '2025-11-21 01:24:52'),
(36434, 'tl', 'common', 'contact', 'Makipag-ugnayan', '2025-11-21 01:24:52'),
(36435, 'tl', 'common', 'copyright', 'Copyright © [year] www.seopanel.org All rights reserved', '2025-11-21 01:24:52'),
(36436, 'tl', 'common', 'Country', 'Bansa', '2025-11-21 01:24:52'),
(36437, 'tl', 'common', 'Crawl Meta Data', 'Crawl Meta Data', '2025-11-21 01:24:52'),
(36438, 'tl', 'common', 'Dashboard', 'Dashboard', '2025-11-21 01:24:52'),
(36425, 'tl', 'common', 'Activate', 'Activate', '2025-11-21 01:24:52'),
(36424, 'tl', 'common', 'Action', 'Action', '2025-11-21 01:24:52'),
(36423, 'tl', 'button', 'Submit', 'Isumite', '2025-11-21 01:24:52'),
(36422, 'tl', 'button', 'Skip', 'Skip', '2025-11-21 01:24:52'),
(36421, 'tl', 'button', 'Show Records', 'Show Records', '2025-11-21 01:24:52'),
(36419, 'tl', 'button', 'Search', 'Maghanap', '2025-11-21 01:24:52'),
(36420, 'tl', 'button', 'Show Details', 'Show Mga Detalye', '2025-11-21 01:24:52'),
(36417, 'tl', 'button', 'Proceed', 'Proceed', '2025-11-21 01:24:52'),
(36418, 'tl', 'button', 'Reload', 'Reload', '2025-11-21 01:24:52'),
(36416, 'tl', 'button', 'Check Status', 'Check Katayuan', '2025-11-21 01:24:52'),
(36414, 'tl', 'blog', 'Older Posts', 'Older Posts', '2025-11-21 01:24:52'),
(36415, 'tl', 'button', 'Cancel', 'Kanselahin', '2025-11-21 01:24:52'),
(36413, 'tl', 'blog', 'NothingFound_text2', 'Sorry, but nothing matched your Maghanap criteria. Pakisubukan muli with some different Mga Keyword.', '2025-11-21 01:24:52'),
(36412, 'tl', 'blog', 'Nothing Found', 'Nothing Found', '2025-11-21 01:24:52'),
(36411, 'tl', 'blog', 'Newer Posts', 'Newer Posts', '2025-11-21 01:24:52'),
(36409, 'tl', 'backlink', 'Domain Backlinks', 'Domain Mga Backlink', '2025-11-21 01:24:52'),
(36410, 'tl', 'backlink', 'Saved backlink results of', 'Saved Backlink Mga Resulta of', '2025-11-21 01:24:52'),
(36408, 'tl', 'backlink', 'Domain Backlink Count', 'Domain Backlink Bilang', '2025-11-21 01:24:52'),
(36407, 'tl', 'backlink', 'clickproceedbacklink', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Mga Backlink.', '2025-11-21 01:24:52'),
(36406, 'tl', 'backlink', 'Backlink Count', 'Backlink Bilang', '2025-11-21 01:24:52'),
(36404, 'tl', 'api', 'API Guide', 'API Guide', '2025-11-21 01:24:52'),
(36405, 'tl', 'api', 'API Url', 'API Url', '2025-11-21 01:24:52'),
(36403, 'tl', 'analytics', 'view_id_not_found_error', 'Error: Analytics Tingnan ID is not set for Website. I-I-edit ang Website and I-update Tingnan ID.', '2025-11-21 01:24:52'),
(36401, 'tl', 'analytics', 'Sessions', 'Mga Session', '2025-11-21 01:24:52'),
(36402, 'tl', 'analytics', 'Users', 'Mga Gumagamit', '2025-11-21 01:24:52'),
(36400, 'tl', 'analytics', 'New Users', 'New Mga Gumagamit', '2025-11-21 01:24:52'),
(36398, 'tl', 'analytics', 'Bounce Rate', 'Bounce Rate', '2025-11-21 01:24:52'),
(36399, 'tl', 'analytics', 'Goal Completions', 'Goal Completions', '2025-11-21 01:24:52'),
(36397, 'tl', 'analytics', 'Avg. Session Duration', 'Avg. Session Duration', '2025-11-21 01:24:52'),
(37768, 'uk', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow Користувачі to Розклад Звіт', '2025-11-21 01:25:05'),
(37767, 'uk', 'settings', 'seopanel_title', 'Seo Panel: World''s Перша open Джерело seo control panel for managing multiple web sites', '2025-11-21 01:25:05'),
(37766, 'uk', 'settings', 'seopanel_description', 'A complete free control panel for managing Пошукова система optimization of your Веб-сайти. It containing lots of hot SEO інструменти to Збільшення and track the performace your Веб-сайти. Its an open Джерело software and also you can develop your own seo Плагіни for seo panel.', '2025-11-21 01:25:05'),
(37765, 'uk', 'settings', 'Send Email', 'Send Електронна пошта', '2025-11-21 01:25:05'),
(37764, 'uk', 'settings', 'SA_MAX_NO_PAGES', 'Максимум Номер of Сторінки allowed per Веб-сайт', '2025-11-21 01:25:05'),
(37763, 'uk', 'settings', 'SA_CRAWL_DELAY_TIME', 'Аудитор сайту crawl delay between each Сторінки', '2025-11-21 01:25:05'),
(37762, 'uk', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate Proxy When Crawling Не вдалося', '2025-11-21 01:25:05'),
(37761, 'uk', 'settings', 'Please update MOZ settings to get complete results', 'Please Оновити MOZ Налаштування to get complete Результати', '2025-11-21 01:25:05'),
(37760, 'uk', 'settings', 'Please update google settings to get the results', 'Please Оновити Google Налаштування to get the Результати', '2025-11-21 01:25:05'),
(37759, 'uk', 'settings', 'getallpluginfree', 'Also get all <b>Плагіни</b> we develop for <b>Free!</b>', '2025-11-21 01:25:05'),
(37758, 'uk', 'settings', 'entersmtpdetails', 'Будь ласка, введіть SMTP mail Конфігурація', '2025-11-21 01:25:05'),
(37757, 'uk', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP Proxy Tunnel', '2025-11-21 01:25:05'),
(37756, 'uk', 'settings', 'click-to-get-moz-account', 'Натисніть тут to get MOZ Обліковий запис', '2025-11-21 01:25:05'),
(37755, 'uk', 'settings', 'click-to-get-google-api-key', 'Натисніть тут to get Google API ключ', '2025-11-21 01:25:05'),
(37754, 'uk', 'settings', 'click-to-get-google-api-client-id', 'Натисніть тут to get Google API Client Id', '2025-11-21 01:25:05'),
(37753, 'uk', 'settings', 'click-to-get-dataforseo-account', 'Натисніть тут to get Free DataForSEO Обліковий запис', '2025-11-21 01:25:05'),
(37752, 'uk', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>Donate $100</b> and become a <b>sponsor</b> of Seo Panel.', '2025-11-21 01:25:05'),
(37751, 'uk', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another Proxy When Crawling Не вдалося', '2025-11-21 01:25:05'),
(37750, 'uk', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Максимум Номер of proxies used in single execution', '2025-11-21 01:25:05'),
(37749, 'uk', 'settings', 'Check for Updates', 'Check for Updates', '2025-11-21 01:25:05'),
(37748, 'uk', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2025-11-21 01:25:05'),
(37747, 'uk', 'settings', 'API_SECRET', 'API Secret', '2025-11-21 01:25:05'),
(37746, 'uk', 'settings', 'allsettingssaved', 'All Налаштування saved successfully!', '2025-11-21 01:25:05'),
(37745, 'uk', 'seotools', 'Website Search Summary', 'Веб-сайт Пошук Summary', '2025-11-21 01:25:05'),
(37744, 'uk', 'seotools', 'Website Search Reports', 'Веб-сайт Пошук Звіти', '2025-11-21 01:25:05'),
(37743, 'uk', 'seotools', 'Website Analytics Summary', 'Веб-сайт Аналітика Summary', '2025-11-21 01:25:05'),
(37742, 'uk', 'seotools', 'webmaster-tools', 'Webmaster Інструменти', '2025-11-21 01:25:05'),
(37741, 'uk', 'seotools', 'web-analytics', 'Веб-сайт Аналітика', '2025-11-21 01:25:05'),
(37740, 'uk', 'seotools', 'User Access', 'Користувач Access', '2025-11-21 01:25:05'),
(37739, 'uk', 'seotools', 'Submission Reports', 'Submission Звіти', '2025-11-21 01:25:05'),
(37738, 'uk', 'seotools', 'Social Media Report Summary', 'Соціальні мережі Звіт Summary', '2025-11-21 01:25:05'),
(37737, 'uk', 'seotools', 'Social Media Links', 'Соціальні мережі Links', '2025-11-21 01:25:05'),
(37736, 'uk', 'seotools', 'sm-checker', 'Соціальні мережі Checker', '2025-11-21 01:25:05'),
(37735, 'uk', 'seotools', 'Skipped Directories', 'Skipped Directories', '2025-11-21 01:25:05'),
(37734, 'uk', 'seotools', 'sitemap-generator', 'Sitemap Generator', '2025-11-21 01:25:05'),
(37733, 'uk', 'seotools', 'Sitemap Reports Summary', 'Sitemap Звіти Summary', '2025-11-21 01:25:05'),
(37732, 'uk', 'seotools', 'site-auditor', 'Аудитор сайту', '2025-11-21 01:25:05'),
(37731, 'uk', 'seotools', 'saturation-checker', 'Насиченість пошукової системи', '2025-11-21 01:25:05'),
(37730, 'uk', 'seotools', 'Saturation Reports', 'Saturation Звіти', '2025-11-21 01:25:05'),
(37729, 'uk', 'seotools', 'review-manager', 'Огляд Manager', '2025-11-21 01:25:05'),
(37728, 'uk', 'seotools', 'Review Report Summary', 'Огляд Звіт Summary', '2025-11-21 01:25:05'),
(37727, 'uk', 'seotools', 'Review Links', 'Огляд Links', '2025-11-21 01:25:05'),
(37726, 'uk', 'seotools', 'rank-checker', 'Перевірка рангу', '2025-11-21 01:25:05'),
(37725, 'uk', 'seotools', 'Rank Reports', 'Ранг Звіти', '2025-11-21 01:25:05'),
(37724, 'uk', 'seotools', 'Quick Saturation Checker', 'Quick Перевірка насиченості', '2025-11-21 01:25:05'),
(37723, 'uk', 'seotools', 'Quick Rank Checker', 'Quick Перевірка рангу', '2025-11-21 01:25:05'),
(37722, 'uk', 'seotools', 'Quick Position Checker', 'Quick Позиція Checker', '2025-11-21 01:25:05'),
(37721, 'uk', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed Checker', '2025-11-21 01:25:05'),
(37720, 'uk', 'seotools', 'Quick Checker', 'Quick Checker', '2025-11-21 01:25:05'),
(37719, 'uk', 'seotools', 'Quick Backlinks Checker', 'Quick Зворотні посилання Checker', '2025-11-21 01:25:05'),
(37718, 'uk', 'seotools', 'PageSpeed Reports', 'PageSpeed Звіти', '2025-11-21 01:25:05'),
(37717, 'uk', 'seotools', 'pagespeed', 'PageSpeed Insights', '2025-11-21 01:25:05'),
(37716, 'uk', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for Звіти generation.\r\nThis action may cause captcha in Пошукова система Результати.', '2025-11-21 01:25:05'),
(37715, 'uk', 'seotools', 'Keywords Manager', 'Ключові слова Manager', '2025-11-21 01:25:05'),
(37714, 'uk', 'seotools', 'keyword-position-checker', 'Позиція ключового слова Checker', '2025-11-21 01:25:05'),
(37713, 'uk', 'seotools', 'Keyword Search Summary', 'Ключове слово Пошук Summary', '2025-11-21 01:25:05'),
(37712, 'uk', 'seotools', 'Keyword Search Reports', 'Ключове слово Пошук Звіти', '2025-11-21 01:25:05'),
(37711, 'uk', 'seotools', 'Keyword Position Summary', 'Позиція ключового слова Summary', '2025-11-21 01:25:05'),
(37710, 'uk', 'seotools', 'Import Project Links', 'Імпортувати Проект Links', '2025-11-21 01:25:05'),
(37709, 'uk', 'seotools', 'Graphical Reports', 'Graphical Звіти', '2025-11-21 01:25:05'),
(37708, 'uk', 'seotools', 'Graphical Position Reports', 'Graphical Позиція Звіти', '2025-11-21 01:25:05'),
(37707, 'uk', 'seotools', 'Google Sitemap Generator', 'Google Sitemap Generator', '2025-11-21 01:25:05'),
(37706, 'uk', 'seotools', 'Generate Saturation Reports', 'Generate Saturation Звіти', '2025-11-21 01:25:05'),
(37705, 'uk', 'seotools', 'Generate Reports', 'Generate Звіти', '2025-11-21 01:25:05'),
(37704, 'uk', 'seotools', 'Generate Rank Reports', 'Generate Ранг Звіти', '2025-11-21 01:25:05'),
(37703, 'uk', 'seotools', 'Generate Keyword Reports', 'Generate Ключове слово Звіти', '2025-11-21 01:25:05'),
(37702, 'uk', 'seotools', 'Generate Backlinks Reports', 'Generate Зворотні посилання Звіти', '2025-11-21 01:25:05'),
(37701, 'uk', 'seotools', 'Featured Submission', 'Featured Submission', '2025-11-21 01:25:05'),
(37700, 'uk', 'seotools', 'Edit Seo Tool', 'Редагувати Seo Tool', '2025-11-21 01:25:05'),
(37699, 'uk', 'seotools', 'directory-submission', 'Каталог Submission', '2025-11-21 01:25:05'),
(37698, 'uk', 'seotools', 'Detailed Reports', 'Detailed Звіти', '2025-11-21 01:25:05'),
(37697, 'uk', 'seotools', 'Detailed Position Reports', 'Detailed Позиція Звіти', '2025-11-21 01:25:05'),
(37696, 'uk', 'seotools', 'clickproceedaction', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Результати.', '2025-11-21 01:25:05'),
(37695, 'uk', 'seotools', 'clickgeneratereports', 'Click on <b>Proceed</b> to generate Звіти', '2025-11-21 01:25:05'),
(37694, 'uk', 'seotools', 'Check Submission Status', 'Check Submission Статус', '2025-11-21 01:25:05'),
(37693, 'uk', 'seotools', 'Backlinks Reports', 'Зворотні посилання Звіти', '2025-11-21 01:25:05'),
(37692, 'uk', 'seotools', 'backlink-checker', 'Зворотні посилання Checker', '2025-11-21 01:25:05'),
(37691, 'uk', 'seotools', 'Automatic Submission', 'Автоматично Submission', '2025-11-21 01:25:05'),
(37690, 'uk', 'seotools', 'Auditor Settings', 'Auditor Налаштування', '2025-11-21 01:25:05'),
(37689, 'uk', 'seotools', 'Auditor Reports', 'Auditor Звіти', '2025-11-21 01:25:05'),
(37688, 'uk', 'seotools', 'Auditor Projects', 'Auditor Проекти', '2025-11-21 01:25:05'),
(37687, 'uk', 'searchengine', 'no_of_results_page', 'Номер of Результати per Сторінка', '2025-11-21 01:25:05'),
(37686, 'uk', 'searchengine', 'max_results', 'Максимум Номер of Результати', '2025-11-21 01:25:05'),
(37685, 'uk', 'saturation', 'Search Engine Saturation Reports', 'Насиченість пошукової системи Звіти', '2025-11-21 01:25:05'),
(37684, 'uk', 'saturation', 'Saved Search Engine Saturation results of', 'Saved Насиченість пошукової системи Результати of', '2025-11-21 01:25:05'),
(37683, 'uk', 'saturation', 'Quick Search Engine Saturation Checker', 'Quick Насиченість пошукової системи Checker', '2025-11-21 01:25:05'),
(37682, 'uk', 'saturation', 'GenerateSaturationReports', 'Generate Насиченість пошукової системи Звіти', '2025-11-21 01:25:05'),
(37681, 'uk', 'saturation', 'clickproceedsaturation', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Насиченість пошукової системи Результати', '2025-11-21 01:25:05'),
(37680, 'uk', 'review', 'New Review Link', 'New Огляд Посилання', '2025-11-21 01:25:05'),
(37678, 'uk', 'reports', 'Reports Generated Successfully', 'Звіти Generated Successfully', '2025-11-21 01:25:05'),
(37679, 'uk', 'review', 'Edit Review Link', 'Редагувати Огляд Посилання', '2025-11-21 01:25:05'),
(37677, 'uk', 'reports', 'report_email_subject', 'Your SEO Звіти generated successfully', '2025-11-21 01:25:05'),
(37676, 'uk', 'reports', 'report_email_body_text2', 'If above Звіти are not Очистити, Please [LOGIN_LINK] to Переглянути the Звіти directly from your Обліковий запис.', '2025-11-21 01:25:05'),
(37674, 'uk', 'report', 'sheduledsuccessfully', 'Заплановано Звіт generation successfully!', '2025-11-21 01:25:05'),
(37675, 'uk', 'reports', 'report_email_body_text1', 'Your Звіти generated successfully in seo panel. Please check the attached Звіти.', '2025-11-21 01:25:05'),
(37673, 'uk', 'report', 'reportsettingssaved', 'Звіт Налаштування saved successfully!', '2025-11-21 01:25:05'),
(37672, 'uk', 'report', 'Reports generation interval', 'Звіти generation interval', '2025-11-21 01:25:05'),
(37671, 'uk', 'report', 'Next report generation time', 'Наступний Звіт generation Час', '2025-11-21 01:25:05'),
(37670, 'uk', 'report', 'keywordnumbercheckedcronnote', 'Примітка: За замовчуванням 0 means all Ключові слова should be checked', '2025-11-21 01:25:05'),
(37669, 'uk', 'report', 'Email notification', 'Електронна пошта Сповіщення', '2025-11-21 01:25:05'),
(37668, 'uk', 'report', '2 Days', '2 Days', '2025-11-21 01:25:05'),
(37666, 'uk', 'register', 'user_confirm_mail_cont_1', 'Thank you for your registration with', '2025-11-21 01:25:05'),
(37667, 'uk', 'register', 'user_confirm_mail_cont_2', 'Please click on the following Посилання to Підтвердити registration', '2025-11-21 01:25:05'),
(37665, 'uk', 'register', 'user_confirm_content_1', 'Internal Помилка occured while Обробка Підтвердити request', '2025-11-21 01:25:05'),
(37664, 'uk', 'register', 'Subscription Details', 'Subscription Деталі', '2025-11-21 01:25:05'),
(37663, 'uk', 'register', 'Registration', 'Registration', '2025-11-21 01:25:05'),
(37661, 'uk', 'register', 'Personal Information', 'Personal Інформація', '2025-11-21 01:25:05'),
(37662, 'uk', 'register', 'Register subtitle', 'Join us Сьогодні and start optimizing your SEO', '2025-11-21 01:25:05'),
(37660, 'uk', 'register', 'Last name placeholder', 'Остання Ім''я', '2025-11-21 01:25:05'),
(37659, 'uk', 'register', 'First name placeholder', 'Перша Ім''я', '2025-11-21 01:25:05'),
(37658, 'uk', 'register', 'Already have account', 'Already have an Обліковий запис?', '2025-11-21 01:25:05'),
(37657, 'uk', 'register', 'Account Information', 'Обліковий запис Інформація', '2025-11-21 01:25:05'),
(37656, 'uk', 'rank', 'Saved rank results of', 'Saved Ранг Результати of', '2025-11-21 01:25:05'),
(37655, 'uk', 'rank', 'Google and Alexa Rank Reports', 'Google and Alexa ранг Звіти', '2025-11-21 01:25:05'),
(37654, 'uk', 'rank', 'enterurlproceed', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Google and Alexa ранг.', '2025-11-21 01:25:05'),
(37643, 'uk', 'proxy', 'Request Count', 'Request Кількість', '2025-11-21 01:25:05'),
(37644, 'uk', 'QuickWebProxy', 'Anonymize', 'Anonymize', '2025-11-21 01:25:05'),
(37645, 'uk', 'QuickWebProxy', 'Please enter a valid url', 'Будь ласка, введіть a Дійсний url', '2025-11-21 01:25:05'),
(37646, 'uk', 'QuickWebProxy', 'QWP_ALLOW_USER_WEB_PROXY', 'Allow Користувач to access the web proxy', '2025-11-21 01:25:05'),
(37647, 'uk', 'QuickWebProxy', 'QWP_ALLOW_WEB_SERVER_ACT_AS_PROXY', 'Allow web server to act as a proxy', '2025-11-21 01:25:05'),
(37648, 'uk', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS', 'Blocked Urls In Web Proxy', '2025-11-21 01:25:05'),
(37649, 'uk', 'QuickWebProxy', 'QWP_PROXY_BLOCK_URLS_comment', 'Insert urls separated with comma to block in web proxy.', '2025-11-21 01:25:05'),
(37650, 'uk', 'QuickWebProxy', 'Server list is empty', 'Server list is empty', '2025-11-21 01:25:05'),
(37651, 'uk', 'QuickWebProxy', 'Url blocked in the web proxy', 'Url blocked in the web proxy', '2025-11-21 01:25:05'),
(37652, 'uk', 'QuickWebProxy', 'Web Proxy', 'Web Proxy', '2025-11-21 01:25:05'),
(37653, 'uk', 'QuickWebProxy', 'Web Server', 'Web Server', '2025-11-21 01:25:05'),
(37606, 'uk', 'panel', 'Project Manager', 'Проект Manager', '2025-11-21 01:25:05'),
(37607, 'uk', 'panel', 'Project Summary', 'Проект Summary', '2025-11-21 01:25:05'),
(37608, 'uk', 'panel', 'Proxy Manager', 'Proxy Manager', '2025-11-21 01:25:05'),
(37609, 'uk', 'panel', 'Proxy Perfomance', 'Proxy Perfomance', '2025-11-21 01:25:05'),
(37610, 'uk', 'panel', 'Proxy Settings', 'Proxy Налаштування', '2025-11-21 01:25:05'),
(37611, 'uk', 'panel', 'Report Generation Logs', 'Звіт Generation Logs', '2025-11-21 01:25:05'),
(37612, 'uk', 'panel', 'Report Generation Manager', 'Звіт Generation Manager', '2025-11-21 01:25:05'),
(37613, 'uk', 'panel', 'Report Settings', 'Звіт Налаштування', '2025-11-21 01:25:05'),
(37614, 'uk', 'panel', 'Reports Manager', 'Звіти Manager', '2025-11-21 01:25:05'),
(37615, 'uk', 'panel', 'Schedule Reports', 'Розклад Звіти', '2025-11-21 01:25:05'),
(37616, 'uk', 'panel', 'Search Engine Manager', 'Пошукова система Manager', '2025-11-21 01:25:05'),
(37617, 'uk', 'panel', 'Seo Plugins Manager', 'Seo Плагіни Manager', '2025-11-21 01:25:05'),
(37618, 'uk', 'panel', 'Seo Tools Manager', 'SEO інструменти Manager', '2025-11-21 01:25:05'),
(37619, 'uk', 'panel', 'Settings', 'Налаштування', '2025-11-21 01:25:05'),
(37620, 'uk', 'panel', 'Sitemaps', 'Sitemaps', '2025-11-21 01:25:05'),
(37621, 'uk', 'panel', 'Submit Sitemap', 'Відправити Sitemap', '2025-11-21 01:25:05'),
(37622, 'uk', 'panel', 'Sync Search Engines', 'Sync Пошукові системи', '2025-11-21 01:25:05'),
(37623, 'uk', 'panel', 'System Settings', 'Системні налаштування', '2025-11-21 01:25:05'),
(37624, 'uk', 'panel', 'Test Email Settings', 'Test Налаштування електронної пошти', '2025-11-21 01:25:05'),
(37625, 'uk', 'panel', 'Themes Manager', 'Themes Manager', '2025-11-21 01:25:05'),
(37626, 'uk', 'panel', 'User Manager', 'Користувач Manager', '2025-11-21 01:25:05'),
(37627, 'uk', 'panel', 'User Type Manager', 'Користувач Тип Manager', '2025-11-21 01:25:05'),
(37628, 'uk', 'panel', 'User Type Settings', 'Користувач Тип Налаштування', '2025-11-21 01:25:05'),
(37629, 'uk', 'panel', 'Valid', 'Дійсний', '2025-11-21 01:25:05'),
(37630, 'uk', 'panel', 'Website Access Manager', 'Веб-сайт Access Manager', '2025-11-21 01:25:05'),
(37631, 'uk', 'panel', 'Website Manager', 'Веб-сайт Manager', '2025-11-21 01:25:05'),
(37632, 'uk', 'plugin', 'Download Seo Panel Plugins', 'Скачати Seo Panel Плагіни', '2025-11-21 01:25:05'),
(37633, 'uk', 'plugin', 'Edit Seo Plugin', 'Редагувати Seo Plugin', '2025-11-21 01:25:05'),
(37634, 'uk', 'plugin', 'Plugin Name', 'Plugin Ім''я', '2025-11-21 01:25:05'),
(37635, 'uk', 'plugin', 'Seo Plugin Details', 'Seo Plugin Деталі', '2025-11-21 01:25:05'),
(37636, 'uk', 'proxy', 'click-to-get-proxy', 'Натисніть тут to get proxy', '2025-11-21 01:25:05'),
(37637, 'uk', 'proxy', 'Edit Proxy', 'Редагувати Proxy', '2025-11-21 01:25:05'),
(37638, 'uk', 'proxy', 'enterproxynote', 'Enter proxy one per line in following Формат.', '2025-11-21 01:25:05'),
(37639, 'uk', 'proxy', 'Proxy Password', 'Proxy Пароль', '2025-11-21 01:25:05'),
(37640, 'uk', 'proxy', 'Proxy Username', 'Proxy Ім''я користувача', '2025-11-21 01:25:05'),
(37641, 'uk', 'proxy', 'Proxyalreadyexist', 'Proxy already exist!', '2025-11-21 01:25:05'),
(37642, 'uk', 'proxy', 'proxysyntax', 'Proxy Hostname, Proxy Port, Proxy Ім''я користувача, Proxy Пароль', '2025-11-21 01:25:05'),
(37598, 'uk', 'panel', 'Mail Settings', 'Mail Налаштування', '2025-11-21 01:25:05'),
(37599, 'uk', 'panel', 'MOZ Settings', 'MOZ Налаштування', '2025-11-21 01:25:05'),
(37600, 'uk', 'panel', 'My Profile', 'My Профіль', '2025-11-21 01:25:05'),
(37601, 'uk', 'panel', 'New Project', 'New Проект', '2025-11-21 01:25:05'),
(37602, 'uk', 'panel', 'New Proxy', 'New Proxy', '2025-11-21 01:25:05'),
(37603, 'uk', 'panel', 'New User', 'New Користувач', '2025-11-21 01:25:05'),
(37604, 'uk', 'panel', 'New User Type', 'New Користувач Тип', '2025-11-21 01:25:05'),
(37605, 'uk', 'panel', 'New Website', 'New Веб-сайт', '2025-11-21 01:25:05'),
(37597, 'uk', 'panel', 'Mail Log Manager', 'Mail Log Manager', '2025-11-21 01:25:05'),
(37596, 'uk', 'panel', 'Log Manager', 'Log Manager', '2025-11-21 01:25:05'),
(37595, 'uk', 'panel', 'Import Websites', 'Імпортувати Веб-сайти', '2025-11-21 01:25:05'),
(37594, 'uk', 'panel', 'Import Proxy', 'Імпортувати Proxy', '2025-11-21 01:25:05'),
(37593, 'uk', 'panel', 'Google Settings', 'Google Налаштування', '2025-11-21 01:25:05'),
(37591, 'uk', 'panel', 'Existing', 'Existing', '2025-11-21 01:25:05'),
(37592, 'uk', 'panel', 'Global Reports Settings', 'Global Звіти Налаштування', '2025-11-21 01:25:05'),
(37590, 'uk', 'panel', 'Edit Project', 'Редагувати Проект', '2025-11-21 01:25:05'),
(37589, 'uk', 'panel', 'Edit My Profile', 'Редагувати My Профіль', '2025-11-21 01:25:05'),
(37588, 'uk', 'panel', 'Directory Manager', 'Каталог Manager', '2025-11-21 01:25:05'),
(37587, 'uk', 'panel', 'DataForSEO Settings', 'DataForSEO Налаштування', '2025-11-21 01:25:05'),
(37586, 'uk', 'panel', 'Current Time', 'Current Час', '2025-11-21 01:25:05'),
(37585, 'uk', 'panel', 'Cron Command', 'Cron Command', '2025-11-21 01:25:05'),
(37584, 'uk', 'panel', 'Crawl Log Manager', 'Crawl Log Manager', '2025-11-21 01:25:05'),
(37582, 'uk', 'panel', 'Check Directory', 'Check Каталог', '2025-11-21 01:25:05'),
(37583, 'uk', 'panel', 'Connections', 'Connections', '2025-11-21 01:25:05'),
(37581, 'uk', 'panel', 'Archived Reports', 'Archived Звіти', '2025-11-21 01:25:05'),
(37580, 'uk', 'panel', 'API Settings', 'Налаштування API', '2025-11-21 01:25:05'),
(37579, 'uk', 'panel', 'API Manager', 'API Manager', '2025-11-21 01:25:05'),
(37578, 'uk', 'panel', 'API Connection', 'API Connection', '2025-11-21 01:25:05'),
(37577, 'uk', 'panel', 'alsocheckfollowlink', 'Also check following Посилання if you need more Деталі.', '2025-11-21 01:25:05'),
(37576, 'uk', 'panel', 'Alerts', 'Сповіщення', '2025-11-21 01:25:05'),
(37575, 'uk', 'panel', 'Add following command to your cron tab', 'Add following command to your cron tab', '2025-11-21 01:25:05'),
(37574, 'uk', 'panel', 'About Us', 'Про Us', '2025-11-21 01:25:05'),
(37573, 'uk', 'pagespeed', 'Saved page speed results of', 'Saved Сторінка Швидкість Результати of', '2025-11-21 01:25:05'),
(37572, 'uk', 'pagespeed', 'PageSpeed Details', 'PageSpeed Деталі', '2025-11-21 01:25:05'),
(37571, 'uk', 'pagespeed', 'Page Speed', 'Сторінка Швидкість', '2025-11-21 01:25:05'),
(37570, 'uk', 'pagespeed', 'Mobile Usability', 'Mobile Usability', '2025-11-21 01:25:05'),
(37569, 'uk', 'pagespeed', 'Mobile Speed', 'Mobile Швидкість', '2025-11-21 01:25:05'),
(37568, 'uk', 'pagespeed', 'Desktop Speed', 'Desktop Швидкість', '2025-11-21 01:25:05'),
(37567, 'uk', 'myaccount', 'Disconnected', 'Від''єднано', '2025-11-21 01:25:05'),
(37566, 'uk', 'myaccount', 'Disconnect', 'Від''єднатися', '2025-11-21 01:25:05'),
(37565, 'uk', 'myaccount', 'Connected', 'Під''єднано', '2025-11-21 01:25:05'),
(37564, 'uk', 'myaccount', 'Connect', 'Під''єднатися', '2025-11-21 01:25:05'),
(37563, 'uk', 'login', 'Your Password Reset Successfully', 'Your Пароль Скинути Successfully', '2025-11-21 01:25:05'),
(37562, 'uk', 'login', 'Your Password Reset Failed', 'Your Пароль Скинути Не вдалося', '2025-11-21 01:25:05'),
(37561, 'uk', 'login', 'Your account password is resetted and new password is', 'Your Обліковий запис Пароль is resetted and new Пароль is', '2025-11-21 01:25:05'),
(37560, 'uk', 'login', 'Your account activated successfully', 'Your Обліковий запис activated successfully', '2025-11-21 01:25:05'),
(37559, 'uk', 'login', 'Welcome message', 'Welcome Назад! Please Увійти to your Обліковий запис', '2025-11-21 01:25:05'),
(37558, 'uk', 'login', 'Verification', 'Verification', '2025-11-21 01:25:05'),
(37557, 'uk', 'login', 'usernameexist', 'Ім''я користувача already exist!', '2025-11-21 01:25:05'),
(37556, 'uk', 'login', 'Username placeholder', 'Enter your Ім''я користувача', '2025-11-21 01:25:05'),
(37555, 'uk', 'login', 'Username', 'Ім''я користувача', '2025-11-21 01:25:05'),
(37554, 'uk', 'login', 'user_not_activated_msg', 'Користувач is not activated. Please check your mail for activation', '2025-11-21 01:25:05'),
(37553, 'uk', 'login', 'user_email_not_exist', 'Користувач Електронна пошта is not existing in system!', '2025-11-21 01:25:05'),
(37552, 'uk', 'login', 'User Type', 'Користувач Тип', '2025-11-21 01:25:05'),
(37551, 'uk', 'login', 'User inactive', 'Користувач Неактивний', '2025-11-21 01:25:05'),
(37550, 'uk', 'login', 'to login to your account', 'to Увійти to your Обліковий запис', '2025-11-21 01:25:05'),
(37549, 'uk', 'login', 'Sign in to your account', 'Увійти to your Обліковий запис', '2025-11-21 01:25:05'),
(37548, 'uk', 'login', 'Sign In', 'Увійти', '2025-11-21 01:25:05'),
(37547, 'uk', 'login', 'Security message', 'Your Інформація is secure and encrypted', '2025-11-21 01:25:05'),
(37546, 'uk', 'login', 'Request Password', 'Request Пароль', '2025-11-21 01:25:05'),
(37545, 'uk', 'login', 'Remember password text', 'Remember your Пароль?', '2025-11-21 01:25:05'),
(37544, 'uk', 'login', 'Register', 'Register', '2025-11-21 01:25:05'),
(37543, 'uk', 'login', 'password_reset_success_message', 'Your Пароль Скинути successfully. A confirmation mail send to Електронна пошта address. <br>Please check your inbox to get your new Пароль.', '2025-11-21 01:25:05'),
(37542, 'uk', 'login', 'Password placeholder', 'Enter your Пароль', '2025-11-21 01:25:05'),
(37541, 'uk', 'login', 'Password incorrect', 'Пароль incorrect', '2025-11-21 01:25:05'),
(37540, 'uk', 'login', 'Password', 'Пароль', '2025-11-21 01:25:05'),
(37539, 'uk', 'login', 'No account text', 'Don''t have an Обліковий запис?', '2025-11-21 01:25:05'),
(37538, 'uk', 'login', 'newaccountsuccess', 'New Обліковий запис created successfully!', '2025-11-21 01:25:05'),
(37537, 'uk', 'login', 'Login incorrect', 'Увійти incorrect', '2025-11-21 01:25:05'),
(37536, 'uk', 'login', 'Login', 'Увійти', '2025-11-21 01:25:05'),
(37535, 'uk', 'login', 'Last Name', 'Остання Ім''я', '2025-11-21 01:25:05'),
(37534, 'uk', 'login', 'internal_error_mail_send', 'An internal Помилка occured while sending Пароль Скинути mail!', '2025-11-21 01:25:05'),
(37533, 'uk', 'login', 'Forgot subtitle', 'Enter your Електронна пошта address and we''ll send you instructions to Скинути your Пароль', '2025-11-21 01:25:05'),
(37532, 'uk', 'login', 'Forgot password?', 'Забули пароль?', '2025-11-21 01:25:05'),
(37531, 'uk', 'login', 'First Name', 'Перша Ім''я', '2025-11-21 01:25:05'),
(37530, 'uk', 'login', 'Enter the code as it is shown', 'Enter the code as it is shown', '2025-11-21 01:25:05'),
(37528, 'uk', 'login', 'emailexist', 'Електронна пошта already exist!', '2025-11-21 01:25:05'),
(37529, 'uk', 'login', 'Enter the code', 'Enter the code', '2025-11-21 01:25:05'),
(37527, 'uk', 'login', 'Email placeholder', 'your@Електронна пошта.com', '2025-11-21 01:25:05'),
(37526, 'uk', 'login', 'Email', 'Електронна пошта', '2025-11-21 01:25:05'),
(37525, 'uk', 'login', 'Create New Account', 'Створити New Обліковий запис', '2025-11-21 01:25:05'),
(37524, 'uk', 'login', 'Create my account', 'Створити Мій обліковий запис', '2025-11-21 01:25:05'),
(37523, 'uk', 'login', 'Confirm Password', 'Підтвердити Пароль', '2025-11-21 01:25:05'),
(37522, 'uk', 'log', 'Post Fields', 'Post Fields', '2025-11-21 01:25:05'),
(37521, 'uk', 'log', 'Mail Log Details', 'Mail Log Деталі', '2025-11-21 01:25:05'),
(37520, 'uk', 'log', 'Crawl Log Details', 'Crawl Log Деталі', '2025-11-21 01:25:05'),
(37519, 'uk', 'log', 'Clear All Logs', 'Очистити All Logs', '2025-11-21 01:25:05'),
(37518, 'uk', 'label', 'Year', 'Year', '2025-11-21 01:25:05'),
(37517, 'uk', 'label', 'Write', 'Write', '2025-11-21 01:25:05'),
(37516, 'uk', 'label', 'Weekly', 'Щотижня', '2025-11-21 01:25:05'),
(37515, 'uk', 'label', 'Week', 'Week', '2025-11-21 01:25:05'),
(37513, 'uk', 'label', 'View Reports', 'Переглянути Звіти', '2025-11-21 01:25:05'),
(37514, 'uk', 'label', 'wantproceed', 'Do you really want to proceed?', '2025-11-21 01:25:05'),
(37512, 'uk', 'label', 'Version', 'Версія', '2025-11-21 01:25:05'),
(37511, 'uk', 'label', 'User agent', 'Користувач agent', '2025-11-21 01:25:05'),
(37510, 'uk', 'label', 'Usability', 'Usability', '2025-11-21 01:25:05'),
(37509, 'uk', 'label', 'Upgrade', 'Upgrade', '2025-11-21 01:25:05'),
(37508, 'uk', 'label', 'Updated', 'Updated', '2025-11-21 01:25:05'),
(37507, 'uk', 'label', 'Type', 'Тип', '2025-11-21 01:25:05'),
(37506, 'uk', 'label', 'Translators', 'Translators', '2025-11-21 01:25:05'),
(37505, 'uk', 'label', 'translation by', 'translation by', '2025-11-21 01:25:05'),
(37504, 'uk', 'label', 'Total Results', 'Всього Результати', '2025-11-21 01:25:05'),
(37502, 'uk', 'label', 'Theme', 'Theme', '2025-11-21 01:25:05'),
(37503, 'uk', 'label', 'Title', 'Назва', '2025-11-21 01:25:05'),
(37501, 'uk', 'label', 'Syntax', 'Syntax', '2025-11-21 01:25:05'),
(37499, 'uk', 'label', 'Subject', 'Subject', '2025-11-21 01:25:05'),
(37500, 'uk', 'label', 'Success', 'Успіх', '2025-11-21 01:25:05'),
(37497, 'uk', 'label', 'Speed', 'Швидкість', '2025-11-21 01:25:05'),
(37498, 'uk', 'label', 'Sponsors', 'Sponsors', '2025-11-21 01:25:05'),
(37496, 'uk', 'label', 'Select All', 'Вибрати All', '2025-11-21 01:25:05'),
(37495, 'uk', 'label', 'Second', 'Second', '2025-11-21 01:25:05'),
(37494, 'uk', 'label', 'Score', 'Оцінка', '2025-11-21 01:25:05'),
(37493, 'uk', 'label', 'Reviews', 'Огляди', '2025-11-21 01:25:05'),
(37492, 'uk', 'label', 'Report Type', 'Звіт Тип', '2025-11-21 01:25:05'),
(37491, 'uk', 'label', 'Referer', 'Referer', '2025-11-21 01:25:05'),
(37490, 'uk', 'label', 'Reference', 'Reference', '2025-11-21 01:25:05'),
(37489, 'uk', 'label', 'Recent Activity', 'Остання активність', '2025-11-21 01:25:05'),
(37488, 'uk', 'label', 'Read', 'Read', '2025-11-21 01:25:05'),
(37487, 'uk', 'label', 'Re-install', 'Re-install', '2025-11-21 01:25:05'),
(37486, 'uk', 'label', 'Rating', 'Рейтинг', '2025-11-21 01:25:05'),
(37485, 'uk', 'label', 'Proxy', 'Proxy', '2025-11-21 01:25:05'),
(37484, 'uk', 'label', 'Project', 'Проект', '2025-11-21 01:25:05'),
(37483, 'uk', 'label', 'Port', 'Port', '2025-11-21 01:25:05'),
(37482, 'uk', 'label', 'Plugin', 'Plugin', '2025-11-21 01:25:05'),
(37481, 'uk', 'label', 'Overview', 'Огляд', '2025-11-21 01:25:05'),
(37480, 'uk', 'label', 'Order By', 'Order By', '2025-11-21 01:25:05'),
(37479, 'uk', 'label', 'noactiveplugins', 'No Активний Seo Плагіни Found!', '2025-11-21 01:25:05'),
(37478, 'uk', 'label', 'Months', 'Months', '2025-11-21 01:25:05'),
(37477, 'uk', 'label', 'Monthly', 'Щомісяця', '2025-11-21 01:25:05'),
(37476, 'uk', 'label', 'Month', 'Month', '2025-11-21 01:25:05'),
(37475, 'uk', 'label', 'Mobile', 'Mobile', '2025-11-21 01:25:05'),
(37474, 'uk', 'label', 'Minute', 'Minute', '2025-11-21 01:25:05'),
(37473, 'uk', 'label', 'Likes', 'Вподобання', '2025-11-21 01:25:05'),
(37472, 'uk', 'label', 'Keywords', 'Ключові слова', '2025-11-21 01:25:05'),
(37471, 'uk', 'label', 'Just Now', 'Just Now', '2025-11-21 01:25:05'),
(37470, 'uk', 'label', 'Installation', 'Installation', '2025-11-21 01:25:05'),
(37469, 'uk', 'label', 'Include', 'Include', '2025-11-21 01:25:05'),
(37468, 'uk', 'label', 'Impressions', 'Impressions', '2025-11-21 01:25:05'),
(37467, 'uk', 'label', 'Hour', 'Hour', '2025-11-21 01:25:05'),
(37466, 'uk', 'label', 'From', 'From', '2025-11-21 01:25:05'),
(37465, 'uk', 'label', 'Free', 'Free', '2025-11-21 01:25:05'),
(37464, 'uk', 'label', 'Followers', 'Followers', '2025-11-21 01:25:05'),
(37463, 'uk', 'label', 'Feature', 'Feature', '2025-11-21 01:25:05'),
(37462, 'uk', 'label', 'Fail', 'Fail', '2025-11-21 01:25:05'),
(37461, 'uk', 'label', 'Exclude', 'Exclude', '2025-11-21 01:25:05'),
(37460, 'uk', 'label', 'Email Body', 'Електронна пошта Body', '2025-11-21 01:25:05'),
(37459, 'uk', 'label', 'Download', 'Скачати', '2025-11-21 01:25:05'),
(37458, 'uk', 'label', 'Developers', 'Developers', '2025-11-21 01:25:05'),
(37457, 'uk', 'label', 'Desktop', 'Desktop', '2025-11-21 01:25:05'),
(37456, 'uk', 'label', 'Description', 'Опис', '2025-11-21 01:25:05'),
(37455, 'uk', 'label', 'Days', 'Days', '2025-11-21 01:25:05'),
(37454, 'uk', 'label', 'Day', 'Day', '2025-11-21 01:25:05'),
(37453, 'uk', 'label', 'Daily', 'Щодня', '2025-11-21 01:25:05'),
(37452, 'uk', 'label', 'Current', 'Current', '2025-11-21 01:25:05'),
(37451, 'uk', 'label', 'Cron', 'Cron', '2025-11-21 01:25:05'),
(37450, 'uk', 'label', 'Count', 'Кількість', '2025-11-21 01:25:05'),
(37449, 'uk', 'label', 'Cookie', 'Cookie', '2025-11-21 01:25:05'),
(37448, 'uk', 'label', 'Comments', 'Comments', '2025-11-21 01:25:05'),
(37447, 'uk', 'label', 'Clicks', 'Clicks', '2025-11-21 01:25:05'),
(37446, 'uk', 'label', 'Click Here', 'Натисніть тут', '2025-11-21 01:25:05'),
(37445, 'uk', 'label', 'Clear All', 'Очистити All', '2025-11-21 01:25:05'),
(37443, 'uk', 'label', 'Author', 'Author', '2025-11-21 01:25:05'),
(37444, 'uk', 'label', 'Brocken', 'Broken', '2025-11-21 01:25:05'),
(37442, 'uk', 'label', 'Authentication', 'Authentication', '2025-11-21 01:25:05'),
(37441, 'uk', 'label', 'already exist', 'already exist', '2025-11-21 01:25:05'),
(37440, 'uk', 'label', 'Ago', 'Ago', '2025-11-21 01:25:05'),
(37439, 'uk', 'label', 'Access denied', 'Доступ заборонено', '2025-11-21 01:25:05'),
(37438, 'uk', 'keyword', 'Your keyword count already reached the limit', 'Ключове слово Кількість already reached the limit for this Користувач!', '2025-11-21 01:25:05'),
(37437, 'uk', 'keyword', 'You can add only keywordcount keywords more', 'You can add only [keywordcount] Ключові слова for this Користувач!', '2025-11-21 01:25:05'),
(37436, 'uk', 'keyword', 'Top Keywords', 'Top Ключові слова', '2025-11-21 01:25:05'),
(37435, 'uk', 'keyword', 'to create new keywords', 'to Створити new Ключові слова', '2025-11-21 01:25:05'),
(37434, 'uk', 'keyword', 'Successfully crawled keyword', 'Successfully crawled Ключове слово', '2025-11-21 01:25:05'),
(37432, 'uk', 'keyword', 'results from ', 'Результати from ', '2025-11-21 01:25:05'),
(37433, 'uk', 'keyword', 'Show All results', 'Show All Результати', '2025-11-21 01:25:05'),
(37431, 'uk', 'keyword', 'Ranking Trends', 'Рейтинг Trends', '2025-11-21 01:25:05'),
(37430, 'uk', 'keyword', 'Quick Keyword Position Checker', 'Quick Позиція ключового слова Checker', '2025-11-21 01:25:05'),
(37429, 'uk', 'keyword', 'pleaseselecttool', 'Будь ласка, виберіть atleast one SEO інструменти', '2025-11-21 01:25:05'),
(37428, 'uk', 'keyword', 'not assigned to required search engines', 'not assigned to Обов''язково Пошукові системи', '2025-11-21 01:25:05'),
(37427, 'uk', 'keyword', 'New Keyword', 'New Ключове слово', '2025-11-21 01:25:05'),
(37426, 'uk', 'keyword', 'Keywords Tracked', 'Ключові слова Tracked', '2025-11-21 01:25:05'),
(37425, 'uk', 'keyword', 'Keyword Ranking Trends', 'Ключове слово Рейтинг Trends', '2025-11-21 01:25:05'),
(37424, 'uk', 'keyword', 'Keyword Position Report', 'Позиція ключового слова Звіт', '2025-11-21 01:25:05'),
(37423, 'uk', 'keyword', 'Keyword already exist', 'Ключове слово already exist', '2025-11-21 01:25:05'),
(37422, 'uk', 'keyword', 'Insert keywords separated with comma', 'Insert Ключові слова separated with comma', '2025-11-21 01:25:05'),
(37421, 'uk', 'keyword', 'Import Keywords', 'Імпортувати Ключові слова', '2025-11-21 01:25:05'),
(37419, 'uk', 'keyword', 'Edit Keyword', 'Редагувати ключове слово', '2025-11-21 01:25:05'),
(37420, 'uk', 'keyword', 'Graphical Keyword Position Reports', 'Graphical Позиція ключового слова Звіти', '2025-11-21 01:25:05');
INSERT INTO `texts` VALUES
(37418, 'uk', 'keyword', 'Detailed Keyword Position Reports', 'Detailed Позиція ключового слова Звіти', '2025-11-21 01:25:05'),
(37417, 'uk', 'keyword', 'Crawling keyword', 'Crawling Ключове слово', '2025-11-21 01:25:05'),
(37416, 'uk', 'home', 'Website Statistics', 'Веб-сайт Статистика', '2025-11-21 01:25:05'),
(37415, 'uk', 'home', 'SiteNameUrl', 'Site Ім''я/Url', '2025-11-21 01:25:05'),
(37414, 'uk', 'home', 'Ranks', 'Ranks', '2025-11-21 01:25:05'),
(37413, 'uk', 'home', 'Pages Indexed', 'Сторінки Indexed', '2025-11-21 01:25:05'),
(37412, 'uk', 'home', 'Page Overview Report', 'Сторінка Overview Звіт', '2025-11-21 01:25:05'),
(37411, 'uk', 'home', 'Overall Report Summary', 'Overall Звіт Summary', '2025-11-21 01:25:05'),
(37409, 'uk', 'home', 'Indexed', 'Indexed', '2025-11-21 01:25:05'),
(37410, 'uk', 'home', 'Keyword Overview Report', 'Ключове слово Overview Звіт', '2025-11-21 01:25:05'),
(37973, 'en', 'seodiary', 'Add your comment here', 'Add your comment here', '2025-12-12 09:53:16'),
(37974, 'en', 'seodiary', 'Diary already exist', 'Diary already exist', '2025-12-12 09:53:16'),
(37975, 'en', 'seodiary', 'Edit Diary', 'Edit Diary', '2025-12-12 09:53:16'),
(37976, 'en', 'seodiary', 'New task is assigned to you in SEO Diary', 'New task is assigned to you in SEO Diary', '2025-12-12 09:53:16'),
(37977, 'en', 'seodiary', 'Assigned to You', 'Assigned to You', '2025-12-12 09:53:16'),
(37978, 'en', 'seodiary', 'SD_ALLOW_USER_PROJECTS', 'Allow user to access project manager', '2025-12-12 09:53:16'),
(37979, 'en', 'seodiary', 'New', 'New', '2025-12-12 09:53:16'),
(37980, 'en', 'seodiary', 'Closed', 'Closed', '2025-12-12 09:53:16'),
(37981, 'en', 'seodiary', 'Cancelled', 'Cancelled', '2025-12-12 09:53:16'),
(37982, 'en', 'seodiary', 'Inprogress', 'Inprogress', '2025-12-12 09:53:16'),
(37983, 'en', 'seodiary', 'Blocked', 'Blocked', '2025-12-12 09:53:16'),
(37984, 'en', 'seodiary', 'Feedback', 'Feedback', '2025-12-12 09:53:16'),
(37985, 'en', 'seodiary', 'Due Date', 'Due Date', '2025-12-12 09:53:16'),
(37986, 'en', 'seodiary', 'Ascending', 'Ascending', '2025-12-12 09:53:16'),
(37987, 'en', 'seodiary', 'Descending', 'Descending', '2025-12-12 09:53:16'),
(37988, 'en', 'seodiary', 'Diary Manager', 'Diary Manager', '2025-12-12 09:53:16'),
(37989, 'en', 'seodiary', 'Diary Comments', 'Diary Comments', '2025-12-12 09:53:16'),
(37990, 'en', 'seodiary', 'My Tasks', 'My Tasks', '2025-12-12 09:53:16'),
(37991, 'en', 'seodiary', 'Projects Manager', 'Projects Manager', '2025-12-12 09:53:16'),
(37992, 'en', 'seodiary', 'Assignee', 'Assignee', '2025-12-12 09:53:16'),
(37993, 'en', 'seodiary', 'Sorting', 'Sorting', '2025-12-12 09:53:16'),
(37994, 'en', 'seodiary', 'New Diary', 'New Diary', '2025-12-12 09:53:16'),
(37995, 'en', 'seodiary', 'Add Comment', 'Add Comment', '2025-12-12 09:53:16'),
(37996, 'en', 'settings', 'SP_USE_SAMPLE_API_DATA', 'Use Sample API Data (for testing - saves API credits)', '2026-01-19 22:51:14'),
(37997, 'en', 'siteauditor', 'Sitemap URL', 'Sitemap URL', '2026-01-19 22:51:14'),
(37998, 'en', 'siteauditor', 'Has Backlinks', 'Has Backlinks', '2026-01-19 22:51:14'),
(37999, 'en', 'settings', 'SA_EXCLUDE_FILE_EXTENSIONS', 'Exclude file extensions (comma-separated)', '2026-01-19 22:52:55'),
(38000, 'en', 'siteauditor', 'Exclude Extensions', 'Exclude Extensions', '2026-01-19 22:52:55'),
(38001, 'en', 'siteauditor', 'Leave blank to use system default', 'Leave blank to use system default', '2026-01-19 22:52:55'),
(38002, 'en', 'siteauditor', 'Canonical URL', 'Canonical URL', '2026-01-19 22:52:55'),
(38003, 'en', 'siteauditor', 'Discovered Via', 'Discovered Via', '2026-01-19 22:52:55'),
(38004, 'en', 'siteauditor', 'Sitemap Parsing', 'Sitemap Parsing', '2026-01-19 22:52:55'),
(38005, 'en', 'siteauditor', 'Sitemaps Found', 'Sitemaps Found', '2026-01-19 22:52:55'),
(38006, 'en', 'siteauditor', 'URLs from Sitemap', 'URLs from Sitemap', '2026-01-19 22:52:55'),
(38007, 'en', 'label', 'Social Media', 'Social Media', '2026-01-19 22:53:39'),
(38008, 'ar', 'label', 'Social Media', 'وسائل التواصل الاجتماعي', '2026-01-19 22:53:39'),
(38009, 'bg', 'label', 'Social Media', 'Социални медии', '2026-01-19 22:53:39'),
(38010, 'bs', 'label', 'Social Media', 'Društveni mediji', '2026-01-19 22:53:39'),
(38011, 'ca', 'label', 'Social Media', 'Xarxes socials', '2026-01-19 22:53:39'),
(38012, 'cn', 'label', 'Social Media', '社交媒体', '2026-01-19 22:53:39'),
(38013, 'cs', 'label', 'Social Media', 'Sociální média', '2026-01-19 22:53:39'),
(38014, 'da', 'label', 'Social Media', 'Sociale medier', '2026-01-19 22:53:39'),
(38015, 'de', 'label', 'Social Media', 'Soziale Medien', '2026-01-19 22:53:39'),
(38016, 'el', 'label', 'Social Media', 'Κοινωνικά Μέσα', '2026-01-19 22:53:39'),
(38017, 'es', 'label', 'Social Media', 'Redes Sociales', '2026-01-19 22:53:39'),
(38018, 'es-ar', 'label', 'Social Media', 'Redes Sociales', '2026-01-19 22:53:39'),
(38019, 'fa', 'label', 'Social Media', 'رسانه های اجتماعی', '2026-01-19 22:53:39'),
(38020, 'fi', 'label', 'Social Media', 'Sosiaalinen media', '2026-01-19 22:53:39'),
(38021, 'fr', 'label', 'Social Media', 'Médias Sociaux', '2026-01-19 22:53:39'),
(38022, 'he', 'label', 'Social Media', 'מדיה חברתית', '2026-01-19 22:53:39'),
(38023, 'hi', 'label', 'Social Media', 'सोशल मीडिया', '2026-01-19 22:53:39'),
(38024, 'hr', 'label', 'Social Media', 'Društveni mediji', '2026-01-19 22:53:39'),
(38025, 'hu', 'label', 'Social Media', 'Közösségi média', '2026-01-19 22:53:39'),
(38026, 'hy', 'label', 'Social Media', 'Սոցիալական Մեդիա', '2026-01-19 22:53:39'),
(38027, 'id', 'label', 'Social Media', 'Media Sosial', '2026-01-19 22:53:39'),
(38028, 'it', 'label', 'Social Media', 'Social Media', '2026-01-19 22:53:39'),
(38029, 'ja', 'label', 'Social Media', 'ソーシャルメディア', '2026-01-19 22:53:39'),
(38030, 'ko', 'label', 'Social Media', '소셜 미디어', '2026-01-19 22:53:39'),
(38031, 'lt', 'label', 'Social Media', 'Socialinė žiniasklaida', '2026-01-19 22:53:39'),
(38032, 'mk', 'label', 'Social Media', 'Социјални медиуми', '2026-01-19 22:53:39'),
(38033, 'nl', 'label', 'Social Media', 'Sociale Media', '2026-01-19 22:53:39'),
(38034, 'no', 'label', 'Social Media', 'Sosiale medier', '2026-01-19 22:53:39'),
(38035, 'pl', 'label', 'Social Media', 'Media społecznościowe', '2026-01-19 22:53:39'),
(38036, 'pt', 'label', 'Social Media', 'Redes Sociais', '2026-01-19 22:53:39'),
(38037, 'pt-br', 'label', 'Social Media', 'Redes Sociais', '2026-01-19 22:53:39'),
(38038, 'ro', 'label', 'Social Media', 'Social Media', '2026-01-19 22:53:39'),
(38039, 'ru', 'label', 'Social Media', 'Социальные сети', '2026-01-19 22:53:39'),
(38040, 'sk', 'label', 'Social Media', 'Sociálne médiá', '2026-01-19 22:53:39'),
(38041, 'sl', 'label', 'Social Media', 'Družbeni mediji', '2026-01-19 22:53:39'),
(38042, 'sq', 'label', 'Social Media', 'Media Sociale', '2026-01-19 22:53:39'),
(38043, 'sr', 'label', 'Social Media', 'Друштвени медији', '2026-01-19 22:53:39'),
(38044, 'sv', 'label', 'Social Media', 'Sociala medier', '2026-01-19 22:53:39'),
(38045, 'sw', 'label', 'Social Media', 'Mitandao ya Kijamii', '2026-01-19 22:53:39'),
(38046, 'th', 'label', 'Social Media', 'สื่อสังคม', '2026-01-19 22:53:39'),
(38047, 'tl', 'label', 'Social Media', 'Social Media', '2026-01-19 22:53:39'),
(38048, 'tr', 'label', 'Social Media', 'Sosyal Medya', '2026-01-19 22:53:39'),
(38049, 'uk', 'label', 'Social Media', 'Соціальні мережі', '2026-01-19 22:53:39'),
(38050, 'vn', 'label', 'Social Media', 'Mạng xã hội', '2026-01-19 22:53:39'),
(37405, 'uk', 'home', 'Directory Submission', 'Каталог Submission', '2025-11-21 01:25:05'),
(37404, 'uk', 'home', 'Backlinks', 'Зворотні посилання', '2025-11-21 01:25:05'),
(37403, 'uk', 'home', 'Account Summary', 'Обліковий запис Summary', '2025-11-21 01:25:05'),
(37402, 'uk', 'guest', 'Why Choose SEO Panel?', 'Why Обрати SEO Panel?', '2025-11-21 01:25:05'),
(37399, 'uk', 'guest', 'Trusted by Thousands desc', 'Since 2010, thousands of webmasters worldwide use SEO Panel to optimize their Веб-сайти.', '2025-11-21 01:25:05'),
(37400, 'uk', 'guest', 'View Demo', 'Переглянути Demo', '2025-11-21 01:25:05'),
(37401, 'uk', 'guest', 'Welcome to SEO Panel', 'Welcome to SEO Panel', '2025-11-21 01:25:05'),
(37398, 'uk', 'guest', 'Trusted by Thousands', 'Trusted by Thousands', '2025-11-21 01:25:05'),
(37397, 'uk', 'guest', 'Support Development', 'Підтримка Development', '2025-11-21 01:25:05'),
(37396, 'uk', 'guest', 'Social Media Integration desc', 'Integrate with Google Аналітика, Пошук Console, and Соціальні мережі platforms for comprehensive reporting.', '2025-11-21 01:25:05'),
(37395, 'uk', 'guest', 'Social Media Integration', 'Соціальні мережі Інтеграція', '2025-11-21 01:25:05'),
(37394, 'uk', 'guest', 'Site Auditor desc', 'Audit all SEO factors of each Сторінка and generate XML, HTML, and Текст sitemaps for Пошукові системи.', '2025-11-21 01:25:05'),
(37393, 'uk', 'guest', 'Search Engine Saturation desc', 'Find the Номер of Індексовані сторінки across different Пошукові системи and monitor your indexing progress.', '2025-11-21 01:25:05'),
(37392, 'uk', 'guest', 'Resources & Support', 'Resources & Підтримка', '2025-11-21 01:25:05'),
(37391, 'uk', 'guest', 'Rank Checker desc', 'Check Google PageRank, Alexa ранг, and Moz ранг with comprehensive Щодня tracking and reporting.', '2025-11-21 01:25:05'),
(37390, 'uk', 'guest', 'Powerful SEO Features', 'Powerful SEO Features', '2025-11-21 01:25:05'),
(37389, 'uk', 'guest', 'Plugin Architecture desc', 'Extend functionality with powerful Плагіни including Article Submitter, Генератор мета-тегів, and more.', '2025-11-21 01:25:05'),
(37388, 'uk', 'guest', 'Plugin Architecture', 'Plugin Architecture', '2025-11-21 01:25:05'),
(37387, 'uk', 'guest', 'Multi-Website Support desc', 'Manage SEO for unlimited Веб-сайти from a single control panel with centralized reporting.', '2025-11-21 01:25:05'),
(37386, 'uk', 'guest', 'Multi-Website Support', 'Multi-Веб-сайт Підтримка', '2025-11-21 01:25:05'),
(37385, 'uk', 'guest', 'Login to Get Started', 'Увійти to Почати', '2025-11-21 01:25:05'),
(37384, 'uk', 'guest', 'Keyword Position Checker desc', 'Track your Ключове слово Рейтинги across multiple Пошукові системи with detailed Щодня Звіти and beautiful graphs.', '2025-11-21 01:25:05'),
(37383, 'uk', 'guest', 'Highly Extensible desc', 'Easily develop and install Користувацький Плагіни to extend functionality according to your needs.', '2025-11-21 01:25:05'),
(37382, 'uk', 'guest', 'Highly Extensible', 'Highly Extensible', '2025-11-21 01:25:05'),
(37381, 'uk', 'guest', 'Hero subtitle', 'World''s Перша Open Джерело SEO Control Panel for Multiple Веб-сайти', '2025-11-21 01:25:05'),
(37379, 'uk', 'guest', 'Get Support', 'Get Підтримка', '2025-11-21 01:25:05'),
(37380, 'uk', 'guest', 'Hero description', 'A complete open Джерело SEO control panel for managing Пошукова система optimization of your Веб-сайти. SEO Panel is a powerful toolkit that includes the Останній SEO інструменти to Збільшення and track the Продуктивність of your Веб-сайти.', '2025-11-21 01:25:05'),
(37378, 'uk', 'guest', 'Download SEO Panel', 'Скачати SEO Panel', '2025-11-21 01:25:05'),
(37377, 'uk', 'guest', 'Documentation', 'Документація', '2025-11-21 01:25:05'),
(37376, 'uk', 'guest', 'Directory Submission desc', 'Automatically Відправити your Веб-сайти to major free and paid directories with Статус tracking.', '2025-11-21 01:25:05'),
(37375, 'uk', 'guest', 'Contact Us', 'Контакт Us', '2025-11-21 01:25:05'),
(37374, 'uk', 'guest', 'Cloud Hosted', 'Cloud Hosted', '2025-11-21 01:25:05'),
(37373, 'uk', 'guest', 'Browse Plugins', 'Browse Плагіни', '2025-11-21 01:25:05'),
(37372, 'uk', 'guest', 'Backlinks Checker desc', 'Monitor the Номер of Зворотні посилання from major Пошукові системи and track your Посилання building progress over Час.', '2025-11-21 01:25:05'),
(37371, 'uk', 'guest', '100% Open Source desc', 'Free software released under GNU GPL. Скачати, customize, and use without any restrictions.', '2025-11-21 01:25:05'),
(37370, 'uk', 'guest', '100% Open Source', '100% Open Джерело', '2025-11-21 01:25:05'),
(37369, 'uk', 'directory', 'Website Url', 'URL веб-сайту', '2025-11-21 01:25:05'),
(37368, 'uk', 'directory', 'Website Category', 'Веб-сайт Категорія', '2025-11-21 01:25:05'),
(37367, 'uk', 'directory', 'Submit Title', 'Відправити Назва', '2025-11-21 01:25:05'),
(37366, 'uk', 'directory', 'Submit Keywords', 'Відправити Ключові слова', '2025-11-21 01:25:05'),
(37365, 'uk', 'directory', 'Submit Description', 'Відправити Опис', '2025-11-21 01:25:05'),
(37364, 'uk', 'directory', 'Submission Details', 'Submission Деталі', '2025-11-21 01:25:05'),
(37363, 'uk', 'directory', 'spamemailnote', 'Some directories may send spam, we do not recommend using your primary Електронна пошта address.', '2025-11-21 01:25:05'),
(37362, 'uk', 'directory', 'Semi Automatic Directory Submission Tool', 'Semi Автоматично Каталог Submission Tool', '2025-11-21 01:25:05'),
(37361, 'uk', 'directory', 'selectwebsiteschecksub', 'Вибрати a <b>Веб-сайт</b> to <b>Proceed</b> check Каталог submission.', '2025-11-21 01:25:05'),
(37360, 'uk', 'directory', 'selectwebsiteproceed', 'Вибрати a <b>Веб-сайт</b> to <b>Proceed</b> Каталог submission.<br>Check <b>Directories with out captcha</b> to Відправити to directories with out captcha', '2025-11-21 01:25:05'),
(37359, 'uk', 'directory', 'Reciprocal Link', 'Reciprocal Посилання', '2025-11-21 01:25:05'),
(37358, 'uk', 'directory', 'Please select a website to proceed', 'Будь ласка, виберіть a Веб-сайт to proceed', '2025-11-21 01:25:05'),
(37356, 'uk', 'directory', 'Owner Name', 'Owner Ім''я', '2025-11-21 01:25:05'),
(37357, 'uk', 'directory', 'Pending', 'Очікує', '2025-11-21 01:25:05'),
(37355, 'uk', 'directory', 'Owner Email', 'Owner Електронна пошта', '2025-11-21 01:25:05'),
(37354, 'uk', 'directory', 'optionalnote', 'Необов''язково titles and descriptions to Відправити random Назва and Опис to directories for better Результати.', '2025-11-21 01:25:05'),
(37353, 'uk', 'directory', 'nosuccessnote', 'Didn''t get Успіх Повідомлення, Please check your mail to find the Підтвердити Повідомлення', '2025-11-21 01:25:05'),
(37352, 'uk', 'directory', 'nodirnote', 'No <b>Активний</b> directories Found', '2025-11-21 01:25:05'),
(37350, 'uk', 'directory', 'Enter the code shown', 'Enter the code shown', '2025-11-21 01:25:05'),
(37351, 'uk', 'directory', 'nocatnote', 'The submission Категорія not found in submission Сторінка. Please click on <b>Reload</b> or <b>Skip</b>', '2025-11-21 01:25:05'),
(37349, 'uk', 'directory', 'Directory Submission Reports', 'Каталог Submission Звіти', '2025-11-21 01:25:05'),
(37348, 'uk', 'directory', 'Directories with out Reciprocal Link', 'Directories with out Reciprocal Посилання', '2025-11-21 01:25:05'),
(37347, 'uk', 'directory', 'Directories with out captcha', 'Directories with out captcha', '2025-11-21 01:25:05'),
(37346, 'uk', 'directory', 'desnote', 'Some directories require Мінімум 150 characters for the Опис field.', '2025-11-21 01:25:05'),
(37345, 'uk', 'directory', 'couponcodenote', 'Use above coupon code and get [REDUCTION_PER] offer for each featured submission!', '2025-11-21 01:25:05'),
(37344, 'uk', 'directory', 'Coupon Offer', 'Coupon Offer', '2025-11-21 01:25:05'),
(37343, 'uk', 'directory', 'Coupon Code', 'Coupon Code', '2025-11-21 01:25:05'),
(37342, 'uk', 'directory', 'Confirmation', 'Confirmation', '2025-11-21 01:25:05'),
(37341, 'uk', 'directory', 'clicktoproceeddirsts', 'Click on <b>Proceed</b> to Check Каталог Статус.', '2025-11-21 01:25:05'),
(37340, 'uk', 'directory', 'clickaddfeatureddirectory', 'Натисніть тут to add your own featured Каталог here', '2025-11-21 01:25:05'),
(37339, 'uk', 'directory', 'Check Directory Submission Status', 'Check Каталог Submission Статус', '2025-11-21 01:25:05'),
(37338, 'uk', 'directory', 'Check Directory Status', 'Check Каталог Статус', '2025-11-21 01:25:05'),
(37337, 'uk', 'directory', 'categorynote', 'Categories, separate them with comma according to the priority. Start with Top priority Категорія.', '2025-11-21 01:25:05'),
(37336, 'uk', 'directory', 'Captcha', 'Captcha', '2025-11-21 01:25:05'),
(37335, 'uk', 'directory', 'Approved', 'Approved', '2025-11-21 01:25:05'),
(37334, 'uk', 'directory', 'Add back to directory list', 'Add Назад to Каталог list', '2025-11-21 01:25:05'),
(37333, 'uk', 'dashboard', 'Worst Rank', 'Worst Ранг', '2025-11-21 01:25:05'),
(37332, 'uk', 'dashboard', 'Volatility Score (Standard Deviation)', 'Volatility Оцінка (Standard Deviation)', '2025-11-21 01:25:05'),
(37331, 'uk', 'dashboard', 'Volatility Score', 'Volatility Оцінка', '2025-11-21 01:25:05'),
(37330, 'uk', 'dashboard', 'Volatility data requires at least 2 ranking checks within the se', 'Volatility data requires at least 2 Рейтинг checks within the selected period.', '2025-11-21 01:25:05'),
(37329, 'uk', 'dashboard', 'Volatility', 'Volatility', '2025-11-21 01:25:05'),
(37328, 'uk', 'dashboard', 'Trend', 'Trend', '2025-11-21 01:25:05'),
(37327, 'uk', 'dashboard', 'Top 3', 'Top 3', '2025-11-21 01:25:05'),
(37326, 'uk', 'dashboard', 'Top 10 Most Volatile Keywords', 'Top 10 Most Volatile Ключові слова', '2025-11-21 01:25:05'),
(37325, 'uk', 'dashboard', 'Top 10', 'Top 10', '2025-11-21 01:25:05'),
(37324, 'uk', 'dashboard', 'Ranking Volatility', 'Рейтинг Volatility', '2025-11-21 01:25:05'),
(37322, 'uk', 'dashboard', 'Not Ranked', 'Not Ranked', '2025-11-21 01:25:05'),
(37323, 'uk', 'dashboard', 'positions', 'positions', '2025-11-21 01:25:05'),
(37321, 'uk', 'dashboard', 'Keywords with most ranking fluctuations', 'Ключові слова with most Рейтинг fluctuations', '2025-11-21 01:25:05'),
(37320, 'uk', 'dashboard', 'Keywords by Ranking Position', 'Ключові слова by Рейтинг Позиція', '2025-11-21 01:25:05'),
(37319, 'uk', 'dashboard', 'Keyword Statistics', 'Ключове слово Статистика', '2025-11-21 01:25:05'),
(37318, 'uk', 'dashboard', 'Keyword Distribution by Rank', 'Ключове слово Distribution by Ранг', '2025-11-21 01:25:05'),
(37317, 'uk', 'dashboard', 'Best Rank', 'Best Ранг', '2025-11-21 01:25:05'),
(37316, 'uk', 'dashboard', 'Avg Rank', 'Avg Ранг', '2025-11-21 01:25:05'),
(37315, 'uk', 'common', 'Yes', 'Так', '2025-11-21 01:25:05'),
(37314, 'uk', 'common', 'Websites Count', 'Веб-сайти Кількість', '2025-11-21 01:25:05'),
(37312, 'uk', 'common', 'Warnings', 'Warnings', '2025-11-21 01:25:05'),
(37313, 'uk', 'common', 'Website', 'Веб-сайт', '2025-11-21 01:25:05'),
(37311, 'uk', 'common', 'User Type', 'Користувач Тип', '2025-11-21 01:25:05'),
(37310, 'uk', 'common', 'User Panel', 'Користувач Panel', '2025-11-21 01:25:05'),
(37309, 'uk', 'common', 'User', 'Користувач', '2025-11-21 01:25:05'),
(37308, 'uk', 'common', 'Url', 'URL', '2025-11-21 01:25:05'),
(37307, 'uk', 'common', 'Total', 'Всього', '2025-11-21 01:25:05'),
(37306, 'uk', 'common', 'Tools', 'Інструменти', '2025-11-21 01:25:05'),
(37305, 'uk', 'common', 'Thank you', 'Thank you', '2025-11-21 01:25:05'),
(37304, 'uk', 'common', 'Support', 'Підтримка', '2025-11-21 01:25:05'),
(37303, 'uk', 'common', 'Status', 'Статус', '2025-11-21 01:25:05'),
(37302, 'uk', 'common', 'Spam Score', 'Spam Оцінка', '2025-11-21 01:25:05'),
(37301, 'uk', 'common', 'Source', 'Джерело', '2025-11-21 01:25:05'),
(37300, 'uk', 'common', 'signin', 'Увійти', '2025-11-21 01:25:05'),
(37299, 'uk', 'common', 'Sign Up', 'Зареєструватися', '2025-11-21 01:25:05'),
(37298, 'uk', 'common', 'Sign out', 'Sign out', '2025-11-21 01:25:05'),
(37297, 'uk', 'common', 'Server', 'Server', '2025-11-21 01:25:05'),
(37296, 'uk', 'common', 'Seo Tools', 'SEO інструменти', '2025-11-21 01:25:05'),
(37295, 'uk', 'common', 'Seo Plugins', 'Seo Плагіни', '2025-11-21 01:25:05'),
(37294, 'uk', 'common', 'Select', 'Вибрати', '2025-11-21 01:25:05'),
(37293, 'uk', 'common', 'Search Engine Count', 'Пошукова система Кількість', '2025-11-21 01:25:05'),
(37292, 'uk', 'common', 'Search Engine', 'Пошукова система', '2025-11-21 01:25:05'),
(37291, 'uk', 'common', 'Sample CSV File', 'Sample CSV Файл', '2025-11-21 01:25:05'),
(37289, 'uk', 'common', 'Reports', 'Звіти', '2025-11-21 01:25:05'),
(37290, 'uk', 'common', 'Results', 'Результати', '2025-11-21 01:25:05'),
(37288, 'uk', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA verification Не вдалося', '2025-11-21 01:25:05'),
(37285, 'uk', 'common', 'Range', 'Range', '2025-11-21 01:25:05'),
(37286, 'uk', 'common', 'Rank', 'Ранг', '2025-11-21 01:25:05'),
(37287, 'uk', 'common', 'Rankings', 'Рейтинги', '2025-11-21 01:25:05'),
(37284, 'uk', 'common', 'Profile', 'Профіль', '2025-11-21 01:25:05'),
(37282, 'uk', 'common', 'Pricing', 'Pricing', '2025-11-21 01:25:05'),
(37283, 'uk', 'common', 'Priority', 'Priority', '2025-11-21 01:25:05'),
(37281, 'uk', 'common', 'Price', 'Price', '2025-11-21 01:25:05'),
(37280, 'uk', 'common', 'Powered by', 'Powered by', '2025-11-21 01:25:05'),
(37279, 'uk', 'common', 'Plugins', 'Плагіни', '2025-11-21 01:25:05'),
(37238, 'uk', 'common', 'Errors', 'Errors', '2025-11-21 01:25:05'),
(37239, 'uk', 'common', 'failed', 'Не вдалося', '2025-11-21 01:25:05'),
(37240, 'uk', 'common', 'forum', 'Forum', '2025-11-21 01:25:05'),
(37241, 'uk', 'common', 'Found', 'Found', '2025-11-21 01:25:05'),
(37242, 'uk', 'common', 'General', 'General', '2025-11-21 01:25:05'),
(37243, 'uk', 'common', 'Google Pagerank', 'Google Pagerank', '2025-11-21 01:25:05'),
(37244, 'uk', 'common', 'Hello', 'Hello', '2025-11-21 01:25:05'),
(37245, 'uk', 'common', 'help', 'Допомога', '2025-11-21 01:25:05'),
(37246, 'uk', 'common', 'hidenews', 'Hide Seo Panel News', '2025-11-21 01:25:05'),
(37247, 'uk', 'common', 'Home', 'Головна', '2025-11-21 01:25:05'),
(37248, 'uk', 'common', 'Id', 'Id', '2025-11-21 01:25:05'),
(37249, 'uk', 'common', 'Inactivate', 'Inactivate', '2025-11-21 01:25:05'),
(37250, 'uk', 'common', 'Inactive', 'Неактивний', '2025-11-21 01:25:05'),
(37251, 'uk', 'common', 'Internal error occured', 'Internal Помилка occured', '2025-11-21 01:25:05'),
(37252, 'uk', 'common', 'Invalid characters', 'Недійсний characters', '2025-11-21 01:25:05'),
(37253, 'uk', 'common', 'Invalid code entered', 'Недійсний code entered', '2025-11-21 01:25:05'),
(37254, 'uk', 'common', 'Invalid email address entered', 'Недійсний Електронна пошта address entered', '2025-11-21 01:25:05'),
(37255, 'uk', 'common', 'Invalid Url', 'Недійсний Url', '2025-11-21 01:25:05'),
(37256, 'uk', 'common', 'Invalid value', 'Недійсний Значення', '2025-11-21 01:25:05'),
(37257, 'uk', 'common', 'Keyword', 'Ключове слово', '2025-11-21 01:25:05'),
(37258, 'uk', 'common', 'Keywords', 'Ключові слова', '2025-11-21 01:25:05'),
(37259, 'uk', 'common', 'Keywords Count', 'Ключові слова Кількість', '2025-11-21 01:25:05'),
(37260, 'uk', 'common', 'lang', 'Мова', '2025-11-21 01:25:05'),
(37261, 'uk', 'common', 'Link', 'Посилання', '2025-11-21 01:25:05'),
(37262, 'uk', 'common', 'Logout', 'Вийти', '2025-11-21 01:25:05'),
(37263, 'uk', 'common', 'Metric', 'Metric', '2025-11-21 01:25:05'),
(37264, 'uk', 'common', 'MOZ Rank', 'Moz ранг', '2025-11-21 01:25:05'),
(37265, 'uk', 'common', 'My Account', 'Мій обліковий запис', '2025-11-21 01:25:05'),
(37266, 'uk', 'Common', 'Name', 'Ім''я', '2025-11-21 01:25:05'),
(37267, 'uk', 'common', 'New User Type', 'New Користувач Тип', '2025-11-21 01:25:05'),
(37268, 'uk', 'common', 'No', 'Ні', '2025-11-21 01:25:05'),
(37269, 'uk', 'common', 'No Keywords Found', 'No Ключові слова Found', '2025-11-21 01:25:05'),
(37270, 'uk', 'common', 'No Records Found', 'No Records Found', '2025-11-21 01:25:05'),
(37271, 'uk', 'common', 'noactivetools', 'No Активний SEO інструменти Found!', '2025-11-21 01:25:05'),
(37272, 'uk', 'common', 'nowebsites', 'No Веб-сайти Found', '2025-11-21 01:25:05'),
(37273, 'uk', 'common', 'Number', 'Номер', '2025-11-21 01:25:05'),
(37274, 'uk', 'common', 'Page Authority', 'Авторитет сторінки', '2025-11-21 01:25:05'),
(37275, 'uk', 'common', 'Pagerank', 'Pagerank', '2025-11-21 01:25:05'),
(37276, 'uk', 'common', 'password632', 'The Пароль string should have a length between 6 and 32', '2025-11-21 01:25:05'),
(37277, 'uk', 'common', 'passwordnotmatch', 'The passwords do not match', '2025-11-21 01:25:05'),
(37278, 'uk', 'common', 'Period', 'Period', '2025-11-21 01:25:05'),
(37223, 'uk', 'common', 'copyright', 'Copyright © [year] www.seopanel.org All rights reserved', '2025-11-21 01:25:05'),
(37224, 'uk', 'common', 'Country', 'Країна', '2025-11-21 01:25:05'),
(37225, 'uk', 'common', 'Crawl Meta Data', 'Crawl Meta Data', '2025-11-21 01:25:05'),
(37226, 'uk', 'common', 'Dashboard', 'Панель керування', '2025-11-21 01:25:05'),
(37227, 'uk', 'common', 'Date', 'Дата', '2025-11-21 01:25:05'),
(37228, 'uk', 'common', 'Debug', 'Debug', '2025-11-21 01:25:05'),
(37229, 'uk', 'common', 'Delete', 'Видалити', '2025-11-21 01:25:05'),
(37230, 'uk', 'common', 'Details', 'Деталі', '2025-11-21 01:25:05'),
(37231, 'uk', 'common', 'Directory', 'Каталог', '2025-11-21 01:25:05'),
(37232, 'uk', 'common', 'Domain Authority', 'Авторитет домену', '2025-11-21 01:25:05'),
(37233, 'uk', 'common', 'Donate', 'Donate', '2025-11-21 01:25:05'),
(37234, 'uk', 'common', 'Edit', 'Редагувати', '2025-11-21 01:25:05'),
(37235, 'uk', 'common', 'Edit User Type', 'Редагувати Користувач Тип', '2025-11-21 01:25:05'),
(37236, 'uk', 'common', 'Entry cannot be blank', 'Entry cannot be blank', '2025-11-21 01:25:05'),
(37237, 'uk', 'common', 'entrynotvalid', 'The entry entered doesn''t seem to be Дійсний', '2025-11-21 01:25:05'),
(37209, 'uk', 'button', 'Show Records', 'Show Records', '2025-11-21 01:25:05'),
(37210, 'uk', 'button', 'Skip', 'Skip', '2025-11-21 01:25:05'),
(37211, 'uk', 'button', 'Submit', 'Відправити', '2025-11-21 01:25:05'),
(37212, 'uk', 'common', 'Action', 'Action', '2025-11-21 01:25:05'),
(37213, 'uk', 'common', 'Activate', 'Activate', '2025-11-21 01:25:05'),
(37214, 'uk', 'common', 'Active', 'Активний', '2025-11-21 01:25:05'),
(37215, 'uk', 'common', 'Admin Panel', 'Адміністратор Panel', '2025-11-21 01:25:05'),
(37216, 'uk', 'common', 'Alexa Rank', 'Alexa ранг', '2025-11-21 01:25:05'),
(37217, 'uk', 'common', 'All', 'Всі', '2025-11-21 01:25:05'),
(37218, 'uk', 'common', 'API Token', 'API Token', '2025-11-21 01:25:05'),
(37219, 'uk', 'common', 'Blog', 'Blog', '2025-11-21 01:25:05'),
(37220, 'uk', 'common', 'Category', 'Категорія', '2025-11-21 01:25:05'),
(37221, 'uk', 'common', 'Checked', 'Checked', '2025-11-21 01:25:05'),
(37222, 'uk', 'common', 'contact', 'Контакт', '2025-11-21 01:25:05'),
(37208, 'uk', 'button', 'Show Details', 'Show Деталі', '2025-11-21 01:25:05'),
(37207, 'uk', 'button', 'Search', 'Пошук', '2025-11-21 01:25:05'),
(37206, 'uk', 'button', 'Reload', 'Reload', '2025-11-21 01:25:05'),
(37205, 'uk', 'button', 'Proceed', 'Proceed', '2025-11-21 01:25:05'),
(37204, 'uk', 'button', 'Check Status', 'Check Статус', '2025-11-21 01:25:05'),
(37202, 'uk', 'blog', 'Older Posts', 'Older Posts', '2025-11-21 01:25:05'),
(37203, 'uk', 'button', 'Cancel', 'Скасувати', '2025-11-21 01:25:05'),
(37200, 'uk', 'blog', 'Nothing Found', 'Nothing Found', '2025-11-21 01:25:05'),
(37201, 'uk', 'blog', 'NothingFound_text2', 'Sorry, but nothing matched your Пошук criteria. Будь ласка, спробуйте ще раз with some different Ключові слова.', '2025-11-21 01:25:05'),
(37199, 'uk', 'blog', 'Newer Posts', 'Newer Posts', '2025-11-21 01:25:05'),
(37198, 'uk', 'backlink', 'Saved backlink results of', 'Saved Зворотне посилання Результати of', '2025-11-21 01:25:05'),
(37197, 'uk', 'backlink', 'Domain Backlinks', 'Domain Зворотні посилання', '2025-11-21 01:25:05'),
(37196, 'uk', 'backlink', 'Domain Backlink Count', 'Domain Зворотне посилання Кількість', '2025-11-21 01:25:05'),
(37195, 'uk', 'backlink', 'clickproceedbacklink', 'Enter URL''s <b>One per line</b>. Click on <b>Proceed</b> to check Зворотні посилання.', '2025-11-21 01:25:05'),
(37194, 'uk', 'backlink', 'Backlink Count', 'Зворотне посилання Кількість', '2025-11-21 01:25:05'),
(37192, 'uk', 'api', 'API Guide', 'API Guide', '2025-11-21 01:25:05'),
(37193, 'uk', 'api', 'API Url', 'API Url', '2025-11-21 01:25:05'),
(37191, 'uk', 'analytics', 'view_id_not_found_error', 'Помилка: Аналітика Переглянути ID is not set for Веб-сайт. Редагувати веб-сайт and Оновити Переглянути ID.', '2025-11-21 01:25:05'),
(37189, 'uk', 'analytics', 'Sessions', 'Сесії', '2025-11-21 01:25:05'),
(37190, 'uk', 'analytics', 'Users', 'Користувачі', '2025-11-21 01:25:05'),
(37188, 'uk', 'analytics', 'New Users', 'New Користувачі', '2025-11-21 01:25:05'),
(37186, 'uk', 'analytics', 'Bounce Rate', 'Показник відмов', '2025-11-21 01:25:05'),
(37187, 'uk', 'analytics', 'Goal Completions', 'Goal Completions', '2025-11-21 01:25:05'),
(37185, 'uk', 'analytics', 'Avg. Session Duration', 'Avg. Session Duration', '2025-11-21 01:25:05'),
(27579, 'ko', 'siteauditor', 'Check Score', 'Check 점수', '2025-11-21 00:41:47'),
(27580, 'ko', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will increase the execution time of a project', '2025-11-21 00:41:47'),
(27581, 'ko', 'siteauditor', 'Completed project execution', '완료됨 project execution', '2025-11-21 00:41:47'),
(27582, 'ko', 'siteauditor', 'Crawled', '크롤됨', '2025-11-21 00:41:47'),
(27583, 'ko', 'siteauditor', 'Crawled Pages', '크롤됨 Pages', '2025-11-21 00:41:47'),
(27584, 'ko', 'siteauditor', 'crawledsuccesssfullywaitfornext', '크롤됨 성공적으로! Waiting for crawling 다음 page for', '2025-11-21 00:41:47'),
(27585, 'ko', 'siteauditor', 'Crawling Page', 'Crawling Page', '2025-11-21 00:41:47'),
(27586, 'ko', 'siteauditor', 'Duplicate Description', 'Duplicate 설명', '2025-11-21 00:41:47'),
(27587, 'ko', 'siteauditor', 'Duplicate Keywords', 'Duplicate 키워드', '2025-11-21 00:41:47'),
(27588, 'ko', 'siteauditor', 'Duplicate Title', 'Duplicate 제목', '2025-11-21 00:41:47'),
(27589, 'ko', 'siteauditor', 'Exclude links', 'Exclude links', '2025-11-21 00:41:47'),
(27590, 'ko', 'siteauditor', 'Execute with cron', 'Execute with cron', '2025-11-21 00:41:47'),
(27591, 'ko', 'siteauditor', 'External', 'External', '2025-11-21 00:41:47'),
(27592, 'ko', 'siteauditor', 'External Links', 'External Links', '2025-11-21 00:41:47'),
(27593, 'ko', 'siteauditor', 'Import Project Links', '가져오기 Project Links', '2025-11-21 00:41:47'),
(27594, 'ko', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2025-11-21 00:41:47'),
(27595, 'ko', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links 부터 the 보고서', '2025-11-21 00:41:47'),
(27596, 'ko', 'siteauditor', 'Link Reports', 'Link 보고서', '2025-11-21 00:41:47'),
(27597, 'ko', 'siteauditor', 'Link Title', 'Link 제목', '2025-11-21 00:41:47'),
(27598, 'ko', 'siteauditor', 'Maximum number of pages to be checked', 'Maximum number of pages to be 확인됨', '2025-11-21 00:41:47'),
(27599, 'ko', 'siteauditor', 'Maximum Pages', 'Maximum Pages', '2025-11-21 00:41:47'),
(27600, 'ko', 'siteauditor', 'No active projects found', 'No 활성 projects found', '2025-11-21 00:41:47'),
(27601, 'ko', 'siteauditor', 'Nofollow', 'Nofollow', '2025-11-21 00:41:47'),
(27602, 'ko', 'siteauditor', 'Number of pages is greater than', 'Number of pages is greater than', '2025-11-21 00:41:47'),
(27603, 'ko', 'siteauditor', 'Number of pages should be greater than', 'Number of pages should be greater than', '2025-11-21 00:41:47'),
(27604, 'ko', 'siteauditor', 'Page Details', 'Page 상세정보', '2025-11-21 00:41:47'),
(27605, 'ko', 'siteauditor', 'Page Link', 'Page Link', '2025-11-21 00:41:47'),
(27606, 'ko', 'siteauditor', 'Page Links', 'Page Links', '2025-11-21 00:41:47'),
(27607, 'ko', 'siteauditor', 'Pages Found', 'Pages Found', '2025-11-21 00:41:47'),
(27608, 'ko', 'siteauditor', 'pressescapetostopexecution', 'Press <b>escape</b> key to stop execution of script', '2025-11-21 00:41:47'),
(27609, 'ko', 'siteauditor', 'Project Summary', 'Project Summary', '2025-11-21 00:41:47'),
(27610, 'ko', 'siteauditor', 'Project Url', 'Project URL', '2025-11-21 00:41:47'),
(27611, 'ko', 'siteauditor', 'projectalreadyexist', 'Project for this 웹사이트 already exist', '2025-11-21 00:41:47'),
(27612, 'ko', 'siteauditor', 'Recheck Pages', 'Recheck Pages', '2025-11-21 00:41:47'),
(27613, 'ko', 'siteauditor', 'Report Summary', '보고서 Summary', '2025-11-21 00:41:47'),
(27614, 'ko', 'siteauditor', 'Run Project', 'Run Project', '2025-11-21 00:41:47'),
(27615, 'ko', 'siteauditor', 'should start with', 'should 시작 with', '2025-11-21 00:41:47'),
(27616, 'ko', 'siteauditor', 'Site Auditor Settings', '사이트 감사 설정', '2025-11-21 00:41:47'),
(27617, 'ko', 'siteauditor', 'Store all links found in a page', 'Store 전체 links found in a page', '2025-11-21 00:41:47'),
(27618, 'ko', 'siteauditor', 'The page description length is not between', 'The page 설명 length is not between', '2025-11-21 00:41:47'),
(27619, 'ko', 'siteauditor', 'The page is brocken', 'The page is broken', '2025-11-21 00:41:47'),
(27620, 'ko', 'siteauditor', 'The page is having excellent page authority value', 'The page has excellent 페이지 권한 값', '2025-11-21 00:41:47'),
(27621, 'ko', 'siteauditor', 'The page is having exellent number of backlinks in', 'The page has excellent number of 백링크 in', '2025-11-21 00:41:47'),
(27622, 'ko', 'siteauditor', 'The page is having exellent pagerank', 'The page has excellent pagerank', '2025-11-21 00:41:47'),
(27623, 'ko', 'siteauditor', 'The page is having good number of backlinks in', 'The page has good number of 백링크 in', '2025-11-21 00:41:47'),
(27624, 'ko', 'siteauditor', 'The page is having good page authority value', 'The page has good 페이지 권한 값', '2025-11-21 00:41:47'),
(27625, 'ko', 'siteauditor', 'The page is having good pagerank', 'The page has good pagerank', '2025-11-21 00:41:47'),
(27626, 'ko', 'siteauditor', 'The page is having poor page authority value', 'The page has poor 페이지 권한 값', '2025-11-21 00:41:47'),
(27627, 'ko', 'siteauditor', 'The page is having poor pagerank', 'The page has poor pagerank', '2025-11-21 00:41:47'),
(27628, 'ko', 'siteauditor', 'The page is having very good page authority value', 'The page has very good 페이지 권한 값', '2025-11-21 00:41:47'),
(27629, 'ko', 'siteauditor', 'The page is having very good pagerank', 'The page has very good pagerank', '2025-11-21 00:41:47'),
(27630, 'ko', 'siteauditor', 'The page is not having backlinks in', 'The page does not have 백링크 in', '2025-11-21 00:41:47'),
(27631, 'ko', 'siteauditor', 'The page is not indexed in', 'The page is not indexed in', '2025-11-21 00:41:47'),
(27632, 'ko', 'siteauditor', 'The page keywords length is not between', 'The page 키워드 length is not between', '2025-11-21 00:41:47'),
(27633, 'ko', 'siteauditor', 'The page title length is not between', 'The page 제목 length is not between', '2025-11-21 00:41:47'),
(27634, 'ko', 'siteauditor', 'The total number of links in page is greater than', 'The 합계 number of links in page is greater than\r\n', '2025-11-21 00:41:47'),
(27635, 'ko', 'siteauditor', 'to run project again if you stopped execution', 'to run project again if you stopped execution', '2025-11-21 00:41:47'),
(27636, 'ko', 'siteauditor', 'to view the reports', 'to 보기 the 보고서', '2025-11-21 00:41:47'),
(27637, 'ko', 'siteauditor', 'Total Links', '합계 Links', '2025-11-21 00:41:47'),
(27638, 'ko', 'siteauditor', 'totallinksgreaterallowed', '합계 links will become greater than maximum links allowed to the project', '2025-11-21 00:41:47'),
(27639, 'ko', 'sitemap', 'Change frequency', 'Change frequency', '2025-11-21 00:41:47'),
(27640, 'ko', 'sitemap', 'clickproceedsitemap', '클릭하세요 <b>계속</b> to 생성 사이트맵 file', '2025-11-21 00:41:47'),
(27641, 'ko', 'sitemap', 'Download sitemap file from', '다운로드 사이트맵 file 부터', '2025-11-21 00:41:47'),
(27642, 'ko', 'sitemap', 'Downloaded', 'Downloaded', '2025-11-21 00:41:47'),
(27643, 'ko', 'sitemap', 'Exclude Url', 'Exclude URL', '2025-11-21 00:41:47'),
(27644, 'ko', 'sitemap', 'processtaketime', 'This process will take time according to number of links in your site. 잠시 기다려 주세요 to get 사이트맵 files', '2025-11-21 00:41:47'),
(27645, 'ko', 'sitemap', 'Sitemap Type', '사이트맵 유형', '2025-11-21 00:41:47'),
(27646, 'ko', 'sitemap', 'Submitted', 'Submitted', '2025-11-21 00:41:47'),
(27647, 'ko', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2025-11-21 00:41:47'),
(27648, 'ko', 'socialmedia', 'Click here to get LinkedIn Company Id', '여기를 클릭하세요 to get LinkedIn Company Id', '2025-11-21 00:41:47'),
(27649, 'ko', 'socialmedia', 'Company Id', 'Company Id', '2025-11-21 00:41:47'),
(27650, 'ko', 'socialmedia', 'Edit Social Media Link', '편집 소셜 미디어 Link', '2025-11-21 00:41:47'),
(27651, 'ko', 'socialmedia', 'New Social Media Link', '새로운 소셜 미디어 Link', '2025-11-21 00:41:47'),
(27652, 'ko', 'socialmedia', 'Your social media link count already reached the limit', 'Your 소셜 미디어 link 수 already reached the limit', '2025-11-21 00:41:47'),
(27653, 'ko', 'subscription', 'Access Type', 'Access 유형', '2025-11-21 00:41:47'),
(27654, 'ko', 'subscription', 'account-expired', 'Your 계정 expired. Please renew your 구독.', '2025-11-21 00:41:47'),
(27655, 'ko', 'subscription', 'Amount', 'Amount', '2025-11-21 00:41:47'),
(27656, 'ko', 'subscription', 'click-activate-pay-plugin', '여기를 클릭하세요 to 활성화 payment 플러그인', '2025-11-21 00:41:47'),
(27657, 'ko', 'subscription', 'Currency', 'Currency', '2025-11-21 00:41:47'),
(27658, 'ko', 'subscription', 'Directory Submit Daily Limit', 'Daily 디렉토리 제출 Limit', '2025-11-21 00:41:47'),
(27659, 'ko', 'subscription', 'Directory Submit Limit', '디렉토리 제출 Limit', '2025-11-21 00:41:47'),
(27660, 'ko', 'subscription', 'Edit Email Template', '편집 이메일 Template', '2025-11-21 00:41:47'),
(27661, 'ko', 'subscription', 'Edit Payment Gateway', '편집 Payment Gateway', '2025-11-21 00:41:47'),
(27662, 'ko', 'subscription', 'Email Template Manager', '이메일 Template 관리자', '2025-11-21 00:41:47'),
(27663, 'ko', 'subscription', 'enable_email_activation', 'Enable 이메일 Activation', '2025-11-21 00:41:47'),
(27664, 'ko', 'subscription', 'free_trial_period', 'Free Trial Period', '2025-11-21 00:41:47'),
(27665, 'ko', 'subscription', 'infinite_limit_text', '<b>Note</b>: Enter -1 for infinite limit', '2025-11-21 00:41:47'),
(27666, 'ko', 'subscription', 'internal-error-payment', 'Internal 오류 occured during payment processing.', '2025-11-21 00:41:47'),
(27667, 'ko', 'subscription', 'Keyword Limit', '키워드 Limit', '2025-11-21 00:41:47'),
(27668, 'ko', 'subscription', 'Order Id', 'Order Id', '2025-11-21 00:41:47'),
(27669, 'ko', 'subscription', 'Orders', 'Orders', '2025-11-21 00:41:47'),
(27670, 'ko', 'subscription', 'Paid By', 'Paid By', '2025-11-21 00:41:47'),
(27671, 'ko', 'subscription', 'Payment Gateway Manager', 'Payment Gateway 관리자', '2025-11-21 00:41:47'),
(27672, 'ko', 'subscription', 'Payment Method', 'Payment Method', '2025-11-21 00:41:47'),
(27673, 'ko', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2025-11-21 00:41:47'),
(27674, 'ko', 'subscription', 'Plugin Access Settings', '플러그인 Access 설정', '2025-11-21 00:41:47'),
(27675, 'ko', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business 이메일', '2025-11-21 00:41:47'),
(27676, 'ko', 'subscription', 'PP_TOKEN', 'Paypal Token', '2025-11-21 00:41:47'),
(27677, 'ko', 'subscription', 'Quantity', 'Quantity', '2025-11-21 00:41:47'),
(27678, 'ko', 'subscription', 'Renew Subscription', 'Renew 구독', '2025-11-21 00:41:47'),
(27679, 'ko', 'subscription', 'Review Link Count', '리뷰 Link 수', '2025-11-21 00:41:47'),
(27680, 'ko', 'subscription', 'Sandbox', 'Sandbox', '2025-11-21 00:41:47'),
(27681, 'ko', 'subscription', 'Seo Tools Access Settings', 'SEO 도구 Access 설정', '2025-11-21 00:41:47'),
(27682, 'ko', 'subscription', 'site_auditor_max_page_limit', '사이트 감사 Maximum Page Limit', '2025-11-21 00:41:47'),
(27683, 'ko', 'subscription', 'Social Media Link Count', '소셜 미디어 Link 수', '2025-11-21 00:41:47'),
(27684, 'ko', 'subscription', 'SP_PAYMENT_PLUGIN', 'Default Payment 플러그인', '2025-11-21 00:41:47'),
(27685, 'ko', 'subscription', 'Subscribe', '구독하기', '2025-11-21 00:41:47'),
(27686, 'ko', 'subscription', 'Subscription', '구독', '2025-11-21 00:41:47'),
(27687, 'ko', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Notification(After)', '2025-11-21 00:41:47'),
(27688, 'ko', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2025-11-21 00:41:47'),
(27689, 'ko', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2025-11-21 00:41:47'),
(27690, 'ko', 'subscription', 'Term', 'Term', '2025-11-21 00:41:47'),
(27691, 'ko', 'subscription', 'total_count_greater_account_limit', '합계 수 is greater than 계정 limit - [limit]', '2025-11-21 00:41:47'),
(27692, 'ko', 'subscription', 'total_count_greater_account_limit_dir_sub', '디렉토리 제출 수 is greater than 계정 limit - [limit]', '2025-11-21 00:41:47'),
(27693, 'ko', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', '디렉토리 제출 수 is greater than daily 계정 limit - [limit]', '2025-11-21 00:41:47'),
(27694, 'ko', 'subscription', 'Transaction Id', 'Transaction Id', '2025-11-21 00:41:47'),
(27695, 'ko', 'subscription', 'Transaction Log', 'Transaction Log', '2025-11-21 00:41:47'),
(27696, 'ko', 'subscription', 'transaction-success', 'Your transaction processed 성공적으로.', '2025-11-21 00:41:47'),
(27697, 'ko', 'subscription', 'View Order', '보기 Order', '2025-11-21 00:41:47'),
(27698, 'ko', 'subscription', 'Website Limit', '웹사이트 Limit', '2025-11-21 00:41:47'),
(27699, 'ko', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2025-11-21 00:41:47'),
(27700, 'ko', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel 전체 플러그인 도구 kit</h1> \r\n <p>\r\n It includes most of the 플러그인 developed by seo panel team for just <font class="성공 bold" size="14">$160</font> includes <b>Membership 구독</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/플러그인/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local 검색 엔진 Package</h1> \r\n <p>\r\n 추가 <b>local 검색 엔진 domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>키워드 위치 확인 도구</b>, to track your site perfomance locally.\r\n To get local 검색 엔진 package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">기부</a> $10 or more to improve the 기능 of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">연락처 us</a> to provide us required 검색 엔진 domain 목록.\r\n <br><br> \r\n Also to 추가 <b>새로운 검색 엔진(eg:baidu.com)</b> to your seo panel 키워드 위치 확인 도구, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">연락처 us</a> or 열기 a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to 연락처 us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>SEO 패널 플러그인</h1> \r\n <p>\r\n 추가 <b>SEO 플러그인</b> to your seo panel to <b>extend the 기능</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">SEO 패널 플러그인</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> SEO 플러그인 for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">제출</a> your seo 플러그인 to seo panel and we will <b>publish</b> it in our 웹사이트 after our <b>리뷰</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get SEO 패널 플러그인</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>연락처 Us</h1> \r\n <p>\r\n 연락처 us for any questions about <b>seo panel 도구,플러그인 and 기능 etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to 연락처 us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> 부터 seo panel team to setup the <b>seo panel 도구,플러그인 and 기능</b>. Eg: To set up cron for 키워드 위치 확인 도구.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to 생성 a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>보고서 Bugs</h1> \r\n <p>\r\n 보고서 <b>bugs</b> about <b>seo panel 도구,플러그인 and 기능 etc</b> by using below link. \r\n please 도움말 us to improve the 기능 in 다음 versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to 보고서 bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2025-11-21 00:41:47'),
(27701, 'ko', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel 온라인 Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel 도움말 Guide</h1> \r\n <p>\r\n You can 보기 the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>도움말 guide</b>, it contains the <b>documentation</b> for the seo panel 도구,플러그인 and related 기능.\r\n <br>It is the best place in internet to <b>get 도움말</b> about seo panel. We hope that you <b>contribute</b> to the seo panel 도움말 guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel 도움말 guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel 포럼</h1> \r\n <p>\r\n A place to discuss about world''s 처음 열기 source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your 웹사이트. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel 포럼</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2025-11-21 00:41:47'),
(27702, 'ko', 'support', 'support_cont3', '<fieldset>\r\n<legend>기부 to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>기부 to Seo Panel - 처음 열기 source seo control panel in the world</h1> \r\n <p>\r\n <b>기부</b> to seo panel to support 처음 열기 source seo control panel in the world.\r\n We are planning to <b>추가 and improve</b> 기능 of seo panel in future. \r\n <br>With 전체 your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please 기부 some amount to seo panel team.\r\n <br>We will <b>publish</b> your 이름 and site 정보 in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to 기부 to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2025-11-21 00:41:47'),
(27703, 'ko', 'theme', 'Download Seo Panel Themes', '다운로드 Seo Panel Themes', '2025-11-21 00:41:47'),
(27704, 'ko', 'user', 'Edit User', '사용자 편집', '2025-11-21 00:41:47'),
(27705, 'ko', 'user', 'Expiry Date', 'Expiry 날짜', '2025-11-21 00:41:47'),
(27706, 'ko', 'user', 'Saved My Profile Details', '저장됨 My 프로필 상세정보', '2025-11-21 00:41:47'),
(27707, 'ko', 'webmaster', 'Average Position', 'Average 위치', '2025-11-21 00:41:47'),
(27708, 'ko', 'webmaster', 'Click here to connect to your google account', '여기를 클릭하세요 to connect to your google 계정', '2025-11-21 00:41:47'),
(27709, 'ko', 'webmaster', 'Error: Google api connection failed', '오류: Google api connection 실패', '2025-11-21 00:41:47');
INSERT INTO `texts` VALUES
(27710, 'ko', 'website', 'Add to Webmaster Tools', '추가 to 웹마스터 도구', '2025-11-21 00:41:47'),
(27711, 'ko', 'website', 'Click here to get Google Analytics View Id', '여기를 클릭하세요 to get Google 분석 보기 Id', '2025-11-21 00:41:47'),
(27712, 'ko', 'website', 'Edit Website', '웹사이트 편집', '2025-11-21 00:41:47'),
(27713, 'ko', 'website', 'Google Analytics Property', 'Google 분석 Property', '2025-11-21 00:41:47'),
(27714, 'ko', 'website', 'Google Analytics View Id', 'Google 분석 보기 Id', '2025-11-21 00:41:47'),
(27715, 'ko', 'website', 'Please enter CSV file', 'Please enter CSV file', '2025-11-21 00:41:47'),
(27716, 'ko', 'website', 'plscrtwebsite', 'Please 생성 a 웹사이트 before 시작 to using SEO 도구 and SEO 플러그인.', '2025-11-21 00:41:47'),
(27717, 'ko', 'website', 'Sitemap successfully added to webmaster tools', '사이트맵 성공적으로 추가됨 to 웹마스터 도구', '2025-11-21 00:41:47'),
(27718, 'ko', 'website', 'Successfully deleted sitemap from webmaster tools', '성공적으로 삭제됨 사이트맵 부터 웹마스터 도구', '2025-11-21 00:41:47'),
(27719, 'ko', 'website', 'Successfully imported following websites', '성공적으로 imported following 웹사이트', '2025-11-21 00:41:47'),
(27720, 'ko', 'website', 'Successfully sync sitemaps from webmaster tools', '성공적으로 sync sitemaps 부터 웹마스터 도구', '2025-11-21 00:41:47'),
(27721, 'ko', 'website', 'Sync Google Analytics Properties', 'Sync Google 분석 Properties', '2025-11-21 00:41:47'),
(27722, 'ko', 'website', 'User Type already exist', '사용자 유형 already exist', '2025-11-21 00:41:47'),
(27723, 'ko', 'website', 'Website already exist', '웹사이트 already exist', '2025-11-21 00:41:47'),
(27724, 'ko', 'website', 'Website CSV File', '웹사이트 CSV File', '2025-11-21 00:41:47'),
(27725, 'ko', 'website', 'Website successfully added to webmaster tools', '웹사이트 성공적으로 추가됨 to 웹마스터 도구', '2025-11-21 00:41:47'),
(27726, 'ko', 'website', 'You can add only websitecount websites more', 'You can 추가 only [websitecount] 웹사이트 for this 사용자!', '2025-11-21 00:41:47'),
(27727, 'ko', 'website', 'Your website count already reached the limit', '웹사이트 수 already reached the limit for this 사용자!', '2025-11-21 00:41:47'),
(27728, 'ko', 'website', 'yourwebalreday', 'your 웹사이트 if you have already 생성됨 one.', '2025-11-21 00:41:47'),
(28254, 'hi', 'seotools', 'Import Project Links', 'आयात करें Project Links', '2025-11-21 00:47:07'),
(28255, 'hi', 'seotools', 'Keyword Position Summary', 'मुख्य शब्द स्थिति Summary', '2025-11-21 00:47:07'),
(28256, 'hi', 'seotools', 'Keyword Search Reports', 'मुख्य शब्द खोजें रिपोर्ट', '2025-11-21 00:47:07'),
(28257, 'hi', 'seotools', 'Keyword Search Summary', 'मुख्य शब्द खोजें Summary', '2025-11-21 00:47:07'),
(28258, 'hi', 'seotools', 'keyword-position-checker', 'मुख्य शब्द स्थिति जांचकर्ता', '2025-11-21 00:47:07'),
(28259, 'hi', 'seotools', 'Keywords Manager', 'मुख्य शब्द प्रबंधक', '2025-11-21 00:47:07'),
(28260, 'hi', 'seotools', 'note_report_generation', 'We recommend to use cron jobs for रिपोर्ट generation.\r\nThis कार्रवाई may cause captcha in खोज इंजन परिणाम.', '2025-11-21 00:47:07'),
(28261, 'hi', 'seotools', 'pagespeed', 'PageSpeed Insights', '2025-11-21 00:47:07'),
(28262, 'hi', 'seotools', 'PageSpeed Reports', 'PageSpeed रिपोर्ट', '2025-11-21 00:47:07'),
(28263, 'hi', 'seotools', 'Quick Backlinks Checker', 'Quick बैकलिंक जांचकर्ता', '2025-11-21 00:47:07'),
(28264, 'hi', 'seotools', 'Quick Checker', 'Quick जांचकर्ता', '2025-11-21 00:47:07'),
(28265, 'hi', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed जांचकर्ता', '2025-11-21 00:47:07'),
(28266, 'hi', 'seotools', 'Quick Position Checker', 'Quick स्थिति जांचकर्ता', '2025-11-21 00:47:07'),
(28267, 'hi', 'seotools', 'Quick Rank Checker', 'Quick रैंक जांचकर्ता', '2025-11-21 00:47:07'),
(28268, 'hi', 'seotools', 'Quick Saturation Checker', 'Quick संतृप्ति जांचकर्ता', '2025-11-21 00:47:07'),
(28269, 'hi', 'seotools', 'Rank Reports', 'रैंक रिपोर्ट', '2025-11-21 00:47:07'),
(28270, 'hi', 'seotools', 'rank-checker', 'रैंक जांचकर्ता', '2025-11-21 00:47:07'),
(28271, 'hi', 'seotools', 'Review Links', 'समीक्षा Links', '2025-11-21 00:47:07'),
(28272, 'hi', 'seotools', 'Review Report Summary', 'समीक्षा रिपोर्ट Summary', '2025-11-21 00:47:07'),
(28273, 'hi', 'seotools', 'review-manager', 'समीक्षा प्रबंधक', '2025-11-21 00:47:07'),
(28274, 'hi', 'seotools', 'Saturation Reports', 'संतृप्ति रिपोर्ट', '2025-11-21 00:47:07'),
(28275, 'hi', 'seotools', 'saturation-checker', 'खोज इंजन संतृप्ति', '2025-11-21 00:47:07'),
(28276, 'hi', 'seotools', 'site-auditor', 'साइट ऑडिटर', '2025-11-21 00:47:07'),
(28277, 'hi', 'seotools', 'Sitemap Reports Summary', 'साइटमैप रिपोर्ट Summary', '2025-11-21 00:47:07'),
(28278, 'hi', 'seotools', 'sitemap-generator', 'साइटमैप Generator', '2025-11-21 00:47:07'),
(28279, 'hi', 'seotools', 'Skipped Directories', 'Skipped Directories', '2025-11-21 00:47:07'),
(28280, 'hi', 'seotools', 'sm-checker', 'सोशल मीडिया जांचकर्ता', '2025-11-21 00:47:07'),
(28281, 'hi', 'seotools', 'Social Media Links', 'सोशल मीडिया Links', '2025-11-21 00:47:07'),
(28282, 'hi', 'seotools', 'Social Media Report Summary', 'सोशल मीडिया रिपोर्ट Summary', '2025-11-21 00:47:07'),
(28283, 'hi', 'seotools', 'Submission Reports', 'सबमिशन रिपोर्ट', '2025-11-21 00:47:07'),
(28284, 'hi', 'seotools', 'User Access', 'उपयोगकर्ता Access', '2025-11-21 00:47:07'),
(28285, 'hi', 'seotools', 'web-analytics', 'वेबसाइट विश्लेषण', '2025-11-21 00:47:07'),
(28286, 'hi', 'seotools', 'webmaster-tools', 'वेबमास्टर उपकरण', '2025-11-21 00:47:07'),
(28287, 'hi', 'seotools', 'Website Analytics Summary', 'वेबसाइट विश्लेषण Summary', '2025-11-21 00:47:07'),
(28288, 'hi', 'seotools', 'Website Search Reports', 'वेबसाइट खोजें रिपोर्ट', '2025-11-21 00:47:07'),
(28289, 'hi', 'seotools', 'Website Search Summary', 'वेबसाइट खोजें Summary', '2025-11-21 00:47:07'),
(28290, 'hi', 'settings', 'allsettingssaved', 'सभी सेटिंग्स सहेजा गया सफलतापूर्वक!', '2025-11-21 00:47:07'),
(28291, 'hi', 'settings', 'API_SECRET', 'API Secret', '2025-11-21 00:47:07'),
(28292, 'hi', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2025-11-21 00:47:07'),
(28293, 'hi', 'settings', 'Check for Updates', 'Check for Updates', '2025-11-21 00:47:07'),
(28294, 'hi', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Maximum number of proxies used in single execution', '2025-11-21 00:47:07'),
(28295, 'hi', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another प्रॉक्सी When Crawling विफल', '2025-11-21 00:47:07'),
(28296, 'hi', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>दान करें $100</b> and become a <b>sponsor</b> of Seo Panel.', '2025-11-21 00:47:07'),
(28297, 'hi', 'settings', 'click-to-get-dataforseo-account', 'यहां क्लिक करें to get Free DataForSEO खाता', '2025-11-21 00:47:07'),
(28298, 'hi', 'settings', 'click-to-get-google-api-client-id', 'यहां क्लिक करें to get Google API Client Id', '2025-11-21 00:47:07'),
(28299, 'hi', 'settings', 'click-to-get-google-api-key', 'यहां क्लिक करें to get Google API Key', '2025-11-21 00:47:07'),
(28300, 'hi', 'settings', 'click-to-get-moz-account', 'यहां क्लिक करें to get MOZ खाता', '2025-11-21 00:47:07'),
(28301, 'hi', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP प्रॉक्सी Tunnel', '2025-11-21 00:47:07'),
(28302, 'hi', 'settings', 'entersmtpdetails', 'Please enter SMTP mail configuration', '2025-11-21 00:47:07'),
(28303, 'hi', 'settings', 'getallpluginfree', 'Also get सभी <b>प्लगइन्स</b> we develop for <b>Free!</b>', '2025-11-21 00:47:07'),
(28304, 'hi', 'settings', 'Please update google settings to get the results', 'Please अपडेट करें google सेटिंग्स to get the परिणाम', '2025-11-21 00:47:07'),
(28305, 'hi', 'settings', 'Please update MOZ settings to get complete results', 'Please अपडेट करें MOZ सेटिंग्स to get complete परिणाम', '2025-11-21 00:47:07'),
(28306, 'hi', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate प्रॉक्सी When Crawling विफल', '2025-11-21 00:47:07'),
(28307, 'hi', 'settings', 'SA_CRAWL_DELAY_TIME', 'साइट ऑडिटर क्रॉल delay between each pages', '2025-11-21 00:47:07'),
(28308, 'hi', 'settings', 'SA_MAX_NO_PAGES', 'Maximum number of pages allowed per वेबसाइट', '2025-11-21 00:47:07'),
(28309, 'hi', 'settings', 'Send Email', 'Send ईमेल', '2025-11-21 00:47:07'),
(28310, 'hi', 'settings', 'seopanel_description', 'A complete free control panel for managing खोज इंजन optimization of your वेबसाइटें. It containing lots of hot SEO उपकरण to increase and track the performace your वेबसाइटें. Its an खोलें source software and also you can develop your own SEO प्लगइन्स for seo panel.', '2025-11-21 00:47:07'),
(28311, 'hi', 'settings', 'seopanel_title', 'Seo Panel: World''s पहला खोलें source seo control panel for managing multiple web sites', '2025-11-21 00:47:07'),
(28312, 'hi', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow उपयोगकर्ता to schedule रिपोर्ट', '2025-11-21 00:47:07'),
(28313, 'hi', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2025-11-21 00:47:07'),
(28314, 'hi', 'settings', 'SP_COMPANY_NAME', 'Company नाम', '2025-11-21 00:47:07'),
(28315, 'hi', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider क्रॉल(seconds)', '2025-11-21 00:47:07'),
(28316, 'hi', 'settings', 'SP_DEFAULTLANG', 'Default भाषा', '2025-11-21 00:47:07'),
(28317, 'hi', 'settings', 'SP_DESCRIPTION', 'Seo Panel विवरण', '2025-11-21 00:47:07'),
(28318, 'hi', 'settings', 'SP_DFS_API_LOGIN', 'API लॉगिन', '2025-11-21 00:47:07'),
(28319, 'hi', 'settings', 'SP_DFS_API_PASSWORD', 'API पासवर्ड', '2025-11-21 00:47:07'),
(28320, 'hi', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2025-11-21 00:47:07'),
(28321, 'hi', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2025-11-21 00:47:07'),
(28322, 'hi', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for बैकलिंक and संतृप्ति जांचकर्ता', '2025-11-21 00:47:07'),
(28323, 'hi', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2025-11-21 00:47:07'),
(28324, 'hi', 'settings', 'SP_ENABLE_PROXY', 'Enable प्रॉक्सी', '2025-11-21 00:47:07'),
(28325, 'hi', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable प्रॉक्सी for Google API', '2025-11-21 00:47:07'),
(28326, 'hi', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2025-11-21 00:47:07'),
(28327, 'hi', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google विश्लेषण ट्रैकिंग Code', '2025-11-21 00:47:07'),
(28328, 'hi', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2025-11-21 00:47:07'),
(28329, 'hi', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2025-11-21 00:47:07'),
(28330, 'hi', 'settings', 'SP_GOOGLE_API_KEY', 'Google API Key', '2025-11-21 00:47:07'),
(28331, 'hi', 'settings', 'SP_HOTLINKING', 'Image hotlink protection सक्षम', '2025-11-21 00:47:07'),
(28332, 'hi', 'settings', 'SP_KEYWORDS', 'Seo Panel मुख्य शब्द', '2025-11-21 00:47:07'),
(28333, 'hi', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2025-11-21 00:47:07'),
(28334, 'hi', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2025-11-21 00:47:07'),
(28335, 'hi', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2025-11-21 00:47:07'),
(28336, 'hi', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Number of मुख्य शब्द needs to be जांच की गई in each cron execution', '2025-11-21 00:47:07'),
(28337, 'hi', 'settings', 'SP_PAGINGNO', 'Number of entries per page', '2025-11-21 00:47:07'),
(28338, 'hi', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2025-11-21 00:47:07'),
(28339, 'hi', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2025-11-21 00:47:07'),
(28340, 'hi', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'क्रॉल relative links in a page', '2025-11-21 00:47:07'),
(28341, 'hi', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of ईमेल notifications for रिपोर्ट', '2025-11-21 00:47:07'),
(28342, 'hi', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send custom header with curl request', '2025-11-21 00:47:07'),
(28343, 'hi', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2025-11-21 00:47:07'),
(28344, 'hi', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2025-11-21 00:47:07'),
(28345, 'hi', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2025-11-21 00:47:07'),
(28346, 'hi', 'settings', 'SP_SMTP_PASSWORD', 'SMTP पासवर्ड', '2025-11-21 00:47:07'),
(28347, 'hi', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2025-11-21 00:47:07'),
(28348, 'hi', 'settings', 'SP_SMTP_USERNAME', 'SMTP उपयोगकर्ता नाम', '2025-11-21 00:47:07'),
(28349, 'hi', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Minimum Allowed रिपोर्टिंग Interval', '2025-11-21 00:47:07'),
(28350, 'hi', 'settings', 'SP_TIME_ZONE', 'Time Zone', '2025-11-21 00:47:07'),
(28351, 'hi', 'settings', 'SP_TITLE', 'Seo Panel शीर्षक', '2025-11-21 00:47:07'),
(28352, 'hi', 'settings', 'SP_USER_AGENT', 'उपयोगकर्ता agent', '2025-11-21 00:47:07'),
(28353, 'hi', 'settings', 'SP_USER_GEN_REPORT', 'Allow उपयोगकर्ता to बनाएं रिपोर्ट', '2025-11-21 00:47:07'),
(28354, 'hi', 'settings', 'SP_USER_REGISTRATION', 'उपयोगकर्ता पंजीकरण interface', '2025-11-21 00:47:07'),
(28355, 'hi', 'settings', 'syssettingssaved', 'सिस्टम सेटिंग्स सहेजा गया सफलतापूर्वक!', '2025-11-21 00:47:07'),
(28356, 'hi', 'settings', 'Verify connection', 'Verify connection', '2025-11-21 00:47:07'),
(28357, 'hi', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up to तारीख. <br>Please डाउनलोड करें नया version', '2025-11-21 00:47:07'),
(28358, 'hi', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up to तारीख.', '2025-11-21 00:47:07'),
(28359, 'hi', 'siteauditor', 'Anchor', 'Anchor', '2025-11-21 00:47:07'),
(28360, 'hi', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded से रिपोर्ट', '2025-11-21 00:47:07'),
(28361, 'hi', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded से साइटमैप', '2025-11-21 00:47:07'),
(28362, 'hi', 'siteauditor', 'Check backlinks of pages', 'बैकलिंक जांचें of pages', '2025-11-21 00:47:07'),
(28363, 'hi', 'siteauditor', 'Check broken links in a page', 'Check broken links in a page', '2025-11-21 00:47:07'),
(28364, 'hi', 'siteauditor', 'Check google pagerank of pages', 'Check google pagerank of pages', '2025-11-21 00:47:07'),
(28365, 'hi', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of pages', '2025-11-21 00:47:07'),
(28366, 'hi', 'siteauditor', 'Check pages indexed or not', 'Check pages indexed or not', '2025-11-21 00:47:07'),
(28367, 'hi', 'siteauditor', 'Check Score', 'Check स्कोर', '2025-11-21 00:47:07'),
(28368, 'hi', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will increase the execution time of a project', '2025-11-21 00:47:07'),
(28369, 'hi', 'siteauditor', 'Completed project execution', 'पूर्ण project execution', '2025-11-21 00:47:07'),
(28370, 'hi', 'siteauditor', 'Crawled', 'क्रॉल किया गया', '2025-11-21 00:47:07'),
(28371, 'hi', 'siteauditor', 'Crawled Pages', 'क्रॉल किया गया Pages', '2025-11-21 00:47:07'),
(28372, 'hi', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'क्रॉल किया गया सफलतापूर्वक! Waiting for crawling अगला page for', '2025-11-21 00:47:07'),
(28373, 'hi', 'siteauditor', 'Crawling Page', 'Crawling Page', '2025-11-21 00:47:07'),
(28374, 'hi', 'siteauditor', 'Duplicate Description', 'Duplicate विवरण', '2025-11-21 00:47:07'),
(28375, 'hi', 'siteauditor', 'Duplicate Keywords', 'Duplicate मुख्य शब्द', '2025-11-21 00:47:07'),
(28376, 'hi', 'siteauditor', 'Duplicate Title', 'Duplicate शीर्षक', '2025-11-21 00:47:07'),
(28377, 'hi', 'siteauditor', 'Exclude links', 'Exclude links', '2025-11-21 00:47:07'),
(28378, 'hi', 'siteauditor', 'Execute with cron', 'Execute with cron', '2025-11-21 00:47:07'),
(28379, 'hi', 'siteauditor', 'External', 'External', '2025-11-21 00:47:07'),
(28380, 'hi', 'siteauditor', 'External Links', 'External Links', '2025-11-21 00:47:07'),
(28381, 'hi', 'siteauditor', 'Import Project Links', 'आयात करें Project Links', '2025-11-21 00:47:07'),
(28382, 'hi', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2025-11-21 00:47:07'),
(28383, 'hi', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links से the रिपोर्ट', '2025-11-21 00:47:07'),
(28384, 'hi', 'siteauditor', 'Link Reports', 'Link रिपोर्ट', '2025-11-21 00:47:07'),
(28385, 'hi', 'siteauditor', 'Link Title', 'Link शीर्षक', '2025-11-21 00:47:07'),
(28386, 'hi', 'siteauditor', 'Maximum number of pages to be checked', 'Maximum number of pages to be जांच की गई', '2025-11-21 00:47:07'),
(28387, 'hi', 'siteauditor', 'Maximum Pages', 'Maximum Pages', '2025-11-21 00:47:07'),
(28388, 'hi', 'siteauditor', 'No active projects found', 'No सक्रिय projects found', '2025-11-21 00:47:07'),
(28389, 'hi', 'siteauditor', 'Nofollow', 'Nofollow', '2025-11-21 00:47:07'),
(28390, 'hi', 'siteauditor', 'Number of pages is greater than', 'Number of pages is greater than', '2025-11-21 00:47:07'),
(28391, 'hi', 'siteauditor', 'Number of pages should be greater than', 'Number of pages should be greater than', '2025-11-21 00:47:07'),
(28392, 'hi', 'siteauditor', 'Page Details', 'Page विवरण', '2025-11-21 00:47:07'),
(28393, 'hi', 'siteauditor', 'Page Link', 'Page Link', '2025-11-21 00:47:07'),
(28394, 'hi', 'siteauditor', 'Page Links', 'Page Links', '2025-11-21 00:47:07'),
(28395, 'hi', 'siteauditor', 'Pages Found', 'Pages Found', '2025-11-21 00:47:07'),
(28396, 'hi', 'siteauditor', 'pressescapetostopexecution', 'Press <b>escape</b> key to stop execution of script', '2025-11-21 00:47:07'),
(28397, 'hi', 'siteauditor', 'Project Summary', 'Project Summary', '2025-11-21 00:47:07'),
(28398, 'hi', 'siteauditor', 'Project Url', 'Project URL', '2025-11-21 00:47:07'),
(28399, 'hi', 'siteauditor', 'projectalreadyexist', 'Project for this वेबसाइट already exist', '2025-11-21 00:47:07'),
(28400, 'hi', 'siteauditor', 'Recheck Pages', 'Recheck Pages', '2025-11-21 00:47:07'),
(28401, 'hi', 'siteauditor', 'Report Summary', 'रिपोर्ट Summary', '2025-11-21 00:47:07'),
(28402, 'hi', 'siteauditor', 'Run Project', 'Run Project', '2025-11-21 00:47:07'),
(28403, 'hi', 'siteauditor', 'should start with', 'should शुरू with', '2025-11-21 00:47:07'),
(28404, 'hi', 'siteauditor', 'Site Auditor Settings', 'साइट ऑडिटर सेटिंग्स', '2025-11-21 00:47:07'),
(28405, 'hi', 'siteauditor', 'Store all links found in a page', 'Store सभी links found in a page', '2025-11-21 00:47:07'),
(28406, 'hi', 'siteauditor', 'The page description length is not between', 'The page विवरण length is not between', '2025-11-21 00:47:07'),
(28407, 'hi', 'siteauditor', 'The page is brocken', 'The page is broken', '2025-11-21 00:47:07'),
(28408, 'hi', 'siteauditor', 'The page is having excellent page authority value', 'The page has excellent पेज अथॉरिटी मूल्य', '2025-11-21 00:47:07'),
(28409, 'hi', 'siteauditor', 'The page is having exellent number of backlinks in', 'The page has excellent number of बैकलिंक in', '2025-11-21 00:47:07'),
(28410, 'hi', 'siteauditor', 'The page is having exellent pagerank', 'The page has excellent pagerank', '2025-11-21 00:47:07'),
(28411, 'hi', 'siteauditor', 'The page is having good number of backlinks in', 'The page has good number of बैकलिंक in', '2025-11-21 00:47:07'),
(28412, 'hi', 'siteauditor', 'The page is having good page authority value', 'The page has good पेज अथॉरिटी मूल्य', '2025-11-21 00:47:07'),
(28413, 'hi', 'siteauditor', 'The page is having good pagerank', 'The page has good pagerank', '2025-11-21 00:47:07'),
(28414, 'hi', 'siteauditor', 'The page is having poor page authority value', 'The page has poor पेज अथॉरिटी मूल्य', '2025-11-21 00:47:07'),
(28415, 'hi', 'siteauditor', 'The page is having poor pagerank', 'The page has poor pagerank', '2025-11-21 00:47:07'),
(28416, 'hi', 'siteauditor', 'The page is having very good page authority value', 'The page has very good पेज अथॉरिटी मूल्य', '2025-11-21 00:47:07'),
(28417, 'hi', 'siteauditor', 'The page is having very good pagerank', 'The page has very good pagerank', '2025-11-21 00:47:07'),
(28418, 'hi', 'siteauditor', 'The page is not having backlinks in', 'The page does not have बैकलिंक in', '2025-11-21 00:47:07'),
(28419, 'hi', 'siteauditor', 'The page is not indexed in', 'The page is not indexed in', '2025-11-21 00:47:07'),
(28420, 'hi', 'siteauditor', 'The page keywords length is not between', 'The page मुख्य शब्द length is not between', '2025-11-21 00:47:07'),
(28421, 'hi', 'siteauditor', 'The page title length is not between', 'The page शीर्षक length is not between', '2025-11-21 00:47:07'),
(28422, 'hi', 'siteauditor', 'The total number of links in page is greater than', 'The कुल number of links in page is greater than\r\n', '2025-11-21 00:47:07'),
(28423, 'hi', 'siteauditor', 'to run project again if you stopped execution', 'to run project again if you stopped execution', '2025-11-21 00:47:07'),
(28424, 'hi', 'siteauditor', 'to view the reports', 'to देखें the रिपोर्ट', '2025-11-21 00:47:07'),
(28425, 'hi', 'siteauditor', 'Total Links', 'कुल Links', '2025-11-21 00:47:07'),
(28426, 'hi', 'siteauditor', 'totallinksgreaterallowed', 'कुल links will become greater than maximum links allowed to the project', '2025-11-21 00:47:07'),
(28427, 'hi', 'sitemap', 'Change frequency', 'Change frequency', '2025-11-21 00:47:07'),
(28428, 'hi', 'sitemap', 'clickproceedsitemap', 'क्लिक करें <b>आगे बढ़ें</b> to बनाएं साइटमैप file', '2025-11-21 00:47:07'),
(28429, 'hi', 'sitemap', 'Download sitemap file from', 'डाउनलोड करें साइटमैप file से', '2025-11-21 00:47:07'),
(28430, 'hi', 'sitemap', 'Downloaded', 'Downloaded', '2025-11-21 00:47:07'),
(28431, 'hi', 'sitemap', 'Exclude Url', 'Exclude URL', '2025-11-21 00:47:07'),
(28432, 'hi', 'sitemap', 'processtaketime', 'This process will take time according to number of links in your site. कृपया प्रतीक्षा करें to get साइटमैप files', '2025-11-21 00:47:07'),
(28433, 'hi', 'sitemap', 'Sitemap Type', 'साइटमैप प्रकार', '2025-11-21 00:47:07'),
(28434, 'hi', 'sitemap', 'Submitted', 'Submitted', '2025-11-21 00:47:07'),
(28435, 'hi', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2025-11-21 00:47:07'),
(28436, 'hi', 'socialmedia', 'Click here to get LinkedIn Company Id', 'यहां क्लिक करें to get LinkedIn Company Id', '2025-11-21 00:47:07'),
(28437, 'hi', 'socialmedia', 'Company Id', 'Company Id', '2025-11-21 00:47:07'),
(28438, 'hi', 'socialmedia', 'Edit Social Media Link', 'संपादित करें सोशल मीडिया Link', '2025-11-21 00:47:07'),
(28439, 'hi', 'socialmedia', 'New Social Media Link', 'नया सोशल मीडिया Link', '2025-11-21 00:47:07'),
(28440, 'hi', 'socialmedia', 'Your social media link count already reached the limit', 'Your सोशल मीडिया link गिनती already reached the limit', '2025-11-21 00:47:07'),
(28441, 'hi', 'subscription', 'Access Type', 'Access प्रकार', '2025-11-21 00:47:07'),
(28442, 'hi', 'subscription', 'account-expired', 'Your खाता expired. Please renew your सदस्यता.', '2025-11-21 00:47:07'),
(28443, 'hi', 'subscription', 'Amount', 'Amount', '2025-11-21 00:47:07'),
(28444, 'hi', 'subscription', 'click-activate-pay-plugin', 'यहां क्लिक करें to सक्रिय करें payment प्लगइन', '2025-11-21 00:47:07'),
(28445, 'hi', 'subscription', 'Currency', 'Currency', '2025-11-21 00:47:07'),
(28446, 'hi', 'subscription', 'Directory Submit Daily Limit', 'Daily निर्देशिका सबमिशन Limit', '2025-11-21 00:47:07'),
(28447, 'hi', 'subscription', 'Directory Submit Limit', 'निर्देशिका सबमिशन Limit', '2025-11-21 00:47:07'),
(28448, 'hi', 'subscription', 'Edit Email Template', 'संपादित करें ईमेल Template', '2025-11-21 00:47:07'),
(28449, 'hi', 'subscription', 'Edit Payment Gateway', 'संपादित करें Payment Gateway', '2025-11-21 00:47:07'),
(28450, 'hi', 'subscription', 'Email Template Manager', 'ईमेल Template प्रबंधक', '2025-11-21 00:47:07'),
(28451, 'hi', 'subscription', 'enable_email_activation', 'Enable ईमेल Activation', '2025-11-21 00:47:07'),
(28452, 'hi', 'subscription', 'free_trial_period', 'Free Trial Period', '2025-11-21 00:47:07'),
(28453, 'hi', 'subscription', 'infinite_limit_text', '<b>Note</b>: Enter -1 for infinite limit', '2025-11-21 00:47:07'),
(28454, 'hi', 'subscription', 'internal-error-payment', 'Internal त्रुटि occured during payment processing.', '2025-11-21 00:47:07'),
(28455, 'hi', 'subscription', 'Keyword Limit', 'मुख्य शब्द Limit', '2025-11-21 00:47:07'),
(28456, 'hi', 'subscription', 'Order Id', 'Order Id', '2025-11-21 00:47:07'),
(28457, 'hi', 'subscription', 'Orders', 'Orders', '2025-11-21 00:47:07'),
(28458, 'hi', 'subscription', 'Paid By', 'Paid By', '2025-11-21 00:47:07'),
(28459, 'hi', 'subscription', 'Payment Gateway Manager', 'Payment Gateway प्रबंधक', '2025-11-21 00:47:07'),
(28460, 'hi', 'subscription', 'Payment Method', 'Payment Method', '2025-11-21 00:47:07'),
(28461, 'hi', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2025-11-21 00:47:07'),
(28462, 'hi', 'subscription', 'Plugin Access Settings', 'प्लगइन Access सेटिंग्स', '2025-11-21 00:47:07'),
(28463, 'hi', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business ईमेल', '2025-11-21 00:47:07'),
(28464, 'hi', 'subscription', 'PP_TOKEN', 'Paypal Token', '2025-11-21 00:47:07'),
(28465, 'hi', 'subscription', 'Quantity', 'Quantity', '2025-11-21 00:47:07'),
(28466, 'hi', 'subscription', 'Renew Subscription', 'Renew सदस्यता', '2025-11-21 00:47:07'),
(28467, 'hi', 'subscription', 'Review Link Count', 'समीक्षा Link गिनती', '2025-11-21 00:47:07'),
(28468, 'hi', 'subscription', 'Sandbox', 'Sandbox', '2025-11-21 00:47:07'),
(28469, 'hi', 'subscription', 'Seo Tools Access Settings', 'SEO उपकरण Access सेटिंग्स', '2025-11-21 00:47:07'),
(28470, 'hi', 'subscription', 'site_auditor_max_page_limit', 'साइट ऑडिटर Maximum Page Limit', '2025-11-21 00:47:07'),
(28471, 'hi', 'subscription', 'Social Media Link Count', 'सोशल मीडिया Link गिनती', '2025-11-21 00:47:07'),
(28472, 'hi', 'subscription', 'SP_PAYMENT_PLUGIN', 'Default Payment प्लगइन', '2025-11-21 00:47:07'),
(28473, 'hi', 'subscription', 'Subscribe', 'सदस्यता लें', '2025-11-21 00:47:07'),
(28474, 'hi', 'subscription', 'Subscription', 'सदस्यता', '2025-11-21 00:47:07'),
(28475, 'hi', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Notification(After)', '2025-11-21 00:47:07'),
(28476, 'hi', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2025-11-21 00:47:07'),
(28477, 'hi', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2025-11-21 00:47:07'),
(28478, 'hi', 'subscription', 'Term', 'Term', '2025-11-21 00:47:07'),
(28479, 'hi', 'subscription', 'total_count_greater_account_limit', 'कुल गिनती is greater than खाता limit - [limit]', '2025-11-21 00:47:07'),
(28480, 'hi', 'subscription', 'total_count_greater_account_limit_dir_sub', 'निर्देशिका सबमिशन गिनती is greater than खाता limit - [limit]', '2025-11-21 00:47:07'),
(28481, 'hi', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'निर्देशिका सबमिशन गिनती is greater than daily खाता limit - [limit]', '2025-11-21 00:47:07'),
(28482, 'hi', 'subscription', 'Transaction Id', 'Transaction Id', '2025-11-21 00:47:07'),
(28483, 'hi', 'subscription', 'Transaction Log', 'Transaction Log', '2025-11-21 00:47:07'),
(28484, 'hi', 'subscription', 'transaction-success', 'Your transaction processed सफलतापूर्वक.', '2025-11-21 00:47:07'),
(28485, 'hi', 'subscription', 'View Order', 'देखें Order', '2025-11-21 00:47:07'),
(28486, 'hi', 'subscription', 'Website Limit', 'वेबसाइट Limit', '2025-11-21 00:47:07'),
(28487, 'hi', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2025-11-21 00:47:07'),
(28488, 'hi', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel सभी प्लगइन उपकरण kit</h1> \r\n <p>\r\n It includes most of the प्लगइन्स developed by seo panel team for just <font class="सफलता bold" size="14">$160</font> includes <b>Membership सदस्यता</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/प्लगइन/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local खोज इंजन Package</h1> \r\n <p>\r\n जोड़ें <b>local खोज इंजन domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>मुख्य शब्द स्थिति जांचकर्ता</b>, to track your site perfomance locally.\r\n To get local खोज इंजन package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">दान करें</a> $10 or more to improve the सुविधाएं of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">संपर्क करें us</a> to provide us required खोज इंजन domain सूची.\r\n <br><br> \r\n Also to जोड़ें <b>नया खोज इंजन(eg:baidu.com)</b> to your seo panel मुख्य शब्द स्थिति जांचकर्ता, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">संपर्क करें us</a> or खोलें a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to संपर्क करें us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>SEO पैनल प्लगइन्स</h1> \r\n <p>\r\n जोड़ें <b>SEO प्लगइन्स</b> to your seo panel to <b>extend the सुविधाएं</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">SEO पैनल प्लगइन्स</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> SEO प्लगइन्स for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">जमा करें</a> your seo प्लगइन to seo panel and we will <b>publish</b> it in our वेबसाइट after our <b>समीक्षा</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get SEO पैनल प्लगइन्स</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>संपर्क करें Us</h1> \r\n <p>\r\n संपर्क करें us for any questions about <b>seo panel उपकरण,प्लगइन्स and सुविधाएं etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to संपर्क करें us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> से seo panel team to setup the <b>seo panel उपकरण,प्लगइन्स and सुविधाएं</b>. Eg: To set up cron for मुख्य शब्द स्थिति जांचकर्ता.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to बनाएं a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>रिपोर्ट Bugs</h1> \r\n <p>\r\n रिपोर्ट <b>bugs</b> about <b>seo panel उपकरण,प्लगइन्स and सुविधाएं etc</b> by using below link. \r\n please मदद us to improve the सुविधाएं in अगला versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to रिपोर्ट bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2025-11-21 00:47:07'),
(28489, 'hi', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel ऑनलाइन Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel मदद Guide</h1> \r\n <p>\r\n You can देखें the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>मदद guide</b>, it contains the <b>documentation</b> for the seo panel उपकरण,प्लगइन्स and related सुविधाएं.\r\n <br>It is the best place in internet to <b>get मदद</b> about seo panel. We hope that you <b>contribute</b> to the seo panel मदद guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel मदद guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel मंच</h1> \r\n <p>\r\n A place to discuss about world''s पहला खोलें source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your वेबसाइटें. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel मंच</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2025-11-21 00:47:07'),
(28490, 'hi', 'support', 'support_cont3', '<fieldset>\r\n<legend>दान करें to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>दान करें to Seo Panel - पहला खोलें source seo control panel in the world</h1> \r\n <p>\r\n <b>दान करें</b> to seo panel to support पहला खोलें source seo control panel in the world.\r\n We are planning to <b>जोड़ें and improve</b> सुविधाएं of seo panel in future. \r\n <br>With सभी your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please दान करें some amount to seo panel team.\r\n <br>We will <b>publish</b> your नाम and site जानकारी in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to दान करें to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2025-11-21 00:47:07'),
(28491, 'hi', 'theme', 'Download Seo Panel Themes', 'डाउनलोड करें Seo Panel Themes', '2025-11-21 00:47:07'),
(28492, 'hi', 'user', 'Edit User', 'उपयोगकर्ता संपादित करें', '2025-11-21 00:47:07'),
(28493, 'hi', 'user', 'Expiry Date', 'Expiry तारीख', '2025-11-21 00:47:07'),
(28494, 'hi', 'user', 'Saved My Profile Details', 'सहेजा गया My प्रोफ़ाइल विवरण', '2025-11-21 00:47:07'),
(28495, 'hi', 'webmaster', 'Average Position', 'Average स्थिति', '2025-11-21 00:47:07'),
(28496, 'hi', 'webmaster', 'Click here to connect to your google account', 'यहां क्लिक करें to connect to your google खाता', '2025-11-21 00:47:07'),
(28497, 'hi', 'webmaster', 'Error: Google api connection failed', 'त्रुटि: Google api connection विफल', '2025-11-21 00:47:07'),
(28498, 'hi', 'website', 'Add to Webmaster Tools', 'जोड़ें to वेबमास्टर उपकरण', '2025-11-21 00:47:07'),
(28499, 'hi', 'website', 'Click here to get Google Analytics View Id', 'यहां क्लिक करें to get Google विश्लेषण देखें Id', '2025-11-21 00:47:07'),
(28500, 'hi', 'website', 'Edit Website', 'वेबसाइट संपादित करें', '2025-11-21 00:47:07'),
(28501, 'hi', 'website', 'Google Analytics Property', 'Google विश्लेषण Property', '2025-11-21 00:47:07'),
(28502, 'hi', 'website', 'Google Analytics View Id', 'Google विश्लेषण देखें Id', '2025-11-21 00:47:07'),
(28503, 'hi', 'website', 'Please enter CSV file', 'Please enter CSV file', '2025-11-21 00:47:07'),
(28504, 'hi', 'website', 'plscrtwebsite', 'Please बनाएं a वेबसाइट before शुरू to using SEO उपकरण and SEO प्लगइन्स.', '2025-11-21 00:47:07'),
(28505, 'hi', 'website', 'Sitemap successfully added to webmaster tools', 'साइटमैप सफलतापूर्वक जोड़ा गया to वेबमास्टर उपकरण', '2025-11-21 00:47:07'),
(28506, 'hi', 'website', 'Successfully deleted sitemap from webmaster tools', 'सफलतापूर्वक हटाया गया साइटमैप से वेबमास्टर उपकरण', '2025-11-21 00:47:07'),
(28507, 'hi', 'website', 'Successfully imported following websites', 'सफलतापूर्वक imported following वेबसाइटें', '2025-11-21 00:47:07'),
(28508, 'hi', 'website', 'Successfully sync sitemaps from webmaster tools', 'सफलतापूर्वक sync sitemaps से वेबमास्टर उपकरण', '2025-11-21 00:47:07'),
(28509, 'hi', 'website', 'Sync Google Analytics Properties', 'Sync Google विश्लेषण Properties', '2025-11-21 00:47:07'),
(28510, 'hi', 'website', 'User Type already exist', 'उपयोगकर्ता प्रकार already exist', '2025-11-21 00:47:07'),
(28511, 'hi', 'website', 'Website already exist', 'वेबसाइट already exist', '2025-11-21 00:47:07'),
(28512, 'hi', 'website', 'Website CSV File', 'वेबसाइट CSV File', '2025-11-21 00:47:07'),
(28513, 'hi', 'website', 'Website successfully added to webmaster tools', 'वेबसाइट सफलतापूर्वक जोड़ा गया to वेबमास्टर उपकरण', '2025-11-21 00:47:07'),
(28514, 'hi', 'website', 'You can add only websitecount websites more', 'You can जोड़ें only [websitecount] वेबसाइटें for this उपयोगकर्ता!', '2025-11-21 00:47:07'),
(28515, 'hi', 'website', 'Your website count already reached the limit', 'वेबसाइट गिनती already reached the limit for this उपयोगकर्ता!', '2025-11-21 00:47:07'),
(28516, 'hi', 'website', 'yourwebalreday', 'your वेबसाइट if you have already बनाया गया one.', '2025-11-21 00:47:07'),
(29052, 'th', 'seotools', 'Quick Checker', 'Quick ตัวตรวจสอบ', '2025-11-21 00:58:59'),
(29053, 'th', 'seotools', 'Quick PageSpeed Checker', 'Quick PageSpeed ตัวตรวจสอบ', '2025-11-21 00:58:59'),
(29054, 'th', 'seotools', 'Quick Position Checker', 'Quick ตัวตรวจสอบตำแหน่ง', '2025-11-21 00:58:59'),
(29055, 'th', 'seotools', 'Quick Rank Checker', 'Quick ตัวตรวจสอบอันดับ', '2025-11-21 00:58:59'),
(29056, 'th', 'seotools', 'Quick Saturation Checker', 'Quick ตัวตรวจสอบความอิ่มตัว', '2025-11-21 00:58:59'),
(29057, 'th', 'seotools', 'Rank Reports', 'อันดับ รายงาน', '2025-11-21 00:58:59'),
(29058, 'th', 'seotools', 'rank-checker', 'ตัวตรวจสอบอันดับ', '2025-11-21 00:58:59'),
(29059, 'th', 'seotools', 'Review Links', 'รีวิว Links', '2025-11-21 00:58:59'),
(29060, 'th', 'seotools', 'Review Report Summary', 'รีวิว รายงาน Summary', '2025-11-21 00:58:59'),
(29061, 'th', 'seotools', 'review-manager', 'จัดการรีวิว', '2025-11-21 00:58:59'),
(29062, 'th', 'seotools', 'Saturation Reports', 'ความอิ่มตัว รายงาน', '2025-11-21 00:58:59'),
(29063, 'th', 'seotools', 'saturation-checker', 'ความอิ่มตัวของเครื่องมือค้นหา', '2025-11-21 00:58:59'),
(29064, 'th', 'seotools', 'site-auditor', 'ตรวจสอบเว็บไซต์', '2025-11-21 00:58:59'),
(29065, 'th', 'seotools', 'Sitemap Reports Summary', 'แผนผังเว็บไซต์ รายงาน Summary', '2025-11-21 00:58:59'),
(29066, 'th', 'seotools', 'sitemap-generator', 'แผนผังเว็บไซต์ Generator', '2025-11-21 00:58:59'),
(29067, 'th', 'seotools', 'Skipped Directories', 'Skipped Directories', '2025-11-21 00:58:59'),
(29068, 'th', 'seotools', 'sm-checker', 'โซเชียลมีเดีย ตัวตรวจสอบ', '2025-11-21 00:58:59'),
(29069, 'th', 'seotools', 'Social Media Links', 'โซเชียลมีเดีย Links', '2025-11-21 00:58:59'),
(29070, 'th', 'seotools', 'Social Media Report Summary', 'โซเชียลมีเดีย รายงาน Summary', '2025-11-21 00:58:59'),
(29071, 'th', 'seotools', 'Submission Reports', 'การส่ง รายงาน', '2025-11-21 00:58:59'),
(29072, 'th', 'seotools', 'User Access', 'ผู้ใช้ Access', '2025-11-21 00:58:59'),
(29073, 'th', 'seotools', 'web-analytics', 'เว็บไซต์ การวิเคราะห์', '2025-11-21 00:58:59'),
(29074, 'th', 'seotools', 'webmaster-tools', 'เครื่องมือเว็บมาสเตอร์', '2025-11-21 00:58:59'),
(29075, 'th', 'seotools', 'Website Analytics Summary', 'เว็บไซต์ การวิเคราะห์ Summary', '2025-11-21 00:58:59'),
(29076, 'th', 'seotools', 'Website Search Reports', 'เว็บไซต์ ค้นหา รายงาน', '2025-11-21 00:58:59'),
(29077, 'th', 'seotools', 'Website Search Summary', 'เว็บไซต์ ค้นหา Summary', '2025-11-21 00:58:59'),
(29078, 'th', 'settings', 'allsettingssaved', 'ทั้งหมด การตั้งค่า บันทึกแล้ว สำเร็จ!', '2025-11-21 00:58:59'),
(29079, 'th', 'settings', 'API_SECRET', 'API Secret', '2025-11-21 00:58:59'),
(29080, 'th', 'settings', 'Authorised redirect URI', 'Authorised redirect URI', '2025-11-21 00:58:59'),
(29081, 'th', 'settings', 'Check for Updates', 'Check for Updates', '2025-11-21 00:58:59'),
(29082, 'th', 'settings', 'CHECK_MAX_PROXY_COUNT_IF_FAILED', 'Maximum number of proxies used in single execution', '2025-11-21 00:58:59'),
(29083, 'th', 'settings', 'CHECK_WITH_ANOTHER_PROXY_IF_FAILED', 'Check With Another พร็อกซี When Crawling ล้มเหลว', '2025-11-21 00:58:59'),
(29084, 'th', 'settings', 'Click here to become a sponsor for Seo Panel', '<b>บริจาค $100</b> and become a <b>sponsor</b> of Seo Panel.', '2025-11-21 00:58:59'),
(29085, 'th', 'settings', 'click-to-get-dataforseo-account', 'คลิกที่นี่ to get Free DataForSEO บัญชี', '2025-11-21 00:58:59'),
(29086, 'th', 'settings', 'click-to-get-google-api-client-id', 'คลิกที่นี่ to get Google API Client Id', '2025-11-21 00:58:59'),
(29087, 'th', 'settings', 'click-to-get-google-api-key', 'คลิกที่นี่ to get Google API Key', '2025-11-21 00:58:59'),
(29088, 'th', 'settings', 'click-to-get-moz-account', 'คลิกที่นี่ to get MOZ บัญชี', '2025-11-21 00:58:59'),
(29089, 'th', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP พร็อกซี Tunnel', '2025-11-21 00:58:59'),
(29090, 'th', 'settings', 'entersmtpdetails', 'Please enter SMTP mail configuration', '2025-11-21 00:58:59'),
(29091, 'th', 'settings', 'getallpluginfree', 'Also get ทั้งหมด <b>ปลั๊กอิน</b> we develop for <b>Free!</b>', '2025-11-21 00:58:59'),
(29092, 'th', 'settings', 'Please update google settings to get the results', 'Please อัปเดต google การตั้งค่า to get the ผลลัพธ์', '2025-11-21 00:58:59'),
(29093, 'th', 'settings', 'Please update MOZ settings to get complete results', 'Please อัปเดต MOZ การตั้งค่า to get complete ผลลัพธ์', '2025-11-21 00:58:59'),
(29094, 'th', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate พร็อกซี When Crawling ล้มเหลว', '2025-11-21 00:58:59'),
(29095, 'th', 'settings', 'SA_CRAWL_DELAY_TIME', 'ตรวจสอบเว็บไซต์ คลาน delay between each pages', '2025-11-21 00:58:59'),
(29096, 'th', 'settings', 'SA_MAX_NO_PAGES', 'Maximum number of pages allowed per เว็บไซต์', '2025-11-21 00:58:59'),
(29097, 'th', 'settings', 'Send Email', 'Send อีเมล', '2025-11-21 00:58:59'),
(29098, 'th', 'settings', 'seopanel_description', 'A complete free control panel for managing เครื่องมือค้นหา optimization of your เว็บไซต์. It containing lots of hot เครื่องมือ SEO to increase and track the performace your เว็บไซต์. Its an เปิด source software and also you can develop your own ปลั๊กอิน SEO for seo panel.', '2025-11-21 00:58:59'),
(29099, 'th', 'settings', 'seopanel_title', 'Seo Panel: World''s แรก เปิด source seo control panel for managing multiple web sites', '2025-11-21 00:58:59'),
(29100, 'th', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow ผู้ใช้ to schedule รายงาน', '2025-11-21 00:58:59'),
(29101, 'th', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2025-11-21 00:58:59'),
(29102, 'th', 'settings', 'SP_COMPANY_NAME', 'Company ชื่อ', '2025-11-21 00:58:59'),
(29103, 'th', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider คลาน(seconds)', '2025-11-21 00:58:59'),
(29104, 'th', 'settings', 'SP_DEFAULTLANG', 'Default ภาษา', '2025-11-21 00:58:59'),
(29105, 'th', 'settings', 'SP_DESCRIPTION', 'Seo Panel คำอธิบาย', '2025-11-21 00:58:59'),
(29106, 'th', 'settings', 'SP_DFS_API_LOGIN', 'API เข้าสู่ระบบ', '2025-11-21 00:58:59'),
(29107, 'th', 'settings', 'SP_DFS_API_PASSWORD', 'API รหัสผ่าน', '2025-11-21 00:58:59'),
(29108, 'th', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2025-11-21 00:58:59'),
(29109, 'th', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2025-11-21 00:58:59'),
(29110, 'th', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for แบ็คลิงก์ and ตัวตรวจสอบความอิ่มตัว', '2025-11-21 00:58:59'),
(29111, 'th', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2025-11-21 00:58:59'),
(29112, 'th', 'settings', 'SP_ENABLE_PROXY', 'Enable พร็อกซี', '2025-11-21 00:58:59'),
(29113, 'th', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable พร็อกซี for Google API', '2025-11-21 00:58:59'),
(29114, 'th', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2025-11-21 00:58:59');
INSERT INTO `texts` VALUES
(29115, 'th', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google การวิเคราะห์ การติดตาม Code', '2025-11-21 00:58:59'),
(29116, 'th', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2025-11-21 00:58:59'),
(29117, 'th', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2025-11-21 00:58:59'),
(29118, 'th', 'settings', 'SP_GOOGLE_API_KEY', 'Google API Key', '2025-11-21 00:58:59'),
(29119, 'th', 'settings', 'SP_HOTLINKING', 'Image hotlink protection เปิดใช้งาน', '2025-11-21 00:58:59'),
(29120, 'th', 'settings', 'SP_KEYWORDS', 'Seo Panel คำสำคัญ', '2025-11-21 00:58:59'),
(29121, 'th', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2025-11-21 00:58:59'),
(29122, 'th', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2025-11-21 00:58:59'),
(29123, 'th', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2025-11-21 00:58:59'),
(29124, 'th', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Number of คำสำคัญ needs to be ตรวจสอบแล้ว in each cron execution', '2025-11-21 00:58:59'),
(29125, 'th', 'settings', 'SP_PAGINGNO', 'Number of entries per page', '2025-11-21 00:58:59'),
(29126, 'th', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2025-11-21 00:58:59'),
(29127, 'th', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2025-11-21 00:58:59'),
(29128, 'th', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'คลาน relative links in a page', '2025-11-21 00:58:59'),
(29129, 'th', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of อีเมล notifications for รายงาน', '2025-11-21 00:58:59'),
(29130, 'th', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send custom header with curl request', '2025-11-21 00:58:59'),
(29131, 'th', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2025-11-21 00:58:59'),
(29132, 'th', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2025-11-21 00:58:59'),
(29133, 'th', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2025-11-21 00:58:59'),
(29134, 'th', 'settings', 'SP_SMTP_PASSWORD', 'SMTP รหัสผ่าน', '2025-11-21 00:58:59'),
(29135, 'th', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2025-11-21 00:58:59'),
(29136, 'th', 'settings', 'SP_SMTP_USERNAME', 'SMTP ชื่อผู้ใช้', '2025-11-21 00:58:59'),
(29137, 'th', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Minimum Allowed การรายงาน Interval', '2025-11-21 00:58:59'),
(29138, 'th', 'settings', 'SP_TIME_ZONE', 'Time Zone', '2025-11-21 00:58:59'),
(29139, 'th', 'settings', 'SP_TITLE', 'Seo Panel หัวข้อ', '2025-11-21 00:58:59'),
(29140, 'th', 'settings', 'SP_USER_AGENT', 'ผู้ใช้ agent', '2025-11-21 00:58:59'),
(29141, 'th', 'settings', 'SP_USER_GEN_REPORT', 'Allow ผู้ใช้ to สร้าง รายงาน', '2025-11-21 00:58:59'),
(29142, 'th', 'settings', 'SP_USER_REGISTRATION', 'ผู้ใช้ การลงทะเบียน interface', '2025-11-21 00:58:59'),
(29143, 'th', 'settings', 'syssettingssaved', 'การตั้งค่าระบบ บันทึกแล้ว สำเร็จ!', '2025-11-21 00:58:59'),
(29144, 'th', 'settings', 'Verify connection', 'Verify connection', '2025-11-21 00:58:59'),
(29145, 'th', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up to วันที่. <br>Please ดาวน์โหลด ใหม่ version', '2025-11-21 00:58:59'),
(29146, 'th', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up to วันที่.', '2025-11-21 00:58:59'),
(29147, 'th', 'siteauditor', 'Anchor', 'Anchor', '2025-11-21 00:58:59'),
(29148, 'th', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded จาก รายงาน', '2025-11-21 00:58:59'),
(29149, 'th', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded จาก แผนผังเว็บไซต์', '2025-11-21 00:58:59'),
(29150, 'th', 'siteauditor', 'Check backlinks of pages', 'ตรวจสอบแบ็คลิงก์ of pages', '2025-11-21 00:58:59'),
(29151, 'th', 'siteauditor', 'Check broken links in a page', 'Check broken links in a page', '2025-11-21 00:58:59'),
(29152, 'th', 'siteauditor', 'Check google pagerank of pages', 'Check google pagerank of pages', '2025-11-21 00:58:59'),
(29153, 'th', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of pages', '2025-11-21 00:58:59'),
(29154, 'th', 'siteauditor', 'Check pages indexed or not', 'Check pages indexed or not', '2025-11-21 00:58:59'),
(29155, 'th', 'siteauditor', 'Check Score', 'Check คะแนน', '2025-11-21 00:58:59'),
(29156, 'th', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will increase the execution time of a project', '2025-11-21 00:58:59'),
(29157, 'th', 'siteauditor', 'Completed project execution', 'เสร็จสมบูรณ์ project execution', '2025-11-21 00:58:59'),
(29158, 'th', 'siteauditor', 'Crawled', 'คลานแล้ว', '2025-11-21 00:58:59'),
(29159, 'th', 'siteauditor', 'Crawled Pages', 'คลานแล้ว Pages', '2025-11-21 00:58:59'),
(29160, 'th', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'คลานแล้ว สำเร็จ! Waiting for crawling ถัดไป page for', '2025-11-21 00:58:59'),
(29161, 'th', 'siteauditor', 'Crawling Page', 'Crawling Page', '2025-11-21 00:58:59'),
(29162, 'th', 'siteauditor', 'Duplicate Description', 'Duplicate คำอธิบาย', '2025-11-21 00:58:59'),
(29163, 'th', 'siteauditor', 'Duplicate Keywords', 'Duplicate คำสำคัญ', '2025-11-21 00:58:59'),
(29164, 'th', 'siteauditor', 'Duplicate Title', 'Duplicate หัวข้อ', '2025-11-21 00:58:59'),
(29165, 'th', 'siteauditor', 'Exclude links', 'Exclude links', '2025-11-21 00:58:59'),
(29166, 'th', 'siteauditor', 'Execute with cron', 'Execute with cron', '2025-11-21 00:58:59'),
(29167, 'th', 'siteauditor', 'External', 'External', '2025-11-21 00:58:59'),
(29168, 'th', 'siteauditor', 'External Links', 'External Links', '2025-11-21 00:58:59'),
(29169, 'th', 'siteauditor', 'Import Project Links', 'นำเข้า Project Links', '2025-11-21 00:58:59'),
(29170, 'th', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2025-11-21 00:58:59'),
(29171, 'th', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links จาก the รายงาน', '2025-11-21 00:58:59'),
(29172, 'th', 'siteauditor', 'Link Reports', 'Link รายงาน', '2025-11-21 00:58:59'),
(29173, 'th', 'siteauditor', 'Link Title', 'Link หัวข้อ', '2025-11-21 00:58:59'),
(29174, 'th', 'siteauditor', 'Maximum number of pages to be checked', 'Maximum number of pages to be ตรวจสอบแล้ว', '2025-11-21 00:58:59'),
(29175, 'th', 'siteauditor', 'Maximum Pages', 'Maximum Pages', '2025-11-21 00:58:59'),
(29176, 'th', 'siteauditor', 'No active projects found', 'No ใช้งานอยู่ projects found', '2025-11-21 00:58:59'),
(29177, 'th', 'siteauditor', 'Nofollow', 'Nofollow', '2025-11-21 00:58:59'),
(29178, 'th', 'siteauditor', 'Number of pages is greater than', 'Number of pages is greater than', '2025-11-21 00:58:59'),
(29179, 'th', 'siteauditor', 'Number of pages should be greater than', 'Number of pages should be greater than', '2025-11-21 00:58:59'),
(29180, 'th', 'siteauditor', 'Page Details', 'Page รายละเอียด', '2025-11-21 00:58:59'),
(29181, 'th', 'siteauditor', 'Page Link', 'Page Link', '2025-11-21 00:58:59'),
(29182, 'th', 'siteauditor', 'Page Links', 'Page Links', '2025-11-21 00:58:59'),
(29183, 'th', 'siteauditor', 'Pages Found', 'Pages Found', '2025-11-21 00:58:59'),
(29184, 'th', 'siteauditor', 'pressescapetostopexecution', 'Press <b>escape</b> key to stop execution of script', '2025-11-21 00:58:59'),
(29185, 'th', 'siteauditor', 'Project Summary', 'Project Summary', '2025-11-21 00:58:59'),
(29186, 'th', 'siteauditor', 'Project Url', 'Project URL', '2025-11-21 00:58:59'),
(29187, 'th', 'siteauditor', 'projectalreadyexist', 'Project for this เว็บไซต์ already exist', '2025-11-21 00:58:59'),
(29188, 'th', 'siteauditor', 'Recheck Pages', 'Recheck Pages', '2025-11-21 00:58:59'),
(29189, 'th', 'siteauditor', 'Report Summary', 'รายงาน Summary', '2025-11-21 00:58:59'),
(29190, 'th', 'siteauditor', 'Run Project', 'Run Project', '2025-11-21 00:58:59'),
(29191, 'th', 'siteauditor', 'should start with', 'should เริ่มต้น with', '2025-11-21 00:58:59'),
(29192, 'th', 'siteauditor', 'Site Auditor Settings', 'ตรวจสอบเว็บไซต์ การตั้งค่า', '2025-11-21 00:58:59'),
(29193, 'th', 'siteauditor', 'Store all links found in a page', 'Store ทั้งหมด links found in a page', '2025-11-21 00:58:59'),
(29194, 'th', 'siteauditor', 'The page description length is not between', 'The page คำอธิบาย length is not between', '2025-11-21 00:58:59'),
(29195, 'th', 'siteauditor', 'The page is brocken', 'The page is broken', '2025-11-21 00:58:59'),
(29196, 'th', 'siteauditor', 'The page is having excellent page authority value', 'The page has excellent อำนาจหน้า ค่า', '2025-11-21 00:58:59'),
(29197, 'th', 'siteauditor', 'The page is having exellent number of backlinks in', 'The page has excellent number of แบ็คลิงก์ in', '2025-11-21 00:58:59'),
(29198, 'th', 'siteauditor', 'The page is having exellent pagerank', 'The page has excellent pagerank', '2025-11-21 00:58:59'),
(29199, 'th', 'siteauditor', 'The page is having good number of backlinks in', 'The page has good number of แบ็คลิงก์ in', '2025-11-21 00:58:59'),
(29200, 'th', 'siteauditor', 'The page is having good page authority value', 'The page has good อำนาจหน้า ค่า', '2025-11-21 00:58:59'),
(29201, 'th', 'siteauditor', 'The page is having good pagerank', 'The page has good pagerank', '2025-11-21 00:58:59'),
(29202, 'th', 'siteauditor', 'The page is having poor page authority value', 'The page has poor อำนาจหน้า ค่า', '2025-11-21 00:58:59'),
(29203, 'th', 'siteauditor', 'The page is having poor pagerank', 'The page has poor pagerank', '2025-11-21 00:58:59'),
(29204, 'th', 'siteauditor', 'The page is having very good page authority value', 'The page has very good อำนาจหน้า ค่า', '2025-11-21 00:58:59'),
(29205, 'th', 'siteauditor', 'The page is having very good pagerank', 'The page has very good pagerank', '2025-11-21 00:58:59'),
(29206, 'th', 'siteauditor', 'The page is not having backlinks in', 'The page does not have แบ็คลิงก์ in', '2025-11-21 00:58:59'),
(29207, 'th', 'siteauditor', 'The page is not indexed in', 'The page is not indexed in', '2025-11-21 00:58:59'),
(29208, 'th', 'siteauditor', 'The page keywords length is not between', 'The page คำสำคัญ length is not between', '2025-11-21 00:58:59'),
(29209, 'th', 'siteauditor', 'The page title length is not between', 'The page หัวข้อ length is not between', '2025-11-21 00:58:59'),
(29210, 'th', 'siteauditor', 'The total number of links in page is greater than', 'The ทั้งหมด number of links in page is greater than\r\n', '2025-11-21 00:58:59'),
(29211, 'th', 'siteauditor', 'to run project again if you stopped execution', 'to run project again if you stopped execution', '2025-11-21 00:58:59'),
(29212, 'th', 'siteauditor', 'to view the reports', 'to ดู the รายงาน', '2025-11-21 00:58:59'),
(29213, 'th', 'siteauditor', 'Total Links', 'ทั้งหมด Links', '2025-11-21 00:58:59'),
(29214, 'th', 'siteauditor', 'totallinksgreaterallowed', 'ทั้งหมด links will become greater than maximum links allowed to the project', '2025-11-21 00:58:59'),
(29215, 'th', 'sitemap', 'Change frequency', 'Change frequency', '2025-11-21 00:58:59'),
(29216, 'th', 'sitemap', 'clickproceedsitemap', 'คลิกที่ <b>ดำเนินการต่อ</b> to สร้าง แผนผังเว็บไซต์ file', '2025-11-21 00:58:59'),
(29217, 'th', 'sitemap', 'Download sitemap file from', 'ดาวน์โหลด แผนผังเว็บไซต์ file จาก', '2025-11-21 00:58:59'),
(29218, 'th', 'sitemap', 'Downloaded', 'Downloaded', '2025-11-21 00:58:59'),
(29219, 'th', 'sitemap', 'Exclude Url', 'Exclude URL', '2025-11-21 00:58:59'),
(29220, 'th', 'sitemap', 'processtaketime', 'This process will take time according to number of links in your site. กรุณารอสักครู่ to get แผนผังเว็บไซต์ files', '2025-11-21 00:58:59'),
(29221, 'th', 'sitemap', 'Sitemap Type', 'แผนผังเว็บไซต์ ประเภท', '2025-11-21 00:58:59'),
(29222, 'th', 'sitemap', 'Submitted', 'Submitted', '2025-11-21 00:58:59'),
(29223, 'th', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2025-11-21 00:58:59'),
(29224, 'th', 'socialmedia', 'Click here to get LinkedIn Company Id', 'คลิกที่นี่ to get LinkedIn Company Id', '2025-11-21 00:58:59'),
(29225, 'th', 'socialmedia', 'Company Id', 'Company Id', '2025-11-21 00:58:59'),
(29226, 'th', 'socialmedia', 'Edit Social Media Link', 'แก้ไข โซเชียลมีเดีย Link', '2025-11-21 00:58:59'),
(29227, 'th', 'socialmedia', 'New Social Media Link', 'ใหม่ โซเชียลมีเดีย Link', '2025-11-21 00:58:59'),
(29228, 'th', 'socialmedia', 'Your social media link count already reached the limit', 'Your โซเชียลมีเดีย link จำนวน already reached the limit', '2025-11-21 00:58:59'),
(29229, 'th', 'subscription', 'Access Type', 'Access ประเภท', '2025-11-21 00:58:59'),
(29230, 'th', 'subscription', 'account-expired', 'Your บัญชี expired. Please renew your การสมัครสมาชิก.', '2025-11-21 00:58:59'),
(29231, 'th', 'subscription', 'Amount', 'Amount', '2025-11-21 00:58:59'),
(29232, 'th', 'subscription', 'click-activate-pay-plugin', 'คลิกที่นี่ to เปิดใช้งาน payment ปลั๊กอิน', '2025-11-21 00:58:59'),
(29233, 'th', 'subscription', 'Currency', 'Currency', '2025-11-21 00:58:59'),
(29234, 'th', 'subscription', 'Directory Submit Daily Limit', 'Daily การส่งไดเรกทอรี Limit', '2025-11-21 00:58:59'),
(29235, 'th', 'subscription', 'Directory Submit Limit', 'การส่งไดเรกทอรี Limit', '2025-11-21 00:58:59'),
(29236, 'th', 'subscription', 'Edit Email Template', 'แก้ไข อีเมล Template', '2025-11-21 00:58:59'),
(29237, 'th', 'subscription', 'Edit Payment Gateway', 'แก้ไข Payment Gateway', '2025-11-21 00:58:59'),
(29238, 'th', 'subscription', 'Email Template Manager', 'อีเมล Template ตัวจัดการ', '2025-11-21 00:58:59'),
(29239, 'th', 'subscription', 'enable_email_activation', 'Enable อีเมล Activation', '2025-11-21 00:58:59'),
(29240, 'th', 'subscription', 'free_trial_period', 'Free Trial Period', '2025-11-21 00:58:59'),
(29241, 'th', 'subscription', 'infinite_limit_text', '<b>Note</b>: Enter -1 for infinite limit', '2025-11-21 00:58:59'),
(29242, 'th', 'subscription', 'internal-error-payment', 'Internal ข้อผิดพลาด occured during payment processing.', '2025-11-21 00:58:59'),
(29243, 'th', 'subscription', 'Keyword Limit', 'คำสำคัญ Limit', '2025-11-21 00:58:59'),
(29244, 'th', 'subscription', 'Order Id', 'Order Id', '2025-11-21 00:58:59'),
(29245, 'th', 'subscription', 'Orders', 'Orders', '2025-11-21 00:58:59'),
(29246, 'th', 'subscription', 'Paid By', 'Paid By', '2025-11-21 00:58:59'),
(29247, 'th', 'subscription', 'Payment Gateway Manager', 'Payment Gateway ตัวจัดการ', '2025-11-21 00:58:59'),
(29248, 'th', 'subscription', 'Payment Method', 'Payment Method', '2025-11-21 00:58:59'),
(29249, 'th', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2025-11-21 00:58:59'),
(29250, 'th', 'subscription', 'Plugin Access Settings', 'ปลั๊กอิน Access การตั้งค่า', '2025-11-21 00:58:59'),
(29251, 'th', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business อีเมล', '2025-11-21 00:58:59'),
(29252, 'th', 'subscription', 'PP_TOKEN', 'Paypal Token', '2025-11-21 00:58:59'),
(29253, 'th', 'subscription', 'Quantity', 'Quantity', '2025-11-21 00:58:59'),
(29254, 'th', 'subscription', 'Renew Subscription', 'Renew การสมัครสมาชิก', '2025-11-21 00:58:59'),
(29255, 'th', 'subscription', 'Review Link Count', 'รีวิว Link จำนวน', '2025-11-21 00:58:59'),
(29256, 'th', 'subscription', 'Sandbox', 'Sandbox', '2025-11-21 00:58:59'),
(29257, 'th', 'subscription', 'Seo Tools Access Settings', 'เครื่องมือ SEO Access การตั้งค่า', '2025-11-21 00:58:59'),
(29258, 'th', 'subscription', 'site_auditor_max_page_limit', 'ตรวจสอบเว็บไซต์ Maximum Page Limit', '2025-11-21 00:58:59'),
(29259, 'th', 'subscription', 'Social Media Link Count', 'โซเชียลมีเดีย Link จำนวน', '2025-11-21 00:58:59'),
(29260, 'th', 'subscription', 'SP_PAYMENT_PLUGIN', 'Default Payment ปลั๊กอิน', '2025-11-21 00:58:59'),
(29261, 'th', 'subscription', 'Subscribe', 'สมัครสมาชิก', '2025-11-21 00:58:59'),
(29262, 'th', 'subscription', 'Subscription', 'การสมัครสมาชิก', '2025-11-21 00:58:59'),
(29263, 'th', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Notification(After)', '2025-11-21 00:58:59'),
(29264, 'th', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2025-11-21 00:58:59'),
(29265, 'th', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2025-11-21 00:58:59'),
(29266, 'th', 'subscription', 'Term', 'Term', '2025-11-21 00:58:59'),
(29267, 'th', 'subscription', 'total_count_greater_account_limit', 'ทั้งหมด จำนวน is greater than บัญชี limit - [limit]', '2025-11-21 00:58:59'),
(29268, 'th', 'subscription', 'total_count_greater_account_limit_dir_sub', 'การส่งไดเรกทอรี จำนวน is greater than บัญชี limit - [limit]', '2025-11-21 00:58:59'),
(29269, 'th', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'การส่งไดเรกทอรี จำนวน is greater than daily บัญชี limit - [limit]', '2025-11-21 00:58:59'),
(29270, 'th', 'subscription', 'Transaction Id', 'Transaction Id', '2025-11-21 00:58:59'),
(29271, 'th', 'subscription', 'Transaction Log', 'Transaction Log', '2025-11-21 00:58:59'),
(29272, 'th', 'subscription', 'transaction-success', 'Your transaction processed สำเร็จ.', '2025-11-21 00:58:59'),
(29273, 'th', 'subscription', 'View Order', 'ดู Order', '2025-11-21 00:58:59'),
(29274, 'th', 'subscription', 'Website Limit', 'เว็บไซต์ Limit', '2025-11-21 00:58:59'),
(29275, 'th', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2025-11-21 00:58:59'),
(29276, 'th', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel All Plugin Tool kit</h1> \r\n <p>\r\n It includes most of the plugins developed by seo panel team for just <font class="success bold" size="14">$160</font> includes <b>Membership Subscription</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Search Engines Package</h1> \r\n <p>\r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to provide us required search engine domain list.\r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> seo plugins for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and we will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact Us</h1> \r\n <p>\r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and features</b>. Eg: To set up cron for keyword position checker.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Report Bugs</h1> \r\n <p>\r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2025-11-21 00:58:59'),
(29277, 'th', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Help Guide</h1> \r\n <p>\r\n You can view the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>help guide</b>, it contains the <b>documentation</b> for the seo panel tools,plugins and related features.\r\n <br>It is the best place in internet to <b>get help</b> about seo panel. We hope that you <b>contribute</b> to the seo panel help guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel help guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n A place to discuss about world''s first open source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your websites. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel forum</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2025-11-21 00:58:59'),
(29278, 'th', 'support', 'support_cont3', '<fieldset>\r\n<legend>Donate to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Donate to Seo Panel - First Open source seo control panel in the world</h1> \r\n <p>\r\n <b>Donate</b> to seo panel to support first open source seo control panel in the world.\r\n We are planning to <b>add and improve</b> features of seo panel in future. \r\n <br>With all your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please donate some amount to seo panel team.\r\n <br>We will <b>publish</b> your name and site information in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2025-11-21 00:58:59'),
(29279, 'th', 'theme', 'Download Seo Panel Themes', 'ดาวน์โหลด Seo Panel Themes', '2025-11-21 00:58:59'),
(29280, 'th', 'user', 'Edit User', 'แก้ไขผู้ใช้', '2025-11-21 00:58:59'),
(29281, 'th', 'user', 'Expiry Date', 'Expiry วันที่', '2025-11-21 00:58:59'),
(29282, 'th', 'user', 'Saved My Profile Details', 'บันทึกแล้ว My โปรไฟล์ รายละเอียด', '2025-11-21 00:58:59'),
(29283, 'th', 'webmaster', 'Average Position', 'Average ตำแหน่ง', '2025-11-21 00:58:59'),
(29284, 'th', 'webmaster', 'Click here to connect to your google account', 'คลิกที่นี่ to connect to your google บัญชี', '2025-11-21 00:58:59'),
(29285, 'th', 'webmaster', 'Error: Google api connection failed', 'ข้อผิดพลาด: Google api connection ล้มเหลว', '2025-11-21 00:58:59'),
(29286, 'th', 'website', 'Add to Webmaster Tools', 'เพิ่ม to เครื่องมือเว็บมาสเตอร์', '2025-11-21 00:58:59'),
(29287, 'th', 'website', 'Click here to get Google Analytics View Id', 'คลิกที่นี่ to get Google การวิเคราะห์ ดู Id', '2025-11-21 00:58:59'),
(29288, 'th', 'website', 'Edit Website', 'แก้ไขเว็บไซต์', '2025-11-21 00:58:59'),
(29289, 'th', 'website', 'Google Analytics Property', 'Google การวิเคราะห์ Property', '2025-11-21 00:58:59'),
(29290, 'th', 'website', 'Google Analytics View Id', 'Google การวิเคราะห์ ดู Id', '2025-11-21 00:58:59'),
(29291, 'th', 'website', 'Please enter CSV file', 'Please enter CSV file', '2025-11-21 00:58:59'),
(29292, 'th', 'website', 'plscrtwebsite', 'Please สร้าง a เว็บไซต์ before เริ่มต้น to using เครื่องมือ SEO and ปลั๊กอิน SEO.', '2025-11-21 00:58:59'),
(29293, 'th', 'website', 'Sitemap successfully added to webmaster tools', 'แผนผังเว็บไซต์ สำเร็จ เพิ่มแล้ว to เครื่องมือเว็บมาสเตอร์', '2025-11-21 00:58:59'),
(29294, 'th', 'website', 'Successfully deleted sitemap from webmaster tools', 'สำเร็จ ลบแล้ว แผนผังเว็บไซต์ จาก เครื่องมือเว็บมาสเตอร์', '2025-11-21 00:58:59'),
(29295, 'th', 'website', 'Successfully imported following websites', 'สำเร็จ imported following เว็บไซต์', '2025-11-21 00:58:59'),
(29296, 'th', 'website', 'Successfully sync sitemaps from webmaster tools', 'สำเร็จ sync sitemaps จาก เครื่องมือเว็บมาสเตอร์', '2025-11-21 00:58:59'),
(29297, 'th', 'website', 'Sync Google Analytics Properties', 'Sync Google การวิเคราะห์ Properties', '2025-11-21 00:58:59'),
(29298, 'th', 'website', 'User Type already exist', 'ผู้ใช้ ประเภท already exist', '2025-11-21 00:58:59'),
(29299, 'th', 'website', 'Website already exist', 'เว็บไซต์ already exist', '2025-11-21 00:58:59'),
(29300, 'th', 'website', 'Website CSV File', 'เว็บไซต์ CSV File', '2025-11-21 00:58:59'),
(29301, 'th', 'website', 'Website successfully added to webmaster tools', 'เว็บไซต์ สำเร็จ เพิ่มแล้ว to เครื่องมือเว็บมาสเตอร์', '2025-11-21 00:58:59'),
(29302, 'th', 'website', 'You can add only websitecount websites more', 'You can เพิ่ม only [websitecount] เว็บไซต์ for this ผู้ใช้!', '2025-11-21 00:58:59'),
(29303, 'th', 'website', 'Your website count already reached the limit', 'เว็บไซต์ จำนวน already reached the limit for this ผู้ใช้!', '2025-11-21 00:58:59'),
(29304, 'th', 'website', 'yourwebalreday', 'your เว็บไซต์ if you have already สร้างแล้ว one.', '2025-11-21 00:58:59'),
(29943, 'fi', 'siteauditor', 'Check Score', 'Check Pisteet', '2025-11-21 00:59:35'),
(29944, 'fi', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will increase the execution time of a project', '2025-11-21 00:59:35'),
(29945, 'fi', 'siteauditor', 'Completed project execution', 'Valmis project execution', '2025-11-21 00:59:35'),
(29946, 'fi', 'siteauditor', 'Crawled', 'Indeksoitu', '2025-11-21 00:59:35'),
(29947, 'fi', 'siteauditor', 'Crawled Pages', 'Indeksoitu Pages', '2025-11-21 00:59:35'),
(29948, 'fi', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'Indeksoitu Onnistuneesti! Waiting for crawling Seuraava page for', '2025-11-21 00:59:35'),
(29949, 'fi', 'siteauditor', 'Crawling Page', 'Crawling Page', '2025-11-21 00:59:35'),
(29950, 'fi', 'siteauditor', 'Duplicate Description', 'Duplicate Kuvaus', '2025-11-21 00:59:35'),
(29951, 'fi', 'siteauditor', 'Duplicate Keywords', 'Duplicate Avainsanat', '2025-11-21 00:59:35'),
(29952, 'fi', 'siteauditor', 'Duplicate Title', 'Duplicate Otsikko', '2025-11-21 00:59:35'),
(29953, 'fi', 'siteauditor', 'Exclude links', 'Exclude links', '2025-11-21 00:59:35'),
(29954, 'fi', 'siteauditor', 'Execute with cron', 'Execute with cron', '2025-11-21 00:59:35'),
(29955, 'fi', 'siteauditor', 'External', 'External', '2025-11-21 00:59:35'),
(29956, 'fi', 'siteauditor', 'External Links', 'External Links', '2025-11-21 00:59:35'),
(29957, 'fi', 'siteauditor', 'Import Project Links', 'Tuo Project Links', '2025-11-21 00:59:35'),
(29958, 'fi', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2025-11-21 00:59:35'),
(29959, 'fi', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links Alkaen the Raportit', '2025-11-21 00:59:35'),
(29960, 'fi', 'siteauditor', 'Link Reports', 'Link Raportit', '2025-11-21 00:59:35'),
(29961, 'fi', 'siteauditor', 'Link Title', 'Link Otsikko', '2025-11-21 00:59:35'),
(29962, 'fi', 'siteauditor', 'Maximum number of pages to be checked', 'Maximum number of pages to be Tarkistettu', '2025-11-21 00:59:35'),
(29963, 'fi', 'siteauditor', 'Maximum Pages', 'Maximum Pages', '2025-11-21 00:59:35'),
(29964, 'fi', 'siteauditor', 'No active projects found', 'No Aktiivinen projects found', '2025-11-21 00:59:35'),
(29965, 'fi', 'siteauditor', 'Nofollow', 'Nofollow', '2025-11-21 00:59:35'),
(29966, 'fi', 'siteauditor', 'Number of pages is greater than', 'Number of pages is greater than', '2025-11-21 00:59:35'),
(29967, 'fi', 'siteauditor', 'Number of pages should be greater than', 'Number of pages should be greater than', '2025-11-21 00:59:35'),
(29968, 'fi', 'siteauditor', 'Page Details', 'Page Tiedot', '2025-11-21 00:59:35'),
(29969, 'fi', 'siteauditor', 'Page Link', 'Page Link', '2025-11-21 00:59:35'),
(29970, 'fi', 'siteauditor', 'Page Links', 'Page Links', '2025-11-21 00:59:35'),
(29971, 'fi', 'siteauditor', 'Pages Found', 'Pages Found', '2025-11-21 00:59:35'),
(29972, 'fi', 'siteauditor', 'pressescapetostopexecution', 'Press <b>escape</b> key to stop execution of script', '2025-11-21 00:59:35'),
(29973, 'fi', 'siteauditor', 'Project Summary', 'Project Summary', '2025-11-21 00:59:35'),
(29974, 'fi', 'siteauditor', 'Project Url', 'Project URL', '2025-11-21 00:59:35'),
(29975, 'fi', 'siteauditor', 'projectalreadyexist', 'Project for this Verkkosivusto already exist', '2025-11-21 00:59:35'),
(29976, 'fi', 'siteauditor', 'Recheck Pages', 'Recheck Pages', '2025-11-21 00:59:35'),
(29977, 'fi', 'siteauditor', 'Report Summary', 'Raportti Summary', '2025-11-21 00:59:35'),
(29978, 'fi', 'siteauditor', 'Run Project', 'Run Project', '2025-11-21 00:59:35'),
(29979, 'fi', 'siteauditor', 'should start with', 'should Aloita with', '2025-11-21 00:59:35'),
(29980, 'fi', 'siteauditor', 'Site Auditor Settings', 'Sivuston tarkastaja Asetukset', '2025-11-21 00:59:35'),
(29981, 'fi', 'siteauditor', 'Store all links found in a page', 'Store Kaikki links found in a page', '2025-11-21 00:59:35'),
(29982, 'fi', 'siteauditor', 'The page description length is not between', 'The page Kuvaus length is not between', '2025-11-21 00:59:35'),
(29983, 'fi', 'siteauditor', 'The page is brocken', 'The page is broken', '2025-11-21 00:59:35'),
(29984, 'fi', 'siteauditor', 'The page is having excellent page authority value', 'The page has excellent Sivun auktoriteetti Arvo', '2025-11-21 00:59:35'),
(29985, 'fi', 'siteauditor', 'The page is having exellent number of backlinks in', 'The page has excellent number of Takaisinlinkit in', '2025-11-21 00:59:35'),
(29986, 'fi', 'siteauditor', 'The page is having exellent pagerank', 'The page has excellent pagerank', '2025-11-21 00:59:35'),
(29987, 'fi', 'siteauditor', 'The page is having good number of backlinks in', 'The page has good number of Takaisinlinkit in', '2025-11-21 00:59:35'),
(29988, 'fi', 'siteauditor', 'The page is having good page authority value', 'The page has good Sivun auktoriteetti Arvo', '2025-11-21 00:59:35'),
(29989, 'fi', 'siteauditor', 'The page is having good pagerank', 'The page has good pagerank', '2025-11-21 00:59:35'),
(29990, 'fi', 'siteauditor', 'The page is having poor page authority value', 'The page has poor Sivun auktoriteetti Arvo', '2025-11-21 00:59:35'),
(29991, 'fi', 'siteauditor', 'The page is having poor pagerank', 'The page has poor pagerank', '2025-11-21 00:59:35'),
(29992, 'fi', 'siteauditor', 'The page is having very good page authority value', 'The page has very good Sivun auktoriteetti Arvo', '2025-11-21 00:59:35'),
(29993, 'fi', 'siteauditor', 'The page is having very good pagerank', 'The page has very good pagerank', '2025-11-21 00:59:35'),
(29994, 'fi', 'siteauditor', 'The page is not having backlinks in', 'The page does not have Takaisinlinkit in', '2025-11-21 00:59:35'),
(29995, 'fi', 'siteauditor', 'The page is not indexed in', 'The page is not indexed in', '2025-11-21 00:59:35'),
(29996, 'fi', 'siteauditor', 'The page keywords length is not between', 'The page Avainsanat length is not between', '2025-11-21 00:59:35'),
(29997, 'fi', 'siteauditor', 'The page title length is not between', 'The page Otsikko length is not between', '2025-11-21 00:59:35'),
(29998, 'fi', 'siteauditor', 'The total number of links in page is greater than', 'The Yhteensä number of links in page is greater than\r\n', '2025-11-21 00:59:35'),
(29999, 'fi', 'siteauditor', 'to run project again if you stopped execution', 'to run project again if you stopped execution', '2025-11-21 00:59:35'),
(30000, 'fi', 'siteauditor', 'to view the reports', 'to Näytä the Raportit', '2025-11-21 00:59:35'),
(30001, 'fi', 'siteauditor', 'Total Links', 'Yhteensä Links', '2025-11-21 00:59:35'),
(30002, 'fi', 'siteauditor', 'totallinksgreaterallowed', 'Yhteensä links will become greater than maximum links allowed to the project', '2025-11-21 00:59:35'),
(30003, 'fi', 'sitemap', 'Change frequency', 'Change frequency', '2025-11-21 00:59:35'),
(30004, 'fi', 'sitemap', 'clickproceedsitemap', 'Klikkaa <b>Jatka</b> to Luo Sivustokartta file', '2025-11-21 00:59:35'),
(30005, 'fi', 'sitemap', 'Download sitemap file from', 'Lataa Sivustokartta file Alkaen', '2025-11-21 00:59:35'),
(30006, 'fi', 'sitemap', 'Downloaded', 'Downloaded', '2025-11-21 00:59:35'),
(30007, 'fi', 'sitemap', 'Exclude Url', 'Exclude URL', '2025-11-21 00:59:35'),
(30008, 'fi', 'sitemap', 'processtaketime', 'This process will take time according to number of links in your site. Odota hetki to get Sivustokartta files', '2025-11-21 00:59:35'),
(30009, 'fi', 'sitemap', 'Sitemap Type', 'Sivustokartta Tyyppi', '2025-11-21 00:59:35'),
(30010, 'fi', 'sitemap', 'Submitted', 'Submitted', '2025-11-21 00:59:35'),
(30011, 'fi', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2025-11-21 00:59:35'),
(30012, 'fi', 'socialmedia', 'Click here to get LinkedIn Company Id', 'Klikkaa tästä to get LinkedIn Company Id', '2025-11-21 00:59:35'),
(30013, 'fi', 'socialmedia', 'Company Id', 'Company Id', '2025-11-21 00:59:35'),
(30014, 'fi', 'socialmedia', 'Edit Social Media Link', 'Muokkaa Sosiaalinen media Link', '2025-11-21 00:59:35'),
(30015, 'fi', 'socialmedia', 'New Social Media Link', 'Uusi Sosiaalinen media Link', '2025-11-21 00:59:35'),
(30016, 'fi', 'socialmedia', 'Your social media link count already reached the limit', 'Your Sosiaalinen media link Määrä already reached the limit', '2025-11-21 00:59:35'),
(30017, 'fi', 'subscription', 'Access Type', 'Access Tyyppi', '2025-11-21 00:59:35'),
(30018, 'fi', 'subscription', 'account-expired', 'Your Tili expired. Please renew your Tilaus.', '2025-11-21 00:59:35'),
(30019, 'fi', 'subscription', 'Amount', 'Amount', '2025-11-21 00:59:35'),
(30020, 'fi', 'subscription', 'click-activate-pay-plugin', 'Klikkaa tästä to Aktivoi payment Laajennus', '2025-11-21 00:59:35'),
(30021, 'fi', 'subscription', 'Currency', 'Currency', '2025-11-21 00:59:35'),
(30022, 'fi', 'subscription', 'Directory Submit Daily Limit', 'Daily Hakemistolähettäminen Limit', '2025-11-21 00:59:35'),
(30023, 'fi', 'subscription', 'Directory Submit Limit', 'Hakemistolähettäminen Limit', '2025-11-21 00:59:35'),
(30024, 'fi', 'subscription', 'Edit Email Template', 'Muokkaa Sähköposti Template', '2025-11-21 00:59:35'),
(30025, 'fi', 'subscription', 'Edit Payment Gateway', 'Muokkaa Payment Gateway', '2025-11-21 00:59:35'),
(30026, 'fi', 'subscription', 'Email Template Manager', 'Sähköposti Template Hallinta', '2025-11-21 00:59:35'),
(30027, 'fi', 'subscription', 'enable_email_activation', 'Enable Sähköposti Activation', '2025-11-21 00:59:35'),
(30028, 'fi', 'subscription', 'free_trial_period', 'Free Trial Period', '2025-11-21 00:59:35'),
(30029, 'fi', 'subscription', 'infinite_limit_text', '<b>Note</b>: Enter -1 for infinite limit', '2025-11-21 00:59:35'),
(30030, 'fi', 'subscription', 'internal-error-payment', 'Internal Virhe occured during payment processing.', '2025-11-21 00:59:35'),
(30031, 'fi', 'subscription', 'Keyword Limit', 'Avainsana Limit', '2025-11-21 00:59:35'),
(30032, 'fi', 'subscription', 'Order Id', 'Order Id', '2025-11-21 00:59:35'),
(30033, 'fi', 'subscription', 'Orders', 'Orders', '2025-11-21 00:59:35'),
(30034, 'fi', 'subscription', 'Paid By', 'Paid By', '2025-11-21 00:59:35'),
(30035, 'fi', 'subscription', 'Payment Gateway Manager', 'Payment Gateway Hallinta', '2025-11-21 00:59:35'),
(30036, 'fi', 'subscription', 'Payment Method', 'Payment Method', '2025-11-21 00:59:35'),
(30037, 'fi', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2025-11-21 00:59:35'),
(30038, 'fi', 'subscription', 'Plugin Access Settings', 'Laajennus Access Asetukset', '2025-11-21 00:59:35'),
(30039, 'fi', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business Sähköposti', '2025-11-21 00:59:35'),
(30040, 'fi', 'subscription', 'PP_TOKEN', 'Paypal Token', '2025-11-21 00:59:35'),
(30041, 'fi', 'subscription', 'Quantity', 'Quantity', '2025-11-21 00:59:35'),
(30042, 'fi', 'subscription', 'Renew Subscription', 'Renew Tilaus', '2025-11-21 00:59:35'),
(30043, 'fi', 'subscription', 'Review Link Count', 'Arvostelu Link Määrä', '2025-11-21 00:59:35'),
(30044, 'fi', 'subscription', 'Sandbox', 'Sandbox', '2025-11-21 00:59:35'),
(30045, 'fi', 'subscription', 'Seo Tools Access Settings', 'SEO-työkalut Access Asetukset', '2025-11-21 00:59:35'),
(30046, 'fi', 'subscription', 'site_auditor_max_page_limit', 'Sivuston tarkastaja Maximum Page Limit', '2025-11-21 00:59:35'),
(30047, 'fi', 'subscription', 'Social Media Link Count', 'Sosiaalinen media Link Määrä', '2025-11-21 00:59:35'),
(30048, 'fi', 'subscription', 'SP_PAYMENT_PLUGIN', 'Default Payment Laajennus', '2025-11-21 00:59:35'),
(30049, 'fi', 'subscription', 'Subscribe', 'Tilaa', '2025-11-21 00:59:35'),
(30050, 'fi', 'subscription', 'Subscription', 'Tilaus', '2025-11-21 00:59:35'),
(30051, 'fi', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Notification(After)', '2025-11-21 00:59:35'),
(30052, 'fi', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2025-11-21 00:59:35'),
(30053, 'fi', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2025-11-21 00:59:35'),
(30054, 'fi', 'subscription', 'Term', 'Term', '2025-11-21 00:59:35'),
(30055, 'fi', 'subscription', 'total_count_greater_account_limit', 'Yhteensä Määrä is greater than Tili limit - [limit]', '2025-11-21 00:59:35'),
(30056, 'fi', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Hakemistolähettäminen Määrä is greater than Tili limit - [limit]', '2025-11-21 00:59:35'),
(30057, 'fi', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Hakemistolähettäminen Määrä is greater than daily Tili limit - [limit]', '2025-11-21 00:59:35'),
(30058, 'fi', 'subscription', 'Transaction Id', 'Transaction Id', '2025-11-21 00:59:35'),
(30059, 'fi', 'subscription', 'Transaction Log', 'Transaction Log', '2025-11-21 00:59:35'),
(30060, 'fi', 'subscription', 'transaction-success', 'Your transaction processed Onnistuneesti.', '2025-11-21 00:59:35'),
(30061, 'fi', 'subscription', 'View Order', 'Näytä Order', '2025-11-21 00:59:35'),
(30062, 'fi', 'subscription', 'Website Limit', 'Verkkosivusto Limit', '2025-11-21 00:59:35'),
(30063, 'fi', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2025-11-21 00:59:35'),
(30064, 'fi', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel Kaikki Laajennus Työkalu kit</h1> \r\n <p>\r\n It includes most of the Laajennukset developed by seo panel team for just <font class="Onnistui bold" size="14">$160</font> includes <b>Membership Tilaus</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/Laajennus/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Hakukoneet Package</h1> \r\n <p>\r\n Lisää <b>local Hakukone domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>Avainsanan sijaintitarkistaja</b>, to track your site perfomance locally.\r\n To get local Hakukoneet package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">Lahjoita</a> $10 or more to improve the Ominaisuudet of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">Ota yhteyttä us</a> to provide us required Hakukone domain Luettelo.\r\n <br><br> \r\n Also to Lisää <b>Uusi Hakukoneet(eg:baidu.com)</b> to your seo panel Avainsanan sijaintitarkistaja, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">Ota yhteyttä us</a> or Avaa a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to Ota yhteyttä us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>SEO Panel -laajennukset</h1> \r\n <p>\r\n Lisää <b>SEO-laajennukset</b> to your seo panel to <b>extend the Ominaisuudet</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">SEO Panel -laajennukset</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> SEO-laajennukset for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">Lähetä</a> your seo Laajennus to seo panel and we will <b>publish</b> it in our Verkkosivusto after our <b>Arvostelu</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get SEO Panel -laajennukset</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Ota yhteyttä Us</h1> \r\n <p>\r\n Ota yhteyttä us for any questions about <b>seo panel Työkalut,Laajennukset and Ominaisuudet etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to Ota yhteyttä us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> Alkaen seo panel team to setup the <b>seo panel Työkalut,Laajennukset and Ominaisuudet</b>. Eg: To set up cron for Avainsanan sijaintitarkistaja.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to Luo a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Raportti Bugs</h1> \r\n <p>\r\n Raportti <b>bugs</b> about <b>seo panel Työkalut,Laajennukset and Ominaisuudet etc</b> by using below link. \r\n please Apua us to improve the Ominaisuudet in Seuraava versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to Raportti bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2025-11-21 00:59:35'),
(30065, 'fi', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Verkossa Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Apua Guide</h1> \r\n <p>\r\n You can Näytä the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>Apua guide</b>, it contains the <b>documentation</b> for the seo panel Työkalut,Laajennukset and related Ominaisuudet.\r\n <br>It is the best place in internet to <b>get Apua</b> about seo panel. We hope that you <b>contribute</b> to the seo panel Apua guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel Apua guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Foorumi</h1> \r\n <p>\r\n A place to discuss about world''s Ensimmäinen Avaa source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your Verkkosivustot. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel Foorumi</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2025-11-21 00:59:35'),
(30066, 'fi', 'support', 'support_cont3', '<fieldset>\r\n<legend>Lahjoita to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Lahjoita to Seo Panel - Ensimmäinen Avaa source seo control panel in the world</h1> \r\n <p>\r\n <b>Lahjoita</b> to seo panel to support Ensimmäinen Avaa source seo control panel in the world.\r\n We are planning to <b>Lisää and improve</b> Ominaisuudet of seo panel in future. \r\n <br>With Kaikki your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please Lahjoita some amount to seo panel team.\r\n <br>We will <b>publish</b> your Nimi and site Tiedot in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to Lahjoita to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2025-11-21 00:59:35'),
(30067, 'fi', 'theme', 'Download Seo Panel Themes', 'Lataa Seo Panel Themes', '2025-11-21 00:59:35'),
(30068, 'fi', 'user', 'Edit User', 'Muokkaa käyttäjää', '2025-11-21 00:59:35'),
(30069, 'fi', 'user', 'Expiry Date', 'Expiry Päivämäärä', '2025-11-21 00:59:35'),
(30070, 'fi', 'user', 'Saved My Profile Details', 'Tallennettu My Profiili Tiedot', '2025-11-21 00:59:35'),
(30071, 'fi', 'webmaster', 'Average Position', 'Average Asema', '2025-11-21 00:59:35'),
(30072, 'fi', 'webmaster', 'Click here to connect to your google account', 'Klikkaa tästä to connect to your google Tili', '2025-11-21 00:59:35'),
(30073, 'fi', 'webmaster', 'Error: Google api connection failed', 'Virhe: Google api connection Epäonnistui', '2025-11-21 00:59:35'),
(30074, 'fi', 'website', 'Add to Webmaster Tools', 'Lisää to Webmaster-työkalut', '2025-11-21 00:59:35'),
(30075, 'fi', 'website', 'Click here to get Google Analytics View Id', 'Klikkaa tästä to get Google Analytiikka Näytä Id', '2025-11-21 00:59:35'),
(30076, 'fi', 'website', 'Edit Website', 'Muokkaa verkkosivustoa', '2025-11-21 00:59:35'),
(30077, 'fi', 'website', 'Google Analytics Property', 'Google Analytiikka Property', '2025-11-21 00:59:35'),
(30078, 'fi', 'website', 'Google Analytics View Id', 'Google Analytiikka Näytä Id', '2025-11-21 00:59:35'),
(30079, 'fi', 'website', 'Please enter CSV file', 'Please enter CSV file', '2025-11-21 00:59:35'),
(30080, 'fi', 'website', 'plscrtwebsite', 'Please Luo a Verkkosivusto before Aloita to using SEO-työkalut and SEO-laajennukset.', '2025-11-21 00:59:35'),
(30081, 'fi', 'website', 'Sitemap successfully added to webmaster tools', 'Sivustokartta Onnistuneesti Lisätty to Webmaster-työkalut', '2025-11-21 00:59:35'),
(30082, 'fi', 'website', 'Successfully deleted sitemap from webmaster tools', 'Onnistuneesti Poistettu Sivustokartta Alkaen Webmaster-työkalut', '2025-11-21 00:59:35'),
(30083, 'fi', 'website', 'Successfully imported following websites', 'Onnistuneesti imported following Verkkosivustot', '2025-11-21 00:59:35'),
(30084, 'fi', 'website', 'Successfully sync sitemaps from webmaster tools', 'Onnistuneesti sync sitemaps Alkaen Webmaster-työkalut', '2025-11-21 00:59:35'),
(30085, 'fi', 'website', 'Sync Google Analytics Properties', 'Sync Google Analytiikka Properties', '2025-11-21 00:59:35');
INSERT INTO `texts` VALUES
(30086, 'fi', 'website', 'User Type already exist', 'Käyttäjä Tyyppi already exist', '2025-11-21 00:59:35'),
(30087, 'fi', 'website', 'Website already exist', 'Verkkosivusto already exist', '2025-11-21 00:59:35'),
(30088, 'fi', 'website', 'Website CSV File', 'Verkkosivusto CSV File', '2025-11-21 00:59:35'),
(30089, 'fi', 'website', 'Website successfully added to webmaster tools', 'Verkkosivusto Onnistuneesti Lisätty to Webmaster-työkalut', '2025-11-21 00:59:35'),
(30090, 'fi', 'website', 'You can add only websitecount websites more', 'You can Lisää only [websitecount] Verkkosivustot for this Käyttäjä!', '2025-11-21 00:59:35'),
(30091, 'fi', 'website', 'Your website count already reached the limit', 'Verkkosivusto Määrä already reached the limit for this Käyttäjä!', '2025-11-21 00:59:35'),
(30092, 'fi', 'website', 'yourwebalreday', 'your Verkkosivusto if you have already Luotu one.', '2025-11-21 00:59:35'),
(30731, 'hr', 'siteauditor', 'Check Score', 'Check Ocjena', '2025-11-21 01:00:22'),
(30732, 'hr', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will increase the execution time of a project', '2025-11-21 01:00:22'),
(30733, 'hr', 'siteauditor', 'Completed project execution', 'Završeno project execution', '2025-11-21 01:00:22'),
(30734, 'hr', 'siteauditor', 'Crawled', 'Indeksirano', '2025-11-21 01:00:22'),
(30735, 'hr', 'siteauditor', 'Crawled Pages', 'Indeksirano Pages', '2025-11-21 01:00:22'),
(30736, 'hr', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'Indeksirano Uspješno! Waiting for crawling Sljedeće page for', '2025-11-21 01:00:22'),
(30737, 'hr', 'siteauditor', 'Crawling Page', 'Crawling Page', '2025-11-21 01:00:22'),
(30738, 'hr', 'siteauditor', 'Duplicate Description', 'Duplicate Opis', '2025-11-21 01:00:22'),
(30739, 'hr', 'siteauditor', 'Duplicate Keywords', 'Duplicate Ključne riječi', '2025-11-21 01:00:22'),
(30740, 'hr', 'siteauditor', 'Duplicate Title', 'Duplicate Naslov', '2025-11-21 01:00:22'),
(30741, 'hr', 'siteauditor', 'Exclude links', 'Exclude links', '2025-11-21 01:00:22'),
(30742, 'hr', 'siteauditor', 'Execute with cron', 'Execute with cron', '2025-11-21 01:00:22'),
(30743, 'hr', 'siteauditor', 'External', 'External', '2025-11-21 01:00:22'),
(30744, 'hr', 'siteauditor', 'External Links', 'External Links', '2025-11-21 01:00:22'),
(30745, 'hr', 'siteauditor', 'Import Project Links', 'Uvezi Project Links', '2025-11-21 01:00:22'),
(30746, 'hr', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2025-11-21 01:00:22'),
(30747, 'hr', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links Od the Izvješća', '2025-11-21 01:00:22'),
(30748, 'hr', 'siteauditor', 'Link Reports', 'Link Izvješća', '2025-11-21 01:00:22'),
(30749, 'hr', 'siteauditor', 'Link Title', 'Link Naslov', '2025-11-21 01:00:22'),
(30750, 'hr', 'siteauditor', 'Maximum number of pages to be checked', 'Maximum number of pages to be Provjereno', '2025-11-21 01:00:22'),
(30751, 'hr', 'siteauditor', 'Maximum Pages', 'Maximum Pages', '2025-11-21 01:00:22'),
(30752, 'hr', 'siteauditor', 'No active projects found', 'No Aktivan projects found', '2025-11-21 01:00:22'),
(30753, 'hr', 'siteauditor', 'Nofollow', 'Nofollow', '2025-11-21 01:00:22'),
(30754, 'hr', 'siteauditor', 'Number of pages is greater than', 'Number of pages is greater than', '2025-11-21 01:00:22'),
(30755, 'hr', 'siteauditor', 'Number of pages should be greater than', 'Number of pages should be greater than', '2025-11-21 01:00:22'),
(30756, 'hr', 'siteauditor', 'Page Details', 'Page Detalji', '2025-11-21 01:00:22'),
(30757, 'hr', 'siteauditor', 'Page Link', 'Page Link', '2025-11-21 01:00:22'),
(30758, 'hr', 'siteauditor', 'Page Links', 'Page Links', '2025-11-21 01:00:22'),
(30759, 'hr', 'siteauditor', 'Pages Found', 'Pages Found', '2025-11-21 01:00:22'),
(30760, 'hr', 'siteauditor', 'pressescapetostopexecution', 'Press <b>escape</b> key to stop execution of script', '2025-11-21 01:00:22'),
(30761, 'hr', 'siteauditor', 'Project Summary', 'Project Summary', '2025-11-21 01:00:22'),
(30762, 'hr', 'siteauditor', 'Project Url', 'Project URL', '2025-11-21 01:00:22'),
(30763, 'hr', 'siteauditor', 'projectalreadyexist', 'Project for this Web stranica already exist', '2025-11-21 01:00:22'),
(30764, 'hr', 'siteauditor', 'Recheck Pages', 'Recheck Pages', '2025-11-21 01:00:22'),
(30765, 'hr', 'siteauditor', 'Report Summary', 'Izvješće Summary', '2025-11-21 01:00:22'),
(30766, 'hr', 'siteauditor', 'Run Project', 'Run Project', '2025-11-21 01:00:22'),
(30767, 'hr', 'siteauditor', 'should start with', 'should Početak with', '2025-11-21 01:00:22'),
(30768, 'hr', 'siteauditor', 'Site Auditor Settings', 'Revizor web stranice Postavke', '2025-11-21 01:00:22'),
(30769, 'hr', 'siteauditor', 'Store all links found in a page', 'Store Sve links found in a page', '2025-11-21 01:00:22'),
(30770, 'hr', 'siteauditor', 'The page description length is not between', 'The page Opis length is not between', '2025-11-21 01:00:22'),
(30771, 'hr', 'siteauditor', 'The page is brocken', 'The page is broken', '2025-11-21 01:00:22'),
(30772, 'hr', 'siteauditor', 'The page is having excellent page authority value', 'The page has excellent Autoritet stranice Vrijednost', '2025-11-21 01:00:22'),
(30773, 'hr', 'siteauditor', 'The page is having exellent number of backlinks in', 'The page has excellent number of Povratne poveznice in', '2025-11-21 01:00:22'),
(30774, 'hr', 'siteauditor', 'The page is having exellent pagerank', 'The page has excellent pagerank', '2025-11-21 01:00:22'),
(30775, 'hr', 'siteauditor', 'The page is having good number of backlinks in', 'The page has good number of Povratne poveznice in', '2025-11-21 01:00:22'),
(30776, 'hr', 'siteauditor', 'The page is having good page authority value', 'The page has good Autoritet stranice Vrijednost', '2025-11-21 01:00:22'),
(30777, 'hr', 'siteauditor', 'The page is having good pagerank', 'The page has good pagerank', '2025-11-21 01:00:22'),
(30778, 'hr', 'siteauditor', 'The page is having poor page authority value', 'The page has poor Autoritet stranice Vrijednost', '2025-11-21 01:00:22'),
(30779, 'hr', 'siteauditor', 'The page is having poor pagerank', 'The page has poor pagerank', '2025-11-21 01:00:22'),
(30780, 'hr', 'siteauditor', 'The page is having very good page authority value', 'The page has very good Autoritet stranice Vrijednost', '2025-11-21 01:00:22'),
(30781, 'hr', 'siteauditor', 'The page is having very good pagerank', 'The page has very good pagerank', '2025-11-21 01:00:22'),
(30782, 'hr', 'siteauditor', 'The page is not having backlinks in', 'The page does not have Povratne poveznice in', '2025-11-21 01:00:22'),
(30783, 'hr', 'siteauditor', 'The page is not indexed in', 'The page is not indexed in', '2025-11-21 01:00:22'),
(30784, 'hr', 'siteauditor', 'The page keywords length is not between', 'The page Ključne riječi length is not between', '2025-11-21 01:00:22'),
(30785, 'hr', 'siteauditor', 'The page title length is not between', 'The page Naslov length is not between', '2025-11-21 01:00:22'),
(30786, 'hr', 'siteauditor', 'The total number of links in page is greater than', 'The Ukupno number of links in page is greater than\r\n', '2025-11-21 01:00:22'),
(30787, 'hr', 'siteauditor', 'to run project again if you stopped execution', 'to run project again if you stopped execution', '2025-11-21 01:00:22'),
(30788, 'hr', 'siteauditor', 'to view the reports', 'to Prikaži the Izvješća', '2025-11-21 01:00:22'),
(30789, 'hr', 'siteauditor', 'Total Links', 'Ukupno Links', '2025-11-21 01:00:22'),
(30790, 'hr', 'siteauditor', 'totallinksgreaterallowed', 'Ukupno links will become greater than maximum links allowed to the project', '2025-11-21 01:00:22'),
(30791, 'hr', 'sitemap', 'Change frequency', 'Change frequency', '2025-11-21 01:00:22'),
(30792, 'hr', 'sitemap', 'clickproceedsitemap', 'Kliknite na <b>Nastavi</b> to Kreiraj Karta stranice file', '2025-11-21 01:00:22'),
(30793, 'hr', 'sitemap', 'Download sitemap file from', 'Preuzmi Karta stranice file Od', '2025-11-21 01:00:22'),
(30794, 'hr', 'sitemap', 'Downloaded', 'Downloaded', '2025-11-21 01:00:22'),
(30795, 'hr', 'sitemap', 'Exclude Url', 'Exclude URL', '2025-11-21 01:00:22'),
(30796, 'hr', 'sitemap', 'processtaketime', 'This process will take time according to number of links in your site. Molimo pričekajte to get Karta stranice files', '2025-11-21 01:00:22'),
(30797, 'hr', 'sitemap', 'Sitemap Type', 'Karta stranice Vrsta', '2025-11-21 01:00:22'),
(30798, 'hr', 'sitemap', 'Submitted', 'Submitted', '2025-11-21 01:00:22'),
(30799, 'hr', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2025-11-21 01:00:22'),
(30800, 'hr', 'socialmedia', 'Click here to get LinkedIn Company Id', 'Kliknite ovdje to get LinkedIn Company Id', '2025-11-21 01:00:22'),
(30801, 'hr', 'socialmedia', 'Company Id', 'Company Id', '2025-11-21 01:00:22'),
(30802, 'hr', 'socialmedia', 'Edit Social Media Link', 'Uredi Društveni mediji Link', '2025-11-21 01:00:22'),
(30803, 'hr', 'socialmedia', 'New Social Media Link', 'Novo Društveni mediji Link', '2025-11-21 01:00:22'),
(30804, 'hr', 'socialmedia', 'Your social media link count already reached the limit', 'Your Društveni mediji link Broj already reached the limit', '2025-11-21 01:00:22'),
(30805, 'hr', 'subscription', 'Access Type', 'Access Vrsta', '2025-11-21 01:00:22'),
(30806, 'hr', 'subscription', 'account-expired', 'Your Račun expired. Please renew your Pretplata.', '2025-11-21 01:00:22'),
(30807, 'hr', 'subscription', 'Amount', 'Amount', '2025-11-21 01:00:22'),
(30808, 'hr', 'subscription', 'click-activate-pay-plugin', 'Kliknite ovdje to Aktiviraj payment Dodatak', '2025-11-21 01:00:22'),
(30809, 'hr', 'subscription', 'Currency', 'Currency', '2025-11-21 01:00:22'),
(30810, 'hr', 'subscription', 'Directory Submit Daily Limit', 'Daily Slanje u direktorij Limit', '2025-11-21 01:00:22'),
(30811, 'hr', 'subscription', 'Directory Submit Limit', 'Slanje u direktorij Limit', '2025-11-21 01:00:22'),
(30812, 'hr', 'subscription', 'Edit Email Template', 'Uredi E-pošta Template', '2025-11-21 01:00:22'),
(30813, 'hr', 'subscription', 'Edit Payment Gateway', 'Uredi Payment Gateway', '2025-11-21 01:00:22'),
(30814, 'hr', 'subscription', 'Email Template Manager', 'E-pošta Template Upravitelj', '2025-11-21 01:00:22'),
(30815, 'hr', 'subscription', 'enable_email_activation', 'Enable E-pošta Activation', '2025-11-21 01:00:22'),
(30816, 'hr', 'subscription', 'free_trial_period', 'Free Trial Period', '2025-11-21 01:00:22'),
(30817, 'hr', 'subscription', 'infinite_limit_text', '<b>Note</b>: Enter -1 for infinite limit', '2025-11-21 01:00:22'),
(30818, 'hr', 'subscription', 'internal-error-payment', 'Internal Greška occured during payment processing.', '2025-11-21 01:00:22'),
(30819, 'hr', 'subscription', 'Keyword Limit', 'Ključna riječ Limit', '2025-11-21 01:00:22'),
(30820, 'hr', 'subscription', 'Order Id', 'Order Id', '2025-11-21 01:00:22'),
(30821, 'hr', 'subscription', 'Orders', 'Orders', '2025-11-21 01:00:22'),
(30822, 'hr', 'subscription', 'Paid By', 'Paid By', '2025-11-21 01:00:22'),
(30823, 'hr', 'subscription', 'Payment Gateway Manager', 'Payment Gateway Upravitelj', '2025-11-21 01:00:22'),
(30824, 'hr', 'subscription', 'Payment Method', 'Payment Method', '2025-11-21 01:00:22'),
(30825, 'hr', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2025-11-21 01:00:22'),
(30826, 'hr', 'subscription', 'Plugin Access Settings', 'Dodatak Access Postavke', '2025-11-21 01:00:22'),
(30827, 'hr', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business E-pošta', '2025-11-21 01:00:22'),
(30828, 'hr', 'subscription', 'PP_TOKEN', 'Paypal Token', '2025-11-21 01:00:22'),
(30829, 'hr', 'subscription', 'Quantity', 'Quantity', '2025-11-21 01:00:22'),
(30830, 'hr', 'subscription', 'Renew Subscription', 'Renew Pretplata', '2025-11-21 01:00:22'),
(30831, 'hr', 'subscription', 'Review Link Count', 'Recenzija Link Broj', '2025-11-21 01:00:22'),
(30832, 'hr', 'subscription', 'Sandbox', 'Sandbox', '2025-11-21 01:00:22'),
(30833, 'hr', 'subscription', 'Seo Tools Access Settings', 'SEO alati Access Postavke', '2025-11-21 01:00:22'),
(30834, 'hr', 'subscription', 'site_auditor_max_page_limit', 'Revizor web stranice Maximum Page Limit', '2025-11-21 01:00:22'),
(30835, 'hr', 'subscription', 'Social Media Link Count', 'Društveni mediji Link Broj', '2025-11-21 01:00:22'),
(30836, 'hr', 'subscription', 'SP_PAYMENT_PLUGIN', 'Default Payment Dodatak', '2025-11-21 01:00:22'),
(30837, 'hr', 'subscription', 'Subscribe', 'Pretplati se', '2025-11-21 01:00:22'),
(30838, 'hr', 'subscription', 'Subscription', 'Pretplata', '2025-11-21 01:00:22'),
(30839, 'hr', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Notification(After)', '2025-11-21 01:00:22'),
(30840, 'hr', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2025-11-21 01:00:22'),
(30841, 'hr', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2025-11-21 01:00:22'),
(30842, 'hr', 'subscription', 'Term', 'Term', '2025-11-21 01:00:22'),
(30843, 'hr', 'subscription', 'total_count_greater_account_limit', 'Ukupno Broj is greater than Račun limit - [limit]', '2025-11-21 01:00:22'),
(30844, 'hr', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Slanje u direktorij Broj is greater than Račun limit - [limit]', '2025-11-21 01:00:22'),
(30845, 'hr', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Slanje u direktorij Broj is greater than daily Račun limit - [limit]', '2025-11-21 01:00:22'),
(30846, 'hr', 'subscription', 'Transaction Id', 'Transaction Id', '2025-11-21 01:00:22'),
(30847, 'hr', 'subscription', 'Transaction Log', 'Transaction Log', '2025-11-21 01:00:22'),
(30848, 'hr', 'subscription', 'transaction-success', 'Your transaction processed Uspješno.', '2025-11-21 01:00:22'),
(30849, 'hr', 'subscription', 'View Order', 'Prikaži Order', '2025-11-21 01:00:22'),
(30850, 'hr', 'subscription', 'Website Limit', 'Web stranica Limit', '2025-11-21 01:00:22'),
(30851, 'hr', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2025-11-21 01:00:22'),
(30852, 'hr', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel All Plugin Tool kit</h1> \r\n <p>\r\n It includes most of the plugins developed by seo panel team for just <font class="success bold" size="14">$160</font> includes <b>Membership Subscription</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Search Engines Package</h1> \r\n <p>\r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to provide us required search engine domain list.\r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> seo plugins for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and we will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact Us</h1> \r\n <p>\r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and features</b>. Eg: To set up cron for keyword position checker.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Report Bugs</h1> \r\n <p>\r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2025-11-21 01:00:22'),
(30853, 'hr', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Help Guide</h1> \r\n <p>\r\n You can view the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>help guide</b>, it contains the <b>documentation</b> for the seo panel tools,plugins and related features.\r\n <br>It is the best place in internet to <b>get help</b> about seo panel. We hope that you <b>contribute</b> to the seo panel help guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel help guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n A place to discuss about world''s first open source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your websites. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel forum</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2025-11-21 01:00:22'),
(30854, 'hr', 'support', 'support_cont3', '<fieldset>\r\n<legend>Donate to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Donate to Seo Panel - First Open source seo control panel in the world</h1> \r\n <p>\r\n <b>Donate</b> to seo panel to support first open source seo control panel in the world.\r\n We are planning to <b>add and improve</b> features of seo panel in future. \r\n <br>With all your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please donate some amount to seo panel team.\r\n <br>We will <b>publish</b> your name and site information in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2025-11-21 01:00:22'),
(30855, 'hr', 'theme', 'Download Seo Panel Themes', 'Preuzmi Seo Panel Themes', '2025-11-21 01:00:22'),
(30856, 'hr', 'user', 'Edit User', 'Uredi korisnika', '2025-11-21 01:00:22'),
(30857, 'hr', 'user', 'Expiry Date', 'Expiry Datum', '2025-11-21 01:00:22'),
(30858, 'hr', 'user', 'Saved My Profile Details', 'Spremljeno My Profil Detalji', '2025-11-21 01:00:22'),
(30859, 'hr', 'webmaster', 'Average Position', 'Average Pozicija', '2025-11-21 01:00:22'),
(30860, 'hr', 'webmaster', 'Click here to connect to your google account', 'Kliknite ovdje to connect to your google Račun', '2025-11-21 01:00:22'),
(30861, 'hr', 'webmaster', 'Error: Google api connection failed', 'Greška: Google api connection Neuspjelo', '2025-11-21 01:00:22'),
(30862, 'hr', 'website', 'Add to Webmaster Tools', 'Dodaj to Webmaster alati', '2025-11-21 01:00:22'),
(30863, 'hr', 'website', 'Click here to get Google Analytics View Id', 'Kliknite ovdje to get Google Analitika Prikaži Id', '2025-11-21 01:00:22'),
(30864, 'hr', 'website', 'Edit Website', 'Uredi web stranicu', '2025-11-21 01:00:22'),
(30865, 'hr', 'website', 'Google Analytics Property', 'Google Analitika Property', '2025-11-21 01:00:22'),
(30866, 'hr', 'website', 'Google Analytics View Id', 'Google Analitika Prikaži Id', '2025-11-21 01:00:22'),
(30867, 'hr', 'website', 'Please enter CSV file', 'Please enter CSV file', '2025-11-21 01:00:22'),
(30868, 'hr', 'website', 'plscrtwebsite', 'Please Kreiraj a Web stranica before Početak to using SEO alati and SEO dodaci.', '2025-11-21 01:00:22'),
(30869, 'hr', 'website', 'Sitemap successfully added to webmaster tools', 'Karta stranice Uspješno Dodano to Webmaster alati', '2025-11-21 01:00:22'),
(30870, 'hr', 'website', 'Successfully deleted sitemap from webmaster tools', 'Uspješno Izbrisano Karta stranice Od Webmaster alati', '2025-11-21 01:00:22'),
(30871, 'hr', 'website', 'Successfully imported following websites', 'Uspješno imported following Web stranice', '2025-11-21 01:00:22'),
(30872, 'hr', 'website', 'Successfully sync sitemaps from webmaster tools', 'Uspješno sync sitemaps Od Webmaster alati', '2025-11-21 01:00:22'),
(30873, 'hr', 'website', 'Sync Google Analytics Properties', 'Sync Google Analitika Properties', '2025-11-21 01:00:22'),
(30874, 'hr', 'website', 'User Type already exist', 'Korisnik Vrsta already exist', '2025-11-21 01:00:22'),
(30875, 'hr', 'website', 'Website already exist', 'Web stranica already exist', '2025-11-21 01:00:22'),
(30876, 'hr', 'website', 'Website CSV File', 'Web stranica CSV File', '2025-11-21 01:00:22'),
(30877, 'hr', 'website', 'Website successfully added to webmaster tools', 'Web stranica Uspješno Dodano to Webmaster alati', '2025-11-21 01:00:22'),
(30878, 'hr', 'website', 'You can add only websitecount websites more', 'You can Dodaj only [websitecount] Web stranice for this Korisnik!', '2025-11-21 01:00:22'),
(30879, 'hr', 'website', 'Your website count already reached the limit', 'Web stranica Broj already reached the limit for this Korisnik!', '2025-11-21 01:00:22'),
(30880, 'hr', 'website', 'yourwebalreday', 'your Web stranica if you have already Kreirano one.', '2025-11-21 01:00:22'),
(31571, 'ca', 'siteauditor', 'The page is not indexed in', 'The page is not indexed in', '2025-11-21 01:03:34'),
(31572, 'ca', 'siteauditor', 'The page keywords length is not between', 'The page Paraules clau length is not between', '2025-11-21 01:03:34'),
(31573, 'ca', 'siteauditor', 'The page title length is not between', 'The page Títol length is not between', '2025-11-21 01:03:34'),
(31574, 'ca', 'siteauditor', 'The total number of links in page is greater than', 'The Total number of links in page is greater than\r\n', '2025-11-21 01:03:34'),
(31575, 'ca', 'siteauditor', 'to run project again if you stopped execution', 'to run project again if you stopped execution', '2025-11-21 01:03:34'),
(31576, 'ca', 'siteauditor', 'to view the reports', 'to Veure the Informes', '2025-11-21 01:03:34'),
(31577, 'ca', 'siteauditor', 'Total Links', 'Total Links', '2025-11-21 01:03:34'),
(31578, 'ca', 'siteauditor', 'totallinksgreaterallowed', 'Total links will become greater than maximum links allowed to the project', '2025-11-21 01:03:34'),
(31579, 'ca', 'sitemap', 'Change frequency', 'Change frequency', '2025-11-21 01:03:34'),
(31580, 'ca', 'sitemap', 'clickproceedsitemap', 'Feu clic a <b>Continuar</b> to Crear Mapa del lloc file', '2025-11-21 01:03:34'),
(31581, 'ca', 'sitemap', 'Download sitemap file from', 'Descarregar Mapa del lloc file De', '2025-11-21 01:03:34'),
(31582, 'ca', 'sitemap', 'Downloaded', 'Downloaded', '2025-11-21 01:03:34'),
(31583, 'ca', 'sitemap', 'Exclude Url', 'Exclude URL', '2025-11-21 01:03:34'),
(31584, 'ca', 'sitemap', 'processtaketime', 'This process will take time according to number of links in your site. Si us plau, espereu to get Mapa del lloc files', '2025-11-21 01:03:34'),
(31585, 'ca', 'sitemap', 'Sitemap Type', 'Mapa del lloc Tipus', '2025-11-21 01:03:34'),
(31586, 'ca', 'sitemap', 'Submitted', 'Submitted', '2025-11-21 01:03:34'),
(31587, 'ca', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2025-11-21 01:03:34'),
(31588, 'ca', 'socialmedia', 'Click here to get LinkedIn Company Id', 'Feu clic aquí to get LinkedIn Company Id', '2025-11-21 01:03:34'),
(31589, 'ca', 'socialmedia', 'Company Id', 'Company Id', '2025-11-21 01:03:34'),
(31590, 'ca', 'socialmedia', 'Edit Social Media Link', 'Editar Xarxes socials Link', '2025-11-21 01:03:34'),
(31591, 'ca', 'socialmedia', 'New Social Media Link', 'Nou Xarxes socials Link', '2025-11-21 01:03:34'),
(31592, 'ca', 'socialmedia', 'Your social media link count already reached the limit', 'Your Xarxes socials link Recompte already reached the limit', '2025-11-21 01:03:34'),
(31593, 'ca', 'subscription', 'Access Type', 'Access Tipus', '2025-11-21 01:03:34'),
(31594, 'ca', 'subscription', 'account-expired', 'Your Compte expired. Please renew your Subscripció.', '2025-11-21 01:03:34'),
(31595, 'ca', 'subscription', 'Amount', 'Amount', '2025-11-21 01:03:34'),
(31596, 'ca', 'subscription', 'click-activate-pay-plugin', 'Feu clic aquí to Activar payment Complement', '2025-11-21 01:03:34'),
(31597, 'ca', 'subscription', 'Currency', 'Currency', '2025-11-21 01:03:34'),
(31598, 'ca', 'subscription', 'Directory Submit Daily Limit', 'Daily Enviament a directoris Limit', '2025-11-21 01:03:34'),
(31599, 'ca', 'subscription', 'Directory Submit Limit', 'Enviament a directoris Limit', '2025-11-21 01:03:34'),
(31600, 'ca', 'subscription', 'Edit Email Template', 'Editar Correu electrònic Template', '2025-11-21 01:03:34'),
(31601, 'ca', 'subscription', 'Edit Payment Gateway', 'Editar Payment Gateway', '2025-11-21 01:03:34'),
(31602, 'ca', 'subscription', 'Email Template Manager', 'Correu electrònic Template Gestor', '2025-11-21 01:03:34'),
(31603, 'ca', 'subscription', 'enable_email_activation', 'Enable Correu electrònic Activation', '2025-11-21 01:03:34'),
(31604, 'ca', 'subscription', 'free_trial_period', 'Free Trial Period', '2025-11-21 01:03:34'),
(31605, 'ca', 'subscription', 'infinite_limit_text', '<b>Note</b>: Enter -1 for infinite limit', '2025-11-21 01:03:34'),
(31606, 'ca', 'subscription', 'internal-error-payment', 'Internal Error occured during payment processing.', '2025-11-21 01:03:34'),
(31607, 'ca', 'subscription', 'Keyword Limit', 'Paraula clau Limit', '2025-11-21 01:03:34'),
(31608, 'ca', 'subscription', 'Order Id', 'Order Id', '2025-11-21 01:03:34'),
(31609, 'ca', 'subscription', 'Orders', 'Orders', '2025-11-21 01:03:34'),
(31610, 'ca', 'subscription', 'Paid By', 'Paid By', '2025-11-21 01:03:34'),
(31611, 'ca', 'subscription', 'Payment Gateway Manager', 'Payment Gateway Gestor', '2025-11-21 01:03:34'),
(31612, 'ca', 'subscription', 'Payment Method', 'Payment Method', '2025-11-21 01:03:34'),
(31613, 'ca', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2025-11-21 01:03:34'),
(31614, 'ca', 'subscription', 'Plugin Access Settings', 'Complement Access Configuració', '2025-11-21 01:03:34'),
(31615, 'ca', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business Correu electrònic', '2025-11-21 01:03:34'),
(31616, 'ca', 'subscription', 'PP_TOKEN', 'Paypal Token', '2025-11-21 01:03:34'),
(31617, 'ca', 'subscription', 'Quantity', 'Quantity', '2025-11-21 01:03:34'),
(31618, 'ca', 'subscription', 'Renew Subscription', 'Renew Subscripció', '2025-11-21 01:03:34'),
(31619, 'ca', 'subscription', 'Review Link Count', 'Ressenya Link Recompte', '2025-11-21 01:03:34'),
(31620, 'ca', 'subscription', 'Sandbox', 'Sandbox', '2025-11-21 01:03:34'),
(31621, 'ca', 'subscription', 'Seo Tools Access Settings', 'Eines SEO Access Configuració', '2025-11-21 01:03:34'),
(31622, 'ca', 'subscription', 'site_auditor_max_page_limit', 'Auditor del lloc Maximum Page Limit', '2025-11-21 01:03:34'),
(31623, 'ca', 'subscription', 'Social Media Link Count', 'Xarxes socials Link Recompte', '2025-11-21 01:03:34'),
(31624, 'ca', 'subscription', 'SP_PAYMENT_PLUGIN', 'Default Payment Complement', '2025-11-21 01:03:34'),
(31625, 'ca', 'subscription', 'Subscribe', 'Subscriure''s', '2025-11-21 01:03:34'),
(31626, 'ca', 'subscription', 'Subscription', 'Subscripció', '2025-11-21 01:03:34'),
(31627, 'ca', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Notification(After)', '2025-11-21 01:03:34'),
(31628, 'ca', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2025-11-21 01:03:34'),
(31629, 'ca', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2025-11-21 01:03:34'),
(31630, 'ca', 'subscription', 'Term', 'Term', '2025-11-21 01:03:34'),
(31631, 'ca', 'subscription', 'total_count_greater_account_limit', 'Total Recompte is greater than Compte limit - [limit]', '2025-11-21 01:03:34'),
(31632, 'ca', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Enviament a directoris Recompte is greater than Compte limit - [limit]', '2025-11-21 01:03:34'),
(31633, 'ca', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Enviament a directoris Recompte is greater than daily Compte limit - [limit]', '2025-11-21 01:03:34'),
(31634, 'ca', 'subscription', 'Transaction Id', 'Transaction Id', '2025-11-21 01:03:34'),
(31635, 'ca', 'subscription', 'Transaction Log', 'Transaction Log', '2025-11-21 01:03:34'),
(31636, 'ca', 'subscription', 'transaction-success', 'Your transaction processed Correctament.', '2025-11-21 01:03:34'),
(31637, 'ca', 'subscription', 'View Order', 'Veure Order', '2025-11-21 01:03:34'),
(31638, 'ca', 'subscription', 'Website Limit', 'Lloc web Limit', '2025-11-21 01:03:34'),
(31639, 'ca', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2025-11-21 01:03:34'),
(31640, 'ca', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel All Plugin Tool kit</h1> \r\n <p>\r\n It includes most of the plugins developed by seo panel team for just <font class="success bold" size="14">$160</font> includes <b>Membership Subscription</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Search Engines Package</h1> \r\n <p>\r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to provide us required search engine domain list.\r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> seo plugins for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and we will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact Us</h1> \r\n <p>\r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and features</b>. Eg: To set up cron for keyword position checker.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Report Bugs</h1> \r\n <p>\r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2025-11-21 01:03:34'),
(31641, 'ca', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Help Guide</h1> \r\n <p>\r\n You can view the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>help guide</b>, it contains the <b>documentation</b> for the seo panel tools,plugins and related features.\r\n <br>It is the best place in internet to <b>get help</b> about seo panel. We hope that you <b>contribute</b> to the seo panel help guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel help guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n A place to discuss about world''s first open source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your websites. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel forum</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2025-11-21 01:03:34'),
(31642, 'ca', 'support', 'support_cont3', '<fieldset>\r\n<legend>Donate to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Donate to Seo Panel - First Open source seo control panel in the world</h1> \r\n <p>\r\n <b>Donate</b> to seo panel to support first open source seo control panel in the world.\r\n We are planning to <b>add and improve</b> features of seo panel in future. \r\n <br>With all your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please donate some amount to seo panel team.\r\n <br>We will <b>publish</b> your name and site information in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2025-11-21 01:03:34'),
(31643, 'ca', 'theme', 'Download Seo Panel Themes', 'Descarregar Seo Panel Themes', '2025-11-21 01:03:34'),
(31644, 'ca', 'user', 'Edit User', 'Editar usuari', '2025-11-21 01:03:34'),
(31645, 'ca', 'user', 'Expiry Date', 'Expiry Data', '2025-11-21 01:03:34'),
(31646, 'ca', 'user', 'Saved My Profile Details', 'Desat My Perfil Detalls', '2025-11-21 01:03:34'),
(31647, 'ca', 'webmaster', 'Average Position', 'Average Posició', '2025-11-21 01:03:34'),
(31648, 'ca', 'webmaster', 'Click here to connect to your google account', 'Feu clic aquí to connect to your google Compte', '2025-11-21 01:03:34'),
(31649, 'ca', 'webmaster', 'Error: Google api connection failed', 'Error: Google api connection Fallat', '2025-11-21 01:03:34'),
(31650, 'ca', 'website', 'Add to Webmaster Tools', 'Afegir to Eines de Webmaster', '2025-11-21 01:03:34'),
(31651, 'ca', 'website', 'Click here to get Google Analytics View Id', 'Feu clic aquí to get Google Analítiques Veure Id', '2025-11-21 01:03:34'),
(31652, 'ca', 'website', 'Edit Website', 'Editar lloc web', '2025-11-21 01:03:34'),
(31653, 'ca', 'website', 'Google Analytics Property', 'Google Analítiques Property', '2025-11-21 01:03:34'),
(31654, 'ca', 'website', 'Google Analytics View Id', 'Google Analítiques Veure Id', '2025-11-21 01:03:34'),
(31655, 'ca', 'website', 'Please enter CSV file', 'Please enter CSV file', '2025-11-21 01:03:34'),
(31656, 'ca', 'website', 'plscrtwebsite', 'Please Crear a Lloc web before Iniciar to using Eines SEO and Complements SEO.', '2025-11-21 01:03:34'),
(31657, 'ca', 'website', 'Sitemap successfully added to webmaster tools', 'Mapa del lloc Correctament Afegit to Eines de Webmaster', '2025-11-21 01:03:34'),
(31658, 'ca', 'website', 'Successfully deleted sitemap from webmaster tools', 'Correctament Eliminat Mapa del lloc De Eines de Webmaster', '2025-11-21 01:03:34'),
(31659, 'ca', 'website', 'Successfully imported following websites', 'Correctament imported following Llocs web', '2025-11-21 01:03:34'),
(31660, 'ca', 'website', 'Successfully sync sitemaps from webmaster tools', 'Correctament sync sitemaps De Eines de Webmaster', '2025-11-21 01:03:34'),
(31661, 'ca', 'website', 'Sync Google Analytics Properties', 'Sync Google Analítiques Properties', '2025-11-21 01:03:34'),
(31662, 'ca', 'website', 'User Type already exist', 'Usuari Tipus already exist', '2025-11-21 01:03:34'),
(31663, 'ca', 'website', 'Website already exist', 'Lloc web already exist', '2025-11-21 01:03:34'),
(31664, 'ca', 'website', 'Website CSV File', 'Lloc web CSV File', '2025-11-21 01:03:34'),
(31665, 'ca', 'website', 'Website successfully added to webmaster tools', 'Lloc web Correctament Afegit to Eines de Webmaster', '2025-11-21 01:03:34'),
(31666, 'ca', 'website', 'You can add only websitecount websites more', 'You can Afegir only [websitecount] Llocs web for this Usuari!', '2025-11-21 01:03:34'),
(31667, 'ca', 'website', 'Your website count already reached the limit', 'Lloc web Recompte already reached the limit for this Usuari!', '2025-11-21 01:03:34'),
(31668, 'ca', 'website', 'yourwebalreday', 'your Lloc web if you have already Creat one.', '2025-11-21 01:03:34'),
(32307, 'bs', 'siteauditor', 'Check Score', 'Check Ocjena', '2025-11-21 01:07:03'),
(32308, 'bs', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will increase the execution time of a project', '2025-11-21 01:07:03'),
(32309, 'bs', 'siteauditor', 'Completed project execution', 'Završeno project execution', '2025-11-21 01:07:03'),
(32310, 'bs', 'siteauditor', 'Crawled', 'Indeksirano', '2025-11-21 01:07:03'),
(32311, 'bs', 'siteauditor', 'Crawled Pages', 'Indeksirano Pages', '2025-11-21 01:07:03'),
(32312, 'bs', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'Indeksirano Uspješno! Waiting for crawling Sljedeće page for', '2025-11-21 01:07:03'),
(32313, 'bs', 'siteauditor', 'Crawling Page', 'Crawling Page', '2025-11-21 01:07:03'),
(32314, 'bs', 'siteauditor', 'Duplicate Description', 'Duplicate Opis', '2025-11-21 01:07:03'),
(32315, 'bs', 'siteauditor', 'Duplicate Keywords', 'Duplicate Ključne riječi', '2025-11-21 01:07:03'),
(32316, 'bs', 'siteauditor', 'Duplicate Title', 'Duplicate Naslov', '2025-11-21 01:07:03'),
(32317, 'bs', 'siteauditor', 'Exclude links', 'Exclude links', '2025-11-21 01:07:03'),
(32318, 'bs', 'siteauditor', 'Execute with cron', 'Execute with cron', '2025-11-21 01:07:03'),
(32319, 'bs', 'siteauditor', 'External', 'External', '2025-11-21 01:07:03'),
(32320, 'bs', 'siteauditor', 'External Links', 'External Links', '2025-11-21 01:07:03'),
(32321, 'bs', 'siteauditor', 'Import Project Links', 'Uvezi Project Links', '2025-11-21 01:07:03'),
(32322, 'bs', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2025-11-21 01:07:03'),
(32323, 'bs', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links Od the Izvještaji', '2025-11-21 01:07:03'),
(32324, 'bs', 'siteauditor', 'Link Reports', 'Link Izvještaji', '2025-11-21 01:07:03'),
(32325, 'bs', 'siteauditor', 'Link Title', 'Link Naslov', '2025-11-21 01:07:03'),
(32326, 'bs', 'siteauditor', 'Maximum number of pages to be checked', 'Maximum number of pages to be Provjereno', '2025-11-21 01:07:03'),
(32327, 'bs', 'siteauditor', 'Maximum Pages', 'Maximum Pages', '2025-11-21 01:07:03'),
(32328, 'bs', 'siteauditor', 'No active projects found', 'No Aktivan projects found', '2025-11-21 01:07:03'),
(32329, 'bs', 'siteauditor', 'Nofollow', 'Nofollow', '2025-11-21 01:07:03'),
(32330, 'bs', 'siteauditor', 'Number of pages is greater than', 'Number of pages is greater than', '2025-11-21 01:07:03'),
(32331, 'bs', 'siteauditor', 'Number of pages should be greater than', 'Number of pages should be greater than', '2025-11-21 01:07:03'),
(32332, 'bs', 'siteauditor', 'Page Details', 'Page Detalji', '2025-11-21 01:07:03'),
(32333, 'bs', 'siteauditor', 'Page Link', 'Page Link', '2025-11-21 01:07:03'),
(32334, 'bs', 'siteauditor', 'Page Links', 'Page Links', '2025-11-21 01:07:03'),
(32335, 'bs', 'siteauditor', 'Pages Found', 'Pages Found', '2025-11-21 01:07:03'),
(32336, 'bs', 'siteauditor', 'pressescapetostopexecution', 'Press <b>escape</b> key to stop execution of script', '2025-11-21 01:07:03'),
(32337, 'bs', 'siteauditor', 'Project Summary', 'Project Summary', '2025-11-21 01:07:03'),
(32338, 'bs', 'siteauditor', 'Project Url', 'Project URL', '2025-11-21 01:07:03'),
(32339, 'bs', 'siteauditor', 'projectalreadyexist', 'Project for this Web stranica already exist', '2025-11-21 01:07:03'),
(32340, 'bs', 'siteauditor', 'Recheck Pages', 'Recheck Pages', '2025-11-21 01:07:03'),
(32341, 'bs', 'siteauditor', 'Report Summary', 'Izvještaj Summary', '2025-11-21 01:07:03'),
(32342, 'bs', 'siteauditor', 'Run Project', 'Run Project', '2025-11-21 01:07:03'),
(32343, 'bs', 'siteauditor', 'should start with', 'should Početak with', '2025-11-21 01:07:03'),
(32344, 'bs', 'siteauditor', 'Site Auditor Settings', 'Revizor web stranice Postavke', '2025-11-21 01:07:03'),
(32345, 'bs', 'siteauditor', 'Store all links found in a page', 'Store Sve links found in a page', '2025-11-21 01:07:03'),
(32346, 'bs', 'siteauditor', 'The page description length is not between', 'The page Opis length is not between', '2025-11-21 01:07:03'),
(32347, 'bs', 'siteauditor', 'The page is brocken', 'The page is broken', '2025-11-21 01:07:03'),
(32348, 'bs', 'siteauditor', 'The page is having excellent page authority value', 'The page has excellent Autoritet stranice Vrijednost', '2025-11-21 01:07:03'),
(32349, 'bs', 'siteauditor', 'The page is having exellent number of backlinks in', 'The page has excellent number of Povratni linkovi in', '2025-11-21 01:07:03'),
(32350, 'bs', 'siteauditor', 'The page is having exellent pagerank', 'The page has excellent pagerank', '2025-11-21 01:07:03'),
(32351, 'bs', 'siteauditor', 'The page is having good number of backlinks in', 'The page has good number of Povratni linkovi in', '2025-11-21 01:07:03'),
(32352, 'bs', 'siteauditor', 'The page is having good page authority value', 'The page has good Autoritet stranice Vrijednost', '2025-11-21 01:07:03'),
(32353, 'bs', 'siteauditor', 'The page is having good pagerank', 'The page has good pagerank', '2025-11-21 01:07:03'),
(32354, 'bs', 'siteauditor', 'The page is having poor page authority value', 'The page has poor Autoritet stranice Vrijednost', '2025-11-21 01:07:03'),
(32355, 'bs', 'siteauditor', 'The page is having poor pagerank', 'The page has poor pagerank', '2025-11-21 01:07:03'),
(32356, 'bs', 'siteauditor', 'The page is having very good page authority value', 'The page has very good Autoritet stranice Vrijednost', '2025-11-21 01:07:03'),
(32357, 'bs', 'siteauditor', 'The page is having very good pagerank', 'The page has very good pagerank', '2025-11-21 01:07:03'),
(32358, 'bs', 'siteauditor', 'The page is not having backlinks in', 'The page does not have Povratni linkovi in', '2025-11-21 01:07:03'),
(32359, 'bs', 'siteauditor', 'The page is not indexed in', 'The page is not indexed in', '2025-11-21 01:07:03'),
(32360, 'bs', 'siteauditor', 'The page keywords length is not between', 'The page Ključne riječi length is not between', '2025-11-21 01:07:03'),
(32361, 'bs', 'siteauditor', 'The page title length is not between', 'The page Naslov length is not between', '2025-11-21 01:07:03'),
(32362, 'bs', 'siteauditor', 'The total number of links in page is greater than', 'The Ukupno number of links in page is greater than\r\n', '2025-11-21 01:07:03'),
(32363, 'bs', 'siteauditor', 'to run project again if you stopped execution', 'to run project again if you stopped execution', '2025-11-21 01:07:03'),
(32364, 'bs', 'siteauditor', 'to view the reports', 'to Prikaži the Izvještaji', '2025-11-21 01:07:03'),
(32365, 'bs', 'siteauditor', 'Total Links', 'Ukupno Links', '2025-11-21 01:07:03'),
(32366, 'bs', 'siteauditor', 'totallinksgreaterallowed', 'Ukupno links will become greater than maximum links allowed to the project', '2025-11-21 01:07:03'),
(32367, 'bs', 'sitemap', 'Change frequency', 'Change frequency', '2025-11-21 01:07:03'),
(32368, 'bs', 'sitemap', 'clickproceedsitemap', 'Kliknite na <b>Nastavi</b> to Kreiraj Mapa sajta file', '2025-11-21 01:07:03'),
(32369, 'bs', 'sitemap', 'Download sitemap file from', 'Preuzmi Mapa sajta file Od', '2025-11-21 01:07:03'),
(32370, 'bs', 'sitemap', 'Downloaded', 'Downloaded', '2025-11-21 01:07:03'),
(32371, 'bs', 'sitemap', 'Exclude Url', 'Exclude URL', '2025-11-21 01:07:03'),
(32372, 'bs', 'sitemap', 'processtaketime', 'This process will take time according to number of links in your site. Molimo sačekajte to get Mapa sajta files', '2025-11-21 01:07:03'),
(32373, 'bs', 'sitemap', 'Sitemap Type', 'Mapa sajta Tip', '2025-11-21 01:07:03'),
(32374, 'bs', 'sitemap', 'Submitted', 'Submitted', '2025-11-21 01:07:03'),
(32375, 'bs', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2025-11-21 01:07:03'),
(32376, 'bs', 'socialmedia', 'Click here to get LinkedIn Company Id', 'Kliknite ovdje to get LinkedIn Company Id', '2025-11-21 01:07:03'),
(32377, 'bs', 'socialmedia', 'Company Id', 'Company Id', '2025-11-21 01:07:03'),
(32378, 'bs', 'socialmedia', 'Edit Social Media Link', 'Uredi Društveni mediji Link', '2025-11-21 01:07:03'),
(32379, 'bs', 'socialmedia', 'New Social Media Link', 'Novo Društveni mediji Link', '2025-11-21 01:07:03'),
(32380, 'bs', 'socialmedia', 'Your social media link count already reached the limit', 'Your Društveni mediji link Broj already reached the limit', '2025-11-21 01:07:03'),
(32381, 'bs', 'subscription', 'Access Type', 'Access Tip', '2025-11-21 01:07:03'),
(32382, 'bs', 'subscription', 'account-expired', 'Your Račun expired. Please renew your Pretplata.', '2025-11-21 01:07:03'),
(32383, 'bs', 'subscription', 'Amount', 'Amount', '2025-11-21 01:07:03'),
(32384, 'bs', 'subscription', 'click-activate-pay-plugin', 'Kliknite ovdje to Aktiviraj payment Dodatak', '2025-11-21 01:07:03'),
(32385, 'bs', 'subscription', 'Currency', 'Currency', '2025-11-21 01:07:03'),
(32386, 'bs', 'subscription', 'Directory Submit Daily Limit', 'Daily Slanje u direktorij Limit', '2025-11-21 01:07:03'),
(32387, 'bs', 'subscription', 'Directory Submit Limit', 'Slanje u direktorij Limit', '2025-11-21 01:07:03'),
(32388, 'bs', 'subscription', 'Edit Email Template', 'Uredi E-pošta Template', '2025-11-21 01:07:03'),
(32389, 'bs', 'subscription', 'Edit Payment Gateway', 'Uredi Payment Gateway', '2025-11-21 01:07:03'),
(32390, 'bs', 'subscription', 'Email Template Manager', 'E-pošta Template Upravitelj', '2025-11-21 01:07:03'),
(32391, 'bs', 'subscription', 'enable_email_activation', 'Enable E-pošta Activation', '2025-11-21 01:07:03'),
(32392, 'bs', 'subscription', 'free_trial_period', 'Free Trial Period', '2025-11-21 01:07:03'),
(32393, 'bs', 'subscription', 'infinite_limit_text', '<b>Note</b>: Enter -1 for infinite limit', '2025-11-21 01:07:03'),
(32394, 'bs', 'subscription', 'internal-error-payment', 'Internal Greška occured during payment processing.', '2025-11-21 01:07:03'),
(32395, 'bs', 'subscription', 'Keyword Limit', 'Ključna riječ Limit', '2025-11-21 01:07:03'),
(32396, 'bs', 'subscription', 'Order Id', 'Order Id', '2025-11-21 01:07:03'),
(32397, 'bs', 'subscription', 'Orders', 'Orders', '2025-11-21 01:07:03'),
(32398, 'bs', 'subscription', 'Paid By', 'Paid By', '2025-11-21 01:07:03'),
(32399, 'bs', 'subscription', 'Payment Gateway Manager', 'Payment Gateway Upravitelj', '2025-11-21 01:07:03'),
(32400, 'bs', 'subscription', 'Payment Method', 'Payment Method', '2025-11-21 01:07:03'),
(32401, 'bs', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2025-11-21 01:07:03'),
(32402, 'bs', 'subscription', 'Plugin Access Settings', 'Dodatak Access Postavke', '2025-11-21 01:07:03'),
(32403, 'bs', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business E-pošta', '2025-11-21 01:07:03'),
(32404, 'bs', 'subscription', 'PP_TOKEN', 'Paypal Token', '2025-11-21 01:07:03'),
(32405, 'bs', 'subscription', 'Quantity', 'Quantity', '2025-11-21 01:07:03'),
(32406, 'bs', 'subscription', 'Renew Subscription', 'Renew Pretplata', '2025-11-21 01:07:03'),
(32407, 'bs', 'subscription', 'Review Link Count', 'Recenzija Link Broj', '2025-11-21 01:07:03'),
(32408, 'bs', 'subscription', 'Sandbox', 'Sandbox', '2025-11-21 01:07:03'),
(32409, 'bs', 'subscription', 'Seo Tools Access Settings', 'SEO alati Access Postavke', '2025-11-21 01:07:03'),
(32410, 'bs', 'subscription', 'site_auditor_max_page_limit', 'Revizor web stranice Maximum Page Limit', '2025-11-21 01:07:03');
INSERT INTO `texts` VALUES
(32411, 'bs', 'subscription', 'Social Media Link Count', 'Društveni mediji Link Broj', '2025-11-21 01:07:03'),
(32412, 'bs', 'subscription', 'SP_PAYMENT_PLUGIN', 'Default Payment Dodatak', '2025-11-21 01:07:03'),
(32413, 'bs', 'subscription', 'Subscribe', 'Pretplati se', '2025-11-21 01:07:03'),
(32414, 'bs', 'subscription', 'Subscription', 'Pretplata', '2025-11-21 01:07:03'),
(32415, 'bs', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Notification(After)', '2025-11-21 01:07:03'),
(32416, 'bs', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2025-11-21 01:07:03'),
(32417, 'bs', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2025-11-21 01:07:03'),
(32418, 'bs', 'subscription', 'Term', 'Term', '2025-11-21 01:07:03'),
(32419, 'bs', 'subscription', 'total_count_greater_account_limit', 'Ukupno Broj is greater than Račun limit - [limit]', '2025-11-21 01:07:03'),
(32420, 'bs', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Slanje u direktorij Broj is greater than Račun limit - [limit]', '2025-11-21 01:07:03'),
(32421, 'bs', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Slanje u direktorij Broj is greater than daily Račun limit - [limit]', '2025-11-21 01:07:03'),
(32422, 'bs', 'subscription', 'Transaction Id', 'Transaction Id', '2025-11-21 01:07:03'),
(32423, 'bs', 'subscription', 'Transaction Log', 'Transaction Log', '2025-11-21 01:07:03'),
(32424, 'bs', 'subscription', 'transaction-success', 'Your transaction processed Uspješno.', '2025-11-21 01:07:03'),
(32425, 'bs', 'subscription', 'View Order', 'Prikaži Order', '2025-11-21 01:07:03'),
(32426, 'bs', 'subscription', 'Website Limit', 'Web stranica Limit', '2025-11-21 01:07:03'),
(32427, 'bs', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2025-11-21 01:07:03'),
(32428, 'bs', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel All Plugin Tool kit</h1> \r\n <p>\r\n It includes most of the plugins developed by seo panel team for just <font class="success bold" size="14">$160</font> includes <b>Membership Subscription</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Search Engines Package</h1> \r\n <p>\r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to provide us required search engine domain list.\r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> seo plugins for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and we will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact Us</h1> \r\n <p>\r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and features</b>. Eg: To set up cron for keyword position checker.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Report Bugs</h1> \r\n <p>\r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2025-11-21 01:07:03'),
(32429, 'bs', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Help Guide</h1> \r\n <p>\r\n You can view the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>help guide</b>, it contains the <b>documentation</b> for the seo panel tools,plugins and related features.\r\n <br>It is the best place in internet to <b>get help</b> about seo panel. We hope that you <b>contribute</b> to the seo panel help guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel help guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n A place to discuss about world''s first open source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your websites. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel forum</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2025-11-21 01:07:03'),
(32430, 'bs', 'support', 'support_cont3', '<fieldset>\r\n<legend>Donate to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Donate to Seo Panel - First Open source seo control panel in the world</h1> \r\n <p>\r\n <b>Donate</b> to seo panel to support first open source seo control panel in the world.\r\n We are planning to <b>add and improve</b> features of seo panel in future. \r\n <br>With all your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please donate some amount to seo panel team.\r\n <br>We will <b>publish</b> your name and site information in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2025-11-21 01:07:03'),
(32431, 'bs', 'theme', 'Download Seo Panel Themes', 'Preuzmi Seo Panel Themes', '2025-11-21 01:07:03'),
(32432, 'bs', 'user', 'Edit User', 'Uredi korisnika', '2025-11-21 01:07:03'),
(32433, 'bs', 'user', 'Expiry Date', 'Expiry Datum', '2025-11-21 01:07:03'),
(32434, 'bs', 'user', 'Saved My Profile Details', 'Sačuvano My Profil Detalji', '2025-11-21 01:07:03'),
(32435, 'bs', 'webmaster', 'Average Position', 'Average Pozicija', '2025-11-21 01:07:03'),
(32436, 'bs', 'webmaster', 'Click here to connect to your google account', 'Kliknite ovdje to connect to your google Račun', '2025-11-21 01:07:03'),
(32437, 'bs', 'webmaster', 'Error: Google api connection failed', 'Greška: Google api connection Neuspjelo', '2025-11-21 01:07:03'),
(32438, 'bs', 'website', 'Add to Webmaster Tools', 'Dodaj to Webmaster alati', '2025-11-21 01:07:03'),
(32439, 'bs', 'website', 'Click here to get Google Analytics View Id', 'Kliknite ovdje to get Google Analitika Prikaži Id', '2025-11-21 01:07:03'),
(32440, 'bs', 'website', 'Edit Website', 'Uredi web stranicu', '2025-11-21 01:07:03'),
(32441, 'bs', 'website', 'Google Analytics Property', 'Google Analitika Property', '2025-11-21 01:07:03'),
(32442, 'bs', 'website', 'Google Analytics View Id', 'Google Analitika Prikaži Id', '2025-11-21 01:07:03'),
(32443, 'bs', 'website', 'Please enter CSV file', 'Please enter CSV file', '2025-11-21 01:07:03'),
(32444, 'bs', 'website', 'plscrtwebsite', 'Please Kreiraj a Web stranica before Početak to using SEO alati and SEO dodaci.', '2025-11-21 01:07:03'),
(32445, 'bs', 'website', 'Sitemap successfully added to webmaster tools', 'Mapa sajta Uspješno Dodano to Webmaster alati', '2025-11-21 01:07:03'),
(32446, 'bs', 'website', 'Successfully deleted sitemap from webmaster tools', 'Uspješno Izbrisano Mapa sajta Od Webmaster alati', '2025-11-21 01:07:03'),
(32447, 'bs', 'website', 'Successfully imported following websites', 'Uspješno imported following Web stranice', '2025-11-21 01:07:03'),
(32448, 'bs', 'website', 'Successfully sync sitemaps from webmaster tools', 'Uspješno sync sitemaps Od Webmaster alati', '2025-11-21 01:07:03'),
(32449, 'bs', 'website', 'Sync Google Analytics Properties', 'Sync Google Analitika Properties', '2025-11-21 01:07:03'),
(32450, 'bs', 'website', 'User Type already exist', 'Korisnik Tip already exist', '2025-11-21 01:07:03'),
(32451, 'bs', 'website', 'Website already exist', 'Web stranica already exist', '2025-11-21 01:07:03'),
(32452, 'bs', 'website', 'Website CSV File', 'Web stranica CSV File', '2025-11-21 01:07:03'),
(32453, 'bs', 'website', 'Website successfully added to webmaster tools', 'Web stranica Uspješno Dodano to Webmaster alati', '2025-11-21 01:07:03'),
(32454, 'bs', 'website', 'You can add only websitecount websites more', 'You can Dodaj only [websitecount] Web stranice for this Korisnik!', '2025-11-21 01:07:03'),
(32455, 'bs', 'website', 'Your website count already reached the limit', 'Web stranica Broj already reached the limit for this Korisnik!', '2025-11-21 01:07:03'),
(32456, 'bs', 'website', 'yourwebalreday', 'your Web stranica if you have already Kreirano one.', '2025-11-21 01:07:03'),
(33029, 'hy', 'settings', 'CURLOPT_HTTPPROXYTUNNEL_VAL', 'Enable HTTP Պրոքսի Tunnel', '2025-11-21 01:13:08'),
(33030, 'hy', 'settings', 'entersmtpdetails', 'Please enter SMTP mail configuration', '2025-11-21 01:13:08'),
(33031, 'hy', 'settings', 'getallpluginfree', 'Also get Բոլորը <b>Հավելումներ</b> we develop for <b>Free!</b>', '2025-11-21 01:13:08'),
(33032, 'hy', 'settings', 'Please update google settings to get the results', 'Please Թարմացնել google Կարգավորումներ to get the results', '2025-11-21 01:13:08'),
(33033, 'hy', 'settings', 'Please update MOZ settings to get complete results', 'Please Թարմացնել MOZ Կարգավորումներ to get complete results', '2025-11-21 01:13:08'),
(33034, 'hy', 'settings', 'PROXY_DEACTIVATE_CRAWL', 'Deactivate Պրոքսի When Crawling Ձախողված', '2025-11-21 01:13:08'),
(33035, 'hy', 'settings', 'SA_CRAWL_DELAY_TIME', 'Կայքի աուդիտոր Սողոսկում delay between each pages', '2025-11-21 01:13:08'),
(33036, 'hy', 'settings', 'SA_MAX_NO_PAGES', 'Maximum number of pages allowed per Կայք', '2025-11-21 01:13:08'),
(33037, 'hy', 'settings', 'Send Email', 'Send Էլ․ փոստ', '2025-11-21 01:13:08'),
(33038, 'hy', 'settings', 'seopanel_description', 'A complete free control panel for managing Որոնիչ optimization of your Կայքեր. It containing lots of hot SEO գործիքներ to increase and track the performace your Կայքեր. Its an Բացել source software and also you can develop your own SEO հավելումներ for seo panel.', '2025-11-21 01:13:08'),
(33039, 'hy', 'settings', 'seopanel_title', 'Seo Panel: World''s Առաջին Բացել source seo control panel for managing multiple web sites', '2025-11-21 01:13:08'),
(33040, 'hy', 'settings', 'SP_ALLOW_USER_SCHEDULE_REPORT', 'Allow Օգտատերեր to schedule Հաշվետվություն', '2025-11-21 01:13:08'),
(33041, 'hy', 'settings', 'SP_API_KEY', 'Seo Panel API Key', '2025-11-21 01:13:08'),
(33042, 'hy', 'settings', 'SP_COMPANY_NAME', 'Company Անուն', '2025-11-21 01:13:08'),
(33043, 'hy', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider Սողոսկում(seconds)', '2025-11-21 01:13:08'),
(33044, 'hy', 'settings', 'SP_DEFAULTLANG', 'Default Լեզու', '2025-11-21 01:13:08'),
(33045, 'hy', 'settings', 'SP_DESCRIPTION', 'Seo Panel Նկարագրություն', '2025-11-21 01:13:08'),
(33046, 'hy', 'settings', 'SP_DFS_API_LOGIN', 'API Մուտք', '2025-11-21 01:13:08'),
(33047, 'hy', 'settings', 'SP_DFS_API_PASSWORD', 'API Գաղտնաբառ', '2025-11-21 01:13:08'),
(33048, 'hy', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2025-11-21 01:13:08'),
(33049, 'hy', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2025-11-21 01:13:08'),
(33050, 'hy', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for Հետադարձ հղում and Հագեցվածության ստուգում', '2025-11-21 01:13:08'),
(33051, 'hy', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2025-11-21 01:13:08'),
(33052, 'hy', 'settings', 'SP_ENABLE_PROXY', 'Enable Պրոքսի', '2025-11-21 01:13:08'),
(33053, 'hy', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable Պրոքսի for Google API', '2025-11-21 01:13:08'),
(33054, 'hy', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2025-11-21 01:13:08'),
(33055, 'hy', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google Վերլուծություն հետևում Code', '2025-11-21 01:13:08'),
(33056, 'hy', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2025-11-21 01:13:08'),
(33057, 'hy', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2025-11-21 01:13:08'),
(33058, 'hy', 'settings', 'SP_GOOGLE_API_KEY', 'Google API Key', '2025-11-21 01:13:08'),
(33059, 'hy', 'settings', 'SP_HOTLINKING', 'Image hotlink protection Միացված', '2025-11-21 01:13:08'),
(33060, 'hy', 'settings', 'SP_KEYWORDS', 'Seo Panel Հիմնաբառեր', '2025-11-21 01:13:08'),
(33061, 'hy', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2025-11-21 01:13:08'),
(33062, 'hy', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2025-11-21 01:13:08'),
(33063, 'hy', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2025-11-21 01:13:08'),
(33064, 'hy', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Number of Հիմնաբառեր needs to be Ստուգված in each cron execution', '2025-11-21 01:13:08'),
(33065, 'hy', 'settings', 'SP_PAGINGNO', 'Number of entries per page', '2025-11-21 01:13:08'),
(33066, 'hy', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2025-11-21 01:13:08'),
(33067, 'hy', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2025-11-21 01:13:08'),
(33068, 'hy', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Սողոսկում relative links in a page', '2025-11-21 01:13:08'),
(33069, 'hy', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of Էլ․ փոստ notifications for Հաշվետվություններ', '2025-11-21 01:13:08'),
(33070, 'hy', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send custom header with curl request', '2025-11-21 01:13:08'),
(33071, 'hy', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2025-11-21 01:13:08'),
(33072, 'hy', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2025-11-21 01:13:08'),
(33073, 'hy', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2025-11-21 01:13:08'),
(33074, 'hy', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Գաղտնաբառ', '2025-11-21 01:13:08'),
(33075, 'hy', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2025-11-21 01:13:08'),
(33076, 'hy', 'settings', 'SP_SMTP_USERNAME', 'SMTP Օգտանուն', '2025-11-21 01:13:08'),
(33077, 'hy', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Minimum Allowed հաշվետվություն Interval', '2025-11-21 01:13:08'),
(33078, 'hy', 'settings', 'SP_TIME_ZONE', 'Time Zone', '2025-11-21 01:13:08'),
(33079, 'hy', 'settings', 'SP_TITLE', 'Seo Panel Վերնագիր', '2025-11-21 01:13:08'),
(33080, 'hy', 'settings', 'SP_USER_AGENT', 'Օգտատեր agent', '2025-11-21 01:13:08'),
(33081, 'hy', 'settings', 'SP_USER_GEN_REPORT', 'Allow Օգտատեր to Ստեղծել Հաշվետվություններ', '2025-11-21 01:13:08'),
(33082, 'hy', 'settings', 'SP_USER_REGISTRATION', 'Օգտատեր Գրանցում interface', '2025-11-21 01:13:08'),
(33083, 'hy', 'settings', 'syssettingssaved', 'Համակարգի կարգավորումներ Պահպանված Հաջողությամբ!', '2025-11-21 01:13:08'),
(33084, 'hy', 'settings', 'Verify connection', 'Verify connection', '2025-11-21 01:13:08'),
(33085, 'hy', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up to Ամսաթիվ. <br>Please Ներբեռնել Նոր version', '2025-11-21 01:13:08'),
(33086, 'hy', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up to Ամսաթիվ.', '2025-11-21 01:13:08'),
(33087, 'hy', 'siteauditor', 'Anchor', 'Anchor', '2025-11-21 01:13:08'),
(33088, 'hy', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded Սկսած Հաշվետվություններ', '2025-11-21 01:13:08'),
(33089, 'hy', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded Սկսած Կայքի քարտեզ', '2025-11-21 01:13:08'),
(33090, 'hy', 'siteauditor', 'Check backlinks of pages', 'Ստուգել հետադարձ հղումները of pages', '2025-11-21 01:13:08'),
(33091, 'hy', 'siteauditor', 'Check broken links in a page', 'Check broken links in a page', '2025-11-21 01:13:08'),
(33092, 'hy', 'siteauditor', 'Check google pagerank of pages', 'Check google pagerank of pages', '2025-11-21 01:13:08'),
(33093, 'hy', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of pages', '2025-11-21 01:13:08'),
(33094, 'hy', 'siteauditor', 'Check pages indexed or not', 'Check pages indexed or not', '2025-11-21 01:13:08'),
(33095, 'hy', 'siteauditor', 'Check Score', 'Check Գնահատական', '2025-11-21 01:13:08'),
(33096, 'hy', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will increase the execution time of a project', '2025-11-21 01:13:08'),
(33097, 'hy', 'siteauditor', 'Completed project execution', 'Ավարտված project execution', '2025-11-21 01:13:08'),
(33098, 'hy', 'siteauditor', 'Crawled', 'Սողոսկված', '2025-11-21 01:13:08'),
(33099, 'hy', 'siteauditor', 'Crawled Pages', 'Սողոսկված Pages', '2025-11-21 01:13:08'),
(33100, 'hy', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'Սողոսկված Հաջողությամբ! Waiting for crawling Հաջորդ page for', '2025-11-21 01:13:08'),
(33101, 'hy', 'siteauditor', 'Crawling Page', 'Crawling Page', '2025-11-21 01:13:08'),
(33102, 'hy', 'siteauditor', 'Duplicate Description', 'Duplicate Նկարագրություն', '2025-11-21 01:13:08'),
(33103, 'hy', 'siteauditor', 'Duplicate Keywords', 'Duplicate Հիմնաբառեր', '2025-11-21 01:13:08'),
(33104, 'hy', 'siteauditor', 'Duplicate Title', 'Duplicate Վերնագիր', '2025-11-21 01:13:08'),
(33105, 'hy', 'siteauditor', 'Exclude links', 'Exclude links', '2025-11-21 01:13:08'),
(33106, 'hy', 'siteauditor', 'Execute with cron', 'Execute with cron', '2025-11-21 01:13:08'),
(33107, 'hy', 'siteauditor', 'External', 'External', '2025-11-21 01:13:08'),
(33108, 'hy', 'siteauditor', 'External Links', 'External Links', '2025-11-21 01:13:08'),
(33109, 'hy', 'siteauditor', 'Import Project Links', 'Ներմուծել Project Links', '2025-11-21 01:13:08'),
(33110, 'hy', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2025-11-21 01:13:08'),
(33111, 'hy', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links Սկսած the Հաշվետվություններ', '2025-11-21 01:13:08'),
(33112, 'hy', 'siteauditor', 'Link Reports', 'Link Հաշվետվություններ', '2025-11-21 01:13:08'),
(33113, 'hy', 'siteauditor', 'Link Title', 'Link Վերնագիր', '2025-11-21 01:13:08'),
(33114, 'hy', 'siteauditor', 'Maximum number of pages to be checked', 'Maximum number of pages to be Ստուգված', '2025-11-21 01:13:08'),
(33115, 'hy', 'siteauditor', 'Maximum Pages', 'Maximum Pages', '2025-11-21 01:13:08'),
(33116, 'hy', 'siteauditor', 'No active projects found', 'No Ակտիվ projects found', '2025-11-21 01:13:08'),
(33117, 'hy', 'siteauditor', 'Nofollow', 'Nofollow', '2025-11-21 01:13:08'),
(33118, 'hy', 'siteauditor', 'Number of pages is greater than', 'Number of pages is greater than', '2025-11-21 01:13:08'),
(33119, 'hy', 'siteauditor', 'Number of pages should be greater than', 'Number of pages should be greater than', '2025-11-21 01:13:08'),
(33120, 'hy', 'siteauditor', 'Page Details', 'Page Մանրամասներ', '2025-11-21 01:13:08'),
(33121, 'hy', 'siteauditor', 'Page Link', 'Page Link', '2025-11-21 01:13:08'),
(33122, 'hy', 'siteauditor', 'Page Links', 'Page Links', '2025-11-21 01:13:08'),
(33123, 'hy', 'siteauditor', 'Pages Found', 'Pages Found', '2025-11-21 01:13:08'),
(33124, 'hy', 'siteauditor', 'pressescapetostopexecution', 'Press <b>escape</b> key to stop execution of script', '2025-11-21 01:13:08'),
(33125, 'hy', 'siteauditor', 'Project Summary', 'Project Summary', '2025-11-21 01:13:08'),
(33126, 'hy', 'siteauditor', 'Project Url', 'Project URL', '2025-11-21 01:13:08'),
(33127, 'hy', 'siteauditor', 'projectalreadyexist', 'Project for this Կայք already exist', '2025-11-21 01:13:08'),
(33128, 'hy', 'siteauditor', 'Recheck Pages', 'Recheck Pages', '2025-11-21 01:13:08'),
(33129, 'hy', 'siteauditor', 'Report Summary', 'Հաշվետվություն Summary', '2025-11-21 01:13:08'),
(33130, 'hy', 'siteauditor', 'Run Project', 'Run Project', '2025-11-21 01:13:08'),
(33131, 'hy', 'siteauditor', 'should start with', 'should Սկիզբ with', '2025-11-21 01:13:08'),
(33132, 'hy', 'siteauditor', 'Site Auditor Settings', 'Կայքի աուդիտոր Կարգավորումներ', '2025-11-21 01:13:08'),
(33133, 'hy', 'siteauditor', 'Store all links found in a page', 'Store Բոլորը links found in a page', '2025-11-21 01:13:08'),
(33134, 'hy', 'siteauditor', 'The page description length is not between', 'The page Նկարագրություն length is not between', '2025-11-21 01:13:08'),
(33135, 'hy', 'siteauditor', 'The page is brocken', 'The page is broken', '2025-11-21 01:13:08'),
(33136, 'hy', 'siteauditor', 'The page is having excellent page authority value', 'The page has excellent Էջի հեղինակություն Արժեք', '2025-11-21 01:13:08'),
(33137, 'hy', 'siteauditor', 'The page is having exellent number of backlinks in', 'The page has excellent number of Հետադարձ հղումներ in', '2025-11-21 01:13:08'),
(33138, 'hy', 'siteauditor', 'The page is having exellent pagerank', 'The page has excellent pagerank', '2025-11-21 01:13:08'),
(33139, 'hy', 'siteauditor', 'The page is having good number of backlinks in', 'The page has good number of Հետադարձ հղումներ in', '2025-11-21 01:13:08'),
(33140, 'hy', 'siteauditor', 'The page is having good page authority value', 'The page has good Էջի հեղինակություն Արժեք', '2025-11-21 01:13:08'),
(33141, 'hy', 'siteauditor', 'The page is having good pagerank', 'The page has good pagerank', '2025-11-21 01:13:08'),
(33142, 'hy', 'siteauditor', 'The page is having poor page authority value', 'The page has poor Էջի հեղինակություն Արժեք', '2025-11-21 01:13:08'),
(33143, 'hy', 'siteauditor', 'The page is having poor pagerank', 'The page has poor pagerank', '2025-11-21 01:13:08'),
(33144, 'hy', 'siteauditor', 'The page is having very good page authority value', 'The page has very good Էջի հեղինակություն Արժեք', '2025-11-21 01:13:08'),
(33145, 'hy', 'siteauditor', 'The page is having very good pagerank', 'The page has very good pagerank', '2025-11-21 01:13:08'),
(33146, 'hy', 'siteauditor', 'The page is not having backlinks in', 'The page does not have Հետադարձ հղումներ in', '2025-11-21 01:13:08'),
(33147, 'hy', 'siteauditor', 'The page is not indexed in', 'The page is not indexed in', '2025-11-21 01:13:08'),
(33148, 'hy', 'siteauditor', 'The page keywords length is not between', 'The page Հիմնաբառեր length is not between', '2025-11-21 01:13:08'),
(33149, 'hy', 'siteauditor', 'The page title length is not between', 'The page Վերնագիր length is not between', '2025-11-21 01:13:08'),
(33150, 'hy', 'siteauditor', 'The total number of links in page is greater than', 'The Ընդամենը number of links in page is greater than\r\n', '2025-11-21 01:13:08'),
(33151, 'hy', 'siteauditor', 'to run project again if you stopped execution', 'to run project again if you stopped execution', '2025-11-21 01:13:08'),
(33152, 'hy', 'siteauditor', 'to view the reports', 'to Դիտել the Հաշվետվություններ', '2025-11-21 01:13:08'),
(33153, 'hy', 'siteauditor', 'Total Links', 'Ընդամենը Links', '2025-11-21 01:13:08'),
(33154, 'hy', 'siteauditor', 'totallinksgreaterallowed', 'Ընդամենը links will become greater than maximum links allowed to the project', '2025-11-21 01:13:08'),
(33155, 'hy', 'sitemap', 'Change frequency', 'Change frequency', '2025-11-21 01:13:08'),
(33156, 'hy', 'sitemap', 'clickproceedsitemap', 'Սեղմեք <b>Շարունակել</b> to Ստեղծել Կայքի քարտեզ file', '2025-11-21 01:13:08'),
(33157, 'hy', 'sitemap', 'Download sitemap file from', 'Ներբեռնել Կայքի քարտեզ file Սկսած', '2025-11-21 01:13:08'),
(33158, 'hy', 'sitemap', 'Downloaded', 'Downloaded', '2025-11-21 01:13:08'),
(33159, 'hy', 'sitemap', 'Exclude Url', 'Exclude URL', '2025-11-21 01:13:08'),
(33160, 'hy', 'sitemap', 'processtaketime', 'This process will take time according to number of links in your site. Խնդրում ենք սպասել to get Կայքի քարտեզ files', '2025-11-21 01:13:08'),
(33161, 'hy', 'sitemap', 'Sitemap Type', 'Կայքի քարտեզ Տեսակ', '2025-11-21 01:13:08'),
(33162, 'hy', 'sitemap', 'Submitted', 'Submitted', '2025-11-21 01:13:08'),
(33163, 'hy', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2025-11-21 01:13:08'),
(33164, 'hy', 'socialmedia', 'Click here to get LinkedIn Company Id', 'Սեղմեք այստեղ to get LinkedIn Company Id', '2025-11-21 01:13:08'),
(33165, 'hy', 'socialmedia', 'Company Id', 'Company Id', '2025-11-21 01:13:08'),
(33166, 'hy', 'socialmedia', 'Edit Social Media Link', 'Խմբագրել Սոցիալական մեդիա Link', '2025-11-21 01:13:08'),
(33167, 'hy', 'socialmedia', 'New Social Media Link', 'Նոր Սոցիալական մեդիա Link', '2025-11-21 01:13:08'),
(33168, 'hy', 'socialmedia', 'Your social media link count already reached the limit', 'Your Սոցիալական մեդիա link Քանակ already reached the limit', '2025-11-21 01:13:08'),
(33169, 'hy', 'subscription', 'Access Type', 'Access Տեսակ', '2025-11-21 01:13:08'),
(33170, 'hy', 'subscription', 'account-expired', 'Your Հաշիվ expired. Please renew your Բաժանորդագրություն.', '2025-11-21 01:13:08'),
(33171, 'hy', 'subscription', 'Amount', 'Amount', '2025-11-21 01:13:08'),
(33172, 'hy', 'subscription', 'click-activate-pay-plugin', 'Սեղմեք այստեղ to Ակտիվացնել payment Հավելում', '2025-11-21 01:13:08'),
(33173, 'hy', 'subscription', 'Currency', 'Currency', '2025-11-21 01:13:08'),
(33174, 'hy', 'subscription', 'Directory Submit Daily Limit', 'Daily Տեղեկատուի ներկայացում Limit', '2025-11-21 01:13:08'),
(33175, 'hy', 'subscription', 'Directory Submit Limit', 'Տեղեկատուի ներկայացում Limit', '2025-11-21 01:13:08'),
(33176, 'hy', 'subscription', 'Edit Email Template', 'Խմբագրել Էլ․ փոստ Template', '2025-11-21 01:13:08'),
(33177, 'hy', 'subscription', 'Edit Payment Gateway', 'Խմբագրել Payment Gateway', '2025-11-21 01:13:08'),
(33178, 'hy', 'subscription', 'Email Template Manager', 'Էլ․ փոստ Template Կառավարիչ', '2025-11-21 01:13:08'),
(33179, 'hy', 'subscription', 'enable_email_activation', 'Enable Էլ․ փոստ Activation', '2025-11-21 01:13:08'),
(33180, 'hy', 'subscription', 'free_trial_period', 'Free Trial Period', '2025-11-21 01:13:08'),
(33181, 'hy', 'subscription', 'infinite_limit_text', '<b>Note</b>: Enter -1 for infinite limit', '2025-11-21 01:13:08'),
(33182, 'hy', 'subscription', 'internal-error-payment', 'Internal Սխալ occured during payment processing.', '2025-11-21 01:13:08'),
(33183, 'hy', 'subscription', 'Keyword Limit', 'Հիմնաբառ Limit', '2025-11-21 01:13:08'),
(33184, 'hy', 'subscription', 'Order Id', 'Order Id', '2025-11-21 01:13:08'),
(33185, 'hy', 'subscription', 'Orders', 'Orders', '2025-11-21 01:13:08'),
(33186, 'hy', 'subscription', 'Paid By', 'Paid By', '2025-11-21 01:13:08'),
(33187, 'hy', 'subscription', 'Payment Gateway Manager', 'Payment Gateway Կառավարիչ', '2025-11-21 01:13:08'),
(33188, 'hy', 'subscription', 'Payment Method', 'Payment Method', '2025-11-21 01:13:08'),
(33189, 'hy', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2025-11-21 01:13:08'),
(33190, 'hy', 'subscription', 'Plugin Access Settings', 'Հավելում Access Կարգավորումներ', '2025-11-21 01:13:08'),
(33191, 'hy', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business Էլ․ փոստ', '2025-11-21 01:13:08'),
(33192, 'hy', 'subscription', 'PP_TOKEN', 'Paypal Token', '2025-11-21 01:13:08'),
(33193, 'hy', 'subscription', 'Quantity', 'Quantity', '2025-11-21 01:13:08'),
(33194, 'hy', 'subscription', 'Renew Subscription', 'Renew Բաժանորդագրություն', '2025-11-21 01:13:08'),
(33195, 'hy', 'subscription', 'Review Link Count', 'Ակնարկ Link Քանակ', '2025-11-21 01:13:08'),
(33196, 'hy', 'subscription', 'Sandbox', 'Sandbox', '2025-11-21 01:13:08'),
(33197, 'hy', 'subscription', 'Seo Tools Access Settings', 'SEO գործիքներ Access Կարգավորումներ', '2025-11-21 01:13:08'),
(33198, 'hy', 'subscription', 'site_auditor_max_page_limit', 'Կայքի աուդիտոր Maximum Page Limit', '2025-11-21 01:13:08'),
(33199, 'hy', 'subscription', 'Social Media Link Count', 'Սոցիալական մեդիա Link Քանակ', '2025-11-21 01:13:08'),
(33200, 'hy', 'subscription', 'SP_PAYMENT_PLUGIN', 'Default Payment Հավելում', '2025-11-21 01:13:08'),
(33201, 'hy', 'subscription', 'Subscribe', 'Բաժանորդագրվել', '2025-11-21 01:13:08'),
(33202, 'hy', 'subscription', 'Subscription', 'Բաժանորդագրություն', '2025-11-21 01:13:08'),
(33203, 'hy', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Notification(After)', '2025-11-21 01:13:08'),
(33204, 'hy', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2025-11-21 01:13:08'),
(33205, 'hy', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2025-11-21 01:13:08'),
(33206, 'hy', 'subscription', 'Term', 'Term', '2025-11-21 01:13:08'),
(33207, 'hy', 'subscription', 'total_count_greater_account_limit', 'Ընդամենը Քանակ is greater than Հաշիվ limit - [limit]', '2025-11-21 01:13:08'),
(33208, 'hy', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Տեղեկատուի ներկայացում Քանակ is greater than Հաշիվ limit - [limit]', '2025-11-21 01:13:08'),
(33209, 'hy', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Տեղեկատուի ներկայացում Քանակ is greater than daily Հաշիվ limit - [limit]', '2025-11-21 01:13:08'),
(33210, 'hy', 'subscription', 'Transaction Id', 'Transaction Id', '2025-11-21 01:13:08'),
(33211, 'hy', 'subscription', 'Transaction Log', 'Transaction Log', '2025-11-21 01:13:08'),
(33212, 'hy', 'subscription', 'transaction-success', 'Your transaction processed Հաջողությամբ.', '2025-11-21 01:13:08'),
(33213, 'hy', 'subscription', 'View Order', 'Դիտել Order', '2025-11-21 01:13:08'),
(33214, 'hy', 'subscription', 'Website Limit', 'Կայք Limit', '2025-11-21 01:13:08'),
(33215, 'hy', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2025-11-21 01:13:08'),
(33216, 'hy', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel All Plugin Tool kit</h1> \r\n <p>\r\n It includes most of the plugins developed by seo panel team for just <font class="success bold" size="14">$160</font> includes <b>Membership Subscription</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Search Engines Package</h1> \r\n <p>\r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to provide us required search engine domain list.\r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> seo plugins for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and we will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact Us</h1> \r\n <p>\r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and features</b>. Eg: To set up cron for keyword position checker.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Report Bugs</h1> \r\n <p>\r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2025-11-21 01:13:08'),
(33217, 'hy', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Help Guide</h1> \r\n <p>\r\n You can view the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>help guide</b>, it contains the <b>documentation</b> for the seo panel tools,plugins and related features.\r\n <br>It is the best place in internet to <b>get help</b> about seo panel. We hope that you <b>contribute</b> to the seo panel help guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel help guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n A place to discuss about world''s first open source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your websites. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel forum</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2025-11-21 01:13:08'),
(33218, 'hy', 'support', 'support_cont3', '<fieldset>\r\n<legend>Donate to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Donate to Seo Panel - First Open source seo control panel in the world</h1> \r\n <p>\r\n <b>Donate</b> to seo panel to support first open source seo control panel in the world.\r\n We are planning to <b>add and improve</b> features of seo panel in future. \r\n <br>With all your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please donate some amount to seo panel team.\r\n <br>We will <b>publish</b> your name and site information in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2025-11-21 01:13:08'),
(33219, 'hy', 'theme', 'Download Seo Panel Themes', 'Ներբեռնել Seo Panel Themes', '2025-11-21 01:13:08'),
(33220, 'hy', 'user', 'Edit User', 'Խմբագրել օգտատիրոջը', '2025-11-21 01:13:08'),
(33221, 'hy', 'user', 'Expiry Date', 'Expiry Ամսաթիվ', '2025-11-21 01:13:08'),
(33222, 'hy', 'user', 'Saved My Profile Details', 'Պահպանված My Պրոֆիլ Մանրամասներ', '2025-11-21 01:13:08'),
(33223, 'hy', 'webmaster', 'Average Position', 'Average Դիրք', '2025-11-21 01:13:08'),
(33224, 'hy', 'webmaster', 'Click here to connect to your google account', 'Սեղմեք այստեղ to connect to your google Հաշիվ', '2025-11-21 01:13:08'),
(33225, 'hy', 'webmaster', 'Error: Google api connection failed', 'Սխալ: Google api connection Ձախողված', '2025-11-21 01:13:08'),
(33226, 'hy', 'website', 'Add to Webmaster Tools', 'Ավելացնել to Վեբմաստերի գործիքներ', '2025-11-21 01:13:08'),
(33227, 'hy', 'website', 'Click here to get Google Analytics View Id', 'Սեղմեք այստեղ to get Google Վերլուծություն Դիտել Id', '2025-11-21 01:13:08'),
(33228, 'hy', 'website', 'Edit Website', 'Խմբագրել կայքը', '2025-11-21 01:13:08'),
(33229, 'hy', 'website', 'Google Analytics Property', 'Google Վերլուծություն Property', '2025-11-21 01:13:08'),
(33230, 'hy', 'website', 'Google Analytics View Id', 'Google Վերլուծություն Դիտել Id', '2025-11-21 01:13:08'),
(33231, 'hy', 'website', 'Please enter CSV file', 'Please enter CSV file', '2025-11-21 01:13:08'),
(33232, 'hy', 'website', 'plscrtwebsite', 'Please Ստեղծել a Կայք before Սկիզբ to using SEO գործիքներ and SEO հավելումներ.', '2025-11-21 01:13:08'),
(33233, 'hy', 'website', 'Sitemap successfully added to webmaster tools', 'Կայքի քարտեզ Հաջողությամբ Ավելացված to Վեբմաստերի գործիքներ', '2025-11-21 01:13:08'),
(33234, 'hy', 'website', 'Successfully deleted sitemap from webmaster tools', 'Հաջողությամբ Ջնջված Կայքի քարտեզ Սկսած Վեբմաստերի գործիքներ', '2025-11-21 01:13:08'),
(33235, 'hy', 'website', 'Successfully imported following websites', 'Հաջողությամբ imported following Կայքեր', '2025-11-21 01:13:08'),
(33236, 'hy', 'website', 'Successfully sync sitemaps from webmaster tools', 'Հաջողությամբ sync sitemaps Սկսած Վեբմաստերի գործիքներ', '2025-11-21 01:13:08'),
(33237, 'hy', 'website', 'Sync Google Analytics Properties', 'Sync Google Վերլուծություն Properties', '2025-11-21 01:13:08'),
(33238, 'hy', 'website', 'User Type already exist', 'Օգտատեր Տեսակ already exist', '2025-11-21 01:13:08'),
(33239, 'hy', 'website', 'Website already exist', 'Կայք already exist', '2025-11-21 01:13:08'),
(33240, 'hy', 'website', 'Website CSV File', 'Կայք CSV File', '2025-11-21 01:13:08'),
(33241, 'hy', 'website', 'Website successfully added to webmaster tools', 'Կայք Հաջողությամբ Ավելացված to Վեբմաստերի գործիքներ', '2025-11-21 01:13:08'),
(33242, 'hy', 'website', 'You can add only websitecount websites more', 'You can Ավելացնել only [websitecount] Կայքեր for this Օգտատեր!', '2025-11-21 01:13:08'),
(33243, 'hy', 'website', 'Your website count already reached the limit', 'Կայք Քանակ already reached the limit for this Օգտատեր!', '2025-11-21 01:13:08'),
(33244, 'hy', 'website', 'yourwebalreday', 'your Կայք if you have already Ստեղծված one.', '2025-11-21 01:13:08'),
(33837, 'mk', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2025-11-21 01:14:38'),
(33838, 'mk', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for Врска and Проверка на заситеност', '2025-11-21 01:14:38'),
(33839, 'mk', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2025-11-21 01:14:38'),
(33840, 'mk', 'settings', 'SP_ENABLE_PROXY', 'Enable Proxy', '2025-11-21 01:14:38'),
(33841, 'mk', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable Proxy for Google API', '2025-11-21 01:14:38'),
(33842, 'mk', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2025-11-21 01:14:38'),
(33843, 'mk', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google Аналитика Tracking Code', '2025-11-21 01:14:38'),
(33844, 'mk', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2025-11-21 01:14:38'),
(33845, 'mk', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2025-11-21 01:14:38'),
(33846, 'mk', 'settings', 'SP_GOOGLE_API_KEY', 'Google API клуч', '2025-11-21 01:14:38'),
(33847, 'mk', 'settings', 'SP_HOTLINKING', 'Image hotlink protection Овозможено', '2025-11-21 01:14:38'),
(33848, 'mk', 'settings', 'SP_KEYWORDS', 'Seo Panel Клучни зборови', '2025-11-21 01:14:38'),
(33849, 'mk', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2025-11-21 01:14:38'),
(33850, 'mk', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2025-11-21 01:14:38'),
(33851, 'mk', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2025-11-21 01:14:38'),
(33852, 'mk', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Број of Клучни зборови needs to be checked in each cron execution', '2025-11-21 01:14:38'),
(33853, 'mk', 'settings', 'SP_PAGINGNO', 'Број of entries per Страница', '2025-11-21 01:14:38'),
(33854, 'mk', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2025-11-21 01:14:38'),
(33855, 'mk', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2025-11-21 01:14:38'),
(33856, 'mk', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Crawl relative links in a Страница', '2025-11-21 01:14:38'),
(33857, 'mk', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of Е-пошта Известувања for Извештаи', '2025-11-21 01:14:38'),
(33858, 'mk', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send Прилагодено header with curl request', '2025-11-21 01:14:38'),
(33859, 'mk', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2025-11-21 01:14:38'),
(33860, 'mk', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2025-11-21 01:14:38'),
(33861, 'mk', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2025-11-21 01:14:38'),
(33862, 'mk', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Лозинка', '2025-11-21 01:14:38'),
(33863, 'mk', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2025-11-21 01:14:38'),
(33864, 'mk', 'settings', 'SP_SMTP_USERNAME', 'SMTP Корисничко име', '2025-11-21 01:14:38'),
(33865, 'mk', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Минимум Allowed Reporting Interval', '2025-11-21 01:14:38'),
(33866, 'mk', 'settings', 'SP_TIME_ZONE', 'Време Zone', '2025-11-21 01:14:38'),
(33867, 'mk', 'settings', 'SP_TITLE', 'Seo Panel Наслов', '2025-11-21 01:14:38'),
(33868, 'mk', 'settings', 'SP_USER_AGENT', 'Корисник agent', '2025-11-21 01:14:38'),
(33869, 'mk', 'settings', 'SP_USER_GEN_REPORT', 'Allow Корисник to generate Извештаи', '2025-11-21 01:14:38'),
(33870, 'mk', 'settings', 'SP_USER_REGISTRATION', 'Корисник registration interface', '2025-11-21 01:14:38'),
(33871, 'mk', 'settings', 'syssettingssaved', 'Системски поставки saved successfully!', '2025-11-21 01:14:38'),
(33872, 'mk', 'settings', 'Verify connection', 'Verify connection', '2025-11-21 01:14:38'),
(33873, 'mk', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up До датум. <br>Please Преземи new Верзија', '2025-11-21 01:14:38'),
(33874, 'mk', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up До датум.', '2025-11-21 01:14:38'),
(33875, 'mk', 'siteauditor', 'Anchor', 'Anchor', '2025-11-21 01:14:38'),
(33876, 'mk', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded from Извештаи', '2025-11-21 01:14:38'),
(33877, 'mk', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded from sitemap', '2025-11-21 01:14:38'),
(33878, 'mk', 'siteauditor', 'Check backlinks of pages', 'Check Врски of Страници', '2025-11-21 01:14:38'),
(33879, 'mk', 'siteauditor', 'Check broken links in a page', 'Check broken links in a Страница', '2025-11-21 01:14:38'),
(33880, 'mk', 'siteauditor', 'Check google pagerank of pages', 'Check Google pagerank of Страници', '2025-11-21 01:14:38'),
(33881, 'mk', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of Страници', '2025-11-21 01:14:38'),
(33882, 'mk', 'siteauditor', 'Check pages indexed or not', 'Check Страници indexed or not', '2025-11-21 01:14:38'),
(33883, 'mk', 'siteauditor', 'Check Score', 'Check Резултат', '2025-11-21 01:14:38'),
(33884, 'mk', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will Зголемување the execution Време of a Проект', '2025-11-21 01:14:38'),
(33885, 'mk', 'siteauditor', 'Completed project execution', 'Завршено Проект execution', '2025-11-21 01:14:38'),
(33886, 'mk', 'siteauditor', 'Crawled', 'Crawled', '2025-11-21 01:14:38'),
(33887, 'mk', 'siteauditor', 'Crawled Pages', 'Crawled Страници', '2025-11-21 01:14:38'),
(33888, 'mk', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'crawled successfully! Waiting for crawling Следно Страница for', '2025-11-21 01:14:38'),
(33889, 'mk', 'siteauditor', 'Crawling Page', 'Crawling Страница', '2025-11-21 01:14:38'),
(33890, 'mk', 'siteauditor', 'Duplicate Description', 'Duplicate Опис', '2025-11-21 01:14:38'),
(33891, 'mk', 'siteauditor', 'Duplicate Keywords', 'Duplicate Клучни зборови', '2025-11-21 01:14:38'),
(33892, 'mk', 'siteauditor', 'Duplicate Title', 'Duplicate Наслов', '2025-11-21 01:14:38'),
(33893, 'mk', 'siteauditor', 'Exclude links', 'Exclude links', '2025-11-21 01:14:38'),
(33894, 'mk', 'siteauditor', 'Execute with cron', 'Execute with cron', '2025-11-21 01:14:38'),
(33895, 'mk', 'siteauditor', 'External', 'External', '2025-11-21 01:14:38'),
(33896, 'mk', 'siteauditor', 'External Links', 'External Links', '2025-11-21 01:14:38'),
(33897, 'mk', 'siteauditor', 'Import Project Links', 'Увези Проект Links', '2025-11-21 01:14:38'),
(33898, 'mk', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2025-11-21 01:14:38'),
(33899, 'mk', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links from the Извештаи', '2025-11-21 01:14:38'),
(33900, 'mk', 'siteauditor', 'Link Reports', 'Врска Извештаи', '2025-11-21 01:14:38'),
(33901, 'mk', 'siteauditor', 'Link Title', 'Врска Наслов', '2025-11-21 01:14:38'),
(33902, 'mk', 'siteauditor', 'Maximum number of pages to be checked', 'Максимум Број of Страници to be checked', '2025-11-21 01:14:38'),
(33903, 'mk', 'siteauditor', 'Maximum Pages', 'Максимум Страници', '2025-11-21 01:14:38'),
(33904, 'mk', 'siteauditor', 'No active projects found', 'No Активен Проекти found', '2025-11-21 01:14:38'),
(33905, 'mk', 'siteauditor', 'Nofollow', 'Nofollow', '2025-11-21 01:14:38'),
(33906, 'mk', 'siteauditor', 'Number of pages is greater than', 'Број of Страници is greater than', '2025-11-21 01:14:38'),
(33907, 'mk', 'siteauditor', 'Number of pages should be greater than', 'Број of Страници should be greater than', '2025-11-21 01:14:38'),
(33908, 'mk', 'siteauditor', 'Page Details', 'Страница Детали', '2025-11-21 01:14:38'),
(33909, 'mk', 'siteauditor', 'Page Link', 'Страница Врска', '2025-11-21 01:14:38'),
(33910, 'mk', 'siteauditor', 'Page Links', 'Страница Links', '2025-11-21 01:14:38'),
(33911, 'mk', 'siteauditor', 'Pages Found', 'Страници Found', '2025-11-21 01:14:38');
INSERT INTO `texts` VALUES
(33912, 'mk', 'siteauditor', 'pressescapetostopexecution', 'Press <b>escape</b> key to stop execution of script', '2025-11-21 01:14:38'),
(33913, 'mk', 'siteauditor', 'Project Summary', 'Проект Summary', '2025-11-21 01:14:38'),
(33914, 'mk', 'siteauditor', 'Project Url', 'Проект Url', '2025-11-21 01:14:38'),
(33915, 'mk', 'siteauditor', 'projectalreadyexist', 'Проект for this Веб-страница already exist', '2025-11-21 01:14:38'),
(33916, 'mk', 'siteauditor', 'Recheck Pages', 'Recheck Страници', '2025-11-21 01:14:38'),
(33917, 'mk', 'siteauditor', 'Report Summary', 'Извештај Summary', '2025-11-21 01:14:38'),
(33918, 'mk', 'siteauditor', 'Run Project', 'Run Проект', '2025-11-21 01:14:38'),
(33919, 'mk', 'siteauditor', 'should start with', 'should start with', '2025-11-21 01:14:38'),
(33920, 'mk', 'siteauditor', 'Site Auditor Settings', 'Ревизор на сајт Поставки', '2025-11-21 01:14:38'),
(33921, 'mk', 'siteauditor', 'Store all links found in a page', 'Store all links found in a Страница', '2025-11-21 01:14:38'),
(33922, 'mk', 'siteauditor', 'The page description length is not between', 'The Страница Опис length is not between', '2025-11-21 01:14:38'),
(33923, 'mk', 'siteauditor', 'The page is brocken', 'The Страница is broken', '2025-11-21 01:14:38'),
(33924, 'mk', 'siteauditor', 'The page is having excellent page authority value', 'The Страница has excellent Авторитет на страница Вредност', '2025-11-21 01:14:38'),
(33925, 'mk', 'siteauditor', 'The page is having exellent number of backlinks in', 'The Страница has excellent Број of Врски in', '2025-11-21 01:14:38'),
(33926, 'mk', 'siteauditor', 'The page is having exellent pagerank', 'The Страница has excellent pagerank', '2025-11-21 01:14:38'),
(33927, 'mk', 'siteauditor', 'The page is having good number of backlinks in', 'The Страница has good Број of Врски in', '2025-11-21 01:14:38'),
(33928, 'mk', 'siteauditor', 'The page is having good page authority value', 'The Страница has good Авторитет на страница Вредност', '2025-11-21 01:14:38'),
(33929, 'mk', 'siteauditor', 'The page is having good pagerank', 'The Страница has good pagerank', '2025-11-21 01:14:38'),
(33930, 'mk', 'siteauditor', 'The page is having poor page authority value', 'The Страница has poor Авторитет на страница Вредност', '2025-11-21 01:14:38'),
(33931, 'mk', 'siteauditor', 'The page is having poor pagerank', 'The Страница has poor pagerank', '2025-11-21 01:14:38'),
(33932, 'mk', 'siteauditor', 'The page is having very good page authority value', 'The Страница has very good Авторитет на страница Вредност', '2025-11-21 01:14:38'),
(33933, 'mk', 'siteauditor', 'The page is having very good pagerank', 'The Страница has very good pagerank', '2025-11-21 01:14:38'),
(33934, 'mk', 'siteauditor', 'The page is not having backlinks in', 'The Страница does not have Врски in', '2025-11-21 01:14:38'),
(33935, 'mk', 'siteauditor', 'The page is not indexed in', 'The Страница is not indexed in', '2025-11-21 01:14:38'),
(33936, 'mk', 'siteauditor', 'The page keywords length is not between', 'The Страница Клучни зборови length is not between', '2025-11-21 01:14:38'),
(33937, 'mk', 'siteauditor', 'The page title length is not between', 'The Страница Наслов length is not between', '2025-11-21 01:14:38'),
(33938, 'mk', 'siteauditor', 'The total number of links in page is greater than', 'The Вкупно Број of links in Страница is greater than\r\n', '2025-11-21 01:14:38'),
(33939, 'mk', 'siteauditor', 'to run project again if you stopped execution', 'to run Проект again if you stopped execution', '2025-11-21 01:14:38'),
(33940, 'mk', 'siteauditor', 'to view the reports', 'to Преглед the Извештаи', '2025-11-21 01:14:38'),
(33941, 'mk', 'siteauditor', 'Total Links', 'Вкупно Links', '2025-11-21 01:14:38'),
(33942, 'mk', 'siteauditor', 'totallinksgreaterallowed', 'Вкупно links will become greater than Максимум links allowed to the Проект', '2025-11-21 01:14:38'),
(33943, 'mk', 'sitemap', 'Change frequency', 'Промена Фреквенција', '2025-11-21 01:14:38'),
(33944, 'mk', 'sitemap', 'clickproceedsitemap', 'Click on <b>Proceed</b> to Креирај sitemap Датотека', '2025-11-21 01:14:38'),
(33945, 'mk', 'sitemap', 'Download sitemap file from', 'Преземи sitemap Датотека from', '2025-11-21 01:14:38'),
(33946, 'mk', 'sitemap', 'Downloaded', 'Downloaded', '2025-11-21 01:14:38'),
(33947, 'mk', 'sitemap', 'Exclude Url', 'Exclude Url', '2025-11-21 01:14:38'),
(33948, 'mk', 'sitemap', 'processtaketime', 'This process will take Време according to Број of links in your site. Ве молиме почекајте to get sitemap Датотеки', '2025-11-21 01:14:38'),
(33949, 'mk', 'sitemap', 'Sitemap Type', 'Sitemap Тип', '2025-11-21 01:14:38'),
(33950, 'mk', 'sitemap', 'Submitted', 'Submitted', '2025-11-21 01:14:38'),
(33951, 'mk', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2025-11-21 01:14:38'),
(33952, 'mk', 'socialmedia', 'Click here to get LinkedIn Company Id', 'Кликнете овде to get LinkedIn Company Id', '2025-11-21 01:14:38'),
(33953, 'mk', 'socialmedia', 'Company Id', 'Company Id', '2025-11-21 01:14:38'),
(33954, 'mk', 'socialmedia', 'Edit Social Media Link', 'Уреди Социјални медиуми Врска', '2025-11-21 01:14:38'),
(33955, 'mk', 'socialmedia', 'New Social Media Link', 'New Социјални медиуми Врска', '2025-11-21 01:14:38'),
(33956, 'mk', 'socialmedia', 'Your social media link count already reached the limit', 'Your Социјални медиуми Врска Број already reached the limit', '2025-11-21 01:14:38'),
(33957, 'mk', 'subscription', 'Access Type', 'Access Тип', '2025-11-21 01:14:38'),
(33958, 'mk', 'subscription', 'account-expired', 'Your Сметка expired. Please renew your subscription.', '2025-11-21 01:14:38'),
(33959, 'mk', 'subscription', 'Amount', 'Износ', '2025-11-21 01:14:38'),
(33960, 'mk', 'subscription', 'click-activate-pay-plugin', 'Кликнете овде to activate payment plugin', '2025-11-21 01:14:38'),
(33961, 'mk', 'subscription', 'Currency', 'Currency', '2025-11-21 01:14:38'),
(33962, 'mk', 'subscription', 'Directory Submit Daily Limit', 'Дневно Директориум Submission Limit', '2025-11-21 01:14:38'),
(33963, 'mk', 'subscription', 'Directory Submit Limit', 'Директориум Submission Limit', '2025-11-21 01:14:38'),
(33964, 'mk', 'subscription', 'Edit Email Template', 'Уреди Е-пошта Template', '2025-11-21 01:14:38'),
(33965, 'mk', 'subscription', 'Edit Payment Gateway', 'Уреди Payment Gateway', '2025-11-21 01:14:38'),
(33966, 'mk', 'subscription', 'Email Template Manager', 'Е-пошта Template Manager', '2025-11-21 01:14:38'),
(33967, 'mk', 'subscription', 'enable_email_activation', 'Enable Е-пошта Activation', '2025-11-21 01:14:38'),
(33968, 'mk', 'subscription', 'free_trial_period', 'Free Trial Period', '2025-11-21 01:14:38'),
(33969, 'mk', 'subscription', 'infinite_limit_text', '<b>Белешка</b>: Enter -1 for infinite limit', '2025-11-21 01:14:38'),
(33970, 'mk', 'subscription', 'internal-error-payment', 'Internal Грешка occured during payment Обработка.', '2025-11-21 01:14:38'),
(33971, 'mk', 'subscription', 'Keyword Limit', 'Клучен збор Limit', '2025-11-21 01:14:38'),
(33972, 'mk', 'subscription', 'Order Id', 'Order Id', '2025-11-21 01:14:38'),
(33973, 'mk', 'subscription', 'Orders', 'Orders', '2025-11-21 01:14:38'),
(33974, 'mk', 'subscription', 'Paid By', 'Paid By', '2025-11-21 01:14:38'),
(33975, 'mk', 'subscription', 'Payment Gateway Manager', 'Payment Gateway Manager', '2025-11-21 01:14:38'),
(33976, 'mk', 'subscription', 'Payment Method', 'Payment Method', '2025-11-21 01:14:38'),
(33977, 'mk', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2025-11-21 01:14:38'),
(33978, 'mk', 'subscription', 'Plugin Access Settings', 'Plugin Access Поставки', '2025-11-21 01:14:38'),
(33979, 'mk', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business Е-пошта', '2025-11-21 01:14:38'),
(33980, 'mk', 'subscription', 'PP_TOKEN', 'Paypal Token', '2025-11-21 01:14:38'),
(33981, 'mk', 'subscription', 'Quantity', 'Quantity', '2025-11-21 01:14:38'),
(33982, 'mk', 'subscription', 'Renew Subscription', 'Renew Subscription', '2025-11-21 01:14:38'),
(33983, 'mk', 'subscription', 'Review Link Count', 'Рецензија Врска Број', '2025-11-21 01:14:38'),
(33984, 'mk', 'subscription', 'Sandbox', 'Sandbox', '2025-11-21 01:14:38'),
(33985, 'mk', 'subscription', 'Seo Tools Access Settings', 'SEO Алатки Access Поставки', '2025-11-21 01:14:38'),
(33986, 'mk', 'subscription', 'site_auditor_max_page_limit', 'Ревизор на сајт Максимум Страница Limit', '2025-11-21 01:14:38'),
(33987, 'mk', 'subscription', 'Social Media Link Count', 'Социјални медиуми Врска Број', '2025-11-21 01:14:38'),
(33988, 'mk', 'subscription', 'SP_PAYMENT_PLUGIN', 'Стандардно Payment Plugin', '2025-11-21 01:14:38'),
(33989, 'mk', 'subscription', 'Subscribe', 'Subscribe', '2025-11-21 01:14:38'),
(33990, 'mk', 'subscription', 'Subscription', 'Subscription', '2025-11-21 01:14:38'),
(33991, 'mk', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Известување(After)', '2025-11-21 01:14:38'),
(33992, 'mk', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2025-11-21 01:14:38'),
(33993, 'mk', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2025-11-21 01:14:38'),
(33994, 'mk', 'subscription', 'Term', 'Term', '2025-11-21 01:14:38'),
(33995, 'mk', 'subscription', 'total_count_greater_account_limit', 'Вкупно Број is greater than Сметка limit - [limit]', '2025-11-21 01:14:38'),
(33996, 'mk', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Директориум submission Број is greater than Сметка limit - [limit]', '2025-11-21 01:14:38'),
(33997, 'mk', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Директориум submission Број is greater than Дневно Сметка limit - [limit]', '2025-11-21 01:14:38'),
(33998, 'mk', 'subscription', 'Transaction Id', 'Transaction Id', '2025-11-21 01:14:38'),
(33999, 'mk', 'subscription', 'Transaction Log', 'Transaction Log', '2025-11-21 01:14:38'),
(34000, 'mk', 'subscription', 'transaction-success', 'Your transaction processed successfully.', '2025-11-21 01:14:38'),
(34001, 'mk', 'subscription', 'View Order', 'Преглед Order', '2025-11-21 01:14:38'),
(34002, 'mk', 'subscription', 'Website Limit', 'Веб-страница Limit', '2025-11-21 01:14:38'),
(34003, 'mk', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2025-11-21 01:14:38'),
(34004, 'mk', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel All Plugin Tool kit</h1> \r\n <p>\r\n It includes most of the plugins developed by seo panel team for just <font class="success bold" size="14">$160</font> includes <b>Membership Subscription</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Search Engines Package</h1> \r\n <p>\r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to provide us required search engine domain list.\r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> seo plugins for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and we will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact Us</h1> \r\n <p>\r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and features</b>. Eg: To set up cron for keyword position checker.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Report Bugs</h1> \r\n <p>\r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2025-11-21 01:14:38'),
(34005, 'mk', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Help Guide</h1> \r\n <p>\r\n You can view the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>help guide</b>, it contains the <b>documentation</b> for the seo panel tools,plugins and related features.\r\n <br>It is the best place in internet to <b>get help</b> about seo panel. We hope that you <b>contribute</b> to the seo panel help guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel help guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n A place to discuss about world''s first open source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your websites. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel forum</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2025-11-21 01:14:38'),
(34006, 'mk', 'support', 'support_cont3', '<fieldset>\r\n<legend>Donate to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Donate to Seo Panel - First Open source seo control panel in the world</h1> \r\n <p>\r\n <b>Donate</b> to seo panel to support first open source seo control panel in the world.\r\n We are planning to <b>add and improve</b> features of seo panel in future. \r\n <br>With all your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please donate some amount to seo panel team.\r\n <br>We will <b>publish</b> your name and site information in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2025-11-21 01:14:38'),
(34007, 'mk', 'theme', 'Download Seo Panel Themes', 'Преземи Seo Panel Themes', '2025-11-21 01:14:38'),
(34008, 'mk', 'user', 'Edit User', 'Уреди Корисник', '2025-11-21 01:14:38'),
(34009, 'mk', 'user', 'Expiry Date', 'Expiry Датум', '2025-11-21 01:14:38'),
(34010, 'mk', 'user', 'Saved My Profile Details', 'Saved My Профил Детали', '2025-11-21 01:14:38'),
(34011, 'mk', 'webmaster', 'Average Position', 'Просек Позиција', '2025-11-21 01:14:38'),
(34012, 'mk', 'webmaster', 'Click here to connect to your google account', 'Кликнете овде to Поврзи to your Google Сметка', '2025-11-21 01:14:38'),
(34013, 'mk', 'webmaster', 'Error: Google api connection failed', 'Грешка: Google api connection Неуспешно', '2025-11-21 01:14:38'),
(34014, 'mk', 'website', 'Add to Webmaster Tools', 'Add to Webmaster Алатки', '2025-11-21 01:14:38'),
(34015, 'mk', 'website', 'Click here to get Google Analytics View Id', 'Кликнете овде to get Google Аналитика Преглед Id', '2025-11-21 01:14:38'),
(34016, 'mk', 'website', 'Edit Website', 'Уреди веб-страница', '2025-11-21 01:14:38'),
(34017, 'mk', 'website', 'Google Analytics Property', 'Google Аналитика Property', '2025-11-21 01:14:38'),
(34018, 'mk', 'website', 'Google Analytics View Id', 'Google Аналитика Преглед Id', '2025-11-21 01:14:38'),
(34019, 'mk', 'website', 'Please enter CSV file', 'Ве молиме внесете CSV Датотека', '2025-11-21 01:14:38'),
(34020, 'mk', 'website', 'plscrtwebsite', 'Please Креирај a Веб-страница before start to using SEO Алатки and seo Приклучоци.', '2025-11-21 01:14:38'),
(34021, 'mk', 'website', 'Sitemap successfully added to webmaster tools', 'Sitemap successfully added to webmaster Алатки', '2025-11-21 01:14:38'),
(34022, 'mk', 'website', 'Successfully deleted sitemap from webmaster tools', 'Успешно избришано sitemap from webmaster Алатки', '2025-11-21 01:14:38'),
(34023, 'mk', 'website', 'Successfully imported following websites', 'Successfully imported following Веб-страници', '2025-11-21 01:14:38'),
(34024, 'mk', 'website', 'Successfully sync sitemaps from webmaster tools', 'Successfully sync sitemaps from webmaster Алатки', '2025-11-21 01:14:38'),
(34025, 'mk', 'website', 'Sync Google Analytics Properties', 'Sync Google Аналитика Properties', '2025-11-21 01:14:38'),
(34026, 'mk', 'website', 'User Type already exist', 'Корисник Тип already exist', '2025-11-21 01:14:38'),
(34027, 'mk', 'website', 'Website already exist', 'Веб-страница already exist', '2025-11-21 01:14:38'),
(34028, 'mk', 'website', 'Website CSV File', 'Веб-страница CSV Датотека', '2025-11-21 01:14:38'),
(34029, 'mk', 'website', 'Website successfully added to webmaster tools', 'Веб-страница successfully added to webmaster Алатки', '2025-11-21 01:14:38'),
(34030, 'mk', 'website', 'You can add only websitecount websites more', 'You can add only [websitecount] Веб-страници for this Корисник!', '2025-11-21 01:14:38'),
(34031, 'mk', 'website', 'Your website count already reached the limit', 'Веб-страница Број already reached the limit for this Корисник!', '2025-11-21 01:14:38'),
(34032, 'mk', 'website', 'yourwebalreday', 'your Веб-страница if you have already created one.', '2025-11-21 01:14:38'),
(34686, 'no', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2025-11-21 01:20:43'),
(34687, 'no', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links from the Rapporter', '2025-11-21 01:20:43'),
(34688, 'no', 'siteauditor', 'Link Reports', 'Lenke Rapporter', '2025-11-21 01:20:43'),
(34689, 'no', 'siteauditor', 'Link Title', 'Lenke Tittel', '2025-11-21 01:20:43'),
(34690, 'no', 'siteauditor', 'Maximum number of pages to be checked', 'Maksimum Nummer of Sider to be checked', '2025-11-21 01:20:43'),
(34691, 'no', 'siteauditor', 'Maximum Pages', 'Maksimum Sider', '2025-11-21 01:20:43'),
(34692, 'no', 'siteauditor', 'No active projects found', 'No Aktiv Prosjekter found', '2025-11-21 01:20:43'),
(34693, 'no', 'siteauditor', 'Nofollow', 'Nofollow', '2025-11-21 01:20:43'),
(34694, 'no', 'siteauditor', 'Number of pages is greater than', 'Nummer of Sider is greater than', '2025-11-21 01:20:43'),
(34695, 'no', 'siteauditor', 'Number of pages should be greater than', 'Nummer of Sider should be greater than', '2025-11-21 01:20:43'),
(34696, 'no', 'siteauditor', 'Page Details', 'Side Detaljer', '2025-11-21 01:20:43'),
(34697, 'no', 'siteauditor', 'Page Link', 'Side Lenke', '2025-11-21 01:20:43'),
(34698, 'no', 'siteauditor', 'Page Links', 'Side Links', '2025-11-21 01:20:43'),
(34699, 'no', 'siteauditor', 'Pages Found', 'Sider Found', '2025-11-21 01:20:43'),
(34700, 'no', 'siteauditor', 'pressescapetostopexecution', 'Press <b>escape</b> key to stop execution of script', '2025-11-21 01:20:43'),
(34701, 'no', 'siteauditor', 'Project Summary', 'Prosjekt Summary', '2025-11-21 01:20:43'),
(34702, 'no', 'siteauditor', 'Project Url', 'Prosjekt Url', '2025-11-21 01:20:43'),
(34703, 'no', 'siteauditor', 'projectalreadyexist', 'Prosjekt for this Nettsted already exist', '2025-11-21 01:20:43'),
(34704, 'no', 'siteauditor', 'Recheck Pages', 'Recheck Sider', '2025-11-21 01:20:43'),
(34705, 'no', 'siteauditor', 'Report Summary', 'Rapport Summary', '2025-11-21 01:20:43'),
(34706, 'no', 'siteauditor', 'Run Project', 'Run Prosjekt', '2025-11-21 01:20:43'),
(34707, 'no', 'siteauditor', 'should start with', 'should start with', '2025-11-21 01:20:43'),
(34708, 'no', 'siteauditor', 'Site Auditor Settings', 'Nettstedrevisor Innstillinger', '2025-11-21 01:20:43'),
(34709, 'no', 'siteauditor', 'Store all links found in a page', 'Store all links found in a Side', '2025-11-21 01:20:43'),
(34710, 'no', 'siteauditor', 'The page description length is not between', 'The Side Beskrivelse length is not between', '2025-11-21 01:20:43'),
(34711, 'no', 'siteauditor', 'The page is brocken', 'The Side is broken', '2025-11-21 01:20:43'),
(34712, 'no', 'siteauditor', 'The page is having excellent page authority value', 'The Side has excellent Sideautoritet Verdi', '2025-11-21 01:20:43'),
(34713, 'no', 'siteauditor', 'The page is having exellent number of backlinks in', 'The Side has excellent Nummer of Tilbakekoblinger in', '2025-11-21 01:20:43'),
(34714, 'no', 'siteauditor', 'The page is having exellent pagerank', 'The Side has excellent pagerank', '2025-11-21 01:20:43'),
(34715, 'no', 'siteauditor', 'The page is having good number of backlinks in', 'The Side has good Nummer of Tilbakekoblinger in', '2025-11-21 01:20:43'),
(34716, 'no', 'siteauditor', 'The page is having good page authority value', 'The Side has good Sideautoritet Verdi', '2025-11-21 01:20:43'),
(34717, 'no', 'siteauditor', 'The page is having good pagerank', 'The Side has good pagerank', '2025-11-21 01:20:43'),
(34718, 'no', 'siteauditor', 'The page is having poor page authority value', 'The Side has poor Sideautoritet Verdi', '2025-11-21 01:20:43'),
(34719, 'no', 'siteauditor', 'The page is having poor pagerank', 'The Side has poor pagerank', '2025-11-21 01:20:43'),
(34720, 'no', 'siteauditor', 'The page is having very good page authority value', 'The Side has very good Sideautoritet Verdi', '2025-11-21 01:20:43'),
(34721, 'no', 'siteauditor', 'The page is having very good pagerank', 'The Side has very good pagerank', '2025-11-21 01:20:43'),
(34722, 'no', 'siteauditor', 'The page is not having backlinks in', 'The Side does not have Tilbakekoblinger in', '2025-11-21 01:20:43'),
(34723, 'no', 'siteauditor', 'The page is not indexed in', 'The Side is not indexed in', '2025-11-21 01:20:43'),
(34724, 'no', 'siteauditor', 'The page keywords length is not between', 'The Side Nøkkelord length is not between', '2025-11-21 01:20:43'),
(34725, 'no', 'siteauditor', 'The page title length is not between', 'The Side Tittel length is not between', '2025-11-21 01:20:43'),
(34726, 'no', 'siteauditor', 'The total number of links in page is greater than', 'The Totalt Nummer of links in Side is greater than\r\n', '2025-11-21 01:20:43'),
(34727, 'no', 'siteauditor', 'to run project again if you stopped execution', 'to run Prosjekt again if you stopped execution', '2025-11-21 01:20:43'),
(34728, 'no', 'siteauditor', 'to view the reports', 'to Vis the Rapporter', '2025-11-21 01:20:43'),
(34729, 'no', 'siteauditor', 'Total Links', 'Totalt Links', '2025-11-21 01:20:43'),
(34730, 'no', 'siteauditor', 'totallinksgreaterallowed', 'Totalt links will become greater than Maksimum links allowed to the Prosjekt', '2025-11-21 01:20:43'),
(34731, 'no', 'sitemap', 'Change frequency', 'Endring Frekvens', '2025-11-21 01:20:43'),
(34732, 'no', 'sitemap', 'clickproceedsitemap', 'Click on <b>Proceed</b> to Opprett sitemap Fil', '2025-11-21 01:20:43'),
(34733, 'no', 'sitemap', 'Download sitemap file from', 'Last ned sitemap Fil from', '2025-11-21 01:20:43'),
(34734, 'no', 'sitemap', 'Downloaded', 'Downloaded', '2025-11-21 01:20:43'),
(34735, 'no', 'sitemap', 'Exclude Url', 'Exclude Url', '2025-11-21 01:20:43'),
(34736, 'no', 'sitemap', 'processtaketime', 'This process will take Tid according to Nummer of links in your site. Vennligst vent to get sitemap Filer', '2025-11-21 01:20:43'),
(34737, 'no', 'sitemap', 'Sitemap Type', 'Sitemap Type', '2025-11-21 01:20:43'),
(34738, 'no', 'sitemap', 'Submitted', 'Submitted', '2025-11-21 01:20:43'),
(34739, 'no', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2025-11-21 01:20:43'),
(34740, 'no', 'socialmedia', 'Click here to get LinkedIn Company Id', 'Klikk her to get LinkedIn Company Id', '2025-11-21 01:20:43'),
(34741, 'no', 'socialmedia', 'Company Id', 'Company Id', '2025-11-21 01:20:43'),
(34742, 'no', 'socialmedia', 'Edit Social Media Link', 'Rediger Sosiale medier Lenke', '2025-11-21 01:20:43'),
(34743, 'no', 'socialmedia', 'New Social Media Link', 'New Sosiale medier Lenke', '2025-11-21 01:20:43'),
(34744, 'no', 'socialmedia', 'Your social media link count already reached the limit', 'Your Sosiale medier Lenke Antall already reached the limit', '2025-11-21 01:20:43'),
(34745, 'no', 'subscription', 'Access Type', 'Access Type', '2025-11-21 01:20:43'),
(34746, 'no', 'subscription', 'account-expired', 'Your Konto expired. Please renew your subscription.', '2025-11-21 01:20:43'),
(34747, 'no', 'subscription', 'Amount', 'Beløp', '2025-11-21 01:20:43'),
(34748, 'no', 'subscription', 'click-activate-pay-plugin', 'Klikk her to activate payment plugin', '2025-11-21 01:20:43'),
(34749, 'no', 'subscription', 'Currency', 'Currency', '2025-11-21 01:20:43'),
(34750, 'no', 'subscription', 'Directory Submit Daily Limit', 'Daglig Katalog Submission Limit', '2025-11-21 01:20:43'),
(34751, 'no', 'subscription', 'Directory Submit Limit', 'Katalog Submission Limit', '2025-11-21 01:20:43'),
(34752, 'no', 'subscription', 'Edit Email Template', 'Rediger E-post Template', '2025-11-21 01:20:43'),
(34753, 'no', 'subscription', 'Edit Payment Gateway', 'Rediger Payment Gateway', '2025-11-21 01:20:43'),
(34754, 'no', 'subscription', 'Email Template Manager', 'E-post Template Manager', '2025-11-21 01:20:43'),
(34755, 'no', 'subscription', 'enable_email_activation', 'Enable E-post Activation', '2025-11-21 01:20:43'),
(34756, 'no', 'subscription', 'free_trial_period', 'Free Trial Period', '2025-11-21 01:20:43'),
(34757, 'no', 'subscription', 'infinite_limit_text', '<b>Notat</b>: Enter -1 for infinite limit', '2025-11-21 01:20:43'),
(34758, 'no', 'subscription', 'internal-error-payment', 'Internal Feil occured during payment Behandler.', '2025-11-21 01:20:43'),
(34759, 'no', 'subscription', 'Keyword Limit', 'Nøkkelord Limit', '2025-11-21 01:20:43'),
(34760, 'no', 'subscription', 'Order Id', 'Order Id', '2025-11-21 01:20:43'),
(34761, 'no', 'subscription', 'Orders', 'Orders', '2025-11-21 01:20:43'),
(34762, 'no', 'subscription', 'Paid By', 'Paid By', '2025-11-21 01:20:43'),
(34763, 'no', 'subscription', 'Payment Gateway Manager', 'Payment Gateway Manager', '2025-11-21 01:20:43'),
(34764, 'no', 'subscription', 'Payment Method', 'Payment Method', '2025-11-21 01:20:43'),
(34765, 'no', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2025-11-21 01:20:43'),
(34766, 'no', 'subscription', 'Plugin Access Settings', 'Plugin Access Innstillinger', '2025-11-21 01:20:43'),
(34767, 'no', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business E-post', '2025-11-21 01:20:43'),
(34768, 'no', 'subscription', 'PP_TOKEN', 'Paypal Token', '2025-11-21 01:20:43'),
(34769, 'no', 'subscription', 'Quantity', 'Quantity', '2025-11-21 01:20:43'),
(34770, 'no', 'subscription', 'Renew Subscription', 'Renew Subscription', '2025-11-21 01:20:43'),
(34771, 'no', 'subscription', 'Review Link Count', 'Anmeldelse Lenke Antall', '2025-11-21 01:20:43'),
(34772, 'no', 'subscription', 'Sandbox', 'Sandbox', '2025-11-21 01:20:43'),
(34773, 'no', 'subscription', 'Seo Tools Access Settings', 'SEO-verktøy Access Innstillinger', '2025-11-21 01:20:43'),
(34774, 'no', 'subscription', 'site_auditor_max_page_limit', 'Nettstedrevisor Maksimum Side Limit', '2025-11-21 01:20:43'),
(34775, 'no', 'subscription', 'Social Media Link Count', 'Sosiale medier Lenke Antall', '2025-11-21 01:20:43'),
(34776, 'no', 'subscription', 'SP_PAYMENT_PLUGIN', 'Standard Payment Plugin', '2025-11-21 01:20:43'),
(34777, 'no', 'subscription', 'Subscribe', 'Subscribe', '2025-11-21 01:20:43'),
(34778, 'no', 'subscription', 'Subscription', 'Subscription', '2025-11-21 01:20:43'),
(34779, 'no', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Varsel(After)', '2025-11-21 01:20:43'),
(34780, 'no', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2025-11-21 01:20:43'),
(34781, 'no', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2025-11-21 01:20:43'),
(34782, 'no', 'subscription', 'Term', 'Term', '2025-11-21 01:20:43'),
(34783, 'no', 'subscription', 'total_count_greater_account_limit', 'Totalt Antall is greater than Konto limit - [limit]', '2025-11-21 01:20:43'),
(34784, 'no', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Katalog submission Antall is greater than Konto limit - [limit]', '2025-11-21 01:20:43'),
(34785, 'no', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Katalog submission Antall is greater than Daglig Konto limit - [limit]', '2025-11-21 01:20:43'),
(34786, 'no', 'subscription', 'Transaction Id', 'Transaction Id', '2025-11-21 01:20:43'),
(34787, 'no', 'subscription', 'Transaction Log', 'Transaction Log', '2025-11-21 01:20:43'),
(34788, 'no', 'subscription', 'transaction-success', 'Your transaction processed successfully.', '2025-11-21 01:20:43'),
(34789, 'no', 'subscription', 'View Order', 'Vis Order', '2025-11-21 01:20:43'),
(34790, 'no', 'subscription', 'Website Limit', 'Nettsted Limit', '2025-11-21 01:20:43'),
(34791, 'no', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2025-11-21 01:20:43'),
(34792, 'no', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel All Plugin Tool kit</h1> \r\n <p>\r\n It includes most of the plugins developed by seo panel team for just <font class="success bold" size="14">$160</font> includes <b>Membership Subscription</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Search Engines Package</h1> \r\n <p>\r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to provide us required search engine domain list.\r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> seo plugins for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and we will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact Us</h1> \r\n <p>\r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and features</b>. Eg: To set up cron for keyword position checker.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Report Bugs</h1> \r\n <p>\r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2025-11-21 01:20:43'),
(34793, 'no', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Help Guide</h1> \r\n <p>\r\n You can view the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>help guide</b>, it contains the <b>documentation</b> for the seo panel tools,plugins and related features.\r\n <br>It is the best place in internet to <b>get help</b> about seo panel. We hope that you <b>contribute</b> to the seo panel help guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel help guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n A place to discuss about world''s first open source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your websites. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel forum</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2025-11-21 01:20:43'),
(34794, 'no', 'support', 'support_cont3', '<fieldset>\r\n<legend>Donate to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Donate to Seo Panel - First Open source seo control panel in the world</h1> \r\n <p>\r\n <b>Donate</b> to seo panel to support first open source seo control panel in the world.\r\n We are planning to <b>add and improve</b> features of seo panel in future. \r\n <br>With all your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please donate some amount to seo panel team.\r\n <br>We will <b>publish</b> your name and site information in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2025-11-21 01:20:43'),
(34795, 'no', 'theme', 'Download Seo Panel Themes', 'Last ned Seo Panel Themes', '2025-11-21 01:20:43'),
(34796, 'no', 'user', 'Edit User', 'Rediger Bruker', '2025-11-21 01:20:43'),
(34797, 'no', 'user', 'Expiry Date', 'Expiry Dato', '2025-11-21 01:20:43'),
(34798, 'no', 'user', 'Saved My Profile Details', 'Saved My Profil Detaljer', '2025-11-21 01:20:43'),
(34799, 'no', 'webmaster', 'Average Position', 'Gjennomsnitt Posisjon', '2025-11-21 01:20:43'),
(34800, 'no', 'webmaster', 'Click here to connect to your google account', 'Klikk her to Koble til to your Google Konto', '2025-11-21 01:20:43'),
(34801, 'no', 'webmaster', 'Error: Google api connection failed', 'Feil: Google api connection Mislyktes', '2025-11-21 01:20:43'),
(34802, 'no', 'website', 'Add to Webmaster Tools', 'Add to Webmaster Verktøy', '2025-11-21 01:20:43'),
(34803, 'no', 'website', 'Click here to get Google Analytics View Id', 'Klikk her to get Google Analyse Vis Id', '2025-11-21 01:20:43'),
(34804, 'no', 'website', 'Edit Website', 'Rediger nettsted', '2025-11-21 01:20:43'),
(34805, 'no', 'website', 'Google Analytics Property', 'Google Analyse Property', '2025-11-21 01:20:43'),
(34806, 'no', 'website', 'Google Analytics View Id', 'Google Analyse Vis Id', '2025-11-21 01:20:43'),
(34807, 'no', 'website', 'Please enter CSV file', 'Vennligst skriv inn CSV Fil', '2025-11-21 01:20:43'),
(34808, 'no', 'website', 'plscrtwebsite', 'Please Opprett a Nettsted before start to using SEO-verktøy and seo Tillegg.', '2025-11-21 01:20:43'),
(34809, 'no', 'website', 'Sitemap successfully added to webmaster tools', 'Sitemap successfully added to webmaster Verktøy', '2025-11-21 01:20:43'),
(34810, 'no', 'website', 'Successfully deleted sitemap from webmaster tools', 'Vellykket slettet sitemap from webmaster Verktøy', '2025-11-21 01:20:43'),
(34811, 'no', 'website', 'Successfully imported following websites', 'Successfully imported following Nettsteder', '2025-11-21 01:20:43'),
(34812, 'no', 'website', 'Successfully sync sitemaps from webmaster tools', 'Successfully sync sitemaps from webmaster Verktøy', '2025-11-21 01:20:43'),
(34813, 'no', 'website', 'Sync Google Analytics Properties', 'Sync Google Analyse Properties', '2025-11-21 01:20:43'),
(34814, 'no', 'website', 'User Type already exist', 'Bruker Type already exist', '2025-11-21 01:20:43'),
(34815, 'no', 'website', 'Website already exist', 'Nettsted already exist', '2025-11-21 01:20:43'),
(34816, 'no', 'website', 'Website CSV File', 'Nettsted CSV Fil', '2025-11-21 01:20:43'),
(34817, 'no', 'website', 'Website successfully added to webmaster tools', 'Nettsted successfully added to webmaster Verktøy', '2025-11-21 01:20:43'),
(34818, 'no', 'website', 'You can add only websitecount websites more', 'You can add only [websitecount] Nettsteder for this Bruker!', '2025-11-21 01:20:43'),
(34819, 'no', 'website', 'Your website count already reached the limit', 'Nettsted Antall already reached the limit for this Bruker!', '2025-11-21 01:20:43'),
(34820, 'no', 'website', 'yourwebalreday', 'your Nettsted if you have already created one.', '2025-11-21 01:20:43'),
(35464, 'sq', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'crawled successfully! Waiting for crawling Tjetër Faqja for', '2025-11-21 01:21:01'),
(35465, 'sq', 'siteauditor', 'Crawling Page', 'Crawling Faqja', '2025-11-21 01:21:01'),
(35466, 'sq', 'siteauditor', 'Duplicate Description', 'Duplicate Përshkrimi', '2025-11-21 01:21:01'),
(35467, 'sq', 'siteauditor', 'Duplicate Keywords', 'Duplicate Fjalë kyçe', '2025-11-21 01:21:01'),
(35468, 'sq', 'siteauditor', 'Duplicate Title', 'Duplicate Titulli', '2025-11-21 01:21:01'),
(35469, 'sq', 'siteauditor', 'Exclude links', 'Exclude links', '2025-11-21 01:21:01'),
(35470, 'sq', 'siteauditor', 'Execute with cron', 'Execute with cron', '2025-11-21 01:21:01'),
(35471, 'sq', 'siteauditor', 'External', 'External', '2025-11-21 01:21:01'),
(35472, 'sq', 'siteauditor', 'External Links', 'External Links', '2025-11-21 01:21:01'),
(35473, 'sq', 'siteauditor', 'Import Project Links', 'Importo Projekti Links', '2025-11-21 01:21:01'),
(35474, 'sq', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2025-11-21 01:21:01'),
(35475, 'sq', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links from the Raportet', '2025-11-21 01:21:01'),
(35476, 'sq', 'siteauditor', 'Link Reports', 'Lidhje Raportet', '2025-11-21 01:21:01'),
(35477, 'sq', 'siteauditor', 'Link Title', 'Lidhje Titulli', '2025-11-21 01:21:01'),
(35478, 'sq', 'siteauditor', 'Maximum number of pages to be checked', 'Maksimumi Numri of Faqet to be checked', '2025-11-21 01:21:01'),
(35479, 'sq', 'siteauditor', 'Maximum Pages', 'Maksimumi Faqet', '2025-11-21 01:21:01'),
(35480, 'sq', 'siteauditor', 'No active projects found', 'No Aktiv Projektet found', '2025-11-21 01:21:01'),
(35481, 'sq', 'siteauditor', 'Nofollow', 'Nofollow', '2025-11-21 01:21:01'),
(35482, 'sq', 'siteauditor', 'Number of pages is greater than', 'Numri of Faqet is greater than', '2025-11-21 01:21:01'),
(35483, 'sq', 'siteauditor', 'Number of pages should be greater than', 'Numri of Faqet should be greater than', '2025-11-21 01:21:01'),
(35484, 'sq', 'siteauditor', 'Page Details', 'Faqja Detajet', '2025-11-21 01:21:01'),
(35485, 'sq', 'siteauditor', 'Page Link', 'Faqja Lidhje', '2025-11-21 01:21:01'),
(35486, 'sq', 'siteauditor', 'Page Links', 'Faqja Links', '2025-11-21 01:21:01'),
(35487, 'sq', 'siteauditor', 'Pages Found', 'Faqet Found', '2025-11-21 01:21:01'),
(35488, 'sq', 'siteauditor', 'pressescapetostopexecution', 'Press <b>escape</b> key to stop execution of script', '2025-11-21 01:21:01'),
(35489, 'sq', 'siteauditor', 'Project Summary', 'Projekti Summary', '2025-11-21 01:21:01'),
(35490, 'sq', 'siteauditor', 'Project Url', 'Projekti Url', '2025-11-21 01:21:01'),
(35491, 'sq', 'siteauditor', 'projectalreadyexist', 'Projekti for this Faqja already exist', '2025-11-21 01:21:01'),
(35492, 'sq', 'siteauditor', 'Recheck Pages', 'Recheck Faqet', '2025-11-21 01:21:01'),
(35493, 'sq', 'siteauditor', 'Report Summary', 'Raporti Summary', '2025-11-21 01:21:01'),
(35494, 'sq', 'siteauditor', 'Run Project', 'Run Projekti', '2025-11-21 01:21:01'),
(35495, 'sq', 'siteauditor', 'should start with', 'should start with', '2025-11-21 01:21:01'),
(35496, 'sq', 'siteauditor', 'Site Auditor Settings', 'Auditues faqeje Cilësimet', '2025-11-21 01:21:01'),
(35497, 'sq', 'siteauditor', 'Store all links found in a page', 'Store all links found in a Faqja', '2025-11-21 01:21:01'),
(35498, 'sq', 'siteauditor', 'The page description length is not between', 'The Faqja Përshkrimi length is not between', '2025-11-21 01:21:01'),
(35499, 'sq', 'siteauditor', 'The page is brocken', 'The Faqja is broken', '2025-11-21 01:21:01'),
(35500, 'sq', 'siteauditor', 'The page is having excellent page authority value', 'The Faqja has excellent Autoriteti i faqes Vlera', '2025-11-21 01:21:01'),
(35501, 'sq', 'siteauditor', 'The page is having exellent number of backlinks in', 'The Faqja has excellent Numri of Lidhje mbrapsht in', '2025-11-21 01:21:01'),
(35502, 'sq', 'siteauditor', 'The page is having exellent pagerank', 'The Faqja has excellent pagerank', '2025-11-21 01:21:01'),
(35503, 'sq', 'siteauditor', 'The page is having good number of backlinks in', 'The Faqja has good Numri of Lidhje mbrapsht in', '2025-11-21 01:21:01'),
(35504, 'sq', 'siteauditor', 'The page is having good page authority value', 'The Faqja has good Autoriteti i faqes Vlera', '2025-11-21 01:21:01'),
(35505, 'sq', 'siteauditor', 'The page is having good pagerank', 'The Faqja has good pagerank', '2025-11-21 01:21:01'),
(35506, 'sq', 'siteauditor', 'The page is having poor page authority value', 'The Faqja has poor Autoriteti i faqes Vlera', '2025-11-21 01:21:01'),
(35507, 'sq', 'siteauditor', 'The page is having poor pagerank', 'The Faqja has poor pagerank', '2025-11-21 01:21:01'),
(35508, 'sq', 'siteauditor', 'The page is having very good page authority value', 'The Faqja has very good Autoriteti i faqes Vlera', '2025-11-21 01:21:01'),
(35509, 'sq', 'siteauditor', 'The page is having very good pagerank', 'The Faqja has very good pagerank', '2025-11-21 01:21:01'),
(35510, 'sq', 'siteauditor', 'The page is not having backlinks in', 'The Faqja does not have Lidhje mbrapsht in', '2025-11-21 01:21:01'),
(35511, 'sq', 'siteauditor', 'The page is not indexed in', 'The Faqja is not indexed in', '2025-11-21 01:21:01'),
(35512, 'sq', 'siteauditor', 'The page keywords length is not between', 'The Faqja Fjalë kyçe length is not between', '2025-11-21 01:21:01'),
(35513, 'sq', 'siteauditor', 'The page title length is not between', 'The Faqja Titulli length is not between', '2025-11-21 01:21:01'),
(35514, 'sq', 'siteauditor', 'The total number of links in page is greater than', 'The Gjithsej Numri of links in Faqja is greater than\r\n', '2025-11-21 01:21:01'),
(35515, 'sq', 'siteauditor', 'to run project again if you stopped execution', 'to run Projekti again if you stopped execution', '2025-11-21 01:21:01'),
(35516, 'sq', 'siteauditor', 'to view the reports', 'to Shiko the Raportet', '2025-11-21 01:21:01'),
(35517, 'sq', 'siteauditor', 'Total Links', 'Gjithsej Links', '2025-11-21 01:21:01'),
(35518, 'sq', 'siteauditor', 'totallinksgreaterallowed', 'Gjithsej links will become greater than Maksimumi links allowed to the Projekti', '2025-11-21 01:21:01'),
(35519, 'sq', 'sitemap', 'Change frequency', 'Ndryshimi Frekuenca', '2025-11-21 01:21:01'),
(35520, 'sq', 'sitemap', 'clickproceedsitemap', 'Click on <b>Proceed</b> to Krijo sitemap Skedari', '2025-11-21 01:21:01'),
(35521, 'sq', 'sitemap', 'Download sitemap file from', 'Shkarko sitemap Skedari from', '2025-11-21 01:21:01'),
(35522, 'sq', 'sitemap', 'Downloaded', 'Downloaded', '2025-11-21 01:21:01'),
(35523, 'sq', 'sitemap', 'Exclude Url', 'Exclude Url', '2025-11-21 01:21:01'),
(35524, 'sq', 'sitemap', 'processtaketime', 'This process will take Koha according to Numri of links in your site. Ju lutem prisni to get sitemap Skedarët', '2025-11-21 01:21:01'),
(35525, 'sq', 'sitemap', 'Sitemap Type', 'Sitemap Lloji', '2025-11-21 01:21:01'),
(35526, 'sq', 'sitemap', 'Submitted', 'Submitted', '2025-11-21 01:21:01'),
(35527, 'sq', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2025-11-21 01:21:01'),
(35528, 'sq', 'socialmedia', 'Click here to get LinkedIn Company Id', 'Klikoni këtu to get LinkedIn Company Id', '2025-11-21 01:21:01'),
(35529, 'sq', 'socialmedia', 'Company Id', 'Company Id', '2025-11-21 01:21:01'),
(35530, 'sq', 'socialmedia', 'Edit Social Media Link', 'Ndrysho Media sociale Lidhje', '2025-11-21 01:21:01'),
(35531, 'sq', 'socialmedia', 'New Social Media Link', 'New Media sociale Lidhje', '2025-11-21 01:21:01'),
(35532, 'sq', 'socialmedia', 'Your social media link count already reached the limit', 'Your Media sociale Lidhje Numri already reached the limit', '2025-11-21 01:21:01'),
(35533, 'sq', 'subscription', 'Access Type', 'Access Lloji', '2025-11-21 01:21:01'),
(35534, 'sq', 'subscription', 'account-expired', 'Your Llogaria expired. Please renew your subscription.', '2025-11-21 01:21:01'),
(35535, 'sq', 'subscription', 'Amount', 'Shuma', '2025-11-21 01:21:01'),
(35536, 'sq', 'subscription', 'click-activate-pay-plugin', 'Klikoni këtu to activate payment plugin', '2025-11-21 01:21:01'),
(35537, 'sq', 'subscription', 'Currency', 'Currency', '2025-11-21 01:21:01'),
(35538, 'sq', 'subscription', 'Directory Submit Daily Limit', 'Çdo ditë Direktoria Submission Limit', '2025-11-21 01:21:01'),
(35539, 'sq', 'subscription', 'Directory Submit Limit', 'Direktoria Submission Limit', '2025-11-21 01:21:01'),
(35540, 'sq', 'subscription', 'Edit Email Template', 'Ndrysho Email-i Template', '2025-11-21 01:21:01'),
(35541, 'sq', 'subscription', 'Edit Payment Gateway', 'Ndrysho Payment Gateway', '2025-11-21 01:21:01'),
(35542, 'sq', 'subscription', 'Email Template Manager', 'Email-i Template Manager', '2025-11-21 01:21:01'),
(35543, 'sq', 'subscription', 'enable_email_activation', 'Enable Email-i Activation', '2025-11-21 01:21:01'),
(35544, 'sq', 'subscription', 'free_trial_period', 'Free Trial Period', '2025-11-21 01:21:01'),
(35545, 'sq', 'subscription', 'infinite_limit_text', '<b>Shënim</b>: Enter -1 for infinite limit', '2025-11-21 01:21:01'),
(35546, 'sq', 'subscription', 'internal-error-payment', 'Internal Gabim occured during payment Duke u përpunuar.', '2025-11-21 01:21:01'),
(35547, 'sq', 'subscription', 'Keyword Limit', 'Fjalë kyçe Limit', '2025-11-21 01:21:01'),
(35548, 'sq', 'subscription', 'Order Id', 'Order Id', '2025-11-21 01:21:01'),
(35549, 'sq', 'subscription', 'Orders', 'Orders', '2025-11-21 01:21:01'),
(35550, 'sq', 'subscription', 'Paid By', 'Paid By', '2025-11-21 01:21:01'),
(35551, 'sq', 'subscription', 'Payment Gateway Manager', 'Payment Gateway Manager', '2025-11-21 01:21:01'),
(35552, 'sq', 'subscription', 'Payment Method', 'Payment Method', '2025-11-21 01:21:01');
INSERT INTO `texts` VALUES
(35553, 'sq', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2025-11-21 01:21:01'),
(35554, 'sq', 'subscription', 'Plugin Access Settings', 'Plugin Access Cilësimet', '2025-11-21 01:21:01'),
(35555, 'sq', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business Email-i', '2025-11-21 01:21:01'),
(35556, 'sq', 'subscription', 'PP_TOKEN', 'Paypal Token', '2025-11-21 01:21:01'),
(35557, 'sq', 'subscription', 'Quantity', 'Quantity', '2025-11-21 01:21:01'),
(35558, 'sq', 'subscription', 'Renew Subscription', 'Renew Subscription', '2025-11-21 01:21:01'),
(35559, 'sq', 'subscription', 'Review Link Count', 'Rishikimi Lidhje Numri', '2025-11-21 01:21:01'),
(35560, 'sq', 'subscription', 'Sandbox', 'Sandbox', '2025-11-21 01:21:01'),
(35561, 'sq', 'subscription', 'Seo Tools Access Settings', 'Mjete SEO Access Cilësimet', '2025-11-21 01:21:01'),
(35562, 'sq', 'subscription', 'site_auditor_max_page_limit', 'Auditues faqeje Maksimumi Faqja Limit', '2025-11-21 01:21:01'),
(35563, 'sq', 'subscription', 'Social Media Link Count', 'Media sociale Lidhje Numri', '2025-11-21 01:21:01'),
(35564, 'sq', 'subscription', 'SP_PAYMENT_PLUGIN', 'Parazgjedhur Payment Plugin', '2025-11-21 01:21:01'),
(35565, 'sq', 'subscription', 'Subscribe', 'Subscribe', '2025-11-21 01:21:01'),
(35566, 'sq', 'subscription', 'Subscription', 'Subscription', '2025-11-21 01:21:01'),
(35567, 'sq', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Njoftimi(After)', '2025-11-21 01:21:01'),
(35568, 'sq', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2025-11-21 01:21:01'),
(35569, 'sq', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2025-11-21 01:21:01'),
(35570, 'sq', 'subscription', 'Term', 'Term', '2025-11-21 01:21:01'),
(35571, 'sq', 'subscription', 'total_count_greater_account_limit', 'Gjithsej Numri is greater than Llogaria limit - [limit]', '2025-11-21 01:21:01'),
(35572, 'sq', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Direktoria submission Numri is greater than Llogaria limit - [limit]', '2025-11-21 01:21:01'),
(35573, 'sq', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Direktoria submission Numri is greater than Çdo ditë Llogaria limit - [limit]', '2025-11-21 01:21:01'),
(35574, 'sq', 'subscription', 'Transaction Id', 'Transaction Id', '2025-11-21 01:21:01'),
(35575, 'sq', 'subscription', 'Transaction Log', 'Transaction Log', '2025-11-21 01:21:01'),
(35576, 'sq', 'subscription', 'transaction-success', 'Your transaction processed successfully.', '2025-11-21 01:21:01'),
(35577, 'sq', 'subscription', 'View Order', 'Shiko Order', '2025-11-21 01:21:01'),
(35578, 'sq', 'subscription', 'Website Limit', 'Faqja Limit', '2025-11-21 01:21:01'),
(35579, 'sq', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2025-11-21 01:21:01'),
(35580, 'sq', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel All Plugin Tool kit</h1> \r\n <p>\r\n It includes most of the plugins developed by seo panel team for just <font class="success bold" size="14">$160</font> includes <b>Membership Subscription</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Search Engines Package</h1> \r\n <p>\r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to provide us required search engine domain list.\r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> seo plugins for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and we will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact Us</h1> \r\n <p>\r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and features</b>. Eg: To set up cron for keyword position checker.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Report Bugs</h1> \r\n <p>\r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2025-11-21 01:21:01'),
(35581, 'sq', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Help Guide</h1> \r\n <p>\r\n You can view the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>help guide</b>, it contains the <b>documentation</b> for the seo panel tools,plugins and related features.\r\n <br>It is the best place in internet to <b>get help</b> about seo panel. We hope that you <b>contribute</b> to the seo panel help guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel help guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n A place to discuss about world''s first open source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your websites. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel forum</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2025-11-21 01:21:01'),
(35582, 'sq', 'support', 'support_cont3', '<fieldset>\r\n<legend>Donate to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Donate to Seo Panel - First Open source seo control panel in the world</h1> \r\n <p>\r\n <b>Donate</b> to seo panel to support first open source seo control panel in the world.\r\n We are planning to <b>add and improve</b> features of seo panel in future. \r\n <br>With all your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please donate some amount to seo panel team.\r\n <br>We will <b>publish</b> your name and site information in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2025-11-21 01:21:01'),
(35583, 'sq', 'theme', 'Download Seo Panel Themes', 'Shkarko Seo Panel Themes', '2025-11-21 01:21:01'),
(35584, 'sq', 'user', 'Edit User', 'Ndrysho Përdoruesi', '2025-11-21 01:21:01'),
(35585, 'sq', 'user', 'Expiry Date', 'Expiry Data', '2025-11-21 01:21:01'),
(35586, 'sq', 'user', 'Saved My Profile Details', 'Saved My Profili Detajet', '2025-11-21 01:21:01'),
(35587, 'sq', 'webmaster', 'Average Position', 'Mesatarja Pozicioni', '2025-11-21 01:21:01'),
(35588, 'sq', 'webmaster', 'Click here to connect to your google account', 'Klikoni këtu to Lidhuni to your Google Llogaria', '2025-11-21 01:21:01'),
(35589, 'sq', 'webmaster', 'Error: Google api connection failed', 'Gabim: Google api connection Dështoi', '2025-11-21 01:21:01'),
(35590, 'sq', 'website', 'Add to Webmaster Tools', 'Add to Webmaster Mjetet', '2025-11-21 01:21:01'),
(35591, 'sq', 'website', 'Click here to get Google Analytics View Id', 'Klikoni këtu to get Google Analitika Shiko Id', '2025-11-21 01:21:01'),
(35592, 'sq', 'website', 'Edit Website', 'Ndrysho faqen', '2025-11-21 01:21:01'),
(35593, 'sq', 'website', 'Google Analytics Property', 'Google Analitika Property', '2025-11-21 01:21:01'),
(35594, 'sq', 'website', 'Google Analytics View Id', 'Google Analitika Shiko Id', '2025-11-21 01:21:01'),
(35595, 'sq', 'website', 'Please enter CSV file', 'Ju lutem shkruani CSV Skedari', '2025-11-21 01:21:01'),
(35596, 'sq', 'website', 'plscrtwebsite', 'Please Krijo a Faqja before start to using Mjete SEO and seo Shtojcat.', '2025-11-21 01:21:01'),
(35597, 'sq', 'website', 'Sitemap successfully added to webmaster tools', 'Sitemap successfully added to webmaster Mjetet', '2025-11-21 01:21:01'),
(35598, 'sq', 'website', 'Successfully deleted sitemap from webmaster tools', 'U fshi me sukses sitemap from webmaster Mjetet', '2025-11-21 01:21:01'),
(35599, 'sq', 'website', 'Successfully imported following websites', 'Successfully imported following Faqet', '2025-11-21 01:21:01'),
(35600, 'sq', 'website', 'Successfully sync sitemaps from webmaster tools', 'Successfully sync sitemaps from webmaster Mjetet', '2025-11-21 01:21:01'),
(35601, 'sq', 'website', 'Sync Google Analytics Properties', 'Sync Google Analitika Properties', '2025-11-21 01:21:01'),
(35602, 'sq', 'website', 'User Type already exist', 'Përdoruesi Lloji already exist', '2025-11-21 01:21:01'),
(35603, 'sq', 'website', 'Website already exist', 'Faqja already exist', '2025-11-21 01:21:01'),
(35604, 'sq', 'website', 'Website CSV File', 'Faqja CSV Skedari', '2025-11-21 01:21:01'),
(35605, 'sq', 'website', 'Website successfully added to webmaster tools', 'Faqja successfully added to webmaster Mjetet', '2025-11-21 01:21:01'),
(35606, 'sq', 'website', 'You can add only websitecount websites more', 'You can add only [websitecount] Faqet for this Përdoruesi!', '2025-11-21 01:21:01'),
(35607, 'sq', 'website', 'Your website count already reached the limit', 'Faqja Numri already reached the limit for this Përdoruesi!', '2025-11-21 01:21:01'),
(35608, 'sq', 'website', 'yourwebalreday', 'your Faqja if you have already created one.', '2025-11-21 01:21:01'),
(36258, 'sw', 'siteauditor', 'Execute with cron', 'Execute with cron', '2025-11-21 01:21:20'),
(36259, 'sw', 'siteauditor', 'External', 'External', '2025-11-21 01:21:20'),
(36260, 'sw', 'siteauditor', 'External Links', 'External Links', '2025-11-21 01:21:20'),
(36261, 'sw', 'siteauditor', 'Import Project Links', 'Leta Mradi Links', '2025-11-21 01:21:20'),
(36262, 'sw', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2025-11-21 01:21:20'),
(36263, 'sw', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links from the Ripoti', '2025-11-21 01:21:20'),
(36264, 'sw', 'siteauditor', 'Link Reports', 'Kiungo Ripoti', '2025-11-21 01:21:20'),
(36265, 'sw', 'siteauditor', 'Link Title', 'Kiungo Kichwa', '2025-11-21 01:21:20'),
(36266, 'sw', 'siteauditor', 'Maximum number of pages to be checked', 'Upeo wa juu Nambari of Kurasa to be checked', '2025-11-21 01:21:20'),
(36267, 'sw', 'siteauditor', 'Maximum Pages', 'Upeo wa juu Kurasa', '2025-11-21 01:21:20'),
(36268, 'sw', 'siteauditor', 'No active projects found', 'No Amilifu Miradi found', '2025-11-21 01:21:20'),
(36269, 'sw', 'siteauditor', 'Nofollow', 'Nofollow', '2025-11-21 01:21:20'),
(36270, 'sw', 'siteauditor', 'Number of pages is greater than', 'Nambari of Kurasa is greater than', '2025-11-21 01:21:20'),
(36271, 'sw', 'siteauditor', 'Number of pages should be greater than', 'Nambari of Kurasa should be greater than', '2025-11-21 01:21:20'),
(36272, 'sw', 'siteauditor', 'Page Details', 'Ukurasa Maelezo', '2025-11-21 01:21:20'),
(36273, 'sw', 'siteauditor', 'Page Link', 'Ukurasa Kiungo', '2025-11-21 01:21:20'),
(36274, 'sw', 'siteauditor', 'Page Links', 'Ukurasa Links', '2025-11-21 01:21:20'),
(36275, 'sw', 'siteauditor', 'Pages Found', 'Kurasa Found', '2025-11-21 01:21:20'),
(36276, 'sw', 'siteauditor', 'pressescapetostopexecution', 'Press <b>escape</b> key to stop execution of script', '2025-11-21 01:21:20'),
(36277, 'sw', 'siteauditor', 'Project Summary', 'Mradi Summary', '2025-11-21 01:21:20'),
(36278, 'sw', 'siteauditor', 'Project Url', 'Mradi Url', '2025-11-21 01:21:20'),
(36279, 'sw', 'siteauditor', 'projectalreadyexist', 'Mradi for this Tovuti already exist', '2025-11-21 01:21:20'),
(36280, 'sw', 'siteauditor', 'Recheck Pages', 'Recheck Kurasa', '2025-11-21 01:21:20'),
(36281, 'sw', 'siteauditor', 'Report Summary', 'Ripoti Summary', '2025-11-21 01:21:20'),
(36282, 'sw', 'siteauditor', 'Run Project', 'Run Mradi', '2025-11-21 01:21:20'),
(36283, 'sw', 'siteauditor', 'should start with', 'should start with', '2025-11-21 01:21:20'),
(36284, 'sw', 'siteauditor', 'Site Auditor Settings', 'Mkaguzi wa tovuti Mipangilio', '2025-11-21 01:21:20'),
(36285, 'sw', 'siteauditor', 'Store all links found in a page', 'Store all links found in a Ukurasa', '2025-11-21 01:21:20'),
(36286, 'sw', 'siteauditor', 'The page description length is not between', 'The Ukurasa Maelezo length is not between', '2025-11-21 01:21:20'),
(36287, 'sw', 'siteauditor', 'The page is brocken', 'The Ukurasa is broken', '2025-11-21 01:21:20'),
(36288, 'sw', 'siteauditor', 'The page is having excellent page authority value', 'The Ukurasa has excellent Mamlaka ya ukurasa Thamani', '2025-11-21 01:21:20'),
(36289, 'sw', 'siteauditor', 'The page is having exellent number of backlinks in', 'The Ukurasa has excellent Nambari of Viungo vya nyuma in', '2025-11-21 01:21:20'),
(36290, 'sw', 'siteauditor', 'The page is having exellent pagerank', 'The Ukurasa has excellent pagerank', '2025-11-21 01:21:20'),
(36291, 'sw', 'siteauditor', 'The page is having good number of backlinks in', 'The Ukurasa has good Nambari of Viungo vya nyuma in', '2025-11-21 01:21:20'),
(36292, 'sw', 'siteauditor', 'The page is having good page authority value', 'The Ukurasa has good Mamlaka ya ukurasa Thamani', '2025-11-21 01:21:20'),
(36293, 'sw', 'siteauditor', 'The page is having good pagerank', 'The Ukurasa has good pagerank', '2025-11-21 01:21:20'),
(36294, 'sw', 'siteauditor', 'The page is having poor page authority value', 'The Ukurasa has poor Mamlaka ya ukurasa Thamani', '2025-11-21 01:21:20'),
(36295, 'sw', 'siteauditor', 'The page is having poor pagerank', 'The Ukurasa has poor pagerank', '2025-11-21 01:21:20'),
(36296, 'sw', 'siteauditor', 'The page is having very good page authority value', 'The Ukurasa has very good Mamlaka ya ukurasa Thamani', '2025-11-21 01:21:20'),
(36297, 'sw', 'siteauditor', 'The page is having very good pagerank', 'The Ukurasa has very good pagerank', '2025-11-21 01:21:20'),
(36298, 'sw', 'siteauditor', 'The page is not having backlinks in', 'The Ukurasa does not have Viungo vya nyuma in', '2025-11-21 01:21:20'),
(36299, 'sw', 'siteauditor', 'The page is not indexed in', 'The Ukurasa is not indexed in', '2025-11-21 01:21:20'),
(36300, 'sw', 'siteauditor', 'The page keywords length is not between', 'The Ukurasa Maneno muhimu length is not between', '2025-11-21 01:21:20'),
(36301, 'sw', 'siteauditor', 'The page title length is not between', 'The Ukurasa Kichwa length is not between', '2025-11-21 01:21:20'),
(36302, 'sw', 'siteauditor', 'The total number of links in page is greater than', 'The Jumla Nambari of links in Ukurasa is greater than\r\n', '2025-11-21 01:21:20'),
(36303, 'sw', 'siteauditor', 'to run project again if you stopped execution', 'to run Mradi again if you stopped execution', '2025-11-21 01:21:20'),
(36304, 'sw', 'siteauditor', 'to view the reports', 'to Tazama the Ripoti', '2025-11-21 01:21:20'),
(36305, 'sw', 'siteauditor', 'Total Links', 'Jumla Links', '2025-11-21 01:21:20'),
(36306, 'sw', 'siteauditor', 'totallinksgreaterallowed', 'Jumla links will become greater than Upeo wa juu links allowed to the Mradi', '2025-11-21 01:21:20'),
(36307, 'sw', 'sitemap', 'Change frequency', 'Mabadiliko Mzunguko', '2025-11-21 01:21:20'),
(36308, 'sw', 'sitemap', 'clickproceedsitemap', 'Click on <b>Proceed</b> to Unda sitemap Faili', '2025-11-21 01:21:20'),
(36309, 'sw', 'sitemap', 'Download sitemap file from', 'Pakua sitemap Faili from', '2025-11-21 01:21:20'),
(36310, 'sw', 'sitemap', 'Downloaded', 'Downloaded', '2025-11-21 01:21:20'),
(36311, 'sw', 'sitemap', 'Exclude Url', 'Exclude Url', '2025-11-21 01:21:20'),
(36312, 'sw', 'sitemap', 'processtaketime', 'This process will take Muda according to Nambari of links in your site. Tafadhali subiri to get sitemap Faili', '2025-11-21 01:21:20'),
(36313, 'sw', 'sitemap', 'Sitemap Type', 'Sitemap Aina', '2025-11-21 01:21:20'),
(36314, 'sw', 'sitemap', 'Submitted', 'Submitted', '2025-11-21 01:21:20'),
(36315, 'sw', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2025-11-21 01:21:20'),
(36316, 'sw', 'socialmedia', 'Click here to get LinkedIn Company Id', 'Bonyeza hapa to get LinkedIn Company Id', '2025-11-21 01:21:20'),
(36317, 'sw', 'socialmedia', 'Company Id', 'Company Id', '2025-11-21 01:21:20'),
(36318, 'sw', 'socialmedia', 'Edit Social Media Link', 'Hariri Mitandao ya kijamii Kiungo', '2025-11-21 01:21:20'),
(36319, 'sw', 'socialmedia', 'New Social Media Link', 'New Mitandao ya kijamii Kiungo', '2025-11-21 01:21:20'),
(36320, 'sw', 'socialmedia', 'Your social media link count already reached the limit', 'Your Mitandao ya kijamii Kiungo Hesabu already reached the limit', '2025-11-21 01:21:20'),
(36321, 'sw', 'subscription', 'Access Type', 'Access Aina', '2025-11-21 01:21:20'),
(36322, 'sw', 'subscription', 'account-expired', 'Your Akaunti expired. Please renew your subscription.', '2025-11-21 01:21:20'),
(36323, 'sw', 'subscription', 'Amount', 'Kiasi', '2025-11-21 01:21:20'),
(36324, 'sw', 'subscription', 'click-activate-pay-plugin', 'Bonyeza hapa to activate payment plugin', '2025-11-21 01:21:20'),
(36325, 'sw', 'subscription', 'Currency', 'Currency', '2025-11-21 01:21:20'),
(36326, 'sw', 'subscription', 'Directory Submit Daily Limit', 'Kila siku Saraka Submission Limit', '2025-11-21 01:21:20'),
(36327, 'sw', 'subscription', 'Directory Submit Limit', 'Saraka Submission Limit', '2025-11-21 01:21:20'),
(36328, 'sw', 'subscription', 'Edit Email Template', 'Hariri Barua pepe Template', '2025-11-21 01:21:20'),
(36329, 'sw', 'subscription', 'Edit Payment Gateway', 'Hariri Payment Gateway', '2025-11-21 01:21:20'),
(36330, 'sw', 'subscription', 'Email Template Manager', 'Barua pepe Template Manager', '2025-11-21 01:21:20'),
(36331, 'sw', 'subscription', 'enable_email_activation', 'Enable Barua pepe Activation', '2025-11-21 01:21:20'),
(36332, 'sw', 'subscription', 'free_trial_period', 'Free Trial Period', '2025-11-21 01:21:20'),
(36333, 'sw', 'subscription', 'infinite_limit_text', '<b>Kumbukumbu</b>: Enter -1 for infinite limit', '2025-11-21 01:21:20'),
(36334, 'sw', 'subscription', 'internal-error-payment', 'Internal Hitilafu occured during payment Inachakata.', '2025-11-21 01:21:20'),
(36335, 'sw', 'subscription', 'Keyword Limit', 'Neno muhimu Limit', '2025-11-21 01:21:20'),
(36336, 'sw', 'subscription', 'Order Id', 'Order Id', '2025-11-21 01:21:20'),
(36337, 'sw', 'subscription', 'Orders', 'Orders', '2025-11-21 01:21:20'),
(36338, 'sw', 'subscription', 'Paid By', 'Paid By', '2025-11-21 01:21:20'),
(36339, 'sw', 'subscription', 'Payment Gateway Manager', 'Payment Gateway Manager', '2025-11-21 01:21:20'),
(36340, 'sw', 'subscription', 'Payment Method', 'Payment Method', '2025-11-21 01:21:20'),
(36341, 'sw', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2025-11-21 01:21:20'),
(36342, 'sw', 'subscription', 'Plugin Access Settings', 'Plugin Access Mipangilio', '2025-11-21 01:21:20'),
(36343, 'sw', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business Barua pepe', '2025-11-21 01:21:20'),
(36344, 'sw', 'subscription', 'PP_TOKEN', 'Paypal Token', '2025-11-21 01:21:20'),
(36345, 'sw', 'subscription', 'Quantity', 'Quantity', '2025-11-21 01:21:20'),
(36346, 'sw', 'subscription', 'Renew Subscription', 'Renew Subscription', '2025-11-21 01:21:20'),
(36347, 'sw', 'subscription', 'Review Link Count', 'Mapitio Kiungo Hesabu', '2025-11-21 01:21:20'),
(36348, 'sw', 'subscription', 'Sandbox', 'Sandbox', '2025-11-21 01:21:20'),
(36349, 'sw', 'subscription', 'Seo Tools Access Settings', 'Zana za SEO Access Mipangilio', '2025-11-21 01:21:20'),
(36350, 'sw', 'subscription', 'site_auditor_max_page_limit', 'Mkaguzi wa tovuti Upeo wa juu Ukurasa Limit', '2025-11-21 01:21:20'),
(36351, 'sw', 'subscription', 'Social Media Link Count', 'Mitandao ya kijamii Kiungo Hesabu', '2025-11-21 01:21:20'),
(36352, 'sw', 'subscription', 'SP_PAYMENT_PLUGIN', 'Chaguo-msingi Payment Plugin', '2025-11-21 01:21:20'),
(36353, 'sw', 'subscription', 'Subscribe', 'Subscribe', '2025-11-21 01:21:20'),
(36354, 'sw', 'subscription', 'Subscription', 'Subscription', '2025-11-21 01:21:20'),
(36355, 'sw', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Arifa(After)', '2025-11-21 01:21:20'),
(36356, 'sw', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2025-11-21 01:21:20'),
(36357, 'sw', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2025-11-21 01:21:20'),
(36358, 'sw', 'subscription', 'Term', 'Term', '2025-11-21 01:21:20'),
(36359, 'sw', 'subscription', 'total_count_greater_account_limit', 'Jumla Hesabu is greater than Akaunti limit - [limit]', '2025-11-21 01:21:20'),
(36360, 'sw', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Saraka submission Hesabu is greater than Akaunti limit - [limit]', '2025-11-21 01:21:20'),
(36361, 'sw', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Saraka submission Hesabu is greater than Kila siku Akaunti limit - [limit]', '2025-11-21 01:21:20'),
(36362, 'sw', 'subscription', 'Transaction Id', 'Transaction Id', '2025-11-21 01:21:20'),
(36363, 'sw', 'subscription', 'Transaction Log', 'Transaction Log', '2025-11-21 01:21:20'),
(36364, 'sw', 'subscription', 'transaction-success', 'Your transaction processed successfully.', '2025-11-21 01:21:20'),
(36365, 'sw', 'subscription', 'View Order', 'Tazama Order', '2025-11-21 01:21:20'),
(36366, 'sw', 'subscription', 'Website Limit', 'Tovuti Limit', '2025-11-21 01:21:20'),
(36367, 'sw', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2025-11-21 01:21:20'),
(36368, 'sw', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel All Plugin Tool kit</h1> \r\n <p>\r\n It includes most of the plugins developed by seo panel team for just <font class="success bold" size="14">$160</font> includes <b>Membership Subscription</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Search Engines Package</h1> \r\n <p>\r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to provide us required search engine domain list.\r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> seo plugins for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and we will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact Us</h1> \r\n <p>\r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and features</b>. Eg: To set up cron for keyword position checker.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Report Bugs</h1> \r\n <p>\r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2025-11-21 01:21:20'),
(36369, 'sw', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Help Guide</h1> \r\n <p>\r\n You can view the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>help guide</b>, it contains the <b>documentation</b> for the seo panel tools,plugins and related features.\r\n <br>It is the best place in internet to <b>get help</b> about seo panel. We hope that you <b>contribute</b> to the seo panel help guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel help guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n A place to discuss about world''s first open source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your websites. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel forum</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2025-11-21 01:21:20'),
(36370, 'sw', 'support', 'support_cont3', '<fieldset>\r\n<legend>Donate to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Donate to Seo Panel - First Open source seo control panel in the world</h1> \r\n <p>\r\n <b>Donate</b> to seo panel to support first open source seo control panel in the world.\r\n We are planning to <b>add and improve</b> features of seo panel in future. \r\n <br>With all your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please donate some amount to seo panel team.\r\n <br>We will <b>publish</b> your name and site information in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2025-11-21 01:21:20'),
(36371, 'sw', 'theme', 'Download Seo Panel Themes', 'Pakua Seo Panel Themes', '2025-11-21 01:21:20'),
(36372, 'sw', 'user', 'Edit User', 'Hariri Mtumiaji', '2025-11-21 01:21:20'),
(36373, 'sw', 'user', 'Expiry Date', 'Expiry Tarehe', '2025-11-21 01:21:20'),
(36374, 'sw', 'user', 'Saved My Profile Details', 'Saved My Wasifu Maelezo', '2025-11-21 01:21:20'),
(36375, 'sw', 'webmaster', 'Average Position', 'Wastani Nafasi', '2025-11-21 01:21:20'),
(36376, 'sw', 'webmaster', 'Click here to connect to your google account', 'Bonyeza hapa to Unganisha to your Google Akaunti', '2025-11-21 01:21:20'),
(36377, 'sw', 'webmaster', 'Error: Google api connection failed', 'Hitilafu: Google api connection Imeshindwa', '2025-11-21 01:21:20'),
(36378, 'sw', 'website', 'Add to Webmaster Tools', 'Add to Webmaster Zana', '2025-11-21 01:21:20'),
(36379, 'sw', 'website', 'Click here to get Google Analytics View Id', 'Bonyeza hapa to get Google Uchanganuzi Tazama Id', '2025-11-21 01:21:20'),
(36380, 'sw', 'website', 'Edit Website', 'Hariri tovuti', '2025-11-21 01:21:20'),
(36381, 'sw', 'website', 'Google Analytics Property', 'Google Uchanganuzi Property', '2025-11-21 01:21:20'),
(36382, 'sw', 'website', 'Google Analytics View Id', 'Google Uchanganuzi Tazama Id', '2025-11-21 01:21:20'),
(36383, 'sw', 'website', 'Please enter CSV file', 'Tafadhali ingiza CSV Faili', '2025-11-21 01:21:20'),
(36384, 'sw', 'website', 'plscrtwebsite', 'Please Unda a Tovuti before start to using Zana za SEO and seo Programu-jalizi.', '2025-11-21 01:21:20'),
(36385, 'sw', 'website', 'Sitemap successfully added to webmaster tools', 'Sitemap successfully added to webmaster Zana', '2025-11-21 01:21:20'),
(36386, 'sw', 'website', 'Successfully deleted sitemap from webmaster tools', 'Imefutwa kwa mafanikio sitemap from webmaster Zana', '2025-11-21 01:21:20'),
(36387, 'sw', 'website', 'Successfully imported following websites', 'Successfully imported following Tovuti', '2025-11-21 01:21:20'),
(36388, 'sw', 'website', 'Successfully sync sitemaps from webmaster tools', 'Successfully sync sitemaps from webmaster Zana', '2025-11-21 01:21:20'),
(36389, 'sw', 'website', 'Sync Google Analytics Properties', 'Sync Google Uchanganuzi Properties', '2025-11-21 01:21:20'),
(36390, 'sw', 'website', 'User Type already exist', 'Mtumiaji Aina already exist', '2025-11-21 01:21:20'),
(36391, 'sw', 'website', 'Website already exist', 'Tovuti already exist', '2025-11-21 01:21:20'),
(36392, 'sw', 'website', 'Website CSV File', 'Tovuti CSV Faili', '2025-11-21 01:21:20'),
(36393, 'sw', 'website', 'Website successfully added to webmaster tools', 'Tovuti successfully added to webmaster Zana', '2025-11-21 01:21:20'),
(36394, 'sw', 'website', 'You can add only websitecount websites more', 'You can add only [websitecount] Tovuti for this Mtumiaji!', '2025-11-21 01:21:20'),
(36395, 'sw', 'website', 'Your website count already reached the limit', 'Tovuti Hesabu already reached the limit for this Mtumiaji!', '2025-11-21 01:21:20'),
(36396, 'sw', 'website', 'yourwebalreday', 'your Tovuti if you have already created one.', '2025-11-21 01:21:20'),
(37038, 'tl', 'siteauditor', 'Crawled', 'Crawled', '2025-11-21 01:24:52'),
(37039, 'tl', 'siteauditor', 'Crawled Pages', 'Crawled Mga Pahina', '2025-11-21 01:24:52'),
(37040, 'tl', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'crawled successfully! Waiting for crawling Susunod Pahina for', '2025-11-21 01:24:52'),
(37041, 'tl', 'siteauditor', 'Crawling Page', 'Crawling Pahina', '2025-11-21 01:24:52'),
(37042, 'tl', 'siteauditor', 'Duplicate Description', 'Duplicate Paglalarawan', '2025-11-21 01:24:52'),
(37043, 'tl', 'siteauditor', 'Duplicate Keywords', 'Duplicate Mga Keyword', '2025-11-21 01:24:52'),
(37044, 'tl', 'siteauditor', 'Duplicate Title', 'Duplicate Pamagat', '2025-11-21 01:24:52'),
(37045, 'tl', 'siteauditor', 'Exclude links', 'Exclude links', '2025-11-21 01:24:52'),
(37046, 'tl', 'siteauditor', 'Execute with cron', 'Execute with cron', '2025-11-21 01:24:52'),
(37047, 'tl', 'siteauditor', 'External', 'External', '2025-11-21 01:24:52'),
(37048, 'tl', 'siteauditor', 'External Links', 'External Links', '2025-11-21 01:24:52'),
(37049, 'tl', 'siteauditor', 'Import Project Links', 'I-import Proyekto Links', '2025-11-21 01:24:52'),
(37050, 'tl', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2025-11-21 01:24:52'),
(37051, 'tl', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links from the Mga Ulat', '2025-11-21 01:24:52'),
(37052, 'tl', 'siteauditor', 'Link Reports', 'Link Mga Ulat', '2025-11-21 01:24:52'),
(37053, 'tl', 'siteauditor', 'Link Title', 'Link Pamagat', '2025-11-21 01:24:52'),
(37054, 'tl', 'siteauditor', 'Maximum number of pages to be checked', 'Pinakamataas Numero of Mga Pahina to be checked', '2025-11-21 01:24:52'),
(37055, 'tl', 'siteauditor', 'Maximum Pages', 'Pinakamataas Mga Pahina', '2025-11-21 01:24:52'),
(37056, 'tl', 'siteauditor', 'No active projects found', 'No Aktibo Mga Proyekto found', '2025-11-21 01:24:52'),
(37057, 'tl', 'siteauditor', 'Nofollow', 'Nofollow', '2025-11-21 01:24:52'),
(37058, 'tl', 'siteauditor', 'Number of pages is greater than', 'Numero of Mga Pahina is greater than', '2025-11-21 01:24:52'),
(37059, 'tl', 'siteauditor', 'Number of pages should be greater than', 'Numero of Mga Pahina should be greater than', '2025-11-21 01:24:52'),
(37060, 'tl', 'siteauditor', 'Page Details', 'Pahina Mga Detalye', '2025-11-21 01:24:52'),
(37061, 'tl', 'siteauditor', 'Page Link', 'Pahina Link', '2025-11-21 01:24:52'),
(37062, 'tl', 'siteauditor', 'Page Links', 'Pahina Links', '2025-11-21 01:24:52'),
(37063, 'tl', 'siteauditor', 'Pages Found', 'Mga Pahina Found', '2025-11-21 01:24:52'),
(37064, 'tl', 'siteauditor', 'pressescapetostopexecution', 'Press <b>escape</b> key to stop execution of script', '2025-11-21 01:24:52'),
(37065, 'tl', 'siteauditor', 'Project Summary', 'Proyekto Summary', '2025-11-21 01:24:52'),
(37066, 'tl', 'siteauditor', 'Project Url', 'Proyekto Url', '2025-11-21 01:24:52'),
(37067, 'tl', 'siteauditor', 'projectalreadyexist', 'Proyekto for this Website already exist', '2025-11-21 01:24:52'),
(37068, 'tl', 'siteauditor', 'Recheck Pages', 'Recheck Mga Pahina', '2025-11-21 01:24:52'),
(37069, 'tl', 'siteauditor', 'Report Summary', 'Ulat Summary', '2025-11-21 01:24:52'),
(37070, 'tl', 'siteauditor', 'Run Project', 'Run Proyekto', '2025-11-21 01:24:52'),
(37071, 'tl', 'siteauditor', 'should start with', 'should start with', '2025-11-21 01:24:52'),
(37072, 'tl', 'siteauditor', 'Site Auditor Settings', 'Tagasuri ng Site Mga Setting', '2025-11-21 01:24:52'),
(37073, 'tl', 'siteauditor', 'Store all links found in a page', 'Store all links found in a Pahina', '2025-11-21 01:24:52'),
(37074, 'tl', 'siteauditor', 'The page description length is not between', 'The Pahina Paglalarawan length is not between', '2025-11-21 01:24:52'),
(37075, 'tl', 'siteauditor', 'The page is brocken', 'The Pahina is broken', '2025-11-21 01:24:52'),
(37076, 'tl', 'siteauditor', 'The page is having excellent page authority value', 'The Pahina has excellent Pahina Authority Halaga', '2025-11-21 01:24:52'),
(37077, 'tl', 'siteauditor', 'The page is having exellent number of backlinks in', 'The Pahina has excellent Numero of Mga Backlink in', '2025-11-21 01:24:52'),
(37078, 'tl', 'siteauditor', 'The page is having exellent pagerank', 'The Pahina has excellent pagerank', '2025-11-21 01:24:52'),
(37079, 'tl', 'siteauditor', 'The page is having good number of backlinks in', 'The Pahina has good Numero of Mga Backlink in', '2025-11-21 01:24:52'),
(37080, 'tl', 'siteauditor', 'The page is having good page authority value', 'The Pahina has good Pahina Authority Halaga', '2025-11-21 01:24:52'),
(37081, 'tl', 'siteauditor', 'The page is having good pagerank', 'The Pahina has good pagerank', '2025-11-21 01:24:52'),
(37082, 'tl', 'siteauditor', 'The page is having poor page authority value', 'The Pahina has poor Pahina Authority Halaga', '2025-11-21 01:24:52'),
(37083, 'tl', 'siteauditor', 'The page is having poor pagerank', 'The Pahina has poor pagerank', '2025-11-21 01:24:52'),
(37084, 'tl', 'siteauditor', 'The page is having very good page authority value', 'The Pahina has very good Pahina Authority Halaga', '2025-11-21 01:24:52'),
(37085, 'tl', 'siteauditor', 'The page is having very good pagerank', 'The Pahina has very good pagerank', '2025-11-21 01:24:52'),
(37086, 'tl', 'siteauditor', 'The page is not having backlinks in', 'The Pahina does not have Mga Backlink in', '2025-11-21 01:24:52'),
(37087, 'tl', 'siteauditor', 'The page is not indexed in', 'The Pahina is not indexed in', '2025-11-21 01:24:52'),
(37088, 'tl', 'siteauditor', 'The page keywords length is not between', 'The Pahina Mga Keyword length is not between', '2025-11-21 01:24:52'),
(37089, 'tl', 'siteauditor', 'The page title length is not between', 'The Pahina Pamagat length is not between', '2025-11-21 01:24:52'),
(37090, 'tl', 'siteauditor', 'The total number of links in page is greater than', 'The Kabuuan Numero of links in Pahina is greater than\r\n', '2025-11-21 01:24:52'),
(37091, 'tl', 'siteauditor', 'to run project again if you stopped execution', 'to run Proyekto again if you stopped execution', '2025-11-21 01:24:52'),
(37092, 'tl', 'siteauditor', 'to view the reports', 'to Tingnan the Mga Ulat', '2025-11-21 01:24:52'),
(37093, 'tl', 'siteauditor', 'Total Links', 'Kabuuan Links', '2025-11-21 01:24:52'),
(37094, 'tl', 'siteauditor', 'totallinksgreaterallowed', 'Kabuuan links will become greater than Pinakamataas links allowed to the Proyekto', '2025-11-21 01:24:52'),
(37095, 'tl', 'sitemap', 'Change frequency', 'Pagbabago Dalas', '2025-11-21 01:24:52'),
(37096, 'tl', 'sitemap', 'clickproceedsitemap', 'Click on <b>Proceed</b> to Lumikha sitemap File', '2025-11-21 01:24:52'),
(37097, 'tl', 'sitemap', 'Download sitemap file from', 'Mag-download sitemap File from', '2025-11-21 01:24:52'),
(37098, 'tl', 'sitemap', 'Downloaded', 'Downloaded', '2025-11-21 01:24:52'),
(37099, 'tl', 'sitemap', 'Exclude Url', 'Exclude Url', '2025-11-21 01:24:52'),
(37100, 'tl', 'sitemap', 'processtaketime', 'This process will take Oras according to Numero of links in your site. Pakihintay to get sitemap Mga File', '2025-11-21 01:24:52'),
(37101, 'tl', 'sitemap', 'Sitemap Type', 'Sitemap Uri', '2025-11-21 01:24:52'),
(37102, 'tl', 'sitemap', 'Submitted', 'Submitted', '2025-11-21 01:24:52'),
(37103, 'tl', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2025-11-21 01:24:52'),
(37104, 'tl', 'socialmedia', 'Click here to get LinkedIn Company Id', 'Mag-click dito to get LinkedIn Company Id', '2025-11-21 01:24:52'),
(37105, 'tl', 'socialmedia', 'Company Id', 'Company Id', '2025-11-21 01:24:52'),
(37106, 'tl', 'socialmedia', 'Edit Social Media Link', 'I-edit Social Media Link', '2025-11-21 01:24:52'),
(37107, 'tl', 'socialmedia', 'New Social Media Link', 'New Social Media Link', '2025-11-21 01:24:52'),
(37108, 'tl', 'socialmedia', 'Your social media link count already reached the limit', 'Your Social Media Link Bilang already reached the limit', '2025-11-21 01:24:52'),
(37109, 'tl', 'subscription', 'Access Type', 'Access Uri', '2025-11-21 01:24:52'),
(37110, 'tl', 'subscription', 'account-expired', 'Your Account expired. Please renew your subscription.', '2025-11-21 01:24:52'),
(37111, 'tl', 'subscription', 'Amount', 'Halaga', '2025-11-21 01:24:52'),
(37112, 'tl', 'subscription', 'click-activate-pay-plugin', 'Mag-click dito to activate payment plugin', '2025-11-21 01:24:52'),
(37113, 'tl', 'subscription', 'Currency', 'Currency', '2025-11-21 01:24:52'),
(37114, 'tl', 'subscription', 'Directory Submit Daily Limit', 'Araw-araw Direktoryo Submission Limit', '2025-11-21 01:24:52'),
(37115, 'tl', 'subscription', 'Directory Submit Limit', 'Direktoryo Submission Limit', '2025-11-21 01:24:52'),
(37116, 'tl', 'subscription', 'Edit Email Template', 'I-edit Email Template', '2025-11-21 01:24:52'),
(37117, 'tl', 'subscription', 'Edit Payment Gateway', 'I-edit Payment Gateway', '2025-11-21 01:24:52'),
(37118, 'tl', 'subscription', 'Email Template Manager', 'Email Template Manager', '2025-11-21 01:24:52'),
(37119, 'tl', 'subscription', 'enable_email_activation', 'Enable Email Activation', '2025-11-21 01:24:52'),
(37120, 'tl', 'subscription', 'free_trial_period', 'Free Trial Period', '2025-11-21 01:24:52'),
(37121, 'tl', 'subscription', 'infinite_limit_text', '<b>Tala</b>: Enter -1 for infinite limit', '2025-11-21 01:24:52'),
(37122, 'tl', 'subscription', 'internal-error-payment', 'Internal Error occured during payment Pinoproseso.', '2025-11-21 01:24:52'),
(37123, 'tl', 'subscription', 'Keyword Limit', 'Keyword Limit', '2025-11-21 01:24:52'),
(37124, 'tl', 'subscription', 'Order Id', 'Order Id', '2025-11-21 01:24:52'),
(37125, 'tl', 'subscription', 'Orders', 'Orders', '2025-11-21 01:24:52'),
(37126, 'tl', 'subscription', 'Paid By', 'Paid By', '2025-11-21 01:24:52'),
(37127, 'tl', 'subscription', 'Payment Gateway Manager', 'Payment Gateway Manager', '2025-11-21 01:24:52'),
(37128, 'tl', 'subscription', 'Payment Method', 'Payment Method', '2025-11-21 01:24:52'),
(37129, 'tl', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2025-11-21 01:24:52'),
(37130, 'tl', 'subscription', 'Plugin Access Settings', 'Plugin Access Mga Setting', '2025-11-21 01:24:52'),
(37131, 'tl', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business Email', '2025-11-21 01:24:52'),
(37132, 'tl', 'subscription', 'PP_TOKEN', 'Paypal Token', '2025-11-21 01:24:52'),
(37133, 'tl', 'subscription', 'Quantity', 'Quantity', '2025-11-21 01:24:52'),
(37134, 'tl', 'subscription', 'Renew Subscription', 'Renew Subscription', '2025-11-21 01:24:52'),
(37135, 'tl', 'subscription', 'Review Link Count', 'Review Link Bilang', '2025-11-21 01:24:52'),
(37136, 'tl', 'subscription', 'Sandbox', 'Sandbox', '2025-11-21 01:24:52'),
(37137, 'tl', 'subscription', 'Seo Tools Access Settings', 'Mga SEO Mga Kagamitan Access Mga Setting', '2025-11-21 01:24:52'),
(37138, 'tl', 'subscription', 'site_auditor_max_page_limit', 'Tagasuri ng Site Pinakamataas Pahina Limit', '2025-11-21 01:24:52'),
(37139, 'tl', 'subscription', 'Social Media Link Count', 'Social Media Link Bilang', '2025-11-21 01:24:52'),
(37140, 'tl', 'subscription', 'SP_PAYMENT_PLUGIN', 'Default Payment Plugin', '2025-11-21 01:24:52'),
(37141, 'tl', 'subscription', 'Subscribe', 'Subscribe', '2025-11-21 01:24:52'),
(37142, 'tl', 'subscription', 'Subscription', 'Subscription', '2025-11-21 01:24:52'),
(37143, 'tl', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Abiso(After)', '2025-11-21 01:24:52'),
(37144, 'tl', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2025-11-21 01:24:52'),
(37145, 'tl', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2025-11-21 01:24:52'),
(37146, 'tl', 'subscription', 'Term', 'Term', '2025-11-21 01:24:52'),
(37147, 'tl', 'subscription', 'total_count_greater_account_limit', 'Kabuuan Bilang is greater than Account limit - [limit]', '2025-11-21 01:24:52'),
(37148, 'tl', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Direktoryo submission Bilang is greater than Account limit - [limit]', '2025-11-21 01:24:52'),
(37149, 'tl', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Direktoryo submission Bilang is greater than Araw-araw Account limit - [limit]', '2025-11-21 01:24:52'),
(37150, 'tl', 'subscription', 'Transaction Id', 'Transaction Id', '2025-11-21 01:24:52'),
(37151, 'tl', 'subscription', 'Transaction Log', 'Transaction Log', '2025-11-21 01:24:52'),
(37152, 'tl', 'subscription', 'transaction-success', 'Your transaction processed successfully.', '2025-11-21 01:24:52'),
(37153, 'tl', 'subscription', 'View Order', 'Tingnan Order', '2025-11-21 01:24:52'),
(37154, 'tl', 'subscription', 'Website Limit', 'Website Limit', '2025-11-21 01:24:52'),
(37155, 'tl', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2025-11-21 01:24:52'),
(37156, 'tl', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel All Plugin Tool kit</h1> \r\n <p>\r\n It includes most of the plugins developed by seo panel team for just <font class="success bold" size="14">$160</font> includes <b>Membership Subscription</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Search Engines Package</h1> \r\n <p>\r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to provide us required search engine domain list.\r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> seo plugins for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and we will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact Us</h1> \r\n <p>\r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and features</b>. Eg: To set up cron for keyword position checker.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Report Bugs</h1> \r\n <p>\r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2025-11-21 01:24:52'),
(37157, 'tl', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Help Guide</h1> \r\n <p>\r\n You can view the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>help guide</b>, it contains the <b>documentation</b> for the seo panel tools,plugins and related features.\r\n <br>It is the best place in internet to <b>get help</b> about seo panel. We hope that you <b>contribute</b> to the seo panel help guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel help guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n A place to discuss about world''s first open source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your websites. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel forum</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2025-11-21 01:24:52');
INSERT INTO `texts` VALUES
(37158, 'tl', 'support', 'support_cont3', '<fieldset>\r\n<legend>Donate to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Donate to Seo Panel - First Open source seo control panel in the world</h1> \r\n <p>\r\n <b>Donate</b> to seo panel to support first open source seo control panel in the world.\r\n We are planning to <b>add and improve</b> features of seo panel in future. \r\n <br>With all your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please donate some amount to seo panel team.\r\n <br>We will <b>publish</b> your name and site information in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2025-11-21 01:24:52'),
(37159, 'tl', 'theme', 'Download Seo Panel Themes', 'Mag-download Seo Panel Themes', '2025-11-21 01:24:52'),
(37160, 'tl', 'user', 'Edit User', 'I-edit Gumagamit', '2025-11-21 01:24:52'),
(37161, 'tl', 'user', 'Expiry Date', 'Expiry Petsa', '2025-11-21 01:24:52'),
(37162, 'tl', 'user', 'Saved My Profile Details', 'Saved My Profile Mga Detalye', '2025-11-21 01:24:52'),
(37163, 'tl', 'webmaster', 'Average Position', 'Average Posisyon', '2025-11-21 01:24:52'),
(37164, 'tl', 'webmaster', 'Click here to connect to your google account', 'Mag-click dito to Kumonekta to your Google Account', '2025-11-21 01:24:52'),
(37165, 'tl', 'webmaster', 'Error: Google api connection failed', 'Error: Google api connection Nabigo', '2025-11-21 01:24:52'),
(37166, 'tl', 'website', 'Add to Webmaster Tools', 'Add to Webmaster Mga Kagamitan', '2025-11-21 01:24:52'),
(37167, 'tl', 'website', 'Click here to get Google Analytics View Id', 'Mag-click dito to get Google Analytics Tingnan Id', '2025-11-21 01:24:52'),
(37168, 'tl', 'website', 'Edit Website', 'I-edit ang Website', '2025-11-21 01:24:52'),
(37169, 'tl', 'website', 'Google Analytics Property', 'Google Analytics Property', '2025-11-21 01:24:52'),
(37170, 'tl', 'website', 'Google Analytics View Id', 'Google Analytics Tingnan Id', '2025-11-21 01:24:52'),
(37171, 'tl', 'website', 'Please enter CSV file', 'Pakipasok CSV File', '2025-11-21 01:24:52'),
(37172, 'tl', 'website', 'plscrtwebsite', 'Please Lumikha a Website before start to using Mga SEO Mga Kagamitan and seo Mga Plugin.', '2025-11-21 01:24:52'),
(37173, 'tl', 'website', 'Sitemap successfully added to webmaster tools', 'Sitemap successfully added to webmaster Mga Kagamitan', '2025-11-21 01:24:52'),
(37174, 'tl', 'website', 'Successfully deleted sitemap from webmaster tools', 'Matagumpay na natanggal sitemap from webmaster Mga Kagamitan', '2025-11-21 01:24:52'),
(37175, 'tl', 'website', 'Successfully imported following websites', 'Successfully imported following Mga Website', '2025-11-21 01:24:52'),
(37176, 'tl', 'website', 'Successfully sync sitemaps from webmaster tools', 'Successfully sync sitemaps from webmaster Mga Kagamitan', '2025-11-21 01:24:52'),
(37177, 'tl', 'website', 'Sync Google Analytics Properties', 'Sync Google Analytics Properties', '2025-11-21 01:24:52'),
(37178, 'tl', 'website', 'User Type already exist', 'Gumagamit Uri already exist', '2025-11-21 01:24:52'),
(37179, 'tl', 'website', 'Website already exist', 'Website already exist', '2025-11-21 01:24:52'),
(37180, 'tl', 'website', 'Website CSV File', 'Website CSV File', '2025-11-21 01:24:52'),
(37181, 'tl', 'website', 'Website successfully added to webmaster tools', 'Website successfully added to webmaster Mga Kagamitan', '2025-11-21 01:24:52'),
(37182, 'tl', 'website', 'You can add only websitecount websites more', 'You can add only [websitecount] Mga Website for this Gumagamit!', '2025-11-21 01:24:52'),
(37183, 'tl', 'website', 'Your website count already reached the limit', 'Website Bilang already reached the limit for this Gumagamit!', '2025-11-21 01:24:52'),
(37184, 'tl', 'website', 'yourwebalreday', 'your Website if you have already created one.', '2025-11-21 01:24:52'),
(37769, 'uk', 'settings', 'SP_API_KEY', 'Seo Panel API ключ', '2025-11-21 01:25:05'),
(37770, 'uk', 'settings', 'SP_COMPANY_NAME', 'Company Ім''я', '2025-11-21 01:25:05'),
(37771, 'uk', 'settings', 'SP_CRAWL_DELAY', 'Delay between each spider crawl(seconds)', '2025-11-21 01:25:05'),
(37772, 'uk', 'settings', 'SP_DEFAULTLANG', 'За замовчуванням Мова', '2025-11-21 01:25:05'),
(37773, 'uk', 'settings', 'SP_DESCRIPTION', 'Seo Panel Опис', '2025-11-21 01:25:05'),
(37774, 'uk', 'settings', 'SP_DFS_API_LOGIN', 'API Увійти', '2025-11-21 01:25:05'),
(37775, 'uk', 'settings', 'SP_DFS_API_PASSWORD', 'API Пароль', '2025-11-21 01:25:05'),
(37776, 'uk', 'settings', 'SP_DFS_BALANCE', 'DataForSEO Balance($)', '2025-11-21 01:25:05'),
(37777, 'uk', 'settings', 'SP_ENABLE_DFS', 'Enable DataForSEO', '2025-11-21 01:25:05'),
(37778, 'uk', 'settings', 'SP_ENABLE_DFS_BACK_SATU', 'Enable for Зворотне посилання and Перевірка насиченості', '2025-11-21 01:25:05'),
(37779, 'uk', 'settings', 'SP_ENABLE_DFS_SANDBOX', 'Enable Sandbox', '2025-11-21 01:25:05'),
(37780, 'uk', 'settings', 'SP_ENABLE_PROXY', 'Enable Proxy', '2025-11-21 01:25:05'),
(37781, 'uk', 'settings', 'SP_ENABLE_PROXY_GOOGLE_API', 'Enable Proxy for Google API', '2025-11-21 01:25:05'),
(37782, 'uk', 'settings', 'SP_ENABLE_RECAPTCHA', 'Enable reCAPTCHA', '2025-11-21 01:25:05'),
(37783, 'uk', 'settings', 'SP_GOOGLE_ANALYTICS_TRACK_CODE', 'Google Аналітика Tracking Code', '2025-11-21 01:25:05'),
(37784, 'uk', 'settings', 'SP_GOOGLE_API_CLIENT_ID', 'Google API Client Id', '2025-11-21 01:25:05'),
(37785, 'uk', 'settings', 'SP_GOOGLE_API_CLIENT_SECRET', 'Google API Client Secret', '2025-11-21 01:25:05'),
(37786, 'uk', 'settings', 'SP_GOOGLE_API_KEY', 'Google API ключ', '2025-11-21 01:25:05'),
(37787, 'uk', 'settings', 'SP_HOTLINKING', 'Image hotlink protection Увімкнено', '2025-11-21 01:25:05'),
(37788, 'uk', 'settings', 'SP_KEYWORDS', 'Seo Panel Ключові слова', '2025-11-21 01:25:05'),
(37789, 'uk', 'settings', 'SP_MAIL_ENCRYPTION', 'Mail Encryption', '2025-11-21 01:25:05'),
(37790, 'uk', 'settings', 'SP_MOZ_API_ACCESS_ID', 'Access ID', '2025-11-21 01:25:05'),
(37791, 'uk', 'settings', 'SP_MOZ_API_SECRET', 'Secret Key', '2025-11-21 01:25:05'),
(37792, 'uk', 'settings', 'SP_NUMBER_KEYWORDS_CRON', 'Номер of Ключові слова needs to be checked in each cron execution', '2025-11-21 01:25:05'),
(37793, 'uk', 'settings', 'SP_PAGINGNO', 'Номер of entries per Сторінка', '2025-11-21 01:25:05'),
(37794, 'uk', 'settings', 'SP_RECAPTCHA_SECRET_KEY', 'reCAPTCHA Secret Key', '2025-11-21 01:25:05'),
(37795, 'uk', 'settings', 'SP_RECAPTCHA_SITE_KEY', 'reCAPTCHA Site Key', '2025-11-21 01:25:05'),
(37796, 'uk', 'settings', 'SP_RELATIVE_LINK_CRAWL', 'Crawl relative links in a Сторінка', '2025-11-21 01:25:05'),
(37797, 'uk', 'settings', 'SP_REPORT_EMAIL_NOTIFICATION', 'Allow use of Електронна пошта Сповіщення for Звіти', '2025-11-21 01:25:05'),
(37798, 'uk', 'settings', 'SP_SEND_CUSTOM_HEADER_IN_CURL', 'Send Користувацький header with curl request', '2025-11-21 01:25:05'),
(37799, 'uk', 'settings', 'SP_SENDGRID_API', 'Enable Sendgrid API', '2025-11-21 01:25:05'),
(37800, 'uk', 'settings', 'SP_SMTP_HOST', 'SMTP Host', '2025-11-21 01:25:05'),
(37801, 'uk', 'settings', 'SP_SMTP_MAIL', 'Enable SMTP', '2025-11-21 01:25:05'),
(37802, 'uk', 'settings', 'SP_SMTP_PASSWORD', 'SMTP Пароль', '2025-11-21 01:25:05'),
(37803, 'uk', 'settings', 'SP_SMTP_PORT', 'SMTP Mail Port', '2025-11-21 01:25:05'),
(37804, 'uk', 'settings', 'SP_SMTP_USERNAME', 'SMTP Ім''я користувача', '2025-11-21 01:25:05'),
(37805, 'uk', 'settings', 'SP_SYSTEM_REPORT_INTERVAL', 'Мінімум Allowed Reporting Interval', '2025-11-21 01:25:05'),
(37806, 'uk', 'settings', 'SP_TIME_ZONE', 'Час Zone', '2025-11-21 01:25:05'),
(37807, 'uk', 'settings', 'SP_TITLE', 'Seo Panel Назва', '2025-11-21 01:25:05'),
(37808, 'uk', 'settings', 'SP_USER_AGENT', 'Користувач agent', '2025-11-21 01:25:05'),
(37809, 'uk', 'settings', 'SP_USER_GEN_REPORT', 'Allow Користувач to generate Звіти', '2025-11-21 01:25:05'),
(37810, 'uk', 'settings', 'SP_USER_REGISTRATION', 'Користувач registration interface', '2025-11-21 01:25:05'),
(37811, 'uk', 'settings', 'syssettingssaved', 'Системні налаштування saved successfully!', '2025-11-21 01:25:05'),
(37812, 'uk', 'settings', 'Verify connection', 'Verify connection', '2025-11-21 01:25:05'),
(37813, 'uk', 'settings', 'versionnotuptodatemsg', 'Your Seo Panel installation is not up До дати. <br>Please Скачати new Версія', '2025-11-21 01:25:05'),
(37814, 'uk', 'settings', 'Your Seo Panel installation is up to date', 'Your Seo Panel installation is up До дати.', '2025-11-21 01:25:05'),
(37815, 'uk', 'siteauditor', 'Anchor', 'Anchor', '2025-11-21 01:25:05'),
(37816, 'uk', 'siteauditor', 'anylinkcontainabovelinks', 'Any links contain above links will be excluded from Звіти', '2025-11-21 01:25:05'),
(37817, 'uk', 'siteauditor', 'anylinkcontainexcludesitemap', 'Any links contain above links will be excluded from sitemap', '2025-11-21 01:25:05'),
(37818, 'uk', 'siteauditor', 'Check backlinks of pages', 'Check Зворотні посилання of Сторінки', '2025-11-21 01:25:05'),
(37819, 'uk', 'siteauditor', 'Check broken links in a page', 'Check broken links in a Сторінка', '2025-11-21 01:25:05'),
(37820, 'uk', 'siteauditor', 'Check google pagerank of pages', 'Check Google pagerank of Сторінки', '2025-11-21 01:25:05'),
(37821, 'uk', 'siteauditor', 'Check pagerank of pages', 'Check pagerank of Сторінки', '2025-11-21 01:25:05'),
(37822, 'uk', 'siteauditor', 'Check pages indexed or not', 'Check Сторінки indexed or not', '2025-11-21 01:25:05'),
(37823, 'uk', 'siteauditor', 'Check Score', 'Check Оцінка', '2025-11-21 01:25:05'),
(37824, 'uk', 'siteauditor', 'checkborckenlinkwait', 'Check broken links will Збільшення the execution Час of a Проект', '2025-11-21 01:25:05'),
(37825, 'uk', 'siteauditor', 'Completed project execution', 'Завершено Проект execution', '2025-11-21 01:25:05'),
(37826, 'uk', 'siteauditor', 'Crawled', 'Crawled', '2025-11-21 01:25:05'),
(37827, 'uk', 'siteauditor', 'Crawled Pages', 'Crawled Сторінки', '2025-11-21 01:25:05'),
(37828, 'uk', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'crawled successfully! Waiting for crawling Наступний Сторінка for', '2025-11-21 01:25:05'),
(37829, 'uk', 'siteauditor', 'Crawling Page', 'Crawling Сторінка', '2025-11-21 01:25:05'),
(37830, 'uk', 'siteauditor', 'Duplicate Description', 'Duplicate Опис', '2025-11-21 01:25:05'),
(37831, 'uk', 'siteauditor', 'Duplicate Keywords', 'Duplicate Ключові слова', '2025-11-21 01:25:05'),
(37832, 'uk', 'siteauditor', 'Duplicate Title', 'Duplicate Назва', '2025-11-21 01:25:05'),
(37833, 'uk', 'siteauditor', 'Exclude links', 'Exclude links', '2025-11-21 01:25:05'),
(37834, 'uk', 'siteauditor', 'Execute with cron', 'Execute with cron', '2025-11-21 01:25:05'),
(37835, 'uk', 'siteauditor', 'External', 'External', '2025-11-21 01:25:05'),
(37836, 'uk', 'siteauditor', 'External Links', 'External Links', '2025-11-21 01:25:05'),
(37837, 'uk', 'siteauditor', 'Import Project Links', 'Імпортувати Проект Links', '2025-11-21 01:25:05'),
(37838, 'uk', 'siteauditor', 'Insert links separated with comma', 'Insert links separated with comma', '2025-11-21 01:25:05'),
(37839, 'uk', 'siteauditor', 'insertlinkssepcoma', 'Insert links separated with comma to exclude infinite links from the Звіти', '2025-11-21 01:25:05'),
(37840, 'uk', 'siteauditor', 'Link Reports', 'Посилання Звіти', '2025-11-21 01:25:05'),
(37841, 'uk', 'siteauditor', 'Link Title', 'Посилання Назва', '2025-11-21 01:25:05'),
(37842, 'uk', 'siteauditor', 'Maximum number of pages to be checked', 'Максимум Номер of Сторінки to be checked', '2025-11-21 01:25:05'),
(37843, 'uk', 'siteauditor', 'Maximum Pages', 'Максимум Сторінки', '2025-11-21 01:25:05'),
(37844, 'uk', 'siteauditor', 'No active projects found', 'No Активний Проекти found', '2025-11-21 01:25:05'),
(37845, 'uk', 'siteauditor', 'Nofollow', 'Nofollow', '2025-11-21 01:25:05'),
(37846, 'uk', 'siteauditor', 'Number of pages is greater than', 'Номер of Сторінки is greater than', '2025-11-21 01:25:05'),
(37847, 'uk', 'siteauditor', 'Number of pages should be greater than', 'Номер of Сторінки should be greater than', '2025-11-21 01:25:05'),
(37848, 'uk', 'siteauditor', 'Page Details', 'Сторінка Деталі', '2025-11-21 01:25:05'),
(37849, 'uk', 'siteauditor', 'Page Link', 'Сторінка Посилання', '2025-11-21 01:25:05'),
(37850, 'uk', 'siteauditor', 'Page Links', 'Сторінка Links', '2025-11-21 01:25:05'),
(37851, 'uk', 'siteauditor', 'Pages Found', 'Сторінки Found', '2025-11-21 01:25:05'),
(37852, 'uk', 'siteauditor', 'pressescapetostopexecution', 'Press <b>escape</b> key to stop execution of script', '2025-11-21 01:25:05'),
(37853, 'uk', 'siteauditor', 'Project Summary', 'Проект Summary', '2025-11-21 01:25:05'),
(37854, 'uk', 'siteauditor', 'Project Url', 'Проект Url', '2025-11-21 01:25:05'),
(37855, 'uk', 'siteauditor', 'projectalreadyexist', 'Проект for this Веб-сайт already exist', '2025-11-21 01:25:05'),
(37856, 'uk', 'siteauditor', 'Recheck Pages', 'Recheck Сторінки', '2025-11-21 01:25:05'),
(37857, 'uk', 'siteauditor', 'Report Summary', 'Звіт Summary', '2025-11-21 01:25:05'),
(37858, 'uk', 'siteauditor', 'Run Project', 'Run Проект', '2025-11-21 01:25:05'),
(37859, 'uk', 'siteauditor', 'should start with', 'should start with', '2025-11-21 01:25:05'),
(37860, 'uk', 'siteauditor', 'Site Auditor Settings', 'Аудитор сайту Налаштування', '2025-11-21 01:25:05'),
(37861, 'uk', 'siteauditor', 'Store all links found in a page', 'Store all links found in a Сторінка', '2025-11-21 01:25:05'),
(37862, 'uk', 'siteauditor', 'The page description length is not between', 'The Сторінка Опис length is not between', '2025-11-21 01:25:05'),
(37863, 'uk', 'siteauditor', 'The page is brocken', 'The Сторінка is broken', '2025-11-21 01:25:05'),
(37864, 'uk', 'siteauditor', 'The page is having excellent page authority value', 'The Сторінка has excellent Авторитет сторінки Значення', '2025-11-21 01:25:05'),
(37865, 'uk', 'siteauditor', 'The page is having exellent number of backlinks in', 'The Сторінка has excellent Номер of Зворотні посилання in', '2025-11-21 01:25:05'),
(37866, 'uk', 'siteauditor', 'The page is having exellent pagerank', 'The Сторінка has excellent pagerank', '2025-11-21 01:25:05'),
(37867, 'uk', 'siteauditor', 'The page is having good number of backlinks in', 'The Сторінка has good Номер of Зворотні посилання in', '2025-11-21 01:25:05'),
(37868, 'uk', 'siteauditor', 'The page is having good page authority value', 'The Сторінка has good Авторитет сторінки Значення', '2025-11-21 01:25:05'),
(37869, 'uk', 'siteauditor', 'The page is having good pagerank', 'The Сторінка has good pagerank', '2025-11-21 01:25:05'),
(37870, 'uk', 'siteauditor', 'The page is having poor page authority value', 'The Сторінка has poor Авторитет сторінки Значення', '2025-11-21 01:25:05'),
(37871, 'uk', 'siteauditor', 'The page is having poor pagerank', 'The Сторінка has poor pagerank', '2025-11-21 01:25:05'),
(37872, 'uk', 'siteauditor', 'The page is having very good page authority value', 'The Сторінка has very good Авторитет сторінки Значення', '2025-11-21 01:25:05'),
(37873, 'uk', 'siteauditor', 'The page is having very good pagerank', 'The Сторінка has very good pagerank', '2025-11-21 01:25:05'),
(37874, 'uk', 'siteauditor', 'The page is not having backlinks in', 'The Сторінка does not have Зворотні посилання in', '2025-11-21 01:25:05'),
(37875, 'uk', 'siteauditor', 'The page is not indexed in', 'The Сторінка is not indexed in', '2025-11-21 01:25:05'),
(37876, 'uk', 'siteauditor', 'The page keywords length is not between', 'The Сторінка Ключові слова length is not between', '2025-11-21 01:25:05'),
(37877, 'uk', 'siteauditor', 'The page title length is not between', 'The Сторінка Назва length is not between', '2025-11-21 01:25:05'),
(37878, 'uk', 'siteauditor', 'The total number of links in page is greater than', 'The Всього Номер of links in Сторінка is greater than\r\n', '2025-11-21 01:25:05'),
(37879, 'uk', 'siteauditor', 'to run project again if you stopped execution', 'to run Проект again if you stopped execution', '2025-11-21 01:25:05'),
(37880, 'uk', 'siteauditor', 'to view the reports', 'to Переглянути the Звіти', '2025-11-21 01:25:05'),
(37881, 'uk', 'siteauditor', 'Total Links', 'Всього Links', '2025-11-21 01:25:05'),
(37882, 'uk', 'siteauditor', 'totallinksgreaterallowed', 'Всього links will become greater than Максимум links allowed to the Проект', '2025-11-21 01:25:05'),
(37883, 'uk', 'sitemap', 'Change frequency', 'Зміна Частота', '2025-11-21 01:25:05'),
(37884, 'uk', 'sitemap', 'clickproceedsitemap', 'Click on <b>Proceed</b> to Створити sitemap Файл', '2025-11-21 01:25:05'),
(37885, 'uk', 'sitemap', 'Download sitemap file from', 'Скачати sitemap Файл from', '2025-11-21 01:25:05'),
(37886, 'uk', 'sitemap', 'Downloaded', 'Downloaded', '2025-11-21 01:25:05'),
(37887, 'uk', 'sitemap', 'Exclude Url', 'Exclude Url', '2025-11-21 01:25:05'),
(37888, 'uk', 'sitemap', 'processtaketime', 'This process will take Час according to Номер of links in your site. Будь ласка, зачекайте to get sitemap Файли', '2025-11-21 01:25:05'),
(37889, 'uk', 'sitemap', 'Sitemap Type', 'Sitemap Тип', '2025-11-21 01:25:05'),
(37890, 'uk', 'sitemap', 'Submitted', 'Submitted', '2025-11-21 01:25:05'),
(37891, 'uk', 'sitemap', 'Sync Sitemaps', 'Sync Sitemaps', '2025-11-21 01:25:05'),
(37892, 'uk', 'socialmedia', 'Click here to get LinkedIn Company Id', 'Натисніть тут to get LinkedIn Company Id', '2025-11-21 01:25:05'),
(37893, 'uk', 'socialmedia', 'Company Id', 'Company Id', '2025-11-21 01:25:05'),
(37894, 'uk', 'socialmedia', 'Edit Social Media Link', 'Редагувати Соціальні мережі Посилання', '2025-11-21 01:25:05'),
(37895, 'uk', 'socialmedia', 'New Social Media Link', 'New Соціальні мережі Посилання', '2025-11-21 01:25:05'),
(37896, 'uk', 'socialmedia', 'Your social media link count already reached the limit', 'Your Соціальні мережі Посилання Кількість already reached the limit', '2025-11-21 01:25:05'),
(37897, 'uk', 'subscription', 'Access Type', 'Access Тип', '2025-11-21 01:25:05'),
(37898, 'uk', 'subscription', 'account-expired', 'Your Обліковий запис expired. Please renew your subscription.', '2025-11-21 01:25:05'),
(37899, 'uk', 'subscription', 'Amount', 'Сума', '2025-11-21 01:25:05'),
(37900, 'uk', 'subscription', 'click-activate-pay-plugin', 'Натисніть тут to activate payment plugin', '2025-11-21 01:25:05'),
(37901, 'uk', 'subscription', 'Currency', 'Currency', '2025-11-21 01:25:05'),
(37902, 'uk', 'subscription', 'Directory Submit Daily Limit', 'Щодня Каталог Submission Limit', '2025-11-21 01:25:05'),
(37903, 'uk', 'subscription', 'Directory Submit Limit', 'Каталог Submission Limit', '2025-11-21 01:25:05'),
(37904, 'uk', 'subscription', 'Edit Email Template', 'Редагувати Електронна пошта Template', '2025-11-21 01:25:05'),
(37905, 'uk', 'subscription', 'Edit Payment Gateway', 'Редагувати Payment Gateway', '2025-11-21 01:25:05'),
(37906, 'uk', 'subscription', 'Email Template Manager', 'Електронна пошта Template Manager', '2025-11-21 01:25:05'),
(37907, 'uk', 'subscription', 'enable_email_activation', 'Enable Електронна пошта Activation', '2025-11-21 01:25:05'),
(37908, 'uk', 'subscription', 'free_trial_period', 'Free Trial Period', '2025-11-21 01:25:05'),
(37909, 'uk', 'subscription', 'infinite_limit_text', '<b>Примітка</b>: Enter -1 for infinite limit', '2025-11-21 01:25:05'),
(37910, 'uk', 'subscription', 'internal-error-payment', 'Internal Помилка occured during payment Обробка.', '2025-11-21 01:25:05'),
(37911, 'uk', 'subscription', 'Keyword Limit', 'Ключове слово Limit', '2025-11-21 01:25:05'),
(37912, 'uk', 'subscription', 'Order Id', 'Order Id', '2025-11-21 01:25:05'),
(37913, 'uk', 'subscription', 'Orders', 'Orders', '2025-11-21 01:25:05'),
(37914, 'uk', 'subscription', 'Paid By', 'Paid By', '2025-11-21 01:25:05'),
(37915, 'uk', 'subscription', 'Payment Gateway Manager', 'Payment Gateway Manager', '2025-11-21 01:25:05'),
(37916, 'uk', 'subscription', 'Payment Method', 'Payment Method', '2025-11-21 01:25:05'),
(37917, 'uk', 'subscription', 'Plans and Pricing', 'Plans and Pricing', '2025-11-21 01:25:05'),
(37918, 'uk', 'subscription', 'Plugin Access Settings', 'Plugin Access Налаштування', '2025-11-21 01:25:05'),
(37919, 'uk', 'subscription', 'PP_BUSINESS_EMAIL', 'Paypal Business Електронна пошта', '2025-11-21 01:25:05'),
(37920, 'uk', 'subscription', 'PP_TOKEN', 'Paypal Token', '2025-11-21 01:25:05'),
(37921, 'uk', 'subscription', 'Quantity', 'Quantity', '2025-11-21 01:25:05'),
(37922, 'uk', 'subscription', 'Renew Subscription', 'Renew Subscription', '2025-11-21 01:25:05'),
(37923, 'uk', 'subscription', 'Review Link Count', 'Огляд Посилання Кількість', '2025-11-21 01:25:05'),
(37924, 'uk', 'subscription', 'Sandbox', 'Sandbox', '2025-11-21 01:25:05'),
(37925, 'uk', 'subscription', 'Seo Tools Access Settings', 'SEO інструменти Access Налаштування', '2025-11-21 01:25:05'),
(37926, 'uk', 'subscription', 'site_auditor_max_page_limit', 'Аудитор сайту Максимум Сторінка Limit', '2025-11-21 01:25:05'),
(37927, 'uk', 'subscription', 'Social Media Link Count', 'Соціальні мережі Посилання Кількість', '2025-11-21 01:25:05'),
(37928, 'uk', 'subscription', 'SP_PAYMENT_PLUGIN', 'За замовчуванням Payment Plugin', '2025-11-21 01:25:05'),
(37929, 'uk', 'subscription', 'Subscribe', 'Subscribe', '2025-11-21 01:25:05'),
(37930, 'uk', 'subscription', 'Subscription', 'Subscription', '2025-11-21 01:25:05'),
(37931, 'uk', 'subscription', 'SUBSCRIPTION_EXPIRED_NOTIFICATION', 'Membership Expired Сповіщення(After)', '2025-11-21 01:25:05'),
(37932, 'uk', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_1', 'Membership Renewal Remainder 1(Before)', '2025-11-21 01:25:05'),
(37933, 'uk', 'subscription', 'SUBSCRIPTION_RENEWAL_REMINDER_2', 'Membership Renewal Remainder 2(Before)', '2025-11-21 01:25:05'),
(37934, 'uk', 'subscription', 'Term', 'Term', '2025-11-21 01:25:05'),
(37935, 'uk', 'subscription', 'total_count_greater_account_limit', 'Всього Кількість is greater than Обліковий запис limit - [limit]', '2025-11-21 01:25:05'),
(37936, 'uk', 'subscription', 'total_count_greater_account_limit_dir_sub', 'Каталог submission Кількість is greater than Обліковий запис limit - [limit]', '2025-11-21 01:25:05'),
(37937, 'uk', 'subscription', 'total_count_greater_account_limit_dir_sub_daily', 'Каталог submission Кількість is greater than Щодня Обліковий запис limit - [limit]', '2025-11-21 01:25:05'),
(37938, 'uk', 'subscription', 'Transaction Id', 'Transaction Id', '2025-11-21 01:25:05'),
(37939, 'uk', 'subscription', 'Transaction Log', 'Transaction Log', '2025-11-21 01:25:05'),
(37940, 'uk', 'subscription', 'transaction-success', 'Your transaction processed successfully.', '2025-11-21 01:25:05'),
(37941, 'uk', 'subscription', 'View Order', 'Переглянути Order', '2025-11-21 01:25:05'),
(37942, 'uk', 'subscription', 'Website Limit', 'Веб-сайт Limit', '2025-11-21 01:25:05'),
(37943, 'uk', 'subscription', 'Your transaction cancelled', 'Your transaction cancelled.', '2025-11-21 01:25:05'),
(37944, 'uk', 'support', 'support_cont1', '<fieldset>\r\n<legend>Seo Panel Support System</legend>\r\n<ul class="infobox">\r\n <li>\r\n <h1>Seo Panel All Plugin Tool kit</h1> \r\n <p>\r\n It includes most of the plugins developed by seo panel team for just <font class="success bold" size="14">$160</font> includes <b>Membership Subscription</b>,<b>themes</b> etc.\r\n </p> \r\n <p>\r\n <a href="https://www.seopanel.org/plugin/l/75/" target="_blank">Visit this link to order it</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Local Search Engines Package</h1> \r\n <p>\r\n Add <b>local search engine domains</b> of google,yahoo,msn(<b>eg: www.google.de,www.google.fr etc</b>) to seo panel <b>keyword position checker</b>, to track your site perfomance locally.\r\n To get local search engines package(according to your requirement) please <a href="<?=SP_DONATE_LINK?>" target="_blank">donate</a> $10 or more to improve the features of seo panel.\r\n Before sending donation, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> to provide us required search engine domain list.\r\n <br><br> \r\n Also to add <b>new search engines(eg:baidu.com)</b> to your seo panel keyword position checker, please <a href="<?=SP_CONTACT_LINK?>" target="_blank">contact us</a> or open a ticket in <a href="<?=SP_SUPPORT_LINK?>" target="_blank">support system</a>. \r\n </p> \r\n <p class="visit">\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li>\r\n \r\n <li>\r\n <h1>Seo Panel Plugins</h1> \r\n <p>\r\n Add <b>seo plugins</b> to your seo panel to <b>extend the features</b> according to your requirement.\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Seo panel plugins</a> are provided by both seo panel and third party sites.\r\n You can also easily <b>develop</b> seo plugins for your seo panel.\r\n You can <a href="<?=SP_PLUGINSITE?>" target="_blank">submit</a> your seo plugin to seo panel and we will <b>publish</b> it in our website after our <b>review</b> process. \r\n </p> \r\n <p>\r\n <a href="<?=SP_PLUGINSITE?>" target="_blank">Visit this link to get seo panel plugins</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Contact Us</h1> \r\n <p>\r\n Contact us for any questions about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n </p> \r\n <p>\r\n <a href="<?=SP_CONTACT_LINK?>" target="_blank">Visit this link to contact us</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Support Tickets</h1> \r\n <p>\r\n To get <b>technical support</b> from seo panel team to setup the <b>seo panel tools,plugins and features</b>. Eg: To set up cron for keyword position checker.\r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to create a support ticket</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Report Bugs</h1> \r\n <p>\r\n Report <b>bugs</b> about <b>seo panel tools,plugins and features etc</b> by using below link. \r\n please help us to improve the features in next versions. \r\n </p> \r\n <p>\r\n <a href="<?=SP_SUPPORT_LINK?>" target="_blank">Visit this link to report bugs</a>\r\n </p>\r\n <br>\r\n </li> \r\n</ul>\r\n</fieldset>', '2025-11-21 01:25:05'),
(37945, 'uk', 'support', 'support_cont2', '<fieldset>\r\n<legend>Seo Panel Online Resources</legend>\r\n<ul class="infobox">\r\n \r\n <li>\r\n <h1>Seo Panel Help Guide</h1> \r\n <p>\r\n You can view the <a href="<?=SP_HELP_LINK?>" target="_blank">seo panel documentation</a> in the <b>help guide</b>, it contains the <b>documentation</b> for the seo panel tools,plugins and related features.\r\n <br>It is the best place in internet to <b>get help</b> about seo panel. We hope that you <b>contribute</b> to the seo panel help guide, if you find errors or things missing. \r\n </p>\r\n <p>\r\n <a href="<?=SP_HELP_LINK?>" target="_blank">Visit seo panel help guide</a>\r\n </p>\r\n <br>\r\n </li> \r\n <li>\r\n <h1>Seo Panel Forum</h1> \r\n <p>\r\n A place to discuss about world''s first open source <b>seo control panel</b>. \r\n It is the best place to find the <b>answers</b> to <b>your questions</b> about seo panel. \r\n <br>Also you can <b>share</b> your <b>experience</b> while using seo panel for optimizing your websites. \r\n </p> \r\n <p>\r\n <a href="<?=SP_FORUM_LINK?>" target="_blank">Visit seo panel forum</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul> \r\n</fieldset>', '2025-11-21 01:25:05'),
(37946, 'uk', 'support', 'support_cont3', '<fieldset>\r\n<legend>Donate to Seo Panel</legend>\r\n<ul class="infobox"> \r\n <li>\r\n <h1>Donate to Seo Panel - First Open source seo control panel in the world</h1> \r\n <p>\r\n <b>Donate</b> to seo panel to support first open source seo control panel in the world.\r\n We are planning to <b>add and improve</b> features of seo panel in future. \r\n <br>With all your <b>support</b> only we can achieve our <b>goals</b>.\r\n If you feel that seo panel is <b>worth</b> for you, please donate some amount to seo panel team.\r\n <br>We will <b>publish</b> your name and site information in <a href="<?=SP_DONATE_LINK?>" target="_blank">donation page</a>, once we get donation.\r\n </p>\r\n <p>\r\n <a href="<?=SP_DONATE_LINK?>" target="_blank">Visit this link to donate to seo panel</a>\r\n </p>\r\n <br>\r\n </li>\r\n</ul>\r\n</fieldset>', '2025-11-21 01:25:05'),
(37947, 'uk', 'theme', 'Download Seo Panel Themes', 'Скачати Seo Panel Themes', '2025-11-21 01:25:05'),
(37948, 'uk', 'user', 'Edit User', 'Редагувати Користувач', '2025-11-21 01:25:05'),
(37949, 'uk', 'user', 'Expiry Date', 'Expiry Дата', '2025-11-21 01:25:05'),
(37950, 'uk', 'user', 'Saved My Profile Details', 'Saved My Профіль Деталі', '2025-11-21 01:25:05'),
(37951, 'uk', 'webmaster', 'Average Position', 'Середнє Позиція', '2025-11-21 01:25:05'),
(37952, 'uk', 'webmaster', 'Click here to connect to your google account', 'Натисніть тут to Під''єднатися to your Google Обліковий запис', '2025-11-21 01:25:05'),
(37953, 'uk', 'webmaster', 'Error: Google api connection failed', 'Помилка: Google api connection Не вдалося', '2025-11-21 01:25:05'),
(37954, 'uk', 'website', 'Add to Webmaster Tools', 'Add to Webmaster Інструменти', '2025-11-21 01:25:05'),
(37955, 'uk', 'website', 'Click here to get Google Analytics View Id', 'Натисніть тут to get Google Аналітика Переглянути Id', '2025-11-21 01:25:05'),
(37956, 'uk', 'website', 'Edit Website', 'Редагувати веб-сайт', '2025-11-21 01:25:05'),
(37957, 'uk', 'website', 'Google Analytics Property', 'Google Аналітика Property', '2025-11-21 01:25:05'),
(37958, 'uk', 'website', 'Google Analytics View Id', 'Google Аналітика Переглянути Id', '2025-11-21 01:25:05'),
(37959, 'uk', 'website', 'Please enter CSV file', 'Будь ласка, введіть CSV Файл', '2025-11-21 01:25:05'),
(37960, 'uk', 'website', 'plscrtwebsite', 'Please Створити a Веб-сайт before start to using SEO інструменти and seo Плагіни.', '2025-11-21 01:25:05'),
(37961, 'uk', 'website', 'Sitemap successfully added to webmaster tools', 'Sitemap successfully added to webmaster Інструменти', '2025-11-21 01:25:05'),
(37962, 'uk', 'website', 'Successfully deleted sitemap from webmaster tools', 'Успішно видалено sitemap from webmaster Інструменти', '2025-11-21 01:25:05'),
(37963, 'uk', 'website', 'Successfully imported following websites', 'Successfully imported following Веб-сайти', '2025-11-21 01:25:05'),
(37964, 'uk', 'website', 'Successfully sync sitemaps from webmaster tools', 'Successfully sync sitemaps from webmaster Інструменти', '2025-11-21 01:25:05'),
(37965, 'uk', 'website', 'Sync Google Analytics Properties', 'Sync Google Аналітика Properties', '2025-11-21 01:25:05'),
(37966, 'uk', 'website', 'User Type already exist', 'Користувач Тип already exist', '2025-11-21 01:25:05'),
(37967, 'uk', 'website', 'Website already exist', 'Веб-сайт already exist', '2025-11-21 01:25:05'),
(37968, 'uk', 'website', 'Website CSV File', 'Веб-сайт CSV Файл', '2025-11-21 01:25:05'),
(37969, 'uk', 'website', 'Website successfully added to webmaster tools', 'Веб-сайт successfully added to webmaster Інструменти', '2025-11-21 01:25:05'),
(37970, 'uk', 'website', 'You can add only websitecount websites more', 'You can add only [websitecount] Веб-сайти for this Користувач!', '2025-11-21 01:25:05'),
(37971, 'uk', 'website', 'Your website count already reached the limit', 'Веб-сайт Кількість already reached the limit for this Користувач!', '2025-11-21 01:25:05'),
(37972, 'uk', 'website', 'yourwebalreday', 'your Веб-сайт if you have already created one.', '2025-11-21 01:25:05'),
(39653, 'ar', 'common', 'API Token', 'رمز API', '2026-01-23 10:31:57'),
(39654, 'bg', 'common', 'API Token', 'API Токен', '2026-01-23 10:31:57'),
(39655, 'cn', 'common', 'API Token', 'API令牌', '2026-01-23 10:31:57'),
(39656, 'cs', 'common', 'API Token', 'API Token', '2026-01-23 10:31:57'),
(39657, 'da', 'common', 'API Token', 'API Token', '2026-01-23 10:31:57'),
(39658, 'es-ar', 'common', 'API Token', 'Token API', '2026-01-23 10:31:57'),
(39659, 'fa', 'common', 'API Token', 'توکن API', '2026-01-23 10:31:57'),
(39660, 'he', 'common', 'API Token', 'אסימון API', '2026-01-23 10:31:57'),
(39661, 'hu', 'common', 'API Token', 'API Token', '2026-01-23 10:31:57'),
(39662, 'ja', 'common', 'API Token', 'APIトークン', '2026-01-23 10:31:57'),
(39663, 'lt', 'common', 'API Token', 'API Raktas', '2026-01-23 10:31:57'),
(39664, 'sk', 'common', 'API Token', 'API Token', '2026-01-23 10:31:57'),
(39665, 'sl', 'common', 'API Token', 'API Žeton', '2026-01-23 10:31:57'),
(39666, 'sr', 'common', 'API Token', 'API Токен', '2026-01-23 10:31:57'),
(39667, 'zh', 'common', 'API Token', 'API令牌', '2026-01-23 10:31:57'),
(39668, 'ar', 'common', 'General', 'عام', '2026-01-23 10:31:57'),
(39669, 'bg', 'common', 'General', 'Общи', '2026-01-23 10:31:57'),
(39670, 'cn', 'common', 'General', '一般', '2026-01-23 10:31:57'),
(39671, 'cs', 'common', 'General', 'Obecné', '2026-01-23 10:31:57'),
(39672, 'da', 'common', 'General', 'Generelt', '2026-01-23 10:31:57'),
(39673, 'es-ar', 'common', 'General', 'General', '2026-01-23 10:31:57'),
(39674, 'fa', 'common', 'General', 'عمومی', '2026-01-23 10:31:57'),
(39675, 'he', 'common', 'General', 'כללי', '2026-01-23 10:31:57'),
(39676, 'hu', 'common', 'General', 'Általános', '2026-01-23 10:31:57'),
(39677, 'ja', 'common', 'General', '一般', '2026-01-23 10:31:57'),
(39678, 'lt', 'common', 'General', 'Bendra', '2026-01-23 10:31:57'),
(39679, 'sk', 'common', 'General', 'Všeobecné', '2026-01-23 10:31:57'),
(39680, 'sl', 'common', 'General', 'Splošno', '2026-01-23 10:31:57'),
(39681, 'zh', 'common', 'General', '一般', '2026-01-23 10:31:57'),
(39682, 'ar', 'common', 'Metric', 'مقياس', '2026-01-23 10:31:57'),
(39683, 'bg', 'common', 'Metric', 'Метрика', '2026-01-23 10:31:57'),
(39684, 'cn', 'common', 'Metric', '指标', '2026-01-23 10:31:57'),
(39685, 'cs', 'common', 'Metric', 'Metrika', '2026-01-23 10:31:57'),
(39686, 'da', 'common', 'Metric', 'Metrik', '2026-01-23 10:31:57'),
(39687, 'es-ar', 'common', 'Metric', 'Métrica', '2026-01-23 10:31:57'),
(39688, 'fa', 'common', 'Metric', 'معیار', '2026-01-23 10:31:57'),
(39689, 'he', 'common', 'Metric', 'מדד', '2026-01-23 10:31:57'),
(39690, 'hu', 'common', 'Metric', 'Metrika', '2026-01-23 10:31:57'),
(39691, 'ja', 'common', 'Metric', 'メトリック', '2026-01-23 10:31:57'),
(39692, 'lt', 'common', 'Metric', 'Metrika', '2026-01-23 10:31:57'),
(39693, 'sk', 'common', 'Metric', 'Metrika', '2026-01-23 10:31:57'),
(39694, 'sl', 'common', 'Metric', 'Metrika', '2026-01-23 10:31:57'),
(39695, 'sr', 'common', 'Metric', 'Метрика', '2026-01-23 10:31:57'),
(39696, 'zh', 'common', 'Metric', '指标', '2026-01-23 10:31:57'),
(39697, 'ar', 'common', 'Number', 'رقم', '2026-01-23 10:31:57'),
(39698, 'bg', 'common', 'Number', 'Номер', '2026-01-23 10:31:57'),
(39699, 'cn', 'common', 'Number', '编号', '2026-01-23 10:31:57'),
(39700, 'cs', 'common', 'Number', 'Číslo', '2026-01-23 10:31:57'),
(39701, 'da', 'common', 'Number', 'Nummer', '2026-01-23 10:31:57'),
(39702, 'es-ar', 'common', 'Number', 'Número', '2026-01-23 10:31:57'),
(39703, 'fa', 'common', 'Number', 'شماره', '2026-01-23 10:31:57'),
(39704, 'he', 'common', 'Number', 'מספר', '2026-01-23 10:31:57'),
(39705, 'hu', 'common', 'Number', 'Szám', '2026-01-23 10:31:57'),
(39706, 'ja', 'common', 'Number', '番号', '2026-01-23 10:31:57'),
(39707, 'lt', 'common', 'Number', 'Numeris', '2026-01-23 10:31:57'),
(39708, 'sk', 'common', 'Number', 'Číslo', '2026-01-23 10:31:57'),
(39709, 'sl', 'common', 'Number', 'Številka', '2026-01-23 10:31:57'),
(39710, 'sr', 'common', 'Number', 'Број', '2026-01-23 10:31:57'),
(39711, 'zh', 'common', 'Number', '编号', '2026-01-23 10:31:57'),
(39712, 'ar', 'common', 'Range', 'نطاق', '2026-01-23 10:31:57'),
(39713, 'bg', 'common', 'Range', 'Диапазон', '2026-01-23 10:31:57'),
(39714, 'cn', 'common', 'Range', '范围', '2026-01-23 10:31:57'),
(39715, 'cs', 'common', 'Range', 'Rozsah', '2026-01-23 10:31:57'),
(39716, 'da', 'common', 'Range', 'Område', '2026-01-23 10:31:57'),
(39717, 'es-ar', 'common', 'Range', 'Rango', '2026-01-23 10:31:57'),
(39718, 'fa', 'common', 'Range', 'محدوده', '2026-01-23 10:31:57'),
(39719, 'he', 'common', 'Range', 'טווח', '2026-01-23 10:31:57'),
(39720, 'hu', 'common', 'Range', 'Tartomány', '2026-01-23 10:31:57'),
(39721, 'ja', 'common', 'Range', '範囲', '2026-01-23 10:31:57'),
(39722, 'lt', 'common', 'Range', 'Intervalas', '2026-01-23 10:31:57'),
(39723, 'sk', 'common', 'Range', 'Rozsah', '2026-01-23 10:31:57'),
(39724, 'sl', 'common', 'Range', 'Obseg', '2026-01-23 10:31:57'),
(39725, 'sr', 'common', 'Range', 'Опсег', '2026-01-23 10:31:57'),
(39726, 'zh', 'common', 'Range', '范围', '2026-01-23 10:31:57'),
(39727, 'ar', 'common', 'Rankings', 'التصنيفات', '2026-01-23 10:31:57'),
(39728, 'bg', 'common', 'Rankings', 'Класиране', '2026-01-23 10:31:57'),
(39729, 'cn', 'common', 'Rankings', '排名', '2026-01-23 10:31:57'),
(39730, 'cs', 'common', 'Rankings', 'Žebříčky', '2026-01-23 10:31:57'),
(39731, 'da', 'common', 'Rankings', 'Placeringer', '2026-01-23 10:31:57'),
(39732, 'es-ar', 'common', 'Rankings', 'Rankings', '2026-01-23 10:31:57'),
(39733, 'fa', 'common', 'Rankings', 'رتبهبندیها', '2026-01-23 10:31:57'),
(39734, 'he', 'common', 'Rankings', 'דירוגים', '2026-01-23 10:31:57'),
(39735, 'hu', 'common', 'Rankings', 'Rangsorok', '2026-01-23 10:31:57'),
(39736, 'ja', 'common', 'Rankings', 'ランキング', '2026-01-23 10:31:57'),
(39737, 'lt', 'common', 'Rankings', 'Reitingai', '2026-01-23 10:31:57'),
(39738, 'sk', 'common', 'Rankings', 'Rebríčky', '2026-01-23 10:31:57'),
(39739, 'sl', 'common', 'Rankings', 'Uvrstitve', '2026-01-23 10:31:57'),
(39740, 'sr', 'common', 'Rankings', 'Рангирање', '2026-01-23 10:31:57'),
(39741, 'zh', 'common', 'Rankings', '排名', '2026-01-23 10:31:57'),
(39742, 'ar', 'common', 'Source', 'مصدر', '2026-01-23 10:31:57'),
(39743, 'bg', 'common', 'Source', 'Източник', '2026-01-23 10:31:57'),
(39744, 'cn', 'common', 'Source', '来源', '2026-01-23 10:31:57'),
(39745, 'cs', 'common', 'Source', 'Zdroj', '2026-01-23 10:31:57'),
(39746, 'da', 'common', 'Source', 'Kilde', '2026-01-23 10:31:57'),
(39747, 'es-ar', 'common', 'Source', 'Fuente', '2026-01-23 10:31:57'),
(39748, 'fa', 'common', 'Source', 'منبع', '2026-01-23 10:31:57'),
(39749, 'he', 'common', 'Source', 'מקור', '2026-01-23 10:31:57'),
(39750, 'hu', 'common', 'Source', 'Forrás', '2026-01-23 10:31:57'),
(39751, 'ja', 'common', 'Source', 'ソース', '2026-01-23 10:31:57'),
(39752, 'lt', 'common', 'Source', 'Šaltinis', '2026-01-23 10:31:57'),
(39753, 'pt-br', 'common', 'Source', 'Fonte', '2026-01-23 10:31:57'),
(39754, 'sk', 'common', 'Source', 'Zdroj', '2026-01-23 10:31:57'),
(39755, 'sl', 'common', 'Source', 'Vir', '2026-01-23 10:31:57'),
(39756, 'tr', 'common', 'Source', 'Kaynak', '2026-01-23 10:31:57'),
(39757, 'zh', 'common', 'Source', '来源', '2026-01-23 10:31:57'),
(39758, 'ar', 'common', 'Spam Score', 'درجة البريد المزعج', '2026-01-23 10:31:57'),
(39759, 'bg', 'common', 'Spam Score', 'Spam Резултат', '2026-01-23 10:31:57'),
(39760, 'cn', 'common', 'Spam Score', '垃圾邮件分数', '2026-01-23 10:31:57'),
(39761, 'cs', 'common', 'Spam Score', 'Spam Skóre', '2026-01-23 10:31:57'),
(39762, 'da', 'common', 'Spam Score', 'Spam Score', '2026-01-23 10:31:57'),
(39763, 'es-ar', 'common', 'Spam Score', 'Puntuación de Spam', '2026-01-23 10:31:57'),
(39764, 'fa', 'common', 'Spam Score', 'امتیاز اسپم', '2026-01-23 10:31:57'),
(39765, 'he', 'common', 'Spam Score', 'ציון ספאם', '2026-01-23 10:31:57'),
(39766, 'hu', 'common', 'Spam Score', 'Spam Pontszám', '2026-01-23 10:31:57'),
(39767, 'ja', 'common', 'Spam Score', 'スパムスコア', '2026-01-23 10:31:57'),
(39768, 'lt', 'common', 'Spam Score', 'Spam Balas', '2026-01-23 10:31:57'),
(39769, 'sk', 'common', 'Spam Score', 'Spam Skóre', '2026-01-23 10:31:57'),
(39770, 'sl', 'common', 'Spam Score', 'Ocena neželene pošte', '2026-01-23 10:31:57'),
(39771, 'sr', 'common', 'Spam Score', 'Spam Резултат', '2026-01-23 10:31:57'),
(39772, 'zh', 'common', 'Spam Score', '垃圾邮件分数', '2026-01-23 10:31:57'),
(39773, 'ar', 'common', 'Invalid Url', 'رابط غير صالح', '2026-01-23 10:31:57'),
(39774, 'bg', 'common', 'Invalid Url', 'Невалиден URL', '2026-01-23 10:31:57'),
(39775, 'cn', 'common', 'Invalid Url', '无效的URL', '2026-01-23 10:31:57'),
(39776, 'cs', 'common', 'Invalid Url', 'Neplatná URL', '2026-01-23 10:31:57'),
(39777, 'da', 'common', 'Invalid Url', 'Ugyldig URL', '2026-01-23 10:31:57'),
(39778, 'es-ar', 'common', 'Invalid Url', 'URL inválida', '2026-01-23 10:31:57'),
(39779, 'fa', 'common', 'Invalid Url', 'آدرس نامعتبر', '2026-01-23 10:31:57'),
(39780, 'he', 'common', 'Invalid Url', 'כתובת URL לא חוקית', '2026-01-23 10:31:57'),
(39781, 'hu', 'common', 'Invalid Url', 'Érvénytelen URL', '2026-01-23 10:31:57'),
(39782, 'ja', 'common', 'Invalid Url', '無効なURL', '2026-01-23 10:31:57'),
(39783, 'lt', 'common', 'Invalid Url', 'Netinkamas URL', '2026-01-23 10:31:57'),
(39784, 'sk', 'common', 'Invalid Url', 'Neplatná URL', '2026-01-23 10:31:57'),
(39785, 'sl', 'common', 'Invalid Url', 'Neveljaven URL', '2026-01-23 10:31:57'),
(39786, 'sr', 'common', 'Invalid Url', 'Неважећи URL', '2026-01-23 10:31:57'),
(39787, 'zh', 'common', 'Invalid Url', '无效的URL', '2026-01-23 10:31:57'),
(39788, 'ar', 'common', 'reCAPTCHA verification failed', 'فشل التحقق من reCAPTCHA', '2026-01-23 10:31:57'),
(39789, 'bg', 'common', 'reCAPTCHA verification failed', 'Неуспешна reCAPTCHA проверка', '2026-01-23 10:31:57'),
(39790, 'cn', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA验证失败', '2026-01-23 10:31:57'),
(39791, 'cs', 'common', 'reCAPTCHA verification failed', 'Ověření reCAPTCHA selhalo', '2026-01-23 10:31:57'),
(39792, 'da', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA bekræftelse mislykkedes', '2026-01-23 10:31:57'),
(39793, 'es-ar', 'common', 'reCAPTCHA verification failed', 'La verificación de reCAPTCHA falló', '2026-01-23 10:31:57'),
(39794, 'fa', 'common', 'reCAPTCHA verification failed', 'تأیید reCAPTCHA ناموفق بود', '2026-01-23 10:31:57'),
(39795, 'fr', 'common', 'reCAPTCHA verification failed', 'La vérification reCAPTCHA a échoué', '2026-01-23 10:31:57'),
(39796, 'he', 'common', 'reCAPTCHA verification failed', 'אימות reCAPTCHA נכשל', '2026-01-23 10:31:57'),
(39797, 'hu', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA ellenőrzés sikertelen', '2026-01-23 10:31:57'),
(39798, 'ja', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA認証に失敗しました', '2026-01-23 10:31:57'),
(39799, 'lt', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA patvirtinimas nepavyko', '2026-01-23 10:31:57'),
(39800, 'pt', 'common', 'reCAPTCHA verification failed', 'Verificação reCAPTCHA falhou', '2026-01-23 10:31:57'),
(39801, 'pt-br', 'common', 'reCAPTCHA verification failed', 'Verificação reCAPTCHA falhou', '2026-01-23 10:31:57'),
(39802, 'sk', 'common', 'reCAPTCHA verification failed', 'Overenie reCAPTCHA zlyhalo', '2026-01-23 10:31:57'),
(39803, 'sl', 'common', 'reCAPTCHA verification failed', 'Preverjanje reCAPTCHA ni uspelo', '2026-01-23 10:31:57'),
(39804, 'tr', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA doğrulaması başarısız oldu', '2026-01-23 10:31:57'),
(39805, 'zh', 'common', 'reCAPTCHA verification failed', 'reCAPTCHA验证失败', '2026-01-23 10:31:57'),
(39806, 'ar', 'label', 'Day', 'يوم', '2026-01-23 10:31:57'),
(39807, 'bg', 'label', 'Day', 'Ден', '2026-01-23 10:31:57'),
(39808, 'cn', 'label', 'Day', '天', '2026-01-23 10:31:57'),
(39809, 'cs', 'label', 'Day', 'Den', '2026-01-23 10:31:57'),
(39810, 'da', 'label', 'Day', 'Dag', '2026-01-23 10:31:57'),
(39811, 'es-ar', 'label', 'Day', 'Día', '2026-01-23 10:31:57'),
(39812, 'fa', 'label', 'Day', 'روز', '2026-01-23 10:31:57'),
(39813, 'he', 'label', 'Day', 'יום', '2026-01-23 10:31:57'),
(39814, 'hu', 'label', 'Day', 'Nap', '2026-01-23 10:31:57'),
(39815, 'ja', 'label', 'Day', '日', '2026-01-23 10:31:57'),
(39816, 'lt', 'label', 'Day', 'Diena', '2026-01-23 10:31:57'),
(39817, 'sk', 'label', 'Day', 'Deň', '2026-01-23 10:31:57'),
(39818, 'sl', 'label', 'Day', 'Dan', '2026-01-23 10:31:57'),
(39819, 'sr', 'label', 'Day', 'Дан', '2026-01-23 10:31:57'),
(39820, 'zh', 'label', 'Day', '天', '2026-01-23 10:31:57'),
(39821, 'ar', 'label', 'Week', 'أسبوع', '2026-01-23 10:31:57'),
(39822, 'bg', 'label', 'Week', 'Седмица', '2026-01-23 10:31:57'),
(39823, 'cn', 'label', 'Week', '周', '2026-01-23 10:31:57'),
(39824, 'cs', 'label', 'Week', 'Týden', '2026-01-23 10:31:57'),
(39825, 'da', 'label', 'Week', 'Uge', '2026-01-23 10:31:57'),
(39826, 'es-ar', 'label', 'Week', 'Semana', '2026-01-23 10:31:57'),
(39827, 'fa', 'label', 'Week', 'هفته', '2026-01-23 10:31:57'),
(39828, 'he', 'label', 'Week', 'שבוע', '2026-01-23 10:31:57'),
(39829, 'hu', 'label', 'Week', 'Hét', '2026-01-23 10:31:57'),
(39830, 'ja', 'label', 'Week', '週', '2026-01-23 10:31:57'),
(39831, 'lt', 'label', 'Week', 'Savaitė', '2026-01-23 10:31:57'),
(39832, 'pt-br', 'label', 'Week', 'Semana', '2026-01-23 10:31:57'),
(39833, 'sk', 'label', 'Week', 'Týždeň', '2026-01-23 10:31:57'),
(39834, 'sl', 'label', 'Week', 'Teden', '2026-01-23 10:31:57'),
(39835, 'sr', 'label', 'Week', 'Недеља', '2026-01-23 10:31:57'),
(39836, 'zh', 'label', 'Week', '周', '2026-01-23 10:31:57'),
(39837, 'ar', 'label', 'Month', 'شهر', '2026-01-23 10:31:57'),
(39838, 'bg', 'label', 'Month', 'Месец', '2026-01-23 10:31:57'),
(39839, 'cn', 'label', 'Month', '月', '2026-01-23 10:31:57'),
(39840, 'cs', 'label', 'Month', 'Měsíc', '2026-01-23 10:31:57'),
(39841, 'da', 'label', 'Month', 'Måned', '2026-01-23 10:31:57'),
(39842, 'es-ar', 'label', 'Month', 'Mes', '2026-01-23 10:31:57'),
(39843, 'fa', 'label', 'Month', 'ماه', '2026-01-23 10:31:57'),
(39844, 'he', 'label', 'Month', 'חודש', '2026-01-23 10:31:57'),
(39845, 'hu', 'label', 'Month', 'Hónap', '2026-01-23 10:31:57'),
(39846, 'ja', 'label', 'Month', '月', '2026-01-23 10:31:57'),
(39847, 'lt', 'label', 'Month', 'Mėnuo', '2026-01-23 10:31:57'),
(39848, 'sk', 'label', 'Month', 'Mesiac', '2026-01-23 10:31:57'),
(39849, 'sl', 'label', 'Month', 'Mesec', '2026-01-23 10:31:57'),
(39850, 'sr', 'label', 'Month', 'Месец', '2026-01-23 10:31:57'),
(39851, 'zh', 'label', 'Month', '月', '2026-01-23 10:31:57'),
(39852, 'ar', 'label', 'Year', 'سنة', '2026-01-23 10:31:57'),
(39853, 'bg', 'label', 'Year', 'Година', '2026-01-23 10:31:57'),
(39854, 'cn', 'label', 'Year', '年', '2026-01-23 10:31:57'),
(39855, 'cs', 'label', 'Year', 'Rok', '2026-01-23 10:31:57'),
(39856, 'da', 'label', 'Year', 'År', '2026-01-23 10:31:57'),
(39857, 'es-ar', 'label', 'Year', 'Año', '2026-01-23 10:31:57'),
(39858, 'fa', 'label', 'Year', 'سال', '2026-01-23 10:31:57'),
(39859, 'he', 'label', 'Year', 'שנה', '2026-01-23 10:31:57'),
(39860, 'hu', 'label', 'Year', 'Év', '2026-01-23 10:31:57'),
(39861, 'ja', 'label', 'Year', '年', '2026-01-23 10:31:57'),
(39862, 'lt', 'label', 'Year', 'Metai', '2026-01-23 10:31:57'),
(39863, 'pt-br', 'label', 'Year', 'Ano', '2026-01-23 10:31:57'),
(39864, 'sk', 'label', 'Year', 'Rok', '2026-01-23 10:31:57'),
(39865, 'sl', 'label', 'Year', 'Leto', '2026-01-23 10:31:57'),
(39866, 'sr', 'label', 'Year', 'Година', '2026-01-23 10:31:57'),
(39867, 'zh', 'label', 'Year', '年', '2026-01-23 10:31:57'),
(39868, 'ar', 'label', 'Hour', 'ساعة', '2026-01-23 10:31:57'),
(39869, 'bg', 'label', 'Hour', 'Час', '2026-01-23 10:31:57'),
(39870, 'cn', 'label', 'Hour', '小时', '2026-01-23 10:31:57'),
(39871, 'cs', 'label', 'Hour', 'Hodina', '2026-01-23 10:31:57'),
(39872, 'da', 'label', 'Hour', 'Time', '2026-01-23 10:31:57'),
(39873, 'es-ar', 'label', 'Hour', 'Hora', '2026-01-23 10:31:57'),
(39874, 'fa', 'label', 'Hour', 'ساعت', '2026-01-23 10:31:57'),
(39875, 'he', 'label', 'Hour', 'שעה', '2026-01-23 10:31:57'),
(39876, 'hu', 'label', 'Hour', 'Óra', '2026-01-23 10:31:57'),
(39877, 'ja', 'label', 'Hour', '時間', '2026-01-23 10:31:57');
INSERT INTO `texts` VALUES
(39878, 'lt', 'label', 'Hour', 'Valanda', '2026-01-23 10:31:57'),
(39879, 'sk', 'label', 'Hour', 'Hodina', '2026-01-23 10:31:57'),
(39880, 'sl', 'label', 'Hour', 'Ura', '2026-01-23 10:31:57'),
(39881, 'sr', 'label', 'Hour', 'Сат', '2026-01-23 10:31:57'),
(39882, 'zh', 'label', 'Hour', '小时', '2026-01-23 10:31:57'),
(39883, 'ar', 'label', 'Minute', 'دقيقة', '2026-01-23 10:31:57'),
(39884, 'bg', 'label', 'Minute', 'Минута', '2026-01-23 10:31:57'),
(39885, 'cn', 'label', 'Minute', '分钟', '2026-01-23 10:31:57'),
(39886, 'cs', 'label', 'Minute', 'Minuta', '2026-01-23 10:31:57'),
(39887, 'da', 'label', 'Minute', 'Minut', '2026-01-23 10:31:57'),
(39888, 'es-ar', 'label', 'Minute', 'Minuto', '2026-01-23 10:31:57'),
(39889, 'fa', 'label', 'Minute', 'دقیقه', '2026-01-23 10:31:57'),
(39890, 'he', 'label', 'Minute', 'דקה', '2026-01-23 10:31:57'),
(39891, 'hu', 'label', 'Minute', 'Perc', '2026-01-23 10:31:57'),
(39892, 'ja', 'label', 'Minute', '分', '2026-01-23 10:31:57'),
(39893, 'lt', 'label', 'Minute', 'Minutė', '2026-01-23 10:31:57'),
(39894, 'pt-br', 'label', 'Minute', 'Minuto', '2026-01-23 10:31:57'),
(39895, 'sk', 'label', 'Minute', 'Minúta', '2026-01-23 10:31:57'),
(39896, 'sl', 'label', 'Minute', 'Minuta', '2026-01-23 10:31:57'),
(39897, 'sr', 'label', 'Minute', 'Минут', '2026-01-23 10:31:57'),
(39898, 'tr', 'label', 'Minute', 'Dakika', '2026-01-23 10:31:57'),
(39899, 'zh', 'label', 'Minute', '分钟', '2026-01-23 10:31:57'),
(39900, 'ar', 'label', 'Second', 'ثانية', '2026-01-23 10:31:57'),
(39901, 'bg', 'label', 'Second', 'Секунда', '2026-01-23 10:31:57'),
(39902, 'cn', 'label', 'Second', '秒', '2026-01-23 10:31:57'),
(39903, 'cs', 'label', 'Second', 'Sekunda', '2026-01-23 10:31:57'),
(39904, 'da', 'label', 'Second', 'Sekund', '2026-01-23 10:31:57'),
(39905, 'es-ar', 'label', 'Second', 'Segundo', '2026-01-23 10:31:57'),
(39906, 'fa', 'label', 'Second', 'ثانیه', '2026-01-23 10:31:57'),
(39907, 'he', 'label', 'Second', 'שנייה', '2026-01-23 10:31:57'),
(39908, 'hu', 'label', 'Second', 'Másodperc', '2026-01-23 10:31:57'),
(39909, 'ja', 'label', 'Second', '秒', '2026-01-23 10:31:57'),
(39910, 'lt', 'label', 'Second', 'Sekundė', '2026-01-23 10:31:57'),
(39911, 'pt-br', 'label', 'Second', 'Segundo', '2026-01-23 10:31:57'),
(39912, 'sk', 'label', 'Second', 'Sekunda', '2026-01-23 10:31:57'),
(39913, 'sl', 'label', 'Second', 'Sekunda', '2026-01-23 10:31:57'),
(39914, 'sr', 'label', 'Second', 'Секунда', '2026-01-23 10:31:57'),
(39915, 'tr', 'label', 'Second', 'Saniye', '2026-01-23 10:31:57'),
(39916, 'zh', 'label', 'Second', '秒', '2026-01-23 10:31:57'),
(39917, 'ar', 'label', 'Success', 'نجاح', '2026-01-23 10:31:57'),
(39918, 'cn', 'label', 'Success', '成功', '2026-01-23 10:31:57'),
(39919, 'cs', 'label', 'Success', 'Úspěch', '2026-01-23 10:31:57'),
(39920, 'da', 'label', 'Success', 'Succes', '2026-01-23 10:31:57'),
(39921, 'es-ar', 'label', 'Success', 'Éxito', '2026-01-23 10:31:57'),
(39922, 'fa', 'label', 'Success', 'موفقیت', '2026-01-23 10:31:57'),
(39923, 'he', 'label', 'Success', 'הצלחה', '2026-01-23 10:31:57'),
(39924, 'hu', 'label', 'Success', 'Siker', '2026-01-23 10:31:57'),
(39925, 'lt', 'label', 'Success', 'Sėkmė', '2026-01-23 10:31:57'),
(39926, 'sk', 'label', 'Success', 'Úspech', '2026-01-23 10:31:57'),
(39927, 'sl', 'label', 'Success', 'Uspeh', '2026-01-23 10:31:57'),
(39928, 'sr', 'label', 'Success', 'Успех', '2026-01-23 10:31:57'),
(39929, 'ar', 'label', 'Fail', 'فشل', '2026-01-23 10:31:57'),
(39930, 'cn', 'label', 'Fail', '失败', '2026-01-23 10:31:57'),
(39931, 'cs', 'label', 'Fail', 'Selhání', '2026-01-23 10:31:57'),
(39932, 'da', 'label', 'Fail', 'Fejl', '2026-01-23 10:31:57'),
(39933, 'es-ar', 'label', 'Fail', 'Fallo', '2026-01-23 10:31:57'),
(39934, 'fa', 'label', 'Fail', 'شکست', '2026-01-23 10:31:57'),
(39935, 'he', 'label', 'Fail', 'נכשל', '2026-01-23 10:31:57'),
(39936, 'hu', 'label', 'Fail', 'Sikertelen', '2026-01-23 10:31:57'),
(39937, 'lt', 'label', 'Fail', 'Nepavyko', '2026-01-23 10:31:57'),
(39938, 'sk', 'label', 'Fail', 'Zlyhanie', '2026-01-23 10:31:57'),
(39939, 'sl', 'label', 'Fail', 'Neuspeh', '2026-01-23 10:31:57'),
(39940, 'sr', 'label', 'Fail', 'Неуспех', '2026-01-23 10:31:57'),
(39941, 'ar', 'label', 'From', 'من', '2026-01-23 10:31:57'),
(39942, 'bg', 'label', 'From', 'От', '2026-01-23 10:31:57'),
(39943, 'cn', 'label', 'From', '从', '2026-01-23 10:31:57'),
(39944, 'cs', 'label', 'From', 'Od', '2026-01-23 10:31:57'),
(39945, 'da', 'label', 'From', 'Fra', '2026-01-23 10:31:57'),
(39946, 'es-ar', 'label', 'From', 'Desde', '2026-01-23 10:31:57'),
(39947, 'fa', 'label', 'From', 'از', '2026-01-23 10:31:57'),
(39948, 'fr', 'label', 'From', 'De', '2026-01-23 10:31:57'),
(39949, 'he', 'label', 'From', 'מ', '2026-01-23 10:31:57'),
(39950, 'hu', 'label', 'From', 'Ettől', '2026-01-23 10:31:57'),
(39951, 'ja', 'label', 'From', 'から', '2026-01-23 10:31:57'),
(39952, 'lt', 'label', 'From', 'Nuo', '2026-01-23 10:31:57'),
(39953, 'pt-br', 'label', 'From', 'De', '2026-01-23 10:31:57'),
(39954, 'sk', 'label', 'From', 'Od', '2026-01-23 10:31:57'),
(39955, 'sl', 'label', 'From', 'Od', '2026-01-23 10:31:57'),
(39956, 'sr', 'label', 'From', 'Од', '2026-01-23 10:31:57'),
(39957, 'tr', 'label', 'From', 'Kimden', '2026-01-23 10:31:57'),
(39958, 'zh', 'label', 'From', '从', '2026-01-23 10:31:57'),
(39959, 'ar', 'label', 'Read', 'قراءة', '2026-01-23 10:31:57'),
(39960, 'bg', 'label', 'Read', 'Четене', '2026-01-23 10:31:57'),
(39961, 'cn', 'label', 'Read', '阅读', '2026-01-23 10:31:57'),
(39962, 'cs', 'label', 'Read', 'Číst', '2026-01-23 10:31:57'),
(39963, 'da', 'label', 'Read', 'Læs', '2026-01-23 10:31:57'),
(39964, 'es-ar', 'label', 'Read', 'Leer', '2026-01-23 10:31:57'),
(39965, 'fa', 'label', 'Read', 'خواندن', '2026-01-23 10:31:57'),
(39966, 'fr', 'label', 'Read', 'Lire', '2026-01-23 10:31:57'),
(39967, 'he', 'label', 'Read', 'קרא', '2026-01-23 10:31:57'),
(39968, 'hu', 'label', 'Read', 'Olvasás', '2026-01-23 10:31:57'),
(39969, 'ja', 'label', 'Read', '読む', '2026-01-23 10:31:57'),
(39970, 'lt', 'label', 'Read', 'Skaityti', '2026-01-23 10:31:57'),
(39971, 'pt-br', 'label', 'Read', 'Ler', '2026-01-23 10:31:57'),
(39972, 'sk', 'label', 'Read', 'Čítať', '2026-01-23 10:31:57'),
(39973, 'sl', 'label', 'Read', 'Beri', '2026-01-23 10:31:57'),
(39974, 'sr', 'label', 'Read', 'Читај', '2026-01-23 10:31:57'),
(39975, 'tr', 'label', 'Read', 'Oku', '2026-01-23 10:31:57'),
(39976, 'zh', 'label', 'Read', '阅读', '2026-01-23 10:31:57'),
(39977, 'ar', 'label', 'Write', 'كتابة', '2026-01-23 10:31:57'),
(39978, 'bg', 'label', 'Write', 'Писане', '2026-01-23 10:31:57'),
(39979, 'cn', 'label', 'Write', '写', '2026-01-23 10:31:57'),
(39980, 'cs', 'label', 'Write', 'Psát', '2026-01-23 10:31:57'),
(39981, 'da', 'label', 'Write', 'Skriv', '2026-01-23 10:31:57'),
(39982, 'es', 'label', 'Write', 'Escribir', '2026-01-23 10:31:57'),
(39983, 'es-ar', 'label', 'Write', 'Escribir', '2026-01-23 10:31:57'),
(39984, 'fa', 'label', 'Write', 'نوشتن', '2026-01-23 10:31:57'),
(39985, 'fr', 'label', 'Write', 'Écrire', '2026-01-23 10:31:57'),
(39986, 'he', 'label', 'Write', 'כתוב', '2026-01-23 10:31:57'),
(39987, 'hu', 'label', 'Write', 'Írás', '2026-01-23 10:31:57'),
(39988, 'ja', 'label', 'Write', '書く', '2026-01-23 10:31:57'),
(39989, 'lt', 'label', 'Write', 'Rašyti', '2026-01-23 10:31:57'),
(39990, 'pt', 'label', 'Write', 'Escrever', '2026-01-23 10:31:57'),
(39991, 'pt-br', 'label', 'Write', 'Escrever', '2026-01-23 10:31:57'),
(39992, 'sk', 'label', 'Write', 'Písať', '2026-01-23 10:31:57'),
(39993, 'sl', 'label', 'Write', 'Piši', '2026-01-23 10:31:57'),
(39994, 'sr', 'label', 'Write', 'Пиши', '2026-01-23 10:31:57'),
(39995, 'tr', 'label', 'Write', 'Yaz', '2026-01-23 10:31:57'),
(39996, 'zh', 'label', 'Write', '写', '2026-01-23 10:31:57'),
(39997, 'ar', 'label', 'Access denied', 'تم رفض الوصول', '2026-01-23 10:31:57'),
(39998, 'cn', 'label', 'Access denied', '访问被拒绝', '2026-01-23 10:31:57'),
(39999, 'cs', 'label', 'Access denied', 'Přístup odepřen', '2026-01-23 10:31:57'),
(40000, 'da', 'label', 'Access denied', 'Adgang nægtet', '2026-01-23 10:31:57'),
(40001, 'es-ar', 'label', 'Access denied', 'Acceso denegado', '2026-01-23 10:31:57'),
(40002, 'fa', 'label', 'Access denied', 'دسترسی رد شد', '2026-01-23 10:31:57'),
(40003, 'he', 'label', 'Access denied', 'הגישה נדחתה', '2026-01-23 10:31:57'),
(40004, 'hu', 'label', 'Access denied', 'Hozzáférés megtagadva', '2026-01-23 10:31:57'),
(40005, 'lt', 'label', 'Access denied', 'Prieiga uždrausta', '2026-01-23 10:31:57'),
(40006, 'sk', 'label', 'Access denied', 'Prístup zamietnutý', '2026-01-23 10:31:57'),
(40007, 'sl', 'label', 'Access denied', 'Dostop zavrnjen', '2026-01-23 10:31:57'),
(40008, 'sr', 'label', 'Access denied', 'Приступ одбијен', '2026-01-23 10:31:57'),
(40009, 'zh', 'label', 'Access denied', '访问被拒绝', '2026-01-23 10:31:57'),
(40010, 'es-ar', 'label', 'Download', 'Descargar', '2026-01-23 10:31:57'),
(40011, 'sr', 'label', 'Download', 'Преузми', '2026-01-23 10:31:57'),
(40012, 'es-ar', 'label', 'Upgrade', 'Actualizar', '2026-01-23 10:31:57'),
(40013, 'sr', 'label', 'Upgrade', 'Надогради', '2026-01-23 10:31:57'),
(40014, 'es-ar', 'label', 'Version', 'Versión', '2026-01-23 10:31:57'),
(40015, 'sr', 'label', 'Version', 'Верзија', '2026-01-23 10:31:57'),
(40016, 'es-ar', 'label', 'Title', 'Título', '2026-01-23 10:31:57'),
(40017, 'sr', 'label', 'Title', 'Наслов', '2026-01-23 10:31:57'),
(40018, 'es-ar', 'label', 'Description', 'Descripción', '2026-01-23 10:31:57'),
(40019, 'sr', 'label', 'Description', 'Опис', '2026-01-23 10:31:57'),
(40020, 'cs', 'siteauditor', 'AI Robot Compatibility', 'Kompatibilita s AI roboty', '2026-01-23 10:31:57'),
(40021, 'cs', 'siteauditor', 'Allowed', 'Povoleno', '2026-01-23 10:31:57'),
(40022, 'cs', 'siteauditor', 'Anchor', 'Kotva', '2026-01-23 10:31:57'),
(40023, 'cs', 'siteauditor', 'anylinkcontainabovelinks', 'Jakékoli odkazy obsahující výše uvedené odkazy budou vyloučeny ze zpráv', '2026-01-23 10:31:57'),
(40024, 'cs', 'siteauditor', 'anylinkcontainexcludesitemap', 'Jakékoli odkazy obsahující výše uvedené odkazy budou vyloučeny z mapy webu', '2026-01-23 10:31:57'),
(40025, 'cs', 'siteauditor', 'Blocked', 'Blokováno', '2026-01-23 10:31:57'),
(40026, 'cs', 'siteauditor', 'Canonical URL', 'Kanonická URL', '2026-01-23 10:31:57'),
(40027, 'cs', 'siteauditor', 'Check backlinks of pages', 'Kontrolovat zpětné odkazy stránek', '2026-01-23 10:31:57'),
(40028, 'cs', 'siteauditor', 'Check broken links in a page', 'Kontrolovat nefunkční odkazy na stránce', '2026-01-23 10:31:57'),
(40029, 'cs', 'siteauditor', 'Check google pagerank of pages', 'Kontrolovat Google PageRank stránek', '2026-01-23 10:31:57'),
(40030, 'cs', 'siteauditor', 'Check pagerank of pages', 'Kontrolovat PageRank stránek', '2026-01-23 10:31:57'),
(40031, 'cs', 'siteauditor', 'Check pages indexed or not', 'Kontrolovat indexaci stránek', '2026-01-23 10:31:57'),
(40032, 'cs', 'siteauditor', 'Check Score', 'Kontrolní skóre', '2026-01-23 10:31:57'),
(40033, 'cs', 'siteauditor', 'checkborckenlinkwait', 'Kontrola nefunkčních odkazů zvýší dobu provádění projektu', '2026-01-23 10:31:57'),
(40034, 'cs', 'siteauditor', 'Completed project execution', 'Provedení projektu dokončeno', '2026-01-23 10:31:57'),
(40035, 'cs', 'siteauditor', 'Crawled', 'Procházeno', '2026-01-23 10:31:57'),
(40036, 'cs', 'siteauditor', 'Crawled Pages', 'Procházené stránky', '2026-01-23 10:31:57'),
(40037, 'cs', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'úspěšně procházeno! Čekání na procházení další stránky', '2026-01-23 10:31:57'),
(40038, 'cs', 'siteauditor', 'Crawling Page', 'Procházení stránky', '2026-01-23 10:31:57'),
(40039, 'cs', 'siteauditor', 'Discovered Via', 'Objeveno přes', '2026-01-23 10:31:57'),
(40040, 'cs', 'siteauditor', 'Duplicate Description', 'Duplicitní popis', '2026-01-23 10:31:57'),
(40041, 'cs', 'siteauditor', 'Duplicate Keywords', 'Duplicitní klíčová slova', '2026-01-23 10:31:57'),
(40042, 'cs', 'siteauditor', 'Duplicate Title', 'Duplicitní titulek', '2026-01-23 10:31:57'),
(40043, 'cs', 'siteauditor', 'Exclude Extensions', 'Vyloučit přípony', '2026-01-23 10:31:57'),
(40044, 'cs', 'siteauditor', 'Exclude links', 'Vyloučit odkazy', '2026-01-23 10:31:57'),
(40045, 'cs', 'siteauditor', 'Execute with cron', 'Spustit pomocí cron', '2026-01-23 10:31:57'),
(40046, 'cs', 'siteauditor', 'External', 'Externí', '2026-01-23 10:31:57'),
(40047, 'cs', 'siteauditor', 'External Links', 'Externí odkazy', '2026-01-23 10:31:57'),
(40048, 'cs', 'siteauditor', 'Found', 'Nalezeno', '2026-01-23 10:31:57'),
(40049, 'cs', 'siteauditor', 'Has Backlinks', 'Má zpětné odkazy', '2026-01-23 10:31:57'),
(40050, 'cs', 'siteauditor', 'HTTPS Secure', 'HTTPS zabezpečené', '2026-01-23 10:31:57'),
(40051, 'cs', 'siteauditor', 'Import Project Links', 'Importovat odkazy projektu', '2026-01-23 10:31:57'),
(40052, 'cs', 'siteauditor', 'Insert links separated with comma', 'Vložte odkazy oddělené čárkou', '2026-01-23 10:31:57'),
(40053, 'cs', 'siteauditor', 'insertlinkssepcoma', 'Vložte odkazy oddělené čárkou pro vyloučení nekonečných odkazů ze zpráv', '2026-01-23 10:31:57'),
(40054, 'cs', 'siteauditor', 'Leave blank to use system default', 'Ponechte prázdné pro použití výchozího nastavení', '2026-01-23 10:31:57'),
(40055, 'cs', 'siteauditor', 'Link Reports', 'Zprávy o odkazech', '2026-01-23 10:31:57'),
(40056, 'cs', 'siteauditor', 'Link Title', 'Název odkazu', '2026-01-23 10:31:57'),
(40057, 'cs', 'siteauditor', 'Maximum number of pages to be checked', 'Maximální počet stránek ke kontrole', '2026-01-23 10:31:57'),
(40058, 'cs', 'siteauditor', 'Maximum Pages', 'Maximální počet stránek', '2026-01-23 10:31:57'),
(40059, 'cs', 'siteauditor', 'Missing', 'Chybí', '2026-01-23 10:31:57'),
(40060, 'cs', 'siteauditor', 'Mobile Friendly', 'Mobilní verze', '2026-01-23 10:31:57'),
(40061, 'cs', 'siteauditor', 'No', 'Ne', '2026-01-23 10:31:57'),
(40062, 'cs', 'siteauditor', 'No active projects found', 'Nebyly nalezeny žádné aktivní projekty', '2026-01-23 10:31:57'),
(40063, 'cs', 'siteauditor', 'Nofollow', 'Nofollow', '2026-01-23 10:31:57'),
(40064, 'cs', 'siteauditor', 'Number of pages is greater than', 'Počet stránek je větší než', '2026-01-23 10:31:57'),
(40065, 'cs', 'siteauditor', 'Number of pages should be greater than', 'Počet stránek by měl být větší než', '2026-01-23 10:31:57'),
(40066, 'cs', 'siteauditor', 'Open Graph Tags', 'Open Graph značky', '2026-01-23 10:31:57'),
(40067, 'cs', 'siteauditor', 'Page Details', 'Detaily stránky', '2026-01-23 10:31:57'),
(40068, 'cs', 'siteauditor', 'Page Link', 'Odkaz stránky', '2026-01-23 10:31:57'),
(40069, 'cs', 'siteauditor', 'Page Links', 'Odkazy stránky', '2026-01-23 10:31:57'),
(40070, 'cs', 'siteauditor', 'Pages Found', 'Nalezené stránky', '2026-01-23 10:31:57'),
(40071, 'cs', 'siteauditor', 'Pages with modern SEO features', 'Stránky s moderními SEO funkcemi', '2026-01-23 10:31:57'),
(40072, 'cs', 'siteauditor', 'pressescapetostopexecution', 'Stiskněte <b>escape</b> pro zastavení provádění skriptu', '2026-01-23 10:31:57'),
(40073, 'cs', 'siteauditor', 'Project Summary', 'Shrnutí projektu', '2026-01-23 10:31:57'),
(40074, 'cs', 'siteauditor', 'Project Url', 'URL projektu', '2026-01-23 10:31:57'),
(40075, 'cs', 'siteauditor', 'projectalreadyexist', 'Projekt pro tento web již existuje', '2026-01-23 10:31:57'),
(40076, 'cs', 'siteauditor', 'Recheck Pages', 'Znovu zkontrolovat stránky', '2026-01-23 10:31:57'),
(40077, 'cs', 'siteauditor', 'Report Summary', 'Shrnutí zprávy', '2026-01-23 10:31:57'),
(40078, 'cs', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt povoleno', '2026-01-23 10:31:57'),
(40079, 'cs', 'siteauditor', 'Robots.txt Status', 'Stav Robots.txt', '2026-01-23 10:31:57'),
(40080, 'cs', 'siteauditor', 'Run Project', 'Spustit projekt', '2026-01-23 10:31:57'),
(40081, 'cs', 'siteauditor', 'should start with', 'by mělo začínat', '2026-01-23 10:31:57'),
(40082, 'cs', 'siteauditor', 'Site Auditor Settings', 'Nastavení auditu webu', '2026-01-23 10:31:57'),
(40083, 'cs', 'siteauditor', 'Sitemap Parsing', 'Zpracování mapy webu', '2026-01-23 10:31:57'),
(40084, 'cs', 'siteauditor', 'Sitemap URL', 'URL mapy webu', '2026-01-23 10:31:57'),
(40085, 'cs', 'siteauditor', 'Sitemaps Found', 'Nalezené mapy webu', '2026-01-23 10:31:57'),
(40086, 'cs', 'siteauditor', 'Social Media', 'Sociální média', '2026-01-23 10:31:57'),
(40087, 'cs', 'siteauditor', 'Store all links found in a page', 'Uložit všechny odkazy nalezené na stránce', '2026-01-23 10:31:57'),
(40088, 'cs', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Stránka umožňuje AI robotům procházet a indexovat obsah', '2026-01-23 10:31:57'),
(40089, 'cs', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Stránka blokuje AI roboty - může omezit viditelnost v AI vyhledávání', '2026-01-23 10:31:57'),
(40090, 'cs', 'siteauditor', 'The page description length is not between', 'Délka popisu stránky není mezi', '2026-01-23 10:31:57'),
(40091, 'cs', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Stránka má Open Graph značky pro lepší sdílení na sociálních sítích', '2026-01-23 10:31:57'),
(40092, 'cs', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Stránka má Twitter Card značky pro optimalizované sdílení na Twitteru', '2026-01-23 10:31:57'),
(40093, 'cs', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Stránka je povolena v robots.txt a může být procházena vyhledávači', '2026-01-23 10:31:57'),
(40094, 'cs', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Stránka je blokována v robots.txt - vyhledávače nemohou tuto stránku procházet', '2026-01-23 10:31:57'),
(40095, 'cs', 'siteauditor', 'The page is brocken', 'Stránka je nefunkční', '2026-01-23 10:31:57'),
(40096, 'cs', 'siteauditor', 'The page is having excellent page authority value', 'Stránka má vynikající hodnotu autority', '2026-01-23 10:31:57'),
(40097, 'cs', 'siteauditor', 'The page is having exellent number of backlinks in', 'Stránka má vynikající počet zpětných odkazů v', '2026-01-23 10:31:57'),
(40098, 'cs', 'siteauditor', 'The page is having exellent pagerank', 'Stránka má vynikající PageRank', '2026-01-23 10:31:57'),
(40099, 'cs', 'siteauditor', 'The page is having good number of backlinks in', 'Stránka má dobrý počet zpětných odkazů v', '2026-01-23 10:31:57'),
(40100, 'cs', 'siteauditor', 'The page is having good page authority value', 'Stránka má dobrou hodnotu autority', '2026-01-23 10:31:57'),
(40101, 'cs', 'siteauditor', 'The page is having good pagerank', 'Stránka má dobrý PageRank', '2026-01-23 10:31:57'),
(40102, 'cs', 'siteauditor', 'The page is having poor page authority value', 'Stránka má nízkou hodnotu autority', '2026-01-23 10:31:57'),
(40103, 'cs', 'siteauditor', 'The page is having poor pagerank', 'Stránka má nízký PageRank', '2026-01-23 10:31:57'),
(40104, 'cs', 'siteauditor', 'The page is having very good page authority value', 'Stránka má velmi dobrou hodnotu autority', '2026-01-23 10:31:57'),
(40105, 'cs', 'siteauditor', 'The page is having very good pagerank', 'Stránka má velmi dobrý PageRank', '2026-01-23 10:31:57'),
(40106, 'cs', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Stránce chybí Open Graph značky - omezuje optimalizaci pro sociální sítě', '2026-01-23 10:31:57'),
(40107, 'cs', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Stránce chybí Twitter Card značky - omezuje optimalizaci pro Twitter', '2026-01-23 10:31:57'),
(40108, 'cs', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Stránka je přizpůsobena mobilním zařízením se správnou konfigurací viewport', '2026-01-23 10:31:57'),
(40109, 'cs', 'siteauditor', 'The page is not having backlinks in', 'Stránka nemá zpětné odkazy v', '2026-01-23 10:31:57'),
(40110, 'cs', 'siteauditor', 'The page is not indexed in', 'Stránka není indexována v', '2026-01-23 10:31:57'),
(40111, 'cs', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Stránka není přizpůsobena mobilním zařízením - kritický problém pro moderní SEO', '2026-01-23 10:31:57'),
(40112, 'cs', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Stránka není zabezpečená (HTTP) - měla by používat HTTPS', '2026-01-23 10:31:57'),
(40113, 'cs', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Stránka je poskytována přes HTTPS - zabezpečené připojení', '2026-01-23 10:31:57'),
(40114, 'cs', 'siteauditor', 'The page keywords length is not between', 'Délka klíčových slov stránky není mezi', '2026-01-23 10:31:57'),
(40115, 'cs', 'siteauditor', 'The page title length is not between', 'Délka titulku stránky není mezi', '2026-01-23 10:31:57'),
(40116, 'cs', 'siteauditor', 'The total number of links in page is greater than', 'Celkový počet odkazů na stránce je větší než', '2026-01-23 10:31:57'),
(40117, 'cs', 'siteauditor', 'to run project again if you stopped execution', 'pro opětovné spuštění projektu, pokud jste zastavili provádění', '2026-01-23 10:31:57'),
(40118, 'cs', 'siteauditor', 'to view the reports', 'pro zobrazení zpráv', '2026-01-23 10:31:57'),
(40119, 'cs', 'siteauditor', 'Total Links', 'Celkem odkazů', '2026-01-23 10:31:57'),
(40120, 'cs', 'siteauditor', 'totallinksgreaterallowed', 'Celkový počet odkazů bude větší než maximální povolený počet odkazů pro projekt', '2026-01-23 10:31:57'),
(40121, 'cs', 'siteauditor', 'Twitter Cards', 'Twitter karty', '2026-01-23 10:31:57'),
(40122, 'cs', 'siteauditor', 'URLs from Sitemap', 'URL z mapy webu', '2026-01-23 10:31:57'),
(40123, 'cs', 'siteauditor', 'Yes', 'Ano', '2026-01-23 10:31:57'),
(40124, 'da', 'siteauditor', 'AI Robot Compatibility', 'AI Robot kompatibilitet', '2026-01-23 10:31:57'),
(40125, 'da', 'siteauditor', 'Allowed', 'Tilladt', '2026-01-23 10:31:57'),
(40126, 'da', 'siteauditor', 'Anchor', 'Anker', '2026-01-23 10:31:57'),
(40127, 'da', 'siteauditor', 'anylinkcontainabovelinks', 'Alle links, der indeholder ovenstående links, vil blive udelukket fra rapporter', '2026-01-23 10:31:57'),
(40128, 'da', 'siteauditor', 'anylinkcontainexcludesitemap', 'Alle links, der indeholder ovenstående links, vil blive udelukket fra sitemap', '2026-01-23 10:31:57'),
(40129, 'da', 'siteauditor', 'Blocked', 'Blokeret', '2026-01-23 10:31:57'),
(40130, 'da', 'siteauditor', 'Canonical URL', 'Kanonisk URL', '2026-01-23 10:31:57'),
(40131, 'da', 'siteauditor', 'Check backlinks of pages', 'Kontroller backlinks på sider', '2026-01-23 10:31:57'),
(40132, 'da', 'siteauditor', 'Check broken links in a page', 'Kontroller døde links på en side', '2026-01-23 10:31:57'),
(40133, 'da', 'siteauditor', 'Check google pagerank of pages', 'Kontroller Google PageRank på sider', '2026-01-23 10:31:57'),
(40134, 'da', 'siteauditor', 'Check pagerank of pages', 'Kontroller PageRank på sider', '2026-01-23 10:31:57'),
(40135, 'da', 'siteauditor', 'Check pages indexed or not', 'Kontroller om sider er indekseret', '2026-01-23 10:31:57'),
(40136, 'da', 'siteauditor', 'Check Score', 'Kontrolscore', '2026-01-23 10:31:57'),
(40137, 'da', 'siteauditor', 'checkborckenlinkwait', 'Kontrol af døde links vil øge projektets udførelsestid', '2026-01-23 10:31:57'),
(40138, 'da', 'siteauditor', 'Completed project execution', 'Projektudførelse fuldført', '2026-01-23 10:31:57'),
(40139, 'da', 'siteauditor', 'Crawled', 'Crawlet', '2026-01-23 10:31:57'),
(40140, 'da', 'siteauditor', 'Crawled Pages', 'Crawlede sider', '2026-01-23 10:31:57'),
(40141, 'da', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'crawlet med succes! Venter på at crawle næste side', '2026-01-23 10:31:57'),
(40142, 'da', 'siteauditor', 'Crawling Page', 'Crawler side', '2026-01-23 10:31:57'),
(40143, 'da', 'siteauditor', 'Discovered Via', 'Opdaget via', '2026-01-23 10:31:57'),
(40144, 'da', 'siteauditor', 'Duplicate Description', 'Duplikat beskrivelse', '2026-01-23 10:31:57'),
(40145, 'da', 'siteauditor', 'Duplicate Keywords', 'Duplikat nøgleord', '2026-01-23 10:31:57'),
(40146, 'da', 'siteauditor', 'Duplicate Title', 'Duplikat titel', '2026-01-23 10:31:57'),
(40147, 'da', 'siteauditor', 'Exclude Extensions', 'Ekskluder udvidelser', '2026-01-23 10:31:57'),
(40148, 'da', 'siteauditor', 'Exclude links', 'Ekskluder links', '2026-01-23 10:31:57'),
(40149, 'da', 'siteauditor', 'Execute with cron', 'Udfør med cron', '2026-01-23 10:31:57'),
(40150, 'da', 'siteauditor', 'External', 'Ekstern', '2026-01-23 10:31:57'),
(40151, 'da', 'siteauditor', 'External Links', 'Eksterne links', '2026-01-23 10:31:57'),
(40152, 'da', 'siteauditor', 'Found', 'Fundet', '2026-01-23 10:31:57'),
(40153, 'da', 'siteauditor', 'Has Backlinks', 'Har backlinks', '2026-01-23 10:31:57'),
(40154, 'da', 'siteauditor', 'HTTPS Secure', 'HTTPS sikker', '2026-01-23 10:31:57'),
(40155, 'da', 'siteauditor', 'Import Project Links', 'Importer projektlinks', '2026-01-23 10:31:57'),
(40156, 'da', 'siteauditor', 'Insert links separated with comma', 'Indsæt links adskilt med komma', '2026-01-23 10:31:57'),
(40157, 'da', 'siteauditor', 'insertlinkssepcoma', 'Indsæt links adskilt med komma for at udelukke uendelige links fra rapporter', '2026-01-23 10:31:57'),
(40158, 'da', 'siteauditor', 'Leave blank to use system default', 'Lad stå tomt for at bruge systemstandard', '2026-01-23 10:31:57'),
(40159, 'da', 'siteauditor', 'Link Reports', 'Link rapporter', '2026-01-23 10:31:57'),
(40160, 'da', 'siteauditor', 'Link Title', 'Link titel', '2026-01-23 10:31:57'),
(40161, 'da', 'siteauditor', 'Maximum number of pages to be checked', 'Maksimalt antal sider der skal kontrolleres', '2026-01-23 10:31:57'),
(40162, 'da', 'siteauditor', 'Maximum Pages', 'Maksimale sider', '2026-01-23 10:31:57'),
(40163, 'da', 'siteauditor', 'Missing', 'Mangler', '2026-01-23 10:31:57'),
(40164, 'da', 'siteauditor', 'Mobile Friendly', 'Mobilvenlig', '2026-01-23 10:31:57'),
(40165, 'da', 'siteauditor', 'No', 'Nej', '2026-01-23 10:31:57'),
(40166, 'da', 'siteauditor', 'No active projects found', 'Ingen aktive projekter fundet', '2026-01-23 10:31:57'),
(40167, 'da', 'siteauditor', 'Nofollow', 'Nofollow', '2026-01-23 10:31:57'),
(40168, 'da', 'siteauditor', 'Number of pages is greater than', 'Antal sider er større end', '2026-01-23 10:31:57'),
(40169, 'da', 'siteauditor', 'Number of pages should be greater than', 'Antal sider skal være større end', '2026-01-23 10:31:57'),
(40170, 'da', 'siteauditor', 'Open Graph Tags', 'Open Graph tags', '2026-01-23 10:31:57'),
(40171, 'da', 'siteauditor', 'Page Details', 'Sidedetaljer', '2026-01-23 10:31:57'),
(40172, 'da', 'siteauditor', 'Page Link', 'Sidelink', '2026-01-23 10:31:57'),
(40173, 'da', 'siteauditor', 'Page Links', 'Sidelinks', '2026-01-23 10:31:57'),
(40174, 'da', 'siteauditor', 'Pages Found', 'Sider fundet', '2026-01-23 10:31:57'),
(40175, 'da', 'siteauditor', 'Pages with modern SEO features', 'Sider med moderne SEO funktioner', '2026-01-23 10:31:57'),
(40176, 'da', 'siteauditor', 'pressescapetostopexecution', 'Tryk <b>escape</b> for at stoppe scriptudførelse', '2026-01-23 10:31:57'),
(40177, 'da', 'siteauditor', 'Project Summary', 'Projektoversigt', '2026-01-23 10:31:57'),
(40178, 'da', 'siteauditor', 'Project Url', 'Projekt URL', '2026-01-23 10:31:57'),
(40179, 'da', 'siteauditor', 'projectalreadyexist', 'Projekt for denne hjemmeside eksisterer allerede', '2026-01-23 10:31:57'),
(40180, 'da', 'siteauditor', 'Recheck Pages', 'Genkontroller sider', '2026-01-23 10:31:57'),
(40181, 'da', 'siteauditor', 'Report Summary', 'Rapportoversigt', '2026-01-23 10:31:57'),
(40182, 'da', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt tilladt', '2026-01-23 10:31:57'),
(40183, 'da', 'siteauditor', 'Robots.txt Status', 'Robots.txt status', '2026-01-23 10:31:57'),
(40184, 'da', 'siteauditor', 'Run Project', 'Kør projekt', '2026-01-23 10:31:57'),
(40185, 'da', 'siteauditor', 'should start with', 'skal starte med', '2026-01-23 10:31:57'),
(40186, 'da', 'siteauditor', 'Site Auditor Settings', 'Site Auditor indstillinger', '2026-01-23 10:31:57'),
(40187, 'da', 'siteauditor', 'Sitemap Parsing', 'Sitemap parsing', '2026-01-23 10:31:57'),
(40188, 'da', 'siteauditor', 'Sitemap URL', 'Sitemap URL', '2026-01-23 10:31:57'),
(40189, 'da', 'siteauditor', 'Sitemaps Found', 'Sitemaps fundet', '2026-01-23 10:31:57'),
(40190, 'da', 'siteauditor', 'Social Media', 'Sociale medier', '2026-01-23 10:31:57'),
(40191, 'da', 'siteauditor', 'Store all links found in a page', 'Gem alle links fundet på en side', '2026-01-23 10:31:57'),
(40192, 'da', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Siden tillader AI robotter at crawle og indeksere indhold', '2026-01-23 10:31:57'),
(40193, 'da', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Siden blokerer AI robotter - kan begrænse synlighed i AI søgning', '2026-01-23 10:31:57'),
(40194, 'da', 'siteauditor', 'The page description length is not between', 'Sidens beskrivelseslængde er ikke mellem', '2026-01-23 10:31:57'),
(40195, 'da', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Siden har Open Graph tags for bedre deling på sociale medier', '2026-01-23 10:31:57'),
(40196, 'da', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Siden har Twitter Card tags for optimeret Twitter deling', '2026-01-23 10:31:57'),
(40197, 'da', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Siden er tilladt af robots.txt og kan crawles af søgemaskiner', '2026-01-23 10:31:57'),
(40198, 'da', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Siden er blokeret af robots.txt - søgemaskiner kan ikke crawle denne side', '2026-01-23 10:31:57'),
(40199, 'da', 'siteauditor', 'The page is brocken', 'Siden er ødelagt', '2026-01-23 10:31:57'),
(40200, 'da', 'siteauditor', 'The page is having excellent page authority value', 'Siden har fremragende sideautoritetsværdi', '2026-01-23 10:31:57'),
(40201, 'da', 'siteauditor', 'The page is having exellent number of backlinks in', 'Siden har fremragende antal backlinks i', '2026-01-23 10:31:57'),
(40202, 'da', 'siteauditor', 'The page is having exellent pagerank', 'Siden har fremragende PageRank', '2026-01-23 10:31:57'),
(40203, 'da', 'siteauditor', 'The page is having good number of backlinks in', 'Siden har godt antal backlinks i', '2026-01-23 10:31:57'),
(40204, 'da', 'siteauditor', 'The page is having good page authority value', 'Siden har god sideautoritetsværdi', '2026-01-23 10:31:57'),
(40205, 'da', 'siteauditor', 'The page is having good pagerank', 'Siden har god PageRank', '2026-01-23 10:31:57'),
(40206, 'da', 'siteauditor', 'The page is having poor page authority value', 'Siden har dårlig sideautoritetsværdi', '2026-01-23 10:31:57'),
(40207, 'da', 'siteauditor', 'The page is having poor pagerank', 'Siden har dårlig PageRank', '2026-01-23 10:31:57'),
(40208, 'da', 'siteauditor', 'The page is having very good page authority value', 'Siden har meget god sideautoritetsværdi', '2026-01-23 10:31:57'),
(40209, 'da', 'siteauditor', 'The page is having very good pagerank', 'Siden har meget god PageRank', '2026-01-23 10:31:57'),
(40210, 'da', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Siden mangler Open Graph tags - begrænser optimering af sociale medier', '2026-01-23 10:31:57'),
(40211, 'da', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Siden mangler Twitter Card tags - begrænser Twitter optimering', '2026-01-23 10:31:57'),
(40212, 'da', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Siden er mobilvenlig med korrekt viewport konfiguration', '2026-01-23 10:31:57'),
(40213, 'da', 'siteauditor', 'The page is not having backlinks in', 'Siden har ikke backlinks i', '2026-01-23 10:31:57'),
(40214, 'da', 'siteauditor', 'The page is not indexed in', 'Siden er ikke indekseret i', '2026-01-23 10:31:57'),
(40215, 'da', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Siden er ikke mobilvenlig - kritisk problem for moderne SEO', '2026-01-23 10:31:57'),
(40216, 'da', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Siden er ikke sikker (HTTP) - bør bruge HTTPS', '2026-01-23 10:31:57'),
(40217, 'da', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Siden leveres over HTTPS - sikker forbindelse', '2026-01-23 10:31:57'),
(40218, 'da', 'siteauditor', 'The page keywords length is not between', 'Sidens nøgleordslængde er ikke mellem', '2026-01-23 10:31:57'),
(40219, 'da', 'siteauditor', 'The page title length is not between', 'Sidens titellængde er ikke mellem', '2026-01-23 10:31:57'),
(40220, 'da', 'siteauditor', 'The total number of links in page is greater than', 'Det samlede antal links på siden er større end', '2026-01-23 10:31:57'),
(40221, 'da', 'siteauditor', 'to run project again if you stopped execution', 'for at køre projektet igen hvis du stoppede udførelsen', '2026-01-23 10:31:57'),
(40222, 'da', 'siteauditor', 'to view the reports', 'for at se rapporterne', '2026-01-23 10:31:57'),
(40223, 'da', 'siteauditor', 'Total Links', 'Samlede links', '2026-01-23 10:31:57'),
(40224, 'da', 'siteauditor', 'totallinksgreaterallowed', 'Samlede links vil blive større end maksimalt tilladte links til projektet', '2026-01-23 10:31:57'),
(40225, 'da', 'siteauditor', 'Twitter Cards', 'Twitter Cards', '2026-01-23 10:31:57'),
(40226, 'da', 'siteauditor', 'URLs from Sitemap', 'URL''er fra sitemap', '2026-01-23 10:31:57'),
(40227, 'da', 'siteauditor', 'Yes', 'Ja', '2026-01-23 10:31:57'),
(40228, 'es-ar', 'siteauditor', 'AI Robot Compatibility', 'Compatibilidad con robots IA', '2026-01-23 10:31:57'),
(40229, 'es-ar', 'siteauditor', 'Allowed', 'Permitido', '2026-01-23 10:31:57'),
(40230, 'es-ar', 'siteauditor', 'Anchor', 'Ancla', '2026-01-23 10:31:57'),
(40231, 'es-ar', 'siteauditor', 'anylinkcontainabovelinks', 'Cualquier enlace que contenga los enlaces anteriores será excluido de los informes', '2026-01-23 10:31:57'),
(40232, 'es-ar', 'siteauditor', 'anylinkcontainexcludesitemap', 'Cualquier enlace que contenga los enlaces anteriores será excluido del sitemap', '2026-01-23 10:31:57'),
(40233, 'es-ar', 'siteauditor', 'Blocked', 'Bloqueado', '2026-01-23 10:31:57'),
(40234, 'es-ar', 'siteauditor', 'Canonical URL', 'URL canónica', '2026-01-23 10:31:57'),
(40235, 'es-ar', 'siteauditor', 'Check backlinks of pages', 'Verificar backlinks de páginas', '2026-01-23 10:31:57'),
(40236, 'es-ar', 'siteauditor', 'Check broken links in a page', 'Verificar enlaces rotos en una página', '2026-01-23 10:31:57'),
(40237, 'es-ar', 'siteauditor', 'Check google pagerank of pages', 'Verificar Google PageRank de páginas', '2026-01-23 10:31:57'),
(40238, 'es-ar', 'siteauditor', 'Check pagerank of pages', 'Verificar PageRank de páginas', '2026-01-23 10:31:57'),
(40239, 'es-ar', 'siteauditor', 'Check pages indexed or not', 'Verificar si las páginas están indexadas', '2026-01-23 10:31:57'),
(40240, 'es-ar', 'siteauditor', 'Check Score', 'Puntuación de verificación', '2026-01-23 10:31:57'),
(40241, 'es-ar', 'siteauditor', 'checkborckenlinkwait', 'Verificar enlaces rotos aumentará el tiempo de ejecución del proyecto', '2026-01-23 10:31:57'),
(40242, 'es-ar', 'siteauditor', 'Completed project execution', 'Ejecución del proyecto completada', '2026-01-23 10:31:57'),
(40243, 'es-ar', 'siteauditor', 'Crawled', 'Rastreado', '2026-01-23 10:31:57'),
(40244, 'es-ar', 'siteauditor', 'Crawled Pages', 'Páginas rastreadas', '2026-01-23 10:31:57'),
(40245, 'es-ar', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'rastreado exitosamente! Esperando para rastrear la siguiente página', '2026-01-23 10:31:57'),
(40246, 'es-ar', 'siteauditor', 'Crawling Page', 'Rastreando página', '2026-01-23 10:31:57'),
(40247, 'es-ar', 'siteauditor', 'Discovered Via', 'Descubierto vía', '2026-01-23 10:31:57'),
(40248, 'es-ar', 'siteauditor', 'Duplicate Description', 'Descripción duplicada', '2026-01-23 10:31:57'),
(40249, 'es-ar', 'siteauditor', 'Duplicate Keywords', 'Palabras clave duplicadas', '2026-01-23 10:31:57'),
(40250, 'es-ar', 'siteauditor', 'Duplicate Title', 'Título duplicado', '2026-01-23 10:31:57'),
(40251, 'es-ar', 'siteauditor', 'Exclude Extensions', 'Excluir extensiones', '2026-01-23 10:31:57'),
(40252, 'es-ar', 'siteauditor', 'Exclude links', 'Excluir enlaces', '2026-01-23 10:31:57'),
(40253, 'es-ar', 'siteauditor', 'Execute with cron', 'Ejecutar con cron', '2026-01-23 10:31:57'),
(40254, 'es-ar', 'siteauditor', 'External', 'Externo', '2026-01-23 10:31:57'),
(40255, 'es-ar', 'siteauditor', 'External Links', 'Enlaces externos', '2026-01-23 10:31:57'),
(40256, 'es-ar', 'siteauditor', 'Found', 'Encontrado', '2026-01-23 10:31:57'),
(40257, 'es-ar', 'siteauditor', 'Has Backlinks', 'Tiene backlinks', '2026-01-23 10:31:57'),
(40258, 'es-ar', 'siteauditor', 'HTTPS Secure', 'HTTPS seguro', '2026-01-23 10:31:57'),
(40259, 'es-ar', 'siteauditor', 'Import Project Links', 'Importar enlaces del proyecto', '2026-01-23 10:31:57'),
(40260, 'es-ar', 'siteauditor', 'Insert links separated with comma', 'Insertar enlaces separados por coma', '2026-01-23 10:31:57'),
(40261, 'es-ar', 'siteauditor', 'insertlinkssepcoma', 'Insertar enlaces separados por coma para excluir enlaces infinitos de los informes', '2026-01-23 10:31:57'),
(40262, 'es-ar', 'siteauditor', 'Leave blank to use system default', 'Dejar en blanco para usar valor predeterminado', '2026-01-23 10:31:57'),
(40263, 'es-ar', 'siteauditor', 'Link Reports', 'Informes de enlaces', '2026-01-23 10:31:57'),
(40264, 'es-ar', 'siteauditor', 'Link Title', 'Título del enlace', '2026-01-23 10:31:57'),
(40265, 'es-ar', 'siteauditor', 'Maximum number of pages to be checked', 'Número máximo de páginas a verificar', '2026-01-23 10:31:57'),
(40266, 'es-ar', 'siteauditor', 'Maximum Pages', 'Páginas máximas', '2026-01-23 10:31:57'),
(40267, 'es-ar', 'siteauditor', 'Missing', 'Faltante', '2026-01-23 10:31:57'),
(40268, 'es-ar', 'siteauditor', 'Mobile Friendly', 'Compatible con móviles', '2026-01-23 10:31:57'),
(40269, 'es-ar', 'siteauditor', 'No', 'No', '2026-01-23 10:31:57'),
(40270, 'es-ar', 'siteauditor', 'No active projects found', 'No se encontraron proyectos activos', '2026-01-23 10:31:57'),
(40271, 'es-ar', 'siteauditor', 'Nofollow', 'Nofollow', '2026-01-23 10:31:57'),
(40272, 'es-ar', 'siteauditor', 'Number of pages is greater than', 'El número de páginas es mayor que', '2026-01-23 10:31:57'),
(40273, 'es-ar', 'siteauditor', 'Number of pages should be greater than', 'El número de páginas debe ser mayor que', '2026-01-23 10:31:57'),
(40274, 'es-ar', 'siteauditor', 'Open Graph Tags', 'Etiquetas Open Graph', '2026-01-23 10:31:57'),
(40275, 'es-ar', 'siteauditor', 'Page Details', 'Detalles de la página', '2026-01-23 10:31:57'),
(40276, 'es-ar', 'siteauditor', 'Page Link', 'Enlace de página', '2026-01-23 10:31:57'),
(40277, 'es-ar', 'siteauditor', 'Page Links', 'Enlaces de página', '2026-01-23 10:31:57'),
(40278, 'es-ar', 'siteauditor', 'Pages Found', 'Páginas encontradas', '2026-01-23 10:31:57'),
(40279, 'es-ar', 'siteauditor', 'Pages with modern SEO features', 'Páginas con funciones SEO modernas', '2026-01-23 10:31:57'),
(40280, 'es-ar', 'siteauditor', 'pressescapetostopexecution', 'Presioná <b>escape</b> para detener la ejecución del script', '2026-01-23 10:31:57'),
(40281, 'es-ar', 'siteauditor', 'Project Summary', 'Resumen del proyecto', '2026-01-23 10:31:57'),
(40282, 'es-ar', 'siteauditor', 'Project Url', 'URL del proyecto', '2026-01-23 10:31:57'),
(40283, 'es-ar', 'siteauditor', 'projectalreadyexist', 'Ya existe un proyecto para este sitio web', '2026-01-23 10:31:57'),
(40284, 'es-ar', 'siteauditor', 'Recheck Pages', 'Volver a verificar páginas', '2026-01-23 10:31:57'),
(40285, 'es-ar', 'siteauditor', 'Report Summary', 'Resumen del informe', '2026-01-23 10:31:57'),
(40286, 'es-ar', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt permitido', '2026-01-23 10:31:57'),
(40287, 'es-ar', 'siteauditor', 'Robots.txt Status', 'Estado de Robots.txt', '2026-01-23 10:31:57'),
(40288, 'es-ar', 'siteauditor', 'Run Project', 'Ejecutar proyecto', '2026-01-23 10:31:57'),
(40289, 'es-ar', 'siteauditor', 'should start with', 'debe comenzar con', '2026-01-23 10:31:57'),
(40290, 'es-ar', 'siteauditor', 'Site Auditor Settings', 'Configuración del auditor de sitio', '2026-01-23 10:31:57'),
(40291, 'es-ar', 'siteauditor', 'Sitemap Parsing', 'Análisis de sitemap', '2026-01-23 10:31:57'),
(40292, 'es-ar', 'siteauditor', 'Sitemap URL', 'URL del sitemap', '2026-01-23 10:31:57'),
(40293, 'es-ar', 'siteauditor', 'Sitemaps Found', 'Sitemaps encontrados', '2026-01-23 10:31:57'),
(40294, 'es-ar', 'siteauditor', 'Social Media', 'Redes sociales', '2026-01-23 10:31:57'),
(40295, 'es-ar', 'siteauditor', 'Store all links found in a page', 'Guardar todos los enlaces encontrados en una página', '2026-01-23 10:31:57'),
(40296, 'es-ar', 'siteauditor', 'The page allows AI robots to crawl and index content', 'La página permite que los robots IA rastreen e indexen contenido', '2026-01-23 10:31:57'),
(40297, 'es-ar', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'La página bloquea robots IA - puede limitar la visibilidad en búsqueda IA', '2026-01-23 10:31:57'),
(40298, 'es-ar', 'siteauditor', 'The page description length is not between', 'La longitud de la descripción de la página no está entre', '2026-01-23 10:31:57'),
(40299, 'es-ar', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'La página tiene etiquetas Open Graph para mejor compartir en redes sociales', '2026-01-23 10:31:57'),
(40300, 'es-ar', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'La página tiene etiquetas Twitter Card para compartir optimizado en Twitter', '2026-01-23 10:31:57'),
(40301, 'es-ar', '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-23 10:31:57'),
(40302, 'es-ar', '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-23 10:31:57'),
(40303, 'es-ar', 'siteauditor', 'The page is brocken', 'La página está rota', '2026-01-23 10:31:57'),
(40304, 'es-ar', 'siteauditor', 'The page is having excellent page authority value', 'La página tiene un valor excelente de autoridad', '2026-01-23 10:31:57'),
(40305, 'es-ar', 'siteauditor', 'The page is having exellent number of backlinks in', 'La página tiene un número excelente de backlinks en', '2026-01-23 10:31:57'),
(40306, 'es-ar', 'siteauditor', 'The page is having exellent pagerank', 'La página tiene un PageRank excelente', '2026-01-23 10:31:57'),
(40307, 'es-ar', 'siteauditor', 'The page is having good number of backlinks in', 'La página tiene un buen número de backlinks en', '2026-01-23 10:31:57'),
(40308, 'es-ar', 'siteauditor', 'The page is having good page authority value', 'La página tiene un buen valor de autoridad', '2026-01-23 10:31:57'),
(40309, 'es-ar', 'siteauditor', 'The page is having good pagerank', 'La página tiene un buen PageRank', '2026-01-23 10:31:57'),
(40310, 'es-ar', 'siteauditor', 'The page is having poor page authority value', 'La página tiene un valor bajo de autoridad', '2026-01-23 10:31:57'),
(40311, 'es-ar', 'siteauditor', 'The page is having poor pagerank', 'La página tiene un PageRank bajo', '2026-01-23 10:31:57'),
(40312, 'es-ar', 'siteauditor', 'The page is having very good page authority value', 'La página tiene un valor muy bueno de autoridad', '2026-01-23 10:31:57'),
(40313, 'es-ar', 'siteauditor', 'The page is having very good pagerank', 'La página tiene un PageRank muy bueno', '2026-01-23 10:31:57'),
(40314, 'es-ar', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'A la página le faltan etiquetas Open Graph - limita la optimización en redes sociales', '2026-01-23 10:31:57'),
(40315, 'es-ar', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'A la página le faltan etiquetas Twitter Card - limita la optimización en Twitter', '2026-01-23 10:31:57'),
(40316, 'es-ar', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'La página es compatible con móviles con configuración de viewport adecuada', '2026-01-23 10:31:57'),
(40317, 'es-ar', 'siteauditor', 'The page is not having backlinks in', 'La página no tiene backlinks en', '2026-01-23 10:31:57'),
(40318, 'es-ar', 'siteauditor', 'The page is not indexed in', 'La página no está indexada en', '2026-01-23 10:31:57'),
(40319, 'es-ar', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'La página no es compatible con móviles - problema crítico para SEO moderno', '2026-01-23 10:31:57'),
(40320, 'es-ar', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'La página no es segura (HTTP) - debería usar HTTPS', '2026-01-23 10:31:57'),
(40321, 'es-ar', 'siteauditor', 'The page is served over HTTPS - secure connection', 'La página se sirve sobre HTTPS - conexión segura', '2026-01-23 10:31:57'),
(40322, 'es-ar', 'siteauditor', 'The page keywords length is not between', 'La longitud de palabras clave de la página no está entre', '2026-01-23 10:31:57'),
(40323, 'es-ar', 'siteauditor', 'The page title length is not between', 'La longitud del título de la página no está entre', '2026-01-23 10:31:57'),
(40324, 'es-ar', 'siteauditor', 'The total number of links in page is greater than', 'El número total de enlaces en la página es mayor que', '2026-01-23 10:31:57'),
(40325, 'es-ar', 'siteauditor', 'to run project again if you stopped execution', 'para ejecutar el proyecto de nuevo si detuviste la ejecución', '2026-01-23 10:31:57'),
(40326, 'es-ar', 'siteauditor', 'to view the reports', 'para ver los informes', '2026-01-23 10:31:57'),
(40327, 'es-ar', 'siteauditor', 'Total Links', 'Total de enlaces', '2026-01-23 10:31:57'),
(40328, 'es-ar', 'siteauditor', 'totallinksgreaterallowed', 'El total de enlaces será mayor que el máximo permitido para el proyecto', '2026-01-23 10:31:57'),
(40329, 'es-ar', 'siteauditor', 'Twitter Cards', 'Twitter Cards', '2026-01-23 10:31:57'),
(40330, 'es-ar', 'siteauditor', 'URLs from Sitemap', 'URLs del sitemap', '2026-01-23 10:31:57'),
(40331, 'es-ar', 'siteauditor', 'Yes', 'Sí', '2026-01-23 10:31:57'),
(40332, 'sr', 'siteauditor', 'AI Robot Compatibility', 'Компатибилност са АИ роботима', '2026-01-23 10:31:57'),
(40333, 'sr', 'siteauditor', 'Allowed', 'Дозвољено', '2026-01-23 10:31:57'),
(40334, 'sr', 'siteauditor', 'Anchor', 'Сидро', '2026-01-23 10:31:57'),
(40335, 'sr', 'siteauditor', 'anylinkcontainabovelinks', 'Сви линкови који садрже горе наведене линкове биће искључени из извештаја', '2026-01-23 10:31:57'),
(40336, 'sr', 'siteauditor', 'anylinkcontainexcludesitemap', 'Сви линкови који садрже горе наведене линкове биће искључени из мапе сајта', '2026-01-23 10:31:57'),
(40337, 'sr', 'siteauditor', 'Blocked', 'Блокирано', '2026-01-23 10:31:57'),
(40338, 'sr', 'siteauditor', 'Canonical URL', 'Канонски УРЛ', '2026-01-23 10:31:57'),
(40339, 'sr', 'siteauditor', 'Check backlinks of pages', 'Провери повратне линкове страница', '2026-01-23 10:31:57'),
(40340, 'sr', 'siteauditor', 'Check broken links in a page', 'Провери неисправне линкове на страници', '2026-01-23 10:31:57'),
(40341, 'sr', 'siteauditor', 'Check google pagerank of pages', 'Провери Google PageRank страница', '2026-01-23 10:31:57'),
(40342, 'sr', 'siteauditor', 'Check pagerank of pages', 'Провери PageRank страница', '2026-01-23 10:31:57'),
(40343, 'sr', 'siteauditor', 'Check pages indexed or not', 'Провери да ли су странице индексиране', '2026-01-23 10:31:57'),
(40344, 'sr', 'siteauditor', 'Check Score', 'Резултат провере', '2026-01-23 10:31:57'),
(40345, 'sr', 'siteauditor', 'checkborckenlinkwait', 'Провера неисправних линкова ће повећати време извршавања пројекта', '2026-01-23 10:31:57'),
(40346, 'sr', 'siteauditor', 'Completed project execution', 'Извршавање пројекта завршено', '2026-01-23 10:31:57'),
(40347, 'sr', 'siteauditor', 'Crawled', 'Прегледано', '2026-01-23 10:31:57'),
(40348, 'sr', 'siteauditor', 'Crawled Pages', 'Прегледане странице', '2026-01-23 10:31:57'),
(40349, 'sr', 'siteauditor', 'crawledsuccesssfullywaitfornext', 'успешно прегледано! Чекање на преглед следеће странице', '2026-01-23 10:31:57'),
(40350, 'sr', 'siteauditor', 'Crawling Page', 'Преглед странице', '2026-01-23 10:31:57'),
(40351, 'sr', 'siteauditor', 'Discovered Via', 'Откривено преко', '2026-01-23 10:31:57'),
(40352, 'sr', 'siteauditor', 'Duplicate Description', 'Дупликат описа', '2026-01-23 10:31:57'),
(40353, 'sr', 'siteauditor', 'Duplicate Keywords', 'Дупликат кључних речи', '2026-01-23 10:31:57'),
(40354, 'sr', 'siteauditor', 'Duplicate Title', 'Дупликат наслова', '2026-01-23 10:31:57'),
(40355, 'sr', 'siteauditor', 'Exclude Extensions', 'Искључи екстензије', '2026-01-23 10:31:57'),
(40356, 'sr', 'siteauditor', 'Exclude links', 'Искључи линкове', '2026-01-23 10:31:57'),
(40357, 'sr', 'siteauditor', 'Execute with cron', 'Изврши са cron', '2026-01-23 10:31:57');
INSERT INTO `texts` VALUES
(40358, 'sr', 'siteauditor', 'External', 'Спољни', '2026-01-23 10:31:57'),
(40359, 'sr', 'siteauditor', 'External Links', 'Спољни линкови', '2026-01-23 10:31:57'),
(40360, 'sr', 'siteauditor', 'Found', 'Пронађено', '2026-01-23 10:31:57'),
(40361, 'sr', 'siteauditor', 'Has Backlinks', 'Има повратне линкове', '2026-01-23 10:31:57'),
(40362, 'sr', 'siteauditor', 'HTTPS Secure', 'HTTPS безбедно', '2026-01-23 10:31:57'),
(40363, 'sr', 'siteauditor', 'Import Project Links', 'Увези линкове пројекта', '2026-01-23 10:31:57'),
(40364, 'sr', 'siteauditor', 'Insert links separated with comma', 'Унесите линкове раздвојене зарезом', '2026-01-23 10:31:57'),
(40365, 'sr', 'siteauditor', 'insertlinkssepcoma', 'Унесите линкове раздвојене зарезом да бисте искључили бесконачне линкове из извештаја', '2026-01-23 10:31:57'),
(40366, 'sr', 'siteauditor', 'Leave blank to use system default', 'Оставите празно за подразумевану вредност система', '2026-01-23 10:31:57'),
(40367, 'sr', 'siteauditor', 'Link Reports', 'Извештаји о линковима', '2026-01-23 10:31:57'),
(40368, 'sr', 'siteauditor', 'Link Title', 'Наслов линка', '2026-01-23 10:31:57'),
(40369, 'sr', 'siteauditor', 'Maximum number of pages to be checked', 'Максималан број страница за проверу', '2026-01-23 10:31:57'),
(40370, 'sr', 'siteauditor', 'Maximum Pages', 'Максималан број страница', '2026-01-23 10:31:57'),
(40371, 'sr', 'siteauditor', 'Missing', 'Недостаје', '2026-01-23 10:31:57'),
(40372, 'sr', 'siteauditor', 'Mobile Friendly', 'Прилагођено мобилним уређајима', '2026-01-23 10:31:57'),
(40373, 'sr', 'siteauditor', 'No', 'Не', '2026-01-23 10:31:57'),
(40374, 'sr', 'siteauditor', 'No active projects found', 'Нису пронађени активни пројекти', '2026-01-23 10:31:57'),
(40375, 'sr', 'siteauditor', 'Nofollow', 'Nofollow', '2026-01-23 10:31:57'),
(40376, 'sr', 'siteauditor', 'Number of pages is greater than', 'Број страница је већи од', '2026-01-23 10:31:57'),
(40377, 'sr', 'siteauditor', 'Number of pages should be greater than', 'Број страница треба да буде већи од', '2026-01-23 10:31:57'),
(40378, 'sr', 'siteauditor', 'Open Graph Tags', 'Open Graph ознаке', '2026-01-23 10:31:57'),
(40379, 'sr', 'siteauditor', 'Page Details', 'Детаљи странице', '2026-01-23 10:31:57'),
(40380, 'sr', 'siteauditor', 'Page Link', 'Линк странице', '2026-01-23 10:31:57'),
(40381, 'sr', 'siteauditor', 'Page Links', 'Линкови странице', '2026-01-23 10:31:57'),
(40382, 'sr', 'siteauditor', 'Pages Found', 'Пронађене странице', '2026-01-23 10:31:57'),
(40383, 'sr', 'siteauditor', 'Pages with modern SEO features', 'Странице са модерним СЕО функцијама', '2026-01-23 10:31:57'),
(40384, 'sr', 'siteauditor', 'pressescapetostopexecution', 'Притисните <b>escape</b> да зауставите извршавање скрипте', '2026-01-23 10:31:57'),
(40385, 'sr', 'siteauditor', 'Project Summary', 'Резиме пројекта', '2026-01-23 10:31:57'),
(40386, 'sr', 'siteauditor', 'Project Url', 'УРЛ пројекта', '2026-01-23 10:31:57'),
(40387, 'sr', 'siteauditor', 'projectalreadyexist', 'Пројекат за овај веб сајт већ постоји', '2026-01-23 10:31:57'),
(40388, 'sr', 'siteauditor', 'Recheck Pages', 'Поново провери странице', '2026-01-23 10:31:57'),
(40389, 'sr', 'siteauditor', 'Report Summary', 'Резиме извештаја', '2026-01-23 10:31:57'),
(40390, 'sr', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt дозвољено', '2026-01-23 10:31:57'),
(40391, 'sr', 'siteauditor', 'Robots.txt Status', 'Статус Robots.txt', '2026-01-23 10:31:57'),
(40392, 'sr', 'siteauditor', 'Run Project', 'Покрени пројекат', '2026-01-23 10:31:57'),
(40393, 'sr', 'siteauditor', 'should start with', 'треба да почне са', '2026-01-23 10:31:57'),
(40394, 'sr', 'siteauditor', 'Site Auditor Settings', 'Подешавања ревизије сајта', '2026-01-23 10:31:57'),
(40395, 'sr', 'siteauditor', 'Sitemap Parsing', 'Парсирање мапе сајта', '2026-01-23 10:31:57'),
(40396, 'sr', 'siteauditor', 'Sitemap URL', 'УРЛ мапе сајта', '2026-01-23 10:31:57'),
(40397, 'sr', 'siteauditor', 'Sitemaps Found', 'Пронађене мапе сајта', '2026-01-23 10:31:57'),
(40398, 'sr', 'siteauditor', 'Social Media', 'Друштвене мреже', '2026-01-23 10:31:57'),
(40399, 'sr', 'siteauditor', 'Store all links found in a page', 'Сачувај све линкове пронађене на страници', '2026-01-23 10:31:57'),
(40400, 'sr', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Страница дозвољава АИ роботима да прегледају и индексирају садржај', '2026-01-23 10:31:57'),
(40401, 'sr', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Страница блокира АИ роботе - може ограничити видљивост у АИ претрази', '2026-01-23 10:31:57'),
(40402, 'sr', 'siteauditor', 'The page description length is not between', 'Дужина описа странице није између', '2026-01-23 10:31:57'),
(40403, 'sr', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Страница има Open Graph ознаке за боље дељење на друштвеним мрежама', '2026-01-23 10:31:57'),
(40404, 'sr', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Страница има Twitter Card ознаке за оптимизовано дељење на Твитеру', '2026-01-23 10:31:57'),
(40405, 'sr', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Страница је дозвољена у robots.txt и може бити прегледана од стране претраживача', '2026-01-23 10:31:57'),
(40406, 'sr', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Страница је блокирана у robots.txt - претраживачи не могу прегледати ову страницу', '2026-01-23 10:31:57'),
(40407, 'sr', 'siteauditor', 'The page is brocken', 'Страница је неисправна', '2026-01-23 10:31:57'),
(40408, 'sr', 'siteauditor', 'The page is having excellent page authority value', 'Страница има одличну вредност ауторитета', '2026-01-23 10:31:57'),
(40409, 'sr', 'siteauditor', 'The page is having exellent number of backlinks in', 'Страница има одличан број повратних линкова у', '2026-01-23 10:31:57'),
(40410, 'sr', 'siteauditor', 'The page is having exellent pagerank', 'Страница има одличан PageRank', '2026-01-23 10:31:57'),
(40411, 'sr', 'siteauditor', 'The page is having good number of backlinks in', 'Страница има добар број повратних линкова у', '2026-01-23 10:31:57'),
(40412, 'sr', 'siteauditor', 'The page is having good page authority value', 'Страница има добру вредност ауторитета', '2026-01-23 10:31:57'),
(40413, 'sr', 'siteauditor', 'The page is having good pagerank', 'Страница има добар PageRank', '2026-01-23 10:31:57'),
(40414, 'sr', 'siteauditor', 'The page is having poor page authority value', 'Страница има лошу вредност ауторитета', '2026-01-23 10:31:57'),
(40415, 'sr', 'siteauditor', 'The page is having poor pagerank', 'Страница има лош PageRank', '2026-01-23 10:31:57'),
(40416, 'sr', 'siteauditor', 'The page is having very good page authority value', 'Страница има веома добру вредност ауторитета', '2026-01-23 10:31:57'),
(40417, 'sr', 'siteauditor', 'The page is having very good pagerank', 'Страница има веома добар PageRank', '2026-01-23 10:31:57'),
(40418, 'sr', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Страници недостају Open Graph ознаке - ограничава оптимизацију за друштвене мреже', '2026-01-23 10:31:57'),
(40419, 'sr', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Страници недостају Twitter Card ознаке - ограничава оптимизацију за Твитер', '2026-01-23 10:31:57'),
(40420, 'sr', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Страница је прилагођена мобилним уређајима са исправном конфигурацијом viewport-а', '2026-01-23 10:31:57'),
(40421, 'sr', 'siteauditor', 'The page is not having backlinks in', 'Страница нема повратне линкове у', '2026-01-23 10:31:57'),
(40422, 'sr', 'siteauditor', 'The page is not indexed in', 'Страница није индексирана у', '2026-01-23 10:31:57'),
(40423, 'sr', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Страница није прилагођена мобилним уређајима - критичан проблем за модеран СЕО', '2026-01-23 10:31:57'),
(40424, 'sr', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Страница није безбедна (HTTP) - треба користити HTTPS', '2026-01-23 10:31:57'),
(40425, 'sr', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Страница се сервира преко HTTPS - безбедна веза', '2026-01-23 10:31:57'),
(40426, 'sr', 'siteauditor', 'The page keywords length is not between', 'Дужина кључних речи странице није између', '2026-01-23 10:31:57'),
(40427, 'sr', 'siteauditor', 'The page title length is not between', 'Дужина наслова странице није између', '2026-01-23 10:31:57'),
(40428, 'sr', 'siteauditor', 'The total number of links in page is greater than', 'Укупан број линкова на страници је већи од', '2026-01-23 10:31:57'),
(40429, 'sr', 'siteauditor', 'to run project again if you stopped execution', 'да поново покренете пројекат ако сте зауставили извршавање', '2026-01-23 10:31:57'),
(40430, 'sr', 'siteauditor', 'to view the reports', 'да видите извештаје', '2026-01-23 10:31:57'),
(40431, 'sr', 'siteauditor', 'Total Links', 'Укупно линкова', '2026-01-23 10:31:57'),
(40432, 'sr', 'siteauditor', 'totallinksgreaterallowed', 'Укупан број линкова ће бити већи од максималног дозвољеног броја за пројекат', '2026-01-23 10:31:57'),
(40433, 'sr', 'siteauditor', 'Twitter Cards', 'Twitter картице', '2026-01-23 10:31:57'),
(40434, 'sr', 'siteauditor', 'URLs from Sitemap', 'УРЛ адресе из мапе сајта', '2026-01-23 10:31:57'),
(40435, 'sr', 'siteauditor', 'Yes', 'Да', '2026-01-23 10:31:57'),
(40436, 'de', 'siteauditor', 'Has Backlinks', 'Hat Backlinks', '2026-01-23 10:31:57'),
(40437, 'de', 'siteauditor', 'Sitemap Parsing', 'Sitemap-Verarbeitung', '2026-01-23 10:31:57'),
(40438, 'de', 'siteauditor', 'Sitemap URL', 'Sitemap-URL', '2026-01-23 10:31:57'),
(40439, 'de', 'siteauditor', 'Sitemaps Found', 'Sitemaps gefunden', '2026-01-23 10:31:57'),
(40440, 'de', 'siteauditor', 'URLs from Sitemap', 'URLs aus Sitemap', '2026-01-23 10:31:57'),
(40441, 'bg', 'siteauditor', 'Has Backlinks', 'Има обратни връзки', '2026-01-23 10:31:57'),
(40442, 'bg', 'siteauditor', 'Sitemap Parsing', 'Обработка на sitemap', '2026-01-23 10:31:57'),
(40443, 'bg', 'siteauditor', 'Sitemap URL', 'URL на sitemap', '2026-01-23 10:31:57'),
(40444, 'bg', 'siteauditor', 'Sitemaps Found', 'Намерени sitemaps', '2026-01-23 10:31:57'),
(40445, 'bg', 'siteauditor', 'URLs from Sitemap', 'URL адреси от sitemap', '2026-01-23 10:31:57'),
(40446, 'fr', 'siteauditor', 'Has Backlinks', 'A des backlinks', '2026-01-23 10:31:57'),
(40447, 'fr', 'siteauditor', 'Sitemap Parsing', 'Analyse du sitemap', '2026-01-23 10:31:57'),
(40448, 'fr', 'siteauditor', 'Sitemap URL', 'URL du sitemap', '2026-01-23 10:31:57'),
(40449, 'fr', 'siteauditor', 'Sitemaps Found', 'Sitemaps trouvés', '2026-01-23 10:31:57'),
(40450, 'fr', 'siteauditor', 'URLs from Sitemap', 'URLs du sitemap', '2026-01-23 10:31:57'),
(40451, 'it', 'siteauditor', 'Has Backlinks', 'Ha backlinks', '2026-01-23 10:31:57'),
(40452, 'it', 'siteauditor', 'Sitemap Parsing', 'Analisi sitemap', '2026-01-23 10:31:57'),
(40453, 'it', 'siteauditor', 'Sitemap URL', 'URL sitemap', '2026-01-23 10:31:57'),
(40454, 'it', 'siteauditor', 'Sitemaps Found', 'Sitemaps trovati', '2026-01-23 10:31:57'),
(40455, 'it', 'siteauditor', 'URLs from Sitemap', 'URL dalla sitemap', '2026-01-23 10:31:57'),
(40456, 'ru', 'siteauditor', 'Has Backlinks', 'Есть обратные ссылки', '2026-01-23 10:31:57'),
(40457, 'ru', 'siteauditor', 'Sitemap Parsing', 'Анализ карты сайта', '2026-01-23 10:31:57'),
(40458, 'ru', 'siteauditor', 'Sitemap URL', 'URL карты сайта', '2026-01-23 10:31:57'),
(40459, 'ru', 'siteauditor', 'Sitemaps Found', 'Найдены карты сайта', '2026-01-23 10:31:57'),
(40460, 'ru', 'siteauditor', 'URLs from Sitemap', 'URL из карты сайта', '2026-01-23 10:31:57'),
(40461, 'pt-br', 'siteauditor', 'Has Backlinks', 'Tem backlinks', '2026-01-23 10:31:57'),
(40462, 'pt-br', 'siteauditor', 'Sitemap Parsing', 'Análise do sitemap', '2026-01-23 10:31:57'),
(40463, 'pt-br', 'siteauditor', 'Sitemap URL', 'URL do sitemap', '2026-01-23 10:31:57'),
(40464, 'pt-br', 'siteauditor', 'Sitemaps Found', 'Sitemaps encontrados', '2026-01-23 10:31:57'),
(40465, 'pt-br', 'siteauditor', 'URLs from Sitemap', 'URLs do sitemap', '2026-01-23 10:31:57'),
(40466, 'tr', 'siteauditor', 'Has Backlinks', 'Backlink var', '2026-01-23 10:31:57'),
(40467, 'tr', 'siteauditor', 'Sitemap Parsing', 'Sitemap işleme', '2026-01-23 10:31:57'),
(40468, 'tr', 'siteauditor', 'Sitemap URL', 'Sitemap URL', '2026-01-23 10:31:57'),
(40469, 'tr', 'siteauditor', 'Sitemaps Found', 'Bulunan sitemaplar', '2026-01-23 10:31:57'),
(40470, 'tr', 'siteauditor', 'The page is having good page authority value', 'Sayfa iyi sayfa otoritesi değerine sahip', '2026-01-23 10:31:57'),
(40471, 'tr', 'siteauditor', 'URLs from Sitemap', 'Sitemap''ten URL''ler', '2026-01-23 10:31:57'),
(40472, 'ar', 'siteauditor', 'Check pagerank of pages', 'التحقق من تصنيف الصفحات', '2026-01-23 10:31:57'),
(40473, 'ar', 'siteauditor', 'Has Backlinks', 'يحتوي على روابط خلفية', '2026-01-23 10:31:57'),
(40474, 'ar', 'siteauditor', 'Sitemap Parsing', 'تحليل خريطة الموقع', '2026-01-23 10:31:57'),
(40475, 'ar', 'siteauditor', 'Sitemap URL', 'رابط خريطة الموقع', '2026-01-23 10:31:57'),
(40476, 'ar', 'siteauditor', 'Sitemaps Found', 'خرائط الموقع الموجودة', '2026-01-23 10:31:57'),
(40477, 'ar', 'siteauditor', 'The page is having excellent page authority value', 'الصفحة لديها قيمة سلطة صفحة ممتازة', '2026-01-23 10:31:57'),
(40478, 'ar', 'siteauditor', 'The page is having good page authority value', 'الصفحة لديها قيمة سلطة صفحة جيدة', '2026-01-23 10:31:57'),
(40479, 'ar', 'siteauditor', 'The page is having poor page authority value', 'الصفحة لديها قيمة سلطة صفحة ضعيفة', '2026-01-23 10:31:57'),
(40480, 'ar', 'siteauditor', 'The page is having very good page authority value', 'الصفحة لديها قيمة سلطة صفحة جيدة جداً', '2026-01-23 10:31:57'),
(40481, 'ar', 'siteauditor', 'URLs from Sitemap', 'روابط من خريطة الموقع', '2026-01-23 10:31:57'),
(40482, 'es', 'siteauditor', 'Check pagerank of pages', 'Verificar PageRank de páginas', '2026-01-23 10:31:57'),
(40483, 'es', 'siteauditor', 'Has Backlinks', 'Tiene backlinks', '2026-01-23 10:31:57'),
(40484, 'es', 'siteauditor', 'Sitemap Parsing', 'Análisis de sitemap', '2026-01-23 10:31:57'),
(40485, 'es', 'siteauditor', 'Sitemap URL', 'URL del sitemap', '2026-01-23 10:31:57'),
(40486, 'es', 'siteauditor', 'Sitemaps Found', 'Sitemaps encontrados', '2026-01-23 10:31:57'),
(40487, 'es', 'siteauditor', 'The page is having excellent page authority value', 'La página tiene un valor excelente de autoridad', '2026-01-23 10:31:57'),
(40488, 'es', 'siteauditor', 'The page is having good page authority value', 'La página tiene un buen valor de autoridad', '2026-01-23 10:31:57'),
(40489, 'es', 'siteauditor', 'The page is having poor page authority value', 'La página tiene un valor bajo de autoridad', '2026-01-23 10:31:57'),
(40490, 'es', 'siteauditor', 'The page is having very good page authority value', 'La página tiene un valor muy bueno de autoridad', '2026-01-23 10:31:57'),
(40491, 'es', 'siteauditor', 'URLs from Sitemap', 'URLs del sitemap', '2026-01-23 10:31:57'),
(40492, 'nl', 'siteauditor', 'Check pagerank of pages', 'Controleer PageRank van pagina''s', '2026-01-23 10:31:57'),
(40493, 'nl', 'siteauditor', 'Has Backlinks', 'Heeft backlinks', '2026-01-23 10:31:57'),
(40494, 'nl', 'siteauditor', 'Sitemap Parsing', 'Sitemap verwerking', '2026-01-23 10:31:57'),
(40495, 'nl', 'siteauditor', 'Sitemap URL', 'Sitemap URL', '2026-01-23 10:31:57'),
(40496, 'nl', 'siteauditor', 'Sitemaps Found', 'Sitemaps gevonden', '2026-01-23 10:31:57'),
(40497, 'nl', 'siteauditor', 'The page is having excellent page authority value', 'De pagina heeft een uitstekende pagina-autoriteitswaarde', '2026-01-23 10:31:57'),
(40498, 'nl', 'siteauditor', 'The page is having good page authority value', 'De pagina heeft een goede pagina-autoriteitswaarde', '2026-01-23 10:31:57'),
(40499, 'nl', 'siteauditor', 'The page is having poor page authority value', 'De pagina heeft een lage pagina-autoriteitswaarde', '2026-01-23 10:31:57'),
(40500, 'nl', 'siteauditor', 'The page is having very good page authority value', 'De pagina heeft een zeer goede pagina-autoriteitswaarde', '2026-01-23 10:31:57'),
(40501, 'nl', 'siteauditor', 'URLs from Sitemap', 'URL''s van sitemap', '2026-01-23 10:31:57'),
(40502, 'pl', 'siteauditor', 'Check pagerank of pages', 'Sprawdź PageRank stron', '2026-01-23 10:31:57'),
(40503, 'pl', 'siteauditor', 'Has Backlinks', 'Ma linki zwrotne', '2026-01-23 10:31:57'),
(40504, 'pl', 'siteauditor', 'Sitemap Parsing', 'Przetwarzanie mapy strony', '2026-01-23 10:31:57'),
(40505, 'pl', 'siteauditor', 'Sitemap URL', 'URL mapy strony', '2026-01-23 10:31:57'),
(40506, 'pl', 'siteauditor', 'Sitemaps Found', 'Znalezione mapy strony', '2026-01-23 10:31:57'),
(40507, 'pl', 'siteauditor', 'The page is having excellent page authority value', 'Strona ma doskonałą wartość autorytetu', '2026-01-23 10:31:57'),
(40508, 'pl', 'siteauditor', 'The page is having good page authority value', 'Strona ma dobrą wartość autorytetu', '2026-01-23 10:31:57'),
(40509, 'pl', 'siteauditor', 'The page is having poor page authority value', 'Strona ma niską wartość autorytetu', '2026-01-23 10:31:57'),
(40510, 'pl', 'siteauditor', 'The page is having very good page authority value', 'Strona ma bardzo dobrą wartość autorytetu', '2026-01-23 10:31:57'),
(40511, 'pl', 'siteauditor', 'URLs from Sitemap', 'URLe z mapy strony', '2026-01-23 10:31:57'),
(40512, 'pt', 'siteauditor', 'Check pagerank of pages', 'Verificar PageRank das páginas', '2026-01-23 10:31:57'),
(40513, 'pt', 'siteauditor', 'Has Backlinks', 'Tem backlinks', '2026-01-23 10:31:57'),
(40514, 'pt', 'siteauditor', 'Sitemap Parsing', 'Análise do sitemap', '2026-01-23 10:31:57'),
(40515, 'pt', 'siteauditor', 'Sitemap URL', 'URL do sitemap', '2026-01-23 10:31:57'),
(40516, 'pt', 'siteauditor', 'Sitemaps Found', 'Sitemaps encontrados', '2026-01-23 10:31:57'),
(40517, 'pt', 'siteauditor', 'The page is having excellent page authority value', 'A página tem um valor excelente de autoridade', '2026-01-23 10:31:57'),
(40518, 'pt', 'siteauditor', 'The page is having good page authority value', 'A página tem um bom valor de autoridade', '2026-01-23 10:31:57'),
(40519, 'pt', 'siteauditor', 'The page is having poor page authority value', 'A página tem um valor baixo de autoridade', '2026-01-23 10:31:57'),
(40520, 'pt', 'siteauditor', 'The page is having very good page authority value', 'A página tem um valor muito bom de autoridade', '2026-01-23 10:31:57'),
(40521, 'pt', 'siteauditor', 'URLs from Sitemap', 'URLs do sitemap', '2026-01-23 10:31:57'),
(40522, 'zh', 'siteauditor', 'Check pagerank of pages', '检查页面的PageRank', '2026-01-23 10:31:57'),
(40523, 'zh', 'siteauditor', 'Has Backlinks', '有反向链接', '2026-01-23 10:31:57'),
(40524, 'zh', 'siteauditor', 'Sitemap Parsing', '站点地图解析', '2026-01-23 10:31:57'),
(40525, 'zh', 'siteauditor', 'Sitemap URL', '站点地图URL', '2026-01-23 10:31:57'),
(40526, 'zh', 'siteauditor', 'Sitemaps Found', '找到的站点地图', '2026-01-23 10:31:57'),
(40527, 'zh', 'siteauditor', 'The page is having excellent page authority value', '该页面具有优秀的页面权威值', '2026-01-23 10:31:57'),
(40528, 'zh', 'siteauditor', 'The page is having good page authority value', '该页面具有良好的页面权威值', '2026-01-23 10:31:57'),
(40529, 'zh', 'siteauditor', 'The page is having poor page authority value', '该页面的页面权威值较低', '2026-01-23 10:31:57'),
(40530, 'zh', 'siteauditor', 'The page is having very good page authority value', '该页面具有非常好的页面权威值', '2026-01-23 10:31:57'),
(40531, 'zh', 'siteauditor', 'URLs from Sitemap', '来自站点地图的URL', '2026-01-23 10:31:57'),
(40532, 'cn', 'siteauditor', 'Check pagerank of pages', '檢查頁面的PageRank', '2026-01-23 10:31:57'),
(40533, 'cn', 'siteauditor', 'Has Backlinks', '有反向連結', '2026-01-23 10:31:57'),
(40534, 'cn', 'siteauditor', 'Sitemap Parsing', '網站地圖解析', '2026-01-23 10:31:57'),
(40535, 'cn', 'siteauditor', 'Sitemap URL', '網站地圖URL', '2026-01-23 10:31:57'),
(40536, 'cn', 'siteauditor', 'Sitemaps Found', '找到的網站地圖', '2026-01-23 10:31:57'),
(40537, 'cn', 'siteauditor', 'The page is having excellent page authority value', '該頁面具有優秀的頁面權威值', '2026-01-23 10:31:57'),
(40538, 'cn', 'siteauditor', 'The page is having good page authority value', '該頁面具有良好的頁面權威值', '2026-01-23 10:31:57'),
(40539, 'cn', 'siteauditor', 'The page is having poor page authority value', '該頁面的頁面權威值較低', '2026-01-23 10:31:57'),
(40540, 'cn', 'siteauditor', 'The page is having very good page authority value', '該頁面具有非常好的頁面權威值', '2026-01-23 10:31:57'),
(40541, 'cn', 'siteauditor', 'URLs from Sitemap', '來自網站地圖的URL', '2026-01-23 10:31:57'),
(40542, 'el', 'siteauditor', 'AI Robot Compatibility', 'Συμβατότητα με AI ρομπότ', '2026-01-23 10:31:57'),
(40543, 'el', 'siteauditor', 'Allowed', 'Επιτρέπεται', '2026-01-23 10:31:57'),
(40544, 'el', 'siteauditor', 'Blocked', 'Αποκλεισμένο', '2026-01-23 10:31:57'),
(40545, 'el', 'siteauditor', 'Canonical URL', 'Κανονικό URL', '2026-01-23 10:31:57'),
(40546, 'el', 'siteauditor', 'Discovered Via', 'Ανακαλύφθηκε μέσω', '2026-01-23 10:31:57'),
(40547, 'el', 'siteauditor', 'Exclude Extensions', 'Εξαίρεση επεκτάσεων', '2026-01-23 10:31:57'),
(40548, 'el', 'siteauditor', 'Found', 'Βρέθηκε', '2026-01-23 10:31:57'),
(40549, 'el', 'siteauditor', 'Has Backlinks', 'Έχει backlinks', '2026-01-23 10:31:57'),
(40550, 'el', 'siteauditor', 'HTTPS Secure', 'HTTPS ασφαλές', '2026-01-23 10:31:57'),
(40551, 'el', 'siteauditor', 'Leave blank to use system default', 'Αφήστε κενό για προεπιλογή συστήματος', '2026-01-23 10:31:57'),
(40552, 'el', 'siteauditor', 'Missing', 'Λείπει', '2026-01-23 10:31:57'),
(40553, 'el', 'siteauditor', 'Mobile Friendly', 'Φιλικό προς κινητά', '2026-01-23 10:31:57'),
(40554, 'el', 'siteauditor', 'No', 'Όχι', '2026-01-23 10:31:57'),
(40555, 'el', 'siteauditor', 'Open Graph Tags', 'Ετικέτες Open Graph', '2026-01-23 10:31:57'),
(40556, 'el', 'siteauditor', 'Pages with modern SEO features', 'Σελίδες με σύγχρονα χαρακτηριστικά SEO', '2026-01-23 10:31:57'),
(40557, 'el', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt επιτρέπεται', '2026-01-23 10:31:57'),
(40558, 'el', 'siteauditor', 'Robots.txt Status', 'Κατάσταση Robots.txt', '2026-01-23 10:31:57'),
(40559, 'el', 'siteauditor', 'Sitemap Parsing', 'Ανάλυση sitemap', '2026-01-23 10:31:57'),
(40560, 'el', 'siteauditor', 'Sitemap URL', 'URL Sitemap', '2026-01-23 10:31:57'),
(40561, 'el', 'siteauditor', 'Sitemaps Found', 'Βρέθηκαν sitemaps', '2026-01-23 10:31:57'),
(40562, 'el', 'siteauditor', 'Social Media', 'Κοινωνικά δίκτυα', '2026-01-23 10:31:57'),
(40563, 'el', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Η σελίδα επιτρέπει σε AI ρομπότ να σαρώνουν και να δημιουργούν ευρετήριο', '2026-01-23 10:31:57'),
(40564, 'el', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Η σελίδα μπλοκάρει AI ρομπότ - μπορεί να περιορίσει την ορατότητα στην AI αναζήτηση', '2026-01-23 10:31:57'),
(40565, 'el', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Η σελίδα έχει ετικέτες Open Graph για καλύτερη κοινοποίηση στα κοινωνικά δίκτυα', '2026-01-23 10:31:57'),
(40566, 'el', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Η σελίδα έχει ετικέτες Twitter Card για βελτιστοποιημένη κοινοποίηση στο Twitter', '2026-01-23 10:31:57'),
(40567, 'el', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Η σελίδα επιτρέπεται από το robots.txt και μπορεί να σαρωθεί από μηχανές αναζήτησης', '2026-01-23 10:31:57'),
(40568, 'el', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Η σελίδα είναι αποκλεισμένη από το robots.txt - οι μηχανές αναζήτησης δεν μπορούν να σαρώσουν', '2026-01-23 10:31:57'),
(40569, 'el', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Η σελίδα δεν έχει ετικέτες Open Graph - περιορίζει τη βελτιστοποίηση κοινωνικών δικτύων', '2026-01-23 10:31:57'),
(40570, 'el', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Η σελίδα δεν έχει ετικέτες Twitter Card - περιορίζει τη βελτιστοποίηση Twitter', '2026-01-23 10:31:57'),
(40571, 'el', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Η σελίδα είναι φιλική προς κινητά με σωστή διαμόρφωση viewport', '2026-01-23 10:31:57'),
(40572, 'el', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Η σελίδα δεν είναι φιλική προς κινητά - κρίσιμο ζήτημα για σύγχρονο SEO', '2026-01-23 10:31:57'),
(40573, 'el', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Η σελίδα δεν είναι ασφαλής (HTTP) - πρέπει να χρησιμοποιεί HTTPS', '2026-01-23 10:31:57'),
(40574, 'el', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Η σελίδα παρέχεται μέσω HTTPS - ασφαλής σύνδεση', '2026-01-23 10:31:57'),
(40575, 'el', 'siteauditor', 'Twitter Cards', 'Twitter Cards', '2026-01-23 10:31:57'),
(40576, 'el', 'siteauditor', 'URLs from Sitemap', 'URLs από το sitemap', '2026-01-23 10:31:57'),
(40577, 'el', 'siteauditor', 'Yes', 'Ναι', '2026-01-23 10:31:57'),
(40578, 'ja', 'siteauditor', 'AI Robot Compatibility', 'AIロボット互換性', '2026-01-23 10:31:57'),
(40579, 'ja', 'siteauditor', 'Allowed', '許可', '2026-01-23 10:31:57'),
(40580, 'ja', 'siteauditor', 'Blocked', 'ブロック', '2026-01-23 10:31:57'),
(40581, 'ja', 'siteauditor', 'Canonical URL', '正規URL', '2026-01-23 10:31:57'),
(40582, 'ja', 'siteauditor', 'Discovered Via', '発見経路', '2026-01-23 10:31:57'),
(40583, 'ja', 'siteauditor', 'Exclude Extensions', '除外する拡張子', '2026-01-23 10:31:57'),
(40584, 'ja', 'siteauditor', 'Found', '見つかりました', '2026-01-23 10:31:57'),
(40585, 'ja', 'siteauditor', 'Has Backlinks', 'バックリンクあり', '2026-01-23 10:31:57'),
(40586, 'ja', 'siteauditor', 'HTTPS Secure', 'HTTPSセキュア', '2026-01-23 10:31:57'),
(40587, 'ja', 'siteauditor', 'Leave blank to use system default', 'システムのデフォルトを使用する場合は空白のまま', '2026-01-23 10:31:57'),
(40588, 'ja', 'siteauditor', 'Missing', '欠落', '2026-01-23 10:31:57'),
(40589, 'ja', 'siteauditor', 'Mobile Friendly', 'モバイルフレンドリー', '2026-01-23 10:31:57'),
(40590, 'ja', 'siteauditor', 'No', 'いいえ', '2026-01-23 10:31:57'),
(40591, 'ja', 'siteauditor', 'Open Graph Tags', 'Open Graphタグ', '2026-01-23 10:31:57'),
(40592, 'ja', 'siteauditor', 'Pages with modern SEO features', '最新のSEO機能を備えたページ', '2026-01-23 10:31:57'),
(40593, 'ja', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt許可', '2026-01-23 10:31:57'),
(40594, 'ja', 'siteauditor', 'Robots.txt Status', 'Robots.txtステータス', '2026-01-23 10:31:57'),
(40595, 'ja', 'siteauditor', 'Sitemap Parsing', 'サイトマップ解析', '2026-01-23 10:31:57'),
(40596, 'ja', 'siteauditor', 'Sitemap URL', 'サイトマップURL', '2026-01-23 10:31:57'),
(40597, 'ja', 'siteauditor', 'Sitemaps Found', '見つかったサイトマップ', '2026-01-23 10:31:57'),
(40598, 'ja', 'siteauditor', 'Social Media', 'ソーシャルメディア', '2026-01-23 10:31:57'),
(40599, 'ja', 'siteauditor', 'The page allows AI robots to crawl and index content', 'ページはAIロボットによるクロールとインデックスを許可しています', '2026-01-23 10:31:57'),
(40600, 'ja', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'ページはAIロボットをブロックしています - AI検索での表示が制限される可能性があります', '2026-01-23 10:31:57'),
(40601, 'ja', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'ページにはソーシャルメディア共有向上のためのOpen Graphタグがあります', '2026-01-23 10:31:57'),
(40602, 'ja', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'ページにはTwitter共有最適化のためのTwitter Cardタグがあります', '2026-01-23 10:31:57'),
(40603, 'ja', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'ページはrobots.txtで許可されており、検索エンジンがクロールできます', '2026-01-23 10:31:57'),
(40604, 'ja', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'ページはrobots.txtでブロックされています - 検索エンジンはこのページをクロールできません', '2026-01-23 10:31:57'),
(40605, 'ja', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'ページにOpen Graphタグがありません - ソーシャルメディア最適化が制限されます', '2026-01-23 10:31:57'),
(40606, 'ja', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'ページにTwitter Cardタグがありません - Twitter最適化が制限されます', '2026-01-23 10:31:57'),
(40607, 'ja', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'ページは適切なviewport設定でモバイルフレンドリーです', '2026-01-23 10:31:57'),
(40608, 'ja', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'ページはモバイルフレンドリーではありません - 現代のSEOにとって重要な問題', '2026-01-23 10:31:57'),
(40609, 'ja', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'ページは安全ではありません(HTTP) - HTTPSを使用すべきです', '2026-01-23 10:31:57'),
(40610, 'ja', 'siteauditor', 'The page is served over HTTPS - secure connection', 'ページはHTTPS経由で提供されています - 安全な接続', '2026-01-23 10:31:57'),
(40611, 'ja', 'siteauditor', 'Twitter Cards', 'Twitterカード', '2026-01-23 10:31:57'),
(40612, 'ja', 'siteauditor', 'URLs from Sitemap', 'サイトマップからのURL', '2026-01-23 10:31:57'),
(40613, 'ja', 'siteauditor', 'Yes', 'はい', '2026-01-23 10:31:57'),
(40614, 'fi', 'siteauditor', 'AI Robot Compatibility', 'AI-robottien yhteensopivuus', '2026-01-23 10:31:57'),
(40615, 'fi', 'siteauditor', 'Allowed', 'Sallittu', '2026-01-23 10:31:57'),
(40616, 'fi', 'siteauditor', 'Blocked', 'Estetty', '2026-01-23 10:31:57'),
(40617, 'fi', 'siteauditor', 'Canonical URL', 'Kanoninen URL', '2026-01-23 10:31:57'),
(40618, 'fi', 'siteauditor', 'Discovered Via', 'Löydetty kautta', '2026-01-23 10:31:57'),
(40619, 'fi', 'siteauditor', 'Exclude Extensions', 'Sulje pois tiedostopäätteet', '2026-01-23 10:31:57'),
(40620, 'fi', 'siteauditor', 'Found', 'Löydetty', '2026-01-23 10:31:57'),
(40621, 'fi', 'siteauditor', 'Has Backlinks', 'On takalinkkejä', '2026-01-23 10:31:57'),
(40622, 'fi', 'siteauditor', 'HTTPS Secure', 'HTTPS suojattu', '2026-01-23 10:31:57'),
(40623, 'fi', 'siteauditor', 'Leave blank to use system default', 'Jätä tyhjäksi käyttääksesi järjestelmän oletusta', '2026-01-23 10:31:57'),
(40624, 'fi', 'siteauditor', 'Missing', 'Puuttuu', '2026-01-23 10:31:57'),
(40625, 'fi', 'siteauditor', 'Mobile Friendly', 'Mobiiliystävällinen', '2026-01-23 10:31:57'),
(40626, 'fi', 'siteauditor', 'No', 'Ei', '2026-01-23 10:31:57'),
(40627, 'fi', 'siteauditor', 'Open Graph Tags', 'Open Graph -tagit', '2026-01-23 10:31:57'),
(40628, 'fi', 'siteauditor', 'Pages with modern SEO features', 'Sivut moderneilla SEO-ominaisuuksilla', '2026-01-23 10:31:57'),
(40629, 'fi', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt sallittu', '2026-01-23 10:31:57'),
(40630, 'fi', 'siteauditor', 'Robots.txt Status', 'Robots.txt-tila', '2026-01-23 10:31:57'),
(40631, 'fi', 'siteauditor', 'Sitemap Parsing', 'Sivukartan jäsentäminen', '2026-01-23 10:31:57'),
(40632, 'fi', 'siteauditor', 'Sitemap URL', 'Sivukartan URL', '2026-01-23 10:31:57'),
(40633, 'fi', 'siteauditor', 'Sitemaps Found', 'Löydetyt sivukartat', '2026-01-23 10:31:57'),
(40634, 'fi', 'siteauditor', 'Social Media', 'Sosiaalinen media', '2026-01-23 10:31:57'),
(40635, 'fi', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Sivu sallii AI-robottien indeksoida sisältöä', '2026-01-23 10:31:57'),
(40636, 'fi', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Sivu estää AI-robotit - voi rajoittaa näkyvyyttä AI-haussa', '2026-01-23 10:31:57'),
(40637, 'fi', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Sivulla on Open Graph -tagit parempaan sosiaalisen median jakamiseen', '2026-01-23 10:31:57'),
(40638, 'fi', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Sivulla on Twitter Card -tagit optimoituun Twitter-jakamiseen', '2026-01-23 10:31:57'),
(40639, 'fi', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Sivu on sallittu robots.txt:ssä ja hakukoneet voivat indeksoida sen', '2026-01-23 10:31:57'),
(40640, 'fi', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Sivu on estetty robots.txt:ssä - hakukoneet eivät voi indeksoida tätä sivua', '2026-01-23 10:31:57'),
(40641, 'fi', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Sivulta puuttuu Open Graph -tagit - rajoittaa sosiaalisen median optimointia', '2026-01-23 10:31:57'),
(40642, 'fi', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Sivulta puuttuu Twitter Card -tagit - rajoittaa Twitter-optimointia', '2026-01-23 10:31:57'),
(40643, 'fi', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Sivu on mobiiliystävällinen oikealla viewport-asetuksella', '2026-01-23 10:31:57'),
(40644, 'fi', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Sivu ei ole mobiiliystävällinen - kriittinen ongelma modernille SEO:lle', '2026-01-23 10:31:57'),
(40645, 'fi', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Sivu ei ole suojattu (HTTP) - tulisi käyttää HTTPS:ää', '2026-01-23 10:31:57'),
(40646, 'fi', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Sivu palvellaan HTTPS:n kautta - suojattu yhteys', '2026-01-23 10:31:57'),
(40647, 'fi', 'siteauditor', 'Twitter Cards', 'Twitter-kortit', '2026-01-23 10:31:57'),
(40648, 'fi', 'siteauditor', 'URLs from Sitemap', 'URL-osoitteet sivukartasta', '2026-01-23 10:31:57'),
(40649, 'fi', 'siteauditor', 'Yes', 'Kyllä', '2026-01-23 10:31:57'),
(40650, 'ko', 'siteauditor', 'AI Robot Compatibility', 'AI 로봇 호환성', '2026-01-23 10:31:57'),
(40651, 'ko', 'siteauditor', 'Allowed', '허용됨', '2026-01-23 10:31:57'),
(40652, 'ko', 'siteauditor', 'Blocked', '차단됨', '2026-01-23 10:31:57'),
(40653, 'ko', 'siteauditor', 'Canonical URL', '표준 URL', '2026-01-23 10:31:57'),
(40654, 'ko', 'siteauditor', 'Discovered Via', '발견 경로', '2026-01-23 10:31:57'),
(40655, 'ko', 'siteauditor', 'Exclude Extensions', '제외할 확장자', '2026-01-23 10:31:57'),
(40656, 'ko', 'siteauditor', 'Found', '발견됨', '2026-01-23 10:31:57'),
(40657, 'ko', 'siteauditor', 'Has Backlinks', '백링크 있음', '2026-01-23 10:31:57'),
(40658, 'ko', 'siteauditor', 'HTTPS Secure', 'HTTPS 보안', '2026-01-23 10:31:57'),
(40659, 'ko', 'siteauditor', 'Leave blank to use system default', '시스템 기본값을 사용하려면 비워두세요', '2026-01-23 10:31:57'),
(40660, 'ko', 'siteauditor', 'Missing', '없음', '2026-01-23 10:31:57'),
(40661, 'ko', 'siteauditor', 'Mobile Friendly', '모바일 친화적', '2026-01-23 10:31:57'),
(40662, 'ko', 'siteauditor', 'No', '아니오', '2026-01-23 10:31:57'),
(40663, 'ko', 'siteauditor', 'Open Graph Tags', 'Open Graph 태그', '2026-01-23 10:31:57'),
(40664, 'ko', 'siteauditor', 'Pages with modern SEO features', '최신 SEO 기능이 있는 페이지', '2026-01-23 10:31:57'),
(40665, 'ko', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt 허용', '2026-01-23 10:31:57'),
(40666, 'ko', 'siteauditor', 'Robots.txt Status', 'Robots.txt 상태', '2026-01-23 10:31:57'),
(40667, 'ko', 'siteauditor', 'Sitemap Parsing', '사이트맵 분석', '2026-01-23 10:31:57'),
(40668, 'ko', 'siteauditor', 'Sitemap URL', '사이트맵 URL', '2026-01-23 10:31:57'),
(40669, 'ko', 'siteauditor', 'Sitemaps Found', '발견된 사이트맵', '2026-01-23 10:31:57'),
(40670, 'ko', 'siteauditor', 'Social Media', '소셜 미디어', '2026-01-23 10:31:57'),
(40671, 'ko', 'siteauditor', 'The page allows AI robots to crawl and index content', '페이지가 AI 로봇의 크롤링 및 인덱싱을 허용합니다', '2026-01-23 10:31:57'),
(40672, 'ko', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', '페이지가 AI 로봇을 차단합니다 - AI 검색 가시성이 제한될 수 있습니다', '2026-01-23 10:31:57'),
(40673, 'ko', 'siteauditor', 'The page has Open Graph tags for better social media sharing', '페이지에 더 나은 소셜 미디어 공유를 위한 Open Graph 태그가 있습니다', '2026-01-23 10:31:57'),
(40674, 'ko', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', '페이지에 최적화된 트위터 공유를 위한 Twitter Card 태그가 있습니다', '2026-01-23 10:31:57'),
(40675, 'ko', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', '페이지가 robots.txt에서 허용되어 검색 엔진이 크롤링할 수 있습니다', '2026-01-23 10:31:57'),
(40676, 'ko', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', '페이지가 robots.txt에서 차단됨 - 검색 엔진이 이 페이지를 크롤링할 수 없습니다', '2026-01-23 10:31:57'),
(40677, 'ko', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', '페이지에 Open Graph 태그가 없음 - 소셜 미디어 최적화가 제한됩니다', '2026-01-23 10:31:57'),
(40678, 'ko', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', '페이지에 Twitter Card 태그가 없음 - 트위터 최적화가 제한됩니다', '2026-01-23 10:31:57'),
(40679, 'ko', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', '페이지가 적절한 뷰포트 설정으로 모바일 친화적입니다', '2026-01-23 10:31:57'),
(40680, 'ko', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', '페이지가 모바일 친화적이지 않음 - 현대 SEO의 중요한 문제', '2026-01-23 10:31:57'),
(40681, 'ko', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', '페이지가 안전하지 않음 (HTTP) - HTTPS를 사용해야 합니다', '2026-01-23 10:31:57'),
(40682, 'ko', 'siteauditor', 'The page is served over HTTPS - secure connection', '페이지가 HTTPS로 제공됨 - 보안 연결', '2026-01-23 10:31:57'),
(40683, 'ko', 'siteauditor', 'Twitter Cards', '트위터 카드', '2026-01-23 10:31:57'),
(40684, 'ko', 'siteauditor', 'URLs from Sitemap', '사이트맵의 URL', '2026-01-23 10:31:57'),
(40685, 'ko', 'siteauditor', 'Yes', '예', '2026-01-23 10:31:57'),
(40686, 'hi', 'siteauditor', 'AI Robot Compatibility', 'AI रोबोट संगतता', '2026-01-23 10:31:57'),
(40687, 'hi', 'siteauditor', 'Allowed', 'अनुमत', '2026-01-23 10:31:57'),
(40688, 'hi', 'siteauditor', 'Blocked', 'अवरुद्ध', '2026-01-23 10:31:57'),
(40689, 'hi', 'siteauditor', 'Canonical URL', 'कैनोनिकल URL', '2026-01-23 10:31:57'),
(40690, 'hi', 'siteauditor', 'Discovered Via', 'के माध्यम से खोजा गया', '2026-01-23 10:31:57'),
(40691, 'hi', 'siteauditor', 'Exclude Extensions', 'एक्सटेंशन बहिष्कृत करें', '2026-01-23 10:31:57'),
(40692, 'hi', 'siteauditor', 'Found', 'पाया गया', '2026-01-23 10:31:57'),
(40693, 'hi', 'siteauditor', 'Has Backlinks', 'बैकलिंक्स हैं', '2026-01-23 10:31:57'),
(40694, 'hi', 'siteauditor', 'HTTPS Secure', 'HTTPS सुरक्षित', '2026-01-23 10:31:57'),
(40695, 'hi', 'siteauditor', 'Leave blank to use system default', 'सिस्टम डिफ़ॉल्ट का उपयोग करने के लिए खाली छोड़ें', '2026-01-23 10:31:57'),
(40696, 'hi', 'siteauditor', 'Missing', 'गायब', '2026-01-23 10:31:57'),
(40697, 'hi', 'siteauditor', 'Mobile Friendly', 'मोबाइल फ्रेंडली', '2026-01-23 10:31:57'),
(40698, 'hi', 'siteauditor', 'No', 'नहीं', '2026-01-23 10:31:57'),
(40699, 'hi', 'siteauditor', 'Open Graph Tags', 'Open Graph टैग', '2026-01-23 10:31:57'),
(40700, 'hi', 'siteauditor', 'Pages with modern SEO features', 'आधुनिक SEO सुविधाओं वाले पेज', '2026-01-23 10:31:57'),
(40701, 'hi', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt अनुमत', '2026-01-23 10:31:57'),
(40702, 'hi', 'siteauditor', 'Robots.txt Status', 'Robots.txt स्थिति', '2026-01-23 10:31:57'),
(40703, 'hi', 'siteauditor', 'Sitemap Parsing', 'साइटमैप पार्सिंग', '2026-01-23 10:31:57'),
(40704, 'hi', 'siteauditor', 'Sitemap URL', 'साइटमैप URL', '2026-01-23 10:31:57'),
(40705, 'hi', 'siteauditor', 'Sitemaps Found', 'मिले साइटमैप', '2026-01-23 10:31:57'),
(40706, 'hi', 'siteauditor', 'Social Media', 'सोशल मीडिया', '2026-01-23 10:31:57'),
(40707, 'hi', 'siteauditor', 'The page allows AI robots to crawl and index content', 'पेज AI रोबोट को क्रॉल और इंडेक्स करने की अनुमति देता है', '2026-01-23 10:31:57'),
(40708, 'hi', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'पेज AI रोबोट को ब्लॉक करता है - AI खोज दृश्यता सीमित हो सकती है', '2026-01-23 10:31:57'),
(40709, 'hi', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'पेज में बेहतर सोशल मीडिया शेयरिंग के लिए Open Graph टैग हैं', '2026-01-23 10:31:57'),
(40710, 'hi', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'पेज में अनुकूलित ट्विटर शेयरिंग के लिए Twitter Card टैग हैं', '2026-01-23 10:31:57'),
(40711, 'hi', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'पेज robots.txt द्वारा अनुमत है और सर्च इंजन क्रॉल कर सकते हैं', '2026-01-23 10:31:57'),
(40712, 'hi', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'पेज robots.txt द्वारा अवरुद्ध है - सर्च इंजन इस पेज को क्रॉल नहीं कर सकते', '2026-01-23 10:31:57'),
(40713, 'hi', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'पेज में Open Graph टैग नहीं हैं - सोशल मीडिया अनुकूलन सीमित करता है', '2026-01-23 10:31:57'),
(40714, 'hi', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'पेज में Twitter Card टैग नहीं हैं - ट्विटर अनुकूलन सीमित करता है', '2026-01-23 10:31:57'),
(40715, 'hi', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'पेज उचित व्यूपोर्ट कॉन्फ़िगरेशन के साथ मोबाइल फ्रेंडली है', '2026-01-23 10:31:57'),
(40716, 'hi', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'पेज मोबाइल फ्रेंडली नहीं है - आधुनिक SEO के लिए महत्वपूर्ण समस्या', '2026-01-23 10:31:57'),
(40717, 'hi', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'पेज सुरक्षित नहीं है (HTTP) - HTTPS का उपयोग करना चाहिए', '2026-01-23 10:31:57'),
(40718, 'hi', 'siteauditor', 'The page is served over HTTPS - secure connection', 'पेज HTTPS पर सेव किया गया है - सुरक्षित कनेक्शन', '2026-01-23 10:31:57'),
(40719, 'hi', 'siteauditor', 'Twitter Cards', 'ट्विटर कार्ड', '2026-01-23 10:31:57'),
(40720, 'hi', 'siteauditor', 'URLs from Sitemap', 'साइटमैप से URLs', '2026-01-23 10:31:57'),
(40721, 'hi', 'siteauditor', 'Yes', 'हां', '2026-01-23 10:31:57'),
(40722, 'uk', 'siteauditor', 'AI Robot Compatibility', 'Сумісність з AI роботами', '2026-01-23 10:31:57'),
(40723, 'uk', 'siteauditor', 'Allowed', 'Дозволено', '2026-01-23 10:31:57'),
(40724, 'uk', 'siteauditor', 'Blocked', 'Заблоковано', '2026-01-23 10:31:57'),
(40725, 'uk', 'siteauditor', 'Canonical URL', 'Канонічний URL', '2026-01-23 10:31:57'),
(40726, 'uk', 'siteauditor', 'Discovered Via', 'Виявлено через', '2026-01-23 10:31:57'),
(40727, 'uk', 'siteauditor', 'Exclude Extensions', 'Виключити розширення', '2026-01-23 10:31:57'),
(40728, 'uk', 'siteauditor', 'Found', 'Знайдено', '2026-01-23 10:31:57'),
(40729, 'uk', 'siteauditor', 'Has Backlinks', 'Має зворотні посилання', '2026-01-23 10:31:57'),
(40730, 'uk', 'siteauditor', 'HTTPS Secure', 'HTTPS захищено', '2026-01-23 10:31:57'),
(40731, 'uk', 'siteauditor', 'Leave blank to use system default', 'Залиште порожнім для використання системних налаштувань', '2026-01-23 10:31:57'),
(40732, 'uk', 'siteauditor', 'Missing', 'Відсутній', '2026-01-23 10:31:57'),
(40733, 'uk', 'siteauditor', 'Mobile Friendly', 'Мобільна версія', '2026-01-23 10:31:57'),
(40734, 'uk', 'siteauditor', 'No', 'Ні', '2026-01-23 10:31:57'),
(40735, 'uk', 'siteauditor', 'Open Graph Tags', 'Open Graph теги', '2026-01-23 10:31:57'),
(40736, 'uk', 'siteauditor', 'Pages with modern SEO features', 'Сторінки з сучасними SEO функціями', '2026-01-23 10:31:57'),
(40737, 'uk', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt дозволено', '2026-01-23 10:31:57');
INSERT INTO `texts` VALUES
(40738, 'uk', 'siteauditor', 'Robots.txt Status', 'Статус Robots.txt', '2026-01-23 10:31:57'),
(40739, 'uk', 'siteauditor', 'Sitemap Parsing', 'Аналіз карти сайту', '2026-01-23 10:31:57'),
(40740, 'uk', 'siteauditor', 'Sitemap URL', 'URL карти сайту', '2026-01-23 10:31:57'),
(40741, 'uk', 'siteauditor', 'Sitemaps Found', 'Знайдені карти сайту', '2026-01-23 10:31:57'),
(40742, 'uk', 'siteauditor', 'Social Media', 'Соціальні мережі', '2026-01-23 10:31:57'),
(40743, 'uk', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Сторінка дозволяє AI роботам індексувати вміст', '2026-01-23 10:31:57'),
(40744, 'uk', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Сторінка блокує AI роботів - може обмежити видимість у AI пошуку', '2026-01-23 10:31:57'),
(40745, 'uk', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Сторінка має Open Graph теги для кращого поширення в соціальних мережах', '2026-01-23 10:31:57'),
(40746, 'uk', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Сторінка має Twitter Card теги для оптимізованого поширення в Twitter', '2026-01-23 10:31:57'),
(40747, 'uk', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Сторінка дозволена в robots.txt і може бути проіндексована пошуковими системами', '2026-01-23 10:31:57'),
(40748, 'uk', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Сторінка заблокована в robots.txt - пошукові системи не можуть індексувати цю сторінку', '2026-01-23 10:31:57'),
(40749, 'uk', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'На сторінці відсутні Open Graph теги - обмежує оптимізацію для соціальних мереж', '2026-01-23 10:31:57'),
(40750, 'uk', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'На сторінці відсутні Twitter Card теги - обмежує оптимізацію для Twitter', '2026-01-23 10:31:57'),
(40751, 'uk', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Сторінка оптимізована для мобільних пристроїв з правильною конфігурацією viewport', '2026-01-23 10:31:57'),
(40752, 'uk', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Сторінка не оптимізована для мобільних пристроїв - критична проблема для сучасного SEO', '2026-01-23 10:31:57'),
(40753, 'uk', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Сторінка не захищена (HTTP) - повинна використовувати HTTPS', '2026-01-23 10:31:57'),
(40754, 'uk', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Сторінка надається через HTTPS - захищене з''єднання', '2026-01-23 10:31:57'),
(40755, 'uk', 'siteauditor', 'Twitter Cards', 'Twitter картки', '2026-01-23 10:31:57'),
(40756, 'uk', 'siteauditor', 'URLs from Sitemap', 'URL з карти сайту', '2026-01-23 10:31:57'),
(40757, 'uk', 'siteauditor', 'Yes', 'Так', '2026-01-23 10:31:57'),
(40758, 'th', 'siteauditor', 'AI Robot Compatibility', 'ความเข้ากันได้กับ AI Robot', '2026-01-23 10:31:57'),
(40759, 'th', 'siteauditor', 'Allowed', 'อนุญาต', '2026-01-23 10:31:57'),
(40760, 'th', 'siteauditor', 'Blocked', 'ถูกบล็อก', '2026-01-23 10:31:57'),
(40761, 'th', 'siteauditor', 'Canonical URL', 'URL แบบบัญญัติ', '2026-01-23 10:31:57'),
(40762, 'th', 'siteauditor', 'Discovered Via', 'ค้นพบผ่าน', '2026-01-23 10:31:57'),
(40763, 'th', 'siteauditor', 'Exclude Extensions', 'ยกเว้นนามสกุล', '2026-01-23 10:31:57'),
(40764, 'th', 'siteauditor', 'Found', 'พบ', '2026-01-23 10:31:57'),
(40765, 'th', 'siteauditor', 'Has Backlinks', 'มี Backlinks', '2026-01-23 10:31:57'),
(40766, 'th', 'siteauditor', 'HTTPS Secure', 'HTTPS ปลอดภัย', '2026-01-23 10:31:57'),
(40767, 'th', 'siteauditor', 'Leave blank to use system default', 'เว้นว่างเพื่อใช้ค่าเริ่มต้นของระบบ', '2026-01-23 10:31:57'),
(40768, 'th', 'siteauditor', 'Missing', 'ขาดหาย', '2026-01-23 10:31:57'),
(40769, 'th', 'siteauditor', 'Mobile Friendly', 'เหมาะกับมือถือ', '2026-01-23 10:31:57'),
(40770, 'th', 'siteauditor', 'No', 'ไม่', '2026-01-23 10:31:57'),
(40771, 'th', 'siteauditor', 'Open Graph Tags', 'แท็ก Open Graph', '2026-01-23 10:31:57'),
(40772, 'th', 'siteauditor', 'Pages with modern SEO features', 'หน้าที่มีคุณสมบัติ SEO สมัยใหม่', '2026-01-23 10:31:57'),
(40773, 'th', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt อนุญาต', '2026-01-23 10:31:57'),
(40774, 'th', 'siteauditor', 'Robots.txt Status', 'สถานะ Robots.txt', '2026-01-23 10:31:57'),
(40775, 'th', 'siteauditor', 'Sitemap Parsing', 'การแยกวิเคราะห์ Sitemap', '2026-01-23 10:31:57'),
(40776, 'th', 'siteauditor', 'Sitemap URL', 'URL Sitemap', '2026-01-23 10:31:57'),
(40777, 'th', 'siteauditor', 'Sitemaps Found', 'พบ Sitemaps', '2026-01-23 10:31:57'),
(40778, 'th', 'siteauditor', 'Social Media', 'โซเชียลมีเดีย', '2026-01-23 10:31:57'),
(40779, 'th', 'siteauditor', 'The page allows AI robots to crawl and index content', 'หน้านี้อนุญาตให้ AI robots รวบรวมและจัดทำดัชนีเนื้อหา', '2026-01-23 10:31:57'),
(40780, 'th', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'หน้านี้บล็อก AI robots - อาจจำกัดการมองเห็นในการค้นหา AI', '2026-01-23 10:31:57'),
(40781, 'th', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'หน้ามีแท็ก Open Graph สำหรับการแชร์โซเชียลมีเดียที่ดีขึ้น', '2026-01-23 10:31:57'),
(40782, 'th', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'หน้ามีแท็ก Twitter Card สำหรับการแชร์ Twitter ที่เหมาะสม', '2026-01-23 10:31:57'),
(40783, 'th', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'หน้าได้รับอนุญาตจาก robots.txt และสามารถรวบรวมโดยเครื่องมือค้นหา', '2026-01-23 10:31:57'),
(40784, 'th', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'หน้าถูกบล็อกโดย robots.txt - เครื่องมือค้นหาไม่สามารถรวบรวมหน้านี้', '2026-01-23 10:31:57'),
(40785, 'th', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'หน้าขาดแท็ก Open Graph - จำกัดการเพิ่มประสิทธิภาพโซเชียลมีเดีย', '2026-01-23 10:31:57'),
(40786, 'th', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'หน้าขาดแท็ก Twitter Card - จำกัดการเพิ่มประสิทธิภาพ Twitter', '2026-01-23 10:31:57'),
(40787, 'th', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'หน้าเหมาะกับมือถือพร้อมการกำหนดค่า viewport ที่เหมาะสม', '2026-01-23 10:31:57'),
(40788, 'th', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'หน้าไม่เหมาะกับมือถือ - ปัญหาสำคัญสำหรับ SEO สมัยใหม่', '2026-01-23 10:31:57'),
(40789, 'th', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'หน้าไม่ปลอดภัย (HTTP) - ควรใช้ HTTPS', '2026-01-23 10:31:57'),
(40790, 'th', 'siteauditor', 'The page is served over HTTPS - secure connection', 'หน้าให้บริการผ่าน HTTPS - การเชื่อมต่อที่ปลอดภัย', '2026-01-23 10:31:57'),
(40791, 'th', 'siteauditor', 'Twitter Cards', 'Twitter Cards', '2026-01-23 10:31:57'),
(40792, 'th', 'siteauditor', 'URLs from Sitemap', 'URL จาก Sitemap', '2026-01-23 10:31:57'),
(40793, 'th', 'siteauditor', 'Yes', 'ใช่', '2026-01-23 10:31:57'),
(40794, 'sv', 'siteauditor', 'AI Robot Compatibility', 'AI-robotkompatibilitet', '2026-01-23 10:31:57'),
(40795, 'sv', 'siteauditor', 'Allowed', 'Tillåtet', '2026-01-23 10:31:57'),
(40796, 'sv', 'siteauditor', 'Blocked', 'Blockerad', '2026-01-23 10:31:57'),
(40797, 'sv', 'siteauditor', 'Canonical URL', 'Kanonisk URL', '2026-01-23 10:31:57'),
(40798, 'sv', 'siteauditor', 'Check pagerank of pages', 'Kontrollera sidornas PageRank', '2026-01-23 10:31:57'),
(40799, 'sv', 'siteauditor', 'Discovered Via', 'Upptäckt via', '2026-01-23 10:31:57'),
(40800, 'sv', 'siteauditor', 'Exclude Extensions', 'Exkludera filändelser', '2026-01-23 10:31:57'),
(40801, 'sv', 'siteauditor', 'Found', 'Hittad', '2026-01-23 10:31:57'),
(40802, 'sv', 'siteauditor', 'Has Backlinks', 'Har bakåtlänkar', '2026-01-23 10:31:57'),
(40803, 'sv', 'siteauditor', 'HTTPS Secure', 'HTTPS säker', '2026-01-23 10:31:57'),
(40804, 'sv', 'siteauditor', 'Leave blank to use system default', 'Lämna tomt för att använda systemstandard', '2026-01-23 10:31:57'),
(40805, 'sv', 'siteauditor', 'Missing', 'Saknas', '2026-01-23 10:31:57'),
(40806, 'sv', 'siteauditor', 'Mobile Friendly', 'Mobilvänlig', '2026-01-23 10:31:57'),
(40807, 'sv', 'siteauditor', 'No', 'Nej', '2026-01-23 10:31:57'),
(40808, 'sv', 'siteauditor', 'Open Graph Tags', 'Open Graph-taggar', '2026-01-23 10:31:57'),
(40809, 'sv', 'siteauditor', 'Pages with modern SEO features', 'Sidor med moderna SEO-funktioner', '2026-01-23 10:31:57'),
(40810, 'sv', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt tillåtet', '2026-01-23 10:31:57'),
(40811, 'sv', 'siteauditor', 'Robots.txt Status', 'Robots.txt-status', '2026-01-23 10:31:57'),
(40812, 'sv', 'siteauditor', 'Sitemap Parsing', 'Sitemap-analys', '2026-01-23 10:31:57'),
(40813, 'sv', 'siteauditor', 'Sitemap URL', 'Sitemap-URL', '2026-01-23 10:31:57'),
(40814, 'sv', 'siteauditor', 'Sitemaps Found', 'Sitemaps hittade', '2026-01-23 10:31:57'),
(40815, 'sv', 'siteauditor', 'Social Media', 'Sociala medier', '2026-01-23 10:31:57'),
(40816, 'sv', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Sidan tillåter AI-robotar att indexera innehåll', '2026-01-23 10:31:57'),
(40817, 'sv', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Sidan blockerar AI-robotar - kan begränsa synligheten i AI-sökning', '2026-01-23 10:31:57'),
(40818, 'sv', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Sidan har Open Graph-taggar för bättre delning på sociala medier', '2026-01-23 10:31:57'),
(40819, 'sv', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Sidan har Twitter Card-taggar för optimerad Twitter-delning', '2026-01-23 10:31:57'),
(40820, 'sv', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Sidan är tillåten av robots.txt och kan indexeras av sökmotorer', '2026-01-23 10:31:57'),
(40821, 'sv', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Sidan är blockerad av robots.txt - sökmotorer kan inte indexera denna sida', '2026-01-23 10:31:57'),
(40822, 'sv', 'siteauditor', 'The page is having excellent page authority value', 'Sidan har utmärkt sidauktoritetsvärde', '2026-01-23 10:31:57'),
(40823, 'sv', 'siteauditor', 'The page is having good page authority value', 'Sidan har bra sidauktoritetsvärde', '2026-01-23 10:31:57'),
(40824, 'sv', 'siteauditor', 'The page is having poor page authority value', 'Sidan har lågt sidauktoritetsvärde', '2026-01-23 10:31:57'),
(40825, 'sv', 'siteauditor', 'The page is having very good page authority value', 'Sidan har mycket bra sidauktoritetsvärde', '2026-01-23 10:31:57'),
(40826, 'sv', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Sidan saknar Open Graph-taggar - begränsar optimering för sociala medier', '2026-01-23 10:31:57'),
(40827, 'sv', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Sidan saknar Twitter Card-taggar - begränsar Twitter-optimering', '2026-01-23 10:31:57'),
(40828, 'sv', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Sidan är mobilvänlig med korrekt viewport-konfiguration', '2026-01-23 10:31:57'),
(40829, 'sv', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Sidan är inte mobilvänlig - kritiskt problem för modern SEO', '2026-01-23 10:31:57'),
(40830, 'sv', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Sidan är inte säker (HTTP) - bör använda HTTPS', '2026-01-23 10:31:57'),
(40831, 'sv', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Sidan serveras över HTTPS - säker anslutning', '2026-01-23 10:31:57'),
(40832, 'sv', 'siteauditor', 'Twitter Cards', 'Twitter-kort', '2026-01-23 10:31:57'),
(40833, 'sv', 'siteauditor', 'URLs from Sitemap', 'URL:er från sitemap', '2026-01-23 10:31:57'),
(40834, 'sv', 'siteauditor', 'Yes', 'Ja', '2026-01-23 10:31:57'),
(40835, 'hu', 'siteauditor', 'AI Robot Compatibility', 'AI robot kompatibilitás', '2026-01-23 10:31:57'),
(40836, 'hu', 'siteauditor', 'Allowed', 'Engedélyezett', '2026-01-23 10:31:57'),
(40837, 'hu', 'siteauditor', 'Blocked', 'Blokkolt', '2026-01-23 10:31:57'),
(40838, 'hu', 'siteauditor', 'Canonical URL', 'Kanonikus URL', '2026-01-23 10:31:57'),
(40839, 'hu', 'siteauditor', 'Check pagerank of pages', 'Oldalak PageRank ellenőrzése', '2026-01-23 10:31:57'),
(40840, 'hu', 'siteauditor', 'Discovered Via', 'Felfedezve', '2026-01-23 10:31:57'),
(40841, 'hu', 'siteauditor', 'Exclude Extensions', 'Kiterjesztések kizárása', '2026-01-23 10:31:57'),
(40842, 'hu', 'siteauditor', 'Found', 'Találat', '2026-01-23 10:31:57'),
(40843, 'hu', 'siteauditor', 'Has Backlinks', 'Van visszahivatkozás', '2026-01-23 10:31:57'),
(40844, 'hu', 'siteauditor', 'HTTPS Secure', 'HTTPS biztonságos', '2026-01-23 10:31:57'),
(40845, 'hu', 'siteauditor', 'Leave blank to use system default', 'Hagyja üresen a rendszer alapértelmezéséhez', '2026-01-23 10:31:57'),
(40846, 'hu', 'siteauditor', 'Missing', 'Hiányzik', '2026-01-23 10:31:57'),
(40847, 'hu', 'siteauditor', 'Mobile Friendly', 'Mobilbarát', '2026-01-23 10:31:57'),
(40848, 'hu', 'siteauditor', 'No', 'Nem', '2026-01-23 10:31:57'),
(40849, 'hu', 'siteauditor', 'Open Graph Tags', 'Open Graph címkék', '2026-01-23 10:31:57'),
(40850, 'hu', 'siteauditor', 'Pages with modern SEO features', 'Modern SEO funkciókkal rendelkező oldalak', '2026-01-23 10:31:57'),
(40851, 'hu', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt engedélyezett', '2026-01-23 10:31:57'),
(40852, 'hu', 'siteauditor', 'Robots.txt Status', 'Robots.txt állapot', '2026-01-23 10:31:57'),
(40853, 'hu', 'siteauditor', 'Sitemap Parsing', 'Sitemap elemzés', '2026-01-23 10:31:57'),
(40854, 'hu', 'siteauditor', 'Sitemap URL', 'Sitemap URL', '2026-01-23 10:31:57'),
(40855, 'hu', 'siteauditor', 'Sitemaps Found', 'Talált sitemapok', '2026-01-23 10:31:57'),
(40856, 'hu', 'siteauditor', 'Social Media', 'Közösségi média', '2026-01-23 10:31:57'),
(40857, 'hu', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Az oldal engedélyezi az AI robotoknak a tartalom indexelését', '2026-01-23 10:31:57'),
(40858, 'hu', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Az oldal blokkolja az AI robotokat - korlátozhatja az AI keresési láthatóságot', '2026-01-23 10:31:57'),
(40859, 'hu', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Az oldal rendelkezik Open Graph címkékkel a jobb közösségi média megosztáshoz', '2026-01-23 10:31:57'),
(40860, 'hu', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Az oldal rendelkezik Twitter Card címkékkel az optimalizált Twitter megosztáshoz', '2026-01-23 10:31:57'),
(40861, 'hu', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Az oldal engedélyezett a robots.txt-ben és a keresőmotorok indexelhetik', '2026-01-23 10:31:57'),
(40862, 'hu', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Az oldal blokkolva van a robots.txt-ben - a keresőmotorok nem indexelhetik', '2026-01-23 10:31:57'),
(40863, 'hu', 'siteauditor', 'The page is having excellent page authority value', 'Az oldal kiváló oldal tekintély értékkel rendelkezik', '2026-01-23 10:31:57'),
(40864, 'hu', 'siteauditor', 'The page is having good page authority value', 'Az oldal jó oldal tekintély értékkel rendelkezik', '2026-01-23 10:31:57'),
(40865, 'hu', 'siteauditor', 'The page is having poor page authority value', 'Az oldal alacsony oldal tekintély értékkel rendelkezik', '2026-01-23 10:31:57'),
(40866, 'hu', 'siteauditor', 'The page is having very good page authority value', 'Az oldal nagyon jó oldal tekintély értékkel rendelkezik', '2026-01-23 10:31:57'),
(40867, 'hu', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Az oldalról hiányoznak az Open Graph címkék - korlátozza a közösségi média optimalizálást', '2026-01-23 10:31:57'),
(40868, 'hu', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Az oldalról hiányoznak a Twitter Card címkék - korlátozza a Twitter optimalizálást', '2026-01-23 10:31:57'),
(40869, 'hu', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Az oldal mobilbarát megfelelő viewport konfigurációval', '2026-01-23 10:31:57'),
(40870, 'hu', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Az oldal nem mobilbarát - kritikus probléma a modern SEO számára', '2026-01-23 10:31:57'),
(40871, 'hu', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Az oldal nem biztonságos (HTTP) - HTTPS-t kellene használnia', '2026-01-23 10:31:57'),
(40872, 'hu', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Az oldal HTTPS-en keresztül szolgáltatott - biztonságos kapcsolat', '2026-01-23 10:31:57'),
(40873, 'hu', 'siteauditor', 'Twitter Cards', 'Twitter kártyák', '2026-01-23 10:31:57'),
(40874, 'hu', 'siteauditor', 'URLs from Sitemap', 'URL-ek a sitemapból', '2026-01-23 10:31:57'),
(40875, 'hu', 'siteauditor', 'Yes', 'Igen', '2026-01-23 10:31:57'),
(40876, 'id', 'siteauditor', 'AI Robot Compatibility', 'Kompatibilitas Robot AI', '2026-01-23 10:31:57'),
(40877, 'id', 'siteauditor', 'Allowed', 'Diizinkan', '2026-01-23 10:31:57'),
(40878, 'id', 'siteauditor', 'Blocked', 'Diblokir', '2026-01-23 10:31:57'),
(40879, 'id', 'siteauditor', 'Canonical URL', 'URL Kanonik', '2026-01-23 10:31:57'),
(40880, 'id', 'siteauditor', 'Check pagerank of pages', 'Periksa PageRank halaman', '2026-01-23 10:31:57'),
(40881, 'id', 'siteauditor', 'Discovered Via', 'Ditemukan Melalui', '2026-01-23 10:31:57'),
(40882, 'id', 'siteauditor', 'Exclude Extensions', 'Kecualikan Ekstensi', '2026-01-23 10:31:57'),
(40883, 'id', 'siteauditor', 'Found', 'Ditemukan', '2026-01-23 10:31:57'),
(40884, 'id', 'siteauditor', 'Has Backlinks', 'Memiliki Backlink', '2026-01-23 10:31:57'),
(40885, 'id', 'siteauditor', 'HTTPS Secure', 'HTTPS Aman', '2026-01-23 10:31:57'),
(40886, 'id', 'siteauditor', 'Leave blank to use system default', 'Biarkan kosong untuk menggunakan default sistem', '2026-01-23 10:31:57'),
(40887, 'id', 'siteauditor', 'Missing', 'Hilang', '2026-01-23 10:31:57'),
(40888, 'id', 'siteauditor', 'Mobile Friendly', 'Ramah Seluler', '2026-01-23 10:31:57'),
(40889, 'id', 'siteauditor', 'No', 'Tidak', '2026-01-23 10:31:57'),
(40890, 'id', 'siteauditor', 'Open Graph Tags', 'Tag Open Graph', '2026-01-23 10:31:57'),
(40891, 'id', 'siteauditor', 'Pages with modern SEO features', 'Halaman dengan fitur SEO modern', '2026-01-23 10:31:57'),
(40892, 'id', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt Diizinkan', '2026-01-23 10:31:57'),
(40893, 'id', 'siteauditor', 'Robots.txt Status', 'Status Robots.txt', '2026-01-23 10:31:57'),
(40894, 'id', 'siteauditor', 'Sitemap Parsing', 'Parsing Sitemap', '2026-01-23 10:31:57'),
(40895, 'id', 'siteauditor', 'Sitemap URL', 'URL Sitemap', '2026-01-23 10:31:57'),
(40896, 'id', 'siteauditor', 'Sitemaps Found', 'Sitemap Ditemukan', '2026-01-23 10:31:57'),
(40897, 'id', 'siteauditor', 'Social Media', 'Media Sosial', '2026-01-23 10:31:57'),
(40898, 'id', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Halaman mengizinkan robot AI untuk merayapi dan mengindeks konten', '2026-01-23 10:31:57'),
(40899, 'id', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Halaman memblokir robot AI - dapat membatasi visibilitas pencarian AI', '2026-01-23 10:31:57'),
(40900, 'id', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Halaman memiliki tag Open Graph untuk berbagi media sosial yang lebih baik', '2026-01-23 10:31:57'),
(40901, 'id', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Halaman memiliki tag Twitter Card untuk berbagi Twitter yang dioptimalkan', '2026-01-23 10:31:57'),
(40902, 'id', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Halaman diizinkan oleh robots.txt dan dapat dirayapi oleh mesin pencari', '2026-01-23 10:31:57'),
(40903, 'id', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Halaman diblokir oleh robots.txt - mesin pencari tidak dapat merayapi halaman ini', '2026-01-23 10:31:57'),
(40904, 'id', 'siteauditor', 'The page is having excellent page authority value', 'Halaman memiliki nilai otoritas halaman yang sangat baik', '2026-01-23 10:31:57'),
(40905, 'id', 'siteauditor', 'The page is having good page authority value', 'Halaman memiliki nilai otoritas halaman yang baik', '2026-01-23 10:31:57'),
(40906, 'id', 'siteauditor', 'The page is having poor page authority value', 'Halaman memiliki nilai otoritas halaman yang rendah', '2026-01-23 10:31:57'),
(40907, 'id', 'siteauditor', 'The page is having very good page authority value', 'Halaman memiliki nilai otoritas halaman yang sangat bagus', '2026-01-23 10:31:57'),
(40908, 'id', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Halaman tidak memiliki tag Open Graph - membatasi optimasi media sosial', '2026-01-23 10:31:57'),
(40909, 'id', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Halaman tidak memiliki tag Twitter Card - membatasi optimasi Twitter', '2026-01-23 10:31:57'),
(40910, 'id', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Halaman ramah seluler dengan konfigurasi viewport yang tepat', '2026-01-23 10:31:57'),
(40911, 'id', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Halaman tidak ramah seluler - masalah kritis untuk SEO modern', '2026-01-23 10:31:57'),
(40912, 'id', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Halaman tidak aman (HTTP) - harus menggunakan HTTPS', '2026-01-23 10:31:57'),
(40913, 'id', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Halaman dilayani melalui HTTPS - koneksi aman', '2026-01-23 10:31:57'),
(40914, 'id', 'siteauditor', 'Twitter Cards', 'Kartu Twitter', '2026-01-23 10:31:57'),
(40915, 'id', 'siteauditor', 'URLs from Sitemap', 'URL dari Sitemap', '2026-01-23 10:31:57'),
(40916, 'id', 'siteauditor', 'Yes', 'Ya', '2026-01-23 10:31:57'),
(40917, 'ro', 'siteauditor', 'AI Robot Compatibility', 'Compatibilitate robot AI', '2026-01-23 10:31:57'),
(40918, 'ro', 'siteauditor', 'Allowed', 'Permis', '2026-01-23 10:31:57'),
(40919, 'ro', 'siteauditor', 'Blocked', 'Blocat', '2026-01-23 10:31:57'),
(40920, 'ro', 'siteauditor', 'Canonical URL', 'URL canonic', '2026-01-23 10:31:57'),
(40921, 'ro', 'siteauditor', 'Check pagerank of pages', 'Verifică PageRank-ul paginilor', '2026-01-23 10:31:57'),
(40922, 'ro', 'siteauditor', 'Discovered Via', 'Descoperit prin', '2026-01-23 10:31:57'),
(40923, 'ro', 'siteauditor', 'Exclude Extensions', 'Excludere extensii', '2026-01-23 10:31:57'),
(40924, 'ro', 'siteauditor', 'Found', 'Găsit', '2026-01-23 10:31:57'),
(40925, 'ro', 'siteauditor', 'Has Backlinks', 'Are backlink-uri', '2026-01-23 10:31:57'),
(40926, 'ro', 'siteauditor', 'HTTPS Secure', 'HTTPS securizat', '2026-01-23 10:31:57'),
(40927, 'ro', 'siteauditor', 'Leave blank to use system default', 'Lăsați gol pentru valoarea implicită a sistemului', '2026-01-23 10:31:57'),
(40928, 'ro', 'siteauditor', 'Missing', 'Lipsă', '2026-01-23 10:31:57'),
(40929, 'ro', 'siteauditor', 'Mobile Friendly', 'Prietenos cu mobilul', '2026-01-23 10:31:57'),
(40930, 'ro', 'siteauditor', 'No', 'Nu', '2026-01-23 10:31:57'),
(40931, 'ro', 'siteauditor', 'Open Graph Tags', 'Etichete Open Graph', '2026-01-23 10:31:57'),
(40932, 'ro', 'siteauditor', 'Pages with modern SEO features', 'Pagini cu funcții SEO moderne', '2026-01-23 10:31:57'),
(40933, 'ro', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt permis', '2026-01-23 10:31:57'),
(40934, 'ro', 'siteauditor', 'Robots.txt Status', 'Stare Robots.txt', '2026-01-23 10:31:57'),
(40935, 'ro', 'siteauditor', 'Sitemap Parsing', 'Analiză sitemap', '2026-01-23 10:31:57'),
(40936, 'ro', 'siteauditor', 'Sitemap URL', 'URL sitemap', '2026-01-23 10:31:57'),
(40937, 'ro', 'siteauditor', 'Sitemaps Found', 'Sitemaps găsite', '2026-01-23 10:31:57'),
(40938, 'ro', 'siteauditor', 'Social Media', 'Rețele sociale', '2026-01-23 10:31:57'),
(40939, 'ro', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Pagina permite roboților AI să indexeze conținutul', '2026-01-23 10:31:57'),
(40940, 'ro', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Pagina blochează roboții AI - poate limita vizibilitatea în căutarea AI', '2026-01-23 10:31:57'),
(40941, 'ro', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Pagina are etichete Open Graph pentru partajare mai bună pe rețelele sociale', '2026-01-23 10:31:57'),
(40942, 'ro', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Pagina are etichete Twitter Card pentru partajare optimizată pe Twitter', '2026-01-23 10:31:57'),
(40943, 'ro', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Pagina este permisă de robots.txt și poate fi indexată de motoarele de căutare', '2026-01-23 10:31:57'),
(40944, 'ro', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Pagina este blocată de robots.txt - motoarele de căutare nu pot indexa această pagină', '2026-01-23 10:31:57'),
(40945, 'ro', 'siteauditor', 'The page is having excellent page authority value', 'Pagina are o valoare excelentă a autorității paginii', '2026-01-23 10:31:57'),
(40946, 'ro', 'siteauditor', 'The page is having good page authority value', 'Pagina are o valoare bună a autorității paginii', '2026-01-23 10:31:57'),
(40947, 'ro', 'siteauditor', 'The page is having poor page authority value', 'Pagina are o valoare scăzută a autorității paginii', '2026-01-23 10:31:57'),
(40948, 'ro', 'siteauditor', 'The page is having very good page authority value', 'Pagina are o valoare foarte bună a autorității paginii', '2026-01-23 10:31:57'),
(40949, 'ro', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Paginii îi lipsesc etichetele Open Graph - limitează optimizarea rețelelor sociale', '2026-01-23 10:31:57'),
(40950, 'ro', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Paginii îi lipsesc etichetele Twitter Card - limitează optimizarea Twitter', '2026-01-23 10:31:57'),
(40951, 'ro', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Pagina este prietenoasă cu mobilul cu configurație viewport corectă', '2026-01-23 10:31:57'),
(40952, 'ro', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Pagina nu este prietenoasă cu mobilul - problemă critică pentru SEO modern', '2026-01-23 10:31:57'),
(40953, 'ro', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Pagina nu este securizată (HTTP) - ar trebui să folosească HTTPS', '2026-01-23 10:31:57'),
(40954, 'ro', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Pagina este servită prin HTTPS - conexiune securizată', '2026-01-23 10:31:57'),
(40955, 'ro', 'siteauditor', 'Twitter Cards', 'Carduri Twitter', '2026-01-23 10:31:57'),
(40956, 'ro', 'siteauditor', 'URLs from Sitemap', 'URL-uri din sitemap', '2026-01-23 10:31:57'),
(40957, 'ro', 'siteauditor', 'Yes', 'Da', '2026-01-23 10:31:57'),
(40958, 'vn', 'siteauditor', 'AI Robot Compatibility', 'Tương thích robot AI', '2026-01-23 10:31:57'),
(40959, 'vn', 'siteauditor', 'Allowed', 'Được phép', '2026-01-23 10:31:57'),
(40960, 'vn', 'siteauditor', 'Blocked', 'Bị chặn', '2026-01-23 10:31:57'),
(40961, 'vn', 'siteauditor', 'Canonical URL', 'URL chính tắc', '2026-01-23 10:31:57'),
(40962, 'vn', 'siteauditor', 'Check pagerank of pages', 'Kiểm tra PageRank của trang', '2026-01-23 10:31:57'),
(40963, 'vn', 'siteauditor', 'Discovered Via', 'Phát hiện qua', '2026-01-23 10:31:57'),
(40964, 'vn', 'siteauditor', 'Exclude Extensions', 'Loại trừ phần mở rộng', '2026-01-23 10:31:57'),
(40965, 'vn', 'siteauditor', 'Found', 'Tìm thấy', '2026-01-23 10:31:57'),
(40966, 'vn', 'siteauditor', 'Has Backlinks', 'Có backlinks', '2026-01-23 10:31:57'),
(40967, 'vn', 'siteauditor', 'HTTPS Secure', 'HTTPS an toàn', '2026-01-23 10:31:57'),
(40968, 'vn', 'siteauditor', 'Leave blank to use system default', 'Để trống để sử dụng mặc định hệ thống', '2026-01-23 10:31:57'),
(40969, 'vn', 'siteauditor', 'Missing', 'Thiếu', '2026-01-23 10:31:57'),
(40970, 'vn', 'siteauditor', 'Mobile Friendly', 'Thân thiện với di động', '2026-01-23 10:31:57'),
(40971, 'vn', 'siteauditor', 'No', 'Không', '2026-01-23 10:31:57'),
(40972, 'vn', 'siteauditor', 'Open Graph Tags', 'Thẻ Open Graph', '2026-01-23 10:31:57'),
(40973, 'vn', 'siteauditor', 'Pages with modern SEO features', 'Trang có tính năng SEO hiện đại', '2026-01-23 10:31:57'),
(40974, 'vn', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt được phép', '2026-01-23 10:31:57'),
(40975, 'vn', 'siteauditor', 'Robots.txt Status', 'Trạng thái Robots.txt', '2026-01-23 10:31:57'),
(40976, 'vn', 'siteauditor', 'Sitemap Parsing', 'Phân tích Sitemap', '2026-01-23 10:31:57'),
(40977, 'vn', 'siteauditor', 'Sitemap URL', 'URL Sitemap', '2026-01-23 10:31:57'),
(40978, 'vn', 'siteauditor', 'Sitemaps Found', 'Sitemap tìm thấy', '2026-01-23 10:31:57'),
(40979, 'vn', 'siteauditor', 'Social Media', 'Mạng xã hội', '2026-01-23 10:31:57'),
(40980, 'vn', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Trang cho phép robot AI thu thập và lập chỉ mục nội dung', '2026-01-23 10:31:57'),
(40981, 'vn', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Trang chặn robot AI - có thể hạn chế khả năng hiển thị tìm kiếm AI', '2026-01-23 10:31:57'),
(40982, 'vn', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Trang có thẻ Open Graph để chia sẻ mạng xã hội tốt hơn', '2026-01-23 10:31:57'),
(40983, 'vn', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Trang có thẻ Twitter Card để chia sẻ Twitter tối ưu', '2026-01-23 10:31:57'),
(40984, 'vn', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Trang được phép bởi robots.txt và có thể được công cụ tìm kiếm thu thập', '2026-01-23 10:31:57'),
(40985, 'vn', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Trang bị chặn bởi robots.txt - công cụ tìm kiếm không thể thu thập trang này', '2026-01-23 10:31:57'),
(40986, 'vn', 'siteauditor', 'The page is having excellent page authority value', 'Trang có giá trị quyền hạn trang xuất sắc', '2026-01-23 10:31:57'),
(40987, 'vn', 'siteauditor', 'The page is having good page authority value', 'Trang có giá trị quyền hạn trang tốt', '2026-01-23 10:31:57'),
(40988, 'vn', 'siteauditor', 'The page is having poor page authority value', 'Trang có giá trị quyền hạn trang thấp', '2026-01-23 10:31:57'),
(40989, 'vn', 'siteauditor', 'The page is having very good page authority value', 'Trang có giá trị quyền hạn trang rất tốt', '2026-01-23 10:31:57'),
(40990, 'vn', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Trang thiếu thẻ Open Graph - hạn chế tối ưu hóa mạng xã hội', '2026-01-23 10:31:57'),
(40991, 'vn', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Trang thiếu thẻ Twitter Card - hạn chế tối ưu hóa Twitter', '2026-01-23 10:31:57'),
(40992, 'vn', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Trang thân thiện với di động với cấu hình viewport phù hợp', '2026-01-23 10:31:57'),
(40993, 'vn', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Trang không thân thiện với di động - vấn đề nghiêm trọng cho SEO hiện đại', '2026-01-23 10:31:57'),
(40994, 'vn', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Trang không an toàn (HTTP) - nên sử dụng HTTPS', '2026-01-23 10:31:57'),
(40995, 'vn', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Trang được phục vụ qua HTTPS - kết nối an toàn', '2026-01-23 10:31:57'),
(40996, 'vn', 'siteauditor', 'Twitter Cards', 'Thẻ Twitter', '2026-01-23 10:31:57'),
(40997, 'vn', 'siteauditor', 'URLs from Sitemap', 'URL từ Sitemap', '2026-01-23 10:31:57'),
(40998, 'vn', 'siteauditor', 'Yes', 'Có', '2026-01-23 10:31:57'),
(40999, 'bs', 'siteauditor', 'AI Robot Compatibility', 'Kompatibilnost sa AI robotima', '2026-01-23 10:31:57'),
(41000, 'bs', 'siteauditor', 'Allowed', 'Dozvoljeno', '2026-01-23 10:31:57'),
(41001, 'bs', 'siteauditor', 'Blocked', 'Blokirano', '2026-01-23 10:31:57'),
(41002, 'bs', 'siteauditor', 'Canonical URL', 'Kanonski URL', '2026-01-23 10:31:57'),
(41003, 'bs', 'siteauditor', 'Discovered Via', 'Otkriveno putem', '2026-01-23 10:31:57'),
(41004, 'bs', 'siteauditor', 'Exclude Extensions', 'Isključi ekstenzije', '2026-01-23 10:31:57'),
(41005, 'bs', 'siteauditor', 'Found', 'Pronađeno', '2026-01-23 10:31:57'),
(41006, 'bs', 'siteauditor', 'Has Backlinks', 'Ima povratne linkove', '2026-01-23 10:31:57'),
(41007, 'bs', 'siteauditor', 'HTTPS Secure', 'HTTPS siguran', '2026-01-23 10:31:57'),
(41008, 'bs', 'siteauditor', 'Leave blank to use system default', 'Ostavite prazno za sistemsku zadanu vrijednost', '2026-01-23 10:31:57'),
(41009, 'bs', 'siteauditor', 'Missing', 'Nedostaje', '2026-01-23 10:31:57'),
(41010, 'bs', 'siteauditor', 'Mobile Friendly', 'Prilagođeno mobilnim uređajima', '2026-01-23 10:31:57'),
(41011, 'bs', 'siteauditor', 'No', 'Ne', '2026-01-23 10:31:57'),
(41012, 'bs', 'siteauditor', 'Open Graph Tags', 'Open Graph oznake', '2026-01-23 10:31:57'),
(41013, 'bs', 'siteauditor', 'Pages with modern SEO features', 'Stranice sa modernim SEO funkcijama', '2026-01-23 10:31:57'),
(41014, 'bs', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt dozvoljeno', '2026-01-23 10:31:57'),
(41015, 'bs', 'siteauditor', 'Robots.txt Status', 'Status Robots.txt', '2026-01-23 10:31:57'),
(41016, 'bs', 'siteauditor', 'Sitemap Parsing', 'Analiza mape stranice', '2026-01-23 10:31:57'),
(41017, 'bs', 'siteauditor', 'Sitemap URL', 'URL mape stranice', '2026-01-23 10:31:57'),
(41018, 'bs', 'siteauditor', 'Sitemaps Found', 'Pronađene mape stranice', '2026-01-23 10:31:57'),
(41019, 'bs', 'siteauditor', 'Social Media', 'Društvene mreže', '2026-01-23 10:31:57'),
(41020, 'bs', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Stranica dozvoljava AI robotima indeksiranje sadržaja', '2026-01-23 10:31:57'),
(41021, 'bs', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Stranica blokira AI robote - može ograničiti vidljivost u AI pretrazi', '2026-01-23 10:31:57'),
(41022, 'bs', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Stranica ima Open Graph oznake za bolje dijeljenje na društvenim mrežama', '2026-01-23 10:31:57'),
(41023, 'bs', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Stranica ima Twitter Card oznake za optimizirano dijeljenje na Twitteru', '2026-01-23 10:31:57'),
(41024, 'bs', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Stranica je dozvoljena u robots.txt i može biti indeksirana od pretraživača', '2026-01-23 10:31:57'),
(41025, 'bs', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Stranica je blokirana u robots.txt - pretraživači ne mogu indeksirati ovu stranicu', '2026-01-23 10:31:57'),
(41026, 'bs', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Stranici nedostaju Open Graph oznake - ograničava optimizaciju za društvene mreže', '2026-01-23 10:31:57'),
(41027, 'bs', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Stranici nedostaju Twitter Card oznake - ograničava optimizaciju za Twitter', '2026-01-23 10:31:57'),
(41028, 'bs', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Stranica je prilagođena mobilnim uređajima sa ispravnom konfiguracijom viewporta', '2026-01-23 10:31:57'),
(41029, 'bs', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Stranica nije prilagođena mobilnim uređajima - kritičan problem za moderni SEO', '2026-01-23 10:31:57'),
(41030, 'bs', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Stranica nije sigurna (HTTP) - treba koristiti HTTPS', '2026-01-23 10:31:57'),
(41031, 'bs', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Stranica se servira preko HTTPS - sigurna veza', '2026-01-23 10:31:57'),
(41032, 'bs', 'siteauditor', 'Twitter Cards', 'Twitter kartice', '2026-01-23 10:31:57'),
(41033, 'bs', 'siteauditor', 'URLs from Sitemap', 'URL adrese iz mape stranice', '2026-01-23 10:31:57'),
(41034, 'bs', 'siteauditor', 'Yes', 'Da', '2026-01-23 10:31:57'),
(41035, 'ca', 'siteauditor', 'AI Robot Compatibility', 'Compatibilitat amb robots IA', '2026-01-23 10:31:57'),
(41036, 'ca', 'siteauditor', 'Allowed', 'Permès', '2026-01-23 10:31:57'),
(41037, 'ca', 'siteauditor', 'Blocked', 'Bloquejat', '2026-01-23 10:31:57'),
(41038, 'ca', 'siteauditor', 'Canonical URL', 'URL canònic', '2026-01-23 10:31:57'),
(41039, 'ca', 'siteauditor', 'Discovered Via', 'Descobert via', '2026-01-23 10:31:57'),
(41040, 'ca', 'siteauditor', 'Exclude Extensions', 'Excloure extensions', '2026-01-23 10:31:57'),
(41041, 'ca', 'siteauditor', 'Found', 'Trobat', '2026-01-23 10:31:57'),
(41042, 'ca', 'siteauditor', 'Has Backlinks', 'Té backlinks', '2026-01-23 10:31:57'),
(41043, 'ca', 'siteauditor', 'HTTPS Secure', 'HTTPS segur', '2026-01-23 10:31:57'),
(41044, 'ca', 'siteauditor', 'Leave blank to use system default', 'Deixeu en blanc per utilitzar el valor per defecte', '2026-01-23 10:31:57'),
(41045, 'ca', 'siteauditor', 'Missing', 'Falta', '2026-01-23 10:31:57'),
(41046, 'ca', 'siteauditor', 'Mobile Friendly', 'Compatible amb mòbils', '2026-01-23 10:31:57'),
(41047, 'ca', 'siteauditor', 'No', 'No', '2026-01-23 10:31:57'),
(41048, 'ca', 'siteauditor', 'Open Graph Tags', 'Etiquetes Open Graph', '2026-01-23 10:31:57'),
(41049, 'ca', 'siteauditor', 'Pages with modern SEO features', 'Pàgines amb funcions SEO modernes', '2026-01-23 10:31:57'),
(41050, 'ca', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt permès', '2026-01-23 10:31:57'),
(41051, 'ca', 'siteauditor', 'Robots.txt Status', 'Estat Robots.txt', '2026-01-23 10:31:57'),
(41052, 'ca', 'siteauditor', 'Sitemap Parsing', 'Anàlisi del sitemap', '2026-01-23 10:31:57'),
(41053, 'ca', 'siteauditor', 'Sitemap URL', 'URL del sitemap', '2026-01-23 10:31:57'),
(41054, 'ca', 'siteauditor', 'Sitemaps Found', 'Sitemaps trobats', '2026-01-23 10:31:57'),
(41055, 'ca', 'siteauditor', 'Social Media', 'Xarxes socials', '2026-01-23 10:31:57'),
(41056, 'ca', 'siteauditor', 'The page allows AI robots to crawl and index content', 'La pàgina permet als robots IA rastrejar i indexar contingut', '2026-01-23 10:31:57'),
(41057, 'ca', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'La pàgina bloqueja robots IA - pot limitar la visibilitat en cerques IA', '2026-01-23 10:31:57'),
(41058, 'ca', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'La pàgina té etiquetes Open Graph per compartir millor a xarxes socials', '2026-01-23 10:31:57'),
(41059, 'ca', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'La pàgina té etiquetes Twitter Card per compartir optimitzat a Twitter', '2026-01-23 10:31:57'),
(41060, 'ca', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'La pàgina és permesa per robots.txt i pot ser rastrejada pels cercadors', '2026-01-23 10:31:57'),
(41061, 'ca', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'La pàgina està bloquejada per robots.txt - els cercadors no poden rastrejar', '2026-01-23 10:31:57'),
(41062, 'ca', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'A la pàgina li falten etiquetes Open Graph - limita l''optimització per xarxes socials', '2026-01-23 10:31:57'),
(41063, 'ca', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'A la pàgina li falten etiquetes Twitter Card - limita l''optimització per Twitter', '2026-01-23 10:31:57'),
(41064, 'ca', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'La pàgina és compatible amb mòbils amb configuració viewport adequada', '2026-01-23 10:31:57'),
(41065, 'ca', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'La pàgina no és compatible amb mòbils - problema crític per al SEO modern', '2026-01-23 10:31:57'),
(41066, 'ca', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'La pàgina no és segura (HTTP) - hauria d''utilitzar HTTPS', '2026-01-23 10:31:57'),
(41067, 'ca', 'siteauditor', 'The page is served over HTTPS - secure connection', 'La pàgina es serveix per HTTPS - connexió segura', '2026-01-23 10:31:57'),
(41068, 'ca', 'siteauditor', 'Twitter Cards', 'Targetes Twitter', '2026-01-23 10:31:57'),
(41069, 'ca', 'siteauditor', 'URLs from Sitemap', 'URLs del sitemap', '2026-01-23 10:31:57'),
(41070, 'ca', 'siteauditor', 'Yes', 'Sí', '2026-01-23 10:31:57'),
(41071, 'hr', 'siteauditor', 'AI Robot Compatibility', 'Kompatibilnost s AI robotima', '2026-01-23 10:31:57'),
(41072, 'hr', 'siteauditor', 'Allowed', 'Dopušteno', '2026-01-23 10:31:57'),
(41073, 'hr', 'siteauditor', 'Blocked', 'Blokirano', '2026-01-23 10:31:57'),
(41074, 'hr', 'siteauditor', 'Canonical URL', 'Kanonski URL', '2026-01-23 10:31:57'),
(41075, 'hr', 'siteauditor', 'Discovered Via', 'Otkriveno putem', '2026-01-23 10:31:57'),
(41076, 'hr', 'siteauditor', 'Exclude Extensions', 'Isključi ekstenzije', '2026-01-23 10:31:57'),
(41077, 'hr', 'siteauditor', 'Found', 'Pronađeno', '2026-01-23 10:31:57'),
(41078, 'hr', 'siteauditor', 'Has Backlinks', 'Ima povratne linkove', '2026-01-23 10:31:57'),
(41079, 'hr', 'siteauditor', 'HTTPS Secure', 'HTTPS siguran', '2026-01-23 10:31:57'),
(41080, 'hr', 'siteauditor', 'Leave blank to use system default', 'Ostavite prazno za zadanu vrijednost sustava', '2026-01-23 10:31:57'),
(41081, 'hr', 'siteauditor', 'Missing', 'Nedostaje', '2026-01-23 10:31:57'),
(41082, 'hr', 'siteauditor', 'Mobile Friendly', 'Prilagođeno mobilnim uređajima', '2026-01-23 10:31:57'),
(41083, 'hr', 'siteauditor', 'No', 'Ne', '2026-01-23 10:31:57'),
(41084, 'hr', 'siteauditor', 'Open Graph Tags', 'Open Graph oznake', '2026-01-23 10:31:57'),
(41085, 'hr', 'siteauditor', 'Pages with modern SEO features', 'Stranice s modernim SEO funkcijama', '2026-01-23 10:31:57'),
(41086, 'hr', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt dopušteno', '2026-01-23 10:31:57'),
(41087, 'hr', 'siteauditor', 'Robots.txt Status', 'Status Robots.txt', '2026-01-23 10:31:57'),
(41088, 'hr', 'siteauditor', 'Sitemap Parsing', 'Analiza mape stranice', '2026-01-23 10:31:57'),
(41089, 'hr', 'siteauditor', 'Sitemap URL', 'URL mape stranice', '2026-01-23 10:31:57'),
(41090, 'hr', 'siteauditor', 'Sitemaps Found', 'Pronađene mape stranice', '2026-01-23 10:31:57'),
(41091, 'hr', 'siteauditor', 'Social Media', 'Društvene mreže', '2026-01-23 10:31:57'),
(41092, 'hr', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Stranica dopušta AI robotima indeksiranje sadržaja', '2026-01-23 10:31:57'),
(41093, 'hr', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Stranica blokira AI robote - može ograničiti vidljivost u AI pretrazi', '2026-01-23 10:31:57'),
(41094, 'hr', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Stranica ima Open Graph oznake za bolje dijeljenje na društvenim mrežama', '2026-01-23 10:31:57'),
(41095, 'hr', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Stranica ima Twitter Card oznake za optimizirano dijeljenje na Twitteru', '2026-01-23 10:31:57'),
(41096, 'hr', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Stranica je dopuštena u robots.txt i može biti indeksirana od tražilica', '2026-01-23 10:31:57'),
(41097, 'hr', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Stranica je blokirana u robots.txt - tražilice ne mogu indeksirati ovu stranicu', '2026-01-23 10:31:57'),
(41098, 'hr', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Stranici nedostaju Open Graph oznake - ograničava optimizaciju za društvene mreže', '2026-01-23 10:31:57'),
(41099, 'hr', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Stranici nedostaju Twitter Card oznake - ograničava optimizaciju za Twitter', '2026-01-23 10:31:57'),
(41100, 'hr', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Stranica je prilagođena mobilnim uređajima s ispravnom konfiguracijom viewporta', '2026-01-23 10:31:57'),
(41101, 'hr', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Stranica nije prilagođena mobilnim uređajima - kritičan problem za moderni SEO', '2026-01-23 10:31:57'),
(41102, 'hr', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Stranica nije sigurna (HTTP) - treba koristiti HTTPS', '2026-01-23 10:31:57'),
(41103, 'hr', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Stranica se servira preko HTTPS - sigurna veza', '2026-01-23 10:31:57'),
(41104, 'hr', 'siteauditor', 'Twitter Cards', 'Twitter kartice', '2026-01-23 10:31:57'),
(41105, 'hr', 'siteauditor', 'URLs from Sitemap', 'URL adrese iz mape stranice', '2026-01-23 10:31:57'),
(41106, 'hr', 'siteauditor', 'Yes', 'Da', '2026-01-23 10:31:57'),
(41107, 'hy', 'siteauditor', 'AI Robot Compatibility', 'AI delays delays compatibility', '2026-01-23 10:31:57'),
(41108, 'hy', 'siteauditor', 'Allowed', 'Թdelays delays', '2026-01-23 10:31:57'),
(41109, 'hy', 'siteauditor', 'Blocked', 'Արdelays delays', '2026-01-23 10:31:57'),
(41110, 'hy', 'siteauditor', 'Canonical URL', 'Կdelays delays URL', '2026-01-23 10:31:57'),
(41111, 'hy', 'siteauditor', 'Discovered Via', 'Հdelays delays delays', '2026-01-23 10:31:57'),
(41112, 'hy', 'siteauditor', 'Exclude Extensions', 'Բdelays delays delays', '2026-01-23 10:31:57'),
(41113, 'hy', 'siteauditor', 'Found', 'Գdelays delays', '2026-01-23 10:31:57'),
(41114, 'hy', 'siteauditor', 'Has Backlinks', 'Delays delays delays', '2026-01-23 10:31:57'),
(41115, 'hy', 'siteauditor', 'HTTPS Secure', 'HTTPS delays delays', '2026-01-23 10:31:57'),
(41116, 'hy', 'siteauditor', 'Leave blank to use system default', 'Դdelays delays delays delays', '2026-01-23 10:31:57'),
(41117, 'hy', 'siteauditor', 'Missing', 'Բdelays delays', '2026-01-23 10:31:57'),
(41118, 'hy', 'siteauditor', 'Mobile Friendly', 'Մdelays delays delays', '2026-01-23 10:31:57'),
(41119, 'hy', 'siteauditor', 'No', ' Delays', '2026-01-23 10:31:57'),
(41120, 'hy', 'siteauditor', 'Open Graph Tags', 'Open Graph delays delays', '2026-01-23 10:31:57');
INSERT INTO `texts` VALUES
(41121, 'hy', 'siteauditor', 'Pages with modern SEO features', 'Delays delays delays SEO delays delays', '2026-01-23 10:31:57'),
(41122, 'hy', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt delays delays', '2026-01-23 10:31:57'),
(41123, 'hy', 'siteauditor', 'Robots.txt Status', 'Robots.txt delays delays', '2026-01-23 10:31:57'),
(41124, 'hy', 'siteauditor', 'Sitemap Parsing', 'Sitemap delays delays', '2026-01-23 10:31:57'),
(41125, 'hy', 'siteauditor', 'Sitemap URL', 'Sitemap URL', '2026-01-23 10:31:57'),
(41126, 'hy', 'siteauditor', 'Sitemaps Found', 'Sitemap-delays delays delays', '2026-01-23 10:31:57'),
(41127, 'hy', 'siteauditor', 'Social Media', 'Delays delays delays', '2026-01-23 10:31:57'),
(41128, 'hy', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Էdelays delays AI delays delays delays delays', '2026-01-23 10:31:57'),
(41129, 'hy', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Էdelays delays AI delays delays - delays delays AI delays delays', '2026-01-23 10:31:57'),
(41130, 'hy', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Էdelays delays Open Graph delays delays delays delays delays', '2026-01-23 10:31:57'),
(41131, 'hy', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Էdelays delays Twitter Card delays delays delays delays', '2026-01-23 10:31:57'),
(41132, 'hy', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Էdelays delays robots.txt-delays delays delays delays delays', '2026-01-23 10:31:57'),
(41133, 'hy', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Էdelays delays robots.txt-delays delays delays - delays delays delays delays', '2026-01-23 10:31:57'),
(41134, 'hy', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Էdelays delays Open Graph delays delays - delays delays delays', '2026-01-23 10:31:57'),
(41135, 'hy', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Էdelays delays Twitter Card delays delays - delays Twitter delays', '2026-01-23 10:31:57'),
(41136, 'hy', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Էdelays delays delays delays delays viewport delays', '2026-01-23 10:31:57'),
(41137, 'hy', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Էdelays delays delays delays delays - delays delays SEO delays', '2026-01-23 10:31:57'),
(41138, 'hy', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Էdelays delays delays (HTTP) - delays delays HTTPS', '2026-01-23 10:31:57'),
(41139, 'hy', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Էdelays delays HTTPS-delays delays - delays delays', '2026-01-23 10:31:57'),
(41140, 'hy', 'siteauditor', 'Twitter Cards', 'Twitter delays delays', '2026-01-23 10:31:57'),
(41141, 'hy', 'siteauditor', 'URLs from Sitemap', 'URL-delays Sitemap-delays', '2026-01-23 10:31:57'),
(41142, 'hy', 'siteauditor', 'Yes', 'Այdelays', '2026-01-23 10:31:57'),
(41143, 'mk', 'siteauditor', 'AI Robot Compatibility', 'Компатибилност со AI роботи', '2026-01-23 10:31:57'),
(41144, 'mk', 'siteauditor', 'Allowed', 'Дозволено', '2026-01-23 10:31:57'),
(41145, 'mk', 'siteauditor', 'Blocked', 'Блокирано', '2026-01-23 10:31:57'),
(41146, 'mk', 'siteauditor', 'Canonical URL', 'Канонски URL', '2026-01-23 10:31:57'),
(41147, 'mk', 'siteauditor', 'Discovered Via', 'Откриено преку', '2026-01-23 10:31:57'),
(41148, 'mk', 'siteauditor', 'Exclude Extensions', 'Исклучи екстензии', '2026-01-23 10:31:57'),
(41149, 'mk', 'siteauditor', 'Found', 'Пронајдено', '2026-01-23 10:31:57'),
(41150, 'mk', 'siteauditor', 'Has Backlinks', 'Има повратни линкови', '2026-01-23 10:31:57'),
(41151, 'mk', 'siteauditor', 'HTTPS Secure', 'HTTPS безбедно', '2026-01-23 10:31:57'),
(41152, 'mk', 'siteauditor', 'Leave blank to use system default', 'Оставете празно за системска вредност', '2026-01-23 10:31:57'),
(41153, 'mk', 'siteauditor', 'Missing', 'Недостасува', '2026-01-23 10:31:57'),
(41154, 'mk', 'siteauditor', 'Mobile Friendly', 'Прилагодено за мобилни', '2026-01-23 10:31:57'),
(41155, 'mk', 'siteauditor', 'No', 'Не', '2026-01-23 10:31:57'),
(41156, 'mk', 'siteauditor', 'Open Graph Tags', 'Open Graph ознаки', '2026-01-23 10:31:57'),
(41157, 'mk', 'siteauditor', 'Pages with modern SEO features', 'Страници со модерни SEO функции', '2026-01-23 10:31:57'),
(41158, 'mk', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt дозволено', '2026-01-23 10:31:57'),
(41159, 'mk', 'siteauditor', 'Robots.txt Status', 'Статус Robots.txt', '2026-01-23 10:31:57'),
(41160, 'mk', 'siteauditor', 'Sitemap Parsing', 'Анализа на sitemap', '2026-01-23 10:31:57'),
(41161, 'mk', 'siteauditor', 'Sitemap URL', 'URL на sitemap', '2026-01-23 10:31:57'),
(41162, 'mk', 'siteauditor', 'Sitemaps Found', 'Пронајдени sitemaps', '2026-01-23 10:31:57'),
(41163, 'mk', 'siteauditor', 'Social Media', 'Социјални мрежи', '2026-01-23 10:31:57'),
(41164, 'mk', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Страницата дозволува AI роботи да индексираат содржина', '2026-01-23 10:31:57'),
(41165, 'mk', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Страницата блокира AI роботи - може да ја ограничи видливоста во AI пребарување', '2026-01-23 10:31:57'),
(41166, 'mk', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Страницата има Open Graph ознаки за подобро споделување на социјалните мрежи', '2026-01-23 10:31:57'),
(41167, 'mk', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Страницата има Twitter Card ознаки за оптимизирано споделување на Twitter', '2026-01-23 10:31:57'),
(41168, 'mk', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Страницата е дозволена во robots.txt и може да биде индексирана од пребарувачи', '2026-01-23 10:31:57'),
(41169, 'mk', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Страницата е блокирана во robots.txt - пребарувачите не можат да ја индексираат', '2026-01-23 10:31:57'),
(41170, 'mk', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'На страницата недостасуваат Open Graph ознаки - ја ограничува оптимизацијата', '2026-01-23 10:31:57'),
(41171, 'mk', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'На страницата недостасуваат Twitter Card ознаки - ја ограничува Twitter оптимизацијата', '2026-01-23 10:31:57'),
(41172, 'mk', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Страницата е прилагодена за мобилни со правилна viewport конфигурација', '2026-01-23 10:31:57'),
(41173, 'mk', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Страницата не е прилагодена за мобилни - критичен проблем за модерен SEO', '2026-01-23 10:31:57'),
(41174, 'mk', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Страницата не е безбедна (HTTP) - треба да користи HTTPS', '2026-01-23 10:31:57'),
(41175, 'mk', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Страницата се сервира преку HTTPS - безбедна врска', '2026-01-23 10:31:57'),
(41176, 'mk', 'siteauditor', 'Twitter Cards', 'Twitter картички', '2026-01-23 10:31:57'),
(41177, 'mk', 'siteauditor', 'URLs from Sitemap', 'URL адреси од sitemap', '2026-01-23 10:31:57'),
(41178, 'mk', 'siteauditor', 'Yes', 'Да', '2026-01-23 10:31:57'),
(41179, 'no', 'siteauditor', 'AI Robot Compatibility', 'AI-robotkompatibilitet', '2026-01-23 10:31:57'),
(41180, 'no', 'siteauditor', 'Allowed', 'Tillatt', '2026-01-23 10:31:57'),
(41181, 'no', 'siteauditor', 'Blocked', 'Blokkert', '2026-01-23 10:31:57'),
(41182, 'no', 'siteauditor', 'Canonical URL', 'Kanonisk URL', '2026-01-23 10:31:57'),
(41183, 'no', 'siteauditor', 'Discovered Via', 'Oppdaget via', '2026-01-23 10:31:57'),
(41184, 'no', 'siteauditor', 'Exclude Extensions', 'Ekskluder utvidelser', '2026-01-23 10:31:57'),
(41185, 'no', 'siteauditor', 'Found', 'Funnet', '2026-01-23 10:31:57'),
(41186, 'no', 'siteauditor', 'Has Backlinks', 'Har tilbakekoblinger', '2026-01-23 10:31:57'),
(41187, 'no', 'siteauditor', 'HTTPS Secure', 'HTTPS sikker', '2026-01-23 10:31:57'),
(41188, 'no', 'siteauditor', 'Leave blank to use system default', 'La stå tomt for å bruke systemstandard', '2026-01-23 10:31:57'),
(41189, 'no', 'siteauditor', 'Missing', 'Mangler', '2026-01-23 10:31:57'),
(41190, 'no', 'siteauditor', 'Mobile Friendly', 'Mobilvennlig', '2026-01-23 10:31:57'),
(41191, 'no', 'siteauditor', 'No', 'Nei', '2026-01-23 10:31:57'),
(41192, 'no', 'siteauditor', 'Open Graph Tags', 'Open Graph-tagger', '2026-01-23 10:31:57'),
(41193, 'no', 'siteauditor', 'Pages with modern SEO features', 'Sider med moderne SEO-funksjoner', '2026-01-23 10:31:57'),
(41194, 'no', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt tillatt', '2026-01-23 10:31:57'),
(41195, 'no', 'siteauditor', 'Robots.txt Status', 'Robots.txt-status', '2026-01-23 10:31:57'),
(41196, 'no', 'siteauditor', 'Sitemap Parsing', 'Sitemap-analyse', '2026-01-23 10:31:57'),
(41197, 'no', 'siteauditor', 'Sitemap URL', 'Sitemap-URL', '2026-01-23 10:31:57'),
(41198, 'no', 'siteauditor', 'Sitemaps Found', 'Sitemaps funnet', '2026-01-23 10:31:57'),
(41199, 'no', 'siteauditor', 'Social Media', 'Sosiale medier', '2026-01-23 10:31:57'),
(41200, 'no', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Siden tillater AI-roboter å indeksere innhold', '2026-01-23 10:31:57'),
(41201, 'no', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Siden blokkerer AI-roboter - kan begrense synlighet i AI-søk', '2026-01-23 10:31:57'),
(41202, 'no', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Siden har Open Graph-tagger for bedre deling på sosiale medier', '2026-01-23 10:31:57'),
(41203, 'no', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Siden har Twitter Card-tagger for optimalisert Twitter-deling', '2026-01-23 10:31:57'),
(41204, 'no', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Siden er tillatt av robots.txt og kan indekseres av søkemotorer', '2026-01-23 10:31:57'),
(41205, 'no', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Siden er blokkert av robots.txt - søkemotorer kan ikke indeksere denne siden', '2026-01-23 10:31:57'),
(41206, 'no', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Siden mangler Open Graph-tagger - begrenser optimalisering for sosiale medier', '2026-01-23 10:31:57'),
(41207, 'no', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Siden mangler Twitter Card-tagger - begrenser Twitter-optimalisering', '2026-01-23 10:31:57'),
(41208, 'no', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Siden er mobilvennlig med riktig viewport-konfigurasjon', '2026-01-23 10:31:57'),
(41209, 'no', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Siden er ikke mobilvennlig - kritisk problem for moderne SEO', '2026-01-23 10:31:57'),
(41210, 'no', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Siden er ikke sikker (HTTP) - bør bruke HTTPS', '2026-01-23 10:31:57'),
(41211, 'no', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Siden serveres over HTTPS - sikker tilkobling', '2026-01-23 10:31:57'),
(41212, 'no', 'siteauditor', 'Twitter Cards', 'Twitter-kort', '2026-01-23 10:31:57'),
(41213, 'no', 'siteauditor', 'URLs from Sitemap', 'URLer fra sitemap', '2026-01-23 10:31:57'),
(41214, 'no', 'siteauditor', 'Yes', 'Ja', '2026-01-23 10:31:57'),
(41215, 'sq', 'siteauditor', 'AI Robot Compatibility', 'Përputhshmëria me robotët AI', '2026-01-23 10:31:57'),
(41216, 'sq', 'siteauditor', 'Allowed', 'E lejuar', '2026-01-23 10:31:57'),
(41217, 'sq', 'siteauditor', 'Blocked', 'E bllokuar', '2026-01-23 10:31:57'),
(41218, 'sq', 'siteauditor', 'Canonical URL', 'URL kanonike', '2026-01-23 10:31:57'),
(41219, 'sq', 'siteauditor', 'Discovered Via', 'Zbuluar përmes', '2026-01-23 10:31:57'),
(41220, 'sq', 'siteauditor', 'Exclude Extensions', 'Përjashto shtesat', '2026-01-23 10:31:57'),
(41221, 'sq', 'siteauditor', 'Found', 'Gjetur', '2026-01-23 10:31:57'),
(41222, 'sq', 'siteauditor', 'Has Backlinks', 'Ka backlinks', '2026-01-23 10:31:57'),
(41223, 'sq', 'siteauditor', 'HTTPS Secure', 'HTTPS i sigurt', '2026-01-23 10:31:57'),
(41224, 'sq', 'siteauditor', 'Leave blank to use system default', 'Lëreni bosh për të përdorur parazgjedhjen e sistemit', '2026-01-23 10:31:57'),
(41225, 'sq', 'siteauditor', 'Missing', 'Mungon', '2026-01-23 10:31:57'),
(41226, 'sq', 'siteauditor', 'Mobile Friendly', 'I përshtatshëm për celular', '2026-01-23 10:31:57'),
(41227, 'sq', 'siteauditor', 'No', 'Jo', '2026-01-23 10:31:57'),
(41228, 'sq', 'siteauditor', 'Open Graph Tags', 'Etiketat Open Graph', '2026-01-23 10:31:57'),
(41229, 'sq', 'siteauditor', 'Pages with modern SEO features', 'Faqe me veçori moderne SEO', '2026-01-23 10:31:57'),
(41230, 'sq', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt e lejuar', '2026-01-23 10:31:57'),
(41231, 'sq', 'siteauditor', 'Robots.txt Status', 'Statusi Robots.txt', '2026-01-23 10:31:57'),
(41232, 'sq', 'siteauditor', 'Sitemap Parsing', 'Analizimi i sitemap', '2026-01-23 10:31:57'),
(41233, 'sq', 'siteauditor', 'Sitemap URL', 'URL e sitemap', '2026-01-23 10:31:57'),
(41234, 'sq', 'siteauditor', 'Sitemaps Found', 'Sitemaps të gjetura', '2026-01-23 10:31:57'),
(41235, 'sq', 'siteauditor', 'Social Media', 'Rrjetet sociale', '2026-01-23 10:31:57'),
(41236, 'sq', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Faqja lejon robotët AI të indeksojnë përmbajtjen', '2026-01-23 10:31:57'),
(41237, 'sq', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Faqja bllokon robotët AI - mund të kufizojë dukshmërinë në kërkimin AI', '2026-01-23 10:31:57'),
(41238, 'sq', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Faqja ka etiketat Open Graph për ndarje më të mirë në rrjetet sociale', '2026-01-23 10:31:57'),
(41239, 'sq', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Faqja ka etiketat Twitter Card për ndarje të optimizuar në Twitter', '2026-01-23 10:31:57'),
(41240, 'sq', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Faqja është e lejuar nga robots.txt dhe mund të indeksohet nga motorët e kërkimit', '2026-01-23 10:31:57'),
(41241, 'sq', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Faqja është e bllokuar nga robots.txt - motorët e kërkimit nuk mund ta indeksojnë', '2026-01-23 10:31:57'),
(41242, 'sq', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Faqjes i mungojnë etiketat Open Graph - kufizon optimizimin për rrjetet sociale', '2026-01-23 10:31:57'),
(41243, 'sq', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Faqjes i mungojnë etiketat Twitter Card - kufizon optimizimin për Twitter', '2026-01-23 10:31:57'),
(41244, 'sq', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Faqja është e përshtatshme për celular me konfigurim të duhur viewport', '2026-01-23 10:31:57'),
(41245, 'sq', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Faqja nuk është e përshtatshme për celular - problem kritik për SEO modern', '2026-01-23 10:31:57'),
(41246, 'sq', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Faqja nuk është e sigurt (HTTP) - duhet të përdorë HTTPS', '2026-01-23 10:31:57'),
(41247, 'sq', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Faqja shërbehet përmes HTTPS - lidhje e sigurt', '2026-01-23 10:31:57'),
(41248, 'sq', 'siteauditor', 'Twitter Cards', 'Kartat Twitter', '2026-01-23 10:31:57'),
(41249, 'sq', 'siteauditor', 'URLs from Sitemap', 'URL nga sitemap', '2026-01-23 10:31:57'),
(41250, 'sq', 'siteauditor', 'Yes', 'Po', '2026-01-23 10:31:57'),
(41251, 'sw', 'siteauditor', 'AI Robot Compatibility', 'Upatanifu wa Roboti za AI', '2026-01-23 10:31:57'),
(41252, 'sw', 'siteauditor', 'Allowed', 'Imeruhusiwa', '2026-01-23 10:31:57'),
(41253, 'sw', 'siteauditor', 'Blocked', 'Imezuiwa', '2026-01-23 10:31:57'),
(41254, 'sw', 'siteauditor', 'Canonical URL', 'URL ya Kawaida', '2026-01-23 10:31:57'),
(41255, 'sw', 'siteauditor', 'Discovered Via', 'Imegunduliwa Kupitia', '2026-01-23 10:31:57'),
(41256, 'sw', 'siteauditor', 'Exclude Extensions', 'Ondoa Viendelezi', '2026-01-23 10:31:57'),
(41257, 'sw', 'siteauditor', 'Found', 'Imepatikana', '2026-01-23 10:31:57'),
(41258, 'sw', 'siteauditor', 'Has Backlinks', 'Ina Backlinks', '2026-01-23 10:31:57'),
(41259, 'sw', 'siteauditor', 'HTTPS Secure', 'HTTPS Salama', '2026-01-23 10:31:57'),
(41260, 'sw', 'siteauditor', 'Leave blank to use system default', 'Acha tupu kutumia chaguo-msingi la mfumo', '2026-01-23 10:31:57'),
(41261, 'sw', 'siteauditor', 'Missing', 'Inakosekana', '2026-01-23 10:31:57'),
(41262, 'sw', 'siteauditor', 'Mobile Friendly', 'Inafaa kwa Simu', '2026-01-23 10:31:57'),
(41263, 'sw', 'siteauditor', 'No', 'Hapana', '2026-01-23 10:31:57'),
(41264, 'sw', 'siteauditor', 'Open Graph Tags', 'Alama za Open Graph', '2026-01-23 10:31:57'),
(41265, 'sw', 'siteauditor', 'Pages with modern SEO features', 'Kurasa zenye vipengele vya SEO vya kisasa', '2026-01-23 10:31:57'),
(41266, 'sw', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt Imeruhusiwa', '2026-01-23 10:31:57'),
(41267, 'sw', 'siteauditor', 'Robots.txt Status', 'Hali ya Robots.txt', '2026-01-23 10:31:57'),
(41268, 'sw', 'siteauditor', 'Sitemap Parsing', 'Uchambuzi wa Sitemap', '2026-01-23 10:31:57'),
(41269, 'sw', 'siteauditor', 'Sitemap URL', 'URL ya Sitemap', '2026-01-23 10:31:57'),
(41270, 'sw', 'siteauditor', 'Sitemaps Found', 'Sitemaps Zilizopatikana', '2026-01-23 10:31:57'),
(41271, 'sw', 'siteauditor', 'Social Media', 'Mitandao ya Kijamii', '2026-01-23 10:31:57'),
(41272, 'sw', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Ukurasa unaruhusu roboti za AI kuorodhesha maudhui', '2026-01-23 10:31:57'),
(41273, 'sw', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Ukurasa unazuia roboti za AI - inaweza kupunguza uonekano katika utafutaji wa AI', '2026-01-23 10:31:57'),
(41274, 'sw', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Ukurasa una alama za Open Graph kwa kushiriki bora kwenye mitandao ya kijamii', '2026-01-23 10:31:57'),
(41275, 'sw', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Ukurasa una alama za Twitter Card kwa kushiriki bora kwenye Twitter', '2026-01-23 10:31:57'),
(41276, 'sw', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Ukurasa unaruhusiwa na robots.txt na unaweza kuorodheshwa na injini za utafutaji', '2026-01-23 10:31:57'),
(41277, 'sw', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Ukurasa umezuiwa na robots.txt - injini za utafutaji haziwezi kuorodhesha ukurasa huu', '2026-01-23 10:31:57'),
(41278, 'sw', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Ukurasa unakosa alama za Open Graph - inapunguza uboreshaji wa mitandao ya kijamii', '2026-01-23 10:31:57'),
(41279, 'sw', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Ukurasa unakosa alama za Twitter Card - inapunguza uboreshaji wa Twitter', '2026-01-23 10:31:57'),
(41280, 'sw', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Ukurasa unafaa kwa simu na usanidi sahihi wa viewport', '2026-01-23 10:31:57'),
(41281, 'sw', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Ukurasa haufai kwa simu - tatizo muhimu kwa SEO ya kisasa', '2026-01-23 10:31:57'),
(41282, 'sw', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Ukurasa si salama (HTTP) - inapaswa kutumia HTTPS', '2026-01-23 10:31:57'),
(41283, 'sw', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Ukurasa unahudumiwa kupitia HTTPS - muunganisho salama', '2026-01-23 10:31:57'),
(41284, 'sw', 'siteauditor', 'Twitter Cards', 'Kadi za Twitter', '2026-01-23 10:31:57'),
(41285, 'sw', 'siteauditor', 'URLs from Sitemap', 'URL kutoka Sitemap', '2026-01-23 10:31:57'),
(41286, 'sw', 'siteauditor', 'Yes', 'Ndiyo', '2026-01-23 10:31:57'),
(41287, 'tl', 'siteauditor', 'AI Robot Compatibility', 'Pagkakatugma ng AI Robot', '2026-01-23 10:31:57'),
(41288, 'tl', 'siteauditor', 'Allowed', 'Pinapayagan', '2026-01-23 10:31:57'),
(41289, 'tl', 'siteauditor', 'Blocked', 'Naka-block', '2026-01-23 10:31:57'),
(41290, 'tl', 'siteauditor', 'Canonical URL', 'Canonical na URL', '2026-01-23 10:31:57'),
(41291, 'tl', 'siteauditor', 'Discovered Via', 'Nadiskubre Sa Pamamagitan Ng', '2026-01-23 10:31:57'),
(41292, 'tl', 'siteauditor', 'Exclude Extensions', 'I-exclude ang mga Extension', '2026-01-23 10:31:57'),
(41293, 'tl', 'siteauditor', 'Found', 'Nahanap', '2026-01-23 10:31:57'),
(41294, 'tl', 'siteauditor', 'Has Backlinks', 'May mga Backlink', '2026-01-23 10:31:57'),
(41295, 'tl', 'siteauditor', 'HTTPS Secure', 'HTTPS Secure', '2026-01-23 10:31:57'),
(41296, 'tl', 'siteauditor', 'Leave blank to use system default', 'Iwanang blangko para gamitin ang default ng sistema', '2026-01-23 10:31:57'),
(41297, 'tl', 'siteauditor', 'Missing', 'Nawawala', '2026-01-23 10:31:57'),
(41298, 'tl', 'siteauditor', 'Mobile Friendly', 'Mobile Friendly', '2026-01-23 10:31:57'),
(41299, 'tl', 'siteauditor', 'No', 'Hindi', '2026-01-23 10:31:57'),
(41300, 'tl', 'siteauditor', 'Open Graph Tags', 'Mga Open Graph Tag', '2026-01-23 10:31:57'),
(41301, 'tl', 'siteauditor', 'Pages with modern SEO features', 'Mga pahina na may modernong SEO features', '2026-01-23 10:31:57'),
(41302, 'tl', 'siteauditor', 'Robots.txt Allowed', 'Pinapayagan ng Robots.txt', '2026-01-23 10:31:57'),
(41303, 'tl', 'siteauditor', 'Robots.txt Status', 'Robots.txt Status', '2026-01-23 10:31:57'),
(41304, 'tl', 'siteauditor', 'Sitemap Parsing', 'Sitemap Parsing', '2026-01-23 10:31:57'),
(41305, 'tl', 'siteauditor', 'Sitemap URL', 'Sitemap URL', '2026-01-23 10:31:57'),
(41306, 'tl', 'siteauditor', 'Sitemaps Found', 'Mga Nahanap na Sitemap', '2026-01-23 10:31:57'),
(41307, 'tl', 'siteauditor', 'Social Media', 'Social Media', '2026-01-23 10:31:57'),
(41308, 'tl', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Pinapayagan ng pahina ang mga AI robot na mag-crawl at mag-index ng nilalaman', '2026-01-23 10:31:57'),
(41309, 'tl', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Hinarangan ng pahina ang mga AI robot - maaaring limitahan ang visibility sa AI search', '2026-01-23 10:31:57'),
(41310, 'tl', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Ang pahina ay may Open Graph tags para sa mas magandang pagbabahagi sa social media', '2026-01-23 10:31:57'),
(41311, 'tl', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Ang pahina ay may Twitter Card tags para sa optimized na Twitter sharing', '2026-01-23 10:31:57'),
(41312, 'tl', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Pinapayagan ang pahina ng robots.txt at maaaring i-crawl ng mga search engine', '2026-01-23 10:31:57'),
(41313, 'tl', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Naka-block ang pahina ng robots.txt - hindi ma-crawl ng search engines ang pahinang ito', '2026-01-23 10:31:57'),
(41314, 'tl', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Kulang ang pahina ng Open Graph tags - nililimitahan ang social media optimization', '2026-01-23 10:31:57'),
(41315, 'tl', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Kulang ang pahina ng Twitter Card tags - nililimitahan ang Twitter optimization', '2026-01-23 10:31:57'),
(41316, 'tl', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Ang pahina ay mobile-friendly na may tamang viewport configuration', '2026-01-23 10:31:57'),
(41317, 'tl', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Hindi mobile-friendly ang pahina - kritikal na isyu para sa modernong SEO', '2026-01-23 10:31:57'),
(41318, 'tl', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Hindi secure ang pahina (HTTP) - dapat gumamit ng HTTPS', '2026-01-23 10:31:57'),
(41319, 'tl', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Ang pahina ay inihahatid sa pamamagitan ng HTTPS - secure na koneksyon', '2026-01-23 10:31:57'),
(41320, 'tl', 'siteauditor', 'Twitter Cards', 'Mga Twitter Card', '2026-01-23 10:31:57'),
(41321, 'tl', 'siteauditor', 'URLs from Sitemap', 'Mga URL mula sa Sitemap', '2026-01-23 10:31:57'),
(41322, 'tl', 'siteauditor', 'Yes', 'Oo', '2026-01-23 10:31:57'),
(41323, 'fa', 'siteauditor', 'AI Robot Compatibility', 'سازگاری با رباتهای هوش مصنوعی', '2026-01-23 10:31:57'),
(41324, 'fa', 'siteauditor', 'Allowed', 'مجاز', '2026-01-23 10:31:57'),
(41325, 'fa', 'siteauditor', 'Blocked', 'مسدود شده', '2026-01-23 10:31:57'),
(41326, 'fa', 'siteauditor', 'Canonical URL', 'URL کانونیکال', '2026-01-23 10:31:57'),
(41327, 'fa', 'siteauditor', 'Check pagerank of pages', 'بررسی پیجرنک صفحات', '2026-01-23 10:31:57'),
(41328, 'fa', 'siteauditor', 'Discovered Via', 'کشف شده از طریق', '2026-01-23 10:31:57'),
(41329, 'fa', 'siteauditor', 'Exclude Extensions', 'حذف پسوندها', '2026-01-23 10:31:57'),
(41330, 'fa', 'siteauditor', 'Found', 'یافت شد', '2026-01-23 10:31:57'),
(41331, 'fa', 'siteauditor', 'Has Backlinks', 'دارای بکلینک', '2026-01-23 10:31:57'),
(41332, 'fa', 'siteauditor', 'HTTPS Secure', 'HTTPS امن', '2026-01-23 10:31:57'),
(41333, 'fa', 'siteauditor', 'Leave blank to use system default', 'برای استفاده از پیشفرض سیستم خالی بگذارید', '2026-01-23 10:31:57'),
(41334, 'fa', 'siteauditor', 'Missing', 'گمشده', '2026-01-23 10:31:57'),
(41335, 'fa', 'siteauditor', 'Mobile Friendly', 'سازگار با موبایل', '2026-01-23 10:31:57'),
(41336, 'fa', 'siteauditor', 'No', 'خیر', '2026-01-23 10:31:57'),
(41337, 'fa', 'siteauditor', 'Open Graph Tags', 'تگهای Open Graph', '2026-01-23 10:31:57'),
(41338, 'fa', 'siteauditor', 'Pages with modern SEO features', 'صفحات با ویژگیهای مدرن SEO', '2026-01-23 10:31:57'),
(41339, 'fa', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt مجاز', '2026-01-23 10:31:57'),
(41340, 'fa', 'siteauditor', 'Robots.txt Status', 'وضعیت Robots.txt', '2026-01-23 10:31:57'),
(41341, 'fa', 'siteauditor', 'Sitemap Parsing', 'تحلیل نقشه سایت', '2026-01-23 10:31:57'),
(41342, 'fa', 'siteauditor', 'Sitemap URL', 'آدرس نقشه سایت', '2026-01-23 10:31:57'),
(41343, 'fa', 'siteauditor', 'Sitemaps Found', 'نقشههای سایت یافت شده', '2026-01-23 10:31:57'),
(41344, 'fa', 'siteauditor', 'Social Media', 'شبکههای اجتماعی', '2026-01-23 10:31:57'),
(41345, 'fa', 'siteauditor', 'The page allows AI robots to crawl and index content', 'صفحه به رباتهای هوش مصنوعی اجازه ایندکس محتوا را میدهد', '2026-01-23 10:31:57'),
(41346, 'fa', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'صفحه رباتهای AI را مسدود میکند - ممکن است دیده شدن در جستجوی AI را محدود کند', '2026-01-23 10:31:57'),
(41347, 'fa', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'صفحه دارای تگهای Open Graph برای اشتراکگذاری بهتر در شبکههای اجتماعی است', '2026-01-23 10:31:57'),
(41348, 'fa', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'صفحه دارای تگهای Twitter Card برای اشتراکگذاری بهینه در توییتر است', '2026-01-23 10:31:57'),
(41349, 'fa', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'صفحه توسط robots.txt مجاز است و میتواند توسط موتورهای جستجو ایندکس شود', '2026-01-23 10:31:57'),
(41350, 'fa', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'صفحه توسط robots.txt مسدود است - موتورهای جستجو نمیتوانند این صفحه را ایندکس کنند', '2026-01-23 10:31:57'),
(41351, 'fa', 'siteauditor', 'The page is having excellent page authority value', 'صفحه دارای ارزش اعتبار صفحه عالی است', '2026-01-23 10:31:57'),
(41352, 'fa', 'siteauditor', 'The page is having good page authority value', 'صفحه دارای ارزش اعتبار صفحه خوب است', '2026-01-23 10:31:57'),
(41353, 'fa', 'siteauditor', 'The page is having poor page authority value', 'صفحه دارای ارزش اعتبار صفحه ضعیف است', '2026-01-23 10:31:57'),
(41354, 'fa', 'siteauditor', 'The page is having very good page authority value', 'صفحه دارای ارزش اعتبار صفحه بسیار خوب است', '2026-01-23 10:31:57'),
(41355, 'fa', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'صفحه فاقد تگهای Open Graph است - بهینهسازی شبکههای اجتماعی را محدود میکند', '2026-01-23 10:31:57'),
(41356, 'fa', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'صفحه فاقد تگهای Twitter Card است - بهینهسازی توییتر را محدود میکند', '2026-01-23 10:31:57'),
(41357, 'fa', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'صفحه سازگار با موبایل با پیکربندی viewport مناسب است', '2026-01-23 10:31:57'),
(41358, 'fa', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'صفحه سازگار با موبایل نیست - مشکل بحرانی برای SEO مدرن', '2026-01-23 10:31:57'),
(41359, 'fa', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'صفحه امن نیست (HTTP) - باید از HTTPS استفاده کند', '2026-01-23 10:31:57'),
(41360, 'fa', 'siteauditor', 'The page is served over HTTPS - secure connection', 'صفحه از طریق HTTPS ارائه میشود - اتصال امن', '2026-01-23 10:31:57'),
(41361, 'fa', 'siteauditor', 'Twitter Cards', 'کارتهای توییتر', '2026-01-23 10:31:57'),
(41362, 'fa', 'siteauditor', 'URLs from Sitemap', 'آدرسها از نقشه سایت', '2026-01-23 10:31:57'),
(41363, 'fa', 'siteauditor', 'Yes', 'بله', '2026-01-23 10:31:57'),
(41364, 'he', 'siteauditor', 'AI Robot Compatibility', 'תאימות רובוט AI', '2026-01-23 10:31:57'),
(41365, 'he', 'siteauditor', 'Allowed', 'מותר', '2026-01-23 10:31:57'),
(41366, 'he', 'siteauditor', 'Blocked', 'חסום', '2026-01-23 10:31:57'),
(41367, 'he', 'siteauditor', 'Canonical URL', 'כתובת URL קנונית', '2026-01-23 10:31:57'),
(41368, 'he', 'siteauditor', 'Check pagerank of pages', 'בדוק דירוג עמוד של דפים', '2026-01-23 10:31:57'),
(41369, 'he', 'siteauditor', 'Discovered Via', 'התגלה דרך', '2026-01-23 10:31:57'),
(41370, 'he', 'siteauditor', 'Exclude Extensions', 'אל תכלול סיומות', '2026-01-23 10:31:57'),
(41371, 'he', 'siteauditor', 'Found', 'נמצא', '2026-01-23 10:31:57'),
(41372, 'he', 'siteauditor', 'Has Backlinks', 'יש קישורים נכנסים', '2026-01-23 10:31:57'),
(41373, 'he', 'siteauditor', 'HTTPS Secure', 'HTTPS מאובטח', '2026-01-23 10:31:57'),
(41374, 'he', 'siteauditor', 'Leave blank to use system default', 'השאר ריק לשימוש בברירת המחדל של המערכת', '2026-01-23 10:31:57'),
(41375, 'he', 'siteauditor', 'Missing', 'חסר', '2026-01-23 10:31:57'),
(41376, 'he', 'siteauditor', 'Mobile Friendly', 'ידידותי לנייד', '2026-01-23 10:31:57'),
(41377, 'he', 'siteauditor', 'No', 'לא', '2026-01-23 10:31:57'),
(41378, 'he', 'siteauditor', 'Open Graph Tags', 'תגיות Open Graph', '2026-01-23 10:31:57'),
(41379, 'he', 'siteauditor', 'Pages with modern SEO features', 'דפים עם תכונות SEO מודרניות', '2026-01-23 10:31:57'),
(41380, 'he', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt מותר', '2026-01-23 10:31:57'),
(41381, 'he', 'siteauditor', 'Robots.txt Status', 'סטטוס Robots.txt', '2026-01-23 10:31:57'),
(41382, 'he', 'siteauditor', 'Sitemap Parsing', 'ניתוח מפת אתר', '2026-01-23 10:31:57'),
(41383, 'he', 'siteauditor', 'Sitemap URL', 'כתובת URL של מפת האתר', '2026-01-23 10:31:57'),
(41384, 'he', 'siteauditor', 'Sitemaps Found', 'מפות אתר שנמצאו', '2026-01-23 10:31:57'),
(41385, 'he', 'siteauditor', 'Social Media', 'מדיה חברתית', '2026-01-23 10:31:57'),
(41386, 'he', 'siteauditor', 'The page allows AI robots to crawl and index content', 'הדף מאפשר לרובוטי AI לסרוק ולהוסיף תוכן לאינדקס', '2026-01-23 10:31:57'),
(41387, 'he', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'הדף חוסם רובוטי AI - עלול להגביל נראות בחיפוש AI', '2026-01-23 10:31:57'),
(41388, 'he', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'לדף יש תגיות Open Graph לשיתוף טוב יותר במדיה חברתית', '2026-01-23 10:31:57'),
(41389, 'he', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'לדף יש תגיות Twitter Card לשיתוף אופטימלי בטוויטר', '2026-01-23 10:31:57'),
(41390, 'he', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'הדף מותר על ידי robots.txt וניתן לסריקה על ידי מנועי חיפוש', '2026-01-23 10:31:57'),
(41391, 'he', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'הדף חסום על ידי robots.txt - מנועי חיפוש לא יכולים לסרוק דף זה', '2026-01-23 10:31:57'),
(41392, 'he', 'siteauditor', 'The page is having excellent page authority value', 'לדף יש ערך סמכות דף מצוין', '2026-01-23 10:31:57'),
(41393, 'he', 'siteauditor', 'The page is having good page authority value', 'לדף יש ערך סמכות דף טוב', '2026-01-23 10:31:57'),
(41394, 'he', 'siteauditor', 'The page is having poor page authority value', 'לדף יש ערך סמכות דף נמוך', '2026-01-23 10:31:57'),
(41395, 'he', 'siteauditor', 'The page is having very good page authority value', 'לדף יש ערך סמכות דף טוב מאוד', '2026-01-23 10:31:57'),
(41396, 'he', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'חסרות לדף תגיות Open Graph - מגביל אופטימיזציה למדיה חברתית', '2026-01-23 10:31:57'),
(41397, 'he', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'חסרות לדף תגיות Twitter Card - מגביל אופטימיזציה לטוויטר', '2026-01-23 10:31:57'),
(41398, 'he', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'הדף ידידותי לנייד עם תצורת viewport נכונה', '2026-01-23 10:31:57'),
(41399, 'he', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'הדף אינו ידידותי לנייד - בעיה קריטית ל-SEO מודרני', '2026-01-23 10:31:57'),
(41400, 'he', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'הדף אינו מאובטח (HTTP) - צריך להשתמש ב-HTTPS', '2026-01-23 10:31:57'),
(41401, 'he', 'siteauditor', 'The page is served over HTTPS - secure connection', 'הדף מוגש דרך HTTPS - חיבור מאובטח', '2026-01-23 10:31:57'),
(41402, 'he', 'siteauditor', 'Twitter Cards', 'כרטיסי טוויטר', '2026-01-23 10:31:57'),
(41403, 'he', 'siteauditor', 'URLs from Sitemap', 'כתובות URL ממפת האתר', '2026-01-23 10:31:57'),
(41404, 'he', 'siteauditor', 'Yes', 'כן', '2026-01-23 10:31:57'),
(41405, 'lt', 'siteauditor', 'AI Robot Compatibility', 'AI robotų suderinamumas', '2026-01-23 10:31:57'),
(41406, 'lt', 'siteauditor', 'Allowed', 'Leidžiama', '2026-01-23 10:31:57'),
(41407, 'lt', 'siteauditor', 'Blocked', 'Užblokuota', '2026-01-23 10:31:57'),
(41408, 'lt', 'siteauditor', 'Canonical URL', 'Kanoninis URL', '2026-01-23 10:31:57'),
(41409, 'lt', 'siteauditor', 'Check pagerank of pages', 'Tikrinti puslapių PageRank', '2026-01-23 10:31:57'),
(41410, 'lt', 'siteauditor', 'Discovered Via', 'Atrasta per', '2026-01-23 10:31:57'),
(41411, 'lt', 'siteauditor', 'Exclude Extensions', 'Išskirti plėtinius', '2026-01-23 10:31:57'),
(41412, 'lt', 'siteauditor', 'Found', 'Rasta', '2026-01-23 10:31:57'),
(41413, 'lt', 'siteauditor', 'Has Backlinks', 'Turi atgalines nuorodas', '2026-01-23 10:31:57'),
(41414, 'lt', 'siteauditor', 'HTTPS Secure', 'HTTPS saugus', '2026-01-23 10:31:57'),
(41415, 'lt', 'siteauditor', 'Leave blank to use system default', 'Palikite tuščią, kad naudotumėte sistemos numatytąją reikšmę', '2026-01-23 10:31:57'),
(41416, 'lt', 'siteauditor', 'Missing', 'Trūksta', '2026-01-23 10:31:57'),
(41417, 'lt', 'siteauditor', 'Mobile Friendly', 'Pritaikytas mobiliesiems', '2026-01-23 10:31:57'),
(41418, 'lt', 'siteauditor', 'No', 'Ne', '2026-01-23 10:31:57'),
(41419, 'lt', 'siteauditor', 'Open Graph Tags', 'Open Graph žymos', '2026-01-23 10:31:57'),
(41420, 'lt', 'siteauditor', 'Pages with modern SEO features', 'Puslapiai su šiuolaikinėmis SEO funkcijomis', '2026-01-23 10:31:57'),
(41421, 'lt', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt leidžiama', '2026-01-23 10:31:57'),
(41422, 'lt', 'siteauditor', 'Robots.txt Status', 'Robots.txt būsena', '2026-01-23 10:31:57'),
(41423, 'lt', 'siteauditor', 'Sitemap Parsing', 'Svetainės žemėlapio analizė', '2026-01-23 10:31:57'),
(41424, 'lt', 'siteauditor', 'Sitemap URL', 'Svetainės žemėlapio URL', '2026-01-23 10:31:57'),
(41425, 'lt', 'siteauditor', 'Sitemaps Found', 'Rasti svetainės žemėlapiai', '2026-01-23 10:31:57'),
(41426, 'lt', 'siteauditor', 'Social Media', 'Socialinė medija', '2026-01-23 10:31:57'),
(41427, 'lt', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Puslapis leidžia AI robotams indeksuoti turinį', '2026-01-23 10:31:57'),
(41428, 'lt', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Puslapis blokuoja AI robotus - gali apriboti matomumą AI paieškoje', '2026-01-23 10:31:57'),
(41429, 'lt', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Puslapis turi Open Graph žymas geresniam dalijimui socialinėje medijoje', '2026-01-23 10:31:57'),
(41430, 'lt', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Puslapis turi Twitter Card žymas optimizuotam dalijimui Twitter', '2026-01-23 10:31:57'),
(41431, 'lt', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Puslapis leidžiamas robots.txt ir gali būti indeksuojamas paieškos sistemų', '2026-01-23 10:31:57'),
(41432, 'lt', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Puslapis užblokuotas robots.txt - paieškos sistemos negali indeksuoti šio puslapio', '2026-01-23 10:31:57'),
(41433, 'lt', 'siteauditor', 'The page is having excellent page authority value', 'Puslapis turi puikią puslapio autoriteto vertę', '2026-01-23 10:31:57'),
(41434, 'lt', 'siteauditor', 'The page is having good page authority value', 'Puslapis turi gerą puslapio autoriteto vertę', '2026-01-23 10:31:57'),
(41435, 'lt', 'siteauditor', 'The page is having poor page authority value', 'Puslapis turi žemą puslapio autoriteto vertę', '2026-01-23 10:31:57'),
(41436, 'lt', 'siteauditor', 'The page is having very good page authority value', 'Puslapis turi labai gerą puslapio autoriteto vertę', '2026-01-23 10:31:57'),
(41437, 'lt', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Puslapiui trūksta Open Graph žymų - riboja socialinės medijos optimizavimą', '2026-01-23 10:31:57'),
(41438, 'lt', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Puslapiui trūksta Twitter Card žymų - riboja Twitter optimizavimą', '2026-01-23 10:31:57'),
(41439, 'lt', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Puslapis pritaikytas mobiliesiems su tinkama viewport konfigūracija', '2026-01-23 10:31:57'),
(41440, 'lt', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Puslapis nepritaikytas mobiliesiems - kritinė problema šiuolaikiniam SEO', '2026-01-23 10:31:57'),
(41441, 'lt', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Puslapis nesaugus (HTTP) - turėtų naudoti HTTPS', '2026-01-23 10:31:57'),
(41442, 'lt', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Puslapis teikiamas per HTTPS - saugus ryšys', '2026-01-23 10:31:57'),
(41443, 'lt', 'siteauditor', 'Twitter Cards', 'Twitter kortelės', '2026-01-23 10:31:57'),
(41444, 'lt', 'siteauditor', 'URLs from Sitemap', 'URL iš svetainės žemėlapio', '2026-01-23 10:31:57'),
(41445, 'lt', 'siteauditor', 'Yes', 'Taip', '2026-01-23 10:31:57'),
(41446, 'sk', 'siteauditor', 'AI Robot Compatibility', 'Kompatibilita s AI robotmi', '2026-01-23 10:31:57'),
(41447, 'sk', 'siteauditor', 'Allowed', 'Povolené', '2026-01-23 10:31:57'),
(41448, 'sk', 'siteauditor', 'Blocked', 'Blokované', '2026-01-23 10:31:57'),
(41449, 'sk', 'siteauditor', 'Canonical URL', 'Kanonická URL', '2026-01-23 10:31:57'),
(41450, 'sk', 'siteauditor', 'Check pagerank of pages', 'Kontrolovať PageRank stránok', '2026-01-23 10:31:57'),
(41451, 'sk', 'siteauditor', 'Discovered Via', 'Objavené cez', '2026-01-23 10:31:57'),
(41452, 'sk', 'siteauditor', 'Exclude Extensions', 'Vylúčiť prípony', '2026-01-23 10:31:57'),
(41453, 'sk', 'siteauditor', 'Found', 'Nájdené', '2026-01-23 10:31:57'),
(41454, 'sk', 'siteauditor', 'Has Backlinks', 'Má spätné odkazy', '2026-01-23 10:31:57'),
(41455, 'sk', 'siteauditor', 'HTTPS Secure', 'HTTPS zabezpečené', '2026-01-23 10:31:57'),
(41456, 'sk', 'siteauditor', 'Leave blank to use system default', 'Nechajte prázdne pre použitie predvoleného nastavenia', '2026-01-23 10:31:57'),
(41457, 'sk', 'siteauditor', 'Missing', 'Chýba', '2026-01-23 10:31:57'),
(41458, 'sk', 'siteauditor', 'Mobile Friendly', 'Prispôsobené mobilom', '2026-01-23 10:31:57'),
(41459, 'sk', 'siteauditor', 'No', 'Nie', '2026-01-23 10:31:57'),
(41460, 'sk', 'siteauditor', 'Open Graph Tags', 'Open Graph značky', '2026-01-23 10:31:57'),
(41461, 'sk', 'siteauditor', 'Pages with modern SEO features', 'Stránky s modernými SEO funkciami', '2026-01-23 10:31:57'),
(41462, 'sk', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt povolené', '2026-01-23 10:31:57'),
(41463, 'sk', 'siteauditor', 'Robots.txt Status', 'Stav Robots.txt', '2026-01-23 10:31:57'),
(41464, 'sk', 'siteauditor', 'Sitemap Parsing', 'Spracovanie mapy stránok', '2026-01-23 10:31:57'),
(41465, 'sk', 'siteauditor', 'Sitemap URL', 'URL mapy stránok', '2026-01-23 10:31:57'),
(41466, 'sk', 'siteauditor', 'Sitemaps Found', 'Nájdené mapy stránok', '2026-01-23 10:31:57'),
(41467, 'sk', 'siteauditor', 'Social Media', 'Sociálne médiá', '2026-01-23 10:31:57'),
(41468, 'sk', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Stránka umožňuje AI robotom indexovať obsah', '2026-01-23 10:31:57'),
(41469, 'sk', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Stránka blokuje AI roboty - môže obmedziť viditeľnosť v AI vyhľadávaní', '2026-01-23 10:31:57'),
(41470, 'sk', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Stránka má Open Graph značky pre lepšie zdieľanie na sociálnych sieťach', '2026-01-23 10:31:57'),
(41471, 'sk', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Stránka má Twitter Card značky pre optimalizované zdieľanie na Twitteri', '2026-01-23 10:31:57'),
(41472, 'sk', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Stránka je povolená v robots.txt a môže byť indexovaná vyhľadávačmi', '2026-01-23 10:31:57'),
(41473, 'sk', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Stránka je blokovaná v robots.txt - vyhľadávače nemôžu túto stránku indexovať', '2026-01-23 10:31:57'),
(41474, 'sk', 'siteauditor', 'The page is having excellent page authority value', 'Stránka má vynikajúcu hodnotu autority', '2026-01-23 10:31:57'),
(41475, 'sk', 'siteauditor', 'The page is having good page authority value', 'Stránka má dobrú hodnotu autority', '2026-01-23 10:31:57'),
(41476, 'sk', 'siteauditor', 'The page is having poor page authority value', 'Stránka má nízku hodnotu autority', '2026-01-23 10:31:57'),
(41477, 'sk', 'siteauditor', 'The page is having very good page authority value', 'Stránka má veľmi dobrú hodnotu autority', '2026-01-23 10:31:57'),
(41478, 'sk', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Stránke chýbajú Open Graph značky - obmedzuje optimalizáciu pre sociálne siete', '2026-01-23 10:31:57'),
(41479, 'sk', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Stránke chýbajú Twitter Card značky - obmedzuje optimalizáciu pre Twitter', '2026-01-23 10:31:57'),
(41480, 'sk', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Stránka je prispôsobená mobilom so správnou konfiguráciou viewport', '2026-01-23 10:31:57'),
(41481, 'sk', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Stránka nie je prispôsobená mobilom - kritický problém pre moderné SEO', '2026-01-23 10:31:57'),
(41482, 'sk', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Stránka nie je zabezpečená (HTTP) - mala by používať HTTPS', '2026-01-23 10:31:57'),
(41483, 'sk', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Stránka je poskytovaná cez HTTPS - zabezpečené pripojenie', '2026-01-23 10:31:57'),
(41484, 'sk', 'siteauditor', 'Twitter Cards', 'Twitter karty', '2026-01-23 10:31:57'),
(41485, 'sk', 'siteauditor', 'URLs from Sitemap', 'URL z mapy stránok', '2026-01-23 10:31:57'),
(41486, 'sk', 'siteauditor', 'Yes', 'Áno', '2026-01-23 10:31:57'),
(41487, 'sl', 'siteauditor', 'AI Robot Compatibility', 'Združljivost z AI roboti', '2026-01-23 10:31:57'),
(41488, 'sl', 'siteauditor', 'Allowed', 'Dovoljeno', '2026-01-23 10:31:57'),
(41489, 'sl', 'siteauditor', 'Blocked', 'Blokirano', '2026-01-23 10:31:57'),
(41490, 'sl', 'siteauditor', 'Canonical URL', 'Kanonični URL', '2026-01-23 10:31:57'),
(41491, 'sl', 'siteauditor', 'Check pagerank of pages', 'Preveri PageRank strani', '2026-01-23 10:31:57'),
(41492, 'sl', 'siteauditor', 'Discovered Via', 'Odkrito prek', '2026-01-23 10:31:57'),
(41493, 'sl', 'siteauditor', 'Exclude Extensions', 'Izključi končnice', '2026-01-23 10:31:57'),
(41494, 'sl', 'siteauditor', 'Found', 'Najdeno', '2026-01-23 10:31:57'),
(41495, 'sl', 'siteauditor', 'Has Backlinks', 'Ima povratne povezave', '2026-01-23 10:31:57'),
(41496, 'sl', 'siteauditor', 'HTTPS Secure', 'HTTPS varno', '2026-01-23 10:31:57'),
(41497, 'sl', 'siteauditor', 'Leave blank to use system default', 'Pustite prazno za uporabo sistemske privzete vrednosti', '2026-01-23 10:31:57'),
(41498, 'sl', 'siteauditor', 'Missing', 'Manjka', '2026-01-23 10:31:57'),
(41499, 'sl', 'siteauditor', 'Mobile Friendly', 'Prilagojeno za mobilne naprave', '2026-01-23 10:31:57'),
(41500, 'sl', 'siteauditor', 'No', 'Ne', '2026-01-23 10:31:57'),
(41501, 'sl', 'siteauditor', 'Open Graph Tags', 'Open Graph oznake', '2026-01-23 10:31:57'),
(41502, 'sl', 'siteauditor', 'Pages with modern SEO features', 'Strani z modernimi SEO funkcijami', '2026-01-23 10:31:57'),
(41503, 'sl', 'siteauditor', 'Robots.txt Allowed', 'Robots.txt dovoljeno', '2026-01-23 10:31:57'),
(41504, 'sl', 'siteauditor', 'Robots.txt Status', 'Status Robots.txt', '2026-01-23 10:31:57'),
(41505, 'sl', 'siteauditor', 'Sitemap Parsing', 'Analiza zemljevida strani', '2026-01-23 10:31:57'),
(41506, 'sl', 'siteauditor', 'Sitemap URL', 'URL zemljevida strani', '2026-01-23 10:31:57');
INSERT INTO `texts` VALUES
(41507, 'sl', 'siteauditor', 'Sitemaps Found', 'Najdeni zemljevidi strani', '2026-01-23 10:31:57'),
(41508, 'sl', 'siteauditor', 'Social Media', 'Družbena omrežja', '2026-01-23 10:31:57'),
(41509, 'sl', 'siteauditor', 'The page allows AI robots to crawl and index content', 'Stran dovoljuje AI robotom indeksiranje vsebine', '2026-01-23 10:31:57'),
(41510, 'sl', 'siteauditor', 'The page blocks AI robots from crawling - may limit AI search visibility', 'Stran blokira AI robote - lahko omeji vidnost v AI iskanju', '2026-01-23 10:31:57'),
(41511, 'sl', 'siteauditor', 'The page has Open Graph tags for better social media sharing', 'Stran ima Open Graph oznake za boljše deljenje na družbenih omrežjih', '2026-01-23 10:31:57'),
(41512, 'sl', 'siteauditor', 'The page has Twitter Card tags for optimized Twitter sharing', 'Stran ima Twitter Card oznake za optimizirano deljenje na Twitterju', '2026-01-23 10:31:57'),
(41513, 'sl', 'siteauditor', 'The page is allowed by robots.txt and can be crawled by search engines', 'Stran je dovoljena v robots.txt in jo lahko indeksirajo iskalniki', '2026-01-23 10:31:57'),
(41514, 'sl', 'siteauditor', 'The page is blocked by robots.txt - search engines cannot crawl this page', 'Stran je blokirana v robots.txt - iskalniki ne morejo indeksirati te strani', '2026-01-23 10:31:57'),
(41515, 'sl', 'siteauditor', 'The page is having excellent page authority value', 'Stran ima odlično vrednost avtoritete strani', '2026-01-23 10:31:57'),
(41516, 'sl', 'siteauditor', 'The page is having good page authority value', 'Stran ima dobro vrednost avtoritete strani', '2026-01-23 10:31:57'),
(41517, 'sl', 'siteauditor', 'The page is having poor page authority value', 'Stran ima nizko vrednost avtoritete strani', '2026-01-23 10:31:57'),
(41518, 'sl', 'siteauditor', 'The page is having very good page authority value', 'Stran ima zelo dobro vrednost avtoritete strani', '2026-01-23 10:31:57'),
(41519, 'sl', 'siteauditor', 'The page is missing Open Graph tags - limits social media optimization', 'Strani manjkajo Open Graph oznake - omejuje optimizacijo za družbena omrežja', '2026-01-23 10:31:57'),
(41520, 'sl', 'siteauditor', 'The page is missing Twitter Card tags - limits Twitter optimization', 'Strani manjkajo Twitter Card oznake - omejuje optimizacijo za Twitter', '2026-01-23 10:31:57'),
(41521, 'sl', 'siteauditor', 'The page is mobile-friendly with proper viewport configuration', 'Stran je prilagojena za mobilne naprave s pravilno konfiguracijo viewport', '2026-01-23 10:31:57'),
(41522, 'sl', 'siteauditor', 'The page is not mobile-friendly - critical issue for modern SEO', 'Stran ni prilagojena za mobilne naprave - kritična težava za sodoben SEO', '2026-01-23 10:31:57'),
(41523, 'sl', 'siteauditor', 'The page is not secure (HTTP) - should use HTTPS', 'Stran ni varna (HTTP) - mora uporabljati HTTPS', '2026-01-23 10:31:57'),
(41524, 'sl', 'siteauditor', 'The page is served over HTTPS - secure connection', 'Stran je servirana prek HTTPS - varna povezava', '2026-01-23 10:31:57'),
(41525, 'sl', 'siteauditor', 'Twitter Cards', 'Twitter kartice', '2026-01-23 10:31:57'),
(41526, 'sl', 'siteauditor', 'URLs from Sitemap', 'URL-ji iz zemljevida strani', '2026-01-23 10:31:57'),
(41527, 'sl', 'siteauditor', 'Yes', 'Da', '2026-01-23 10:31:57');
-- --------------------------------------------------------
--
-- Table structure for table `themes`
--
CREATE TABLE `themes` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`folder` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`author` varchar(100) 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',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ;
--
-- Dumping data for table `themes`
--
INSERT INTO `themes` VALUES
(1, 'Classic', 'classic', 'Geo Varghese', 'Classic theme of Seo Panel', '1.0.0', 'https://www.seopanel.org/theme/l/1/classic/', 1, 1),
(2, 'Simple', 'simple', 'Geo Varghese', 'Simple theme of Seo Panel', '1.0.0', 'https://www.seopanel.org/theme/l/2/simple/', 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `timezone`
--
CREATE TABLE `timezone` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`timezone_name` varchar(150) COLLATE utf8_unicode_ci NOT NULL,
`timezone_label` varchar(150) COLLATE utf8_unicode_ci NOT NULL,
`gmt_diff` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT '+00.00',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=91 ;
--
-- Dumping data for table `timezone`
--
INSERT INTO `timezone` VALUES
(1, 'Pacific/Midway', '(GMT-11:00) Midway Island, Samoa', '-11:00'),
(2, 'America/Adak', '(GMT-10:00) Hawaii-Aleutian', '-10:00'),
(3, 'Etc/GMT+10', '(GMT-10:00) Hawaii', '-10:00'),
(4, 'Pacific/Marquesas', '(GMT-09:30) Marquesas Islands', '-09:30'),
(5, 'Pacific/Gambier', '(GMT-09:00) Gambier Islands', '-09:00'),
(6, 'America/Anchorage', '(GMT-09:00) Alaska', '-09:00'),
(7, 'America/Ensenada', '(GMT-08:00) Tijuana, Baja California', '-08:00'),
(8, 'Etc/GMT+8', '(GMT-08:00) Pitcairn Islands', '-08:00'),
(9, 'America/Los_Angeles', '(GMT-08:00) Pacific Time (US & Canada)', '-08:00'),
(10, 'America/Denver', '(GMT-07:00) Mountain Time (US & Canada)', '-07:00'),
(11, 'America/Chihuahua', '(GMT-07:00) Chihuahua, La Paz, Mazatlan', '-07:00'),
(12, 'America/Dawson_Creek', '(GMT-07:00) Arizona', '-07:00'),
(13, 'America/Belize', '(GMT-06:00) Saskatchewan, Central America', '-06:00'),
(14, 'America/Cancun', '(GMT-06:00) Guadalajara, Mexico City, Monterrey', '-06:00'),
(15, 'Chile/EasterIsland', '(GMT-06:00) Easter Island', '-06:00'),
(16, 'America/Chicago', '(GMT-06:00) Central Time (US & Canada)', '-06:00'),
(17, 'America/New_York', '(GMT-05:00) Eastern Time (US & Canada)', '-05:00'),
(18, 'America/Havana', '(GMT-05:00) Cuba', '-05:00'),
(19, 'America/Bogota', '(GMT-05:00) Bogota, Lima, Quito, Rio Branco', '-05:00'),
(20, 'America/Caracas', '(GMT-04:30) Caracas', '-04:30'),
(21, 'America/Santiago', '(GMT-04:00) Santiago', '-04:00'),
(22, 'America/La_Paz', '(GMT-04:00) La Paz', '-04:00'),
(23, 'Atlantic/Stanley', '(GMT-04:00) Faukland Islands', '-04:00'),
(24, 'America/Campo_Grande', '(GMT-04:00) Brazil', '-04:00'),
(25, 'America/Goose_Bay', '(GMT-04:00) Atlantic Time (Goose Bay)', '-04:00'),
(26, 'America/Glace_Bay', '(GMT-04:00) Atlantic Time (Canada)', '-04:00'),
(27, 'America/St_Johns', '(GMT-03:30) Newfoundland', '-03:30'),
(28, 'America/Araguaina', '(GMT-03:00) UTC-3', '-03:00'),
(29, 'America/Montevideo', '(GMT-03:00) Montevideo', '-03:00'),
(30, 'America/Miquelon', '(GMT-03:00) Miquelon, St. Pierre', '-03:00'),
(31, 'America/Godthab', '(GMT-03:00) Greenland', '-03:00'),
(32, 'America/Argentina/Buenos_Aires', '(GMT-03:00) Buenos Aires', '-03:00'),
(33, 'America/Sao_Paulo', '(GMT-03:00) Brasilia', '-03:00'),
(34, 'America/Noronha', '(GMT-02:00) Mid-Atlantic', '-02:00'),
(35, 'Atlantic/Cape_Verde', '(GMT-01:00) Cape Verde Is.', '-01:00'),
(36, 'Atlantic/Azores', '(GMT-01:00) Azores', '-01:00'),
(37, 'Europe/Belfast', '(GMT) Greenwich Mean Time : Belfast', '+00:00'),
(38, 'Europe/Dublin', '(GMT) Greenwich Mean Time : Dublin', '+00:00'),
(39, 'Europe/Lisbon', '(GMT) Greenwich Mean Time : Lisbon', '+00:00'),
(40, 'Europe/London', '(GMT) Greenwich Mean Time : London', '+00:00'),
(41, 'Africa/Abidjan', '(GMT) Monrovia, Reykjavik', '+00:00'),
(42, 'Europe/Berlin', '(GMT+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna', '+01:00'),
(43, 'Europe/Belgrade', '(GMT+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague', '+01:00'),
(44, 'Europe/Brussels', '(GMT+01:00) Brussels, Copenhagen, Madrid, Paris', '+01:00'),
(45, 'Africa/Algiers', '(GMT+01:00) West Central Africa', '+01:00'),
(46, 'Africa/Windhoek', '(GMT+01:00) Windhoek', '+01:00'),
(47, 'Asia/Beirut', '(GMT+02:00) Beirut', '+02:00'),
(48, 'Africa/Cairo', '(GMT+02:00) Cairo', '+02:00'),
(49, 'Asia/Gaza', '(GMT+02:00) Gaza', '+02:00'),
(50, 'Africa/Blantyre', '(GMT+02:00) Harare, Pretoria', '+02:00'),
(51, 'Asia/Jerusalem', '(GMT+02:00) Jerusalem', '+02:00'),
(52, 'Europe/Minsk', '(GMT+02:00) Minsk', '+02:00'),
(53, 'Asia/Damascus', '(GMT+02:00) Syria', '+02:00'),
(54, 'Europe/Moscow', '(GMT+03:00) Moscow, St. Petersburg, Volgograd', '+03:00'),
(55, 'Africa/Addis_Ababa', '(GMT+03:00) Nairobi', '+03:00'),
(56, 'Asia/Tehran', '(GMT+03:30) Tehran', '+03:30'),
(57, 'Asia/Dubai', '(GMT+04:00) Abu Dhabi, Muscat', '+04:00'),
(58, 'Asia/Yerevan', '(GMT+04:00) Yerevan', '+04:00'),
(59, 'Asia/Kabul', '(GMT+04:30) Kabul', '+04:30'),
(60, 'Asia/Yekaterinburg', '(GMT+05:00) Ekaterinburg', '+05:00'),
(61, 'Asia/Tashkent', '(GMT+05:00) Tashkent', '+05:00'),
(62, 'Asia/Kolkata', '(GMT+05:30) Chennai, Kolkata, Mumbai, New Delhi', '+05:30'),
(63, 'Asia/Katmandu', '(GMT+05:45) Kathmandu', '+05:45'),
(64, 'Asia/Dhaka', '(GMT+06:00) Astana, Dhaka', '+06:00'),
(65, 'Asia/Novosibirsk', '(GMT+06:00) Novosibirsk', '+06:00'),
(66, 'Asia/Rangoon', '(GMT+06:30) Yangon (Rangoon)', '+06:30'),
(67, 'Asia/Bangkok', '(GMT+07:00) Bangkok, Hanoi, Jakarta', '+07:00'),
(68, 'Asia/Krasnoyarsk', '(GMT+07:00) Krasnoyarsk', '+07:00'),
(69, 'Asia/Hong_Kong', '(GMT+08:00) Beijing, Chongqing, Hong Kong, Urumqi', '+08:00'),
(70, 'Asia/Irkutsk', '(GMT+08:00) Irkutsk, Ulaan Bataar', '+08:00'),
(71, 'Australia/Perth', '(GMT+08:00) Perth', '+08:00'),
(72, 'Australia/Eucla', '(GMT+08:45) Eucla', '+08:45'),
(73, 'Asia/Tokyo', '(GMT+09:00) Osaka, Sapporo, Tokyo', '+09:00'),
(74, 'Asia/Seoul', '(GMT+09:00) Seoul', '+09:00'),
(75, 'Asia/Yakutsk', '(GMT+09:00) Yakutsk', '+09:00'),
(76, 'Australia/Adelaide', '(GMT+09:30) Adelaide', '+09:30'),
(77, 'Australia/Darwin', '(GMT+09:30) Darwin', '+09:30'),
(78, 'Australia/Brisbane', '(GMT+10:00) Brisbane', '+10:00'),
(79, 'Australia/Hobart', '(GMT+10:00) Hobart', '+10:00'),
(80, 'Asia/Vladivostok', '(GMT+10:00) Vladivostok', '+10:00'),
(81, 'Australia/Lord_Howe', '(GMT+10:30) Lord Howe Island', '+10:30'),
(82, 'Etc/GMT-11', '(GMT+11:00) Solomon Is., New Caledonia', '+11:00'),
(83, 'Asia/Magadan', '(GMT+11:00) Magadan', '+11:00'),
(84, 'Pacific/Norfolk', '(GMT+11:30) Norfolk Island', '+11:30'),
(85, 'Asia/Anadyr', '(GMT+12:00) Anadyr, Kamchatka', '+12:00'),
(86, 'Pacific/Auckland', '(GMT+12:00) Auckland, Wellington', '+12:00'),
(87, 'Etc/GMT-12', '(GMT+12:00) Fiji, Kamchatka, Marshall Is.', '+12:00'),
(88, 'Pacific/Chatham', '(GMT+12:45) Chatham Islands', '+12:45'),
(89, 'Pacific/Tongatapu', '(GMT+13:00) Nuku''alofa', '+13:00'),
(90, 'Pacific/Kiritimati', '(GMT+14:00) Kiritimati', '+14:00');
-- --------------------------------------------------------
--
-- Table structure for table `translators`
--
CREATE TABLE `translators` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`lang_code` varchar(8) NOT NULL,
`trans_name` varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`trans_company` varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`trans_website` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=36 ;
--
-- Dumping data for table `translators`
--
INSERT INTO `translators` VALUES
(1, 'de', 'Christopher Hüneke', 'ChriSEO', 'https://www.chriseo.de/'),
(2, 'es', 'AnunciosEnLinea.es', 'AnunciosEnLinea.es', 'http://www.anunciosenlinea.es/'),
(3, 'fr', 'Erik De Zeeuw', 'Baziq', 'http://baziq.fr'),
(4, 'pl', 'Marek Cich', 'marekcich.co.uk', 'http://www.marekcich.co.uk/'),
(5, 'ru', 'Alexander Arapov', 'Arsko', 'http://seo-panel.ru/'),
(6, 'nl', 'Bas van Eijk', 'Bureau Creaties', 'http://www.bureaucreaties.nl'),
(7, 'nl', 'Manuel Schroyens', 'Webaholic', 'http://www.webaholic.be/'),
(8, 'it', 'Antonio Cionfs Confessore', 'Cionfs''Forum CMS', 'http://www.cionfs.it/forum/'),
(9, 'zh', '许腾飞', ' 斐然小居', 'http://www.tengfei.biz/'),
(10, 'hu', 'Bocskói Botond', 'MSN Downloads', 'http://www.msnfan.hu/'),
(11, 'pt', 'pedro vaz', 'internet services', 'http://www.temnet.pt/'),
(12, 'ro', 'Sfetcu Paul', 'freelancer RO', 'http://www.servicewebit.ro/'),
(13, 'bg', 'Dimitar Kukov', 'Web Lab Bulgaria', 'http://www.weblab-bg.com/'),
(14, 'el', 'Vaggelis Tsagklis', 'BLB.gr', 'http://www.blb.gr/'),
(15, 'cn', '周天伟', 'IT非正常人类', 'http://www.kaotama.com.cn'),
(16, 'es', 'Alex Rubio', 'miniz', 'http://www.technicalrp.com/'),
(17, 'tr', 'Buray Savas ANIL', 'Geliyoo Türkiye', 'http://www.geliyoo.com/'),
(18, 'fa', 'mohammad mohammadi', '[email protected]', 'mailto:[email protected]'),
(19, 'he', 'Rea Maor', 'nekuda.co.il', 'http://nekuda.co.il'),
(20, 'sl', 'Andrej Arh', 'SEO spletni marketing', 'http://seomarketing.si/'),
(21, 'vn', 'Dung Dang Huy', 'www.huydung.net', 'http://www.huydung.net'),
(22, 'sk', 'Martin Babic', 'SEO služby', 'http://www.seo-sluzby.sk/'),
(23, 'ar', 'Bashiti', 'Oriental Security', 'http://www.orientalsecurity.com/'),
(24, 'pt-BR', 'Carlos Zamora', 'Agência SOFT', 'http://www.agenciasoft.com.br/'),
(25, 'id', 'Ikmal Syifai', 'ikmal.io', 'https://ikmal.io/'),
(26, 'cs', 'Tomas', '[email protected]', 'mailto:[email protected]'),
(27, 'da', 'Michael S. Clausen', '[email protected]', 'mailto:[email protected]'),
(28, 'es-ar', 'Federico Franic', 'ffranic.com.ar', 'http://ffranic.com.ar/'),
(29, 'lt', 'Rokas Globys', 'Auksera', 'http://www.auksera.lt/'),
(30, 'ja', 'Sumitaka Kanno', 'XyXon', 'http://www.xyxon.co.jp/'),
(32, 'sv', '', 'sökoptimering.se', 'http://sökoptimering.se/'),
(33, 'pt-BR', 'Edson Medeiros', 'We Marketing Digital', 'http://wemarketingdigital.com.br/'),
(34, 'tr', 'Nuh Mehmet SOYLU', 'Mehmet SOYLU', 'http://mehmet-soylu.com/'),
(35, 'sr', 'Nebojsa', 'Nebojsa', 'mailto:[email protected]');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`utype_id` int(11) DEFAULT NULL,
`username` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`password` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`first_name` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`last_name` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`email` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
`lang_code` varchar(8) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'en',
`created` int(11) NOT NULL,
`status` tinyint(4) DEFAULT '1',
`expiry_date` date DEFAULT NULL,
`confirm_code` varchar(120) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`confirm` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `users`
--
INSERT INTO `users` VALUES
(1, 1, '[[admin_username]]', '[[admin_pass]]', '[[admin_fname]]', '[[admin_lname]]', '[[admin_email]]', '[[language]]', 0, 1, NULL, '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `usertypes`
--
CREATE TABLE `usertypes` (
`id` int(8) NOT NULL AUTO_INCREMENT,
`user_type` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci,
`status` tinyint(4) DEFAULT '1',
`access_type` enum('read','write') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'write',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ;
--
-- Dumping data for table `usertypes`
--
INSERT INTO `usertypes` VALUES
(1, 'admin', 'Super User', 1, 'write'),
(2, 'user', 'Normal User', 1, 'write');
-- --------------------------------------------------------
--
-- Table structure for table `user_report_logs`
--
CREATE TABLE `user_report_logs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`report_date` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `user_specs`
--
CREATE TABLE `user_specs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_type_id` int(11) NOT NULL,
`spec_column` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`spec_value` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`spec_category` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'system',
PRIMARY KEY (`id`),
UNIQUE KEY `user_type_id` (`user_type_id`,`spec_column`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=19 ;
--
-- Dumping data for table `user_specs`
--
INSERT INTO `user_specs` VALUES
(1, 2, 'keywordcount', '50', 'system'),
(2, 2, 'websitecount', '10', 'system'),
(3, 2, 'price', '0', 'system'),
(4, 2, 'searchengine_count', '3', 'system'),
(5, 2, 'directory_submit_limit', '150', 'system'),
(6, 2, 'directory_submit_daily_limit', '100', 'system'),
(7, 2, 'site_auditor_max_page_limit', '500', 'system'),
(8, 2, 'plugin_1', '1', 'system'),
(9, 2, 'plugin_2', '1', 'system'),
(10, 2, 'plugin_3', '1', 'system'),
(11, 2, 'seotool_1', '1', 'system'),
(12, 2, 'seotool_2', '1', 'system'),
(13, 2, 'seotool_3', '1', 'system'),
(14, 2, 'seotool_4', '1', 'system'),
(15, 2, 'seotool_5', '1', 'system'),
(16, 2, 'seotool_6', '1', 'system'),
(17, 2, 'seotool_7', '1', 'system'),
(18, 2, 'seotool_8', '1', 'system');
-- --------------------------------------------------------
--
-- Table structure for table `user_tokens`
--
CREATE TABLE `user_tokens` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`access_token` text COLLATE utf8_unicode_ci NOT NULL,
`refresh_token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`token_type` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
`expires_in` int(11) NOT NULL DEFAULT '3600' COMMENT 'seconds',
`created` datetime NOT NULL,
`token_category` enum('google','twitter','facebook','linkedin') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'google',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `user_website_access`
--
CREATE TABLE `user_website_access` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`website_id` int(11) NOT NULL,
`access` enum('read','write') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'read',
PRIMARY KEY (`id`),
UNIQUE KEY `user_id` (`user_id`,`website_id`),
KEY `website_id_user_access_delete` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `webmaster_keywords`
--
CREATE TABLE `webmaster_keywords` (
`id` bigint(24) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`website_id` int(11) DEFAULT NULL,
`status` tinyint(1) DEFAULT '1',
PRIMARY KEY (`id`),
KEY `website_id` (`website_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `webmaster_sitemaps`
--
CREATE TABLE `webmaster_sitemaps` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`path` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`last_submitted` datetime NOT NULL,
`last_downloaded` datetime NOT NULL,
`is_pending` tinyint(4) NOT NULL DEFAULT '0',
`warnings` int(11) NOT NULL DEFAULT '0',
`errors` int(11) NOT NULL DEFAULT '0',
`submitted` int(11) NOT NULL DEFAULT '0',
`indexed` int(11) NOT NULL DEFAULT '0',
`status` tinyint(4) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `website_id` (`website_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `websites`
--
CREATE TABLE `websites` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
`url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`owner_name` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
`owner_email` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
`category` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`title` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
`keywords` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
`title2` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`title3` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`title4` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`title5` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`description2` text COLLATE utf8_unicode_ci,
`description3` text COLLATE utf8_unicode_ci,
`description4` text COLLATE utf8_unicode_ci,
`description5` text COLLATE utf8_unicode_ci,
`reciprocal_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`status` tinyint(1) NOT NULL,
`crawled` tinyint(1) NOT NULL DEFAULT '0',
`analytics_view_id` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `website_analytics`
--
CREATE TABLE `website_analytics` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`source_id` bigint(20) NOT NULL,
`users` int(11) NOT NULL,
`newUsers` int(11) NOT NULL,
`sessions` int(11) NOT NULL,
`bounceRate` float NOT NULL,
`avgSessionDuration` float NOT NULL,
`goalCompletionsAll` int(11) NOT NULL,
`report_date` date NOT NULL,
PRIMARY KEY (`id`),
KEY `website_analytics_delete` (`website_id`),
KEY `source_analytics_delete` (`source_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ;
-- --------------------------------------------------------
--
-- Table structure for table `website_search_analytics`
--
CREATE TABLE `website_search_analytics` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`website_id` int(11) NOT NULL,
`clicks` int(11) NOT NULL,
`impressions` int(11) NOT NULL,
`ctr` float NOT NULL,
`average_position` float NOT NULL,
`report_date` date NOT NULL,
`source` enum('google','yahoo','bing','baidu','yandex') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'google',
PRIMARY KEY (`id`),
KEY `website_id` (`website_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `alerts`
--
ALTER TABLE `alerts`
ADD CONSTRAINT `alert_user_delete` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION;
--
-- Constraints for table `analytics_properties`
--
ALTER TABLE `analytics_properties`
ADD CONSTRAINT `analytics_properties_user_id_delete` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION;
--
-- Constraints for table `review_links`
--
ALTER TABLE `review_links`
ADD CONSTRAINT `review_links_web_rel` FOREIGN KEY (`website_id`) REFERENCES `websites` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION;
--
-- Constraints for table `review_link_results`
--
ALTER TABLE `review_link_results`
ADD CONSTRAINT `review_link_rel` FOREIGN KEY (`review_link_id`) REFERENCES `review_links` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION;
--
-- Constraints for table `social_media_links`
--
ALTER TABLE `social_media_links`
ADD CONSTRAINT `social_media_links_web_rel` FOREIGN KEY (`website_id`) REFERENCES `websites` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION;
--
-- Constraints for table `social_media_link_results`
--
ALTER TABLE `social_media_link_results`
ADD CONSTRAINT `social_media_link_rel` FOREIGN KEY (`sm_link_id`) REFERENCES `social_media_links` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION;
--
-- Constraints for table `user_website_access`
--
ALTER TABLE `user_website_access`
ADD CONSTRAINT `user_id_website_access_delete` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION,
ADD CONSTRAINT `website_id_user_access_delete` FOREIGN KEY (`website_id`) REFERENCES `websites` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION;
--
-- Constraints for table `website_analytics`
--
ALTER TABLE `website_analytics`
ADD CONSTRAINT `source_analytics_delete` FOREIGN KEY (`source_id`) REFERENCES `analytic_sources` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION,
ADD CONSTRAINT `website_analytics_delete` FOREIGN KEY (`website_id`) REFERENCES `websites` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;