SEO SQUIRRLY™ - Version 12.1.06

Version Description

  • 06/16/2022 = Update - Add Live Assistant support for Oxygen Builder on frontend Update - Add Live Assistant support for Divi Builder on frontend Fix - Live Assistant on frontend to show the number of keywords when a keyword highlighted in SLA Fix - Live Assistant on frontend to load only after the builder preloading is closed Fix - Add the Live Assistant when no meta-box-order is present in the DB Fix - Fixed PHP warning when missing meta-box-order_ line from usermeta table Fix - Woocommerce Compatibility on Variable Products Fix - Show the Free account in Account Info Fix - Show the Account limits from full to empty Fix - Update the 'sq_menu' hoot to get the current menu name Fix - Live Assistant floating box to show correctly on WordPress 6.0 Fix - Reduce the status update of the trashed posts to API Fix - Show error message on SLA when not connected to Cloud
Download this release

Release Info

Developer cifi
Plugin Icon 128x128 SEO SQUIRRLY™
Version 12.1.06
Comparing to
See all releases

Code changes from version 12.1.04 to 12.1.06

classes/RemoteController.php CHANGED
@@ -21,7 +21,7 @@ class SQ_Classes_RemoteController
21
 
22
  //Don't make API calls without the token unless it's login or register
23
  if (!SQ_Classes_Helpers_Tools::getOption('sq_api')) {
24
- if (!in_array($module, array('api/user/login', 'api/user/register'))) {
25
  return '';
26
  }
27
  }
21
 
22
  //Don't make API calls without the token unless it's login or register
23
  if (!SQ_Classes_Helpers_Tools::getOption('sq_api')) {
24
+ if (!in_array($module, array('api/user/login', 'api/user/register', 'api/user/checkin'))) {
25
  return '';
26
  }
27
  }
classes/helpers/Tools.php CHANGED
@@ -1331,7 +1331,7 @@ class SQ_Classes_Helpers_Tools
1331
  if (function_exists('wp_get_theme') ) {
1332
  $themes = wp_get_theme();
1333
 
1334
- if (isset($themes->name) && (strtolower($themes->name) == strtolower($theme) || strtolower($themes->name) == strtolower($theme) . ' child' || strtolower($themes->name) == strtolower($theme) . ' child theme') ) {
1335
  return true;
1336
  }
1337
  }
1331
  if (function_exists('wp_get_theme') ) {
1332
  $themes = wp_get_theme();
1333
 
1334
+ if (isset($themes->name) && (stripos($themes->name, $theme) !== false || stripos($themes->template, $theme) !== false)) {
1335
  return true;
1336
  }
1337
  }
controllers/Menu.php CHANGED
@@ -389,35 +389,6 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController
389
  //Add Live Assistant For Selected Post Types
