SEO SQUIRRLY™ - Version 8.2.26

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 Icon 128x128 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 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, $charset_collate;
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'), 0);
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::$options['sq_auto_favicon'] == 1) {
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::$options['sq_auto_feed'] == 1) {
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 \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-10-24 10:08+0300\n"
6
- "PO-Revision-Date: 2017-10-24 10:08+0300\n"
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:238
64
  msgid "Format"
65
  msgstr ""
66
 
67
- #: classes/Tools.php:246 classes/Tools.php:262
68
  msgid "Category"
69
  msgstr ""
70
 
71
- #: classes/Tools.php:254 classes/Tools.php:270
72
  msgid "Tag"
73
  msgstr ""
74
 
75
- #: classes/Tools.php:278
76
  msgid "Shipping Option"
77
  msgstr ""
78
 
79
- #: classes/Tools.php:286
80
  msgid "Author at"
81
  msgstr ""
82
 
83
- #: classes/Tools.php:318
84
  msgid "You searched for"
85
  msgstr ""
86
 
87
- #: classes/Tools.php:334
88
  msgid "Page not found"
89
  msgstr ""
90
 
91
  # @ squirrly-seo
92
- #: classes/Tools.php:855
93
  msgid "Fix it for me!"
94
  msgstr "Beheben Sie es für mich!"
95
 
96
- #: classes/Tools.php:861
97
  msgid "Activate the Squirrly SEO for your blog (recommended)"
98
  msgstr ""
99
 
100
- #: classes/Tools.php:872
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:880
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:888
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:896
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:905
126
  msgid "You're blocking google from indexing your site!"
127
  msgstr "Sie blockieren Google zum Indizieren Ihrer Website!"
128
 
129
- #: classes/Tools.php:912
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:919
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:925
143
  msgid "Great! We didn't find any issue in your site."
144
  msgstr ""
145
 
146
- #: classes/Tools.php:1070
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:151
264
  msgid "Custom SEO"
265
  msgstr ""
266
 
267
- #: controllers/Menu.php:194
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:213
274
  msgid " Dashboard"
275
  msgstr ""
276
 
277
- #: controllers/Menu.php:214
278
  msgid "First Step"
279
  msgstr ""
280
 
281
- #: controllers/Menu.php:214
282
  msgid "Dashboard"
283
  msgstr ""
284
 
285
- #: controllers/Menu.php:223
286
  msgid " Performance Analytics"
287
  msgstr ""
288
 
289
- #: controllers/Menu.php:224
290
  msgid "Performance <br />Analytics"
291
  msgstr ""
292
 
293
- #: controllers/Menu.php:232
294
  msgid " Keyword Research"
295
  msgstr ""
296
 
297
- #: controllers/Menu.php:233
298
  msgid "Keyword Research"
299
  msgstr ""
300
 
301
- #: controllers/Menu.php:240
302
  msgid " Live Assistant"
303
  msgstr ""
304
 
305
- #: controllers/Menu.php:241
306
  msgid "Live Assistant"
307
  msgstr ""
308
 
309
- #: controllers/Menu.php:247
310
  msgid " Copywriting"
311
  msgstr ""
312
 
313
- #: controllers/Menu.php:248
314
  msgid "Copywriting"
315
  msgstr ""
316
 
317
- #: controllers/Menu.php:256
318
  msgid " SEO Audit"
319
  msgstr ""
320
 
321
- #: controllers/Menu.php:257
322
  msgid "Site Audit"
323
  msgstr ""
324
 
325
- #: controllers/Menu.php:265
326
  msgid " SEO Settings"
327
  msgstr ""
328
 
329
- #: controllers/Menu.php:266 view/BlockToolbar.php:4
330
  msgid "SEO Settings"
331
  msgstr ""
332
 
333
- #: controllers/Menu.php:274
334
  msgid " Advanced Settings"
335
  msgstr ""
336
 
337
- #: controllers/Menu.php:275 view/BlockSettings.php:22
338
  msgid "Advanced Settings"
339
  msgstr ""
340
 
341
- #: controllers/Menu.php:282
342
  msgid " SEO Patterns"
343
  msgstr ""
344
 
345
- #: controllers/Menu.php:283 view/BlockToolbar.php:14
346
  msgid "Patterns"
347
  msgstr ""
348
 
349
- #: controllers/Menu.php:290
350
  msgid " Account Info"
351
  msgstr ""
352
 
353
- #: controllers/Menu.php:291
354
  msgid "Account Info"
355
  msgstr ""
356
 
357
- #: controllers/Menu.php:298
358
  msgid " Support"
359
  msgstr ""
360
 
361
  # @ squirrly-seo
362
- #: controllers/Menu.php:299 view/BlockSupport.php:18
363
  msgid "Support"
364
  msgstr "Support"
365
 
366
- #: controllers/Menu.php:306
367
  msgid "Become an Affiliate with "
368
  msgstr ""
369
 
370
- #: controllers/Menu.php:307
371
  msgid "Become an Affiliate"
372
  msgstr ""
373
 
374
- #: controllers/Menu.php:315
375
  msgid "Import SEO "
376
  msgstr ""
377
 
378
- #: controllers/Menu.php:316 view/BlockImport.php:77
379
  msgid "Import SEO"
380
  msgstr ""
381
 
382
- #: controllers/Menu.php:343
383
  #, php-format
384
  msgid "Go back and complete the Squirrly Tasks for today %sContinue%s"
385
  msgstr ""
386
 
387
- #: controllers/Menu.php:355
388
  msgid "SEO Snippet"
389
  msgstr ""
390
 
391
- #: controllers/PostsList.php:102
392
  msgid "Squirrly"
393
  msgstr ""
394
 
395
- #: controllers/PostsList.php:129
396
  msgid "Custom description: "
397
  msgstr ""
398
 
399
- #: controllers/PostsList.php:129
400
  msgid "Custom title: "
401
  msgstr ""
402
 
403
- #: controllers/PostsList.php:167
404
  msgid "SEO Analytics, by Squirrly"
405
  msgstr ""
406
 
407
- #: controllers/PostsList.php:168 view/Blockseo.php:10
408
  msgid "Update"
409
  msgstr ""
410
 
411
- #: controllers/PostsList.php:172
412
  msgid "Not Public"
413
  msgstr ""
414
 
415
- #: controllers/PostsList.php:173
416
  msgid "Could not process"
417
  msgstr ""
418
 
419
- #: controllers/PostsList.php:328 controllers/PostsList.php:346
420
  #, php-format
421
  msgid "Not in top 100 for: %s"
422
  msgstr ""
423
 
424
- #: controllers/PostsList.php:330 controllers/PostsList.php:348
425
  msgid "The URL is Indexed"
426
  msgstr ""
427
 
428
- #: controllers/PostsList.php:332 controllers/PostsList.php:350
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:59
667
  msgid "Enter one more word to find relevant results"
668
  msgstr ""
669
 
670
  # @ squirrly-seo
671
- #: core/Loading.php:60
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:61
677
  msgid "Do a research!"
678
  msgstr "Erweiterte Suche!"
679
 
680
  # @ squirrly-seo
681
- #: core/Loading.php:62
682
  msgid "Do more research!"
683
  msgstr "Erweiterte Suche!"
684
 
685
- #: core/Loading.php:63
686
  #, php-format
687
  msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
688
  msgstr ""
689
 
690
- #: core/Loading.php:64
691
  msgid "Has creative commons attributes"
692
  msgstr ""
693
 
694
- #: core/Loading.php:65
695
  msgid "No known copyright restrictions"
696
  msgstr ""
697
 
698
- #: core/Loading.php:66
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:67
707
  msgid "Keyword Research limit exceeded"
708
  msgstr ""
709
 
710
- #: core/Loading.php:68
711
  msgid "Your Subscription has Expired"
712
  msgstr ""
713
 
714
- #: core/Loading.php:69
715
  msgid "Add 20 Keyword Researches"
716
  msgstr ""
717
 
718
- #: core/Loading.php:70
719
  msgid "There are no keywords saved in briefcase yet"
720
  msgstr ""
721
 
722
- #: core/Loading.php:71
723
  #, php-format
724
  msgid "Congratulations! Your article is 100% optimized!"
725
  msgstr ""
726
 
727
- #: core/Loading.php:72
728
  #, php-format
729
  msgid "appears too many times. Try to remove %s of them"
730
  msgstr ""
731
 
732
- #: core/Loading.php:73
733
  #, php-format
734
  msgid "write %s more words"
735
  msgstr ""
736
 
737
- #: core/Loading.php:74
738
  #, php-format
739
  msgid "Add the keyword in the %s of your article"
740
  msgstr ""
741
 
742
- #: core/Loading.php:75
743
  msgid "Click to keep the highlight on"
744
  msgstr ""
745
 
746
- #: core/Loading.php:76
747
  msgid "introduction"
748
  msgstr ""
749
 
750
- #: core/Loading.php:77
751
  #, php-format
752
  msgid "Write more words after the %s keyword"
753
  msgstr ""
754
 
755
- #: core/Loading.php:78
756
  msgid "or use synonyms"
757
  msgstr ""
758
 
759
- #: core/Loading.php:79
760
  #, php-format
761
  msgid "add %s more word(s)"
762
  msgstr ""
763
 
764
- #: core/Loading.php:80
765
  #, php-format
766
  msgid "or remove %s word(s)"
767
  msgstr ""
768
 
769
- #: core/Loading.php:81
770
  #, php-format
771
  msgid "add %s more keyword(s)"
772
  msgstr ""
773
 
774
- #: core/Loading.php:82
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:49
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:129
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:180
1703
- #: view/BlockSettings.php:192 view/BlockSettings.php:355
1704
- #: view/BlockSettingsSeo.php:53 view/BlockSettingsSeo.php:95
1705
- #: view/BlockSettingsSeo.php:112 view/BlockSettingsSeo.php:128
1706
- #: view/BlockSettingsSeo.php:144 view/BlockSettingsSeo.php:160
1707
- #: view/BlockSettingsSeo.php:176 view/BlockSettingsSeo.php:192
1708
- #: view/BlockSettingsSeo.php:220 view/BlockSettingsSeo.php:236
1709
- #: view/BlockSettingsSeo.php:252 view/BlockSettingsSeo.php:271
1710
- #: view/BlockSettingsSeo.php:546 view/BlockSettingsSeo.php:578
1711
- #: view/BlockSettingsSeo.php:586 view/BlockSettingsSeo.php:684
1712
- #: view/BlockSettingsSeo.php:1030 view/FrontMenu.php:49 view/FrontMenu.php:508
1713
- #: view/FrontMenu.php:521 view/FrontMenu.php:534
 
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:182
1722
- #: view/BlockSettings.php:194 view/BlockSettings.php:357
1723
- #: view/BlockSettingsSeo.php:55 view/BlockSettingsSeo.php:97
1724
- #: view/BlockSettingsSeo.php:114 view/BlockSettingsSeo.php:130
1725
- #: view/BlockSettingsSeo.php:146 view/BlockSettingsSeo.php:162
1726
- #: view/BlockSettingsSeo.php:178 view/BlockSettingsSeo.php:194
1727
- #: view/BlockSettingsSeo.php:222 view/BlockSettingsSeo.php:238
1728
- #: view/BlockSettingsSeo.php:254 view/BlockSettingsSeo.php:273
1729
- #: view/BlockSettingsSeo.php:548 view/BlockSettingsSeo.php:580
1730
- #: view/BlockSettingsSeo.php:588 view/BlockSettingsSeo.php:686
1731
- #: view/BlockSettingsSeo.php:1032 view/FrontMenu.php:51 view/FrontMenu.php:510
1732
- #: view/FrontMenu.php:523 view/FrontMenu.php:536
 
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:405
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:185
 
 
 
 
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:197
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:207
1890
  msgid "Google Rank Options"
1891
  msgstr ""
1892
 
1893
- #: view/BlockSettings.php:208
1894
  #, php-format
1895
  msgid "%sCountry targeting%s"
1896
  msgstr ""
1897
 
1898
- #: view/BlockSettings.php:209
1899
  #, php-format
1900
  msgid "%sPowerful SEO Tool For Strong Google Rankings%s"
1901
  msgstr ""
1902
 
1903
- #: view/BlockSettings.php:216
1904
  msgid ""
1905
- "Select the Google extension for which Squirrly will check the Google rank."
1906
  msgstr ""
1907
 
1908
- #: view/BlockSettings.php:221
1909
  msgid "Default"
1910
  msgstr ""
1911
 
1912
- #: view/BlockSettings.php:222
1913
  msgid "American Samoa"
1914
  msgstr ""
1915
 
1916
- #: view/BlockSettings.php:223
1917
  msgid "Anguilla"
1918
  msgstr ""
1919
 
1920
- #: view/BlockSettings.php:224
1921
  msgid "Antigua and Barbuda"
1922
  msgstr ""
1923
 
1924
- #: view/BlockSettings.php:225
1925
  msgid "Argentina"
1926
  msgstr ""
1927
 
1928
- #: view/BlockSettings.php:226
1929
  msgid "Australia"
1930
  msgstr ""
1931
 
1932
- #: view/BlockSettings.php:227
1933
  msgid "Austria"
1934
  msgstr ""
1935
 
1936
- #: view/BlockSettings.php:228
1937
  msgid "Azerbaijan"
1938
  msgstr ""
1939
 
1940
- #: view/BlockSettings.php:229
1941
  msgid "Belgium"
1942
  msgstr ""
1943
 
1944
- #: view/BlockSettings.php:230
1945
  msgid "Brazil"
1946
  msgstr ""
1947
 
1948
- #: view/BlockSettings.php:231
1949
  msgid "British Virgin Islands"
1950
  msgstr ""
1951
 
1952
- #: view/BlockSettings.php:232
1953
  msgid "Burundi"
1954
  msgstr ""
1955
 
1956
- #: view/BlockSettings.php:233
1957
  msgid "Bulgaria"
1958
  msgstr ""
1959
 
1960
- #: view/BlockSettings.php:234
1961
  msgid "Canada"
1962
  msgstr ""
1963
 
1964
- #: view/BlockSettings.php:235
1965
  msgid "Chad"
1966
  msgstr ""
1967
 
1968
- #: view/BlockSettings.php:236
1969
  msgid "Chile"
1970
  msgstr ""
1971
 
1972
- #: view/BlockSettings.php:237
1973
  msgid "Colombia"
1974
  msgstr ""
1975
 
1976
- #: view/BlockSettings.php:238
1977
  msgid "Costa Rica"
1978
  msgstr ""
1979
 
1980
- #: view/BlockSettings.php:239
1981
  msgid "Côte d'Ivoire"
1982
  msgstr ""
1983
 
1984
- #: view/BlockSettings.php:240
1985
  msgid "Cuba"
1986
  msgstr ""
1987
 
1988
- #: view/BlockSettings.php:241
1989
  msgid "Czech Republic"
1990
  msgstr ""
1991
 
1992
- #: view/BlockSettings.php:242
1993
  msgid "Dem. Rep. of the Congo"
1994
  msgstr ""
1995
 
1996
- #: view/BlockSettings.php:243
1997
  msgid "Denmark"
1998
  msgstr ""
1999
 
2000
- #: view/BlockSettings.php:244
2001
  msgid "Djibouti"
2002
  msgstr ""
2003
 
2004
- #: view/BlockSettings.php:245
2005
  msgid "Dominican Republic"
2006
  msgstr ""
2007
 
2008
- #: view/BlockSettings.php:246
2009
  msgid "Ecuador"
2010
  msgstr ""
2011
 
2012
- #: view/BlockSettings.php:247
2013
  msgid "El Salvador"
2014
  msgstr ""
2015
 
2016
- #: view/BlockSettings.php:248
2017
  msgid "Estonia"
2018
  msgstr ""
2019
 
2020
- #: view/BlockSettings.php:249
2021
  msgid "Federated States of Micronesia"
2022
  msgstr ""
2023
 
2024
- #: view/BlockSettings.php:250
2025
  msgid "Fiji"
2026
  msgstr ""
2027
 
2028
- #: view/BlockSettings.php:251
2029
  msgid "Finland"
2030
  msgstr ""
2031
 
2032
- #: view/BlockSettings.php:252
2033
  msgid "France"
2034
  msgstr ""
2035
 
2036
- #: view/BlockSettings.php:253
2037
  msgid "The Gambia"
2038
  msgstr ""
2039
 
2040
- #: view/BlockSettings.php:254
2041
  msgid "Georgia"
2042
  msgstr ""
2043
 
2044
- #: view/BlockSettings.php:255
2045
  msgid "Germany"
2046
  msgstr ""
2047
 
2048
- #: view/BlockSettings.php:256
2049
  msgid "Gibraltar"
2050
  msgstr ""
2051
 
2052
- #: view/BlockSettings.php:257
2053
  msgid "Greece"
2054
  msgstr ""
2055
 
2056
- #: view/BlockSettings.php:258
2057
  msgid "Greenland"
2058
  msgstr ""
2059
 
2060
- #: view/BlockSettings.php:259
2061
  msgid "Guernsey"
2062
  msgstr ""
2063
 
2064
- #: view/BlockSettings.php:260
2065
  msgid "Honduras"
2066
  msgstr ""
2067
 
2068
- #: view/BlockSettings.php:261
2069
  msgid "Hong Kong"
2070
  msgstr ""
2071
 
2072
- #: view/BlockSettings.php:262
2073
  msgid "Hungary"
2074
  msgstr ""
2075
 
2076
- #: view/BlockSettings.php:263
2077
  msgid "India"
2078
  msgstr ""
2079
 
2080
- #: view/BlockSettings.php:264
2081
  msgid "Indonesia"
2082
  msgstr ""
2083
 
2084
- #: view/BlockSettings.php:265
2085
  msgid "Ireland"
2086
  msgstr ""
2087
 
2088
- #: view/BlockSettings.php:266
2089
  msgid "Isle of Man"
2090
  msgstr ""
2091
 
2092
- #: view/BlockSettings.php:267
2093
  msgid "Israel"
2094
  msgstr ""
2095
 
2096
- #: view/BlockSettings.php:268
2097
  msgid "Italy"
2098
  msgstr ""
2099
 
2100
- #: view/BlockSettings.php:269
2101
  msgid "Jamaica"
2102
  msgstr ""
2103
 
2104
- #: view/BlockSettings.php:270
2105
  msgid "Japan"
2106
  msgstr ""
2107
 
2108
- #: view/BlockSettings.php:271
2109
  msgid "Jersey"
2110
  msgstr ""
2111
 
2112
- #: view/BlockSettings.php:272
2113
  msgid "Kazakhstan"
2114
  msgstr ""
2115
 
2116
- #: view/BlockSettings.php:273
2117
  msgid "Korea"
2118
  msgstr ""
2119
 
2120
- #: view/BlockSettings.php:274
2121
  msgid "Latvia"
2122
  msgstr ""
2123
 
2124
- #: view/BlockSettings.php:275
2125
  msgid "Lesotho"
2126
  msgstr ""
2127
 
2128
- #: view/BlockSettings.php:276
2129
  msgid "Liechtenstein"
2130
  msgstr ""
2131
 
2132
- #: view/BlockSettings.php:277
2133
  msgid "Lithuania"
2134
  msgstr ""
2135
 
2136
- #: view/BlockSettings.php:278
2137
  msgid "Luxembourg"
2138
  msgstr ""
2139
 
2140
- #: view/BlockSettings.php:279
2141
  msgid "Malawi"
2142
  msgstr ""
2143
 
2144
- #: view/BlockSettings.php:280
2145
  msgid "Malaysia"
2146
  msgstr ""
2147
 
2148
- #: view/BlockSettings.php:281
2149
  msgid "Malta"
2150
  msgstr ""
2151
 
2152
- #: view/BlockSettings.php:282
2153
  msgid "Mauritius"
2154
  msgstr ""
2155
 
2156
- #: view/BlockSettings.php:283
2157
  msgid "México"
2158
  msgstr ""
2159
 
2160
- #: view/BlockSettings.php:284
2161
  msgid "Montserrat"
2162
  msgstr ""
2163
 
2164
- #: view/BlockSettings.php:285
2165
  msgid "Namibia"
2166
  msgstr ""
2167
 
2168
- #: view/BlockSettings.php:286
2169
  msgid "Nepal"
2170
  msgstr ""
2171
 
2172
- #: view/BlockSettings.php:287
2173
  msgid "Netherlands"
2174
  msgstr ""
2175
 
2176
- #: view/BlockSettings.php:288
2177
  msgid "New Zealand"
2178
  msgstr ""
2179
 
2180
- #: view/BlockSettings.php:289
2181
  msgid "Nicaragua"
2182
  msgstr ""
2183
 
2184
- #: view/BlockSettings.php:290
2185
  msgid "Norfolk Island"
2186
  msgstr ""
2187
 
2188
- #: view/BlockSettings.php:291
2189
  msgid "Norway"
2190
  msgstr ""
2191
 
2192
- #: view/BlockSettings.php:292
2193
  msgid "Pakistan"
2194
  msgstr ""
2195
 
2196
- #: view/BlockSettings.php:293
2197
  msgid "Panamá"
2198
  msgstr ""
2199
 
2200
- #: view/BlockSettings.php:294
2201
  msgid "Paraguay"
2202
  msgstr ""
2203
 
2204
- #: view/BlockSettings.php:295
2205
  msgid "Perú"
2206
  msgstr ""
2207
 
2208
- #: view/BlockSettings.php:296
2209
  msgid "Philippines"
2210
  msgstr ""
2211
 
2212
- #: view/BlockSettings.php:297
2213
  msgid "Pitcairn Islands"
2214
  msgstr ""
2215
 
2216
- #: view/BlockSettings.php:298
2217
  msgid "Poland"
2218
  msgstr ""
2219
 
2220
- #: view/BlockSettings.php:299
2221
  msgid "Portugal"
2222
  msgstr ""
2223
 
2224
- #: view/BlockSettings.php:300
2225
  msgid "Puerto Rico"
2226
  msgstr ""
2227
 
2228
- #: view/BlockSettings.php:301
2229
  msgid "Rep. of the Congo"
2230
  msgstr ""
2231
 
2232
- #: view/BlockSettings.php:302
2233
  msgid "Romania"
2234
  msgstr ""
2235
 
2236
- #: view/BlockSettings.php:303
2237
  msgid "Russia"
2238
  msgstr ""
2239
 
2240
- #: view/BlockSettings.php:304
2241
  msgid "Rwanda"
2242
  msgstr ""
2243
 
2244
- #: view/BlockSettings.php:305
2245
  msgid "Saint Helena"
2246
  msgstr ""
2247
 
2248
- #: view/BlockSettings.php:306
2249
  msgid "San Marino"
2250
  msgstr ""
2251
 
2252
- #: view/BlockSettings.php:307
2253
  msgid "Saudi Arabia"
2254
  msgstr ""
2255
 
2256
- #: view/BlockSettings.php:308
2257
  msgid "Singapore"
2258
  msgstr ""
2259
 
2260
- #: view/BlockSettings.php:309
2261
  msgid "Slovakia"
2262
  msgstr ""
2263
 
2264
- #: view/BlockSettings.php:310
2265
  msgid "South Africa"
2266
  msgstr ""
2267
 
2268
- #: view/BlockSettings.php:311
2269
  msgid "Spain"
2270
  msgstr ""
2271
 
2272
- #: view/BlockSettings.php:312
2273
  msgid "Sri Lanka"
2274
  msgstr ""
2275
 
2276
- #: view/BlockSettings.php:313
2277
  msgid "Sweden"
2278
  msgstr ""
2279
 
2280
- #: view/BlockSettings.php:314
2281
  msgid "Switzerland"
2282
  msgstr ""
2283
 
2284
- #: view/BlockSettings.php:315
2285
  msgid "Taiwan"
2286
  msgstr ""
2287
 
2288
- #: view/BlockSettings.php:316
2289
  msgid "Thailand"
2290
  msgstr ""
2291
 
2292
- #: view/BlockSettings.php:317
2293
  msgid "Trinidad and Tobago"
2294
  msgstr ""
2295
 
2296
- #: view/BlockSettings.php:318
2297
  msgid "Turkey"
2298
  msgstr ""
2299
 
2300
- #: view/BlockSettings.php:319
2301
  msgid "Ukraine"
2302
  msgstr ""
2303
 
2304
- #: view/BlockSettings.php:320
2305
  msgid "United Arab Emirates"
2306
  msgstr ""
2307
 
2308
- #: view/BlockSettings.php:321
2309
  msgid "United Kingdom"
2310
  msgstr ""
2311
 
2312
- #: view/BlockSettings.php:322
2313
  msgid "United States"
2314
  msgstr ""
2315
 
2316
- #: view/BlockSettings.php:323
2317
  msgid "Uruguay"
2318
  msgstr ""
2319
 
2320
- #: view/BlockSettings.php:324
2321
  msgid "Uzbekistan"
2322
  msgstr ""
2323
 
2324
- #: view/BlockSettings.php:325
2325
  msgid "Vanuatu"
2326
  msgstr ""
2327
 
2328
- #: view/BlockSettings.php:326
2329
  msgid "Venezuela"
2330
  msgstr ""
2331
 
2332
- #: view/BlockSettings.php:327
2333
  msgid "Vietnam"
2334
  msgstr ""
2335
 
2336
- #: view/BlockSettings.php:331
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:338
2344
  msgid "page"
2345
  msgstr ""
2346
 
2347
- #: view/BlockSettings.php:340
2348
  msgid "pages"
2349
  msgstr ""
2350
 
2351
- #: view/BlockSettings.php:346
2352
  msgid "h"
2353
  msgstr ""
2354
 
2355
- #: view/BlockSettings.php:360
2356
  msgid ""
2357
  "Restricts search results to results originating in the above particular "
2358
  "country."
2359
  msgstr ""
2360
 
2361
- #: view/BlockSettings.php:370
2362
  msgid "Robots.txt Editor"
2363
  msgstr ""
2364
 
2365
- #: view/BlockSettings.php:371
2366
  #, php-format
2367
  msgid "%sLearn about robots.txt files%s"
2368
  msgstr ""
2369
 
2370
- #: view/BlockSettings.php:372
2371
  #, php-format
2372
  msgid "%sHow to use Robots.txt%s"
2373
  msgstr ""
2374
 
2375
- #: view/BlockSettings.php:378
2376
  msgid "Edit the Robots.txt data"
2377
  msgstr ""
2378
 
2379
- #: view/BlockSettings.php:391
2380
  msgid ""
2381
  "Does not physically create the robots.txt file. The best option for "
2382
  "Multisites."
2383
  msgstr ""
2384
 
2385
- #: view/BlockSettings.php:396
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 a Facebook Admin ID"
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-10-24 10:08+0300\n"
5
- "PO-Revision-Date: 2017-10-24 10:08+0300\n"
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:238
56
  msgid "Format"
57
  msgstr ""
58
 
59
- #: classes/Tools.php:246 classes/Tools.php:262
60
  msgid "Category"
61
  msgstr ""
62
 
63
- #: classes/Tools.php:254 classes/Tools.php:270
64
  msgid "Tag"
65
  msgstr ""
66
 
67
- #: classes/Tools.php:278
68
  msgid "Shipping Option"
69
  msgstr ""
70
 
71
- #: classes/Tools.php:286
72
  msgid "Author at"
73
  msgstr ""
74
 
75
- #: classes/Tools.php:318
76
  msgid "You searched for"
77
  msgstr ""
78
 
79
- #: classes/Tools.php:334
80
  msgid "Page not found"
81
  msgstr ""
82
 
83
- #: classes/Tools.php:855
84
  msgid "Fix it for me!"
85
  msgstr "Repara-l"
86
 
87
- #: classes/Tools.php:861
88
  msgid "Activate the Squirrly SEO for your blog (recommended)"
89
  msgstr ""
90
 
91
- #: classes/Tools.php:872
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:880
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:888
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:896
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:905
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:912
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:919
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:925
140
  msgid "Great! We didn't find any issue in your site."
141
  msgstr ""
142
 
143
- #: classes/Tools.php:1070
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:151
261
  msgid "Custom SEO"
262
  msgstr ""
263
 
264
- #: controllers/Menu.php:194
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:213
271
  msgid " Dashboard"
272
  msgstr ""
273
 
274
- #: controllers/Menu.php:214
275
  msgid "First Step"
276
  msgstr ""
277
 
278
- #: controllers/Menu.php:214
279
  msgid "Dashboard"
280
  msgstr "Dashboard"
281
 
282
- #: controllers/Menu.php:223
283
  msgid " Performance Analytics"
284
  msgstr ""
285
 
286
- #: controllers/Menu.php:224
287
  msgid "Performance <br />Analytics"
288
  msgstr ""
289
 
290
- #: controllers/Menu.php:232
291
  msgid " Keyword Research"
292
  msgstr ""
293
 
294
- #: controllers/Menu.php:233
295
  msgid "Keyword Research"
296
  msgstr ""
297
 
298
- #: controllers/Menu.php:240
299
  msgid " Live Assistant"
300
  msgstr ""
301
 
302
- #: controllers/Menu.php:241
303
  msgid "Live Assistant"
304
  msgstr ""
305
 
306
- #: controllers/Menu.php:247
307
  msgid " Copywriting"
308
  msgstr ""
309
 
310
- #: controllers/Menu.php:248
311
  msgid "Copywriting"
312
  msgstr ""
313
 
314
- #: controllers/Menu.php:256
315
  msgid " SEO Audit"
316
  msgstr ""
317
 
318
- #: controllers/Menu.php:257
319
  msgid "Site Audit"
320
  msgstr ""
321
 
322
- #: controllers/Menu.php:265
323
  msgid " SEO Settings"
324
  msgstr ""
325
 
326
- #: controllers/Menu.php:266 view/BlockToolbar.php:4
327
  #, fuzzy
328
  msgid "SEO Settings"
329
  msgstr "Setari"
330
 
331
- #: controllers/Menu.php:274
332
  msgid " Advanced Settings"
333
  msgstr ""
334
 
335
- #: controllers/Menu.php:275 view/BlockSettings.php:22
336
  msgid "Advanced Settings"
337
  msgstr ""
338
 
339
- #: controllers/Menu.php:282
340
  msgid " SEO Patterns"
341
  msgstr ""
342
 
343
- #: controllers/Menu.php:283 view/BlockToolbar.php:14
344
  msgid "Patterns"
345
  msgstr ""
346
 
347
- #: controllers/Menu.php:290
348
  msgid " Account Info"
349
  msgstr ""
350
 
351
- #: controllers/Menu.php:291
352
  msgid "Account Info"
353
  msgstr ""
354
 
355
- #: controllers/Menu.php:298
356
  msgid " Support"
357
  msgstr ""
358
 
359
- #: controllers/Menu.php:299 view/BlockSupport.php:18
360
  msgid "Support"
361
  msgstr "Suport"
362
 
363
- #: controllers/Menu.php:306
364
  msgid "Become an Affiliate with "
365
  msgstr ""
366
 
367
- #: controllers/Menu.php:307
368
  msgid "Become an Affiliate"
369
  msgstr ""
370
 
371
- #: controllers/Menu.php:315
372
  msgid "Import SEO "
373
  msgstr ""
374
 
375
- #: controllers/Menu.php:316 view/BlockImport.php:77
376
  msgid "Import SEO"
377
  msgstr ""
378
 
379
- #: controllers/Menu.php:343
380
  #, php-format
381
  msgid "Go back and complete the Squirrly Tasks for today %sContinue%s"
382
  msgstr ""
383
 
384
- #: controllers/Menu.php:355
385
  msgid "SEO Snippet"
386
  msgstr ""
387
 
388
- #: controllers/PostsList.php:102
389
  msgid "Squirrly"
390
  msgstr "Squirrly"
391
 
392
- #: controllers/PostsList.php:129
393
  msgid "Custom description: "
394
  msgstr "Descrierea:"
395
 
396
- #: controllers/PostsList.php:129
397
  msgid "Custom title: "
398
  msgstr "Titlul"
399
 
400
- #: controllers/PostsList.php:167
401
  msgid "SEO Analytics, by Squirrly"
402
  msgstr "SEO Analytics, de la Squirrly"
403
 
404
- #: controllers/PostsList.php:168 view/Blockseo.php:10
405
  msgid "Update"
406
  msgstr "Update"
407
 
408
- #: controllers/PostsList.php:172
409
  msgid "Not Public"
410
  msgstr "Ciorna"
411
 
412
- #: controllers/PostsList.php:173
413
  msgid "Could not process"
414
  msgstr "Nu s-a putut verifica"
415
 
416
- #: controllers/PostsList.php:328 controllers/PostsList.php:346
417
  #, php-format
418
  msgid "Not in top 100 for: %s"
419
  msgstr ""
420
 
421
- #: controllers/PostsList.php:330 controllers/PostsList.php:348
422
  msgid "The URL is Indexed"
423
  msgstr ""
424
 
425
- #: controllers/PostsList.php:332 controllers/PostsList.php:350
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:59
639
  msgid "Enter one more word to find relevant results"
640
  msgstr ""
641
 
642
- #: core/Loading.php:60
643
  msgid "Takes too long to check this keyword ..."
644
  msgstr "Ia prea mult timp sa verifice cuvantul ..."
645
 
646
- #: core/Loading.php:61
647
  msgid "Do a research!"
648
  msgstr "Mai multe detalii!"
649
 
650
- #: core/Loading.php:62
651
  msgid "Do more research!"
652
  msgstr "Mai multe detalii!"
653
 
654
- #: core/Loading.php:63
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:64
662
  msgid "Has creative commons attributes"
663
  msgstr "Are conditii de atribuire"
664
 
665
- #: core/Loading.php:65
666
  msgid "No known copyright restrictions"
667
  msgstr "Nu sunt restrictii de copyright cunoscute"
668
 
669
- #: core/Loading.php:66
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:67
678
  msgid "Keyword Research limit exceeded"
679
  msgstr ""
680
 
681
- #: core/Loading.php:68
682
  msgid "Your Subscription has Expired"
683
  msgstr ""
684
 
685
- #: core/Loading.php:69
686
  msgid "Add 20 Keyword Researches"
687
  msgstr ""
688
 
689
- #: core/Loading.php:70
690
  msgid "There are no keywords saved in briefcase yet"
691
  msgstr ""
692
 
693
- #: core/Loading.php:71
694
  #, php-format
695
  msgid "Congratulations! Your article is 100% optimized!"
696
  msgstr ""
697
 
698
- #: core/Loading.php:72
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:73
704
  #, php-format
705
  msgid "write %s more words"
706
  msgstr "mai adauga %s cuvinte"
707
 
708
- #: core/Loading.php:74
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:75
714
  msgid "Click to keep the highlight on"
715
  msgstr ""
716
 
717
- #: core/Loading.php:76
718
  msgid "introduction"
719
  msgstr ""
720
 
721
- #: core/Loading.php:77
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:78
727
  msgid "or use synonyms"
728
  msgstr "sau foloseste sinonime"
729
 
730
- #: core/Loading.php:79
731
  #, php-format
732
  msgid "add %s more word(s)"
733
  msgstr "Mai adauga %s cuvinte"
734
 
735
- #: core/Loading.php:80
736
  #, php-format
737
  msgid "or remove %s word(s)"
738
  msgstr "sau sterge %s cuvinte"
739
 
740
- #: core/Loading.php:81
741
  #, php-format
742
  msgid "add %s more keyword(s)"
743
  msgstr "mai adauga %s cuvint(e) cheie"
744
 
745
- #: core/Loading.php:82
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 Bing este gresit."
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 "Vezi Squirrly in actiune"
1066
 
1067
  #: view/BlockAccount.php:25 view/BlockAffiliate.php:23
1068
- #, fuzzy
1069
  msgid "Go to dashboard"
1070
- msgstr "dashboard"
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 "URL Google Plus:"
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 "Twitter"
1185
 
1186
  #: view/BlockAnalytics.php:123
1187
- #, fuzzy
1188
  msgid "Google+ shares"
1189
- msgstr "Rezultate Google pentru:"
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:49
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:129
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:180
1666
- #: view/BlockSettings.php:192 view/BlockSettings.php:355
1667
- #: view/BlockSettingsSeo.php:53 view/BlockSettingsSeo.php:95
1668
- #: view/BlockSettingsSeo.php:112 view/BlockSettingsSeo.php:128
1669
- #: view/BlockSettingsSeo.php:144 view/BlockSettingsSeo.php:160
1670
- #: view/BlockSettingsSeo.php:176 view/BlockSettingsSeo.php:192
1671
- #: view/BlockSettingsSeo.php:220 view/BlockSettingsSeo.php:236
1672
- #: view/BlockSettingsSeo.php:252 view/BlockSettingsSeo.php:271
1673
- #: view/BlockSettingsSeo.php:546 view/BlockSettingsSeo.php:578
1674
- #: view/BlockSettingsSeo.php:586 view/BlockSettingsSeo.php:684
1675
- #: view/BlockSettingsSeo.php:1030 view/FrontMenu.php:49 view/FrontMenu.php:508
1676
- #: view/FrontMenu.php:521 view/FrontMenu.php:534
 
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:182
1684
- #: view/BlockSettings.php:194 view/BlockSettings.php:357
1685
- #: view/BlockSettingsSeo.php:55 view/BlockSettingsSeo.php:97
1686
- #: view/BlockSettingsSeo.php:114 view/BlockSettingsSeo.php:130
1687
- #: view/BlockSettingsSeo.php:146 view/BlockSettingsSeo.php:162
1688
- #: view/BlockSettingsSeo.php:178 view/BlockSettingsSeo.php:194
1689
- #: view/BlockSettingsSeo.php:222 view/BlockSettingsSeo.php:238
1690
- #: view/BlockSettingsSeo.php:254 view/BlockSettingsSeo.php:273
1691
- #: view/BlockSettingsSeo.php:548 view/BlockSettingsSeo.php:580
1692
- #: view/BlockSettingsSeo.php:588 view/BlockSettingsSeo.php:686
1693
- #: view/BlockSettingsSeo.php:1032 view/FrontMenu.php:51 view/FrontMenu.php:510
1694
- #: view/FrontMenu.php:523 view/FrontMenu.php:536
 
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:405
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:185
 
 
 
 
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:197
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:207
1852
  msgid "Google Rank Options"
1853
  msgstr ""
1854
 
1855
- #: view/BlockSettings.php:208
1856
  #, php-format
1857
  msgid "%sCountry targeting%s"
1858
  msgstr ""
1859
 
1860
- #: view/BlockSettings.php:209
1861
  #, php-format
1862
  msgid "%sPowerful SEO Tool For Strong Google Rankings%s"
1863
  msgstr ""
1864
 
1865
- #: view/BlockSettings.php:216
1866
  msgid ""
1867
- "Select the Google extension for which Squirrly will check the Google rank."
1868
  msgstr ""
1869
 
1870
- #: view/BlockSettings.php:221
1871
  msgid "Default"
1872
  msgstr ""
1873
 
1874
- #: view/BlockSettings.php:222
1875
  msgid "American Samoa"
1876
  msgstr ""
1877
 
1878
- #: view/BlockSettings.php:223
1879
  msgid "Anguilla"
1880
  msgstr ""
1881
 
1882
- #: view/BlockSettings.php:224
1883
  msgid "Antigua and Barbuda"
1884
  msgstr ""
1885
 
1886
- #: view/BlockSettings.php:225
1887
  msgid "Argentina"
1888
  msgstr ""
1889
 
1890
- #: view/BlockSettings.php:226
1891
  msgid "Australia"
1892
  msgstr ""
1893
 
1894
- #: view/BlockSettings.php:227
1895
  msgid "Austria"
1896
  msgstr ""
1897
 
1898
- #: view/BlockSettings.php:228
1899
  msgid "Azerbaijan"
1900
  msgstr ""
1901
 
1902
- #: view/BlockSettings.php:229
1903
  msgid "Belgium"
1904
  msgstr ""
1905
 
1906
- #: view/BlockSettings.php:230
1907
  msgid "Brazil"
1908
  msgstr ""
1909
 
1910
- #: view/BlockSettings.php:231
1911
  msgid "British Virgin Islands"
1912
  msgstr ""
1913
 
1914
- #: view/BlockSettings.php:232
1915
  msgid "Burundi"
1916
  msgstr ""
1917
 
1918
- #: view/BlockSettings.php:233
1919
  msgid "Bulgaria"
1920
  msgstr ""
1921
 
1922
- #: view/BlockSettings.php:234
1923
  msgid "Canada"
1924
  msgstr ""
1925
 
1926
- #: view/BlockSettings.php:235
1927
  msgid "Chad"
1928
  msgstr ""
1929
 
1930
- #: view/BlockSettings.php:236
1931
  msgid "Chile"
1932
  msgstr ""
1933
 
1934
- #: view/BlockSettings.php:237
1935
  msgid "Colombia"
1936
  msgstr ""
1937
 
1938
- #: view/BlockSettings.php:238
1939
  msgid "Costa Rica"
1940
  msgstr ""
1941
 
1942
- #: view/BlockSettings.php:239
1943
  msgid "Côte d'Ivoire"
1944
  msgstr ""
1945
 
1946
- #: view/BlockSettings.php:240
1947
  msgid "Cuba"
1948
  msgstr ""
1949
 
1950
- #: view/BlockSettings.php:241
1951
  msgid "Czech Republic"
1952
  msgstr ""
1953
 
1954
- #: view/BlockSettings.php:242
1955
  msgid "Dem. Rep. of the Congo"
1956
  msgstr ""
1957
 
1958
- #: view/BlockSettings.php:243
1959
  msgid "Denmark"
1960
  msgstr ""
1961
 
1962
- #: view/BlockSettings.php:244
1963
  msgid "Djibouti"
1964
  msgstr ""
1965
 
1966
- #: view/BlockSettings.php:245
1967
  msgid "Dominican Republic"
1968
  msgstr ""
1969
 
1970
- #: view/BlockSettings.php:246
1971
  msgid "Ecuador"
1972
  msgstr ""
1973
 
1974
- #: view/BlockSettings.php:247
1975
  msgid "El Salvador"
1976
  msgstr ""
1977
 
1978
- #: view/BlockSettings.php:248
1979
  msgid "Estonia"
1980
  msgstr ""
1981
 
1982
- #: view/BlockSettings.php:249
1983
  msgid "Federated States of Micronesia"
1984
  msgstr ""
1985
 
1986
- #: view/BlockSettings.php:250
1987
  msgid "Fiji"
1988
  msgstr ""
1989
 
1990
- #: view/BlockSettings.php:251
1991
  msgid "Finland"
1992
  msgstr ""
1993
 
1994
- #: view/BlockSettings.php:252
1995
  #, fuzzy
1996
  msgid "France"
1997
  msgstr "Renunta"
1998
 
1999
- #: view/BlockSettings.php:253
2000
  msgid "The Gambia"
2001
  msgstr ""
2002
 
2003
- #: view/BlockSettings.php:254
2004
  msgid "Georgia"
2005
  msgstr ""
2006
 
2007
- #: view/BlockSettings.php:255
2008
  msgid "Germany"
2009
  msgstr ""
2010
 
2011
- #: view/BlockSettings.php:256
2012
  msgid "Gibraltar"
2013
  msgstr ""
2014
 
2015
- #: view/BlockSettings.php:257
2016
  msgid "Greece"
2017
  msgstr ""
2018
 
2019
- #: view/BlockSettings.php:258
2020
  msgid "Greenland"
2021
  msgstr ""
2022
 
2023
- #: view/BlockSettings.php:259
2024
  msgid "Guernsey"
2025
  msgstr ""
2026
 
2027
- #: view/BlockSettings.php:260
2028
  msgid "Honduras"
2029
  msgstr ""
2030
 
2031
- #: view/BlockSettings.php:261
2032
  msgid "Hong Kong"
2033
  msgstr ""
2034
 
2035
- #: view/BlockSettings.php:262
2036
  msgid "Hungary"
2037
  msgstr ""
2038
 
2039
- #: view/BlockSettings.php:263
2040
  msgid "India"
2041
  msgstr ""
2042
 
2043
- #: view/BlockSettings.php:264
2044
  msgid "Indonesia"
2045
  msgstr ""
2046
 
2047
- #: view/BlockSettings.php:265
2048
  msgid "Ireland"
2049
  msgstr ""
2050
 
2051
- #: view/BlockSettings.php:266
2052
  msgid "Isle of Man"
2053
  msgstr ""
2054
 
2055
- #: view/BlockSettings.php:267
2056
  msgid "Israel"
2057
  msgstr ""
2058
 
2059
- #: view/BlockSettings.php:268
2060
  msgid "Italy"
2061
  msgstr ""
2062
 
2063
- #: view/BlockSettings.php:269
2064
  msgid "Jamaica"
2065
  msgstr ""
2066
 
2067
- #: view/BlockSettings.php:270
2068
  msgid "Japan"
2069
  msgstr ""
2070
 
2071
- #: view/BlockSettings.php:271
2072
  msgid "Jersey"
2073
  msgstr ""
2074
 
2075
- #: view/BlockSettings.php:272
2076
  msgid "Kazakhstan"
2077
  msgstr ""
2078
 
2079
- #: view/BlockSettings.php:273
2080
  msgid "Korea"
2081
  msgstr ""
2082
 
2083
- #: view/BlockSettings.php:274
2084
  msgid "Latvia"
2085
  msgstr ""
2086
 
2087
- #: view/BlockSettings.php:275
2088
  msgid "Lesotho"
2089
  msgstr ""
2090
 
2091
- #: view/BlockSettings.php:276
2092
  msgid "Liechtenstein"
2093
  msgstr ""
2094
 
2095
- #: view/BlockSettings.php:277
2096
  msgid "Lithuania"
2097
  msgstr ""
2098
 
2099
- #: view/BlockSettings.php:278
2100
  msgid "Luxembourg"
2101
  msgstr ""
2102
 
2103
- #: view/BlockSettings.php:279
2104
  msgid "Malawi"
2105
  msgstr ""
2106
 
2107
- #: view/BlockSettings.php:280
2108
  msgid "Malaysia"
2109
  msgstr ""
2110
 
2111
- #: view/BlockSettings.php:281
2112
  msgid "Malta"
2113
  msgstr ""
2114
 
2115
- #: view/BlockSettings.php:282
2116
  msgid "Mauritius"
2117
  msgstr ""
2118
 
2119
- #: view/BlockSettings.php:283
2120
  msgid "México"
2121
  msgstr ""
2122
 
2123
- #: view/BlockSettings.php:284
2124
  msgid "Montserrat"
2125
  msgstr ""
2126
 
2127
- #: view/BlockSettings.php:285
2128
  msgid "Namibia"
2129
  msgstr ""
2130
 
2131
- #: view/BlockSettings.php:286
2132
  msgid "Nepal"
2133
  msgstr ""
2134
 
2135
- #: view/BlockSettings.php:287
2136
  msgid "Netherlands"
2137
  msgstr ""
2138
 
2139
- #: view/BlockSettings.php:288
2140
  msgid "New Zealand"
2141
  msgstr ""
2142
 
2143
- #: view/BlockSettings.php:289
2144
  msgid "Nicaragua"
2145
  msgstr ""
2146
 
2147
- #: view/BlockSettings.php:290
2148
  msgid "Norfolk Island"
2149
  msgstr ""
2150
 
2151
- #: view/BlockSettings.php:291
2152
  msgid "Norway"
2153
  msgstr ""
2154
 
2155
- #: view/BlockSettings.php:292
2156
  msgid "Pakistan"
2157
  msgstr ""
2158
 
2159
- #: view/BlockSettings.php:293
2160
  msgid "Panamá"
2161
  msgstr ""