Version Description
- 11/17/2017 =
- Fixed Facebook Admin ID duplicates
- Update the Sitemap XML Custom post types in Admin Settings
- Added image Object in Json-LD if the post has featured image
- Prevent Crons from loading if not necessary
- Prevent 404 page in BudyPress user activity page
- Squirrly SEO is now compatible with WP 4.9
Download this release
Release Info
Developer | cifi |
Plugin | SEO SQUIRRLY™ |
Version | 8.2.26 |
Comparing to | |
See all releases |
Code changes from version 8.2.23 to 8.2.26
- classes/Tools.php +16 -17
- controllers/Frontend.php +1 -1
- controllers/Menu.php +0 -2
- core/BlockSettingsSeo.php +4 -2
- core/Loading.php +4 -1
- languages/squirrly-seo-de_DE.mo +0 -0
- languages/squirrly-seo-de_DE.po +251 -249
- languages/squirrly-seo-ro_RO.mo +0 -0
- languages/squirrly-seo-ro_RO.po +262 -272
- models/Frontend.php +3 -6
- models/services/JsonLD.php +31 -6
- readme.txt +16 -2
- squirrly.php +9 -4
- view/BlockDashboard.php +50 -28
- view/BlockSettings.php +1 -1
- view/BlockSettingsSeo.php +14 -28
- view/FrontMenu.php +13 -13
- view/css/blockdashboard.css +30 -5
- view/css/blockdashboard.min.css +1 -1
- view/css/blockresearch.css +4 -1
- view/css/blockresearch.min.css +1 -1
- view/css/blocksettingsseo.css +1 -1
- view/css/blocksettingsseo.min.css +1 -1
- view/js/blockdashboard.js +1 -1
- view/js/blockdashboard.min.js +1 -1
- view/js/frontmenu.js +20 -16
- view/js/frontmenu.min.js +5 -5
classes/Tools.php
CHANGED
@@ -156,6 +156,10 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
156 |
'sq_google_language' => 'en',
|
157 |
'sq_google_country_strict' => 0,
|
158 |
'sq_google_ranksperhour' => 0,
|
|
|
|
|
|
|
|
|
159 |
// --
|
160 |
'sq_affiliate_link' => '',
|
161 |
'sq_sla' => 1,
|
@@ -379,7 +383,7 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
379 |
}
|
380 |
}
|
381 |
|
382 |
-
return self::$options[$key];
|
383 |
}
|
384 |
|
385 |
|
@@ -422,7 +426,7 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
422 |
}
|
423 |
|
424 |
if (isset(self::$usermeta[$value])) {
|
425 |
-
return self::$usermeta[$value];
|
426 |
}
|
427 |
|
428 |
return false;
|
@@ -468,6 +472,7 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
468 |
'sq_version' => SQ_VERSION_ID,
|
469 |
'sq_use' => self::getOption('sq_use'),
|
470 |
'sq_token' => self::getOption('sq_token'),
|
|
|
471 |
'sq_checkedissues' => self::getOption('sq_checkedissues'),
|
472 |
'sq_areissues' => self::getOption('sq_areissues'),
|
473 |
'sq_auto_canonical' => self::getOption('sq_auto_canonical'),
|
@@ -1394,15 +1399,15 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
1394 |
|
1395 |
public static function checkUpgrade() {
|
1396 |
if (self::getOption('sq_ver') == 0 || self::getOption('sq_ver') < SQ_VERSION_ID) {
|
1397 |
-
//Delete the old versions table
|
1398 |
-
global $wpdb;
|
1399 |
-
$wpdb->query("UPDATE " . $wpdb->postmeta . " SET `meta_key` = '_sq_fp_title' WHERE `meta_key` = 'sq_fp_title'");
|
1400 |
-
$wpdb->query("UPDATE " . $wpdb->postmeta . " SET `meta_key` = '_sq_fp_description' WHERE `meta_key` = 'sq_fp_description'");
|
1401 |
-
$wpdb->query("UPDATE " . $wpdb->postmeta . " SET `meta_key` = '_sq_fp_ogimage' WHERE `meta_key` = 'sq_fp_ogimage'");
|
1402 |
-
$wpdb->query("UPDATE " . $wpdb->postmeta . " SET `meta_key` = '_sq_fp_keywords' WHERE `meta_key` = 'sq_fp_keywords'");
|
1403 |
-
$wpdb->query("UPDATE " . $wpdb->postmeta . " SET `meta_key` = '_sq_post_keyword' WHERE `meta_key` = 'sq_post_keyword'");
|
1404 |
-
|
1405 |
if (self::getOption('sq_ver') < 8200) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1406 |
self::createTable();
|
1407 |
|
1408 |
//Import the SEO from the old format to the new format
|
@@ -1426,13 +1431,7 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
1426 |
self::saveOptions('sq_ver', SQ_VERSION_ID);
|
1427 |
|
1428 |
self::getOptions();
|
1429 |
-
SQ_Classes_Action::apiCall('sq/user/settings', array('settings' => json_encode(self::getBriefOptions())), 10);
|
1430 |
-
|
1431 |
-
global $wp_rewrite;
|
1432 |
-
$wp_rewrite->flush_rules();
|
1433 |
}
|
1434 |
-
|
1435 |
-
|
1436 |
}
|
1437 |
|
1438 |
public static function isAjax() {
|
@@ -1472,7 +1471,7 @@ class SQ_Classes_Tools extends SQ_Classes_FrontController {
|
|
1472 |
}
|
1473 |
|
1474 |
public static function createTable() {
|
1475 |
-
global $wpdb
|
1476 |
$sq_table_query = 'CREATE TABLE IF NOT EXISTS ' . $wpdb->prefix . strtolower(_SQ_DB_) . ' (
|
1477 |
`id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
1478 |
`blog_id` INT(10) NOT NULL,
|
156 |
'sq_google_language' => 'en',
|
157 |
'sq_google_country_strict' => 0,
|
158 |
'sq_google_ranksperhour' => 0,
|
159 |
+
'sq_google_last_checked' => 0,
|
160 |
+
'sq_google_show_ignored' => 0,
|
161 |
+
'sq_google_serp_active' => 0,
|
162 |
+
'sq_google_serp_expired' => 0,
|
163 |
// --
|
164 |
'sq_affiliate_link' => '',
|
165 |
'sq_sla' => 1,
|
383 |
}
|
384 |
}
|
385 |
|
386 |
+
return apply_filters('sq_option_' . $key, self::$options[$key]);
|
387 |
}
|
388 |
|
389 |
|
426 |
}
|
427 |
|
428 |
if (isset(self::$usermeta[$value])) {
|
429 |
+
return apply_filters('sq_usermeta_' . $value, self::$usermeta[$value]);
|
430 |
}
|
431 |
|
432 |
return false;
|
472 |
'sq_version' => SQ_VERSION_ID,
|
473 |
'sq_use' => self::getOption('sq_use'),
|
474 |
'sq_token' => self::getOption('sq_token'),
|
475 |
+
'sq_rest' => rest_get_url_prefix(),
|
476 |
'sq_checkedissues' => self::getOption('sq_checkedissues'),
|
477 |
'sq_areissues' => self::getOption('sq_areissues'),
|
478 |
'sq_auto_canonical' => self::getOption('sq_auto_canonical'),
|
1399 |
|
1400 |
public static function checkUpgrade() {
|
1401 |
if (self::getOption('sq_ver') == 0 || self::getOption('sq_ver') < SQ_VERSION_ID) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1402 |
if (self::getOption('sq_ver') < 8200) {
|
1403 |
+
//Delete the old versions table
|
1404 |
+
global $wpdb;
|
1405 |
+
$wpdb->query("UPDATE " . $wpdb->postmeta . " SET `meta_key` = '_sq_fp_title' WHERE `meta_key` = 'sq_fp_title'");
|
1406 |
+
$wpdb->query("UPDATE " . $wpdb->postmeta . " SET `meta_key` = '_sq_fp_description' WHERE `meta_key` = 'sq_fp_description'");
|
1407 |
+
$wpdb->query("UPDATE " . $wpdb->postmeta . " SET `meta_key` = '_sq_fp_ogimage' WHERE `meta_key` = 'sq_fp_ogimage'");
|
1408 |
+
$wpdb->query("UPDATE " . $wpdb->postmeta . " SET `meta_key` = '_sq_fp_keywords' WHERE `meta_key` = 'sq_fp_keywords'");
|
1409 |
+
$wpdb->query("UPDATE " . $wpdb->postmeta . " SET `meta_key` = '_sq_post_keyword' WHERE `meta_key` = 'sq_post_keyword'");
|
1410 |
+
|
1411 |
self::createTable();
|
1412 |
|
1413 |
//Import the SEO from the old format to the new format
|
1431 |
self::saveOptions('sq_ver', SQ_VERSION_ID);
|
1432 |
|
1433 |
self::getOptions();
|
|
|
|
|
|
|
|
|
1434 |
}
|
|
|
|
|
1435 |
}
|
1436 |
|
1437 |
public static function isAjax() {
|
1471 |
}
|
1472 |
|
1473 |
public static function createTable() {
|
1474 |
+
global $wpdb;
|
1475 |
$sq_table_query = 'CREATE TABLE IF NOT EXISTS ' . $wpdb->prefix . strtolower(_SQ_DB_) . ' (
|
1476 |
`id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
1477 |
`blog_id` INT(10) NOT NULL,
|
controllers/Frontend.php
CHANGED
@@ -13,7 +13,7 @@ class SQ_Controllers_Frontend extends SQ_Classes_FrontController {
|
|
13 |
add_action('template_redirect', array($this, 'hookBuffer'));
|
14 |
|
15 |
//SET THE POST FROM THE BEGINING
|
16 |
-
add_action('template_redirect', array($this->model, 'setPost'),
|
17 |
|
18 |
/* Check if sitemap is on and Load the Sitemap */
|
19 |
if (SQ_Classes_Tools::getOption('sq_auto_sitemap')) SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps');
|
13 |
add_action('template_redirect', array($this, 'hookBuffer'));
|
14 |
|
15 |
//SET THE POST FROM THE BEGINING
|
16 |
+
add_action('template_redirect', array($this->model, 'setPost'), 10);
|
17 |
|
18 |
/* Check if sitemap is on and Load the Sitemap */
|
19 |
if (SQ_Classes_Tools::getOption('sq_auto_sitemap')) SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps');
|
controllers/Menu.php
CHANGED
@@ -22,8 +22,6 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
|
|
22 |
if (current_user_can('manage_options')) {
|
23 |
//check if activated
|
24 |
if (get_transient('sq_activate') == 1) {
|
25 |
-
//create the table
|
26 |
-
SQ_Classes_Tools::createTable();
|
27 |
//Check if there are expected upgrades
|
28 |
SQ_Classes_Tools::checkUpgrade();
|
29 |
|
22 |
if (current_user_can('manage_options')) {
|
23 |
//check if activated
|
24 |
if (get_transient('sq_activate') == 1) {
|
|
|
|
|
25 |
//Check if there are expected upgrades
|
26 |
SQ_Classes_Tools::checkUpgrade();
|
27 |
|
core/BlockSettingsSeo.php
CHANGED
@@ -111,7 +111,9 @@ class SQ_Core_BlockSettingsSeo extends SQ_Classes_BlockController {
|
|
111 |
if (isset($socials['youtube_url'])) $socials['youtube_url'] = $this->model->checkYoutubeAccount($socials['youtube_url']);
|
112 |
|
113 |
$fb_admins = SQ_Classes_Tools::getValue('sq_fb_admins', array());
|
|
|
114 |
if (!empty($fb_admins)) {
|
|
|
115 |
foreach ($fb_admins as $index => $value) {
|
116 |
if (isset($value) && $value == '') {
|
117 |
unset($socials['fb_admins'][$index]);
|
@@ -518,7 +520,7 @@ class SQ_Core_BlockSettingsSeo extends SQ_Classes_BlockController {
|
|
518 |
if (SQ_Classes_Tools::getOption('sq_use') == 1) {
|
519 |
|
520 |
//For Favicon
|
521 |
-
if (SQ_Classes_Tools
|
522 |
$rules['favicon\.ico$'] = 'index.php?sq_get=favicon';
|
523 |
$rules['favicon\.icon$'] = 'index.php?sq_get=favicon';
|
524 |
$rules['touch-icon\.png$'] = 'index.php?sq_get=touchicon';
|
@@ -528,7 +530,7 @@ class SQ_Core_BlockSettingsSeo extends SQ_Classes_BlockController {
|
|
528 |
}
|
529 |
}
|
530 |
|
531 |
-
if (SQ_Classes_Tools
|
532 |
$rules['sqfeedcss$'] = 'index.php?sq_get=feedcss';
|
533 |
}
|
534 |
}
|
111 |
if (isset($socials['youtube_url'])) $socials['youtube_url'] = $this->model->checkYoutubeAccount($socials['youtube_url']);
|
112 |
|
113 |
$fb_admins = SQ_Classes_Tools::getValue('sq_fb_admins', array());
|
114 |
+
$socials['fb_admins'] = array();
|
115 |
if (!empty($fb_admins)) {
|
116 |
+
$fb_admins = array_unique($fb_admins);
|
117 |
foreach ($fb_admins as $index => $value) {
|
118 |
if (isset($value) && $value == '') {
|
119 |
unset($socials['fb_admins'][$index]);
|
520 |
if (SQ_Classes_Tools::getOption('sq_use') == 1) {
|
521 |
|
522 |
//For Favicon
|
523 |
+
if (SQ_Classes_Tools::getOption('sq_auto_favicon') == 1) {
|
524 |
$rules['favicon\.ico$'] = 'index.php?sq_get=favicon';
|
525 |
$rules['favicon\.icon$'] = 'index.php?sq_get=favicon';
|
526 |
$rules['touch-icon\.png$'] = 'index.php?sq_get=touchicon';
|
530 |
}
|
531 |
}
|
532 |
|
533 |
+
if (SQ_Classes_Tools::getOption('sq_auto_feed') == 1) {
|
534 |
$rules['sqfeedcss$'] = 'index.php?sq_get=feedcss';
|
535 |
}
|
536 |
}
|
core/Loading.php
CHANGED
@@ -91,7 +91,10 @@ class SQ_Core_Loading extends SQ_Classes_BlockController {
|
|
91 |
site_head.insertBefore(sq_script, site_head.firstChild);
|
92 |
}
|
93 |
|
94 |
-
|
|
|
|
|
|
|
95 |
$(document).ready(function() {
|
96 |
$("#sq_preloading").html("");
|
97 |
});
|
91 |
site_head.insertBefore(sq_script, site_head.firstChild);
|
92 |
}
|
93 |
|
94 |
+
window.onerror = function(){
|
95 |
+
$.sq_config.sq_windowerror = true;
|
96 |
+
};
|
97 |
+
|
98 |
$(document).ready(function() {
|
99 |
$("#sq_preloading").html("");
|
100 |
});
|
languages/squirrly-seo-de_DE.mo
CHANGED
Binary file
|
languages/squirrly-seo-de_DE.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Squirrly SEO Plugin
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: Squirrly <contact@squirrly.co>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
@@ -60,90 +60,90 @@ msgstr ""
|
|
60 |
msgid "Getting started"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: classes/Tools.php:
|
64 |
msgid "Format"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: classes/Tools.php:
|
68 |
msgid "Category"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: classes/Tools.php:
|
72 |
msgid "Tag"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: classes/Tools.php:
|
76 |
msgid "Shipping Option"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: classes/Tools.php:
|
80 |
msgid "Author at"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/Tools.php:
|
84 |
msgid "You searched for"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: classes/Tools.php:
|
88 |
msgid "Page not found"
|
89 |
msgstr ""
|
90 |
|
91 |
# @ squirrly-seo
|
92 |
-
#: classes/Tools.php:
|
93 |
msgid "Fix it for me!"
|
94 |
msgstr "Beheben Sie es für mich!"
|
95 |
|
96 |
-
#: classes/Tools.php:
|
97 |
msgid "Activate the Squirrly SEO for your blog (recommended)"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: classes/Tools.php:
|
101 |
msgid ""
|
102 |
"You have META Title Duplicates. Disable the Squirrly Title Optimization or "
|
103 |
"disable the other SEO Plugins"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: classes/Tools.php:
|
107 |
msgid ""
|
108 |
"You have META Description Duplicates. Disable the Squirrly Description "
|
109 |
"Optimization or disable the other SEO Plugins"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: classes/Tools.php:
|
113 |
msgid ""
|
114 |
"You have Open Graph META Duplicates. Disable the Squirrly SEO Open Graph or "
|
115 |
"disable the other SEO Plugins"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: classes/Tools.php:
|
119 |
msgid ""
|
120 |
"You have Twitter Card META Duplicates. Disable the Squirrly SEO Twitter Card "
|
121 |
"or disable the other SEO Plugins"
|
122 |
msgstr ""
|
123 |
|
124 |
# @ squirrly-seo
|
125 |
-
#: classes/Tools.php:
|
126 |
msgid "You're blocking google from indexing your site!"
|
127 |
msgstr "Sie blockieren Google zum Indizieren Ihrer Website!"
|
128 |
|
129 |
-
#: classes/Tools.php:
|
130 |
msgid ""
|
131 |
"It is highly recommended that you include the %postname% variable in the "
|
132 |
"permalink structure. <br />Go to Settings > Permalinks and add /%postname%/ "
|
133 |
"in Custom Structure"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: classes/Tools.php:
|
137 |
msgid ""
|
138 |
"It is highly recommended to change or remove the default Wordpress Tagline. "
|
139 |
"<br />Go to Settings > General > Tagline"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: classes/Tools.php:
|
143 |
msgid "Great! We didn't find any issue in your site."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: classes/Tools.php:
|
147 |
msgid "Just another WordPress site"
|
148 |
msgstr ""
|
149 |
|
@@ -260,172 +260,172 @@ msgstr ""
|
|
260 |
msgid "See Your Rank on Google"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: controllers/Menu.php:
|
264 |
msgid "Custom SEO"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: controllers/Menu.php:
|
268 |
msgid ""
|
269 |
"Check out the Squirrly Analytics section. <a href=\"admin.php?page=sq_posts"
|
270 |
"\" title=\"Squirrly Analytics\">Click here</a>"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: controllers/Menu.php:
|
274 |
msgid " Dashboard"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: controllers/Menu.php:
|
278 |
msgid "First Step"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: controllers/Menu.php:
|
282 |
msgid "Dashboard"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: controllers/Menu.php:
|
286 |
msgid " Performance Analytics"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: controllers/Menu.php:
|
290 |
msgid "Performance <br />Analytics"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: controllers/Menu.php:
|
294 |
msgid " Keyword Research"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: controllers/Menu.php:
|
298 |
msgid "Keyword Research"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: controllers/Menu.php:
|
302 |
msgid " Live Assistant"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: controllers/Menu.php:
|
306 |
msgid "Live Assistant"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: controllers/Menu.php:
|
310 |
msgid " Copywriting"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: controllers/Menu.php:
|
314 |
msgid "Copywriting"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: controllers/Menu.php:
|
318 |
msgid " SEO Audit"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: controllers/Menu.php:
|
322 |
msgid "Site Audit"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: controllers/Menu.php:
|
326 |
msgid " SEO Settings"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: controllers/Menu.php:
|
330 |
msgid "SEO Settings"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: controllers/Menu.php:
|
334 |
msgid " Advanced Settings"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: controllers/Menu.php:
|
338 |
msgid "Advanced Settings"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: controllers/Menu.php:
|
342 |
msgid " SEO Patterns"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: controllers/Menu.php:
|
346 |
msgid "Patterns"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: controllers/Menu.php:
|
350 |
msgid " Account Info"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: controllers/Menu.php:
|
354 |
msgid "Account Info"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: controllers/Menu.php:
|
358 |
msgid " Support"
|
359 |
msgstr ""
|
360 |
|
361 |
# @ squirrly-seo
|
362 |
-
#: controllers/Menu.php:
|
363 |
msgid "Support"
|
364 |
msgstr "Support"
|
365 |
|
366 |
-
#: controllers/Menu.php:
|
367 |
msgid "Become an Affiliate with "
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: controllers/Menu.php:
|
371 |
msgid "Become an Affiliate"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: controllers/Menu.php:
|
375 |
msgid "Import SEO "
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: controllers/Menu.php:
|
379 |
msgid "Import SEO"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: controllers/Menu.php:
|
383 |
#, php-format
|
384 |
msgid "Go back and complete the Squirrly Tasks for today %sContinue%s"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: controllers/Menu.php:
|
388 |
msgid "SEO Snippet"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: controllers/PostsList.php:
|
392 |
msgid "Squirrly"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: controllers/PostsList.php:
|
396 |
msgid "Custom description: "
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: controllers/PostsList.php:
|
400 |
msgid "Custom title: "
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: controllers/PostsList.php:
|
404 |
msgid "SEO Analytics, by Squirrly"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: controllers/PostsList.php:
|
408 |
msgid "Update"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: controllers/PostsList.php:
|
412 |
msgid "Not Public"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: controllers/PostsList.php:
|
416 |
msgid "Could not process"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: controllers/PostsList.php:
|
420 |
#, php-format
|
421 |
msgid "Not in top 100 for: %s"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: controllers/PostsList.php:
|
425 |
msgid "The URL is Indexed"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: controllers/PostsList.php:
|
429 |
#: models/BlockPostsAnalytics.php:438
|
430 |
#, php-format
|
431 |
msgid "%s"
|
@@ -658,44 +658,48 @@ msgstr "In Artikel einfügen"
|
|
658 |
msgid ":( An error occurred while processing your request. Please try again"
|
659 |
msgstr ""
|
660 |
|
661 |
-
# @ squirrly-seo
|
662 |
#: core/Loading.php:58
|
|
|
|
|
|
|
|
|
|
|
663 |
msgid "No results found!"
|
664 |
msgstr "Keine Ergebnisse gefunden!"
|
665 |
|
666 |
-
#: core/Loading.php:
|
667 |
msgid "Enter one more word to find relevant results"
|
668 |
msgstr ""
|
669 |
|
670 |
# @ squirrly-seo
|
671 |
-
#: core/Loading.php:
|
672 |
msgid "Takes too long to check this keyword ..."
|
673 |
msgstr "Dauert zu lange, um dieses Schlüsselwort zu überprüfen ..."
|
674 |
|
675 |
# @ squirrly-seo
|
676 |
-
#: core/Loading.php:
|
677 |
msgid "Do a research!"
|
678 |
msgstr "Erweiterte Suche!"
|
679 |
|
680 |
# @ squirrly-seo
|
681 |
-
#: core/Loading.php:
|
682 |
msgid "Do more research!"
|
683 |
msgstr "Erweiterte Suche!"
|
684 |
|
685 |
-
#: core/Loading.php:
|
686 |
#, php-format
|
687 |
msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: core/Loading.php:
|
691 |
msgid "Has creative commons attributes"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: core/Loading.php:
|
695 |
msgid "No known copyright restrictions"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: core/Loading.php:
|
699 |
msgid ""
|
700 |
"You haven`t used Squirrly SEO to optimize your article. Do you want to "
|
701 |
"optimize for a keyword before publishing?"
|
@@ -703,75 +707,75 @@ msgstr ""
|
|
703 |
"You haven`t used Squirrly SEO to optimize your article. Do you want to "
|
704 |
"optimize for a keyword before publishing?"
|
705 |
|
706 |
-
#: core/Loading.php:
|
707 |
msgid "Keyword Research limit exceeded"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: core/Loading.php:
|
711 |
msgid "Your Subscription has Expired"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: core/Loading.php:
|
715 |
msgid "Add 20 Keyword Researches"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: core/Loading.php:
|
719 |
msgid "There are no keywords saved in briefcase yet"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: core/Loading.php:
|
723 |
#, php-format
|
724 |
msgid "Congratulations! Your article is 100% optimized!"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: core/Loading.php:
|
728 |
#, php-format
|
729 |
msgid "appears too many times. Try to remove %s of them"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: core/Loading.php:
|
733 |
#, php-format
|
734 |
msgid "write %s more words"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: core/Loading.php:
|
738 |
#, php-format
|
739 |
msgid "Add the keyword in the %s of your article"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: core/Loading.php:
|
743 |
msgid "Click to keep the highlight on"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: core/Loading.php:
|
747 |
msgid "introduction"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: core/Loading.php:
|
751 |
#, php-format
|
752 |
msgid "Write more words after the %s keyword"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: core/Loading.php:
|
756 |
msgid "or use synonyms"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: core/Loading.php:
|
760 |
#, php-format
|
761 |
msgid "add %s more word(s)"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: core/Loading.php:
|
765 |
#, php-format
|
766 |
msgid "or remove %s word(s)"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: core/Loading.php:
|
770 |
#, php-format
|
771 |
msgid "add %s more keyword(s)"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: core/Loading.php:
|
775 |
#, php-format
|
776 |
msgid "write %s more words to start calculating"
|
777 |
msgstr ""
|
@@ -1481,19 +1485,11 @@ msgid ""
|
|
1481 |
"SEO potential"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: view/BlockDashboard.php:
|
1485 |
-
msgid "Now with a fresh one right out of our Squirrly Labs!"
|
1486 |
-
msgstr ""
|
1487 |
-
|
1488 |
-
#: view/BlockDashboard.php:52
|
1489 |
-
msgid "Get It Here"
|
1490 |
-
msgstr ""
|
1491 |
-
|
1492 |
-
#: view/BlockDashboard.php:128
|
1493 |
msgid "Next Feature"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: view/BlockDashboard.php:
|
1497 |
msgid "Previous Feature"
|
1498 |
msgstr ""
|
1499 |
|
@@ -1699,18 +1695,19 @@ msgstr ""
|
|
1699 |
#: view/BlockPatterns.php:118 view/BlockPatterns.php:132
|
1700 |
#: view/BlockPatterns.php:149 view/BlockSettings.php:135
|
1701 |
#: view/BlockSettings.php:146 view/BlockSettings.php:157
|
1702 |
-
#: view/BlockSettings.php:168 view/BlockSettings.php:
|
1703 |
-
#: view/BlockSettings.php:
|
1704 |
-
#: view/
|
1705 |
-
#: view/BlockSettingsSeo.php:
|
1706 |
-
#: view/BlockSettingsSeo.php:
|
1707 |
-
#: view/BlockSettingsSeo.php:
|
1708 |
-
#: view/BlockSettingsSeo.php:
|
1709 |
-
#: view/BlockSettingsSeo.php:
|
1710 |
-
#: view/BlockSettingsSeo.php:
|
1711 |
-
#: view/BlockSettingsSeo.php:
|
1712 |
-
#: view/BlockSettingsSeo.php:
|
1713 |
-
#: view/FrontMenu.php:
|
|
|
1714 |
msgid "Yes"
|
1715 |
msgstr "Ja"
|
1716 |
|
@@ -1718,18 +1715,19 @@ msgstr "Ja"
|
|
1718 |
#: view/BlockPatterns.php:120 view/BlockPatterns.php:134
|
1719 |
#: view/BlockPatterns.php:151 view/BlockSettings.php:137
|
1720 |
#: view/BlockSettings.php:148 view/BlockSettings.php:159
|
1721 |
-
#: view/BlockSettings.php:170 view/BlockSettings.php:
|
1722 |
-
#: view/BlockSettings.php:
|
1723 |
-
#: view/
|
1724 |
-
#: view/BlockSettingsSeo.php:
|
1725 |
-
#: view/BlockSettingsSeo.php:
|
1726 |
-
#: view/BlockSettingsSeo.php:
|
1727 |
-
#: view/BlockSettingsSeo.php:
|
1728 |
-
#: view/BlockSettingsSeo.php:
|
1729 |
-
#: view/BlockSettingsSeo.php:
|
1730 |
-
#: view/BlockSettingsSeo.php:
|
1731 |
-
#: view/BlockSettingsSeo.php:
|
1732 |
-
#: view/FrontMenu.php:
|
|
|
1733 |
msgid "No"
|
1734 |
msgstr "Nein"
|
1735 |
|
@@ -1787,7 +1785,7 @@ msgid ""
|
|
1787 |
msgstr ""
|
1788 |
|
1789 |
# @ squirrly-seo
|
1790 |
-
#: view/BlockSettings.php:24 view/BlockSettings.php:
|
1791 |
msgid "Save settings"
|
1792 |
msgstr "Einstellungen speichern"
|
1793 |
|
@@ -1874,515 +1872,519 @@ msgstr ""
|
|
1874 |
msgid "Use <strong> the NEW version of the SEO Live Assistant</strong>."
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
#: view/BlockSettings.php:
|
|
|
|
|
|
|
|
|
1878 |
msgid ""
|
1879 |
"Download <strong>remote images</strong> in your <strong>Media Library</"
|
1880 |
"strong> for the new posts."
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: view/BlockSettings.php:
|
1884 |
msgid ""
|
1885 |
"Correct my <strong>feed links</strong> and <strong>images</strong> (convert "
|
1886 |
"from relative to absolute)."
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: view/BlockSettings.php:
|
1890 |
msgid "Google Rank Options"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: view/BlockSettings.php:
|
1894 |
#, php-format
|
1895 |
msgid "%sCountry targeting%s"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: view/BlockSettings.php:
|
1899 |
#, php-format
|
1900 |
msgid "%sPowerful SEO Tool For Strong Google Rankings%s"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: view/BlockSettings.php:
|
1904 |
msgid ""
|
1905 |
-
"Select the Google
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: view/BlockSettings.php:
|
1909 |
msgid "Default"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: view/BlockSettings.php:
|
1913 |
msgid "American Samoa"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: view/BlockSettings.php:
|
1917 |
msgid "Anguilla"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#: view/BlockSettings.php:
|
1921 |
msgid "Antigua and Barbuda"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: view/BlockSettings.php:
|
1925 |
msgid "Argentina"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: view/BlockSettings.php:
|
1929 |
msgid "Australia"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: view/BlockSettings.php:
|
1933 |
msgid "Austria"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#: view/BlockSettings.php:
|
1937 |
msgid "Azerbaijan"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#: view/BlockSettings.php:
|
1941 |
msgid "Belgium"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: view/BlockSettings.php:
|
1945 |
msgid "Brazil"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: view/BlockSettings.php:
|
1949 |
msgid "British Virgin Islands"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: view/BlockSettings.php:
|
1953 |
msgid "Burundi"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: view/BlockSettings.php:
|
1957 |
msgid "Bulgaria"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: view/BlockSettings.php:
|
1961 |
msgid "Canada"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: view/BlockSettings.php:
|
1965 |
msgid "Chad"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: view/BlockSettings.php:
|
1969 |
msgid "Chile"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: view/BlockSettings.php:
|
1973 |
msgid "Colombia"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: view/BlockSettings.php:
|
1977 |
msgid "Costa Rica"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: view/BlockSettings.php:
|
1981 |
msgid "Côte d'Ivoire"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: view/BlockSettings.php:
|
1985 |
msgid "Cuba"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#: view/BlockSettings.php:
|
1989 |
msgid "Czech Republic"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
-
#: view/BlockSettings.php:
|
1993 |
msgid "Dem. Rep. of the Congo"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
-
#: view/BlockSettings.php:
|
1997 |
msgid "Denmark"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: view/BlockSettings.php:
|
2001 |
msgid "Djibouti"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: view/BlockSettings.php:
|
2005 |
msgid "Dominican Republic"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#: view/BlockSettings.php:
|
2009 |
msgid "Ecuador"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: view/BlockSettings.php:
|
2013 |
msgid "El Salvador"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: view/BlockSettings.php:
|
2017 |
msgid "Estonia"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: view/BlockSettings.php:
|
2021 |
msgid "Federated States of Micronesia"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: view/BlockSettings.php:
|
2025 |
msgid "Fiji"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: view/BlockSettings.php:
|
2029 |
msgid "Finland"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: view/BlockSettings.php:
|
2033 |
msgid "France"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: view/BlockSettings.php:
|
2037 |
msgid "The Gambia"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: view/BlockSettings.php:
|
2041 |
msgid "Georgia"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: view/BlockSettings.php:
|
2045 |
msgid "Germany"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: view/BlockSettings.php:
|
2049 |
msgid "Gibraltar"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: view/BlockSettings.php:
|
2053 |
msgid "Greece"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: view/BlockSettings.php:
|
2057 |
msgid "Greenland"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: view/BlockSettings.php:
|
2061 |
msgid "Guernsey"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: view/BlockSettings.php:
|
2065 |
msgid "Honduras"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#: view/BlockSettings.php:
|
2069 |
msgid "Hong Kong"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: view/BlockSettings.php:
|
2073 |
msgid "Hungary"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: view/BlockSettings.php:
|
2077 |
msgid "India"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: view/BlockSettings.php:
|
2081 |
msgid "Indonesia"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: view/BlockSettings.php:
|
2085 |
msgid "Ireland"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: view/BlockSettings.php:
|
2089 |
msgid "Isle of Man"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: view/BlockSettings.php:
|
2093 |
msgid "Israel"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: view/BlockSettings.php:
|
2097 |
msgid "Italy"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: view/BlockSettings.php:
|
2101 |
msgid "Jamaica"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: view/BlockSettings.php:
|
2105 |
msgid "Japan"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: view/BlockSettings.php:
|
2109 |
msgid "Jersey"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: view/BlockSettings.php:
|
2113 |
msgid "Kazakhstan"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: view/BlockSettings.php:
|
2117 |
msgid "Korea"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: view/BlockSettings.php:
|
2121 |
msgid "Latvia"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: view/BlockSettings.php:
|
2125 |
msgid "Lesotho"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: view/BlockSettings.php:
|
2129 |
msgid "Liechtenstein"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: view/BlockSettings.php:
|
2133 |
msgid "Lithuania"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: view/BlockSettings.php:
|
2137 |
msgid "Luxembourg"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: view/BlockSettings.php:
|
2141 |
msgid "Malawi"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: view/BlockSettings.php:
|
2145 |
msgid "Malaysia"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: view/BlockSettings.php:
|
2149 |
msgid "Malta"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: view/BlockSettings.php:
|
2153 |
msgid "Mauritius"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: view/BlockSettings.php:
|
2157 |
msgid "México"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#: view/BlockSettings.php:
|
2161 |
msgid "Montserrat"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: view/BlockSettings.php:
|
2165 |
msgid "Namibia"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: view/BlockSettings.php:
|
2169 |
msgid "Nepal"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: view/BlockSettings.php:
|
2173 |
msgid "Netherlands"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: view/BlockSettings.php:
|
2177 |
msgid "New Zealand"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: view/BlockSettings.php:
|
2181 |
msgid "Nicaragua"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: view/BlockSettings.php:
|
2185 |
msgid "Norfolk Island"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: view/BlockSettings.php:
|
2189 |
msgid "Norway"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#: view/BlockSettings.php:
|
2193 |
msgid "Pakistan"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: view/BlockSettings.php:
|
2197 |
msgid "Panamá"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: view/BlockSettings.php:
|
2201 |
msgid "Paraguay"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#: view/BlockSettings.php:
|
2205 |
msgid "Perú"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: view/BlockSettings.php:
|
2209 |
msgid "Philippines"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: view/BlockSettings.php:
|
2213 |
msgid "Pitcairn Islands"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: view/BlockSettings.php:
|
2217 |
msgid "Poland"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: view/BlockSettings.php:
|
2221 |
msgid "Portugal"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: view/BlockSettings.php:
|
2225 |
msgid "Puerto Rico"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: view/BlockSettings.php:
|
2229 |
msgid "Rep. of the Congo"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: view/BlockSettings.php:
|
2233 |
msgid "Romania"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: view/BlockSettings.php:
|
2237 |
msgid "Russia"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: view/BlockSettings.php:
|
2241 |
msgid "Rwanda"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: view/BlockSettings.php:
|
2245 |
msgid "Saint Helena"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: view/BlockSettings.php:
|
2249 |
msgid "San Marino"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
-
#: view/BlockSettings.php:
|
2253 |
msgid "Saudi Arabia"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: view/BlockSettings.php:
|
2257 |
msgid "Singapore"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: view/BlockSettings.php:
|
2261 |
msgid "Slovakia"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: view/BlockSettings.php:
|
2265 |
msgid "South Africa"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: view/BlockSettings.php:
|
2269 |
msgid "Spain"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: view/BlockSettings.php:
|
2273 |
msgid "Sri Lanka"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: view/BlockSettings.php:
|
2277 |
msgid "Sweden"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: view/BlockSettings.php:
|
2281 |
msgid "Switzerland"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: view/BlockSettings.php:
|
2285 |
msgid "Taiwan"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: view/BlockSettings.php:
|
2289 |
msgid "Thailand"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: view/BlockSettings.php:
|
2293 |
msgid "Trinidad and Tobago"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: view/BlockSettings.php:
|
2297 |
msgid "Turkey"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: view/BlockSettings.php:
|
2301 |
msgid "Ukraine"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: view/BlockSettings.php:
|
2305 |
msgid "United Arab Emirates"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: view/BlockSettings.php:
|
2309 |
msgid "United Kingdom"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#: view/BlockSettings.php:
|
2313 |
msgid "United States"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#: view/BlockSettings.php:
|
2317 |
msgid "Uruguay"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: view/BlockSettings.php:
|
2321 |
msgid "Uzbekistan"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#: view/BlockSettings.php:
|
2325 |
msgid "Vanuatu"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: view/BlockSettings.php:
|
2329 |
msgid "Venezuela"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
-
#: view/BlockSettings.php:
|
2333 |
msgid "Vietnam"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: view/BlockSettings.php:
|
2337 |
#, php-format
|
2338 |
msgid ""
|
2339 |
"Select how many pages to be checked in the Performance Analytics section "
|
2340 |
"every hour. %s(not recommended for shared hosting plan)%s"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: view/BlockSettings.php:
|
2344 |
msgid "page"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: view/BlockSettings.php:
|
2348 |
msgid "pages"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: view/BlockSettings.php:
|
2352 |
msgid "h"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: view/BlockSettings.php:
|
2356 |
msgid ""
|
2357 |
"Restricts search results to results originating in the above particular "
|
2358 |
"country."
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: view/BlockSettings.php:
|
2362 |
msgid "Robots.txt Editor"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: view/BlockSettings.php:
|
2366 |
#, php-format
|
2367 |
msgid "%sLearn about robots.txt files%s"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: view/BlockSettings.php:
|
2371 |
#, php-format
|
2372 |
msgid "%sHow to use Robots.txt%s"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: view/BlockSettings.php:
|
2376 |
msgid "Edit the Robots.txt data"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: view/BlockSettings.php:
|
2380 |
msgid ""
|
2381 |
"Does not physically create the robots.txt file. The best option for "
|
2382 |
"Multisites."
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#: view/BlockSettings.php:
|
2386 |
msgid "Save Robots"
|
2387 |
msgstr ""
|
2388 |
|
@@ -2860,7 +2862,7 @@ msgid "%sGoogle Testing Tool%s"
|
|
2860 |
msgstr ""
|
2861 |
|
2862 |
#: view/BlockSettingsSeo.php:849
|
2863 |
-
msgid "JSON-LD G17 -2x More Options"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
#: view/BlockSettingsSeo.php:866
|
@@ -3006,7 +3008,7 @@ msgid "Facebook ID or https://www.facebook.com/YourProfileName"
|
|
3006 |
msgstr ""
|
3007 |
|
3008 |
#: view/BlockSettingsSeo.php:1002
|
3009 |
-
msgid "Add
|
3010 |
msgstr ""
|
3011 |
|
3012 |
#: view/BlockSettingsSeo.php:1016
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Squirrly SEO Plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-11-09 16:53+0200\n"
|
6 |
+
"PO-Revision-Date: 2017-11-09 16:53+0200\n"
|
7 |
"Last-Translator: Squirrly <contact@squirrly.co>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
60 |
msgid "Getting started"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: classes/Tools.php:240
|
64 |
msgid "Format"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: classes/Tools.php:248 classes/Tools.php:264
|
68 |
msgid "Category"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: classes/Tools.php:256 classes/Tools.php:272
|
72 |
msgid "Tag"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: classes/Tools.php:280
|
76 |
msgid "Shipping Option"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Tools.php:288
|
80 |
msgid "Author at"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Tools.php:320
|
84 |
msgid "You searched for"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: classes/Tools.php:336
|
88 |
msgid "Page not found"
|
89 |
msgstr ""
|
90 |
|
91 |
# @ squirrly-seo
|
92 |
+
#: classes/Tools.php:857
|
93 |
msgid "Fix it for me!"
|
94 |
msgstr "Beheben Sie es für mich!"
|
95 |
|
96 |
+
#: classes/Tools.php:863
|
97 |
msgid "Activate the Squirrly SEO for your blog (recommended)"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: classes/Tools.php:874
|
101 |
msgid ""
|
102 |
"You have META Title Duplicates. Disable the Squirrly Title Optimization or "
|
103 |
"disable the other SEO Plugins"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: classes/Tools.php:882
|
107 |
msgid ""
|
108 |
"You have META Description Duplicates. Disable the Squirrly Description "
|
109 |
"Optimization or disable the other SEO Plugins"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: classes/Tools.php:890
|
113 |
msgid ""
|
114 |
"You have Open Graph META Duplicates. Disable the Squirrly SEO Open Graph or "
|
115 |
"disable the other SEO Plugins"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: classes/Tools.php:898
|
119 |
msgid ""
|
120 |
"You have Twitter Card META Duplicates. Disable the Squirrly SEO Twitter Card "
|
121 |
"or disable the other SEO Plugins"
|
122 |
msgstr ""
|
123 |
|
124 |
# @ squirrly-seo
|
125 |
+
#: classes/Tools.php:907
|
126 |
msgid "You're blocking google from indexing your site!"
|
127 |
msgstr "Sie blockieren Google zum Indizieren Ihrer Website!"
|
128 |
|
129 |
+
#: classes/Tools.php:914
|
130 |
msgid ""
|
131 |
"It is highly recommended that you include the %postname% variable in the "
|
132 |
"permalink structure. <br />Go to Settings > Permalinks and add /%postname%/ "
|
133 |
"in Custom Structure"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: classes/Tools.php:921
|
137 |
msgid ""
|
138 |
"It is highly recommended to change or remove the default Wordpress Tagline. "
|
139 |
"<br />Go to Settings > General > Tagline"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: classes/Tools.php:927
|
143 |
msgid "Great! We didn't find any issue in your site."
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: classes/Tools.php:1072
|
147 |
msgid "Just another WordPress site"
|
148 |
msgstr ""
|
149 |
|
260 |
msgid "See Your Rank on Google"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: controllers/Menu.php:157
|
264 |
msgid "Custom SEO"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: controllers/Menu.php:200
|
268 |
msgid ""
|
269 |
"Check out the Squirrly Analytics section. <a href=\"admin.php?page=sq_posts"
|
270 |
"\" title=\"Squirrly Analytics\">Click here</a>"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: controllers/Menu.php:219
|
274 |
msgid " Dashboard"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: controllers/Menu.php:220
|
278 |
msgid "First Step"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: controllers/Menu.php:220
|
282 |
msgid "Dashboard"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: controllers/Menu.php:229
|
286 |
msgid " Performance Analytics"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: controllers/Menu.php:230
|
290 |
msgid "Performance <br />Analytics"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: controllers/Menu.php:238
|
294 |
msgid " Keyword Research"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: controllers/Menu.php:239
|
298 |
msgid "Keyword Research"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: controllers/Menu.php:246
|
302 |
msgid " Live Assistant"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: controllers/Menu.php:247
|
306 |
msgid "Live Assistant"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: controllers/Menu.php:253
|
310 |
msgid " Copywriting"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: controllers/Menu.php:254
|
314 |
msgid "Copywriting"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: controllers/Menu.php:262
|
318 |
msgid " SEO Audit"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: controllers/Menu.php:263
|
322 |
msgid "Site Audit"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: controllers/Menu.php:271
|
326 |
msgid " SEO Settings"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: controllers/Menu.php:272 view/BlockToolbar.php:4
|
330 |
msgid "SEO Settings"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: controllers/Menu.php:280
|
334 |
msgid " Advanced Settings"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: controllers/Menu.php:281 view/BlockSettings.php:22
|
338 |
msgid "Advanced Settings"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: controllers/Menu.php:288
|
342 |
msgid " SEO Patterns"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: controllers/Menu.php:289 view/BlockToolbar.php:14
|
346 |
msgid "Patterns"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: controllers/Menu.php:296
|
350 |
msgid " Account Info"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: controllers/Menu.php:297
|
354 |
msgid "Account Info"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: controllers/Menu.php:304
|
358 |
msgid " Support"
|
359 |
msgstr ""
|
360 |
|
361 |
# @ squirrly-seo
|
362 |
+
#: controllers/Menu.php:305 view/BlockSupport.php:18
|
363 |
msgid "Support"
|
364 |
msgstr "Support"
|
365 |
|
366 |
+
#: controllers/Menu.php:312
|
367 |
msgid "Become an Affiliate with "
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: controllers/Menu.php:313
|
371 |
msgid "Become an Affiliate"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: controllers/Menu.php:321
|
375 |
msgid "Import SEO "
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: controllers/Menu.php:322 view/BlockImport.php:77
|
379 |
msgid "Import SEO"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: controllers/Menu.php:349
|
383 |
#, php-format
|
384 |
msgid "Go back and complete the Squirrly Tasks for today %sContinue%s"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: controllers/Menu.php:361
|
388 |
msgid "SEO Snippet"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: controllers/PostsList.php:83
|
392 |
msgid "Squirrly"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: controllers/PostsList.php:110
|
396 |
msgid "Custom description: "
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: controllers/PostsList.php:110
|
400 |
msgid "Custom title: "
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: controllers/PostsList.php:148
|
404 |
msgid "SEO Analytics, by Squirrly"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: controllers/PostsList.php:149 view/Blockseo.php:10
|
408 |
msgid "Update"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: controllers/PostsList.php:153
|
412 |
msgid "Not Public"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: controllers/PostsList.php:154
|
416 |
msgid "Could not process"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: controllers/PostsList.php:309 controllers/PostsList.php:327
|
420 |
#, php-format
|
421 |
msgid "Not in top 100 for: %s"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: controllers/PostsList.php:311 controllers/PostsList.php:329
|
425 |
msgid "The URL is Indexed"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: controllers/PostsList.php:313 controllers/PostsList.php:331
|
429 |
#: models/BlockPostsAnalytics.php:438
|
430 |
#, php-format
|
431 |
msgid "%s"
|
658 |
msgid ":( An error occurred while processing your request. Please try again"
|
659 |
msgstr ""
|
660 |
|
|
|
661 |
#: core/Loading.php:58
|
662 |
+
msgid "Keyword Research takes too long to get the results. Click to try again"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
# @ squirrly-seo
|
666 |
+
#: core/Loading.php:59
|
667 |
msgid "No results found!"
|
668 |
msgstr "Keine Ergebnisse gefunden!"
|
669 |
|
670 |
+
#: core/Loading.php:60
|
671 |
msgid "Enter one more word to find relevant results"
|
672 |
msgstr ""
|
673 |
|
674 |
# @ squirrly-seo
|
675 |
+
#: core/Loading.php:61
|
676 |
msgid "Takes too long to check this keyword ..."
|
677 |
msgstr "Dauert zu lange, um dieses Schlüsselwort zu überprüfen ..."
|
678 |
|
679 |
# @ squirrly-seo
|
680 |
+
#: core/Loading.php:62
|
681 |
msgid "Do a research!"
|
682 |
msgstr "Erweiterte Suche!"
|
683 |
|
684 |
# @ squirrly-seo
|
685 |
+
#: core/Loading.php:63
|
686 |
msgid "Do more research!"
|
687 |
msgstr "Erweiterte Suche!"
|
688 |
|
689 |
+
#: core/Loading.php:64
|
690 |
#, php-format
|
691 |
msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: core/Loading.php:65
|
695 |
msgid "Has creative commons attributes"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: core/Loading.php:66
|
699 |
msgid "No known copyright restrictions"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: core/Loading.php:67
|
703 |
msgid ""
|
704 |
"You haven`t used Squirrly SEO to optimize your article. Do you want to "
|
705 |
"optimize for a keyword before publishing?"
|
707 |
"You haven`t used Squirrly SEO to optimize your article. Do you want to "
|
708 |
"optimize for a keyword before publishing?"
|
709 |
|
710 |
+
#: core/Loading.php:68
|
711 |
msgid "Keyword Research limit exceeded"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: core/Loading.php:69
|
715 |
msgid "Your Subscription has Expired"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: core/Loading.php:70
|
719 |
msgid "Add 20 Keyword Researches"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: core/Loading.php:71
|
723 |
msgid "There are no keywords saved in briefcase yet"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: core/Loading.php:72
|
727 |
#, php-format
|
728 |
msgid "Congratulations! Your article is 100% optimized!"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: core/Loading.php:73
|
732 |
#, php-format
|
733 |
msgid "appears too many times. Try to remove %s of them"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: core/Loading.php:74
|
737 |
#, php-format
|
738 |
msgid "write %s more words"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: core/Loading.php:75
|
742 |
#, php-format
|
743 |
msgid "Add the keyword in the %s of your article"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: core/Loading.php:76
|
747 |
msgid "Click to keep the highlight on"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: core/Loading.php:77
|
751 |
msgid "introduction"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: core/Loading.php:78
|
755 |
#, php-format
|
756 |
msgid "Write more words after the %s keyword"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: core/Loading.php:79
|
760 |
msgid "or use synonyms"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: core/Loading.php:80
|
764 |
#, php-format
|
765 |
msgid "add %s more word(s)"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: core/Loading.php:81
|
769 |
#, php-format
|
770 |
msgid "or remove %s word(s)"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: core/Loading.php:82
|
774 |
#, php-format
|
775 |
msgid "add %s more keyword(s)"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: core/Loading.php:83
|
779 |
#, php-format
|
780 |
msgid "write %s more words to start calculating"
|
781 |
msgstr ""
|
1485 |
"SEO potential"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: view/BlockDashboard.php:47 view/BlockDashboard.php:150
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1489 |
msgid "Next Feature"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: view/BlockDashboard.php:48 view/BlockDashboard.php:151
|
1493 |
msgid "Previous Feature"
|
1494 |
msgstr ""
|
1495 |
|
1695 |
#: view/BlockPatterns.php:118 view/BlockPatterns.php:132
|
1696 |
#: view/BlockPatterns.php:149 view/BlockSettings.php:135
|
1697 |
#: view/BlockSettings.php:146 view/BlockSettings.php:157
|
1698 |
+
#: view/BlockSettings.php:168 view/BlockSettings.php:179
|
1699 |
+
#: view/BlockSettings.php:191 view/BlockSettings.php:203
|
1700 |
+
#: view/BlockSettings.php:366 view/BlockSettingsSeo.php:53
|
1701 |
+
#: view/BlockSettingsSeo.php:95 view/BlockSettingsSeo.php:112
|
1702 |
+
#: view/BlockSettingsSeo.php:128 view/BlockSettingsSeo.php:144
|
1703 |
+
#: view/BlockSettingsSeo.php:160 view/BlockSettingsSeo.php:176
|
1704 |
+
#: view/BlockSettingsSeo.php:192 view/BlockSettingsSeo.php:220
|
1705 |
+
#: view/BlockSettingsSeo.php:236 view/BlockSettingsSeo.php:252
|
1706 |
+
#: view/BlockSettingsSeo.php:271 view/BlockSettingsSeo.php:546
|
1707 |
+
#: view/BlockSettingsSeo.php:578 view/BlockSettingsSeo.php:586
|
1708 |
+
#: view/BlockSettingsSeo.php:684 view/BlockSettingsSeo.php:1030
|
1709 |
+
#: view/FrontMenu.php:49 view/FrontMenu.php:508 view/FrontMenu.php:521
|
1710 |
+
#: view/FrontMenu.php:534
|
1711 |
msgid "Yes"
|
1712 |
msgstr "Ja"
|
1713 |
|
1715 |
#: view/BlockPatterns.php:120 view/BlockPatterns.php:134
|
1716 |
#: view/BlockPatterns.php:151 view/BlockSettings.php:137
|
1717 |
#: view/BlockSettings.php:148 view/BlockSettings.php:159
|
1718 |
+
#: view/BlockSettings.php:170 view/BlockSettings.php:181
|
1719 |
+
#: view/BlockSettings.php:193 view/BlockSettings.php:205
|
1720 |
+
#: view/BlockSettings.php:368 view/BlockSettingsSeo.php:55
|
1721 |
+
#: view/BlockSettingsSeo.php:97 view/BlockSettingsSeo.php:114
|
1722 |
+
#: view/BlockSettingsSeo.php:130 view/BlockSettingsSeo.php:146
|
1723 |
+
#: view/BlockSettingsSeo.php:162 view/BlockSettingsSeo.php:178
|
1724 |
+
#: view/BlockSettingsSeo.php:194 view/BlockSettingsSeo.php:222
|
1725 |
+
#: view/BlockSettingsSeo.php:238 view/BlockSettingsSeo.php:254
|
1726 |
+
#: view/BlockSettingsSeo.php:273 view/BlockSettingsSeo.php:548
|
1727 |
+
#: view/BlockSettingsSeo.php:580 view/BlockSettingsSeo.php:588
|
1728 |
+
#: view/BlockSettingsSeo.php:686 view/BlockSettingsSeo.php:1032
|
1729 |
+
#: view/FrontMenu.php:51 view/FrontMenu.php:510 view/FrontMenu.php:523
|
1730 |
+
#: view/FrontMenu.php:536
|
1731 |
msgid "No"
|
1732 |
msgstr "Nein"
|
1733 |
|
1785 |
msgstr ""
|
1786 |
|
1787 |
# @ squirrly-seo
|
1788 |
+
#: view/BlockSettings.php:24 view/BlockSettings.php:416
|
1789 |
msgid "Save settings"
|
1790 |
msgstr "Einstellungen speichern"
|
1791 |
|
1872 |
msgid "Use <strong> the NEW version of the SEO Live Assistant</strong>."
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: view/BlockSettings.php:184
|
1876 |
+
msgid "Load <strong>Squirrly SEO Snippet in Frontend</strong> too."
|
1877 |
+
msgstr ""
|
1878 |
+
|
1879 |
+
#: view/BlockSettings.php:196
|
1880 |
msgid ""
|
1881 |
"Download <strong>remote images</strong> in your <strong>Media Library</"
|
1882 |
"strong> for the new posts."
|
1883 |
msgstr ""
|
1884 |
|
1885 |
+
#: view/BlockSettings.php:208
|
1886 |
msgid ""
|
1887 |
"Correct my <strong>feed links</strong> and <strong>images</strong> (convert "
|
1888 |
"from relative to absolute)."
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: view/BlockSettings.php:218
|
1892 |
msgid "Google Rank Options"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: view/BlockSettings.php:219
|
1896 |
#, php-format
|
1897 |
msgid "%sCountry targeting%s"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: view/BlockSettings.php:220
|
1901 |
#, php-format
|
1902 |
msgid "%sPowerful SEO Tool For Strong Google Rankings%s"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: view/BlockSettings.php:227
|
1906 |
msgid ""
|
1907 |
+
"Select the Google country for which Squirrly will check the Google rank."
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: view/BlockSettings.php:232
|
1911 |
msgid "Default"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: view/BlockSettings.php:233
|
1915 |
msgid "American Samoa"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: view/BlockSettings.php:234
|
1919 |
msgid "Anguilla"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: view/BlockSettings.php:235
|
1923 |
msgid "Antigua and Barbuda"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: view/BlockSettings.php:236
|
1927 |
msgid "Argentina"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: view/BlockSettings.php:237
|
1931 |
msgid "Australia"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: view/BlockSettings.php:238
|
1935 |
msgid "Austria"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: view/BlockSettings.php:239
|
1939 |
msgid "Azerbaijan"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: view/BlockSettings.php:240
|
1943 |
msgid "Belgium"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
+
#: view/BlockSettings.php:241
|
1947 |
msgid "Brazil"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
+
#: view/BlockSettings.php:242
|
1951 |
msgid "British Virgin Islands"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: view/BlockSettings.php:243
|
1955 |
msgid "Burundi"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: view/BlockSettings.php:244
|
1959 |
msgid "Bulgaria"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
+
#: view/BlockSettings.php:245
|
1963 |
msgid "Canada"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: view/BlockSettings.php:246
|
1967 |
msgid "Chad"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: view/BlockSettings.php:247
|
1971 |
msgid "Chile"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: view/BlockSettings.php:248
|
1975 |
msgid "Colombia"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: view/BlockSettings.php:249
|
1979 |
msgid "Costa Rica"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: view/BlockSettings.php:250
|
1983 |
msgid "Côte d'Ivoire"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: view/BlockSettings.php:251
|
1987 |
msgid "Cuba"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: view/BlockSettings.php:252
|
1991 |
msgid "Czech Republic"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: view/BlockSettings.php:253
|
1995 |
msgid "Dem. Rep. of the Congo"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: view/BlockSettings.php:254
|
1999 |
msgid "Denmark"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
+
#: view/BlockSettings.php:255
|
2003 |
msgid "Djibouti"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: view/BlockSettings.php:256
|
2007 |
msgid "Dominican Republic"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: view/BlockSettings.php:257
|
2011 |
msgid "Ecuador"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: view/BlockSettings.php:258
|
2015 |
msgid "El Salvador"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: view/BlockSettings.php:259
|
2019 |
msgid "Estonia"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: view/BlockSettings.php:260
|
2023 |
msgid "Federated States of Micronesia"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: view/BlockSettings.php:261
|
2027 |
msgid "Fiji"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: view/BlockSettings.php:262
|
2031 |
msgid "Finland"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: view/BlockSettings.php:263
|
2035 |
msgid "France"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: view/BlockSettings.php:264
|
2039 |
msgid "The Gambia"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: view/BlockSettings.php:265
|
2043 |
msgid "Georgia"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: view/BlockSettings.php:266
|
2047 |
msgid "Germany"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: view/BlockSettings.php:267
|
2051 |
msgid "Gibraltar"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: view/BlockSettings.php:268
|
2055 |
msgid "Greece"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: view/BlockSettings.php:269
|
2059 |
msgid "Greenland"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: view/BlockSettings.php:270
|
2063 |
msgid "Guernsey"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: view/BlockSettings.php:271
|
2067 |
msgid "Honduras"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: view/BlockSettings.php:272
|
2071 |
msgid "Hong Kong"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: view/BlockSettings.php:273
|
2075 |
msgid "Hungary"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: view/BlockSettings.php:274
|
2079 |
msgid "India"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
+
#: view/BlockSettings.php:275
|
2083 |
msgid "Indonesia"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: view/BlockSettings.php:276
|
2087 |
msgid "Ireland"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
+
#: view/BlockSettings.php:277
|
2091 |
msgid "Isle of Man"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
+
#: view/BlockSettings.php:278
|
2095 |
msgid "Israel"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: view/BlockSettings.php:279
|
2099 |
msgid "Italy"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: view/BlockSettings.php:280
|
2103 |
msgid "Jamaica"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: view/BlockSettings.php:281
|
2107 |
msgid "Japan"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: view/BlockSettings.php:282
|
2111 |
msgid "Jersey"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: view/BlockSettings.php:283
|
2115 |
msgid "Kazakhstan"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: view/BlockSettings.php:284
|
2119 |
msgid "Korea"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: view/BlockSettings.php:285
|
2123 |
msgid "Latvia"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: view/BlockSettings.php:286
|
2127 |
msgid "Lesotho"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: view/BlockSettings.php:287
|
2131 |
msgid "Liechtenstein"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: view/BlockSettings.php:288
|
2135 |
msgid "Lithuania"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: view/BlockSettings.php:289
|
2139 |
msgid "Luxembourg"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: view/BlockSettings.php:290
|
2143 |
msgid "Malawi"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: view/BlockSettings.php:291
|
2147 |
msgid "Malaysia"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: view/BlockSettings.php:292
|
2151 |
msgid "Malta"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: view/BlockSettings.php:293
|
2155 |
msgid "Mauritius"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: view/BlockSettings.php:294
|
2159 |
msgid "México"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: view/BlockSettings.php:295
|
2163 |
msgid "Montserrat"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: view/BlockSettings.php:296
|
2167 |
msgid "Namibia"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: view/BlockSettings.php:297
|
2171 |
msgid "Nepal"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: view/BlockSettings.php:298
|
2175 |
msgid "Netherlands"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: view/BlockSettings.php:299
|
2179 |
msgid "New Zealand"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: view/BlockSettings.php:300
|
2183 |
msgid "Nicaragua"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: view/BlockSettings.php:301
|
2187 |
msgid "Norfolk Island"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: view/BlockSettings.php:302
|
2191 |
msgid "Norway"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: view/BlockSettings.php:303
|
2195 |
msgid "Pakistan"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: view/BlockSettings.php:304
|
2199 |
msgid "Panamá"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: view/BlockSettings.php:305
|
2203 |
msgid "Paraguay"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: view/BlockSettings.php:306
|
2207 |
msgid "Perú"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: view/BlockSettings.php:307
|
2211 |
msgid "Philippines"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
+
#: view/BlockSettings.php:308
|
2215 |
msgid "Pitcairn Islands"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: view/BlockSettings.php:309
|
2219 |
msgid "Poland"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: view/BlockSettings.php:310
|
2223 |
msgid "Portugal"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: view/BlockSettings.php:311
|
2227 |
msgid "Puerto Rico"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: view/BlockSettings.php:312
|
2231 |
msgid "Rep. of the Congo"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: view/BlockSettings.php:313
|
2235 |
msgid "Romania"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: view/BlockSettings.php:314
|
2239 |
msgid "Russia"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: view/BlockSettings.php:315
|
2243 |
msgid "Rwanda"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: view/BlockSettings.php:316
|
2247 |
msgid "Saint Helena"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: view/BlockSettings.php:317
|
2251 |
msgid "San Marino"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: view/BlockSettings.php:318
|
2255 |
msgid "Saudi Arabia"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: view/BlockSettings.php:319
|
2259 |
msgid "Singapore"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: view/BlockSettings.php:320
|
2263 |
msgid "Slovakia"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: view/BlockSettings.php:321
|
2267 |
msgid "South Africa"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: view/BlockSettings.php:322
|
2271 |
msgid "Spain"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: view/BlockSettings.php:323
|
2275 |
msgid "Sri Lanka"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: view/BlockSettings.php:324
|
2279 |
msgid "Sweden"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: view/BlockSettings.php:325
|
2283 |
msgid "Switzerland"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: view/BlockSettings.php:326
|
2287 |
msgid "Taiwan"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: view/BlockSettings.php:327
|
2291 |
msgid "Thailand"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: view/BlockSettings.php:328
|
2295 |
msgid "Trinidad and Tobago"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: view/BlockSettings.php:329
|
2299 |
msgid "Turkey"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: view/BlockSettings.php:330
|
2303 |
msgid "Ukraine"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: view/BlockSettings.php:331
|
2307 |
msgid "United Arab Emirates"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: view/BlockSettings.php:332
|
2311 |
msgid "United Kingdom"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: view/BlockSettings.php:333
|
2315 |
msgid "United States"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: view/BlockSettings.php:334
|
2319 |
msgid "Uruguay"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: view/BlockSettings.php:335
|
2323 |
msgid "Uzbekistan"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: view/BlockSettings.php:336
|
2327 |
msgid "Vanuatu"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
+
#: view/BlockSettings.php:337
|
2331 |
msgid "Venezuela"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: view/BlockSettings.php:338
|
2335 |
msgid "Vietnam"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: view/BlockSettings.php:342
|
2339 |
#, php-format
|
2340 |
msgid ""
|
2341 |
"Select how many pages to be checked in the Performance Analytics section "
|
2342 |
"every hour. %s(not recommended for shared hosting plan)%s"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: view/BlockSettings.php:349
|
2346 |
msgid "page"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: view/BlockSettings.php:351
|
2350 |
msgid "pages"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: view/BlockSettings.php:357
|
2354 |
msgid "h"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: view/BlockSettings.php:371
|
2358 |
msgid ""
|
2359 |
"Restricts search results to results originating in the above particular "
|
2360 |
"country."
|
2361 |
msgstr ""
|
2362 |
|
2363 |
+
#: view/BlockSettings.php:381
|
2364 |
msgid "Robots.txt Editor"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
+
#: view/BlockSettings.php:382
|
2368 |
#, php-format
|
2369 |
msgid "%sLearn about robots.txt files%s"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: view/BlockSettings.php:383
|
2373 |
#, php-format
|
2374 |
msgid "%sHow to use Robots.txt%s"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: view/BlockSettings.php:389
|
2378 |
msgid "Edit the Robots.txt data"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
+
#: view/BlockSettings.php:402
|
2382 |
msgid ""
|
2383 |
"Does not physically create the robots.txt file. The best option for "
|
2384 |
"Multisites."
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: view/BlockSettings.php:407
|
2388 |
msgid "Save Robots"
|
2389 |
msgstr ""
|
2390 |
|
2862 |
msgstr ""
|
2863 |
|
2864 |
#: view/BlockSettingsSeo.php:849
|
2865 |
+
msgid "JSON-LD G17 - 2x More Options"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
#: view/BlockSettingsSeo.php:866
|
3008 |
msgstr ""
|
3009 |
|
3010 |
#: view/BlockSettingsSeo.php:1002
|
3011 |
+
msgid "Add more Facebook Admin IDs"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
#: view/BlockSettingsSeo.php:1016
|
languages/squirrly-seo-ro_RO.mo
CHANGED
Binary file
|
languages/squirrly-seo-ro_RO.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: squirrly_seo\n"
|
4 |
-
"POT-Creation-Date: 2017-
|
5 |
-
"PO-Revision-Date: 2017-
|
6 |
"Last-Translator: Squirrly <contact@squirrly.co>\n"
|
7 |
"Language-Team: Squirrly UK <support@squirrly.co>\n"
|
8 |
"Language: ro_RO\n"
|
@@ -52,55 +52,55 @@ msgstr ""
|
|
52 |
msgid "Getting started"
|
53 |
msgstr "Ajutor"
|
54 |
|
55 |
-
#: classes/Tools.php:
|
56 |
msgid "Format"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: classes/Tools.php:
|
60 |
msgid "Category"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: classes/Tools.php:
|
64 |
msgid "Tag"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: classes/Tools.php:
|
68 |
msgid "Shipping Option"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: classes/Tools.php:
|
72 |
msgid "Author at"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: classes/Tools.php:
|
76 |
msgid "You searched for"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: classes/Tools.php:
|
80 |
msgid "Page not found"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: classes/Tools.php:
|
84 |
msgid "Fix it for me!"
|
85 |
msgstr "Repara-l"
|
86 |
|
87 |
-
#: classes/Tools.php:
|
88 |
msgid "Activate the Squirrly SEO for your blog (recommended)"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: classes/Tools.php:
|
92 |
msgid ""
|
93 |
"You have META Title Duplicates. Disable the Squirrly Title Optimization or "
|
94 |
"disable the other SEO Plugins"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: classes/Tools.php:
|
98 |
msgid ""
|
99 |
"You have META Description Duplicates. Disable the Squirrly Description "
|
100 |
"Optimization or disable the other SEO Plugins"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: classes/Tools.php:
|
104 |
msgid ""
|
105 |
"You have Open Graph META Duplicates. Disable the Squirrly SEO Open Graph or "
|
106 |
"disable the other SEO Plugins"
|
@@ -108,7 +108,7 @@ msgstr ""
|
|
108 |
"Aveti duplicate in META Open Graph. Opriti Squirrly Seo Open Graph sau "
|
109 |
"dezactivati alte plugin-uri de SEO"
|
110 |
|
111 |
-
#: classes/Tools.php:
|
112 |
msgid ""
|
113 |
"You have Twitter Card META Duplicates. Disable the Squirrly SEO Twitter Card "
|
114 |
"or disable the other SEO Plugins"
|
@@ -116,11 +116,11 @@ msgstr ""
|
|
116 |
"Aveti duplicate in META Twitter Card. Opriti Squirrly Seo Twitter Card sau "
|
117 |
"dezactivati alte plugin-uri de SEO"
|
118 |
|
119 |
-
#: classes/Tools.php:
|
120 |
msgid "You're blocking google from indexing your site!"
|
121 |
msgstr "Blochezi accesul la google spre indexarea site-ului"
|
122 |
|
123 |
-
#: classes/Tools.php:
|
124 |
msgid ""
|
125 |
"It is highly recommended that you include the %postname% variable in the "
|
126 |
"permalink structure. <br />Go to Settings > Permalinks and add /%postname%/ "
|
@@ -130,17 +130,17 @@ msgstr ""
|
|
130 |
">Mergi la Setari > Legaturi permanente si adauga /%postname%/ in campul "
|
131 |
"Structură personalizată"
|
132 |
|
133 |
-
#: classes/Tools.php:
|
134 |
msgid ""
|
135 |
"It is highly recommended to change or remove the default Wordpress Tagline. "
|
136 |
"<br />Go to Settings > General > Tagline"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: classes/Tools.php:
|
140 |
msgid "Great! We didn't find any issue in your site."
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: classes/Tools.php:
|
144 |
msgid "Just another WordPress site"
|
145 |
msgstr ""
|
146 |
|
@@ -257,172 +257,172 @@ msgstr ""
|
|
257 |
msgid "See Your Rank on Google"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: controllers/Menu.php:
|
261 |
msgid "Custom SEO"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: controllers/Menu.php:
|
265 |
msgid ""
|
266 |
"Check out the Squirrly Analytics section. <a href=\"admin.php?page=sq_posts"
|
267 |
"\" title=\"Squirrly Analytics\">Click here</a>"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: controllers/Menu.php:
|
271 |
msgid " Dashboard"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: controllers/Menu.php:
|
275 |
msgid "First Step"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: controllers/Menu.php:
|
279 |
msgid "Dashboard"
|
280 |
msgstr "Dashboard"
|
281 |
|
282 |
-
#: controllers/Menu.php:
|
283 |
msgid " Performance Analytics"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: controllers/Menu.php:
|
287 |
msgid "Performance <br />Analytics"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: controllers/Menu.php:
|
291 |
msgid " Keyword Research"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: controllers/Menu.php:
|
295 |
msgid "Keyword Research"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: controllers/Menu.php:
|
299 |
msgid " Live Assistant"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: controllers/Menu.php:
|
303 |
msgid "Live Assistant"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: controllers/Menu.php:
|
307 |
msgid " Copywriting"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: controllers/Menu.php:
|
311 |
msgid "Copywriting"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: controllers/Menu.php:
|
315 |
msgid " SEO Audit"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: controllers/Menu.php:
|
319 |
msgid "Site Audit"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: controllers/Menu.php:
|
323 |
msgid " SEO Settings"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: controllers/Menu.php:
|
327 |
#, fuzzy
|
328 |
msgid "SEO Settings"
|
329 |
msgstr "Setari"
|
330 |
|
331 |
-
#: controllers/Menu.php:
|
332 |
msgid " Advanced Settings"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: controllers/Menu.php:
|
336 |
msgid "Advanced Settings"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: controllers/Menu.php:
|
340 |
msgid " SEO Patterns"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: controllers/Menu.php:
|
344 |
msgid "Patterns"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: controllers/Menu.php:
|
348 |
msgid " Account Info"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: controllers/Menu.php:
|
352 |
msgid "Account Info"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: controllers/Menu.php:
|
356 |
msgid " Support"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: controllers/Menu.php:
|
360 |
msgid "Support"
|
361 |
msgstr "Suport"
|
362 |
|
363 |
-
#: controllers/Menu.php:
|
364 |
msgid "Become an Affiliate with "
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: controllers/Menu.php:
|
368 |
msgid "Become an Affiliate"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: controllers/Menu.php:
|
372 |
msgid "Import SEO "
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: controllers/Menu.php:
|
376 |
msgid "Import SEO"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: controllers/Menu.php:
|
380 |
#, php-format
|
381 |
msgid "Go back and complete the Squirrly Tasks for today %sContinue%s"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: controllers/Menu.php:
|
385 |
msgid "SEO Snippet"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: controllers/PostsList.php:
|
389 |
msgid "Squirrly"
|
390 |
msgstr "Squirrly"
|
391 |
|
392 |
-
#: controllers/PostsList.php:
|
393 |
msgid "Custom description: "
|
394 |
msgstr "Descrierea:"
|
395 |
|
396 |
-
#: controllers/PostsList.php:
|
397 |
msgid "Custom title: "
|
398 |
msgstr "Titlul"
|
399 |
|
400 |
-
#: controllers/PostsList.php:
|
401 |
msgid "SEO Analytics, by Squirrly"
|
402 |
msgstr "SEO Analytics, de la Squirrly"
|
403 |
|
404 |
-
#: controllers/PostsList.php:
|
405 |
msgid "Update"
|
406 |
msgstr "Update"
|
407 |
|
408 |
-
#: controllers/PostsList.php:
|
409 |
msgid "Not Public"
|
410 |
msgstr "Ciorna"
|
411 |
|
412 |
-
#: controllers/PostsList.php:
|
413 |
msgid "Could not process"
|
414 |
msgstr "Nu s-a putut verifica"
|
415 |
|
416 |
-
#: controllers/PostsList.php:
|
417 |
#, php-format
|
418 |
msgid "Not in top 100 for: %s"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: controllers/PostsList.php:
|
422 |
msgid "The URL is Indexed"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: controllers/PostsList.php:
|
426 |
#: models/BlockPostsAnalytics.php:438
|
427 |
#, php-format
|
428 |
msgid "%s"
|
@@ -518,7 +518,6 @@ msgid "Plugin Support"
|
|
518 |
msgstr "Suport la plugin"
|
519 |
|
520 |
#: core/BlockSupport.php:96
|
521 |
-
#, fuzzy
|
522 |
msgid "Message sent. Thank you!"
|
523 |
msgstr "Mesajul a fost trimis..."
|
524 |
|
@@ -632,41 +631,45 @@ msgid ":( An error occurred while processing your request. Please try again"
|
|
632 |
msgstr ""
|
633 |
|
634 |
#: core/Loading.php:58
|
|
|
|
|
|
|
|
|
635 |
msgid "No results found!"
|
636 |
msgstr "Nu s-a gasit nimic ..."
|
637 |
|
638 |
-
#: core/Loading.php:
|
639 |
msgid "Enter one more word to find relevant results"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: core/Loading.php:
|
643 |
msgid "Takes too long to check this keyword ..."
|
644 |
msgstr "Ia prea mult timp sa verifice cuvantul ..."
|
645 |
|
646 |
-
#: core/Loading.php:
|
647 |
msgid "Do a research!"
|
648 |
msgstr "Mai multe detalii!"
|
649 |
|
650 |
-
#: core/Loading.php:
|
651 |
msgid "Do more research!"
|
652 |
msgstr "Mai multe detalii!"
|
653 |
|
654 |
-
#: core/Loading.php:
|
655 |
#, php-format
|
656 |
msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
|
657 |
msgstr ""
|
658 |
"[ ATTRIBUTE: Verificati: %s pentru a vedea conditile de atribuire a "
|
659 |
"imaginii ]"
|
660 |
|
661 |
-
#: core/Loading.php:
|
662 |
msgid "Has creative commons attributes"
|
663 |
msgstr "Are conditii de atribuire"
|
664 |
|
665 |
-
#: core/Loading.php:
|
666 |
msgid "No known copyright restrictions"
|
667 |
msgstr "Nu sunt restrictii de copyright cunoscute"
|
668 |
|
669 |
-
#: core/Loading.php:
|
670 |
msgid ""
|
671 |
"You haven`t used Squirrly SEO to optimize your article. Do you want to "
|
672 |
"optimize for a keyword before publishing?"
|
@@ -674,75 +677,75 @@ msgstr ""
|
|
674 |
"Nu ai folosit Squirrly SEO pentru a optimiza articolul. Vrei sa il "
|
675 |
"optimizezi inainte de publicare?"
|
676 |
|
677 |
-
#: core/Loading.php:
|
678 |
msgid "Keyword Research limit exceeded"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: core/Loading.php:
|
682 |
msgid "Your Subscription has Expired"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: core/Loading.php:
|
686 |
msgid "Add 20 Keyword Researches"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: core/Loading.php:
|
690 |
msgid "There are no keywords saved in briefcase yet"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: core/Loading.php:
|
694 |
#, php-format
|
695 |
msgid "Congratulations! Your article is 100% optimized!"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: core/Loading.php:
|
699 |
#, php-format
|
700 |
msgid "appears too many times. Try to remove %s of them"
|
701 |
msgstr "apare de prea multe ori. Sterge %s cuvint(e) cheie"
|
702 |
|
703 |
-
#: core/Loading.php:
|
704 |
#, php-format
|
705 |
msgid "write %s more words"
|
706 |
msgstr "mai adauga %s cuvinte"
|
707 |
|
708 |
-
#: core/Loading.php:
|
709 |
#, php-format
|
710 |
msgid "Add the keyword in the %s of your article"
|
711 |
msgstr "Adauga cuvantul cheie la %s articolului"
|
712 |
|
713 |
-
#: core/Loading.php:
|
714 |
msgid "Click to keep the highlight on"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: core/Loading.php:
|
718 |
msgid "introduction"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: core/Loading.php:
|
722 |
#, php-format
|
723 |
msgid "Write more words after the %s keyword"
|
724 |
msgstr "Scrie mai multe cuvinte dupa %s cuvant cheie"
|
725 |
|
726 |
-
#: core/Loading.php:
|
727 |
msgid "or use synonyms"
|
728 |
msgstr "sau foloseste sinonime"
|
729 |
|
730 |
-
#: core/Loading.php:
|
731 |
#, php-format
|
732 |
msgid "add %s more word(s)"
|
733 |
msgstr "Mai adauga %s cuvinte"
|
734 |
|
735 |
-
#: core/Loading.php:
|
736 |
#, php-format
|
737 |
msgid "or remove %s word(s)"
|
738 |
msgstr "sau sterge %s cuvinte"
|
739 |
|
740 |
-
#: core/Loading.php:
|
741 |
#, php-format
|
742 |
msgid "add %s more keyword(s)"
|
743 |
msgstr "mai adauga %s cuvint(e) cheie"
|
744 |
|
745 |
-
#: core/Loading.php:
|
746 |
#, php-format
|
747 |
msgid "write %s more words to start calculating"
|
748 |
msgstr "Scrie %s cuvinte pentru a se putea verifica"
|
@@ -882,18 +885,16 @@ msgid "The code for Facebook is incorrect."
|
|
882 |
msgstr "Codul Facbook este gresit."
|
883 |
|
884 |
#: models/BlockSettingsSeo.php:169
|
885 |
-
#, fuzzy
|
886 |
msgid "The code for Pinterest is incorrect."
|
887 |
-
msgstr "Codul
|
888 |
|
889 |
#: models/BlockSettingsSeo.php:194
|
890 |
msgid "The code for Bing is incorrect."
|
891 |
msgstr "Codul Bing este gresit."
|
892 |
|
893 |
#: models/BlockSettingsSeo.php:320
|
894 |
-
#, fuzzy
|
895 |
msgid "File type error: Only ICO, JPEG, JPG, GIF or PNG files are allowed."
|
896 |
-
msgstr "Eroare fisier: Doar fisierele JPEG,JPG,GIF sau PNG sunt permise"
|
897 |
|
898 |
#: models/BlockSettingsSeo.php:326
|
899 |
msgid "GD error: The GD library must be installed on your server."
|
@@ -1009,7 +1010,6 @@ msgid "The total number of shares on social media channels for this post"
|
|
1009 |
msgstr ""
|
1010 |
|
1011 |
#: models/PostsList.php:92
|
1012 |
-
#, fuzzy
|
1013 |
msgid "The total authority for this post"
|
1014 |
msgstr "Nu sunt suficiente informatii pentru acest post"
|
1015 |
|
@@ -1060,14 +1060,12 @@ msgid "START HERE"
|
|
1060 |
msgstr ""
|
1061 |
|
1062 |
#: view/BlockAccount.php:23
|
1063 |
-
#, fuzzy
|
1064 |
msgid "Squirrly account information"
|
1065 |
-
msgstr "
|
1066 |
|
1067 |
#: view/BlockAccount.php:25 view/BlockAffiliate.php:23
|
1068 |
-
#, fuzzy
|
1069 |
msgid "Go to dashboard"
|
1070 |
-
msgstr "
|
1071 |
|
1072 |
#: view/BlockAccount.php:26
|
1073 |
msgid "See ALL of Your Activity so Far"
|
@@ -1162,9 +1160,8 @@ msgid "Moz Rank"
|
|
1162 |
msgstr ""
|
1163 |
|
1164 |
#: view/BlockAnalytics.php:86
|
1165 |
-
#, fuzzy
|
1166 |
msgid "Google Page Rank"
|
1167 |
-
msgstr "
|
1168 |
|
1169 |
#: view/BlockAnalytics.php:92
|
1170 |
msgid "Ahrefs Rank"
|
@@ -1179,14 +1176,12 @@ msgid "Facebook likes"
|
|
1179 |
msgstr ""
|
1180 |
|
1181 |
#: view/BlockAnalytics.php:118
|
1182 |
-
#, fuzzy
|
1183 |
msgid "Twitter shares"
|
1184 |
-
msgstr "
|
1185 |
|
1186 |
#: view/BlockAnalytics.php:123
|
1187 |
-
#, fuzzy
|
1188 |
msgid "Google+ shares"
|
1189 |
-
msgstr "
|
1190 |
|
1191 |
#: view/BlockAnalytics.php:128
|
1192 |
msgid "LinkedIn Shares"
|
@@ -1215,7 +1210,6 @@ msgid "Visits"
|
|
1215 |
msgstr "Vizite"
|
1216 |
|
1217 |
#: view/BlockAnalytics.php:256
|
1218 |
-
#, fuzzy
|
1219 |
msgid "Current: "
|
1220 |
msgstr "Pozitia curenta"
|
1221 |
|
@@ -1228,7 +1222,6 @@ msgid "Highest: "
|
|
1228 |
msgstr ""
|
1229 |
|
1230 |
#: view/BlockAnalytics.php:262
|
1231 |
-
#, fuzzy
|
1232 |
msgid "last 30 days"
|
1233 |
msgstr "Ultimele 30 zile"
|
1234 |
|
@@ -1446,19 +1439,11 @@ msgid ""
|
|
1446 |
"SEO potential"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: view/BlockDashboard.php:
|
1450 |
-
msgid "Now with a fresh one right out of our Squirrly Labs!"
|
1451 |
-
msgstr ""
|
1452 |
-
|
1453 |
-
#: view/BlockDashboard.php:52
|
1454 |
-
msgid "Get It Here"
|
1455 |
-
msgstr ""
|
1456 |
-
|
1457 |
-
#: view/BlockDashboard.php:128
|
1458 |
msgid "Next Feature"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: view/BlockDashboard.php:
|
1462 |
msgid "Previous Feature"
|
1463 |
msgstr ""
|
1464 |
|
@@ -1662,36 +1647,38 @@ msgstr ""
|
|
1662 |
#: view/BlockPatterns.php:118 view/BlockPatterns.php:132
|
1663 |
#: view/BlockPatterns.php:149 view/BlockSettings.php:135
|
1664 |
#: view/BlockSettings.php:146 view/BlockSettings.php:157
|
1665 |
-
#: view/BlockSettings.php:168 view/BlockSettings.php:
|
1666 |
-
#: view/BlockSettings.php:
|
1667 |
-
#: view/
|
1668 |
-
#: view/BlockSettingsSeo.php:
|
1669 |
-
#: view/BlockSettingsSeo.php:
|
1670 |
-
#: view/BlockSettingsSeo.php:
|
1671 |
-
#: view/BlockSettingsSeo.php:
|
1672 |
-
#: view/BlockSettingsSeo.php:
|
1673 |
-
#: view/BlockSettingsSeo.php:
|
1674 |
-
#: view/BlockSettingsSeo.php:
|
1675 |
-
#: view/BlockSettingsSeo.php:
|
1676 |
-
#: view/FrontMenu.php:
|
|
|
1677 |
msgid "Yes"
|
1678 |
msgstr "Da"
|
1679 |
|
1680 |
#: view/BlockPatterns.php:120 view/BlockPatterns.php:134
|
1681 |
#: view/BlockPatterns.php:151 view/BlockSettings.php:137
|
1682 |
#: view/BlockSettings.php:148 view/BlockSettings.php:159
|
1683 |
-
#: view/BlockSettings.php:170 view/BlockSettings.php:
|
1684 |
-
#: view/BlockSettings.php:
|
1685 |
-
#: view/
|
1686 |
-
#: view/BlockSettingsSeo.php:
|
1687 |
-
#: view/BlockSettingsSeo.php:
|
1688 |
-
#: view/BlockSettingsSeo.php:
|
1689 |
-
#: view/BlockSettingsSeo.php:
|
1690 |
-
#: view/BlockSettingsSeo.php:
|
1691 |
-
#: view/BlockSettingsSeo.php:
|
1692 |
-
#: view/BlockSettingsSeo.php:
|
1693 |
-
#: view/BlockSettingsSeo.php:
|
1694 |
-
#: view/FrontMenu.php:
|
|
|
1695 |
msgid "No"
|
1696 |
msgstr "Nu"
|
1697 |
|
@@ -1749,7 +1736,7 @@ msgid ""
|
|
1749 |
"that we can track them, and display you the analytics"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: view/BlockSettings.php:24 view/BlockSettings.php:
|
1753 |
msgid "Save settings"
|
1754 |
msgstr "Salveaza setari"
|
1755 |
|
@@ -1836,516 +1823,520 @@ msgstr ""
|
|
1836 |
msgid "Use <strong> the NEW version of the SEO Live Assistant</strong>."
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: view/BlockSettings.php:
|
|
|
|
|
|
|
|
|
1840 |
msgid ""
|
1841 |
"Download <strong>remote images</strong> in your <strong>Media Library</"
|
1842 |
"strong> for the new posts."
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#: view/BlockSettings.php:
|
1846 |
msgid ""
|
1847 |
"Correct my <strong>feed links</strong> and <strong>images</strong> (convert "
|
1848 |
"from relative to absolute)."
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: view/BlockSettings.php:
|
1852 |
msgid "Google Rank Options"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: view/BlockSettings.php:
|
1856 |
#, php-format
|
1857 |
msgid "%sCountry targeting%s"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: view/BlockSettings.php:
|
1861 |
#, php-format
|
1862 |
msgid "%sPowerful SEO Tool For Strong Google Rankings%s"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#: view/BlockSettings.php:
|
1866 |
msgid ""
|
1867 |
-
"Select the Google
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: view/BlockSettings.php:
|
1871 |
msgid "Default"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: view/BlockSettings.php:
|
1875 |
msgid "American Samoa"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: view/BlockSettings.php:
|
1879 |
msgid "Anguilla"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: view/BlockSettings.php:
|
1883 |
msgid "Antigua and Barbuda"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: view/BlockSettings.php:
|
1887 |
msgid "Argentina"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: view/BlockSettings.php:
|
1891 |
msgid "Australia"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
-
#: view/BlockSettings.php:
|
1895 |
msgid "Austria"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: view/BlockSettings.php:
|
1899 |
msgid "Azerbaijan"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: view/BlockSettings.php:
|
1903 |
msgid "Belgium"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: view/BlockSettings.php:
|
1907 |
msgid "Brazil"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: view/BlockSettings.php:
|
1911 |
msgid "British Virgin Islands"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: view/BlockSettings.php:
|
1915 |
msgid "Burundi"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: view/BlockSettings.php:
|
1919 |
msgid "Bulgaria"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: view/BlockSettings.php:
|
1923 |
msgid "Canada"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: view/BlockSettings.php:
|
1927 |
msgid "Chad"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: view/BlockSettings.php:
|
1931 |
msgid "Chile"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: view/BlockSettings.php:
|
1935 |
msgid "Colombia"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: view/BlockSettings.php:
|
1939 |
msgid "Costa Rica"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: view/BlockSettings.php:
|
1943 |
msgid "Côte d'Ivoire"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: view/BlockSettings.php:
|
1947 |
msgid "Cuba"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: view/BlockSettings.php:
|
1951 |
msgid "Czech Republic"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: view/BlockSettings.php:
|
1955 |
msgid "Dem. Rep. of the Congo"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: view/BlockSettings.php:
|
1959 |
msgid "Denmark"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: view/BlockSettings.php:
|
1963 |
msgid "Djibouti"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: view/BlockSettings.php:
|
1967 |
msgid "Dominican Republic"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: view/BlockSettings.php:
|
1971 |
msgid "Ecuador"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: view/BlockSettings.php:
|
1975 |
msgid "El Salvador"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: view/BlockSettings.php:
|
1979 |
msgid "Estonia"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#: view/BlockSettings.php:
|
1983 |
msgid "Federated States of Micronesia"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: view/BlockSettings.php:
|
1987 |
msgid "Fiji"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: view/BlockSettings.php:
|
1991 |
msgid "Finland"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
-
#: view/BlockSettings.php:
|
1995 |
#, fuzzy
|
1996 |
msgid "France"
|
1997 |
msgstr "Renunta"
|
1998 |
|
1999 |
-
#: view/BlockSettings.php:
|
2000 |
msgid "The Gambia"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: view/BlockSettings.php:
|
2004 |
msgid "Georgia"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: view/BlockSettings.php:
|
2008 |
msgid "Germany"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: view/BlockSettings.php:
|
2012 |
msgid "Gibraltar"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: view/BlockSettings.php:
|
2016 |
msgid "Greece"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: view/BlockSettings.php:
|
2020 |
msgid "Greenland"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: view/BlockSettings.php:
|
2024 |
msgid "Guernsey"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: view/BlockSettings.php:
|
2028 |
msgid "Honduras"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: view/BlockSettings.php:
|
2032 |
msgid "Hong Kong"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: view/BlockSettings.php:
|
2036 |
msgid "Hungary"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: view/BlockSettings.php:
|
2040 |
msgid "India"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: view/BlockSettings.php:
|
2044 |
msgid "Indonesia"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: view/BlockSettings.php:
|
2048 |
msgid "Ireland"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: view/BlockSettings.php:
|
2052 |
msgid "Isle of Man"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: view/BlockSettings.php:
|
2056 |
msgid "Israel"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#: view/BlockSettings.php:
|
2060 |
msgid "Italy"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: view/BlockSettings.php:
|
2064 |
msgid "Jamaica"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: view/BlockSettings.php:
|
2068 |
msgid "Japan"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: view/BlockSettings.php:
|
2072 |
msgid "Jersey"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: view/BlockSettings.php:
|
2076 |
msgid "Kazakhstan"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: view/BlockSettings.php:
|
2080 |
msgid "Korea"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: view/BlockSettings.php:
|
2084 |
msgid "Latvia"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: view/BlockSettings.php:
|
2088 |
msgid "Lesotho"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: view/BlockSettings.php:
|
2092 |
msgid "Liechtenstein"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: view/BlockSettings.php:
|
2096 |
msgid "Lithuania"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: view/BlockSettings.php:
|
2100 |
msgid "Luxembourg"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
-
#: view/BlockSettings.php:
|
2104 |
msgid "Malawi"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: view/BlockSettings.php:
|
2108 |
msgid "Malaysia"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: view/BlockSettings.php:
|
2112 |
msgid "Malta"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#: view/BlockSettings.php:
|
2116 |
msgid "Mauritius"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#: view/BlockSettings.php:
|
2120 |
msgid "México"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: view/BlockSettings.php:
|
2124 |
msgid "Montserrat"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#: view/BlockSettings.php:
|
2128 |
msgid "Namibia"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#: view/BlockSettings.php:
|
2132 |
msgid "Nepal"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#: view/BlockSettings.php:
|
2136 |
msgid "Netherlands"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: view/BlockSettings.php:
|
2140 |
msgid "New Zealand"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: view/BlockSettings.php:
|
2144 |
msgid "Nicaragua"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: view/BlockSettings.php:
|
2148 |
msgid "Norfolk Island"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: view/BlockSettings.php:
|
2152 |
msgid "Norway"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: view/BlockSettings.php:
|
2156 |
msgid "Pakistan"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: view/BlockSettings.php:
|
2160 |
msgid "Panamá"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: view/BlockSettings.php:
|
2164 |
msgid "Paraguay"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: view/BlockSettings.php:
|
2168 |
msgid "Perú"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: view/BlockSettings.php:
|
2172 |
msgid "Philippines"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: view/BlockSettings.php:
|
2176 |
msgid "Pitcairn Islands"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: view/BlockSettings.php:
|
2180 |
msgid "Poland"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: view/BlockSettings.php:
|
2184 |
msgid "Portugal"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: view/BlockSettings.php:
|
2188 |
msgid "Puerto Rico"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: view/BlockSettings.php:
|
2192 |
msgid "Rep. of the Congo"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: view/BlockSettings.php:
|
2196 |
msgid "Romania"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: view/BlockSettings.php:
|
2200 |
msgid "Russia"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: view/BlockSettings.php:
|
2204 |
msgid "Rwanda"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: view/BlockSettings.php:
|
2208 |
msgid "Saint Helena"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: view/BlockSettings.php:
|
2212 |
msgid "San Marino"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: view/BlockSettings.php:
|
2216 |
msgid "Saudi Arabia"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: view/BlockSettings.php:
|
2220 |
msgid "Singapore"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: view/BlockSettings.php:
|
2224 |
msgid "Slovakia"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: view/BlockSettings.php:
|
2228 |
msgid "South Africa"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: view/BlockSettings.php:
|
2232 |
msgid "Spain"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: view/BlockSettings.php:
|
2236 |
msgid "Sri Lanka"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: view/BlockSettings.php:
|
2240 |
msgid "Sweden"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: view/BlockSettings.php:
|
2244 |
msgid "Switzerland"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
-
#: view/BlockSettings.php:
|
2248 |
msgid "Taiwan"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: view/BlockSettings.php:
|
2252 |
msgid "Thailand"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: view/BlockSettings.php:
|
2256 |
msgid "Trinidad and Tobago"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: view/BlockSettings.php:
|
2260 |
msgid "Turkey"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: view/BlockSettings.php:
|
2264 |
msgid "Ukraine"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: view/BlockSettings.php:
|
2268 |
msgid "United Arab Emirates"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: view/BlockSettings.php:
|
2272 |
msgid "United Kingdom"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#: view/BlockSettings.php:
|
2276 |
msgid "United States"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: view/BlockSettings.php:
|
2280 |
msgid "Uruguay"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: view/BlockSettings.php:
|
2284 |
msgid "Uzbekistan"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: view/BlockSettings.php:
|
2288 |
msgid "Vanuatu"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: view/BlockSettings.php:
|
2292 |
msgid "Venezuela"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: view/BlockSettings.php:
|
2296 |
msgid "Vietnam"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: view/BlockSettings.php:
|
2300 |
#, php-format
|
2301 |
msgid ""
|
2302 |
"Select how many pages to be checked in the Performance Analytics section "
|
2303 |
"every hour. %s(not recommended for shared hosting plan)%s"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: view/BlockSettings.php:
|
2307 |
msgid "page"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: view/BlockSettings.php:
|
2311 |
msgid "pages"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: view/BlockSettings.php:
|
2315 |
msgid "h"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: view/BlockSettings.php:
|
2319 |
msgid ""
|
2320 |
"Restricts search results to results originating in the above particular "
|
2321 |
"country."
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#: view/BlockSettings.php:
|
2325 |
msgid "Robots.txt Editor"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: view/BlockSettings.php:
|
2329 |
#, php-format
|
2330 |
msgid "%sLearn about robots.txt files%s"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#: view/BlockSettings.php:
|
2334 |
#, php-format
|
2335 |
msgid "%sHow to use Robots.txt%s"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: view/BlockSettings.php:
|
2339 |
msgid "Edit the Robots.txt data"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: view/BlockSettings.php:
|
2343 |
msgid ""
|
2344 |
"Does not physically create the robots.txt file. The best option for "
|
2345 |
"Multisites."
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: view/BlockSettings.php:
|
2349 |
msgid "Save Robots"
|
2350 |
msgstr ""
|
2351 |
|
@@ -2530,9 +2521,8 @@ msgid ""
|
|
2530 |
msgstr ""
|
2531 |
|
2532 |
#: view/BlockSettingsSeo.php:367
|
2533 |
-
#, fuzzy
|
2534 |
msgid "Social Media Options"
|
2535 |
-
msgstr "Optiuni
|
2536 |
|
2537 |
#: view/BlockSettingsSeo.php:369
|
2538 |
msgid "Select the language you're using on Social Media"
|
@@ -2817,7 +2807,7 @@ msgid "%sGoogle Testing Tool%s"
|
|
2817 |
msgstr ""
|
2818 |
|
2819 |
#: view/BlockSettingsSeo.php:849
|
2820 |
-
msgid "JSON-LD G17 -2x More Options"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
#: view/BlockSettingsSeo.php:866
|
@@ -2963,11 +2953,11 @@ msgid "Facebook ID or https://www.facebook.com/YourProfileName"
|
|
2963 |
msgstr ""
|
2964 |
|
2965 |
#: view/BlockSettingsSeo.php:1002
|
2966 |
-
msgid "Add
|
2967 |
msgstr ""
|
2968 |
|
2969 |
#: view/BlockSettingsSeo.php:1016
|
2970 |
-
#,
|
2971 |
msgid "Google %sAnalytics ID%s:"
|
2972 |
msgstr "Google %sAnalytics ID%s:"
|
2973 |
|
@@ -3008,19 +2998,19 @@ msgid "%sRich Pins Validator%s"
|
|
3008 |
msgstr ""
|
3009 |
|
3010 |
#: view/BlockSettingsSeo.php:1052
|
3011 |
-
#,
|
3012 |
msgid "Google META verification code for %sWebmaster Tool%s:"
|
3013 |
msgstr "Cod META pentru %sGoogle Webmaster Tool%s"
|
3014 |
|
3015 |
#: view/BlockSettingsSeo.php:1058
|
3016 |
-
#,
|
3017 |
msgid "Bing META code (for %sWebmaster Tool%s ):"
|
3018 |
msgstr "Bing META code (pentru %sWebmaster Tool%s):"
|
3019 |
|
3020 |
#: view/BlockSettingsSeo.php:1065
|
3021 |
-
#,
|
3022 |
msgid "Alexa META code (for %sAlexa Tool%s ):"
|
3023 |
-
msgstr "
|
3024 |
|
3025 |
#: view/BlockSettingsSeo.php:1071
|
3026 |
#, php-format
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: squirrly_seo\n"
|
4 |
+
"POT-Creation-Date: 2017-11-09 16:53+0200\n"
|
5 |
+
"PO-Revision-Date: 2017-11-09 16:56+0200\n"
|
6 |
"Last-Translator: Squirrly <contact@squirrly.co>\n"
|
7 |
"Language-Team: Squirrly UK <support@squirrly.co>\n"
|
8 |
"Language: ro_RO\n"
|
52 |
msgid "Getting started"
|
53 |
msgstr "Ajutor"
|
54 |
|
55 |
+
#: classes/Tools.php:240
|
56 |
msgid "Format"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: classes/Tools.php:248 classes/Tools.php:264
|
60 |
msgid "Category"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: classes/Tools.php:256 classes/Tools.php:272
|
64 |
msgid "Tag"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: classes/Tools.php:280
|
68 |
msgid "Shipping Option"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: classes/Tools.php:288
|
72 |
msgid "Author at"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: classes/Tools.php:320
|
76 |
msgid "You searched for"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: classes/Tools.php:336
|
80 |
msgid "Page not found"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: classes/Tools.php:857
|
84 |
msgid "Fix it for me!"
|
85 |
msgstr "Repara-l"
|
86 |
|
87 |
+
#: classes/Tools.php:863
|
88 |
msgid "Activate the Squirrly SEO for your blog (recommended)"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: classes/Tools.php:874
|
92 |
msgid ""
|
93 |
"You have META Title Duplicates. Disable the Squirrly Title Optimization or "
|
94 |
"disable the other SEO Plugins"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: classes/Tools.php:882
|
98 |
msgid ""
|
99 |
"You have META Description Duplicates. Disable the Squirrly Description "
|
100 |
"Optimization or disable the other SEO Plugins"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: classes/Tools.php:890
|
104 |
msgid ""
|
105 |
"You have Open Graph META Duplicates. Disable the Squirrly SEO Open Graph or "
|
106 |
"disable the other SEO Plugins"
|
108 |
"Aveti duplicate in META Open Graph. Opriti Squirrly Seo Open Graph sau "
|
109 |
"dezactivati alte plugin-uri de SEO"
|
110 |
|
111 |
+
#: classes/Tools.php:898
|
112 |
msgid ""
|
113 |
"You have Twitter Card META Duplicates. Disable the Squirrly SEO Twitter Card "
|
114 |
"or disable the other SEO Plugins"
|
116 |
"Aveti duplicate in META Twitter Card. Opriti Squirrly Seo Twitter Card sau "
|
117 |
"dezactivati alte plugin-uri de SEO"
|
118 |
|
119 |
+
#: classes/Tools.php:907
|
120 |
msgid "You're blocking google from indexing your site!"
|
121 |
msgstr "Blochezi accesul la google spre indexarea site-ului"
|
122 |
|
123 |
+
#: classes/Tools.php:914
|
124 |
msgid ""
|
125 |
"It is highly recommended that you include the %postname% variable in the "
|
126 |
"permalink structure. <br />Go to Settings > Permalinks and add /%postname%/ "
|
130 |
">Mergi la Setari > Legaturi permanente si adauga /%postname%/ in campul "
|
131 |
"Structură personalizată"
|
132 |
|
133 |
+
#: classes/Tools.php:921
|
134 |
msgid ""
|
135 |
"It is highly recommended to change or remove the default Wordpress Tagline. "
|
136 |
"<br />Go to Settings > General > Tagline"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: classes/Tools.php:927
|
140 |
msgid "Great! We didn't find any issue in your site."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: classes/Tools.php:1072
|
144 |
msgid "Just another WordPress site"
|
145 |
msgstr ""
|
146 |
|
257 |
msgid "See Your Rank on Google"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: controllers/Menu.php:157
|
261 |
msgid "Custom SEO"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: controllers/Menu.php:200
|
265 |
msgid ""
|
266 |
"Check out the Squirrly Analytics section. <a href=\"admin.php?page=sq_posts"
|
267 |
"\" title=\"Squirrly Analytics\">Click here</a>"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: controllers/Menu.php:219
|
271 |
msgid " Dashboard"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: controllers/Menu.php:220
|
275 |
msgid "First Step"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: controllers/Menu.php:220
|
279 |
msgid "Dashboard"
|
280 |
msgstr "Dashboard"
|
281 |
|
282 |
+
#: controllers/Menu.php:229
|
283 |
msgid " Performance Analytics"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: controllers/Menu.php:230
|
287 |
msgid "Performance <br />Analytics"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: controllers/Menu.php:238
|
291 |
msgid " Keyword Research"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: controllers/Menu.php:239
|
295 |
msgid "Keyword Research"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: controllers/Menu.php:246
|
299 |
msgid " Live Assistant"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: controllers/Menu.php:247
|
303 |
msgid "Live Assistant"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: controllers/Menu.php:253
|
307 |
msgid " Copywriting"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: controllers/Menu.php:254
|
311 |
msgid "Copywriting"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: controllers/Menu.php:262
|
315 |
msgid " SEO Audit"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: controllers/Menu.php:263
|
319 |
msgid "Site Audit"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: controllers/Menu.php:271
|
323 |
msgid " SEO Settings"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: controllers/Menu.php:272 view/BlockToolbar.php:4
|
327 |
#, fuzzy
|
328 |
msgid "SEO Settings"
|
329 |
msgstr "Setari"
|
330 |
|
331 |
+
#: controllers/Menu.php:280
|
332 |
msgid " Advanced Settings"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: controllers/Menu.php:281 view/BlockSettings.php:22
|
336 |
msgid "Advanced Settings"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: controllers/Menu.php:288
|
340 |
msgid " SEO Patterns"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: controllers/Menu.php:289 view/BlockToolbar.php:14
|
344 |
msgid "Patterns"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: controllers/Menu.php:296
|
348 |
msgid " Account Info"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: controllers/Menu.php:297
|
352 |
msgid "Account Info"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: controllers/Menu.php:304
|
356 |
msgid " Support"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: controllers/Menu.php:305 view/BlockSupport.php:18
|
360 |
msgid "Support"
|
361 |
msgstr "Suport"
|
362 |
|
363 |
+
#: controllers/Menu.php:312
|
364 |
msgid "Become an Affiliate with "
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: controllers/Menu.php:313
|
368 |
msgid "Become an Affiliate"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: controllers/Menu.php:321
|
372 |
msgid "Import SEO "
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: controllers/Menu.php:322 view/BlockImport.php:77
|
376 |
msgid "Import SEO"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: controllers/Menu.php:349
|
380 |
#, php-format
|
381 |
msgid "Go back and complete the Squirrly Tasks for today %sContinue%s"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: controllers/Menu.php:361
|
385 |
msgid "SEO Snippet"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: controllers/PostsList.php:83
|
389 |
msgid "Squirrly"
|
390 |
msgstr "Squirrly"
|
391 |
|
392 |
+
#: controllers/PostsList.php:110
|
393 |
msgid "Custom description: "
|
394 |
msgstr "Descrierea:"
|
395 |
|
396 |
+
#: controllers/PostsList.php:110
|
397 |
msgid "Custom title: "
|
398 |
msgstr "Titlul"
|
399 |
|
400 |
+
#: controllers/PostsList.php:148
|
401 |
msgid "SEO Analytics, by Squirrly"
|
402 |
msgstr "SEO Analytics, de la Squirrly"
|
403 |
|
404 |
+
#: controllers/PostsList.php:149 view/Blockseo.php:10
|
405 |
msgid "Update"
|
406 |
msgstr "Update"
|
407 |
|
408 |
+
#: controllers/PostsList.php:153
|
409 |
msgid "Not Public"
|
410 |
msgstr "Ciorna"
|
411 |
|
412 |
+
#: controllers/PostsList.php:154
|
413 |
msgid "Could not process"
|
414 |
msgstr "Nu s-a putut verifica"
|
415 |
|
416 |
+
#: controllers/PostsList.php:309 controllers/PostsList.php:327
|
417 |
#, php-format
|
418 |
msgid "Not in top 100 for: %s"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: controllers/PostsList.php:311 controllers/PostsList.php:329
|
422 |
msgid "The URL is Indexed"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: controllers/PostsList.php:313 controllers/PostsList.php:331
|
426 |
#: models/BlockPostsAnalytics.php:438
|
427 |
#, php-format
|
428 |
msgid "%s"
|
518 |
msgstr "Suport la plugin"
|
519 |
|
520 |
#: core/BlockSupport.php:96
|
|
|
521 |
msgid "Message sent. Thank you!"
|
522 |
msgstr "Mesajul a fost trimis..."
|
523 |
|
631 |
msgstr ""
|
632 |
|
633 |
#: core/Loading.php:58
|
634 |
+
msgid "Keyword Research takes too long to get the results. Click to try again"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: core/Loading.php:59
|
638 |
msgid "No results found!"
|
639 |
msgstr "Nu s-a gasit nimic ..."
|
640 |
|
641 |
+
#: core/Loading.php:60
|
642 |
msgid "Enter one more word to find relevant results"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: core/Loading.php:61
|
646 |
msgid "Takes too long to check this keyword ..."
|
647 |
msgstr "Ia prea mult timp sa verifice cuvantul ..."
|
648 |
|
649 |
+
#: core/Loading.php:62
|
650 |
msgid "Do a research!"
|
651 |
msgstr "Mai multe detalii!"
|
652 |
|
653 |
+
#: core/Loading.php:63
|
654 |
msgid "Do more research!"
|
655 |
msgstr "Mai multe detalii!"
|
656 |
|
657 |
+
#: core/Loading.php:64
|
658 |
#, php-format
|
659 |
msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
|
660 |
msgstr ""
|
661 |
"[ ATTRIBUTE: Verificati: %s pentru a vedea conditile de atribuire a "
|
662 |
"imaginii ]"
|
663 |
|
664 |
+
#: core/Loading.php:65
|
665 |
msgid "Has creative commons attributes"
|
666 |
msgstr "Are conditii de atribuire"
|
667 |
|
668 |
+
#: core/Loading.php:66
|
669 |
msgid "No known copyright restrictions"
|
670 |
msgstr "Nu sunt restrictii de copyright cunoscute"
|
671 |
|
672 |
+
#: core/Loading.php:67
|
673 |
msgid ""
|
674 |
"You haven`t used Squirrly SEO to optimize your article. Do you want to "
|
675 |
"optimize for a keyword before publishing?"
|
677 |
"Nu ai folosit Squirrly SEO pentru a optimiza articolul. Vrei sa il "
|
678 |
"optimizezi inainte de publicare?"
|
679 |
|
680 |
+
#: core/Loading.php:68
|
681 |
msgid "Keyword Research limit exceeded"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: core/Loading.php:69
|
685 |
msgid "Your Subscription has Expired"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: core/Loading.php:70
|
689 |
msgid "Add 20 Keyword Researches"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: core/Loading.php:71
|
693 |
msgid "There are no keywords saved in briefcase yet"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: core/Loading.php:72
|
697 |
#, php-format
|
698 |
msgid "Congratulations! Your article is 100% optimized!"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: core/Loading.php:73
|
702 |
#, php-format
|
703 |
msgid "appears too many times. Try to remove %s of them"
|
704 |
msgstr "apare de prea multe ori. Sterge %s cuvint(e) cheie"
|
705 |
|
706 |
+
#: core/Loading.php:74
|
707 |
#, php-format
|
708 |
msgid "write %s more words"
|
709 |
msgstr "mai adauga %s cuvinte"
|
710 |
|
711 |
+
#: core/Loading.php:75
|
712 |
#, php-format
|
713 |
msgid "Add the keyword in the %s of your article"
|
714 |
msgstr "Adauga cuvantul cheie la %s articolului"
|
715 |
|
716 |
+
#: core/Loading.php:76
|
717 |
msgid "Click to keep the highlight on"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: core/Loading.php:77
|
721 |
msgid "introduction"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: core/Loading.php:78
|
725 |
#, php-format
|
726 |
msgid "Write more words after the %s keyword"
|
727 |
msgstr "Scrie mai multe cuvinte dupa %s cuvant cheie"
|
728 |
|
729 |
+
#: core/Loading.php:79
|
730 |
msgid "or use synonyms"
|
731 |
msgstr "sau foloseste sinonime"
|
732 |
|
733 |
+
#: core/Loading.php:80
|
734 |
#, php-format
|
735 |
msgid "add %s more word(s)"
|
736 |
msgstr "Mai adauga %s cuvinte"
|
737 |
|
738 |
+
#: core/Loading.php:81
|
739 |
#, php-format
|
740 |
msgid "or remove %s word(s)"
|
741 |
msgstr "sau sterge %s cuvinte"
|
742 |
|
743 |
+
#: core/Loading.php:82
|
744 |
#, php-format
|
745 |
msgid "add %s more keyword(s)"
|
746 |
msgstr "mai adauga %s cuvint(e) cheie"
|
747 |
|
748 |
+
#: core/Loading.php:83
|
749 |
#, php-format
|
750 |
msgid "write %s more words to start calculating"
|
751 |
msgstr "Scrie %s cuvinte pentru a se putea verifica"
|
885 |
msgstr "Codul Facbook este gresit."
|
886 |
|
887 |
#: models/BlockSettingsSeo.php:169
|
|
|
888 |
msgid "The code for Pinterest is incorrect."
|
889 |
+
msgstr "Codul Pinterest este gresit."
|
890 |
|
891 |
#: models/BlockSettingsSeo.php:194
|
892 |
msgid "The code for Bing is incorrect."
|
893 |
msgstr "Codul Bing este gresit."
|
894 |
|
895 |
#: models/BlockSettingsSeo.php:320
|
|
|
896 |
msgid "File type error: Only ICO, JPEG, JPG, GIF or PNG files are allowed."
|
897 |
+
msgstr "Eroare fisier: Doar fisierele JPEG, JPG, GIF sau PNG sunt permise"
|
898 |
|
899 |
#: models/BlockSettingsSeo.php:326
|
900 |
msgid "GD error: The GD library must be installed on your server."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
#: models/PostsList.php:92
|
|
|
1013 |
msgid "The total authority for this post"
|
1014 |
msgstr "Nu sunt suficiente informatii pentru acest post"
|
1015 |
|
1060 |
msgstr ""
|
1061 |
|
1062 |
#: view/BlockAccount.php:23
|
|
|
1063 |
msgid "Squirrly account information"
|
1064 |
+
msgstr "Informatii cont Squirrly"
|
1065 |
|
1066 |
#: view/BlockAccount.php:25 view/BlockAffiliate.php:23
|
|
|
1067 |
msgid "Go to dashboard"
|
1068 |
+
msgstr "Mergi la Dashboard"
|
1069 |
|
1070 |
#: view/BlockAccount.php:26
|
1071 |
msgid "See ALL of Your Activity so Far"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
#: view/BlockAnalytics.php:86
|
|
|
1163 |
msgid "Google Page Rank"
|
1164 |
+
msgstr ""
|
1165 |
|
1166 |
#: view/BlockAnalytics.php:92
|
1167 |
msgid "Ahrefs Rank"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
#: view/BlockAnalytics.php:118
|
|
|
1179 |
msgid "Twitter shares"
|
1180 |
+
msgstr ""
|
1181 |
|
1182 |
#: view/BlockAnalytics.php:123
|
|
|
1183 |
msgid "Google+ shares"
|
1184 |
+
msgstr ""
|
1185 |
|
1186 |
#: view/BlockAnalytics.php:128
|
1187 |
msgid "LinkedIn Shares"
|
1210 |
msgstr "Vizite"
|
1211 |
|
1212 |
#: view/BlockAnalytics.php:256
|
|
|
1213 |
msgid "Current: "
|
1214 |
msgstr "Pozitia curenta"
|
1215 |
|
1222 |
msgstr ""
|
1223 |
|
1224 |
#: view/BlockAnalytics.php:262
|
|
|
1225 |
msgid "last 30 days"
|
1226 |
msgstr "Ultimele 30 zile"
|
1227 |
|
1439 |
"SEO potential"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: view/BlockDashboard.php:47 view/BlockDashboard.php:150
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1443 |
msgid "Next Feature"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: view/BlockDashboard.php:48 view/BlockDashboard.php:151
|
1447 |
msgid "Previous Feature"
|
1448 |
msgstr ""
|
1449 |
|
1647 |
#: view/BlockPatterns.php:118 view/BlockPatterns.php:132
|
1648 |
#: view/BlockPatterns.php:149 view/BlockSettings.php:135
|
1649 |
#: view/BlockSettings.php:146 view/BlockSettings.php:157
|
1650 |
+
#: view/BlockSettings.php:168 view/BlockSettings.php:179
|
1651 |
+
#: view/BlockSettings.php:191 view/BlockSettings.php:203
|
1652 |
+
#: view/BlockSettings.php:366 view/BlockSettingsSeo.php:53
|
1653 |
+
#: view/BlockSettingsSeo.php:95 view/BlockSettingsSeo.php:112
|
1654 |
+
#: view/BlockSettingsSeo.php:128 view/BlockSettingsSeo.php:144
|
1655 |
+
#: view/BlockSettingsSeo.php:160 view/BlockSettingsSeo.php:176
|
1656 |
+
#: view/BlockSettingsSeo.php:192 view/BlockSettingsSeo.php:220
|
1657 |
+
#: view/BlockSettingsSeo.php:236 view/BlockSettingsSeo.php:252
|
1658 |
+
#: view/BlockSettingsSeo.php:271 view/BlockSettingsSeo.php:546
|
1659 |
+
#: view/BlockSettingsSeo.php:578 view/BlockSettingsSeo.php:586
|
1660 |
+
#: view/BlockSettingsSeo.php:684 view/BlockSettingsSeo.php:1030
|
1661 |
+
#: view/FrontMenu.php:49 view/FrontMenu.php:508 view/FrontMenu.php:521
|
1662 |
+
#: view/FrontMenu.php:534
|
1663 |
msgid "Yes"
|
1664 |
msgstr "Da"
|
1665 |
|
1666 |
#: view/BlockPatterns.php:120 view/BlockPatterns.php:134
|
1667 |
#: view/BlockPatterns.php:151 view/BlockSettings.php:137
|
1668 |
#: view/BlockSettings.php:148 view/BlockSettings.php:159
|
1669 |
+
#: view/BlockSettings.php:170 view/BlockSettings.php:181
|
1670 |
+
#: view/BlockSettings.php:193 view/BlockSettings.php:205
|
1671 |
+
#: view/BlockSettings.php:368 view/BlockSettingsSeo.php:55
|
1672 |
+
#: view/BlockSettingsSeo.php:97 view/BlockSettingsSeo.php:114
|
1673 |
+
#: view/BlockSettingsSeo.php:130 view/BlockSettingsSeo.php:146
|
1674 |
+
#: view/BlockSettingsSeo.php:162 view/BlockSettingsSeo.php:178
|
1675 |
+
#: view/BlockSettingsSeo.php:194 view/BlockSettingsSeo.php:222
|
1676 |
+
#: view/BlockSettingsSeo.php:238 view/BlockSettingsSeo.php:254
|
1677 |
+
#: view/BlockSettingsSeo.php:273 view/BlockSettingsSeo.php:548
|
1678 |
+
#: view/BlockSettingsSeo.php:580 view/BlockSettingsSeo.php:588
|
1679 |
+
#: view/BlockSettingsSeo.php:686 view/BlockSettingsSeo.php:1032
|
1680 |
+
#: view/FrontMenu.php:51 view/FrontMenu.php:510 view/FrontMenu.php:523
|
1681 |
+
#: view/FrontMenu.php:536
|
1682 |
msgid "No"
|
1683 |
msgstr "Nu"
|
1684 |
|
1736 |
"that we can track them, and display you the analytics"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: view/BlockSettings.php:24 view/BlockSettings.php:416
|
1740 |
msgid "Save settings"
|
1741 |
msgstr "Salveaza setari"
|
1742 |
|
1823 |
msgid "Use <strong> the NEW version of the SEO Live Assistant</strong>."
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: view/BlockSettings.php:184
|
1827 |
+
msgid "Load <strong>Squirrly SEO Snippet in Frontend</strong> too."
|
1828 |
+
msgstr ""
|
1829 |
+
|
1830 |
+
#: view/BlockSettings.php:196
|
1831 |
msgid ""
|
1832 |
"Download <strong>remote images</strong> in your <strong>Media Library</"
|
1833 |
"strong> for the new posts."
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: view/BlockSettings.php:208
|
1837 |
msgid ""
|
1838 |
"Correct my <strong>feed links</strong> and <strong>images</strong> (convert "
|
1839 |
"from relative to absolute)."
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: view/BlockSettings.php:218
|
1843 |
msgid "Google Rank Options"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: view/BlockSettings.php:219
|
1847 |
#, php-format
|
1848 |
msgid "%sCountry targeting%s"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: view/BlockSettings.php:220
|
1852 |
#, php-format
|
1853 |
msgid "%sPowerful SEO Tool For Strong Google Rankings%s"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: view/BlockSettings.php:227
|
1857 |
msgid ""
|
1858 |
+
"Select the Google country for which Squirrly will check the Google rank."
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
#: view/BlockSettings.php:232
|
1862 |
msgid "Default"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: view/BlockSettings.php:233
|
1866 |
msgid "American Samoa"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: view/BlockSettings.php:234
|
1870 |
msgid "Anguilla"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: view/BlockSettings.php:235
|
1874 |
msgid "Antigua and Barbuda"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
+
#: view/BlockSettings.php:236
|
1878 |
msgid "Argentina"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: view/BlockSettings.php:237
|
1882 |
msgid "Australia"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
+
#: view/BlockSettings.php:238
|
1886 |
msgid "Austria"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: view/BlockSettings.php:239
|
1890 |
msgid "Azerbaijan"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: view/BlockSettings.php:240
|
1894 |
msgid "Belgium"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
+
#: view/BlockSettings.php:241
|
1898 |
msgid "Brazil"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: view/BlockSettings.php:242
|
1902 |
msgid "British Virgin Islands"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: view/BlockSettings.php:243
|
1906 |
msgid "Burundi"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: view/BlockSettings.php:244
|
1910 |
msgid "Bulgaria"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: view/BlockSettings.php:245
|
1914 |
msgid "Canada"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: view/BlockSettings.php:246
|
1918 |
msgid "Chad"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: view/BlockSettings.php:247
|
1922 |
msgid "Chile"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
+
#: view/BlockSettings.php:248
|
1926 |
msgid "Colombia"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: view/BlockSettings.php:249
|
1930 |
msgid "Costa Rica"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: view/BlockSettings.php:250
|
1934 |
msgid "Côte d'Ivoire"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: view/BlockSettings.php:251
|
1938 |
msgid "Cuba"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
+
#: view/BlockSettings.php:252
|
1942 |
msgid "Czech Republic"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
+
#: view/BlockSettings.php:253
|
1946 |
msgid "Dem. Rep. of the Congo"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: view/BlockSettings.php:254
|
1950 |
msgid "Denmark"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: view/BlockSettings.php:255
|
1954 |
msgid "Djibouti"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: view/BlockSettings.php:256
|
1958 |
msgid "Dominican Republic"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: view/BlockSettings.php:257
|
1962 |
msgid "Ecuador"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: view/BlockSettings.php:258
|
1966 |
msgid "El Salvador"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: view/BlockSettings.php:259
|
1970 |
msgid "Estonia"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: view/BlockSettings.php:260
|
1974 |
msgid "Federated States of Micronesia"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: view/BlockSettings.php:261
|
1978 |
msgid "Fiji"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: view/BlockSettings.php:262
|
1982 |
msgid "Finland"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
+
#: view/BlockSettings.php:263
|
1986 |
#, fuzzy
|
1987 |
msgid "France"
|
1988 |
msgstr "Renunta"
|
1989 |
|
1990 |
+
#: view/BlockSettings.php:264
|
1991 |
msgid "The Gambia"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: view/BlockSettings.php:265
|
1995 |
msgid "Georgia"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: view/BlockSettings.php:266
|
1999 |
msgid "Germany"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
+
#: view/BlockSettings.php:267
|
2003 |
msgid "Gibraltar"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: view/BlockSettings.php:268
|
2007 |
msgid "Greece"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: view/BlockSettings.php:269
|
2011 |
msgid "Greenland"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: view/BlockSettings.php:270
|
2015 |
msgid "Guernsey"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: view/BlockSettings.php:271
|
2019 |
msgid "Honduras"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: view/BlockSettings.php:272
|
2023 |
msgid "Hong Kong"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: view/BlockSettings.php:273
|
2027 |
msgid "Hungary"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: view/BlockSettings.php:274
|
2031 |
msgid "India"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: view/BlockSettings.php:275
|
2035 |
msgid "Indonesia"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: view/BlockSettings.php:276
|
2039 |
msgid "Ireland"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: view/BlockSettings.php:277
|
2043 |
msgid "Isle of Man"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: view/BlockSettings.php:278
|
2047 |
msgid "Israel"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: view/BlockSettings.php:279
|
2051 |
msgid "Italy"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: view/BlockSettings.php:280
|
2055 |
msgid "Jamaica"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: view/BlockSettings.php:281
|
2059 |
msgid "Japan"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: view/BlockSettings.php:282
|
2063 |
msgid "Jersey"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: view/BlockSettings.php:283
|
2067 |
msgid "Kazakhstan"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: view/BlockSettings.php:284
|
2071 |
msgid "Korea"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: view/BlockSettings.php:285
|
2075 |
msgid "Latvia"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: view/BlockSettings.php:286
|
2079 |
msgid "Lesotho"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
+
#: view/BlockSettings.php:287
|
2083 |
msgid "Liechtenstein"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: view/BlockSettings.php:288
|
2087 |
msgid "Lithuania"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
+
#: view/BlockSettings.php:289
|
2091 |
msgid "Luxembourg"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
+
#: view/BlockSettings.php:290
|
2095 |
msgid "Malawi"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: view/BlockSettings.php:291
|
2099 |
msgid "Malaysia"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: view/BlockSettings.php:292
|
2103 |
msgid "Malta"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: view/BlockSettings.php:293
|
2107 |
msgid "Mauritius"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: view/BlockSettings.php:294
|
2111 |
msgid "México"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: view/BlockSettings.php:295
|
2115 |
msgid "Montserrat"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: view/BlockSettings.php:296
|
2119 |
msgid "Namibia"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: view/BlockSettings.php:297
|
2123 |
msgid "Nepal"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: view/BlockSettings.php:298
|
2127 |
msgid "Netherlands"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: view/BlockSettings.php:299
|
2131 |
msgid "New Zealand"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: view/BlockSettings.php:300
|
2135 |
msgid "Nicaragua"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: view/BlockSettings.php:301
|
2139 |
msgid "Norfolk Island"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: view/BlockSettings.php:302
|
2143 |
msgid "Norway"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: view/BlockSettings.php:303
|
2147 |
msgid "Pakistan"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: view/BlockSettings.php:304
|
2151 |
msgid "Panamá"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: view/BlockSettings.php:305
|
2155 |
msgid "Paraguay"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: view/BlockSettings.php:306
|
2159 |
msgid "Perú"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: view/BlockSettings.php:307
|
2163 |
msgid "Philippines"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: view/BlockSettings.php:308
|
2167 |
msgid "Pitcairn Islands"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: view/BlockSettings.php:309
|
2171 |
msgid "Poland"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: view/BlockSettings.php:310
|
2175 |
msgid "Portugal"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: view/BlockSettings.php:311
|
2179 |
msgid "Puerto Rico"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: view/BlockSettings.php:312
|
2183 |
msgid "Rep. of the Congo"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: view/BlockSettings.php:313
|
2187 |
msgid "Romania"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: view/BlockSettings.php:314
|
2191 |
msgid "Russia"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: view/BlockSettings.php:315
|
2195 |
msgid "Rwanda"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: view/BlockSettings.php:316
|
2199 |
msgid "Saint Helena"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: view/BlockSettings.php:317
|
2203 |
msgid "San Marino"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: view/BlockSettings.php:318
|
2207 |
msgid "Saudi Arabia"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: view/BlockSettings.php:319
|
2211 |
msgid "Singapore"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
+
#: view/BlockSettings.php:320
|
2215 |
msgid "Slovakia"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: view/BlockSettings.php:321
|
2219 |
msgid "South Africa"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: view/BlockSettings.php:322
|
2223 |
msgid "Spain"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: view/BlockSettings.php:323
|
2227 |
msgid "Sri Lanka"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: view/BlockSettings.php:324
|
2231 |
msgid "Sweden"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: view/BlockSettings.php:325
|
2235 |
msgid "Switzerland"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: view/BlockSettings.php:326
|
2239 |
msgid "Taiwan"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: view/BlockSettings.php:327
|
2243 |
msgid "Thailand"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: view/BlockSettings.php:328
|
2247 |
msgid "Trinidad and Tobago"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: view/BlockSettings.php:329
|
2251 |
msgid "Turkey"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: view/BlockSettings.php:330
|
2255 |
msgid "Ukraine"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: view/BlockSettings.php:331
|
2259 |
msgid "United Arab Emirates"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: view/BlockSettings.php:332
|
2263 |
msgid "United Kingdom"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: view/BlockSettings.php:333
|
2267 |
msgid "United States"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: view/BlockSettings.php:334
|
2271 |
msgid "Uruguay"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: view/BlockSettings.php:335
|
2275 |
msgid "Uzbekistan"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: view/BlockSettings.php:336
|
2279 |
msgid "Vanuatu"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: view/BlockSettings.php:337
|
2283 |
msgid "Venezuela"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: view/BlockSettings.php:338
|
2287 |
msgid "Vietnam"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: view/BlockSettings.php:342
|
2291 |
#, php-format
|
2292 |
msgid ""
|
2293 |
"Select how many pages to be checked in the Performance Analytics section "
|
2294 |
"every hour. %s(not recommended for shared hosting plan)%s"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
+
#: view/BlockSettings.php:349
|
2298 |
msgid "page"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
#: view/BlockSettings.php:351
|
2302 |
msgid "pages"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
+
#: view/BlockSettings.php:357
|
2306 |
msgid "h"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
+
#: view/BlockSettings.php:371
|
2310 |
msgid ""
|
2311 |
"Restricts search results to results originating in the above particular "
|
2312 |
"country."
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
#: view/BlockSettings.php:381
|
2316 |
msgid "Robots.txt Editor"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: view/BlockSettings.php:382
|
2320 |
#, php-format
|
2321 |
msgid "%sLearn about robots.txt files%s"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: view/BlockSettings.php:383
|
2325 |
#, php-format
|
2326 |
msgid "%sHow to use Robots.txt%s"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: view/BlockSettings.php:389
|
2330 |
msgid "Edit the Robots.txt data"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: view/BlockSettings.php:402
|
2334 |
msgid ""
|
2335 |
"Does not physically create the robots.txt file. The best option for "
|
2336 |
"Multisites."
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: view/BlockSettings.php:407
|
2340 |
msgid "Save Robots"
|
2341 |
msgstr ""
|
2342 |
|
2521 |
msgstr ""
|
2522 |
|
2523 |
#: view/BlockSettingsSeo.php:367
|
|
|
2524 |
msgid "Social Media Options"
|
2525 |
+
msgstr "Optiuni Social Media"
|
2526 |
|
2527 |
#: view/BlockSettingsSeo.php:369
|
2528 |
msgid "Select the language you're using on Social Media"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
#: view/BlockSettingsSeo.php:849
|
2810 |
+
msgid "JSON-LD G17 - 2x More Options"
|
2811 |
msgstr ""
|
2812 |
|
2813 |
#: view/BlockSettingsSeo.php:866
|
2953 |
msgstr ""
|
2954 |
|
2955 |
#: view/BlockSettingsSeo.php:1002
|
2956 |
+
msgid "Add more Facebook Admin IDs"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
#: view/BlockSettingsSeo.php:1016
|
2960 |
+
#, php-format
|
2961 |
msgid "Google %sAnalytics ID%s:"
|
2962 |
msgstr "Google %sAnalytics ID%s:"
|
2963 |
|
2998 |
msgstr ""
|
2999 |
|
3000 |
#: view/BlockSettingsSeo.php:1052
|
3001 |
+
#, php-format
|
3002 |
msgid "Google META verification code for %sWebmaster Tool%s:"
|
3003 |
msgstr "Cod META pentru %sGoogle Webmaster Tool%s"
|
3004 |
|
3005 |
#: view/BlockSettingsSeo.php:1058
|
3006 |
+
#, php-format
|
3007 |
msgid "Bing META code (for %sWebmaster Tool%s ):"
|
3008 |
msgstr "Bing META code (pentru %sWebmaster Tool%s):"
|
3009 |
|
3010 |
#: view/BlockSettingsSeo.php:1065
|
3011 |
+
#, php-format
|
3012 |
msgid "Alexa META code (for %sAlexa Tool%s ):"
|
3013 |
+
msgstr "Alexa META code (pentru %sWebmaster Tool%s):"
|
3014 |
|
3015 |
#: view/BlockSettingsSeo.php:1071
|
3016 |
#, php-format
|
models/Frontend.php
CHANGED
@@ -235,7 +235,7 @@ class SQ_Models_Frontend {
|
|
235 |
*/
|
236 |
public function setPost($curpost = null) {
|
237 |
//Load the post with all the filters applied
|
238 |
-
if($this->_post = apply_filters('sq_post', $curpost)) {
|
239 |
SQ_Classes_Tools::dump($this->_post);
|
240 |
SQ_Classes_Tools::dump($this->_post->sq);
|
241 |
//SQ_Classes_Tools::dump('Show Squirrly', 'isHomePage: ' . $this->isHomePage(), 'is_single: ' . is_single(), 'is_preview: ' . is_preview(), 'is_page: ' . is_page(), 'is_archive: ' . is_archive(), 'is_author: ' . is_author(), 'is_category: ' . is_category(), 'is_tag: ' . is_tag(), 'is_tax: ' . is_tax(), 'is_search: ' . is_search(), 'in_array: ' . (!empty($this->post_types) && in_array($this->post_type, $this->post_types)));
|
@@ -270,9 +270,6 @@ class SQ_Models_Frontend {
|
|
270 |
}
|
271 |
|
272 |
$current_post = apply_filters('sq_current_post', $current_post);
|
273 |
-
SQ_Classes_Tools::dump($current_post);
|
274 |
-
// global $wp_query;
|
275 |
-
// SQ_Classes_Tools::dump($wp_query);
|
276 |
|
277 |
return $current_post;
|
278 |
}
|
@@ -287,7 +284,7 @@ class SQ_Models_Frontend {
|
|
287 |
public function replacePatterns($post) {
|
288 |
if ($post instanceof SQ_Models_Domain_Post) {
|
289 |
$patterns = SQ_Classes_ObjController::getDomain('SQ_Models_Domain_Patterns', $post->toArray());
|
290 |
-
|
291 |
if ($sq_array = $post->sq->toArray()) {
|
292 |
if (!empty($sq_array)) {
|
293 |
foreach ($sq_array as $name => $value) {
|
@@ -425,7 +422,7 @@ SQ_Classes_Tools::dump($patterns);
|
|
425 |
$post->debug = 'isHomePage';
|
426 |
$post->post_type = 'home';
|
427 |
$post->hash = md5('wp_homepage');
|
428 |
-
$post->post_title =
|
429 |
$post->post_excerpt = get_bloginfo('description');
|
430 |
$post->url = home_url();
|
431 |
return $post;
|
235 |
*/
|
236 |
public function setPost($curpost = null) {
|
237 |
//Load the post with all the filters applied
|
238 |
+
if ($this->_post = apply_filters('sq_post', $curpost)) {
|
239 |
SQ_Classes_Tools::dump($this->_post);
|
240 |
SQ_Classes_Tools::dump($this->_post->sq);
|
241 |
//SQ_Classes_Tools::dump('Show Squirrly', 'isHomePage: ' . $this->isHomePage(), 'is_single: ' . is_single(), 'is_preview: ' . is_preview(), 'is_page: ' . is_page(), 'is_archive: ' . is_archive(), 'is_author: ' . is_author(), 'is_category: ' . is_category(), 'is_tag: ' . is_tag(), 'is_tax: ' . is_tax(), 'is_search: ' . is_search(), 'in_array: ' . (!empty($this->post_types) && in_array($this->post_type, $this->post_types)));
|
270 |
}
|
271 |
|
272 |
$current_post = apply_filters('sq_current_post', $current_post);
|
|
|
|
|
|
|
273 |
|
274 |
return $current_post;
|
275 |
}
|
284 |
public function replacePatterns($post) {
|
285 |
if ($post instanceof SQ_Models_Domain_Post) {
|
286 |
$patterns = SQ_Classes_ObjController::getDomain('SQ_Models_Domain_Patterns', $post->toArray());
|
287 |
+
|
288 |
if ($sq_array = $post->sq->toArray()) {
|
289 |
if (!empty($sq_array)) {
|
290 |
foreach ($sq_array as $name => $value) {
|
422 |
$post->debug = 'isHomePage';
|
423 |
$post->post_type = 'home';
|
424 |
$post->hash = md5('wp_homepage');
|
425 |
+
$post->post_title = get_bloginfo('name');
|
426 |
$post->post_excerpt = get_bloginfo('description');
|
427 |
$post->url = home_url();
|
428 |
return $post;
|
models/services/JsonLD.php
CHANGED
@@ -147,7 +147,7 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
|
|
147 |
if (is_array($var)) {
|
148 |
return array_map(array($this, 'clean'), $var);
|
149 |
} else {
|
150 |
-
return is_string($var) ? ((strpos($var,'://') !== false) ? esc_url($var) : sanitize_text_field($var)) : $var;
|
151 |
}
|
152 |
}
|
153 |
|
@@ -164,10 +164,10 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
|
|
164 |
if (isset($jsonld[$jsonld_type])) {
|
165 |
foreach ($jsonld[$jsonld_type] as $key => $value) {
|
166 |
if ($value <> '') {
|
167 |
-
if ($key == 'contactType' || ($jsonld_type == 'Organization' && $key == 'jobTitle')
|
168 |
continue;
|
169 |
}
|
170 |
-
if ($jsonld_type == 'Organization' && $key == 'telephone'
|
171 |
$markup['contactPoint'] = array(
|
172 |
'@type' => 'ContactPoint',
|
173 |
'telephone' => $value,
|
@@ -252,7 +252,7 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
|
|
252 |
'url' => $this->_post->url
|
253 |
);
|
254 |
|
255 |
-
if (
|
256 |
$markup['thumbnailUrl'] = $this->_post->sq->og_media;
|
257 |
}
|
258 |
if (isset($this->_post->post_date)) {
|
@@ -262,13 +262,15 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
|
|
262 |
$markup['dateModified'] = date('c', strtotime($this->_post->post_modified));
|
263 |
}
|
264 |
|
265 |
-
if (
|
266 |
$markup['image'] = array(
|
267 |
"@type" => "ImageObject",
|
268 |
"url" => $this->_post->sq->og_media,
|
269 |
"height" => 500,
|
270 |
"width" => 700,
|
271 |
);
|
|
|
|
|
272 |
}
|
273 |
|
274 |
$markup['author'] = array(
|
@@ -278,7 +280,6 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
|
|
278 |
);
|
279 |
|
280 |
|
281 |
-
|
282 |
if ($jsonld_type == 'Organization' && isset($jsonld[$jsonld_type])) {
|
283 |
$markup['publisher'] = array(
|
284 |
"@type" => $jsonld_type,
|
@@ -321,6 +322,30 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
|
|
321 |
}
|
322 |
}
|
323 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
/**
|
325 |
* Get the author
|
326 |
* @param string $what
|
147 |
if (is_array($var)) {
|
148 |
return array_map(array($this, 'clean'), $var);
|
149 |
} else {
|
150 |
+
return is_string($var) ? ((strpos($var, '://') !== false) ? esc_url($var) : sanitize_text_field($var)) : $var;
|
151 |
}
|
152 |
}
|
153 |
|
164 |
if (isset($jsonld[$jsonld_type])) {
|
165 |
foreach ($jsonld[$jsonld_type] as $key => $value) {
|
166 |
if ($value <> '') {
|
167 |
+
if ($key == 'contactType' || ($jsonld_type == 'Organization' && $key == 'jobTitle')) {
|
168 |
continue;
|
169 |
}
|
170 |
+
if ($jsonld_type == 'Organization' && $key == 'telephone') {
|
171 |
$markup['contactPoint'] = array(
|
172 |
'@type' => 'ContactPoint',
|
173 |
'telephone' => $value,
|
252 |
'url' => $this->_post->url
|
253 |
);
|
254 |
|
255 |
+
if ($this->_post->sq->og_media <> '') {
|
256 |
$markup['thumbnailUrl'] = $this->_post->sq->og_media;
|
257 |
}
|
258 |
if (isset($this->_post->post_date)) {
|
262 |
$markup['dateModified'] = date('c', strtotime($this->_post->post_modified));
|
263 |
}
|
264 |
|
265 |
+
if ($this->_post->sq->og_media <> '') {
|
266 |
$markup['image'] = array(
|
267 |
"@type" => "ImageObject",
|
268 |
"url" => $this->_post->sq->og_media,
|
269 |
"height" => 500,
|
270 |
"width" => 700,
|
271 |
);
|
272 |
+
} else {
|
273 |
+
$this->_setMedia($markup);
|
274 |
}
|
275 |
|
276 |
$markup['author'] = array(
|
280 |
);
|
281 |
|
282 |
|
|
|
283 |
if ($jsonld_type == 'Organization' && isset($jsonld[$jsonld_type])) {
|
284 |
$markup['publisher'] = array(
|
285 |
"@type" => $jsonld_type,
|
322 |
}
|
323 |
}
|
324 |
|
325 |
+
/** Set the Image from Feature image
|
326 |
+
* @param $markup
|
327 |
+
*/
|
328 |
+
protected function _setMedia(&$markup) {
|
329 |
+
$images = $this->getPostImages();
|
330 |
+
if (!empty($images)) {
|
331 |
+
$image = current($images);
|
332 |
+
if (isset($image['src'])) {
|
333 |
+
$markup['image'] = array(
|
334 |
+
"@type" => "ImageObject",
|
335 |
+
"url" => $image['src'],
|
336 |
+
"height" => 500,
|
337 |
+
"width" => 700,
|
338 |
+
);
|
339 |
+
if (isset($image['width'])) {
|
340 |
+
$markup['image']["width"] = $image['width'];
|
341 |
+
}
|
342 |
+
if (isset($image['height'])) {
|
343 |
+
$markup['image']["height"] = $image['height'];
|
344 |
+
}
|
345 |
+
}
|
346 |
+
}
|
347 |
+
}
|
348 |
+
|
349 |
/**
|
350 |
* Get the author
|
351 |
* @param string $what
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: cifi, calinvingan, florinmuresan, nagy.sorel
|
3 |
Tags: seo, e-commerce, plugins, content, marketing, wordpress seo, seo plugin, seo optimization, seo content, ecommerce, keyword research, content seo, yoast, all in one seo, search engine optimization, XML sitemap for google, multisite SEO, squirrly, meta title, meta description, favicon, mobile, canonical, seo correction, seo title, seo meta, twitter, woocommerce, feeds, social media, blogging, google-analytics, tracking, best seo tools audit website, content audit tool, ecommerce seo strategy, marketing research tools, research tools for writers, seo audit tool, SEO keyword research tool,duplicate removal tool, ecommerce SEO, facebook open graph wordpress, google keyword planner alternative, Google ranking, how to install facebook pixel on wordpress, JSON-LD structure, Live Assistant, meta duplicate removal, open graph generator, pinterest rich pin validator, related links
|
4 |
Requires at least: 4.0
|
5 |
-
Tested up to: 4.
|
6 |
Stable tag: trunk
|
7 |
Donate link: https://www.squirrly.co/wordpress-seo-by-squirrly
|
8 |
|
@@ -178,9 +178,23 @@ Type a keyword to the right of the screen and start using Squirrly Seo. Enjoy!
|
|
178 |
8. Seo - Use the research tools for writers from the Inspiration box.
|
179 |
|
180 |
== Upgrade Notice ==
|
181 |
-
Squirrly 8.
|
182 |
|
183 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
= 8.2.23 - 11/07/2017 =
|
185 |
* Fixed the SEO METAs in frontend for some theme
|
186 |
* Fixed the SEO METAs for Wp Super cache and other cache plugins
|
2 |
Contributors: cifi, calinvingan, florinmuresan, nagy.sorel
|
3 |
Tags: seo, e-commerce, plugins, content, marketing, wordpress seo, seo plugin, seo optimization, seo content, ecommerce, keyword research, content seo, yoast, all in one seo, search engine optimization, XML sitemap for google, multisite SEO, squirrly, meta title, meta description, favicon, mobile, canonical, seo correction, seo title, seo meta, twitter, woocommerce, feeds, social media, blogging, google-analytics, tracking, best seo tools audit website, content audit tool, ecommerce seo strategy, marketing research tools, research tools for writers, seo audit tool, SEO keyword research tool,duplicate removal tool, ecommerce SEO, facebook open graph wordpress, google keyword planner alternative, Google ranking, how to install facebook pixel on wordpress, JSON-LD structure, Live Assistant, meta duplicate removal, open graph generator, pinterest rich pin validator, related links
|
4 |
Requires at least: 4.0
|
5 |
+
Tested up to: 4.9
|
6 |
Stable tag: trunk
|
7 |
Donate link: https://www.squirrly.co/wordpress-seo-by-squirrly
|
8 |
|
178 |
8. Seo - Use the research tools for writers from the Inspiration box.
|
179 |
|
180 |
== Upgrade Notice ==
|
181 |
+
Squirrly 8.2.23 it's a stable version of Squirrly SEO and has all the SEO requirements by Search Engines
|
182 |
|
183 |
== Changelog ==
|
184 |
+
= 8.2.26 - 11/17/2017 =
|
185 |
+
* Fixed Facebook Admin ID duplicates
|
186 |
+
* Update the Sitemap XML Custom post types in Admin Settings
|
187 |
+
* Added image Object in Json-LD if the post has featured image
|
188 |
+
* Prevent Crons from loading if not necessary
|
189 |
+
* Prevent 404 page in BudyPress user activity page
|
190 |
+
* Squirrly SEO is now compatible with WP 4.9
|
191 |
+
|
192 |
+
= 8.2.24 - 11/10/2017 =
|
193 |
+
* Update SLA to work whn other plugins have javascript errors in Edit Post
|
194 |
+
* Increased the connection wait time to prevent the error message from showing on low connectivity
|
195 |
+
* Fixed Typos and Broken links
|
196 |
+
* Update Frontend to work with WP-Rocket plugin
|
197 |
+
|
198 |
= 8.2.23 - 11/07/2017 =
|
199 |
* Fixed the SEO METAs in frontend for some theme
|
200 |
* Fixed the SEO METAs for Wp Super cache and other cache plugins
|
squirrly.php
CHANGED
@@ -8,12 +8,12 @@
|
|
8 |
Plugin URI: http://www.squirrly.co
|
9 |
Description: SEO By Squirrly is for the NON-SEO experts. Get Excellent Seo with Better Content, Ranking and Analytics. For Both Humans and Search Bots.<BR> <a href="http://my.squirrly.co/user" target="_blank"><strong>Check your profile</strong></a>
|
10 |
Author: Squirrly SEO
|
11 |
-
Version: 8.2.
|
12 |
Author URI: http://www.squirrly.co
|
13 |
*/
|
14 |
|
15 |
/* SET THE CURRENT VERSION ABOVE AND BELOW */
|
16 |
-
define('SQ_VERSION', '8.2.
|
17 |
|
18 |
/* Call config files */
|
19 |
if (file_exists(dirname(__FILE__) . '/config/config.php')) {
|
@@ -37,12 +37,17 @@ if (file_exists(dirname(__FILE__) . '/config/config.php')) {
|
|
37 |
*/
|
38 |
register_activation_hook(__FILE__, array(SQ_Classes_ObjController::getClass('SQ_Classes_Tools'), 'sq_activate'));
|
39 |
register_deactivation_hook(__FILE__, array(SQ_Classes_ObjController::getClass('SQ_Classes_Tools'), 'sq_deactivate'));
|
|
|
|
|
|
|
40 |
} elseif (SQ_Classes_Tools::getOption('sq_use') == 1) {
|
41 |
SQ_Classes_ObjController::getClass('SQ_Classes_FrontController')->runFrontend();
|
42 |
}
|
43 |
|
44 |
-
|
45 |
-
|
|
|
|
|
46 |
} else {
|
47 |
/* Main class call */
|
48 |
add_action('admin_init', 'sq_phpError');
|
8 |
Plugin URI: http://www.squirrly.co
|
9 |
Description: SEO By Squirrly is for the NON-SEO experts. Get Excellent Seo with Better Content, Ranking and Analytics. For Both Humans and Search Bots.<BR> <a href="http://my.squirrly.co/user" target="_blank"><strong>Check your profile</strong></a>
|
10 |
Author: Squirrly SEO
|
11 |
+
Version: 8.2.26
|
12 |
Author URI: http://www.squirrly.co
|
13 |
*/
|
14 |
|
15 |
/* SET THE CURRENT VERSION ABOVE AND BELOW */
|
16 |
+
define('SQ_VERSION', '8.2.26');
|
17 |
|
18 |
/* Call config files */
|
19 |
if (file_exists(dirname(__FILE__) . '/config/config.php')) {
|
37 |
*/
|
38 |
register_activation_hook(__FILE__, array(SQ_Classes_ObjController::getClass('SQ_Classes_Tools'), 'sq_activate'));
|
39 |
register_deactivation_hook(__FILE__, array(SQ_Classes_ObjController::getClass('SQ_Classes_Tools'), 'sq_deactivate'));
|
40 |
+
|
41 |
+
//Jost for logged users. Send the posts to API
|
42 |
+
add_action('sq_processApi', array(SQ_Classes_ObjController::getClass('SQ_Controllers_Cron'), 'processSEOPostCron'));
|
43 |
} elseif (SQ_Classes_Tools::getOption('sq_use') == 1) {
|
44 |
SQ_Classes_ObjController::getClass('SQ_Classes_FrontController')->runFrontend();
|
45 |
}
|
46 |
|
47 |
+
//Only if ranking option is activated
|
48 |
+
if (SQ_Classes_Tools::getOption('sq_google_ranksperhour') > 0) {
|
49 |
+
add_action('sq_processCron', array(SQ_Classes_ObjController::getClass('SQ_Controllers_Cron'), 'processRankingCron'));
|
50 |
+
}
|
51 |
} else {
|
52 |
/* Main class call */
|
53 |
add_action('admin_init', 'sq_phpError');
|
view/BlockDashboard.php
CHANGED
@@ -43,88 +43,110 @@
|
|
43 |
<div style="width: 700px; display: inline-block;">
|
44 |
<div style="font-size: 24px; margin: 30px 0 10px 0; color: #999; line-height: 30px;"><?php echo sprintf(__('%sHelp Center%s - learn more about Squirrly SEO features and unhinge your SEO potential', _SQ_PLUGIN_NAME_), '<strong>', '</strong>') ?></div>
|
45 |
|
46 |
-
|
47 |
-
<div class="
|
48 |
-
|
49 |
-
|
50 |
-
</div>
|
51 |
-
<div class="sq_mysquirrly_cta_button">
|
52 |
-
<a href="<?php echo _SQ_DASH_URL_ ?>login/?token=<?php echo SQ_Classes_Tools::getOption('sq_api') ?>&redirect_to=<?php echo _SQ_DASH_URL_ ?>user/dashboard" title="<?php _e('Get It Here', _SQ_PLUGIN_NAME_); ?>" target="_blank"><?php _e('Get It Here', _SQ_PLUGIN_NAME_); ?> »</a></p>
|
53 |
-
</div>
|
54 |
-
</div>
|
55 |
-
<?php } ?>
|
56 |
|
57 |
<ul class="sq_slidelist">
|
58 |
<li class="active">
|
|
|
|
|
|
|
|
|
|
|
59 |
<div>The Best Keyword Research Tool for Non-SEO Experts</div>
|
60 |
-
<a href="javascript:void(0);" rel="
|
|
|
61 |
</li>
|
62 |
<li>
|
63 |
<div>Get SEO Advice as You Write with Squirrly's SEO Virtual Assistant</div>
|
64 |
-
<a href="javascript:void(0);" rel="
|
|
|
65 |
</li>
|
66 |
<li>
|
67 |
<div>Inspiration Box by Squirrly SEO - Top-Tier Research Tools for Writers</div>
|
68 |
-
<a href="javascript:void(0);" rel="
|
|
|
69 |
</li>
|
70 |
<li>
|
71 |
<div>Get to Know the Squirrly Snippet Tool</div>
|
72 |
-
<a href="javascript:void(0);" rel="
|
|
|
73 |
</li>
|
74 |
<li>
|
75 |
<div>Probably the Most User-Friendly Google SERP Checker in the World</div>
|
76 |
-
<a href="javascript:void(0);" rel="
|
|
|
77 |
</li>
|
78 |
<li>
|
79 |
<div>Squirrly's First Page Optimization Option Is Perfect for Non-Expert Users</div>
|
80 |
-
<a href="javascript:void(0);" rel="
|
|
|
81 |
</li>
|
82 |
<li>
|
83 |
<div>The Social Media SEO Trick to Get More Traffic via Social Networks</div>
|
84 |
-
<a href="javascript:void(0);" rel="
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
</li>
|
86 |
<li>
|
87 |
<div>Squirrly's Check for SEO Errors Option Is a Website's Must-Have</div>
|
88 |
-
<a href="javascript:void(0);" rel="
|
|
|
89 |
</li>
|
90 |
<li>
|
91 |
<div>Squirrly SEO Plugin + Sitemap Generator = A Rank-Boosting Combo</div>
|
92 |
-
<a href="javascript:void(0);" rel="
|
|
|
93 |
</li>
|
94 |
<li>
|
95 |
<div>Squirrly SEO Plugin's Favicon Settings</div>
|
96 |
-
<a href="javascript:void(0);" rel="
|
|
|
97 |
</li>
|
98 |
<li>
|
99 |
<div>JSON LD, one of the best Semantic SEO markup solutions</div>
|
100 |
-
<a href="javascript:void(0);" rel="
|
|
|
101 |
</li>
|
102 |
<li>
|
103 |
<div>Control Ecommerce Social Media Metrics with Squirrly SEO Plugin</div>
|
104 |
-
<a href="javascript:void(0);" rel="
|
|
|
105 |
</li>
|
106 |
<li>
|
107 |
<div>Squirrly SEO Plugin's Settings for Posts and Pages</div>
|
108 |
-
<a href="javascript:void(0);" rel="
|
|
|
109 |
</li>
|
110 |
<li>
|
111 |
<div>Learn How to Use Squirrly's Google Rank Option</div>
|
112 |
-
<a href="javascript:void(0);" rel="
|
|
|
113 |
</li>
|
114 |
<li>
|
115 |
<div>How to Use Squirrly's Measure Your Success Option</div>
|
116 |
-
<a href="javascript:void(0);" rel="
|
|
|
117 |
</li>
|
118 |
<li>
|
119 |
<div>How to Check Your robots.txt File from Squirrly SEO Plugin</div>
|
120 |
-
<a href="javascript:void(0);" rel="
|
|
|
121 |
</li>
|
122 |
<li>
|
123 |
<div>Read All About The Site Performance Audit From Squirrly SEO Plugin</div>
|
124 |
-
<a href="javascript:void(0);" rel="
|
|
|
125 |
</li>
|
126 |
</ul>
|
127 |
-
|
|
|
128 |
<div class="sq_slidelist_next"><?php echo __("Next Feature") ?> >></div>
|
129 |
<div class="sq_slidelist_prev" style="display: none"><< <?php echo __("Previous Feature") ?></div>
|
130 |
</div>
|
43 |
<div style="width: 700px; display: inline-block;">
|
44 |
<div style="font-size: 24px; margin: 30px 0 10px 0; color: #999; line-height: 30px;"><?php echo sprintf(__('%sHelp Center%s - learn more about Squirrly SEO features and unhinge your SEO potential', _SQ_PLUGIN_NAME_), '<strong>', '</strong>') ?></div>
|
45 |
|
46 |
+
<div style="padding: 25px 0; font-weight: bold">
|
47 |
+
<div class="sq_slidelist_next"><?php echo __("Next Feature") ?> >></div>
|
48 |
+
<div class="sq_slidelist_prev" style="display: none; "><< <?php echo __("Previous Feature") ?></div>
|
49 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
<ul class="sq_slidelist">
|
52 |
<li class="active">
|
53 |
+
<div>Integrate Themes and SEO Settings Seamlessly</div>
|
54 |
+
<a href="javascript:void(0);" rel="80734028" style="background-image: url('//image.slidesharecdn.com/importseo-171012105353/95/squirrly-seo-plugin-import-options-integrate-themes-and-seo-settings-seamlessly-1-638.jpg?cb=1507805679')"></a>
|
55 |
+
<div class="sq_playpause"></div>
|
56 |
+
</li>
|
57 |
+
<li>
|
58 |
<div>The Best Keyword Research Tool for Non-SEO Experts</div>
|
59 |
+
<a href="javascript:void(0);" rel="80644963" style="background-image: url('//image.slidesharecdn.com/squirrlykeywordresearch2-171010101407/95/the-best-keyword-research-tool-for-nonseo-experts-1-638.jpg?cb=1507630478')"></a>
|
60 |
+
<div class="sq_playpause"></div>
|
61 |
</li>
|
62 |
<li>
|
63 |
<div>Get SEO Advice as You Write with Squirrly's SEO Virtual Assistant</div>
|
64 |
+
<a href="javascript:void(0);" rel="80645001" style="background-image: url('//image.slidesharecdn.com/squirrlyliveassistant1-171010101547/95/get-seo-advice-as-you-write-with-squirrlys-seo-virtual-assistant-1-638.jpg?cb=1507630585')"></a>
|
65 |
+
<div class="sq_playpause"></div>
|
66 |
</li>
|
67 |
<li>
|
68 |
<div>Inspiration Box by Squirrly SEO - Top-Tier Research Tools for Writers</div>
|
69 |
+
<a href="javascript:void(0);" rel="80644894" style="background-image: url('//image.slidesharecdn.com/inspirationbox-171010101117/95/inspiration-box-by-squirrly-seo-toptier-research-tools-for-writers-1-638.jpg?cb=1507630344')"></a>
|
70 |
+
<div class="sq_playpause"></div>
|
71 |
</li>
|
72 |
<li>
|
73 |
<div>Get to Know the Squirrly Snippet Tool</div>
|
74 |
+
<a href="javascript:void(0);" rel="80645060" style="background-image: url('//image.slidesharecdn.com/squirrlysnippettool-171010101724/95/get-to-know-the-squirrly-snippet-tool-1-638.jpg?cb=1507630707')"></a>
|
75 |
+
<div class="sq_playpause"></div>
|
76 |
</li>
|
77 |
<li>
|
78 |
<div>Probably the Most User-Friendly Google SERP Checker in the World</div>
|
79 |
+
<a href="javascript:void(0);" rel="80733633" style="background-image: url('//image.slidesharecdn.com/squirrlyperformanceanalytics-171012104214/95/probably-the-most-userfriendly-google-serp-checker-in-the-world-1-638.jpg?cb=1507804989')"></a>
|
80 |
+
<div class="sq_playpause"></div>
|
81 |
</li>
|
82 |
<li>
|
83 |
<div>Squirrly's First Page Optimization Option Is Perfect for Non-Expert Users</div>
|
84 |
+
<a href="javascript:void(0);" rel="80733530" style="background-image: url('//image.slidesharecdn.com/squirrlyfirstpageoptimization-171012103902/95/squirrlys-first-page-optimization-option-is-perfect-for-nonexpert-users-1-638.jpg?cb=1507804770')"></a>
|
85 |
+
<div class="sq_playpause"></div>
|
86 |
</li>
|
87 |
<li>
|
88 |
<div>The Social Media SEO Trick to Get More Traffic via Social Networks</div>
|
89 |
+
<a href="javascript:void(0);" rel="80733182" style="background-image: url('//image.slidesharecdn.com/squirrlyopengraphandtwittercard-171012102916/95/the-social-media-seo-trick-to-get-more-traffic-via-social-networks-1-638.jpg?cb=1507804284')"></a>
|
90 |
+
<div class="sq_playpause"></div>
|
91 |
+
</li>
|
92 |
+
<li>
|
93 |
+
<div>Squirrly SEO Plugin's Custom Patterns for Post Types in Wordpress</div>
|
94 |
+
<a href="javascript:void(0);" rel="80599015" style="background-image: url('//image.slidesharecdn.com/patterns-171009083900/95/squirrly-seo-plugins-custom-patterns-for-post-types-in-wordpress-1-638.jpg?cb=1507538812')"></a>
|
95 |
+
<div class="sq_playpause"></div>
|
96 |
</li>
|
97 |
<li>
|
98 |
<div>Squirrly's Check for SEO Errors Option Is a Website's Must-Have</div>
|
99 |
+
<a href="javascript:void(0);" rel="80733444" style="background-image: url('//image.slidesharecdn.com/squirrlycheckforseoerrors-171012103617/95/squirrlys-check-for-seo-errors-option-is-a-websites-musthave-1-638.jpg?cb=1507804631')"></a>
|
100 |
+
<div class="sq_playpause"></div>
|
101 |
</li>
|
102 |
<li>
|
103 |
<div>Squirrly SEO Plugin + Sitemap Generator = A Rank-Boosting Combo</div>
|
104 |
+
<a href="javascript:void(0);" rel="80733936" style="background-image: url('//image.slidesharecdn.com/squirrlysitemapxml-171012105128/95/squirrly-seo-plugin-sitemap-generator-a-rankboosting-combo-1-638.jpg?cb=1507805523')"></a>
|
105 |
+
<div class="sq_playpause"></div>
|
106 |
</li>
|
107 |
<li>
|
108 |
<div>Squirrly SEO Plugin's Favicon Settings</div>
|
109 |
+
<a href="javascript:void(0);" rel="80733492" style="background-image: url('//image.slidesharecdn.com/squirrlyfavicon-171012103752/95/squirrly-seo-plugins-favicon-settings-1-638.jpg?cb=1507804715')"></a>
|
110 |
+
<div class="sq_playpause"></div>
|
111 |
</li>
|
112 |
<li>
|
113 |
<div>JSON LD, one of the best Semantic SEO markup solutions</div>
|
114 |
+
<a href="javascript:void(0);" rel="80733592" style="background-image: url('//image.slidesharecdn.com/squirrlyjson-ldstructureddata-171012104102/95/json-ld-one-of-the-best-semantic-seo-markup-solutions-1-638.jpg?cb=1507804894')"></a>
|
115 |
+
<div class="sq_playpause"></div>
|
116 |
</li>
|
117 |
<li>
|
118 |
<div>Control Ecommerce Social Media Metrics with Squirrly SEO Plugin</div>
|
119 |
+
<a href="javascript:void(0);" rel="80733987" style="background-image: url('//image.slidesharecdn.com/squirrlytrackingtools-171012105250/85/control-ecommerce-social-media-metrics-with-squirrly-seo-plugin-1-320.jpg?cb=1507805609')"></a>
|
120 |
+
<div class="sq_playpause"></div>
|
121 |
</li>
|
122 |
<li>
|
123 |
<div>Squirrly SEO Plugin's Settings for Posts and Pages</div>
|
124 |
+
<a href="javascript:void(0);" rel="80733727" style="background-image: url('//image.slidesharecdn.com/squirrlysettingsforpostsandpages-171012104449/95/squirrly-seo-plugins-settings-for-posts-and-pages-1-638.jpg?cb=1507805126')"></a>
|
125 |
+
<div class="sq_playpause"></div>
|
126 |
</li>
|
127 |
<li>
|
128 |
<div>Learn How to Use Squirrly's Google Rank Option</div>
|
129 |
+
<a href="javascript:void(0);" rel="80733569" style="background-image: url('//image.slidesharecdn.com/squirrlygooglerankoption-171012104002/95/learn-how-to-use-squirrlys-google-rank-option-1-638.jpg?cb=1507804834')"></a>
|
130 |
+
<div class="sq_playpause"></div>
|
131 |
</li>
|
132 |
<li>
|
133 |
<div>How to Use Squirrly's Measure Your Success Option</div>
|
134 |
+
<a href="javascript:void(0);" rel="80733353" style="background-image: url('//image.slidesharecdn.com/measureyoursuccess1-171012103344/95/how-to-use-squirrlys-measure-your-success-option-1-638.jpg?cb=1507804478')"></a>
|
135 |
+
<div class="sq_playpause"></div>
|
136 |
</li>
|
137 |
<li>
|
138 |
<div>How to Check Your robots.txt File from Squirrly SEO Plugin</div>
|
139 |
+
<a href="javascript:void(0);" rel="80733693" style="background-image: url('//image.slidesharecdn.com/squirrlyrobots-171012104338/95/how-to-check-your-robotstxt-file-from-squirrly-seo-plugin-1-638.jpg?cb=1507805056')"></a>
|
140 |
+
<div class="sq_playpause"></div>
|
141 |
</li>
|
142 |
<li>
|
143 |
<div>Read All About The Site Performance Audit From Squirrly SEO Plugin</div>
|
144 |
+
<a href="javascript:void(0);" rel="80733758" style="background-image: url('//image.slidesharecdn.com/squirrlysiteaudit-171012104554/85/read-all-about-the-site-performance-audit-from-squirrly-seo-plugin-1-320.jpg?cb=1507805205')"></a>
|
145 |
+
<div class="sq_playpause"></div>
|
146 |
</li>
|
147 |
</ul>
|
148 |
+
|
149 |
+
<div style="padding: 25px 0; font-weight: bold">
|
150 |
<div class="sq_slidelist_next"><?php echo __("Next Feature") ?> >></div>
|
151 |
<div class="sq_slidelist_prev" style="display: none"><< <?php echo __("Previous Feature") ?></div>
|
152 |
</div>
|
view/BlockSettings.php
CHANGED
@@ -224,7 +224,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
224 |
<div>
|
225 |
<div class="sq_option_content">
|
226 |
<p>
|
227 |
-
<span><?php _e('Select the Google
|
228 |
</p>
|
229 |
|
230 |
<div class="abh_select withborder">
|
224 |
<div>
|
225 |
<div class="sq_option_content">
|
226 |
<p>
|
227 |
+
<span><?php _e('Select the Google country for which Squirrly will check the Google rank.', _SQ_PLUGIN_NAME_); ?></span>
|
228 |
</p>
|
229 |
|
230 |
<div class="abh_select withborder">
|
view/BlockSettingsSeo.php
CHANGED
@@ -571,7 +571,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
571 |
<div class="sq_option_img"></div>
|
572 |
<div class="sq_option_content sq_option_content_small">
|
573 |
<span style="color: #f7681a; margin-top: 9px; text-align: center; <?php echo(($socials->twitter_site <> '') ? 'display:none' : '') ?>"><?php echo __('You need to add your <strong>Twitter account</strong> below', _SQ_PLUGIN_NAME_); ?></span>
|
574 |
-
<br
|
575 |
|
576 |
<div class="sq_switch sq_seo_switch_condition" style="<?php echo((!SQ_Classes_Tools::getOption('sq_use')) ? 'display:none;' : ''); ?>">
|
577 |
<input id="sq_auto_twitter1" type="radio" class="sq_switch-input" name="sq_auto_twitter" value="1" <?php echo($auto_option ? "checked" : '') ?> />
|
@@ -711,9 +711,9 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
711 |
<?php
|
712 |
$sitemap_category = SQ_Classes_ObjController::getClass('SQ_Models_Sitemaps')->getListTerms('sitemap-category');
|
713 |
if (count($sitemap_category) > 1) { ?>
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
<?php } ?>
|
718 |
|
719 |
<?php if (SQ_Classes_ObjController::getClass('SQ_Models_BlockSettingsSeo')->isEcommerce()) { //check for ecommerce product ?>
|
@@ -737,28 +737,15 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
737 |
</li>
|
738 |
<?php } ?>
|
739 |
|
740 |
-
<?php
|
741 |
-
$sitemap_archive = SQ_Classes_ObjController::getClass('SQ_Models_Sitemaps')->getListTerms('sitemap-archive');
|
742 |
-
if (count($sitemap_archive) > 1) { ?>
|
743 |
<li>
|
744 |
<input type="checkbox" class="sq_sitemap" name="sq_sitemap[]" value="sitemap-archive" <?php echo(($sitemap['sitemap-archive'][1] == 1) ? 'checked="checked"' : ''); ?>><?php _e('Archive', _SQ_PLUGIN_NAME_); ?>
|
745 |
</li>
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
<input type="checkbox" class="sq_sitemap" name="sq_sitemap[]" value="sitemap-custom-tax" <?php echo(($sitemap['sitemap-custom-tax'][1] == 1) ? 'checked="checked"' : ''); ?>><?php _e('Custom Taxonomies', _SQ_PLUGIN_NAME_); ?>
|
753 |
-
</li>
|
754 |
-
<?php } ?>
|
755 |
-
<?php
|
756 |
-
$sitemap_custom_post = SQ_Classes_ObjController::getClass('SQ_Models_Sitemaps')->getListTerms('sitemap-custom-post');
|
757 |
-
if (count($sitemap_custom_post) > 1) { ?>
|
758 |
-
<li>
|
759 |
-
<input type="checkbox" class="sq_sitemap" name="sq_sitemap[]" value="sitemap-custom-post" <?php echo(($sitemap['sitemap-custom-post'][1] == 1) ? 'checked="checked"' : ''); ?>><?php _e('Custom Posts', _SQ_PLUGIN_NAME_); ?>
|
760 |
-
</li>
|
761 |
-
<?php } ?>
|
762 |
</ul>
|
763 |
<span style="color: red; margin: 10px; line-height: 20px; display: block;"><?php echo sprintf(__('Select only the Post Types that have links in them. Your sitemap will be %s', _SQ_PLUGIN_NAME_), '<a href="' . SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps')->getXmlUrl('sitemap') . '" target="_blank">' . SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps')->getXmlUrl('sitemap') . '</a></strong>'); ?></span>
|
764 |
|
@@ -846,7 +833,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
846 |
<div class="sq_badge-image"></div>
|
847 |
<div class="sq_description">
|
848 |
<div class="sq_title">
|
849 |
-
<?php _e('JSON-LD G17 -2x More Options', _SQ_PLUGIN_NAME_); ?>
|
850 |
</div>
|
851 |
<div class="sq_link">
|
852 |
<a href="https://howto.squirrly.co/wordpress-seo/what-can-you-tell-us-about-squirrly-seo-2016-vs-squirrly-seo-2017/" target="_blank" title="<?php _e('see how this improved since 2016', _SQ_PLUGIN_NAME_); ?>"> (<?php _e('see how this improved since 2016', _SQ_PLUGIN_NAME_); ?>) </a>
|
@@ -999,7 +986,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
999 |
</p>
|
1000 |
<?php } ?>
|
1001 |
<p class="add_facebook_id">
|
1002 |
-
<input type="button" value="<?php echo __('Add
|
1003 |
</p>
|
1004 |
<p class="withborder withcode" id="sq_facebookadmin" style="display: none">
|
1005 |
<span class="facebook_app_close" onclick="jQuery('#sq_facebookadmin').hide();">x</span>
|
@@ -1007,7 +994,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
1007 |
<?php echo sprintf(__('Facebook Admin ID (for %sInsights%s ):', _SQ_PLUGIN_NAME_), '<a href="http://www.facebook.com/insights/" target="_blank">', '</a>'); ?>
|
1008 |
<br>
|
1009 |
<strong>
|
1010 |
-
<input type="text" class="sq_fb_admins" name="sq_fb_admins[]" value="" size="15" placeholder="<?php echo __('Facebook ID or https://www.facebook.com/YourProfileName', _SQ_PLUGIN_NAME_) ?>"/> (e.g. <meta property="fb:admins" content="XXXXXXXXXXXXXXXXXX" />)
|
1011 |
</strong>
|
1012 |
</p>
|
1013 |
|
@@ -1023,7 +1010,6 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
1023 |
</p>
|
1024 |
|
1025 |
|
1026 |
-
|
1027 |
<div class="sq_option_content" style="height: 60px">
|
1028 |
<div class="sq_switch">
|
1029 |
<input id="sq_auto_amp1" type="radio" class="sq_switch-input" name="sq_auto_amp" value="1" <?php echo((SQ_Classes_Tools::getOption('sq_auto_amp')) ? "checked" : '') ?> />
|
@@ -1032,7 +1018,7 @@ if (SQ_Classes_Tools::getOption('sq_api') == '') {
|
|
1032 |
<label for="sq_auto_amp0" class="sq_switch-label sq_switch-label-on"><?php _e('No', _SQ_PLUGIN_NAME_); ?></label>
|
1033 |
<span class="sq_switch-selection"></span>
|
1034 |
</div>
|
1035 |
-
<span><?php echo sprintf(__('Load <strong>%sGoogle Analytics AMP%s</strong> and <strong>%sFacebook Pixel AMP%s</strong> tracking%s(Warning! The tracking works only for AMP Themes.%s)', _SQ_PLUGIN_NAME_), '<a href="https://developers.google.com/analytics/devguides/collection/amp-analytics/" target="_blank">', '</a>', '<a href="https://www.ampproject.org/docs/reference/components/amp-pixel" target="_blank">', '</a>', '<br /><span style="color: red">','</span>'); ?></span>
|
1036 |
</div>
|
1037 |
</div>
|
1038 |
</fieldset>
|
571 |
<div class="sq_option_img"></div>
|
572 |
<div class="sq_option_content sq_option_content_small">
|
573 |
<span style="color: #f7681a; margin-top: 9px; text-align: center; <?php echo(($socials->twitter_site <> '') ? 'display:none' : '') ?>"><?php echo __('You need to add your <strong>Twitter account</strong> below', _SQ_PLUGIN_NAME_); ?></span>
|
574 |
+
<br/>
|
575 |
|
576 |
<div class="sq_switch sq_seo_switch_condition" style="<?php echo((!SQ_Classes_Tools::getOption('sq_use')) ? 'display:none;' : ''); ?>">
|
577 |
<input id="sq_auto_twitter1" type="radio" class="sq_switch-input" name="sq_auto_twitter" value="1" <?php echo($auto_option ? "checked" : '') ?> />
|
711 |
<?php
|
712 |
$sitemap_category = SQ_Classes_ObjController::getClass('SQ_Models_Sitemaps')->getListTerms('sitemap-category');
|
713 |
if (count($sitemap_category) > 1) { ?>
|
714 |
+
<li>
|
715 |
+
<input type="checkbox" class="sq_sitemap" name="sq_sitemap[]" value="sitemap-category" <?php echo(($sitemap['sitemap-category'][1] == 1) ? 'checked="checked"' : ''); ?>><?php _e('Categories', _SQ_PLUGIN_NAME_); ?>
|
716 |
+
</li>
|
717 |
<?php } ?>
|
718 |
|
719 |
<?php if (SQ_Classes_ObjController::getClass('SQ_Models_BlockSettingsSeo')->isEcommerce()) { //check for ecommerce product ?>
|
737 |
</li>
|
738 |
<?php } ?>
|
739 |
|
|
|
|
|
|
|
740 |
<li>
|
741 |
<input type="checkbox" class="sq_sitemap" name="sq_sitemap[]" value="sitemap-archive" <?php echo(($sitemap['sitemap-archive'][1] == 1) ? 'checked="checked"' : ''); ?>><?php _e('Archive', _SQ_PLUGIN_NAME_); ?>
|
742 |
</li>
|
743 |
+
<li>
|
744 |
+
<input type="checkbox" class="sq_sitemap" name="sq_sitemap[]" value="sitemap-custom-tax" <?php echo(($sitemap['sitemap-custom-tax'][1] == 1) ? 'checked="checked"' : ''); ?>><?php _e('Custom Taxonomies', _SQ_PLUGIN_NAME_); ?>
|
745 |
+
</li>
|
746 |
+
<li>
|
747 |
+
<input type="checkbox" class="sq_sitemap" name="sq_sitemap[]" value="sitemap-custom-post" <?php echo(($sitemap['sitemap-custom-post'][1] == 1) ? 'checked="checked"' : ''); ?>><?php _e('Custom Posts', _SQ_PLUGIN_NAME_); ?>
|
748 |
+
</li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
749 |
</ul>
|
750 |
<span style="color: red; margin: 10px; line-height: 20px; display: block;"><?php echo sprintf(__('Select only the Post Types that have links in them. Your sitemap will be %s', _SQ_PLUGIN_NAME_), '<a href="' . SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps')->getXmlUrl('sitemap') . '" target="_blank">' . SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps')->getXmlUrl('sitemap') . '</a></strong>'); ?></span>
|
751 |
|
833 |
<div class="sq_badge-image"></div>
|
834 |
<div class="sq_description">
|
835 |
<div class="sq_title">
|
836 |
+
<?php _e('JSON-LD G17 - 2x More Options', _SQ_PLUGIN_NAME_); ?>
|
837 |
</div>
|
838 |
<div class="sq_link">
|
839 |
<a href="https://howto.squirrly.co/wordpress-seo/what-can-you-tell-us-about-squirrly-seo-2016-vs-squirrly-seo-2017/" target="_blank" title="<?php _e('see how this improved since 2016', _SQ_PLUGIN_NAME_); ?>"> (<?php _e('see how this improved since 2016', _SQ_PLUGIN_NAME_); ?>) </a>
|
986 |
</p>
|
987 |
<?php } ?>
|
988 |
<p class="add_facebook_id">
|
989 |
+
<input type="button" value="<?php echo __('Add more Facebook Admin IDs', _SQ_PLUGIN_NAME_) ?>" class="sq_button" style="padding: 3px 20px; cursor: pointer" onclick="jQuery('#sq_facebookadmin').slideDown();"/>
|
990 |
</p>
|
991 |
<p class="withborder withcode" id="sq_facebookadmin" style="display: none">
|
992 |
<span class="facebook_app_close" onclick="jQuery('#sq_facebookadmin').hide();">x</span>
|
994 |
<?php echo sprintf(__('Facebook Admin ID (for %sInsights%s ):', _SQ_PLUGIN_NAME_), '<a href="http://www.facebook.com/insights/" target="_blank">', '</a>'); ?>
|
995 |
<br>
|
996 |
<strong>
|
997 |
+
<input type="text" autocomplete="off" class="sq_fb_admins" name="sq_fb_admins[]" value="" size="15" placeholder="<?php echo __('Facebook ID or https://www.facebook.com/YourProfileName', _SQ_PLUGIN_NAME_) ?>"/> (e.g. <meta property="fb:admins" content="XXXXXXXXXXXXXXXXXX" />)
|
998 |
</strong>
|
999 |
</p>
|
1000 |
|
1010 |
</p>
|
1011 |
|
1012 |
|
|
|
1013 |
<div class="sq_option_content" style="height: 60px">
|
1014 |
<div class="sq_switch">
|
1015 |
<input id="sq_auto_amp1" type="radio" class="sq_switch-input" name="sq_auto_amp" value="1" <?php echo((SQ_Classes_Tools::getOption('sq_auto_amp')) ? "checked" : '') ?> />
|
1018 |
<label for="sq_auto_amp0" class="sq_switch-label sq_switch-label-on"><?php _e('No', _SQ_PLUGIN_NAME_); ?></label>
|
1019 |
<span class="sq_switch-selection"></span>
|
1020 |
</div>
|
1021 |
+
<span><?php echo sprintf(__('Load <strong>%sGoogle Analytics AMP%s</strong> and <strong>%sFacebook Pixel AMP%s</strong> tracking%s(Warning! The tracking works only for AMP Themes.%s)', _SQ_PLUGIN_NAME_), '<a href="https://developers.google.com/analytics/devguides/collection/amp-analytics/" target="_blank">', '</a>', '<a href="https://www.ampproject.org/docs/reference/components/amp-pixel" target="_blank">', '</a>', '<br /><span style="color: red">', '</span>'); ?></span>
|
1022 |
</div>
|
1023 |
</div>
|
1024 |
</fieldset>
|
view/FrontMenu.php
CHANGED
@@ -1,5 +1,16 @@
|
|
1 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
|
|
3 |
//RUn only is frontend admin and ajax call
|
4 |
if (SQ_Classes_Tools::isAjax() || SQ_Classes_Tools::isFrontAdmin()) {
|
5 |
if (SQ_Classes_Tools::getOption('sq_api') <> '') {
|
@@ -21,17 +32,6 @@ if (SQ_Classes_Tools::isAjax() || SQ_Classes_Tools::isFrontAdmin()) {
|
|
21 |
|
22 |
?>
|
23 |
|
24 |
-
<?php if (SQ_Classes_Tools::isFrontAdmin()) {
|
25 |
-
if (!wp_script_is('jquery')) {
|
26 |
-
wp_enqueue_script('jquery');
|
27 |
-
wp_print_scripts(array('jquery'));
|
28 |
-
}
|
29 |
-
?>
|
30 |
-
<link rel='stylesheet' href='<?php echo _SQ_THEME_URL_ ?>css/frontmenu.css?ver=<?php SQ_VERSION_ID ?>' type='text/css' media='all'/>
|
31 |
-
<script type='text/javascript' src='<?php echo _SQ_THEME_URL_ ?>js/frontmenu.js?ver=<?php SQ_VERSION_ID ?>'></script>
|
32 |
-
<link rel='stylesheet' href='<?php echo _SQ_THEME_URL_ ?>css/patterns.css?ver=<?php SQ_VERSION_ID ?>' type='text/css' media='all'/>
|
33 |
-
<script type='text/javascript' src='<?php echo _SQ_THEME_URL_ ?>js/patterns.js?ver=<?php SQ_VERSION_ID ?>'></script>
|
34 |
-
<?php } ?>
|
35 |
|
36 |
<script>
|
37 |
jQuery.sq_patterns_list = jQuery.parseJSON("<?php echo addslashes(SQ_ALL_PATTERNS) ?>");
|
@@ -585,7 +585,7 @@ if (SQ_Classes_Tools::isAjax() || SQ_Classes_Tools::isFrontAdmin()) {
|
|
585 |
</div>
|
586 |
|
587 |
<div class="nine columns" style="margin: 10px;">
|
588 |
-
<?php _e("
|
589 |
</div>
|
590 |
</div>
|
591 |
</div>
|
1 |
+
<?php if (SQ_Classes_Tools::isFrontAdmin()) {
|
2 |
+
if (!wp_script_is('jquery')) {
|
3 |
+
wp_enqueue_script('jquery');
|
4 |
+
wp_print_scripts(array('jquery'));
|
5 |
+
}
|
6 |
+
?>
|
7 |
+
<link rel='stylesheet' href='<?php echo _SQ_THEME_URL_ ?>css/frontmenu.css?ver=<?php SQ_VERSION_ID ?>' type='text/css' media='all'/>
|
8 |
+
<script type='text/javascript' src='<?php echo _SQ_THEME_URL_ ?>js/frontmenu.js?ver=<?php SQ_VERSION_ID ?>'></script>
|
9 |
+
<link rel='stylesheet' href='<?php echo _SQ_THEME_URL_ ?>css/patterns.css?ver=<?php SQ_VERSION_ID ?>' type='text/css' media='all'/>
|
10 |
+
<script type='text/javascript' src='<?php echo _SQ_THEME_URL_ ?>js/patterns.js?ver=<?php SQ_VERSION_ID ?>'></script>
|
11 |
+
<?php } ?>
|
12 |
|
13 |
+
<?php
|
14 |
//RUn only is frontend admin and ajax call
|
15 |
if (SQ_Classes_Tools::isAjax() || SQ_Classes_Tools::isFrontAdmin()) {
|
16 |
if (SQ_Classes_Tools::getOption('sq_api') <> '') {
|
32 |
|
33 |
?>
|
34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
|
36 |
<script>
|
37 |
jQuery.sq_patterns_list = jQuery.parseJSON("<?php echo addslashes(SQ_ALL_PATTERNS) ?>");
|
585 |
</div>
|
586 |
|
587 |
<div class="nine columns" style="margin: 10px;">
|
588 |
+
<?php _e("Can't do Custom SEO for this URL", _SQ_PLUGIN_NAME_) ?>
|
589 |
</div>
|
590 |
</div>
|
591 |
</div>
|
view/css/blockdashboard.css
CHANGED
@@ -33,7 +33,7 @@
|
|
33 |
border: 1px solid #ccc;
|
34 |
}
|
35 |
|
36 |
-
#sq_settings ul.sq_slidelist li.active{
|
37 |
display: block;
|
38 |
}
|
39 |
|
@@ -41,7 +41,7 @@
|
|
41 |
background: no-repeat center center;
|
42 |
background-size: cover;
|
43 |
display: block;
|
44 |
-
height:
|
45 |
}
|
46 |
|
47 |
#sq_settings ul.sq_slidelist li div {
|
@@ -65,7 +65,7 @@
|
|
65 |
width: 100%;
|
66 |
}
|
67 |
|
68 |
-
#sq_settings ul.sq_slidelist li div p{
|
69 |
color: #777;
|
70 |
}
|
71 |
|
@@ -86,14 +86,14 @@
|
|
86 |
cursor: pointer;
|
87 |
}
|
88 |
|
89 |
-
#sq_settings .sq_slidelist_prev{
|
90 |
font-size: 18px;
|
91 |
color: darkorange;
|
92 |
float: left;
|
93 |
cursor: pointer;
|
94 |
}
|
95 |
|
96 |
-
#sq_settings .sq_slidelist_next{
|
97 |
font-size: 18px;
|
98 |
color: darkorange;
|
99 |
float: right;
|
@@ -138,6 +138,31 @@
|
|
138 |
text-align: center;
|
139 |
}
|
140 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
@media only screen and (max-width: 1160px) {
|
142 |
#sq_helpdashboardcontent {
|
143 |
width: 575px;
|
33 |
border: 1px solid #ccc;
|
34 |
}
|
35 |
|
36 |
+
#sq_settings ul.sq_slidelist li.active {
|
37 |
display: block;
|
38 |
}
|
39 |
|
41 |
background: no-repeat center center;
|
42 |
background-size: cover;
|
43 |
display: block;
|
44 |
+
height: 500px;
|
45 |
}
|
46 |
|
47 |
#sq_settings ul.sq_slidelist li div {
|
65 |
width: 100%;
|
66 |
}
|
67 |
|
68 |
+
#sq_settings ul.sq_slidelist li div p {
|
69 |
color: #777;
|
70 |
}
|
71 |
|
86 |
cursor: pointer;
|
87 |
}
|
88 |
|
89 |
+
#sq_settings .sq_slidelist_prev {
|
90 |
font-size: 18px;
|
91 |
color: darkorange;
|
92 |
float: left;
|
93 |
cursor: pointer;
|
94 |
}
|
95 |
|
96 |
+
#sq_settings .sq_slidelist_next {
|
97 |
font-size: 18px;
|
98 |
color: darkorange;
|
99 |
float: right;
|
138 |
text-align: center;
|
139 |
}
|
140 |
|
141 |
+
#sq_settings ul.sq_slidelist li div.sq_playpause {
|
142 |
+
position: absolute;
|
143 |
+
left: 0;
|
144 |
+
right: 0;
|
145 |
+
top: 0;
|
146 |
+
bottom: 0;
|
147 |
+
margin: auto;
|
148 |
+
line-height: 0;
|
149 |
+
width: 0;
|
150 |
+
height: 0;
|
151 |
+
background: transparent;
|
152 |
+
border-top: 65px solid transparent;
|
153 |
+
border-bottom: 65px solid transparent;
|
154 |
+
border-left: 130px solid darkorange;
|
155 |
+
border-right: 0 solid transparent;
|
156 |
+
border-radius: 0 !important;
|
157 |
+
padding: 1px;
|
158 |
+
}
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
#sq_settings .sq_slidelist li {
|
163 |
+
position: relative;
|
164 |
+
}
|
165 |
+
|
166 |
@media only screen and (max-width: 1160px) {
|
167 |
#sq_helpdashboardcontent {
|
168 |
width: 575px;
|
view/css/blockdashboard.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.update-nag,.updated,.show-settings,.screen-meta-toggle{display:none !important}.sq_helpside{margin-top:10px}#sq_helpdashboardcontent{float:left;width:700px}#sq_settings ul.sq_slidelist{max-width:700px;margin:10px auto}#sq_settings ul.sq_slidelist li{position:relative;background:white;height:530px;min-height:225px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:none;margin:0 10px 40px 10px;max-width:100%;min-width:680px;width:680px;vertical-align:top;float:left;border:1px solid #ccc}#sq_settings ul.sq_slidelist li.active{display:block}#sq_settings ul.sq_slidelist li a{background:no-repeat center center;background-size:cover;display:block;height:
|
1 |
+
.update-nag,.updated,.show-settings,.screen-meta-toggle{display:none !important}.sq_helpside{margin-top:10px}#sq_helpdashboardcontent{float:left;width:700px}#sq_settings ul.sq_slidelist{max-width:700px;margin:10px auto}#sq_settings ul.sq_slidelist li{position:relative;background:white;height:530px;min-height:225px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:none;margin:0 10px 40px 10px;max-width:100%;min-width:680px;width:680px;vertical-align:top;float:left;border:1px solid #ccc}#sq_settings ul.sq_slidelist li.active{display:block}#sq_settings ul.sq_slidelist li a{background:no-repeat center center;background-size:cover;display:block;height:500px}#sq_settings ul.sq_slidelist li div{background:white;-webkit-border-radius:2px;-moz-border-radius:2px;border-bottom:1px dashed #ccc;border-radius:2px;cursor:pointer;color:darkorange;font-size:17px;font-weight:bold;padding:14px 0;margin:0 0 5px 0;overflow:hidden;text-align:center;-webkit-transition:bottom,0.3s;-moz-transition:bottom,0.3s;-o-transition:bottom,0.3s;transition:bottom,0.3s;width:100%}#sq_settings ul.sq_slidelist li div p{color:#777}#sq_settings ul.sq_slidelist li span{position:absolute;top:-6px;right:-7px;font-size:11px;height:5px;width:5px;padding:5px;line-height:5px;background-color:#f9f9f9;color:#999;border-radius:10px;border:1px solid #ccc;z-index:10;cursor:pointer}#sq_settings .sq_slidelist_prev{font-size:18px;color:darkorange;float:left;cursor:pointer}#sq_settings .sq_slidelist_next{font-size:18px;color:darkorange;float:right;cursor:pointer}#sq_settings .sq_mysquirrly_cta{height:60px;background-color:#fff;border:1px solid #ccc;width:100%}#sq_settings .sq_mysquirrly_cta .sq_mysquirrly_cta_content{width:60%;float:left;font-size:16px;color:#333;font-weight:600;vertical-align:middle;padding:15px;margin-top:9px}#sq_settings .sq_mysquirrly_cta .sq_mysquirrly_cta_button{width:35%;float:left}#sq_settings .sq_mysquirrly_cta .sq_mysquirrly_cta_button a{display:inline-block;padding:8px !important;margin-top:14px;font-size:18px !important;cursor:pointer;background-color:darkorange;color:white;text-decoration:none;text-shadow:1px 1px #333;width:90%;text-align:center}#sq_settings ul.sq_slidelist li div.sq_playpause{position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;line-height:0;width:0;height:0;background:transparent;border-top:65px solid transparent;border-bottom:65px solid transparent;border-left:130px solid darkorange;border-right:0 solid transparent;border-radius:0 !important;padding:1px}#sq_settings .sq_slidelist li{position:relative}@media only screen and (max-width:1160px){#sq_helpdashboardcontent{width:575px}}@media only screen and (max-width:1030px){#sq_helpdashboardcontent{width:803px}.sq_helpside{clear:both;float:left;width:808px;height:275px;margin:0;padding:0}.sq_helpside>div{float:left;width:175px;border:1px solid #ccc;background-color:#fcfcfc;padding:10px;margin:10px 5px 10px 0;height:240px}}
|
view/css/blockresearch.css
CHANGED
@@ -338,13 +338,16 @@
|
|
338 |
#sq_research_body .sq_top_keywords > table > tbody > tr > th,
|
339 |
#sq_research_body .sq_top_keywords > table > tr > td,
|
340 |
#sq_research_body .sq_top_keywords > table > tbody > tr > td {
|
341 |
-
|
342 |
border: 1px dashed #f1f1f1;
|
343 |
padding: 3px 10px;
|
344 |
color: #414141;
|
345 |
font-family: Arial, Helvetica, sans-serif;
|
346 |
font-size: 14px;
|
347 |
line-height: 1.4em;
|
|
|
|
|
|
|
|
|
348 |
}
|
349 |
|
350 |
#sq_research_body .sq_top_keywords > table > tr > th {
|
338 |
#sq_research_body .sq_top_keywords > table > tbody > tr > th,
|
339 |
#sq_research_body .sq_top_keywords > table > tr > td,
|
340 |
#sq_research_body .sq_top_keywords > table > tbody > tr > td {
|
|
|
341 |
border: 1px dashed #f1f1f1;
|
342 |
padding: 3px 10px;
|
343 |
color: #414141;
|
344 |
font-family: Arial, Helvetica, sans-serif;
|
345 |
font-size: 14px;
|
346 |
line-height: 1.4em;
|
347 |
+
max-width: 350px;
|
348 |
+
white-space: normal;
|
349 |
+
overflow: hidden;
|
350 |
+
text-overflow: ellipsis;
|
351 |
}
|
352 |
|
353 |
#sq_research_body .sq_top_keywords > table > tr > th {
|
view/css/blockresearch.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.sq_beta{display:none !important}.sq_limit_exceeded{clear:both !important;margin:0 auto;text-align:center}.sq_limit_exceeded a{text-decoration:none;display:block;width:200px;clear:both;background-color:#1cab09;font-size:15px;font-weight:bold;color:white;margin:10px auto 0 auto;padding:11px;position:relative;text-shadow:1px 1px #555;cursor:pointer}#sq_research:before{display:block;border:0;content:" ";background:transparent url('../img/sprite.png') repeat-x 0 -360px;width:100%;height:5px;border-radius:2px 2px 0 0;opacity:.3}#sq_research:hover:before{opacity:.8}#sq_research{position:relative;padding:0;margin:15px 0;background-color:#fcfcfc;min-width:460px;box-shadow:0 1px 2px -1px #444;-moz-box-shadow:0 1px 2px -1px #444;-webkit-box-shadow:0 1px 2px -1px #444}.sq_arrow_down{background:transparent url('../img/sprite.png?rev=1') no-repeat -221px -50px !important}.sq_arrow_up{float:right;width:35px;height:20px;margin-top:14px;margin-right:10px;background:transparent url('../img/sprite.png?rev=1') no-repeat -262px -50px;cursor:pointer}#sq_research #sq_research_title{display:block;text-align:left;font-size:18px;font-weight:normal;line-height:30px;color:#999;border-bottom:1px dashed #d1d1d1;margin:0 0 10px 0;padding:10px 0 20px 10px;height:16px}#sq_research:hover #sq_research_title{color:#444}#sq_research #sq_research_body{display:block;font-size:12px;color:#333;line-height:16px;text-align:left;padding:10px 0 2px 10px}#sq_research .sq_keywords_research_add{background-color:transparent;color:#589ee4;font-size:12px;font-weight:bold;text-shadow:1px 1px white;box-shadow:1px 1px 0 0 white;border:1px solid #589ee4;padding:5px 6px;margin-left:0;margin-top:0;cursor:pointer}#sq_research .sq_keywords_research_submit{background-color:#589ee4;color:white;font-size:12px;font-weight:bold;text-shadow:1px 1px #333;box-shadow:1px 1px 0 0 white;border:1px solid #589ee4;padding:5px 6px;margin-left:10px;margin-top:0;cursor:pointer}#sq_research .sq_keywords_research_clear{background-color:transparent;color:#589ee4;font-size:11px;font-weight:bold;text-shadow:1px 1px white;box-shadow:1px 1px 0 0 white;border:1px solid #589ee4;padding:4px 5px;margin-left:15px;margin-top:0;cursor:pointer}#sq_research .sq_keywords_research_export,#sq_research .sq_keywords_research_export_xls{display:none;background-color:#ece8d2;color:#ae6e1c;font-size:11px;font-weight:600;text-shadow:1px 1px #fff;box-shadow:1px 1px 0 0 white;border:1px solid #d1a25e;padding:6px 10px;margin-right:21px;margin-top:2px;cursor:pointer;float:right}#sq_research .sq_keywords_research_export_xls{margin-right:5px}#sq_research .sq_research_addbriefcase{display:block;padding:4px 11px;font-size:12px;font-weight:500;color:white;cursor:pointer;background-color:#d86525;text-shadow:1px 1px #777;border:1px solid white}#sq_research .sq_research_selectit{padding:4px 11px;font-size:12px;font-weight:500;color:white;cursor:pointer;background-color:#589ee4;text-shadow:1px 1px #777;border:1px solid white}#sq_research .sq_keywords_research_clear{float:right;margin-right:10px;margin-top:2px;line-height:16px}#sq_research .sq_keyword_research{float:left;width:390px;margin-top:2px;line-height:24px;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;padding:5px;font-size:14px;font-weight:bold;color:#15b14a}#sq_research_body #sq_keywords_research{display:table;width:100%}#sq_research_body #sq_keywords_research>li{display:table;width:100%;border-bottom:1px solid #dedede;padding-bottom:13px;margin-bottom:10px}#sq_research_body .sq_searching,#sq_research_body .sq_minloading{clear:both;width:96% !important;height:10px;margin-top:10px;background-color:#eee}#sq_research_body .sq_searching .sq_progress{width:1%;height:16px;font-size:9px;color:white;padding-left:5px;text-shadow:1px 1px #333;background-color:green}#sq_research_body #sq_keywords_research>li>div{float:left}#sq_research_body #sq_keywords_research>li>div:first-child{margin-top:7px;margin-right:5px;font-size:17px;font-weight:500;line-height:26px;color:#999}#sq_research_body ul.sq_progressbar li{float:left;padding:0 2px}#sq_research_body input[type=text]{float:left;width:350px;padding:10px 5px;font-size:14px;font-weight:bold;color:#333;background-color:#e2ffd6}#sq_research_body input[type=text]::-moz-placeholder,#sq_research_body input[type=text]::-webkit-input-placeholder,#sq_research_body input[type=text]:-ms-input-placeholder{color:#d1d1d1}#sq_research_body .sq_research_selectit{float:left}#sq_research_body .sq_keywords_info{margin-left:10px;display:table;width:230px}#sq_research_body .sq_addkeyword_close{font-size:15px;display:inline-block;padding:12px;cursor:pointer}#sq_research_body #sq_research_help{clear:both}#sq_research #sq_research_close{position:absolute;background-color:#e5d8cd;right:-6px;top:-3px;font-size:13px;font-weight:bold;color:#333;width:8px;line-height:16px;padding:0 5px 3px;border-radius:10px;-webkit-border-radius:10px;-moz-border-radius:10px;border:1px solid darkOliveGreen;cursor:pointer;z-index:2}#sq_research_body .sq_top_keywords{clear:both !important;float:none !important;width:calc(100% - 40px) !important;margin:0 auto !important;padding-top:15px}#sq_research_body .sq_top_keywords table{border-collapse:collapse}#sq_research_body .sq_top_keywords>table{position:relative;background-color:#f7f7f7;width:100%}#sq_research_body .sq_top_keywords>table{border:1px solid #eee}#sq_research_body .sq_top_keywords>table>tbody>tr{background-color:#fff}#sq_research_body .sq_top_keywords>table>tr>th,#sq_research_body .sq_top_keywords>table>tbody>tr>th,#sq_research_body .sq_top_keywords>table>tr>td,#sq_research_body .sq_top_keywords>table>tbody>tr>td{border:1px dashed #f1f1f1;padding:3px 10px;color:#414141;font-family:Arial,Helvetica,sans-serif;font-size:14px;line-height:1.4em}#sq_research_body .sq_top_keywords>table>tr>th{text-align:center;font-weight:bold;color:#ccc}#sq_research_body .sq_top_keywords_rank{font-size:14px;font-weight:bold;margin-left:5px}#sq_research_body .sq_top_keywords_rank strong{font-family:'Megalopolis',Arial,Helvetica,sans-serif;font-size:14px;margin:0 5px;border:1px solid red;background-color:white;border-radius:50px;-webkit-border-radius:50px;-moz-border-radius:50px;padding:3px 7px;text-shadow:1px 1px white;color:red;text-align:center}#sq_research_body .sq_research_showinfo:hover{background-position:0 -71px}#sq_research_body .sq_top_keywords_info{padding:5px}#sq_research_body .sq_to_keywords_info table{margin:0 auto}#sq_research_body .sq_top_keywords_info td{border-bottom:1px dashed #d8d8d8;padding:4px 10px;color:#414141;text-align:left;font-size:12px}#sq_research_body .sq_top_keywords_info td .sq_top_keywords_rank{font-size:12px;font-weight:normal}#sq_research_body .sq_input_noback{background:transparent;border:0}ul.sq_research_lang,ul.sq_research_complexity{position:absolute;background-color:#fcfcfc;border:0;font-size:13px;display:block;top:17px;right:100px;width:135px;height:27px;margin:0;padding:0;overflow:hidden;max-height:300px}ul.sq_research_complexity{right:242px;width:140px}ul.sq_research_lang:hover,ul.sq_research_complexity:hover{box-shadow:0 0 10px 0 #333;height:auto;overflow-y:auto;z-index:9999}ul.sq_research_lang>li:before{display:inline-block;content:" ";background:transparent url('../img/flags.png') no-repeat 0 -2541px;border:1px solid white;width:16px;height:11px;cursor:pointer;margin:0 5px -2px 0;padding:0}ul.sq_research_lang>li,ul.sq_research_complexity>li{margin:0 0 5px 0;padding:0 2px;line-height:24px;cursor:pointer}ul.sq_research_lang li.sq_research_first,ul.sq_research_complexity li.sq_complexity_first{border:1px solid #589ee4;color:#589ee4}ul.sq_research_lang li.selected,ul.sq_research_complexity li.selected{background-color:lightgray}li#sq_research_lang_us:before{background-position:0 -2541px}li#sq_research_lang_ae:before{background-position:0 -11px}li#sq_research_lang_off_ai:before{background-position:0 -286px}li#sq_research_lang_com_ag:before{background-position:0 -33px}li#sq_research_lang_com_ar:before{background-position:0 -99px}li#sq_research_lang_as:before{background-position:0 -110px}li#sq_research_lang_at:before{background-position:0 -121px}li#sq_research_lang_com_au:before{background-position:0 -132px}li#sq_research_lang_az:before{background-position:0 -165px}li#sq_research_lang_be:before{background-position:0 -209px}li#sq_research_lang_bi:before{background-position:0 -253px}li#sq_research_lang_bg:before{background-position:0 -230px}li#sq_research_lang_com_br:before{background-position:0 -330px}li#sq_research_lang_ca:before{background-position:0 -407px}li#sq_research_lang_cd:before{background-position:0 -451px}li#sq_research_lang_cg:before{background-position:0 -429px}li#sq_research_lang_ch:before{background-position:0 -462px}li#sq_research_lang_ci:before{background-position:0 -473px}li#sq_research_lang_cl:before{background-position:0 -495px}li#sq_research_lang_com_co:before{background-position:0 -528px}li#sq_research_lang_co_cr:before{background-position:0 -539px}li#sq_research_lang_com:before{background-position:0 -2784px}li#sq_research_lang_com_cu:before{background-position:0 -550px}li#sq_research_lang_cz:before{background-position:0 -605px}li#sq_research_lang_de:before{background-position:0 -616px}li#sq_research_lang_dj:before{background-position:0 -627px}li#sq_research_lang_dk:before{background-position:0 -638px}li#sq_research_lang_com_do:before{background-position:0 -660px}li#sq_research_lang_com_ec:before{background-position:0 -682px}li#sq_research_lang_ee:before{background-position:0 -693px}li#sq_research_lang_es:before{background-position:0 -737px}li#sq_research_lang_fm:before{background-position:0 -792px}li#sq_research_lang_fi:before{background-position:0 -759px}li#sq_research_lang_com_fj:before{background-position:0 -781px}li#sq_research_lang_fr:before{background-position:0 -814px}li#sq_research_lang_ge:before{background-position:0 -858px}li#sq_research_lang_gg:before{background-position:0 -880px}li#sq_research_lang_com_gi:before{background-position:0 -903px}li#sq_research_lang_gl:before{background-position:0 -913px}li#sq_research_lang_gm:before{background-position:0 -924px}li#sq_research_lang_com_gr:before{background-position:0 -968px}li#sq_research_lang_com_hk:before{background-position:0 -1034px}li#sq_research_lang_hn:before{background-position:0 -1056px}li#sq_research_lang_co_hu:before{background-position:0 -1089px}li#sq_research_lang_ie:before{background-position:0 -1111px}li#sq_research_lang_co_id:before{background-position:0 -1100px}li#sq_research_lang_co_il:before{background-position:0 -1122px}li#sq_research_lang_co_im:before{background-position:0 -1133px}li#sq_research_lang_co_in:before{background-position:0 -1144px}li#sq_research_lang_co_in:before{background-position:0 -1144px}li#sq_research_lang_it:before{background-position:0 -1199px}li#sq_research_lang_com_je:before{background-position:0 -1221px}li#sq_research_lang_co_jp:before{background-position:0 -1243px}li#sq_research_lang_co_kr:before{background-position:0 -1331px}li#sq_research_lang_kz:before{background-position:0 -1364px}li#sq_research_lang_lk:before{background-position:0 -1419px}li#sq_research_lang_lv:before{background-position:0 -1474px}li#sq_research_lang_co_ls:before{background-position:0 -1441px}li#sq_research_lang_li:before{background-position:0 -1408px}li#sq_research_lang_lt:before{background-position:0 -1452px}li#sq_research_lang_lu:before{background-position:0 -1463px}li#sq_research_lang_com_mx:before{background-position:0 -1716px}li#sq_research_lang_mw:before{background-position:0 -1705px}li#sq_research_lang_com_my:before{background-position:0 -1727px}li#sq_research_lang_com_mt:before{background-position:0 -1672px}li#sq_research_lang_ms:before{background-position:0 -1661px}li#sq_research_lang_mu:before{background-position:0 -1683px}li#sq_research_lang_com_na:before{background-position:0 -1749px}li#sq_research_lang_com_ni:before{background-position:0 -1804px}li#sq_research_lang_com_nf:before{background-position:0 -1782px}li#sq_research_lang_com_np:before{background-position:0 -1837px}li#sq_research_lang_nl:before{background-position:0 -1815px}li#sq_research_lang_no:before{background-position:0 -1826px}li#sq_research_lang_co_nz:before{background-position:0 -1870px}li#sq_research_lang_com_pa:before{background-position:0 -1892px}li#sq_research_lang_com_pe:before{background-position:0 -1903px}li#sq_research_lang_com_ph:before{background-position:0 -1936px}li#sq_research_lang_com_pk:before{background-position:0 -1947px}li#sq_research_lang_pl:before{background-position:0 -1958px}li#sq_research_lang_pn:before{background-position:0 -1980px}li#sq_research_lang_pt:before{background-position:0 -2013px}li#sq_research_lang_com_py:before{background-position:0 -2035px}li#sq_research_lang_com_pr:before{background-position:0 -1991px}li#sq_research_lang_ro:before{background-position:0 -2068px}li#sq_research_lang_ru:before{background-position:0 -2090px}li#sq_research_lang_rw:before{background-position:0 -2101px}li#sq_research_lang_com_sa:before{background-position:0 -2113px}li#sq_research_lang_se:before{background-position:0 -2156px}li#sq_research_lang_com_sg:before{background-position:0 -2167px}li#sq_research_lang_sk:before{background-position:0 -2189px}li#sq_research_lang_sh:before{background-position:0 -2178px}li#sq_research_lang_sm:before{background-position:0 -2233px}li#sq_research_lang_com_sv:before{background-position:0 -2288px}li#sq_research_lang_td:before{background-position:0 -2343px}li#sq_research_lang_co_th:before{background-position:0 -2376px}li#sq_research_lang_com_tr:before{background-position:0 -2453px}li#sq_research_lang_tt:before{background-position:0 -2464px}li#sq_research_lang_com_tw:before{background-position:0 -2486px}li#sq_research_lang_com_ua:before{background-position:0 -2508px}li#sq_research_lang_co_uk:before{background-position:0 -836px}li#sq_research_lang_us:before{background-position:0 -2530px}li#sq_research_lang_com_uy:before{background-position:0 -2552px}li#sq_research_lang_uz:before{background-position:0 -2563px}li#sq_research_lang_co_ve:before{background-position:0 -2596px}li#sq_research_lang_vg:before{background-position:0 -2607px}li#sq_research_lang_com_vn:before{background-position:0 -2629px}li#sq_research_lang_vu:before{background-position:0 -2640px}li#sq_research_lang_co_za:before{background-position:0 -2695px}
|
1 |
+
.sq_beta{display:none !important}.sq_limit_exceeded{clear:both !important;margin:0 auto;text-align:center}.sq_limit_exceeded a{text-decoration:none;display:block;width:200px;clear:both;background-color:#1cab09;font-size:15px;font-weight:bold;color:white;margin:10px auto 0 auto;padding:11px;position:relative;text-shadow:1px 1px #555;cursor:pointer}#sq_research:before{display:block;border:0;content:" ";background:transparent url('../img/sprite.png') repeat-x 0 -360px;width:100%;height:5px;border-radius:2px 2px 0 0;opacity:.3}#sq_research:hover:before{opacity:.8}#sq_research{position:relative;padding:0;margin:15px 0;background-color:#fcfcfc;min-width:460px;box-shadow:0 1px 2px -1px #444;-moz-box-shadow:0 1px 2px -1px #444;-webkit-box-shadow:0 1px 2px -1px #444}.sq_arrow_down{background:transparent url('../img/sprite.png?rev=1') no-repeat -221px -50px !important}.sq_arrow_up{float:right;width:35px;height:20px;margin-top:14px;margin-right:10px;background:transparent url('../img/sprite.png?rev=1') no-repeat -262px -50px;cursor:pointer}#sq_research #sq_research_title{display:block;text-align:left;font-size:18px;font-weight:normal;line-height:30px;color:#999;border-bottom:1px dashed #d1d1d1;margin:0 0 10px 0;padding:10px 0 20px 10px;height:16px}#sq_research:hover #sq_research_title{color:#444}#sq_research #sq_research_body{display:block;font-size:12px;color:#333;line-height:16px;text-align:left;padding:10px 0 2px 10px}#sq_research .sq_keywords_research_add{background-color:transparent;color:#589ee4;font-size:12px;font-weight:bold;text-shadow:1px 1px white;box-shadow:1px 1px 0 0 white;border:1px solid #589ee4;padding:5px 6px;margin-left:0;margin-top:0;cursor:pointer}#sq_research .sq_keywords_research_submit{background-color:#589ee4;color:white;font-size:12px;font-weight:bold;text-shadow:1px 1px #333;box-shadow:1px 1px 0 0 white;border:1px solid #589ee4;padding:5px 6px;margin-left:10px;margin-top:0;cursor:pointer}#sq_research .sq_keywords_research_clear{background-color:transparent;color:#589ee4;font-size:11px;font-weight:bold;text-shadow:1px 1px white;box-shadow:1px 1px 0 0 white;border:1px solid #589ee4;padding:4px 5px;margin-left:15px;margin-top:0;cursor:pointer}#sq_research .sq_keywords_research_export,#sq_research .sq_keywords_research_export_xls{display:none;background-color:#ece8d2;color:#ae6e1c;font-size:11px;font-weight:600;text-shadow:1px 1px #fff;box-shadow:1px 1px 0 0 white;border:1px solid #d1a25e;padding:6px 10px;margin-right:21px;margin-top:2px;cursor:pointer;float:right}#sq_research .sq_keywords_research_export_xls{margin-right:5px}#sq_research .sq_research_addbriefcase{display:block;padding:4px 11px;font-size:12px;font-weight:500;color:white;cursor:pointer;background-color:#d86525;text-shadow:1px 1px #777;border:1px solid white}#sq_research .sq_research_selectit{padding:4px 11px;font-size:12px;font-weight:500;color:white;cursor:pointer;background-color:#589ee4;text-shadow:1px 1px #777;border:1px solid white}#sq_research .sq_keywords_research_clear{float:right;margin-right:10px;margin-top:2px;line-height:16px}#sq_research .sq_keyword_research{float:left;width:390px;margin-top:2px;line-height:24px;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;padding:5px;font-size:14px;font-weight:bold;color:#15b14a}#sq_research_body #sq_keywords_research{display:table;width:100%}#sq_research_body #sq_keywords_research>li{display:table;width:100%;border-bottom:1px solid #dedede;padding-bottom:13px;margin-bottom:10px}#sq_research_body .sq_searching,#sq_research_body .sq_minloading{clear:both;width:96% !important;height:10px;margin-top:10px;background-color:#eee}#sq_research_body .sq_searching .sq_progress{width:1%;height:16px;font-size:9px;color:white;padding-left:5px;text-shadow:1px 1px #333;background-color:green}#sq_research_body #sq_keywords_research>li>div{float:left}#sq_research_body #sq_keywords_research>li>div:first-child{margin-top:7px;margin-right:5px;font-size:17px;font-weight:500;line-height:26px;color:#999}#sq_research_body ul.sq_progressbar li{float:left;padding:0 2px}#sq_research_body input[type=text]{float:left;width:350px;padding:10px 5px;font-size:14px;font-weight:bold;color:#333;background-color:#e2ffd6}#sq_research_body input[type=text]::-moz-placeholder,#sq_research_body input[type=text]::-webkit-input-placeholder,#sq_research_body input[type=text]:-ms-input-placeholder{color:#d1d1d1}#sq_research_body .sq_research_selectit{float:left}#sq_research_body .sq_keywords_info{margin-left:10px;display:table;width:230px}#sq_research_body .sq_addkeyword_close{font-size:15px;display:inline-block;padding:12px;cursor:pointer}#sq_research_body #sq_research_help{clear:both}#sq_research #sq_research_close{position:absolute;background-color:#e5d8cd;right:-6px;top:-3px;font-size:13px;font-weight:bold;color:#333;width:8px;line-height:16px;padding:0 5px 3px;border-radius:10px;-webkit-border-radius:10px;-moz-border-radius:10px;border:1px solid darkOliveGreen;cursor:pointer;z-index:2}#sq_research_body .sq_top_keywords{clear:both !important;float:none !important;width:calc(100% - 40px) !important;margin:0 auto !important;padding-top:15px}#sq_research_body .sq_top_keywords table{border-collapse:collapse}#sq_research_body .sq_top_keywords>table{position:relative;background-color:#f7f7f7;width:100%}#sq_research_body .sq_top_keywords>table{border:1px solid #eee}#sq_research_body .sq_top_keywords>table>tbody>tr{background-color:#fff}#sq_research_body .sq_top_keywords>table>tr>th,#sq_research_body .sq_top_keywords>table>tbody>tr>th,#sq_research_body .sq_top_keywords>table>tr>td,#sq_research_body .sq_top_keywords>table>tbody>tr>td{border:1px dashed #f1f1f1;padding:3px 10px;color:#414141;font-family:Arial,Helvetica,sans-serif;font-size:14px;line-height:1.4em;max-width:350px;white-space:normal;overflow:hidden;text-overflow:ellipsis}#sq_research_body .sq_top_keywords>table>tr>th{text-align:center;font-weight:bold;color:#ccc}#sq_research_body .sq_top_keywords_rank{font-size:14px;font-weight:bold;margin-left:5px}#sq_research_body .sq_top_keywords_rank strong{font-family:'Megalopolis',Arial,Helvetica,sans-serif;font-size:14px;margin:0 5px;border:1px solid red;background-color:white;border-radius:50px;-webkit-border-radius:50px;-moz-border-radius:50px;padding:3px 7px;text-shadow:1px 1px white;color:red;text-align:center}#sq_research_body .sq_research_showinfo:hover{background-position:0 -71px}#sq_research_body .sq_top_keywords_info{padding:5px}#sq_research_body .sq_to_keywords_info table{margin:0 auto}#sq_research_body .sq_top_keywords_info td{border-bottom:1px dashed #d8d8d8;padding:4px 10px;color:#414141;text-align:left;font-size:12px}#sq_research_body .sq_top_keywords_info td .sq_top_keywords_rank{font-size:12px;font-weight:normal}#sq_research_body .sq_input_noback{background:transparent;border:0}ul.sq_research_lang,ul.sq_research_complexity{position:absolute;background-color:#fcfcfc;border:0;font-size:13px;display:block;top:17px;right:100px;width:135px;height:27px;margin:0;padding:0;overflow:hidden;max-height:300px}ul.sq_research_complexity{right:242px;width:140px}ul.sq_research_lang:hover,ul.sq_research_complexity:hover{box-shadow:0 0 10px 0 #333;height:auto;overflow-y:auto;z-index:9999}ul.sq_research_lang>li:before{display:inline-block;content:" ";background:transparent url('../img/flags.png') no-repeat 0 -2541px;border:1px solid white;width:16px;height:11px;cursor:pointer;margin:0 5px -2px 0;padding:0}ul.sq_research_lang>li,ul.sq_research_complexity>li{margin:0 0 5px 0;padding:0 2px;line-height:24px;cursor:pointer}ul.sq_research_lang li.sq_research_first,ul.sq_research_complexity li.sq_complexity_first{border:1px solid #589ee4;color:#589ee4}ul.sq_research_lang li.selected,ul.sq_research_complexity li.selected{background-color:lightgray}li#sq_research_lang_us:before{background-position:0 -2541px}li#sq_research_lang_ae:before{background-position:0 -11px}li#sq_research_lang_off_ai:before{background-position:0 -286px}li#sq_research_lang_com_ag:before{background-position:0 -33px}li#sq_research_lang_com_ar:before{background-position:0 -99px}li#sq_research_lang_as:before{background-position:0 -110px}li#sq_research_lang_at:before{background-position:0 -121px}li#sq_research_lang_com_au:before{background-position:0 -132px}li#sq_research_lang_az:before{background-position:0 -165px}li#sq_research_lang_be:before{background-position:0 -209px}li#sq_research_lang_bi:before{background-position:0 -253px}li#sq_research_lang_bg:before{background-position:0 -230px}li#sq_research_lang_com_br:before{background-position:0 -330px}li#sq_research_lang_ca:before{background-position:0 -407px}li#sq_research_lang_cd:before{background-position:0 -451px}li#sq_research_lang_cg:before{background-position:0 -429px}li#sq_research_lang_ch:before{background-position:0 -462px}li#sq_research_lang_ci:before{background-position:0 -473px}li#sq_research_lang_cl:before{background-position:0 -495px}li#sq_research_lang_com_co:before{background-position:0 -528px}li#sq_research_lang_co_cr:before{background-position:0 -539px}li#sq_research_lang_com:before{background-position:0 -2784px}li#sq_research_lang_com_cu:before{background-position:0 -550px}li#sq_research_lang_cz:before{background-position:0 -605px}li#sq_research_lang_de:before{background-position:0 -616px}li#sq_research_lang_dj:before{background-position:0 -627px}li#sq_research_lang_dk:before{background-position:0 -638px}li#sq_research_lang_com_do:before{background-position:0 -660px}li#sq_research_lang_com_ec:before{background-position:0 -682px}li#sq_research_lang_ee:before{background-position:0 -693px}li#sq_research_lang_es:before{background-position:0 -737px}li#sq_research_lang_fm:before{background-position:0 -792px}li#sq_research_lang_fi:before{background-position:0 -759px}li#sq_research_lang_com_fj:before{background-position:0 -781px}li#sq_research_lang_fr:before{background-position:0 -814px}li#sq_research_lang_ge:before{background-position:0 -858px}li#sq_research_lang_gg:before{background-position:0 -880px}li#sq_research_lang_com_gi:before{background-position:0 -903px}li#sq_research_lang_gl:before{background-position:0 -913px}li#sq_research_lang_gm:before{background-position:0 -924px}li#sq_research_lang_com_gr:before{background-position:0 -968px}li#sq_research_lang_com_hk:before{background-position:0 -1034px}li#sq_research_lang_hn:before{background-position:0 -1056px}li#sq_research_lang_co_hu:before{background-position:0 -1089px}li#sq_research_lang_ie:before{background-position:0 -1111px}li#sq_research_lang_co_id:before{background-position:0 -1100px}li#sq_research_lang_co_il:before{background-position:0 -1122px}li#sq_research_lang_co_im:before{background-position:0 -1133px}li#sq_research_lang_co_in:before{background-position:0 -1144px}li#sq_research_lang_co_in:before{background-position:0 -1144px}li#sq_research_lang_it:before{background-position:0 -1199px}li#sq_research_lang_com_je:before{background-position:0 -1221px}li#sq_research_lang_co_jp:before{background-position:0 -1243px}li#sq_research_lang_co_kr:before{background-position:0 -1331px}li#sq_research_lang_kz:before{background-position:0 -1364px}li#sq_research_lang_lk:before{background-position:0 -1419px}li#sq_research_lang_lv:before{background-position:0 -1474px}li#sq_research_lang_co_ls:before{background-position:0 -1441px}li#sq_research_lang_li:before{background-position:0 -1408px}li#sq_research_lang_lt:before{background-position:0 -1452px}li#sq_research_lang_lu:before{background-position:0 -1463px}li#sq_research_lang_com_mx:before{background-position:0 -1716px}li#sq_research_lang_mw:before{background-position:0 -1705px}li#sq_research_lang_com_my:before{background-position:0 -1727px}li#sq_research_lang_com_mt:before{background-position:0 -1672px}li#sq_research_lang_ms:before{background-position:0 -1661px}li#sq_research_lang_mu:before{background-position:0 -1683px}li#sq_research_lang_com_na:before{background-position:0 -1749px}li#sq_research_lang_com_ni:before{background-position:0 -1804px}li#sq_research_lang_com_nf:before{background-position:0 -1782px}li#sq_research_lang_com_np:before{background-position:0 -1837px}li#sq_research_lang_nl:before{background-position:0 -1815px}li#sq_research_lang_no:before{background-position:0 -1826px}li#sq_research_lang_co_nz:before{background-position:0 -1870px}li#sq_research_lang_com_pa:before{background-position:0 -1892px}li#sq_research_lang_com_pe:before{background-position:0 -1903px}li#sq_research_lang_com_ph:before{background-position:0 -1936px}li#sq_research_lang_com_pk:before{background-position:0 -1947px}li#sq_research_lang_pl:before{background-position:0 -1958px}li#sq_research_lang_pn:before{background-position:0 -1980px}li#sq_research_lang_pt:before{background-position:0 -2013px}li#sq_research_lang_com_py:before{background-position:0 -2035px}li#sq_research_lang_com_pr:before{background-position:0 -1991px}li#sq_research_lang_ro:before{background-position:0 -2068px}li#sq_research_lang_ru:before{background-position:0 -2090px}li#sq_research_lang_rw:before{background-position:0 -2101px}li#sq_research_lang_com_sa:before{background-position:0 -2113px}li#sq_research_lang_se:before{background-position:0 -2156px}li#sq_research_lang_com_sg:before{background-position:0 -2167px}li#sq_research_lang_sk:before{background-position:0 -2189px}li#sq_research_lang_sh:before{background-position:0 -2178px}li#sq_research_lang_sm:before{background-position:0 -2233px}li#sq_research_lang_com_sv:before{background-position:0 -2288px}li#sq_research_lang_td:before{background-position:0 -2343px}li#sq_research_lang_co_th:before{background-position:0 -2376px}li#sq_research_lang_com_tr:before{background-position:0 -2453px}li#sq_research_lang_tt:before{background-position:0 -2464px}li#sq_research_lang_com_tw:before{background-position:0 -2486px}li#sq_research_lang_com_ua:before{background-position:0 -2508px}li#sq_research_lang_co_uk:before{background-position:0 -836px}li#sq_research_lang_us:before{background-position:0 -2530px}li#sq_research_lang_com_uy:before{background-position:0 -2552px}li#sq_research_lang_uz:before{background-position:0 -2563px}li#sq_research_lang_co_ve:before{background-position:0 -2596px}li#sq_research_lang_vg:before{background-position:0 -2607px}li#sq_research_lang_com_vn:before{background-position:0 -2629px}li#sq_research_lang_vu:before{background-position:0 -2640px}li#sq_research_lang_co_za:before{background-position:0 -2695px}
|
view/css/blocksettingsseo.css
CHANGED
@@ -204,7 +204,7 @@
|
|
204 |
width: 50%;
|
205 |
text-align: center;
|
206 |
display: block;
|
207 |
-
margin-top: -
|
208 |
}
|
209 |
|
210 |
#sq_settings .add_facebook_id input,
|
204 |
width: 50%;
|
205 |
text-align: center;
|
206 |
display: block;
|
207 |
+
margin-top: -50px;
|
208 |
}
|
209 |
|
210 |
#sq_settings .add_facebook_id input,
|
view/css/blocksettingsseo.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.update-nag,.updated,.show-settings,.screen-meta-toggle{display:none !important}#sq_helpsettingsseocontent{float:left;clear:left;width:550px}.sq_checkissues{display:inline-block;background-color:#ff9b00;line-height:37px;color:white;font-size:17px;text-shadow:.1em .1em #ff9b00;cursor:pointer;border:1px solid #f7a504;font-weight:bold;padding:0 10px;margin:18px auto 30px;min-width:170px;height:39px;text-align:center;text-decoration:none;box-shadow:1px 1px 1px 0 #777}.sq_helpside>div{min-height:241px}#sq_settings #sq_settings_title .sq_checkissues{display:block;float:left;line-height:25px;padding:5px 10px;margin:6px 0 0 10px;height:25px}#sq_settings .sq_option_img{float:left;vertical-align:middle;margin:0 10px 15px 0;width:200px;cursor:pointer}#sq_settings #sq_option_facebook,#sq_settings #sq_option_twitter{position:relative;display:table;clear:both}#sq_settings #sq_option_facebook .sq_option_img{background:transparent url('../img/settings/facebook_tmb.png') no-repeat;height:170px}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}#sq_settings #sq_option_facebook .sq_option_img:hover:after{-webkit-animation:fadeIn 1s;animation:fadeIn 1s;-moz-transition:display .5s ease;-webkit-transition:display .5s ease;content:"";top:-150px;left:-57%;position:absolute;width:520px;height:520px;background:transparent url('../img/settings/facebook.png') no-repeat;z-index:100}#sq_settings #sq_option_facebook .sq_option_content{clear:none;float:left;max-width:57%;margin-top:9%}#sq_settings #sq_option_twitter .sq_option_img{background:transparent url('../img/settings/twitter_tmb.png') no-repeat;height:128px}#sq_settings #sq_option_twitter .sq_option_img:hover:after{-webkit-animation:fadeIn 1s;animation:fadeIn 1s;-moz-transition:display .2s ease;-webkit-transition:display .2s ease;content:"";top:-150px;left:-57%;position:absolute;width:520px;height:334px;background:transparent url('../img/settings/twitter.png') no-repeat;z-index:100}#sq_settings #sq_option_twitter .sq_option_content{clear:none;float:left;max-width:57%}#sq_settings #sq_option_twitter .sq_option_account{float:left;width:57%;margin-top:22px}#sq_settings #sq_sitemap_option{margin:0}#sq_settings #sq_sitemap_buid,#sq_settings #sq_sitemap_include{width:98%;margin:0;padding:10px 0 5px 10px;display:table;border:1px solid #e1e1e1}#sq_settings #sq_sitemap_buid li,#sq_settings #sq_sitemap_include li{float:left;margin-right:12px;width:46%}#sq_settings #sq_sitemap_buid li.sq_selectall,#sq_settings #sq_sitemap_include li.sq_selectall{float:none;font-weight:bold;margin-bottom:15px}#sq_settings #sq_jsonld_option .sq_option_img{background:transparent url('../img/settings/googlejsonld_tmb.png') no-repeat;height:128px}#sq_settings #sq_jsonld_option .sq_option_img:hover:after{-webkit-animation:fadeIn 1s;animation:fadeIn 1s;-moz-transition:display .2s ease;-webkit-transition:display .2s ease;content:"";top:-100px;left:0;border:1px solid #ddd;position:absolute;width:520px;height:276px;background:transparent url('../img/settings/googlejsonld.png') no-repeat;z-index:100}#sq_settings div.sq_select_ogimage_preview{position:relative;display:table}#sq_settings div.sq_fp_ogimage img{max-width:470px;max-height:470px;overflow:hidden;text-align:center}#sq_settings div.sq_fp_ogimage_close{position:absolute;right:-8px;top:-8px;border:1px #ccc;background:#ddd;border-radius:50%;width:20px;line-height:20px;text-align:center;cursor:pointer}#sq_settings .add_facebook_id{position:relative;margin:0 auto;width:50%;text-align:center;display:block;margin-top:-
|
1 |
+
.update-nag,.updated,.show-settings,.screen-meta-toggle{display:none !important}#sq_helpsettingsseocontent{float:left;clear:left;width:550px}.sq_checkissues{display:inline-block;background-color:#ff9b00;line-height:37px;color:white;font-size:17px;text-shadow:.1em .1em #ff9b00;cursor:pointer;border:1px solid #f7a504;font-weight:bold;padding:0 10px;margin:18px auto 30px;min-width:170px;height:39px;text-align:center;text-decoration:none;box-shadow:1px 1px 1px 0 #777}.sq_helpside>div{min-height:241px}#sq_settings #sq_settings_title .sq_checkissues{display:block;float:left;line-height:25px;padding:5px 10px;margin:6px 0 0 10px;height:25px}#sq_settings .sq_option_img{float:left;vertical-align:middle;margin:0 10px 15px 0;width:200px;cursor:pointer}#sq_settings #sq_option_facebook,#sq_settings #sq_option_twitter{position:relative;display:table;clear:both}#sq_settings #sq_option_facebook .sq_option_img{background:transparent url('../img/settings/facebook_tmb.png') no-repeat;height:170px}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}#sq_settings #sq_option_facebook .sq_option_img:hover:after{-webkit-animation:fadeIn 1s;animation:fadeIn 1s;-moz-transition:display .5s ease;-webkit-transition:display .5s ease;content:"";top:-150px;left:-57%;position:absolute;width:520px;height:520px;background:transparent url('../img/settings/facebook.png') no-repeat;z-index:100}#sq_settings #sq_option_facebook .sq_option_content{clear:none;float:left;max-width:57%;margin-top:9%}#sq_settings #sq_option_twitter .sq_option_img{background:transparent url('../img/settings/twitter_tmb.png') no-repeat;height:128px}#sq_settings #sq_option_twitter .sq_option_img:hover:after{-webkit-animation:fadeIn 1s;animation:fadeIn 1s;-moz-transition:display .2s ease;-webkit-transition:display .2s ease;content:"";top:-150px;left:-57%;position:absolute;width:520px;height:334px;background:transparent url('../img/settings/twitter.png') no-repeat;z-index:100}#sq_settings #sq_option_twitter .sq_option_content{clear:none;float:left;max-width:57%}#sq_settings #sq_option_twitter .sq_option_account{float:left;width:57%;margin-top:22px}#sq_settings #sq_sitemap_option{margin:0}#sq_settings #sq_sitemap_buid,#sq_settings #sq_sitemap_include{width:98%;margin:0;padding:10px 0 5px 10px;display:table;border:1px solid #e1e1e1}#sq_settings #sq_sitemap_buid li,#sq_settings #sq_sitemap_include li{float:left;margin-right:12px;width:46%}#sq_settings #sq_sitemap_buid li.sq_selectall,#sq_settings #sq_sitemap_include li.sq_selectall{float:none;font-weight:bold;margin-bottom:15px}#sq_settings #sq_jsonld_option .sq_option_img{background:transparent url('../img/settings/googlejsonld_tmb.png') no-repeat;height:128px}#sq_settings #sq_jsonld_option .sq_option_img:hover:after{-webkit-animation:fadeIn 1s;animation:fadeIn 1s;-moz-transition:display .2s ease;-webkit-transition:display .2s ease;content:"";top:-100px;left:0;border:1px solid #ddd;position:absolute;width:520px;height:276px;background:transparent url('../img/settings/googlejsonld.png') no-repeat;z-index:100}#sq_settings div.sq_select_ogimage_preview{position:relative;display:table}#sq_settings div.sq_fp_ogimage img{max-width:470px;max-height:470px;overflow:hidden;text-align:center}#sq_settings div.sq_fp_ogimage_close{position:absolute;right:-8px;top:-8px;border:1px #ccc;background:#ddd;border-radius:50%;width:20px;line-height:20px;text-align:center;cursor:pointer}#sq_settings .add_facebook_id{position:relative;margin:0 auto;width:50%;text-align:center;display:block;margin-top:-50px}#sq_settings .add_facebook_id input,#sq_settings #sq_fp_imageselect,#sq_settings #sq_json_imageselect{background-color:#589ee4;color:white;font-size:12px;font-weight:bold;text-shadow:1px 1px #333;box-shadow:1px 1px 0 0 white;line-height:20px;border:1px solid #589ee4;padding:3px 6px;margin-left:10px;margin-top:0;cursor:pointer}#sq_settings #sq_fp_imageselect{padding:2px 28px}#sq_settings .facebook_app_close{float:right;margin:0 10px auto auto;padding:0 5px;font-size:15px;cursor:pointer;color:#555}
|
view/js/blockdashboard.js
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
$this.find('#sq_settings_login').after($('.sq_helpcontent'));
|
7 |
}
|
8 |
$this.find('.sq_helpcontent').show();
|
9 |
-
$this.find('.sq_slidelist a').on('click', function () {
|
10 |
var li = $(this).parent('li');
|
11 |
li.addClass('sq_loading');
|
12 |
li.find('a').hide();
|
6 |
$this.find('#sq_settings_login').after($('.sq_helpcontent'));
|
7 |
}
|
8 |
$this.find('.sq_helpcontent').show();
|
9 |
+
$this.find('.sq_slidelist a,.sq_slidelist div.sq_playpause').on('click', function () {
|
10 |
var li = $(this).parent('li');
|
11 |
li.addClass('sq_loading');
|
12 |
li.find('a').hide();
|
view/js/blockdashboard.min.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(a,c,b){a instanceof String&&(a=String(a));for(var d=a.length,e=0;e<d;e++){var f=a[e];if(c.call(b,f,e,a))return{i:e,v:f}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(a,c,b){a!=Array.prototype&&a!=Object.prototype&&(a[c]=b.value)};
|
2 |
$jscomp.getGlobal=function(a){return"undefined"!=typeof window&&window===a?a:"undefined"!=typeof global&&null!=global?global:a};$jscomp.global=$jscomp.getGlobal(this);$jscomp.polyfill=function(a,c,b,d){if(c){b=$jscomp.global;a=a.split(".");for(d=0;d<a.length-1;d++){var e=a[d];e in b||(b[e]={});b=b[e]}a=a[a.length-1];d=b[a];c=c(d);c!=d&&null!=c&&$jscomp.defineProperty(b,a,{configurable:!0,writable:!0,value:c})}};
|
3 |
$jscomp.polyfill("Array.prototype.find",function(a){return a?a:function(a,b){return $jscomp.findInternal(this,a,b).v}},"es6","es3");
|
4 |
-
(function(a){a.fn.sq_blockdashboard=function(){var c=this;0<c.find("#sq_settings_login").length&&c.find("#sq_settings_login").after(a(".sq_helpcontent"));c.find(".sq_helpcontent").show();c.find(".sq_slidelist a").on("click",function(){var b=a(this).parent("li");b.addClass("sq_loading");b.find("a").hide();b.find("div").hide();0==b.find("iframe").length&&b.append('<iframe src="//www.slideshare.net/slideshow/embed_code/'+b.find("a").attr("rel")+'" width="680" height="530" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="display:none; max-width: 100%; max-height: 100%;" allowfullscreen> </iframe>');
|
5 |
b.find("iframe").show();b.append("<span>x</span>");b.find("span").on("click",function(){var b=a(this).parent("li");b.find("a").show();b.find("div").show();b.find("iframe").hide();a(this).remove()})});c.find(".sq_slidelist_next").on("click",function(){var b=c.find(".sq_slidelist li.active");c.find(".sq_slidelist_prev").show();0<b.next().length?(a(this).show(),b.removeClass("active"),b.next().addClass("active")):a(this).hide()});c.find(".sq_slidelist_prev").on("click",function(){var b=c.find(".sq_slidelist li.active");
|
6 |
c.find(".sq_slidelist_next").show();0<b.prev().length?(a(this).show(),b.removeClass("active"),b.prev().addClass("active")):a(this).hide()})};0<a("#sq_settings").length?a("#sq_settings").sq_blockdashboard():a(document).ready(function(){a("#sq_settings").sq_blockdashboard()})})(jQuery);
|
1 |
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(a,c,b){a instanceof String&&(a=String(a));for(var d=a.length,e=0;e<d;e++){var f=a[e];if(c.call(b,f,e,a))return{i:e,v:f}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(a,c,b){a!=Array.prototype&&a!=Object.prototype&&(a[c]=b.value)};
|
2 |
$jscomp.getGlobal=function(a){return"undefined"!=typeof window&&window===a?a:"undefined"!=typeof global&&null!=global?global:a};$jscomp.global=$jscomp.getGlobal(this);$jscomp.polyfill=function(a,c,b,d){if(c){b=$jscomp.global;a=a.split(".");for(d=0;d<a.length-1;d++){var e=a[d];e in b||(b[e]={});b=b[e]}a=a[a.length-1];d=b[a];c=c(d);c!=d&&null!=c&&$jscomp.defineProperty(b,a,{configurable:!0,writable:!0,value:c})}};
|
3 |
$jscomp.polyfill("Array.prototype.find",function(a){return a?a:function(a,b){return $jscomp.findInternal(this,a,b).v}},"es6","es3");
|
4 |
+
(function(a){a.fn.sq_blockdashboard=function(){var c=this;0<c.find("#sq_settings_login").length&&c.find("#sq_settings_login").after(a(".sq_helpcontent"));c.find(".sq_helpcontent").show();c.find(".sq_slidelist a,.sq_slidelist div.sq_playpause").on("click",function(){var b=a(this).parent("li");b.addClass("sq_loading");b.find("a").hide();b.find("div").hide();0==b.find("iframe").length&&b.append('<iframe src="//www.slideshare.net/slideshow/embed_code/'+b.find("a").attr("rel")+'" width="680" height="530" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="display:none; max-width: 100%; max-height: 100%;" allowfullscreen> </iframe>');
|
5 |
b.find("iframe").show();b.append("<span>x</span>");b.find("span").on("click",function(){var b=a(this).parent("li");b.find("a").show();b.find("div").show();b.find("iframe").hide();a(this).remove()})});c.find(".sq_slidelist_next").on("click",function(){var b=c.find(".sq_slidelist li.active");c.find(".sq_slidelist_prev").show();0<b.next().length?(a(this).show(),b.removeClass("active"),b.next().addClass("active")):a(this).hide()});c.find(".sq_slidelist_prev").on("click",function(){var b=c.find(".sq_slidelist li.active");
|
6 |
c.find(".sq_slidelist_next").show();0<b.prev().length?(a(this).show(),b.removeClass("active"),b.prev().addClass("active")):a(this).hide()})};0<a("#sq_settings").length?a("#sq_settings").sq_blockdashboard():a(document).ready(function(){a("#sq_settings").sq_blockdashboard()})})(jQuery);
|
view/js/frontmenu.js
CHANGED
@@ -1181,31 +1181,35 @@ SQ_DEBUG = false;
|
|
1181 |
|
1182 |
//Listen for arrows.
|
1183 |
if (e.which === 40) {
|
1184 |
-
if
|
1185 |
-
actionDivSelected
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
|
|
|
|
|
|
|
|
1189 |
} else {
|
1190 |
actionDivSelected = actionDiv.eq(0).addClass('focused');
|
1191 |
}
|
1192 |
-
|
1193 |
-
actionDivSelected = actionDiv.eq(0).addClass('focused');
|
1194 |
}
|
1195 |
-
actionDiv.trigger('keyup');
|
1196 |
} else if (e.which === 38) {
|
1197 |
-
if
|
1198 |
-
actionDivSelected
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
|
|
|
|
|
|
|
|
1202 |
} else {
|
1203 |
actionDivSelected = actionDiv.last().addClass('focused');
|
1204 |
}
|
1205 |
-
|
1206 |
-
actionDivSelected = actionDiv.last().addClass('focused');
|
1207 |
}
|
1208 |
-
actionDiv.trigger('keyup');
|
1209 |
} else if (e.which > 1) {
|
1210 |
$this.find(".sq-actions").hide();
|
1211 |
}
|
1181 |
|
1182 |
//Listen for arrows.
|
1183 |
if (e.which === 40) {
|
1184 |
+
if($this.find(".sq-actions").is(':visible')) {
|
1185 |
+
if (actionDivSelected) {
|
1186 |
+
actionDivSelected.removeClass('focused');
|
1187 |
+
next = actionDivSelected.nextAll().first();
|
1188 |
+
if (next.length > 0) {
|
1189 |
+
actionDivSelected = next.addClass('focused');
|
1190 |
+
} else {
|
1191 |
+
actionDivSelected = actionDiv.eq(0).addClass('focused');
|
1192 |
+
}
|
1193 |
} else {
|
1194 |
actionDivSelected = actionDiv.eq(0).addClass('focused');
|
1195 |
}
|
1196 |
+
actionDiv.trigger('keyup');
|
|
|
1197 |
}
|
|
|
1198 |
} else if (e.which === 38) {
|
1199 |
+
if($this.find(".sq-actions").is(':visible')) {
|
1200 |
+
if (actionDivSelected) {
|
1201 |
+
actionDivSelected.removeClass('focused');
|
1202 |
+
next = actionDivSelected.prevAll().first();
|
1203 |
+
if (next.length > 0) {
|
1204 |
+
actionDivSelected = next.addClass('focused');
|
1205 |
+
} else {
|
1206 |
+
actionDivSelected = actionDiv.last().addClass('focused');
|
1207 |
+
}
|
1208 |
} else {
|
1209 |
actionDivSelected = actionDiv.last().addClass('focused');
|
1210 |
}
|
1211 |
+
actionDiv.trigger('keyup');
|
|
|
1212 |
}
|
|
|
1213 |
} else if (e.which > 1) {
|
1214 |
$this.find(".sq-actions").hide();
|
1215 |
}
|
view/js/frontmenu.min.js
CHANGED
@@ -38,11 +38,11 @@ c.sq_og_media_preview&&""!==c.sq_og_media.val()&&(c.sq_og_media_preview.attr("sr
|
|
38 |
function(){b.sq_loadFrontMenu()});a.keywordsListen();c.editButton.on("click",function(){c.previewTab.hide();c.editTab.show();c.cancelButton.on("click",function(){c.previewTab.show();c.editTab.hide()})});b.isFunction(b.fn.sq_patterns)&&b(".sq_pattern_field").each(function(){b(this).sq_patterns()})};a.mediaListen=function(){b("#sq_get_og_media, #sq_get_tw_media").click(function(a){a.preventDefault();var b=this.id;e&&e.open();var e=wp.media({title:"Select Media",multiple:!1,library:{type:"image"}});
|
39 |
e.on("close",function(){var a=null,f=0;e.state().get("selection").each(function(b){a=b.attributes.url;f++});"sq_get_tw_media"===b&&null!==a?(c.sq_tw_media.val(a),c.sq_tw_media_preview.attr("src",a),c.tw_image_close.show()):"sq_get_og_media"===b&&null!==a&&(c.sq_og_media.val(a),c.sq_og_media_preview.attr("src",a),c.og_image_close.show())});e.on("open",function(){e.state().get("selection")});e.open()})};a.dropDownListen=function(){var e,f,h,k,m;c.sq_toggle.on("focus",function(){b(this).trigger("click")});
|
40 |
c.sq_toggle.on("click",function(){k=b(this);h=k.parent(".input-group").find(".sq-actions");"top"==h.data("position")?(h.css("top","-82px"),h.css("height","80px")):"small"==h.data("position")&&(h.css("top","35px"),h.css("height","36px"));f=h.find(".sq-action");h.show();f.on("click keyup",function(a){var c="undefined"!==typeof e&&1!==a.which?e.find(".sq-value"):b(this).find(".sq-value");"undefined"!==typeof c&&""!==c&&((13===a.which||1===a.which)&&b(this).hasClass("focused")&&b(this).removeClass("focused"),
|
41 |
-
k.val(c.html()),k.sq_checkMax())});k.outside("click",function(){b(this).parent(".input-group").find(".sq-actions").hide()})});c.sq_toggle.on("click keydown",function(b){SQ_DEBUG&&console.log("Start navigation: "+b.which);if(13===b.which)return SQ_DEBUG&&console.log("enter pressed"),h.find(".sq-action.focused").trigger("click"),!1;27===b.which&&a.find(".sq-actions").hide();40===b.which?(e?(e.removeClass("focused"),m=e.nextAll().first(),e=0<m.length?m.addClass("focused"):
|
42 |
-
e=f.eq(0).addClass("focused"),f.trigger("keyup")):38===b.which?(e?(e.removeClass("focused"),m=e.prevAll().first(),e=0<m.length?m.addClass("focused"):f.last().addClass("focused")):e=f.last().addClass("focused"),f.trigger("keyup")):1<b.which&&a.find(".sq-actions").hide()})};a.keywordsListen=function(){c.sq_keywords.tagsinput("items")};a.escapeHtml=function(a){var b={"&":"&","<":"<",">":">",'"':""","'":"'"};return a.toString().replace(/[&<>"']/g,
|
43 |
-
function(a){if(0==b("form#post").length)if(a)b(window).on("beforeunload",function(){return confirm("You have unsave changes in Squirrly Snippet. Are you sure you want to proceed?")});else b(window).off("beforeunload")};a.initNav();a.listenDoSeo();a.mediaListen();a.tabsListen();a.populateInputs();a.dropDownListen();a.find('input[type="text"], textarea').on("keyup paste",function(){a.preventLeave(!0);b(this).sq_checkMax()});c.saveButton.on("click",function(b){b.preventDefault();
|
44 |
-
a.preventLeave(!1);a.saveSEO()});if("undefined"!==typeof b.sq_blockseo)b.sq_blockseo.on("sq_seo_refresh",function(){c.sq_settings_form.submit()});return a};b.fn.sq_checkMax=function(){var f=b(this);if(!(0< !f.length)){var a=f.is("input, textarea")?f.val():f.html();a=a.length;var c=parseInt(f.parents(".row:last").find(".sq_length").data("maxlength"));f.parents(".row:last").find(".sq_length").text(a);0===a||a>c?f.css("border","solid 1px red"):f.css("border","solid 1px white")}};
|
45 |
-
a){return this.each(function(){var c=b(this),e=this;b(document).on(f,function h(c){c.target===e||b.contains(e,c.target)||(a.apply(e,[c]),b(document).off(f,h))});c.on("keydown blur",function k(b){9===b.which&&(a.apply(e,[b]),c.off("keydown",k))})})};b.fn.toggleSwitch=function(f){var a=b(this);(a.prop("checked")&&0==f||!a.prop("checked")&&1==f)&&a.trigger("click")};b.sq_loadFrontMenu=function(){0<b("body.wp-admin").find("input[name=post_ID]").length&&(b("#sq_blocksnippet").find(".inside").html(""),
|
46 |
b("#sq_blocksnippet").parent().prepend(b("#sq_blocksnippet")),b.sq_getFrontMenu(b("input[name=post_ID]").val(),b("input[name=post_type]").val()),b("#wp-admin-bar-sq_bar_menu").find(".ab-item").on("click",function(){b("html,body").scrollTop(b("#sq_blocksnippet").offset().top-50)}));0<b("body.wp-admin").find("input[name=tag_ID]").length&&(b("#sq_blocksnippet").find(".inside").html(""),b.sq_getFrontMenuTax(b("input[name=tag_ID]").val(),b("input[name=taxonomy]").val()),b("#wp-admin-bar-sq_bar_menu").find(".ab-item").on("click",
|
47 |
function(){b("html,body").scrollTop(b("#sq_blocksnippet").offset().top-50)}))};b.sq_getFrontMenu=function(f,a){f&&(0<b("#sq_blocksnippet").length&&b("#sq_blocksnippet").addClass("sq_minloading"),b.post(sqQuery.ajaxurl,{action:"sq_getfrontmenu",post_id:f,post_type:a,nonce:sqQuery.nonce}).done(function(a){"undefined"!==typeof a?"undefined"!==typeof a.html&&(0==b("#sq_blocksnippet").length?(b("#wp-admin-bar-sq_bar_menu").find(".inside").html(a.html),b("#wp-admin-bar-sq_bar_menu").sq_TopMenu()):(b("#sq_blocksnippet").find(".inside").html(a.html),
|
48 |
b("#sq_blocksnippet").sq_TopMenu(),b("#sq_blocksnippet").parent().prepend(b("#sq_blocksnippet"))),b("#sq_blocksnippet").trigger("sq_snippet_loaded")):b("#sq_blocksnippet").removeClass("sq_minloading");0<b("#sq_blocksnippet").length&&(b("#sq_blocksnippet").removeClass("sq_minloading"),b("#sq_blocksnippet").find("#sq_settings_body").show())}).fail(function(){b("#sq_blocksnippet").removeClass("sq_minloading")}))};b.sq_getFrontMenuTax=function(f,a){f&&(0<b("#sq_blocksnippet").length&&b("#sq_blocksnippet").addClass("sq_minloading"),
|
38 |
function(){b.sq_loadFrontMenu()});a.keywordsListen();c.editButton.on("click",function(){c.previewTab.hide();c.editTab.show();c.cancelButton.on("click",function(){c.previewTab.show();c.editTab.hide()})});b.isFunction(b.fn.sq_patterns)&&b(".sq_pattern_field").each(function(){b(this).sq_patterns()})};a.mediaListen=function(){b("#sq_get_og_media, #sq_get_tw_media").click(function(a){a.preventDefault();var b=this.id;e&&e.open();var e=wp.media({title:"Select Media",multiple:!1,library:{type:"image"}});
|
39 |
e.on("close",function(){var a=null,f=0;e.state().get("selection").each(function(b){a=b.attributes.url;f++});"sq_get_tw_media"===b&&null!==a?(c.sq_tw_media.val(a),c.sq_tw_media_preview.attr("src",a),c.tw_image_close.show()):"sq_get_og_media"===b&&null!==a&&(c.sq_og_media.val(a),c.sq_og_media_preview.attr("src",a),c.og_image_close.show())});e.on("open",function(){e.state().get("selection")});e.open()})};a.dropDownListen=function(){var e,f,h,k,m;c.sq_toggle.on("focus",function(){b(this).trigger("click")});
|
40 |
c.sq_toggle.on("click",function(){k=b(this);h=k.parent(".input-group").find(".sq-actions");"top"==h.data("position")?(h.css("top","-82px"),h.css("height","80px")):"small"==h.data("position")&&(h.css("top","35px"),h.css("height","36px"));f=h.find(".sq-action");h.show();f.on("click keyup",function(a){var c="undefined"!==typeof e&&1!==a.which?e.find(".sq-value"):b(this).find(".sq-value");"undefined"!==typeof c&&""!==c&&((13===a.which||1===a.which)&&b(this).hasClass("focused")&&b(this).removeClass("focused"),
|
41 |
+
k.val(c.html()),k.sq_checkMax())});k.outside("click",function(){b(this).parent(".input-group").find(".sq-actions").hide()})});c.sq_toggle.on("click keydown",function(b){SQ_DEBUG&&console.log("Start navigation: "+b.which);if(13===b.which)return SQ_DEBUG&&console.log("enter pressed"),h.find(".sq-action.focused").trigger("click"),!1;27===b.which&&a.find(".sq-actions").hide();40===b.which?a.find(".sq-actions").is(":visible")&&(e?(e.removeClass("focused"),m=e.nextAll().first(),e=0<m.length?m.addClass("focused"):
|
42 |
+
f.eq(0).addClass("focused")):e=f.eq(0).addClass("focused"),f.trigger("keyup")):38===b.which?a.find(".sq-actions").is(":visible")&&(e?(e.removeClass("focused"),m=e.prevAll().first(),e=0<m.length?m.addClass("focused"):f.last().addClass("focused")):e=f.last().addClass("focused"),f.trigger("keyup")):1<b.which&&a.find(".sq-actions").hide()})};a.keywordsListen=function(){c.sq_keywords.tagsinput("items")};a.escapeHtml=function(a){var b={"&":"&","<":"<",">":">",'"':""","'":"'"};return a.toString().replace(/[&<>"']/g,
|
43 |
+
function(a){return b[a]})};a.preventLeave=function(a){if(0==b("form#post").length)if(a)b(window).on("beforeunload",function(){return confirm("You have unsave changes in Squirrly Snippet. Are you sure you want to proceed?")});else b(window).off("beforeunload")};a.initNav();a.listenDoSeo();a.mediaListen();a.tabsListen();a.populateInputs();a.dropDownListen();a.find('input[type="text"], textarea').on("keyup paste",function(){a.preventLeave(!0);b(this).sq_checkMax()});c.saveButton.on("click",function(b){b.preventDefault();
|
44 |
+
console.log("save");a.preventLeave(!1);a.saveSEO()});if("undefined"!==typeof b.sq_blockseo)b.sq_blockseo.on("sq_seo_refresh",function(){c.sq_settings_form.submit()});return a};b.fn.sq_checkMax=function(){var f=b(this);if(!(0< !f.length)){var a=f.is("input, textarea")?f.val():f.html();a=a.length;var c=parseInt(f.parents(".row:last").find(".sq_length").data("maxlength"));f.parents(".row:last").find(".sq_length").text(a);0===a||a>c?f.css("border","solid 1px red"):f.css("border","solid 1px white")}};
|
45 |
+
b.fn.outside=function(f,a){return this.each(function(){var c=b(this),e=this;b(document).on(f,function h(c){c.target===e||b.contains(e,c.target)||(a.apply(e,[c]),b(document).off(f,h))});c.on("keydown blur",function k(b){9===b.which&&(a.apply(e,[b]),c.off("keydown",k))})})};b.fn.toggleSwitch=function(f){var a=b(this);(a.prop("checked")&&0==f||!a.prop("checked")&&1==f)&&a.trigger("click")};b.sq_loadFrontMenu=function(){0<b("body.wp-admin").find("input[name=post_ID]").length&&(b("#sq_blocksnippet").find(".inside").html(""),
|
46 |
b("#sq_blocksnippet").parent().prepend(b("#sq_blocksnippet")),b.sq_getFrontMenu(b("input[name=post_ID]").val(),b("input[name=post_type]").val()),b("#wp-admin-bar-sq_bar_menu").find(".ab-item").on("click",function(){b("html,body").scrollTop(b("#sq_blocksnippet").offset().top-50)}));0<b("body.wp-admin").find("input[name=tag_ID]").length&&(b("#sq_blocksnippet").find(".inside").html(""),b.sq_getFrontMenuTax(b("input[name=tag_ID]").val(),b("input[name=taxonomy]").val()),b("#wp-admin-bar-sq_bar_menu").find(".ab-item").on("click",
|
47 |
function(){b("html,body").scrollTop(b("#sq_blocksnippet").offset().top-50)}))};b.sq_getFrontMenu=function(f,a){f&&(0<b("#sq_blocksnippet").length&&b("#sq_blocksnippet").addClass("sq_minloading"),b.post(sqQuery.ajaxurl,{action:"sq_getfrontmenu",post_id:f,post_type:a,nonce:sqQuery.nonce}).done(function(a){"undefined"!==typeof a?"undefined"!==typeof a.html&&(0==b("#sq_blocksnippet").length?(b("#wp-admin-bar-sq_bar_menu").find(".inside").html(a.html),b("#wp-admin-bar-sq_bar_menu").sq_TopMenu()):(b("#sq_blocksnippet").find(".inside").html(a.html),
|
48 |
b("#sq_blocksnippet").sq_TopMenu(),b("#sq_blocksnippet").parent().prepend(b("#sq_blocksnippet"))),b("#sq_blocksnippet").trigger("sq_snippet_loaded")):b("#sq_blocksnippet").removeClass("sq_minloading");0<b("#sq_blocksnippet").length&&(b("#sq_blocksnippet").removeClass("sq_minloading"),b("#sq_blocksnippet").find("#sq_settings_body").show())}).fail(function(){b("#sq_blocksnippet").removeClass("sq_minloading")}))};b.sq_getFrontMenuTax=function(f,a){f&&(0<b("#sq_blocksnippet").length&&b("#sq_blocksnippet").addClass("sq_minloading"),
|