390
  if (!empty($types)) {
391
  foreach ($types as $type) {
392
- if (is_string($type) && $type <> '') {
393
- $metas = SQ_Classes_Helpers_Tools::getUserMeta('meta-box-order_' . $type);
394
- if(is_string($metas) && $metas <> '' && $metabox = unserialize($metas)) {
395
- extract($metabox);
396
-
397
- if (isset($side) && isset($normal) && is_string($side) && is_string($normal)) {
398
- $side = explode(',', $side);
399
- $normal = explode(',', $normal);
400
- if (in_array('postsquirrly', $normal)) {
401
- $side = array_merge(array('postsquirrly'), $side);
402
- $metabox['side'] = join(',', array_unique($side));
403
-
404
- $normal = array_diff($normal, array('postsquirrly'));
405
- $metabox['normal'] = join(',', array_unique($normal));
406
- SQ_Classes_Helpers_Tools::saveUserMeta('meta-box-order_' . $type, $metabox);
407
- }
408
-
409
- if (in_array('sq_blocksnippet', $side)) {
410
- $normal = array_merge(array('sq_blocksnippet'), $normal);
411
- $metabox['normal'] = join(',', array_unique($normal));
412
-
413
- $side = array_diff($side, array('sq_blocksnippet'));
414
- $metabox['side'] = join(',', array_unique($side));
415
- SQ_Classes_Helpers_Tools::saveUserMeta('meta-box-order_' . $type, $metabox);
416
- }
417
- }
418
- }
419
- }
420
-
421
  //Load the SLA in Post
422
  $this->model->addMeta(
423
  array('postsquirrly',
389
  //Add Live Assistant For Selected Post Types
390
  if (!empty($types)) {
391
  foreach ($types as $type) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
392
  //Load the SLA in Post
393
  $this->model->addMeta(
394
  array('postsquirrly',
controllers/Post.php CHANGED
@@ -8,15 +8,21 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController
8
 
9
  public function init()
10
  {
11
- parent::init();
12
 
13
  if (is_rtl()) {
14
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
15
  }
16
 
17
  //load the draggable script in post edit for the floating SLA
18
- wp_enqueue_script("jquery-ui-core");
19
- wp_enqueue_script("jquery-ui-draggable");
 
 
 
 
 
 
 
20
  }
21
 
22
  /**
8
 
9
  public function init()
10
  {
 
11
 
12
  if (is_rtl()) {
13
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
14
  }
15
 
16
  //load the draggable script in post edit for the floating SLA
17
+ if (!wp_script_is('jquery-ui-core') || !wp_script_is('jquery-ui-draggable')) {
18
+ wp_enqueue_script("jquery-ui-core");
19
+ wp_enqueue_script("jquery-ui-draggable");
20
+ }
21
+
22
+ //Load the Live Assistant
23
+ SQ_Classes_ObjController::getClass('SQ_Models_LiveAssistant')->loadMedia();
24
+ $this->show_view('Blocks/LiveAssistant');
25
+
26
  }
27
 
28
  /**
core/BlockConnect.php DELETED
@@ -1,60 +0,0 @@
1
- <?php
2
- defined('ABSPATH') || die('Cheatin\' uh?');
3
-
4
- class SQ_Core_BlockConnect extends SQ_Classes_BlockController
5
- {
6
-
7
- public $message;
8
-
9
- public function init()
10
- {
11
- /* If logged in, then return */
12
- if (SQ_Classes_Helpers_Tools::getOption('sq_api') == '') {
13
- return;
14
- }
15
-
16
- $this->show_view('Blocks/Connect');
17
- }
18
-
19
- /**
20
- * Called for sq_login on Post action
21
- * Login or register a user
22
- */
23
- public function action()
24
- {
25
- switch (SQ_Classes_Helpers_Tools::getValue('action')) {
26
- //sign-up action
27
- case 'sq_cloud_connect':
28
- $this->connectToCloud();
29
- break;
30
-
31
- case 'sq_cloud_disconnect':
32
- $this->disconnectFromCloud();
33
- break;
34
- }
35
- }
36
-
37
- public function connectToCloud()
38
- {
39
- if(function_exists('rest_get_url_prefix')) {
40
- $apiUrl = trim(rest_get_url_prefix(), '/');
41
- }elseif(function_exists('rest_url')) {
42
- $apiUrl = trim(parse_url(rest_url(), PHP_URL_PATH), '/');
43
- }
44
-
45
- //Make sure the website exists on the Cloud
46
- SQ_Classes_RemoteController::connect();
47
-
48
- if ($token = SQ_Classes_RemoteController::getCloudToken(array('wp-json' => $apiUrl))) {
49
- if(isset($token->token) && $token->token <> '') {
50
- SQ_Classes_Helpers_Tools::saveOptions('sq_cloud_token', $token->token);
51
- SQ_Classes_Helpers_Tools::saveOptions('sq_cloud_connect', 1);
52
- }
53
- }
54
- }
55
-
56
- public function disconnectFromCloud()
57
- {
58
- SQ_Classes_Helpers_Tools::saveOptions('sq_cloud_connect', 0);
59
- }
60
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
core/BlockFeatures.php CHANGED
@@ -84,7 +84,7 @@ class SQ_Core_BlockFeatures extends SQ_Classes_BlockController
84
  'connection' => true,
85
  'logo' => 'fa-solid fa-dumbbell',
86
  'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard', '', array('#tasks')),
87
- 'details' => 'https://howto12.squirrly.co/kb/squirrly-seo-goals/',
88
  'show' => true,
89
  ),//Progress
90
  array(
@@ -300,6 +300,20 @@ class SQ_Core_BlockFeatures extends SQ_Classes_BlockController
300
  'details' => 'https://howto12.squirrly.co/kb/squirrly-live-assistant/#oxygen',
301
  'show' => (SQ_Classes_Helpers_Tools::isPluginInstalled('oxygen/functions.php') && SQ_Classes_Helpers_Tools::getMenuVisible('show_assistant')),
302
  ),//Live Assistant Oxygen
 
 
 
 
 
 
 
 
 
 
 
 
 
 
303
  array(
304
  'title' => "Blogging Assistant",
305
  'description' => "Add relevant <strong>Copyright-Free images, Tweets, Wikis, Blog Excerpts</strong> in your posts.",
84
  'connection' => true,
85
  'logo' => 'fa-solid fa-dumbbell',
86
  'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard', '', array('#tasks')),
87
+ 'details' => 'https://howto12.squirrly.co/kb/next-seo-goals/',
88
  'show' => true,
89
  ),//Progress
90
  array(
300
  'details' => 'https://howto12.squirrly.co/kb/squirrly-live-assistant/#oxygen',
301
  'show' => (SQ_Classes_Helpers_Tools::isPluginInstalled('oxygen/functions.php') && SQ_Classes_Helpers_Tools::getMenuVisible('show_assistant')),
302
  ),//Live Assistant Oxygen
303
+ array(
304
+ 'title' => "Divi Builder (BETA)",
305
+ 'description' => "The SEO Live Assistant <strong>works on the front-end of Divi</strong>, just as you're creating or editing your Divi page.",
306
+ 'category' => "Assistants",
307
+ 'mainfeature' => false,
308
+ 'option' => 'sq_sla_frontend',
309
+ 'active' => SQ_Classes_Helpers_Tools::getOption('sq_sla_frontend'),
310
+ 'optional' => true,
311
+ 'connection' => false,
312
+ 'logo' => 'fa-solid fa-message',
313
+ 'link' => SQ_Classes_Helpers_Tools::getAdminUrl('sq_assistant', 'settings'),
314
+ 'details' => 'https://howto12.squirrly.co/kb/squirrly-live-assistant/#divi',
315
+ 'show' => (SQ_Classes_Helpers_Tools::isPluginInstalled('divi-builder/divi-builder.php') || SQ_Classes_Helpers_Tools::isThemeActive('Divi')),
316
+ ),//Live Assistant Divi
317
  array(
318
  'title' => "Blogging Assistant",
319
  'description' => "Add relevant <strong>Copyright-Free images, Tweets, Wikis, Blog Excerpts</strong> in your posts.",
languages/squirrly-seo-cs_CZ.mo CHANGED
Binary file
languages/squirrly-seo-cs_CZ.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2022-05-16 14:49+0300\n"
6
- "PO-Revision-Date: 2022-05-16 14:50+0300\n"
7
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
8
  "Language-Team: \n"
9
  "Language: cs_CZ\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Textdomain-Support: yes\n"
19
- "X-Generator: Poedit 3.0.1\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  #: classes/RemoteController.php:296
@@ -94,70 +94,70 @@ msgid "The code for Facebook App must only contain numbers."
94
  msgstr ""
95
 
96
  # @ squirrly-seo
97
- #: classes/helpers/Tools.php:88
98
  #, fuzzy
99
  #| msgid "Squirrly settings"
100
  msgid "Getting started"
101
  msgstr "Squirrly Einstellungen"
102
 
103
  # @ squirrly-seo
104
- #: classes/helpers/Tools.php:114
105
  #, fuzzy
106
  #| msgid "automatically"
107
  msgid "Documentation"
108
  msgstr "automatisch"
109
 
110
- #: classes/helpers/Tools.php:115
111
  msgid "Leave a review"
112
  msgstr ""
113
 
114
- #: classes/helpers/Tools.php:554 classes/helpers/Tools.php:611
115
  msgid "Category"
116
  msgstr ""
117
 
118
- #: classes/helpers/Tools.php:573 classes/helpers/Tools.php:630
119
  msgid "Tag"
120
  msgstr ""
121
 
122
- #: classes/helpers/Tools.php:592
123
  msgid "Format"
124
  msgstr ""
125
 
126
- #: classes/helpers/Tools.php:649
127
  msgid "Shipping Option"
128
  msgstr ""
129
 
130
- #: classes/helpers/Tools.php:687
131
  msgid "Author at"
132
  msgstr ""
133
 
134
- #: classes/helpers/Tools.php:725
135
  msgid "Are you looking for"
136
  msgstr ""
137
 
138
- #: classes/helpers/Tools.php:726
139
  msgid "These are the results for"
140
  msgstr ""
141
 
142
  # @ squirrly-seo
143
- #: classes/helpers/Tools.php:726
144
  #, fuzzy
145
  #| msgid "Could not send the email..."
146
  msgid "that you can find on our website."
147
  msgstr "Konnte E-Mail nicht senden ..."
148
 
149
- #: classes/helpers/Tools.php:762
150
  msgid "Page not found"
151
  msgstr ""
152
 
153
  # @ squirrly-seo
154
- #: classes/helpers/Tools.php:763
155
  #, fuzzy
156
  #| msgid "Could not send the email..."
157
  msgid "This page could not be found on our website."
158
  msgstr "Konnte E-Mail nicht senden ..."
159
 
160
- #: classes/helpers/Tools.php:1167
161
  msgid "For better text comparison you need to install PHP mbstring extension."
162
  msgstr ""
163
 
@@ -323,18 +323,17 @@ msgid "No keyword found."
323
  msgstr "Tipp: Länge 2-4 Schlüsselwörter"
324
 
325
  #: controllers/Assistant.php:114 controllers/Assistant.php:141
326
- #: controllers/Audits.php:395 controllers/Automation.php:78
327
- #: controllers/Automation.php:118 controllers/Automation.php:151
328
- #: controllers/Onboarding.php:205 controllers/Post.php:404
329
  #: controllers/Ranking.php:156 controllers/SeoSettings.php:102
330
  #: controllers/SeoSettings.php:157 controllers/SeoSettings.php:426
331
  msgid "Saved"
332
  msgstr ""
333
 
334
- #: controllers/Assistant.php:120 controllers/Automation.php:84
335
- #: controllers/Automation.php:131 controllers/BulkSeo.php:75
336
- #: controllers/Patterns.php:124 controllers/Post.php:349
337
- #: controllers/Post.php:382 controllers/Post.php:417
338
  #: controllers/PostsList.php:272 controllers/Research.php:215
339
  #: controllers/Research.php:222 controllers/Research.php:260
340
  #: controllers/Research.php:282 controllers/Research.php:305
@@ -430,7 +429,7 @@ msgid "Not a valid email address."
430
  msgstr ""
431
 
432
  # @ squirrly-seo
433
- #: controllers/Automation.php:125 controllers/Automation.php:159
434
  #, fuzzy
435
  #| msgid "Could not send the email..."
436
  msgid "Could not add the post type."
@@ -454,9 +453,9 @@ msgstr ""
454
 
455
  # @ squirrly-seo
456
  #: controllers/CheckSeo.php:345 controllers/Patterns.php:27
457
- #: controllers/Post.php:635 controllers/Research.php:324
458
- #: controllers/Research.php:355 controllers/Research.php:409
459
- #: controllers/Research.php:539 controllers/Research.php:755
460
  #: view/Blocks/Snippet.php:1300
461
  #, fuzzy
462
  #| msgid "Do the research"
@@ -508,19 +507,19 @@ msgstr ""
508
  msgid "The focus page is deleted"
509
  msgstr ""
510
 
511
- #: controllers/Menu.php:96
512
  #, php-format
513
  msgid ""
514
  "An error occurred during activation. If this error persists, please contact "
515
  "us at: %s"
516
  msgstr ""
517
 
518
- #: controllers/Menu.php:133
519
  msgid "Dashboard"
520
  msgstr ""
521
 
522
  # @ squirrly-seo
523
- #: controllers/Menu.php:247 models/CheckSeo.php:194 models/CheckSeo.php:558
524
  #: models/CheckSeo.php:572 models/CheckSeo.php:586 models/CheckSeo.php:600
525
  #: models/CheckSeo.php:642
526
  #, fuzzy
@@ -528,17 +527,24 @@ msgstr ""
528
  msgid "SEO Snippet"
529
  msgstr "Squirrly LIVE SEO-Assistent"
530
 
531
- #: controllers/Menu.php:258 controllers/Snippet.php:180
532
  msgid "Custom SEO"
533
  msgstr ""
534
 
535
  # @ squirrly-seo
536
- #: controllers/Menu.php:284
537
  #, fuzzy
538
  #| msgid "Squirrly settings"
539
  msgid "Squirrly SEO"
540
  msgstr "Squirrly Einstellungen"
541
 
 
 
 
 
 
 
 
542
  #: controllers/Onboarding.php:91 view/Onboarding/Step1.php:22
543
  msgid "SEO Expert Mode"
544
  msgstr ""
@@ -589,203 +595,14 @@ msgstr ""
589
  msgid "Saved! This is how the preview looks like"
590
  msgstr ""
591
 
592
- #: controllers/Post.php:407 controllers/Post.php:431
593
  msgid "Can't get the post URL"
594
  msgstr ""
595
 
596
- #: controllers/Post.php:436
597
  msgid "Invalid request"
598
  msgstr ""
599
 
600
- # @ squirrly-seo
601
- #: controllers/Post.php:632
602
- #, fuzzy
603
- #| msgid "Tips: 2-4 keywords"
604
- msgid "Keyword:"
605
- msgstr "Tipp: Länge 2-4 Schlüsselwörter"
606
-
607
- #: controllers/Post.php:633
608
- msgid "date"
609
- msgstr ""
610
-
611
- #: controllers/Post.php:634
612
- msgid ""
613
- "To load the Live Assistant and optimize this page, click to connect to "
614
- "Squirrly Cloud."
615
- msgstr ""
616
-
617
- #: controllers/Post.php:636
618
- msgid "Read it!"
619
- msgstr ""
620
-
621
- #: controllers/Post.php:637
622
- msgid "Insert it!"
623
- msgstr ""
624
-
625
- #: controllers/Post.php:638
626
- msgid "Reference"
627
- msgstr ""
628
-
629
- #: controllers/Post.php:639
630
- msgid "Insert as box"
631
- msgstr ""
632
-
633
- #: controllers/Post.php:640
634
- msgid "Insert Link"
635
- msgstr ""
636
-
637
- #: controllers/Post.php:641
638
- msgid "Not relevant?"
639
- msgstr ""
640
-
641
- #: controllers/Post.php:642
642
- msgid "Insert in your article"
643
- msgstr ""
644
-
645
- #: controllers/Post.php:643
646
- msgid ":( An error occurred while processing your request. Please try again"
647
- msgstr ""
648
-
649
- #: controllers/Post.php:644
650
- msgid "No results found!"
651
- msgstr ""
652
-
653
- #: controllers/Post.php:645
654
- #, php-format
655
- msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
656
- msgstr ""
657
-
658
- #: controllers/Post.php:646
659
- msgid "Has creative commons attributes"
660
- msgstr ""
661
-
662
- #: controllers/Post.php:647
663
- msgid "No known copyright restrictions"
664
- msgstr ""
665
-
666
- #: controllers/Post.php:648
667
- msgid ""
668
- "You haven`t used Squirrly SEO to optimize your article. Do you want to "
669
- "optimize for a keyword before publishing?"
670
- msgstr ""
671
-
672
- #: controllers/Post.php:649
673
- msgid "Your Subscription has Expired"
674
- msgstr ""
675
-
676
- # @ squirrly-seo
677
- #: controllers/Post.php:650
678
- #, fuzzy
679
- #| msgid "Do the research"
680
- msgid "There are no keywords saved in briefcase yet"
681
- msgstr "Recherchieren"
682
-
683
- #: controllers/Post.php:651
684
- #, php-format
685
- msgid "Congratulations! Your article is 100% optimized!"
686
- msgstr ""
687
-
688
- #: controllers/Post.php:652
689
- #, php-format
690
- msgid "appears too many times. Try to remove %s of them"
691
- msgstr ""
692
-
693
- # @ squirrly-seo
694
- #: controllers/Post.php:653
695
- #, fuzzy, php-format
696
- #| msgid "Enter even more keywords."
697
- msgid "write %s more words"
698
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
699
-
700
- #: controllers/Post.php:654
701
- #, php-format
702
- msgid "Add the keyword in the %s of your article"
703
- msgstr ""
704
-
705
- #: controllers/Post.php:655
706
- msgid "Click to keep the highlight on"
707
- msgstr ""
708
-
709
- #: controllers/Post.php:656
710
- msgid "introduction"
711
- msgstr ""
712
-
713
- # @ squirrly-seo
714
- #: controllers/Post.php:657
715
- #, fuzzy, php-format
716
- #| msgid "Use more words in one keyword"
717
- msgid "Write more words after the %s keyword"
718
- msgstr "Verwenden Sie mehrere Wörter in einem Schlüsselwort"
719
-
720
- #: controllers/Post.php:658
721
- msgid "or use synonyms"
722
- msgstr ""
723
-
724
- # @ squirrly-seo
725
- #: controllers/Post.php:659
726
- #, fuzzy, php-format
727
- #| msgid "Enter even more keywords."
728
- msgid "add %s more word(s)"
729
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
730
-
731
- #: controllers/Post.php:660
732
- #, php-format
733
- msgid "or remove %s word(s)"
734
- msgstr ""
735
-
736
- #: controllers/Post.php:661
737
- #, php-format
738
- msgid "add the selected keyword %s more time(s) "
739
- msgstr ""
740
-
741
- #: controllers/Post.php:662
742
- #, php-format
743
- msgid "write %s more words to start calculating"
744
- msgstr ""
745
-
746
- # @ squirrly-seo
747
- #: controllers/Post.php:663
748
- #, fuzzy
749
- #| msgid "Do the research"
750
- msgid "Add to Briefcase"
751
- msgstr "Recherchieren"
752
-
753
- # @ squirrly-seo
754
- #: controllers/Post.php:664
755
- #, fuzzy
756
- #| msgid "Do the research"
757
- msgid "Add Keyword to Briefcase"
758
- msgstr "Recherchieren"
759
-
760
- #: controllers/Post.php:665
761
- msgid "Select"
762
- msgstr ""
763
-
764
- # @ squirrly-seo
765
- #: controllers/Post.php:666 view/Blocks/Snippet.php:133
766
- #: view/Blocks/Snippet.php:657 view/Blocks/Snippet.php:920
767
- #, fuzzy
768
- #| msgid "automatically"
769
- msgid "Auto Draft"
770
- msgstr "automatisch"
771
-
772
- #: controllers/Post.php:667
773
- msgid "Enter keyword above and press ENTER"
774
- msgstr ""
775
-
776
- # @ squirrly-seo
777
- #: controllers/Post.php:668
778
- #, fuzzy
779
- #| msgid "Do the research"
780
- msgid "Add Keywords from Briefcase"
781
- msgstr "Recherchieren"
782
-
783
- #: controllers/Post.php:669
784
- msgid ""
785
- "Live Assistant was used to optimize this page with the Page Builder. Please "
786
- "go back and resume your optimization work there."
787
- msgstr ""
788
-
789
  # @ squirrly-seo
790
  #: controllers/PostsList.php:112 models/PostsList.php:23
791
  #, fuzzy
@@ -1096,34 +913,34 @@ msgstr ""
1096
  msgid "We could not create your account. Please enter a valid email."
1097
  msgstr ""
1098
 
1099
- #: core/Blocklogin.php:85 core/Blocklogin.php:138
1100
  #, php-format
1101
  msgid ""
1102
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
1103
  "webmaster) and request them to add %s to their IP whitelist."
1104
  msgstr ""
1105
 
1106
- #: core/Blocklogin.php:88
1107
  msgid "Your email is not set. Please enter a valid email."
1108
  msgstr ""
1109
 
1110
- #: core/Blocklogin.php:111
1111
  msgid "Wrong email or password!"
1112
  msgstr ""
1113
 
1114
- #: core/Blocklogin.php:114
1115
  msgid "You can only use this account for the URL you registered first!"
1116
  msgstr ""
1117
 
1118
- #: core/Blocklogin.php:117
1119
  msgid "You disconnected your website from"
1120
  msgstr ""
1121
 
1122
- #: core/Blocklogin.php:121
1123
  msgid "An error occured."
1124
  msgstr ""
1125
 
1126
- #: core/Blocklogin.php:142
1127
  msgid "Both fields are required."
1128
  msgstr ""
1129
 
@@ -3944,8 +3761,8 @@ msgstr ""
3944
  #: models/CheckSeo.php:523
3945
  #, php-format
3946
  msgid ""
3947
- "Go to %s Squirrly > Automation > Configuration %s and make sure that SEO "
3948
- "Patterns are activated."
3949
  msgstr ""
3950
 
3951
  #: models/CheckSeo.php:524
@@ -5104,53 +4921,53 @@ msgstr "Konnte E-Mail nicht senden ..."
5104
  msgid "Focus Page could not be verified (error: %s)"
5105
  msgstr ""
5106
 
5107
- #: models/Compatibility.php:262
5108
  msgid "MPN"
5109
  msgstr ""
5110
 
5111
- #: models/Compatibility.php:263
5112
  msgid "Add Manufacturer Part Number (MPN)"
5113
  msgstr ""
5114
 
5115
- #: models/Compatibility.php:266
5116
  msgid "GTIN"
5117
  msgstr ""
5118
 
5119
- #: models/Compatibility.php:267
5120
  msgid "Add Global Trade Item Number (GTIN)"
5121
  msgstr ""
5122
 
5123
- #: models/Compatibility.php:270
5124
  msgid "EAN (GTIN-13)"
5125
  msgstr ""
5126
 
5127
- #: models/Compatibility.php:271
5128
  msgid ""
5129
  "Add Global Trade Item Number (GTIN) for the major GTIN used outside of North "
5130
  "America"
5131
  msgstr ""
5132
 
5133
- #: models/Compatibility.php:274
5134
  msgid "UPC (GTIN-12)"
5135
  msgstr ""
5136
 
5137
- #: models/Compatibility.php:275
5138
  msgid "Add Global Trade Item Number (GTIN) for North America"
5139
  msgstr ""
5140
 
5141
- #: models/Compatibility.php:278
5142
  msgid "ISBN"
5143
  msgstr ""
5144
 
5145
- #: models/Compatibility.php:279
5146
  msgid "Add Global Trade Item Number (GTIN) for books"
5147
  msgstr ""
5148
 
5149
- #: models/Compatibility.php:284
5150
  msgid "Brand Name"
5151
  msgstr ""
5152
 
5153
- #: models/Compatibility.php:285
5154
  msgid "Add Product Brand Name"
5155
  msgstr ""
5156
 
@@ -5278,6 +5095,202 @@ msgstr ""
5278
  msgid "The favicon has been updated."
5279
  msgstr ""
5280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5281
  #: models/Menu.php:120
5282
  msgid "First Step"
5283
  msgstr ""
@@ -5964,29 +5977,29 @@ msgstr "Squirrly LIVE SEO-Assistent"
5964
  msgid "Plugin Install Process"
5965
  msgstr ""
5966
 
5967
- #: models/Snippet.php:272
5968
  msgid "You don't have enough pemission to edit this article"
5969
  msgstr ""
5970
 
5971
  # @ squirrly-seo
5972
- #: models/Snippet.php:375
5973
  #, fuzzy
5974
  #| msgid "Could not send the email..."
5975
  msgid "Error! Could not save the data."
5976
  msgstr "Konnte E-Mail nicht senden ..."
5977
 
5978
- #: models/Snippet.php:380
5979
  msgid "Error! Invalid request."
5980
  msgstr ""
5981
 
5982
  # @ squirrly-seo
5983
- #: models/Snippet.php:428
5984
  #, fuzzy
5985
  #| msgid "Could not send the email..."
5986
  msgid "Couldn't find the page"
5987
  msgstr "Konnte E-Mail nicht senden ..."
5988
 
5989
- #: models/Snippet.php:445 models/Snippet.php:457
5990
  msgid "No Polylang translation for this post."
5991
  msgstr ""
5992
 
@@ -6005,7 +6018,7 @@ msgid "Current URL"
6005
  msgstr ""
6006
 
6007
  # @ squirrly-seo
6008
- #: models/abstract/Assistant.php:120 view/Blocks/LiveAssistant.php:32
6009
  #, fuzzy
6010
  #| msgid "Tips: 2-4 keywords"
6011
  msgid "Keywords"
@@ -7816,10 +7829,10 @@ msgstr ""
7816
  msgid "Add New"
7817
  msgstr "Squirrly Einstellungen"
7818
 
7819
- #: view/Assistant/Assistant.php:53 view/Assistant/Settings.php:147
7820
  #: view/Audits/Addpage.php:200 view/Audits/Audit.php:136
7821
  #: view/Audits/Audits.php:50 view/Automation/Automation.php:394
7822
- #: view/Automation/Settings.php:113 view/Automation/Types.php:117
7823
  #: view/BulkSeo/Bulkseo.php:267 view/FocusPages/Addpage.php:205
7824
  #: view/FocusPages/Pagelist.php:57 view/FocusPages/Pagelist.php:67
7825
  #: view/Ranking/Gscsync.php:118 view/Ranking/Rankings.php:465
@@ -7926,68 +7939,98 @@ msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
7926
  msgstr ""
7927
 
7928
  # @ squirrly-seo
7929
- #: view/Assistant/Settings.php:95
7930
  #, fuzzy
7931
  #| msgid "Google %sAnalytics ID%s`:"
7932
  msgid "Activate Live Assistant in Frontend"
7933
  msgstr "Google %sAnalytics ID%s`:"
7934
 
7935
- #: view/Assistant/Settings.php:98
7936
  msgid ""
7937
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
7938
  "with Builders."
7939
  msgstr ""
7940
 
7941
- #: view/Assistant/Settings.php:99
7942
- msgid "Currently supports the Elementor Builder plugin."
 
7943
  msgstr ""
7944
 
7945
- #: view/Assistant/Settings.php:107
7946
- msgid "Places where you do NOT want Squirrly Live Assistant to load"
 
 
 
 
 
 
7947
  msgstr ""
7948
 
 
7949
  #: view/Assistant/Settings.php:113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7950
  msgid ""
7951
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
7952
  "post types."
7953
  msgstr ""
7954
 
7955
- #: view/Assistant/Settings.php:119
7956
  msgid "Exclusions"
7957
  msgstr ""
7958
 
7959
- #: view/Assistant/Settings.php:121
7960
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
7961
  msgstr ""
7962
 
7963
  # @ squirrly-seo
7964
- #: view/Assistant/Settings.php:142 view/Audits/Settings.php:46
7965
  #: view/Automation/Automation.php:356 view/Automation/Settings.php:105
7966
- #: view/Automation/Types.php:99 view/Ranking/Settings.php:334
7967
- #: view/SeoSettings/Jsonld.php:121 view/SeoSettings/Jsonld.php:169
7968
- #: view/SeoSettings/Jsonld.php:226 view/SeoSettings/Jsonld.php:307
7969
- #: view/SeoSettings/Jsonld.php:346 view/SeoSettings/Jsonld.php:385
7970
- #: view/SeoSettings/Jsonld.php:445 view/SeoSettings/Jsonld.php:485
7971
- #: view/SeoSettings/Jsonld.php:516 view/SeoSettings/Metas.php:121
7972
- #: view/SeoSettings/Metas.php:161 view/SeoSettings/Metas.php:195
7973
- #: view/SeoSettings/Social.php:282 view/SeoSettings/Social.php:328
7974
- #: view/SeoSettings/Social.php:404 view/SeoSettings/Social.php:456
7975
- #: view/SeoSettings/Tweaks.php:355 view/SeoSettings/Tweaks.php:421
7976
- #: view/SeoSettings/Tweaks.php:477 view/SeoSettings/Tweaks.php:534
7977
- #: view/SeoSettings/Tweaks.php:617 view/SeoSettings/Webmaster.php:300
7978
- #: view/SeoSettings/Webmaster.php:326 view/SeoSettings/Webmaster.php:406
7979
  #, fuzzy
7980
  #| msgid "Squirrly settings"
7981
  msgid "Save Settings"
7982
  msgstr "Squirrly Einstellungen"
7983
 
7984
- #: view/Assistant/Settings.php:149
7985
  msgid ""
7986
  "The Settings section allows you to set up your assistant just the way you "
7987
  "like it."
7988
  msgstr ""
7989
 
7990
- #: view/Assistant/Settings.php:150
7991
  msgid ""
7992
  "Quickly enable or disable the settings available here based on your needs and "
7993
  "preferences."
@@ -8117,22 +8160,18 @@ msgid ""
8117
  "thumbs down element) and work on them to improve your score."
8118
  msgstr ""
8119
 
8120
- #: view/Audits/AuditPageRow.php:41
8121
- msgid "Last checked"
8122
- msgstr ""
8123
-
8124
  # @ squirrly-seo
8125
- #: view/Audits/AuditPageRow.php:47
8126
  #, fuzzy
8127
  #| msgid "Could not send the email..."
8128
  msgid "Could not create the audit for this URL"
8129
  msgstr "Konnte E-Mail nicht senden ..."
8130
 
8131
- #: view/Audits/AuditPageRow.php:47
8132
  msgid "error code"
8133
  msgstr ""
8134
 
8135
- #: view/Audits/AuditPageRow.php:49
8136
  #, php-format
8137
  msgid ""
8138
  "The way your WordPress site is currently hosted can affect the way Squirrly "
@@ -8143,27 +8182,27 @@ msgid ""
8143
  msgstr ""
8144
 
8145
  # @ squirrly-seo
8146
- #: view/Audits/AuditPageRow.php:51 view/Audits/AuditPageRow.php:78
8147
  #: view/FocusPages/FocusPageRow.php:132 view/FocusPages/FocusPageRow.php:217
8148
  #, fuzzy
8149
  #| msgid "Squirrly LIVE SEO assistant"
8150
  msgid "Inspect URL"
8151
  msgstr "Squirrly LIVE SEO-Assistent"
8152
 
8153
- #: view/Audits/AuditPageRow.php:72 view/Audits/AuditStats.php:68
8154
- #: view/Audits/AuditStats.php:95 view/FocusPages/FocusPageRow.php:112
8155
  #: view/FocusPages/FocusPageRow.php:211
8156
  msgid "Request New Audit"
8157
  msgstr ""
8158
 
8159
  # @ squirrly-seo
8160
- #: view/Audits/AuditPageRow.php:81
8161
  #, fuzzy
8162
  #| msgid "Could not send the email..."
8163
  msgid "Do you want to delete the Audit Page?"
8164
  msgstr "Konnte E-Mail nicht senden ..."
8165
 
8166
- #: view/Audits/AuditPageRow.php:87
8167
  msgid "Remove Page from Audit"
8168
  msgstr ""
8169
 
@@ -8202,21 +8241,21 @@ msgid ""
8202
  "and %srefresh the page%s."
8203
  msgstr ""
8204
 
8205
- #: view/Audits/AuditStats.php:30
8206
  msgid ""
8207
  "Your score is low. A medium score is over 50, and a good score is over 80."
8208
  msgstr ""
8209
 
8210
- #: view/Audits/AuditStats.php:32
8211
  msgid "Your score is medium. A good score is over 80."
8212
  msgstr ""
8213
 
8214
- #: view/Audits/AuditStats.php:34
8215
  msgid "Your score is good. Keep it as high as posible for good results."
8216
  msgstr ""
8217
 
8218
  # @ squirrly-seo
8219
- #: view/Audits/AuditStats.php:41 view/Audits/AuditStats.php:251
8220
  #: view/Audits/Compare.php:72
8221
  #, fuzzy
8222
  #| msgid "Squirrly settings"
@@ -8224,137 +8263,138 @@ msgid "Audit Score"
8224
  msgstr "Squirrly Einstellungen"
8225
 
8226
  # @ squirrly-seo
8227
- #: view/Audits/AuditStats.php:53
8228
  #, fuzzy
8229
  #| msgid "Squirrly settings"
8230
  msgid "Your audit score is"
8231
  msgstr "Squirrly Einstellungen"
8232
 
8233
  # @ squirrly-seo
8234
- #: view/Audits/AuditStats.php:56 view/Audits/AuditStats.php:84
8235
  #, fuzzy
8236
  #| msgid "Your E-mail:"
8237
  msgid "Audit Date"
8238
  msgstr "Ihre E-Mail Adresse:"
8239
 
8240
- #: view/Audits/AuditStats.php:65 view/Audits/AuditStats.php:92
8241
- #: view/FocusPages/FocusPageRow.php:109
8242
- #, php-format
8243
- msgid "Wait %s minutes"
8244
- msgstr ""
 
8245
 
8246
- #: view/Audits/AuditStats.php:77
8247
  msgid "Add a new page for Audit"
8248
  msgstr ""
8249
 
8250
  # @ squirrly-seo
8251
- #: view/Audits/AuditStats.php:110
8252
  #, fuzzy
8253
  #| msgid "Squirrly settings"
8254
  msgid "Audit in progress"
8255
  msgstr "Squirrly Einstellungen"
8256
 
8257
  # @ squirrly-seo
8258
- #: view/Audits/AuditStats.php:116
8259
  #, fuzzy
8260
  #| msgid "Squirrly settings"
8261
  msgid "Audit not ready yet"
8262
  msgstr "Squirrly Einstellungen"
8263
 
8264
- #: view/Audits/AuditStats.php:121
8265
  msgid "You can refresh the audit once every hour"
8266
  msgstr ""
8267
 
8268
- #: view/Audits/AuditStats.php:122
8269
  msgid "Request Website Audit"
8270
  msgstr ""
8271
 
8272
- #: view/Audits/AuditStats.php:141 view/Audits/AuditStats.php:253
8273
  #: view/Ranking/Rankings.php:407 view/Research/History.php:37
8274
  msgid "Date"
8275
  msgstr ""
8276
 
8277
  # @ squirrly-seo
8278
- #: view/Audits/AuditStats.php:141
8279
  #, fuzzy
8280
  #| msgid "Squirrly settings"
8281
  msgid "On-Page"
8282
  msgstr "Squirrly Einstellungen"
8283
 
8284
  # @ squirrly-seo
8285
- #: view/Audits/AuditStats.php:141
8286
  #, fuzzy
8287
  #| msgid "Squirrly settings"
8288
  msgid "Off-Page"
8289
  msgstr "Squirrly Einstellungen"
8290
 
8291
- #: view/Audits/AuditStats.php:164
8292
  #, php-format
8293
  msgid "You've completed %s tasks from %s"
8294
  msgstr ""
8295
 
8296
- #: view/Audits/AuditStats.php:185 view/Audits/Compare.php:53
8297
  msgid "Scores"
8298
  msgstr ""
8299
 
8300
- #: view/Audits/AuditStats.php:186
8301
  #, php-format
8302
  msgid "the latest %s days evolution for Audit"
8303
  msgstr ""
8304
 
8305
- #: view/Audits/AuditStats.php:208 view/FocusPages/FocusPageStats.php:135
8306
  #: view/Ranking/Rankings.php:149
8307
  msgid "Progress & Achievements"
8308
  msgstr ""
8309
 
8310
- #: view/Audits/AuditStats.php:209
8311
  #, php-format
8312
  msgid "the latest %s days progress for Audit Pages"
8313
  msgstr ""
8314
 
8315
- #: view/Audits/AuditStats.php:217 view/FocusPages/FocusPageStats.php:145
8316
  #: view/Ranking/Rankings.php:178
8317
  msgid "No progress found yet"
8318
  msgstr ""
8319
 
8320
- #: view/Audits/AuditStats.php:229 view/Ranking/Rankings.php:191
8321
  msgid "Share Your Success"
8322
  msgstr ""
8323
 
8324
  # @ squirrly-seo
8325
- #: view/Audits/AuditStats.php:236
8326
  #, fuzzy
8327
  #| msgid "Squirrly settings"
8328
  msgid "Audit History"
8329
  msgstr "Squirrly Einstellungen"
8330
 
8331
  # @ squirrly-seo
8332
- #: view/Audits/AuditStats.php:243
8333
  #, fuzzy
8334
  #| msgid "Squirrly settings"
8335
  msgid "Compare Audits"
8336
  msgstr "Squirrly Einstellungen"
8337
 
8338
  # @ squirrly-seo
8339
- #: view/Audits/AuditStats.php:252
8340
  #, fuzzy
8341
  #| msgid "Squirrly settings"
8342
  msgid "Page(s)"
8343
  msgstr "Squirrly Einstellungen"
8344
 
8345
  # @ squirrly-seo
8346
- #: view/Audits/AuditStats.php:269
8347
  #, fuzzy
8348
  #| msgid "Squirrly settings"
8349
  msgid "pages"
8350
  msgstr "Squirrly Einstellungen"
8351
 
8352
- #: view/Audits/AuditStats.php:273
8353
  msgid "Show Latest Audit"
8354
  msgstr ""
8355
 
8356
  # @ squirrly-seo
8357
- #: view/Audits/AuditStats.php:273
8358
  #, fuzzy
8359
  #| msgid "automatically"
8360
  msgid "Show Audit"
@@ -8758,87 +8798,91 @@ msgid "Add new post types in the list and customize the automation for it."
8758
  msgstr ""
8759
 
8760
  # @ squirrly-seo
8761
- #: view/Automation/Types.php:104
8762
  #, fuzzy
8763
  #| msgid "automatically"
8764
  msgid "All the post types are sent for Automation"
8765
  msgstr "automatisch"
8766
 
8767
  # @ squirrly-seo
8768
- #: view/Automation/Types.php:105
8769
  #, fuzzy
8770
  #| msgid "automatically"
8771
  msgid "Start Automation Setup"
8772
  msgstr "automatisch"
8773
 
8774
- #: view/Automation/Types.php:119
8775
  msgid ""
8776
  "Add ALL Your Post Types to our Automation section, to ensure all your site is "
8777
  "covered with excellent SEO."
8778
  msgstr ""
8779
 
8780
- #: view/Blocks/Account.php:27
8781
  #, php-format
8782
  msgid "Due Date: %s"
8783
  msgstr ""
8784
 
 
 
 
 
8785
  # @ squirrly-seo
8786
- #: view/Blocks/Account.php:42
8787
  #, fuzzy
8788
  #| msgid "Tips: 2-4 keywords"
8789
  msgid "Keywords Lookups"
8790
  msgstr "Tipp: Länge 2-4 Schlüsselwörter"
8791
 
8792
- #: view/Blocks/Account.php:57
8793
  msgid "SERP Lookups"
8794
  msgstr ""
8795
 
8796
  # @ squirrly-seo
8797
- #: view/Blocks/Account.php:69
8798
  #, fuzzy
8799
  #| msgid "Squirrly settings"
8800
  msgid "Focus Pages Lookup"
8801
  msgstr "Squirrly Einstellungen"
8802
 
8803
  # @ squirrly-seo
8804
- #: view/Blocks/Account.php:81
8805
  #, fuzzy
8806
  #| msgid "Squirrly settings"
8807
  msgid "Audit Pages Lookup"
8808
  msgstr "Squirrly Einstellungen"
8809
 
8810
- #: view/Blocks/Account.php:90
8811
  msgid "Reset day"
8812
  msgstr ""
8813
 
8814
- #: view/Blocks/Account.php:97
8815
  msgid "Want to hide this section from your customes?"
8816
  msgstr ""
8817
 
8818
- #: view/Blocks/Account.php:103
8819
  msgid "Upgrade your account"
8820
  msgstr ""
8821
 
8822
- #: view/Blocks/Account.php:107
8823
  msgid "Billing info"
8824
  msgstr ""
8825
 
8826
  # @ squirrly-seo
8827
- #: view/Blocks/Account.php:111
8828
  #, fuzzy
8829
  #| msgid "Squirrly settings"
8830
  msgid "Account settings"
8831
  msgstr "Squirrly Einstellungen"
8832
 
8833
  # @ squirrly-seo
8834
- #: view/Blocks/Account.php:115
8835
  #, fuzzy
8836
  #| msgid "Squirrly settings"
8837
  msgid "Squirrly Cloud"
8838
  msgstr "Squirrly Einstellungen"
8839
 
8840
  # @ squirrly-seo
8841
- #: view/Blocks/Account.php:119 view/Blocks/Support.php:19
8842
  #, fuzzy
8843
  #| msgid "support page"
8844
  msgid "Support"
@@ -8877,30 +8921,6 @@ msgstr "Squirrly Einstellungen"
8877
  msgid "Rankings Mastery Tasks"
8878
  msgstr ""
8879
 
8880
- #: view/Blocks/Connect.php:15 view/Blocks/Connect.php:29
8881
- #, php-format
8882
- msgid ""
8883
- "This option is used to track innerlinks and insights for your Focus Pages and "
8884
- "give detailed information about them. %sIt is also useful for sending the "
8885
- "optimized posts from %shttps://cloud.squirrly.co%s directly on your WordPress "
8886
- "site."
8887
- msgstr ""
8888
-
8889
- # @ squirrly-seo
8890
- #: view/Blocks/Connect.php:16 view/Blocks/Connect.php:31
8891
- #, fuzzy
8892
- #| msgid "Google %sAnalytics ID%s`:"
8893
- msgid "Connect Squirrly Cloud & Website API"
8894
- msgstr "Google %sAnalytics ID%s`:"
8895
-
8896
- #: view/Blocks/Connect.php:19
8897
- msgid "Connect"
8898
- msgstr ""
8899
-
8900
- #: view/Blocks/Connect.php:35
8901
- msgid "disconnect"
8902
- msgstr ""
8903
-
8904
  #: view/Blocks/Dashboard.php:16
8905
  msgid "Congratulations! you have success messages"
8906
  msgstr ""
@@ -8945,12 +8965,12 @@ msgstr "Squirrly LIVE SEO-Assistent"
8945
  msgid "Manage the features & access them directly from here."
8946
  msgstr ""
8947
 
8948
- #: view/Blocks/Features.php:44 view/Blocks/Features.php:211
8949
  msgid "Do you want to search in the 650 features list?"
8950
  msgstr ""
8951
 
8952
  # @ squirrly-seo
8953
- #: view/Blocks/Features.php:46 view/Blocks/Features.php:213
8954
  #, fuzzy
8955
  #| msgid "Could not send the email..."
8956
  msgid "Do you want to see all 650 features list?"
@@ -8967,35 +8987,35 @@ msgstr ""
8967
  msgid "Search Feature"
8968
  msgstr "Tipp: Länge 2-4 Schlüsselwörter"
8969
 
8970
- #: view/Blocks/Features.php:158
8971
  msgid "start feature setup"
8972
  msgstr ""
8973
 
8974
- #: view/Blocks/Features.php:162
8975
  msgid "see feature"
8976
  msgstr ""
8977
 
8978
- #: view/Blocks/Features.php:178
8979
  msgid "click to deactivate"
8980
  msgstr ""
8981
 
8982
- #: view/Blocks/Features.php:178
8983
  msgid "click to activate"
8984
  msgstr ""
8985
 
8986
  # @ squirrly-seo
8987
- #: view/Blocks/Features.php:184
8988
  #, fuzzy
8989
  #| msgid "Google %sAnalytics ID%s`:"
8990
  msgid "connect to cloud"
8991
  msgstr "Google %sAnalytics ID%s`:"
8992
 
8993
- #: view/Blocks/Features.php:188
8994
  msgid "already active"
8995
  msgstr ""
8996
 
8997
  # @ squirrly-seo
8998
- #: view/Blocks/Features.php:192
8999
  #, fuzzy
9000
  #| msgid "Google %sAnalytics ID%s`:"
9001
  msgid "activate feature"
@@ -9069,7 +9089,7 @@ msgid "Click to Maximize Box"
9069
  msgstr ""
9070
 
9071
  # @ squirrly-seo
9072
- #: view/Blocks/LiveAssistant.php:10 view/Blocks/LiveAssistant.php:42
9073
  #, fuzzy
9074
  #| msgid "Squirrly settings"
9075
  msgid "Squirrly Briefcase"
@@ -9110,155 +9130,141 @@ msgstr "Recherchieren"
9110
  msgid "SLA Score"
9111
  msgstr "Squirrly Einstellungen"
9112
 
9113
- # @ squirrly-seo
9114
- #: view/Blocks/LiveAssistant.php:28
9115
- #, fuzzy
9116
- #| msgid "Enter even more keywords."
9117
- msgid "Use this keyword"
9118
- msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
9119
 
9120
- #: view/Blocks/LiveAssistant.php:32
9121
  msgid "Step 1"
9122
  msgstr ""
9123
 
9124
- #: view/Blocks/LiveAssistant.php:33
9125
  msgid "Step 2"
9126
  msgstr ""
9127
 
9128
- #: view/Blocks/LiveAssistant.php:33
9129
  msgid "Enhance"
9130
  msgstr ""
9131
 
9132
- #: view/Blocks/LiveAssistant.php:34
9133
  msgid "Step 3"
9134
  msgstr ""
9135
 
9136
- #: view/Blocks/LiveAssistant.php:34
9137
  msgid "Analysis"
9138
  msgstr ""
9139
 
9140
- #: view/Blocks/LiveAssistant.php:35
9141
  msgid "Extra"
9142
  msgstr ""
9143
 
9144
- #: view/Blocks/LiveAssistant.php:35
9145
  msgid "Deep"
9146
  msgstr ""
9147
 
9148
- #: view/Blocks/LiveAssistant.php:43
9149
- msgid "We recomend that you select at least 3 Keywords for best results."
9150
  msgstr ""
9151
 
9152
  # @ squirrly-seo
9153
- #: view/Blocks/LiveAssistant.php:48
9154
  #, fuzzy
9155
  #| msgid "Do the research"
9156
  msgid "Search in Briefcase ..."
9157
  msgstr "Recherchieren"
9158
 
9159
  # @ squirrly-seo
9160
- #: view/Blocks/LiveAssistant.php:52 view/Blocks/LiveAssistant.php:80
9161
- #: view/Blocks/LiveAssistant.php:124 view/Onboarding/Step1.php:85
9162
  #, fuzzy
9163
  #| msgid "SEO Software"
9164
  msgid "Continue"
9165
  msgstr "SEO Software"
9166
 
9167
  # @ squirrly-seo
9168
- #: view/Blocks/LiveAssistant.php:59
9169
  #, fuzzy
9170
  #| msgid "Squirrly settings"
9171
  msgid "Squirrly Blogging Assistant"
9172
  msgstr "Squirrly Einstellungen"
9173
 
9174
- #: view/Blocks/LiveAssistant.php:60
9175
  msgid "The keyword will be automatically be added as the image alt text."
9176
  msgstr ""
9177
 
9178
- #: view/Blocks/LiveAssistant.php:61
9179
  msgid ""
9180
  "Click on “Insert it!” and the incorporated Tweet(s) will add more substance "
9181
  "to your article."
9182
  msgstr ""
9183
 
9184
- #: view/Blocks/LiveAssistant.php:62
9185
  msgid ""
9186
  "Browse through Wikipedia articles to get more insight or quick fact-checking "
9187
  "on your topic."
9188
  msgstr ""
9189
 
9190
- #: view/Blocks/LiveAssistant.php:63
9191
  msgid "Find topic-related articles written by fellow bloggers or influencers."
9192
  msgstr ""
9193
 
9194
- #: view/Blocks/LiveAssistant.php:64
9195
  msgid ""
9196
  "Squirrly automatically browses your WordPress for previously written articles "
9197
  "you want to cite or insert"
9198
  msgstr ""
9199
 
9200
  # @ squirrly-seo
9201
- #: view/Blocks/LiveAssistant.php:71
9202
  #, fuzzy
9203
  #| msgid "Squirrly settings"
9204
  msgid "Images"
9205
  msgstr "Squirrly Einstellungen"
9206
 
9207
- #: view/Blocks/LiveAssistant.php:72
9208
  msgid "Twitter"
9209
  msgstr ""
9210
 
9211
- #: view/Blocks/LiveAssistant.php:73
9212
  msgid "Wiki"
9213
  msgstr ""
9214
 
9215
- #: view/Blocks/LiveAssistant.php:74
9216
  msgid "Blogs"
9217
  msgstr ""
9218
 
9219
- #: view/Blocks/LiveAssistant.php:75
9220
  msgid "My articles"
9221
  msgstr ""
9222
 
9223
- #: view/Blocks/LiveAssistant.php:84
9224
  msgid "Show only Copyright Free images"
9225
  msgstr ""
9226
 
9227
- # @ squirrly-seo
9228
  #: view/Blocks/LiveAssistant.php:94
9229
- #, fuzzy
9230
- #| msgid "Squirrly settings"
9231
- msgid "Squirrly Live Assistant"
9232
- msgstr "Squirrly Einstellungen"
9233
-
9234
- #: view/Blocks/LiveAssistant.php:95
9235
  msgid ""
9236
  "Squirrly automatically checks your article to make sure it has the best SEO "
9237
  "chances"
9238
  msgstr ""
9239
 
9240
- #: view/Blocks/LiveAssistant.php:104
9241
- msgid "Update"
9242
- msgstr ""
9243
-
9244
  # @ squirrly-seo
9245
- #: view/Blocks/LiveAssistant.php:132
9246
  #, fuzzy
9247
  #| msgid "Squirrly settings"
9248
  msgid "Squirrly Focus Pages"
9249
  msgstr "Squirrly Einstellungen"
9250
 
9251
- #: view/Blocks/LiveAssistant.php:133
9252
  msgid ""
9253
  "Focus Pages bring you clear methods to take your content from never found to "
9254
  "always found on Google."
9255
  msgstr ""
9256
 
9257
- #: view/Blocks/LiveAssistant.php:139
9258
  msgid "Need a deeper analysis of this content?"
9259
  msgstr ""
9260
 
9261
- #: view/Blocks/LiveAssistant.php:140
9262
  msgid ""
9263
  "Add this page/article as a focus page and take your content from never found "
9264
  "to always found on Google. Rank your pages by influencing the right ranking "
@@ -9266,7 +9272,7 @@ msgid ""
9266
  msgstr ""
9267
 
9268
  # @ squirrly-seo
9269
- #: view/Blocks/LiveAssistant.php:143
9270
  #, fuzzy
9271
  #| msgid "Squirrly settings"
9272
  msgid "Set Focus Pages"
@@ -9315,7 +9321,12 @@ msgstr ""
9315
  msgid "Sign Up"
9316
  msgstr ""
9317
 
9318
- #: view/Blocks/Menu.php:47 view/Blocks/Menu.php:84 view/Blocks/Menu.php:128
 
 
 
 
 
9319
  msgid "Back To Home"
9320
  msgstr ""
9321
 
@@ -9364,7 +9375,7 @@ msgid "Please save the post first to be able to edit the Squirrly SEO Snippet"
9364
  msgstr ""
9365
 
9366
  #: view/Blocks/Snippet.php:151 view/Blocks/Snippet.php:685
9367
- #: view/Blocks/Snippet.php:947 view/Onboarding/Step1.php:84
9368
  msgid "Cancel"
9369
  msgstr ""
9370
 
@@ -9760,91 +9771,6 @@ msgid ""
9760
  "provider`s support team"
9761
  msgstr ""
9762
 
9763
- #: view/Blocks/Support.php:8
9764
- msgid "Go to Profile"
9765
- msgstr ""
9766
-
9767
- #: view/Blocks/Support.php:8 view/Blocks/Support.php:9
9768
- msgid "Profile"
9769
- msgstr ""
9770
-
9771
- # @ squirrly-seo
9772
- #: view/Blocks/Support.php:22
9773
- #, fuzzy
9774
- #| msgid "Write a new post with Squirrly"
9775
- msgid "Need Help with Squirrly SEO?"
9776
- msgstr "Schreiben Sie einen neuen Beitrag mit Squirrly"
9777
-
9778
- #: view/Blocks/Support.php:24 view/Blocks/Support.php:91
9779
- #, php-format
9780
- msgid "10 AM to 4 PM (GMT): Mon-Fri %sby contact form%s."
9781
- msgstr ""
9782
-
9783
- #: view/Blocks/Support.php:25 view/Blocks/Support.php:92
9784
- #, php-format
9785
- msgid "How To Squirrly %swebsite%s."
9786
- msgstr ""
9787
-
9788
- #: view/Blocks/Support.php:26 view/Blocks/Support.php:93
9789
- #, php-format
9790
- msgid "Facebook %sSupport Community%s."
9791
- msgstr ""
9792
-
9793
- #: view/Blocks/Support.php:27 view/Blocks/Support.php:94
9794
- #, php-format
9795
- msgid "Facebook %sMessenger%s."
9796
- msgstr ""
9797
-
9798
- #: view/Blocks/Support.php:28
9799
- #, php-format
9800
- msgid "Twitter %sSupport%s."
9801
- msgstr ""
9802
-
9803
- #: view/Blocks/Support.php:36
9804
- msgid "How was your Squirrly experience today?"
9805
- msgstr ""
9806
-
9807
- #: view/Blocks/Support.php:43
9808
- msgid "Annoying"
9809
- msgstr ""
9810
-
9811
- #: view/Blocks/Support.php:47
9812
- msgid "Bad"
9813
- msgstr ""
9814
-
9815
- #: view/Blocks/Support.php:51
9816
- msgid "Nice"
9817
- msgstr ""
9818
-
9819
- #: view/Blocks/Support.php:55
9820
- msgid "Great"
9821
- msgstr ""
9822
-
9823
- #: view/Blocks/Support.php:59
9824
- msgid "Love it"
9825
- msgstr ""
9826
-
9827
- #: view/Blocks/Support.php:71
9828
- msgid "How was Squirrly today?"
9829
- msgstr ""
9830
-
9831
- #: view/Blocks/Support.php:86
9832
- msgid "Send feedback"
9833
- msgstr ""
9834
-
9835
- #: view/Blocks/Support.php:90
9836
- msgid "For more support:"
9837
- msgstr ""
9838
-
9839
- #: view/Blocks/Support.php:95
9840
- #, php-format
9841
- msgid "New Lessons Mon. and Tue. on %sTwitter%s."
9842
- msgstr ""
9843
-
9844
- #: view/Blocks/Support.php:100
9845
- msgid "Thank you! You can send us a happy face tomorrow too."
9846
- msgstr ""
9847
-
9848
  #: view/Blocks/Toolbar.php:13
9849
  msgid "SEO Beginner"
9850
  msgstr ""
@@ -10156,6 +10082,11 @@ msgstr "Ihre E-Mail Adresse:"
10156
  msgid "Details"
10157
  msgstr "Ihre E-Mail Adresse:"
10158
 
 
 
 
 
 
10159
  #: view/FocusPages/FocusPageRow.php:130
10160
  msgid "Upgrade Plan"
10161
  msgstr ""
@@ -10480,12 +10411,12 @@ msgstr ""
10480
  msgid "Learn how you can import the same settings on this site as well"
10481
  msgstr ""
10482
 
10483
- #: view/Onboarding/Step1.php:75
10484
  msgid "What will be activated"
10485
  msgstr ""
10486
 
10487
  # @ squirrly-seo
10488
- #: view/Onboarding/Step1.php:81
10489
  #, fuzzy
10490
  #| msgid "Squirrly LIVE SEO assistant"
10491
  msgid "Squirrly Sitemap XML"
@@ -13060,6 +12991,24 @@ msgstr "Squirrly Einstellungen"
13060
  msgid "https://plugin.squirrly.co"
13061
  msgstr ""
13062
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13063
  # @ squirrly-seo
13064
  #, fuzzy
13065
  #~| msgid "Do the research"
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-06-20 10:08+0300\n"
6
+ "PO-Revision-Date: 2022-06-20 10:10+0300\n"
7
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
8
  "Language-Team: \n"
9
  "Language: cs_CZ\n"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 3.1\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  #: classes/RemoteController.php:296
94
  msgstr ""
95
 
96
  # @ squirrly-seo
97
+ #: classes/helpers/Tools.php:77
98
  #, fuzzy
99
  #| msgid "Squirrly settings"
100
  msgid "Getting started"
101
  msgstr "Squirrly Einstellungen"
102
 
103
  # @ squirrly-seo
104
+ #: classes/helpers/Tools.php:103
105
  #, fuzzy
106
  #| msgid "automatically"
107
  msgid "Documentation"
108
  msgstr "automatisch"
109
 
110
+ #: classes/helpers/Tools.php:104
111
  msgid "Leave a review"
112
  msgstr ""
113
 
114
+ #: classes/helpers/Tools.php:543 classes/helpers/Tools.php:600
115
  msgid "Category"
116
  msgstr ""
117
 
118
+ #: classes/helpers/Tools.php:562 classes/helpers/Tools.php:619
119
  msgid "Tag"
120
  msgstr ""
121
 
122
+ #: classes/helpers/Tools.php:581
123
  msgid "Format"
124
  msgstr ""
125
 
126
+ #: classes/helpers/Tools.php:638
127
  msgid "Shipping Option"
128
  msgstr ""
129
 
130
+ #: classes/helpers/Tools.php:676
131
  msgid "Author at"
132
  msgstr ""
133
 
134
+ #: classes/helpers/Tools.php:714
135
  msgid "Are you looking for"
136
  msgstr ""
137
 
138
+ #: classes/helpers/Tools.php:715
139
  msgid "These are the results for"
140
  msgstr ""
141
 
142
  # @ squirrly-seo
143
+ #: classes/helpers/Tools.php:715
144
  #, fuzzy
145
  #| msgid "Could not send the email..."
146
  msgid "that you can find on our website."
147
  msgstr "Konnte E-Mail nicht senden ..."
148
 
149
+ #: classes/helpers/Tools.php:751
150
  msgid "Page not found"
151
  msgstr ""
152
 
153
  # @ squirrly-seo
154
+ #: classes/helpers/Tools.php:752
155
  #, fuzzy
156
  #| msgid "Could not send the email..."
157
  msgid "This page could not be found on our website."
158
  msgstr "Konnte E-Mail nicht senden ..."
159
 
160
+ #: classes/helpers/Tools.php:1157
161
  msgid "For better text comparison you need to install PHP mbstring extension."
162
  msgstr ""
163
 
323
  msgstr "Tipp: Länge 2-4 Schlüsselwörter"
324
 
325
  #: controllers/Assistant.php:114 controllers/Assistant.php:141
326
+ #: controllers/Audits.php:395 controllers/Automation.php:79
327
+ #: controllers/Automation.php:119 controllers/Automation.php:155
328
+ #: controllers/Onboarding.php:205 controllers/Post.php:380
329
  #: controllers/Ranking.php:156 controllers/SeoSettings.php:102
330
  #: controllers/SeoSettings.php:157 controllers/SeoSettings.php:426
331
  msgid "Saved"
332
  msgstr ""
333
 
334
+ #: controllers/Assistant.php:120 controllers/Automation.php:135
335
+ #: controllers/BulkSeo.php:75 controllers/Patterns.php:124
336
+ #: controllers/Post.php:325 controllers/Post.php:358 controllers/Post.php:393
 
337
  #: controllers/PostsList.php:272 controllers/Research.php:215
338
  #: controllers/Research.php:222 controllers/Research.php:260
339
  #: controllers/Research.php:282 controllers/Research.php:305
429
  msgstr ""
430
 
431
  # @ squirrly-seo
432
+ #: controllers/Automation.php:126 controllers/Automation.php:163
433
  #, fuzzy
434
  #| msgid "Could not send the email..."
435
  msgid "Could not add the post type."
453
 
454
  # @ squirrly-seo
455
  #: controllers/CheckSeo.php:345 controllers/Patterns.php:27
456
+ #: controllers/Research.php:324 controllers/Research.php:355
457
+ #: controllers/Research.php:409 controllers/Research.php:539
458
+ #: controllers/Research.php:755 models/LiveAssistant.php:45
459
  #: view/Blocks/Snippet.php:1300
460
  #, fuzzy
461
  #| msgid "Do the research"
507
  msgid "The focus page is deleted"
508
  msgstr ""
509
 
510
+ #: controllers/Menu.php:93
511
  #, php-format
512
  msgid ""
513
  "An error occurred during activation. If this error persists, please contact "
514
  "us at: %s"
515
  msgstr ""
516
 
517
+ #: controllers/Menu.php:130
518
  msgid "Dashboard"
519
  msgstr ""
520
 
521
  # @ squirrly-seo
522
+ #: controllers/Menu.php:244 models/CheckSeo.php:194 models/CheckSeo.php:558
523
  #: models/CheckSeo.php:572 models/CheckSeo.php:586 models/CheckSeo.php:600
524
  #: models/CheckSeo.php:642
525
  #, fuzzy
527
  msgid "SEO Snippet"
528
  msgstr "Squirrly LIVE SEO-Assistent"
529
 
530
+ #: controllers/Menu.php:255 controllers/Snippet.php:180
531
  msgid "Custom SEO"
532
  msgstr ""
533
 
534
  # @ squirrly-seo
535
+ #: controllers/Menu.php:281
536
  #, fuzzy
537
  #| msgid "Squirrly settings"
538
  msgid "Squirrly SEO"
539
  msgstr "Squirrly Einstellungen"
540
 
541
+ # @ squirrly-seo
542
+ #: controllers/Menu.php:424 view/Blocks/LiveAssistant.php:93
543
+ #, fuzzy
544
+ #| msgid "Squirrly settings"
545
+ msgid "Squirrly Live Assistant"
546
+ msgstr "Squirrly Einstellungen"
547
+
548
  #: controllers/Onboarding.php:91 view/Onboarding/Step1.php:22
549
  msgid "SEO Expert Mode"
550
  msgstr ""
595
  msgid "Saved! This is how the preview looks like"
596
  msgstr ""
597
 
598
+ #: controllers/Post.php:383 controllers/Post.php:407
599
  msgid "Can't get the post URL"
600
  msgstr ""
601
 
602
+ #: controllers/Post.php:412
603
  msgid "Invalid request"
604
  msgstr ""
605
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
606
  # @ squirrly-seo
607
  #: controllers/PostsList.php:112 models/PostsList.php:23
608
  #, fuzzy
913
  msgid "We could not create your account. Please enter a valid email."
914
  msgstr ""
915
 
916
+ #: core/Blocklogin.php:82 core/Blocklogin.php:132
917
  #, php-format
918
  msgid ""
919
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
920
  "webmaster) and request them to add %s to their IP whitelist."
921
  msgstr ""
922
 
923
+ #: core/Blocklogin.php:85
924
  msgid "Your email is not set. Please enter a valid email."
925
  msgstr ""
926
 
927
+ #: core/Blocklogin.php:108
928
  msgid "Wrong email or password!"
929
  msgstr ""
930
 
931
+ #: core/Blocklogin.php:111
932
  msgid "You can only use this account for the URL you registered first!"
933
  msgstr ""
934
 
935
+ #: core/Blocklogin.php:114
936
  msgid "You disconnected your website from"
937
  msgstr ""
938
 
939
+ #: core/Blocklogin.php:118
940
  msgid "An error occured."
941
  msgstr ""
942
 
943
+ #: core/Blocklogin.php:136
944
  msgid "Both fields are required."
945
  msgstr ""
946
 
3761
  #: models/CheckSeo.php:523
3762
  #, php-format
3763
  msgid ""
3764
+ "Go to %s Squirrly > All Features %s and make sure that SEO Automation is "
3765
+ "activated."
3766
  msgstr ""
3767
 
3768
  #: models/CheckSeo.php:524
4921
  msgid "Focus Page could not be verified (error: %s)"
4922
  msgstr ""
4923
 
4924
+ #: models/Compatibility.php:437
4925
  msgid "MPN"
4926
  msgstr ""
4927
 
4928
+ #: models/Compatibility.php:438
4929
  msgid "Add Manufacturer Part Number (MPN)"
4930
  msgstr ""
4931
 
4932
+ #: models/Compatibility.php:441
4933
  msgid "GTIN"
4934
  msgstr ""
4935
 
4936
+ #: models/Compatibility.php:442
4937
  msgid "Add Global Trade Item Number (GTIN)"
4938
  msgstr ""
4939
 
4940
+ #: models/Compatibility.php:445
4941
  msgid "EAN (GTIN-13)"
4942
  msgstr ""
4943
 
4944
+ #: models/Compatibility.php:446
4945
  msgid ""
4946
  "Add Global Trade Item Number (GTIN) for the major GTIN used outside of North "
4947
  "America"
4948
  msgstr ""
4949
 
4950
+ #: models/Compatibility.php:449
4951
  msgid "UPC (GTIN-12)"
4952
  msgstr ""
4953
 
4954
+ #: models/Compatibility.php:450
4955
  msgid "Add Global Trade Item Number (GTIN) for North America"
4956
  msgstr ""
4957
 
4958
+ #: models/Compatibility.php:453
4959
  msgid "ISBN"
4960
  msgstr ""
4961
 
4962
+ #: models/Compatibility.php:454
4963
  msgid "Add Global Trade Item Number (GTIN) for books"
4964
  msgstr ""
4965
 
4966
+ #: models/Compatibility.php:459
4967
  msgid "Brand Name"
4968
  msgstr ""
4969
 
4970
+ #: models/Compatibility.php:460
4971
  msgid "Add Product Brand Name"
4972
  msgstr ""
4973
 
5095
  msgid "The favicon has been updated."
5096
  msgstr ""
5097
 
5098
+ # @ squirrly-seo
5099
+ #: models/LiveAssistant.php:42
5100
+ #, fuzzy
5101
+ #| msgid "Tips: 2-4 keywords"
5102
+ msgid "Keyword:"
5103
+ msgstr "Tipp: Länge 2-4 Schlüsselwörter"
5104
+
5105
+ #: models/LiveAssistant.php:43
5106
+ msgid "date"
5107
+ msgstr ""
5108
+
5109
+ #: models/LiveAssistant.php:44
5110
+ msgid ""
5111
+ "To load the Live Assistant and optimize this page, click to connect to "
5112
+ "Squirrly Cloud."
5113
+ msgstr ""
5114
+
5115
+ #: models/LiveAssistant.php:46
5116
+ msgid "Read it!"
5117
+ msgstr ""
5118
+
5119
+ #: models/LiveAssistant.php:47
5120
+ msgid "Insert it!"
5121
+ msgstr ""
5122
+
5123
+ #: models/LiveAssistant.php:48
5124
+ msgid "Reference"
5125
+ msgstr ""
5126
+
5127
+ #: models/LiveAssistant.php:49
5128
+ msgid "Insert as box"
5129
+ msgstr ""
5130
+
5131
+ #: models/LiveAssistant.php:50
5132
+ msgid "Insert Link"
5133
+ msgstr ""
5134
+
5135
+ #: models/LiveAssistant.php:51
5136
+ msgid "Not relevant?"
5137
+ msgstr ""
5138
+
5139
+ #: models/LiveAssistant.php:52
5140
+ msgid "Insert in your article"
5141
+ msgstr ""
5142
+
5143
+ #: models/LiveAssistant.php:53
5144
+ msgid ":( An error occurred while processing your request. Please try again"
5145
+ msgstr ""
5146
+
5147
+ # @ squirrly-seo
5148
+ #: models/LiveAssistant.php:54
5149
+ #, fuzzy
5150
+ #| msgid "Do the research"
5151
+ msgid "Searching ... "
5152
+ msgstr "Recherchieren"
5153
+
5154
+ #: models/LiveAssistant.php:55
5155
+ msgid "No results found!"
5156
+ msgstr ""
5157
+
5158
+ #: models/LiveAssistant.php:56
5159
+ #, php-format
5160
+ msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
5161
+ msgstr ""
5162
+
5163
+ #: models/LiveAssistant.php:57
5164
+ msgid "Has creative commons attributes"
5165
+ msgstr ""
5166
+
5167
+ #: models/LiveAssistant.php:58
5168
+ msgid "No known copyright restrictions"
5169
+ msgstr ""
5170
+
5171
+ #: models/LiveAssistant.php:59
5172
+ msgid ""
5173
+ "You haven`t used Squirrly SEO to optimize your article. Do you want to "
5174
+ "optimize for a keyword before publishing?"
5175
+ msgstr ""
5176
+
5177
+ #: models/LiveAssistant.php:60
5178
+ msgid "Your Subscription has Expired"
5179
+ msgstr ""
5180
+
5181
+ # @ squirrly-seo
5182
+ #: models/LiveAssistant.php:61
5183
+ #, fuzzy
5184
+ #| msgid "Do the research"
5185
+ msgid "There are no keywords saved in briefcase yet"
5186
+ msgstr "Recherchieren"
5187
+
5188
+ #: models/LiveAssistant.php:62
5189
+ #, php-format
5190
+ msgid "Congratulations! Your article is 100% optimized!"
5191
+ msgstr ""
5192
+
5193
+ #: models/LiveAssistant.php:63
5194
+ #, php-format
5195
+ msgid "appears too many times. Try to remove %s of them"
5196
+ msgstr ""
5197
+
5198
+ # @ squirrly-seo
5199
+ #: models/LiveAssistant.php:64
5200
+ #, fuzzy, php-format
5201
+ #| msgid "Enter even more keywords."
5202
+ msgid "write %s more words"
5203
+ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
5204
+
5205
+ #: models/LiveAssistant.php:65
5206
+ #, php-format
5207
+ msgid "Add the keyword in the %s of your article"
5208
+ msgstr ""
5209
+
5210
+ #: models/LiveAssistant.php:66
5211
+ msgid "Click to keep the highlight on"
5212
+ msgstr ""
5213
+
5214
+ #: models/LiveAssistant.php:67
5215
+ msgid "introduction"
5216
+ msgstr ""
5217
+
5218
+ # @ squirrly-seo
5219
+ #: models/LiveAssistant.php:68
5220
+ #, fuzzy, php-format
5221
+ #| msgid "Use more words in one keyword"
5222
+ msgid "Write more words after the %s keyword"
5223
+ msgstr "Verwenden Sie mehrere Wörter in einem Schlüsselwort"
5224
+
5225
+ #: models/LiveAssistant.php:69
5226
+ msgid "or use synonyms"
5227
+ msgstr ""
5228
+
5229
+ # @ squirrly-seo
5230
+ #: models/LiveAssistant.php:70
5231
+ #, fuzzy, php-format
5232
+ #| msgid "Enter even more keywords."
5233
+ msgid "add %s more word(s)"
5234
+ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
5235
+
5236
+ #: models/LiveAssistant.php:71
5237
+ #, php-format
5238
+ msgid "or remove %s word(s)"
5239
+ msgstr ""
5240
+
5241
+ #: models/LiveAssistant.php:72
5242
+ #, php-format
5243
+ msgid "add the selected keyword %s more time(s) "
5244
+ msgstr ""
5245
+
5246
+ #: models/LiveAssistant.php:73
5247
+ #, php-format
5248
+ msgid "write %s more words to start calculating"
5249
+ msgstr ""
5250
+
5251
+ # @ squirrly-seo
5252
+ #: models/LiveAssistant.php:74
5253
+ #, fuzzy
5254
+ #| msgid "Do the research"
5255
+ msgid "Add to Briefcase"
5256
+ msgstr "Recherchieren"
5257
+
5258
+ # @ squirrly-seo
5259
+ #: models/LiveAssistant.php:75
5260
+ #, fuzzy
5261
+ #| msgid "Do the research"
5262
+ msgid "Add Keyword to Briefcase"
5263
+ msgstr "Recherchieren"
5264
+
5265
+ #: models/LiveAssistant.php:76
5266
+ msgid "Select"
5267
+ msgstr ""
5268
+
5269
+ # @ squirrly-seo
5270
+ #: models/LiveAssistant.php:77 view/Blocks/Snippet.php:133
5271
+ #: view/Blocks/Snippet.php:657 view/Blocks/Snippet.php:920
5272
+ #, fuzzy
5273
+ #| msgid "automatically"
5274
+ msgid "Auto Draft"
5275
+ msgstr "automatisch"
5276
+
5277
+ #: models/LiveAssistant.php:78
5278
+ msgid "Enter keyword above and press ENTER"
5279
+ msgstr ""
5280
+
5281
+ # @ squirrly-seo
5282
+ #: models/LiveAssistant.php:79
5283
+ #, fuzzy
5284
+ #| msgid "Do the research"
5285
+ msgid "Add Keywords from Briefcase"
5286
+ msgstr "Recherchieren"
5287
+
5288
+ #: models/LiveAssistant.php:80
5289
+ msgid ""
5290
+ "Live Assistant was used to optimize this page with the Page Builder. Please "
5291
+ "go back and resume your optimization work there."
5292
+ msgstr ""
5293
+
5294
  #: models/Menu.php:120
5295
  msgid "First Step"
5296
  msgstr ""
5977
  msgid "Plugin Install Process"
5978
  msgstr ""
5979
 
5980
+ #: models/Snippet.php:271
5981
  msgid "You don't have enough pemission to edit this article"
5982
  msgstr ""
5983
 
5984
  # @ squirrly-seo
5985
+ #: models/Snippet.php:374
5986
  #, fuzzy
5987
  #| msgid "Could not send the email..."
5988
  msgid "Error! Could not save the data."
5989
  msgstr "Konnte E-Mail nicht senden ..."
5990
 
5991
+ #: models/Snippet.php:379
5992
  msgid "Error! Invalid request."
5993
  msgstr ""
5994
 
5995
  # @ squirrly-seo
5996
+ #: models/Snippet.php:427
5997
  #, fuzzy
5998
  #| msgid "Could not send the email..."
5999
  msgid "Couldn't find the page"
6000
  msgstr "Konnte E-Mail nicht senden ..."
6001
 
6002
+ #: models/Snippet.php:444 models/Snippet.php:456
6003
  msgid "No Polylang translation for this post."
6004
  msgstr ""
6005
 
6018
  msgstr ""
6019
 
6020
  # @ squirrly-seo
6021
+ #: models/abstract/Assistant.php:120 view/Blocks/LiveAssistant.php:31
6022
  #, fuzzy
6023
  #| msgid "Tips: 2-4 keywords"
6024
  msgid "Keywords"
7829
  msgid "Add New"
7830
  msgstr "Squirrly Einstellungen"
7831
 
7832
+ #: view/Assistant/Assistant.php:53 view/Assistant/Settings.php:168
7833
  #: view/Audits/Addpage.php:200 view/Audits/Audit.php:136
7834
  #: view/Audits/Audits.php:50 view/Automation/Automation.php:394
7835
+ #: view/Automation/Settings.php:113 view/Automation/Types.php:113
7836
  #: view/BulkSeo/Bulkseo.php:267 view/FocusPages/Addpage.php:205
7837
  #: view/FocusPages/Pagelist.php:57 view/FocusPages/Pagelist.php:67
7838
  #: view/Ranking/Gscsync.php:118 view/Ranking/Rankings.php:465
7939
  msgstr ""
7940
 
7941
  # @ squirrly-seo
7942
+ #: view/Assistant/Settings.php:100
7943
  #, fuzzy
7944
  #| msgid "Google %sAnalytics ID%s`:"
7945
  msgid "Activate Live Assistant in Frontend"
7946
  msgstr "Google %sAnalytics ID%s`:"
7947
 
7948
+ #: view/Assistant/Settings.php:103
7949
  msgid ""
7950
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
7951
  "with Builders."
7952
  msgstr ""
7953
 
7954
+ #: view/Assistant/Settings.php:104
7955
+ #, php-format
7956
+ msgid "Supports %s Elementor Builder %s plugin."
7957
  msgstr ""
7958
 
7959
+ #: view/Assistant/Settings.php:105
7960
+ #, php-format
7961
+ msgid "Supports %s Oxygen Builder %s plugin."
7962
+ msgstr ""
7963
+
7964
+ #: view/Assistant/Settings.php:106
7965
+ #, php-format
7966
+ msgid "Supports %s Divi Builder %s plugin (BETA)."
7967
  msgstr ""
7968
 
7969
+ # @ squirrly-seo
7970
  #: view/Assistant/Settings.php:113
7971
+ #, fuzzy
7972
+ #| msgid "Squirrly settings"
7973
+ msgid "Live Assistant Type"
7974
+ msgstr "Squirrly Einstellungen"
7975
+
7976
+ #: view/Assistant/Settings.php:118
7977
+ msgid "Auto"
7978
+ msgstr ""
7979
+
7980
+ #: view/Assistant/Settings.php:119
7981
+ msgid "Integrated Box"
7982
+ msgstr ""
7983
+
7984
+ #: view/Assistant/Settings.php:120
7985
+ msgid "Floating Box"
7986
+ msgstr ""
7987
+
7988
+ #: view/Assistant/Settings.php:128
7989
+ msgid "Places where you do NOT want Squirrly Live Assistant to load"
7990
+ msgstr ""
7991
+
7992
+ #: view/Assistant/Settings.php:134
7993
  msgid ""
7994
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
7995
  "post types."
7996
  msgstr ""
7997
 
7998
+ #: view/Assistant/Settings.php:140
7999
  msgid "Exclusions"
8000
  msgstr ""
8001
 
8002
+ #: view/Assistant/Settings.php:142
8003
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
8004
  msgstr ""
8005
 
8006
  # @ squirrly-seo
8007
+ #: view/Assistant/Settings.php:163 view/Audits/Settings.php:46
8008
  #: view/Automation/Automation.php:356 view/Automation/Settings.php:105
8009
+ #: view/Ranking/Settings.php:334 view/SeoSettings/Jsonld.php:121
8010
+ #: view/SeoSettings/Jsonld.php:169 view/SeoSettings/Jsonld.php:226
8011
+ #: view/SeoSettings/Jsonld.php:307 view/SeoSettings/Jsonld.php:346
8012
+ #: view/SeoSettings/Jsonld.php:385 view/SeoSettings/Jsonld.php:445
8013
+ #: view/SeoSettings/Jsonld.php:485 view/SeoSettings/Jsonld.php:516
8014
+ #: view/SeoSettings/Metas.php:121 view/SeoSettings/Metas.php:161
8015
+ #: view/SeoSettings/Metas.php:195 view/SeoSettings/Social.php:282
8016
+ #: view/SeoSettings/Social.php:328 view/SeoSettings/Social.php:404
8017
+ #: view/SeoSettings/Social.php:456 view/SeoSettings/Tweaks.php:355
8018
+ #: view/SeoSettings/Tweaks.php:421 view/SeoSettings/Tweaks.php:477
8019
+ #: view/SeoSettings/Tweaks.php:534 view/SeoSettings/Tweaks.php:617
8020
+ #: view/SeoSettings/Webmaster.php:300 view/SeoSettings/Webmaster.php:326
8021
+ #: view/SeoSettings/Webmaster.php:406
8022
  #, fuzzy
8023
  #| msgid "Squirrly settings"
8024
  msgid "Save Settings"
8025
  msgstr "Squirrly Einstellungen"
8026
 
8027
+ #: view/Assistant/Settings.php:170
8028
  msgid ""
8029
  "The Settings section allows you to set up your assistant just the way you "
8030
  "like it."
8031
  msgstr ""
8032
 
8033
+ #: view/Assistant/Settings.php:171
8034
  msgid ""
8035
  "Quickly enable or disable the settings available here based on your needs and "
8036
  "preferences."
8160
  "thumbs down element) and work on them to improve your score."
8161
  msgstr ""
8162
 
 
 
 
 
8163
  # @ squirrly-seo
8164
+ #: view/Audits/AuditPageRow.php:44
8165
  #, fuzzy
8166
  #| msgid "Could not send the email..."
8167
  msgid "Could not create the audit for this URL"
8168
  msgstr "Konnte E-Mail nicht senden ..."
8169
 
8170
+ #: view/Audits/AuditPageRow.php:44
8171
  msgid "error code"
8172
  msgstr ""
8173
 
8174
+ #: view/Audits/AuditPageRow.php:46
8175
  #, php-format
8176
  msgid ""
8177
  "The way your WordPress site is currently hosted can affect the way Squirrly "
8182
  msgstr ""
8183
 
8184
  # @ squirrly-seo
8185
+ #: view/Audits/AuditPageRow.php:48 view/Audits/AuditPageRow.php:75
8186
  #: view/FocusPages/FocusPageRow.php:132 view/FocusPages/FocusPageRow.php:217
8187
  #, fuzzy
8188
  #| msgid "Squirrly LIVE SEO assistant"
8189
  msgid "Inspect URL"
8190
  msgstr "Squirrly LIVE SEO-Assistent"
8191
 
8192
+ #: view/Audits/AuditPageRow.php:69 view/Audits/AuditStats.php:69
8193
+ #: view/Audits/AuditStats.php:96 view/FocusPages/FocusPageRow.php:112
8194
  #: view/FocusPages/FocusPageRow.php:211
8195
  msgid "Request New Audit"
8196
  msgstr ""
8197
 
8198
  # @ squirrly-seo
8199
+ #: view/Audits/AuditPageRow.php:78
8200
  #, fuzzy
8201
  #| msgid "Could not send the email..."
8202
  msgid "Do you want to delete the Audit Page?"
8203
  msgstr "Konnte E-Mail nicht senden ..."
8204
 
8205
+ #: view/Audits/AuditPageRow.php:84
8206
  msgid "Remove Page from Audit"
8207
  msgstr ""
8208
 
8241
  "and %srefresh the page%s."
8242
  msgstr ""
8243
 
8244
+ #: view/Audits/AuditStats.php:31
8245
  msgid ""
8246
  "Your score is low. A medium score is over 50, and a good score is over 80."
8247
  msgstr ""
8248
 
8249
+ #: view/Audits/AuditStats.php:33
8250
  msgid "Your score is medium. A good score is over 80."
8251
  msgstr ""
8252
 
8253
+ #: view/Audits/AuditStats.php:35
8254
  msgid "Your score is good. Keep it as high as posible for good results."
8255
  msgstr ""
8256
 
8257
  # @ squirrly-seo
8258
+ #: view/Audits/AuditStats.php:42 view/Audits/AuditStats.php:252
8259
  #: view/Audits/Compare.php:72
8260
  #, fuzzy
8261
  #| msgid "Squirrly settings"
8263
  msgstr "Squirrly Einstellungen"
8264
 
8265
  # @ squirrly-seo
8266
+ #: view/Audits/AuditStats.php:54
8267
  #, fuzzy
8268
  #| msgid "Squirrly settings"
8269
  msgid "Your audit score is"
8270
  msgstr "Squirrly Einstellungen"
8271
 
8272
  # @ squirrly-seo
8273
+ #: view/Audits/AuditStats.php:57 view/Audits/AuditStats.php:85
8274
  #, fuzzy
8275
  #| msgid "Your E-mail:"
8276
  msgid "Audit Date"
8277
  msgstr "Ihre E-Mail Adresse:"
8278
 
8279
+ # @ squirrly-seo
8280
+ #: view/Audits/AuditStats.php:66 view/Audits/AuditStats.php:93
8281
+ #, fuzzy
8282
+ #| msgid "Squirrly settings"
8283
+ msgid "In progress"
8284
+ msgstr "Squirrly Einstellungen"
8285
 
8286
+ #: view/Audits/AuditStats.php:78
8287
  msgid "Add a new page for Audit"
8288
  msgstr ""
8289
 
8290
  # @ squirrly-seo
8291
+ #: view/Audits/AuditStats.php:111
8292
  #, fuzzy
8293
  #| msgid "Squirrly settings"
8294
  msgid "Audit in progress"
8295
  msgstr "Squirrly Einstellungen"
8296
 
8297
  # @ squirrly-seo
8298
+ #: view/Audits/AuditStats.php:117
8299
  #, fuzzy
8300
  #| msgid "Squirrly settings"
8301
  msgid "Audit not ready yet"
8302
  msgstr "Squirrly Einstellungen"
8303
 
8304
+ #: view/Audits/AuditStats.php:122
8305
  msgid "You can refresh the audit once every hour"
8306
  msgstr ""
8307
 
8308
+ #: view/Audits/AuditStats.php:123
8309
  msgid "Request Website Audit"
8310
  msgstr ""
8311
 
8312
+ #: view/Audits/AuditStats.php:142 view/Audits/AuditStats.php:254
8313
  #: view/Ranking/Rankings.php:407 view/Research/History.php:37
8314
  msgid "Date"
8315
  msgstr ""
8316
 
8317
  # @ squirrly-seo
8318
+ #: view/Audits/AuditStats.php:142
8319
  #, fuzzy
8320
  #| msgid "Squirrly settings"
8321
  msgid "On-Page"
8322
  msgstr "Squirrly Einstellungen"
8323
 
8324
  # @ squirrly-seo
8325
+ #: view/Audits/AuditStats.php:142
8326
  #, fuzzy
8327
  #| msgid "Squirrly settings"
8328
  msgid "Off-Page"
8329
  msgstr "Squirrly Einstellungen"
8330
 
8331
+ #: view/Audits/AuditStats.php:165
8332
  #, php-format
8333
  msgid "You've completed %s tasks from %s"
8334
  msgstr ""
8335
 
8336
+ #: view/Audits/AuditStats.php:186 view/Audits/Compare.php:53
8337
  msgid "Scores"
8338
  msgstr ""
8339
 
8340
+ #: view/Audits/AuditStats.php:187
8341
  #, php-format
8342
  msgid "the latest %s days evolution for Audit"
8343
  msgstr ""
8344
 
8345
+ #: view/Audits/AuditStats.php:209 view/FocusPages/FocusPageStats.php:135
8346
  #: view/Ranking/Rankings.php:149
8347
  msgid "Progress & Achievements"
8348
  msgstr ""
8349
 
8350
+ #: view/Audits/AuditStats.php:210
8351
  #, php-format
8352
  msgid "the latest %s days progress for Audit Pages"
8353
  msgstr ""
8354
 
8355
+ #: view/Audits/AuditStats.php:218 view/FocusPages/FocusPageStats.php:145
8356
  #: view/Ranking/Rankings.php:178
8357
  msgid "No progress found yet"
8358
  msgstr ""
8359
 
8360
+ #: view/Audits/AuditStats.php:230 view/Ranking/Rankings.php:191
8361
  msgid "Share Your Success"
8362
  msgstr ""
8363
 
8364
  # @ squirrly-seo
8365
+ #: view/Audits/AuditStats.php:237
8366
  #, fuzzy
8367
  #| msgid "Squirrly settings"
8368
  msgid "Audit History"
8369
  msgstr "Squirrly Einstellungen"
8370
 
8371
  # @ squirrly-seo
8372
+ #: view/Audits/AuditStats.php:244
8373
  #, fuzzy
8374
  #| msgid "Squirrly settings"
8375
  msgid "Compare Audits"
8376
  msgstr "Squirrly Einstellungen"
8377
 
8378
  # @ squirrly-seo
8379
+ #: view/Audits/AuditStats.php:253
8380
  #, fuzzy
8381
  #| msgid "Squirrly settings"
8382
  msgid "Page(s)"
8383
  msgstr "Squirrly Einstellungen"
8384
 
8385
  # @ squirrly-seo
8386
+ #: view/Audits/AuditStats.php:270
8387
  #, fuzzy
8388
  #| msgid "Squirrly settings"
8389
  msgid "pages"
8390
  msgstr "Squirrly Einstellungen"
8391
 
8392
+ #: view/Audits/AuditStats.php:274
8393
  msgid "Show Latest Audit"
8394
  msgstr ""
8395
 
8396
  # @ squirrly-seo
8397
+ #: view/Audits/AuditStats.php:274
8398
  #, fuzzy
8399
  #| msgid "automatically"
8400
  msgid "Show Audit"
8798
  msgstr ""
8799
 
8800
  # @ squirrly-seo
8801
+ #: view/Automation/Types.php:100
8802
  #, fuzzy
8803
  #| msgid "automatically"
8804
  msgid "All the post types are sent for Automation"
8805
  msgstr "automatisch"
8806
 
8807
  # @ squirrly-seo
8808
+ #: view/Automation/Types.php:101
8809
  #, fuzzy
8810
  #| msgid "automatically"
8811
  msgid "Start Automation Setup"
8812
  msgstr "automatisch"
8813
 
8814
+ #: view/Automation/Types.php:115
8815
  msgid ""
8816
  "Add ALL Your Post Types to our Automation section, to ensure all your site is "
8817
  "covered with excellent SEO."
8818
  msgstr ""
8819
 
8820
+ #: view/Blocks/Account.php:28
8821
  #, php-format
8822
  msgid "Due Date: %s"
8823
  msgstr ""
8824
 
8825
+ #: view/Blocks/Account.php:32
8826
+ msgid "Expires: never"
8827
+ msgstr ""
8828
+
8829
  # @ squirrly-seo
8830
+ #: view/Blocks/Account.php:46
8831
  #, fuzzy
8832
  #| msgid "Tips: 2-4 keywords"
8833
  msgid "Keywords Lookups"
8834
  msgstr "Tipp: Länge 2-4 Schlüsselwörter"
8835
 
8836
+ #: view/Blocks/Account.php:61
8837
  msgid "SERP Lookups"
8838
  msgstr ""
8839
 
8840
  # @ squirrly-seo
8841
+ #: view/Blocks/Account.php:74
8842
  #, fuzzy
8843
  #| msgid "Squirrly settings"
8844
  msgid "Focus Pages Lookup"
8845
  msgstr "Squirrly Einstellungen"
8846
 
8847
  # @ squirrly-seo
8848
+ #: view/Blocks/Account.php:86
8849
  #, fuzzy
8850
  #| msgid "Squirrly settings"
8851
  msgid "Audit Pages Lookup"
8852
  msgstr "Squirrly Einstellungen"
8853
 
8854
+ #: view/Blocks/Account.php:95
8855
  msgid "Reset day"
8856
  msgstr ""
8857
 
8858
+ #: view/Blocks/Account.php:102
8859
  msgid "Want to hide this section from your customes?"
8860
  msgstr ""
8861
 
8862
+ #: view/Blocks/Account.php:108
8863
  msgid "Upgrade your account"
8864
  msgstr ""
8865
 
8866
+ #: view/Blocks/Account.php:112
8867
  msgid "Billing info"
8868
  msgstr ""
8869
 
8870
  # @ squirrly-seo
8871
+ #: view/Blocks/Account.php:116
8872
  #, fuzzy
8873
  #| msgid "Squirrly settings"
8874
  msgid "Account settings"
8875
  msgstr "Squirrly Einstellungen"
8876
 
8877
  # @ squirrly-seo
8878
+ #: view/Blocks/Account.php:120
8879
  #, fuzzy
8880
  #| msgid "Squirrly settings"
8881
  msgid "Squirrly Cloud"
8882
  msgstr "Squirrly Einstellungen"
8883
 
8884
  # @ squirrly-seo
8885
+ #: view/Blocks/Account.php:124
8886
  #, fuzzy
8887
  #| msgid "support page"
8888
  msgid "Support"
8921
  msgid "Rankings Mastery Tasks"
8922
  msgstr ""
8923