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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8924
  #: view/Blocks/Dashboard.php:16
8925
  msgid "Congratulations! you have success messages"
8926
  msgstr ""
8965
  msgid "Manage the features & access them directly from here."
8966
  msgstr ""
8967
 
8968
+ #: view/Blocks/Features.php:44 view/Blocks/Features.php:209
8969
  msgid "Do you want to search in the 650 features list?"
8970
  msgstr ""
8971
 
8972
  # @ squirrly-seo
8973
+ #: view/Blocks/Features.php:46 view/Blocks/Features.php:211
8974
  #, fuzzy
8975
  #| msgid "Could not send the email..."
8976
  msgid "Do you want to see all 650 features list?"
8987
  msgid "Search Feature"
8988
  msgstr "Tipp: Länge 2-4 Schlüsselwörter"
8989
 
8990
+ #: view/Blocks/Features.php:156
8991
  msgid "start feature setup"
8992
  msgstr ""
8993
 
8994
+ #: view/Blocks/Features.php:160
8995
  msgid "see feature"
8996
  msgstr ""
8997
 
8998
+ #: view/Blocks/Features.php:176
8999
  msgid "click to deactivate"
9000
  msgstr ""
9001
 
9002
+ #: view/Blocks/Features.php:176
9003
  msgid "click to activate"
9004
  msgstr ""
9005
 
9006
  # @ squirrly-seo
9007
+ #: view/Blocks/Features.php:182
9008
  #, fuzzy
9009
  #| msgid "Google %sAnalytics ID%s`:"
9010
  msgid "connect to cloud"
9011
  msgstr "Google %sAnalytics ID%s`:"
9012
 
9013
+ #: view/Blocks/Features.php:186
9014
  msgid "already active"
9015
  msgstr ""
9016
 
9017
  # @ squirrly-seo
9018
+ #: view/Blocks/Features.php:190
9019
  #, fuzzy
9020
  #| msgid "Google %sAnalytics ID%s`:"
9021
  msgid "activate feature"
9089
  msgstr ""
9090
 
9091
  # @ squirrly-seo
9092
+ #: view/Blocks/LiveAssistant.php:10 view/Blocks/LiveAssistant.php:41
9093
  #, fuzzy
9094
  #| msgid "Squirrly settings"
9095
  msgid "Squirrly Briefcase"
9130
  msgid "SLA Score"
9131
  msgstr "Squirrly Einstellungen"
9132
 
9133
+ #: view/Blocks/LiveAssistant.php:26 view/Blocks/LiveAssistant.php:103
9134
+ msgid "Update"
9135
+ msgstr ""
 
 
 
9136
 
9137
+ #: view/Blocks/LiveAssistant.php:31
9138
  msgid "Step 1"
9139
  msgstr ""
9140
 
9141
+ #: view/Blocks/LiveAssistant.php:32
9142
  msgid "Step 2"
9143
  msgstr ""
9144
 
9145
+ #: view/Blocks/LiveAssistant.php:32
9146
  msgid "Enhance"
9147
  msgstr ""
9148
 
9149
+ #: view/Blocks/LiveAssistant.php:33
9150
  msgid "Step 3"
9151
  msgstr ""
9152
 
9153
+ #: view/Blocks/LiveAssistant.php:33
9154
  msgid "Analysis"
9155
  msgstr ""
9156
 
9157
+ #: view/Blocks/LiveAssistant.php:34
9158
  msgid "Extra"
9159
  msgstr ""
9160
 
9161
+ #: view/Blocks/LiveAssistant.php:34
9162
  msgid "Deep"
9163
  msgstr ""
9164
 
9165
+ #: view/Blocks/LiveAssistant.php:42
9166
+ msgid "We recommend that you select at least 3 Keywords for best results."
9167
  msgstr ""
9168
 
9169
  # @ squirrly-seo
9170
+ #: view/Blocks/LiveAssistant.php:47
9171
  #, fuzzy
9172
  #| msgid "Do the research"
9173
  msgid "Search in Briefcase ..."
9174
  msgstr "Recherchieren"
9175
 
9176
  # @ squirrly-seo
9177
+ #: view/Blocks/LiveAssistant.php:51 view/Blocks/LiveAssistant.php:79
9178
+ #: view/Blocks/LiveAssistant.php:123 view/Onboarding/Step1.php:106
9179
  #, fuzzy
9180
  #| msgid "SEO Software"
9181
  msgid "Continue"
9182
  msgstr "SEO Software"
9183
 
9184
  # @ squirrly-seo
9185
+ #: view/Blocks/LiveAssistant.php:58
9186
  #, fuzzy
9187
  #| msgid "Squirrly settings"
9188
  msgid "Squirrly Blogging Assistant"
9189
  msgstr "Squirrly Einstellungen"
9190
 
9191
+ #: view/Blocks/LiveAssistant.php:59
9192
  msgid "The keyword will be automatically be added as the image alt text."
9193
  msgstr ""
9194
 
9195
+ #: view/Blocks/LiveAssistant.php:60
9196
  msgid ""
9197
  "Click on “Insert it!” and the incorporated Tweet(s) will add more substance "
9198
  "to your article."
9199
  msgstr ""
9200
 
9201
+ #: view/Blocks/LiveAssistant.php:61
9202
  msgid ""
9203
  "Browse through Wikipedia articles to get more insight or quick fact-checking "
9204
  "on your topic."
9205
  msgstr ""
9206
 
9207
+ #: view/Blocks/LiveAssistant.php:62
9208
  msgid "Find topic-related articles written by fellow bloggers or influencers."
9209
  msgstr ""
9210
 
9211
+ #: view/Blocks/LiveAssistant.php:63
9212
  msgid ""
9213
  "Squirrly automatically browses your WordPress for previously written articles "
9214
  "you want to cite or insert"
9215
  msgstr ""
9216
 
9217
  # @ squirrly-seo
9218
+ #: view/Blocks/LiveAssistant.php:70
9219
  #, fuzzy
9220
  #| msgid "Squirrly settings"
9221
  msgid "Images"
9222
  msgstr "Squirrly Einstellungen"
9223
 
9224
+ #: view/Blocks/LiveAssistant.php:71
9225
  msgid "Twitter"
9226
  msgstr ""
9227
 
9228
+ #: view/Blocks/LiveAssistant.php:72
9229
  msgid "Wiki"
9230
  msgstr ""
9231
 
9232
+ #: view/Blocks/LiveAssistant.php:73
9233
  msgid "Blogs"
9234
  msgstr ""
9235
 
9236
+ #: view/Blocks/LiveAssistant.php:74
9237
  msgid "My articles"
9238
  msgstr ""
9239
 
9240
+ #: view/Blocks/LiveAssistant.php:83
9241
  msgid "Show only Copyright Free images"
9242
  msgstr ""
9243
 
 
9244
  #: view/Blocks/LiveAssistant.php:94
 
 
 
 
 
 
9245
  msgid ""
9246
  "Squirrly automatically checks your article to make sure it has the best SEO "
9247
  "chances"
9248
  msgstr ""
9249
 
 
 
 
 
9250
  # @ squirrly-seo
9251
+ #: view/Blocks/LiveAssistant.php:131
9252
  #, fuzzy
9253
  #| msgid "Squirrly settings"
9254
  msgid "Squirrly Focus Pages"
9255
  msgstr "Squirrly Einstellungen"
9256
 
9257
+ #: view/Blocks/LiveAssistant.php:132
9258
  msgid ""
9259
  "Focus Pages bring you clear methods to take your content from never found to "
9260
  "always found on Google."
9261
  msgstr ""
9262
 
9263
+ #: view/Blocks/LiveAssistant.php:138
9264
  msgid "Need a deeper analysis of this content?"
9265
  msgstr ""
9266
 
9267
+ #: view/Blocks/LiveAssistant.php:139
9268
  msgid ""
9269
  "Add this page/article as a focus page and take your content from never found "
9270
  "to always found on Google. Rank your pages by influencing the right ranking "
9272
  msgstr ""
9273
 
9274
  # @ squirrly-seo
9275
+ #: view/Blocks/LiveAssistant.php:142
9276
  #, fuzzy
9277
  #| msgid "Squirrly settings"
9278
  msgid "Set Focus Pages"
9321
  msgid "Sign Up"
9322
  msgstr ""
9323
 
9324
+ #: view/Blocks/Menu.php:31 view/Blocks/Menu.php:70 view/Blocks/Menu.php:116
9325
+ #: view/Blocks/Menu.php:167
9326
+ msgid "Collapse"
9327
+ msgstr ""
9328
+
9329
+ #: view/Blocks/Menu.php:48 view/Blocks/Menu.php:87 view/Blocks/Menu.php:136
9330
  msgid "Back To Home"
9331
  msgstr ""
9332
 
9375
  msgstr ""
9376
 
9377
  #: view/Blocks/Snippet.php:151 view/Blocks/Snippet.php:685
9378
+ #: view/Blocks/Snippet.php:947 view/Onboarding/Step1.php:105
9379
  msgid "Cancel"
9380
  msgstr ""
9381
 
9771
  "provider`s support team"
9772
  msgstr ""
9773
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9774
  #: view/Blocks/Toolbar.php:13
9775
  msgid "SEO Beginner"
9776
  msgstr ""
10082
  msgid "Details"
10083
  msgstr "Ihre E-Mail Adresse:"
10084
 
10085
+ #: view/FocusPages/FocusPageRow.php:109
10086
+ #, php-format
10087
+ msgid "Wait %s minutes"
10088
+ msgstr ""
10089
+
10090
  #: view/FocusPages/FocusPageRow.php:130
10091
  msgid "Upgrade Plan"
10092
  msgstr ""
10411
  msgid "Learn how you can import the same settings on this site as well"
10412
  msgstr ""
10413
 
10414
+ #: view/Onboarding/Step1.php:96
10415
  msgid "What will be activated"
10416
  msgstr ""
10417
 
10418
  # @ squirrly-seo
10419
+ #: view/Onboarding/Step1.php:102
10420
  #, fuzzy
10421
  #| msgid "Squirrly LIVE SEO assistant"
10422
  msgid "Squirrly Sitemap XML"
12991
  msgid "https://plugin.squirrly.co"
12992
  msgstr ""
12993
 
12994
+ # @ squirrly-seo
12995
+ #, fuzzy
12996
+ #~| msgid "Google %sAnalytics ID%s`:"
12997
+ #~ msgid "Connect Squirrly Cloud & Website API"
12998
+ #~ msgstr "Google %sAnalytics ID%s`:"
12999
+
13000
+ # @ squirrly-seo
13001
+ #, fuzzy
13002
+ #~| msgid "Enter even more keywords."
13003
+ #~ msgid "Use this keyword"
13004
+ #~ msgstr "Geben Sie noch mehrere Schlüsselwörter ein."
13005
+
13006
+ # @ squirrly-seo
13007
+ #, fuzzy
13008
+ #~| msgid "Write a new post with Squirrly"
13009
+ #~ msgid "Need Help with Squirrly SEO?"
13010
+ #~ msgstr "Schreiben Sie einen neuen Beitrag mit Squirrly"
13011
+
13012
  # @ squirrly-seo
13013
  #, fuzzy
13014
  #~| msgid "Do the research"
languages/squirrly-seo-de_DE.mo CHANGED
Binary file
languages/squirrly-seo-de_DE.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:55+0300\n"
6
- "PO-Revision-Date: 2022-05-16 14:55+0300\n"
7
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\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
@@ -92,76 +92,76 @@ msgid "The code for Facebook App must only contain numbers."
92
  msgstr "Der Code für Facebook ist falsch."
93
 
94
  # @ squirrly-seo
95
- #: classes/helpers/Tools.php:88
96
  #, fuzzy
97
  #| msgid "Save settings"
98
  msgid "Getting started"
99
  msgstr "Einstellungen speichern"
100
 
101
  # @ squirrly-seo
102
- #: classes/helpers/Tools.php:114
103
  #, fuzzy
104
  #| msgid "Competition:"
105
  msgid "Documentation"
106
  msgstr "Wettbewerb:"
107
 
108
- #: classes/helpers/Tools.php:115
109
  msgid "Leave a review"
110
  msgstr ""
111
 
112
- #: classes/helpers/Tools.php:554 classes/helpers/Tools.php:611
113
  msgid "Category"
114
  msgstr ""
115
 
116
- #: classes/helpers/Tools.php:573 classes/helpers/Tools.php:630
117
  msgid "Tag"
118
  msgstr ""
119
 
120
- #: classes/helpers/Tools.php:592
121
  msgid "Format"
122
  msgstr ""
123
 
124
- #: classes/helpers/Tools.php:649
125
  msgid "Shipping Option"
126
  msgstr ""
127
 
128
- #: classes/helpers/Tools.php:687
129
  msgid "Author at"
130
  msgstr ""
131
 
132
- #: classes/helpers/Tools.php:725
133
  msgid "Are you looking for"
134
  msgstr ""
135
 
136
  # @ squirrly-seo
137
- #: classes/helpers/Tools.php:726
138
  #, fuzzy
139
  #| msgid "Send Question"
140
  msgid "These are the results for"
141
  msgstr "Senden Sie Ihre Frage"
142
 
143
  # @ squirrly-seo
144
- #: classes/helpers/Tools.php:726
145
  #, fuzzy
146
  #| msgid "Upload error: Could not upload the favicon."
147
  msgid "that you can find on our website."
148
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
149
 
150
  # @ squirrly-seo
151
- #: classes/helpers/Tools.php:762
152
  #, fuzzy
153
  #| msgid "No results found!"
154
  msgid "Page not found"
155
  msgstr "Keine Ergebnisse gefunden!"
156
 
157
  # @ squirrly-seo
158
- #: classes/helpers/Tools.php:763
159
  #, fuzzy
160
  #| msgid "Upload error: Could not upload the favicon."
161
  msgid "This page could not be found on our website."
162
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
163
 
164
- #: classes/helpers/Tools.php:1167
165
  msgid "For better text comparison you need to install PHP mbstring extension."
166
  msgstr ""
167
 
@@ -373,9 +373,9 @@ msgstr "Schlüsselwörter:"
373
 
374
  # @ squirrly-seo
375
  #: controllers/Assistant.php:114 controllers/Assistant.php:141
376
- #: controllers/Audits.php:395 controllers/Automation.php:78
377
- #: controllers/Automation.php:118 controllers/Automation.php:151
378
- #: controllers/Onboarding.php:205 controllers/Post.php:404
379
  #: controllers/Ranking.php:156 controllers/SeoSettings.php:102
380
  #: controllers/SeoSettings.php:157 controllers/SeoSettings.php:426
381
  #, fuzzy
@@ -383,10 +383,9 @@ msgstr "Schlüsselwörter:"
383
  msgid "Saved"
384
  msgstr "Schlüsselwort:"
385
 
386
- #: controllers/Assistant.php:120 controllers/Automation.php:84
387
- #: controllers/Automation.php:131 controllers/BulkSeo.php:75
388
- #: controllers/Patterns.php:124 controllers/Post.php:349
389
- #: controllers/Post.php:382 controllers/Post.php:417
390
  #: controllers/PostsList.php:272 controllers/Research.php:215
391
  #: controllers/Research.php:222 controllers/Research.php:260
392
  #: controllers/Research.php:282 controllers/Research.php:305
@@ -485,7 +484,7 @@ msgid "Not a valid email address."
485
  msgstr ""
486
 
487
  # @ squirrly-seo
488
- #: controllers/Automation.php:125 controllers/Automation.php:159
489
  #, fuzzy
490
  #| msgid "Could not send the email..."
491
  msgid "Could not add the post type."
@@ -509,9 +508,9 @@ msgstr ""
509
 
510
  # @ squirrly-seo
511
  #: controllers/CheckSeo.php:345 controllers/Patterns.php:27
512
- #: controllers/Post.php:635 controllers/Research.php:324
513
- #: controllers/Research.php:355 controllers/Research.php:409
514
- #: controllers/Research.php:539 controllers/Research.php:755
515
  #: view/Blocks/Snippet.php:1300
516
  #, fuzzy
517
  #| msgid "Keyword:"
@@ -563,19 +562,19 @@ msgstr ""
563
  msgid "The focus page is deleted"
564
  msgstr ""
565
 
566
- #: controllers/Menu.php:96
567
  #, php-format
568
  msgid ""
569
  "An error occurred during activation. If this error persists, please contact "
570
  "us at: %s"
571
  msgstr ""
572
 
573
- #: controllers/Menu.php:133
574
  msgid "Dashboard"
575
  msgstr ""
576
 
577
  # @ squirrly-seo
578
- #: controllers/Menu.php:247 models/CheckSeo.php:194 models/CheckSeo.php:558
579
  #: models/CheckSeo.php:572 models/CheckSeo.php:586 models/CheckSeo.php:600
580
  #: models/CheckSeo.php:642
581
  #, fuzzy
@@ -583,17 +582,24 @@ msgstr ""
583
  msgid "SEO Snippet"
584
  msgstr "Squirrly LIVE SEO-Assistent"
585
 
586
- #: controllers/Menu.php:258 controllers/Snippet.php:180
587
  msgid "Custom SEO"
588
  msgstr ""
589
 
590
  # @ squirrly-seo
591
- #: controllers/Menu.php:284
592
  #, fuzzy
593
  #| msgid "Squirrly settings"
594
  msgid "Squirrly SEO"
595
  msgstr "Squirrly Einstellungen"
596
 
 
 
 
 
 
 
 
597
  # @ squirrly-seo
598
  #: controllers/Onboarding.php:91 view/Onboarding/Step1.php:22
599
  #, fuzzy
@@ -653,232 +659,14 @@ msgstr ""
653
  msgid "Saved! This is how the preview looks like"
654
  msgstr ""
655
 
656
- #: controllers/Post.php:407 controllers/Post.php:431
657
  msgid "Can't get the post URL"
658
  msgstr ""
659
 
660
- #: controllers/Post.php:436
661
  msgid "Invalid request"
662
  msgstr ""
663
 
664
- # @ squirrly-seo
665
- #: controllers/Post.php:632
666
- msgid "Keyword:"
667
- msgstr "Schlüsselwort:"
668
-
669
- # @ squirrly-seo
670
- #: controllers/Post.php:633
671
- msgid "date"
672
- msgstr "Datum"
673
-
674
- #: controllers/Post.php:634
675
- msgid ""
676
- "To load the Live Assistant and optimize this page, click to connect to "
677
- "Squirrly Cloud."
678
- msgstr ""
679
-
680
- # @ squirrly-seo
681
- #: controllers/Post.php:636
682
- msgid "Read it!"
683
- msgstr "Lesen!"
684
-
685
- # @ squirrly-seo
686
- #: controllers/Post.php:637
687
- msgid "Insert it!"
688
- msgstr "Einfügen!"
689
-
690
- # @ squirrly-seo
691
- #: controllers/Post.php:638
692
- msgid "Reference"
693
- msgstr "Referenz"
694
-
695
- # @ squirrly-seo
696
- #: controllers/Post.php:639
697
- msgid "Insert as box"
698
- msgstr "Als Box einfügen"
699
-
700
- # @ squirrly-seo
701
- #: controllers/Post.php:640
702
- #, fuzzy
703
- #| msgid "Insert it!"
704
- msgid "Insert Link"
705
- msgstr "Einfügen!"
706
-
707
- # @ squirrly-seo
708
- #: controllers/Post.php:641
709
- msgid "Not relevant?"
710
- msgstr "Nicht relevant?"
711
-
712
- # @ squirrly-seo
713
- #: controllers/Post.php:642
714
- msgid "Insert in your article"
715
- msgstr "In Artikel einfügen"
716
-
717
- # @ squirrly-seo
718
- #: controllers/Post.php:643
719
- #, fuzzy
720
- #| msgid "An error occured while logging in!"
721
- msgid ":( An error occurred while processing your request. Please try again"
722
- msgstr "Bei der Anmeldung ist ein Fehler aufgetreten!"
723
-
724
- # @ squirrly-seo
725
- #: controllers/Post.php:644
726
- msgid "No results found!"
727
- msgstr "Keine Ergebnisse gefunden!"
728
-
729
- #: controllers/Post.php:645
730
- #, php-format
731
- msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
732
- msgstr ""
733
-
734
- #: controllers/Post.php:646
735
- msgid "Has creative commons attributes"
736
- msgstr ""
737
-
738
- # @ squirrly-seo
739
- #: controllers/Post.php:647
740
- #, fuzzy
741
- #| msgid "Description:"
742
- msgid "No known copyright restrictions"
743
- msgstr "Beschreibung:"
744
-
745
- #: controllers/Post.php:648
746
- msgid ""
747
- "You haven`t used Squirrly SEO to optimize your article. Do you want to "
748
- "optimize for a keyword before publishing?"
749
- msgstr ""
750
- "You haven`t used Squirrly SEO to optimize your article. Do you want to "
751
- "optimize for a keyword before publishing?"
752
-
753
- #: controllers/Post.php:649
754
- msgid "Your Subscription has Expired"
755
- msgstr ""
756
-
757
- # @ squirrly-seo
758
- #: controllers/Post.php:650
759
- #, fuzzy
760
- #| msgid "Do a research"
761
- msgid "There are no keywords saved in briefcase yet"
762
- msgstr "Recherchieren"
763
-
764
- #: controllers/Post.php:651
765
- #, php-format
766
- msgid "Congratulations! Your article is 100% optimized!"
767
- msgstr ""
768
-
769
- #: controllers/Post.php:652
770
- #, php-format
771
- msgid "appears too many times. Try to remove %s of them"
772
- msgstr ""
773
-
774
- # @ squirrly-seo
775
- #: controllers/Post.php:653
776
- #, fuzzy, php-format
777
- #| msgid "Squirrly Keyword Research"
778
- msgid "write %s more words"
779
- msgstr "Squirrly Erweiterte Suche!"
780
-
781
- # @ squirrly-seo
782
- #: controllers/Post.php:654
783
- #, fuzzy, php-format
784
- #| msgid "Insert in your article"
785
- msgid "Add the keyword in the %s of your article"
786
- msgstr "In Artikel einfügen"
787
-
788
- #: controllers/Post.php:655
789
- msgid "Click to keep the highlight on"
790
- msgstr ""
791
-
792
- #: controllers/Post.php:656
793
- msgid "introduction"
794
- msgstr ""
795
-
796
- # @ squirrly-seo
797
- #: controllers/Post.php:657
798
- #, fuzzy, php-format
799
- #| msgid "Use more words in one keyword"
800
- msgid "Write more words after the %s keyword"
801
- msgstr "Verwenden Sie mehrere Wörter in einem Schlüsselwort"
802
-
803
- #: controllers/Post.php:658
804
- msgid "or use synonyms"
805
- msgstr ""
806
-
807
- # @ squirrly-seo
808
- #: controllers/Post.php:659
809
- #, fuzzy, php-format
810
- #| msgid "+ Add keyword"
811
- msgid "add %s more word(s)"
812
- msgstr "Fügen Sie ein anderes Schlüsselwort ein"
813
-
814
- # @ squirrly-seo
815
- #: controllers/Post.php:660
816
- #, fuzzy, php-format
817
- #| msgid "+ Add keyword"
818
- msgid "or remove %s word(s)"
819
- msgstr "Fügen Sie ein anderes Schlüsselwort ein"
820
-
821
- #: controllers/Post.php:661
822
- #, php-format
823
- msgid "add the selected keyword %s more time(s) "
824
- msgstr ""
825
-
826
- # @ squirrly-seo
827
- #: controllers/Post.php:662
828
- #, fuzzy, php-format
829
- #| msgid "Squirrly Keyword Research"
830
- msgid "write %s more words to start calculating"
831
- msgstr "Squirrly Erweiterte Suche!"
832
-
833
- # @ squirrly-seo
834
- #: controllers/Post.php:663
835
- #, fuzzy
836
- #| msgid "+ Add keyword"
837
- msgid "Add to Briefcase"
838
- msgstr "Fügen Sie ein anderes Schlüsselwort ein"
839
-
840
- # @ squirrly-seo
841
- #: controllers/Post.php:664
842
- #, fuzzy
843
- #| msgid "+ Add keyword"
844
- msgid "Add Keyword to Briefcase"
845
- msgstr "Fügen Sie ein anderes Schlüsselwort ein"
846
-
847
- # @ squirrly-seo
848
- #: controllers/Post.php:665
849
- #, fuzzy
850
- #| msgid "Images"
851
- msgid "Select"
852
- msgstr "Bilder"
853
-
854
- # @ squirrly-seo
855
- #: controllers/Post.php:666 view/Blocks/Snippet.php:133
856
- #: view/Blocks/Snippet.php:657 view/Blocks/Snippet.php:920
857
- #, fuzzy
858
- #| msgid "automatically"
859
- msgid "Auto Draft"
860
- msgstr "automatisch"
861
-
862
- # @ squirrly-seo
863
- #: controllers/Post.php:667
864
- #, fuzzy
865
- #| msgid "Enter a keyword above!"
866
- msgid "Enter keyword above and press ENTER"
867
- msgstr "Geben Sie oben ein Schlüsselwort ein!"
868
-
869
- # @ squirrly-seo
870
- #: controllers/Post.php:668
871
- #, fuzzy
872
- #| msgid "+ Add keyword"
873
- msgid "Add Keywords from Briefcase"
874
- msgstr "Fügen Sie ein anderes Schlüsselwort ein"
875
-
876
- #: controllers/Post.php:669
877
- msgid ""
878
- "Live Assistant was used to optimize this page with the Page Builder. Please "
879
- "go back and resume your optimization work there."
880
- msgstr ""
881
-
882
  #: controllers/PostsList.php:112 models/PostsList.php:23
883
  #, fuzzy
884
  #| msgid "Optimize for Keyword"
@@ -1214,24 +1002,24 @@ msgstr ""
1214
  msgid "We could not create your account. Please enter a valid email."
1215
  msgstr ""
1216
 
1217
- #: core/Blocklogin.php:85 core/Blocklogin.php:138
1218
  #, php-format
1219
  msgid ""
1220
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
1221
  "webmaster) and request them to add %s to their IP whitelist."
1222
  msgstr ""
1223
 
1224
- #: core/Blocklogin.php:88
1225
  msgid "Your email is not set. Please enter a valid email."
1226
  msgstr ""
1227
 
1228
  # @ squirrly-seo
1229
- #: core/Blocklogin.php:111
1230
  msgid "Wrong email or password!"
1231
  msgstr "Benutzername oder Passwort falsch!"
1232
 
1233
  # @ squirrly-seo
1234
- #: core/Blocklogin.php:114
1235
  #, fuzzy
1236
  #| msgid "You can use this account only for the URL you registered first!"
1237
  msgid "You can only use this account for the URL you registered first!"
@@ -1239,19 +1027,19 @@ msgstr ""
1239
  "Dieses Konto können Sie nur für die URL benutzen, die Sie zuerst registriert "
1240
  "haben!"
1241
 
1242
- #: core/Blocklogin.php:117
1243
  msgid "You disconnected your website from"
1244
  msgstr ""
1245
 
1246
  # @ squirrly-seo
1247
- #: core/Blocklogin.php:121
1248
  #, fuzzy
1249
  #| msgid "An error occured."
1250
  msgid "An error occured."
1251
  msgstr "Ein Fehler ist aufgetreten."
1252
 
1253
  # @ squirrly-seo
1254
- #: core/Blocklogin.php:142
1255
  msgid "Both fields are required."
1256
  msgstr "Beide Felder sind Pflichtfelder."
1257
 
@@ -4285,8 +4073,8 @@ msgstr ""
4285
  #: models/CheckSeo.php:523
4286
  #, php-format
4287
  msgid ""
4288
- "Go to %s Squirrly > Automation > Configuration %s and make sure that SEO "
4289
- "Patterns are activated."
4290
  msgstr ""
4291
 
4292
  #: models/CheckSeo.php:524
@@ -5489,53 +5277,53 @@ msgstr "Konnte E-Mail nicht senden ..."
5489
  msgid "Focus Page could not be verified (error: %s)"
5490
  msgstr ""
5491
 
5492
- #: models/Compatibility.php:262
5493
  msgid "MPN"
5494
  msgstr ""
5495
 
5496
- #: models/Compatibility.php:263
5497
  msgid "Add Manufacturer Part Number (MPN)"
5498
  msgstr ""
5499
 
5500
- #: models/Compatibility.php:266
5501
  msgid "GTIN"
5502
  msgstr ""
5503
 
5504
- #: models/Compatibility.php:267
5505
  msgid "Add Global Trade Item Number (GTIN)"
5506
  msgstr ""
5507
 
5508
- #: models/Compatibility.php:270
5509
  msgid "EAN (GTIN-13)"
5510
  msgstr ""
5511
 
5512
- #: models/Compatibility.php:271
5513
  msgid ""
5514
  "Add Global Trade Item Number (GTIN) for the major GTIN used outside of North "
5515
  "America"
5516
  msgstr ""
5517
 
5518
- #: models/Compatibility.php:274
5519
  msgid "UPC (GTIN-12)"
5520
  msgstr ""
5521
 
5522
- #: models/Compatibility.php:275
5523
  msgid "Add Global Trade Item Number (GTIN) for North America"
5524
  msgstr ""
5525
 
5526
- #: models/Compatibility.php:278
5527
  msgid "ISBN"
5528
  msgstr ""
5529
 
5530
- #: models/Compatibility.php:279
5531
  msgid "Add Global Trade Item Number (GTIN) for books"
5532
  msgstr ""
5533
 
5534
- #: models/Compatibility.php:284
5535
  msgid "Brand Name"
5536
  msgstr ""
5537
 
5538
- #: models/Compatibility.php:285
5539
  msgid "Add Product Brand Name"
5540
  msgstr ""
5541
 
@@ -5627,45 +5415,270 @@ msgstr ""
5627
  msgid "Impressions"
5628
  msgstr ""
5629
 
5630
- #: models/FocusPages.php:43 view/Ranking/Gscsync.php:35
5631
- #: view/Ranking/Rankings.php:372
5632
- msgid "Clicks"
5633
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5634
 
5635
  # @ squirrly-seo
5636
- #: models/Ico.php:44
5637
  #, fuzzy
5638
- #| msgid "File type error: Only JPEG, JPG, GIF or PNG files are allowed."
5639
- msgid "File type error: Only ICO, JPEG, JPG, GIF or PNG files are allowed."
5640
- msgstr "Dateityp Fehler: Nur JPEG, JPG, GIF oder PNG-Dateien sind erlaubt."
5641
 
5642
  # @ squirrly-seo
5643
- #: models/Ico.php:53
5644
- msgid "Delete error: Could not delete the old favicon."
5645
- msgstr "Lösch Fehler: Konnte das alte Favicon nicht löschen."
 
 
5646
 
5647
  # @ squirrly-seo
5648
- #: models/Ico.php:60
5649
- msgid "Upload error: Could not upload the favicon."
5650
- msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
 
 
5651
 
5652
  # @ squirrly-seo
5653
- #: models/Ico.php:66
5654
- msgid "Permission error: Could not change the favicon permissions."
5655
- msgstr "Permission Fehler: Konnte Favicon-Berechtigungen nicht ändern."
 
 
 
5656
 
5657
  # @ squirrly-seo
5658
- #: models/Ico.php:87
5659
- msgid ""
5660
- "ICO Error: Could not create the ICO from file. Try with another file type."
5661
- msgstr ""
5662
- "ICO Fehler: konnte ICO aus der Datei nicht erstellen. Versuchen Sie es mit "
5663
- "einem anderen Dateityp."
5664
 
5665
  # @ squirrly-seo
5666
- #: models/Ico.php:104
5667
- msgid "The favicon has been updated."
5668
- msgstr "Das Favicon wurde aktualisiert."
 
 
 
 
 
 
 
 
5669
 
5670
  #: models/Menu.php:120
5671
  msgid "First Step"
@@ -6390,29 +6403,29 @@ msgstr "Squirrly LIVE SEO-Assistent"
6390
  msgid "Plugin Install Process"
6391
  msgstr ""
6392
 
6393
- #: models/Snippet.php:272
6394
  msgid "You don't have enough pemission to edit this article"
6395
  msgstr ""
6396
 
6397
  # @ squirrly-seo
6398
- #: models/Snippet.php:375
6399
  #, fuzzy
6400
  #| msgid "Could not send the email..."
6401
  msgid "Error! Could not save the data."
6402
  msgstr "Konnte E-Mail nicht senden ..."
6403
 
6404
- #: models/Snippet.php:380
6405
  msgid "Error! Invalid request."
6406
  msgstr ""
6407
 
6408
  # @ squirrly-seo
6409
- #: models/Snippet.php:428
6410
  #, fuzzy
6411
  #| msgid "Could not send the email..."
6412
  msgid "Couldn't find the page"
6413
  msgstr "Konnte E-Mail nicht senden ..."
6414
 
6415
- #: models/Snippet.php:445 models/Snippet.php:457
6416
  msgid "No Polylang translation for this post."
6417
  msgstr ""
6418
 
@@ -6431,7 +6444,7 @@ msgid "Current URL"
6431
  msgstr ""
6432
 
6433
  # @ squirrly-seo
6434
- #: models/abstract/Assistant.php:120 view/Blocks/LiveAssistant.php:32
6435
  #, fuzzy
6436
  #| msgid "Keyword:"
6437
  msgid "Keywords"
@@ -8332,10 +8345,10 @@ msgstr ""
8332
  msgid "Add New"
8333
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
8334
 
8335
- #: view/Assistant/Assistant.php:53 view/Assistant/Settings.php:147
8336
  #: view/Audits/Addpage.php:200 view/Audits/Audit.php:136
8337
  #: view/Audits/Audits.php:50 view/Automation/Automation.php:394
8338
- #: view/Automation/Settings.php:113 view/Automation/Types.php:117
8339
  #: view/BulkSeo/Bulkseo.php:267 view/FocusPages/Addpage.php:205
8340
  #: view/FocusPages/Pagelist.php:57 view/FocusPages/Pagelist.php:67
8341
  #: view/Ranking/Gscsync.php:118 view/Ranking/Rankings.php:465
@@ -8445,70 +8458,100 @@ msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
8445
  msgstr ""
8446
 
8447
  # @ squirrly-seo
8448
- #: view/Assistant/Settings.php:95
8449
  #, fuzzy
8450
  #| msgid "Description:"
8451
  msgid "Activate Live Assistant in Frontend"
8452
  msgstr "Beschreibung:"
8453
 
8454
- #: view/Assistant/Settings.php:98
8455
  msgid ""
8456
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
8457
  "with Builders."
8458
  msgstr ""
8459
 
8460
- #: view/Assistant/Settings.php:99
8461
- msgid "Currently supports the Elementor Builder plugin."
 
8462
  msgstr ""
8463
 
8464
- #: view/Assistant/Settings.php:107
8465
- msgid "Places where you do NOT want Squirrly Live Assistant to load"
 
8466
  msgstr ""
8467
 
 
 
 
 
 
 
8468
  #: view/Assistant/Settings.php:113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8469
  msgid ""
8470
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
8471
  "post types."
8472
  msgstr ""
8473
 
8474
- #: view/Assistant/Settings.php:119
8475
  #, fuzzy
8476
  #| msgid "Recent discussions:"
8477
  msgid "Exclusions"
8478
  msgstr "Bisherige Diskussionen:"
8479
 
8480
- #: view/Assistant/Settings.php:121
8481
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
8482
  msgstr ""
8483
 
8484
  # @ squirrly-seo
8485
- #: view/Assistant/Settings.php:142 view/Audits/Settings.php:46
8486
  #: view/Automation/Automation.php:356 view/Automation/Settings.php:105
8487
- #: view/Automation/Types.php:99 view/Ranking/Settings.php:334
8488
- #: view/SeoSettings/Jsonld.php:121 view/SeoSettings/Jsonld.php:169
8489
- #: view/SeoSettings/Jsonld.php:226 view/SeoSettings/Jsonld.php:307
8490
- #: view/SeoSettings/Jsonld.php:346 view/SeoSettings/Jsonld.php:385
8491
- #: view/SeoSettings/Jsonld.php:445 view/SeoSettings/Jsonld.php:485
8492
- #: view/SeoSettings/Jsonld.php:516 view/SeoSettings/Metas.php:121
8493
- #: view/SeoSettings/Metas.php:161 view/SeoSettings/Metas.php:195
8494
- #: view/SeoSettings/Social.php:282 view/SeoSettings/Social.php:328
8495
- #: view/SeoSettings/Social.php:404 view/SeoSettings/Social.php:456
8496
- #: view/SeoSettings/Tweaks.php:355 view/SeoSettings/Tweaks.php:421
8497
- #: view/SeoSettings/Tweaks.php:477 view/SeoSettings/Tweaks.php:534
8498
- #: view/SeoSettings/Tweaks.php:617 view/SeoSettings/Webmaster.php:300
8499
- #: view/SeoSettings/Webmaster.php:326 view/SeoSettings/Webmaster.php:406
8500
  #, fuzzy
8501
  #| msgid "Save settings"
8502
  msgid "Save Settings"
8503
  msgstr "Einstellungen speichern"
8504
 
8505
- #: view/Assistant/Settings.php:149
8506
  msgid ""
8507
  "The Settings section allows you to set up your assistant just the way you "
8508
  "like it."
8509
  msgstr ""
8510
 
8511
- #: view/Assistant/Settings.php:150
8512
  msgid ""
8513
  "Quickly enable or disable the settings available here based on your needs and "
8514
  "preferences."
@@ -8644,25 +8687,21 @@ msgid ""
8644
  "thumbs down element) and work on them to improve your score."
8645
  msgstr ""
8646
 
8647
- #: view/Audits/AuditPageRow.php:41
8648
- msgid "Last checked"
8649
- msgstr ""
8650
-
8651
  # @ squirrly-seo
8652
- #: view/Audits/AuditPageRow.php:47
8653
  #, fuzzy
8654
  #| msgid "Could not send the email..."
8655
  msgid "Could not create the audit for this URL"
8656
  msgstr "Konnte E-Mail nicht senden ..."
8657
 
8658
  # @ squirrly-seo
8659
- #: view/Audits/AuditPageRow.php:47
8660
  #, fuzzy
8661
  #| msgid "An error occured."
8662
  msgid "error code"
8663
  msgstr "Ein Fehler ist aufgetreten."
8664
 
8665
- #: view/Audits/AuditPageRow.php:49
8666
  #, php-format
8667
  msgid ""
8668
  "The way your WordPress site is currently hosted can affect the way Squirrly "
@@ -8673,27 +8712,27 @@ msgid ""
8673
  msgstr ""
8674
 
8675
  # @ squirrly-seo
8676
- #: view/Audits/AuditPageRow.php:51 view/Audits/AuditPageRow.php:78
8677
  #: view/FocusPages/FocusPageRow.php:132 view/FocusPages/FocusPageRow.php:217
8678
  #, fuzzy
8679
  #| msgid "Squirrly LIVE SEO assistant"
8680
  msgid "Inspect URL"
8681
  msgstr "Squirrly LIVE SEO-Assistent"
8682
 
8683
- #: view/Audits/AuditPageRow.php:72 view/Audits/AuditStats.php:68
8684
- #: view/Audits/AuditStats.php:95 view/FocusPages/FocusPageRow.php:112
8685
  #: view/FocusPages/FocusPageRow.php:211
8686
  msgid "Request New Audit"
8687
  msgstr ""
8688
 
8689
  # @ squirrly-seo
8690
- #: view/Audits/AuditPageRow.php:81
8691
  #, fuzzy
8692
  #| msgid "Could not send the email..."
8693
  msgid "Do you want to delete the Audit Page?"
8694
  msgstr "Konnte E-Mail nicht senden ..."
8695
 
8696
- #: view/Audits/AuditPageRow.php:87
8697
  msgid "Remove Page from Audit"
8698
  msgstr ""
8699
 
@@ -8732,21 +8771,21 @@ msgid ""
8732
  "and %srefresh the page%s."
8733
  msgstr ""
8734
 
8735
- #: view/Audits/AuditStats.php:30
8736
  msgid ""
8737
  "Your score is low. A medium score is over 50, and a good score is over 80."
8738
  msgstr ""
8739
 
8740
- #: view/Audits/AuditStats.php:32
8741
  msgid "Your score is medium. A good score is over 80."
8742
  msgstr ""
8743
 
8744
- #: view/Audits/AuditStats.php:34
8745
  msgid "Your score is good. Keep it as high as posible for good results."
8746
  msgstr ""
8747
 
8748
  # @ squirrly-seo
8749
- #: view/Audits/AuditStats.php:41 view/Audits/AuditStats.php:251
8750
  #: view/Audits/Compare.php:72
8751
  #, fuzzy
8752
  #| msgid "Squirrly settings"
@@ -8754,140 +8793,141 @@ msgid "Audit Score"
8754
  msgstr "Squirrly Einstellungen"
8755
 
8756
  # @ squirrly-seo
8757
- #: view/Audits/AuditStats.php:53
8758
  #, fuzzy
8759
  #| msgid "Squirrly settings"
8760
  msgid "Your audit score is"
8761
  msgstr "Squirrly Einstellungen"
8762
 
8763
  # @ squirrly-seo
8764
- #: view/Audits/AuditStats.php:56 view/Audits/AuditStats.php:84
8765
  #, fuzzy
8766
  #| msgid "Your E-mail:"
8767
  msgid "Audit Date"
8768
  msgstr "Ihre E-Mail Adresse:"
8769
 
8770
- #: view/Audits/AuditStats.php:65 view/Audits/AuditStats.php:92
8771
- #: view/FocusPages/FocusPageRow.php:109
8772
- #, php-format
8773
- msgid "Wait %s minutes"
8774
- msgstr ""
 
8775
 
8776
- #: view/Audits/AuditStats.php:77
8777
  msgid "Add a new page for Audit"
8778
  msgstr ""
8779
 
8780
  # @ squirrly-seo
8781
- #: view/Audits/AuditStats.php:110
8782
  #, fuzzy
8783
  #| msgid "Squirrly settings"
8784
  msgid "Audit in progress"
8785
  msgstr "Squirrly Einstellungen"
8786
 
8787
  # @ squirrly-seo
8788
- #: view/Audits/AuditStats.php:116
8789
  #, fuzzy
8790
  #| msgid "Squirrly settings"
8791
  msgid "Audit not ready yet"
8792
  msgstr "Squirrly Einstellungen"
8793
 
8794
- #: view/Audits/AuditStats.php:121
8795
  msgid "You can refresh the audit once every hour"
8796
  msgstr ""
8797
 
8798
- #: view/Audits/AuditStats.php:122
8799
  msgid "Request Website Audit"
8800
  msgstr ""
8801
 
8802
- #: view/Audits/AuditStats.php:141 view/Audits/AuditStats.php:253
8803
  #: view/Ranking/Rankings.php:407 view/Research/History.php:37
8804
  msgid "Date"
8805
  msgstr ""
8806
 
8807
  # @ squirrly-seo
8808
- #: view/Audits/AuditStats.php:141
8809
  #, fuzzy
8810
  #| msgid "Images"
8811
  msgid "On-Page"
8812
  msgstr "Bilder"
8813
 
8814
  # @ squirrly-seo
8815
- #: view/Audits/AuditStats.php:141
8816
  #, fuzzy
8817
  #| msgid "Images"
8818
  msgid "Off-Page"
8819
  msgstr "Bilder"
8820
 
8821
- #: view/Audits/AuditStats.php:164
8822
  #, php-format
8823
  msgid "You've completed %s tasks from %s"
8824
  msgstr ""
8825
 
8826
- #: view/Audits/AuditStats.php:185 view/Audits/Compare.php:53
8827
  msgid "Scores"
8828
  msgstr ""
8829
 
8830
- #: view/Audits/AuditStats.php:186
8831
  #, php-format
8832
  msgid "the latest %s days evolution for Audit"
8833
  msgstr ""
8834
 
8835
- #: view/Audits/AuditStats.php:208 view/FocusPages/FocusPageStats.php:135
8836
  #: view/Ranking/Rankings.php:149
8837
  msgid "Progress & Achievements"
8838
  msgstr ""
8839
 
8840
- #: view/Audits/AuditStats.php:209
8841
  #, php-format
8842
  msgid "the latest %s days progress for Audit Pages"
8843
  msgstr ""
8844
 
8845
  # @ squirrly-seo
8846
- #: view/Audits/AuditStats.php:217 view/FocusPages/FocusPageStats.php:145
8847
  #: view/Ranking/Rankings.php:178
8848
  #, fuzzy
8849
  #| msgid "No results found!"
8850
  msgid "No progress found yet"
8851
  msgstr "Keine Ergebnisse gefunden!"
8852
 
8853
- #: view/Audits/AuditStats.php:229 view/Ranking/Rankings.php:191
8854
  msgid "Share Your Success"
8855
  msgstr ""
8856
 
8857
  # @ squirrly-seo
8858
- #: view/Audits/AuditStats.php:236
8859
  #, fuzzy
8860
  #| msgid "Squirrly settings"
8861
  msgid "Audit History"
8862
  msgstr "Squirrly Einstellungen"
8863
 
8864
  # @ squirrly-seo
8865
- #: view/Audits/AuditStats.php:243
8866
  #, fuzzy
8867
  #| msgid "Send Question"
8868
  msgid "Compare Audits"
8869
  msgstr "Senden Sie Ihre Frage"
8870
 
8871
  # @ squirrly-seo
8872
- #: view/Audits/AuditStats.php:252
8873
  #, fuzzy
8874
  #| msgid "Images"
8875
  msgid "Page(s)"
8876
  msgstr "Bilder"
8877
 
8878
  # @ squirrly-seo
8879
- #: view/Audits/AuditStats.php:269
8880
  #, fuzzy
8881
  #| msgid "Images"
8882
  msgid "pages"
8883
  msgstr "Bilder"
8884
 
8885
- #: view/Audits/AuditStats.php:273
8886
  msgid "Show Latest Audit"
8887
  msgstr ""
8888
 
8889
  # @ squirrly-seo
8890
- #: view/Audits/AuditStats.php:273
8891
  #, fuzzy
8892
  #| msgid "automatically"
8893
  msgid "Show Audit"
@@ -9324,93 +9364,97 @@ msgid "Add new post types in the list and customize the automation for it."
9324
  msgstr ""
9325
 
9326
  # @ squirrly-seo
9327
- #: view/Automation/Types.php:104
9328
  #, fuzzy
9329
  #| msgid "automatically"
9330
  msgid "All the post types are sent for Automation"
9331
  msgstr "automatisch"
9332
 
9333
  # @ squirrly-seo
9334
- #: view/Automation/Types.php:105
9335
  #, fuzzy
9336
  #| msgid "automatically"
9337
  msgid "Start Automation Setup"
9338
  msgstr "automatisch"
9339
 
9340
- #: view/Automation/Types.php:119
9341
  msgid ""
9342
  "Add ALL Your Post Types to our Automation section, to ensure all your site is "
9343
  "covered with excellent SEO."
9344
  msgstr ""
9345
 
9346
- #: view/Blocks/Account.php:27
9347
  #, php-format
9348
  msgid "Due Date: %s"
9349
  msgstr ""
9350
 
 
 
 
 
9351
  # @ squirrly-seo
9352
- #: view/Blocks/Account.php:42
9353
  #, fuzzy
9354
  #| msgid "Keyword:"
9355
  msgid "Keywords Lookups"
9356
  msgstr "Schlüsselwort:"
9357
 
9358
- #: view/Blocks/Account.php:57
9359
  msgid "SERP Lookups"
9360
  msgstr ""
9361
 
9362
  # @ squirrly-seo
9363
- #: view/Blocks/Account.php:69
9364
  #, fuzzy
9365
  #| msgid "Save settings"
9366
  msgid "Focus Pages Lookup"
9367
  msgstr "Einstellungen speichern"
9368
 
9369
  # @ squirrly-seo
9370
- #: view/Blocks/Account.php:81
9371
  #, fuzzy
9372
  #| msgid "Squirrly settings"
9373
  msgid "Audit Pages Lookup"
9374
  msgstr "Squirrly Einstellungen"
9375
 
9376
- #: view/Blocks/Account.php:90
9377
  msgid "Reset day"
9378
  msgstr ""
9379
 
9380
- #: view/Blocks/Account.php:97
9381
  msgid "Want to hide this section from your customes?"
9382
  msgstr ""
9383
 
9384
  # @ squirrly-seo
9385
- #: view/Blocks/Account.php:103
9386
  #, fuzzy
9387
  #| msgid "Squirrly.co Login"
9388
  msgid "Upgrade your account"
9389
  msgstr "Squirrly.co Login"
9390
 
9391
  # @ squirrly-seo
9392
- #: view/Blocks/Account.php:107
9393
  #, fuzzy
9394
  #| msgid "Plugin Support"
9395
  msgid "Billing info"
9396
  msgstr "Plugin Support"
9397
 
9398
  # @ squirrly-seo
9399
- #: view/Blocks/Account.php:111
9400
  #, fuzzy
9401
  #| msgid "Squirrly settings"
9402
  msgid "Account settings"
9403
  msgstr "Squirrly Einstellungen"
9404
 
9405
  # @ squirrly-seo
9406
- #: view/Blocks/Account.php:115
9407
  #, fuzzy
9408
  #| msgid "Squirrly Keyword Research"
9409
  msgid "Squirrly Cloud"
9410
  msgstr "Squirrly Erweiterte Suche!"
9411
 
9412
  # @ squirrly-seo
9413
- #: view/Blocks/Account.php:119 view/Blocks/Support.php:19
9414
  msgid "Support"
9415
  msgstr "Support"
9416
 
@@ -9450,35 +9494,6 @@ msgstr "Squirrly Einstellungen"
9450
  msgid "Rankings Mastery Tasks"
9451
  msgstr ""
9452
 
9453
- #: view/Blocks/Connect.php:15 view/Blocks/Connect.php:29
9454
- #, php-format
9455
- msgid ""
9456
- "This option is used to track innerlinks and insights for your Focus Pages and "
9457
- "give detailed information about them. %sIt is also useful for sending the "
9458
- "optimized posts from %shttps://cloud.squirrly.co%s directly on your WordPress "
9459
- "site."
9460
- msgstr ""
9461
-
9462
- #: view/Blocks/Connect.php:16 view/Blocks/Connect.php:31
9463
- #, fuzzy
9464
- #| msgid "This email connects you to Squirrly.co"
9465
- msgid "Connect Squirrly Cloud & Website API"
9466
- msgstr "This email connects you to Squirrly.co"
9467
-
9468
- # @ squirrly-seo
9469
- #: view/Blocks/Connect.php:19
9470
- #, fuzzy
9471
- #| msgid "Connecting ..."
9472
- msgid "Connect"
9473
- msgstr "Verbinden ..."
9474
-
9475
- # @ squirrly-seo
9476
- #: view/Blocks/Connect.php:35
9477
- #, fuzzy
9478
- #| msgid "Connecting ..."
9479
- msgid "disconnect"
9480
- msgstr "Verbinden ..."
9481
-
9482
  #: view/Blocks/Dashboard.php:16
9483
  msgid "Congratulations! you have success messages"
9484
  msgstr ""
@@ -9524,14 +9539,14 @@ msgid "Manage the features & access them directly from here."
9524
  msgstr ""
9525
 
9526
  # @ squirrly-seo
9527
- #: view/Blocks/Features.php:44 view/Blocks/Features.php:211
9528
  #, fuzzy
9529
  #| msgid "Could not send the email..."
9530
  msgid "Do you want to search in the 650 features list?"
9531
  msgstr "Konnte E-Mail nicht senden ..."
9532
 
9533
  # @ squirrly-seo
9534
- #: view/Blocks/Features.php:46 view/Blocks/Features.php:213
9535
  #, fuzzy
9536
  #| msgid "Could not send the email..."
9537
  msgid "Do you want to see all 650 features list?"
@@ -9548,40 +9563,40 @@ msgstr ""
9548
  msgid "Search Feature"
9549
  msgstr "Schlüsselwort:"
9550
 
9551
- #: view/Blocks/Features.php:158
9552
  msgid "start feature setup"
9553
  msgstr ""
9554
 
9555
  # @ squirrly-seo
9556
- #: view/Blocks/Features.php:162
9557
  #, fuzzy
9558
  #| msgid "Go to Profile"
9559
  msgid "see feature"
9560
  msgstr "Zum Profil"
9561
 
9562
- #: view/Blocks/Features.php:178
9563
  msgid "click to deactivate"
9564
  msgstr ""
9565
 
9566
- #: view/Blocks/Features.php:178
9567
  msgid "click to activate"
9568
  msgstr ""
9569
 
9570
- #: view/Blocks/Features.php:184
9571
  #, fuzzy
9572
  #| msgid "This email connects you to Squirrly.co"
9573
  msgid "connect to cloud"
9574
  msgstr "This email connects you to Squirrly.co"
9575
 
9576
  # @ squirrly-seo
9577
- #: view/Blocks/Features.php:188
9578
  #, fuzzy
9579
  #| msgid "+ Add keyword"
9580
  msgid "already active"
9581
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
9582
 
9583
  # @ squirrly-seo
9584
- #: view/Blocks/Features.php:192
9585
  #, fuzzy
9586
  #| msgid "Change the Website Icon"
9587
  msgid "activate feature"
@@ -9655,7 +9670,7 @@ msgid "Click to Maximize Box"
9655
  msgstr ""
9656
 
9657
  # @ squirrly-seo
9658
- #: view/Blocks/LiveAssistant.php:10 view/Blocks/LiveAssistant.php:42
9659
  #, fuzzy
9660
  #| msgid "Squirrly settings"
9661
  msgid "Squirrly Briefcase"
@@ -9697,158 +9712,146 @@ msgid "SLA Score"
9697
  msgstr "Squirrly Einstellungen"
9698
 
9699
  # @ squirrly-seo
9700
- #: view/Blocks/LiveAssistant.php:28
9701
- msgid "Use this keyword"
9702
- msgstr "Dieses Schlüsselwort verwenden"
 
 
9703
 
9704
- #: view/Blocks/LiveAssistant.php:32
9705
  msgid "Step 1"
9706
  msgstr ""
9707
 
9708
- #: view/Blocks/LiveAssistant.php:33
9709
  msgid "Step 2"
9710
  msgstr ""
9711
 
9712
- #: view/Blocks/LiveAssistant.php:33
9713
  msgid "Enhance"
9714
  msgstr ""
9715
 
9716
- #: view/Blocks/LiveAssistant.php:34
9717
  msgid "Step 3"
9718
  msgstr ""
9719
 
9720
- #: view/Blocks/LiveAssistant.php:34
9721
  msgid "Analysis"
9722
  msgstr ""
9723
 
9724
- #: view/Blocks/LiveAssistant.php:35
9725
  msgid "Extra"
9726
  msgstr ""
9727
 
9728
- #: view/Blocks/LiveAssistant.php:35
9729
  msgid "Deep"
9730
  msgstr ""
9731
 
9732
- #: view/Blocks/LiveAssistant.php:43
9733
- msgid "We recomend that you select at least 3 Keywords for best results."
9734
  msgstr ""
9735
 
9736
  # @ squirrly-seo
9737
- #: view/Blocks/LiveAssistant.php:48
9738
  #, fuzzy
9739
  #| msgid "Squirrly Keyword Research"
9740
  msgid "Search in Briefcase ..."
9741
  msgstr "Squirrly Erweiterte Suche!"
9742
 
9743
  # @ squirrly-seo
9744
- #: view/Blocks/LiveAssistant.php:52 view/Blocks/LiveAssistant.php:80
9745
- #: view/Blocks/LiveAssistant.php:124 view/Onboarding/Step1.php:85
9746
  #, fuzzy
9747
  #| msgid "SEO Software"
9748
  msgid "Continue"
9749
  msgstr "SEO Software"
9750
 
9751
  # @ squirrly-seo
9752
- #: view/Blocks/LiveAssistant.php:59
9753
  #, fuzzy
9754
  #| msgid "Blogs"
9755
  msgid "Squirrly Blogging Assistant"
9756
  msgstr "Blogs"
9757
 
9758
- #: view/Blocks/LiveAssistant.php:60
9759
  msgid "The keyword will be automatically be added as the image alt text."
9760
  msgstr ""
9761
 
9762
- #: view/Blocks/LiveAssistant.php:61
9763
  msgid ""
9764
  "Click on “Insert it!” and the incorporated Tweet(s) will add more substance "
9765
  "to your article."
9766
  msgstr ""
9767
 
9768
- #: view/Blocks/LiveAssistant.php:62
9769
  msgid ""
9770
  "Browse through Wikipedia articles to get more insight or quick fact-checking "
9771
  "on your topic."
9772
  msgstr ""
9773
 
9774
- #: view/Blocks/LiveAssistant.php:63
9775
  msgid "Find topic-related articles written by fellow bloggers or influencers."
9776
  msgstr ""
9777
 
9778
- #: view/Blocks/LiveAssistant.php:64
9779
  msgid ""
9780
  "Squirrly automatically browses your WordPress for previously written articles "
9781
  "you want to cite or insert"
9782
  msgstr ""
9783
 
9784
  # @ squirrly-seo
9785
- #: view/Blocks/LiveAssistant.php:71
9786
  msgid "Images"
9787
  msgstr "Bilder"
9788
 
9789
  # @ squirrly-seo
9790
- #: view/Blocks/LiveAssistant.php:72
9791
  msgid "Twitter"
9792
  msgstr "Twitter"
9793
 
9794
  # @ squirrly-seo
9795
- #: view/Blocks/LiveAssistant.php:73
9796
  msgid "Wiki"
9797
  msgstr "Wiki"
9798
 
9799
  # @ squirrly-seo
9800
- #: view/Blocks/LiveAssistant.php:74
9801
  msgid "Blogs"
9802
  msgstr "Blogs"
9803
 
9804
  # @ squirrly-seo
9805
- #: view/Blocks/LiveAssistant.php:75
9806
  msgid "My articles"
9807
  msgstr "Meine Artikel"
9808
 
9809
  # @ squirrly-seo
9810
- #: view/Blocks/LiveAssistant.php:84
9811
  msgid "Show only Copyright Free images"
9812
  msgstr "Nur urheberrechtfreie Bilder zeigen"
9813
 
9814
- # @ squirrly-seo
9815
  #: view/Blocks/LiveAssistant.php:94
9816
- #, fuzzy
9817
- #| msgid "Save settings"
9818
- msgid "Squirrly Live Assistant"
9819
- msgstr "Einstellungen speichern"
9820
-
9821
- #: view/Blocks/LiveAssistant.php:95
9822
  msgid ""
9823
  "Squirrly automatically checks your article to make sure it has the best SEO "
9824
  "chances"
9825
  msgstr ""
9826
 
9827
  # @ squirrly-seo
9828
- #: view/Blocks/LiveAssistant.php:104
9829
- #, fuzzy
9830
- #| msgid "date"
9831
- msgid "Update"
9832
- msgstr "Datum"
9833
-
9834
- # @ squirrly-seo
9835
- #: view/Blocks/LiveAssistant.php:132
9836
  #, fuzzy
9837
  #| msgid "Save settings"
9838
  msgid "Squirrly Focus Pages"
9839
  msgstr "Einstellungen speichern"
9840
 
9841
- #: view/Blocks/LiveAssistant.php:133
9842
  msgid ""
9843
  "Focus Pages bring you clear methods to take your content from never found to "
9844
  "always found on Google."
9845
  msgstr ""
9846
 
9847
- #: view/Blocks/LiveAssistant.php:139
9848
  msgid "Need a deeper analysis of this content?"
9849
  msgstr ""
9850
 
9851
- #: view/Blocks/LiveAssistant.php:140
9852
  msgid ""
9853
  "Add this page/article as a focus page and take your content from never found "
9854
  "to always found on Google. Rank your pages by influencing the right ranking "
@@ -9856,7 +9859,7 @@ msgid ""
9856
  msgstr ""
9857
 
9858
  # @ squirrly-seo
9859
- #: view/Blocks/LiveAssistant.php:143
9860
  #, fuzzy
9861
  #| msgid "Save settings"
9862
  msgid "Set Focus Pages"
@@ -9909,7 +9912,12 @@ msgstr ""
9909
  msgid "Sign Up"
9910
  msgstr "Anmelden"
9911
 
9912
- #: view/Blocks/Menu.php:47 view/Blocks/Menu.php:84 view/Blocks/Menu.php:128
 
 
 
 
 
9913
  msgid "Back To Home"
9914
  msgstr ""
9915
 
@@ -9958,7 +9966,7 @@ msgid "Please save the post first to be able to edit the Squirrly SEO Snippet"
9958
  msgstr ""
9959
 
9960
  #: view/Blocks/Snippet.php:151 view/Blocks/Snippet.php:685
9961
- #: view/Blocks/Snippet.php:947 view/Onboarding/Step1.php:84
9962
  msgid "Cancel"
9963
  msgstr ""
9964
 
@@ -10378,99 +10386,6 @@ msgid ""
10378
  "provider`s support team"
10379
  msgstr ""
10380
 
10381
- # @ squirrly-seo
10382
- #: view/Blocks/Support.php:8
10383
- msgid "Go to Profile"
10384
- msgstr "Zum Profil"
10385
-
10386
- # @ squirrly-seo
10387
- #: view/Blocks/Support.php:8 view/Blocks/Support.php:9
10388
- msgid "Profile"
10389
- msgstr "Profil"
10390
-
10391
- # @ squirrly-seo
10392
- #: view/Blocks/Support.php:22
10393
- msgid "Need Help with Squirrly SEO?"
10394
- msgstr "Brauchen Sie Hilfe mit Squirrly SEO?"
10395
-
10396
- #: view/Blocks/Support.php:24 view/Blocks/Support.php:91
10397
- #, php-format
10398
- msgid "10 AM to 4 PM (GMT): Mon-Fri %sby contact form%s."
10399
- msgstr ""
10400
-
10401
- #: view/Blocks/Support.php:25 view/Blocks/Support.php:92
10402
- #, php-format
10403
- msgid "How To Squirrly %swebsite%s."
10404
- msgstr ""
10405
-
10406
- #: view/Blocks/Support.php:26 view/Blocks/Support.php:93
10407
- #, php-format
10408
- msgid "Facebook %sSupport Community%s."
10409
- msgstr ""
10410
-
10411
- # @ squirrly-seo
10412
- #: view/Blocks/Support.php:27 view/Blocks/Support.php:94
10413
- #, fuzzy, php-format
10414
- #| msgid "Description:"
10415
- msgid "Facebook %sMessenger%s."
10416
- msgstr "Beschreibung:"
10417
-
10418
- #: view/Blocks/Support.php:28
10419
- #, php-format
10420
- msgid "Twitter %sSupport%s."
10421
- msgstr ""
10422
-
10423
- # @ squirrly-seo
10424
- #: view/Blocks/Support.php:36
10425
- msgid "How was your Squirrly experience today?"
10426
- msgstr "Wie war Ihre Squirrly Erfahrung heute?"
10427
-
10428
- #: view/Blocks/Support.php:43
10429
- msgid "Annoying"
10430
- msgstr ""
10431
-
10432
- #: view/Blocks/Support.php:47
10433
- msgid "Bad"
10434
- msgstr ""
10435
-
10436
- #: view/Blocks/Support.php:51
10437
- msgid "Nice"
10438
- msgstr ""
10439
-
10440
- #: view/Blocks/Support.php:55
10441
- msgid "Great"
10442
- msgstr ""
10443
-
10444
- #: view/Blocks/Support.php:59
10445
- msgid "Love it"
10446
- msgstr ""
10447
-
10448
- # @ squirrly-seo
10449
- #: view/Blocks/Support.php:71
10450
- msgid "How was Squirrly today?"
10451
- msgstr "Wie war Squirrly heute?"
10452
-
10453
- # @ squirrly-seo
10454
- #: view/Blocks/Support.php:86
10455
- msgid "Send feedback"
10456
- msgstr "Feedback senden"
10457
-
10458
- #: view/Blocks/Support.php:90
10459
- msgid "For more support:"
10460
- msgstr ""
10461
-
10462
- #: view/Blocks/Support.php:95
10463
- #, php-format
10464
- msgid "New Lessons Mon. and Tue. on %sTwitter%s."
10465
- msgstr ""
10466
-
10467
- # @ squirrly-seo
10468
- #: view/Blocks/Support.php:100
10469
- #, fuzzy
10470
- #| msgid "Thank you! You can send us a happy face tomorow too."
10471
- msgid "Thank you! You can send us a happy face tomorrow too."
10472
- msgstr "Danke! Sie können uns auch morgen ein fröhliches Gesicht senden."
10473
-
10474
  #: view/Blocks/Toolbar.php:13
10475
  msgid "SEO Beginner"
10476
  msgstr ""
@@ -10790,6 +10705,11 @@ msgstr "Ihre E-Mail Adresse:"
10790
  msgid "Details"
10791
  msgstr "Ihre E-Mail Adresse:"
10792
 
 
 
 
 
 
10793
  #: view/FocusPages/FocusPageRow.php:130
10794
  msgid "Upgrade Plan"
10795
  msgstr ""
@@ -11120,14 +11040,14 @@ msgstr ""
11120
  msgid "Learn how you can import the same settings on this site as well"
11121
  msgstr ""
11122
 
11123
- #: view/Onboarding/Step1.php:75
11124
  #, fuzzy
11125
  #| msgid "Optimize for Keyword"
11126
  msgid "What will be activated"
11127
  msgstr "Schlüsselwort optimieren"
11128
 
11129
  # @ squirrly-seo
11130
- #: view/Onboarding/Step1.php:81
11131
  #, fuzzy
11132
  #| msgid "Squirrly LIVE SEO assistant"
11133
  msgid "Squirrly Sitemap XML"
@@ -13858,6 +13778,63 @@ msgstr "Squirrly Einstellungen"
13858
  msgid "https://plugin.squirrly.co"
13859
  msgstr ""
13860
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13861
  # @ squirrly-seo
13862
  #, fuzzy
13863
  #~| msgid "Could not send the email..."
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: de_DE\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
92
  msgstr "Der Code für Facebook ist falsch."
93
 
94
  # @ squirrly-seo
95
+ #: classes/helpers/Tools.php:77
96
  #, fuzzy
97
  #| msgid "Save settings"
98
  msgid "Getting started"
99
  msgstr "Einstellungen speichern"
100
 
101
  # @ squirrly-seo
102
+ #: classes/helpers/Tools.php:103
103
  #, fuzzy
104
  #| msgid "Competition:"
105
  msgid "Documentation"
106
  msgstr "Wettbewerb:"
107
 
108
+ #: classes/helpers/Tools.php:104
109
  msgid "Leave a review"
110
  msgstr ""
111
 
112
+ #: classes/helpers/Tools.php:543 classes/helpers/Tools.php:600
113
  msgid "Category"
114
  msgstr ""
115
 
116
+ #: classes/helpers/Tools.php:562 classes/helpers/Tools.php:619
117
  msgid "Tag"
118
  msgstr ""
119
 
120
+ #: classes/helpers/Tools.php:581
121
  msgid "Format"
122
  msgstr ""
123
 
124
+ #: classes/helpers/Tools.php:638
125
  msgid "Shipping Option"
126
  msgstr ""
127
 
128
+ #: classes/helpers/Tools.php:676
129
  msgid "Author at"
130
  msgstr ""
131
 
132
+ #: classes/helpers/Tools.php:714
133
  msgid "Are you looking for"
134
  msgstr ""
135
 
136
  # @ squirrly-seo
137
+ #: classes/helpers/Tools.php:715
138
  #, fuzzy
139
  #| msgid "Send Question"
140
  msgid "These are the results for"
141
  msgstr "Senden Sie Ihre Frage"
142
 
143
  # @ squirrly-seo
144
+ #: classes/helpers/Tools.php:715
145
  #, fuzzy
146
  #| msgid "Upload error: Could not upload the favicon."
147
  msgid "that you can find on our website."
148
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
149
 
150
  # @ squirrly-seo
151
+ #: classes/helpers/Tools.php:751
152
  #, fuzzy
153
  #| msgid "No results found!"
154
  msgid "Page not found"
155
  msgstr "Keine Ergebnisse gefunden!"
156
 
157
  # @ squirrly-seo
158
+ #: classes/helpers/Tools.php:752
159
  #, fuzzy
160
  #| msgid "Upload error: Could not upload the favicon."
161
  msgid "This page could not be found on our website."
162
  msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
163
 
164
+ #: classes/helpers/Tools.php:1157
165
  msgid "For better text comparison you need to install PHP mbstring extension."
166
  msgstr ""
167
 
373
 
374
  # @ squirrly-seo
375
  #: controllers/Assistant.php:114 controllers/Assistant.php:141
376
+ #: controllers/Audits.php:395 controllers/Automation.php:79
377
+ #: controllers/Automation.php:119 controllers/Automation.php:155
378
+ #: controllers/Onboarding.php:205 controllers/Post.php:380
379
  #: controllers/Ranking.php:156 controllers/SeoSettings.php:102
380
  #: controllers/SeoSettings.php:157 controllers/SeoSettings.php:426
381
  #, fuzzy
383
  msgid "Saved"
384
  msgstr "Schlüsselwort:"
385
 
386
+ #: controllers/Assistant.php:120 controllers/Automation.php:135
387
+ #: controllers/BulkSeo.php:75 controllers/Patterns.php:124
388
+ #: controllers/Post.php:325 controllers/Post.php:358 controllers/Post.php:393
 
389
  #: controllers/PostsList.php:272 controllers/Research.php:215
390
  #: controllers/Research.php:222 controllers/Research.php:260
391
  #: controllers/Research.php:282 controllers/Research.php:305
484
  msgstr ""
485
 
486
  # @ squirrly-seo
487
+ #: controllers/Automation.php:126 controllers/Automation.php:163
488
  #, fuzzy
489
  #| msgid "Could not send the email..."
490
  msgid "Could not add the post type."
508
 
509
  # @ squirrly-seo
510
  #: controllers/CheckSeo.php:345 controllers/Patterns.php:27
511
+ #: controllers/Research.php:324 controllers/Research.php:355
512
+ #: controllers/Research.php:409 controllers/Research.php:539
513
+ #: controllers/Research.php:755 models/LiveAssistant.php:45
514
  #: view/Blocks/Snippet.php:1300
515
  #, fuzzy
516
  #| msgid "Keyword:"
562
  msgid "The focus page is deleted"
563
  msgstr ""
564
 
565
+ #: controllers/Menu.php:93
566
  #, php-format
567
  msgid ""
568
  "An error occurred during activation. If this error persists, please contact "
569
  "us at: %s"
570
  msgstr ""
571
 
572
+ #: controllers/Menu.php:130
573
  msgid "Dashboard"
574
  msgstr ""
575
 
576
  # @ squirrly-seo
577
+ #: controllers/Menu.php:244 models/CheckSeo.php:194 models/CheckSeo.php:558
578
  #: models/CheckSeo.php:572 models/CheckSeo.php:586 models/CheckSeo.php:600
579
  #: models/CheckSeo.php:642
580
  #, fuzzy
582
  msgid "SEO Snippet"
583
  msgstr "Squirrly LIVE SEO-Assistent"
584
 
585
+ #: controllers/Menu.php:255 controllers/Snippet.php:180
586
  msgid "Custom SEO"
587
  msgstr ""
588
 
589
  # @ squirrly-seo
590
+ #: controllers/Menu.php:281
591
  #, fuzzy
592
  #| msgid "Squirrly settings"
593
  msgid "Squirrly SEO"
594
  msgstr "Squirrly Einstellungen"
595
 
596
+ # @ squirrly-seo
597
+ #: controllers/Menu.php:424 view/Blocks/LiveAssistant.php:93
598
+ #, fuzzy
599
+ #| msgid "Save settings"
600
+ msgid "Squirrly Live Assistant"
601
+ msgstr "Einstellungen speichern"
602
+
603
  # @ squirrly-seo
604
  #: controllers/Onboarding.php:91 view/Onboarding/Step1.php:22
605
  #, fuzzy
659
  msgid "Saved! This is how the preview looks like"
660
  msgstr ""
661
 
662
+ #: controllers/Post.php:383 controllers/Post.php:407
663
  msgid "Can't get the post URL"
664
  msgstr ""
665
 
666
+ #: controllers/Post.php:412
667
  msgid "Invalid request"
668
  msgstr ""
669
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
670
  #: controllers/PostsList.php:112 models/PostsList.php:23
671
  #, fuzzy
672
  #| msgid "Optimize for Keyword"
1002
  msgid "We could not create your account. Please enter a valid email."
1003
  msgstr ""
1004
 
1005
+ #: core/Blocklogin.php:82 core/Blocklogin.php:132
1006
  #, php-format
1007
  msgid ""
1008
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
1009
  "webmaster) and request them to add %s to their IP whitelist."
1010
  msgstr ""
1011
 
1012
+ #: core/Blocklogin.php:85
1013
  msgid "Your email is not set. Please enter a valid email."
1014
  msgstr ""
1015
 
1016
  # @ squirrly-seo
1017
+ #: core/Blocklogin.php:108
1018
  msgid "Wrong email or password!"
1019
  msgstr "Benutzername oder Passwort falsch!"
1020
 
1021
  # @ squirrly-seo
1022
+ #: core/Blocklogin.php:111
1023
  #, fuzzy
1024
  #| msgid "You can use this account only for the URL you registered first!"
1025
  msgid "You can only use this account for the URL you registered first!"
1027
  "Dieses Konto können Sie nur für die URL benutzen, die Sie zuerst registriert "
1028
  "haben!"
1029
 
1030
+ #: core/Blocklogin.php:114
1031
  msgid "You disconnected your website from"
1032
  msgstr ""
1033
 
1034
  # @ squirrly-seo
1035
+ #: core/Blocklogin.php:118
1036
  #, fuzzy
1037
  #| msgid "An error occured."
1038
  msgid "An error occured."
1039
  msgstr "Ein Fehler ist aufgetreten."
1040
 
1041
  # @ squirrly-seo
1042
+ #: core/Blocklogin.php:136
1043
  msgid "Both fields are required."
1044
  msgstr "Beide Felder sind Pflichtfelder."
1045
 
4073
  #: models/CheckSeo.php:523
4074
  #, php-format
4075
  msgid ""
4076
+ "Go to %s Squirrly > All Features %s and make sure that SEO Automation is "
4077
+ "activated."
4078
  msgstr ""
4079
 
4080
  #: models/CheckSeo.php:524
5277
  msgid "Focus Page could not be verified (error: %s)"
5278
  msgstr ""
5279
 
5280
+ #: models/Compatibility.php:437
5281
  msgid "MPN"
5282
  msgstr ""
5283
 
5284
+ #: models/Compatibility.php:438
5285
  msgid "Add Manufacturer Part Number (MPN)"
5286
  msgstr ""
5287
 
5288
+ #: models/Compatibility.php:441
5289
  msgid "GTIN"
5290
  msgstr ""
5291
 
5292
+ #: models/Compatibility.php:442
5293
  msgid "Add Global Trade Item Number (GTIN)"
5294
  msgstr ""
5295
 
5296
+ #: models/Compatibility.php:445
5297
  msgid "EAN (GTIN-13)"
5298
  msgstr ""
5299
 
5300
+ #: models/Compatibility.php:446
5301
  msgid ""
5302
  "Add Global Trade Item Number (GTIN) for the major GTIN used outside of North "
5303
  "America"
5304
  msgstr ""
5305
 
5306
+ #: models/Compatibility.php:449
5307
  msgid "UPC (GTIN-12)"
5308
  msgstr ""
5309
 
5310
+ #: models/Compatibility.php:450
5311
  msgid "Add Global Trade Item Number (GTIN) for North America"
5312
  msgstr ""
5313
 
5314
+ #: models/Compatibility.php:453
5315
  msgid "ISBN"
5316
  msgstr ""
5317
 
5318
+ #: models/Compatibility.php:454
5319
  msgid "Add Global Trade Item Number (GTIN) for books"
5320
  msgstr ""
5321
 
5322
+ #: models/Compatibility.php:459
5323
  msgid "Brand Name"
5324
  msgstr ""
5325
 
5326
+ #: models/Compatibility.php:460
5327
  msgid "Add Product Brand Name"
5328
  msgstr ""
5329
 
5415
  msgid "Impressions"
5416
  msgstr ""
5417
 
5418
+ #: models/FocusPages.php:43 view/Ranking/Gscsync.php:35
5419
+ #: view/Ranking/Rankings.php:372
5420
+ msgid "Clicks"
5421
+ msgstr ""
5422
+
5423
+ # @ squirrly-seo
5424
+ #: models/Ico.php:44
5425
+ #, fuzzy
5426
+ #| msgid "File type error: Only JPEG, JPG, GIF or PNG files are allowed."
5427
+ msgid "File type error: Only ICO, JPEG, JPG, GIF or PNG files are allowed."
5428
+ msgstr "Dateityp Fehler: Nur JPEG, JPG, GIF oder PNG-Dateien sind erlaubt."
5429
+
5430
+ # @ squirrly-seo
5431
+ #: models/Ico.php:53
5432
+ msgid "Delete error: Could not delete the old favicon."
5433
+ msgstr "Lösch Fehler: Konnte das alte Favicon nicht löschen."
5434
+
5435
+ # @ squirrly-seo
5436
+ #: models/Ico.php:60
5437
+ msgid "Upload error: Could not upload the favicon."
5438
+ msgstr "Upload Fehler: Konnte das Favicon nicht hochladen."
5439
+
5440
+ # @ squirrly-seo
5441
+ #: models/Ico.php:66
5442
+ msgid "Permission error: Could not change the favicon permissions."
5443
+ msgstr "Permission Fehler: Konnte Favicon-Berechtigungen nicht ändern."
5444
+
5445
+ # @ squirrly-seo
5446
+ #: models/Ico.php:87
5447
+ msgid ""
5448
+ "ICO Error: Could not create the ICO from file. Try with another file type."
5449
+ msgstr ""
5450
+ "ICO Fehler: konnte ICO aus der Datei nicht erstellen. Versuchen Sie es mit "
5451
+ "einem anderen Dateityp."
5452
+
5453
+ # @ squirrly-seo
5454
+ #: models/Ico.php:104
5455
+ msgid "The favicon has been updated."
5456
+ msgstr "Das Favicon wurde aktualisiert."
5457
+
5458
+ # @ squirrly-seo
5459
+ #: models/LiveAssistant.php:42
5460
+ msgid "Keyword:"
5461
+ msgstr "Schlüsselwort:"
5462
+
5463
+ # @ squirrly-seo
5464
+ #: models/LiveAssistant.php:43
5465
+ msgid "date"
5466
+ msgstr "Datum"
5467
+
5468
+ #: models/LiveAssistant.php:44
5469
+ msgid ""
5470
+ "To load the Live Assistant and optimize this page, click to connect to "
5471
+ "Squirrly Cloud."
5472
+ msgstr ""
5473
+
5474
+ # @ squirrly-seo
5475
+ #: models/LiveAssistant.php:46
5476
+ msgid "Read it!"
5477
+ msgstr "Lesen!"
5478
+
5479
+ # @ squirrly-seo
5480
+ #: models/LiveAssistant.php:47
5481
+ msgid "Insert it!"
5482
+ msgstr "Einfügen!"
5483
+
5484
+ # @ squirrly-seo
5485
+ #: models/LiveAssistant.php:48
5486
+ msgid "Reference"
5487
+ msgstr "Referenz"
5488
+
5489
+ # @ squirrly-seo
5490
+ #: models/LiveAssistant.php:49
5491
+ msgid "Insert as box"
5492
+ msgstr "Als Box einfügen"
5493
+
5494
+ # @ squirrly-seo
5495
+ #: models/LiveAssistant.php:50
5496
+ #, fuzzy
5497
+ #| msgid "Insert it!"
5498
+ msgid "Insert Link"
5499
+ msgstr "Einfügen!"
5500
+
5501
+ # @ squirrly-seo
5502
+ #: models/LiveAssistant.php:51
5503
+ msgid "Not relevant?"
5504
+ msgstr "Nicht relevant?"
5505
+
5506
+ # @ squirrly-seo
5507
+ #: models/LiveAssistant.php:52
5508
+ msgid "Insert in your article"
5509
+ msgstr "In Artikel einfügen"
5510
+
5511
+ # @ squirrly-seo
5512
+ #: models/LiveAssistant.php:53
5513
+ #, fuzzy
5514
+ #| msgid "An error occured while logging in!"
5515
+ msgid ":( An error occurred while processing your request. Please try again"
5516
+ msgstr "Bei der Anmeldung ist ein Fehler aufgetreten!"
5517
+
5518
+ # @ squirrly-seo
5519
+ #: models/LiveAssistant.php:54
5520
+ #, fuzzy
5521
+ #| msgid "Squirrly Keyword Research"
5522
+ msgid "Searching ... "
5523
+ msgstr "Squirrly Erweiterte Suche!"
5524
+
5525
+ # @ squirrly-seo
5526
+ #: models/LiveAssistant.php:55
5527
+ msgid "No results found!"
5528
+ msgstr "Keine Ergebnisse gefunden!"
5529
+
5530
+ #: models/LiveAssistant.php:56
5531
+ #, php-format
5532
+ msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
5533
+ msgstr ""
5534
+
5535
+ #: models/LiveAssistant.php:57
5536
+ msgid "Has creative commons attributes"
5537
+ msgstr ""
5538
+
5539
+ # @ squirrly-seo
5540
+ #: models/LiveAssistant.php:58
5541
+ #, fuzzy
5542
+ #| msgid "Description:"
5543
+ msgid "No known copyright restrictions"
5544
+ msgstr "Beschreibung:"
5545
+
5546
+ #: models/LiveAssistant.php:59
5547
+ msgid ""
5548
+ "You haven`t used Squirrly SEO to optimize your article. Do you want to "
5549
+ "optimize for a keyword before publishing?"
5550
+ msgstr ""
5551
+ "You haven`t used Squirrly SEO to optimize your article. Do you want to "
5552
+ "optimize for a keyword before publishing?"
5553
+
5554
+ #: models/LiveAssistant.php:60
5555
+ msgid "Your Subscription has Expired"
5556
+ msgstr ""
5557
+
5558
+ # @ squirrly-seo
5559
+ #: models/LiveAssistant.php:61
5560
+ #, fuzzy
5561
+ #| msgid "Do a research"
5562
+ msgid "There are no keywords saved in briefcase yet"
5563
+ msgstr "Recherchieren"
5564
+
5565
+ #: models/LiveAssistant.php:62
5566
+ #, php-format
5567
+ msgid "Congratulations! Your article is 100% optimized!"
5568
+ msgstr ""
5569
+
5570
+ #: models/LiveAssistant.php:63
5571
+ #, php-format
5572
+ msgid "appears too many times. Try to remove %s of them"
5573
+ msgstr ""
5574
+
5575
+ # @ squirrly-seo
5576
+ #: models/LiveAssistant.php:64
5577
+ #, fuzzy, php-format
5578
+ #| msgid "Squirrly Keyword Research"
5579
+ msgid "write %s more words"
5580
+ msgstr "Squirrly Erweiterte Suche!"
5581
+
5582
+ # @ squirrly-seo
5583
+ #: models/LiveAssistant.php:65
5584
+ #, fuzzy, php-format
5585
+ #| msgid "Insert in your article"
5586
+ msgid "Add the keyword in the %s of your article"
5587
+ msgstr "In Artikel einfügen"
5588
+
5589
+ #: models/LiveAssistant.php:66
5590
+ msgid "Click to keep the highlight on"
5591
+ msgstr ""
5592
+
5593
+ #: models/LiveAssistant.php:67
5594
+ msgid "introduction"
5595
+ msgstr ""
5596
+
5597
+ # @ squirrly-seo
5598
+ #: models/LiveAssistant.php:68
5599
+ #, fuzzy, php-format
5600
+ #| msgid "Use more words in one keyword"
5601
+ msgid "Write more words after the %s keyword"
5602
+ msgstr "Verwenden Sie mehrere Wörter in einem Schlüsselwort"
5603
+
5604
+ #: models/LiveAssistant.php:69
5605
+ msgid "or use synonyms"
5606
+ msgstr ""
5607
+
5608
+ # @ squirrly-seo
5609
+ #: models/LiveAssistant.php:70
5610
+ #, fuzzy, php-format
5611
+ #| msgid "+ Add keyword"
5612
+ msgid "add %s more word(s)"
5613
+ msgstr "Fügen Sie ein anderes Schlüsselwort ein"
5614
+
5615
+ # @ squirrly-seo
5616
+ #: models/LiveAssistant.php:71
5617
+ #, fuzzy, php-format
5618
+ #| msgid "+ Add keyword"
5619
+ msgid "or remove %s word(s)"
5620
+ msgstr "Fügen Sie ein anderes Schlüsselwort ein"
5621
+
5622
+ #: models/LiveAssistant.php:72
5623
+ #, php-format
5624
+ msgid "add the selected keyword %s more time(s) "
5625
+ msgstr ""
5626
+
5627
+ # @ squirrly-seo
5628
+ #: models/LiveAssistant.php:73
5629
+ #, fuzzy, php-format
5630
+ #| msgid "Squirrly Keyword Research"
5631
+ msgid "write %s more words to start calculating"
5632
+ msgstr "Squirrly Erweiterte Suche!"
5633
 
5634
  # @ squirrly-seo
5635
+ #: models/LiveAssistant.php:74
5636
  #, fuzzy
5637
+ #| msgid "+ Add keyword"
5638
+ msgid "Add to Briefcase"
5639
+ msgstr "Fügen Sie ein anderes Schlüsselwort ein"
5640
 
5641
  # @ squirrly-seo
5642
+ #: models/LiveAssistant.php:75
5643
+ #, fuzzy
5644
+ #| msgid "+ Add keyword"
5645
+ msgid "Add Keyword to Briefcase"
5646
+ msgstr "Fügen Sie ein anderes Schlüsselwort ein"
5647
 
5648
  # @ squirrly-seo
5649
+ #: models/LiveAssistant.php:76
5650
+ #, fuzzy
5651
+ #| msgid "Images"
5652
+ msgid "Select"
5653
+ msgstr "Bilder"
5654
 
5655
  # @ squirrly-seo
5656
+ #: models/LiveAssistant.php:77 view/Blocks/Snippet.php:133
5657
+ #: view/Blocks/Snippet.php:657 view/Blocks/Snippet.php:920
5658
+ #, fuzzy
5659
+ #| msgid "automatically"
5660
+ msgid "Auto Draft"
5661
+ msgstr "automatisch"
5662
 
5663
  # @ squirrly-seo
5664
+ #: models/LiveAssistant.php:78
5665
+ #, fuzzy
5666
+ #| msgid "Enter a keyword above!"
5667
+ msgid "Enter keyword above and press ENTER"
5668
+ msgstr "Geben Sie oben ein Schlüsselwort ein!"
 
5669
 
5670
  # @ squirrly-seo
5671
+ #: models/LiveAssistant.php:79
5672
+ #, fuzzy
5673
+ #| msgid "+ Add keyword"
5674
+ msgid "Add Keywords from Briefcase"
5675
+ msgstr "Fügen Sie ein anderes Schlüsselwort ein"
5676
+
5677
+ #: models/LiveAssistant.php:80
5678
+ msgid ""
5679
+ "Live Assistant was used to optimize this page with the Page Builder. Please "
5680
+ "go back and resume your optimization work there."
5681
+ msgstr ""
5682
 
5683
  #: models/Menu.php:120
5684
  msgid "First Step"
6403
  msgid "Plugin Install Process"
6404
  msgstr ""
6405
 
6406
+ #: models/Snippet.php:271
6407
  msgid "You don't have enough pemission to edit this article"
6408
  msgstr ""
6409
 
6410
  # @ squirrly-seo
6411
+ #: models/Snippet.php:374
6412
  #, fuzzy
6413
  #| msgid "Could not send the email..."
6414
  msgid "Error! Could not save the data."
6415
  msgstr "Konnte E-Mail nicht senden ..."
6416
 
6417
+ #: models/Snippet.php:379
6418
  msgid "Error! Invalid request."
6419
  msgstr ""
6420
 
6421
  # @ squirrly-seo
6422
+ #: models/Snippet.php:427
6423
  #, fuzzy
6424
  #| msgid "Could not send the email..."
6425
  msgid "Couldn't find the page"
6426
  msgstr "Konnte E-Mail nicht senden ..."
6427
 
6428
+ #: models/Snippet.php:444 models/Snippet.php:456
6429
  msgid "No Polylang translation for this post."
6430
  msgstr ""
6431
 
6444
  msgstr ""
6445
 
6446
  # @ squirrly-seo
6447
+ #: models/abstract/Assistant.php:120 view/Blocks/LiveAssistant.php:31
6448
  #, fuzzy
6449
  #| msgid "Keyword:"
6450
  msgid "Keywords"
8345
  msgid "Add New"
8346
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
8347
 
8348
+ #: view/Assistant/Assistant.php:53 view/Assistant/Settings.php:168
8349
  #: view/Audits/Addpage.php:200 view/Audits/Audit.php:136
8350
  #: view/Audits/Audits.php:50 view/Automation/Automation.php:394
8351
+ #: view/Automation/Settings.php:113 view/Automation/Types.php:113
8352
  #: view/BulkSeo/Bulkseo.php:267 view/FocusPages/Addpage.php:205
8353
  #: view/FocusPages/Pagelist.php:57 view/FocusPages/Pagelist.php:67
8354
  #: view/Ranking/Gscsync.php:118 view/Ranking/Rankings.php:465
8458
  msgstr ""
8459
 
8460
  # @ squirrly-seo
8461
+ #: view/Assistant/Settings.php:100
8462
  #, fuzzy
8463
  #| msgid "Description:"
8464
  msgid "Activate Live Assistant in Frontend"
8465
  msgstr "Beschreibung:"
8466
 
8467
+ #: view/Assistant/Settings.php:103
8468
  msgid ""
8469
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
8470
  "with Builders."
8471
  msgstr ""
8472
 
8473
+ #: view/Assistant/Settings.php:104
8474
+ #, php-format
8475
+ msgid "Supports %s Elementor Builder %s plugin."
8476
  msgstr ""
8477
 
8478
+ #: view/Assistant/Settings.php:105
8479
+ #, php-format
8480
+ msgid "Supports %s Oxygen Builder %s plugin."
8481
  msgstr ""
8482
 
8483
+ #: view/Assistant/Settings.php:106
8484
+ #, php-format
8485
+ msgid "Supports %s Divi Builder %s plugin (BETA)."
8486
+ msgstr ""
8487
+
8488
+ # @ squirrly-seo
8489
  #: view/Assistant/Settings.php:113
8490
+ #, fuzzy
8491
+ #| msgid "Save settings"
8492
+ msgid "Live Assistant Type"
8493
+ msgstr "Einstellungen speichern"
8494
+
8495
+ #: view/Assistant/Settings.php:118
8496
+ msgid "Auto"
8497
+ msgstr ""
8498
+
8499
+ #: view/Assistant/Settings.php:119
8500
+ msgid "Integrated Box"
8501
+ msgstr ""
8502
+
8503
+ #: view/Assistant/Settings.php:120
8504
+ msgid "Floating Box"
8505
+ msgstr ""
8506
+
8507
+ #: view/Assistant/Settings.php:128
8508
+ msgid "Places where you do NOT want Squirrly Live Assistant to load"
8509
+ msgstr ""
8510
+
8511
+ #: view/Assistant/Settings.php:134
8512
  msgid ""
8513
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
8514
  "post types."
8515
  msgstr ""
8516
 
8517
+ #: view/Assistant/Settings.php:140
8518
  #, fuzzy
8519
  #| msgid "Recent discussions:"
8520
  msgid "Exclusions"
8521
  msgstr "Bisherige Diskussionen:"
8522
 
8523
+ #: view/Assistant/Settings.php:142
8524
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
8525
  msgstr ""
8526
 
8527
  # @ squirrly-seo
8528
+ #: view/Assistant/Settings.php:163 view/Audits/Settings.php:46
8529
  #: view/Automation/Automation.php:356 view/Automation/Settings.php:105
8530
+ #: view/Ranking/Settings.php:334 view/SeoSettings/Jsonld.php:121
8531
+ #: view/SeoSettings/Jsonld.php:169 view/SeoSettings/Jsonld.php:226
8532
+ #: view/SeoSettings/Jsonld.php:307 view/SeoSettings/Jsonld.php:346
8533
+ #: view/SeoSettings/Jsonld.php:385 view/SeoSettings/Jsonld.php:445
8534
+ #: view/SeoSettings/Jsonld.php:485 view/SeoSettings/Jsonld.php:516
8535
+ #: view/SeoSettings/Metas.php:121 view/SeoSettings/Metas.php:161
8536
+ #: view/SeoSettings/Metas.php:195 view/SeoSettings/Social.php:282
8537
+ #: view/SeoSettings/Social.php:328 view/SeoSettings/Social.php:404
8538
+ #: view/SeoSettings/Social.php:456 view/SeoSettings/Tweaks.php:355
8539
+ #: view/SeoSettings/Tweaks.php:421 view/SeoSettings/Tweaks.php:477
8540
+ #: view/SeoSettings/Tweaks.php:534 view/SeoSettings/Tweaks.php:617
8541
+ #: view/SeoSettings/Webmaster.php:300 view/SeoSettings/Webmaster.php:326
8542
+ #: view/SeoSettings/Webmaster.php:406
8543
  #, fuzzy
8544
  #| msgid "Save settings"
8545
  msgid "Save Settings"
8546
  msgstr "Einstellungen speichern"
8547
 
8548
+ #: view/Assistant/Settings.php:170
8549
  msgid ""
8550
  "The Settings section allows you to set up your assistant just the way you "
8551
  "like it."
8552
  msgstr ""
8553
 
8554
+ #: view/Assistant/Settings.php:171
8555
  msgid ""
8556
  "Quickly enable or disable the settings available here based on your needs and "
8557
  "preferences."
8687
  "thumbs down element) and work on them to improve your score."
8688
  msgstr ""
8689
 
 
 
 
 
8690
  # @ squirrly-seo
8691
+ #: view/Audits/AuditPageRow.php:44
8692
  #, fuzzy
8693
  #| msgid "Could not send the email..."
8694
  msgid "Could not create the audit for this URL"
8695
  msgstr "Konnte E-Mail nicht senden ..."
8696
 
8697
  # @ squirrly-seo
8698
+ #: view/Audits/AuditPageRow.php:44
8699
  #, fuzzy
8700
  #| msgid "An error occured."
8701
  msgid "error code"
8702
  msgstr "Ein Fehler ist aufgetreten."
8703
 
8704
+ #: view/Audits/AuditPageRow.php:46
8705
  #, php-format
8706
  msgid ""
8707
  "The way your WordPress site is currently hosted can affect the way Squirrly "
8712
  msgstr ""
8713
 
8714
  # @ squirrly-seo
8715
+ #: view/Audits/AuditPageRow.php:48 view/Audits/AuditPageRow.php:75
8716
  #: view/FocusPages/FocusPageRow.php:132 view/FocusPages/FocusPageRow.php:217
8717
  #, fuzzy
8718
  #| msgid "Squirrly LIVE SEO assistant"
8719
  msgid "Inspect URL"
8720
  msgstr "Squirrly LIVE SEO-Assistent"
8721
 
8722
+ #: view/Audits/AuditPageRow.php:69 view/Audits/AuditStats.php:69
8723
+ #: view/Audits/AuditStats.php:96 view/FocusPages/FocusPageRow.php:112
8724
  #: view/FocusPages/FocusPageRow.php:211
8725
  msgid "Request New Audit"
8726
  msgstr ""
8727
 
8728
  # @ squirrly-seo
8729
+ #: view/Audits/AuditPageRow.php:78
8730
  #, fuzzy
8731
  #| msgid "Could not send the email..."
8732
  msgid "Do you want to delete the Audit Page?"
8733
  msgstr "Konnte E-Mail nicht senden ..."
8734
 
8735
+ #: view/Audits/AuditPageRow.php:84
8736
  msgid "Remove Page from Audit"
8737
  msgstr ""
8738
 
8771
  "and %srefresh the page%s."
8772
  msgstr ""
8773
 
8774
+ #: view/Audits/AuditStats.php:31
8775
  msgid ""
8776
  "Your score is low. A medium score is over 50, and a good score is over 80."
8777
  msgstr ""
8778
 
8779
+ #: view/Audits/AuditStats.php:33
8780
  msgid "Your score is medium. A good score is over 80."
8781
  msgstr ""
8782
 
8783
+ #: view/Audits/AuditStats.php:35
8784
  msgid "Your score is good. Keep it as high as posible for good results."
8785
  msgstr ""
8786
 
8787
  # @ squirrly-seo
8788
+ #: view/Audits/AuditStats.php:42 view/Audits/AuditStats.php:252
8789
  #: view/Audits/Compare.php:72
8790
  #, fuzzy
8791
  #| msgid "Squirrly settings"
8793
  msgstr "Squirrly Einstellungen"
8794
 
8795
  # @ squirrly-seo
8796
+ #: view/Audits/AuditStats.php:54
8797
  #, fuzzy
8798
  #| msgid "Squirrly settings"
8799
  msgid "Your audit score is"
8800
  msgstr "Squirrly Einstellungen"
8801
 
8802
  # @ squirrly-seo
8803
+ #: view/Audits/AuditStats.php:57 view/Audits/AuditStats.php:85
8804
  #, fuzzy
8805
  #| msgid "Your E-mail:"
8806
  msgid "Audit Date"
8807
  msgstr "Ihre E-Mail Adresse:"
8808
 
8809
+ # @ squirrly-seo
8810
+ #: view/Audits/AuditStats.php:66 view/Audits/AuditStats.php:93
8811
+ #, fuzzy
8812
+ #| msgid "Squirrly settings"
8813
+ msgid "In progress"
8814
+ msgstr "Squirrly Einstellungen"
8815
 
8816
+ #: view/Audits/AuditStats.php:78
8817
  msgid "Add a new page for Audit"
8818
  msgstr ""
8819
 
8820
  # @ squirrly-seo
8821
+ #: view/Audits/AuditStats.php:111
8822
  #, fuzzy
8823
  #| msgid "Squirrly settings"
8824
  msgid "Audit in progress"
8825
  msgstr "Squirrly Einstellungen"
8826
 
8827
  # @ squirrly-seo
8828
+ #: view/Audits/AuditStats.php:117
8829
  #, fuzzy
8830
  #| msgid "Squirrly settings"
8831
  msgid "Audit not ready yet"
8832
  msgstr "Squirrly Einstellungen"
8833
 
8834
+ #: view/Audits/AuditStats.php:122
8835
  msgid "You can refresh the audit once every hour"
8836
  msgstr ""
8837
 
8838
+ #: view/Audits/AuditStats.php:123
8839
  msgid "Request Website Audit"
8840
  msgstr ""
8841
 
8842
+ #: view/Audits/AuditStats.php:142 view/Audits/AuditStats.php:254
8843
  #: view/Ranking/Rankings.php:407 view/Research/History.php:37
8844
  msgid "Date"
8845
  msgstr ""
8846
 
8847
  # @ squirrly-seo
8848
+ #: view/Audits/AuditStats.php:142
8849
  #, fuzzy
8850
  #| msgid "Images"
8851
  msgid "On-Page"
8852
  msgstr "Bilder"
8853
 
8854
  # @ squirrly-seo
8855
+ #: view/Audits/AuditStats.php:142
8856
  #, fuzzy
8857
  #| msgid "Images"
8858
  msgid "Off-Page"
8859
  msgstr "Bilder"
8860
 
8861
+ #: view/Audits/AuditStats.php:165
8862
  #, php-format
8863
  msgid "You've completed %s tasks from %s"
8864
  msgstr ""
8865
 
8866
+ #: view/Audits/AuditStats.php:186 view/Audits/Compare.php:53
8867
  msgid "Scores"
8868
  msgstr ""
8869
 
8870
+ #: view/Audits/AuditStats.php:187
8871
  #, php-format
8872
  msgid "the latest %s days evolution for Audit"
8873
  msgstr ""
8874
 
8875
+ #: view/Audits/AuditStats.php:209 view/FocusPages/FocusPageStats.php:135
8876
  #: view/Ranking/Rankings.php:149
8877
  msgid "Progress & Achievements"
8878
  msgstr ""
8879
 
8880
+ #: view/Audits/AuditStats.php:210
8881
  #, php-format
8882
  msgid "the latest %s days progress for Audit Pages"
8883
  msgstr ""
8884
 
8885
  # @ squirrly-seo
8886
+ #: view/Audits/AuditStats.php:218 view/FocusPages/FocusPageStats.php:145
8887
  #: view/Ranking/Rankings.php:178
8888
  #, fuzzy
8889
  #| msgid "No results found!"
8890
  msgid "No progress found yet"
8891
  msgstr "Keine Ergebnisse gefunden!"
8892
 
8893
+ #: view/Audits/AuditStats.php:230 view/Ranking/Rankings.php:191
8894
  msgid "Share Your Success"
8895
  msgstr ""
8896
 
8897
  # @ squirrly-seo
8898
+ #: view/Audits/AuditStats.php:237
8899
  #, fuzzy
8900
  #| msgid "Squirrly settings"
8901
  msgid "Audit History"
8902
  msgstr "Squirrly Einstellungen"
8903
 
8904
  # @ squirrly-seo
8905
+ #: view/Audits/AuditStats.php:244
8906
  #, fuzzy
8907
  #| msgid "Send Question"
8908
  msgid "Compare Audits"
8909
  msgstr "Senden Sie Ihre Frage"
8910
 
8911
  # @ squirrly-seo
8912
+ #: view/Audits/AuditStats.php:253
8913
  #, fuzzy
8914
  #| msgid "Images"
8915
  msgid "Page(s)"
8916
  msgstr "Bilder"
8917
 
8918
  # @ squirrly-seo
8919
+ #: view/Audits/AuditStats.php:270
8920
  #, fuzzy
8921
  #| msgid "Images"
8922
  msgid "pages"
8923
  msgstr "Bilder"
8924
 
8925
+ #: view/Audits/AuditStats.php:274
8926
  msgid "Show Latest Audit"
8927
  msgstr ""
8928
 
8929
  # @ squirrly-seo
8930
+ #: view/Audits/AuditStats.php:274
8931
  #, fuzzy
8932
  #| msgid "automatically"
8933
  msgid "Show Audit"
9364
  msgstr ""
9365
 
9366
  # @ squirrly-seo
9367
+ #: view/Automation/Types.php:100
9368
  #, fuzzy
9369
  #| msgid "automatically"
9370
  msgid "All the post types are sent for Automation"
9371
  msgstr "automatisch"
9372
 
9373
  # @ squirrly-seo
9374
+ #: view/Automation/Types.php:101
9375
  #, fuzzy
9376
  #| msgid "automatically"
9377
  msgid "Start Automation Setup"
9378
  msgstr "automatisch"
9379
 
9380
+ #: view/Automation/Types.php:115
9381
  msgid ""
9382
  "Add ALL Your Post Types to our Automation section, to ensure all your site is "
9383
  "covered with excellent SEO."
9384
  msgstr ""
9385
 
9386
+ #: view/Blocks/Account.php:28
9387
  #, php-format
9388
  msgid "Due Date: %s"
9389
  msgstr ""
9390
 
9391
+ #: view/Blocks/Account.php:32
9392
+ msgid "Expires: never"
9393
+ msgstr ""
9394
+
9395
  # @ squirrly-seo
9396
+ #: view/Blocks/Account.php:46
9397
  #, fuzzy
9398
  #| msgid "Keyword:"
9399
  msgid "Keywords Lookups"
9400
  msgstr "Schlüsselwort:"
9401
 
9402
+ #: view/Blocks/Account.php:61
9403
  msgid "SERP Lookups"
9404
  msgstr ""
9405
 
9406
  # @ squirrly-seo
9407
+ #: view/Blocks/Account.php:74
9408
  #, fuzzy
9409
  #| msgid "Save settings"
9410
  msgid "Focus Pages Lookup"
9411
  msgstr "Einstellungen speichern"
9412
 
9413
  # @ squirrly-seo
9414
+ #: view/Blocks/Account.php:86
9415
  #, fuzzy
9416
  #| msgid "Squirrly settings"
9417
  msgid "Audit Pages Lookup"
9418
  msgstr "Squirrly Einstellungen"
9419
 
9420
+ #: view/Blocks/Account.php:95
9421
  msgid "Reset day"
9422
  msgstr ""
9423
 
9424
+ #: view/Blocks/Account.php:102
9425
  msgid "Want to hide this section from your customes?"
9426
  msgstr ""
9427
 
9428
  # @ squirrly-seo
9429
+ #: view/Blocks/Account.php:108
9430
  #, fuzzy
9431
  #| msgid "Squirrly.co Login"
9432
  msgid "Upgrade your account"
9433
  msgstr "Squirrly.co Login"
9434
 
9435
  # @ squirrly-seo
9436
+ #: view/Blocks/Account.php:112
9437
  #, fuzzy
9438
  #| msgid "Plugin Support"
9439
  msgid "Billing info"
9440
  msgstr "Plugin Support"
9441
 
9442
  # @ squirrly-seo
9443
+ #: view/Blocks/Account.php:116
9444
  #, fuzzy
9445
  #| msgid "Squirrly settings"
9446
  msgid "Account settings"
9447
  msgstr "Squirrly Einstellungen"
9448
 
9449
  # @ squirrly-seo
9450
+ #: view/Blocks/Account.php:120
9451
  #, fuzzy
9452
  #| msgid "Squirrly Keyword Research"
9453
  msgid "Squirrly Cloud"
9454
  msgstr "Squirrly Erweiterte Suche!"
9455
 
9456
  # @ squirrly-seo
9457
+ #: view/Blocks/Account.php:124
9458
  msgid "Support"
9459
  msgstr "Support"
9460
 
9494
  msgid "Rankings Mastery Tasks"
9495
  msgstr ""
9496
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9497
  #: view/Blocks/Dashboard.php:16
9498
  msgid "Congratulations! you have success messages"
9499
  msgstr ""
9539
  msgstr ""
9540
 
9541
  # @ squirrly-seo
9542
+ #: view/Blocks/Features.php:44 view/Blocks/Features.php:209
9543
  #, fuzzy
9544
  #| msgid "Could not send the email..."
9545
  msgid "Do you want to search in the 650 features list?"
9546
  msgstr "Konnte E-Mail nicht senden ..."
9547
 
9548
  # @ squirrly-seo
9549
+ #: view/Blocks/Features.php:46 view/Blocks/Features.php:211
9550
  #, fuzzy
9551
  #| msgid "Could not send the email..."
9552
  msgid "Do you want to see all 650 features list?"
9563
  msgid "Search Feature"
9564
  msgstr "Schlüsselwort:"
9565
 
9566
+ #: view/Blocks/Features.php:156
9567
  msgid "start feature setup"
9568
  msgstr ""
9569
 
9570
  # @ squirrly-seo
9571
+ #: view/Blocks/Features.php:160
9572
  #, fuzzy
9573
  #| msgid "Go to Profile"
9574
  msgid "see feature"
9575
  msgstr "Zum Profil"
9576
 
9577
+ #: view/Blocks/Features.php:176
9578
  msgid "click to deactivate"
9579
  msgstr ""
9580
 
9581
+ #: view/Blocks/Features.php:176
9582
  msgid "click to activate"
9583
  msgstr ""
9584
 
9585
+ #: view/Blocks/Features.php:182
9586
  #, fuzzy
9587
  #| msgid "This email connects you to Squirrly.co"
9588
  msgid "connect to cloud"
9589
  msgstr "This email connects you to Squirrly.co"
9590
 
9591
  # @ squirrly-seo
9592
+ #: view/Blocks/Features.php:186
9593
  #, fuzzy
9594
  #| msgid "+ Add keyword"
9595
  msgid "already active"
9596
  msgstr "Fügen Sie ein anderes Schlüsselwort ein"
9597
 
9598
  # @ squirrly-seo
9599
+ #: view/Blocks/Features.php:190
9600
  #, fuzzy
9601
  #| msgid "Change the Website Icon"
9602
  msgid "activate feature"
9670
  msgstr ""
9671
 
9672
  # @ squirrly-seo
9673
+ #: view/Blocks/LiveAssistant.php:10 view/Blocks/LiveAssistant.php:41
9674
  #, fuzzy
9675
  #| msgid "Squirrly settings"
9676
  msgid "Squirrly Briefcase"
9712
  msgstr "Squirrly Einstellungen"
9713
 
9714
  # @ squirrly-seo
9715
+ #: view/Blocks/LiveAssistant.php:26 view/Blocks/LiveAssistant.php:103
9716
+ #, fuzzy
9717
+ #| msgid "date"
9718
+ msgid "Update"
9719
+ msgstr "Datum"
9720
 
9721
+ #: view/Blocks/LiveAssistant.php:31
9722
  msgid "Step 1"
9723
  msgstr ""
9724
 
9725
+ #: view/Blocks/LiveAssistant.php:32
9726
  msgid "Step 2"
9727
  msgstr ""
9728
 
9729
+ #: view/Blocks/LiveAssistant.php:32
9730
  msgid "Enhance"
9731
  msgstr ""
9732
 
9733
+ #: view/Blocks/LiveAssistant.php:33
9734
  msgid "Step 3"
9735
  msgstr ""
9736
 
9737
+ #: view/Blocks/LiveAssistant.php:33
9738
  msgid "Analysis"
9739
  msgstr ""
9740
 
9741
+ #: view/Blocks/LiveAssistant.php:34
9742
  msgid "Extra"
9743
  msgstr ""
9744
 
9745
+ #: view/Blocks/LiveAssistant.php:34
9746
  msgid "Deep"
9747
  msgstr ""
9748
 
9749
+ #: view/Blocks/LiveAssistant.php:42
9750
+ msgid "We recommend that you select at least 3 Keywords for best results."
9751
  msgstr ""
9752
 
9753
  # @ squirrly-seo
9754
+ #: view/Blocks/LiveAssistant.php:47
9755
  #, fuzzy
9756
  #| msgid "Squirrly Keyword Research"
9757
  msgid "Search in Briefcase ..."
9758
  msgstr "Squirrly Erweiterte Suche!"
9759
 
9760
  # @ squirrly-seo
9761
+ #: view/Blocks/LiveAssistant.php:51 view/Blocks/LiveAssistant.php:79
9762
+ #: view/Blocks/LiveAssistant.php:123 view/Onboarding/Step1.php:106
9763
  #, fuzzy
9764
  #| msgid "SEO Software"
9765
  msgid "Continue"
9766
  msgstr "SEO Software"
9767
 
9768
  # @ squirrly-seo
9769
+ #: view/Blocks/LiveAssistant.php:58
9770
  #, fuzzy
9771
  #| msgid "Blogs"
9772
  msgid "Squirrly Blogging Assistant"
9773
  msgstr "Blogs"
9774
 
9775
+ #: view/Blocks/LiveAssistant.php:59
9776
  msgid "The keyword will be automatically be added as the image alt text."
9777
  msgstr ""
9778
 
9779
+ #: view/Blocks/LiveAssistant.php:60
9780
  msgid ""
9781
  "Click on “Insert it!” and the incorporated Tweet(s) will add more substance "
9782
  "to your article."
9783
  msgstr ""
9784
 
9785
+ #: view/Blocks/LiveAssistant.php:61
9786
  msgid ""
9787
  "Browse through Wikipedia articles to get more insight or quick fact-checking "
9788
  "on your topic."
9789
  msgstr ""
9790
 
9791
+ #: view/Blocks/LiveAssistant.php:62
9792
  msgid "Find topic-related articles written by fellow bloggers or influencers."
9793
  msgstr ""
9794
 
9795
+ #: view/Blocks/LiveAssistant.php:63
9796
  msgid ""
9797
  "Squirrly automatically browses your WordPress for previously written articles "
9798
  "you want to cite or insert"
9799
  msgstr ""
9800
 
9801
  # @ squirrly-seo
9802
+ #: view/Blocks/LiveAssistant.php:70
9803
  msgid "Images"
9804
  msgstr "Bilder"
9805
 
9806
  # @ squirrly-seo
9807
+ #: view/Blocks/LiveAssistant.php:71
9808
  msgid "Twitter"
9809
  msgstr "Twitter"
9810
 
9811
  # @ squirrly-seo
9812
+ #: view/Blocks/LiveAssistant.php:72
9813
  msgid "Wiki"
9814
  msgstr "Wiki"
9815
 
9816
  # @ squirrly-seo
9817
+ #: view/Blocks/LiveAssistant.php:73
9818
  msgid "Blogs"
9819
  msgstr "Blogs"
9820
 
9821
  # @ squirrly-seo
9822
+ #: view/Blocks/LiveAssistant.php:74
9823
  msgid "My articles"
9824
  msgstr "Meine Artikel"
9825
 
9826
  # @ squirrly-seo
9827
+ #: view/Blocks/LiveAssistant.php:83
9828
  msgid "Show only Copyright Free images"
9829
  msgstr "Nur urheberrechtfreie Bilder zeigen"
9830
 
 
9831
  #: view/Blocks/LiveAssistant.php:94
 
 
 
 
 
 
9832
  msgid ""
9833
  "Squirrly automatically checks your article to make sure it has the best SEO "
9834
  "chances"
9835
  msgstr ""
9836
 
9837
  # @ squirrly-seo
9838
+ #: view/Blocks/LiveAssistant.php:131
 
 
 
 
 
 
 
9839
  #, fuzzy
9840
  #| msgid "Save settings"
9841
  msgid "Squirrly Focus Pages"
9842
  msgstr "Einstellungen speichern"
9843
 
9844
+ #: view/Blocks/LiveAssistant.php:132
9845
  msgid ""
9846
  "Focus Pages bring you clear methods to take your content from never found to "
9847
  "always found on Google."
9848
  msgstr ""
9849
 
9850
+ #: view/Blocks/LiveAssistant.php:138
9851
  msgid "Need a deeper analysis of this content?"
9852
  msgstr ""
9853
 
9854
+ #: view/Blocks/LiveAssistant.php:139
9855
  msgid ""
9856
  "Add this page/article as a focus page and take your content from never found "
9857
  "to always found on Google. Rank your pages by influencing the right ranking "
9859
  msgstr ""
9860
 
9861
  # @ squirrly-seo
9862
+ #: view/Blocks/LiveAssistant.php:142
9863
  #, fuzzy
9864
  #| msgid "Save settings"
9865
  msgid "Set Focus Pages"
9912
  msgid "Sign Up"
9913
  msgstr "Anmelden"
9914
 
9915
+ #: view/Blocks/Menu.php:31 view/Blocks/Menu.php:70 view/Blocks/Menu.php:116
9916
+ #: view/Blocks/Menu.php:167
9917
+ msgid "Collapse"
9918
+ msgstr ""
9919
+
9920
+ #: view/Blocks/Menu.php:48 view/Blocks/Menu.php:87 view/Blocks/Menu.php:136
9921
  msgid "Back To Home"
9922
  msgstr ""
9923
 
9966
  msgstr ""
9967
 
9968
  #: view/Blocks/Snippet.php:151 view/Blocks/Snippet.php:685
9969
+ #: view/Blocks/Snippet.php:947 view/Onboarding/Step1.php:105
9970
  msgid "Cancel"
9971
  msgstr ""
9972
 
10386
  "provider`s support team"
10387
  msgstr ""
10388
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10389
  #: view/Blocks/Toolbar.php:13
10390
  msgid "SEO Beginner"
10391
  msgstr ""
10705
  msgid "Details"
10706
  msgstr "Ihre E-Mail Adresse:"
10707
 
10708
+ #: view/FocusPages/FocusPageRow.php:109
10709
+ #, php-format
10710
+ msgid "Wait %s minutes"
10711
+ msgstr ""
10712
+
10713
  #: view/FocusPages/FocusPageRow.php:130
10714
  msgid "Upgrade Plan"
10715
  msgstr ""
11040
  msgid "Learn how you can import the same settings on this site as well"
11041
  msgstr ""
11042
 
11043
+ #: view/Onboarding/Step1.php:96
11044
  #, fuzzy
11045
  #| msgid "Optimize for Keyword"
11046
  msgid "What will be activated"
11047
  msgstr "Schlüsselwort optimieren"
11048
 
11049
  # @ squirrly-seo
11050
+ #: view/Onboarding/Step1.php:102
11051
  #, fuzzy
11052
  #| msgid "Squirrly LIVE SEO assistant"
11053
  msgid "Squirrly Sitemap XML"
13778
  msgid "https://plugin.squirrly.co"
13779
  msgstr ""
13780
 
13781
+ #, fuzzy
13782
+ #~| msgid "This email connects you to Squirrly.co"
13783
+ #~ msgid "Connect Squirrly Cloud & Website API"
13784
+ #~ msgstr "This email connects you to Squirrly.co"
13785
+
13786
+ # @ squirrly-seo
13787
+ #, fuzzy
13788
+ #~| msgid "Connecting ..."
13789
+ #~ msgid "Connect"
13790
+ #~ msgstr "Verbinden ..."
13791
+
13792
+ # @ squirrly-seo
13793
+ #, fuzzy
13794
+ #~| msgid "Connecting ..."
13795
+ #~ msgid "disconnect"
13796
+ #~ msgstr "Verbinden ..."
13797
+
13798
+ # @ squirrly-seo
13799
+ #~ msgid "Use this keyword"
13800
+ #~ msgstr "Dieses Schlüsselwort verwenden"
13801
+
13802
+ # @ squirrly-seo
13803
+ #~ msgid "Go to Profile"
13804
+ #~ msgstr "Zum Profil"
13805
+
13806
+ # @ squirrly-seo
13807
+ #~ msgid "Profile"
13808
+ #~ msgstr "Profil"
13809
+
13810
+ # @ squirrly-seo
13811
+ #~ msgid "Need Help with Squirrly SEO?"
13812
+ #~ msgstr "Brauchen Sie Hilfe mit Squirrly SEO?"
13813
+
13814
+ # @ squirrly-seo
13815
+ #, fuzzy, php-format
13816
+ #~| msgid "Description:"
13817
+ #~ msgid "Facebook %sMessenger%s."
13818
+ #~ msgstr "Beschreibung:"
13819
+
13820
+ # @ squirrly-seo
13821
+ #~ msgid "How was your Squirrly experience today?"
13822
+ #~ msgstr "Wie war Ihre Squirrly Erfahrung heute?"
13823
+
13824
+ # @ squirrly-seo
13825
+ #~ msgid "How was Squirrly today?"
13826
+ #~ msgstr "Wie war Squirrly heute?"
13827
+
13828
+ # @ squirrly-seo
13829
+ #~ msgid "Send feedback"
13830
+ #~ msgstr "Feedback senden"
13831
+
13832
+ # @ squirrly-seo
13833
+ #, fuzzy
13834
+ #~| msgid "Thank you! You can send us a happy face tomorow too."
13835
+ #~ msgid "Thank you! You can send us a happy face tomorrow too."
13836
+ #~ msgstr "Danke! Sie können uns auch morgen ein fröhliches Gesicht senden."
13837
+
13838
  # @ squirrly-seo
13839
  #, fuzzy
13840
  #~| msgid "Could not send the email..."
languages/squirrly-seo-ro_RO.mo CHANGED
Binary file
languages/squirrly-seo-ro_RO.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO\n"
4
- "POT-Creation-Date: 2022-05-16 14:55+0300\n"
5
- "PO-Revision-Date: 2022-05-16 14:55+0300\n"
6
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
7
  "Language-Team: Squirrly UK <support@squirrly.co>\n"
8
  "Language: ro_RO\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 3.0.1\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
15
  "X-Poedit-WPHeader: squirrly.php\n"
@@ -19,6 +19,7 @@ msgstr ""
19
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.min.js\n"
 
22
 
23
  #: classes/RemoteController.php:296
24
  msgid "Too many API attempts, please slow down the request."
@@ -72,59 +73,59 @@ msgstr "Codul Facebook Pixel poate conține doar numere."
72
  msgid "The code for Facebook App must only contain numbers."
73
  msgstr "Codul Facebook App poate conține doar numele."
74
 
75
- #: classes/helpers/Tools.php:88
76
  msgid "Getting started"
77
  msgstr "Setări"
78
 
79
- #: classes/helpers/Tools.php:114
80
  msgid "Documentation"
81
  msgstr "Documentație"
82
 
83
- #: classes/helpers/Tools.php:115
84
  msgid "Leave a review"
85
  msgstr "Lasă o evaluare"
86
 
87
- #: classes/helpers/Tools.php:554 classes/helpers/Tools.php:611
88
  msgid "Category"
89
  msgstr "Categorie"
90
 
91
- #: classes/helpers/Tools.php:573 classes/helpers/Tools.php:630
92
  msgid "Tag"
93
  msgstr "Etichetă"
94
 
95
- #: classes/helpers/Tools.php:592
96
  msgid "Format"
97
  msgstr "Format"
98
 
99
- #: classes/helpers/Tools.php:649
100
  msgid "Shipping Option"
101
  msgstr "Opțiunea de expediere"
102
 
103
- #: classes/helpers/Tools.php:687
104
  msgid "Author at"
105
  msgstr "Autor la"
106
 
107
- #: classes/helpers/Tools.php:725
108
  msgid "Are you looking for"
109
  msgstr "Căutați"
110
 
111
- #: classes/helpers/Tools.php:726
112
  msgid "These are the results for"
113
  msgstr "Nu s-a găsit nimic pentru"
114
 
115
- #: classes/helpers/Tools.php:726
116
  msgid "that you can find on our website."
117
  msgstr "pe care îl puteți găsi pe site-ul nostru."
118
 
119
- #: classes/helpers/Tools.php:762
120
  msgid "Page not found"
121
  msgstr "Pagina nu a fost găsită"
122
 
123
- #: classes/helpers/Tools.php:763
124
  msgid "This page could not be found on our website."
125
  msgstr "Această pagină nu a putut fi găsită pe site-ul nostru."
126
 
127
- #: classes/helpers/Tools.php:1167
128
  msgid "For better text comparison you need to install PHP mbstring extension."
129
  msgstr ""
130
  "Pentru o comparație mai bună a textului, trebuie să instalați extensia PHP "
@@ -297,18 +298,17 @@ msgid "No keyword found."
297
  msgstr "Nu a fost găsit niciun cuvânt cheie."
298
 
299
  #: controllers/Assistant.php:114 controllers/Assistant.php:141
300
- #: controllers/Audits.php:395 controllers/Automation.php:78
301
- #: controllers/Automation.php:118 controllers/Automation.php:151
302
- #: controllers/Onboarding.php:205 controllers/Post.php:404
303
  #: controllers/Ranking.php:156 controllers/SeoSettings.php:102
304
  #: controllers/SeoSettings.php:157 controllers/SeoSettings.php:426
305
  msgid "Saved"
306
  msgstr "Salvat"
307
 
308
- #: controllers/Assistant.php:120 controllers/Automation.php:84
309
- #: controllers/Automation.php:131 controllers/BulkSeo.php:75
310
- #: controllers/Patterns.php:124 controllers/Post.php:349
311
- #: controllers/Post.php:382 controllers/Post.php:417
312
  #: controllers/PostsList.php:272 controllers/Research.php:215
313
  #: controllers/Research.php:222 controllers/Research.php:260
314
  #: controllers/Research.php:282 controllers/Research.php:305
@@ -392,7 +392,7 @@ msgstr "Parametrii greșiți!"
392
  msgid "Not a valid email address."
393
  msgstr "Te rog introdu o adresă email validă."
394
 
395
- #: controllers/Automation.php:125 controllers/Automation.php:159
396
  msgid "Could not add the post type."
397
  msgstr "Nu s-a putut adăuga tipul de post."
398
 
@@ -413,9 +413,9 @@ msgid "Saved! Task marked as done."
413
  msgstr "Salvat! Sarcina marcată ca terminată."
414
 
415
  #: controllers/CheckSeo.php:345 controllers/Patterns.php:27
416
- #: controllers/Post.php:635 controllers/Research.php:324
417
- #: controllers/Research.php:355 controllers/Research.php:409
418
- #: controllers/Research.php:539 controllers/Research.php:755
419
  #: view/Blocks/Snippet.php:1300
420
  msgid "Saved!"
421
  msgstr "Salvat!"
@@ -461,7 +461,7 @@ msgstr "Ați făcut prea multe cereri, vă rugăm să așteptați câteva minute
461
  msgid "The focus page is deleted"
462
  msgstr "Pagina de focalizare este ștearsă"
463
 
464
- #: controllers/Menu.php:96
465
  #, php-format
466
  msgid ""
467
  "An error occurred during activation. If this error persists, please contact "
@@ -470,24 +470,28 @@ msgstr ""
470
  "A apărut o eroare în timpul activării. Dacă această eroare persistă, vă rugăm "
471
  "să ne contactați la adresa: %s"
472
 
473
- #: controllers/Menu.php:133
474
  msgid "Dashboard"
475
  msgstr "Dashboard"
476
 
477
- #: controllers/Menu.php:247 models/CheckSeo.php:194 models/CheckSeo.php:558
478
  #: models/CheckSeo.php:572 models/CheckSeo.php:586 models/CheckSeo.php:600
479
  #: models/CheckSeo.php:642
480
  msgid "SEO Snippet"
481
  msgstr "Snippet SEO"
482
 
483
- #: controllers/Menu.php:258 controllers/Snippet.php:180
484
  msgid "Custom SEO"
485
  msgstr "SEO personalizat"
486
 
487
- #: controllers/Menu.php:284
488
  msgid "Squirrly SEO"
489
  msgstr "Squirrly SEO"
490
 
 
 
 
 
491
  #: controllers/Onboarding.php:91 view/Onboarding/Step1.php:22
492
  #, fuzzy
493
  #| msgid "SEO Expert"
@@ -547,187 +551,14 @@ msgstr ""
547
  msgid "Saved! This is how the preview looks like"
548
  msgstr "Salvat! Așa arată previzualizarea"
549
 
550
- #: controllers/Post.php:407 controllers/Post.php:431
551
  msgid "Can't get the post URL"
552
  msgstr "Nu pot primi URL-ul postului"
553
 
554
- #: controllers/Post.php:436
555
  msgid "Invalid request"
556
  msgstr "Solicitare incorectă"
557
 
558
- #: controllers/Post.php:632
559
- msgid "Keyword:"
560
- msgstr "Cuvant cheie:"
561
-
562
- #: controllers/Post.php:633
563
- msgid "date"
564
- msgstr "data"
565
-
566
- #: controllers/Post.php:634
567
- msgid ""
568
- "To load the Live Assistant and optimize this page, click to connect to "
569
- "Squirrly Cloud."
570
- msgstr ""
571
- "Pentru a încărca Squirrly Live Assistant și a optimiza această pagină, faceți "
572
- "clic pentru a vă conecta la Squirrly Cloud."
573
-
574
- #: controllers/Post.php:636
575
- msgid "Read it!"
576
- msgstr "Citeste!"
577
-
578
- #: controllers/Post.php:637
579
- msgid "Insert it!"
580
- msgstr "Adauga!"
581
-
582
- #: controllers/Post.php:638
583
- msgid "Reference"
584
- msgstr "Referință"
585
-
586
- #: controllers/Post.php:639
587
- msgid "Insert as box"
588
- msgstr "Adaugă o casuță"
589
-
590
- #: controllers/Post.php:640
591
- msgid "Insert Link"
592
- msgstr "Adaugă Link"
593
-
594
- #: controllers/Post.php:641
595
- msgid "Not relevant?"
596
- msgstr "Nu este relevant?"
597
-
598
- #: controllers/Post.php:642
599
- msgid "Insert in your article"
600
- msgstr "Adauga paragraf in articol"
601
-
602
- #: controllers/Post.php:643
603
- msgid ":( An error occurred while processing your request. Please try again"
604
- msgstr ":( A apărut o eroare la procesarea cererii. Încercați din nou"
605
-
606
- #: controllers/Post.php:644
607
- msgid "No results found!"
608
- msgstr "Nu s-a gasit nimic!"
609
-
610
- #: controllers/Post.php:645
611
- #, php-format
612
- msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
613
- msgstr ""
614
- "[ ATTRIBUTE: Verificați: %s pentru a vedea condițiile de atribuire a "
615
- "imaginii ]"
616
-
617
- #: controllers/Post.php:646
618
- msgid "Has creative commons attributes"
619
- msgstr "Are condiții de atribuire"
620
-
621
- #: controllers/Post.php:647
622
- msgid "No known copyright restrictions"
623
- msgstr "Nu sunt restricții de copyright cunoscute"
624
-
625
- #: controllers/Post.php:648
626
- msgid ""
627
- "You haven`t used Squirrly SEO to optimize your article. Do you want to "
628
- "optimize for a keyword before publishing?"
629
- msgstr ""
630
- "Nu ai folosit Squirrly SEO pentru a optimiza articolul. Vrei sa îl optimizezi "
631
- "înainte de publicare?"
632
-
633
- #: controllers/Post.php:649
634
- msgid "Your Subscription has Expired"
635
- msgstr "Abonamentul dvs. a expirat"
636
-
637
- #: controllers/Post.php:650
638
- msgid "There are no keywords saved in briefcase yet"
639
- msgstr "Încă nu există cuvinte cheie salvate în Briefcase Squirrly"
640
-
641
- #: controllers/Post.php:651
642
- #, php-format
643
- msgid "Congratulations! Your article is 100% optimized!"
644
- msgstr "Felicitări! Articolul dumneavoastră este 100% optimizat !"
645
-
646
- #: controllers/Post.php:652
647
- #, php-format
648
- msgid "appears too many times. Try to remove %s of them"
649
- msgstr "apare de prea multe ori. Șterge %s cuvint(e) cheie"
650
-
651
- #: controllers/Post.php:653
652
- #, php-format
653
- msgid "write %s more words"
654
- msgstr "mai adaugă %s cuvinte"
655
-
656
- #: controllers/Post.php:654
657
- #, php-format
658
- msgid "Add the keyword in the %s of your article"
659
- msgstr "Adaugă cuvântul cheie la %s articolului"
660
-
661
- #: controllers/Post.php:655
662
- msgid "Click to keep the highlight on"
663
- msgstr "Faceți clic pentru a continua sublinierea"
664
-
665
- #: controllers/Post.php:656
666
- msgid "introduction"
667
- msgstr "introducere"
668
-
669
- #: controllers/Post.php:657
670
- #, php-format
671
- msgid "Write more words after the %s keyword"
672
- msgstr "Scrie mai multe cuvinte dupa %s cuvant cheie"
673
-
674
- #: controllers/Post.php:658
675
- msgid "or use synonyms"
676
- msgstr "sau foloseste sinonime"
677
-
678
- #: controllers/Post.php:659
679
- #, php-format
680
- msgid "add %s more word(s)"
681
- msgstr "mai adauga %s cuvinte"
682
-
683
- #: controllers/Post.php:660
684
- #, php-format
685
- msgid "or remove %s word(s)"
686
- msgstr "sau sterge %s cuvinte"
687
-
688
- #: controllers/Post.php:661
689
- #, php-format
690
- msgid "add the selected keyword %s more time(s) "
691
- msgstr "adaugă cuvântul cheie selectat %s mai multe ori(e) "
692
-
693
- #: controllers/Post.php:662
694
- #, php-format
695
- msgid "write %s more words to start calculating"
696
- msgstr "scrie %s cuvinte pentru a se putea verifica"
697
-
698
- #: controllers/Post.php:663
699
- msgid "Add to Briefcase"
700
- msgstr "Adăugați în Briefcase Squirrly"
701
-
702
- #: controllers/Post.php:664
703
- msgid "Add Keyword to Briefcase"
704
- msgstr "Adăugați cuvinte cheie în Briefcase Squirrly"
705
-
706
- #: controllers/Post.php:665
707
- msgid "Select"
708
- msgstr "Selectează"
709
-
710
- #: controllers/Post.php:666 view/Blocks/Snippet.php:133
711
- #: view/Blocks/Snippet.php:657 view/Blocks/Snippet.php:920
712
- msgid "Auto Draft"
713
- msgstr "Auto Draft"
714
-
715
- #: controllers/Post.php:667
716
- msgid "Enter keyword above and press ENTER"
717
- msgstr "Adauga cuvinte cheie mai sus si apasa Enter"
718
-
719
- #: controllers/Post.php:668
720
- msgid "Add Keywords from Briefcase"
721
- msgstr "Adăugați cuvinte cheie din Briefcase"
722
-
723
- #: controllers/Post.php:669
724
- msgid ""
725
- "Live Assistant was used to optimize this page with the Page Builder. Please "
726
- "go back and resume your optimization work there."
727
- msgstr ""
728
- "Ați folosit deja Asistentul Live pentru a optimiza această postare. Vă rugăm "
729
- "să vă întoarceți și să vă reluați activitatea de optimizare."
730
-
731
  #: controllers/PostsList.php:112 models/PostsList.php:23
732
  msgid "Optimized"
733
  msgstr "Optimizat"
@@ -1010,7 +841,7 @@ msgid "We could not create your account. Please enter a valid email."
1010
  msgstr ""
1011
  "Nu am putut să vă creăm contul. Vă rugăm să introduceți un e-mail valid."
1012
 
1013
- #: core/Blocklogin.php:85 core/Blocklogin.php:138
1014
  #, php-format
1015
  msgid ""
1016
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
@@ -1020,30 +851,30 @@ msgstr ""
1020
  "ului dvs. (sau webmasterul) și să le cereți să adauge %s la lista albă de IP-"
1021
  "uri."
1022
 
1023
- #: core/Blocklogin.php:88
1024
  msgid "Your email is not set. Please enter a valid email."
1025
  msgstr ""
1026
  "Adresa dvs. de e-mail nu este setată. Vă rugăm să introduceți un e-mail valid."
1027
 
1028
- #: core/Blocklogin.php:111
1029
  msgid "Wrong email or password!"
1030
  msgstr "Email sau Parola gresita!"
1031
 
1032
- #: core/Blocklogin.php:114
1033
  msgid "You can only use this account for the URL you registered first!"
1034
  msgstr ""
1035
  "Puteți utiliza acest cont doar pentru URL-ul pe care l-ați înregistrat mai "
1036
  "întâi!"
1037
 
1038
- #: core/Blocklogin.php:117
1039
  msgid "You disconnected your website from"
1040
  msgstr "Ați deconectat site-ul dvs. de la"
1041
 
1042
- #: core/Blocklogin.php:121
1043
  msgid "An error occured."
1044
  msgstr "A apărut o eroare."
1045
 
1046
- #: core/Blocklogin.php:142
1047
  msgid "Both fields are required."
1048
  msgstr "Ambele câmpuri sunt obligatorii."
1049
 
@@ -5007,8 +4838,8 @@ msgstr ""
5007
  #| "Go to %sSquirrly > SEO Settings > Automation%s and make sure that SEO "
5008
  #| "Patterns are activated."
5009
  msgid ""
5010
- "Go to %s Squirrly > Automation > Configuration %s and make sure that SEO "
5011
- "Patterns are activated."
5012
  msgstr ""
5013
  "Mergeți la %sSquirrly > Setări SEO > Automatizare%s și asigurați-vă că sunt "
5014
  "activate Modelele SEO."
@@ -6713,27 +6544,27 @@ msgstr ""
6713
  msgid "Focus Page could not be verified (error: %s)"
6714
  msgstr "Focus Pagina nu a putut fi verificată (eroare: %s)"
6715
 
6716
- #: models/Compatibility.php:262
6717
  msgid "MPN"
6718
  msgstr "MPN"
6719
 
6720
- #: models/Compatibility.php:263
6721
  msgid "Add Manufacturer Part Number (MPN)"
6722
  msgstr "Adăugați numărul de referință al producătorului (MPN)"
6723
 
6724
- #: models/Compatibility.php:266
6725
  msgid "GTIN"
6726
  msgstr "GTIN"
6727
 
6728
- #: models/Compatibility.php:267
6729
  msgid "Add Global Trade Item Number (GTIN)"
6730
  msgstr "Adăugați numărul articolului comercial global (GTIN)"
6731
 
6732
- #: models/Compatibility.php:270
6733
  msgid "EAN (GTIN-13)"
6734
  msgstr "EAN (GTIN-13)"
6735
 
6736
- #: models/Compatibility.php:271
6737
  msgid ""
6738
  "Add Global Trade Item Number (GTIN) for the major GTIN used outside of North "
6739
  "America"
@@ -6741,28 +6572,28 @@ msgstr ""
6741
  "Adăugați Global Trade Item Number (GTIN) pentru principalul GTIN utilizat în "
6742
  "afara Americii de Nord"
6743
 
6744
- #: models/Compatibility.php:274
6745
  msgid "UPC (GTIN-12)"
6746
  msgstr "UPC (GTIN-12)"
6747
 
6748
- #: models/Compatibility.php:275
6749
  msgid "Add Global Trade Item Number (GTIN) for North America"
6750
  msgstr ""
6751
  "Adăugați numărul de articol comercial global (GTIN) pentru America de Nord"
6752
 
6753
- #: models/Compatibility.php:278
6754
  msgid "ISBN"
6755
  msgstr "Isbn"
6756
 
6757
- #: models/Compatibility.php:279
6758
  msgid "Add Global Trade Item Number (GTIN) for books"
6759
  msgstr "Adăugați numărul de articol comercial global (GTIN) pentru cărți"
6760
 
6761
- #: models/Compatibility.php:284
6762
  msgid "Brand Name"
6763
  msgstr "Nume de brand"
6764
 
6765
- #: models/Compatibility.php:285
6766
  msgid "Add Product Brand Name"
6767
  msgstr "Adăugați numele mărcii produsului"
6768
 
@@ -6866,6 +6697,185 @@ msgstr "Eroare ICO: Nu se poate transforma imaginea in fisier ICO."
6866
  msgid "The favicon has been updated."
6867
  msgstr "Icoana a fost adaugata pe server."
6868
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6869
  #: models/Menu.php:120
6870
  msgid "First Step"
6871
  msgstr "Primul pas"
@@ -7499,23 +7509,23 @@ msgstr "Admin Squirrly SEO"
7499
  msgid "Plugin Install Process"
7500
  msgstr "Procesul de instalare a plugin-ului"
7501
 
7502
- #: models/Snippet.php:272
7503
  msgid "You don't have enough pemission to edit this article"
7504
  msgstr "Nu aveți suficientă permisiune pentru a edita acest articol"
7505
 
7506
- #: models/Snippet.php:375
7507
  msgid "Error! Could not save the data."
7508
  msgstr "Nu s-a putut salva data."
7509
 
7510
- #: models/Snippet.php:380
7511
  msgid "Error! Invalid request."
7512
  msgstr "Eroare! Cerere nevalabilă."
7513
 
7514
- #: models/Snippet.php:428
7515
  msgid "Couldn't find the page"
7516
  msgstr "Nu am putut găsi pagina"
7517
 
7518
- #: models/Snippet.php:445 models/Snippet.php:457
7519
  msgid "No Polylang translation for this post."
7520
  msgstr "Nu există nicio traducere din Polylang pentru acest post."
7521
 
@@ -7533,7 +7543,7 @@ msgstr "Nu există nicio traducere din Polylang pentru acest post."
7533
  msgid "Current URL"
7534
  msgstr "URL-ul curent"
7535
 
7536
- #: models/abstract/Assistant.php:120 view/Blocks/LiveAssistant.php:32
7537
  msgid "Keywords"
7538
  msgstr "Cuvinte cheie"
7539
 
@@ -9829,10 +9839,10 @@ msgstr ""
9829
  msgid "Add New"
9830
  msgstr "Adaugă nou"
9831
 
9832
- #: view/Assistant/Assistant.php:53 view/Assistant/Settings.php:147
9833
  #: view/Audits/Addpage.php:200 view/Audits/Audit.php:136
9834
  #: view/Audits/Audits.php:50 view/Automation/Automation.php:394
9835
- #: view/Automation/Settings.php:113 view/Automation/Types.php:117
9836
  #: view/BulkSeo/Bulkseo.php:267 view/FocusPages/Addpage.php:205
9837
  #: view/FocusPages/Pagelist.php:57 view/FocusPages/Pagelist.php:67
9838
  #: view/Ranking/Gscsync.php:118 view/Ranking/Rankings.php:465
@@ -9947,11 +9957,11 @@ msgstr "Afișați imagini libere de drepturi de autor"
9947
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
9948
  msgstr "Căutați %sCopyright Free Images%s în Squirrly Live Assistant."
9949
 
9950
- #: view/Assistant/Settings.php:95
9951
  msgid "Activate Live Assistant in Frontend"
9952
  msgstr "Activați Live Assistant în Frontend"
9953
 
9954
- #: view/Assistant/Settings.php:98
9955
  msgid ""
9956
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
9957
  "with Builders."
@@ -9959,15 +9969,46 @@ msgstr ""
9959
  "Încărcați Squirrly Live Assistant în Frontend pentru a personaliza postările "
9960
  "și paginile cu Builders."
9961
 
9962
- #: view/Assistant/Settings.php:99
9963
- msgid "Currently supports the Elementor Builder plugin."
 
 
9964
  msgstr "În prezent, acceptă pluginul Elementor Builder."
9965
 
9966
- #: view/Assistant/Settings.php:107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9967
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
9968
  msgstr "Locuri în care NU doriți ca Squirrly Live Assistant să se încarce"
9969
 
9970
- #: view/Assistant/Settings.php:113
9971
  msgid ""
9972
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
9973
  "post types."
@@ -9975,40 +10016,40 @@ msgstr ""
9975
  "Nu selectați nimic dacă doriți ca Squirrly Live Assistant să se încarce "
9976
  "pentru toate tipurile de postări."
9977
 
9978
- #: view/Assistant/Settings.php:119
9979
  msgid "Exclusions"
9980
  msgstr "Excluderi"
9981
 
9982
- #: view/Assistant/Settings.php:121
9983
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
9984
  msgstr ""
9985
  "Selectați locurile în care NU doriți ca Squirrly Live Assistant să se încarce."
9986
 
9987
- #: view/Assistant/Settings.php:142 view/Audits/Settings.php:46
9988
  #: view/Automation/Automation.php:356 view/Automation/Settings.php:105
9989
- #: view/Automation/Types.php:99 view/Ranking/Settings.php:334
9990
- #: view/SeoSettings/Jsonld.php:121 view/SeoSettings/Jsonld.php:169
9991
- #: view/SeoSettings/Jsonld.php:226 view/SeoSettings/Jsonld.php:307
9992
- #: view/SeoSettings/Jsonld.php:346 view/SeoSettings/Jsonld.php:385
9993
- #: view/SeoSettings/Jsonld.php:445 view/SeoSettings/Jsonld.php:485
9994
- #: view/SeoSettings/Jsonld.php:516 view/SeoSettings/Metas.php:121
9995
- #: view/SeoSettings/Metas.php:161 view/SeoSettings/Metas.php:195
9996
- #: view/SeoSettings/Social.php:282 view/SeoSettings/Social.php:328
9997
- #: view/SeoSettings/Social.php:404 view/SeoSettings/Social.php:456
9998
- #: view/SeoSettings/Tweaks.php:355 view/SeoSettings/Tweaks.php:421
9999
- #: view/SeoSettings/Tweaks.php:477 view/SeoSettings/Tweaks.php:534
10000
- #: view/SeoSettings/Tweaks.php:617 view/SeoSettings/Webmaster.php:300
10001
- #: view/SeoSettings/Webmaster.php:326 view/SeoSettings/Webmaster.php:406
10002
  msgid "Save Settings"
10003
  msgstr "Salveaza setari"
10004
 
10005
- #: view/Assistant/Settings.php:149
10006
  msgid ""
10007
  "The Settings section allows you to set up your assistant just the way you "
10008
  "like it."
10009
  msgstr ""
10010
 
10011
- #: view/Assistant/Settings.php:150
10012
  msgid ""
10013
  "Quickly enable or disable the settings available here based on your needs and "
10014
  "preferences."
@@ -10133,19 +10174,15 @@ msgid ""
10133
  "thumbs down element) and work on them to improve your score."
10134
  msgstr ""
10135
 
10136
- #: view/Audits/AuditPageRow.php:41
10137
- msgid "Last checked"
10138
- msgstr "Ultima verificare"
10139
-
10140
- #: view/Audits/AuditPageRow.php:47
10141
  msgid "Could not create the audit for this URL"
10142
  msgstr "Nu s-a putut crea auditul pentru acest URL"
10143
 
10144
- #: view/Audits/AuditPageRow.php:47
10145
  msgid "error code"
10146
  msgstr "cod de eroare"
10147
 
10148
- #: view/Audits/AuditPageRow.php:49
10149
  #, php-format
10150
  msgid ""
10151
  "The way your WordPress site is currently hosted can affect the way Squirrly "
@@ -10162,22 +10199,22 @@ msgstr ""
10162
  "permite serverului nostru să vă verifice pagina, astfel încât să primiți un "
10163
  "audit complet."
10164
 
10165
- #: view/Audits/AuditPageRow.php:51 view/Audits/AuditPageRow.php:78
10166
  #: view/FocusPages/FocusPageRow.php:132 view/FocusPages/FocusPageRow.php:217
10167
  msgid "Inspect URL"
10168
  msgstr "Inspectați URL-ul"
10169
 
10170
- #: view/Audits/AuditPageRow.php:72 view/Audits/AuditStats.php:68
10171
- #: view/Audits/AuditStats.php:95 view/FocusPages/FocusPageRow.php:112
10172
  #: view/FocusPages/FocusPageRow.php:211
10173
  msgid "Request New Audit"
10174
  msgstr "Solicitarea unui nou audit"
10175
 
10176
- #: view/Audits/AuditPageRow.php:81
10177
  msgid "Do you want to delete the Audit Page?"
10178
  msgstr "Doriți să ștergeți pagina de audit?"
10179
 
10180
- #: view/Audits/AuditPageRow.php:87
10181
  msgid "Remove Page from Audit"
10182
  msgstr "Îndepărtați pagina din audit"
10183
 
@@ -10212,130 +10249,129 @@ msgstr ""
10212
  "Există o eroare de conexiune cu Squirrly Cloud. Vă rugăm să verificați "
10213
  "conexiunea și %sreîncărcați pagina%s."
10214
 
10215
- #: view/Audits/AuditStats.php:30
10216
  msgid ""
10217
  "Your score is low. A medium score is over 50, and a good score is over 80."
10218
  msgstr ""
10219
  "Scorul dumneavoastră este scăzut. Un scor mediu este de peste 50, iar un scor "
10220
  "bun este de peste 80."
10221
 
10222
- #: view/Audits/AuditStats.php:32
10223
  msgid "Your score is medium. A good score is over 80."
10224
  msgstr "Scorul dumneavoastră este mediu. Un scor bun este de peste 80."
10225
 
10226
- #: view/Audits/AuditStats.php:34
10227
  msgid "Your score is good. Keep it as high as posible for good results."
10228
  msgstr ""
10229
  "Scorul dumneavoastră este bun. Păstrați-l cât mai ridicat posibil pentru "
10230
  "rezultate bune."
10231
 
10232
- #: view/Audits/AuditStats.php:41 view/Audits/AuditStats.php:251
10233
  #: view/Audits/Compare.php:72
10234
  msgid "Audit Score"
10235
  msgstr "Scor de audit"
10236
 
10237
- #: view/Audits/AuditStats.php:53
10238
  msgid "Your audit score is"
10239
  msgstr "Punctajul dvs. de audit este"
10240
 
10241
- #: view/Audits/AuditStats.php:56 view/Audits/AuditStats.php:84
10242
  msgid "Audit Date"
10243
  msgstr "Data auditului"
10244
 
10245
- #: view/Audits/AuditStats.php:65 view/Audits/AuditStats.php:92
10246
- #: view/FocusPages/FocusPageRow.php:109
10247
- #, fuzzy, php-format
10248
- #| msgid "Time on page is %s minutes"
10249
- msgid "Wait %s minutes"
10250
- msgstr "Timpul pe pagină este de %s minute"
10251
 
10252
- #: view/Audits/AuditStats.php:77
10253
  msgid "Add a new page for Audit"
10254
  msgstr "Adăugați o nouă pagină pentru Audit"
10255
 
10256
- #: view/Audits/AuditStats.php:110
10257
  msgid "Audit in progress"
10258
  msgstr "Audit în curs de desfășurare"
10259
 
10260
- #: view/Audits/AuditStats.php:116
10261
  msgid "Audit not ready yet"
10262
  msgstr "Auditul nu este încă gata"
10263
 
10264
- #: view/Audits/AuditStats.php:121
10265
  msgid "You can refresh the audit once every hour"
10266
  msgstr "Puteți reîmprospăta auditul o dată la fiecare oră"
10267
 
10268
- #: view/Audits/AuditStats.php:122
10269
  msgid "Request Website Audit"
10270
  msgstr "Solicitați un audit al site-ului web"
10271
 
10272
- #: view/Audits/AuditStats.php:141 view/Audits/AuditStats.php:253
10273
  #: view/Ranking/Rankings.php:407 view/Research/History.php:37
10274
  msgid "Date"
10275
  msgstr "Data"
10276
 
10277
- #: view/Audits/AuditStats.php:141
10278
  msgid "On-Page"
10279
  msgstr "On-Page"
10280
 
10281
- #: view/Audits/AuditStats.php:141
10282
  msgid "Off-Page"
10283
  msgstr "Off-Page"
10284
 
10285
- #: view/Audits/AuditStats.php:164
10286
  #, php-format
10287
  msgid "You've completed %s tasks from %s"
10288
  msgstr "Ai finalizat %s sarcini din %s"
10289
 
10290
- #: view/Audits/AuditStats.php:185 view/Audits/Compare.php:53
10291
  msgid "Scores"
10292
  msgstr "Scoruri"
10293
 
10294
- #: view/Audits/AuditStats.php:186
10295
  #, php-format
10296
  msgid "the latest %s days evolution for Audit"
10297
  msgstr "evoluția ultimelor %s zile pentru Audit"
10298
 
10299
- #: view/Audits/AuditStats.php:208 view/FocusPages/FocusPageStats.php:135
10300
  #: view/Ranking/Rankings.php:149
10301
  msgid "Progress & Achievements"
10302
  msgstr "Progrese și realizări"
10303
 
10304
- #: view/Audits/AuditStats.php:209
10305
  #, php-format
10306
  msgid "the latest %s days progress for Audit Pages"
10307
  msgstr "ultimele %s zile de progres pentru Pagini de audit"
10308
 
10309
- #: view/Audits/AuditStats.php:217 view/FocusPages/FocusPageStats.php:145
10310
  #: view/Ranking/Rankings.php:178
10311
  msgid "No progress found yet"
10312
  msgstr "Nici un progres găsit încă"
10313
 
10314
- #: view/Audits/AuditStats.php:229 view/Ranking/Rankings.php:191
10315
  msgid "Share Your Success"
10316
  msgstr ""
10317
 
10318
- #: view/Audits/AuditStats.php:236
10319
  msgid "Audit History"
10320
  msgstr "Istoricul auditului"
10321
 
10322
- #: view/Audits/AuditStats.php:243
10323
  msgid "Compare Audits"
10324
  msgstr "Comparați auditurile"
10325
 
10326
- #: view/Audits/AuditStats.php:252
10327
  msgid "Page(s)"
10328
  msgstr "Pagina (pagini)"
10329
 
10330
- #: view/Audits/AuditStats.php:269
10331
  msgid "pages"
10332
  msgstr "meniu"
10333
 
10334
- #: view/Audits/AuditStats.php:273
10335
  msgid "Show Latest Audit"
10336
  msgstr "Afișați cel mai recent audit"
10337
 
10338
- #: view/Audits/AuditStats.php:273
10339
  msgid "Show Audit"
10340
  msgstr "Arată auditul"
10341
 
@@ -10735,85 +10771,89 @@ msgstr ""
10735
  "Adăugați noi tipuri de postări în listă și personalizați automatizarea pentru "
10736
  "acestea."
10737
 
10738
- #: view/Automation/Types.php:104
10739
  #, fuzzy
10740
  #| msgid "Add Post Type for SEO Automation"
10741
  msgid "All the post types are sent for Automation"
10742
  msgstr "Adăugați tipul de post pentru automatizarea SEO"
10743
 
10744
- #: view/Automation/Types.php:105
10745
  #, fuzzy
10746
  msgid "Start Automation Setup"
10747
  msgstr "Automatizare Meta"
10748
 
10749
- #: view/Automation/Types.php:119
10750
  msgid ""
10751
  "Add ALL Your Post Types to our Automation section, to ensure all your site is "
10752
  "covered with excellent SEO."
10753
  msgstr ""
10754
 
10755
- #: view/Blocks/Account.php:27
10756
  #, php-format
10757
  msgid "Due Date: %s"
10758
  msgstr "Data scadentă: %s"
10759
 
10760
- #: view/Blocks/Account.php:42
 
 
 
 
10761
  #, fuzzy
10762
  #| msgid "Keywords"
10763
  msgid "Keywords Lookups"
10764
  msgstr "Cuvinte cheie"
10765
 
10766
- #: view/Blocks/Account.php:57
10767
  msgid "SERP Lookups"
10768
  msgstr ""
10769
 
10770
- #: view/Blocks/Account.php:69
10771
  #, fuzzy
10772
  #| msgid "Focus Pages"
10773
  msgid "Focus Pages Lookup"
10774
  msgstr "Pagini Focus"
10775
 
10776
- #: view/Blocks/Account.php:81
10777
  #, fuzzy
10778
  #| msgid "Audit Pages"
10779
  msgid "Audit Pages Lookup"
10780
  msgstr "Pagini de audit"
10781
 
10782
- #: view/Blocks/Account.php:90
10783
  #, fuzzy
10784
  #| msgid "Reset"
10785
  msgid "Reset day"
10786
  msgstr "Resetare"
10787
 
10788
- #: view/Blocks/Account.php:97
10789
  msgid "Want to hide this section from your customes?"
10790
  msgstr ""
10791
 
10792
- #: view/Blocks/Account.php:103
10793
  #, fuzzy
10794
  #| msgid "Check Your Account"
10795
  msgid "Upgrade your account"
10796
  msgstr "Verificați contul dvs"
10797
 
10798
- #: view/Blocks/Account.php:107
10799
  #, fuzzy
10800
  #| msgid "Billing Support"
10801
  msgid "Billing info"
10802
  msgstr "Suport pentru facturare"
10803
 
10804
- #: view/Blocks/Account.php:111
10805
  #, fuzzy
10806
  #| msgid "Audit settings"
10807
  msgid "Account settings"
10808
  msgstr "Setări de audit"
10809
 
10810
- #: view/Blocks/Account.php:115
10811
  #, fuzzy
10812
  #| msgid "Squirrly Keyword Research"
10813
  msgid "Squirrly Cloud"
10814
  msgstr " Cercetare cuvinte cheie"
10815
 
10816
- #: view/Blocks/Account.php:119 view/Blocks/Support.php:19
10817
  msgid "Support"
10818
  msgstr "Suport"
10819
 
@@ -10849,34 +10889,6 @@ msgstr "Istoricul auditului"
10849
  msgid "Rankings Mastery Tasks"
10850
  msgstr ""
10851
 
10852
- #: view/Blocks/Connect.php:15 view/Blocks/Connect.php:29
10853
- #, php-format
10854
- msgid ""
10855
- "This option is used to track innerlinks and insights for your Focus Pages and "
10856
- "give detailed information about them. %sIt is also useful for sending the "
10857
- "optimized posts from %shttps://cloud.squirrly.co%s directly on your WordPress "
10858
- "site."
10859
- msgstr ""
10860
- "Această opțiune este utilizată pentru a urmări legăturile interne și "
10861
- "perspectivele pentru paginile Focus și pentru a oferi informații detaliate "
10862
- "despre acestea. %sEste, de asemenea, utilă pentru a trimite postările "
10863
- "optimizate de pe %shttps://cloud.squirrly.co%s direct pe site-ul dvs. "
10864
- "WordPress."
10865
-
10866
- #: view/Blocks/Connect.php:16 view/Blocks/Connect.php:31
10867
- #, fuzzy
10868
- #| msgid "Let Squirrly Cloud connect to WordPress API"
10869
- msgid "Connect Squirrly Cloud & Website API"
10870
- msgstr "Lăsați Squirrly Cloud să se conecteze la API-ul WordPress"
10871
-
10872
- #: view/Blocks/Connect.php:19
10873
- msgid "Connect"
10874
- msgstr "Conecteaza"
10875
-
10876
- #: view/Blocks/Connect.php:35
10877
- msgid "disconnect"
10878
- msgstr "deconectați"
10879
-
10880
  #: view/Blocks/Dashboard.php:16
10881
  msgid "Congratulations! you have success messages"
10882
  msgstr "Felicitări! aveți mesaje de succes"
@@ -10920,13 +10932,13 @@ msgstr "Squirrly SEO Caracteristici principale"
10920
  msgid "Manage the features & access them directly from here."
10921
  msgstr "Gestionați funcțiile și accesați-le direct de aici."
10922
 
10923
- #: view/Blocks/Features.php:44 view/Blocks/Features.php:211
10924
  #, fuzzy
10925
  #| msgid "Do you want to search in the 400 features list?"
10926
  msgid "Do you want to search in the 650 features list?"
10927
  msgstr "Doriți să căutați în lista celor 400 de caracteristici?"
10928
 
10929
- #: view/Blocks/Features.php:46 view/Blocks/Features.php:213
10930
  #, fuzzy
10931
  #| msgid "Do you want to see all 400 features list?"
10932
  msgid "Do you want to see all 650 features list?"
@@ -10940,35 +10952,35 @@ msgstr ""
10940
  msgid "Search Feature"
10941
  msgstr "Caută"
10942
 
10943
- #: view/Blocks/Features.php:158
10944
  msgid "start feature setup"
10945
  msgstr "configureaza feature"
10946
 
10947
- #: view/Blocks/Features.php:162
10948
  msgid "see feature"
10949
  msgstr "a se vedea caracteristica"
10950
 
10951
- #: view/Blocks/Features.php:178
10952
  #, fuzzy
10953
  #| msgid "Click to select"
10954
  msgid "click to deactivate"
10955
  msgstr "Faceți clic pentru a selecta"
10956
 
10957
- #: view/Blocks/Features.php:178
10958
  #, fuzzy
10959
  #| msgid "Click to select"
10960
  msgid "click to activate"
10961
  msgstr "Faceți clic pentru a selecta"
10962
 
10963
- #: view/Blocks/Features.php:184
10964
  msgid "connect to cloud"
10965
  msgstr "conectare la cloud"
10966
 
10967
- #: view/Blocks/Features.php:188
10968
  msgid "already active"
10969
  msgstr "deja activ"
10970
 
10971
- #: view/Blocks/Features.php:192
10972
  msgid "activate feature"
10973
  msgstr "activați funcția"
10974
 
@@ -11041,7 +11053,7 @@ msgstr "Faceți clic pentru a minimiza caseta"
11041
  msgid "Click to Maximize Box"
11042
  msgstr "Faceți clic pentru a maximiza caseta"
11043
 
11044
- #: view/Blocks/LiveAssistant.php:10 view/Blocks/LiveAssistant.php:42
11045
  msgid "Squirrly Briefcase"
11046
  msgstr "Briefcase Squirrly"
11047
 
@@ -11081,140 +11093,132 @@ msgstr "Adăugați un cuvânt cheie la Briefcase"
11081
  msgid "SLA Score"
11082
  msgstr "Scor de audit"
11083
 
11084
- #: view/Blocks/LiveAssistant.php:28
11085
- msgid "Use this keyword"
11086
- msgstr "Foloseste acest cuvant"
11087
 
11088
- #: view/Blocks/LiveAssistant.php:32
11089
  msgid "Step 1"
11090
  msgstr ""
11091
 
11092
- #: view/Blocks/LiveAssistant.php:33
11093
  msgid "Step 2"
11094
  msgstr ""
11095
 
11096
- #: view/Blocks/LiveAssistant.php:33
11097
  #, fuzzy
11098
  #| msgid "Cancel"
11099
  msgid "Enhance"
11100
  msgstr "Renunta"
11101
 
11102
- #: view/Blocks/LiveAssistant.php:34
11103
  msgid "Step 3"
11104
  msgstr ""
11105
 
11106
- #: view/Blocks/LiveAssistant.php:34
11107
  #, fuzzy
11108
  #| msgid "analytics.js"
11109
  msgid "Analysis"
11110
  msgstr "analytics.js"
11111
 
11112
- #: view/Blocks/LiveAssistant.php:35
11113
  msgid "Extra"
11114
  msgstr ""
11115
 
11116
- #: view/Blocks/LiveAssistant.php:35
11117
  msgid "Deep"
11118
  msgstr ""
11119
 
11120
- #: view/Blocks/LiveAssistant.php:43
11121
- msgid "We recomend that you select at least 3 Keywords for best results."
11122
  msgstr ""
11123
 
11124
- #: view/Blocks/LiveAssistant.php:48
11125
  msgid "Search in Briefcase ..."
11126
  msgstr "Căutați în Briefcase ..."
11127
 
11128
- #: view/Blocks/LiveAssistant.php:52 view/Blocks/LiveAssistant.php:80
11129
- #: view/Blocks/LiveAssistant.php:124 view/Onboarding/Step1.php:85
11130
  msgid "Continue"
11131
  msgstr "Continua"
11132
 
11133
- #: view/Blocks/LiveAssistant.php:59
11134
  #, fuzzy
11135
  msgid "Squirrly Blogging Assistant"
11136
  msgstr "Construiți cu Blogging Assistant"
11137
 
11138
- #: view/Blocks/LiveAssistant.php:60
11139
  msgid "The keyword will be automatically be added as the image alt text."
11140
  msgstr ""
11141
 
11142
- #: view/Blocks/LiveAssistant.php:61
11143
  msgid ""
11144
  "Click on “Insert it!” and the incorporated Tweet(s) will add more substance "
11145
  "to your article."
11146
  msgstr ""
11147
 
11148
- #: view/Blocks/LiveAssistant.php:62
11149
  msgid ""
11150
  "Browse through Wikipedia articles to get more insight or quick fact-checking "
11151
  "on your topic."
11152
  msgstr ""
11153
 
11154
- #: view/Blocks/LiveAssistant.php:63
11155
  msgid "Find topic-related articles written by fellow bloggers or influencers."
11156
  msgstr ""
11157
 
11158
- #: view/Blocks/LiveAssistant.php:64
11159
  msgid ""
11160
  "Squirrly automatically browses your WordPress for previously written articles "
11161
  "you want to cite or insert"
11162
  msgstr ""
11163
 
11164
- #: view/Blocks/LiveAssistant.php:71
11165
  msgid "Images"
11166
  msgstr "Imagini"
11167
 
11168
- #: view/Blocks/LiveAssistant.php:72
11169
  msgid "Twitter"
11170
  msgstr "Twitter"
11171
 
11172
- #: view/Blocks/LiveAssistant.php:73
11173
  msgid "Wiki"
11174
  msgstr "Wiki"
11175
 
11176
- #: view/Blocks/LiveAssistant.php:74
11177
  msgid "Blogs"
11178
  msgstr "Bloguri"
11179
 
11180
- #: view/Blocks/LiveAssistant.php:75
11181
  msgid "My articles"
11182
  msgstr "Articolele mele"
11183
 
11184
- #: view/Blocks/LiveAssistant.php:84
11185
  msgid "Show only Copyright Free images"
11186
  msgstr "Arata doar imagini fara copyright"
11187
 
11188
  #: view/Blocks/LiveAssistant.php:94
11189
- msgid "Squirrly Live Assistant"
11190
- msgstr "Asistent live Squirrly"
11191
-
11192
- #: view/Blocks/LiveAssistant.php:95
11193
  msgid ""
11194
  "Squirrly automatically checks your article to make sure it has the best SEO "
11195
  "chances"
11196
  msgstr ""
11197
 
11198
- #: view/Blocks/LiveAssistant.php:104
11199
- msgid "Update"
11200
- msgstr "Update"
11201
-
11202
- #: view/Blocks/LiveAssistant.php:132
11203
  #, fuzzy
11204
  msgid "Squirrly Focus Pages"
11205
  msgstr "Pagini Focus"
11206
 
11207
- #: view/Blocks/LiveAssistant.php:133
11208
  msgid ""
11209
  "Focus Pages bring you clear methods to take your content from never found to "
11210
  "always found on Google."
11211
  msgstr ""
11212
 
11213
- #: view/Blocks/LiveAssistant.php:139
11214
  msgid "Need a deeper analysis of this content?"
11215
  msgstr ""
11216
 
11217
- #: view/Blocks/LiveAssistant.php:140
11218
  #, fuzzy
11219
  #| msgid ""
11220
  #| "Focus Pages bring you clear methods to take your pages from never found to "
@@ -11230,7 +11234,7 @@ msgstr ""
11230
  "influențarea factorilor de clasificare corecți. Transformați tot ceea ce "
11231
  "vedeți aici în Verde și veți câștiga."
11232
 
11233
- #: view/Blocks/LiveAssistant.php:143
11234
  #, fuzzy
11235
  #| msgid "Set Focus Page"
11236
  msgid "Set Focus Pages"
@@ -11275,7 +11279,12 @@ msgstr ""
11275
  msgid "Sign Up"
11276
  msgstr "Sign Up"
11277
 
11278
- #: view/Blocks/Menu.php:47 view/Blocks/Menu.php:84 view/Blocks/Menu.php:128
 
 
 
 
 
11279
  msgid "Back To Home"
11280
  msgstr ""
11281
 
@@ -11325,7 +11334,7 @@ msgstr ""
11325
  "Snippet"
11326
 
11327
  #: view/Blocks/Snippet.php:151 view/Blocks/Snippet.php:685
11328
- #: view/Blocks/Snippet.php:947 view/Onboarding/Step1.php:84
11329
  msgid "Cancel"
11330
  msgstr "Renunta"
11331
 
@@ -11714,89 +11723,6 @@ msgstr ""
11714
  "dvs. de găzduire web interferează cu WordPress. Vă rugăm să contactați echipa "
11715
  "de asistență a furnizorului de găzduire"
11716
 
11717
- #: view/Blocks/Support.php:8
11718
- msgid "Go to Profile"
11719
- msgstr "Profilul tau din Squirrly"
11720
-
11721
- #: view/Blocks/Support.php:8 view/Blocks/Support.php:9
11722
- msgid "Profile"
11723
- msgstr "Profil"
11724
-
11725
- #: view/Blocks/Support.php:22
11726
- msgid "Need Help with Squirrly SEO?"
11727
- msgstr "Ai nevoie de ajutor cu Squirrly SEO?"
11728
-
11729
- #: view/Blocks/Support.php:24 view/Blocks/Support.php:91
11730
- #, php-format
11731
- msgid "10 AM to 4 PM (GMT): Mon-Fri %sby contact form%s."
11732
- msgstr ""
11733
- "De la ora 10.00 la 16.00 (GMT): Luni-vineri %sprin formularul de contact%s."
11734
-
11735
- #: view/Blocks/Support.php:25 view/Blocks/Support.php:92
11736
- #, php-format
11737
- msgid "How To Squirrly %swebsite%s."
11738
- msgstr "Cum să Squirrly %swebsite%s."
11739
-
11740
- #: view/Blocks/Support.php:26 view/Blocks/Support.php:93
11741
- #, php-format
11742
- msgid "Facebook %sSupport Community%s."
11743
- msgstr "Facebook %sComunitatea de suport%s."
11744
-
11745
- #: view/Blocks/Support.php:27 view/Blocks/Support.php:94
11746
- #, php-format
11747
- msgid "Facebook %sMessenger%s."
11748
- msgstr "Facebook %sMessenger%s."
11749
-
11750
- #: view/Blocks/Support.php:28
11751
- #, php-format
11752
- msgid "Twitter %sSupport%s."
11753
- msgstr "Twitter %sSupport%s."
11754
-
11755
- #: view/Blocks/Support.php:36
11756
- msgid "How was your Squirrly experience today?"
11757
- msgstr "Cum a fost experienta de azi cu Squirrly?"
11758
-
11759
- #: view/Blocks/Support.php:43
11760
- msgid "Annoying"
11761
- msgstr "Enervant"
11762
-
11763
- #: view/Blocks/Support.php:47
11764
- msgid "Bad"
11765
- msgstr "Negativ"
11766
-
11767
- #: view/Blocks/Support.php:51
11768
- msgid "Nice"
11769
- msgstr "Frumos"
11770
-
11771
- #: view/Blocks/Support.php:55
11772
- msgid "Great"
11773
- msgstr "Minunat"
11774
-
11775
- #: view/Blocks/Support.php:59
11776
- msgid "Love it"
11777
- msgstr "Îmi place"
11778
-
11779
- #: view/Blocks/Support.php:71
11780
- msgid "How was Squirrly today?"
11781
- msgstr "Cum a fost Squirrly azi?"
11782
-
11783
- #: view/Blocks/Support.php:86
11784
- msgid "Send feedback"
11785
- msgstr "Trimite"
11786
-
11787
- #: view/Blocks/Support.php:90
11788
- msgid "For more support:"
11789
- msgstr "Pentru mai mult sprijin:"
11790
-
11791
- #: view/Blocks/Support.php:95
11792
- #, php-format
11793
- msgid "New Lessons Mon. and Tue. on %sTwitter%s."
11794
- msgstr "Noi lecții luni și marți pe %sTwitter%s."
11795
-
11796
- #: view/Blocks/Support.php:100
11797
- msgid "Thank you! You can send us a happy face tomorrow too."
11798
- msgstr "Vă mulțumesc! Poți să ne trimiți și mâine o față fericită."
11799
-
11800
  #: view/Blocks/Toolbar.php:13
11801
  #, fuzzy
11802
  #| msgid "Beginner"
@@ -12099,6 +12025,12 @@ msgstr "Audit"
12099
  msgid "Details"
12100
  msgstr "Detalii"
12101
 
 
 
 
 
 
 
12102
  #: view/FocusPages/FocusPageRow.php:130
12103
  msgid "Upgrade Plan"
12104
  msgstr "Actualizeaza Plan"
@@ -12456,13 +12388,13 @@ msgstr ""
12456
  msgid "Learn how you can import the same settings on this site as well"
12457
  msgstr ""
12458
 
12459
- #: view/Onboarding/Step1.php:75
12460
  #, fuzzy
12461
  #| msgid "Patterns activated"
12462
  msgid "What will be activated"
12463
  msgstr "Modele activate"
12464
 
12465
- #: view/Onboarding/Step1.php:81
12466
  #, fuzzy
12467
  #| msgid "Sitemap XML"
12468
  msgid "Squirrly Sitemap XML"
@@ -15063,6 +14995,100 @@ msgstr "Squirrly"
15063
  msgid "https://plugin.squirrly.co"
15064
  msgstr "https://plugin.squirrly.co"
15065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15066
  #~ msgid "Could not add the demo post."
15067
  #~ msgstr "Nu s-a putut trimite postul de demo."
15068
 
@@ -15404,15 +15430,6 @@ msgstr "https://plugin.squirrly.co"
15404
  #~ "Selectați modul în care doriți ca Squirrly Live Assistant să se încarce în "
15405
  #~ "editor."
15406
 
15407
- #~ msgid "Auto"
15408
- #~ msgstr "Auto"
15409
-
15410
- #~ msgid "Integrated Box"
15411
- #~ msgstr "Cutie integrată"
15412
-
15413
- #~ msgid "Floating Box"
15414
- #~ msgstr "Cutie plutitoare"
15415
-
15416
  #~ msgid "Show Advanced Options"
15417
  #~ msgstr "Arată opțiuni avansate"
15418
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Squirrly SEO\n"
4
+ "POT-Creation-Date: 2022-06-20 10:08+0300\n"
5
+ "PO-Revision-Date: 2022-06-20 10:10+0300\n"
6
  "Last-Translator: Squirrly <contact@squirrly.co>\n"
7
  "Language-Team: Squirrly UK <support@squirrly.co>\n"
8
  "Language: ro_RO\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 3.1\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
15
  "X-Poedit-WPHeader: squirrly.php\n"
19
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.min.js\n"
22
+ "X-Poedit-SearchPathExcluded-1: view/assets\n"
23
 
24
  #: classes/RemoteController.php:296
25
  msgid "Too many API attempts, please slow down the request."
73
  msgid "The code for Facebook App must only contain numbers."
74
  msgstr "Codul Facebook App poate conține doar numele."
75
 
76
+ #: classes/helpers/Tools.php:77
77
  msgid "Getting started"
78
  msgstr "Setări"
79
 
80
+ #: classes/helpers/Tools.php:103
81
  msgid "Documentation"
82
  msgstr "Documentație"
83
 
84
+ #: classes/helpers/Tools.php:104
85
  msgid "Leave a review"
86
  msgstr "Lasă o evaluare"
87
 
88
+ #: classes/helpers/Tools.php:543 classes/helpers/Tools.php:600
89
  msgid "Category"
90
  msgstr "Categorie"
91
 
92
+ #: classes/helpers/Tools.php:562 classes/helpers/Tools.php:619
93
  msgid "Tag"
94
  msgstr "Etichetă"
95
 
96
+ #: classes/helpers/Tools.php:581
97
  msgid "Format"
98
  msgstr "Format"
99
 
100
+ #: classes/helpers/Tools.php:638
101
  msgid "Shipping Option"
102
  msgstr "Opțiunea de expediere"
103
 
104
+ #: classes/helpers/Tools.php:676
105
  msgid "Author at"
106
  msgstr "Autor la"
107
 
108
+ #: classes/helpers/Tools.php:714
109
  msgid "Are you looking for"
110
  msgstr "Căutați"
111
 
112
+ #: classes/helpers/Tools.php:715
113
  msgid "These are the results for"
114
  msgstr "Nu s-a găsit nimic pentru"
115
 
116
+ #: classes/helpers/Tools.php:715
117
  msgid "that you can find on our website."
118
  msgstr "pe care îl puteți găsi pe site-ul nostru."
119
 
120
+ #: classes/helpers/Tools.php:751
121
  msgid "Page not found"
122
  msgstr "Pagina nu a fost găsită"
123
 
124
+ #: classes/helpers/Tools.php:752
125
  msgid "This page could not be found on our website."
126
  msgstr "Această pagină nu a putut fi găsită pe site-ul nostru."
127
 
128
+ #: classes/helpers/Tools.php:1157
129
  msgid "For better text comparison you need to install PHP mbstring extension."
130
  msgstr ""
131
  "Pentru o comparație mai bună a textului, trebuie să instalați extensia PHP "
298
  msgstr "Nu a fost găsit niciun cuvânt cheie."
299
 
300
  #: controllers/Assistant.php:114 controllers/Assistant.php:141
301
+ #: controllers/Audits.php:395 controllers/Automation.php:79
302
+ #: controllers/Automation.php:119 controllers/Automation.php:155
303
+ #: controllers/Onboarding.php:205 controllers/Post.php:380
304
  #: controllers/Ranking.php:156 controllers/SeoSettings.php:102
305
  #: controllers/SeoSettings.php:157 controllers/SeoSettings.php:426
306
  msgid "Saved"
307
  msgstr "Salvat"
308
 
309
+ #: controllers/Assistant.php:120 controllers/Automation.php:135
310
+ #: controllers/BulkSeo.php:75 controllers/Patterns.php:124
311
+ #: controllers/Post.php:325 controllers/Post.php:358 controllers/Post.php:393
 
312
  #: controllers/PostsList.php:272 controllers/Research.php:215
313
  #: controllers/Research.php:222 controllers/Research.php:260
314
  #: controllers/Research.php:282 controllers/Research.php:305
392
  msgid "Not a valid email address."
393
  msgstr "Te rog introdu o adresă email validă."
394
 
395
+ #: controllers/Automation.php:126 controllers/Automation.php:163
396
  msgid "Could not add the post type."
397
  msgstr "Nu s-a putut adăuga tipul de post."
398
 
413
  msgstr "Salvat! Sarcina marcată ca terminată."
414
 
415
  #: controllers/CheckSeo.php:345 controllers/Patterns.php:27
416
+ #: controllers/Research.php:324 controllers/Research.php:355
417
+ #: controllers/Research.php:409 controllers/Research.php:539
418
+ #: controllers/Research.php:755 models/LiveAssistant.php:45
419
  #: view/Blocks/Snippet.php:1300
420
  msgid "Saved!"
421
  msgstr "Salvat!"
461
  msgid "The focus page is deleted"
462
  msgstr "Pagina de focalizare este ștearsă"
463
 
464
+ #: controllers/Menu.php:93
465
  #, php-format
466
  msgid ""
467
  "An error occurred during activation. If this error persists, please contact "
470
  "A apărut o eroare în timpul activării. Dacă această eroare persistă, vă rugăm "
471
  "să ne contactați la adresa: %s"
472
 
473
+ #: controllers/Menu.php:130
474
  msgid "Dashboard"
475
  msgstr "Dashboard"
476
 
477
+ #: controllers/Menu.php:244 models/CheckSeo.php:194 models/CheckSeo.php:558
478
  #: models/CheckSeo.php:572 models/CheckSeo.php:586 models/CheckSeo.php:600
479
  #: models/CheckSeo.php:642
480
  msgid "SEO Snippet"
481
  msgstr "Snippet SEO"
482
 
483
+ #: controllers/Menu.php:255 controllers/Snippet.php:180
484
  msgid "Custom SEO"
485
  msgstr "SEO personalizat"
486
 
487
+ #: controllers/Menu.php:281
488
  msgid "Squirrly SEO"
489
  msgstr "Squirrly SEO"
490
 
491
+ #: controllers/Menu.php:424 view/Blocks/LiveAssistant.php:93
492
+ msgid "Squirrly Live Assistant"
493
+ msgstr "Asistent live Squirrly"
494
+
495
  #: controllers/Onboarding.php:91 view/Onboarding/Step1.php:22
496
  #, fuzzy
497
  #| msgid "SEO Expert"
551
  msgid "Saved! This is how the preview looks like"
552
  msgstr "Salvat! Așa arată previzualizarea"
553
 
554
+ #: controllers/Post.php:383 controllers/Post.php:407
555
  msgid "Can't get the post URL"
556
  msgstr "Nu pot primi URL-ul postului"
557
 
558
+ #: controllers/Post.php:412
559
  msgid "Invalid request"
560
  msgstr "Solicitare incorectă"
561
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
562
  #: controllers/PostsList.php:112 models/PostsList.php:23
563
  msgid "Optimized"
564
  msgstr "Optimizat"
841
  msgstr ""
842
  "Nu am putut să vă creăm contul. Vă rugăm să introduceți un e-mail valid."
843
 
844
+ #: core/Blocklogin.php:82 core/Blocklogin.php:132
845
  #, php-format
846
  msgid ""
847
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
851
  "ului dvs. (sau webmasterul) și să le cereți să adauge %s la lista albă de IP-"
852
  "uri."
853
 
854
+ #: core/Blocklogin.php:85
855
  msgid "Your email is not set. Please enter a valid email."
856
  msgstr ""
857
  "Adresa dvs. de e-mail nu este setată. Vă rugăm să introduceți un e-mail valid."
858
 
859
+ #: core/Blocklogin.php:108
860
  msgid "Wrong email or password!"
861
  msgstr "Email sau Parola gresita!"
862
 
863
+ #: core/Blocklogin.php:111
864
  msgid "You can only use this account for the URL you registered first!"
865
  msgstr ""
866
  "Puteți utiliza acest cont doar pentru URL-ul pe care l-ați înregistrat mai "
867
  "întâi!"
868
 
869
+ #: core/Blocklogin.php:114
870
  msgid "You disconnected your website from"
871
  msgstr "Ați deconectat site-ul dvs. de la"
872
 
873
+ #: core/Blocklogin.php:118
874
  msgid "An error occured."
875
  msgstr "A apărut o eroare."
876
 
877
+ #: core/Blocklogin.php:136
878
  msgid "Both fields are required."
879
  msgstr "Ambele câmpuri sunt obligatorii."
880
 
4838
  #| "Go to %sSquirrly > SEO Settings > Automation%s and make sure that SEO "
4839
  #| "Patterns are activated."
4840
  msgid ""
4841
+ "Go to %s Squirrly > All Features %s and make sure that SEO Automation is "
4842
+ "activated."
4843
  msgstr ""
4844
  "Mergeți la %sSquirrly > Setări SEO > Automatizare%s și asigurați-vă că sunt "
4845
  "activate Modelele SEO."
6544
  msgid "Focus Page could not be verified (error: %s)"
6545
  msgstr "Focus Pagina nu a putut fi verificată (eroare: %s)"
6546
 
6547
+ #: models/Compatibility.php:437
6548
  msgid "MPN"
6549
  msgstr "MPN"
6550
 
6551
+ #: models/Compatibility.php:438
6552
  msgid "Add Manufacturer Part Number (MPN)"
6553
  msgstr "Adăugați numărul de referință al producătorului (MPN)"
6554
 
6555
+ #: models/Compatibility.php:441
6556
  msgid "GTIN"
6557
  msgstr "GTIN"
6558
 
6559
+ #: models/Compatibility.php:442
6560
  msgid "Add Global Trade Item Number (GTIN)"
6561
  msgstr "Adăugați numărul articolului comercial global (GTIN)"
6562
 
6563
+ #: models/Compatibility.php:445
6564
  msgid "EAN (GTIN-13)"
6565
  msgstr "EAN (GTIN-13)"
6566
 
6567
+ #: models/Compatibility.php:446
6568
  msgid ""
6569
  "Add Global Trade Item Number (GTIN) for the major GTIN used outside of North "
6570
  "America"
6572
  "Adăugați Global Trade Item Number (GTIN) pentru principalul GTIN utilizat în "
6573
  "afara Americii de Nord"
6574
 
6575
+ #: models/Compatibility.php:449
6576
  msgid "UPC (GTIN-12)"
6577
  msgstr "UPC (GTIN-12)"
6578
 
6579
+ #: models/Compatibility.php:450
6580
  msgid "Add Global Trade Item Number (GTIN) for North America"
6581
  msgstr ""
6582
  "Adăugați numărul de articol comercial global (GTIN) pentru America de Nord"
6583
 
6584
+ #: models/Compatibility.php:453
6585
  msgid "ISBN"
6586
  msgstr "Isbn"
6587
 
6588
+ #: models/Compatibility.php:454
6589
  msgid "Add Global Trade Item Number (GTIN) for books"
6590
  msgstr "Adăugați numărul de articol comercial global (GTIN) pentru cărți"
6591
 
6592
+ #: models/Compatibility.php:459
6593
  msgid "Brand Name"
6594
  msgstr "Nume de brand"
6595
 
6596
+ #: models/Compatibility.php:460
6597
  msgid "Add Product Brand Name"
6598
  msgstr "Adăugați numele mărcii produsului"
6599
 
6697
  msgid "The favicon has been updated."
6698
  msgstr "Icoana a fost adaugata pe server."
6699
 
6700
+ #: models/LiveAssistant.php:42
6701
+ msgid "Keyword:"
6702
+ msgstr "Cuvant cheie:"
6703
+
6704
+ #: models/LiveAssistant.php:43
6705
+ msgid "date"
6706
+ msgstr "data"
6707
+
6708
+ #: models/LiveAssistant.php:44
6709
+ msgid ""
6710
+ "To load the Live Assistant and optimize this page, click to connect to "
6711
+ "Squirrly Cloud."
6712
+ msgstr ""
6713
+ "Pentru a încărca Squirrly Live Assistant și a optimiza această pagină, faceți "
6714
+ "clic pentru a vă conecta la Squirrly Cloud."
6715
+
6716
+ #: models/LiveAssistant.php:46
6717
+ msgid "Read it!"
6718
+ msgstr "Citeste!"
6719
+
6720
+ #: models/LiveAssistant.php:47
6721
+ msgid "Insert it!"
6722
+ msgstr "Adauga!"
6723
+
6724
+ #: models/LiveAssistant.php:48
6725
+ msgid "Reference"
6726
+ msgstr "Referință"
6727
+
6728
+ #: models/LiveAssistant.php:49
6729
+ msgid "Insert as box"
6730
+ msgstr "Adaugă o casuță"
6731
+
6732
+ #: models/LiveAssistant.php:50
6733
+ msgid "Insert Link"
6734
+ msgstr "Adaugă Link"
6735
+
6736
+ #: models/LiveAssistant.php:51
6737
+ msgid "Not relevant?"
6738
+ msgstr "Nu este relevant?"
6739
+
6740
+ #: models/LiveAssistant.php:52
6741
+ msgid "Insert in your article"
6742
+ msgstr "Adauga paragraf in articol"
6743
+
6744
+ #: models/LiveAssistant.php:53
6745
+ msgid ":( An error occurred while processing your request. Please try again"
6746
+ msgstr ":( A apărut o eroare la procesarea cererii. Încercați din nou"
6747
+
6748
+ #: models/LiveAssistant.php:54
6749
+ #, fuzzy
6750
+ #| msgid "Search in Briefcase ..."
6751
+ msgid "Searching ... "
6752
+ msgstr "Căutați în Briefcase ..."
6753
+
6754
+ #: models/LiveAssistant.php:55
6755
+ msgid "No results found!"
6756
+ msgstr "Nu s-a gasit nimic!"
6757
+
6758
+ #: models/LiveAssistant.php:56
6759
+ #, php-format
6760
+ msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
6761
+ msgstr ""
6762
+ "[ ATTRIBUTE: Verificați: %s pentru a vedea condițiile de atribuire a "
6763
+ "imaginii ]"
6764
+
6765
+ #: models/LiveAssistant.php:57
6766
+ msgid "Has creative commons attributes"
6767
+ msgstr "Are condiții de atribuire"
6768
+
6769
+ #: models/LiveAssistant.php:58
6770
+ msgid "No known copyright restrictions"
6771
+ msgstr "Nu sunt restricții de copyright cunoscute"
6772
+
6773
+ #: models/LiveAssistant.php:59
6774
+ msgid ""
6775
+ "You haven`t used Squirrly SEO to optimize your article. Do you want to "
6776
+ "optimize for a keyword before publishing?"
6777
+ msgstr ""
6778
+ "Nu ai folosit Squirrly SEO pentru a optimiza articolul. Vrei sa îl optimizezi "
6779
+ "înainte de publicare?"
6780
+
6781
+ #: models/LiveAssistant.php:60
6782
+ msgid "Your Subscription has Expired"
6783
+ msgstr "Abonamentul dvs. a expirat"
6784
+
6785
+ #: models/LiveAssistant.php:61
6786
+ msgid "There are no keywords saved in briefcase yet"
6787
+ msgstr "Încă nu există cuvinte cheie salvate în Briefcase Squirrly"
6788
+
6789
+ #: models/LiveAssistant.php:62
6790
+ #, php-format
6791
+ msgid "Congratulations! Your article is 100% optimized!"
6792
+ msgstr "Felicitări! Articolul dumneavoastră este 100% optimizat !"
6793
+
6794
+ #: models/LiveAssistant.php:63
6795
+ #, php-format
6796
+ msgid "appears too many times. Try to remove %s of them"
6797
+ msgstr "apare de prea multe ori. Șterge %s cuvint(e) cheie"
6798
+
6799
+ #: models/LiveAssistant.php:64
6800
+ #, php-format
6801
+ msgid "write %s more words"
6802
+ msgstr "mai adaugă %s cuvinte"
6803
+
6804
+ #: models/LiveAssistant.php:65
6805
+ #, php-format
6806
+ msgid "Add the keyword in the %s of your article"
6807
+ msgstr "Adaugă cuvântul cheie la %s articolului"
6808
+
6809
+ #: models/LiveAssistant.php:66
6810
+ msgid "Click to keep the highlight on"
6811
+ msgstr "Faceți clic pentru a continua sublinierea"
6812
+
6813
+ #: models/LiveAssistant.php:67
6814
+ msgid "introduction"
6815
+ msgstr "introducere"
6816
+
6817
+ #: models/LiveAssistant.php:68
6818
+ #, php-format
6819
+ msgid "Write more words after the %s keyword"
6820
+ msgstr "Scrie mai multe cuvinte dupa %s cuvant cheie"
6821
+
6822
+ #: models/LiveAssistant.php:69
6823
+ msgid "or use synonyms"
6824
+ msgstr "sau foloseste sinonime"
6825
+
6826
+ #: models/LiveAssistant.php:70
6827
+ #, php-format
6828
+ msgid "add %s more word(s)"
6829
+ msgstr "mai adauga %s cuvinte"
6830
+
6831
+ #: models/LiveAssistant.php:71
6832
+ #, php-format
6833
+ msgid "or remove %s word(s)"
6834
+ msgstr "sau sterge %s cuvinte"
6835
+
6836
+ #: models/LiveAssistant.php:72
6837
+ #, php-format
6838
+ msgid "add the selected keyword %s more time(s) "
6839
+ msgstr "adaugă cuvântul cheie selectat %s mai multe ori(e) "
6840
+
6841
+ #: models/LiveAssistant.php:73
6842
+ #, php-format
6843
+ msgid "write %s more words to start calculating"
6844
+ msgstr "scrie %s cuvinte pentru a se putea verifica"
6845
+
6846
+ #: models/LiveAssistant.php:74
6847
+ msgid "Add to Briefcase"
6848
+ msgstr "Adăugați în Briefcase Squirrly"
6849
+
6850
+ #: models/LiveAssistant.php:75
6851
+ msgid "Add Keyword to Briefcase"
6852
+ msgstr "Adăugați cuvinte cheie în Briefcase Squirrly"
6853
+
6854
+ #: models/LiveAssistant.php:76
6855
+ msgid "Select"
6856
+ msgstr "Selectează"
6857
+
6858
+ #: models/LiveAssistant.php:77 view/Blocks/Snippet.php:133
6859
+ #: view/Blocks/Snippet.php:657 view/Blocks/Snippet.php:920
6860
+ msgid "Auto Draft"
6861
+ msgstr "Auto Draft"
6862
+
6863
+ #: models/LiveAssistant.php:78
6864
+ msgid "Enter keyword above and press ENTER"
6865
+ msgstr "Adauga cuvinte cheie mai sus si apasa Enter"
6866
+
6867
+ #: models/LiveAssistant.php:79
6868
+ msgid "Add Keywords from Briefcase"
6869
+ msgstr "Adăugați cuvinte cheie din Briefcase"
6870
+
6871
+ #: models/LiveAssistant.php:80
6872
+ msgid ""
6873
+ "Live Assistant was used to optimize this page with the Page Builder. Please "
6874
+ "go back and resume your optimization work there."
6875
+ msgstr ""
6876
+ "Ați folosit deja Asistentul Live pentru a optimiza această postare. Vă rugăm "
6877
+ "să vă întoarceți și să vă reluați activitatea de optimizare."
6878
+
6879
  #: models/Menu.php:120
6880
  msgid "First Step"
6881
  msgstr "Primul pas"
7509
  msgid "Plugin Install Process"
7510
  msgstr "Procesul de instalare a plugin-ului"
7511
 
7512
+ #: models/Snippet.php:271
7513
  msgid "You don't have enough pemission to edit this article"
7514
  msgstr "Nu aveți suficientă permisiune pentru a edita acest articol"
7515
 
7516
+ #: models/Snippet.php:374
7517
  msgid "Error! Could not save the data."
7518
  msgstr "Nu s-a putut salva data."
7519
 
7520
+ #: models/Snippet.php:379
7521
  msgid "Error! Invalid request."
7522
  msgstr "Eroare! Cerere nevalabilă."
7523
 
7524
+ #: models/Snippet.php:427
7525
  msgid "Couldn't find the page"
7526
  msgstr "Nu am putut găsi pagina"
7527
 
7528
+ #: models/Snippet.php:444 models/Snippet.php:456
7529
  msgid "No Polylang translation for this post."
7530
  msgstr "Nu există nicio traducere din Polylang pentru acest post."
7531
 
7543
  msgid "Current URL"
7544
  msgstr "URL-ul curent"
7545
 
7546
+ #: models/abstract/Assistant.php:120 view/Blocks/LiveAssistant.php:31
7547
  msgid "Keywords"
7548
  msgstr "Cuvinte cheie"
7549
 
9839
  msgid "Add New"
9840
  msgstr "Adaugă nou"
9841
 
9842
+ #: view/Assistant/Assistant.php:53 view/Assistant/Settings.php:168
9843
  #: view/Audits/Addpage.php:200 view/Audits/Audit.php:136
9844
  #: view/Audits/Audits.php:50 view/Automation/Automation.php:394
9845
+ #: view/Automation/Settings.php:113 view/Automation/Types.php:113
9846
  #: view/BulkSeo/Bulkseo.php:267 view/FocusPages/Addpage.php:205
9847
  #: view/FocusPages/Pagelist.php:57 view/FocusPages/Pagelist.php:67
9848
  #: view/Ranking/Gscsync.php:118 view/Ranking/Rankings.php:465
9957
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
9958
  msgstr "Căutați %sCopyright Free Images%s în Squirrly Live Assistant."
9959
 
9960
+ #: view/Assistant/Settings.php:100
9961
  msgid "Activate Live Assistant in Frontend"
9962
  msgstr "Activați Live Assistant în Frontend"
9963
 
9964
+ #: view/Assistant/Settings.php:103
9965
  msgid ""
9966
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages "
9967
  "with Builders."
9969
  "Încărcați Squirrly Live Assistant în Frontend pentru a personaliza postările "
9970
  "și paginile cu Builders."
9971
 
9972
+ #: view/Assistant/Settings.php:104
9973
+ #, fuzzy, php-format
9974
+ #| msgid "Currently supports the Elementor Builder plugin."
9975
+ msgid "Supports %s Elementor Builder %s plugin."
9976
  msgstr "În prezent, acceptă pluginul Elementor Builder."
9977
 
9978
+ #: view/Assistant/Settings.php:105
9979
+ #, fuzzy, php-format
9980
+ #| msgid "Currently supports the Elementor Builder plugin."
9981
+ msgid "Supports %s Oxygen Builder %s plugin."
9982
+ msgstr "În prezent, acceptă pluginul Elementor Builder."
9983
+
9984
+ #: view/Assistant/Settings.php:106
9985
+ #, php-format
9986
+ msgid "Supports %s Divi Builder %s plugin (BETA)."
9987
+ msgstr ""
9988
+
9989
+ #: view/Assistant/Settings.php:113
9990
+ #, fuzzy
9991
+ #| msgid "Live Assistant"
9992
+ msgid "Live Assistant Type"
9993
+ msgstr "Asistent live"
9994
+
9995
+ #: view/Assistant/Settings.php:118
9996
+ msgid "Auto"
9997
+ msgstr "Auto"
9998
+
9999
+ #: view/Assistant/Settings.php:119
10000
+ msgid "Integrated Box"
10001
+ msgstr "Cutie integrată"
10002
+
10003
+ #: view/Assistant/Settings.php:120
10004
+ msgid "Floating Box"
10005
+ msgstr "Cutie plutitoare"
10006
+
10007
+ #: view/Assistant/Settings.php:128
10008
  msgid "Places where you do NOT want Squirrly Live Assistant to load"
10009
  msgstr "Locuri în care NU doriți ca Squirrly Live Assistant să se încarce"
10010
 
10011
+ #: view/Assistant/Settings.php:134
10012
  msgid ""
10013
  "Don't select anything if you wish Squirrly Live Assistant to load for all "
10014
  "post types."
10016
  "Nu selectați nimic dacă doriți ca Squirrly Live Assistant să se încarce "
10017
  "pentru toate tipurile de postări."
10018
 
10019
+ #: view/Assistant/Settings.php:140
10020
  msgid "Exclusions"
10021
  msgstr "Excluderi"
10022
 
10023
+ #: view/Assistant/Settings.php:142
10024
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
10025
  msgstr ""
10026
  "Selectați locurile în care NU doriți ca Squirrly Live Assistant să se încarce."
10027
 
10028
+ #: view/Assistant/Settings.php:163 view/Audits/Settings.php:46
10029
  #: view/Automation/Automation.php:356 view/Automation/Settings.php:105
10030
+ #: view/Ranking/Settings.php:334 view/SeoSettings/Jsonld.php:121
10031
+ #: view/SeoSettings/Jsonld.php:169 view/SeoSettings/Jsonld.php:226
10032
+ #: view/SeoSettings/Jsonld.php:307 view/SeoSettings/Jsonld.php:346
10033
+ #: view/SeoSettings/Jsonld.php:385 view/SeoSettings/Jsonld.php:445
10034
+ #: view/SeoSettings/Jsonld.php:485 view/SeoSettings/Jsonld.php:516
10035
+ #: view/SeoSettings/Metas.php:121 view/SeoSettings/Metas.php:161
10036
+ #: view/SeoSettings/Metas.php:195 view/SeoSettings/Social.php:282
10037
+ #: view/SeoSettings/Social.php:328 view/SeoSettings/Social.php:404
10038
+ #: view/SeoSettings/Social.php:456 view/SeoSettings/Tweaks.php:355
10039
+ #: view/SeoSettings/Tweaks.php:421 view/SeoSettings/Tweaks.php:477
10040
+ #: view/SeoSettings/Tweaks.php:534 view/SeoSettings/Tweaks.php:617
10041
+ #: view/SeoSettings/Webmaster.php:300 view/SeoSettings/Webmaster.php:326
10042
+ #: view/SeoSettings/Webmaster.php:406
10043
  msgid "Save Settings"
10044
  msgstr "Salveaza setari"
10045
 
10046
+ #: view/Assistant/Settings.php:170
10047
  msgid ""
10048
  "The Settings section allows you to set up your assistant just the way you "
10049
  "like it."
10050
  msgstr ""
10051
 
10052
+ #: view/Assistant/Settings.php:171
10053
  msgid ""
10054
  "Quickly enable or disable the settings available here based on your needs and "
10055
  "preferences."
10174
  "thumbs down element) and work on them to improve your score."
10175
  msgstr ""
10176
 
10177
+ #: view/Audits/AuditPageRow.php:44
 
 
 
 
10178
  msgid "Could not create the audit for this URL"
10179
  msgstr "Nu s-a putut crea auditul pentru acest URL"
10180
 
10181
+ #: view/Audits/AuditPageRow.php:44
10182
  msgid "error code"
10183
  msgstr "cod de eroare"
10184
 
10185
+ #: view/Audits/AuditPageRow.php:46
10186
  #, php-format
10187
  msgid ""
10188
  "The way your WordPress site is currently hosted can affect the way Squirrly "
10199
  "permite serverului nostru să vă verifice pagina, astfel încât să primiți un "
10200
  "audit complet."
10201
 
10202
+ #: view/Audits/AuditPageRow.php:48 view/Audits/AuditPageRow.php:75
10203
  #: view/FocusPages/FocusPageRow.php:132 view/FocusPages/FocusPageRow.php:217
10204
  msgid "Inspect URL"
10205
  msgstr "Inspectați URL-ul"
10206
 
10207
+ #: view/Audits/AuditPageRow.php:69 view/Audits/AuditStats.php:69
10208
+ #: view/Audits/AuditStats.php:96 view/FocusPages/FocusPageRow.php:112
10209
  #: view/FocusPages/FocusPageRow.php:211
10210
  msgid "Request New Audit"
10211
  msgstr "Solicitarea unui nou audit"
10212
 
10213
+ #: view/Audits/AuditPageRow.php:78
10214
  msgid "Do you want to delete the Audit Page?"
10215
  msgstr "Doriți să ștergeți pagina de audit?"
10216
 
10217
+ #: view/Audits/AuditPageRow.php:84
10218
  msgid "Remove Page from Audit"
10219
  msgstr "Îndepărtați pagina din audit"
10220
 
10249
  "Există o eroare de conexiune cu Squirrly Cloud. Vă rugăm să verificați "
10250
  "conexiunea și %sreîncărcați pagina%s."
10251
 
10252
+ #: view/Audits/AuditStats.php:31
10253
  msgid ""
10254
  "Your score is low. A medium score is over 50, and a good score is over 80."
10255
  msgstr ""
10256
  "Scorul dumneavoastră este scăzut. Un scor mediu este de peste 50, iar un scor "
10257
  "bun este de peste 80."
10258
 
10259
+ #: view/Audits/AuditStats.php:33
10260
  msgid "Your score is medium. A good score is over 80."
10261
  msgstr "Scorul dumneavoastră este mediu. Un scor bun este de peste 80."
10262
 
10263
+ #: view/Audits/AuditStats.php:35
10264
  msgid "Your score is good. Keep it as high as posible for good results."
10265
  msgstr ""
10266
  "Scorul dumneavoastră este bun. Păstrați-l cât mai ridicat posibil pentru "
10267
  "rezultate bune."
10268
 
10269
+ #: view/Audits/AuditStats.php:42 view/Audits/AuditStats.php:252
10270
  #: view/Audits/Compare.php:72
10271
  msgid "Audit Score"
10272
  msgstr "Scor de audit"
10273
 
10274
+ #: view/Audits/AuditStats.php:54
10275
  msgid "Your audit score is"
10276
  msgstr "Punctajul dvs. de audit este"
10277
 
10278
+ #: view/Audits/AuditStats.php:57 view/Audits/AuditStats.php:85
10279
  msgid "Audit Date"
10280
  msgstr "Data auditului"
10281
 
10282
+ #: view/Audits/AuditStats.php:66 view/Audits/AuditStats.php:93
10283
+ #, fuzzy
10284
+ #| msgid "Audit in progress"
10285
+ msgid "In progress"
10286
+ msgstr "Audit în curs de desfășurare"
 
10287
 
10288
+ #: view/Audits/AuditStats.php:78
10289
  msgid "Add a new page for Audit"
10290
  msgstr "Adăugați o nouă pagină pentru Audit"
10291
 
10292
+ #: view/Audits/AuditStats.php:111
10293
  msgid "Audit in progress"
10294
  msgstr "Audit în curs de desfășurare"
10295
 
10296
+ #: view/Audits/AuditStats.php:117
10297
  msgid "Audit not ready yet"
10298
  msgstr "Auditul nu este încă gata"
10299
 
10300
+ #: view/Audits/AuditStats.php:122
10301
  msgid "You can refresh the audit once every hour"
10302
  msgstr "Puteți reîmprospăta auditul o dată la fiecare oră"
10303
 
10304
+ #: view/Audits/AuditStats.php:123
10305
  msgid "Request Website Audit"
10306
  msgstr "Solicitați un audit al site-ului web"
10307
 
10308
+ #: view/Audits/AuditStats.php:142 view/Audits/AuditStats.php:254
10309
  #: view/Ranking/Rankings.php:407 view/Research/History.php:37
10310
  msgid "Date"
10311
  msgstr "Data"
10312
 
10313
+ #: view/Audits/AuditStats.php:142
10314
  msgid "On-Page"
10315
  msgstr "On-Page"
10316
 
10317
+ #: view/Audits/AuditStats.php:142
10318
  msgid "Off-Page"
10319
  msgstr "Off-Page"
10320
 
10321
+ #: view/Audits/AuditStats.php:165
10322
  #, php-format
10323
  msgid "You've completed %s tasks from %s"
10324
  msgstr "Ai finalizat %s sarcini din %s"
10325
 
10326
+ #: view/Audits/AuditStats.php:186 view/Audits/Compare.php:53
10327
  msgid "Scores"
10328
  msgstr "Scoruri"
10329
 
10330
+ #: view/Audits/AuditStats.php:187
10331
  #, php-format
10332
  msgid "the latest %s days evolution for Audit"
10333
  msgstr "evoluția ultimelor %s zile pentru Audit"
10334
 
10335
+ #: view/Audits/AuditStats.php:209 view/FocusPages/FocusPageStats.php:135
10336
  #: view/Ranking/Rankings.php:149
10337
  msgid "Progress & Achievements"
10338
  msgstr "Progrese și realizări"
10339
 
10340
+ #: view/Audits/AuditStats.php:210
10341
  #, php-format
10342
  msgid "the latest %s days progress for Audit Pages"
10343
  msgstr "ultimele %s zile de progres pentru Pagini de audit"
10344
 
10345
+ #: view/Audits/AuditStats.php:218 view/FocusPages/FocusPageStats.php:145
10346
  #: view/Ranking/Rankings.php:178
10347
  msgid "No progress found yet"
10348
  msgstr "Nici un progres găsit încă"
10349
 
10350
+ #: view/Audits/AuditStats.php:230 view/Ranking/Rankings.php:191
10351
  msgid "Share Your Success"
10352
  msgstr ""
10353
 
10354
+ #: view/Audits/AuditStats.php:237
10355
  msgid "Audit History"
10356
  msgstr "Istoricul auditului"
10357
 
10358
+ #: view/Audits/AuditStats.php:244
10359
  msgid "Compare Audits"
10360
  msgstr "Comparați auditurile"
10361
 
10362
+ #: view/Audits/AuditStats.php:253
10363
  msgid "Page(s)"
10364
  msgstr "Pagina (pagini)"
10365
 
10366
+ #: view/Audits/AuditStats.php:270
10367
  msgid "pages"
10368
  msgstr "meniu"
10369
 
10370
+ #: view/Audits/AuditStats.php:274
10371
  msgid "Show Latest Audit"
10372
  msgstr "Afișați cel mai recent audit"
10373
 
10374
+ #: view/Audits/AuditStats.php:274
10375
  msgid "Show Audit"
10376
  msgstr "Arată auditul"
10377
 
10771
  "Adăugați noi tipuri de postări în listă și personalizați automatizarea pentru "
10772
  "acestea."
10773
 
10774
+ #: view/Automation/Types.php:100
10775
  #, fuzzy
10776
  #| msgid "Add Post Type for SEO Automation"
10777
  msgid "All the post types are sent for Automation"
10778
  msgstr "Adăugați tipul de post pentru automatizarea SEO"
10779
 
10780
+ #: view/Automation/Types.php:101
10781
  #, fuzzy
10782
  msgid "Start Automation Setup"
10783
  msgstr "Automatizare Meta"
10784
 
10785
+ #: view/Automation/Types.php:115
10786
  msgid ""
10787
  "Add ALL Your Post Types to our Automation section, to ensure all your site is "
10788
  "covered with excellent SEO."
10789
  msgstr ""
10790
 
10791
+ #: view/Blocks/Account.php:28
10792
  #, php-format
10793
  msgid "Due Date: %s"
10794
  msgstr "Data scadentă: %s"
10795
 
10796
+ #: view/Blocks/Account.php:32
10797
+ msgid "Expires: never"
10798
+ msgstr ""
10799
+
10800
+ #: view/Blocks/Account.php:46
10801
  #, fuzzy
10802
  #| msgid "Keywords"
10803
  msgid "Keywords Lookups"
10804
  msgstr "Cuvinte cheie"
10805
 
10806
+ #: view/Blocks/Account.php:61
10807
  msgid "SERP Lookups"
10808
  msgstr ""
10809
 
10810
+ #: view/Blocks/Account.php:74
10811
  #, fuzzy
10812
  #| msgid "Focus Pages"
10813
  msgid "Focus Pages Lookup"
10814
  msgstr "Pagini Focus"
10815
 
10816
+ #: view/Blocks/Account.php:86
10817
  #, fuzzy
10818
  #| msgid "Audit Pages"
10819
  msgid "Audit Pages Lookup"
10820
  msgstr "Pagini de audit"
10821
 
10822
+ #: view/Blocks/Account.php:95
10823
  #, fuzzy
10824
  #| msgid "Reset"
10825
  msgid "Reset day"
10826
  msgstr "Resetare"
10827
 
10828
+ #: view/Blocks/Account.php:102
10829
  msgid "Want to hide this section from your customes?"
10830
  msgstr ""
10831
 
10832
+ #: view/Blocks/Account.php:108
10833
  #, fuzzy
10834
  #| msgid "Check Your Account"
10835
  msgid "Upgrade your account"
10836
  msgstr "Verificați contul dvs"
10837
 
10838
+ #: view/Blocks/Account.php:112
10839
  #, fuzzy
10840
  #| msgid "Billing Support"
10841
  msgid "Billing info"
10842
  msgstr "Suport pentru facturare"
10843
 
10844
+ #: view/Blocks/Account.php:116
10845
  #, fuzzy
10846
  #| msgid "Audit settings"
10847
  msgid "Account settings"
10848
  msgstr "Setări de audit"
10849
 
10850
+ #: view/Blocks/Account.php:120
10851
  #, fuzzy
10852
  #| msgid "Squirrly Keyword Research"
10853
  msgid "Squirrly Cloud"
10854
  msgstr " Cercetare cuvinte cheie"
10855
 
10856
+ #: view/Blocks/Account.php:124
10857
  msgid "Support"
10858
  msgstr "Suport"
10859
 
10889
  msgid "Rankings Mastery Tasks"
10890
  msgstr ""
10891
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10892
  #: view/Blocks/Dashboard.php:16
10893
  msgid "Congratulations! you have success messages"
10894
  msgstr "Felicitări! aveți mesaje de succes"
10932
  msgid "Manage the features & access them directly from here."
10933
  msgstr "Gestionați funcțiile și accesați-le direct de aici."
10934
 
10935
+ #: view/Blocks/Features.php:44 view/Blocks/Features.php:209
10936
  #, fuzzy
10937
  #| msgid "Do you want to search in the 400 features list?"
10938
  msgid "Do you want to search in the 650 features list?"
10939
  msgstr "Doriți să căutați în lista celor 400 de caracteristici?"
10940
 
10941
+ #: view/Blocks/Features.php:46 view/Blocks/Features.php:211
10942
  #, fuzzy
10943
  #| msgid "Do you want to see all 400 features list?"
10944
  msgid "Do you want to see all 650 features list?"
10952
  msgid "Search Feature"
10953
  msgstr "Caută"
10954
 
10955
+ #: view/Blocks/Features.php:156
10956
  msgid "start feature setup"
10957
  msgstr "configureaza feature"
10958
 
10959
+ #: view/Blocks/Features.php:160
10960
  msgid "see feature"
10961
  msgstr "a se vedea caracteristica"
10962
 
10963
+ #: view/Blocks/Features.php:176
10964
  #, fuzzy
10965
  #| msgid "Click to select"
10966
  msgid "click to deactivate"
10967
  msgstr "Faceți clic pentru a selecta"
10968
 
10969
+ #: view/Blocks/Features.php:176
10970
  #, fuzzy
10971
  #| msgid "Click to select"
10972
  msgid "click to activate"
10973
  msgstr "Faceți clic pentru a selecta"
10974
 
10975
+ #: view/Blocks/Features.php:182
10976
  msgid "connect to cloud"
10977
  msgstr "conectare la cloud"
10978
 
10979
+ #: view/Blocks/Features.php:186
10980
  msgid "already active"
10981
  msgstr "deja activ"
10982
 
10983
+ #: view/Blocks/Features.php:190
10984
  msgid "activate feature"
10985
  msgstr "activați funcția"
10986
 
11053
  msgid "Click to Maximize Box"
11054
  msgstr "Faceți clic pentru a maximiza caseta"
11055
 
11056
+ #: view/Blocks/LiveAssistant.php:10 view/Blocks/LiveAssistant.php:41
11057
  msgid "Squirrly Briefcase"
11058
  msgstr "Briefcase Squirrly"
11059
 
11093
  msgid "SLA Score"
11094
  msgstr "Scor de audit"
11095
 
11096
+ #: view/Blocks/LiveAssistant.php:26 view/Blocks/LiveAssistant.php:103
11097
+ msgid "Update"
11098
+ msgstr "Update"
11099
 
11100
+ #: view/Blocks/LiveAssistant.php:31
11101
  msgid "Step 1"
11102
  msgstr ""
11103
 
11104
+ #: view/Blocks/LiveAssistant.php:32
11105
  msgid "Step 2"
11106
  msgstr ""
11107
 
11108
+ #: view/Blocks/LiveAssistant.php:32
11109
  #, fuzzy
11110
  #| msgid "Cancel"
11111
  msgid "Enhance"
11112
  msgstr "Renunta"
11113
 
11114
+ #: view/Blocks/LiveAssistant.php:33
11115
  msgid "Step 3"
11116
  msgstr ""
11117
 
11118
+ #: view/Blocks/LiveAssistant.php:33
11119
  #, fuzzy
11120
  #| msgid "analytics.js"
11121
  msgid "Analysis"
11122
  msgstr "analytics.js"
11123
 
11124
+ #: view/Blocks/LiveAssistant.php:34
11125
  msgid "Extra"
11126
  msgstr ""
11127
 
11128
+ #: view/Blocks/LiveAssistant.php:34
11129
  msgid "Deep"
11130
  msgstr ""
11131
 
11132
+ #: view/Blocks/LiveAssistant.php:42
11133
+ msgid "We recommend that you select at least 3 Keywords for best results."
11134
  msgstr ""
11135
 
11136
+ #: view/Blocks/LiveAssistant.php:47
11137
  msgid "Search in Briefcase ..."
11138
  msgstr "Căutați în Briefcase ..."
11139
 
11140
+ #: view/Blocks/LiveAssistant.php:51 view/Blocks/LiveAssistant.php:79
11141
+ #: view/Blocks/LiveAssistant.php:123 view/Onboarding/Step1.php:106
11142
  msgid "Continue"
11143
  msgstr "Continua"
11144
 
11145
+ #: view/Blocks/LiveAssistant.php:58
11146
  #, fuzzy
11147
  msgid "Squirrly Blogging Assistant"
11148
  msgstr "Construiți cu Blogging Assistant"
11149
 
11150
+ #: view/Blocks/LiveAssistant.php:59
11151
  msgid "The keyword will be automatically be added as the image alt text."
11152
  msgstr ""
11153
 
11154
+ #: view/Blocks/LiveAssistant.php:60
11155
  msgid ""
11156
  "Click on “Insert it!” and the incorporated Tweet(s) will add more substance "
11157
  "to your article."
11158
  msgstr ""
11159
 
11160
+ #: view/Blocks/LiveAssistant.php:61
11161
  msgid ""
11162
  "Browse through Wikipedia articles to get more insight or quick fact-checking "
11163
  "on your topic."
11164
  msgstr ""
11165
 
11166
+ #: view/Blocks/LiveAssistant.php:62
11167
  msgid "Find topic-related articles written by fellow bloggers or influencers."
11168
  msgstr ""
11169
 
11170
+ #: view/Blocks/LiveAssistant.php:63
11171
  msgid ""
11172
  "Squirrly automatically browses your WordPress for previously written articles "
11173
  "you want to cite or insert"
11174
  msgstr ""
11175
 
11176
+ #: view/Blocks/LiveAssistant.php:70
11177
  msgid "Images"
11178
  msgstr "Imagini"
11179
 
11180
+ #: view/Blocks/LiveAssistant.php:71
11181
  msgid "Twitter"
11182
  msgstr "Twitter"
11183
 
11184
+ #: view/Blocks/LiveAssistant.php:72
11185
  msgid "Wiki"
11186
  msgstr "Wiki"
11187
 
11188
+ #: view/Blocks/LiveAssistant.php:73
11189
  msgid "Blogs"
11190
  msgstr "Bloguri"
11191
 
11192
+ #: view/Blocks/LiveAssistant.php:74
11193
  msgid "My articles"
11194
  msgstr "Articolele mele"
11195
 
11196
+ #: view/Blocks/LiveAssistant.php:83
11197
  msgid "Show only Copyright Free images"
11198
  msgstr "Arata doar imagini fara copyright"
11199
 
11200
  #: view/Blocks/LiveAssistant.php:94
 
 
 
 
11201
  msgid ""
11202
  "Squirrly automatically checks your article to make sure it has the best SEO "
11203
  "chances"
11204
  msgstr ""
11205
 
11206
+ #: view/Blocks/LiveAssistant.php:131
 
 
 
 
11207
  #, fuzzy
11208
  msgid "Squirrly Focus Pages"
11209
  msgstr "Pagini Focus"
11210
 
11211
+ #: view/Blocks/LiveAssistant.php:132
11212
  msgid ""
11213
  "Focus Pages bring you clear methods to take your content from never found to "
11214
  "always found on Google."
11215
  msgstr ""
11216
 
11217
+ #: view/Blocks/LiveAssistant.php:138
11218
  msgid "Need a deeper analysis of this content?"
11219
  msgstr ""
11220
 
11221
+ #: view/Blocks/LiveAssistant.php:139
11222
  #, fuzzy
11223
  #| msgid ""
11224
  #| "Focus Pages bring you clear methods to take your pages from never found to "
11234
  "influențarea factorilor de clasificare corecți. Transformați tot ceea ce "
11235
  "vedeți aici în Verde și veți câștiga."
11236
 
11237
+ #: view/Blocks/LiveAssistant.php:142
11238
  #, fuzzy
11239
  #| msgid "Set Focus Page"
11240
  msgid "Set Focus Pages"
11279
  msgid "Sign Up"
11280
  msgstr "Sign Up"
11281
 
11282
+ #: view/Blocks/Menu.php:31 view/Blocks/Menu.php:70 view/Blocks/Menu.php:116
11283
+ #: view/Blocks/Menu.php:167
11284
+ msgid "Collapse"
11285
+ msgstr ""
11286
+
11287
+ #: view/Blocks/Menu.php:48 view/Blocks/Menu.php:87 view/Blocks/Menu.php:136
11288
  msgid "Back To Home"
11289
  msgstr ""
11290
 
11334
  "Snippet"
11335
 
11336
  #: view/Blocks/Snippet.php:151 view/Blocks/Snippet.php:685
11337
+ #: view/Blocks/Snippet.php:947 view/Onboarding/Step1.php:105
11338
  msgid "Cancel"
11339
  msgstr "Renunta"
11340
 
11723
  "dvs. de găzduire web interferează cu WordPress. Vă rugăm să contactați echipa "
11724
  "de asistență a furnizorului de găzduire"
11725
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11726
  #: view/Blocks/Toolbar.php:13
11727
  #, fuzzy
11728
  #| msgid "Beginner"
12025
  msgid "Details"
12026
  msgstr "Detalii"
12027
 
12028
+ #: view/FocusPages/FocusPageRow.php:109
12029
+ #, fuzzy, php-format
12030
+ #| msgid "Time on page is %s minutes"
12031
+ msgid "Wait %s minutes"
12032
+ msgstr "Timpul pe pagină este de %s minute"
12033
+
12034
  #: view/FocusPages/FocusPageRow.php:130
12035
  msgid "Upgrade Plan"
12036
  msgstr "Actualizeaza Plan"
12388
  msgid "Learn how you can import the same settings on this site as well"
12389
  msgstr ""
12390
 
12391
+ #: view/Onboarding/Step1.php:96
12392
  #, fuzzy
12393
  #| msgid "Patterns activated"
12394
  msgid "What will be activated"
12395
  msgstr "Modele activate"
12396
 
12397
+ #: view/Onboarding/Step1.php:102
12398
  #, fuzzy
12399
  #| msgid "Sitemap XML"
12400
  msgid "Squirrly Sitemap XML"
14995
  msgid "https://plugin.squirrly.co"
14996
  msgstr "https://plugin.squirrly.co"
14997
 
14998
+ #~ msgid "Last checked"
14999
+ #~ msgstr "Ultima verificare"
15000
+
15001
+ #, php-format
15002
+ #~ msgid ""
15003
+ #~ "This option is used to track innerlinks and insights for your Focus Pages "
15004
+ #~ "and give detailed information about them. %sIt is also useful for sending "
15005
+ #~ "the optimized posts from %shttps://cloud.squirrly.co%s directly on your "
15006
+ #~ "WordPress site."
15007
+ #~ msgstr ""
15008
+ #~ "Această opțiune este utilizată pentru a urmări legăturile interne și "
15009
+ #~ "perspectivele pentru paginile Focus și pentru a oferi informații detaliate "
15010
+ #~ "despre acestea. %sEste, de asemenea, utilă pentru a trimite postările "
15011
+ #~ "optimizate de pe %shttps://cloud.squirrly.co%s direct pe site-ul dvs. "
15012
+ #~ "WordPress."
15013
+
15014
+ #, fuzzy
15015
+ #~| msgid "Let Squirrly Cloud connect to WordPress API"
15016
+ #~ msgid "Connect Squirrly Cloud & Website API"
15017
+ #~ msgstr "Lăsați Squirrly Cloud să se conecteze la API-ul WordPress"
15018
+
15019
+ #~ msgid "Connect"
15020
+ #~ msgstr "Conecteaza"
15021
+
15022
+ #~ msgid "disconnect"
15023
+ #~ msgstr "deconectați"
15024
+
15025
+ #~ msgid "Use this keyword"
15026
+ #~ msgstr "Foloseste acest cuvant"
15027
+
15028
+ #~ msgid "Go to Profile"
15029
+ #~ msgstr "Profilul tau din Squirrly"
15030
+
15031
+ #~ msgid "Profile"
15032
+ #~ msgstr "Profil"
15033
+
15034
+ #~ msgid "Need Help with Squirrly SEO?"
15035
+ #~ msgstr "Ai nevoie de ajutor cu Squirrly SEO?"
15036
+
15037
+ #, php-format
15038
+ #~ msgid "10 AM to 4 PM (GMT): Mon-Fri %sby contact form%s."
15039
+ #~ msgstr ""
15040
+ #~ "De la ora 10.00 la 16.00 (GMT): Luni-vineri %sprin formularul de contact%s."
15041
+
15042
+ #, php-format
15043
+ #~ msgid "How To Squirrly %swebsite%s."
15044
+ #~ msgstr "Cum să Squirrly %swebsite%s."
15045
+
15046
+ #, php-format
15047
+ #~ msgid "Facebook %sSupport Community%s."
15048
+ #~ msgstr "Facebook %sComunitatea de suport%s."
15049
+
15050
+ #, php-format
15051
+ #~ msgid "Facebook %sMessenger%s."
15052
+ #~ msgstr "Facebook %sMessenger%s."
15053
+
15054
+ #, php-format
15055
+ #~ msgid "Twitter %sSupport%s."
15056
+ #~ msgstr "Twitter %sSupport%s."
15057
+
15058
+ #~ msgid "How was your Squirrly experience today?"
15059
+ #~ msgstr "Cum a fost experienta de azi cu Squirrly?"
15060
+
15061
+ #~ msgid "Annoying"
15062
+ #~ msgstr "Enervant"
15063
+
15064
+ #~ msgid "Bad"
15065
+ #~ msgstr "Negativ"
15066
+
15067
+ #~ msgid "Nice"
15068
+ #~ msgstr "Frumos"
15069
+
15070
+ #~ msgid "Great"
15071
+ #~ msgstr "Minunat"
15072
+
15073
+ #~ msgid "Love it"
15074
+ #~ msgstr "Îmi place"
15075
+
15076
+ #~ msgid "How was Squirrly today?"
15077
+ #~ msgstr "Cum a fost Squirrly azi?"
15078
+
15079
+ #~ msgid "Send feedback"
15080
+ #~ msgstr "Trimite"
15081
+
15082
+ #~ msgid "For more support:"
15083
+ #~ msgstr "Pentru mai mult sprijin:"
15084
+
15085
+ #, php-format
15086
+ #~ msgid "New Lessons Mon. and Tue. on %sTwitter%s."
15087
+ #~ msgstr "Noi lecții luni și marți pe %sTwitter%s."
15088
+
15089
+ #~ msgid "Thank you! You can send us a happy face tomorrow too."
15090
+ #~ msgstr "Vă mulțumesc! Poți să ne trimiți și mâine o față fericită."
15091
+
15092
  #~ msgid "Could not add the demo post."
15093
  #~ msgstr "Nu s-a putut trimite postul de demo."
15094
 
15430
  #~ "Selectați modul în care doriți ca Squirrly Live Assistant să se încarce în "
15431
  #~ "editor."
15432
 
 
 
 
 
 
 
 
 
 
15433
  #~ msgid "Show Advanced Options"
15434
  #~ msgstr "Arată opțiuni avansate"
15435
 
languages/squirrly-seo.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Squirrly SEO 2020 (Smart Strategy)\n"
5
- "POT-Creation-Date: 2022-05-16 14:55+0300\n"
6
  "PO-Revision-Date: 2020-10-13 10:56+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -10,7 +10,7 @@ msgstr ""
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
13
- "X-Generator: Poedit 3.0.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
  "X-Poedit-WPHeader: squirrly.php\n"
@@ -20,6 +20,7 @@ msgstr ""
20
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.min.js\n"
 
23
 
24
  #: classes/RemoteController.php:296
25
  msgid "Too many API attempts, please slow down the request."
@@ -71,59 +72,59 @@ msgstr ""
71
  msgid "The code for Facebook App must only contain numbers."
72
  msgstr ""
73
 
74
- #: classes/helpers/Tools.php:88
75
  msgid "Getting started"
76
  msgstr ""
77
 
78
- #: classes/helpers/Tools.php:114
79
  msgid "Documentation"
80
  msgstr ""
81
 
82
- #: classes/helpers/Tools.php:115
83
  msgid "Leave a review"
84
  msgstr ""
85
 
86
- #: classes/helpers/Tools.php:554 classes/helpers/Tools.php:611
87
  msgid "Category"
88
  msgstr ""
89
 
90
- #: classes/helpers/Tools.php:573 classes/helpers/Tools.php:630
91
  msgid "Tag"
92
  msgstr ""
93
 
94
- #: classes/helpers/Tools.php:592
95
  msgid "Format"
96
  msgstr ""
97
 
98
- #: classes/helpers/Tools.php:649
99
  msgid "Shipping Option"
100
  msgstr ""
101
 
102
- #: classes/helpers/Tools.php:687
103
  msgid "Author at"
104
  msgstr ""
105
 
106
- #: classes/helpers/Tools.php:725
107
  msgid "Are you looking for"
108
  msgstr ""
109
 
110
- #: classes/helpers/Tools.php:726
111
  msgid "These are the results for"
112
  msgstr ""
113
 
114
- #: classes/helpers/Tools.php:726
115
  msgid "that you can find on our website."
116
  msgstr ""
117
 
118
- #: classes/helpers/Tools.php:762
119
  msgid "Page not found"
120
  msgstr ""
121
 
122
- #: classes/helpers/Tools.php:763
123
  msgid "This page could not be found on our website."
124
  msgstr ""
125
 
126
- #: classes/helpers/Tools.php:1167
127
  msgid "For better text comparison you need to install PHP mbstring extension."
128
  msgstr ""
129
 
@@ -286,30 +287,29 @@ msgid "No keyword found."
286
  msgstr ""
287
 
288
  #: controllers/Assistant.php:114 controllers/Assistant.php:141
289
- #: controllers/Audits.php:395 controllers/Automation.php:78
290
- #: controllers/Automation.php:118 controllers/Automation.php:151
291
- #: controllers/Onboarding.php:205 controllers/Post.php:404
292
  #: controllers/Ranking.php:156 controllers/SeoSettings.php:102
293
  #: controllers/SeoSettings.php:157 controllers/SeoSettings.php:426
294
  msgid "Saved"
295
  msgstr ""
296
 
297
- #: controllers/Assistant.php:120 controllers/Automation.php:84
298
- #: controllers/Automation.php:131 controllers/BulkSeo.php:75
299
- #: controllers/Patterns.php:124 controllers/Post.php:349 controllers/Post.php:382
300
- #: controllers/Post.php:417 controllers/PostsList.php:272
301
- #: controllers/Research.php:215 controllers/Research.php:222
302
- #: controllers/Research.php:260 controllers/Research.php:282
303
- #: controllers/Research.php:305 controllers/Research.php:335
304
- #: controllers/Research.php:362 controllers/Research.php:386
305
- #: controllers/Research.php:416 controllers/Research.php:445
306
- #: controllers/Research.php:521 controllers/Research.php:550
307
- #: controllers/Research.php:705 controllers/Research.php:729
308
- #: controllers/Research.php:763 controllers/Research.php:789
309
- #: controllers/SeoSettings.php:161 controllers/SeoSettings.php:415
310
- #: controllers/SeoSettings.php:439 controllers/SeoSettings.php:452
311
- #: controllers/SeoSettings.php:473 controllers/SeoSettings.php:492
312
- #: controllers/Snippet.php:213
313
  msgid "You do not have permission to perform this action"
314
  msgstr ""
315
 
@@ -377,7 +377,7 @@ msgstr ""
377
  msgid "Not a valid email address."
378
  msgstr ""
379
 
380
- #: controllers/Automation.php:125 controllers/Automation.php:159
381
  msgid "Could not add the post type."
382
  msgstr ""
383
 
@@ -398,9 +398,9 @@ msgid "Saved! Task marked as done."
398
  msgstr ""
399
 
400
  #: controllers/CheckSeo.php:345 controllers/Patterns.php:27
401
- #: controllers/Post.php:635 controllers/Research.php:324
402
- #: controllers/Research.php:355 controllers/Research.php:409
403
- #: controllers/Research.php:539 controllers/Research.php:755
404
  #: view/Blocks/Snippet.php:1300
405
  msgid "Saved!"
406
  msgstr ""
@@ -442,31 +442,35 @@ msgstr ""
442
  msgid "The focus page is deleted"
443
  msgstr ""
444
 
445
- #: controllers/Menu.php:96
446
  #, php-format
447
  msgid ""
448
  "An error occurred during activation. If this error persists, please contact us "
449
  "at: %s"
450
  msgstr ""
451
 
452
- #: controllers/Menu.php:133
453
  msgid "Dashboard"
454
  msgstr ""
455
 
456
- #: controllers/Menu.php:247 models/CheckSeo.php:194 models/CheckSeo.php:558
457
  #: models/CheckSeo.php:572 models/CheckSeo.php:586 models/CheckSeo.php:600
458
  #: models/CheckSeo.php:642
459
  msgid "SEO Snippet"
460
  msgstr ""
461
 
462
- #: controllers/Menu.php:258 controllers/Snippet.php:180
463
  msgid "Custom SEO"
464
  msgstr ""
465
 
466
- #: controllers/Menu.php:284
467
  msgid "Squirrly SEO"
468
  msgstr ""
469
 
 
 
 
 
470
  #: controllers/Onboarding.php:91 view/Onboarding/Step1.php:22
471
  msgid "SEO Expert Mode"
472
  msgstr ""
@@ -511,179 +515,14 @@ msgstr ""
511
  msgid "Saved! This is how the preview looks like"
512
  msgstr ""
513
 
514
- #: controllers/Post.php:407 controllers/Post.php:431
515
  msgid "Can't get the post URL"
516
  msgstr ""
517
 
518
- #: controllers/Post.php:436
519
  msgid "Invalid request"
520
  msgstr ""
521
 
522
- #: controllers/Post.php:632
523
- msgid "Keyword:"
524
- msgstr ""
525
-
526
- #: controllers/Post.php:633
527
- msgid "date"
528
- msgstr ""
529
-
530
- #: controllers/Post.php:634
531
- msgid ""
532
- "To load the Live Assistant and optimize this page, click to connect to "
533
- "Squirrly Cloud."
534
- msgstr ""
535
-
536
- #: controllers/Post.php:636
537
- msgid "Read it!"
538
- msgstr ""
539
-
540
- #: controllers/Post.php:637
541
- msgid "Insert it!"
542
- msgstr ""
543
-
544
- #: controllers/Post.php:638
545
- msgid "Reference"
546
- msgstr ""
547
-
548
- #: controllers/Post.php:639
549
- msgid "Insert as box"
550
- msgstr ""
551
-
552
- #: controllers/Post.php:640
553
- msgid "Insert Link"
554
- msgstr ""
555
-
556
- #: controllers/Post.php:641
557
- msgid "Not relevant?"
558
- msgstr ""
559
-
560
- #: controllers/Post.php:642
561
- msgid "Insert in your article"
562
- msgstr ""
563
-
564
- #: controllers/Post.php:643
565
- msgid ":( An error occurred while processing your request. Please try again"
566
- msgstr ""
567
-
568
- #: controllers/Post.php:644
569
- msgid "No results found!"
570
- msgstr ""
571
-
572
- #: controllers/Post.php:645
573
- #, php-format
574
- msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
575
- msgstr ""
576
-
577
- #: controllers/Post.php:646
578
- msgid "Has creative commons attributes"
579
- msgstr ""
580
-
581
- #: controllers/Post.php:647
582
- msgid "No known copyright restrictions"
583
- msgstr ""
584
-
585
- #: controllers/Post.php:648
586
- msgid ""
587
- "You haven`t used Squirrly SEO to optimize your article. Do you want to "
588
- "optimize for a keyword before publishing?"
589
- msgstr ""
590
-
591
- #: controllers/Post.php:649
592
- msgid "Your Subscription has Expired"
593
- msgstr ""
594
-
595
- #: controllers/Post.php:650
596
- msgid "There are no keywords saved in briefcase yet"
597
- msgstr ""
598
-
599
- #: controllers/Post.php:651
600
- #, php-format
601
- msgid "Congratulations! Your article is 100% optimized!"
602
- msgstr ""
603
-
604
- #: controllers/Post.php:652
605
- #, php-format
606
- msgid "appears too many times. Try to remove %s of them"
607
- msgstr ""
608
-
609
- #: controllers/Post.php:653
610
- #, php-format
611
- msgid "write %s more words"
612
- msgstr ""
613
-
614
- #: controllers/Post.php:654
615
- #, php-format
616
- msgid "Add the keyword in the %s of your article"
617
- msgstr ""
618
-
619
- #: controllers/Post.php:655
620
- msgid "Click to keep the highlight on"
621
- msgstr ""
622
-
623
- #: controllers/Post.php:656
624
- msgid "introduction"
625
- msgstr ""
626
-
627
- #: controllers/Post.php:657
628
- #, php-format
629
- msgid "Write more words after the %s keyword"
630
- msgstr ""
631
-
632
- #: controllers/Post.php:658
633
- msgid "or use synonyms"
634
- msgstr ""
635
-
636
- #: controllers/Post.php:659
637
- #, php-format
638
- msgid "add %s more word(s)"
639
- msgstr ""
640
-
641
- #: controllers/Post.php:660
642
- #, php-format
643
- msgid "or remove %s word(s)"
644
- msgstr ""
645
-
646
- #: controllers/Post.php:661
647
- #, php-format
648
- msgid "add the selected keyword %s more time(s) "
649
- msgstr ""
650
-
651
- #: controllers/Post.php:662
652
- #, php-format
653
- msgid "write %s more words to start calculating"
654
- msgstr ""
655
-
656
- #: controllers/Post.php:663
657
- msgid "Add to Briefcase"
658
- msgstr ""
659
-
660
- #: controllers/Post.php:664
661
- msgid "Add Keyword to Briefcase"
662
- msgstr ""
663
-
664
- #: controllers/Post.php:665
665
- msgid "Select"
666
- msgstr ""
667
-
668
- #: controllers/Post.php:666 view/Blocks/Snippet.php:133
669
- #: view/Blocks/Snippet.php:657 view/Blocks/Snippet.php:920
670
- msgid "Auto Draft"
671
- msgstr ""
672
-
673
- #: controllers/Post.php:667
674
- msgid "Enter keyword above and press ENTER"
675
- msgstr ""
676
-
677
- #: controllers/Post.php:668
678
- msgid "Add Keywords from Briefcase"
679
- msgstr ""
680
-
681
- #: controllers/Post.php:669
682
- msgid ""
683
- "Live Assistant was used to optimize this page with the Page Builder. Please go "
684
- "back and resume your optimization work there."
685
- msgstr ""
686
-
687
  #: controllers/PostsList.php:112 models/PostsList.php:23
688
  msgid "Optimized"
689
  msgstr ""
@@ -942,34 +781,34 @@ msgstr ""
942
  msgid "We could not create your account. Please enter a valid email."
943
  msgstr ""
944
 
945
- #: core/Blocklogin.php:85 core/Blocklogin.php:138
946
  #, php-format
947
  msgid ""
948
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
949
  "webmaster) and request them to add %s to their IP whitelist."
950
  msgstr ""
951
 
952
- #: core/Blocklogin.php:88
953
  msgid "Your email is not set. Please enter a valid email."
954
  msgstr ""
955
 
956
- #: core/Blocklogin.php:111
957
  msgid "Wrong email or password!"
958
  msgstr ""
959
 
960
- #: core/Blocklogin.php:114
961
  msgid "You can only use this account for the URL you registered first!"
962
  msgstr ""
963
 
964
- #: core/Blocklogin.php:117
965
  msgid "You disconnected your website from"
966
  msgstr ""
967
 
968
- #: core/Blocklogin.php:121
969
  msgid "An error occured."
970
  msgstr ""
971
 
972
- #: core/Blocklogin.php:142
973
  msgid "Both fields are required."
974
  msgstr ""
975
 
@@ -3635,8 +3474,8 @@ msgstr ""
3635
  #: models/CheckSeo.php:523
3636
  #, php-format
3637
  msgid ""
3638
- "Go to %s Squirrly > Automation > Configuration %s and make sure that SEO "
3639
- "Patterns are activated."
3640
  msgstr ""
3641
 
3642
  #: models/CheckSeo.php:524
@@ -4761,53 +4600,53 @@ msgstr ""
4761
  msgid "Focus Page could not be verified (error: %s)"
4762
  msgstr ""
4763
 
4764
- #: models/Compatibility.php:262
4765
  msgid "MPN"
4766
  msgstr ""
4767
 
4768
- #: models/Compatibility.php:263
4769
  msgid "Add Manufacturer Part Number (MPN)"
4770
  msgstr ""
4771
 
4772
- #: models/Compatibility.php:266
4773
  msgid "GTIN"
4774
  msgstr ""
4775
 
4776
- #: models/Compatibility.php:267
4777
  msgid "Add Global Trade Item Number (GTIN)"
4778
  msgstr ""
4779
 
4780
- #: models/Compatibility.php:270
4781
  msgid "EAN (GTIN-13)"
4782
  msgstr ""
4783
 
4784
- #: models/Compatibility.php:271
4785
  msgid ""
4786
  "Add Global Trade Item Number (GTIN) for the major GTIN used outside of North "
4787
  "America"
4788
  msgstr ""
4789
 
4790
- #: models/Compatibility.php:274
4791
  msgid "UPC (GTIN-12)"
4792
  msgstr ""
4793
 
4794
- #: models/Compatibility.php:275
4795
  msgid "Add Global Trade Item Number (GTIN) for North America"
4796
  msgstr ""
4797
 
4798
- #: models/Compatibility.php:278
4799
  msgid "ISBN"
4800
  msgstr ""
4801
 
4802
- #: models/Compatibility.php:279
4803
  msgid "Add Global Trade Item Number (GTIN) for books"
4804
  msgstr ""
4805
 
4806
- #: models/Compatibility.php:284
4807
  msgid "Brand Name"
4808
  msgstr ""
4809
 
4810
- #: models/Compatibility.php:285
4811
  msgid "Add Product Brand Name"
4812
  msgstr ""
4813
 
@@ -4911,6 +4750,175 @@ msgstr ""
4911
  msgid "The favicon has been updated."
4912
  msgstr ""
4913
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4914
  #: models/Menu.php:120
4915
  msgid "First Step"
4916
  msgstr ""
@@ -5472,23 +5480,23 @@ msgstr ""
5472
  msgid "Plugin Install Process"
5473
  msgstr ""
5474
 
5475
- #: models/Snippet.php:272
5476
  msgid "You don't have enough pemission to edit this article"
5477
  msgstr ""
5478
 
5479
- #: models/Snippet.php:375
5480
  msgid "Error! Could not save the data."
5481
  msgstr ""
5482
 
5483
- #: models/Snippet.php:380
5484
  msgid "Error! Invalid request."
5485
  msgstr ""
5486
 
5487
- #: models/Snippet.php:428
5488
  msgid "Couldn't find the page"
5489
  msgstr ""
5490
 
5491
- #: models/Snippet.php:445 models/Snippet.php:457
5492
  msgid "No Polylang translation for this post."
5493
  msgstr ""
5494
 
@@ -5506,7 +5514,7 @@ msgstr ""
5506
  msgid "Current URL"
5507
  msgstr ""
5508
 
5509
- #: models/abstract/Assistant.php:120 view/Blocks/LiveAssistant.php:32
5510
  msgid "Keywords"
5511
  msgstr ""
5512
 
@@ -7112,10 +7120,10 @@ msgstr ""
7112
  msgid "Add New"
7113
  msgstr ""
7114
 
7115
- #: view/Assistant/Assistant.php:53 view/Assistant/Settings.php:147
7116
  #: view/Audits/Addpage.php:200 view/Audits/Audit.php:136
7117
  #: view/Audits/Audits.php:50 view/Automation/Automation.php:394
7118
- #: view/Automation/Settings.php:113 view/Automation/Types.php:117
7119
  #: view/BulkSeo/Bulkseo.php:267 view/FocusPages/Addpage.php:205
7120
  #: view/FocusPages/Pagelist.php:57 view/FocusPages/Pagelist.php:67
7121
  #: view/Ranking/Gscsync.php:118 view/Ranking/Rankings.php:465
@@ -7210,63 +7218,90 @@ msgstr ""
7210
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
7211
  msgstr ""
7212
 
7213
- #: view/Assistant/Settings.php:95
7214
  msgid "Activate Live Assistant in Frontend"
7215
  msgstr ""
7216
 
7217
- #: view/Assistant/Settings.php:98
7218
  msgid ""
7219
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages with "
7220
  "Builders."
7221
  msgstr ""
7222
 
7223
- #: view/Assistant/Settings.php:99
7224
- msgid "Currently supports the Elementor Builder plugin."
 
7225
  msgstr ""
7226
 
7227
- #: view/Assistant/Settings.php:107
7228
- msgid "Places where you do NOT want Squirrly Live Assistant to load"
 
 
 
 
 
 
7229
  msgstr ""
7230
 
7231
  #: view/Assistant/Settings.php:113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7232
  msgid ""
7233
  "Don't select anything if you wish Squirrly Live Assistant to load for all post "
7234
  "types."
7235
  msgstr ""
7236
 
7237
- #: view/Assistant/Settings.php:119
7238
  msgid "Exclusions"
7239
  msgstr ""
7240
 
7241
- #: view/Assistant/Settings.php:121
7242
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
7243
  msgstr ""
7244
 
7245
- #: view/Assistant/Settings.php:142 view/Audits/Settings.php:46
7246
  #: view/Automation/Automation.php:356 view/Automation/Settings.php:105
7247
- #: view/Automation/Types.php:99 view/Ranking/Settings.php:334
7248
- #: view/SeoSettings/Jsonld.php:121 view/SeoSettings/Jsonld.php:169
7249
- #: view/SeoSettings/Jsonld.php:226 view/SeoSettings/Jsonld.php:307
7250
- #: view/SeoSettings/Jsonld.php:346 view/SeoSettings/Jsonld.php:385
7251
- #: view/SeoSettings/Jsonld.php:445 view/SeoSettings/Jsonld.php:485
7252
- #: view/SeoSettings/Jsonld.php:516 view/SeoSettings/Metas.php:121
7253
- #: view/SeoSettings/Metas.php:161 view/SeoSettings/Metas.php:195
7254
- #: view/SeoSettings/Social.php:282 view/SeoSettings/Social.php:328
7255
- #: view/SeoSettings/Social.php:404 view/SeoSettings/Social.php:456
7256
- #: view/SeoSettings/Tweaks.php:355 view/SeoSettings/Tweaks.php:421
7257
- #: view/SeoSettings/Tweaks.php:477 view/SeoSettings/Tweaks.php:534
7258
- #: view/SeoSettings/Tweaks.php:617 view/SeoSettings/Webmaster.php:300
7259
- #: view/SeoSettings/Webmaster.php:326 view/SeoSettings/Webmaster.php:406
7260
  msgid "Save Settings"
7261
  msgstr ""
7262
 
7263
- #: view/Assistant/Settings.php:149
7264
  msgid ""
7265
  "The Settings section allows you to set up your assistant just the way you like "
7266
  "it."
7267
  msgstr ""
7268
 
7269
- #: view/Assistant/Settings.php:150
7270
  msgid ""
7271
  "Quickly enable or disable the settings available here based on your needs and "
7272
  "preferences."
@@ -7378,19 +7413,15 @@ msgid ""
7378
  "thumbs down element) and work on them to improve your score."
7379
  msgstr ""
7380
 
7381
- #: view/Audits/AuditPageRow.php:41
7382
- msgid "Last checked"
7383
- msgstr ""
7384
-
7385
- #: view/Audits/AuditPageRow.php:47
7386
  msgid "Could not create the audit for this URL"
7387
  msgstr ""
7388
 
7389
- #: view/Audits/AuditPageRow.php:47
7390
  msgid "error code"
7391
  msgstr ""
7392
 
7393
- #: view/Audits/AuditPageRow.php:49
7394
  #, php-format
7395
  msgid ""
7396
  "The way your WordPress site is currently hosted can affect the way Squirrly "
@@ -7400,22 +7431,22 @@ msgid ""
7400
  "to allow our server to verify your page so that you’ll receive a full audit."
7401
  msgstr ""
7402
 
7403
- #: view/Audits/AuditPageRow.php:51 view/Audits/AuditPageRow.php:78
7404
  #: view/FocusPages/FocusPageRow.php:132 view/FocusPages/FocusPageRow.php:217
7405
  msgid "Inspect URL"
7406
  msgstr ""
7407
 
7408
- #: view/Audits/AuditPageRow.php:72 view/Audits/AuditStats.php:68
7409
- #: view/Audits/AuditStats.php:95 view/FocusPages/FocusPageRow.php:112
7410
  #: view/FocusPages/FocusPageRow.php:211
7411
  msgid "Request New Audit"
7412
  msgstr ""
7413
 
7414
- #: view/Audits/AuditPageRow.php:81
7415
  msgid "Do you want to delete the Audit Page?"
7416
  msgstr ""
7417
 
7418
- #: view/Audits/AuditPageRow.php:87
7419
  msgid "Remove Page from Audit"
7420
  msgstr ""
7421
 
@@ -7448,125 +7479,123 @@ msgid ""
7448
  "and %srefresh the page%s."
7449
  msgstr ""
7450
 
7451
- #: view/Audits/AuditStats.php:30
7452
  msgid ""
7453
  "Your score is low. A medium score is over 50, and a good score is over 80."
7454
  msgstr ""
7455
 
7456
- #: view/Audits/AuditStats.php:32
7457
  msgid "Your score is medium. A good score is over 80."
7458
  msgstr ""
7459
 
7460
- #: view/Audits/AuditStats.php:34
7461
  msgid "Your score is good. Keep it as high as posible for good results."
7462
  msgstr ""
7463
 
7464
- #: view/Audits/AuditStats.php:41 view/Audits/AuditStats.php:251
7465
  #: view/Audits/Compare.php:72
7466
  msgid "Audit Score"
7467
  msgstr ""
7468
 
7469
- #: view/Audits/AuditStats.php:53
7470
  msgid "Your audit score is"
7471
  msgstr ""
7472
 
7473
- #: view/Audits/AuditStats.php:56 view/Audits/AuditStats.php:84
7474
  msgid "Audit Date"
7475
  msgstr ""
7476
 
7477
- #: view/Audits/AuditStats.php:65 view/Audits/AuditStats.php:92
7478
- #: view/FocusPages/FocusPageRow.php:109
7479
- #, php-format
7480
- msgid "Wait %s minutes"
7481
  msgstr ""
7482
 
7483
- #: view/Audits/AuditStats.php:77
7484
  msgid "Add a new page for Audit"
7485
  msgstr ""
7486
 
7487
- #: view/Audits/AuditStats.php:110
7488
  msgid "Audit in progress"
7489
  msgstr ""
7490
 
7491
- #: view/Audits/AuditStats.php:116
7492
  msgid "Audit not ready yet"
7493
  msgstr ""
7494
 
7495
- #: view/Audits/AuditStats.php:121
7496
  msgid "You can refresh the audit once every hour"
7497
  msgstr ""
7498
 
7499
- #: view/Audits/AuditStats.php:122
7500
  msgid "Request Website Audit"
7501
  msgstr ""
7502
 
7503
- #: view/Audits/AuditStats.php:141 view/Audits/AuditStats.php:253
7504
  #: view/Ranking/Rankings.php:407 view/Research/History.php:37
7505
  msgid "Date"
7506
  msgstr ""
7507
 
7508
- #: view/Audits/AuditStats.php:141
7509
  msgid "On-Page"
7510
  msgstr ""
7511
 
7512
- #: view/Audits/AuditStats.php:141
7513
  msgid "Off-Page"
7514
  msgstr ""
7515
 
7516
- #: view/Audits/AuditStats.php:164
7517
  #, php-format
7518
  msgid "You've completed %s tasks from %s"
7519
  msgstr ""
7520
 
7521
- #: view/Audits/AuditStats.php:185 view/Audits/Compare.php:53
7522
  msgid "Scores"
7523
  msgstr ""
7524
 
7525
- #: view/Audits/AuditStats.php:186
7526
  #, php-format
7527
  msgid "the latest %s days evolution for Audit"
7528
  msgstr ""
7529
 
7530
- #: view/Audits/AuditStats.php:208 view/FocusPages/FocusPageStats.php:135
7531
  #: view/Ranking/Rankings.php:149
7532
  msgid "Progress & Achievements"
7533
  msgstr ""
7534
 
7535
- #: view/Audits/AuditStats.php:209
7536
  #, php-format
7537
  msgid "the latest %s days progress for Audit Pages"
7538
  msgstr ""
7539
 
7540
- #: view/Audits/AuditStats.php:217 view/FocusPages/FocusPageStats.php:145
7541
  #: view/Ranking/Rankings.php:178
7542
  msgid "No progress found yet"
7543
  msgstr ""
7544
 
7545
- #: view/Audits/AuditStats.php:229 view/Ranking/Rankings.php:191
7546
  msgid "Share Your Success"
7547
  msgstr ""
7548
 
7549
- #: view/Audits/AuditStats.php:236
7550
  msgid "Audit History"
7551
  msgstr ""
7552
 
7553
- #: view/Audits/AuditStats.php:243
7554
  msgid "Compare Audits"
7555
  msgstr ""
7556
 
7557
- #: view/Audits/AuditStats.php:252
7558
  msgid "Page(s)"
7559
  msgstr ""
7560
 
7561
- #: view/Audits/AuditStats.php:269
7562
  msgid "pages"
7563
  msgstr ""
7564
 
7565
- #: view/Audits/AuditStats.php:273
7566
  msgid "Show Latest Audit"
7567
  msgstr ""
7568
 
7569
- #: view/Audits/AuditStats.php:273
7570
  msgid "Show Audit"
7571
  msgstr ""
7572
 
@@ -7905,66 +7934,70 @@ msgstr ""
7905
  msgid "Add new post types in the list and customize the automation for it."
7906
  msgstr ""
7907
 
7908
- #: view/Automation/Types.php:104
7909
  msgid "All the post types are sent for Automation"
7910
  msgstr ""
7911
 
7912
- #: view/Automation/Types.php:105
7913
  msgid "Start Automation Setup"
7914
  msgstr ""
7915
 
7916
- #: view/Automation/Types.php:119
7917
  msgid ""
7918
  "Add ALL Your Post Types to our Automation section, to ensure all your site is "
7919
  "covered with excellent SEO."
7920
  msgstr ""
7921
 
7922
- #: view/Blocks/Account.php:27
7923
  #, php-format
7924
  msgid "Due Date: %s"
7925
  msgstr ""
7926
 
7927
- #: view/Blocks/Account.php:42
 
 
 
 
7928
  msgid "Keywords Lookups"
7929
  msgstr ""
7930
 
7931
- #: view/Blocks/Account.php:57
7932
  msgid "SERP Lookups"
7933
  msgstr ""
7934
 
7935
- #: view/Blocks/Account.php:69
7936
  msgid "Focus Pages Lookup"
7937
  msgstr ""
7938
 
7939
- #: view/Blocks/Account.php:81
7940
  msgid "Audit Pages Lookup"
7941
  msgstr ""
7942
 
7943
- #: view/Blocks/Account.php:90
7944
  msgid "Reset day"
7945
  msgstr ""
7946
 
7947
- #: view/Blocks/Account.php:97
7948
  msgid "Want to hide this section from your customes?"
7949
  msgstr ""
7950
 
7951
- #: view/Blocks/Account.php:103
7952
  msgid "Upgrade your account"
7953
  msgstr ""
7954
 
7955
- #: view/Blocks/Account.php:107
7956
  msgid "Billing info"
7957
  msgstr ""
7958
 
7959
- #: view/Blocks/Account.php:111
7960
  msgid "Account settings"
7961
  msgstr ""
7962
 
7963
- #: view/Blocks/Account.php:115
7964
  msgid "Squirrly Cloud"
7965
  msgstr ""
7966
 
7967
- #: view/Blocks/Account.php:119 view/Blocks/Support.php:19
7968
  msgid "Support"
7969
  msgstr ""
7970
 
@@ -7992,27 +8025,6 @@ msgstr ""
7992
  msgid "Rankings Mastery Tasks"
7993
  msgstr ""
7994
 
7995
- #: view/Blocks/Connect.php:15 view/Blocks/Connect.php:29
7996
- #, php-format
7997
- msgid ""
7998
- "This option is used to track innerlinks and insights for your Focus Pages and "
7999
- "give detailed information about them. %sIt is also useful for sending the "
8000
- "optimized posts from %shttps://cloud.squirrly.co%s directly on your WordPress "
8001
- "site."
8002
- msgstr ""
8003
-
8004
- #: view/Blocks/Connect.php:16 view/Blocks/Connect.php:31
8005
- msgid "Connect Squirrly Cloud & Website API"
8006
- msgstr ""
8007
-
8008
- #: view/Blocks/Connect.php:19
8009
- msgid "Connect"
8010
- msgstr ""
8011
-
8012
- #: view/Blocks/Connect.php:35
8013
- msgid "disconnect"
8014
- msgstr ""
8015
-
8016
  #: view/Blocks/Dashboard.php:16
8017
  msgid "Congratulations! you have success messages"
8018
  msgstr ""
@@ -8054,11 +8066,11 @@ msgstr ""
8054
  msgid "Manage the features & access them directly from here."
8055
  msgstr ""
8056
 
8057
- #: view/Blocks/Features.php:44 view/Blocks/Features.php:211
8058
  msgid "Do you want to search in the 650 features list?"
8059
  msgstr ""
8060
 
8061
- #: view/Blocks/Features.php:46 view/Blocks/Features.php:213
8062
  msgid "Do you want to see all 650 features list?"
8063
  msgstr ""
8064
 
@@ -8070,31 +8082,31 @@ msgstr ""
8070
  msgid "Search Feature"
8071
  msgstr ""
8072
 
8073
- #: view/Blocks/Features.php:158
8074
  msgid "start feature setup"
8075
  msgstr ""
8076
 
8077
- #: view/Blocks/Features.php:162
8078
  msgid "see feature"
8079
  msgstr ""
8080
 
8081
- #: view/Blocks/Features.php:178
8082
  msgid "click to deactivate"
8083
  msgstr ""
8084
 
8085
- #: view/Blocks/Features.php:178
8086
  msgid "click to activate"
8087
  msgstr ""
8088
 
8089
- #: view/Blocks/Features.php:184
8090
  msgid "connect to cloud"
8091
  msgstr ""
8092
 
8093
- #: view/Blocks/Features.php:188
8094
  msgid "already active"
8095
  msgstr ""
8096
 
8097
- #: view/Blocks/Features.php:192
8098
  msgid "activate feature"
8099
  msgstr ""
8100
 
@@ -8159,7 +8171,7 @@ msgstr ""
8159
  msgid "Click to Maximize Box"
8160
  msgstr ""
8161
 
8162
- #: view/Blocks/LiveAssistant.php:10 view/Blocks/LiveAssistant.php:42
8163
  msgid "Squirrly Briefcase"
8164
  msgstr ""
8165
 
@@ -8186,141 +8198,133 @@ msgstr ""
8186
  msgid "SLA Score"
8187
  msgstr ""
8188
 
8189
- #: view/Blocks/LiveAssistant.php:28
8190
- msgid "Use this keyword"
8191
  msgstr ""
8192
 
8193
- #: view/Blocks/LiveAssistant.php:32
8194
  msgid "Step 1"
8195
  msgstr ""
8196
 
8197
- #: view/Blocks/LiveAssistant.php:33
8198
  msgid "Step 2"
8199
  msgstr ""
8200
 
8201
- #: view/Blocks/LiveAssistant.php:33
8202
  msgid "Enhance"
8203
  msgstr ""
8204
 
8205
- #: view/Blocks/LiveAssistant.php:34
8206
  msgid "Step 3"
8207
  msgstr ""
8208
 
8209
- #: view/Blocks/LiveAssistant.php:34
8210
  msgid "Analysis"
8211
  msgstr ""
8212
 
8213
- #: view/Blocks/LiveAssistant.php:35
8214
  msgid "Extra"
8215
  msgstr ""
8216
 
8217
- #: view/Blocks/LiveAssistant.php:35
8218
  msgid "Deep"
8219
  msgstr ""
8220
 
8221
- #: view/Blocks/LiveAssistant.php:43
8222
- msgid "We recomend that you select at least 3 Keywords for best results."
8223
  msgstr ""
8224
 
8225
- #: view/Blocks/LiveAssistant.php:48
8226
  msgid "Search in Briefcase ..."
8227
  msgstr ""
8228
 
8229
- #: view/Blocks/LiveAssistant.php:52 view/Blocks/LiveAssistant.php:80
8230
- #: view/Blocks/LiveAssistant.php:124 view/Onboarding/Step1.php:85
8231
  msgid "Continue"
8232
  msgstr ""
8233
 
8234
- #: view/Blocks/LiveAssistant.php:59
8235
  msgid "Squirrly Blogging Assistant"
8236
  msgstr ""
8237
 
8238
- #: view/Blocks/LiveAssistant.php:60
8239
  msgid "The keyword will be automatically be added as the image alt text."
8240
  msgstr ""
8241
 
8242
- #: view/Blocks/LiveAssistant.php:61
8243
  msgid ""
8244
  "Click on “Insert it!” and the incorporated Tweet(s) will add more substance to "
8245
  "your article."
8246
  msgstr ""
8247
 
8248
- #: view/Blocks/LiveAssistant.php:62
8249
  msgid ""
8250
  "Browse through Wikipedia articles to get more insight or quick fact-checking "
8251
  "on your topic."
8252
  msgstr ""
8253
 
8254
- #: view/Blocks/LiveAssistant.php:63
8255
  msgid "Find topic-related articles written by fellow bloggers or influencers."
8256
  msgstr ""
8257
 
8258
- #: view/Blocks/LiveAssistant.php:64
8259
  msgid ""
8260
  "Squirrly automatically browses your WordPress for previously written articles "
8261
  "you want to cite or insert"
8262
  msgstr ""
8263
 
8264
- #: view/Blocks/LiveAssistant.php:71
8265
  msgid "Images"
8266
  msgstr ""
8267
 
8268
- #: view/Blocks/LiveAssistant.php:72
8269
  msgid "Twitter"
8270
  msgstr ""
8271
 
8272
- #: view/Blocks/LiveAssistant.php:73
8273
  msgid "Wiki"
8274
  msgstr ""
8275
 
8276
- #: view/Blocks/LiveAssistant.php:74
8277
  msgid "Blogs"
8278
  msgstr ""
8279
 
8280
- #: view/Blocks/LiveAssistant.php:75
8281
  msgid "My articles"
8282
  msgstr ""
8283
 
8284
- #: view/Blocks/LiveAssistant.php:84
8285
  msgid "Show only Copyright Free images"
8286
  msgstr ""
8287
 
8288
  #: view/Blocks/LiveAssistant.php:94
8289
- msgid "Squirrly Live Assistant"
8290
- msgstr ""
8291
-
8292
- #: view/Blocks/LiveAssistant.php:95
8293
  msgid ""
8294
  "Squirrly automatically checks your article to make sure it has the best SEO "
8295
  "chances"
8296
  msgstr ""
8297
 
8298
- #: view/Blocks/LiveAssistant.php:104
8299
- msgid "Update"
8300
- msgstr ""
8301
-
8302
- #: view/Blocks/LiveAssistant.php:132
8303
  msgid "Squirrly Focus Pages"
8304
  msgstr ""
8305
 
8306
- #: view/Blocks/LiveAssistant.php:133
8307
  msgid ""
8308
  "Focus Pages bring you clear methods to take your content from never found to "
8309
  "always found on Google."
8310
  msgstr ""
8311
 
8312
- #: view/Blocks/LiveAssistant.php:139
8313
  msgid "Need a deeper analysis of this content?"
8314
  msgstr ""
8315
 
8316
- #: view/Blocks/LiveAssistant.php:140
8317
  msgid ""
8318
  "Add this page/article as a focus page and take your content from never found "
8319
  "to always found on Google. Rank your pages by influencing the right ranking "
8320
  "factors. Turn everything that you see here to Green and you will win."
8321
  msgstr ""
8322
 
8323
- #: view/Blocks/LiveAssistant.php:143
8324
  msgid "Set Focus Pages"
8325
  msgstr ""
8326
 
@@ -8361,7 +8365,12 @@ msgstr ""
8361
  msgid "Sign Up"
8362
  msgstr ""
8363
 
8364
- #: view/Blocks/Menu.php:47 view/Blocks/Menu.php:84 view/Blocks/Menu.php:128
 
 
 
 
 
8365
  msgid "Back To Home"
8366
  msgstr ""
8367
 
@@ -8404,7 +8413,7 @@ msgid "Please save the post first to be able to edit the Squirrly SEO Snippet"
8404
  msgstr ""
8405
 
8406
  #: view/Blocks/Snippet.php:151 view/Blocks/Snippet.php:685
8407
- #: view/Blocks/Snippet.php:947 view/Onboarding/Step1.php:84
8408
  msgid "Cancel"
8409
  msgstr ""
8410
 
@@ -8752,88 +8761,6 @@ msgid ""
8752
  "provider`s support team"
8753
  msgstr ""
8754
 
8755
- #: view/Blocks/Support.php:8
8756
- msgid "Go to Profile"
8757
- msgstr ""
8758
-
8759
- #: view/Blocks/Support.php:8 view/Blocks/Support.php:9
8760
- msgid "Profile"
8761
- msgstr ""
8762
-
8763
- #: view/Blocks/Support.php:22
8764
- msgid "Need Help with Squirrly SEO?"
8765
- msgstr ""
8766
-
8767
- #: view/Blocks/Support.php:24 view/Blocks/Support.php:91
8768
- #, php-format
8769
- msgid "10 AM to 4 PM (GMT): Mon-Fri %sby contact form%s."
8770
- msgstr ""
8771
-
8772
- #: view/Blocks/Support.php:25 view/Blocks/Support.php:92
8773
- #, php-format
8774
- msgid "How To Squirrly %swebsite%s."
8775
- msgstr ""
8776
-
8777
- #: view/Blocks/Support.php:26 view/Blocks/Support.php:93
8778
- #, php-format
8779
- msgid "Facebook %sSupport Community%s."
8780
- msgstr ""
8781
-
8782
- #: view/Blocks/Support.php:27 view/Blocks/Support.php:94
8783
- #, php-format
8784
- msgid "Facebook %sMessenger%s."
8785
- msgstr ""
8786
-
8787
- #: view/Blocks/Support.php:28
8788
- #, php-format
8789
- msgid "Twitter %sSupport%s."
8790
- msgstr ""
8791
-
8792
- #: view/Blocks/Support.php:36
8793
- msgid "How was your Squirrly experience today?"
8794
- msgstr ""
8795
-
8796
- #: view/Blocks/Support.php:43
8797
- msgid "Annoying"
8798
- msgstr ""
8799
-
8800
- #: view/Blocks/Support.php:47
8801
- msgid "Bad"
8802
- msgstr ""
8803
-
8804
- #: view/Blocks/Support.php:51
8805
- msgid "Nice"
8806
- msgstr ""
8807
-
8808
- #: view/Blocks/Support.php:55
8809
- msgid "Great"
8810
- msgstr ""
8811
-
8812
- #: view/Blocks/Support.php:59
8813
- msgid "Love it"
8814
- msgstr ""
8815
-
8816
- #: view/Blocks/Support.php:71
8817
- msgid "How was Squirrly today?"
8818
- msgstr ""
8819
-
8820
- #: view/Blocks/Support.php:86
8821
- msgid "Send feedback"
8822
- msgstr ""
8823
-
8824
- #: view/Blocks/Support.php:90
8825
- msgid "For more support:"
8826
- msgstr ""
8827
-
8828
- #: view/Blocks/Support.php:95
8829
- #, php-format
8830
- msgid "New Lessons Mon. and Tue. on %sTwitter%s."
8831
- msgstr ""
8832
-
8833
- #: view/Blocks/Support.php:100
8834
- msgid "Thank you! You can send us a happy face tomorrow too."
8835
- msgstr ""
8836
-
8837
  #: view/Blocks/Toolbar.php:13
8838
  msgid "SEO Beginner"
8839
  msgstr ""
@@ -9100,6 +9027,11 @@ msgstr ""
9100
  msgid "Details"
9101
  msgstr ""
9102
 
 
 
 
 
 
9103
  #: view/FocusPages/FocusPageRow.php:130
9104
  msgid "Upgrade Plan"
9105
  msgstr ""
@@ -9390,11 +9322,11 @@ msgstr ""
9390
  msgid "Learn how you can import the same settings on this site as well"
9391
  msgstr ""
9392
 
9393
- #: view/Onboarding/Step1.php:75
9394
  msgid "What will be activated"
9395
  msgstr ""
9396
 
9397
- #: view/Onboarding/Step1.php:81
9398
  msgid "Squirrly Sitemap XML"
9399
  msgstr ""
9400
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Squirrly SEO 2020 (Smart Strategy)\n"
5
+ "POT-Creation-Date: 2022-06-20 10:08+0300\n"
6
  "PO-Revision-Date: 2020-10-13 10:56+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
13
+ "X-Generator: Poedit 3.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
  "X-Poedit-WPHeader: squirrly.php\n"
20
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
+ "X-Poedit-SearchPathExcluded-1: view/assets\n"
24
 
25
  #: classes/RemoteController.php:296
26
  msgid "Too many API attempts, please slow down the request."
72
  msgid "The code for Facebook App must only contain numbers."
73
  msgstr ""
74
 
75
+ #: classes/helpers/Tools.php:77
76
  msgid "Getting started"
77
  msgstr ""
78
 
79
+ #: classes/helpers/Tools.php:103
80
  msgid "Documentation"
81
  msgstr ""
82
 
83
+ #: classes/helpers/Tools.php:104
84
  msgid "Leave a review"
85
  msgstr ""
86
 
87
+ #: classes/helpers/Tools.php:543 classes/helpers/Tools.php:600
88
  msgid "Category"
89
  msgstr ""
90
 
91
+ #: classes/helpers/Tools.php:562 classes/helpers/Tools.php:619
92
  msgid "Tag"
93
  msgstr ""
94
 
95
+ #: classes/helpers/Tools.php:581
96
  msgid "Format"
97
  msgstr ""
98
 
99
+ #: classes/helpers/Tools.php:638
100
  msgid "Shipping Option"
101
  msgstr ""
102
 
103
+ #: classes/helpers/Tools.php:676
104
  msgid "Author at"
105
  msgstr ""
106
 
107
+ #: classes/helpers/Tools.php:714
108
  msgid "Are you looking for"
109
  msgstr ""
110
 
111
+ #: classes/helpers/Tools.php:715
112
  msgid "These are the results for"
113
  msgstr ""
114
 
115
+ #: classes/helpers/Tools.php:715
116
  msgid "that you can find on our website."
117
  msgstr ""
118
 
119
+ #: classes/helpers/Tools.php:751
120
  msgid "Page not found"
121
  msgstr ""
122
 
123
+ #: classes/helpers/Tools.php:752
124
  msgid "This page could not be found on our website."
125
  msgstr ""
126
 
127
+ #: classes/helpers/Tools.php:1157
128
  msgid "For better text comparison you need to install PHP mbstring extension."
129
  msgstr ""
130
 
287
  msgstr ""
288
 
289
  #: controllers/Assistant.php:114 controllers/Assistant.php:141
290
+ #: controllers/Audits.php:395 controllers/Automation.php:79
291
+ #: controllers/Automation.php:119 controllers/Automation.php:155
292
+ #: controllers/Onboarding.php:205 controllers/Post.php:380
293
  #: controllers/Ranking.php:156 controllers/SeoSettings.php:102
294
  #: controllers/SeoSettings.php:157 controllers/SeoSettings.php:426
295
  msgid "Saved"
296
  msgstr ""
297
 
298
+ #: controllers/Assistant.php:120 controllers/Automation.php:135
299
+ #: controllers/BulkSeo.php:75 controllers/Patterns.php:124
300
+ #: controllers/Post.php:325 controllers/Post.php:358 controllers/Post.php:393
301
+ #: controllers/PostsList.php:272 controllers/Research.php:215
302
+ #: controllers/Research.php:222 controllers/Research.php:260
303
+ #: controllers/Research.php:282 controllers/Research.php:305
304
+ #: controllers/Research.php:335 controllers/Research.php:362
305
+ #: controllers/Research.php:386 controllers/Research.php:416
306
+ #: controllers/Research.php:445 controllers/Research.php:521
307
+ #: controllers/Research.php:550 controllers/Research.php:705
308
+ #: controllers/Research.php:729 controllers/Research.php:763
309
+ #: controllers/Research.php:789 controllers/SeoSettings.php:161
310
+ #: controllers/SeoSettings.php:415 controllers/SeoSettings.php:439
311
+ #: controllers/SeoSettings.php:452 controllers/SeoSettings.php:473
312
+ #: controllers/SeoSettings.php:492 controllers/Snippet.php:213
 
313
  msgid "You do not have permission to perform this action"
314
  msgstr ""
315
 
377
  msgid "Not a valid email address."
378
  msgstr ""
379
 
380
+ #: controllers/Automation.php:126 controllers/Automation.php:163
381
  msgid "Could not add the post type."
382
  msgstr ""
383
 
398
  msgstr ""
399
 
400
  #: controllers/CheckSeo.php:345 controllers/Patterns.php:27
401
+ #: controllers/Research.php:324 controllers/Research.php:355
402
+ #: controllers/Research.php:409 controllers/Research.php:539
403
+ #: controllers/Research.php:755 models/LiveAssistant.php:45
404
  #: view/Blocks/Snippet.php:1300
405
  msgid "Saved!"
406
  msgstr ""
442
  msgid "The focus page is deleted"
443
  msgstr ""
444
 
445
+ #: controllers/Menu.php:93
446
  #, php-format
447
  msgid ""
448
  "An error occurred during activation. If this error persists, please contact us "
449
  "at: %s"
450
  msgstr ""
451
 
452
+ #: controllers/Menu.php:130
453
  msgid "Dashboard"
454
  msgstr ""
455
 
456
+ #: controllers/Menu.php:244 models/CheckSeo.php:194 models/CheckSeo.php:558
457
  #: models/CheckSeo.php:572 models/CheckSeo.php:586 models/CheckSeo.php:600
458
  #: models/CheckSeo.php:642
459
  msgid "SEO Snippet"
460
  msgstr ""
461
 
462
+ #: controllers/Menu.php:255 controllers/Snippet.php:180
463
  msgid "Custom SEO"
464
  msgstr ""
465
 
466
+ #: controllers/Menu.php:281
467
  msgid "Squirrly SEO"
468
  msgstr ""
469
 
470
+ #: controllers/Menu.php:424 view/Blocks/LiveAssistant.php:93
471
+ msgid "Squirrly Live Assistant"
472
+ msgstr ""
473
+
474
  #: controllers/Onboarding.php:91 view/Onboarding/Step1.php:22
475
  msgid "SEO Expert Mode"
476
  msgstr ""
515
  msgid "Saved! This is how the preview looks like"
516
  msgstr ""
517
 
518
+ #: controllers/Post.php:383 controllers/Post.php:407
519
  msgid "Can't get the post URL"
520
  msgstr ""
521
 
522
+ #: controllers/Post.php:412
523
  msgid "Invalid request"
524
  msgstr ""
525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
526
  #: controllers/PostsList.php:112 models/PostsList.php:23
527
  msgid "Optimized"
528
  msgstr ""
781
  msgid "We could not create your account. Please enter a valid email."
782
  msgstr ""
783
 
784
+ #: core/Blocklogin.php:82 core/Blocklogin.php:132
785
  #, php-format
786
  msgid ""
787
  "Error: Couldn't connect to host :( . Please contact your site's webhost (or "
788
  "webmaster) and request them to add %s to their IP whitelist."
789
  msgstr ""
790
 
791
+ #: core/Blocklogin.php:85
792
  msgid "Your email is not set. Please enter a valid email."
793
  msgstr ""
794
 
795
+ #: core/Blocklogin.php:108
796
  msgid "Wrong email or password!"
797
  msgstr ""
798
 
799
+ #: core/Blocklogin.php:111
800
  msgid "You can only use this account for the URL you registered first!"
801
  msgstr ""
802
 
803
+ #: core/Blocklogin.php:114
804
  msgid "You disconnected your website from"
805
  msgstr ""
806
 
807
+ #: core/Blocklogin.php:118
808
  msgid "An error occured."
809
  msgstr ""
810
 
811
+ #: core/Blocklogin.php:136
812
  msgid "Both fields are required."
813
  msgstr ""
814
 
3474
  #: models/CheckSeo.php:523
3475
  #, php-format
3476
  msgid ""
3477
+ "Go to %s Squirrly > All Features %s and make sure that SEO Automation is "
3478
+ "activated."
3479
  msgstr ""
3480
 
3481
  #: models/CheckSeo.php:524
4600
  msgid "Focus Page could not be verified (error: %s)"
4601
  msgstr ""
4602
 
4603
+ #: models/Compatibility.php:437
4604
  msgid "MPN"
4605
  msgstr ""
4606
 
4607
+ #: models/Compatibility.php:438
4608
  msgid "Add Manufacturer Part Number (MPN)"
4609
  msgstr ""
4610
 
4611
+ #: models/Compatibility.php:441
4612
  msgid "GTIN"
4613
  msgstr ""
4614
 
4615
+ #: models/Compatibility.php:442
4616
  msgid "Add Global Trade Item Number (GTIN)"
4617
  msgstr ""
4618
 
4619
+ #: models/Compatibility.php:445
4620
  msgid "EAN (GTIN-13)"
4621
  msgstr ""
4622
 
4623
+ #: models/Compatibility.php:446
4624
  msgid ""
4625
  "Add Global Trade Item Number (GTIN) for the major GTIN used outside of North "
4626
  "America"
4627
  msgstr ""
4628
 
4629
+ #: models/Compatibility.php:449
4630
  msgid "UPC (GTIN-12)"
4631
  msgstr ""
4632
 
4633
+ #: models/Compatibility.php:450
4634
  msgid "Add Global Trade Item Number (GTIN) for North America"
4635
  msgstr ""
4636
 
4637
+ #: models/Compatibility.php:453
4638
  msgid "ISBN"
4639
  msgstr ""
4640
 
4641
+ #: models/Compatibility.php:454
4642
  msgid "Add Global Trade Item Number (GTIN) for books"
4643
  msgstr ""
4644
 
4645
+ #: models/Compatibility.php:459
4646
  msgid "Brand Name"
4647
  msgstr ""
4648
 
4649
+ #: models/Compatibility.php:460
4650
  msgid "Add Product Brand Name"
4651
  msgstr ""
4652
 
4750
  msgid "The favicon has been updated."
4751
  msgstr ""
4752
 
4753
+ #: models/LiveAssistant.php:42
4754
+ msgid "Keyword:"
4755
+ msgstr ""
4756
+
4757
+ #: models/LiveAssistant.php:43
4758
+ msgid "date"
4759
+ msgstr ""
4760
+
4761
+ #: models/LiveAssistant.php:44
4762
+ msgid ""
4763
+ "To load the Live Assistant and optimize this page, click to connect to "
4764
+ "Squirrly Cloud."
4765
+ msgstr ""
4766
+
4767
+ #: models/LiveAssistant.php:46
4768
+ msgid "Read it!"
4769
+ msgstr ""
4770
+
4771
+ #: models/LiveAssistant.php:47
4772
+ msgid "Insert it!"
4773
+ msgstr ""
4774
+
4775
+ #: models/LiveAssistant.php:48
4776
+ msgid "Reference"
4777
+ msgstr ""
4778
+
4779
+ #: models/LiveAssistant.php:49
4780
+ msgid "Insert as box"
4781
+ msgstr ""
4782
+
4783
+ #: models/LiveAssistant.php:50
4784
+ msgid "Insert Link"
4785
+ msgstr ""
4786
+
4787
+ #: models/LiveAssistant.php:51
4788
+ msgid "Not relevant?"
4789
+ msgstr ""
4790
+
4791
+ #: models/LiveAssistant.php:52
4792
+ msgid "Insert in your article"
4793
+ msgstr ""
4794
+
4795
+ #: models/LiveAssistant.php:53
4796
+ msgid ":( An error occurred while processing your request. Please try again"
4797
+ msgstr ""
4798
+
4799
+ #: models/LiveAssistant.php:54
4800
+ msgid "Searching ... "
4801
+ msgstr ""
4802
+
4803
+ #: models/LiveAssistant.php:55
4804
+ msgid "No results found!"
4805
+ msgstr ""
4806
+
4807
+ #: models/LiveAssistant.php:56
4808
+ #, php-format
4809
+ msgid "[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]"
4810
+ msgstr ""
4811
+
4812
+ #: models/LiveAssistant.php:57
4813
+ msgid "Has creative commons attributes"
4814
+ msgstr ""
4815
+
4816
+ #: models/LiveAssistant.php:58
4817
+ msgid "No known copyright restrictions"
4818
+ msgstr ""
4819
+
4820
+ #: models/LiveAssistant.php:59
4821
+ msgid ""
4822
+ "You haven`t used Squirrly SEO to optimize your article. Do you want to "
4823
+ "optimize for a keyword before publishing?"
4824
+ msgstr ""
4825
+
4826
+ #: models/LiveAssistant.php:60
4827
+ msgid "Your Subscription has Expired"
4828
+ msgstr ""
4829
+
4830
+ #: models/LiveAssistant.php:61
4831
+ msgid "There are no keywords saved in briefcase yet"
4832
+ msgstr ""
4833
+
4834
+ #: models/LiveAssistant.php:62
4835
+ #, php-format
4836
+ msgid "Congratulations! Your article is 100% optimized!"
4837
+ msgstr ""
4838
+
4839
+ #: models/LiveAssistant.php:63
4840
+ #, php-format
4841
+ msgid "appears too many times. Try to remove %s of them"
4842
+ msgstr ""
4843
+
4844
+ #: models/LiveAssistant.php:64
4845
+ #, php-format
4846
+ msgid "write %s more words"
4847
+ msgstr ""
4848
+
4849
+ #: models/LiveAssistant.php:65
4850
+ #, php-format
4851
+ msgid "Add the keyword in the %s of your article"
4852
+ msgstr ""
4853
+
4854
+ #: models/LiveAssistant.php:66
4855
+ msgid "Click to keep the highlight on"
4856
+ msgstr ""
4857
+
4858
+ #: models/LiveAssistant.php:67
4859
+ msgid "introduction"
4860
+ msgstr ""
4861
+
4862
+ #: models/LiveAssistant.php:68
4863
+ #, php-format
4864
+ msgid "Write more words after the %s keyword"
4865
+ msgstr ""
4866
+
4867
+ #: models/LiveAssistant.php:69
4868
+ msgid "or use synonyms"
4869
+ msgstr ""
4870
+
4871
+ #: models/LiveAssistant.php:70
4872
+ #, php-format
4873
+ msgid "add %s more word(s)"
4874
+ msgstr ""
4875
+
4876
+ #: models/LiveAssistant.php:71
4877
+ #, php-format
4878
+ msgid "or remove %s word(s)"
4879
+ msgstr ""
4880
+
4881
+ #: models/LiveAssistant.php:72
4882
+ #, php-format
4883
+ msgid "add the selected keyword %s more time(s) "
4884
+ msgstr ""
4885
+
4886
+ #: models/LiveAssistant.php:73
4887
+ #, php-format
4888
+ msgid "write %s more words to start calculating"
4889
+ msgstr ""
4890
+
4891
+ #: models/LiveAssistant.php:74
4892
+ msgid "Add to Briefcase"
4893
+ msgstr ""
4894
+
4895
+ #: models/LiveAssistant.php:75
4896
+ msgid "Add Keyword to Briefcase"
4897
+ msgstr ""
4898
+
4899
+ #: models/LiveAssistant.php:76
4900
+ msgid "Select"
4901
+ msgstr ""
4902
+
4903
+ #: models/LiveAssistant.php:77 view/Blocks/Snippet.php:133
4904
+ #: view/Blocks/Snippet.php:657 view/Blocks/Snippet.php:920
4905
+ msgid "Auto Draft"
4906
+ msgstr ""
4907
+
4908
+ #: models/LiveAssistant.php:78
4909
+ msgid "Enter keyword above and press ENTER"
4910
+ msgstr ""
4911
+
4912
+ #: models/LiveAssistant.php:79
4913
+ msgid "Add Keywords from Briefcase"
4914
+ msgstr ""
4915
+
4916
+ #: models/LiveAssistant.php:80
4917
+ msgid ""
4918
+ "Live Assistant was used to optimize this page with the Page Builder. Please go "
4919
+ "back and resume your optimization work there."
4920
+ msgstr ""
4921
+
4922
  #: models/Menu.php:120
4923
  msgid "First Step"
4924
  msgstr ""
5480
  msgid "Plugin Install Process"
5481
  msgstr ""
5482
 
5483
+ #: models/Snippet.php:271
5484
  msgid "You don't have enough pemission to edit this article"
5485
  msgstr ""
5486
 
5487
+ #: models/Snippet.php:374
5488
  msgid "Error! Could not save the data."
5489
  msgstr ""
5490
 
5491
+ #: models/Snippet.php:379
5492
  msgid "Error! Invalid request."
5493
  msgstr ""
5494
 
5495
+ #: models/Snippet.php:427
5496
  msgid "Couldn't find the page"
5497
  msgstr ""
5498
 
5499
+ #: models/Snippet.php:444 models/Snippet.php:456
5500
  msgid "No Polylang translation for this post."
5501
  msgstr ""
5502
 
5514
  msgid "Current URL"
5515
  msgstr ""
5516
 
5517
+ #: models/abstract/Assistant.php:120 view/Blocks/LiveAssistant.php:31
5518
  msgid "Keywords"
5519
  msgstr ""
5520
 
7120
  msgid "Add New"
7121
  msgstr ""
7122
 
7123
+ #: view/Assistant/Assistant.php:53 view/Assistant/Settings.php:168
7124
  #: view/Audits/Addpage.php:200 view/Audits/Audit.php:136
7125
  #: view/Audits/Audits.php:50 view/Automation/Automation.php:394
7126
+ #: view/Automation/Settings.php:113 view/Automation/Types.php:113
7127
  #: view/BulkSeo/Bulkseo.php:267 view/FocusPages/Addpage.php:205
7128
  #: view/FocusPages/Pagelist.php:57 view/FocusPages/Pagelist.php:67
7129
  #: view/Ranking/Gscsync.php:118 view/Ranking/Rankings.php:465
7218
  msgid "Search %sCopyright Free Images%s in Squirrly Live Assistant."
7219
  msgstr ""
7220
 
7221
+ #: view/Assistant/Settings.php:100
7222
  msgid "Activate Live Assistant in Frontend"
7223
  msgstr ""
7224
 
7225
+ #: view/Assistant/Settings.php:103
7226
  msgid ""
7227
  "Load Squirrly Live Assistant in Frontend to customize the posts and pages with "
7228
  "Builders."
7229
  msgstr ""
7230
 
7231
+ #: view/Assistant/Settings.php:104
7232
+ #, php-format
7233
+ msgid "Supports %s Elementor Builder %s plugin."
7234
  msgstr ""
7235
 
7236
+ #: view/Assistant/Settings.php:105
7237
+ #, php-format
7238
+ msgid "Supports %s Oxygen Builder %s plugin."
7239
+ msgstr ""
7240
+
7241
+ #: view/Assistant/Settings.php:106
7242
+ #, php-format
7243
+ msgid "Supports %s Divi Builder %s plugin (BETA)."
7244
  msgstr ""
7245
 
7246
  #: view/Assistant/Settings.php:113
7247
+ msgid "Live Assistant Type"
7248
+ msgstr ""
7249
+
7250
+ #: view/Assistant/Settings.php:118
7251
+ msgid "Auto"
7252
+ msgstr ""
7253
+
7254
+ #: view/Assistant/Settings.php:119
7255
+ msgid "Integrated Box"
7256
+ msgstr ""
7257
+
7258
+ #: view/Assistant/Settings.php:120
7259
+ msgid "Floating Box"
7260
+ msgstr ""
7261
+
7262
+ #: view/Assistant/Settings.php:128
7263
+ msgid "Places where you do NOT want Squirrly Live Assistant to load"
7264
+ msgstr ""
7265
+
7266
+ #: view/Assistant/Settings.php:134
7267
  msgid ""
7268
  "Don't select anything if you wish Squirrly Live Assistant to load for all post "
7269
  "types."
7270
  msgstr ""
7271
 
7272
+ #: view/Assistant/Settings.php:140
7273
  msgid "Exclusions"
7274
  msgstr ""
7275
 
7276
+ #: view/Assistant/Settings.php:142
7277
  msgid "Select places where you do NOT want Squirrly Live Assistant to load."
7278
  msgstr ""
7279
 
7280
+ #: view/Assistant/Settings.php:163 view/Audits/Settings.php:46
7281
  #: view/Automation/Automation.php:356 view/Automation/Settings.php:105
7282
+ #: view/Ranking/Settings.php:334 view/SeoSettings/Jsonld.php:121
7283
+ #: view/SeoSettings/Jsonld.php:169 view/SeoSettings/Jsonld.php:226
7284
+ #: view/SeoSettings/Jsonld.php:307 view/SeoSettings/Jsonld.php:346
7285
+ #: view/SeoSettings/Jsonld.php:385 view/SeoSettings/Jsonld.php:445
7286
+ #: view/SeoSettings/Jsonld.php:485 view/SeoSettings/Jsonld.php:516
7287
+ #: view/SeoSettings/Metas.php:121 view/SeoSettings/Metas.php:161
7288
+ #: view/SeoSettings/Metas.php:195 view/SeoSettings/Social.php:282
7289
+ #: view/SeoSettings/Social.php:328 view/SeoSettings/Social.php:404
7290
+ #: view/SeoSettings/Social.php:456 view/SeoSettings/Tweaks.php:355
7291
+ #: view/SeoSettings/Tweaks.php:421 view/SeoSettings/Tweaks.php:477
7292
+ #: view/SeoSettings/Tweaks.php:534 view/SeoSettings/Tweaks.php:617
7293
+ #: view/SeoSettings/Webmaster.php:300 view/SeoSettings/Webmaster.php:326
7294
+ #: view/SeoSettings/Webmaster.php:406
7295
  msgid "Save Settings"
7296
  msgstr ""
7297
 
7298
+ #: view/Assistant/Settings.php:170
7299
  msgid ""
7300
  "The Settings section allows you to set up your assistant just the way you like "
7301
  "it."
7302
  msgstr ""
7303
 
7304
+ #: view/Assistant/Settings.php:171
7305
  msgid ""
7306
  "Quickly enable or disable the settings available here based on your needs and "
7307
  "preferences."
7413
  "thumbs down element) and work on them to improve your score."
7414
  msgstr ""
7415
 
7416
+ #: view/Audits/AuditPageRow.php:44
 
 
 
 
7417
  msgid "Could not create the audit for this URL"
7418
  msgstr ""
7419
 
7420
+ #: view/Audits/AuditPageRow.php:44
7421
  msgid "error code"
7422
  msgstr ""
7423
 
7424
+ #: view/Audits/AuditPageRow.php:46
7425
  #, php-format
7426
  msgid ""
7427
  "The way your WordPress site is currently hosted can affect the way Squirrly "
7431
  "to allow our server to verify your page so that you’ll receive a full audit."
7432
  msgstr ""
7433
 
7434
+ #: view/Audits/AuditPageRow.php:48 view/Audits/AuditPageRow.php:75
7435
  #: view/FocusPages/FocusPageRow.php:132 view/FocusPages/FocusPageRow.php:217
7436
  msgid "Inspect URL"
7437
  msgstr ""
7438
 
7439
+ #: view/Audits/AuditPageRow.php:69 view/Audits/AuditStats.php:69
7440
+ #: view/Audits/AuditStats.php:96 view/FocusPages/FocusPageRow.php:112
7441
  #: view/FocusPages/FocusPageRow.php:211
7442
  msgid "Request New Audit"
7443
  msgstr ""
7444
 
7445
+ #: view/Audits/AuditPageRow.php:78
7446
  msgid "Do you want to delete the Audit Page?"
7447
  msgstr ""
7448
 
7449
+ #: view/Audits/AuditPageRow.php:84
7450
  msgid "Remove Page from Audit"
7451
  msgstr ""
7452
 
7479
  "and %srefresh the page%s."
7480
  msgstr ""
7481
 
7482
+ #: view/Audits/AuditStats.php:31
7483
  msgid ""
7484
  "Your score is low. A medium score is over 50, and a good score is over 80."
7485
  msgstr ""
7486
 
7487
+ #: view/Audits/AuditStats.php:33
7488
  msgid "Your score is medium. A good score is over 80."
7489
  msgstr ""
7490
 
7491
+ #: view/Audits/AuditStats.php:35
7492
  msgid "Your score is good. Keep it as high as posible for good results."
7493
  msgstr ""
7494
 
7495
+ #: view/Audits/AuditStats.php:42 view/Audits/AuditStats.php:252
7496
  #: view/Audits/Compare.php:72
7497
  msgid "Audit Score"
7498
  msgstr ""
7499
 
7500
+ #: view/Audits/AuditStats.php:54
7501
  msgid "Your audit score is"
7502
  msgstr ""
7503
 
7504
+ #: view/Audits/AuditStats.php:57 view/Audits/AuditStats.php:85
7505
  msgid "Audit Date"
7506
  msgstr ""
7507
 
7508
+ #: view/Audits/AuditStats.php:66 view/Audits/AuditStats.php:93
7509
+ msgid "In progress"
 
 
7510
  msgstr ""
7511
 
7512
+ #: view/Audits/AuditStats.php:78
7513
  msgid "Add a new page for Audit"
7514
  msgstr ""
7515
 
7516
+ #: view/Audits/AuditStats.php:111
7517
  msgid "Audit in progress"
7518
  msgstr ""
7519
 
7520
+ #: view/Audits/AuditStats.php:117
7521
  msgid "Audit not ready yet"
7522
  msgstr ""
7523
 
7524
+ #: view/Audits/AuditStats.php:122
7525
  msgid "You can refresh the audit once every hour"
7526
  msgstr ""
7527
 
7528
+ #: view/Audits/AuditStats.php:123
7529
  msgid "Request Website Audit"
7530
  msgstr ""
7531
 
7532
+ #: view/Audits/AuditStats.php:142 view/Audits/AuditStats.php:254
7533
  #: view/Ranking/Rankings.php:407 view/Research/History.php:37
7534
  msgid "Date"
7535
  msgstr ""
7536
 
7537
+ #: view/Audits/AuditStats.php:142
7538
  msgid "On-Page"
7539
  msgstr ""
7540
 
7541
+ #: view/Audits/AuditStats.php:142
7542
  msgid "Off-Page"
7543
  msgstr ""
7544
 
7545
+ #: view/Audits/AuditStats.php:165
7546
  #, php-format
7547
  msgid "You've completed %s tasks from %s"
7548
  msgstr ""
7549
 
7550
+ #: view/Audits/AuditStats.php:186 view/Audits/Compare.php:53
7551
  msgid "Scores"
7552
  msgstr ""
7553
 
7554
+ #: view/Audits/AuditStats.php:187
7555
  #, php-format
7556
  msgid "the latest %s days evolution for Audit"
7557
  msgstr ""
7558
 
7559
+ #: view/Audits/AuditStats.php:209 view/FocusPages/FocusPageStats.php:135
7560
  #: view/Ranking/Rankings.php:149
7561
  msgid "Progress & Achievements"
7562
  msgstr ""
7563
 
7564
+ #: view/Audits/AuditStats.php:210
7565
  #, php-format
7566
  msgid "the latest %s days progress for Audit Pages"
7567
  msgstr ""
7568
 
7569
+ #: view/Audits/AuditStats.php:218 view/FocusPages/FocusPageStats.php:145
7570
  #: view/Ranking/Rankings.php:178
7571
  msgid "No progress found yet"
7572
  msgstr ""
7573
 
7574
+ #: view/Audits/AuditStats.php:230 view/Ranking/Rankings.php:191
7575
  msgid "Share Your Success"
7576
  msgstr ""
7577
 
7578
+ #: view/Audits/AuditStats.php:237
7579
  msgid "Audit History"
7580
  msgstr ""
7581
 
7582
+ #: view/Audits/AuditStats.php:244
7583
  msgid "Compare Audits"
7584
  msgstr ""
7585
 
7586
+ #: view/Audits/AuditStats.php:253
7587
  msgid "Page(s)"
7588
  msgstr ""
7589
 
7590
+ #: view/Audits/AuditStats.php:270
7591
  msgid "pages"
7592
  msgstr ""
7593
 
7594
+ #: view/Audits/AuditStats.php:274
7595
  msgid "Show Latest Audit"
7596
  msgstr ""
7597
 
7598
+ #: view/Audits/AuditStats.php:274
7599
  msgid "Show Audit"
7600
  msgstr ""
7601
 
7934
  msgid "Add new post types in the list and customize the automation for it."
7935
  msgstr ""
7936
 
7937
+ #: view/Automation/Types.php:100
7938
  msgid "All the post types are sent for Automation"
7939
  msgstr ""
7940
 
7941
+ #: view/Automation/Types.php:101
7942
  msgid "Start Automation Setup"
7943
  msgstr ""
7944
 
7945
+ #: view/Automation/Types.php:115
7946
  msgid ""
7947
  "Add ALL Your Post Types to our Automation section, to ensure all your site is "
7948
  "covered with excellent SEO."
7949
  msgstr ""
7950
 
7951
+ #: view/Blocks/Account.php:28
7952
  #, php-format
7953
  msgid "Due Date: %s"
7954
  msgstr ""
7955
 
7956
+ #: view/Blocks/Account.php:32
7957
+ msgid "Expires: never"
7958
+ msgstr ""
7959
+
7960
+ #: view/Blocks/Account.php:46
7961
  msgid "Keywords Lookups"
7962
  msgstr ""
7963
 
7964
+ #: view/Blocks/Account.php:61
7965
  msgid "SERP Lookups"
7966
  msgstr ""
7967
 
7968
+ #: view/Blocks/Account.php:74
7969
  msgid "Focus Pages Lookup"
7970
  msgstr ""
7971
 
7972
+ #: view/Blocks/Account.php:86
7973
  msgid "Audit Pages Lookup"
7974
  msgstr ""
7975
 
7976
+ #: view/Blocks/Account.php:95
7977
  msgid "Reset day"
7978
  msgstr ""
7979
 
7980
+ #: view/Blocks/Account.php:102
7981
  msgid "Want to hide this section from your customes?"
7982
  msgstr ""
7983
 
7984
+ #: view/Blocks/Account.php:108
7985
  msgid "Upgrade your account"
7986
  msgstr ""
7987
 
7988
+ #: view/Blocks/Account.php:112
7989
  msgid "Billing info"
7990
  msgstr ""
7991
 
7992
+ #: view/Blocks/Account.php:116
7993
  msgid "Account settings"
7994
  msgstr ""
7995
 
7996
+ #: view/Blocks/Account.php:120
7997
  msgid "Squirrly Cloud"
7998
  msgstr ""
7999
 
8000
+ #: view/Blocks/Account.php:124
8001
  msgid "Support"
8002
  msgstr ""
8003
 
8025
  msgid "Rankings Mastery Tasks"
8026
  msgstr ""
8027
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8028
  #: view/Blocks/Dashboard.php:16
8029
  msgid "Congratulations! you have success messages"
8030
  msgstr ""
8066
  msgid "Manage the features & access them directly from here."
8067
  msgstr ""
8068
 
8069
+ #: view/Blocks/Features.php:44 view/Blocks/Features.php:209
8070
  msgid "Do you want to search in the 650 features list?"
8071
  msgstr ""
8072
 
8073
+ #: view/Blocks/Features.php:46 view/Blocks/Features.php:211
8074
  msgid "Do you want to see all 650 features list?"
8075
  msgstr ""
8076
 
8082
  msgid "Search Feature"
8083
  msgstr ""
8084
 
8085
+ #: view/Blocks/Features.php:156
8086
  msgid "start feature setup"
8087
  msgstr ""
8088
 
8089
+ #: view/Blocks/Features.php:160
8090
  msgid "see feature"
8091
  msgstr ""
8092
 
8093
+ #: view/Blocks/Features.php:176
8094
  msgid "click to deactivate"
8095
  msgstr ""
8096
 
8097
+ #: view/Blocks/Features.php:176
8098
  msgid "click to activate"
8099
  msgstr ""
8100
 
8101
+ #: view/Blocks/Features.php:182
8102
  msgid "connect to cloud"
8103
  msgstr ""
8104
 
8105
+ #: view/Blocks/Features.php:186
8106
  msgid "already active"
8107
  msgstr ""
8108
 
8109
+ #: view/Blocks/Features.php:190
8110
  msgid "activate feature"
8111
  msgstr ""
8112
 
8171
  msgid "Click to Maximize Box"
8172
  msgstr ""
8173
 
8174
+ #: view/Blocks/LiveAssistant.php:10 view/Blocks/LiveAssistant.php:41
8175
  msgid "Squirrly Briefcase"
8176
  msgstr ""
8177
 
8198
  msgid "SLA Score"
8199
  msgstr ""
8200
 
8201
+ #: view/Blocks/LiveAssistant.php:26 view/Blocks/LiveAssistant.php:103
8202
+ msgid "Update"
8203
  msgstr ""
8204
 
8205
+ #: view/Blocks/LiveAssistant.php:31
8206
  msgid "Step 1"
8207
  msgstr ""
8208
 
8209
+ #: view/Blocks/LiveAssistant.php:32
8210
  msgid "Step 2"
8211
  msgstr ""
8212
 
8213
+ #: view/Blocks/LiveAssistant.php:32
8214
  msgid "Enhance"
8215
  msgstr ""
8216
 
8217
+ #: view/Blocks/LiveAssistant.php:33
8218
  msgid "Step 3"
8219
  msgstr ""
8220
 
8221
+ #: view/Blocks/LiveAssistant.php:33
8222
  msgid "Analysis"
8223
  msgstr ""
8224
 
8225
+ #: view/Blocks/LiveAssistant.php:34
8226
  msgid "Extra"
8227
  msgstr ""
8228
 
8229
+ #: view/Blocks/LiveAssistant.php:34
8230
  msgid "Deep"
8231
  msgstr ""
8232
 
8233
+ #: view/Blocks/LiveAssistant.php:42
8234
+ msgid "We recommend that you select at least 3 Keywords for best results."
8235
  msgstr ""
8236
 
8237
+ #: view/Blocks/LiveAssistant.php:47
8238
  msgid "Search in Briefcase ..."
8239
  msgstr ""
8240
 
8241
+ #: view/Blocks/LiveAssistant.php:51 view/Blocks/LiveAssistant.php:79
8242
+ #: view/Blocks/LiveAssistant.php:123 view/Onboarding/Step1.php:106
8243
  msgid "Continue"
8244
  msgstr ""
8245
 
8246
+ #: view/Blocks/LiveAssistant.php:58
8247
  msgid "Squirrly Blogging Assistant"
8248
  msgstr ""
8249
 
8250
+ #: view/Blocks/LiveAssistant.php:59
8251
  msgid "The keyword will be automatically be added as the image alt text."
8252
  msgstr ""
8253
 
8254
+ #: view/Blocks/LiveAssistant.php:60
8255
  msgid ""
8256
  "Click on “Insert it!” and the incorporated Tweet(s) will add more substance to "
8257
  "your article."
8258
  msgstr ""
8259
 
8260
+ #: view/Blocks/LiveAssistant.php:61
8261
  msgid ""
8262
  "Browse through Wikipedia articles to get more insight or quick fact-checking "
8263
  "on your topic."
8264
  msgstr ""
8265
 
8266
+ #: view/Blocks/LiveAssistant.php:62
8267
  msgid "Find topic-related articles written by fellow bloggers or influencers."
8268
  msgstr ""
8269
 
8270
+ #: view/Blocks/LiveAssistant.php:63
8271
  msgid ""
8272
  "Squirrly automatically browses your WordPress for previously written articles "
8273
  "you want to cite or insert"
8274
  msgstr ""
8275
 
8276
+ #: view/Blocks/LiveAssistant.php:70
8277
  msgid "Images"
8278
  msgstr ""
8279
 
8280
+ #: view/Blocks/LiveAssistant.php:71
8281
  msgid "Twitter"
8282
  msgstr ""
8283
 
8284
+ #: view/Blocks/LiveAssistant.php:72
8285
  msgid "Wiki"
8286
  msgstr ""
8287
 
8288
+ #: view/Blocks/LiveAssistant.php:73
8289
  msgid "Blogs"
8290
  msgstr ""
8291
 
8292
+ #: view/Blocks/LiveAssistant.php:74
8293
  msgid "My articles"
8294
  msgstr ""
8295
 
8296
+ #: view/Blocks/LiveAssistant.php:83
8297
  msgid "Show only Copyright Free images"
8298
  msgstr ""
8299
 
8300
  #: view/Blocks/LiveAssistant.php:94
 
 
 
 
8301
  msgid ""
8302
  "Squirrly automatically checks your article to make sure it has the best SEO "
8303
  "chances"
8304
  msgstr ""
8305
 
8306
+ #: view/Blocks/LiveAssistant.php:131
 
 
 
 
8307
  msgid "Squirrly Focus Pages"
8308
  msgstr ""
8309
 
8310
+ #: view/Blocks/LiveAssistant.php:132
8311
  msgid ""
8312
  "Focus Pages bring you clear methods to take your content from never found to "
8313
  "always found on Google."
8314
  msgstr ""
8315
 
8316
+ #: view/Blocks/LiveAssistant.php:138
8317
  msgid "Need a deeper analysis of this content?"
8318
  msgstr ""
8319
 
8320
+ #: view/Blocks/LiveAssistant.php:139
8321
  msgid ""
8322
  "Add this page/article as a focus page and take your content from never found "
8323
  "to always found on Google. Rank your pages by influencing the right ranking "
8324
  "factors. Turn everything that you see here to Green and you will win."
8325
  msgstr ""
8326
 
8327
+ #: view/Blocks/LiveAssistant.php:142
8328
  msgid "Set Focus Pages"
8329
  msgstr ""
8330
 
8365
  msgid "Sign Up"
8366
  msgstr ""
8367
 
8368
+ #: view/Blocks/Menu.php:31 view/Blocks/Menu.php:70 view/Blocks/Menu.php:116
8369
+ #: view/Blocks/Menu.php:167
8370
+ msgid "Collapse"
8371
+ msgstr ""
8372
+
8373
+ #: view/Blocks/Menu.php:48 view/Blocks/Menu.php:87 view/Blocks/Menu.php:136
8374
  msgid "Back To Home"
8375
  msgstr ""
8376
 
8413
  msgstr ""
8414
 
8415
  #: view/Blocks/Snippet.php:151 view/Blocks/Snippet.php:685
8416
+ #: view/Blocks/Snippet.php:947 view/Onboarding/Step1.php:105
8417
  msgid "Cancel"
8418
  msgstr ""
8419
 
8761
  "provider`s support team"
8762
  msgstr ""
8763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8764
  #: view/Blocks/Toolbar.php:13
8765
  msgid "SEO Beginner"
8766
  msgstr ""
9027
  msgid "Details"
9028
  msgstr ""
9029
 
9030
+ #: view/FocusPages/FocusPageRow.php:109
9031
+ #, php-format
9032
+ msgid "Wait %s minutes"
9033
+ msgstr ""
9034
+
9035
  #: view/FocusPages/FocusPageRow.php:130
9036
  msgid "Upgrade Plan"
9037
  msgstr ""
9322
  msgid "Learn how you can import the same settings on this site as well"
9323
  msgstr ""
9324
 
9325
+ #: view/Onboarding/Step1.php:96
9326
  msgid "What will be activated"
9327
  msgstr ""
9328
 
9329
+ #: view/Onboarding/Step1.php:102
9330
  msgid "Squirrly Sitemap XML"
9331
  msgstr ""
9332
 
models/Compatibility.php CHANGED
@@ -164,6 +164,22 @@ class SQ_Models_Compatibility
164
  // //hook the WPBakery editor
165
  // add_action('vc_frontend_editor_render_template', array(SQ_Classes_ObjController::getClass('SQ_Models_LiveAssistant'), 'loadFrontent'), 99);
166
  // }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  // }
168
 
169
  //Load SLA in Zion Backend
@@ -177,7 +193,7 @@ class SQ_Models_Compatibility
177
  // wp_enqueue_script('jquery-ui-draggable');
178
  // wp_print_scripts(array('jquery', 'jquery-ui-core', 'jquery-ui-draggable'));
179
  //
180
- // //activate SLA for elementor on frontend
181
  // add_action('zionbuilder/editor/after_scripts', array(SQ_Classes_ObjController::getClass('SQ_Models_LiveAssistant'), 'loadFrontent'), 99);
182
  // }
183
  // }
@@ -190,7 +206,7 @@ class SQ_Models_Compatibility
190
  */
191
  public function hookBuildersFrontend() {
192
 
193
- if (function_exists('is_user_logged_in') && is_user_logged_in() && !SQ_Classes_Helpers_Tools::isAjax()) {
194
 
195
  //Load the SLA for Oxygen Editor
196
  if (SQ_Classes_Helpers_Tools::isPluginInstalled('oxygen/functions.php')) {
@@ -210,44 +226,50 @@ class SQ_Models_Compatibility
210
 
211
  }
212
 
213
- return true;
214
  }
 
215
 
 
 
 
216
 
217
- //Load the SLA for Elementor Editor
218
- if (SQ_Classes_Helpers_Tools::isPluginInstalled('elementor/elementor.php')) {
219
- if (SQ_Classes_Helpers_Tools::getValue('elementor-preview')) {
220
-
221
- //Load the style for builders
222
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('builders');
223
 
224
- return true;
225
- }
226
  }
 
227
 
228
- //Load the SLA for JS Composer / WPBakery
229
- // if (SQ_Classes_Helpers_Tools::isPluginInstalled('js_composer/js_composer.php')) {
230
- // if (SQ_Classes_Helpers_Tools::getValue('vc_editable')) {
231
  //
232
- // //Load the style for builders
233
- // SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('builders');
234
- // }
235
  // }
 
236
 
237
- //Load the SLA for Elementor Editor
238
- // if (SQ_Classes_Helpers_Tools::isPluginInstalled('zionbuilder/zionbuilder.php')) {
239
- // if (SQ_Classes_Helpers_Tools::getValue('zionbuilder-preview')) {
240
  //
241
- // //Load the style for builders
242
- // SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('builders');
243
  //
244
- // return true;
245
- // }
246
  // }
 
 
 
 
 
 
 
 
 
 
 
 
247
 
248
- }
249
 
250
- }
251
 
252
  //Load the SLA for Divi Editor
253
  if (SQ_Classes_Helpers_Tools::isPluginInstalled('divi-builder/divi-builder.php') || SQ_Classes_Helpers_Tools::isThemeActive('Divi') ) {
@@ -260,7 +282,7 @@ class SQ_Models_Compatibility
260
  add_action('admin_bar_menu', function ($wp_admin_bar) {
261
  ob_start();
262
  SQ_Classes_ObjController::getClass('SQ_Models_LiveAssistant')->loadFrontent();
263
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('builders');
264
  $liveassistant = ob_get_clean();
265
 
266
  $wp_admin_bar->add_menu(array('id' => 'sq_postsquirrly', 'parent' => false, 'meta' => array('html' => $liveassistant, 'tabindex' => PHP_INT_MAX,),));
@@ -270,6 +292,26 @@ class SQ_Models_Compatibility
270
 
271
  }
272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  }
274
 
275
  /**
164
  // //hook the WPBakery editor
165
  // add_action('vc_frontend_editor_render_template', array(SQ_Classes_ObjController::getClass('SQ_Models_LiveAssistant'), 'loadFrontent'), 99);
166
  // }
167
+ // }
168
+
169
+ //Load SLA in Thrive Backend
170
+ // if (SQ_Classes_Helpers_Tools::isPluginInstalled('thrive-visual-editor/thrive-visual-editor.php')) {
171
+ // if (SQ_Classes_Helpers_Tools::getValue('action') == 'architect') {
172
+ // //activate frontend SLA
173
+ // add_filter('sq_load_frontend_sla', '__return_true');
174
+ //
175
+ // wp_enqueue_script('jquery');
176
+ // wp_enqueue_script('jquery-ui-core');
177
+ // wp_enqueue_script('jquery-ui-draggable');
178
+ // wp_print_scripts(array('jquery', 'jquery-ui-core', 'jquery-ui-draggable'));
179
+ //
180
+ // //activate SLA for Thrive on frontend
181
+ // add_action('tcb_editor_iframe_after', array(SQ_Classes_ObjController::getClass('SQ_Models_LiveAssistant'), 'loadFrontent'), 99);
182
+ // }
183
  // }
184
 
185
  //Load SLA in Zion Backend
193
  // wp_enqueue_script('jquery-ui-draggable');
194
  // wp_print_scripts(array('jquery', 'jquery-ui-core', 'jquery-ui-draggable'));
195
  //
196
+ // //activate SLA for Zion on frontend
197
  // add_action('zionbuilder/editor/after_scripts', array(SQ_Classes_ObjController::getClass('SQ_Models_LiveAssistant'), 'loadFrontent'), 99);
198
  // }
199
  // }
206
  */
207
  public function hookBuildersFrontend() {
208
 
209
+ if (!SQ_Classes_Helpers_Tools::isAjax()) {
210
 
211
  //Load the SLA for Oxygen Editor
212
  if (SQ_Classes_Helpers_Tools::isPluginInstalled('oxygen/functions.php')) {
226
 
227
  }
228
 
 
229
  }
230
+ }
231
 
232
+ //Load the SLA for Elementor Editor
233
+ if (SQ_Classes_Helpers_Tools::isPluginInstalled('elementor/elementor.php')) {
234
+ if (SQ_Classes_Helpers_Tools::getValue('elementor-preview')) {
235
 
236
+ //Load the style for builders
237
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('builders');
 
 
 
 
238
 
 
 
239
  }
240
+ }
241
 
242
+ //Load the SLA for JS Composer / WPBakery
243
+ // if (SQ_Classes_Helpers_Tools::isPluginInstalled('js_composer/js_composer.php')) {
244
+ // if (SQ_Classes_Helpers_Tools::getValue('vc_editable')) {
245
  //
246
+ // //Load the style for builders
247
+ // SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('builders');
 
248
  // }
249
+ // }
250
 
251
+ //Load the SLA for Elementor Editor
252
+ // if (SQ_Classes_Helpers_Tools::isPluginInstalled('zionbuilder/zionbuilder.php')) {
253
+ // if (SQ_Classes_Helpers_Tools::getValue('zionbuilder-preview')) {
254
  //
255
+ // //Load the style for builders
256
+ // SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('builders');
257
  //
 
 
258
  // }
259
+ // }
260
+
261
+ //Load the SLA for Elementor Editor
262
+ // if (SQ_Classes_Helpers_Tools::isPluginInstalled('thrive-visual-editor/thrive-visual-editor.php')) {
263
+ //
264
+ // if (SQ_Classes_Helpers_Tools::getValue('tve')) {
265
+ //
266
+ // //Load the style for builders
267
+ // SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('builders');
268
+ //
269
+ // }
270
+ // }
271
 
 
272
 
 
273
 
274
  //Load the SLA for Divi Editor
275
  if (SQ_Classes_Helpers_Tools::isPluginInstalled('divi-builder/divi-builder.php') || SQ_Classes_Helpers_Tools::isThemeActive('Divi') ) {
282
  add_action('admin_bar_menu', function ($wp_admin_bar) {
283
  ob_start();
284
  SQ_Classes_ObjController::getClass('SQ_Models_LiveAssistant')->loadFrontent();
285
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('builders', array('trigger'=>true));
286
  $liveassistant = ob_get_clean();
287
 
288
  $wp_admin_bar->add_menu(array('id' => 'sq_postsquirrly', 'parent' => false, 'meta' => array('html' => $liveassistant, 'tabindex' => PHP_INT_MAX,),));
292
 
293
  }
294
 
295
+ //Load the SLA for Bricks Editor
296
+ // if (SQ_Classes_Helpers_Tools::isThemeActive('bricks') ) {
297
+ //
298
+ // if (SQ_Classes_Helpers_Tools::getValue('bricks') == 'run') {
299
+ // //activate frontend SLA
300
+ // add_filter('sq_load_frontend_sla', '__return_true');
301
+ //
302
+ // //activate SLA on frontend
303
+ // add_action('bricks_body', function(){
304
+ // if ( bricks_is_builder_main() ) {
305
+ // SQ_Classes_ObjController::getClass('SQ_Models_LiveAssistant')->loadFrontent();
306
+ // }else{
307
+ // SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('builders');
308
+ // }
309
+ // });
310
+ //
311
+ // }
312
+ //
313
+ // }
314
+ }
315
  }
316
 
317
  /**
models/LiveAssistant.php CHANGED
@@ -7,8 +7,11 @@ class SQ_Models_LiveAssistant
7
 
8
  /**
9
  * Load the JS for API
 
 
 
10
  */
11
- public static function init()
12
  {
13
  global $post;
14
  $referer = '';
@@ -88,25 +91,24 @@ class SQ_Models_LiveAssistant
88
  </script>';
89
 
90
  if (is_rtl()) {
91
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('sqbootstrap.rtl');
92
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl');
93
  } else {
94
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('sqbootstrap');
95
  }
96
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('logo');
97
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('post');
98
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('fontawesome');
99
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/utils/mark'.(SQ_DEBUG ? '' : '.min').'.js');
100
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/utils/xregexp'.(SQ_DEBUG ? '' : '.min').'.js');
101
-
102
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_briefcase'.(SQ_DEBUG ? '' : '.min').'.js');
103
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_frontend'.(SQ_DEBUG ? '' : '.min').'.js');
104
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_blockseo'.(SQ_DEBUG ? '' : '.min').'.js');
105
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_blocksearch'.(SQ_DEBUG ? '' : '.min').'.js');
106
  if(SQ_Classes_Helpers_Tools::getOption('sq_sla_type') <> 'integrated') {
107
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_floating' . (SQ_DEBUG ? '' : '.min') . '.js');
108
  }
109
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/squirrly'.(SQ_DEBUG ? '' : '.min').'.js');
110
 
111
  }
112
 
@@ -138,15 +140,20 @@ class SQ_Models_LiveAssistant
138
  if (!wp_script_is('jquery')) {
139
  wp_enqueue_script('jquery');
140
  }
141
-
142
  //load the draggable script in post edit for the floating SLA
143
- wp_enqueue_script("jquery-ui-core");
144
- wp_enqueue_script("jquery-ui-draggable");
 
 
145
 
146
- SQ_Classes_ObjController::getClass('SQ_Classes_RemoteController');
147
- //SQ_Classes_ObjController::getClass('SQ_Classes_ActionController')->hookHead();
 
 
148
 
 
149
  SQ_Classes_ObjController::getClass('SQ_Controllers_Post')->show_view('Blocks/FrontendAssistant');
 
150
  }
151
 
152
  }
7
 
8
  /**
9
  * Load the JS for API
10
+ *
11
+ * @param $args
12
+ * @return void
13
  */
14
+ public static function loadMedia($args = array())
15
  {
16
  global $post;
17
  $referer = '';
91
  </script>';
92
 
93
  if (is_rtl()) {
94
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('sqbootstrap.rtl', $args);
95
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('rtl', $args);
96
  } else {
97
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('sqbootstrap', $args);
98
  }
99
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('logo', $args);
100
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('post', $args);
101
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('fontawesome', $args);
102
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/utils/mark'.(SQ_DEBUG ? '' : '.min').'.js', $args);
103
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/utils/xregexp'.(SQ_DEBUG ? '' : '.min').'.js', $args);
104
+
105
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_briefcase'.(SQ_DEBUG ? '' : '.min').'.js', $args);
106
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_blockseo'.(SQ_DEBUG ? '' : '.min').'.js', $args);
107
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_blocksearch'.(SQ_DEBUG ? '' : '.min').'.js', $args);
 
108
  if(SQ_Classes_Helpers_Tools::getOption('sq_sla_type') <> 'integrated') {
109
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_floating' . (SQ_DEBUG ? '' : '.min') . '.js', $args);
110
  }
111
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/squirrly'.(SQ_DEBUG ? '' : '.min').'.js', $args);
112
 
113
  }
114
 
140
  if (!wp_script_is('jquery')) {
141
  wp_enqueue_script('jquery');
142
  }
 
143
  //load the draggable script in post edit for the floating SLA
144
+ if (!wp_script_is('jquery-ui-core') || !wp_script_is('jquery-ui-draggable')) {
145
+ wp_enqueue_script("jquery-ui-core");
146
+ wp_enqueue_script("jquery-ui-draggable");
147
+ }
148
 
149
+ //Load media in frontend
150
+ $args = array('trigger'=>true);
151
+ SQ_Classes_ObjController::getClass('SQ_Models_LiveAssistant')->loadMedia($args);
152
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_frontend'.(SQ_DEBUG ? '' : '.min').'.js', $args);
153
 
154
+ //Load the Frontend Assistant
155
  SQ_Classes_ObjController::getClass('SQ_Controllers_Post')->show_view('Blocks/FrontendAssistant');
156
+
157
  }
158
 
159
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://plugin.squirrly.co/squirrly-seo-pricing/
4
  Tags: SEO, SEO Plugin, XML sitemap, WooCommerce SEO, Search Engine, Open Graph, Video Sitemap, Google News Sitemap, Rich Snippets, Robotx.txt, SEO Automation, Local SEO, SEO Content analysis, SEO Content, SEO Optimization, WordPress SEO, Yoast, Yoast Compatible, Yoast Import, SEO Redirection, Redirection, SEO Sitemap, SEO Caching, Meta Title, Meta Description, Performance, SEO Audit, SEO Keyword Research, SEO Rank Math import, Google Search Console, Schema
5
  Requires at least: 4.3
6
  Tested up to: 6.0
7
- Stable tag: 12.1.04
8
  Requires PHP: 7.0
9
  License: GPLv2 or later
10
 
@@ -667,8 +667,11 @@ Type a keyword to the right of the screen and start using Squirrly Seo. Enjoy!
667
  7. Squirrly SEO - SEO Briefcase
668
 
669
  == Changelog ==
670
- = 12.1.05 - 06/09/2022 =
671
  Update - Add Live Assistant support for Oxygen Builder on frontend
 
 
 
672
  Fix - Add the Live Assistant when no meta-box-order is present in the DB
673
  Fix - Fixed PHP warning when missing meta-box-order_ line from usermeta table
674
  Fix - Woocommerce Compatibility on Variable Products
@@ -677,6 +680,7 @@ Fix - Show the Account limits from full to empty
677
  Fix - Update the 'sq_menu' hoot to get the current menu name
678
  Fix - Live Assistant floating box to show correctly on WordPress 6.0
679
  Fix - Reduce the status update of the trashed posts to API
 
680
 
681
  = 12.1.04 - 05/24/2022 =
682
  Update - The JSON-LD compatibility with Woocommerce on Products variant prices
4
  Tags: SEO, SEO Plugin, XML sitemap, WooCommerce SEO, Search Engine, Open Graph, Video Sitemap, Google News Sitemap, Rich Snippets, Robotx.txt, SEO Automation, Local SEO, SEO Content analysis, SEO Content, SEO Optimization, WordPress SEO, Yoast, Yoast Compatible, Yoast Import, SEO Redirection, Redirection, SEO Sitemap, SEO Caching, Meta Title, Meta Description, Performance, SEO Audit, SEO Keyword Research, SEO Rank Math import, Google Search Console, Schema
5
  Requires at least: 4.3
6
  Tested up to: 6.0
7
+ Stable tag: 12.1.05
8
  Requires PHP: 7.0
9
  License: GPLv2 or later
10
 
667
  7. Squirrly SEO - SEO Briefcase
668
 
669
  == Changelog ==
670
+ = 12.1.06 - 06/16/2022 =
671
  Update - Add Live Assistant support for Oxygen Builder on frontend
672
+ Update - Add Live Assistant support for Divi Builder on frontend
673
+ Fix - Live Assistant on frontend to show the number of keywords when a keyword highlighted in SLA
674
+ Fix - Live Assistant on frontend to load only after the builder preloading is closed
675
  Fix - Add the Live Assistant when no meta-box-order is present in the DB
676
  Fix - Fixed PHP warning when missing meta-box-order_ line from usermeta table
677
  Fix - Woocommerce Compatibility on Variable Products
680
  Fix - Update the 'sq_menu' hoot to get the current menu name
681
  Fix - Live Assistant floating box to show correctly on WordPress 6.0
682
  Fix - Reduce the status update of the trashed posts to API
683
+ Fix - Show error message on SLA when not connected to Cloud
684
 
685
  = 12.1.04 - 05/24/2022 =
686
  Update - The JSON-LD compatibility with Woocommerce on Products variant prices
squirrly.php CHANGED
@@ -8,7 +8,7 @@
8
  * Description: A.I.-based Private SEO Consultant. In a Plugin. Powered by Machine Learning and Cloud Services. Over 300 functionalities for SEO available when you need them.
9
  * Author: Squirrly
10
  * Author URI: https://plugin.squirrly.co
11
- * Version: 12.1.04
12
  * License: GPLv2 or later
13
  * License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
14
  * Text Domain: squirrly-seo
@@ -17,9 +17,9 @@
17
 
18
  if (!defined('SQ_VERSION')) {
19
  /* SET THE CURRENT VERSION ABOVE AND BELOW */
20
- define('SQ_VERSION', '12.1.04');
21
  //The last stable version
22
- define('SQ_STABLE_VERSION', '11.1.12');
23
  // Call config files
24
  try {
25
  include_once dirname(__FILE__) . '/config/config.php';
8
  * Description: A.I.-based Private SEO Consultant. In a Plugin. Powered by Machine Learning and Cloud Services. Over 300 functionalities for SEO available when you need them.
9
  * Author: Squirrly
10
  * Author URI: https://plugin.squirrly.co
11
+ * Version: 12.1.06
12
  * License: GPLv2 or later
13
  * License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
14
  * Text Domain: squirrly-seo
17
 
18
  if (!defined('SQ_VERSION')) {
19
  /* SET THE CURRENT VERSION ABOVE AND BELOW */
20
+ define('SQ_VERSION', '12.1.06');
21
  //The last stable version
22
+ define('SQ_STABLE_VERSION', '12.1.04');
23
  // Call config files
24
  try {
25
  include_once dirname(__FILE__) . '/config/config.php';
view/Assistant/Settings.php CHANGED
@@ -86,7 +86,8 @@
86
  </div>
87
  </div>
88
 
89
- <?php if (SQ_Classes_Helpers_Tools::isPluginInstalled('elementor/elementor.php') ||
 
90
  SQ_Classes_Helpers_Tools::isPluginInstalled('oxygen/functions.php') ||
91
  SQ_Classes_Helpers_Tools::isPluginInstalled('divi-builder/divi-builder.php') ||
92
  SQ_Classes_Helpers_Tools::isThemeActive('Divi') ||
@@ -101,7 +102,9 @@
101
  <a href="https://howto12.squirrly.co/kb/squirrly-live-assistant/#Add-Live-Assistant-in-Frontend" target="_blank"><i class="fa-solid fa-question-circle m-0 px-2" style="display: inline;"></i></a>
102
  </label>
103
  <div class="small text-black-50 ml-5"><?php echo esc_html__("Load Squirrly Live Assistant in Frontend to customize the posts and pages with Builders.", 'squirrly-seo'); ?></div>
104
- <div class="small text-black-50 ml-5"><?php echo esc_html__("Currently supports Elementor Builder & Oxygen Builder (BETA) plugins.", 'squirrly-seo'); ?></div>
 
 
105
  </div>
106
  </div>
107
  </div>
86
  </div>
87
  </div>
88
 
89
+ <?php if (SQ_Classes_Helpers_Tools::getOption('sq_seoexpert') ||
90
+ SQ_Classes_Helpers_Tools::isPluginInstalled('elementor/elementor.php') ||
91
  SQ_Classes_Helpers_Tools::isPluginInstalled('oxygen/functions.php') ||
92
  SQ_Classes_Helpers_Tools::isPluginInstalled('divi-builder/divi-builder.php') ||
93
  SQ_Classes_Helpers_Tools::isThemeActive('Divi') ||
102
  <a href="https://howto12.squirrly.co/kb/squirrly-live-assistant/#Add-Live-Assistant-in-Frontend" target="_blank"><i class="fa-solid fa-question-circle m-0 px-2" style="display: inline;"></i></a>
103
  </label>
104
  <div class="small text-black-50 ml-5"><?php echo esc_html__("Load Squirrly Live Assistant in Frontend to customize the posts and pages with Builders.", 'squirrly-seo'); ?></div>
105
+ <div class="small text-black-50 ml-5 mt-1"><?php echo sprintf(esc_html__("Supports %s Elementor Builder %s plugin.", 'squirrly-seo'),'<a href="https://elementor.com/" target="_blank" class="font-weight-bold">','</a>'); ?></div>
106
+ <div class="small text-black-50 ml-5 mt-1"><?php echo sprintf(esc_html__("Supports %s Oxygen Builder %s plugin.", 'squirrly-seo'),'<a href="https://oxygenbuilder.com/" target="_blank" class="font-weight-bold">','</a>'); ?></div>
107
+ <div class="small text-black-50 ml-5 mt-1"><?php echo sprintf(esc_html__("Supports %s Divi Builder %s plugin (BETA).", 'squirrly-seo'),'<a href="https://www.elegantthemes.com/gallery/divi/" target="_blank" class="font-weight-bold">','</a>'); ?></div>
108
  </div>
109
  </div>
110
  </div>
view/Blocks/Connect.php DELETED
@@ -1,43 +0,0 @@
1
- <?php defined('ABSPATH') || die('Cheatin\' uh?'); ?>
2
- <?php if (SQ_Classes_Helpers_Tools::userCan('sq_manage_snippets')) { ?>
3
- <div class="card col-12 p-0 m-0 border-0">
4
- <div class="px-2 py-1">
5
- <div id="sq_assistant_sq_seosettings" class="sq_assistant">
6
- <form method="post" action="">
7
- <ul id="sq_assistant_tasks_sq_seosettings" class="p-0 m-0">
8
- <?php if (!SQ_Classes_Helpers_Tools::getOption('sq_cloud_connect')) { ?>
9
-
10
- <li class="sq_task row border-0 mb-0 pb-2">
11
- <?php SQ_Classes_Helpers_Tools::setNonce('sq_cloud_connect', 'sq_nonce'); ?>
12
- <input type="hidden" name="action" value="sq_cloud_connect"/>
13
- <i class="fa-solid fa-check" title="ssss" data-original-title=""></i>
14
- <div class="message" style="display: none"></div>
15
- <div class="description" style="display: none"><?php echo sprintf(esc_html__("This option is used to track innerlinks and insights for your Focus Pages and give detailed information about them. %sIt is also useful for sending the optimized posts from %shttps://cloud.squirrly.co%s directly on your WordPress site.", 'squirrly-seo'), '<br /> ', '<a href="https://cloud.squirrly.co" target="_blank">', '</a>'); ?></div>
16
- <h4><?php echo esc_html__("Connect Squirrly Cloud & Website API", 'squirrly-seo'); ?></h4>
17
- </li>
18
- <div class="text-center m-0 mb-3">
19
- <button type="submit" class="btn btn-primary btn-sm inline p-0 px-3 m-0" style="z-index: 1"><?php echo esc_html__("Connect", 'squirrly-seo'); ?></button>
20
- </div>
21
-
22
- <?php } else { ?>
23
-
24
- <li class="sq_task row completed border-0 mb-0 pb-2">
25
- <?php SQ_Classes_Helpers_Tools::setNonce('sq_cloud_disconnect', 'sq_nonce'); ?>
26
- <input type="hidden" name="action" value="sq_cloud_disconnect"/>
27
- <i class="fa-solid fa-check" title="" data-original-title=""></i>
28
- <div class="message" style="display: none"></div>
29
- <div class="description" style="display: none"><?php echo sprintf(esc_html__("This option is used to track innerlinks and insights for your Focus Pages and give detailed information about them. %sIt is also useful for sending the optimized posts from %shttps://cloud.squirrly.co%s directly on your WordPress site.", 'squirrly-seo'), '<br /> ', '<a href="https://cloud.squirrly.co" target="_blank">', '</a>'); ?></div>
30
- <h4>
31
- <?php echo esc_html__("Connect Squirrly Cloud & Website API", 'squirrly-seo'); ?>
32
- </h4>
33
- </li>
34
- <div class="text-center m-0 mb-3">
35
- <button type="submit" class="btn btn-link btn-sm inline p-0 m-0" style="z-index: 1">(<?php echo esc_html__("disconnect", 'squirrly-seo'); ?>)</button>
36
- </div>
37
- <?php } ?>
38
- </ul>
39
- </form>
40
- </div>
41
- </div>
42
- </div>
43
- <?php } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
view/Blocks/FrontendAssistant.php CHANGED
@@ -1,28 +1,7 @@
1
  <?php defined('ABSPATH') || die('Cheatin\' uh?'); ?>
2
  <?php if (SQ_Classes_Helpers_Tools::getOption('sq_api') <> '') { ?>
3
- <style>
4
- body ul.sq_notification {
5
- top: 4px !important;
6
- }
7
- #postsquirrly {
8
- display: none;
9
- }
10
- .components-squirrly-icon{
11
- display: none;
12
- position: fixed;
13
- right: 20px;
14
- bottom: 10px;
15
- z-index: 10;
16
- border: 1px solid #999;
17
- background-color: white;
18
- margin: 0 !important;
19
- padding: 3px;
20
- cursor: pointer;
21
- }
22
- </style>
23
-
24
- <div id="postsquirrly" class="sq_frontend">
25
- <?php $view->show_view('Post'); ?>
26
  </div>
27
-
28
  <?php }?>
1
  <?php defined('ABSPATH') || die('Cheatin\' uh?'); ?>
2
  <?php if (SQ_Classes_Helpers_Tools::getOption('sq_api') <> '') { ?>
3
+ <style>html{font-size: initial;}body ul.sq_notification,body ul.sq_complete{top: 0 !important;min-height: 40px;}</style>
4
+ <div id="postsquirrly" class="sq_frontend sq_sticky" style="display: none">
5
+ <?php $view->show_view('Blocks/LiveAssistant'); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  </div>
 
7
  <?php }?>
view/Blocks/KnowledgeBase.php CHANGED
@@ -1196,11 +1196,11 @@
1196
  <div class="hmwp_feature card h-100 p-0 shadow-0 rounded-0">
1197
  <div class="m-0 p-0">
1198
  <div class="m-0 p-0 text-center">
1199
- <a href="https://howto.squirrly.co/kb/bulk-seo/#bulk_seo_search" class="text-dark" target="_blank"><img src="<?php echo esc_url(_SQ_ASSETS_URL_ . 'img/kb/search.jpg') ?>" style="width: 100%"></a>
1200
  </div>
1201
  <div class="mx-3 my-3 p-0 text-black" style="min-height: 60px; font-size: 1.1rem;">
1202
  <div class="pt-3 pb-1" style="color: #696868">
1203
- <a href="https://howto.squirrly.co/kb/bulk-seo/#bulk_seo_search" class="text-dark" target="_blank">How to Search in BULK SEO</a>
1204
  </div>
1205
  </div>
1206
  </div>
1196
  <div class="hmwp_feature card h-100 p-0 shadow-0 rounded-0">
1197
  <div class="m-0 p-0">
1198
  <div class="m-0 p-0 text-center">
1199
+ <a href="https://howto12.squirrly.co/kb/bulk-seo/#bulk_seo_search" class="text-dark" target="_blank"><img src="<?php echo esc_url(_SQ_ASSETS_URL_ . 'img/kb/search.jpg') ?>" style="width: 100%"></a>
1200
  </div>
1201
  <div class="mx-3 my-3 p-0 text-black" style="min-height: 60px; font-size: 1.1rem;">
1202
  <div class="pt-3 pb-1" style="color: #696868">
1203
+ <a href="https://howto12.squirrly.co/kb/bulk-seo/#bulk_seo_search" class="text-dark" target="_blank">How to Search in BULK SEO</a>
1204
  </div>
1205
  </div>
1206
  </div>
view/Blocks/LiveAssistant.php CHANGED
@@ -23,10 +23,9 @@
23
  </div>
24
  <div class="sq_keyword sq-p-2 sq-bg-light sq-border-bottom" style="display: none">
25
  <span class="sq-font-weight-bold" style="font-size: 1rem"><?php echo esc_html__("SLA Score", 'squirrly-seo') ?>:</span> <span class="sq-font-weight-bold" id="sq_keyword_score" style="font-size: 1rem"></span>
26
- <div class="sq-col-12 sq-m-0 sq-p-0">
27
- <input type="text" id="sq_keyword" name="sq_keyword" class="sq-col-12 sq-m-0 sq-p-0" value="<?php echo SQ_Classes_Helpers_Tools::getValue('keyword', '') ?>" autocomplete="off" />
28
- <input type="button" id="sq_selectit" value="<?php echo esc_html__("Use this keyword", 'squirrly-seo'); ?>" style="display: none"/>
29
- </div>
30
  </div>
31
  <div id="sq_block_tabs" class="sq-row sq-p-0 sq-mt-2 sq-mb-0 sq-mx-0 sq-border-bottom" style="display: none">
32
  <div class="sq_block_tab sq-col-3 sq-p-2 sq-m-0 sq-text-primary sq_active small" data-target="#sq_briefcase"><strong><?php echo esc_html__("Step 1", 'squirrly-seo'); ?></strong><br /><?php echo esc_html__("Keywords", 'squirrly-seo'); ?></div>
@@ -40,12 +39,12 @@
40
  <div class="sq-row sq-p-2 sq-m-0 small" style="height: 100px;">
41
  <i class="fa-solid fa-briefcase sq-p-1 sq-px-2 sq-m-0"></i>
42
  <strong><?php echo esc_html__("Squirrly Briefcase", 'squirrly-seo') ?>:</strong>
43
- <div class="sq_help sq-col-12 sq-px-4 sq-mx-2"><?php echo esc_html__("We recomend that you select at least 3 Keywords for best results.", 'squirrly-seo') ?></div>
44
  </div>
45
  </div>
46
  <?php }?>
47
  <div id="sq_briefcase_list" class="sq-col-12 sq-m-0 sq-p-1">
48
- <input type="text" id="sq_briefcase_keyword" class="sq-col-12 sq-m-0 sq-p-2 sq-rounded-0" value="" autocomplete="off" placeholder="<?php echo esc_html__("Search in Briefcase ...", 'squirrly-seo'); ?>" >
49
 
50
  <div id="sq_briefcase_content" class="sq-col-12 sq-m-0 sq-p-0 sq-py-2"></div>
51
  </div>
@@ -101,7 +100,7 @@
101
  <div class="sq-flex-grow-1 sq-m-0 sq-p-0 sq-py-1 sq-mr-2">
102
  <progress class="sq_blockseo_progress sq-col-12 sq-m-0 sq-p-0 sq-my-1" max="100" value="0"></progress>
103
  </div>
104
- <button type="button" id="sq_seo_refresh" class="sq-btn sq-btn-sm sq-btn-primary sq-text-white sq-rounded-0"><?php echo esc_html__("Update", 'squirrly-seo') ?></button>
105
 
106
  </div>
107
 
23
  </div>
24
  <div class="sq_keyword sq-p-2 sq-bg-light sq-border-bottom" style="display: none">
25
  <span class="sq-font-weight-bold" style="font-size: 1rem"><?php echo esc_html__("SLA Score", 'squirrly-seo') ?>:</span> <span class="sq-font-weight-bold" id="sq_keyword_score" style="font-size: 1rem"></span>
26
+ <button type="button" class="sq_seo_refresh sq-btn sq-btn-sm sq-btn-primary sq-text-white sq-rounded-0 sq-float-right"><?php echo esc_html__("Update", 'squirrly-seo') ?></button>
27
+ <input type="text" id="sq_keyword" name="sq_keyword" class="sq-col-9 sq-m-0 sq-p-0" value="<?php echo SQ_Classes_Helpers_Tools::getValue('keyword', '') ?>" autocomplete="off" />
28
+ <input type="hidden" id="sq_selectit" />
 
29
  </div>
30
  <div id="sq_block_tabs" class="sq-row sq-p-0 sq-mt-2 sq-mb-0 sq-mx-0 sq-border-bottom" style="display: none">
31
  <div class="sq_block_tab sq-col-3 sq-p-2 sq-m-0 sq-text-primary sq_active small" data-target="#sq_briefcase"><strong><?php echo esc_html__("Step 1", 'squirrly-seo'); ?></strong><br /><?php echo esc_html__("Keywords", 'squirrly-seo'); ?></div>
39
  <div class="sq-row sq-p-2 sq-m-0 small" style="height: 100px;">
40
  <i class="fa-solid fa-briefcase sq-p-1 sq-px-2 sq-m-0"></i>
41
  <strong><?php echo esc_html__("Squirrly Briefcase", 'squirrly-seo') ?>:</strong>
42
+ <div class="sq_help sq-col-12 sq-px-4 sq-mx-2"><?php echo esc_html__("We recommend that you select at least 3 Keywords for best results.", 'squirrly-seo') ?></div>
43
  </div>
44
  </div>
45
  <?php }?>
46
  <div id="sq_briefcase_list" class="sq-col-12 sq-m-0 sq-p-1">
47
+ <input type="text" id="sq_briefcase_keyword" class="sq-col-12 sq-m-0 sq-p-2 sq-rounded-0 sq-border" value="" autocomplete="off" placeholder="<?php echo esc_html__("Search in Briefcase ...", 'squirrly-seo'); ?>" >
48
 
49
  <div id="sq_briefcase_content" class="sq-col-12 sq-m-0 sq-p-0 sq-py-2"></div>
50
  </div>
100
  <div class="sq-flex-grow-1 sq-m-0 sq-p-0 sq-py-1 sq-mr-2">
101
  <progress class="sq_blockseo_progress sq-col-12 sq-m-0 sq-p-0 sq-my-1" max="100" value="0"></progress>
102
  </div>
103
+ <button type="button" class="sq_seo_refresh sq-btn sq-btn-sm sq-btn-primary sq-text-white sq-rounded-0"><?php echo esc_html__("Update", 'squirrly-seo') ?></button>
104
 
105
  </div>
106
 
view/Blocks/Support.php DELETED
@@ -1,106 +0,0 @@
1
- <?php defined('ABSPATH') || die('Cheatin\' uh?'); ?>
2
- <div id="sq_options" class="card col-12 p-0 m-0 py-2 my-2 border-0">
3
- <ul class="p-0 m-0">
4
- <li id="sq_options_dasboard">
5
- <?php
6
- if (SQ_Classes_Helpers_Tools::getMenuVisible('show_account_info') && SQ_Classes_Helpers_Tools::userCan('manage_options')) { ?>
7
- <span class="sq_push" style="display:none;">1</span>
8
- <span class="sq_text"><a href="<?php echo SQ_Classes_RemoteController::getMySquirrlyLink('dashboard') ?>" title="<?php echo esc_html__("Go to Profile", 'squirrly-seo') ?>" target="_blank"><span><?php echo esc_html__("Profile", 'squirrly-seo') ?></span></a></span>
9
- <a href="<?php echo SQ_Classes_RemoteController::getMySquirrlyLink('dashboard') ?>" title="<?php echo esc_html__("Profile", 'squirrly-seo') ?>" target="_blank"><span class="sq_icon"></span></a>
10
- <?php
11
- } else {
12
- echo '&nbsp;';
13
- }
14
- ?>
15
- </li>
16
-
17
- <li id="sq_options_support">
18
-
19
- <span class="sq_text"><?php echo esc_html__("Support", 'squirrly-seo') ?></span><span class="sq_icon"></span>
20
- <ul class="sq_options_support_popup" style="display: none;">
21
- <div id="sq_options_close">x</div>
22
- <li><h6><?php echo esc_html__("Need Help with Squirrly SEO?", 'squirrly-seo') ?></h6></li>
23
-
24
- <li> - <?php echo sprintf(esc_html__("10 AM to 4 PM (GMT): Mon-Fri %sby contact form%s.", 'squirrly-seo'), '<a href="' . esc_url(_SQ_SUPPORT_URL_) . '">', '</a>') ?> </li>
25
- <li> - <?php echo sprintf(esc_html__("How To Squirrly %swebsite%s.", 'squirrly-seo'), '<a href="' . esc_url(_SQ_HOWTO_URL_) . '" target="_blank">', '</a>') ?> </li>
26
- <li> - <?php echo sprintf(esc_html__("Facebook %sSupport Community%s.", 'squirrly-seo'), '<a href="https://www.facebook.com/groups/SquirrlySEOCustomerService/" target="_blank">', '</a>') ?> </li>
27
- <li> - <?php echo sprintf(esc_html__("Facebook %sMessenger%s.", 'squirrly-seo'), '<a href="https://www.facebook.com/Squirrly.co/" target="_blank">', '</a>') ?> </li>
28
- <li> - <?php echo sprintf(esc_html__("Twitter %sSupport%s.", 'squirrly-seo'), '<a href="https://twitter.com/squirrlyhq" target="_blank">', '</a>') ?> </li>
29
-
30
- </ul>
31
- </li>
32
- <li id="sq_options_feedback">
33
-
34
- <span class="sq_icon" <?php
35
- if (!isset($_COOKIE['sq_feedback_face'])) {
36
- echo 'title="' . esc_html__("How was your Squirrly experience today?", 'squirrly-seo') . '"';
37
- }
38
- ?>></span>
39
-
40
- <?php
41
- $feedbacks = array(
42
- array(
43
- 'title' => esc_html__("Annoying", 'squirrly-seo'),
44
- 'value' => "Angry",
45
- ),
46
- array(
47
- 'title' => esc_html__("Bad", 'squirrly-seo'),
48
- 'value' => "Sad",
49
- ),
50
- array(
51
- 'title' => esc_html__("Nice", 'squirrly-seo'),
52
- 'value' => "Happy",
53
- ),
54
- array(
55
- 'title' => esc_html__("Great", 'squirrly-seo'),
56
- 'value' => "Excited",
57
- ),
58
- array(
59
- 'title' => esc_html__('Love it', 'squirrly-seo'),
60
- 'value' => "Loveit",
61
- ),
62
- );
63
- ?>
64
-
65
- <?php if (!isset($_COOKIE['sq_feedback_face'])) {
66
- if (SQ_Classes_Helpers_Tools::getOption('sq_feedback')) { ?>
67
- <span class="sq_push">1</span>
68
- <?php } ?>
69
- <ul class="sq_options_feedback_popup" style="display: none;">
70
- <div id="sq_options_feedback_close">x</div>
71
- <li><?php echo esc_html__("How was Squirrly today?", 'squirrly-seo') ?></li>
72
- <li>
73
- <table width="100%" cellpadding="2" cellspacing="0" border="0">
74
- <tr>
75
- <?php
76
- foreach ($feedbacks as $index => $feedback) { ?>
77
- <td>
78
- <label class="sq_label_feedback_smiley sq_label_feedback_<?php echo (int)$index ?>" for="sq_label_feedback_<?php echo (int)$index ?>"></label>
79
- <input class="sq_feedback_smiley" type="radio" name="sq_feedback_face" id="sq_label_feedback_<?php echo (int)$index ?>" value="<?php echo esc_attr($feedback['value']) ?>"/><?php echo esc_attr($feedback['title']) ?>
80
- </td>
81
- <?php } ?>
82
- </tr>
83
- </table>
84
- <div id="sq_options_feedback_error"></div>
85
- <p id="sq_feedback_msg" style="display: none;">
86
- <input id="sq_feedback_submit" type="button" value="<?php echo esc_html__("Send feedback", 'squirrly-seo') ?>">
87
- </p>
88
-
89
- </li>
90
- <li style="margin-top: 10px;"><?php echo esc_html__("For more support:", 'squirrly-seo') ?> </li>
91
- <li> - <?php echo sprintf(esc_html__("10 AM to 4 PM (GMT): Mon-Fri %sby contact form%s.", 'squirrly-seo'), '<a href="' . esc_url(_SQ_SUPPORT_URL_) . '" target="_blank">', '</a>') ?> </li>
92
- <li> - <?php echo sprintf(esc_html__("How To Squirrly %swebsite%s.", 'squirrly-seo'), '<a href="' . esc_url(_SQ_HOWTO_URL_) . '" target="_blank">', '</a>') ?> </li>
93
- <li> - <?php echo sprintf(esc_html__("Facebook %sSupport Community%s.", 'squirrly-seo'), '<a href="https://www.facebook.com/groups/SquirrlySEOCustomerService/" target="_blank">', '</a>') ?> </li>
94
- <li> - <?php echo sprintf(esc_html__("Facebook %sMessenger%s.", 'squirrly-seo'), '<a href="https://www.facebook.com/Squirrly.co/" target="_blank">', '</a>') ?> </li>
95
- <li> - <?php echo sprintf(esc_html__("New Lessons Mon. and Tue. on %sTwitter%s.", 'squirrly-seo'), '<a href="https://twitter.com/squirrlyhq" target="_blank">', '</a>') ?> </li>
96
- </ul>
97
- <?php } else { ?>
98
- <ul class="sq_options_feedback_popup" style="display: none;">
99
- <div id="sq_options_feedback_close">x</div>
100
- <li><?php echo esc_html__("Thank you! You can send us a happy face tomorrow too.", 'squirrly-seo') ?></li>
101
- </ul>
102
- <?php } ?>
103
- </li>
104
-
105
- </ul>
106
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
view/assets/css/builders.css CHANGED
@@ -3,6 +3,7 @@
3
  .ct-component mark.mark_counter,
4
  .et_pb_row mark.mark_counter,
5
  .container mark.mark_counter,
 
6
  .znpb-element__wrapper mark.mark_counter,
7
  .wpb_wrapper mark.mark_counter
8
  {
@@ -16,6 +17,7 @@
16
  .ct-component mark.mark_counter:after,
17
  .et_pb_row mark.mark_counter:after,
18
  .container mark.mark_counter:after,
 
19
  .znpb-element__wrapper mark.mark_counter:after,
20
  .wpb_wrapper mark.mark_counter:after
21
  {
@@ -34,6 +36,7 @@
34
  .ct-component mark.mark_counter,
35
  .et_pb_row mark.mark_counter,
36
  .container mark.mark_counter,
 
37
  .znpb-element__wrapper mark.mark_counter,
38
  .wpb_wrapper mark.mark_counter
39
  {
3
  .ct-component mark.mark_counter,
4
  .et_pb_row mark.mark_counter,
5
  .container mark.mark_counter,
6
+ .thrv_wrapper mark.mark_counter,
7
  .znpb-element__wrapper mark.mark_counter,
8
  .wpb_wrapper mark.mark_counter
9
  {
17
  .ct-component mark.mark_counter:after,
18
  .et_pb_row mark.mark_counter:after,
19
  .container mark.mark_counter:after,
20
+ .thrv_wrapper mark.mark_counter:after,
21
  .znpb-element__wrapper mark.mark_counter:after,
22
  .wpb_wrapper mark.mark_counter:after
23
  {
36
  .ct-component mark.mark_counter,
37
  .et_pb_row mark.mark_counter,
38
  .container mark.mark_counter,
39
+ .thrv_wrapper mark.mark_counter,
40
  .znpb-element__wrapper mark.mark_counter,
41
  .wpb_wrapper mark.mark_counter
42
  {
view/assets/css/builders.min.css CHANGED
@@ -1 +1 @@
1
- .container mark.mark_counter,.ct-component mark.mark_counter,.elementor-container mark.mark_counter,.elementor-inner mark.mark_counter,.et_pb_row mark.mark_counter,.wpb_wrapper mark.mark_counter,.znpb-element__wrapper mark.mark_counter{background:#fdffc7!important;color:#383838!important;padding:0 5px}.container mark.mark_counter:after,.ct-component mark.mark_counter:after,.elementor-container mark.mark_counter:after,.elementor-inner mark.mark_counter:after,.et_pb_row mark.mark_counter:after,.wpb_wrapper mark.mark_counter:after,.znpb-element__wrapper mark.mark_counter:after{content:attr(data-cnt)!important;color:gray;font-size:70%;line-height:50%;vertical-align:baseline;position:relative;top:-9px}.container mark.mark_counter,.ct-component mark.mark_counter,.elementor-container .sq_highlight .sq_highlight_cnt,.elementor-container mark.mark_counter,.elementor-inner mark.mark_counter,.et_pb_row mark.mark_counter,.wpb_wrapper mark.mark_counter,.znpb-element__wrapper mark.mark_counter{display:initial!important}
1
+ .container mark.mark_counter,.ct-component mark.mark_counter,.elementor-container mark.mark_counter,.elementor-inner mark.mark_counter,.et_pb_row mark.mark_counter,.thrv_wrapper mark.mark_counter,.wpb_wrapper mark.mark_counter,.znpb-element__wrapper mark.mark_counter{background:#fdffc7!important;color:#383838!important;padding:0 5px}.container mark.mark_counter:after,.ct-component mark.mark_counter:after,.elementor-container mark.mark_counter:after,.elementor-inner mark.mark_counter:after,.et_pb_row mark.mark_counter:after,.thrv_wrapper mark.mark_counter:after,.wpb_wrapper mark.mark_counter:after,.znpb-element__wrapper mark.mark_counter:after{content:attr(data-cnt)!important;color:gray;font-size:70%;line-height:50%;vertical-align:baseline;position:relative;top:-9px}.container mark.mark_counter,.ct-component mark.mark_counter,.elementor-container .sq_highlight .sq_highlight_cnt,.elementor-container mark.mark_counter,.elementor-inner mark.mark_counter,.et_pb_row mark.mark_counter,.thrv_wrapper mark.mark_counter,.wpb_wrapper mark.mark_counter,.znpb-element__wrapper mark.mark_counter{display:initial!important}
view/assets/css/elementor.min.css DELETED
@@ -1 +0,0 @@
1
- #content #elementor-container mark.mark_counter,#content .elementor-inner mark.mark_counter{background:#fdffc7!important;color:#383838!important;padding:0 5px}#content #elementor-container mark.mark_counter:after,#content .elementor-inner mark.mark_counter:after{content:attr(data-cnt);color:gray;font-size:70%;line-height:50%;vertical-align:baseline;position:relative;top:-9px}#content #elementor-container .sq_highlight .sq_highlight_cnt,#content #elementor-container mark.mark_counter,#content .elementor-inner mark.mark_counter{display:initial!important}
 
view/assets/css/global.min.css CHANGED
@@ -1 +1 @@
1
- @import url(https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap);@-webkit-keyframes play{0%{background-position:0}to{background-position:-400px}}@-moz-keyframes play{0%{background-position:0}to{background-position:-400px}}@-ms-keyframes play{0%{background-position:0}to{background-position:-400px}}@-o-keyframes play{0%{background-position:0}to{background-position:-400px}}@keyframes play{0%{background-position:0}to{background-position:-400px}}@media (prefers-reduced-motion:reduce){.fade{transition:none}}svg>g>g:last-child{pointer-events:none}.squirrly-seo-settings #wpwrap>div:not(#wpcontent):not(#adminmenumain):not(#wpfooter){display:none!important}.squirrly-seo-settings #dolly,.squirrly-seo-settings #supsystic-admin-tour,.squirrly-seo-settings #update-nag,.squirrly-seo-settings #wpfooter,.squirrly-seo-settings #wpwrap .notice:not(.sq_notice),.squirrly-seo-settings .aioseo-menu-notification-counter,.squirrly-seo-settings .analytify-review-notice,.squirrly-seo-settings .et-core-modal,.squirrly-seo-settings .imagify-welcome,.squirrly-seo-settings .mainwp-submenu-wrapper,.squirrly-seo-settings .notice-error,.squirrly-seo-settings .notice-warning,.squirrly-seo-settings .notice:not(.sq_notice),.squirrly-seo-settings .poopy_affiliates,.squirrly-seo-settings .screen-meta-toggle,.squirrly-seo-settings .show-settings,.squirrly-seo-settings .thunk-notice,.squirrly-seo-settings .toolbar-header,.squirrly-seo-settings .update-nag,.squirrly-seo-settings .updated,.squirrly-seo-settings .wpforms-menu-notification-counter,.squirrly-seo-settings div.error,.squirrly-seo-settings div.fs-notice.promotion,.squirrly-seo-settings div.fs-notice.success,.squirrly-seo-settings div.fs-notice.updated{display:none!important;position:absolute!important;top:-1000px!important;height:0!important}.wp-adminify #wpwrap #wpbody-content{margin-top:0!important}.wp-adminify #wpwrap #sq_wrap{padding-top:77px}.squirrly-seo-settings #wpbody-content{float:none!important;padding:0!important}.squirrly-seo-settings #wpwrap{background:#f1f1f1}#sq_wrap.sq_overview .sq_offer{width:auto;margin:15px 20px!important}.squirrly-seo-settings #wpcontent{padding:0}.squirrly-seo-settings #wpcontent .bg-light{background-color:#f1f1f1!important}.squirrly-seo-settings #wpcontent .bg-briefcase,.squirrly-seo-settings #wpcontent .bg-briefcase td{background-color:#e1f5e3!important}.squirrly-seo-settings #wpcontent .bg-briefcase:hover td{background-color:#d1e7d4!important}.squirrly-seo-settings #wpcontent .content{min-width:600px;max-width:1020px;margin:auto}.squirrly-seo-settings #wpcontent h3{font-size:1.5rem;font-weight:400;line-height:50px}.squirrly-seo-settings #wpcontent .card{margin-top:20px;max-width:100%}.squirrly-seo-settings #wpcontent .card .card-title{margin:0;color:#4f1440;font-weight:400}.squirrly-seo-settings #wpcontent .sq_deactivated,body.squirrly-seo-settings.mobile.modal-open #wpwrap{position:relative}.squirrly-seo-settings #wpcontent .sq_deactivated:before{content:" ";position:absolute;height:calc(100% + 20px);width:100%;background:#f1f1f1;opacity:.7;top:-10px;z-index:998;cursor:pointer;border-radius:6px}.squirrly-seo-settings #wpcontent .sq_deactivated_label{position:absolute!important;z-index:999;right:0}.sq_knowledge ul li{padding-left:10px!important;padding-right:10px!important}.sq_knowledge ul li a{font-size:.875rem!important}.sq_fixed{position:fixed;z-index:100;top:32px;left:0;margin:0;border-top:2px solid #fff;border-bottom:2px solid #fff}.sq_alert{top:32px!important;font-size:.875rem;z-index:999999;cursor:pointer}.sq_notice{top:28px;text-align:center;width:100%}.sq_notice.sq_notice>div{display:block;margin:0!important;width:100%!important;line-height:40px;background-color:#fafad2}.sq_notice.sq_notice>div.sq_success{background-color:#6200ee!important}.sq_notices{font-size:.875rem;color:#555}.sq_error,.sq_success{text-align:center;font-size:.875rem;font-weight:700}.sq_error{background-color:#bf4733!important;color:#fff!important}.sq_success{background-color:#6200ee!important;line-height:30px;color:#fff}.sq_success a{color:#4f47be;text-decoration:none}.sq_deactivated{opacity:.3}button.hide_advanced,button.show_advanced{color:#2183d6!important}body.squirrly-seo-settings{min-width:640px}#sq_assistant_modal,#sq_previewurl_modal,#sq_wrap{font-family:"Noto Sans","Open Sans",Arial,sans-serif;font-style:normal;font-weight:400;font-size:.875rem;line-height:30px}#sq_wrap a:not(.btn){color:#6200ee}#sq_wrap h3,#sq_wrap h5{font-size:1.5rem;font-weight:600!important}#sq_wrap h4{font-size:1.12rem;font-weight:700!important}#sq_wrap h5{font-size:1.05rem;line-height:30px}#sq_wrap .small{font-size:.83rem;line-height:20px}#sq_wrap .sq_date{font-size:.83rem;line-height:30px}#sq_wrap .row>div.input-group{display:flex!important}#sq_wrap .row{float:none!important;width:auto!important}#sq_wrap .btn{font-weight:700;font-size:.875rem;letter-spacing:.02rem;line-height:30px;border-radius:0;z-index:1}#sq_wrap .btn-sm{font-size:.8rem}#sq_wrap a.btn-success,#sq_wrap button.btn-success{color:#fff;background-color:#6200ee!important;border-color:transparent}#sq_wrap .btn-warning{background-color:#f2ca4c!important;border-color:transparent}#sq_wrap .btn-primary,#sq_wrap .btn-warning:hover{background-color:#e6be4b!important;border-color:transparent}#sq_wrap .btn-primary{background-color:#6200ee!important}#sq_wrap .btn-primary:active,#sq_wrap .btn-primary:focus,#sq_wrap .btn-primary:hover{background-color:#6200ee!important}#sq_wrap .btn-social{background-color:#e4eef3!important;border-color:transparent}#sq_wrap .sq_back_button{top:-100px;right:0;position:absolute}#sq_wrap #sq_audit .sq_back_button{top:-50px}#sq_wrap a.btn:focus{color:#fff}.custom-checkbox .custom-control-input:checked~.custom-control-label::before{background-color:#6200ee!important}#sq_wrap .input-group>button.btn,#sq_wrap .input-group>input,#sq_wrap .input-group>select{max-height:48px;height:48px}#sq_wrap .bg-title{margin:2px;background-color:#f8f9fa!important;color:#1c3c50!important}#sq_wrap .text-primary{color:#6200ee!important}#sq_wrap .text-info{color:#1c3c50!important}#sq_wrap .bg-light{background-color:#f1f1f1!important}#sq_wrap .bg-primary{background-color:#1c3c50!important;color:#fff!important}#sq_wrap .bg-warning{background-color:#f7681a!important;color:#fff!important}#sq_wrap .progress-bar{background-color:#6200ee}#sq_wrap .sq_imageselect{font-size:.875rem}#sq_wrap a.btn-success:active,#sq_wrap a.btn-success:hover,#sq_wrap button.btn-success:active,#sq_wrap button.btn-success:hover{color:#fff;background-color:#6200ee!important;border-color:transparent}#sq_wrap .sq-switch input:checked+label::before{background-color:#6200ee}#sq_wrap table.dataTable{border-collapse:collapse!important}#sq_wrap .dataTables_length{float:left;display:inline-block;margin:11px 15px}#sq_wrap .dataTables_length select{min-width:auto;height:20px;line-height:initial;padding:0 5px}#sq_wrap table.table{box-shadow:0 0 5px -2px #999}#sq_wrap #sq_blockseoissues table.table{box-shadow:none}#sq_wrap .table thead th{white-space:nowrap!important;background:#1c3c50;color:#fff;text-shadow:none}#sq_wrap .table-hover tbody tr:hover{background-color:rgb(252 251 255)!important}#sq_wrap .table-striped tbody tr:nth-of-type(odd){background-color:#fff}#sq_wrap .table-striped tbody tr:nth-of-type(even){background-color:#fbfbfb}#sq_wrap .table tbody td,#sq_wrap select{vertical-align:middle}#sq_wrap .table tbody tr.bg-selected td{background-color:#fbf0e0}#sq_wrap .table tbody tr.bg-selected:hover td{background-color:#f9e9d3}#sq_wrap .text-link{color:#2680b4!important}#sq_wrap .sq_row{position:relative;flex:1 1 auto}#sq_wrap .sq_col_side{flex:0 0 270px}#sq_wrap .sq_col_side .card{border:0!important;box-shadow:none!important}.dropdown-item.active,.dropdown-item:active{background-color:transparent}#sq_wrap h4 .fa:before{margin-right:3px}#sq_wrap select{padding:.7em .75em;line-height:1.5;border-radius:0;font-size:.875rem;height:45px;min-width:200px;max-width:100%;max-height:48px;z-index:1}#sq_wrap select.bg-input{padding:.5em 1em;font-size:1rem;line-height:20px;border:0;background-color:#fff}#sq_wrap select::selection{color:#1d1f24}#sq_wrap input[type=text]:not(.wp-color-picker),#sq_wrap textarea{padding:.28em .75em;border-radius:unset}.sq_icons_content{float:left;background-color:#fffcfc;background-image:linear-gradient(90deg,#e6ecf1,#f8f9fa);margin:-7px;height:100%;min-height:121px;min-width:100px}.sq_icons{float:left;width:40px;height:40px;cursor:pointer}.sq_icons_small{display:block;float:left;margin:0 10px 0 0;height:30px;width:30px}#sq_wrap .page-item.active .page-link{background-color:#bde2f1;border-color:transparent}#sq_preloader{position:absolute;height:100%;width:100%;z-index:1000;background-color:#fff!important;opacity:.5}.sq_loading{height:60px;background:url(../img/loading.gif) no-repeat center!important}.sq_minloading{position:relative;opacity:.5}.sq_minloading:after{position:absolute!important;right:calc(50% - 10px)!important;top:calc(50% - 8px)!important;display:block!important;float:right!important;line-height:30px!important;content:""!important;padding:0!important;margin:0 0 0 5px!important;height:16px!important;width:20px!important;background:url(../img/minloading.png) no-repeat!important;-webkit-animation:play 1s steps(10) infinite;-moz-animation:play 1s steps(10) infinite;-o-animation:play 1s steps(10) infinite;animation:play 1s steps(10) infinite}#sq_wrap .sq_sm_menu{width:24px;position:relative}#sq_wrap .sq_sm_menu .fa-ellipsis-v{font-size:1.2rem!important;color:#6200ee}#sq_wrap .sq_sm_menu .sm_icon_button{display:inline-block;position:relative;width:24px;height:24px;box-sizing:border-box;font-size:1.2rem;color:#545454;text-align:center;cursor:pointer}#sq_wrap .dataTables_wrapper .dataTables_filter{margin-top:-40px}#sq_wrap .dataTables_wrapper{padding:0!important;margin:0!important}#sq_wrap .dataTables_wrapper .col-sm-12{padding:0 10px!important}.bootstrap-select.dropdown button{background-color:#fff;padding:13px;border-radius:0;border:0}#sq_wrap table tr div.sq_sm_menu:hover .sq_sm_dropdown,#sq_wrap table tr:hover .sq_sm_menu{display:block}#sq_wrap .dataTables_paginate .pagination{margin-top:-35px}#sq_wrap .pagination .nav-links a:not(.next),#sq_wrap .pagination li.page-item a.page-link{background:0 0;border:0;padding:.5rem .75rem;margin:0}#sq_wrap .pagination .page-numbers.current,#sq_wrap .pagination li.page-item.active a.page-link{background-color:#6200ee;color:#fff;border:0;padding:8px 12px;margin:0}#sq_wrap .sq_sm_menu .sq_sm_dropdown{display:none;background:#fff;position:absolute;right:20px;top:0;z-index:100;min-width:240px;box-shadow:0 0 10px 1px #999}#sq_wrap .sq_sm_menu .sq_sm_dropdown_center{top:-50px}#sq_wrap .sq_sm_menu .sq_sm_dropdown li a:hover,#sq_wrap .sq_sm_menu .sq_sm_dropdown li:hover{color:#6200ee!important;text-decoration:none!important}#sq_wrap .sq_sm_menu .sq_sm_dropdown li a{color:#575863!important;font-size:.875rem;cursor:pointer}#sq_wrap .sq_sm_menu .sq_icons_small{display:inline-block;margin:0 5px;height:17px;width:17px;vertical-align:middle;line-height:14px;float:none}#sq_wrap .sq_sm_menu .sq_sm_dropdown li,#sq_wrap .sq_sm_menu .sq_sm_dropdown li button{font-size:.875rem;cursor:pointer}#sq_wrap .sq_help_toolbar{position:absolute;right:15px}#sq_wrap #sq_btn_toolbar_close{display:none}#sq_wrap .sq_help_toolbar>i{font-size:1.5rem!important;color:#dfebf5;cursor:pointer}#sq_wrap .sq_help_question i{font-size:1.5rem!important;margin:5px}.fa-book-open:before{content:"\f518"}#sq_wrap .sq_search_close{position:relative;right:20px;margin-left:-10px;top:26%;height:20px;line-height:20px}@media (max-width:900px){#sq_wrap .sq_sticky{top:50px}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9{max-width:100%}#sq_assistant_modal .modal-dialog,#sq_wrap .modal-dialog{margin:7% auto;max-width:700px}#sq_wrap .sq_col_side{flex:0 0 45px}#sq_wrap .sq_col_side .card-title,#sq_wrap .sq_col_side .sq_assistant a,#sq_wrap .sq_col_side .sq_assistant div,#sq_wrap .sq_col_side .sq_assistant li button,#sq_wrap .sq_col_side .sq_assistant li h4,#sq_wrap .sq_col_side .sq_assistant li table,#sq_wrap .sq_col_side .sq_assistant li.sq_save_ajax,#sq_wrap .sq_col_side .sq_assistant li.sq_task div{display:none}#sq_wrap .sq_col_side:hover{width:270px!important;position:fixed;top:33px;right:0;bottom:0;height:100%;overflow-y:auto;z-index:2}#sq_wrap .sq_col_side:hover .card-title,#sq_wrap .sq_col_side:hover .sq_assistant a,#sq_wrap .sq_col_side:hover .sq_assistant div,#sq_wrap .sq_col_side:hover .sq_assistant li button,#sq_wrap .sq_col_side:hover .sq_assistant li h4,#sq_wrap .sq_col_side:hover .sq_assistant li table,#sq_wrap .sq_col_side:hover .sq_assistant li.sq_save_ajax,#sq_wrap .sq_col_side:hover .sq_assistant li.sq_task div{display:block}#sq_wrap .sq_flex.px-5{padding-left:1.3rem!important;padding-right:1.3rem!important}}@media (max-width:780px){#sq_wrap .sq_col_side:hover{top:40px}}.flexcroll{scrollbar-face-color:#367cd2;scrollbar-shadow-color:#fff;scrollbar-highlight-color:#fff;scrollbar-3dlight-color:#fff;scrollbar-darkshadow-color:#fff;scrollbar-track-color:#fff;scrollbar-arrow-color:#fff}.flexcroll::-webkit-scrollbar{width:12px}.flexcroll::-webkit-scrollbar-track{-webkit-border-radius:2px;border-radius:2px}.flexcroll::-webkit-scrollbar-thumb{-webkit-border-radius:2px;border-radius:2px;background:rgba(171,171,171,.8)}.form-group input.form-control,.form-group select.form-control,.form-group textarea.form-control{width:100%}.tooltip .arrow{left:auto!important;margin-left:inherit!important;bottom:inherit!important;z-index:inherit!important}.tooltip .arrow:after{content:""}.sq_features .sq_feature{background-color:#f1f1f1}.sq_features .sq_feature.active{background-color:#fff!important}.sq_features .sq-switch input+label::before{background-color:#c8bfba}.sq_tips ul{list-style:initial}.sq_tips ul li{color:#7a8d8e;line-height:20px}.fade.in{opacity:1}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-backdrop .fade .in,.modal-backdrop.fade{opacity:.5!important}
1
+ @import url(https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap);@-webkit-keyframes play{0%{background-position:0}to{background-position:-400px}}@-moz-keyframes play{0%{background-position:0}to{background-position:-400px}}@-ms-keyframes play{0%{background-position:0}to{background-position:-400px}}@-o-keyframes play{0%{background-position:0}to{background-position:-400px}}@keyframes play{0%{background-position:0}to{background-position:-400px}}html{font-size:initial}@media (prefers-reduced-motion:reduce){.fade{transition:none}}svg>g>g:last-child{pointer-events:none}.squirrly-seo-settings #wpwrap>div:not(#wpcontent):not(#adminmenumain):not(#wpfooter){display:none!important}.squirrly-seo-settings #dolly,.squirrly-seo-settings #supsystic-admin-tour,.squirrly-seo-settings #update-nag,.squirrly-seo-settings #wpfooter,.squirrly-seo-settings #wpwrap .notice:not(.sq_notice),.squirrly-seo-settings .aioseo-menu-notification-counter,.squirrly-seo-settings .analytify-review-notice,.squirrly-seo-settings .et-core-modal,.squirrly-seo-settings .imagify-welcome,.squirrly-seo-settings .mainwp-submenu-wrapper,.squirrly-seo-settings .notice-error,.squirrly-seo-settings .notice-warning,.squirrly-seo-settings .notice:not(.sq_notice),.squirrly-seo-settings .poopy_affiliates,.squirrly-seo-settings .screen-meta-toggle,.squirrly-seo-settings .show-settings,.squirrly-seo-settings .thunk-notice,.squirrly-seo-settings .toolbar-header,.squirrly-seo-settings .update-nag,.squirrly-seo-settings .updated,.squirrly-seo-settings .wpforms-menu-notification-counter,.squirrly-seo-settings div.error,.squirrly-seo-settings div.fs-notice.promotion,.squirrly-seo-settings div.fs-notice.success,.squirrly-seo-settings div.fs-notice.updated{display:none!important;position:absolute!important;top:-1000px!important;height:0!important}.wp-adminify #wpwrap #wpbody-content{margin-top:0!important}.wp-adminify #wpwrap #sq_wrap{padding-top:77px}.squirrly-seo-settings #wpbody-content{float:none!important;padding:0!important}.squirrly-seo-settings #wpwrap{background:#f1f1f1}#sq_wrap.sq_overview .sq_offer{width:auto;margin:15px 20px!important}.squirrly-seo-settings #wpcontent{padding:0}.squirrly-seo-settings #wpcontent .bg-light{background-color:#f1f1f1!important}.squirrly-seo-settings #wpcontent .bg-briefcase,.squirrly-seo-settings #wpcontent .bg-briefcase td{background-color:#e1f5e3!important}.squirrly-seo-settings #wpcontent .bg-briefcase:hover td{background-color:#d1e7d4!important}.squirrly-seo-settings #wpcontent .content{min-width:600px;max-width:1020px;margin:auto}.squirrly-seo-settings #wpcontent h3{font-size:1.5rem;font-weight:400;line-height:50px}.squirrly-seo-settings #wpcontent .card{margin-top:20px;max-width:100%}.squirrly-seo-settings #wpcontent .card .card-title{margin:0;color:#4f1440;font-weight:400}.squirrly-seo-settings #wpcontent .sq_deactivated,body.squirrly-seo-settings.mobile.modal-open #wpwrap{position:relative}.squirrly-seo-settings #wpcontent .sq_deactivated:before{content:" ";position:absolute;height:calc(100% + 20px);width:100%;background:#f1f1f1;opacity:.7;top:-10px;z-index:998;cursor:pointer;border-radius:6px}.squirrly-seo-settings #wpcontent .sq_deactivated_label{position:absolute!important;z-index:999;right:0}.sq_knowledge ul li{padding-left:10px!important;padding-right:10px!important}.sq_knowledge ul li a{font-size:.875rem!important}.sq_fixed{position:fixed;z-index:100;top:32px;left:0;margin:0;border-top:2px solid #fff;border-bottom:2px solid #fff}.sq_alert{top:32px!important;font-size:.875rem;z-index:999999;cursor:pointer}.sq_notice{top:28px;text-align:center;width:100%}.sq_notice.sq_notice>div{display:block;margin:0!important;width:100%!important;line-height:40px;background-color:#fafad2}.sq_notice.sq_notice>div.sq_success{background-color:#6200ee!important}.sq_notices{font-size:.875rem;color:#555}.sq_error,.sq_success{text-align:center;font-size:.875rem;font-weight:700}.sq_error{background-color:#bf4733!important;color:#fff!important}.sq_success{background-color:#6200ee!important;line-height:30px;color:#fff}.sq_success a{color:#4f47be;text-decoration:none}.sq_deactivated{opacity:.3}button.hide_advanced,button.show_advanced{color:#2183d6!important}body.squirrly-seo-settings{min-width:640px}#sq_assistant_modal,#sq_previewurl_modal,#sq_wrap{font-family:"Noto Sans","Open Sans",Arial,sans-serif;font-style:normal;font-weight:400;font-size:.875rem;line-height:30px}#sq_wrap a:not(.btn){color:#6200ee}#sq_wrap h3,#sq_wrap h5{font-size:1.5rem;font-weight:600!important}#sq_wrap h4{font-size:1.12rem;font-weight:700!important}#sq_wrap h5{font-size:1.05rem;line-height:30px}#sq_wrap .small{font-size:.83rem;line-height:20px}#sq_wrap .sq_date{font-size:.83rem;line-height:30px}#sq_wrap .row>div.input-group{display:flex!important}#sq_wrap .row{float:none!important;width:auto!important}#sq_wrap .btn{font-weight:700;font-size:.875rem;letter-spacing:.02rem;line-height:30px;border-radius:0;z-index:1}#sq_wrap .btn-sm{font-size:.8rem}#sq_wrap a.btn-success,#sq_wrap button.btn-success{color:#fff;background-color:#6200ee!important;border-color:transparent}#sq_wrap .btn-warning{background-color:#f2ca4c!important;border-color:transparent}#sq_wrap .btn-primary,#sq_wrap .btn-warning:hover{background-color:#e6be4b!important;border-color:transparent}#sq_wrap .btn-primary{background-color:#6200ee!important}#sq_wrap .btn-primary:active,#sq_wrap .btn-primary:focus,#sq_wrap .btn-primary:hover{background-color:#6200ee!important}#sq_wrap .btn-social{background-color:#e4eef3!important;border-color:transparent}#sq_wrap .sq_back_button{top:-100px;right:0;position:absolute}#sq_wrap #sq_audit .sq_back_button{top:-50px}#sq_wrap a.btn:focus{color:#fff}.custom-checkbox .custom-control-input:checked~.custom-control-label::before{background-color:#6200ee!important}#sq_wrap .input-group>button.btn,#sq_wrap .input-group>input,#sq_wrap .input-group>select{max-height:48px;height:48px}#sq_wrap .bg-title{margin:2px;background-color:#f8f9fa!important;color:#1c3c50!important}#sq_wrap .text-primary{color:#6200ee!important}#sq_wrap .text-info{color:#1c3c50!important}#sq_wrap .bg-light{background-color:#f1f1f1!important}#sq_wrap .bg-primary{background-color:#1c3c50!important;color:#fff!important}#sq_wrap .bg-warning{background-color:#f7681a!important;color:#fff!important}#sq_wrap .progress-bar{background-color:#6200ee}#sq_wrap .sq_imageselect{font-size:.875rem}#sq_wrap a.btn-success:active,#sq_wrap a.btn-success:hover,#sq_wrap button.btn-success:active,#sq_wrap button.btn-success:hover{color:#fff;background-color:#6200ee!important;border-color:transparent}#sq_wrap .sq-switch input:checked+label::before{background-color:#6200ee}#sq_wrap table.dataTable{border-collapse:collapse!important}#sq_wrap .dataTables_length{float:left;display:inline-block;margin:11px 15px}#sq_wrap .dataTables_length select{min-width:auto;height:20px;line-height:initial;padding:0 5px}#sq_wrap table.table{box-shadow:0 0 5px -2px #999}#sq_wrap #sq_blockseoissues table.table{box-shadow:none}#sq_wrap .table thead th{white-space:nowrap!important;background:#1c3c50;color:#fff;text-shadow:none}#sq_wrap .table-hover tbody tr:hover{background-color:rgb(252 251 255)!important}#sq_wrap .table-striped tbody tr:nth-of-type(odd){background-color:#fff}#sq_wrap .table-striped tbody tr:nth-of-type(even){background-color:#fbfbfb}#sq_wrap .table tbody td,#sq_wrap select{vertical-align:middle}#sq_wrap .table tbody tr.bg-selected td{background-color:#fbf0e0}#sq_wrap .table tbody tr.bg-selected:hover td{background-color:#f9e9d3}#sq_wrap .text-link{color:#2680b4!important}#sq_wrap .sq_row{position:relative;flex:1 1 auto}#sq_wrap .sq_col_side{flex:0 0 270px}#sq_wrap .sq_col_side .card{border:0!important;box-shadow:none!important}.dropdown-item.active,.dropdown-item:active{background-color:transparent}#sq_wrap h4 .fa:before{margin-right:3px}#sq_wrap select{padding:.7em .75em;line-height:1.5;border-radius:0;font-size:.875rem;height:45px;min-width:200px;max-width:100%;max-height:48px;z-index:1}#sq_wrap select.bg-input{padding:.5em 1em;font-size:1rem;line-height:20px;border:0;background-color:#fff}#sq_wrap select::selection{color:#1d1f24}#sq_wrap input[type=text]:not(.wp-color-picker),#sq_wrap textarea{padding:.28em .75em;border-radius:unset}.sq_icons_content{float:left;background-color:#fffcfc;background-image:linear-gradient(90deg,#e6ecf1,#f8f9fa);margin:-7px;height:100%;min-height:121px;min-width:100px}.sq_icons{float:left;width:40px;height:40px;cursor:pointer}.sq_icons_small{display:block;float:left;margin:0 10px 0 0;height:30px;width:30px}#sq_wrap .page-item.active .page-link{background-color:#bde2f1;border-color:transparent}#sq_preloader{position:absolute;height:100%;width:100%;z-index:1000;background-color:#fff!important;opacity:.5}.sq_loading{height:60px;background:url(../img/loading.gif) no-repeat center!important}.sq_minloading{position:relative;opacity:.5}.sq_minloading:after{position:absolute!important;right:calc(50% - 10px)!important;top:calc(50% - 8px)!important;display:block!important;float:right!important;line-height:30px!important;content:""!important;padding:0!important;margin:0 0 0 5px!important;height:16px!important;width:20px!important;background:url(../img/minloading.png) no-repeat!important;-webkit-animation:play 1s steps(10) infinite;-moz-animation:play 1s steps(10) infinite;-o-animation:play 1s steps(10) infinite;animation:play 1s steps(10) infinite}#sq_wrap .sq_sm_menu{width:24px;position:relative}#sq_wrap .sq_sm_menu .fa-ellipsis-v{font-size:1.2rem!important;color:#6200ee}#sq_wrap .sq_sm_menu .sm_icon_button{display:inline-block;position:relative;width:24px;height:24px;box-sizing:border-box;font-size:1.2rem;color:#545454;text-align:center;cursor:pointer}#sq_wrap .dataTables_wrapper .dataTables_filter{margin-top:-40px}#sq_wrap .dataTables_wrapper{padding:0!important;margin:0!important}#sq_wrap .dataTables_wrapper .col-sm-12{padding:0 10px!important}.bootstrap-select.dropdown button{background-color:#fff;padding:13px;border-radius:0;border:0}#sq_wrap table tr div.sq_sm_menu:hover .sq_sm_dropdown,#sq_wrap table tr:hover .sq_sm_menu{display:block}#sq_wrap .dataTables_paginate .pagination{margin-top:-35px}#sq_wrap .pagination .nav-links a:not(.next),#sq_wrap .pagination li.page-item a.page-link{background:0 0;border:0;padding:.5rem .75rem;margin:0}#sq_wrap .pagination .page-numbers.current,#sq_wrap .pagination li.page-item.active a.page-link{background-color:#6200ee;color:#fff;border:0;padding:8px 12px;margin:0}#sq_wrap .sq_sm_menu .sq_sm_dropdown{display:none;background:#fff;position:absolute;right:20px;top:0;z-index:100;min-width:240px;box-shadow:0 0 10px 1px #999}#sq_wrap .sq_sm_menu .sq_sm_dropdown_center{top:-50px}#sq_wrap .sq_sm_menu .sq_sm_dropdown li a:hover,#sq_wrap .sq_sm_menu .sq_sm_dropdown li:hover{color:#6200ee!important;text-decoration:none!important}#sq_wrap .sq_sm_menu .sq_sm_dropdown li a{color:#575863!important;font-size:.875rem;cursor:pointer}#sq_wrap .sq_sm_menu .sq_icons_small{display:inline-block;margin:0 5px;height:17px;width:17px;vertical-align:middle;line-height:14px;float:none}#sq_wrap .sq_sm_menu .sq_sm_dropdown li,#sq_wrap .sq_sm_menu .sq_sm_dropdown li button{font-size:.875rem;cursor:pointer}#sq_wrap .sq_help_toolbar{position:absolute;right:15px}#sq_wrap #sq_btn_toolbar_close{display:none}#sq_wrap .sq_help_toolbar>i{font-size:1.5rem!important;color:#dfebf5;cursor:pointer}#sq_wrap .sq_help_question i{font-size:1.5rem!important;margin:5px}.fa-book-open:before{content:"\f518"}#sq_wrap .sq_search_close{position:relative;right:20px;margin-left:-10px;top:26%;height:20px;line-height:20px}@media (max-width:900px){#sq_wrap .sq_sticky{top:50px}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9{max-width:100%}#sq_assistant_modal .modal-dialog,#sq_wrap .modal-dialog{margin:7% auto;max-width:700px}#sq_wrap .sq_col_side{flex:0 0 45px}#sq_wrap .sq_col_side .card-title,#sq_wrap .sq_col_side .sq_assistant a,#sq_wrap .sq_col_side .sq_assistant div,#sq_wrap .sq_col_side .sq_assistant li button,#sq_wrap .sq_col_side .sq_assistant li h4,#sq_wrap .sq_col_side .sq_assistant li table,#sq_wrap .sq_col_side .sq_assistant li.sq_save_ajax,#sq_wrap .sq_col_side .sq_assistant li.sq_task div{display:none}#sq_wrap .sq_col_side:hover{width:270px!important;position:fixed;top:33px;right:0;bottom:0;height:100%;overflow-y:auto;z-index:2}#sq_wrap .sq_col_side:hover .card-title,#sq_wrap .sq_col_side:hover .sq_assistant a,#sq_wrap .sq_col_side:hover .sq_assistant div,#sq_wrap .sq_col_side:hover .sq_assistant li button,#sq_wrap .sq_col_side:hover .sq_assistant li h4,#sq_wrap .sq_col_side:hover .sq_assistant li table,#sq_wrap .sq_col_side:hover .sq_assistant li.sq_save_ajax,#sq_wrap .sq_col_side:hover .sq_assistant li.sq_task div{display:block}#sq_wrap .sq_flex.px-5{padding-left:1.3rem!important;padding-right:1.3rem!important}}@media (max-width:780px){#sq_wrap .sq_col_side:hover{top:40px}}.flexcroll{scrollbar-face-color:#367cd2;scrollbar-shadow-color:#fff;scrollbar-highlight-color:#fff;scrollbar-3dlight-color:#fff;scrollbar-darkshadow-color:#fff;scrollbar-track-color:#fff;scrollbar-arrow-color:#fff}.flexcroll::-webkit-scrollbar{width:12px}.flexcroll::-webkit-scrollbar-track{-webkit-border-radius:2px;border-radius:2px}.flexcroll::-webkit-scrollbar-thumb{-webkit-border-radius:2px;border-radius:2px;background:rgba(171,171,171,.8)}.form-group input.form-control,.form-group select.form-control,.form-group textarea.form-control{width:100%}.tooltip .arrow{left:auto!important;margin-left:inherit!important;bottom:inherit!important;z-index:inherit!important}.tooltip .arrow:after{content:""}.sq_features .sq_feature{background-color:#f1f1f1}.sq_features .sq_feature.active{background-color:#fff!important}.sq_features .sq-switch input+label::before{background-color:#c8bfba}.sq_tips ul{list-style:initial}.sq_tips ul li{color:#7a8d8e;line-height:20px}.fade.in{opacity:1}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-backdrop .fade .in,.modal-backdrop.fade{opacity:.5!important}
view/assets/css/post.min.css CHANGED
@@ -1 +1 @@
1
- @import url(https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap);@-ms-keyframes play{0%{background-position:0}to{background-position:-400px}}@-o-keyframes play{0%{background-position:0}to{background-position:-400px}}@keyframes play{0%{background-position:0}to{background-position:-400px}}.sq_minloading{position:relative;opacity:.5;min-height:30px}.sq_loading{height:60px;background:url(../img/loading.gif) no-repeat center!important}.sq_minloading:before{position:absolute!important;right:calc(50% - 10px)!important;top:calc(50% - 8px)!important;display:block!important;float:right!important;line-height:30px!important;content:""!important;padding:0!important;margin:0 0 0 5px!important;height:20px!important;width:20px!important;background:url(../img/minloading.png) no-repeat!important;-webkit-animation:play 1s steps(10) infinite;-moz-animation:play 1s steps(10) infinite;-o-animation:play 1s steps(10) infinite;animation:play 1s steps(10) infinite}#sq_preloading,.sq_sla_connect_notice{font-size:.875rem;line-height:24px;text-align:center}#sq_preloading{color:gray}.sq_sla_connect_notice{font-weight:600;margin:0 auto 10px}.sq_sla_connect_notice_content{text-align:center;margin:6px auto}#postsquirrly .sq_frontend_noapi a,.sq_sla_connect_notice a{text-decoration:none}#postsquirrly .sq_frontend_noapi_inner img,.sq_sla_connect_notice_content a img{width:277px}body>.components-squirrly-icon{display:none;position:fixed;right:20px;bottom:20px;z-index:10;border:1px solid #999;background-color:#fff;margin:0!important;padding:3px;cursor:pointer}#postsquirrly *,#sq_blocksnippet *{box-sizing:border-box}#postsquirrly .fa-solid,#postsquirrly .fas{font-family:'FontAwesome',serif!important;font-weight:800!important;margin:0 2px;line-height:1}#postsquirrly .fa-brands,#postsquirrly .fab{font-family:'FontAwesomeBrands',serif!important;font-weight:400!important;margin:0 2px}#postsquirrly #sq_types #sq_type_img:before{content:"\f03e"}#postsquirrly #sq_types #sq_type_twitter:before{content:"\f099"}#postsquirrly #sq_types #sq_type_wiki:before{content:"\f266"}#postsquirrly #sq_types #sq_type_blog:before{content:"\f075"}#postsquirrly #sq_types #sq_type_local:before{content:"\f249"}#wpadminbar #postsquirrly ul{z-index:1}#postsquirrly{color:#000}#postsquirrly a:not(.btn,.sq_button){color:#6200ee}#sq_blocksnippet.sq_sticky:not(.closed) .inside{display:block!important}#sq_blocksnippet.sq_sticky.closed .inside{display:none!important}#postsquirrly.sq_sticky{background:0 0;border:0;margin:0;-moz-box-shadow:none;-webkit-box-shadow:none}#postsquirrly:not(.sq_sticky){padding:0;border:1px solid #ddd}#postsquirrly :not(.fa,.fa-solid,.fa-brands),#sq_blog_preview *{font-family:"Noto Sans","Open Sans",Arial,sans-serif;font-size:.875rem;line-height:20px}#postsquirrly.sq_sticky .postbox-header,.edit-post-sidebar #sq_options{display:none}#postsquirrly.sq_sticky.closed .inside,#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_addbriefcase,#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_item_delete,#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_optimize{display:block}#postsquirrly div.inside,#postsquirrly p,#postsquirrly td,#sq_blocksearch ul,#sq_blockseo ul,#sq_options>ul{margin:0;padding:0}#postsquirrly:not(.sq_sticky) .sq_header{display:none}#postsquirrly.sq_sticky .sq_header{color:#a0a0a0;font-size:.875rem;font-weight:400;line-height:20px;position:sticky;top:0;background-color:#fff;z-index:10}#postsquirrly:not(.sq_sticky) .sq_block_tab{padding:.5em .2em!important;font-size:90%}#postsquirrly.sq_sticky .sq_header .sq_logo{width:30px!important;height:30px!important}#postsquirrly .sq_box{background-color:#fff;margin:0;padding:0;width:100%;height:100%}#normal-sortables #postsquirrly .sq_box{max-width:350px;margin:auto}#postsquirrly.sq_sticky{position:fixed!important;z-index:9000!important;left:calc(100% - 355px);bottom:0;top:auto;height:136px;width:350px!important;padding:0!important;background:#fff!important;overflow-x:auto!important;box-shadow:0 0 5px -3px #555!important}#postsquirrly.sq_sticky::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#f5f5f5}#postsquirrly.sq_sticky::-webkit-scrollbar{width:7px;background-color:#f5f5f5}#postsquirrly.sq_sticky::-webkit-scrollbar-thumb{background-color:#bdafba;border:0}#postsquirrly.sq_sticky .hndle,#postsquirrly.sq_sticky.minimized #sq_briefcase_list,#postsquirrly.sq_sticky.minimized #sq_briefcase_topcontent{display:none!important}#postsquirrly.sq_sticky .handlediv,#postsquirrly:not(.sq_sticky) .hndle{padding:0 16px!important;font-size:13px!important}#postsquirrly.sq_sticky .sq_header{cursor:move}#postsquirrly .sq_box_close,#postsquirrly .sq_box_maximize,#postsquirrly .sq_box_minimize{display:block;float:right;margin:0;cursor:pointer;font-weight:300;font-size:.8rem;color:gray;padding:5px 10px 0 0;height:22px}#postsquirrly .sq_box_close{font-size:1.3rem;padding:3px 5px 0 0}#postsquirrly.sq_sticky.minimized{height:95px!important;overflow:hidden!important}#postsquirrly .inside{position:relative;height:100%}#postsquirrly .sq_box.sq_sticky{position:fixed;top:32px;z-index:99999;height:100%;max-width:291px;overflow-x:auto}#postsquirrly.sq_sticky .sq_box.sq_sticky{position:absolute;top:0;bottom:0;height:100%;margin:0}#postsquirrly .sq_box.sq_sticky>div{margin-bottom:25px}#postsquirrly .sq_box:hover:before{opacity:.8}#postsquirrly .sq_box:hover .sq_header{color:#444}#sq_blocklogin{background-color:#ffffe0}#sq_blocklogin input,#sq_blocklogin textarea{font-size:.875rem;height:30px;padding:6px}#postsquirrly .sq_button{display:block;text-decoration:none;line-height:30px;text-align:center;background-color:#6200ee!important;font-size:1.12rem;font-weight:700;color:#fff;margin:0;padding:0 15px;border:0;border-radius:0;cursor:pointer;vertical-align:top}#sq_blocklogin #sq_autologin #sq_loginimage,#sq_blocklogin #sq_login{background-color:#6200ee;color:#fff;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;cursor:pointer}#sq_blocklogin #sq_login{border:0;min-width:100px;min-height:35px}#sq_blocklogin label{margin-top:0;margin-right:2px;width:72px;display:inline-block}#sq_blocklogin ul li{position:relative;padding:4px 0 4px 5px;margin:5px 0;line-height:16px;text-shadow:1px 1px #fff}#sq_blocklogin .sq_error,#sq_blocklogin .sq_info,#sq_blocklogin ul li{font-size:.875rem;text-align:center}#sq_blocklogin .sq_error{color:red;margin:5px auto}#sq_blocklogin #sq_register{margin:5px 0;font-size:.875rem;font-weight:700}#sq_blocklogin #sq_register_wait{display:inline-block;margin-left:2px}#sq_blocklogin #sq_autologin{padding:20px 10px 5px}#sq_blocklogin #sq_autologin #sq_loginimage{display:block;height:auto;width:100px;font-size:.875rem;font-weight:700;margin:13px;padding:10px 0;text-decoration:none}#sq_blocklogin #sq_register_email{text-align:center;width:250px;height:45px;margin:14px auto 11px}#sq_blocklogin #sq_register_email #sq_email{width:160px!important;border:2px solid #6200ee}#sq_blocklogin #sq_signin{color:#6200ee;margin:5px;cursor:pointer}#sq_options{float:right;position:relative;height:40px;margin:0;padding:0;z-index:13}#side-sortables #sq_options{z-index:1003}#postsquirrly #sq_options{float:none;background:0 0;border:0;box-shadow:none}#normal-sortables #postsquirrly #sq_options{display:flex;width:280px;margin:10px auto}#postsquirrly.sq_frontend .sq_frontend_noapi{font-size:1.1rem;line-height:24px;font-weight:600;margin:0 auto 10px;text-align:center}#postsquirrly .sq_frontend_noapi_inner{text-align:center;margin:6px auto}.sq_block_tab{cursor:pointer}#sq_blocksearch #sq_types ul li.sq_active,.sq_block_tab.sq_active{color:#fff!important;background-color:#6200ee!important}.sq_box #sq_keyword{border:0!important;background:#f8f9fa!important;box-shadow:none!important}#sq_briefcase #sq_briefcase_bottom{background-color:#f1f1f1;height:20px;margin:2px -1px 0;border-top:1px solid #ddd}#sq_briefcase #sq_briefcase_list #sq_briefcase_keyword_check{display:inline-block;line-height:26px;width:26px;height:28px;background-color:#6200ee;font-size:1.1rem;font-weight:700;color:#fff;margin:0;padding:0;border:1px solid #fff;cursor:pointer}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_used{margin:0 0 7px;padding:0}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_circles{margin:0;padding:5px 0;width:100%;height:auto;clear:both;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_notused{clear:both;padding:0;margin:0}#sq_briefcase #sq_briefcase_content.sq_error{margin:15px 0!important}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item{float:none;position:relative;color:#4f1440;padding:0;text-align:left;margin:0 0 0 1px;line-height:20px}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_item_percent{white-space:nowrap;display:inline-block;padding:5px 2px 0;text-align:right;font-weight:700;font-size:.875rem;cursor:pointer}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item_used .sq_briefcase_value{width:80%;cursor:pointer}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_value{width:80%;max-width:275px;display:inline-block;padding:5px;white-space:nowrap;text-overflow:ellipsis;overflow-x:hidden;vertical-align:top}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_notused li.sq_briefcase_item{padding:5px}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_notused li.sq_briefcase_item .sq_briefcase_value{padding:0;display:block;clear:left}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_addbriefcase{position:absolute;color:#6200ee;right:5px;top:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_optimize{position:absolute;color:#6200ee;right:5px;bottom:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover{background-color:#fbfbfb}#sq_briefcase #sq_briefcase_content .sq_briefcase_empty{font-weight:700;text-align:center;padding:5px;margin:0}#sq_briefcase #sq_briefcase_content .sq_briefcase_item_notused .sq_briefcase_empty{color:#a7a6a7}#sq_briefcase .sq_briefcase_item .sq_briefcase_item_circle{display:block;float:left;width:13px;height:3px;margin:0 2px 0 0}#sq_briefcase .sq_briefcase_item_circles .sq_briefcase_circle{display:block;font-family:'FontAwesome',Arial,sans-serif!important;float:left;width:44px;height:10px;margin:5px 3px 0 0;cursor:pointer}#sq_briefcase .sq_briefcase_item_circles .sq_briefcase_circle:before{content:" ";display:block;height:100%;width:100%;margin:-2px 0 2px}#sq_briefcase .sq_briefcase_item_circles .sq_briefcase_circle.sq_active:before{display:block;text-align:center;margin:-2px 0 2px;content:"\f00c";color:#fff;text-shadow:1px 0 #555}#sq_briefcase ul li.sq_main_keyword{background-color:#f9f5fd}#sq_briefcase ul li.sq_main_keyword:after{content:"\f005";font-family:'FontAwesome',Arial,sans-serif!important;font-size:.875rem;position:absolute;margin:5px 0;right:18px}#sq_briefcase #sq_briefcase_content li .sq_briefcase_item_delete{display:none;float:right;font-size:13px;font-weight:700;color:#999;line-height:15px;width:15px;text-align:center;padding:5px 4px 2px;border:0;cursor:pointer;z-index:2}#sq_blockseo .sq_tasks{padding:2px 0}#sq_blockseo .sq_auto_sticky input,#sq_blockseo .sq_tasks .sq_help,#sq_blockseo .sq_tasks ul li #sq_density_high,#sq_blockseo .sq_tasks ul li #sq_density_low,#sq_blockseo .sq_tasks ul li #sq_density_title_high,#sq_blockseo .sq_tasks ul li #sq_density_title_longtail,#sq_blockseo .sq_tasks ul li #sq_density_title_low,#sq_blockseo .sq_tasks ul li #sq_over_density_high,#sq_blockseo .sq_tasks ul li #sq_over_density_low{display:none}#sq_blockseo .sq_tasks ul{padding:10px 0}#sq_blockseo .sq_tasks ul li{position:relative;display:block;color:#000;background-color:#fff;font-weight:400;line-height:25px;padding:5px 40px 5px 5px;margin:5px;border:1px solid #e9e9e9;float:none}#sq_blockseo .sq_tasks ul li.sq_tasks_category{color:#999;background-color:transparent;padding:0;margin:5px;border:0!important;box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important}#sq_blockseo .sq_tasks .sq_fp_title_task{color:#6200ee}#sq_blockseo .sq_tasks ul li.checked .sq_fp_title_task{color:#fff}#sq_blockseo .sq_tasks ul li.checked{background-color:#4caf50;color:#fff;text-shadow:1px 1px #777}#sq_blockseo .sq_tasks ul li .sq_seo_priority{display:none;position:absolute;height:25px;width:30px;right:23px;top:4px}#sq_blockseo .sq_tasks ul li .sq_seo_locked{display:block;position:absolute;height:20px;width:20px;right:23px;top:4px;cursor:pointer}#sq_blockseo .sq_auto_sticky label span,#sq_blockseo .sq_tasks ul li .sq_seo_priority_essential{cursor:pointer}#sq_blockseo .sq_tasks ul li .arrow:after{content:none;background-color:transparent}#sq_blockseo .sq_tasks ul li .arrow{display:block;position:absolute;right:5px;top:6px;bottom:auto;left:auto;height:16px;width:16px;overflow:visible;z-index:1;cursor:pointer}#sq_blockseo .sq_tasks ul li.checked .arrow{background-position:-121px -76px}#sq_blockseo .sq_tasks ul li .arrow:hover{background-position:-146px -76px;z-index:2}#sq_blockseo .sq_tasks ul li .arrow:hover .sq_help{display:table;position:absolute;background:#fff;font-weight:400;color:#333;right:-7px;top:22px;height:50px;width:300px;padding:10px 5px!important;overflow:hidden;z-index:5;border:1px solid #ccc;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;text-shadow:none}#sq_blockseo .sq_tasks ul li.sq_density_high,#sq_blockseo .sq_tasks ul li.sq_density_title_high,#sq_blockseo .sq_tasks ul li.sq_over_density_high{background-color:red!important;color:#fff!important}#sq_blockseo .sq_tasks ul li.sq_locked{color:#d3d3d3;background-color:#f8f8f8}#sq_blockseo .sq_error{padding:15px}body ul.sq_notification{position:fixed;background-color:#4caf50;text-align:center;width:100%;height:auto;top:28px;padding:0;margin:0;list-style:none!important;box-shadow:0 4px 4px -3px #333;-moz-box-shadow:0 4px 4px -3px #333;-webkit-box-shadow:0 4px 4px -3px #333;z-index:100001}body ul.sq_notification_front{z-index:100002}body ul.sq_density_high,body ul.sq_density_low,body ul.sq_density_title_high,body ul.sq_density_title_low{background-color:red!important}body ul.sq_density_high li,body ul.sq_density_low li,body ul.sq_density_title_high li,body ul.sq_density_title_low li{color:#fff!important}body ul.sq_notification li{position:relative;font-weight:400;color:#fff;text-shadow:1px 1px #777;line-height:16px;width:100%;margin:0 auto;padding:10px 0}body ul.sq_notification li .arrow{position:absolute;top:8px;left:-33px;width:25px;height:25px;float:left;margin:0 10px 0 0}body ul.sq_notification li .arrow::before{content:"";display:none}body ul.sq_notification li .arrow::after{background-color:transparent!important}body ul.sq_complete,body ul.sq_complete li,body ul.sq_notification li{list-style:none!important;height:auto;text-align:center}body ul.sq_complete{position:fixed;background-color:#4caf50;width:100%;top:28px;padding:0;margin:0;box-shadow:0 4px 4px -3px #333;-moz-box-shadow:0 4px 4px -3px #333;-webkit-box-shadow:0 4px 4px -3px #333;z-index:100000003}body ul.sq_complete li{position:relative;font-weight:400;color:#fff;text-shadow:1px 1px #777;line-height:16px;margin:0 auto;padding:15px 0}#sq_blocksearch #sq_types{width:100%;height:auto;padding:5px 0;margin:0}#sq_blocksearch #sq_types ul{margin:0;padding:0;list-style:none}#sq_blocksearch #sq_types ul li{line-height:25px;padding:8px;margin:0 12px;cursor:pointer;font-size:1.5rem}#postsquirrly:not(.sq_sticky) #sq_blocksearch #sq_types ul li{margin:0 6px}#postsquirrly:not(.sq_sticky) .sq_help,#postsquirrly:not(.sq_sticky) .sq_type_help{padding:0!important}#sq_blocksearch .sq_search{overflow:hidden;padding:0!important;margin:0!important;width:100%!important;height:auto;clear:both}#sq_blocksearch .sq_search .sq_search_notrelevant{text-align:center;text-decoration:none;color:#1c3c50;width:100%;display:block;margin:0;padding:5px;line-height:30px}#sq_blocksearch .sq_search #sq_search_second{text-align:center}#sq_blocksearch .sq_search #sq_keyword_second{display:inline-block;margin:13px 0;width:80%;line-height:26px;padding:6px;font-weight:400;color:#32373c;border-radius:0}#sq_blocksearch .sq_search #sq_keyword_second_check{display:inline-block;line-height:26px;width:18%;height:39px;background-color:#6200ee!important;font-weight:700;color:#fff;margin:0;padding:0;cursor:pointer}#sq_blocksearch .sq_search ul{padding:0;margin:0 auto;list-style:none;clear:both;max-width:335px}#sq_blocksearch .sq_search ul li.sq_search_li{display:block;width:95%;font-weight:400;padding:5px;margin:7px auto;background-color:#fff;border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:1px}#sq_blocksearch .sq_search .sq_attribution{clear:both;margin:0;padding:0}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul>li{-ms-flex:0 0 auto;flex:0 0 auto;flex-grow:1;max-width:100%;text-align:center;padding:10px;color:#fff;background-color:#6200ee!important;border-color:transparent;cursor:pointer}#sq_blocksearch .sq_search ul .sq_info{clear:both;color:#bcc4c8;padding:3px 0 0;float:right}#sq_blocksearch .sq_search .sq_info ul li{float:left;font-size:.7rem;margin-right:5px;padding-right:5px;border-right:1px solid #ccc}#sq_blocksearch .sq_search .sq_info ul li:last-child{border-right-width:0!important}#sq_blocksearch .sq_search ul li.sq_search_img_li{position:relative;float:left;background-color:#fff;width:100px;height:70px;padding:2px;margin:0 3px 6px 7px;border:1px solid #bbb;box-shadow:0 0 2px #ccc;-moz-box-shadow:0 0 2px #ccc;-webkit-box-shadow:0 0 2px #ccc;transition-property:border-color;transition-duration:.33s;-moz-transition-property:border-color;-moz-transition-duration:.33s;-webkit-transition-property:border-color;-webkit-transition-duration:.33s;cursor:pointer}#sq_blocksearch .sq_search ul li.sq_search_img_li:hover{border-color:#333}#sq_blocksearch .sq_search ul li.sq_search_img_li>img{clip:rect(0,100px,70px,0);position:absolute;top:-3px;left:-3px;max-height:110px;max-width:140px;min-width:100px}#postsquirrly.sq_sticky .sq_search ul li.sq_search_img_li{margin:0 3px 6px 7px}#postsquirrly:not(.sq_sticky) #sq_blocksearch .sq_search ul li.sq_search_img_li{width:126px}#postsquirrly:not(.sq_sticky) #sq_blocksearch .sq_search ul li.sq_search_img_li>img{clip:rect(0,126px,70px,0);max-width:150px;max-height:150px;min-width:126px}#postsquirrly:not(.sq_sticky) #sq_nokeyword{display:none!important}#sq_blocksearch #sq_search_img_filter{width:100%;background-color:#fff;text-align:center;padding:10px 0;border-top:1px solid #e8e8e8}#sq_blocksearch #sq_search_img_filter #sq_search_img_nolicence{margin:0 5px}#sq_blocksearch #sq_search_img_filter label#sq_search_img_nolicence_label{position:relative;color:#1d1f24;text-shadow:1px 1px #fff}#sq_blocksearch #sq_search_img_filter label.checked span{background-color:#6200ee}.sq_zoomImg_img{width:auto;height:54px}.sq_zoomImg{position:absolute;visibility:visible}.sq_zoomImg_Inner{background-color:#fff;border:1px solid #d9d9d9;-moz-box-shadow:0 4px 16px rgba(0,0,0,.2);-webkit-box-shadow:0 4px 16px rgba(0,0,0,.2);box-shadow:0 4px 16px rgba(0,0,0,.2);color:#555;padding:5px;position:relative}.sq_zoomImg_frame img{border:1px solid #d9d9d9;display:block;margin:auto;max-width:115px;max-height:115px}#sq_blocksearch .sq_search li.sq_search_img_li .sq_attribute{position:absolute;bottom:-3px;right:-3px;background:#fff;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;z-index:1;padding:0 5px}#sq_blocksearch .sq_search ul li.search_category{clear:both;color:#464646;width:100%;height:16px;border:0}#sq_blocksearch .sq_search ul li.sq_search_twitter_li a{float:left;padding:0 5px;margin:0;height:auto}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_author_avatar{float:left;width:36px;height:36px;margin:3px 10px 0 0}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_content{margin-left:46px}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_author{color:#555;line-height:15px}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_author_name{line-height:19px;margin-right:5px;color:#555;font-weight:400;text-align:left}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_text{margin-left:0}#sq_blocksearch .sq_search ul li.sq_search_blog_li .sq_news_title{font-weight:700;color:#333;line-height:19px;margin:0 0 5px}#sq_blocksearch .sq_search ul li.sq_search_blog_li .sq_news_text{color:#333;line-height:19px;text-align:left}#sq_blocksearch .sq_show_mgs{clear:both;display:block;padding:10px;margin-top:10px;border-top:1px dashed #d1d1d1;text-align:center}#sq_blocksearch .sq_more{clear:both;position:relative;width:100%;text-align:center;padding:0;margin:0 0 5px}#sq_blocksearch .sq_more span{display:block;width:0;height:0;border-left:12px solid transparent;border-right:12px solid transparent;border-top:10px solid #6200ee;padding:0;margin:0 auto;cursor:pointer}#sq_suggestion .sq_show_mgs{margin:20px auto 0;border-top:none;text-align:center}#sq_blog_preview{position:fixed!important;border:1px solid #e5e5e5;padding:0;margin-bottom:15px;left:15%;top:10%;width:70%;height:80%;overflow:auto;background-color:#fff;z-index:999999}#sq_blog_preview_overlay{display:block;position:absolute;background-color:#999;border:0;content:" ";left:0;top:0;width:100%;height:100%;border-radius:2px 2px 0 0;opacity:.3;z-index:999998}#sq_blog_preview #sq_blog_preview_partner{position:absolute;top:15px;right:20px}#sq_blog_preview #sq_blog_preview_partner a{background-color:#333;text-decoration:none;color:#fff;font-size:.875rem;font-weight:700;margin-left:5px;padding:0 3px;border:1px solid #333}#sq_blog_preview #sq_blog_preview_title{display:block;font-size:1.2rem;font-weight:400;line-height:30px;color:#333;border-bottom:1px dashed #d1d1d1;margin:0 0 10px;padding:10px 0 10px 10px}#sq_blog_preview #sq_blog_preview_body{display:block;font-size:.875rem;color:#333;line-height:16px;text-align:left;padding:0 0 0 10px;overflow-y:auto;overflow-x:hidden}#sq_blog_preview #sq_blog_preview_body p{position:relative;background-color:transparent;line-height:24px;padding:0;margin:0 0 16px;text-align:left;white-space:normal;color:#333}#sq_blog_preview #sq_blog_preview_body .sq_mark{background-color:#ffed5f;color:#000;padding:0 3px;font-size:.875rem;line-height:20px;box-shadow:0 0 5px #fff6ac;-moz-box-shadow:0 0 5px #fff6ac;-webkit-box-shadow:0 0 5px #fff6ac}#sq_blog_preview #sq_blog_preview_body .sq_blog_option{position:absolute;display:none;background-color:#f5f5f5;bottom:0;right:5px;cursor:pointer;z-index:1}#sq_blog_preview #sq_blog_preview_body p:hover{background-color:#f5f5f5}#sq_blog_preview #sq_blog_preview_body p:hover .sq_blog_option{display:block;-webkit-animation:fadeIn .3s;-moz-animation:fadeIn .3s;animation:fadeIn .3s}#sq_blocksearch{position:relative}#sq_blocksearch .sq_search ul li.sq_search_wiki_li .sq_wiki_title{font-weight:700;color:#333;margin:5px 0}#sq_blocksearch .sq_search ul li.sq_search_local_li .sq_local_title{font-weight:700;color:#333;line-height:18px;margin:0 0 5px}#sq_blocksearch .sq_research_div{display:none;clear:both;position:relative;width:100%!important;line-height:40px;padding:0;margin:0!important;text-align:center}#sq_blocksearch .sq_research_div #sq_research_link{font-weight:700;color:#21759b;margin-top:10px;text-align:center;cursor:pointer;text-decoration:none}#sq_blog_preview #sq_blog_preview_close{position:absolute;font-weight:700;color:#999;width:10px;line-height:16px;text-align:center;padding:0 4px 2px;border-radius:10px;cursor:pointer;z-index:2;top:20px;right:20px;font-size:20px}#sq_blockseo #sq_seo_refresh{text-align:center;height:29px!important;min-height:29px!important;cursor:pointer;position:relative}#sq_blockseo progress::-webkit-progress-bar{background-color:#ccc;height:5px}#sq_blockseo progress::-webkit-progress-value{background-color:#6200ee;height:5px}#sq_blockseo progress{background-color:#6200ee;height:5px;line-height:5px}#wpb_visual_composer mark.mark_counter,.edit-post-visual-editor mark.mark_counter,.elementor-editor-active #content .elementor-container mark.mark_counter,.elementor-editor-active #content .elementor-inner mark.mark_counter{background:#fdffc7!important;color:#383838!important;padding:0 5px}#wpb_visual_composer mark.mark_counter:after,.edit-post-visual-editor mark.mark_counter:after,.elementor-editor-active #content .elementor-container mark.mark_counter:after,.elementor-editor-active #content .elementor-inner mark.mark_counter:after{content:attr(data-cnt)!important;color:gray;font-size:70%;line-height:50%;vertical-align:baseline;position:relative;top:-9px}#elementor-container .sq_highlight .sq_highlight_cnt,.elementor-editor-active #content .elementor-container mark.mark_counter,.elementor-editor-active #content .elementor-inner mark.mark_counter{display:initial!important}#postsquirrly.sq_frontend #sq_options{display:none}#postsquirrly.sq_frontend ul,#postsquirrly.sq_frontend ul li{list-style:none!important}
1
+ @import url(https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap);@-ms-keyframes play{0%{background-position:0}to{background-position:-400px}}@-o-keyframes play{0%{background-position:0}to{background-position:-400px}}@keyframes play{0%{background-position:0}to{background-position:-400px}}.sq_minloading{position:relative;opacity:.5;min-height:30px}.sq_loading{height:60px;background:url(../img/loading.gif) no-repeat center!important}.sq_minloading:before{position:absolute!important;right:calc(50% - 10px)!important;top:calc(50% - 8px)!important;display:block!important;float:right!important;line-height:30px!important;content:""!important;padding:0!important;margin:0 0 0 5px!important;height:20px!important;width:20px!important;background:url(../img/minloading.png) no-repeat!important;-webkit-animation:play 1s steps(10) infinite;-moz-animation:play 1s steps(10) infinite;-o-animation:play 1s steps(10) infinite;animation:play 1s steps(10) infinite}#sq_preloading,.sq_sla_connect_notice{font-size:.875rem;line-height:24px;text-align:center}#sq_preloading{color:gray}.sq_sla_connect_notice{font-weight:600;margin:0 auto 10px}.sq_sla_connect_notice_content{text-align:center;margin:6px auto}#postsquirrly .sq_frontend_noapi a,.sq_sla_connect_notice a{text-decoration:none}#postsquirrly .sq_frontend_noapi_inner img,.sq_sla_connect_notice_content a img{width:277px}.components-squirrly-icon{display:none;position:fixed;right:20px;bottom:20px;border:1px solid #999;background-color:#fff;margin:0;padding:5px;cursor:pointer;z-index:1001}.components-squirrly-icon .sq_logo{width:25px!important;height:25px!important}#postsquirrly *,#sq_blocksnippet *{box-sizing:border-box}#postsquirrly .fa-solid,#postsquirrly .fas{font-family:'FontAwesome',serif!important;font-weight:800!important;margin:0 2px;line-height:1}#postsquirrly .fa-brands,#postsquirrly .fab{font-family:'FontAwesomeBrands',serif!important;font-weight:400!important;margin:0 2px}#postsquirrly #sq_types #sq_type_img:before{content:"\f03e"}#postsquirrly #sq_types #sq_type_twitter:before{content:"\f099"}#postsquirrly #sq_types #sq_type_wiki:before{content:"\f266"}#postsquirrly #sq_types #sq_type_blog:before{content:"\f075"}#postsquirrly #sq_types #sq_type_local:before{content:"\f249"}#wpadminbar #postsquirrly ul{z-index:1}#postsquirrly{color:#000}#postsquirrly a:not(.btn,.sq_button){color:#6200ee}#sq_blocksnippet.sq_sticky:not(.closed) .inside{display:block!important}#sq_blocksnippet.sq_sticky.closed .inside{display:none!important}#postsquirrly.sq_sticky{background:0 0;border:0;margin:0;-moz-box-shadow:none;-webkit-box-shadow:none}#postsquirrly:not(.sq_sticky){padding:0;border:1px solid #ddd}#postsquirrly :not(.fa,.fa-solid,.fa-brands),#sq_blog_preview *{font-family:"Noto Sans","Open Sans",Arial,sans-serif;font-size:.875rem;line-height:20px}#postsquirrly.sq_sticky .postbox-header,.edit-post-sidebar #sq_options{display:none}#postsquirrly.sq_sticky.closed .inside,#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_addbriefcase,#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_item_delete,#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_optimize{display:block}#postsquirrly div.inside,#postsquirrly p,#postsquirrly td,#sq_blocksearch ul,#sq_blockseo ul,#sq_options>ul{margin:0;padding:0}#postsquirrly:not(.sq_sticky) .sq_header{display:none}#postsquirrly.sq_sticky .sq_header{color:#a0a0a0;font-size:.875rem;font-weight:400;line-height:20px;position:sticky;top:0;background-color:#fff;z-index:10}#postsquirrly:not(.sq_sticky) .sq_block_tab{padding:.5em .2em!important;font-size:90%}#postsquirrly.sq_sticky .sq_header .sq_logo{width:30px!important;height:30px!important}#postsquirrly .sq_box{background-color:#fff;margin:0;padding:0;width:100%;height:100%}#normal-sortables #postsquirrly .sq_box{max-width:350px;margin:auto}#postsquirrly.sq_sticky{position:fixed!important;z-index:9990!important;left:calc(100% - 355px);bottom:0;top:auto;height:95px;width:350px!important;padding:0!important;background:#fff!important;overflow-x:auto!important;box-shadow:0 0 5px -3px #555!important}#postsquirrly.sq_sticky::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#f5f5f5}#postsquirrly.sq_sticky::-webkit-scrollbar{width:7px;background-color:#f5f5f5}#postsquirrly.sq_sticky::-webkit-scrollbar-thumb{background-color:#bdafba;border:0}#postsquirrly.sq_sticky .hndle,#postsquirrly.sq_sticky.minimized #sq_briefcase_list,#postsquirrly.sq_sticky.minimized #sq_briefcase_topcontent{display:none!important}#postsquirrly.sq_sticky .handlediv,#postsquirrly:not(.sq_sticky) .hndle{padding:0 16px!important;font-size:13px!important}#postsquirrly.sq_sticky .sq_header{cursor:move}#postsquirrly .sq_box_close,#postsquirrly .sq_box_maximize,#postsquirrly .sq_box_minimize{display:block;float:right;margin:0;cursor:pointer;font-weight:300;font-size:.8rem;color:gray;padding:5px 10px 0 0;height:22px}#postsquirrly .sq_box_close{font-size:1.3rem;padding:3px 5px 0 0}#postsquirrly.sq_sticky.minimized{height:95px!important;overflow:hidden!important}#postsquirrly .inside{position:relative;height:100%}#postsquirrly .sq_box.sq_sticky{position:fixed;top:32px;z-index:99999;height:100%;max-width:291px;overflow-x:auto}#postsquirrly.sq_sticky .sq_box.sq_sticky{position:absolute;top:0;bottom:0;height:100%;margin:0}#postsquirrly .sq_box.sq_sticky>div{margin-bottom:25px}#postsquirrly .sq_box:hover:before{opacity:.8}#postsquirrly .sq_box:hover .sq_header{color:#444}#sq_blocklogin{background-color:#ffffe0}#sq_blocklogin input,#sq_blocklogin textarea{font-size:.875rem;height:30px;padding:6px}#postsquirrly .sq_button{display:block;text-decoration:none;line-height:30px;text-align:center;background-color:#6200ee!important;font-size:1.12rem;font-weight:700;color:#fff;margin:0;padding:0 15px;border:0;border-radius:0;cursor:pointer;vertical-align:top}#sq_blocklogin #sq_autologin #sq_loginimage,#sq_blocklogin #sq_login{background-color:#6200ee;color:#fff;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;cursor:pointer}#sq_blocklogin #sq_login{border:0;min-width:100px;min-height:35px}#sq_blocklogin label{margin-top:0;margin-right:2px;width:72px;display:inline-block}#sq_blocklogin ul li{position:relative;padding:4px 0 4px 5px;margin:5px 0;line-height:16px;text-shadow:1px 1px #fff}#sq_blocklogin .sq_error,#sq_blocklogin .sq_info,#sq_blocklogin ul li{font-size:.875rem;text-align:center}#sq_blocklogin .sq_error{color:red;margin:5px auto}#sq_blocklogin #sq_register{margin:5px 0;font-size:.875rem;font-weight:700}#sq_blocklogin #sq_register_wait{display:inline-block;margin-left:2px}#sq_blocklogin #sq_autologin{padding:20px 10px 5px}#sq_blocklogin #sq_autologin #sq_loginimage{display:block;height:auto;width:100px;font-size:.875rem;font-weight:700;margin:13px;padding:10px 0;text-decoration:none}#sq_blocklogin #sq_register_email{text-align:center;width:250px;height:45px;margin:14px auto 11px}#sq_blocklogin #sq_register_email #sq_email{width:160px!important;border:2px solid #6200ee}#sq_blocklogin #sq_signin{color:#6200ee;margin:5px;cursor:pointer}#sq_options{float:right;position:relative;height:40px;margin:0;padding:0;z-index:13}#side-sortables #sq_options{z-index:1003}#postsquirrly #sq_options{float:none;background:0 0;border:0;box-shadow:none}#normal-sortables #postsquirrly #sq_options{display:flex;width:280px;margin:10px auto}#postsquirrly.sq_frontend .sq_frontend_noapi{font-size:1.1rem;line-height:24px;font-weight:600;margin:0 auto 10px;text-align:center}#postsquirrly .sq_frontend_noapi_inner{text-align:center;margin:6px auto}.sq_block_tab{cursor:pointer}#sq_blocksearch #sq_types ul li.sq_active,.sq_block_tab.sq_active{color:#fff!important;background-color:#6200ee!important}.sq_box #sq_keyword{border:0!important;background:#f8f9fa!important;box-shadow:none!important}#sq_briefcase #sq_briefcase_bottom{background-color:#f1f1f1;height:20px;margin:2px -1px 0;border-top:1px solid #ddd}#sq_briefcase #sq_briefcase_list #sq_briefcase_keyword_check{display:inline-block;line-height:26px;width:26px;height:28px;background-color:#6200ee;font-size:1.1rem;font-weight:700;color:#fff;margin:0;padding:0;border:1px solid #fff;cursor:pointer}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_used{margin:0 0 7px;padding:0}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_circles{margin:0;padding:5px 0;width:100%;height:auto;clear:both;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_notused{clear:both;padding:0;margin:0}#sq_briefcase #sq_briefcase_content.sq_error{margin:15px 0!important}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item{float:none;position:relative;color:#4f1440;padding:0;text-align:left;margin:0 0 0 1px;line-height:20px}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_item_percent{white-space:nowrap;display:inline-block;padding:5px 2px 0;text-align:right;font-weight:700;font-size:.875rem;cursor:pointer}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item_used .sq_briefcase_value{width:80%;cursor:pointer}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_value{width:80%;max-width:275px;display:inline-block;padding:5px;white-space:nowrap;text-overflow:ellipsis;overflow-x:hidden;vertical-align:top;line-height:25px}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_notused li.sq_briefcase_item{padding:5px}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_notused li.sq_briefcase_item .sq_briefcase_value{padding:0;display:block;clear:left}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_addbriefcase{position:absolute;color:#6200ee;right:5px;top:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_optimize{position:absolute;color:#6200ee;right:5px;bottom:7px;cursor:pointer;float:right;display:none;z-index:10}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover{background-color:#fbfbfb}#sq_briefcase #sq_briefcase_content .sq_briefcase_empty{font-weight:700;text-align:center;padding:5px;margin:0}#sq_briefcase #sq_briefcase_content .sq_briefcase_item_notused .sq_briefcase_empty{color:#a7a6a7}#sq_briefcase .sq_briefcase_item .sq_briefcase_item_circle{display:block;float:left;width:13px;height:3px;margin:0 2px 0 0}#sq_briefcase .sq_briefcase_item_circles .sq_briefcase_circle{display:block;font-family:'FontAwesome',Arial,sans-serif!important;float:left;width:44px;height:10px;margin:5px 3px 0 0;cursor:pointer}#sq_briefcase .sq_briefcase_item_circles .sq_briefcase_circle:before{content:" ";display:block;height:100%;width:100%;margin:-2px 0 2px}#sq_briefcase .sq_briefcase_item_circles .sq_briefcase_circle.sq_active:before{display:block;text-align:center;margin:-2px 0 2px;content:"\f00c";color:#fff;text-shadow:1px 0 #555}#sq_briefcase ul li.sq_main_keyword{background-color:#f9f5fd}#sq_briefcase ul li.sq_main_keyword:after{content:"\f005";font-family:'FontAwesome',Arial,sans-serif!important;font-size:.875rem;position:absolute;margin:5px 0;right:18px}#sq_briefcase #sq_briefcase_content li .sq_briefcase_item_delete{display:none;float:right;font-size:13px;font-weight:700;color:#999;line-height:15px;width:15px;text-align:center;padding:5px 4px 2px;border:0;cursor:pointer;z-index:2}#sq_blockseo .sq_tasks{padding:2px 0}#sq_blockseo .sq_auto_sticky input,#sq_blockseo .sq_tasks .sq_help,#sq_blockseo .sq_tasks ul li #sq_density_high,#sq_blockseo .sq_tasks ul li #sq_density_low,#sq_blockseo .sq_tasks ul li #sq_density_title_high,#sq_blockseo .sq_tasks ul li #sq_density_title_longtail,#sq_blockseo .sq_tasks ul li #sq_density_title_low,#sq_blockseo .sq_tasks ul li #sq_over_density_high,#sq_blockseo .sq_tasks ul li #sq_over_density_low{display:none}#sq_blockseo .sq_tasks ul{padding:10px 0}#sq_blockseo .sq_tasks ul li{position:relative;display:block;color:#000;background-color:#fff;font-weight:400;line-height:25px;padding:5px 40px 5px 5px;margin:5px;border:1px solid #e9e9e9;float:none}#sq_blockseo .sq_tasks ul li.sq_tasks_category{color:#999;background-color:transparent;padding:0;margin:5px;border:0!important;box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important}#sq_blockseo .sq_tasks .sq_fp_title_task{color:#6200ee}#sq_blockseo .sq_tasks ul li.checked .sq_fp_title_task{color:#fff}#sq_blockseo .sq_tasks ul li.checked{background-color:#4caf50;color:#fff;text-shadow:1px 1px #777}#sq_blockseo .sq_tasks ul li .sq_seo_priority{display:none;position:absolute;height:25px;width:30px;right:23px;top:4px}#sq_blockseo .sq_tasks ul li .sq_seo_locked{display:block;position:absolute;height:20px;width:20px;right:23px;top:4px;cursor:pointer}#sq_blockseo .sq_auto_sticky label span,#sq_blockseo .sq_tasks ul li .sq_seo_priority_essential{cursor:pointer}#sq_blockseo .sq_tasks ul li .arrow:after{content:none;background-color:transparent}#sq_blockseo .sq_tasks ul li .arrow{display:block;position:absolute;right:5px;top:6px;bottom:auto;left:auto;height:16px;width:16px;overflow:visible;z-index:1;cursor:pointer}#sq_blockseo .sq_tasks ul li.checked .arrow{background-position:-121px -76px}#sq_blockseo .sq_tasks ul li .arrow:hover{background-position:-146px -76px;z-index:2}#sq_blockseo .sq_tasks ul li .arrow:hover .sq_help{display:table;position:absolute;background:#fff;font-weight:400;color:#333;right:-7px;top:22px;height:50px;width:300px;padding:10px 5px!important;overflow:hidden;z-index:5;border:1px solid #ccc;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;text-shadow:none}#sq_blockseo .sq_tasks ul li.sq_density_high,#sq_blockseo .sq_tasks ul li.sq_density_title_high,#sq_blockseo .sq_tasks ul li.sq_over_density_high{background-color:red!important;color:#fff!important}#sq_blockseo .sq_tasks ul li.sq_locked{color:#d3d3d3;background-color:#f8f8f8}#sq_blockseo .sq_error{padding:15px}body ul.sq_notification{position:fixed;background-color:#4caf50;text-align:center;width:100%;height:auto;top:28px;padding:0;margin:0;list-style:none!important;box-shadow:0 4px 4px -3px #333;-moz-box-shadow:0 4px 4px -3px #333;-webkit-box-shadow:0 4px 4px -3px #333;z-index:100001}body ul.sq_notification_front{z-index:100002}body ul.sq_density_high,body ul.sq_density_low,body ul.sq_density_title_high,body ul.sq_density_title_low{background-color:red!important}body ul.sq_density_high li,body ul.sq_density_low li,body ul.sq_density_title_high li,body ul.sq_density_title_low li{color:#fff!important}body ul.sq_notification li{position:relative;font-weight:400;color:#fff;text-shadow:1px 1px #777;line-height:16px;width:100%;margin:0 auto;padding:10px 0}body ul.sq_notification li .arrow{position:absolute;top:8px;left:-33px;width:25px;height:25px;float:left;margin:0 10px 0 0}body ul.sq_notification li .arrow::before{content:"";display:none}body ul.sq_notification li .arrow::after{background-color:transparent!important}body ul.sq_complete,body ul.sq_complete li,body ul.sq_notification li{list-style:none!important;height:auto;text-align:center}body ul.sq_complete{position:fixed;background-color:#4caf50;width:100%;top:28px;padding:0;margin:0;box-shadow:0 4px 4px -3px #333;-moz-box-shadow:0 4px 4px -3px #333;-webkit-box-shadow:0 4px 4px -3px #333;z-index:100000003}body ul.sq_complete li{position:relative;font-weight:400;color:#fff;text-shadow:1px 1px #777;line-height:16px;margin:0 auto;padding:15px 0}#sq_blocksearch #sq_types{width:100%;height:auto;padding:5px 0;margin:0}#sq_blocksearch #sq_types ul{margin:0;padding:0;list-style:none}#sq_blocksearch #sq_types ul li{line-height:25px;padding:8px;margin:0 12px;cursor:pointer;font-size:1.5rem}#postsquirrly:not(.sq_sticky) #sq_blocksearch #sq_types ul li{margin:0 6px}#postsquirrly:not(.sq_sticky) .sq_help,#postsquirrly:not(.sq_sticky) .sq_type_help{padding:0!important}#sq_blocksearch .sq_search{overflow:hidden;padding:0!important;margin:0!important;width:100%!important;height:auto;clear:both}#sq_blocksearch .sq_search .sq_search_notrelevant{text-align:center;text-decoration:none;color:#1c3c50;width:100%;display:block;margin:0;padding:5px;line-height:30px}#sq_blocksearch .sq_search #sq_search_second{text-align:center}#postsquirrly .sq_keyword #sq_keyword{max-width:75%}#sq_blocksearch .sq_search #sq_keyword_second{display:inline-block;margin:13px 0;width:80%;line-height:26px;padding:6px;font-weight:400;color:#32373c;border-radius:0}#sq_blocksearch .sq_search #sq_keyword_second_check{display:inline-block;line-height:26px;width:18%;height:39px;background-color:#6200ee!important;font-weight:700;color:#fff;margin:0;padding:0;cursor:pointer}#sq_blocksearch .sq_search ul{padding:0;margin:0 auto;list-style:none;clear:both;max-width:335px}#sq_blocksearch .sq_search ul li.sq_search_li{display:block;width:95%;font-weight:400;padding:5px;margin:7px auto;background-color:#fff;border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:1px}#sq_blocksearch .sq_search .sq_attribution{clear:both;margin:0;padding:0}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul>li{-ms-flex:0 0 auto;flex:0 0 auto;flex-grow:1;max-width:100%;text-align:center;padding:10px;color:#fff;background-color:#6200ee!important;border-color:transparent;cursor:pointer}#sq_blocksearch .sq_search ul .sq_info{clear:both;color:#bcc4c8;padding:3px 0 0;float:right}#sq_blocksearch .sq_search .sq_info ul li{float:left;font-size:.7rem;margin-right:5px;padding-right:5px;border-right:1px solid #ccc}#sq_blocksearch .sq_search .sq_info ul li:last-child{border-right-width:0!important}#sq_blocksearch .sq_search ul li.sq_search_img_li{position:relative;float:left;background-color:#fff;width:100px;height:70px;padding:2px;margin:0 3px 6px 7px;border:1px solid #bbb;box-shadow:0 0 2px #ccc;-moz-box-shadow:0 0 2px #ccc;-webkit-box-shadow:0 0 2px #ccc;transition-property:border-color;transition-duration:.33s;-moz-transition-property:border-color;-moz-transition-duration:.33s;-webkit-transition-property:border-color;-webkit-transition-duration:.33s;cursor:pointer}#sq_blocksearch .sq_search ul li.sq_search_img_li:hover{border-color:#333}#sq_blocksearch .sq_search ul li.sq_search_img_li>img{clip:rect(0,100px,70px,0);position:absolute;top:-3px;left:-3px;max-height:110px;max-width:140px;min-width:100px}#postsquirrly.sq_sticky .sq_search ul li.sq_search_img_li{margin:0 3px 6px 7px}#postsquirrly:not(.sq_sticky) #sq_blocksearch .sq_search ul li.sq_search_img_li{width:126px}#postsquirrly:not(.sq_sticky) #sq_blocksearch .sq_search ul li.sq_search_img_li>img{clip:rect(0,126px,70px,0);max-width:150px;max-height:150px;min-width:126px}#postsquirrly:not(.sq_sticky) #sq_nokeyword{display:none!important}#sq_blocksearch #sq_search_img_filter{width:100%;background-color:#fff;text-align:center;padding:10px 0;border-top:1px solid #e8e8e8}#sq_blocksearch #sq_search_img_filter #sq_search_img_nolicence{margin:0 5px}#sq_blocksearch #sq_search_img_filter label#sq_search_img_nolicence_label{position:relative;color:#1d1f24;text-shadow:1px 1px #fff}#sq_blocksearch #sq_search_img_filter label.checked span{background-color:#6200ee}.sq_zoomImg_img{width:auto;height:54px}.sq_zoomImg{position:absolute;visibility:visible}.sq_zoomImg_Inner{background-color:#fff;border:1px solid #d9d9d9;-moz-box-shadow:0 4px 16px rgba(0,0,0,.2);-webkit-box-shadow:0 4px 16px rgba(0,0,0,.2);box-shadow:0 4px 16px rgba(0,0,0,.2);color:#555;padding:5px;position:relative}.sq_zoomImg_frame img{border:1px solid #d9d9d9;display:block;margin:auto;max-width:115px;max-height:115px}#sq_blocksearch .sq_search li.sq_search_img_li .sq_attribute{position:absolute;bottom:-3px;right:-3px;background:#fff;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;z-index:1;padding:0 5px}#sq_blocksearch .sq_search ul li.search_category{clear:both;color:#464646;width:100%;height:16px;border:0}#sq_blocksearch .sq_search ul li.sq_search_twitter_li a{float:left;padding:0 5px;margin:0;height:auto}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_author_avatar{float:left;width:36px;height:36px;margin:3px 10px 0 0}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_content{margin-left:46px}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_author{color:#555;line-height:15px}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_author_name{line-height:19px;margin-right:5px;color:#555;font-weight:400;text-align:left}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_text{margin-left:0}#sq_blocksearch .sq_search ul li.sq_search_blog_li .sq_news_title{font-weight:700;color:#333;line-height:19px;margin:0 0 5px}#sq_blocksearch .sq_search ul li.sq_search_blog_li .sq_news_text{color:#333;line-height:19px;text-align:left}#sq_blocksearch .sq_show_mgs{clear:both;display:block;padding:10px;margin-top:10px;border-top:1px dashed #d1d1d1;text-align:center}#sq_blocksearch .sq_more{clear:both;position:relative;width:100%;text-align:center;padding:0;margin:0 0 5px}#sq_blocksearch .sq_more span{display:block;width:0;height:0;border-left:12px solid transparent;border-right:12px solid transparent;border-top:10px solid #6200ee;padding:0;margin:0 auto;cursor:pointer}#sq_suggestion .sq_show_mgs{margin:20px auto 0;border-top:none;text-align:center}#sq_blog_preview{position:fixed!important;border:1px solid #e5e5e5;padding:0;margin-bottom:15px;left:15%;top:10%;width:70%;height:80%;overflow:auto;background-color:#fff;z-index:999999}#sq_blog_preview_overlay{display:block;position:absolute;background-color:#999;border:0;content:" ";left:0;top:0;width:100%;height:100%;border-radius:2px 2px 0 0;opacity:.3;z-index:999998}#sq_blog_preview #sq_blog_preview_partner{position:absolute;top:15px;right:20px}#sq_blog_preview #sq_blog_preview_partner a{background-color:#333;text-decoration:none;color:#fff;font-size:.875rem;font-weight:700;margin-left:5px;padding:0 3px;border:1px solid #333}#sq_blog_preview #sq_blog_preview_title{display:block;font-size:1.2rem;font-weight:400;line-height:30px;color:#333;border-bottom:1px dashed #d1d1d1;margin:0 0 10px;padding:10px 0 10px 10px}#sq_blog_preview #sq_blog_preview_body{display:block;font-size:.875rem;color:#333;line-height:16px;text-align:left;padding:0 0 0 10px;overflow-y:auto;overflow-x:hidden}#sq_blog_preview #sq_blog_preview_body p{position:relative;background-color:transparent;line-height:24px;padding:0;margin:0 0 16px;text-align:left;white-space:normal;color:#333}#sq_blog_preview #sq_blog_preview_body .sq_mark{background-color:#ffed5f;color:#000;padding:0 3px;font-size:.875rem;line-height:20px;box-shadow:0 0 5px #fff6ac;-moz-box-shadow:0 0 5px #fff6ac;-webkit-box-shadow:0 0 5px #fff6ac}#sq_blog_preview #sq_blog_preview_body .sq_blog_option{position:absolute;display:none;background-color:#f5f5f5;bottom:0;right:5px;cursor:pointer;z-index:1}#sq_blog_preview #sq_blog_preview_body p:hover{background-color:#f5f5f5}#sq_blog_preview #sq_blog_preview_body p:hover .sq_blog_option{display:block;-webkit-animation:fadeIn .3s;-moz-animation:fadeIn .3s;animation:fadeIn .3s}#sq_blocksearch{position:relative}#sq_blocksearch .sq_search ul li.sq_search_wiki_li .sq_wiki_title{font-weight:700;color:#333;margin:5px 0}#sq_blocksearch .sq_search ul li.sq_search_local_li .sq_local_title{font-weight:700;color:#333;line-height:18px;margin:0 0 5px}#sq_blocksearch .sq_research_div{display:none;clear:both;position:relative;width:100%!important;line-height:40px;padding:0;margin:0!important;text-align:center}#sq_blocksearch .sq_research_div #sq_research_link{font-weight:700;color:#21759b;margin-top:10px;text-align:center;cursor:pointer;text-decoration:none}#sq_blog_preview #sq_blog_preview_close{position:absolute;font-weight:700;color:#999;width:10px;line-height:16px;text-align:center;padding:0 4px 2px;border-radius:10px;cursor:pointer;z-index:2;top:20px;right:20px;font-size:20px}#sq_blockseo .sq_seo_refresh{text-align:center;height:29px!important;min-height:29px!important;cursor:pointer;position:relative;z-index:1}#postsquirrly .sq_keyword .sq_seo_refresh{display:none!important;margin-top:5px}#postsquirrly.sq_sticky .sq_keyword .sq_seo_refresh{display:block!important;position:relative}#sq_blockseo progress::-webkit-progress-bar{background-color:#ccc;height:5px}#sq_blockseo progress::-webkit-progress-value{background-color:#6200ee;height:5px}#sq_blockseo progress{background-color:#6200ee;height:5px;line-height:5px}#wpb_visual_composer mark.mark_counter,.edit-post-visual-editor mark.mark_counter,.elementor-editor-active #content .elementor-container mark.mark_counter,.elementor-editor-active #content .elementor-inner mark.mark_counter{background:#fdffc7!important;color:#383838!important;padding:0 5px}#wpb_visual_composer mark.mark_counter:after,.edit-post-visual-editor mark.mark_counter:after,.elementor-editor-active #content .elementor-container mark.mark_counter:after,.elementor-editor-active #content .elementor-inner mark.mark_counter:after{content:attr(data-cnt)!important;color:gray;font-size:70%;line-height:50%;vertical-align:baseline;position:relative;top:-9px}#elementor-container .sq_highlight .sq_highlight_cnt,.elementor-editor-active #content .elementor-container mark.mark_counter,.elementor-editor-active #content .elementor-inner mark.mark_counter{display:initial!important}#postsquirrly.sq_frontend #sq_options{display:none}#postsquirrly.sq_frontend ul,#postsquirrly.sq_frontend ul li{list-style:none!important}
view/assets/css/rtl.min.css CHANGED
@@ -1 +1 @@
1
- #sq_wrap #sq_stats img{transform:scaleX(-1)}#sq_wrap a.position-absolute.float-right{left:7px;right:auto!important}#sq_wrap .card-title{text-align:right}#sq_wrap .sq_nav .sq_nav_item_icon{float:left;left:18px!important;right:auto!important}#sq_wrap .sq_help_toolbar{left:70px!important;right:auto!important}#sq_wrap .sq_icons_content{float:right!important;background-image:linear-gradient(90deg,#f8f9fa,#e6ecf1)!important}#sq_options>ul>li,.sq_offer_close{float:left!important}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item,.sq_dashboard_title{text-align:right!important}#sq_dashboard_content ul{margin:10px 20px 10px 0!important}@media (max-width:1239px){#sq_wrap .sq_nav .sq_nav_item:hover .sq_nav_item_title{right:70px}}.div_ignore{left:100px;right:auto}.sq_logo{margin-left:4px!important}.sq-switch.sq-switch-lg input+label::after,.sq-switch.sq-switch-sm input+label::after,.sq-switch.sq-switch-xxs input+label::after{right:2px;left:auto}.sq-switch.sq-switch-sm input:checked+label::after{right:calc(1.9215rem*.7);left:auto}#wpadminbar .sq-switch.sq-switch-sm input:checked+label::after{right:calc(2.9215rem*.6)}.sq-switch.sq-switch-lg input:checked+label::after{right:calc(calc(1.5rem*.8)*2);left:auto!important}.sq-switch.sq-switch-xxs input:checked+label::after{right:calc(.9375em*.9);left:auto}#wpadminbar .sq-switch.sq-switch-xxs input:checked+label::after{right:calc(.9375em*.9)}#sq_wrap .fa-arrow-circle-left,#sq_wrap .fa-arrow-circle-right{-webkit-transform:rotate(180deg)!important;-moz-transform:rotate(180deg)!important;-ms-transform:rotate(180deg)!important;-o-transform:rotate(180deg)!important;transform:rotate(180deg)!important}#sq_seosettings .sq_pattern_list li.sq_nostyle,.sq-input-group .sq_pattern_list li.sq_nostyle{float:right!important;margin-right:auto!important;margin-left:10px!important}#sq_wrap .sq_col_side .sq_assistant li:not(.completed):not(.pattern) h4:after{content:""!important}#sq_wrap .sq_col_side .sq_assistant li:not(.completed):not(.pattern) h4:before{content:"\f107";display:inline;font-family:FontAwesome,Arial,sans-serif!important;font-size:16px!important;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:6px;font-weight:700;color:#cd5c5c}.tooltip.bs-tooltip-right .arrow{left:0!important;right:auto!important}#sq_wrap #sq_focuspages .table.detailed tr td .sq_focuspages_lastaudited,#sq_wrap #sq_focuspages .table.detailed tr td .sq_focuspages_request{left:30px!important;right:auto!important}.sq_focuspages_content .sq_overflow_arrow_left{right:10px!important;left:auto!important}.sq_focuspages_content .sq_overflow_arrow_right{left:10px!important;right:auto!important}.sq_assistant .fa-check{margin-left:5px}#sq_briefcase .sq_add_keyword_dialog .sq_checkbox_label.sq_active:before,#sq_briefcase .sq_filter_label .sq_circle_label.sq_active:before,#sq_briefcase .sq_label_manage_popup .sq_checkbox_label.sq_active:before{padding-right:calc(50% - 5px)!important}#sq_wrap .sq_sm_menu .sq_sm_dropdown{left:20px!important;right:auto!important}#sq_options_support .sq_options_support_popup{left:0!important;right:auto!important;text-align:right!important}#knob_checkseo{margin-right:-62px!important;margin-left:auto!important}#sq_options_feedback #sq_options_feedback_close,#sq_options_support #sq_options_close,#topcontrol{left:8px;right:auto!important}#sq_wrap .navbar .nav-link .sq_errorcount{margin:0 5px 0 -11px!important}.sq_errorcount{margin:9px 5px 0!important}.menu-top.toplevel_page_sq_dashboard.wp-menu-open .sq_errorcount{margin:0 0 0 15px!important}#sq_blockseo .sq_tasks ul li .arrow,#wpadminbar .sq_blocksnippet{left:5px!important;right:auto!important}#postsquirrly #sq_briefcase_icon,#postsquirrly .sq_box_close,#postsquirrly .sq_box_maximize,#postsquirrly .sq_box_minimize,#sq_blockseo #sq_seo_refresh,.sq_errorcount{float:left!important}#sq_blocksearch .sq_briefcase_item .sq_briefcase_item_circle,#sq_blocksearch .sq_briefcase_item_circles .sq_briefcase_circle{float:right!important}#sq_blockseo .sq_tasks ul li{padding:5px 5px 5px 40px!important}#sq_wrap .sq_col_menu:not(.sq_col_menu_big) .sq_nav .sq_nav_item:hover .sq_nav_item_text{right:40px!important;padding-left:10px!important;box-shadow:none!important}.sq_back_button{left:0!important;right:auto!important}.sq_audit_score .dial,.sq_chances_ranking{margin-right:-58px!important}.sq_pattern_field .sq_pattern_icon{left:15px!important;right:auto!important}.sq_focus_visibility{float:right!important;margin:0 10px!important}
1
+ #sq_wrap #sq_stats img{transform:scaleX(-1)}#sq_wrap a.position-absolute.float-right{left:7px;right:auto!important}#sq_wrap .card-title{text-align:right}#sq_wrap .sq_nav .sq_nav_item_icon{float:left;left:18px!important;right:auto!important}#sq_wrap .sq_help_toolbar{left:70px!important;right:auto!important}#sq_wrap .sq_icons_content{float:right!important;background-image:linear-gradient(90deg,#f8f9fa,#e6ecf1)!important}#sq_options>ul>li,.sq_offer_close{float:left!important}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item,.sq_dashboard_title{text-align:right!important}#sq_dashboard_content ul{margin:10px 20px 10px 0!important}@media (max-width:1239px){#sq_wrap .sq_nav .sq_nav_item:hover .sq_nav_item_title{right:70px}}.div_ignore{left:100px;right:auto}.sq_logo{margin-left:4px!important}.sq-switch.sq-switch-lg input+label::after,.sq-switch.sq-switch-sm input+label::after,.sq-switch.sq-switch-xxs input+label::after{right:2px;left:auto}.sq-switch.sq-switch-sm input:checked+label::after{right:calc(1.9215rem*.7);left:auto}#wpadminbar .sq-switch.sq-switch-sm input:checked+label::after{right:calc(2.9215rem*.6)}.sq-switch.sq-switch-lg input:checked+label::after{right:calc(calc(1.5rem*.8)*2);left:auto!important}.sq-switch.sq-switch-xxs input:checked+label::after{right:calc(.9375em*.9);left:auto}#wpadminbar .sq-switch.sq-switch-xxs input:checked+label::after{right:calc(.9375em*.9)}#sq_wrap .fa-arrow-circle-left,#sq_wrap .fa-arrow-circle-right{-webkit-transform:rotate(180deg)!important;-moz-transform:rotate(180deg)!important;-ms-transform:rotate(180deg)!important;-o-transform:rotate(180deg)!important;transform:rotate(180deg)!important}#sq_seosettings .sq_pattern_list li.sq_nostyle,.sq-input-group .sq_pattern_list li.sq_nostyle{float:right!important;margin-right:auto!important;margin-left:10px!important}#sq_wrap .sq_col_side .sq_assistant li:not(.completed):not(.pattern) h4:after{content:""!important}#sq_wrap .sq_col_side .sq_assistant li:not(.completed):not(.pattern) h4:before{content:"\f107";display:inline;font-family:FontAwesome,Arial,sans-serif!important;font-size:16px!important;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:6px;font-weight:700;color:#cd5c5c}.tooltip.bs-tooltip-right .arrow{left:0!important;right:auto!important}#sq_wrap #sq_focuspages .table.detailed tr td .sq_focuspages_lastaudited,#sq_wrap #sq_focuspages .table.detailed tr td .sq_focuspages_request{left:30px!important;right:auto!important}.sq_focuspages_content .sq_overflow_arrow_left{right:10px!important;left:auto!important}.sq_focuspages_content .sq_overflow_arrow_right{left:10px!important;right:auto!important}.sq_assistant .fa-check{margin-left:5px}#sq_briefcase .sq_add_keyword_dialog .sq_checkbox_label.sq_active:before,#sq_briefcase .sq_filter_label .sq_circle_label.sq_active:before,#sq_briefcase .sq_label_manage_popup .sq_checkbox_label.sq_active:before{padding-right:calc(50% - 5px)!important}#sq_wrap .sq_sm_menu .sq_sm_dropdown{left:20px!important;right:auto!important}#sq_options_support .sq_options_support_popup{left:0!important;right:auto!important;text-align:right!important}#knob_checkseo{margin-right:-62px!important;margin-left:auto!important}#sq_options_feedback #sq_options_feedback_close,#sq_options_support #sq_options_close,#topcontrol{left:8px;right:auto!important}#sq_wrap .navbar .nav-link .sq_errorcount{margin:0 5px 0 -11px!important}.sq_errorcount{margin:9px 5px 0!important}.menu-top.toplevel_page_sq_dashboard.wp-menu-open .sq_errorcount{margin:0 0 0 15px!important}#sq_blockseo .sq_tasks ul li .arrow,#wpadminbar .sq_blocksnippet{left:5px!important;right:auto!important}#postsquirrly #sq_briefcase_icon,#postsquirrly .sq_box_close,#postsquirrly .sq_box_maximize,#postsquirrly .sq_box_minimize,#sq_blockseo .sq_seo_refresh,.sq_errorcount{float:left!important}#sq_blocksearch .sq_briefcase_item .sq_briefcase_item_circle,#sq_blocksearch .sq_briefcase_item_circles .sq_briefcase_circle{float:right!important}#sq_blockseo .sq_tasks ul li{padding:5px 5px 5px 40px!important}#sq_wrap .sq_col_menu:not(.sq_col_menu_big) .sq_nav .sq_nav_item:hover .sq_nav_item_text{right:40px!important;padding-left:10px!important;box-shadow:none!important}.sq_back_button{left:0!important;right:auto!important}.sq_audit_score .dial,.sq_chances_ranking{margin-right:-58px!important}.sq_pattern_field .sq_pattern_icon{left:15px!important;right:auto!important}.sq_focus_visibility{float:right!important;margin:0 10px!important}
view/assets/img/kb/noconnection.jpg DELETED
Binary file
view/assets/js/assistant/sq_blocksearch.min.js CHANGED
@@ -1 +1 @@
1
- (function($){"use strict";if($.isFunction($.fn.sq_blocksearch)){return}$.fn.sq_blocksearch=function(options){var $this=this;var settings=$.extend({type:"img",delay:1e3,processing:null,timeout:null,ajaxCall:null,gtimeout:null},options);$.sq_fields=$.extend({sq_publish_alert:$this.find("#sq_publish_alert"),sq_more:$this.find(".sq_more"),sq_keywords_research_clear:$(".sq_keywords_research_clear"),sq_keywords_research_submit:$(".sq_keywords_research_submit")},$.sq_fields);$this.init=function(){if($.sq_config.keyword===""){$.sq_blockseo.close();$this.hideTypes()}};$this.hideTypes=function(){$.sq_fields.sq_types.hide();$this.hideSearch()};$this.showTypes=function(){$.sq_fields.sq_types.show()};$this.showActiveEditor=function(){var ed=$.sq_editor.getTinymceEditor();$.sq_tinymce.addEvents(ed)};$this.hideSearch=function(){$.sq_fields.sq_search.hide();$.sq_fields.sq_search_img_filter.hide()};$this.showSearch=function(){$.sq_fields.sq_search.html("");$.sq_fields.sq_search.show();$.sq_fields.sq_search_img_filter.hide()};$this.showNoResults=function(header,keyword){$this.showSearch();$.sq_fields.sq_search.addClass("sq_error").html('<span class="sq_show_mgs">'+$.sq_config.__nofound+"</span>");if(typeof header!=="undefined"&&typeof keyword!=="undefined"&&header===1){$this.addHeaderSearch(keyword)}};$this.addHeaderSearch=function(keyword){if(typeof keyword==="undefined")keyword="";if(!$.sq_fields.sq_search.find("#sq_search_second").length){$.sq_fields.sq_search.prepend('<div id="sq_search_second" style="display: none"><input type="text" id="sq_keyword_second" placeholder="Search for new keyword..." '+($.sq_strEqual($.sq_config.keyword,keyword)||keyword===""?'value=""':'value="'+keyword+'"')+' autocomplete="off" /><input type="button" id="sq_keyword_second_check" value=">"/></div>')}$.sq_fields.sq_search_second=$this.find("#sq_search_second");$.sq_fields.sq_keyword_second=$this.find("#sq_keyword_second");$.sq_fields.sq_keyword_second_check=$this.find("#sq_keyword_second_check");if($.sq_strEqual($.sq_config.keyword,keyword)){if(!$.sq_fields.sq_search.find(".sq_search_notrelevant").length){$.sq_fields.sq_search.prepend('<a href="javascript:void(0);" class="sq_search_notrelevant">'+$.sq_config.__notrelevant+"</a>");$this.find(".sq_search_notrelevant").on("click",function(){$.sq_fields.sq_search_second.show();$.sq_fields.sq_keyword_second.focus();$(this).hide()})}}else{$.sq_fields.sq_search_second.show();$.sq_fields.sq_keyword_second.focus()}$this.initialFieldValue($.sq_fields.sq_keyword_second,"black","gray");$.sq_fields.sq_keyword_second.on("keypress",function(event){if(event.keyCode===$.ui.keyCode.ENTER)$.sq_fields.sq_keyword_second_check.trigger("click");return event.keyCode!==$.ui.keyCode.ENTER});$.sq_fields.sq_keyword_second_check.on("click",function(){if($.sq_fields.sq_keyword_second.val()!==""){$this.refreshSearch(settings.type)}})};$this.initialFieldValue=function(field,active_color,inactive_color){if(field.hasClass("default")){field.css("color",inactive_color);var default_values=[];field.focus(function(){if(!default_values[this.id]){default_values[this.id]=this.value}if($.sq_strEqual(this.value,default_values[this.id])){this.value="";this.style.color=active_color}$(this).blur(function(){if(this.value===""){this.style.color=inactive_color;this.value=default_values[this.id]}})})}};$this.getSearch=function(type,start,extra_params){var keyword;if(settings.ajaxCall)settings.ajaxCall.abort();if($.sq_fields.sq_keyword_second.length>0&&$.sq_fields.sq_keyword_second.val()!==""){keyword=$.sq_fields.sq_keyword_second.val()}else{keyword=$.sq_config.keyword}var action="sla_customcall";var params="";var url="";if(typeof start==="undefined")start=0;if(start===0){$this.showSearch()}switch(type){case"img":if($.sq_fields.sq_search_img_nolicence.is(":checked")){url="api/research/ib/images";params="page="+(start/$.sq_config.nrb+1)+"&nrb="+$.sq_config.nrb+"&hl="+$.sq_config.language+"&q="+keyword}else{url="api/research/ib/gimages";params="page="+start+"&rpp="+$.sq_config.nrb+"&hl="+$.sq_config.language+'&q="'+keyword+'"'}break;case"twitter":url="api/research/ib/twitter";params="page="+(start/$.sq_config.nrb+1)+"&rpp="+$.sq_config.nrb+"&hl="+$.sq_config.language+"&q="+keyword;break;case"blog":url="api/research/ib/blog";params="page="+start+"&rpp="+$.sq_config.nrb+"&hl="+$.sq_config.language+'&q="'+keyword+'"';break;case"wiki":url="api/research/ib/wiki";params="&page="+(start/$.sq_config.nrb+1)+"&rpp="+$.sq_config.nrb+"&hl="+$.sq_config.language+"&q="+keyword;break;case"local":action="sq_ajax_search_blog";url="";params="nrb="+$.sq_config.nrb+"&sq_nonce="+$.sq_config.sq_nonce+"&exclude="+$.sq_config.postID+"&q="+keyword+"&start="+start;params="nrb="+$.sq_config.nrb+"&sq_nonce="+$.sq_config.sq_nonce+"&exclude="+$.sq_config.postID+"&q="+keyword+"&start="+start;break}if(typeof extra_params!=="undefined")params=params+"&"+extra_params;var cached=$.sq_getCache(url+params);if(cached){$this.showResults(keyword,cached,type,start)}else{$.sq_fields.sq_search.html('<span class="sq_show_mgs">'+$.sq_config.__searching+"</span>");settings.ajaxCall=$.post($.sq_config.ajaxurl,{action:action,sq_nonce:$.sq_config.sq_nonce,url:url,params:params}).done(function(response){$(".sq_show_mgs").remove();if(response instanceof Object){$this.showResults(keyword,response,type,start);$.sq_setCache(url+"?"+params,response)}else{$.sq_fields.sq_search.sq_doneloading().addClass("sq_error");if(start==0){$this.showNoResults(1,keyword)}else{$this.showNoResults(0)}}if(type==="img")$.sq_fields.sq_search_img_filter.show()}).fail(function(response){if(response.status===200&&response.responseText.indexOf("{")>0){response.responseText=response.responseText.substr(response.responseText.indexOf("{"),response.responseText.lastIndexOf("}"));try{response=$.parseJSON(response.responseText);if(response instanceof Object){$this.showResults(keyword,response,type,start);$.sq_setCache(url+params,response)}else{$.sq_fields.sq_search.sq_doneloading().addClass("sq_error");if(start===0){$this.showNoResults(1,keyword)}else{$this.showNoResults(0)}}if(type==="img")$.sq_fields.sq_search_img_filter.show()}catch(e){}}else{$.sq_fields.sq_search.sq_doneloading().addClass("sq_error");if(start===0){$this.showNoResults(1,keyword)}else{$this.showNoResults(0)}}if(type==="img")$.sq_fields.sq_search_img_filter.show()})}};$this.showResults=function(keyword,response,type,start){var items=[];var date;var domainName;$.sq_fields.sq_search.sq_doneloading().removeClass("sq_error");if(type==="img"){if(typeof response.data.responseData!=="undefined"&&typeof response.data.responseData.results!=="undefined"&&response.data.responseData.results.length>0){$.each(response.data.responseData.results,function(key,val){if(typeof val["detail"]!=="undefined"&&val["detail"]!==""){val["detail"]=val["detail"].replace(/\[a href=([^\]]*) title=([^\]]*)\]/,"$1")}items.push('<li class="sq_search_img_li" id="sq_search_img_li'+key+'" src="'+val["url"]+'" width="'+val["width"]+'" height="'+val["height"]+'" '+(typeof val["attribute"]!=="undefined"&&val["attribute"]!==""?'attribute="'+val["attribute"]+'"':"")+" >"+(typeof val["attribute"]!=="undefined"?val["attribute"]!==""?'<span class="sq_attribute" title="'+$.sq_config.__has_attributes+'">A</span>':'<span class="sq_attribute " title="'+$.sq_config.__no_attributes+'">N</span>':"")+'<img id="sq_search_img'+key+'" src="'+val["tbUrl"]+'" '+(typeof val["detail"]!=="undefined"&&val["detail"]!==""?'title="'+val["detail"]+'"':"")+' alt="'+val["contentNoFormatting"]+'" /></li>')})}else $this.showNoResults()}if(type==="twitter"){if(typeof response.data!=="undefined"&&response.data.length>0)$.each(response.data,function(key,val){date=new Date(val["created_at"]);date=$this.formatDate(date);items.push('<li class="sq_search_twitter_li sq_search_li" id="t_'+val["id"]+'" href="https://twitter.com/'+val["from_user"]+'"><a href="https://twitter.com/'+val["from_user"]+'" title="'+val["text"]+'" target="_blank" ><img src="'+val["profile_image_url"]+'" alt="'+val["from_user"]+'" class="sq_author_avatar" /></a><div class="sq_quote_content"><div class="sq_quote_author"><span class="sq_author_name">'+val["from_user"]+'</span></div> <div class="sq_quote_text truncated">'+val["text"]+'</div></div><div class="sq_info"><ul><li>'+$.sq_config.__date+": "+date+'</li></ul></div><div class="sq_attribution"><ul><li class="sq_insert">'+$.sq_config.__insertit+"</li></ul></div></li>")});else $this.showNoResults()}if(type==="blog"){if(typeof response!=="undefined"&&typeof response.data.results!=="undefined"&&response.data.results.length>0)$.each(response.data.results,function(key,val){domainName='<a href="'+val["url"]+'" target="_blank">'+val["visibleUrl"]+"</a>";items.push('<li class="sq_search_blog_li sq_search_li" id="b_'+key+'" href="'+val["url"]+'" header="'+val["titleNoFormatting"]+'" ><div class="sq_news_content"><div class="sq_news_title">'+val["titleNoFormatting"]+'</div><div class="sq_news_text">'+val["content"]+'</div><div class="sq_info"><ul><li>source: '+domainName+'</li></ul></div></div><div class="sq_attribution"><ul><li class="sq_read">'+$.sq_config.__readit+'</li><li class="sq_insert">'+$.sq_config.__insertasbox+'</li><li class="sq_reference">'+$.sq_config.__reference+"</li></ul></div></li>")});else $this.showNoResults()}if(type==="wiki"){var wikihref="//"+$.sq_config.language.substr(0,2)+".wikipedia.org/wiki/";if(typeof response.data.results!=="undefined"&&response.data.results.length>0)$.each(response.data.results,function(key,val){date=new Date(val.timestamp);date=$this.formatDate(date);items.push('<li class="sq_search_wiki_li sq_search_li" id="w_'+key+'" href="'+wikihref+val.title.replace(/ /g,"_")+'" ><div class="sq_wiki_content"><div class="sq_wiki_title">'+val.title+'</div><div class="sq_wiki_text truncated">'+val.snippet+'</div><div class="sq_info"><ul><li>'+$.sq_config.__date+": "+date+'</li></ul></div><div class="sq_attribution"><ul><li class="sq_read">'+$.sq_config.__readit+'</li><li class="sq_insert">'+$.sq_config.__insertit+"</li></ul></div></li>")});else $this.showNoResults()}if(type==="local"){if(typeof response.results!=="undefined"&&response.results.length>0)$.each(response.results,function(key,val){date=new Date(val.date);date=$this.formatDate(date);items.push('<li class="sq_search_local_li sq_search_li" id="l_'+val["id"]+'" href="'+val["url"]+'" header="'+val["title"]+'" ><div class="sq_local_content"><div class="sq_local_title">'+val["title"]+'</div><div class="sq_local_text truncated">'+val["content"]+'</div><div class="sq_info"><ul><li>'+$.sq_config.__date+": "+date+'</li></ul></div><div class="sq_attribution"><ul><li class="sq_insert">'+$.sq_config.__insertit+'</li><li class="sq_reference">'+$.sq_config.__reference+'</li><li class="sq_link">'+$.sq_config.__addlink+"</li></ul></div></li>")});else $this.showNoResults()}if(items.length>0){if(start===0){$.sq_fields.sq_search.append($("<ul/>",{html:items.join("")}));$this.addHeaderSearch(keyword)}else{$.sq_fields.sq_search.find("ul").first().append(items.join(""))}$this.addEvents("click",type,start)}else{if(start===0){$this.showNoResults(1,keyword)}else{$this.showNoResults(0)}}if($.sq_fields.sq_more.length>0){$.sq_fields.sq_more.html("<span />");$.sq_fields.sq_more.sq_doneloading();$.sq_fields.sq_more.on("click");if(items.length<$.sq_config.nrb)$.sq_fields.sq_more.hide()}$this.find(".sq_search li.sq_search_li .sq_attribution > ul").show()};$this.addEvents=function(event,type,start){if(type==="img"){$this.find("li.sq_search_img_li img").off(event).on(event,function(){if($.sq_isGutenberg()){var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(wp.blocks.createBlock("core/image",{url:$(this).parent("li").attr("src"),className:"sq_image",alt:$.sq_config.keyword.replace(/\"/g,"")}),undefined);$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packimg($(this).attr("id"),$(this).parent("li").attr("src"),$(this).parent("li")));if(typeof $(this).parent("li").attr("attribute")!=="undefined"&&typeof $.sq_config.__sq_photo_copyright!=="")$.sq_editor.insert($.sq_config.__sq_photo_copyright.replace("%s",$(this).parent("li").attr("attribute")))}});$this.find("li.sq_search_img_li img").on("dragstart",function(event){if($.sq_config.editor_type==="html"){event.originalEvent.dataTransfer.setData("text/plain",$(this).parent("li").html())}});$.sq_fields.sq_search_img_filter.show()}if(type==="twitter"){$this.find("li.sq_search_twitter_li .sq_insert").off(event).on(event,function(){if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:$this.packtweet($(this).parents("li:last"))});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click");$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packtweet($(this).parents("li:last")))}})}if(type==="wiki"){$this.find("li.sq_search_wiki_li .sq_insert").off(event).on(event,function(){if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:$this.packwiki($(this).parents("li:last"))});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click");$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packwiki($(this).parents("li:last")))}});$this.find(".sq_read").off(event).on(event,function(){$("body").after($.sq_fields.sq_blog_preview);$.sq_fields.sq_blog_preview.sq_loading();$.sq_fields.sq_blog_preview.find("#sq_blog_preview_title").html("&nbsp;");$.sq_fields.sq_blog_preview.find("#sq_blog_preview_body").html("");$.sq_fields.sq_blog_preview.find("#sq_blog_preview_close").off(event).on(event,function(){$.sq_fields.sq_blog_preview.remove()});$this.previewBlog($(this).parents("li:last"),false)})}if(type==="news"||type==="blog"){$this.find("li.sq_search_blog_li .sq_insert").off(event).on(event,function(){if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:$this.packblog($(this).parents("li:last"),"box")});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click");$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packblog($(this).parents("li:last"),"box"))}});$this.find("li.sq_search_blog_li .sq_reference").off(event).on(event,function(){if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:$this.packblog($(this).parents("li:last"),"reference")});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click");$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packblog($(this).parents("li:last"),"reference"))}});$this.find(".sq_read").off(event).on(event,function(){$("body").after($.sq_fields.sq_blog_preview);$.sq_fields.sq_blog_preview.sq_loading();$.sq_fields.sq_blog_preview.find("#sq_blog_preview_title").html("&nbsp;");$.sq_fields.sq_blog_preview.find("#sq_blog_preview_body").html("");$.sq_fields.sq_blog_preview.find("#sq_blog_preview_close").off(event).on(event,function(){$.sq_fields.sq_blog_preview.remove()});$this.previewBlog($(this).parents("li:last"),true)})}if(type==="local"){$this.find("li.sq_search_local_li .sq_insert").off(event).on(event,function(){if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:$this.packlocal($(this).parents("li:last"),"box")});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click");$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packlocal($(this).parents("li:last"),"box"))}});this.find("li.sq_search_local_li .sq_reference").off(event).on(event,function(){if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:$this.packlocal($(this).parents("li:last"),"reference")});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click");$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packlocal($(this).parents("li:last"),"reference"))}});this.find("li.sq_search_local_li .sq_link").off(event).on(event,function(){if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:$this.packlocal($(this).parents("li:last"),"link")});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click");$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packlocal($(this).parents("li:last"),"link"))}})}if(start===0){$.sq_fields.sq_search.append('<div class="sq_more"><span /></div>');$.sq_fields.sq_more=$this.find(".sq_more")}$.sq_fields.sq_more.off("click").on("click",function(){$(this).html("");$(this).sq_loading();$(this).off("click");$this.getSearch(type,start+$.sq_config.nrb)})};$this.pack=function(html){return'<div class="sq_box">'+html+"<div>"};$this.packimg=function(id,src,parent){if(id!==""){var content='<img src="'+src+'" id="img'+Math.floor(Math.random()*1e3)+'" class="aligncenter size-medium sq_image" width="'+(parent.attr("width")>500?"500":parent.attr("width"))+'" alt="'+$.sq_config.keyword.replace(/\"/g,"")+'" title="'+$.sq_config.keyword.replace(/\"/g,"")+'" />';return content}return""};$this.packtweet=function(parent){var content="";content='<div class="sq_quote_content" style="position: relative;clear: both;background: white;font-size: 14px;color: #333;max-width: 500px;margin: 5px auto 5px auto;padding: 13px;border: 1px solid #DDD;-webkit-box-shadow: 0 1px 0 #DDD;-moz-box-shadow: 0 1px 0 #ddd;box-shadow: 0 1px 0 #DDD;">';content=content+'<a id="'+parent.attr("id")+'" class="sq_tweet" href="'+parent.attr("href")+'" title="'+parent.find(".sq_author_avatar").attr("alt")+'" style="display: block;float: left;width: 48px;height: 48px;padding: 1px;margin: 0;border: 1px solid #DDD;" ><img class="sq_author_avatar" src="'+parent.find(".sq_author_avatar").attr("src")+'" alt="'+parent.find(".sq_author_avatar").attr("alt")+'" /></a>';content=content+'<div class="sq_quote_text" style="margin-left: 62px;line-height: 1.5em;padding-left: 21px;min-height: 52px;font-style:italic;">'+parent.find(".sq_quote_text").html()+"</div>";content=content+"</div>";return'<div id="tw'+Math.floor(Math.random()*1e3)+'" >'+content+"</div>"+$.sq_config.after_insert};$this.packwiki=function(parent){var content="";content='<div class="sq_wiki_content" style="position: relative;clear: both;background: white;font-size: 14px;color: #333;max-width: 500px;margin: 5px auto 5px auto;padding: 13px;border: 1px solid #DDD;-webkit-box-shadow: 0 1px 0 #DDD;-moz-box-shadow: 0 1px 0 #ddd;box-shadow: 0 1px 0 #DDD;">';content=content+'<a id="'+parent.attr("id")+'" class="sq_wiki" href="'+parent.attr("href")+'" title="'+parent.find(".sq_wiki_title").html()+'" style="display: block;font-weight: 700;color: #0074B7;line-height: 1.4em;margin-bottom: 5px;text-decoration: none;">'+parent.find(".sq_wiki_title").html()+"</a>";content=content+'<div class="sq_wiki_text" style="font-style:italic;color: #333;">'+parent.find(".sq_wiki_text").html()+"</div>";content=content+"</div>";return'<div id="wi'+Math.floor(Math.random()*1e3)+'">'+content+"</div>"+$.sq_config.after_insert};$this.packblog=function(parent,as){var content="";if(as==="box"){content='<div class="sq_blog_content" style="position: relative;clear: both;background: white;font-size: 14px;color: #333;max-width: 500px;margin: 5px auto 5px auto;padding: 13px;border: 1px solid #DDD;-webkit-box-shadow: 0 1px 0 #DDD;-moz-box-shadow: 0 1px 0 #ddd;box-shadow: 0 1px 0 #DDD;">';content=content+'<a id="'+parent.attr("id")+'" class="sq_news" href="'+parent.attr("href")+'" title="'+parent.find(".sq_news_title").html()+'" >'+parent.find(".sq_news_title").html()+"</a>";content=content+'<div class="sq_news_text" style="font-style:italic;color: #333;">'+parent.find(".sq_news_text").html()+"</div>";content=content+"</div>"}if(as==="reference"){content='<a class="sq_news" href="'+parent.attr("href")+'" rel="nofollow" title="'+parent.attr("header")+'" style="font-style:italic;color: #333;">'+$.sq_getDomain(parent.attr("href"),[1,7,8,10])+"</a>"}return'<div id="bl'+Math.floor(Math.random()*1e3)+'">'+content+"</div>"+$.sq_config.after_insert};$this.packlocal=function(parent,as){var content="";if(as==="box"){content='<div class="sq_local_content" style="position: relative;clear: both;background: white;font-size: 14px;color: #333;max-width: 500px;margin: 5px auto 5px auto;padding: 13px;border: 1px solid #DDD;-webkit-box-shadow: 0 1px 0 #DDD;-moz-box-shadow: 0 1px 0 #ddd;box-shadow: 0 1px 0 #DDD;">';content=content+'<a id="'+parent.attr("id")+'" class="sq_local" href="'+parent.attr("href")+'" title="'+parent.find(".sq_local_title").html()+'" style="display: block;font-weight: 700;color: #0074B7;line-height: 1.4em;margin-bottom: 5px;text-decoration: none;">'+parent.find(".sq_local_title").html()+"</a>";content=content+'<div class="sq_local_text" style="font-style:italic;color: #333;">'+parent.find(".sq_local_text").html()+"</div>";content=content+"</div>";content='<div id="lo'+Math.floor(Math.random()*1e3)+'">'+content+"</div>"+$.sq_config.after_insert}if(as==="reference"){content='<a class="sq_local" href="'+parent.attr("href")+'" title="'+parent.attr("header")+'" >'+decodeURIComponent(parent.attr("href"))+"</a>";content='<div id="lo'+Math.floor(Math.random()*1e3)+'" style="font-style:italic;color: #333;">'+content+"</div>"+$.sq_config.after_insert}if(as==="link"){content='<a href="'+parent.attr("href")+'" title="'+parent.attr("header")+'" style="font-style:italic;color: #333;">'+decodeURIComponent(parent.attr("href"))+"</a>"}return content};$this.formatDate=function(date){var mm=date.getMonth()+1;var dd=date.getDate();var yyyy=date.getFullYear();mm=mm<10?"0"+mm:mm;return mm+"."+dd+"."+yyyy};$this.showTypeHelp=function(type){$this.find(".sq_type_help").hide();$this.find(".sq_type_"+type+"_help").show()};$this.refreshSearch=function(type){settings.type=type;$this.getSearch(type,0)};$this.previewBlog=function(parent,filter){if($.sq_fields.sq_blog_preview===null)return;$.post($.sq_config.ajaxurl,{action:"sla_preview",sq_nonce:$.sq_config.sq_nonce,filter:filter?"&filter=1":"&filter=0",link:parent.attr("href"),output:"json"}).done(function(response){if(typeof response.error!=="undefined"){$.sq_fields.sq_blog_preview.removeClass("sq_error").sq_doneloading();$.sq_fields.sq_blog_preview.attr("href",response.link);$.sq_fields.sq_blog_preview.find("#sq_blog_preview_title").html($.sq_config.__nofound);$.sq_fields.sq_blog_preview.find("#sq_blog_preview_body").html($.sq_config.__nofound)}else if(typeof response.data!=="undefined"&&response.data.content!==""){$.sq_fields.sq_blog_preview.removeClass("sq_error").sq_doneloading();$.sq_fields.sq_blog_preview.attr("href",response.link);$.sq_fields.sq_blog_preview.find("#sq_blog_preview_title").html(response.data.title);$.sq_fields.sq_blog_preview.find("#sq_blog_preview_body").html(response.data.content);$.sq_fields.sq_blog_preview.find("#sq_blog_preview_body p").each(function(){$(this).removeClass()});var ptext;$.sq_fields.sq_blog_preview.find(".sq_blog_option").off("click").on("click",function(){ptext=$(this).parent("p").clone();ptext=ptext.find(".sq_blog_option").remove();ptext=ptext.end().html();if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:ptext+$this.packblog($.sq_fields.sq_blog_preview,"reference")});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click")}else{$.sq_editor.insert(ptext+$this.packblog($.sq_fields.sq_blog_preview,"reference"))}});$.sq_fields.sq_blog_preview.find("#sq_blog_preview_body a").each(function(){$(this).attr("target","_blank")});$.sq_fields.sq_blog_preview.find(".editsection").hide()}else{$.sq_fields.sq_blog_preview.remove()}$.sq_fields.sq_blog_preview.find("#sq_blog_preview_close").off(event).on(event,function(){$.sq_fields.sq_blog_preview.remove()})}).fail(function(){$.sq_fields.sq_blog_preview.remove()})};$this.showNotOptimized=function(){$("#sq_nokeyword").show()};$this.hideNotOptimized=function(){$("#sq_publish_alert").hide()};$this.handleKey=function(event,gsuggestion_index){if(event.keyCode===$.ui.keyCode.UP&&gsuggestion_index>0){gsuggestion_index--}else if(event.keyCode===$.ui.keyCode.DOWN&&gsuggestion_index<$(".sq_gsuggestion .sq_item_gsuggestion").length){gsuggestion_index++}else{gsuggestion_index=0}$(".sq_gsuggestion .sq_item_gsuggestion").removeClass("sq_item_active");if(gsuggestion_index>0){var item_active=$(".sq_gsuggestion .sq_item_gsuggestion:nth-child("+gsuggestion_index+")");item_active.addClass("sq_item_active");$.sq_fields.sq_keyword.val(item_active.html())}return gsuggestion_index};$this.hideOptions=function(){if(settings.timeout){clearTimeout(settings.timeout);clearTimeout(settings.calltime)}if(settings.gtimeout){clearTimeout(settings.gtimeout)}if(settings.ajaxCall)settings.ajaxCall.abort()};$this.prepareParam=function(response,keyword){var j;var param={rank:-1,note:-1,stats:[]};if($.sq_isArray(response)){var responselen=response.length;for(j=0;j<responselen;j++){if($.sq_strEqual(keyword,response[j].keyword)){param.rank=response[j].stats.rank.value;param.note=response[j].note;param.stats=[response[j].stats.tw,response[j].stats.sv,response[j].stats.sc,response[j].stats.td];break}}}return param};$this.addTag=function(){if($.sq_config.sq_keywordtag==1){$("#new-tag-post_tag").val($.sq_config.keyword);$("input.tagadd").trigger("click")}};$this.sq_eventssearch={checkKeywordSet:function(){if($.sq_fields.sq_keyword.val()!==""){$.sq_config.keyword=$.sq_fields.sq_keyword.val();$.sq_fields.sq_selectit.trigger("click");$.sq_fields.sq_keyword_score.html("0%");$(".sq_keyword").show();if($.sq_config.firsttime){$.sq_fields.sq_box_maximize.trigger("click")}}if($.sq_config.keyword===""&&$(".sq_snippet_keywords").length>0){var snipet_keywords=$(".sq_snippet_keywords").text().split(",");if(snipet_keywords.length>0){$.sq_config.keyword=snipet_keywords[0];$.sq_fields.sq_keyword.val($.sq_config.keyword);$.sq_fields.sq_selectit.trigger("click")}}if($.sq_config.keyword===""){$this.hideTypes();$.sq_blockseo.overlay();$this.hideOptions();$this.showNotOptimized()}$this.initialFieldValue($.sq_fields.sq_keyword,"black","gray");$.sq_fields.div_blockseo.trigger("seo.keyword_loaded")},listen:function(){$.post($.sq_config.ajaxurl,{action:"sla_keywords",sq_nonce:$.sq_config.sq_nonce,post_id:$.sq_config.postID}).done(function(response){if(typeof $.sq_fields.sq_keyword==="undefined"){$.sq_setfields()}if(typeof response.data!=="undefined"){if(typeof response.data.keyword!=="undefined"){if(response.data.keyword===null){$.sq_config.firsttime=true;$this.sq_eventssearch.checkKeywordSet()}else{$.sq_config.firsttime=false;if($.sq_fields.sq_keyword.val()===""){$.sq_fields.sq_keyword.val(decodeURIComponent(response.data.keyword))}$this.sq_eventssearch.checkKeywordSet()}}}$.sq_fields.sq_preloading_keyword.hide();$.sq_fields.sq_blocktabs.show();$.sq_fields.div_blockbriefacse.show();$this.trigger("seo.keyword_loaded")}).fail(function(error){$.sq_fields.sq_preloading.show()});$.sq_fields.sq_keyword.on("keypress",function(event){if(event.keyCode===$.ui.keyCode.ENTER){$.sq_fields.sq_keyword_check.trigger("click")}return event.keyCode!==$.ui.keyCode.ENTER});$.sq_fields.sq_keyword.on("keyup",function(event){if(event.keyCode!==$.ui.keyCode.ENTER&&event.keyCode!==$.ui.keyCode.UP&&event.keyCode!==$.ui.keyCode.DOWN&&event.keyCode!==$.ui.keyCode.ESCAPE){if($.sq_fields.sq_keyword.val()!==""&&$.sq_config.keyword!==$.sq_clearText($.sq_fields.sq_keyword.val())){if($.sq_fields.sq_keyword.val()!==""){$.sq_config.keyword=$.sq_fields.sq_keyword.val();$.sq_blockseo.checkKeyword();$this.init()}else{$this.hideOptions()}$.sq_blockseo.overlay();$this.hideSearch()}}else if(event.keyCode===$.ui.keyCode.ESCAPE){if($.sq_fields.sq_keyword.val()!==""){$this.hideOptions()}}});$.sq_fields.sq_keyword.on("click",function(){if($.sq_fields.sq_keyword.val()===""){$this.hideOptions()}});$.sq_fields.sq_keyword_check.off("click").on("click",function(){if($.sq_fields.sq_keyword.val()!==""){$.sq_fields.sq_selectit.trigger("click")}});$.sq_fields.sq_selectit.off("click").on("click",function(){$.sq_config.manual=true;$("#sq_keyword_second").val("");if($.sq_fields.sq_keyword.val()!==""){$.sq_config.keyword=$.sq_fields.sq_keyword.val()}if($.sq_config.keyword!==""){if($("#sq_blocksnippet").find("input[name=sq_keyword]").length){$("#sq_blocksnippet").find("input[name=sq_keyword]").val($.sq_config.keyword)}$this.showTypes();$.sq_blockseo.load();$.sq_blockseo.closeOverlay();$this.trigger("seo.keyword_selected");$(".sq_request_highlight_key").html($.sq_config.keyword);$.sq_fields.sq_type_img.trigger("click");$this.hideNotOptimized()}if($.sq_fields.wp_content_wrap.length>0){if($.sq_fields.wp_content_wrap.attr("class").indexOf("html-active")==-1){$this.showActiveEditor()}}});$.sq_fields.sq_type_img.off("click").on("click",function(){$.sq_fields.sq_types.find("li").removeClass("sq_active");$(this).addClass("sq_active");$this.showTypeHelp("img");$this.refreshSearch("img")});$.sq_fields.sq_type_twitter.off("click").on("click",function(){$.sq_fields.sq_types.find("li").removeClass("sq_active");$(this).addClass("sq_active");$this.showTypeHelp("twitter");$this.refreshSearch("twitter")});$.sq_fields.sq_type_news.off("click").on("click",function(){$.sq_fields.sq_types.find("li").removeClass("sq_active");$(this).addClass("sq_active");$this.showTypeHelp("twitter");$this.refreshSearch("news")});$.sq_fields.sq_type_blog.off("click").on("click",function(){$.sq_fields.sq_types.find("li").removeClass("sq_active");$(this).addClass("sq_active");$this.showTypeHelp("blog");$this.refreshSearch("blog")});$.sq_fields.sq_type_wiki.off("click").on("click",function(){$.sq_fields.sq_types.find("li").removeClass("sq_active");$(this).addClass("sq_active");$this.showTypeHelp("wiki");$this.refreshSearch("wiki")});$.sq_fields.sq_type_local.off("click").on("click",function(){$.sq_fields.sq_types.find("li").removeClass("sq_active");$(this).addClass("sq_active");$this.showTypeHelp("local");$this.refreshSearch("local")});$.sq_fields.sq_search_img_nolicence.off("click").on("click",function(){var licence=1;if($.sq_fields.sq_search_img_nolicence.is(":checked")){$("#sq_search_img_nolicence_label").attr("class","checked");licence=1}else{$("#sq_search_img_nolicence_label").removeClass("checked");licence=0}$this.refreshSearch("img")});$(".wp-switch-editor").on("click",function(){if(this.id.indexOf("tmce")!==-1){$this.sq_eventssearch.listenMCE()}else{$this.sq_eventssearch.listenHTML()}});$("#qt_content_fullscreen, .mce-i-wp_fullscreen").on("click",function(){$(".mce-btn").find("i").on("click",function(){$this.sq_eventssearch.listenMCE()});$(".wp-fullscreen-mode-tinymce").on("click",function(){$this.sq_eventssearch.listenMCE();$(".media-modal").find("a").on("click",function(){$this.sq_eventssearch.listenMCE()})});$(".wp-fullscreen-mode-html").on("click",function(){$this.sq_eventssearch.listenHTML();$(".media-modal").find("a").on("click",function(){$this.sq_eventssearch.listenHTML()})})});$("#wp-fullscreen-close, .mce-i-bold, .media-button").find("a").on("click",function(){if($.sq_fields.wp_content_wrap.length>0&&$.sq_fields.wp_content_wrap.attr("class").indexOf("html-active")!==-1){$.sq_blockseo.sq_eventsseo.listenHtml()}else{$.sq_blockseo.sq_eventsseo.listenTinymce()}})},listenMCE:function(){$this.showActiveEditor();$.sq_blockseo.sq_eventsseo.stopListenHtml();$.sq_blockseo.sq_eventsseo.listenTinymce();$.sq_fields.sq_selectit.trigger("click")},listenHTML:function(){$.sq_blockseo.sq_eventsseo.stopListenTinymce();$.sq_blockseo.sq_eventsseo.listenHtml();$.sq_fields.sq_selectit.trigger("click")}};$this.one("seo.loaded",function(){SQ_DEBUG&&console.log("sq_blocksearch seo.loaded");$this.sq_eventssearch.listen()});return $this}})(jQuery);
1
+ (function($){"use strict";if($.isFunction($.fn.sq_blocksearch)){return}$.fn.sq_blocksearch=function(options){var $this=this;var settings=$.extend({type:"img",delay:1e3,processing:null,timeout:null,ajaxCall:null,gtimeout:null},options);$.sq_fields=$.extend({sq_publish_alert:$this.find("#sq_publish_alert"),sq_more:$this.find(".sq_more"),sq_keywords_research_clear:$(".sq_keywords_research_clear"),sq_keywords_research_submit:$(".sq_keywords_research_submit")},$.sq_fields);$this.init=function(){if($.sq_config.keyword===""){$.sq_blockseo.close();$this.hideTypes()}};$this.hideTypes=function(){$.sq_fields.sq_types.hide();$this.hideSearch()};$this.showTypes=function(){$.sq_fields.sq_types.show()};$this.showActiveEditor=function(){var ed=$.sq_editor.getTinymceEditor();$.sq_tinymce.addEvents(ed)};$this.hideSearch=function(){$.sq_fields.sq_search.hide();$.sq_fields.sq_search_img_filter.hide()};$this.showSearch=function(){$.sq_fields.sq_search.html("");$.sq_fields.sq_search.show();$.sq_fields.sq_search_img_filter.hide()};$this.showNoResults=function(header,keyword){$this.showSearch();$.sq_fields.sq_search.addClass("sq_error").html('<span class="sq_show_mgs">'+$.sq_config.__nofound+"</span>");if(typeof header!=="undefined"&&typeof keyword!=="undefined"&&header===1){$this.addHeaderSearch(keyword)}};$this.addHeaderSearch=function(keyword){if(typeof keyword==="undefined")keyword="";if(!$.sq_fields.sq_search.find("#sq_search_second").length){$.sq_fields.sq_search.prepend('<div id="sq_search_second" style="display: none"><input type="text" id="sq_keyword_second" placeholder="Search for new keyword..." '+($.sq_strEqual($.sq_config.keyword,keyword)||keyword===""?'value=""':'value="'+keyword+'"')+' autocomplete="off" /><input type="button" id="sq_keyword_second_check" value=">"/></div>')}$.sq_fields.sq_search_second=$this.find("#sq_search_second");$.sq_fields.sq_keyword_second=$this.find("#sq_keyword_second");$.sq_fields.sq_keyword_second_check=$this.find("#sq_keyword_second_check");if($.sq_strEqual($.sq_config.keyword,keyword)){if(!$.sq_fields.sq_search.find(".sq_search_notrelevant").length){$.sq_fields.sq_search.prepend('<a href="javascript:void(0);" class="sq_search_notrelevant">'+$.sq_config.__notrelevant+"</a>");$this.find(".sq_search_notrelevant").on("click",function(){$.sq_fields.sq_search_second.show();$.sq_fields.sq_keyword_second.focus();$(this).hide()})}}else{$.sq_fields.sq_search_second.show();$.sq_fields.sq_keyword_second.focus()}$this.initialFieldValue($.sq_fields.sq_keyword_second,"black","gray");$.sq_fields.sq_keyword_second.on("keypress",function(event){if(event.keyCode===$.ui.keyCode.ENTER)$.sq_fields.sq_keyword_second_check.trigger("click");return event.keyCode!==$.ui.keyCode.ENTER});$.sq_fields.sq_keyword_second_check.on("click",function(){if($.sq_fields.sq_keyword_second.val()!==""){$this.refreshSearch(settings.type)}})};$this.initialFieldValue=function(field,active_color,inactive_color){if(field.hasClass("default")){field.css("color",inactive_color);var default_values=[];field.focus(function(){if(!default_values[this.id]){default_values[this.id]=this.value}if($.sq_strEqual(this.value,default_values[this.id])){this.value="";this.style.color=active_color}$(this).blur(function(){if(this.value===""){this.style.color=inactive_color;this.value=default_values[this.id]}})})}};$this.getSearch=function(type,start,extra_params){var keyword;if(settings.ajaxCall)settings.ajaxCall.abort();if($.sq_fields.sq_keyword_second.length>0&&$.sq_fields.sq_keyword_second.val()!==""){keyword=$.sq_fields.sq_keyword_second.val()}else{keyword=$.sq_config.keyword}var action="sla_customcall";var params="";var url="";if(typeof start==="undefined")start=0;if(start===0){$this.showSearch()}switch(type){case"img":if($.sq_fields.sq_search_img_nolicence.is(":checked")){url="api/research/ib/images";params="page="+(start/$.sq_config.nrb+1)+"&nrb="+$.sq_config.nrb+"&hl="+$.sq_config.language+"&q="+keyword}else{url="api/research/ib/gimages";params="page="+start+"&rpp="+$.sq_config.nrb+"&hl="+$.sq_config.language+'&q="'+keyword+'"'}break;case"twitter":url="api/research/ib/twitter";params="page="+(start/$.sq_config.nrb+1)+"&rpp="+$.sq_config.nrb+"&hl="+$.sq_config.language+"&q="+keyword;break;case"blog":url="api/research/ib/blog";params="page="+start+"&rpp="+$.sq_config.nrb+"&hl="+$.sq_config.language+'&q="'+keyword+'"';break;case"wiki":url="api/research/ib/wiki";params="&page="+(start/$.sq_config.nrb+1)+"&rpp="+$.sq_config.nrb+"&hl="+$.sq_config.language+"&q="+keyword;break;case"local":action="sq_ajax_search_blog";url="";params="nrb="+$.sq_config.nrb+"&sq_nonce="+$.sq_config.sq_nonce+"&exclude="+$.sq_config.postID+"&q="+keyword+"&start="+start;params="nrb="+$.sq_config.nrb+"&sq_nonce="+$.sq_config.sq_nonce+"&exclude="+$.sq_config.postID+"&q="+keyword+"&start="+start;break}if(typeof extra_params!=="undefined")params=params+"&"+extra_params;var cached=$.sq_getCache(url+params);if(cached){$this.showResults(keyword,cached,type,start)}else{$.sq_fields.sq_search.html('<span class="sq_show_mgs">'+$.sq_config.__searching+"</span>");settings.ajaxCall=$.post($.sq_config.ajaxurl,{action:action,sq_nonce:$.sq_config.sq_nonce,url:url,params:params}).done(function(response){$(".sq_show_mgs").remove();if(response instanceof Object){$this.showResults(keyword,response,type,start);$.sq_setCache(url+"?"+params,response)}else{$.sq_fields.sq_search.sq_doneloading().addClass("sq_error");if(start==0){$this.showNoResults(1,keyword)}else{$this.showNoResults(0)}}if(type==="img")$.sq_fields.sq_search_img_filter.show()}).fail(function(response){if(response.status===200&&response.responseText.indexOf("{")>0){response.responseText=response.responseText.substr(response.responseText.indexOf("{"),response.responseText.lastIndexOf("}"));try{response=$.parseJSON(response.responseText);if(response instanceof Object){$this.showResults(keyword,response,type,start);$.sq_setCache(url+params,response)}else{$.sq_fields.sq_search.sq_doneloading().addClass("sq_error");if(start===0){$this.showNoResults(1,keyword)}else{$this.showNoResults(0)}}if(type==="img")$.sq_fields.sq_search_img_filter.show()}catch(e){}}else{$.sq_fields.sq_search.sq_doneloading().addClass("sq_error");if(start===0){$this.showNoResults(1,keyword)}else{$this.showNoResults(0)}}if(type==="img")$.sq_fields.sq_search_img_filter.show()})}};$this.showResults=function(keyword,response,type,start){var items=[];var date;var domainName;$.sq_fields.sq_search.sq_doneloading().removeClass("sq_error");if(type==="img"){if(typeof response.data.responseData!=="undefined"&&typeof response.data.responseData.results!=="undefined"&&response.data.responseData.results.length>0){$.each(response.data.responseData.results,function(key,val){if(typeof val["detail"]!=="undefined"&&val["detail"]!==""){val["detail"]=val["detail"].replace(/\[a href=([^\]]*) title=([^\]]*)\]/,"$1")}items.push('<li class="sq_search_img_li" id="sq_search_img_li'+key+'" src="'+val["url"]+'" width="'+val["width"]+'" height="'+val["height"]+'" '+(typeof val["attribute"]!=="undefined"&&val["attribute"]!==""?'attribute="'+val["attribute"]+'"':"")+" >"+(typeof val["attribute"]!=="undefined"?val["attribute"]!==""?'<span class="sq_attribute" title="'+$.sq_config.__has_attributes+'">A</span>':'<span class="sq_attribute " title="'+$.sq_config.__no_attributes+'">N</span>':"")+'<img id="sq_search_img'+key+'" src="'+val["tbUrl"]+'" '+(typeof val["detail"]!=="undefined"&&val["detail"]!==""?'title="'+val["detail"]+'"':"")+' alt="'+val["contentNoFormatting"]+'" /></li>')})}else $this.showNoResults()}if(type==="twitter"){if(typeof response.data!=="undefined"&&response.data.length>0)$.each(response.data,function(key,val){date=new Date(val["created_at"]);date=$this.formatDate(date);items.push('<li class="sq_search_twitter_li sq_search_li" id="t_'+val["id"]+'" href="https://twitter.com/'+val["from_user"]+'"><a href="https://twitter.com/'+val["from_user"]+'" title="'+val["text"]+'" target="_blank" ><img src="'+val["profile_image_url"]+'" alt="'+val["from_user"]+'" class="sq_author_avatar" /></a><div class="sq_quote_content"><div class="sq_quote_author"><span class="sq_author_name">'+val["from_user"]+'</span></div> <div class="sq_quote_text truncated">'+val["text"]+'</div></div><div class="sq_info"><ul><li>'+$.sq_config.__date+": "+date+'</li></ul></div><div class="sq_attribution"><ul><li class="sq_insert">'+$.sq_config.__insertit+"</li></ul></div></li>")});else $this.showNoResults()}if(type==="blog"){if(typeof response!=="undefined"&&typeof response.data.results!=="undefined"&&response.data.results.length>0)$.each(response.data.results,function(key,val){domainName='<a href="'+val["url"]+'" target="_blank">'+val["visibleUrl"]+"</a>";items.push('<li class="sq_search_blog_li sq_search_li" id="b_'+key+'" href="'+val["url"]+'" header="'+val["titleNoFormatting"]+'" ><div class="sq_news_content"><div class="sq_news_title">'+val["titleNoFormatting"]+'</div><div class="sq_news_text">'+val["content"]+'</div><div class="sq_info"><ul><li>source: '+domainName+'</li></ul></div></div><div class="sq_attribution"><ul><li class="sq_read">'+$.sq_config.__readit+'</li><li class="sq_insert">'+$.sq_config.__insertasbox+'</li><li class="sq_reference">'+$.sq_config.__reference+"</li></ul></div></li>")});else $this.showNoResults()}if(type==="wiki"){var wikihref="//"+$.sq_config.language.substr(0,2)+".wikipedia.org/wiki/";if(typeof response.data.results!=="undefined"&&response.data.results.length>0)$.each(response.data.results,function(key,val){date=new Date(val.timestamp);date=$this.formatDate(date);items.push('<li class="sq_search_wiki_li sq_search_li" id="w_'+key+'" href="'+wikihref+val.title.replace(/ /g,"_")+'" ><div class="sq_wiki_content"><div class="sq_wiki_title">'+val.title+'</div><div class="sq_wiki_text truncated">'+val.snippet+'</div><div class="sq_info"><ul><li>'+$.sq_config.__date+": "+date+'</li></ul></div><div class="sq_attribution"><ul><li class="sq_read">'+$.sq_config.__readit+'</li><li class="sq_insert">'+$.sq_config.__insertit+"</li></ul></div></li>")});else $this.showNoResults()}if(type==="local"){if(typeof response.results!=="undefined"&&response.results.length>0)$.each(response.results,function(key,val){date=new Date(val.date);date=$this.formatDate(date);items.push('<li class="sq_search_local_li sq_search_li" id="l_'+val["id"]+'" href="'+val["url"]+'" header="'+val["title"]+'" ><div class="sq_local_content"><div class="sq_local_title">'+val["title"]+'</div><div class="sq_local_text truncated">'+val["content"]+'</div><div class="sq_info"><ul><li>'+$.sq_config.__date+": "+date+'</li></ul></div><div class="sq_attribution"><ul><li class="sq_insert">'+$.sq_config.__insertit+'</li><li class="sq_reference">'+$.sq_config.__reference+'</li><li class="sq_link">'+$.sq_config.__addlink+"</li></ul></div></li>")});else $this.showNoResults()}if(items.length>0){if(start===0){$.sq_fields.sq_search.append($("<ul/>",{html:items.join("")}));$this.addHeaderSearch(keyword)}else{$.sq_fields.sq_search.find("ul").first().append(items.join(""))}$this.addEvents("click",type,start)}else{if(start===0){$this.showNoResults(1,keyword)}else{$this.showNoResults(0)}}if($.sq_fields.sq_more.length>0){$.sq_fields.sq_more.html("<span />");$.sq_fields.sq_more.sq_doneloading();$.sq_fields.sq_more.on("click");if(items.length<$.sq_config.nrb)$.sq_fields.sq_more.hide()}$this.find(".sq_search li.sq_search_li .sq_attribution > ul").show()};$this.addEvents=function(event,type,start){if(type==="img"){$this.find("li.sq_search_img_li img").off(event).on(event,function(){if($.sq_isGutenberg()){var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(wp.blocks.createBlock("core/image",{url:$(this).parent("li").attr("src"),className:"sq_image",alt:$.sq_config.keyword.replace(/\"/g,"")}),undefined);$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packimg($(this).attr("id"),$(this).parent("li").attr("src"),$(this).parent("li")));if(typeof $(this).parent("li").attr("attribute")!=="undefined"&&typeof $.sq_config.__sq_photo_copyright!=="")$.sq_editor.insert($.sq_config.__sq_photo_copyright.replace("%s",$(this).parent("li").attr("attribute")))}});$this.find("li.sq_search_img_li img").on("dragstart",function(event){if($.sq_config.editor_type==="html"){event.originalEvent.dataTransfer.setData("text/plain",$(this).parent("li").html())}});$.sq_fields.sq_search_img_filter.show()}if(type==="twitter"){$this.find("li.sq_search_twitter_li .sq_insert").off(event).on(event,function(){if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:$this.packtweet($(this).parents("li:last"))});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click");$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packtweet($(this).parents("li:last")))}})}if(type==="wiki"){$this.find("li.sq_search_wiki_li .sq_insert").off(event).on(event,function(){if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:$this.packwiki($(this).parents("li:last"))});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click");$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packwiki($(this).parents("li:last")))}});$this.find(".sq_read").off(event).on(event,function(){$("body").after($.sq_fields.sq_blog_preview);$.sq_fields.sq_blog_preview.sq_loading();$.sq_fields.sq_blog_preview.find("#sq_blog_preview_title").html("&nbsp;");$.sq_fields.sq_blog_preview.find("#sq_blog_preview_body").html("");$.sq_fields.sq_blog_preview.find("#sq_blog_preview_close").off(event).on(event,function(){$.sq_fields.sq_blog_preview.remove()});$this.previewBlog($(this).parents("li:last"),false)})}if(type==="news"||type==="blog"){$this.find("li.sq_search_blog_li .sq_insert").off(event).on(event,function(){if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:$this.packblog($(this).parents("li:last"),"box")});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click");$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packblog($(this).parents("li:last"),"box"))}});$this.find("li.sq_search_blog_li .sq_reference").off(event).on(event,function(){if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:$this.packblog($(this).parents("li:last"),"reference")});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click");$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packblog($(this).parents("li:last"),"reference"))}});$this.find(".sq_read").off(event).on(event,function(){$("body").after($.sq_fields.sq_blog_preview);$.sq_fields.sq_blog_preview.sq_loading();$.sq_fields.sq_blog_preview.find("#sq_blog_preview_title").html("&nbsp;");$.sq_fields.sq_blog_preview.find("#sq_blog_preview_body").html("");$.sq_fields.sq_blog_preview.find("#sq_blog_preview_close").off(event).on(event,function(){$.sq_fields.sq_blog_preview.remove()});$this.previewBlog($(this).parents("li:last"),true)})}if(type==="local"){$this.find("li.sq_search_local_li .sq_insert").off(event).on(event,function(){if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:$this.packlocal($(this).parents("li:last"),"box")});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click");$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packlocal($(this).parents("li:last"),"box"))}});this.find("li.sq_search_local_li .sq_reference").off(event).on(event,function(){if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:$this.packlocal($(this).parents("li:last"),"reference")});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click");$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packlocal($(this).parents("li:last"),"reference"))}});this.find("li.sq_search_local_li .sq_link").off(event).on(event,function(){if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:$this.packlocal($(this).parents("li:last"),"link")});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click");$.sq_blockseo.callback()}else{$.sq_editor.insert($this.packlocal($(this).parents("li:last"),"link"))}})}if(start===0){$.sq_fields.sq_search.append('<div class="sq_more"><span /></div>');$.sq_fields.sq_more=$this.find(".sq_more")}$.sq_fields.sq_more.off("click").on("click",function(){$(this).html("");$(this).sq_loading();$(this).off("click");$this.getSearch(type,start+$.sq_config.nrb)})};$this.pack=function(html){return'<div class="sq_box">'+html+"<div>"};$this.packimg=function(id,src,parent){if(id!==""){var content='<img src="'+src+'" id="img'+Math.floor(Math.random()*1e3)+'" class="aligncenter size-medium sq_image" width="'+(parent.attr("width")>500?"500":parent.attr("width"))+'" alt="'+$.sq_config.keyword.replace(/\"/g,"")+'" title="'+$.sq_config.keyword.replace(/\"/g,"")+'" />';return content}return""};$this.packtweet=function(parent){var content="";content='<div class="sq_quote_content" style="position: relative;clear: both;background: white;font-size: 14px;color: #333;max-width: 500px;margin: 5px auto 5px auto;padding: 13px;border: 1px solid #DDD;-webkit-box-shadow: 0 1px 0 #DDD;-moz-box-shadow: 0 1px 0 #ddd;box-shadow: 0 1px 0 #DDD;">';content=content+'<a id="'+parent.attr("id")+'" class="sq_tweet" href="'+parent.attr("href")+'" title="'+parent.find(".sq_author_avatar").attr("alt")+'" style="display: block;float: left;width: 48px;height: 48px;padding: 1px;margin: 0;border: 1px solid #DDD;" ><img class="sq_author_avatar" src="'+parent.find(".sq_author_avatar").attr("src")+'" alt="'+parent.find(".sq_author_avatar").attr("alt")+'" /></a>';content=content+'<div class="sq_quote_text" style="margin-left: 62px;line-height: 1.5em;padding-left: 21px;min-height: 52px;font-style:italic;">'+parent.find(".sq_quote_text").html()+"</div>";content=content+"</div>";return'<div id="tw'+Math.floor(Math.random()*1e3)+'" >'+content+"</div>"+$.sq_config.after_insert};$this.packwiki=function(parent){var content="";content='<div class="sq_wiki_content" style="position: relative;clear: both;background: white;font-size: 14px;color: #333;max-width: 500px;margin: 5px auto 5px auto;padding: 13px;border: 1px solid #DDD;-webkit-box-shadow: 0 1px 0 #DDD;-moz-box-shadow: 0 1px 0 #ddd;box-shadow: 0 1px 0 #DDD;">';content=content+'<a id="'+parent.attr("id")+'" class="sq_wiki" href="'+parent.attr("href")+'" title="'+parent.find(".sq_wiki_title").html()+'" style="display: block;font-weight: 700;color: #0074B7;line-height: 1.4em;margin-bottom: 5px;text-decoration: none;">'+parent.find(".sq_wiki_title").html()+"</a>";content=content+'<div class="sq_wiki_text" style="font-style:italic;color: #333;">'+parent.find(".sq_wiki_text").html()+"</div>";content=content+"</div>";return'<div id="wi'+Math.floor(Math.random()*1e3)+'">'+content+"</div>"+$.sq_config.after_insert};$this.packblog=function(parent,as){var content="";if(as==="box"){content='<div class="sq_blog_content" style="position: relative;clear: both;background: white;font-size: 14px;color: #333;max-width: 500px;margin: 5px auto 5px auto;padding: 13px;border: 1px solid #DDD;-webkit-box-shadow: 0 1px 0 #DDD;-moz-box-shadow: 0 1px 0 #ddd;box-shadow: 0 1px 0 #DDD;">';content=content+'<a id="'+parent.attr("id")+'" class="sq_news" href="'+parent.attr("href")+'" title="'+parent.find(".sq_news_title").html()+'" >'+parent.find(".sq_news_title").html()+"</a>";content=content+'<div class="sq_news_text" style="font-style:italic;color: #333;">'+parent.find(".sq_news_text").html()+"</div>";content=content+"</div>"}if(as==="reference"){content='<a class="sq_news" href="'+parent.attr("href")+'" rel="nofollow" title="'+parent.attr("header")+'" style="font-style:italic;color: #333;">'+$.sq_getDomain(parent.attr("href"),[1,7,8,10])+"</a>"}return'<div id="bl'+Math.floor(Math.random()*1e3)+'">'+content+"</div>"+$.sq_config.after_insert};$this.packlocal=function(parent,as){var content="";if(as==="box"){content='<div class="sq_local_content" style="position: relative;clear: both;background: white;font-size: 14px;color: #333;max-width: 500px;margin: 5px auto 5px auto;padding: 13px;border: 1px solid #DDD;-webkit-box-shadow: 0 1px 0 #DDD;-moz-box-shadow: 0 1px 0 #ddd;box-shadow: 0 1px 0 #DDD;">';content=content+'<a id="'+parent.attr("id")+'" class="sq_local" href="'+parent.attr("href")+'" title="'+parent.find(".sq_local_title").html()+'" style="display: block;font-weight: 700;color: #0074B7;line-height: 1.4em;margin-bottom: 5px;text-decoration: none;">'+parent.find(".sq_local_title").html()+"</a>";content=content+'<div class="sq_local_text" style="font-style:italic;color: #333;">'+parent.find(".sq_local_text").html()+"</div>";content=content+"</div>";content='<div id="lo'+Math.floor(Math.random()*1e3)+'">'+content+"</div>"+$.sq_config.after_insert}if(as==="reference"){content='<a class="sq_local" href="'+parent.attr("href")+'" title="'+parent.attr("header")+'" >'+decodeURIComponent(parent.attr("href"))+"</a>";content='<div id="lo'+Math.floor(Math.random()*1e3)+'" style="font-style:italic;color: #333;">'+content+"</div>"+$.sq_config.after_insert}if(as==="link"){content='<a href="'+parent.attr("href")+'" title="'+parent.attr("header")+'" style="font-style:italic;color: #333;">'+decodeURIComponent(parent.attr("href"))+"</a>"}return content};$this.formatDate=function(date){var mm=date.getMonth()+1;var dd=date.getDate();var yyyy=date.getFullYear();mm=mm<10?"0"+mm:mm;return mm+"."+dd+"."+yyyy};$this.showTypeHelp=function(type){$this.find(".sq_type_help").hide();$this.find(".sq_type_"+type+"_help").show()};$this.refreshSearch=function(type){settings.type=type;$this.getSearch(type,0)};$this.previewBlog=function(parent,filter){if($.sq_fields.sq_blog_preview===null)return;$.post($.sq_config.ajaxurl,{action:"sla_preview",sq_nonce:$.sq_config.sq_nonce,filter:filter?"&filter=1":"&filter=0",link:parent.attr("href"),output:"json"}).done(function(response){if(typeof response.error!=="undefined"){$.sq_fields.sq_blog_preview.removeClass("sq_error").sq_doneloading();$.sq_fields.sq_blog_preview.attr("href",response.link);$.sq_fields.sq_blog_preview.find("#sq_blog_preview_title").html($.sq_config.__nofound);$.sq_fields.sq_blog_preview.find("#sq_blog_preview_body").html($.sq_config.__nofound)}else if(typeof response.data!=="undefined"&&response.data.content!==""){$.sq_fields.sq_blog_preview.removeClass("sq_error").sq_doneloading();$.sq_fields.sq_blog_preview.attr("href",response.link);$.sq_fields.sq_blog_preview.find("#sq_blog_preview_title").html(response.data.title);$.sq_fields.sq_blog_preview.find("#sq_blog_preview_body").html(response.data.content);$.sq_fields.sq_blog_preview.find("#sq_blog_preview_body p").each(function(){$(this).removeClass()});var ptext;$.sq_fields.sq_blog_preview.find(".sq_blog_option").off("click").on("click",function(){ptext=$(this).parent("p").clone();ptext=ptext.find(".sq_blog_option").remove();ptext=ptext.end().html();if($.sq_isGutenberg()){var sq_block=wp.blocks.createBlock("core/html",{content:ptext+$this.packblog($.sq_fields.sq_blog_preview,"reference")});var ed=$.sq_editor.getBlockEditor("dispatch");if(ed)ed.insertBlock(sq_block,undefined);$("#block-"+sq_block.clientId).find(".editor-block-toolbar").find("button").trigger("click")}else{$.sq_editor.insert(ptext+$this.packblog($.sq_fields.sq_blog_preview,"reference"))}});$.sq_fields.sq_blog_preview.find("#sq_blog_preview_body a").each(function(){$(this).attr("target","_blank")});$.sq_fields.sq_blog_preview.find(".editsection").hide()}else{$.sq_fields.sq_blog_preview.remove()}$.sq_fields.sq_blog_preview.find("#sq_blog_preview_close").off(event).on(event,function(){$.sq_fields.sq_blog_preview.remove()})}).fail(function(){$.sq_fields.sq_blog_preview.remove()})};$this.showNotOptimized=function(){$.sq_fields.sq_keyword_nokeyword.show()};$this.hideNotOptimized=function(){$("#sq_publish_alert").hide()};$this.hideOptions=function(){if(settings.timeout){clearTimeout(settings.timeout);clearTimeout(settings.calltime)}if(settings.gtimeout){clearTimeout(settings.gtimeout)}if(settings.ajaxCall)settings.ajaxCall.abort()};$this.prepareParam=function(response,keyword){var j;var param={rank:-1,note:-1,stats:[]};if($.sq_isArray(response)){var responselen=response.length;for(j=0;j<responselen;j++){if($.sq_strEqual(keyword,response[j].keyword)){param.rank=response[j].stats.rank.value;param.note=response[j].note;param.stats=[response[j].stats.tw,response[j].stats.sv,response[j].stats.sc,response[j].stats.td];break}}}return param};$this.addTag=function(){if($.sq_config.sq_keywordtag==1){$("#new-tag-post_tag").val($.sq_config.keyword);$("input.tagadd").trigger("click")}};$this.sq_eventssearch={checkKeywordSet:function(){if($.sq_fields.sq_keyword.val()!==""){$.sq_config.keyword=$.sq_fields.sq_keyword.val();$.sq_fields.sq_selectit.trigger("click");$.sq_fields.sq_keyword_score.html("0%");$.sq_fields.sq_keyword_div.show();if($.sq_config.firsttime){$.sq_fields.sq_box_maximize.trigger("click")}}if($.sq_config.keyword===""&&$(".sq_snippet_keywords").length>0){var snipet_keywords=$(".sq_snippet_keywords").text().split(",");if(snipet_keywords.length>0){$.sq_config.keyword=snipet_keywords[0];$.sq_fields.sq_keyword.val($.sq_config.keyword);$.sq_fields.sq_selectit.trigger("click")}}if($.sq_config.keyword===""){$this.hideTypes();$this.hideOptions();$this.showNotOptimized()}$this.initialFieldValue($.sq_fields.sq_keyword,"black","gray");$.sq_fields.div_blockseo.trigger("seo.keyword_loaded")},listen:function(){$.post($.sq_config.ajaxurl,{action:"sla_keywords",sq_nonce:$.sq_config.sq_nonce,post_id:$.sq_config.postID}).done(function(response){if(typeof $.sq_fields.sq_keyword==="undefined"){$.sq_setfields()}if(typeof response.data!=="undefined"){if(typeof response.data.keyword!=="undefined"){if(response.data.keyword===null){$.sq_config.firsttime=true;$this.sq_eventssearch.checkKeywordSet()}else{$.sq_config.firsttime=false;if($.sq_fields.sq_keyword.val()===""){$.sq_fields.sq_keyword.val(decodeURIComponent(response.data.keyword))}$this.sq_eventssearch.checkKeywordSet()}}}$.sq_fields.sq_preloading_keyword.hide();$.sq_fields.sq_blocktabs.show();$.sq_fields.div_blockbriefacse.show();$this.trigger("seo.keyword_loaded")}).fail(function(error){$.sq_fields.sq_preloading.show()});$.sq_fields.sq_keyword.on("keypress",function(event){if(event.keyCode===$.ui.keyCode.ENTER){$.sq_fields.sq_keyword_check.trigger("click")}return event.keyCode!==$.ui.keyCode.ENTER});$.sq_fields.sq_keyword.on("keyup",function(event){if(event.keyCode!==$.ui.keyCode.ENTER&&event.keyCode!==$.ui.keyCode.UP&&event.keyCode!==$.ui.keyCode.DOWN&&event.keyCode!==$.ui.keyCode.ESCAPE){if($.sq_fields.sq_keyword.val()!==""&&$.sq_config.keyword!==$.sq_clearText($.sq_fields.sq_keyword.val())){if($.sq_fields.sq_keyword.val()!==""){$.sq_config.keyword=$.sq_fields.sq_keyword.val();$.sq_blockseo.checkKeyword();$this.init()}else{$this.hideOptions()}$this.hideSearch()}}else if(event.keyCode===$.ui.keyCode.ESCAPE){if($.sq_fields.sq_keyword.val()!==""){$this.hideOptions()}}});$.sq_fields.sq_keyword.on("click",function(){if($.sq_fields.sq_keyword.val()===""){$this.hideOptions()}});$.sq_fields.sq_keyword_check.off("click").on("click",function(){if($.sq_fields.sq_keyword.val()!==""){$.sq_fields.sq_selectit.trigger("click")}});$.sq_fields.sq_selectit.off("click").on("click",function(){$.sq_config.manual=true;$("#sq_keyword_second").val("");if($.sq_fields.sq_keyword.val()!==""){$.sq_config.keyword=$.sq_fields.sq_keyword.val()}if($.sq_config.keyword!==""){if($("#sq_blocksnippet").find("input[name=sq_keyword]").length){$("#sq_blocksnippet").find("input[name=sq_keyword]").val($.sq_config.keyword)}$this.showTypes();$.sq_blockseo.load();$this.trigger("seo.keyword_selected");$(".sq_request_highlight_key").html($.sq_config.keyword);$.sq_fields.sq_type_img.trigger("click");$this.hideNotOptimized()}if($.sq_fields.wp_content_wrap.length>0){if($.sq_fields.wp_content_wrap.attr("class").indexOf("html-active")==-1){$this.showActiveEditor()}}});$.sq_fields.sq_type_img.off("click").on("click",function(){$.sq_fields.sq_types.find("li").removeClass("sq_active");$(this).addClass("sq_active");$this.showTypeHelp("img");$this.refreshSearch("img")});$.sq_fields.sq_type_twitter.off("click").on("click",function(){$.sq_fields.sq_types.find("li").removeClass("sq_active");$(this).addClass("sq_active");$this.showTypeHelp("twitter");$this.refreshSearch("twitter")});$.sq_fields.sq_type_news.off("click").on("click",function(){$.sq_fields.sq_types.find("li").removeClass("sq_active");$(this).addClass("sq_active");$this.showTypeHelp("twitter");$this.refreshSearch("news")});$.sq_fields.sq_type_blog.off("click").on("click",function(){$.sq_fields.sq_types.find("li").removeClass("sq_active");$(this).addClass("sq_active");$this.showTypeHelp("blog");$this.refreshSearch("blog")});$.sq_fields.sq_type_wiki.off("click").on("click",function(){$.sq_fields.sq_types.find("li").removeClass("sq_active");$(this).addClass("sq_active");$this.showTypeHelp("wiki");$this.refreshSearch("wiki")});$.sq_fields.sq_type_local.off("click").on("click",function(){$.sq_fields.sq_types.find("li").removeClass("sq_active");$(this).addClass("sq_active");$this.showTypeHelp("local");$this.refreshSearch("local")});$.sq_fields.sq_search_img_nolicence.off("click").on("click",function(){var licence=1;if($.sq_fields.sq_search_img_nolicence.is(":checked")){$("#sq_search_img_nolicence_label").attr("class","checked");licence=1}else{$("#sq_search_img_nolicence_label").removeClass("checked");licence=0}$this.refreshSearch("img")});$(".wp-switch-editor").on("click",function(){if(this.id.indexOf("tmce")!==-1){$this.sq_eventssearch.listenMCE()}else{$this.sq_eventssearch.listenHTML()}});$("#qt_content_fullscreen, .mce-i-wp_fullscreen").on("click",function(){$(".mce-btn").find("i").on("click",function(){$this.sq_eventssearch.listenMCE()});$(".wp-fullscreen-mode-tinymce").on("click",function(){$this.sq_eventssearch.listenMCE();$(".media-modal").find("a").on("click",function(){$this.sq_eventssearch.listenMCE()})});$(".wp-fullscreen-mode-html").on("click",function(){$this.sq_eventssearch.listenHTML();$(".media-modal").find("a").on("click",function(){$this.sq_eventssearch.listenHTML()})})});$("#wp-fullscreen-close, .mce-i-bold, .media-button").find("a").on("click",function(){if($.sq_fields.wp_content_wrap.length>0&&$.sq_fields.wp_content_wrap.attr("class").indexOf("html-active")!==-1){$.sq_blockseo.sq_eventsseo.listenHtml()}else{$.sq_blockseo.sq_eventsseo.listenTinymce()}})},listenMCE:function(){$this.showActiveEditor();$.sq_blockseo.sq_eventsseo.stopListenHtml();$.sq_blockseo.sq_eventsseo.listenTinymce();$.sq_fields.sq_selectit.trigger("click")},listenHTML:function(){$.sq_blockseo.sq_eventsseo.stopListenTinymce();$.sq_blockseo.sq_eventsseo.listenHtml();$.sq_fields.sq_selectit.trigger("click")}};$this.one("seo.loaded",function(){SQ_DEBUG&&console.log("sq_blocksearch seo.loaded");$this.sq_eventssearch.listen()});return $this}})(jQuery);
view/assets/js/assistant/sq_blockseo.min.js CHANGED
@@ -1 +1 @@
1
- (function($){"use strict";if($.isFunction($.fn.sq_blockseo)){return}$.fn.sq_blockseo=function(options){var $this=this;var settings=$.extend({check:[],single_tag:[],double_tag:[],custom_tag:[],custom_tag_id:[],clicked:[]},options);$.sq_fields=$.extend({sq_wp_title_info:$('<span id="sq_wp_title_info" style="display: block; float: right;" />')},$.sq_fields);var seo={title:"",content:""};$this.setContent=function(content){seo.content=content};$this.callback=function(){$.sq_config.manual=true;$.sq_config.silent=false;$.sq_config.briefcase=false;if(typeof $.sq_config.keyword==="undefined"||$.sq_config.keyword==="")return;if($.sq_config.editor_type==="tinymce"){if($.sq_isGutenberg()){ed=$.sq_editor.getBlockEditor("select");if(ed)seo.content=ed.getEditedPostContent()}else if($.sq_config.active_editor&&typeof $.sq_config.active_editor.html=="function"){seo.content=$.sq_config.active_editor.html()}else{ed=$.sq_editor.getIframeEditor();seo.content=ed.html()}}else{if($.sq_isGutenberg()){var ed=$.sq_editor.getBlockEditor("select");if(ed)seo.content=ed.getEditedPostContent()}else if($.sq_isFrontend()){var ed=$.sq_editor.getFrontendEditor();if(ed)seo.content=ed.getPageContent()}else if($.sq_config.active_editor&&typeof $.sq_config.active_editor.val=="function"){seo.content=$.sq_fields.wp_content.val()}else if($.sq_fields.wp_content.length){seo.content=$.sq_fields.wp_content.val()}}$this.trigger("seo.content");$this.checkSEO();$this.trigger("seo.callback")};$this.checkSEO=function(){if(typeof seo.content!=="undefined"&&$.sq_clearText(seo.content)!==""){SQ_DEBUG&&console.log("check keywords in body and tags");$this.checkBody();$this.checkSingleTags();$this.checkCustomTags();$this.checkKPinguinUrl();$this.checkKeyword();if($.sq_fields.wp_thumbnail.length>0){$this.sq_eventsseo.listenMediaLibrary()}else if($("#postimagediv").length>0){$this.checkImage($("#postimagediv"))}else if($.sq_isFrontend()){var ed=$.sq_editor.getFrontendEditor();if(ed){$.sq_blockseo.checkImage($("<div>"+ed.getPageImages()+"</div>"))}}if($(".editor-post-featured-image").length>0){$this.checkImage($(".editor-post-featured-image"))}if($("#visual_composer_content").length>0){$this.sq_eventsseo.listenVComposer()}if($("#fusion_builder_container").length>0){$this.sq_eventsseo.listenFusion()}}if(typeof seo.content!=="undefined"&&($.sq_clearText(seo.content).length>1||$.sq_fields.wp_input_title.length>0&&$.sq_clearText($.sq_fields.wp_input_title.val()).length>1)){if(settings.check.indexOf("~density~")!==-1){$this.keywordDensity($.sq_fields.wp_input_title.val()+" "+seo.content,$.sq_params.low_density,$.sq_params.high_density,"density")}}};$this.checkWpFields=function(){if(typeof $.sq_config.keyword==="undefined"||$.sq_config.keyword==="")return;if($.sq_fields.wp_input_title.length){if($.sq_clearText($.sq_fields.wp_input_title.val()).length>1){SQ_DEBUG&&console.log("check keywords in title: "+$.sq_fields.wp_input_title.val());$this.checkPinguin();$this.checkTitle();if(settings.check.indexOf("~density_title~")!==-1){var id="density_title";if($this.checkWordsLength($.sq_config.keyword,1,100)){if($.sq_strEqual($.sq_fields.wp_input_title.val(),$.sq_config.keyword)){$this.setChecked(true,id)}else{$this.keywordDensity($.sq_fields.wp_input_title.val(),$.sq_params.low_density_title,$.sq_params.high_density_title,"density_title")}}else{$("#sq_"+id+"_val").html($("#sq_"+id+"_longtail").html());$this.setChecked(false,id)}}if(settings.check.indexOf("~density~")!==-1)$this.keywordDensity($.sq_fields.wp_input_title.val()+" "+seo.content,$.sq_params.low_density,$.sq_params.high_density,"density")}}return $this.getPercentCompleted()};$this.load=function(){$.sq_fields.div_blockseo.find(".sq_tasks > ul > li").not(".sq_tasks_category").removeClass("checked");if($.sq_config.timeout_seo){clearTimeout($.sq_config.timeout_seo)}$.sq_config.timeout_seo=setTimeout(function(){$this.checkWpFields();$this.callback()},100)};$this.close=function(){$.sq_fields.div_blockseo.hide()};$this.overlay=function(){if($(".sq_overlay").length==0){$.sq_fields.div_blockseo.prepend('<div class="sq_overlay" data-title="'+$.sq_config.__enter_keyword+'" title="'+$.sq_config.__enter_keyword+'"></div>');$(".sq_overlay").on("click",function(){if($.sq_fields.sq_keyword.val()===""){var previewtop=$.sq_fields.sq_keyword.offset().top-100;if($(".edit-post-layout__content").length>0){$(".edit-post-layout__content").animate({scrollTop:$(".edit-post-layout__content").scrollTop()+previewtop},1e3,function(){$.sq_fields.sq_keyword.focus();$.sq_blocksearch.showEnterKeyword()})}else{$("html,body").animate({scrollTop:previewtop},1e3,function(){$.sq_fields.sq_keyword.focus();$.sq_blocksearch.showEnterKeyword()})}}else{$.sq_fields.sq_selectit.trigger("click")}})}};$this.closeOverlay=function(){$(".sq_overlay").remove()};$this.checkKPinguinUrl=function(){if($("#custom_permalinks_home_url").length>0&&$("#custom_permalink").length>0){if(settings.check.indexOf("~pinguin_url~")!==-1&&$.sq_config.keyword!==""){var slug=$("#custom_permalinks_home_url").val()+" "+$("#custom_permalink").val();$this.setChecked($this.urlMatch(slug,$.sq_config.keyword),"pinguin_url")}}else if($("#editable-post-name-full").length>0){if(settings.check.indexOf("~pinguin_url~")!==-1&&$.sq_config.keyword!==""){var root="";if($("#sample-permalink").length>0){var sample_permalink=$("#sample-permalink").find("a").clone();sample_permalink.find("span").remove();root=sample_permalink.text()}var slug=root+" "+$("#editable-post-name-full").html();$this.setChecked($this.urlMatch(slug,$.sq_config.keyword),"pinguin_url")}}else if($("#new-post-slug").length>0){if(settings.check.indexOf("~pinguin_url~")!==-1&&$.sq_config.keyword!==""){var slug=$("#new-post-slug").val();$this.setChecked($this.urlMatch(slug,$.sq_config.keyword),"pinguin_url")}}else if($("#sample-permalink").length>0){if(settings.check.indexOf("~pinguin_url~")!==-1&&$.sq_config.keyword!==""){var slug=$("#sample-permalink").html().replace(/<\/?[^>]+>/gi," ");$this.setChecked($this.urlMatch(slug,$.sq_config.keyword),"pinguin_url")}}else if($.sq_isGutenberg()){var ed=$.sq_editor.getBlockEditor("select");if(ed){var slug=decodeURIComponent(ed.getPermalink()).replace(/<\/?[^>]+>/gi," ");$this.setChecked($this.urlMatch(slug,$.sq_config.keyword),"pinguin_url")}}};$this.checkKeyword=function(){if(settings.check.indexOf("~longtail_keyword~")!==-1&&$.sq_config.keyword!==""){$this.setChecked($this.checkWordsLength($.sq_config.keyword,2,0),"longtail_keyword")}};$this.checkKPinguin=function(){if(settings.check.indexOf("~pinguin_domain~")!==-1&&$.sq_config.keyword!==""){$this.setChecked(!$this.keywordMatch($.sq_getDomain(document.domain,[8]),$.sq_config.keyword,true),"pinguin_domain")}};$this.checkPinguin=function(){if(settings.check.indexOf("~pinguin_title~")!==-1){var domain=$.sq_getDomain(document.domain,[8])!==""?$.sq_getDomain(document.domain,[8]):document.domain;$this.setChecked(!$this.keywordMatch($.sq_fields.wp_input_title.val(),domain,true),"pinguin_title")}};$this.checkTitle=function(){if($.sq_fields.wp_input_title.length>0){if(settings.check.indexOf("~title_length~")!==-1)$this.setChecked($this.checkLength($.sq_fields.wp_input_title.val(),$.sq_params.min_length_title,$.sq_params.max_length_title),"title_length");if(settings.check.indexOf("~title~")!==-1)$this.setChecked($this.keywordMatch($.sq_fields.wp_input_title.val(),$.sq_config.keyword),"title")}};$this.checkImage=function(_this){$.sq_config.silent=true;var pattern=null;pattern=new RegExp("<img([^>]*)>","gi");if(_this.html()!==""&&$this.checkPattern(pattern)){$this.setChecked(true,"img",true)}else if(_this.html()!==""){SQ_DEBUG&&console.log("Check image in object");if($this.checkPattern(pattern,_this.html())){$this.setChecked($this.checkPattern(pattern,_this.html()).length>0,"img",true)}else{pattern=new RegExp("\\[gallery[^\\]]*ids=[^\\]]*\\]","gi");if($this.checkPattern(pattern)){$this.setChecked($this.checkPattern(pattern).length>0,"img")}else{$this.setChecked(0,"img")}}}pattern=new RegExp('alt="([^"]+)"',"gi");if(!$this.keywordMatch($this.checkPattern(pattern),$.sq_config.keyword)){SQ_DEBUG&&console.log("There is no alt image in content");$this.setChecked($this.keywordMatch($this.checkPattern(pattern,_this.html()),$.sq_config.keyword),"alt")}};$this.handleKey=function(event,gsuggestion_index){if(event.keyCode===$.ui.keyCode.UP&&gsuggestion_index>0){gsuggestion_index--}else if(event.keyCode===$.ui.keyCode.DOWN&&gsuggestion_index<$("#sq_wp_title_suggestion .sq_item_gsuggestion").length){gsuggestion_index++}else{gsuggestion_index=0}$("#sq_wp_title_suggestion .sq_item_gsuggestion").removeClass("sq_item_active");if(gsuggestion_index>0){var item_active=$("#sq_wp_title_suggestion .sq_item_gsuggestion:nth-child("+gsuggestion_index+")");item_active.addClass("sq_item_active");$.sq_fields.wp_input_title.val(item_active.html());$this.checkTitle()}return gsuggestion_index};$this.hideOptions=function(){$("#sq_wp_title_suggestion").remove();$this.checkTitle()};$this.checkBody=function(){var $str=$("<div></div>").html(seo.content);$str.find("form").remove();$.sq_highlight($str,$.sq_config.keyword,{counter:0,done:function(count,positions){SQ_DEBUG&&console.log($str.text(),$.sq_config.keyword,count,positions);$this.processBody($str.text(),count,positions)}})};$this.processBody=function(cleanContent,count,positions){var checked=false,id=false,words=[],density,i=0;if($.sq_config.editor_type==="tinymce"){var iframe_tinymce=$.sq_editor.getIframeEditor()}if(settings.check.indexOf("~first_sentence~")!==-1){if(count>1&&cleanContent.length>$.sq_params.beginning_length){$this.setChecked(positions[1]<$.sq_params.beginning_length,"first_sentence")}}if(settings.check.indexOf("~body_length~")!==-1){if($this.checkWordsLength(cleanContent,$.sq_params.min_length_body,$.sq_params.max_length_body)===false){$("#sq_request_body_length").remove();$("#sq_body_length").append(' <span id="sq_request_body_length">'+"("+$this.getWords2Min(cleanContent,$.sq_params.min_length_body)+" more)</span>")}else{$("#sq_request_body_length").remove()}$this.setChecked($this.checkWordsLength(cleanContent,$.sq_params.min_length_body,$.sq_params.max_length_body),"body_length")}if(settings.check.indexOf("~body~")!==-1){$this.setChecked(count>0,"body")}if(settings.check.indexOf("~over_density~")!==-1){checked=true;id="over_density";if($this.checkWordsLength(cleanContent,$.sq_params.min_length_body,$.sq_params.max_length_body)===false){$.sq_fields.div_blockseo.find("#sq_request_"+id+"").remove();$.sq_fields.div_blockseo.find("#sq_"+id+"").append('<span id="sq_request_'+id+'">: '+"("+$.sq_config.__addminimumwords.replace(/%s/g,$this.getWords2Min(cleanContent,$.sq_params.min_length_body))+")</span>");checked=false;$.sq_fields.div_blockseo.find("#sq_"+id+"_val").parent("li").removeClass("sq_"+id+"_high")}else{$.sq_fields.div_blockseo.find("#sq_request_"+id+"").remove();$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html($.sq_fields.div_blockseo.find("#sq_"+id+"_done").html());words=$.sq_clearText($.sq_config.keyword).split(" ");density=$this.getDensity(cleanContent,$.sq_config.keyword);if(density.val>0){var ignore=["and","und","or","the","yet","for","also","then","like","too","but","i","you","he","she","we","they"];var wordslen=words.length;for(i=0;i<wordslen;i++){if(words[i].length>2&&ignore.indexOf(words[i])===-1){var word=words[i];density=$this.getDensity(cleanContent,word);if(density.val>=$.sq_params.max_word_density){var need=density.keywords-$.sq_params.max_word_density*density.words/100+1;need=Math.round(need)<=0?1:need.toFixed();$.sq_fields.div_blockseo.find("#sq_request_"+id+"").remove();$.sq_fields.div_blockseo.find("#sq_"+id+"").append('<span id="sq_request_'+id+'">: '+'<span id="sq_request_'+id+'_highlight" style="color:yellow; text-decoration:underline; cursor: pointer;">'+word+"</span> "+$.sq_config.__toomanytimes.replace(/%s/g,need)+' <span id="sq_request_synonyms_oo"></span></span>');$this.getSynonyms(word,"sq_request_synonyms_oo");settings.clicked[id]=false;$.sq_fields.div_blockseo.find("#sq_request_"+id+"_highlight").parents("li#sq_"+id+":last").on("click",function(e){e.stopPropagation();settings.clicked[id]=true;$("body").on("mouseup",function(){$.sq_removeHighlight($.sq_getBuilderEditorContainer())})}).on("mouseenter",function(e){e.stopPropagation();$(this).css("cursor","pointer");$.sq_highlight($.sq_getBuilderEditorContainer(),word)}).on("mouseleave",function(){$.sq_removeHighlight($.sq_getBuilderEditorContainer())});$.sq_fields.div_blockseo.find("#sq_"+id+"_val").parent("li").attr("class","sq_"+id+"_high");$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html("");checked=false;break}}}}else{checked=false}$this.setChecked(checked,id)}}if(settings.check.indexOf("~human_friendly~")!==-1){checked=true;id="human_friendly";$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html("");if($this.checkWordsLength(cleanContent,$.sq_params.min_length_body,$.sq_params.max_length_body)===false){$.sq_fields.div_blockseo.find("#sq_request_"+id+"").remove();$.sq_fields.div_blockseo.find("#sq_"+id+"").append('<span id="sq_request_'+id+'">: '+"("+$.sq_config.__writemorewords.replace(/%s/g,$this.getWords2Min(cleanContent,$.sq_params.min_length_body))+")</span>");checked=false;$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html("")}else{$.sq_fields.div_blockseo.find("#sq_request_"+id+"").remove();if(count>=2){for(i=2;i<=count;i++){SQ_DEBUG&&console.log(positions[i]-positions[i-1],$.sq_params.begin_last_max_chars);if(positions[i]-positions[i-1]<$.sq_params.begin_last_max_chars){$.sq_fields.div_blockseo.find("#sq_request_"+id+"").remove();var ndt=i===2?"st":i===3?"nd":i===4?"rd":"th";$.sq_fields.div_blockseo.find("#sq_"+id+"").append('<span id="sq_request_'+id+'">: '+"("+$.sq_config.__morewordsafter.replace(/%s/g,'<span id="sq_request_'+id+'_highlight_key" style="color:lightcoral; text-decoration:underline; cursor: pointer;">'+(i-1)+ndt+"</span>")+' <span id="sq_request_synonyms"></span>)</span>');$this.getSynonyms($.sq_config.keyword,"sq_request_synonyms");settings.clicked[id]=false;$.sq_fields.div_blockseo.find("#sq_request_"+id+"_highlight_key").parents("li#sq_"+id+":last").off().on("click",function(e){e.stopPropagation();settings.clicked[id]=true;$("body").on("mouseup",function(){$.sq_removeHighlight($.sq_getBuilderEditorContainer())})}).on("mouseenter",function(e){e.stopPropagation();$(this).css("cursor","pointer");$.sq_highlight($.sq_getBuilderEditorContainer(),$.sq_config.keyword)}).on("mouseleave",function(){$.sq_removeHighlight($.sq_getBuilderEditorContainer())});checked=false;$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html("");break}}}}$this.setChecked(checked,id)}};$this.getSynonyms=function(word,span){var ignore=["and","und","or","the","yet","for","also","then","like","too","but","i","you","he","she","we","they"];var words=$.sq_stripChars(word).split(" ");$this.find("#"+span).html(" "+$.sq_config.__orusesynonyms);var wordslen=words.length;for(var w=0;w<wordslen;w++)if(words[w].length>2&&ignore.indexOf(words[w])===-1){$this.find("#"+span).append(" "+(w===0?"for":"or for")+' <span class="'+span+"_"+words[w]+" "+span+'" style="text-decoration:underline; cursor: pointer;" title="">'+words[w]+"</span>");var synonyms_all=$.sq_getCache("synonyms_"+words[w]);if(synonyms_all!==""){if(synonyms_all.length>0)$this.find("."+span+"_"+words[w]).attr("title",synonyms_all.join("\n"))}else{$.post($.sq_config.ajaxurl,{action:"sla_customcall",sq_nonce:$.sq_config.sq_nonce,url:"https://thesaurus.altervista.org/thesaurus/v1",word:words[w],language:$.sq_config.language.replace("-","_"),key:"TDm3SO7N3XEfRWuXYFb9",output:"json"}).done(function(word){return function(data){var response=data.response;var synonyms=[];var synonyms_all=[];if(typeof response!=="undefined"&&response.length>0){var responselen=response.length;for(var j=0;j<responselen;j++){if(typeof response[j].list.synonyms!=="undefined"){synonyms=response[j].list.synonyms.split("|");var synonymslen=synonyms.length;for(var k=0;k<synonymslen;k++){if(typeof synonyms[k]!=="undefined"&&synonyms[k]!==""&&synonyms[k].indexOf("antonym")===-1){synonyms_all.push(synonyms[k]);if(synonyms_all.length>10)break}}}}if(synonyms_all.length>0){$this.find("."+span+"_"+word).attr("title",synonyms_all.join("\n"))}}$.sq_setCache("synonyms_"+word,synonyms_all)}}(words[w])).error(function(word){var synonyms_all=[];synonyms_all.push("no synonyms found");$this.find("."+span+"_"+word).attr("title",synonyms_all.join("\n"));$.sq_setCache("synonyms_"+word,synonyms_all)}(words[w]))}}};$this.checkTags=function(){var id;var striptag="[\\],\\[]";striptag=new RegExp(striptag,"g");for(var i in settings.double_tag){id="";try{if(typeof settings.double_tag[i]==="string"||settings.double_tag[i]instanceof String){id=settings.double_tag[i];id=id.replace(striptag,"");if(id!=="")$this.setChecked($this.keywordMatch($this.checkTag(["<"+settings.double_tag[i]+">","</"+settings.double_tag[i]+">"])),id)}}catch(e){}}};$this.checkCustomTags=function(){var pattern;for(var i in settings.custom_tag){pattern="";try{if(typeof settings.custom_tag[i]==="string"||settings.custom_tag[i]instanceof String){pattern=new RegExp(settings.custom_tag[i],"gi");if(pattern!==""){$this.setChecked($this.keywordMatch($this.checkPattern(pattern),$.sq_config.keyword),settings.custom_tag_id[i])}}}catch(e){}}return false};$this.checkSingleTags=function(){var id;var striptag="[\\],\\[]";striptag=$.sq_regex(striptag);for(var i in settings.single_tag){id="";try{if(typeof settings.single_tag[i]==="string"||settings.single_tag[i]instanceof String){id=settings.single_tag[i].replace(striptag,"");if(id!==""){$this.setChecked($this.checkTag(["<"+settings.single_tag[i],">"]).length>0,id)}}}catch(e){}}};$this.checkTag=function(tag,content){var pattern="";if($.sq_isArray(tag)){if(tag[0]!==""&&tag[1]!==""){pattern=tag[0].replace("/","\\/")+"([^>]*)"+tag[1].replace("/","\\/");pattern=$.sq_regex(pattern)}}else{return false}SQ_DEBUG&&console.log("checkTag pattern: "+pattern);return $this.checkPattern(pattern,content)};$this.checkPattern=function(pattern,content){if(typeof content==="undefined")var content=seo.content;content=content.replace(/<img([^>]*)(mceItemMedia|mce-object)([^>]*)>/gi," ");var matches="";if(pattern!==""){matches=content.toLowerCase().match(pattern);SQ_DEBUG&&console.log((matches!==null)+" for "+pattern+" in content");if(matches!==null&&$.sq_isArray(matches)){return matches.join(", ")}}return false};$this.getPercentCompleted=function(){var all=$.sq_fields.div_blockseo.find(".sq_tasks > ul > li").not(".sq_tasks_category").length;var checked=$.sq_fields.div_blockseo.find(".sq_tasks > ul > li.checked").not(".sq_tasks_category").length;return checked*100/all};$this.checkCompleted=function(){if($.sq_config.silent){return}var cached=null;var ky=$.sq_config.keyword.replace(/[^a-zA-Z0-9]/g,"");var timeout=3e3;if(!$.sq_config.manual){timeout=1e3}cached=$.sq_getCache("complete_"+ky);if(cached!=="1"){if($.sq_fields.div_blockseo.find(".sq_tasks > ul > li").length>10){if($.sq_fields.div_blockseo.find(".sq_tasks > ul > li").not(".sq_tasks_category").not(".checked").length==0){$("body").prepend($("<ul/>").html("<li>"+$.sq_config.__fulloptimized+"</li>").addClass("sq_complete"));if($("#wpadminbar").css("display")=="none"){$(".sq_complete").css("top","0")}else{$(".sq_complete").css("top","28px")}setTimeout(function(){$("ul.sq_complete").remove()},timeout);$.sq_setCache("complete_"+ky,"1")}$(".sq_blockseo_progress").val(parseInt($this.getPercentCompleted()));$.sq_fields.sq_keyword_score.html(parseInt($this.getPercentCompleted())+"%")}}};$this.setChecked=function(cond,id,hidden){var cached=null;var ky=$.sq_config.keyword.replace(/[^a-zA-Z0-9]/g,"");if($.sq_getCookie("sq_sla")==="off"){hidden=1}if(cond){$.sq_fields.div_blockseo.find("#sq_"+id).attr("class","checked");if($.sq_fields.div_blockseo.find("#sq_"+id).find(".sq_request_highlight_key").length>0){$.sq_fields.div_blockseo.find("#sq_"+id).find(".sq_request_highlight_key").hide();$this.sq_eventsseo.listenHighlight(false)}cached=$.sq_getCache("task_"+ky+id);if(cached!=="1"){if($.sq_config.manual){if(typeof hidden==="undefined"){$this.addTopNotification(id)}}}SQ_DEBUG&&console.log("sq_setCache true: ",id);$.sq_setCache("task_"+ky+id,"1");$.sq_fields.div_blockseo.find("#sq_input_"+id+"").remove();$.sq_fields.div_blockseo.find("#sq_"+id).append('<input id="sq_input_'+id+'" type="hidden" name="sq_seo[]" value="'+id+'" />')}else{$.sq_setCache("task_"+ky+id,"0");if(id!=="img"&&id!=="alt"){SQ_DEBUG&&console.log("sq_setCache false: ",id);$.sq_setCache("complete_"+ky,"0")}$.sq_fields.div_blockseo.find("#sq_"+id).removeClass("checked");if($.sq_fields.div_blockseo.find("#sq_"+id).find(".sq_request_highlight_key").length>0){$.sq_fields.div_blockseo.find("#sq_"+id).find(".sq_request_highlight_key").show();$this.sq_eventsseo.listenHighlight(true)}$.sq_fields.div_blockseo.find("#sq_input_"+id).remove()}$this.checkCompleted();if(!$.sq_config.briefcase){$this.trigger("seo.after_checked",[id])}return Boolean(cond)};$this.addTopNotification=function(id){if($.sq_config.silent){return}var task=$.sq_fields.div_blockseo.find("#sq_"+id).clone();task=task.find(".sq_help").remove();task=task.end().html();$("ul.sq_notification").remove();$("body").append($("<ul/>").attr("id","sqt_"+id).html("<li>"+task+"</li>").addClass("sq_notification").css("zIndex","100000001"));if($("#wpadminbar").css("display")=="none"){$(".sq_notification").css("top","0")}else{$(".sq_notification").css("top","28px")}if($("#sq_"+id).find(".sq_seo_priority_essential").length>0){$("#sqt_"+id).addClass("sq_notification_front")}if($this.timeout)clearTimeout($this.timeout);$this.timeout=setTimeout(function(){$("ul.sq_notification").fadeOut("slow");$("ul.sq_notification").remove()},3e3)};$this.checkLength=function(str,min,max){str=$.sq_clearText(str);if(min>0&&str.length>=min&&(max===0||str.length<=max)){return true}return false};$this.checkWordsLength=function(str,min,max){if(min>0&&$this.wordCount(str)>=min&&(max===0||$this.wordCount(str)<=max)){return true}return false};$this.getWords2Min=function(str,min){if(min>0&&$this.wordCount(str)<min){return(min-$this.wordCount(str)+1).toFixed()}return 0};$this.urlMatch=function(str,keyword){if(str===false)return;if(typeof keyword==="undefined")return;var original=keyword;str=$.sq_clearText(str);str=$.sq_stripChars(str);keyword=$.sq_umlautsText(keyword);keyword=$.sq_clearText(keyword);keyword=$.sq_stripChars(keyword);SQ_DEBUG&&console.log("keywordMatch: "+keyword+"=>"+str);if(str!==""&&keyword!==""){var matches=0;$.sq_highlight($("<div>"+str+"</div>"),keyword,{counter:1,done:function(count){matches=count}});if(!matches){keyword=keyword.replace(/\s/g,"");$.sq_highlight($("<div>"+str+"</div>"),keyword,{counter:1,done:function(count){matches=count}})}if(!matches&&original.indexOf("ü")){keyword=original.replace("ü","ue");keyword=$.sq_clearText(keyword);keyword=$.sq_stripChars(keyword);$.sq_highlight($("<div>"+str+"</div>"),keyword,{counter:1,done:function(count){matches=count}})}SQ_DEBUG&&console.log("matches="+matches);return matches>0}};$this.keywordMatch=function(str,keyword,exact_match){var matches=0;if(str===false)return matches;if(typeof keyword==="undefined")return matches;str=$.sq_clearText(str);keyword=$.sq_clearText(keyword);keyword=keyword.replace(/[\"]/g,"");keyword=keyword.trim();if(typeof exact_match==="undefined")exact_match=false;if(typeof str!=="undefined"&&str!==""&&keyword!==""){if(exact_match){matches=$.sq_strEqual(str,keyword)}else{$.sq_highlight($("<div>"+str+"</div>"),keyword,{counter:0,done:function(count){matches=count}});SQ_DEBUG&&console.log("matches="+matches)}}return matches};$this.keywordDensity=function(str,low,high,id){var density=$this.getDensity(str,$.sq_config.keyword);var cached=null;var ky=$.sq_config.keyword.replace(/[^a-zA-Z0-9]/g,"");if(density.words<$this.checkWordsLength($.sq_config.keyword)){SQ_DEBUG&&console.log("keywordDensity: TOO FEW WORDS ",density.words);$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html("");$this.setChecked(false,id);return}if(density.val<=low&&density.keywords<$.sq_params.max_keywords){SQ_DEBUG&&console.log("keywordDensity: TOO LOW ",density.val,low,density.keywords,$.sq_params.max_keywords);var need=density.words-100*density.keywords/low;need=Math.round(need)<=0?1:Math.round(need);var kr_need=Math.min(low*density.words/100-density.keywords+.5,$.sq_params.max_keywords-density.keywords);kr_need=Math.round(kr_need)<=0?1:kr_need.toFixed();$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html($.sq_fields.div_blockseo.find("#sq_"+id+"_low").html());$.sq_fields.div_blockseo.find("#sq_"+id+"_val").parent("li").attr("class","sq_"+id+"_low");cached=$.sq_getCache("task_"+ky+id);if(cached==="1"){if($.sq_config.manual){$this.addTopNotification(id);$this.find("#sqt_"+id).addClass("sq_"+id+"_low")}}$.sq_setCache("task_"+ky+id,"2");$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html($.sq_fields.div_blockseo.find("#sq_"+id+"_low").html()+" ("+$.sq_config.__addmorekeywords.replace(/%s/g,kr_need)+(need<density.words?" "+$.sq_config.__removewords.replace(/%s/g,Math.min(need,density.words)):"")+")");$.sq_fields.div_blockseo.find("#sq_input_"+id).remove()}else{if(density.val>=high){SQ_DEBUG&&console.log("keywordDensity: TOO HIGH ",density.val);var need=100*density.keywords/high-density.words+.5;need=Math.round(need)<=0?1:Math.round(need);var kr_need=density.keywords-high*density.words/100+.5;kr_need=Math.round(kr_need)<=0?1:kr_need.toFixed();$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html($.sq_fields.div_blockseo.find("#sq_"+id+"_high").html());$.sq_fields.div_blockseo.find("#sq_"+id+"_val").parent("li").attr("class","sq_"+id+"_high");cached=$.sq_getCache("task_"+ky+id);if(cached==="1"){if($.sq_config.manual){$this.addTopNotification(id);$this.find("#sqt_"+id).addClass("sq_"+id+"_high")}}$.sq_setCache("task_"+ky+id,"3");if($this.checkWordsLength(str,$.sq_params.min_length_body,$.sq_params.max_length_body)!==false)kr_need="remove "+kr_need+" keyword(s) or ";else kr_need="";$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html($.sq_fields.div_blockseo.find("#sq_"+id+"_high").html()+" ("+kr_need+$.sq_config.__addmorewords.replace(/%s/g,need)+")");$.sq_fields.div_blockseo.find("#sq_input_"+id).remove()}else{SQ_DEBUG&&console.log("keywordDensity: "+((density.val>low||density.keywords>=$.sq_params.max_keywords)&&density.val<high),density.val,low,density.keywords,$.sq_params.max_keywords);$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html($.sq_fields.div_blockseo.find("#sq_"+id+"_done").html());$this.setChecked((density.val>low||density.keywords>=$.sq_params.max_keywords)&&density.val<high,id)}}};$this.getDensity=function(str,keyword){var density={};keyword=$.sq_clearText(keyword);str=$.sq_clearText(str);density.keywords=$this.phraseCount(str,keyword);density.words=$this.wordCount(str);density.words=density.words-density.keywords*($this.keywordWords(keyword)-1);if(density.words>0){density.val=density.keywords*100/density.words}else if(density.keywords>=1){density.val=100}else{density.val=0}return density};$this.keywordWords=function(keyword){var pattern=new RegExp("[㐀-龿 -〿぀-ゟ゠-ヿ＀-゚一-龯㐀-䶿]|\\S+","gi");var words=keyword.match(pattern);if(words&&words.length>0)return words.length+1;else return 1};$this.phraseCount=function(str,keyword){var words=0;$.sq_highlight($("<div>"+str+"</div>"),keyword,{counter:1,done:function(count){words=count}});return words};$this.wordCount=function(str){str=$.sq_clearText(str);var matches=str.match(/[\u3400-\u9FBF\u3000-\u303f\u3040-\u309f\u30a0-\u30ff\uff00-\uff9f\u4e00-\u9faf\u3400-\u4dbf]|\S+/g);if(matches)return matches.length;return 0};$this.sq_eventsseo={listen:function(){if($.sq_config.keyword!==""){$this.closeOverlay()}else{$this.overlay()}$.post($.sq_config.ajaxurl,{action:"sla_tasks",sq_nonce:$.sq_config.sq_nonce,output:"json"}).done(function(response){$this.sq_doneloading("sq_minloading").removeClass("sq_error");if(typeof response.data!=="undefined"&&typeof response.data.tasks!=="undefined"&&$this.find(".sq_tasks").length>0){settings.check.push("~longtail_keyword~");settings.check.push("~pinguin_url~");settings.check.push("~density_title~");settings.check.push("~density~");settings.check.push("~over_density~");settings.check.push("~human_friendly~");settings.check.push("~title~");settings.check.push("~title_length~");settings.check.push("~pinguin_title~");settings.check.push("~body~");settings.custom_tag.push("<(strong|b)[^>]*>(.*?)</(strong|b)>");settings.custom_tag_id.push("strong");settings.custom_tag.push("<h[1-6][^>]*>(.*?)</h[1-6]>");settings.custom_tag_id.push("h2_6");settings.single_tag.push("img");settings.custom_tag.push('alt=["]([^"]+)["]');settings.custom_tag_id.push("alt");$this.find(".sq_tasks").append(response.data.tasks);$this.find(".sq_tasks").find("li").show();$this.sq_eventsseo.listenHighlight(true);$this.on("seo.refresh",function(){$.sq_fields.div_blockseo.find("#sq_seo_refresh").addClass("sq_minloading");setTimeout(function(){$.sq_fields.div_blockseo.find("#sq_seo_refresh").removeClass("sq_minloading");$this.load()},1e3)});$.sq_fields.div_blockseo.find("#sq_seo_refresh").on("lateclick",function(){$this.trigger("seo.refresh");$this.trigger("seo.refresh_lateclick")});$this.find("#sq_seo_refresh").on("click",function(){$this.trigger("seo.refresh");$this.trigger("seo.refresh_click")});$this.trigger("seo.refresh");$this.trigger("seo.task_loaded")}else{$this.sq_doneloading("sq_minloading").removeClass("sq_error");$this.find(".sq_tasks").html('<div class="sq_message" style="width: 100% !important;">'+$.sq_config.__ajaxerror+"</div>")}});$this.sq_eventsseo.listenTitle();$this.sq_eventsseo.listenSlug();$.sq_fields.content_tmce.on("click",function(){$.sq_config.editor_type="tinymce"});$.sq_fields.content_html.on("click",function(){$.sq_config.editor_type="html"});$("#save-post,#publish,#post-preview").click(function(){if($.sq_blockbriefcase){$.sq_blockbriefcase.trigger("briefcase.save")}$.sq_removeHighlight($.sq_getBuilderEditorContainer());if($.sq_config.keyword!==""){$.sq_blocksearch.addTag();$.sq_fields.wp_publish.focus()}});$.sq_fields.wp_input_title.off("click").on("click",function(){if($this.find(".sq_overlay").length>0)if($.sq_fields.sq_keyword.val()!==""){$.sq_config.showInspiration=false;$.sq_fields.sq_selectit.trigger("click")}});if(typeof ET_PageBuilder!=="undefined"&&typeof ET_PageBuilder.Events!=="undefined"){ET_PageBuilder.Events.on("et-pb-loading:ended",function(){$(".et-pb-remove").on("click",function(){SQ_DEBUG&&console.log("Divi Save Pressed");$.sq_fields.div_blockseo.find("#sq_seo_refresh").trigger("lateclick")})});ET_PageBuilder.Events.on("et-modal-settings:save",function(){ET_PageBuilder.Events.on("et-modal-view-removed",function(){SQ_DEBUG&&console.log("Divi Save Pressed");$.sq_fields.div_blockseo.find("#sq_seo_refresh").trigger("lateclick");$(".et-pb-remove").on("click",function(){SQ_DEBUG&&console.log("Divi Save Pressed");$.sq_fields.div_blockseo.find("#sq_seo_refresh").trigger("lateclick")})})})}if($("#visual_composer_content").length>0){if($("div#vc_ui-panel-edit-element").length>0){$("div#vc_ui-panel-edit-element").find("span[data-vc-ui-element=button-save]").on("click",function(){SQ_DEBUG&&console.log("Visual Composer Save");$.sq_fields.div_blockseo.find("#sq_seo_refresh").trigger("lateclick");if($("#visual_composer_content").find(".vc-c-icon-delete_empty").length>0){$("#visual_composer_content").find(".vc-c-icon-delete_empty").on("click",function(){SQ_DEBUG&&console.log("Visual Composer Delete");$.sq_fields.div_blockseo.find("#sq_seo_refresh").trigger("lateclick")})}})}if($("#visual_composer_content").find(".vc-c-icon-delete_empty").length>0){$("#visual_composer_content").find(".vc-c-icon-delete_empty").on("click",function(){SQ_DEBUG&&console.log("Visual Composer Delete");$.sq_fields.div_blockseo.find("#sq_seo_refresh").trigger("lateclick")})}}},listenTinymce:function(){SQ_DEBUG&&console.log("listenTinymce");$.sq_config.editor_type="tinymce";if($.sq_config.interval_seo){clearInterval($.sq_config.interval_seo)}$.sq_config.interval_seo=setInterval(function(){var iframe_tinymce=$.sq_editor.getIframeEditor();if(iframe_tinymce!==false){$.sq_editor.insertHandler=function(e){$.sq_config.active_editor=$(this);if(e.target.nodeName==="IMG"){SQ_DEBUG&&console.log("DOMNodeInserted ",e);$.sq_editor.listen(e);$this.callback()}};$(iframe_tinymce).off("DOMNodeInserted",$.sq_editor.insertHandler).on("DOMNodeInserted",$.sq_editor.insertHandler);$.sq_editor.removeHandler=function(e){$.sq_config.active_editor=$(this);if(e.target.nodeName==="IMG"){SQ_DEBUG&&console.log("DOMNodeRemoved "+e.target.nodeName);$.sq_editor.lastimage="";$this.callback()}};$(iframe_tinymce).off("DOMNodeRemoved",$.sq_editor.removeHandler).on("DOMNodeRemoved",$.sq_editor.removeHandler);$.sq_editor.changeHandler=function(e){$.sq_config.active_editor=$(this);SQ_DEBUG&&console.log(" keyup mouseup ",e.type);if(e.type==="mouseup"){$.sq_removeHighlight($.sq_getBuilderEditorContainer())}if($.sq_config.timeout_seo){clearTimeout($.sq_config.timeout_seo)}$.sq_config.timeout_seo=setTimeout(function(){if($this.find(".sq_overlay").length>0)if($.sq_fields.sq_keyword.val()!==""){$.sq_config.showInspiration=false;$.sq_fields.sq_selectit.trigger("click")}$this.callback()},$.sq_config.delay_seo)};$(iframe_tinymce).off("keyup mouseup",$.sq_editor.changeHandler).on("keyup mouseup",$.sq_editor.changeHandler);$this.callback();clearInterval($.sq_config.interval_seo);$.sq_removeHighlight($.sq_getBuilderEditorContainer())}if(typeof $.sq_config.frontend_css!=="undefined"){if($.sq_editor.getIframeEditor("head link[href='"+$.sq_config.frontend_css+"']")===false){var iframe_head=$.sq_editor.getIframeEditor("head");if(iframe_head!==false){iframe_head.append($("<link/>",{rel:"stylesheet",href:$.sq_config.frontend_css,type:"text/css"}))}}}$this.sq_eventsseo.listenFeatureImage()},1e3)},stopListenTinymce:function(){SQ_DEBUG&&console.log("stop listen Tinymce");if($.sq_config.interval_seo){clearInterval($.sq_config.interval_seo)}var iframe_tinymce=$.sq_editor.getIframeEditor();if(iframe_tinymce!==false)$(iframe_tinymce).off("keyup mouseup")},listenHtml:function(){$.sq_config.editor_type="html";$.sq_fields.wp_content.on("click keyup",function(){$.sq_config.active_editor=$(this);if($.sq_config.editor_type==="html"){if($this.timeout_html){clearTimeout($this.timeout_html)}$this.timeout_html=setTimeout(function(){$this.callback()},$.sq_config.delay_seo)}});$.sq_fields.wp_content.on("dragover",false).on("dragenter",false).on("drop",function(e){if($.sq_config.editor_type==="html"){e.preventDefault();$.sq_editor.listenHtml(e)}});$this.sq_eventsseo.listenFeatureImage();$this.sq_eventsseo.listenMediaLibrary()},listenFeatureImage:function(){$("#postimagediv").on("DOMNodeInserted DOMNodeRemoved",function(){$this.checkImage($(this))});$(".editor-post-featured-image").on("DOMNodeInserted DOMNodeRemoved",function(){$this.checkImage($(this))})},listenMediaLibrary:function(){if($.sq_fields.wp_thumbnail_alt.length>0){$.sq_fields.wp_thumbnail_alt.on("keyup",function(){$this.setChecked($this.keywordMatch($.sq_fields.wp_thumbnail_alt.val(),$.sq_config.keyword),"alt")});$this.checkImage($.sq_fields.wp_thumbnail);$this.setChecked($this.keywordMatch($.sq_fields.wp_thumbnail_alt.val(),$.sq_config.keyword),"alt")}},listenVComposer:function(){if($("#visual_composer_content").length>0){var composer=$("#visual_composer_content");if(composer.find("img.attachment-thumbnail").length>0){SQ_DEBUG&&console.log("Visual Composer Image");$this.checkImage($("#visual_composer_content").find("img.attachment-thumbnail").parents(".wpb_content_element:last"))}if(composer.find("ul.attachment-thumbnails").length>0){SQ_DEBUG&&console.log("Visual Composer Galerry");$this.checkImage($("#visual_composer_content").find("ul.attachment-thumbnails"))}if(composer.find(".wpb_vc_custom_heading .admin_label_text").length>0){composer.find(".wpb_vc_custom_heading .admin_label_text").each(function(){if($this.keywordMatch($(this).text(),$.sq_config.keyword)){SQ_DEBUG&&console.log("Visual Composer Headline");return $this.setChecked($this.keywordMatch($(this).text(),$.sq_config.keyword),"h2_6")}})}}},listenFusion:function(){if($(".fusion_module_block_preview").find("img").length>0){SQ_DEBUG&&console.log("Fusion Image Preview");$this.checkImage($(".fusion_module_block_preview").find("img").parents("div:last"))}else if($("img.fusion-child-element-image").length>0){SQ_DEBUG&&console.log("Fusion Image Element");$this.checkImage($("img.fusion-child-element-image").parents("div:last"))}if($(".fusion_module_block_preview").find(".title_text").length>0){$(".fusion_module_block_preview").find(".title_text").each(function(){if($this.keywordMatch($(this).text(),$.sq_config.keyword)){SQ_DEBUG&&console.log("Fusion Headline");return $this.setChecked($this.keywordMatch($(this).text(),$.sq_config.keyword),"h2_6")}})}},stopListenHtml:function(){SQ_DEBUG&&console.log("stop listen HTML");$.sq_fields.wp_content.off("keyup");$.sq_fields.wp_content.off("drop")},listenTitle:function(){SQ_DEBUG&&console.log("listen title");$.sq_fields.wp_input_title.off("keyup change").on("keyup change",function(){$(this).trackLength("wp_title");$.sq_config.manual=true;$.sq_config.silent=false;$.sq_config.briefcase=false;$this.checkWpFields()});if($("#sq_wp_title_info").length==0){$.sq_fields.wp_input_title.after($.sq_fields.sq_wp_title_info)}},listenSlug:function(){var timeout_post_slug=setInterval(function(){if($("#new-post-slug").length>0){clearInterval(timeout_post_slug);$("#new-post-slug").off("keyup").on("keyup",function(){$this.checkKPinguinUrl()});$("#edit-slug-buttons").find("a").on("click",function(){$this.sq_eventsseo.listenSlug()})}},1e3);var timeout_sample_permalink=setInterval(function(){if($("#sample-permalink").length>0){clearInterval(timeout_sample_permalink);if(typeof $.sq_loadFrontMenu!=="undefined"){SQ_DEBUG&&console.log("Reload the Squirrly Snippet");$.sq_loadFrontMenu()}}},1e3)},listenHighlight:function(on){if(on){settings.clicked["highlight"]=false;$this.find(".sq_request_highlight_key").parents("li:last").on("click",function(e){e.stopPropagation();settings.clicked["highlight"]=true}).on("mouseenter",function(e){e.stopPropagation();$(this).css("cursor","pointer");$.sq_highlight($.sq_getBuilderEditorContainer(),$.sq_config.keyword)}).on("mouseleave",function(){$.sq_removeHighlight($.sq_getBuilderEditorContainer())})}else{$this.find(".sq_request_highlight_key").parents("li:last").off()}}};$this.one("seo.loaded",function(){SQ_DEBUG&&console.log("sq_blockseo seo.loaded");if(!$.sq_config.subscription_active){return}if(!$.sq_isGutenberg()&&!$.sq_isFrontend()){if($.sq_fields.wp_content_wrap.length>0&&$.sq_fields.wp_content_wrap.attr("class").indexOf("html-active")!==-1){SQ_DEBUG&&console.log("seo.loaded listenHTML");$this.sq_eventsseo.listenHtml();$.sq_config.active_editor=$.sq_fields.wp_content}else{SQ_DEBUG&&console.log("seo.loaded listenTinymce");$this.sq_eventsseo.listenTinymce();$.sq_config.active_editor=$.sq_editor.getIframeEditor()}}else if($.sq_isGutenberg()){wp.data.subscribe(function(){var ed=$.sq_editor.getBlockEditor("select");if(ed&&ed.isTyping){if($.sq_config.timeout_seo){clearTimeout($.sq_config.timeout_seo)}$.sq_config.timeout_seo=setTimeout(function(){$this.callback()},$.sq_config.delay_seo)}if(ed&&ed.isSavingPost()&&!ed.isAutosavingPost()){if($.sq_floating){if($.sq_config.timeout_save){clearTimeout($.sq_config.timeout_save)}$.sq_config.timeout_save=setTimeout(function(){$.sq_floating.trigger("seo.floating.page_saved")},$.sq_config.delay_seo)}}})}$this.sq_loading();$this.one("seo.keyword_loaded",function(){$this.sq_eventsseo.listen()})});return $this};$.fn.trackLength=function(type){var $this=this;var min=0;var max=0;var color="green";if(typeof $this==="undefined")return;if(type==="title"||type==="wp_title"){min=$.sq_params.min_length_title;max=$.sq_params.max_length_title}else if(type==="description"){min=$.sq_params.min_length_description;max=$.sq_params.max_length_description}if(min>0&&min>$this.val().length){color="red"}else if(max>0&&max<$this.val().length){color="red"}else{color="green"}if(max>0){$("#sq_"+type+"_info").html($this.val().length+"/"+max);$("#sq_"+type+"_info").css("color",color)}}})(jQuery);
1
+ (function($){"use strict";if($.isFunction($.fn.sq_blockseo)){return}$.fn.sq_blockseo=function(options){var $this=this;var settings=$.extend({check:[],single_tag:[],double_tag:[],custom_tag:[],custom_tag_id:[],clicked:[]},options);$.sq_fields=$.extend({sq_wp_title_info:$('<span id="sq_wp_title_info" style="display: block; float: right;" />')},$.sq_fields);var seo={title:"",content:""};$this.setContent=function(content){seo.content=content};$this.load=function(){$.sq_fields.div_blockseo.find(".sq_tasks > ul > li").not(".sq_tasks_category").removeClass("checked");if($.sq_config.timeout_seo){clearTimeout($.sq_config.timeout_seo)}$.sq_config.timeout_seo=setTimeout(function(){$this.callback()},100)};$this.callback=function(){$.sq_config.manual=true;$.sq_config.silent=false;$.sq_config.briefcase=false;if(typeof $.sq_config.keyword==="undefined"||$.sq_config.keyword==="")return;if($.sq_config.editor_type==="tinymce"){if($.sq_isGutenberg()){ed=$.sq_editor.getBlockEditor("select");if(ed)seo.content=ed.getEditedPostContent()}else if($.sq_config.active_editor&&typeof $.sq_config.active_editor.html=="function"){seo.content=$.sq_config.active_editor.html()}else{ed=$.sq_editor.getIframeEditor();seo.content=ed.html()}}else{if($.sq_isGutenberg()){var ed=$.sq_editor.getBlockEditor("select");if(ed)seo.content=ed.getEditedPostContent()}else if($.sq_isFrontend()){var ed=$.sq_editor.getFrontendEditor();if(ed)seo.content=ed.getPageContent()}else if($.sq_config.active_editor&&typeof $.sq_config.active_editor.val=="function"){seo.content=$.sq_fields.wp_content.val()}else if($.sq_fields.wp_content.length){seo.content=$.sq_fields.wp_content.val()}}if(!$.sq_fields.wp_input_title.length){if($(".editor-post-title").find("textarea").length>0){$.sq_fields.wp_input_title=$(".editor-post-title").find("textarea")}else if($("h1.wp-block-post-title").length>0){$.sq_fields.wp_input_title=$('<textarea id="title" style="display: none">'+$("h1.wp-block-post-title").html()+"</textarea>");$("h1.wp-block-post-title").after($.sq_fields.wp_input_title);$("h1.wp-block-post-title").on("DOMSubtreeModified",function(){$.sq_fields.wp_input_title.val($("h1.wp-block-post-title").html())})}}$this.trigger("seo.content");$this.checkSEO();$this.trigger("seo.callback")};$this.checkSEO=function(){if(typeof seo.content!=="undefined"&&$.sq_clearText(seo.content)!==""){SQ_DEBUG&&console.log("check keywords in body and tags");$this.checkTitle();$this.checkBody();$this.checkSingleTags();$this.checkCustomTags();$this.checkKPinguinUrl();$this.checkKeyword();if($.sq_fields.wp_thumbnail.length>0){$this.sq_eventsseo.listenMediaLibrary()}else if($("#postimagediv").length>0){$this.checkImage($("#postimagediv"))}else if($.sq_isFrontend()){var ed=$.sq_editor.getFrontendEditor();if(ed)$.sq_blockseo.checkImage($("<div>"+ed.getPageImages()+"</div>"))}if($(".editor-post-featured-image").length>0){$this.checkImage($(".editor-post-featured-image"))}if($("#visual_composer_content").length>0){$this.sq_eventsseo.listenVComposer()}if($("#fusion_builder_container").length>0){$this.sq_eventsseo.listenFusion()}}};$this.close=function(){$.sq_fields.div_blockseo.hide()};$this.checkKPinguinUrl=function(){if($.sq_config.keyword!==""){if($("#custom_permalinks_home_url").length>0&&$("#custom_permalink").length>0){var slug=$("#custom_permalinks_home_url").val()+" "+$("#custom_permalink").val();$this.setChecked($this.urlMatch(slug,$.sq_config.keyword),"pinguin_url")}else if($("#editable-post-name-full").length>0){var root="";if($("#sample-permalink").length>0){var sample_permalink=$("#sample-permalink").find("a").clone();sample_permalink.find("span").remove();root=sample_permalink.text()}var slug=root+" "+$("#editable-post-name-full").html();$this.setChecked($this.urlMatch(slug,$.sq_config.keyword),"pinguin_url")}else if($("#new-post-slug").length>0){var slug=$("#new-post-slug").val();$this.setChecked($this.urlMatch(slug,$.sq_config.keyword),"pinguin_url")}else if($("#sample-permalink").length>0){var slug=$("#sample-permalink").html().replace(/<\/?[^>]+>/gi," ");$this.setChecked($this.urlMatch(slug,$.sq_config.keyword),"pinguin_url")}else if($.sq_isGutenberg()){var ed=$.sq_editor.getBlockEditor("select");if(ed){var slug=decodeURIComponent(ed.getPermalink()).replace(/<\/?[^>]+>/gi," ");$this.setChecked($this.urlMatch(slug,$.sq_config.keyword),"pinguin_url")}}}};$this.checkKeyword=function(){$this.setChecked($this.checkWordsLength($.sq_config.keyword,2,0),"longtail_keyword")};$this.checkPinguin=function(){var domain=$.sq_getDomain(document.domain,[8])!==""?$.sq_getDomain(document.domain,[8]):document.domain;$this.setChecked(!$this.keywordMatch($.sq_fields.wp_input_title.val(),domain,true),"pinguin_title")};$this.checkTitle=function(){SQ_DEBUG&&console.log("check keywords in title: "+$.sq_fields.wp_input_title.val());if(typeof $.sq_config.keyword==="undefined"||$.sq_config.keyword==="")return;if($.sq_fields.wp_input_title.length&&$.sq_clearText($.sq_fields.wp_input_title.val()).length>1){$this.setChecked($this.checkLength($.sq_fields.wp_input_title.val(),$.sq_params.min_length_title,$.sq_params.max_length_title),"title_length");$this.setChecked($this.keywordMatch($.sq_fields.wp_input_title.val(),$.sq_config.keyword),"title");$this.checkPinguin();var id="density_title";if($this.checkWordsLength($.sq_config.keyword,1,100)){if($.sq_strEqual($.sq_fields.wp_input_title.val(),$.sq_config.keyword)){$this.setChecked(true,id)}else{$this.keywordDensity($.sq_fields.wp_input_title.val(),$.sq_params.low_density_title,$.sq_params.high_density_title,"density_title")}}else{$("#sq_"+id+"_val").html($("#sq_"+id+"_longtail").html());$this.setChecked(false,id)}}};$this.checkImage=function(_this){$.sq_config.silent=true;var pattern=null;pattern=new RegExp("<img([^>]*)>","gi");if(_this.html()!==""&&$this.checkPattern(pattern)){$this.setChecked(true,"img",true)}else if(_this.html()!==""){SQ_DEBUG&&console.log("Check image in object");if($this.checkPattern(pattern,_this.html())){$this.setChecked($this.checkPattern(pattern,_this.html()).length>0,"img",true)}else{pattern=new RegExp("\\[gallery[^\\]]*ids=[^\\]]*\\]","gi");if($this.checkPattern(pattern)){$this.setChecked($this.checkPattern(pattern).length>0,"img")}else{$this.setChecked(0,"img")}}}pattern=new RegExp('alt="([^"]+)"',"gi");if(!$this.keywordMatch($this.checkPattern(pattern),$.sq_config.keyword)){SQ_DEBUG&&console.log("There is no alt image in content");$this.setChecked($this.keywordMatch($this.checkPattern(pattern,_this.html()),$.sq_config.keyword),"alt")}};$this.hideOptions=function(){$("#sq_wp_title_suggestion").remove();$this.checkTitle()};$this.checkBody=function(){var $str=$("<div></div>").html(seo.content);$str.find("form").remove();$.sq_highlight($str,$.sq_config.keyword,{counter:0,done:function(count,positions){SQ_DEBUG&&console.log($str.text(),$.sq_config.keyword,count,positions);$this.processBody($str.text(),count,positions)}})};$this.processBody=function(cleanContent,count,positions){var checked=false,id=false,words=[],density,i=0;if($.sq_config.editor_type==="tinymce"){var iframe_tinymce=$.sq_editor.getIframeEditor()}$this.setChecked(count>0,"body");if($.sq_fields.wp_input_title.length&&$.sq_fields.wp_input_title.val()!==""){$this.keywordDensity($.sq_fields.wp_input_title.val()+" "+cleanContent,$.sq_params.low_density,$.sq_params.high_density,"density")}else{$this.keywordDensity(cleanContent,$.sq_params.low_density,$.sq_params.high_density,"density")}checked=true;id="over_density";if($this.checkWordsLength(cleanContent,$.sq_params.min_length_body,$.sq_params.max_length_body)===false){$.sq_fields.div_blockseo.find("#sq_request_"+id+"").remove();$.sq_fields.div_blockseo.find("#sq_"+id+"").append('<span id="sq_request_'+id+'">: '+"("+$.sq_config.__addminimumwords.replace(/%s/g,$this.getWords2Min(cleanContent,$.sq_params.min_length_body))+")</span>");checked=false;$.sq_fields.div_blockseo.find("#sq_"+id+"_val").parent("li").removeClass("sq_"+id+"_high")}else{$.sq_fields.div_blockseo.find("#sq_request_"+id+"").remove();$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html($.sq_fields.div_blockseo.find("#sq_"+id+"_done").html());words=$.sq_clearText($.sq_config.keyword).split(" ");density=$this.getDensity(cleanContent,$.sq_config.keyword);if(density.val>0){var ignore=["and","und","or","the","yet","for","also","then","like","too","but","i","you","he","she","we","they"];var wordslen=words.length;for(i=0;i<wordslen;i++){if(words[i].length>2&&ignore.indexOf(words[i])===-1){var word=words[i];density=$this.getDensity(cleanContent,word);if(density.val>=$.sq_params.max_word_density){var need=density.keywords-$.sq_params.max_word_density*density.words/100+1;need=Math.round(need)<=0?1:need.toFixed();$.sq_fields.div_blockseo.find("#sq_request_"+id+"").remove();$.sq_fields.div_blockseo.find("#sq_"+id+"").append('<span id="sq_request_'+id+'">: '+'<span id="sq_request_'+id+'_highlight" style="color:yellow; text-decoration:underline; cursor: pointer;">'+word+"</span> "+$.sq_config.__toomanytimes.replace(/%s/g,need)+' <span id="sq_request_synonyms_oo"></span></span>');$this.getSynonyms(word,"sq_request_synonyms_oo");settings.clicked[id]=false;$.sq_fields.div_blockseo.find("#sq_request_"+id+"_highlight").parents("li#sq_"+id+":last").on("click",function(e){e.stopPropagation();settings.clicked[id]=true;$("body").on("mouseup",function(){$.sq_removeHighlight($.sq_getBuilderEditorContainer())})}).on("mouseenter",function(e){e.stopPropagation();$(this).css("cursor","pointer");$.sq_highlight($.sq_getBuilderEditorContainer(),word)}).on("mouseleave",function(){$.sq_removeHighlight($.sq_getBuilderEditorContainer())});$.sq_fields.div_blockseo.find("#sq_"+id+"_val").parent("li").attr("class","sq_"+id+"_high");$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html("");checked=false;break}}}}else{checked=false}$this.setChecked(checked,id)}checked=true;id="human_friendly";$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html("");if($this.checkWordsLength(cleanContent,$.sq_params.min_length_body,$.sq_params.max_length_body)===false){$.sq_fields.div_blockseo.find("#sq_request_"+id+"").remove();$.sq_fields.div_blockseo.find("#sq_"+id+"").append('<span id="sq_request_'+id+'">: '+"("+$.sq_config.__writemorewords.replace(/%s/g,$this.getWords2Min(cleanContent,$.sq_params.min_length_body))+")</span>");checked=false;$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html("")}else{$.sq_fields.div_blockseo.find("#sq_request_"+id+"").remove();if(count>=2){for(i=2;i<=count;i++){SQ_DEBUG&&console.log(positions[i]-positions[i-1],$.sq_params.begin_last_max_chars);if(positions[i]-positions[i-1]<$.sq_params.begin_last_max_chars){$.sq_fields.div_blockseo.find("#sq_request_"+id+"").remove();var ndt=i===2?"st":i===3?"nd":i===4?"rd":"th";$.sq_fields.div_blockseo.find("#sq_"+id+"").append('<span id="sq_request_'+id+'">: '+"("+$.sq_config.__morewordsafter.replace(/%s/g,'<span id="sq_request_'+id+'_highlight_key" style="color:lightcoral; text-decoration:underline; cursor: pointer;">'+(i-1)+ndt+"</span>")+' <span id="sq_request_synonyms"></span>)</span>');$this.getSynonyms($.sq_config.keyword,"sq_request_synonyms");settings.clicked[id]=false;$.sq_fields.div_blockseo.find("#sq_request_"+id+"_highlight_key").parents("li#sq_"+id+":last").off().on("click",function(e){e.stopPropagation();settings.clicked[id]=true;$("body").on("mouseup",function(){$.sq_removeHighlight($.sq_getBuilderEditorContainer())})}).on("mouseenter",function(e){e.stopPropagation();$(this).css("cursor","pointer");$.sq_highlight($.sq_getBuilderEditorContainer(),$.sq_config.keyword)}).on("mouseleave",function(){$.sq_removeHighlight($.sq_getBuilderEditorContainer())});checked=false;$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html("");break}}}}$this.setChecked(checked,id)};$this.getSynonyms=function(word,span){var ignore=["and","und","or","the","yet","for","also","then","like","too","but","i","you","he","she","we","they"];var words=$.sq_stripChars(word).split(" ");$this.find("#"+span).html(" "+$.sq_config.__orusesynonyms);var wordslen=words.length;for(var w=0;w<wordslen;w++)if(words[w].length>2&&ignore.indexOf(words[w])===-1){$this.find("#"+span).append(" "+(w===0?"for":"or for")+' <span class="'+span+"_"+words[w]+" "+span+'" style="text-decoration:underline; cursor: pointer;" title="">'+words[w]+"</span>");var synonyms_all=$.sq_getCache("synonyms_"+words[w]);if(synonyms_all!==""){if(synonyms_all.length>0)$this.find("."+span+"_"+words[w]).attr("title",synonyms_all.join("\n"))}else{$.post($.sq_config.ajaxurl,{action:"sla_customcall",sq_nonce:$.sq_config.sq_nonce,url:"https://thesaurus.altervista.org/thesaurus/v1",word:words[w],language:$.sq_config.language.replace("-","_"),key:"TDm3SO7N3XEfRWuXYFb9",output:"json"}).done(function(word){return function(data){var response=data.response;var synonyms=[];var synonyms_all=[];if(typeof response!=="undefined"&&response.length>0){var responselen=response.length;for(var j=0;j<responselen;j++){if(typeof response[j].list.synonyms!=="undefined"){synonyms=response[j].list.synonyms.split("|");var synonymslen=synonyms.length;for(var k=0;k<synonymslen;k++){if(typeof synonyms[k]!=="undefined"&&synonyms[k]!==""&&synonyms[k].indexOf("antonym")===-1){synonyms_all.push(synonyms[k]);if(synonyms_all.length>10)break}}}}if(synonyms_all.length>0){$this.find("."+span+"_"+word).attr("title",synonyms_all.join("\n"))}}$.sq_setCache("synonyms_"+word,synonyms_all)}}(words[w])).error(function(word){var synonyms_all=[];synonyms_all.push("no synonyms found");$this.find("."+span+"_"+word).attr("title",synonyms_all.join("\n"));$.sq_setCache("synonyms_"+word,synonyms_all)}(words[w]))}}};$this.checkTags=function(){var id;var striptag="[\\],\\[]";striptag=new RegExp(striptag,"g");for(var i in settings.double_tag){id="";try{if(typeof settings.double_tag[i]==="string"||settings.double_tag[i]instanceof String){id=settings.double_tag[i];id=id.replace(striptag,"");if(id!=="")$this.setChecked($this.keywordMatch($this.checkTag(["<"+settings.double_tag[i]+">","</"+settings.double_tag[i]+">"])),id)}}catch(e){}}};$this.checkCustomTags=function(){var pattern;for(var i in settings.custom_tag){pattern="";try{if(typeof settings.custom_tag[i]==="string"||settings.custom_tag[i]instanceof String){pattern=new RegExp(settings.custom_tag[i],"gi");if(pattern!==""){$this.setChecked($this.keywordMatch($this.checkPattern(pattern),$.sq_config.keyword),settings.custom_tag_id[i])}}}catch(e){}}return false};$this.checkSingleTags=function(){var id;var striptag="[\\],\\[]";striptag=$.sq_regex(striptag);for(var i in settings.single_tag){id="";try{if(typeof settings.single_tag[i]==="string"||settings.single_tag[i]instanceof String){id=settings.single_tag[i].replace(striptag,"");if(id!==""){$this.setChecked($this.checkTag(["<"+settings.single_tag[i],">"]).length>0,id)}}}catch(e){}}};$this.checkTag=function(tag,content){var pattern="";if($.sq_isArray(tag)){if(tag[0]!==""&&tag[1]!==""){pattern=tag[0].replace("/","\\/")+"([^>]*)"+tag[1].replace("/","\\/");pattern=$.sq_regex(pattern)}}else{return false}SQ_DEBUG&&console.log("checkTag pattern: "+pattern);return $this.checkPattern(pattern,content)};$this.checkPattern=function(pattern,content){if(typeof content==="undefined")var content=seo.content;content=content.replace(/<img([^>]*)(mceItemMedia|mce-object)([^>]*)>/gi," ");var matches="";if(pattern!==""){matches=content.toLowerCase().match(pattern);SQ_DEBUG&&console.log((matches!==null)+" for "+pattern+" in content");if(matches!==null&&$.sq_isArray(matches)){return matches.join(", ")}}return false};$this.getPercentCompleted=function(){var all=$.sq_fields.div_blockseo.find(".sq_tasks > ul > li").not(".sq_tasks_category").length;var checked=$.sq_fields.div_blockseo.find(".sq_tasks > ul > li.checked").not(".sq_tasks_category").length;return checked*100/all};$this.checkCompleted=function(){if($.sq_config.silent){return}var cached=null;var ky=$.sq_config.keyword.replace(/[^a-zA-Z0-9]/g,"");var timeout=3e3;if(!$.sq_config.manual){timeout=1e3}cached=$.sq_getCache("complete_"+ky);if(cached!=="1"){if($.sq_fields.div_blockseo.find(".sq_tasks > ul > li").length>10){if($.sq_fields.div_blockseo.find(".sq_tasks > ul > li").not(".sq_tasks_category").not(".checked").length==0){$("body").prepend($("<ul/>").html("<li>"+$.sq_config.__fulloptimized+"</li>").addClass("sq_complete"));if($("#wpadminbar").css("display")=="none"){$(".sq_complete").css("top","0")}else{$(".sq_complete").css("top","28px")}setTimeout(function(){$("ul.sq_complete").remove()},timeout);$.sq_setCache("complete_"+ky,"1")}}}$(".sq_blockseo_progress").val(parseInt($this.getPercentCompleted()));$.sq_fields.sq_keyword_score.html(parseInt($this.getPercentCompleted())+"%")};$this.setChecked=function(cond,id,hidden){var cached=null;var ky=$.sq_config.keyword.replace(/[^a-zA-Z0-9]/g,"");if($.sq_getCookie("sq_sla")==="off"){hidden=true}if(cond){$.sq_fields.div_blockseo.find("#sq_"+id).attr("class","checked");if($.sq_fields.div_blockseo.find("#sq_"+id).find(".sq_request_highlight_key").length>0){$.sq_fields.div_blockseo.find("#sq_"+id).find(".sq_request_highlight_key").hide();$this.sq_eventsseo.listenHighlight(false)}cached=$.sq_getCache("task_"+ky+id);if(cached!=="1"){if($.sq_config.manual){if(typeof hidden==="undefined"){$this.addTopNotification(id)}}}SQ_DEBUG&&console.log("sq_setCache true: ",id);$.sq_setCache("task_"+ky+id,"1");$.sq_fields.div_blockseo.find("#sq_input_"+id+"").remove();$.sq_fields.div_blockseo.find("#sq_"+id).append('<input id="sq_input_'+id+'" type="hidden" name="sq_seo[]" value="'+id+'" />')}else{$.sq_setCache("task_"+ky+id,"0");if(id!=="img"&&id!=="alt"){SQ_DEBUG&&console.log("sq_setCache false: ",id);$.sq_setCache("complete_"+ky,"0")}$.sq_fields.div_blockseo.find("#sq_"+id).removeClass("checked");if($.sq_fields.div_blockseo.find("#sq_"+id).find(".sq_request_highlight_key").length>0){$.sq_fields.div_blockseo.find("#sq_"+id).find(".sq_request_highlight_key").show();$this.sq_eventsseo.listenHighlight(true)}$.sq_fields.div_blockseo.find("#sq_input_"+id).remove()}$this.checkCompleted();if(!$.sq_config.briefcase){$this.trigger("seo.after_checked",[id])}return Boolean(cond)};$this.addTopNotification=function(id){if($.sq_config.silent){return}var task=$.sq_fields.div_blockseo.find("#sq_"+id).clone();task=task.find(".sq_help").remove();task=task.end().html();$("ul.sq_notification").remove();$("body").append($("<ul/>").attr("id","sqt_"+id).html("<li>"+task+"</li>").addClass("sq_notification").css("zIndex","100000001"));if($("#wpadminbar").css("display")=="none"){$(".sq_notification").css("top","0")}else{$(".sq_notification").css("top","28px")}if($("#sq_"+id).find(".sq_seo_priority_essential").length>0){$("#sqt_"+id).addClass("sq_notification_front")}if($this.timeout)clearTimeout($this.timeout);$this.timeout=setTimeout(function(){$("ul.sq_notification").fadeOut("slow");$("ul.sq_notification").remove()},3e3)};$this.checkLength=function(str,min,max){str=$.sq_clearText(str);if(min>0&&str.length>=min&&(max===0||str.length<=max)){return true}return false};$this.checkWordsLength=function(str,min,max){if(min>0&&$this.wordCount(str)>=min&&(max===0||$this.wordCount(str)<=max)){return true}return false};$this.getWords2Min=function(str,min){if(min>0&&$this.wordCount(str)<min){return(min-$this.wordCount(str)+1).toFixed()}return 0};$this.urlMatch=function(str,keyword){if(str===false)return;if(typeof keyword==="undefined")return;var original=keyword;str=$.sq_clearText(str);str=$.sq_stripChars(str);keyword=$.sq_umlautsText(keyword);keyword=$.sq_clearText(keyword);keyword=$.sq_stripChars(keyword);SQ_DEBUG&&console.log("keywordMatch: "+keyword+"=>"+str);if(str!==""&&keyword!==""){var matches=0;$.sq_highlight($("<div>"+str+"</div>"),keyword,{counter:1,done:function(count){matches=count}});if(!matches){keyword=keyword.replace(/\s/g,"");$.sq_highlight($("<div>"+str+"</div>"),keyword,{counter:1,done:function(count){matches=count}})}if(!matches&&original.indexOf("ü")){keyword=original.replace("ü","ue");keyword=$.sq_clearText(keyword);keyword=$.sq_stripChars(keyword);$.sq_highlight($("<div>"+str+"</div>"),keyword,{counter:1,done:function(count){matches=count}})}SQ_DEBUG&&console.log("matches="+matches);return matches>0}};$this.keywordMatch=function(str,keyword,exact_match){var matches=0;if(str===false)return matches;if(typeof keyword==="undefined")return matches;if(typeof exact_match==="undefined")exact_match=false;str=$.sq_clearText(str);keyword=$.sq_clearText(keyword);keyword=keyword.replace(/[\"]/g,"");keyword=keyword.trim();if(typeof str!=="undefined"&&str!==""&&keyword!==""){matches=$.sq_strEqual(str,keyword);if(!exact_match){if(!matches){$.sq_highlight($("<div>"+str+"</div>"),keyword,{counter:0,done:function(count){matches=count}});SQ_DEBUG&&console.log("matches="+matches)}}}return matches};$this.keywordDensity=function(str,low,high,id){var density=$this.getDensity(str,$.sq_config.keyword);var cached=null;var ky=$.sq_config.keyword.replace(/[^a-zA-Z0-9]/g,"");if(density.words<$this.checkWordsLength($.sq_config.keyword)){SQ_DEBUG&&console.log("keywordDensity: TOO FEW WORDS ",density.words);$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html("");$this.setChecked(false,id);return}if(density.val<=low&&density.keywords<$.sq_params.max_keywords){SQ_DEBUG&&console.log("keywordDensity: TOO LOW ",density.val,low,density.keywords,$.sq_params.max_keywords);var need=density.words-100*density.keywords/low;need=Math.round(need)<=0?1:Math.round(need);var kr_need=Math.min(low*density.words/100-density.keywords+.5,$.sq_params.max_keywords-density.keywords);kr_need=Math.round(kr_need)<=0?1:kr_need.toFixed();$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html($.sq_fields.div_blockseo.find("#sq_"+id+"_low").html());$.sq_fields.div_blockseo.find("#sq_"+id+"_val").parent("li").attr("class","sq_"+id+"_low");cached=$.sq_getCache("task_"+ky+id);if(cached==="1"){if($.sq_config.manual){$this.addTopNotification(id);$this.find("#sqt_"+id).addClass("sq_"+id+"_low")}}$.sq_setCache("task_"+ky+id,"2");$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html($.sq_fields.div_blockseo.find("#sq_"+id+"_low").html()+" ("+$.sq_config.__addmorekeywords.replace(/%s/g,kr_need)+(need<density.words?" "+$.sq_config.__removewords.replace(/%s/g,Math.min(need,density.words)):"")+")");$.sq_fields.div_blockseo.find("#sq_input_"+id).remove()}else{if(density.val>=high){SQ_DEBUG&&console.log("keywordDensity: TOO HIGH ",density.val);var need=100*density.keywords/high-density.words+.5;need=Math.round(need)<=0?1:Math.round(need);var kr_need=density.keywords-high*density.words/100+.5;kr_need=Math.round(kr_need)<=0?1:kr_need.toFixed();$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html($.sq_fields.div_blockseo.find("#sq_"+id+"_high").html());$.sq_fields.div_blockseo.find("#sq_"+id+"_val").parent("li").attr("class","sq_"+id+"_high");cached=$.sq_getCache("task_"+ky+id);if(cached==="1"){if($.sq_config.manual){$this.addTopNotification(id);$this.find("#sqt_"+id).addClass("sq_"+id+"_high")}}$.sq_setCache("task_"+ky+id,"3");if($this.checkWordsLength(str,$.sq_params.min_length_body,$.sq_params.max_length_body)!==false)kr_need="remove "+kr_need+" keyword(s) or ";else kr_need="";$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html($.sq_fields.div_blockseo.find("#sq_"+id+"_high").html()+" ("+kr_need+$.sq_config.__addmorewords.replace(/%s/g,need)+")");$.sq_fields.div_blockseo.find("#sq_input_"+id).remove()}else{SQ_DEBUG&&console.log("keywordDensity: "+((density.val>low||density.keywords>=$.sq_params.max_keywords)&&density.val<high),density.val,low,density.keywords,$.sq_params.max_keywords);$.sq_fields.div_blockseo.find("#sq_"+id+"_val").html($.sq_fields.div_blockseo.find("#sq_"+id+"_done").html());$this.setChecked((density.val>low||density.keywords>=$.sq_params.max_keywords)&&density.val<high,id)}}};$this.getDensity=function(str,keyword){var density={};keyword=$.sq_clearText(keyword);str=$.sq_clearText(str);density.keywords=$this.phraseCount(str,keyword);density.words=$this.wordCount(str);density.words=density.words-density.keywords*($this.keywordWords(keyword)-1);if(density.words>0){density.val=density.keywords*100/density.words}else if(density.keywords>=1){density.val=100}else{density.val=0}return density};$this.keywordWords=function(keyword){var pattern=new RegExp("[㐀-龿 -〿぀-ゟ゠-ヿ＀-゚一-龯㐀-䶿]|\\S+","gi");var words=keyword.match(pattern);if(words&&words.length>0)return words.length+1;else return 1};$this.phraseCount=function(str,keyword){var words=0;$.sq_highlight($("<div>"+str+"</div>"),keyword,{counter:1,done:function(count){words=count}});return words};$this.wordCount=function(str){str=$.sq_clearText(str);var matches=str.match(/[\u3400-\u9FBF\u3000-\u303f\u3040-\u309f\u30a0-\u30ff\uff00-\uff9f\u4e00-\u9faf\u3400-\u4dbf]|\S+/g);if(matches)return matches.length;return 0};$this.sq_eventsseo={listen:function(){$.post($.sq_config.ajaxurl,{action:"sla_tasks",sq_nonce:$.sq_config.sq_nonce,output:"json"}).done(function(response){$this.sq_doneloading("sq_minloading").removeClass("sq_error");if(typeof response.data!=="undefined"&&typeof response.data.tasks!=="undefined"&&$this.find(".sq_tasks").length>0){settings.custom_tag.push("<(strong|b)[^>]*>(.*?)</(strong|b)>");settings.custom_tag_id.push("strong");settings.custom_tag.push("<h[1-6][^>]*>(.*?)</h[1-6]>");settings.custom_tag_id.push("h2_6");settings.single_tag.push("img");settings.custom_tag.push('alt=["]([^"]+)["]');settings.custom_tag_id.push("alt");$this.find(".sq_tasks").append(response.data.tasks);$this.find(".sq_tasks").find("li").show();$this.sq_eventsseo.listenHighlight(true);$this.on("seo.refresh",function(){$.sq_config.div.find(".sq_seo_refresh").addClass("sq_minloading");setTimeout(function(){$.sq_config.div.find(".sq_seo_refresh").removeClass("sq_minloading");$this.load()},1e3)});$.sq_config.div.find(".sq_seo_refresh").on("lateclick",function(){$this.trigger("seo.refresh");$this.trigger("seo.refresh_lateclick")});$.sq_config.div.find(".sq_seo_refresh").on("click",function(){$this.trigger("seo.refresh");$this.trigger("seo.refresh_click")});$this.trigger("seo.refresh");$this.trigger("seo.task_loaded")}else{$this.sq_doneloading("sq_minloading").removeClass("sq_error");$this.find(".sq_tasks").html('<div class="sq_message" style="width: 100% !important;">'+$.sq_config.__ajaxerror+"</div>")}});$this.sq_eventsseo.listenTitle();$this.sq_eventsseo.listenSlug();$.sq_fields.content_tmce.on("click",function(){$.sq_config.editor_type="tinymce"});$.sq_fields.content_html.on("click",function(){$.sq_config.editor_type="html"});$("#save-post,#publish,#post-preview").click(function(){if($.sq_blockbriefcase){$.sq_blockbriefcase.trigger("briefcase.save")}$.sq_removeHighlight($.sq_getBuilderEditorContainer());if($.sq_config.keyword!==""){$.sq_blocksearch.addTag();$.sq_fields.wp_publish.focus()}});$.sq_fields.wp_input_title.off("click").on("click",function(){if($this.find(".sq_overlay").length>0)if($.sq_fields.sq_keyword.val()!==""){$.sq_config.showInspiration=false;$.sq_fields.sq_selectit.trigger("click")}});if(typeof ET_PageBuilder!=="undefined"&&typeof ET_PageBuilder.Events!=="undefined"){ET_PageBuilder.Events.on("et-pb-loading:ended",function(){$(".et-pb-remove").on("click",function(){SQ_DEBUG&&console.log("Divi Save Pressed");$.sq_config.div.find(".sq_seo_refresh").trigger("lateclick")})});ET_PageBuilder.Events.on("et-modal-settings:save",function(){ET_PageBuilder.Events.on("et-modal-view-removed",function(){SQ_DEBUG&&console.log("Divi Save Pressed");$.sq_config.div.find(".sq_seo_refresh").trigger("lateclick");$(".et-pb-remove").on("click",function(){SQ_DEBUG&&console.log("Divi Save Pressed");$.sq_config.div.find(".sq_seo_refresh").trigger("lateclick")})})})}if($("#visual_composer_content").length>0){if($("div#vc_ui-panel-edit-element").length>0){$("div#vc_ui-panel-edit-element").find("span[data-vc-ui-element=button-save]").on("click",function(){SQ_DEBUG&&console.log("Visual Composer Save");$.sq_config.div.find(".sq_seo_refresh").trigger("lateclick");if($("#visual_composer_content").find(".vc-c-icon-delete_empty").length>0){$("#visual_composer_content").find(".vc-c-icon-delete_empty").on("click",function(){SQ_DEBUG&&console.log("Visual Composer Delete");$.sq_config.div.find(".sq_seo_refresh").trigger("lateclick")})}})}if($("#visual_composer_content").find(".vc-c-icon-delete_empty").length>0){$("#visual_composer_content").find(".vc-c-icon-delete_empty").on("click",function(){SQ_DEBUG&&console.log("Visual Composer Delete");$.sq_config.div.find(".sq_seo_refresh").trigger("lateclick")})}}},listenTinymce:function(){SQ_DEBUG&&console.log("listenTinymce");$.sq_config.editor_type="tinymce";if($.sq_config.interval_seo){clearInterval($.sq_config.interval_seo)}$.sq_config.interval_seo=setInterval(function(){var iframe_tinymce=$.sq_editor.getIframeEditor();if(iframe_tinymce!==false){$.sq_editor.insertHandler=function(e){$.sq_config.active_editor=$(this);if(e.target.nodeName==="IMG"){SQ_DEBUG&&console.log("DOMNodeInserted ",e);$.sq_editor.listen(e);$this.callback()}};$(iframe_tinymce).off("DOMNodeInserted",$.sq_editor.insertHandler).on("DOMNodeInserted",$.sq_editor.insertHandler);$.sq_editor.removeHandler=function(e){$.sq_config.active_editor=$(this);if(e.target.nodeName==="IMG"){SQ_DEBUG&&console.log("DOMNodeRemoved "+e.target.nodeName);$.sq_editor.lastimage="";$this.callback()}};$(iframe_tinymce).off("DOMNodeRemoved",$.sq_editor.removeHandler).on("DOMNodeRemoved",$.sq_editor.removeHandler);$.sq_editor.changeHandler=function(e){$.sq_config.active_editor=$(this);SQ_DEBUG&&console.log(" keyup mouseup ",e.type);if(e.type==="mouseup"){$.sq_removeHighlight($.sq_getBuilderEditorContainer())}if($.sq_config.timeout_seo){clearTimeout($.sq_config.timeout_seo)}$.sq_config.timeout_seo=setTimeout(function(){if($this.find(".sq_overlay").length>0)if($.sq_fields.sq_keyword.val()!==""){$.sq_config.showInspiration=false;$.sq_fields.sq_selectit.trigger("click")}$this.callback()},$.sq_config.delay_seo)};$(iframe_tinymce).off("keyup mouseup",$.sq_editor.changeHandler).on("keyup mouseup",$.sq_editor.changeHandler);$this.callback();clearInterval($.sq_config.interval_seo);$.sq_removeHighlight($.sq_getBuilderEditorContainer())}if(typeof $.sq_config.frontend_css!=="undefined"){if($.sq_editor.getIframeEditor("head link[href='"+$.sq_config.frontend_css+"']")===false){var iframe_head=$.sq_editor.getIframeEditor("head");if(iframe_head!==false){iframe_head.append($("<link/>",{rel:"stylesheet",href:$.sq_config.frontend_css,type:"text/css"}))}}}$this.sq_eventsseo.listenFeatureImage()},3e4)},stopListenTinymce:function(){SQ_DEBUG&&console.log("stop listen Tinymce");if($.sq_config.interval_seo){clearInterval($.sq_config.interval_seo)}var iframe_tinymce=$.sq_editor.getIframeEditor();if(iframe_tinymce!==false)$(iframe_tinymce).off("keyup mouseup")},listenHtml:function(){$.sq_config.editor_type="html";$.sq_fields.wp_content.on("click keyup",function(){$.sq_config.active_editor=$(this);if($.sq_config.editor_type==="html"){if($this.timeout_html){clearTimeout($this.timeout_html)}$this.timeout_html=setTimeout(function(){$this.callback()},$.sq_config.delay_seo)}});$.sq_fields.wp_content.on("dragover",false).on("dragenter",false).on("drop",function(e){if($.sq_config.editor_type==="html"){e.preventDefault();$.sq_editor.listenHtml(e)}});$this.sq_eventsseo.listenFeatureImage();$this.sq_eventsseo.listenMediaLibrary()},listenFeatureImage:function(){$("#postimagediv").on("DOMNodeInserted DOMNodeRemoved",function(){$this.checkImage($(this))});$(".editor-post-featured-image").on("DOMNodeInserted DOMNodeRemoved",function(){$this.checkImage($(this))})},listenMediaLibrary:function(){if($.sq_fields.wp_thumbnail_alt.length>0){$.sq_fields.wp_thumbnail_alt.on("keyup",function(){$this.setChecked($this.keywordMatch($.sq_fields.wp_thumbnail_alt.val(),$.sq_config.keyword),"alt")});$this.checkImage($.sq_fields.wp_thumbnail);$this.setChecked($this.keywordMatch($.sq_fields.wp_thumbnail_alt.val(),$.sq_config.keyword),"alt")}},listenVComposer:function(){if($("#visual_composer_content").length>0){var composer=$("#visual_composer_content");if(composer.find("img.attachment-thumbnail").length>0){SQ_DEBUG&&console.log("Visual Composer Image");$this.checkImage($("#visual_composer_content").find("img.attachment-thumbnail").parents(".wpb_content_element:last"))}if(composer.find("ul.attachment-thumbnails").length>0){SQ_DEBUG&&console.log("Visual Composer Galerry");$this.checkImage($("#visual_composer_content").find("ul.attachment-thumbnails"))}if(composer.find(".wpb_vc_custom_heading .admin_label_text").length>0){composer.find(".wpb_vc_custom_heading .admin_label_text").each(function(){if($this.keywordMatch($(this).text(),$.sq_config.keyword)){SQ_DEBUG&&console.log("Visual Composer Headline");return $this.setChecked($this.keywordMatch($(this).text(),$.sq_config.keyword),"h2_6")}})}}},listenFusion:function(){if($(".fusion_module_block_preview").find("img").length>0){SQ_DEBUG&&console.log("Fusion Image Preview");$this.checkImage($(".fusion_module_block_preview").find("img").parents("div:last"))}else if($("img.fusion-child-element-image").length>0){SQ_DEBUG&&console.log("Fusion Image Element");$this.checkImage($("img.fusion-child-element-image").parents("div:last"))}if($(".fusion_module_block_preview").find(".title_text").length>0){$(".fusion_module_block_preview").find(".title_text").each(function(){if($this.keywordMatch($(this).text(),$.sq_config.keyword)){SQ_DEBUG&&console.log("Fusion Headline");return $this.setChecked($this.keywordMatch($(this).text(),$.sq_config.keyword),"h2_6")}})}},stopListenHtml:function(){SQ_DEBUG&&console.log("stop listen HTML");$.sq_fields.wp_content.off("keyup");$.sq_fields.wp_content.off("drop")},listenTitle:function(){SQ_DEBUG&&console.log("listen title");$.sq_fields.wp_input_title.off("keyup change").on("keyup change",function(){$(this).trackLength("wp_title");$.sq_config.manual=true;$.sq_config.silent=false;$.sq_config.briefcase=false;$this.checkTitle()});if($("#sq_wp_title_info").length==0){$.sq_fields.wp_input_title.after($.sq_fields.sq_wp_title_info)}},listenSlug:function(){var timeout_post_slug=setInterval(function(){if($("#new-post-slug").length>0){clearInterval(timeout_post_slug);$("#new-post-slug").off("keyup").on("keyup",function(){$this.checkKPinguinUrl()});$("#edit-slug-buttons").find("a").on("click",function(){$this.sq_eventsseo.listenSlug()})}},3e4);var timeout_sample_permalink=setInterval(function(){if($("#sample-permalink").length>0){clearInterval(timeout_sample_permalink);if(typeof $.sq_loadFrontMenu!=="undefined"){SQ_DEBUG&&console.log("Reload the Squirrly Snippet");$.sq_loadFrontMenu()}}},3e4)},listenHighlight:function(on){if(on){settings.clicked["highlight"]=false;$this.find(".sq_request_highlight_key").parents("li:last").on("click",function(e){e.stopPropagation();settings.clicked["highlight"]=true}).on("mouseenter",function(e){e.stopPropagation();$(this).css("cursor","pointer");$.sq_highlight($.sq_getBuilderEditorContainer(),$.sq_config.keyword)}).on("mouseleave",function(){$.sq_removeHighlight($.sq_getBuilderEditorContainer())})}else{$this.find(".sq_request_highlight_key").parents("li:last").off()}}};$this.one("seo.loaded",function(){SQ_DEBUG&&console.log("sq_blockseo seo.loaded");if(!$.sq_config.subscription_active){return}if(!$.sq_isGutenberg()&&!$.sq_isFrontend()){if($.sq_fields.wp_content_wrap.length>0&&$.sq_fields.wp_content_wrap.attr("class").indexOf("html-active")!==-1){SQ_DEBUG&&console.log("seo.loaded listenHTML");$this.sq_eventsseo.listenHtml();$.sq_config.active_editor=$.sq_fields.wp_content}else{SQ_DEBUG&&console.log("seo.loaded listenTinymce");$this.sq_eventsseo.listenTinymce();$.sq_config.active_editor=$.sq_editor.getIframeEditor()}}else if($.sq_isGutenberg()){wp.data.subscribe(function(){var ed=$.sq_editor.getBlockEditor("select");if(ed&&ed.isTyping){if($.sq_config.timeout_seo){clearTimeout($.sq_config.timeout_seo)}$.sq_config.timeout_seo=setTimeout(function(){$this.callback()},$.sq_config.delay_seo)}if(ed&&ed.isSavingPost()&&!ed.isAutosavingPost()){if($.sq_floating){if($.sq_config.timeout_save){clearTimeout($.sq_config.timeout_save)}$.sq_config.timeout_save=setTimeout(function(){$.sq_floating.trigger("seo.floating.page_saved")},$.sq_config.delay_seo)}}})}$this.sq_loading();$this.one("seo.keyword_loaded",function(){$this.sq_eventsseo.listen()})});return $this};$.fn.trackLength=function(type){var $this=this;var min=0;var max=0;var color="green";if(typeof $this==="undefined")return;if(type==="title"||type==="wp_title"){min=$.sq_params.min_length_title;max=$.sq_params.max_length_title}else if(type==="description"){min=$.sq_params.min_length_description;max=$.sq_params.max_length_description}if(min>0&&min>$this.val().length){color="red"}else if(max>0&&max<$this.val().length){color="red"}else{color="green"}if(max>0){$("#sq_"+type+"_info").html($this.val().length+"/"+max);$("#sq_"+type+"_info").css("color",color)}}})(jQuery);
view/assets/js/assistant/sq_briefcase.min.js CHANGED
@@ -1 +1 @@
1
- (function($){"use strict";if($.isFunction($.fn.sq_briefcase)){return}$.fn.sq_briefcase=function(options){var $this=this;var settings=$.extend({briefcase_keywords:[],optimizations:[],getapi:false,gettimeout:false,loaded:false,tmpk:false},options);$.sq_fields=$.extend({sq_briefcase:$.sq_config.div.find("#sq_briefcase"),sq_briefcase_help:$.sq_config.div.find("#sq_briefcase_help"),sq_keywords_briefcase:$this.find("#sq_keywords_briefcase"),sq_briefcase_content:$this.find("#sq_briefcase_content"),sq_briefcase_keyword:$this.find("#sq_briefcase_keyword"),sq_briefcase_close:$this.find("#sq_briefcase_close")},$.sq_fields);$this.init=function(){settings.loaded=true;$this.show();$.sq_fields.sq_briefcase_keyword.val("");$this.get()};$this.get=function(search,circles){$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_notused").sq_loading();var labels=[];if(typeof circles!=="undefined"){circles.each(function(){labels.push($(this).data("id"))})}settings.getapi=$.post($.sq_config.ajaxurl,{action:"sla_briefcase_get",sq_nonce:$.sq_config.sq_nonce,post_id:$.sq_config.postID,search:search,label:labels.length>0?labels.join(","):"",return:"html",output:"json"}).done(function(response){if(typeof response.data.briefcase!=="undefined"){$this.loadList(response.data.briefcase)}else{if(typeof search==="undefined"||search===""){$.sq_fields.sq_briefcase_content.html($.sq_config.__no_briefcase).addClass("sq_error")}}if(typeof search!=="undefined"&&search!==""){$.sq_fields.sq_briefcase_keyword.focus()}$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_notused").sq_doneloading();$this.trigger("briefcase.after_get")}).fail(function(){$.sq_fields.sq_errorloading.show();$.sq_fields.sq_preloading_keyword.hide();$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_notused").sq_doneloading()})};$this.optimize=function(keyword){$.post($.sq_config.ajaxurl,{action:"sla_briefcase_add",sq_nonce:$.sq_config.sq_nonce,post_id:$.sq_config.postID,keyword:keyword,output:"json"}).done(function(response){$this.get($.sq_fields.sq_briefcase_keyword.val(),$.sq_fields.sq_briefcase_content.find(".sq_briefcase_circle.sq_active"))}).fail(function(){$.sq_fields.sq_briefcase_content.html("Lost connection with the server. Please make sure you whitelisted the IP from https://api.squirrly.co").addClass("sq_error")})};$this.blink=function($obj,$times){if(typeof $times==="undefined")$times=0;if($times>3)return;$obj.animate({opacity:0},150,"linear",function(){$(this).animate({opacity:1},150,"linear",function(){$this.blink($obj,$times+1)})})};$this.delete=function(id){$.post($.sq_config.ajaxurl,{action:"sla_briefcase_delete",sq_nonce:$.sq_config.sq_nonce,id:id,output:"json"}).done(function(response){$this.get($.sq_fields.sq_briefcase_keyword.val(),$.sq_fields.sq_briefcase_content.find(".sq_briefcase_circle.sq_active"))}).fail(function(){$.sq_fields.sq_briefcase_content.html("Lost connection with the server. Please make sure you whitelisted the IP from https://api.squirrly.co").addClass("sq_error")})};$this.loadList=function(briefcase){$.sq_fields.sq_briefcase_content.before($.sq_fields.sq_briefcase_keyword);$.sq_fields.sq_briefcase_content.html(briefcase).removeClass("sq_error");$.sq_fields.sq_briefcase_content.find("ul.sq_briefcase_item_used").after($.sq_fields.sq_briefcase_keyword);if(typeof $.sq_config.lsi!=="undefined"){$.each($.sq_config.lsi,function(key,value){if(value.main){$.sq_fields.sq_keyword.val(value.keyword)}})}$.sq_fields.sq_briefcase_keyword.show();$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_circles").show();var $briefcase_empty=$.sq_fields.sq_briefcase_content.find("ul.sq_briefcase_item_notused").find(".sq_briefcase_empty");if($briefcase_empty.length>0){$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_circles").hide();if($.sq_fields.sq_briefcase_keyword.val()!==""||$.sq_fields.sq_briefcase_content.find(".sq_briefcase_circle.sq_active").length>0){$briefcase_empty.append('<div style="color: #6200EE; padding: 3px; cursor: pointer;" ><i class="fa-solid fa-plus-circle" ></i> add this keyword</div>');$briefcase_empty.on("click",function(){$this.optimize($.sq_fields.sq_briefcase_keyword.val())})}}$this.setEvents();$this.setMainKeyword($.sq_fields.sq_keyword.val())};$this.setMainKeyword=function(keyword){if(typeof $.sq_fields.sq_briefcase_content!=="undefined"){if($.sq_fields.sq_briefcase_content.find("li.sq_briefcase_item_used").length>0){$.sq_fields.sq_briefcase_content.find("li.sq_briefcase_item_used").removeClass("sq_main_keyword");$.sq_fields.sq_briefcase_content.find("li.sq_briefcase_item_used").each(function(){if(keyword===""||$.sq_strEqual(keyword,$(this).find(".sq_briefcase_value").text())){$(this).addClass("sq_main_keyword");$("#sq_nokeyword").hide();$(".sq_keyword").show();$.sq_fields.sq_keyword.val($(this).find(".sq_briefcase_value").text());$.sq_fields.sq_keyword_score.html($(this).find(".sq_briefcase_item_percent").text());return false}});$("#sq_nokeyword").hide();$(".sq_keyword").show()}}$.sq_fields.sq_selectit.trigger("click")};$this.getColor=function(value){var hue=value.toString();return["hsl(",hue,",71%,43%)"].join("")};$this.setColor=function(obj,value){return;obj.css("color",$this.getColor(value));obj.css("font-weight","bold")};$this.setEvents=function(){$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_delete").on("click",function(){$(this).parent("li").sq_loading();$this.delete($(this).data("id"))});$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_used").find(".sq_briefcase_value").on("click",function(){$this.setMainKeyword($(this).text())});$.sq_fields.sq_briefcase_content.find(".sq_briefcase_circle").on("click",function(){if($(this).hasClass("sq_active")){$(this).removeClass("sq_active")}else{$(this).addClass("sq_active")}$this.get($.sq_fields.sq_briefcase_keyword.val(),$.sq_fields.sq_briefcase_content.find(".sq_briefcase_circle.sq_active"))});$this.find(".sq_briefcase_optimize").on("click",function(){$(this).parent("li").sq_loading();$this.optimize($(this).data("value"))});$this.checkKeywords()};$this.setOptimizations=function(){$.sq_config.silent=true;$.sq_config.briefcase=true;settings.show_addtobriefcasebutton=true;settings.tmpk=$.sq_config.keyword;settings.optimizations=[];if($.sq_fields.sq_briefcase_content.find("li.sq_briefcase_item_used").length>0){$.sq_fields.sq_briefcase_content.find("li.sq_briefcase_item_used").each(function(){$.sq_config.keyword=$(this).find(".sq_briefcase_value").text();if($.sq_strEqual($.sq_fields.sq_keyword.val(),$(this).find(".sq_briefcase_value").text())){settings.show_addtobriefcasebutton=false}$.sq_config.div.find("#sq_blockseo_briefcase").remove();$.sq_fields.div_blockseo.after($.sq_fields.div_blockseo.clone().prop("id","sq_blockseo_briefcase").hide());$.sq_fields.div_blockseo=$.sq_config.div.find("#sq_blockseo_briefcase");$.sq_fields.div_blockseo.find("li").removeClass("checked");$.sq_fields.div_blockseo.find("input").remove();$.sq_blockseo.checkWpFields();$.sq_blockseo.checkSEO();var completed=$.sq_blockseo.getPercentCompleted();if(completed){$(this).find(".sq_briefcase_item_percent").html(parseInt(completed)+"%");$this.setColor($(this).find(".sq_briefcase_value"),parseInt(completed));if($.sq_strEqual($.sq_fields.sq_keyword.val(),$(this).find(".sq_briefcase_value").text())){$.sq_fields.sq_keyword_score.html(parseInt(completed)+"%")}}$(this).attr("data-position",parseInt(completed));settings.optimizations.push({keyword:$(this).find(".sq_briefcase_value").html(),score:completed,main:$(this).hasClass("sq_main_keyword")});$.sq_fields.div_blockseo.remove();$.sq_fields.div_blockseo=$.sq_config.div.find("#sq_blockseo")})}else{settings.show_addtobriefcasebutton=true}$.sq_config.keyword=settings.tmpk;return settings.optimizations};$this.checkKeywords=function(){$this.setOptimizations();$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_used").find(".sq_briefcase_separator").attr("data-position",-2);$.sq_fields.sq_briefcase_content.find("ul.sq_briefcase_item_used li").sort($this.sortList).appendTo($.sq_fields.sq_briefcase_content.find("ul.sq_briefcase_item_used"));if(settings.show_addtobriefcasebutton){if($.sq_fields.wp_publish.find("#sq_publish_alert").length==0){$("#sq_publish_alert_briefcase").find("#sq_addtobriefcase").show()}}};$this.sortList=function(a,b){return $(b).data("position")<$(a).data("position")?-1:1};$this.sendOptimization=function(){$this.setOptimizations();if(settings.optimizations.length){$.post($.sq_config.ajaxurl,{action:"sla_briefcase_save",sq_nonce:$.sq_config.sq_nonce,post_id:$.sq_config.postID,optimizations:JSON.stringify(settings.optimizations)}).done(function(response){}).fail(function(){})}};$this.listen=function(){$.sq_fields.sq_briefcase_keyword.on("keypress",function(event){if(event.keyCode===$.ui.keyCode.ENTER){clearTimeout(settings.gettimeout);settings.getapi.abort();$this.get($.sq_fields.sq_briefcase_keyword.val(),$.sq_fields.sq_briefcase_content.find(".sq_briefcase_circle.sq_active"));return false}});$.sq_fields.sq_briefcase_keyword.on("keyup",function(event){if(event.keyCode!==$.ui.keyCode.ENTER){clearTimeout(settings.gettimeout);settings.getapi.abort();settings.gettimeout=setTimeout(function(){$this.get($.sq_fields.sq_briefcase_keyword.val(),$.sq_fields.sq_briefcase_content.find(".sq_briefcase_circle.sq_active"))},1e3)}});$this.on("briefcase.save",function(){$this.sendOptimization()})};$this.one("seo.loaded",function(){SQ_DEBUG&&console.log("sq_briefcase seo.loaded");if(!$.sq_config.subscription_active){return}$this.listen();$.sq_blockseo.on("seo.task_loaded",function(){$this.get()});$.sq_blockseo.on("seo.callback",function(){$this.checkKeywords()});setInterval(function(){$this.trigger("briefcase.save")},3e4);$this.on("briefcase.refresh",function(){SQ_DEBUG&&console.log("sq_briefcase refresh");$this.init(false)});$this.trigger("briefcase.refresh")});return $this}})(jQuery);
1
+ (function($){"use strict";if($.isFunction($.fn.sq_briefcase)){return}$.fn.sq_briefcase=function(options){var $this=this;var settings=$.extend({briefcase_keywords:[],optimizations:[],getapi:false,gettimeout:false,loaded:false,tmpk:false},options);$.sq_fields=$.extend({sq_briefcase:$.sq_config.div.find("#sq_briefcase"),sq_briefcase_help:$.sq_config.div.find("#sq_briefcase_help"),sq_keywords_briefcase:$this.find("#sq_keywords_briefcase"),sq_briefcase_content:$this.find("#sq_briefcase_content"),sq_briefcase_keyword:$this.find("#sq_briefcase_keyword"),sq_briefcase_close:$this.find("#sq_briefcase_close")},$.sq_fields);$this.init=function(){settings.loaded=true;$this.show();$.sq_fields.sq_briefcase_keyword.val("");$this.get()};$this.get=function(search,circles){$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_notused").sq_loading();var labels=[];if(typeof circles!=="undefined"){circles.each(function(){labels.push($(this).data("id"))})}settings.getapi=$.post($.sq_config.ajaxurl,{action:"sla_briefcase_get",sq_nonce:$.sq_config.sq_nonce,post_id:$.sq_config.postID,search:search,label:labels.length>0?labels.join(","):"",return:"html",output:"json"}).done(function(response){if(typeof response.data.briefcase!=="undefined"){$this.loadList(response.data.briefcase)}else{if(typeof search==="undefined"||search===""){$.sq_fields.sq_briefcase_content.html($.sq_config.__no_briefcase).addClass("sq_error")}}if(typeof search!=="undefined"&&search!==""){$.sq_fields.sq_briefcase_keyword.focus()}$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_notused").sq_doneloading();$this.trigger("briefcase.after_get")}).fail(function(){$.sq_fields.sq_errorloading.show();$.sq_fields.sq_preloading_keyword.hide();$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_notused").sq_doneloading()})};$this.optimize=function(keyword){$.post($.sq_config.ajaxurl,{action:"sla_briefcase_add",sq_nonce:$.sq_config.sq_nonce,post_id:$.sq_config.postID,keyword:keyword,output:"json"}).done(function(response){$this.get($.sq_fields.sq_briefcase_keyword.val(),$.sq_fields.sq_briefcase_content.find(".sq_briefcase_circle.sq_active"))}).fail(function(){$.sq_fields.sq_briefcase_content.html("Lost connection with the server. Please make sure you whitelisted the IP from https://api.squirrly.co").addClass("sq_error")})};$this.blink=function($obj,$times){if(typeof $times==="undefined")$times=0;if($times>3)return;$obj.animate({opacity:0},150,"linear",function(){$(this).animate({opacity:1},150,"linear",function(){$this.blink($obj,$times+1)})})};$this.delete=function(id){$.post($.sq_config.ajaxurl,{action:"sla_briefcase_delete",sq_nonce:$.sq_config.sq_nonce,id:id,output:"json"}).done(function(response){$this.get($.sq_fields.sq_briefcase_keyword.val(),$.sq_fields.sq_briefcase_content.find(".sq_briefcase_circle.sq_active"))}).fail(function(){$.sq_fields.sq_briefcase_content.html("Lost connection with the server. Please make sure you whitelisted the IP from https://api.squirrly.co").addClass("sq_error")})};$this.loadList=function(briefcase){$.sq_fields.sq_briefcase_content.before($.sq_fields.sq_briefcase_keyword);$.sq_fields.sq_briefcase_content.html(briefcase).removeClass("sq_error");$.sq_fields.sq_briefcase_content.find("ul.sq_briefcase_item_used").after($.sq_fields.sq_briefcase_keyword);if(typeof $.sq_config.lsi!=="undefined"){$.each($.sq_config.lsi,function(key,value){if(value.main){$.sq_fields.sq_keyword.val(value.keyword)}})}$.sq_fields.sq_briefcase_keyword.show();$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_circles").show();var $briefcase_empty=$.sq_fields.sq_briefcase_content.find("ul.sq_briefcase_item_notused").find(".sq_briefcase_empty");if($briefcase_empty.length>0){$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_circles").hide();if($.sq_fields.sq_briefcase_keyword.val()!==""||$.sq_fields.sq_briefcase_content.find(".sq_briefcase_circle.sq_active").length>0){$briefcase_empty.append('<div style="color: #6200EE; padding: 3px; cursor: pointer;" ><i class="fa-solid fa-plus-circle" ></i> add this keyword</div>');$briefcase_empty.on("click",function(){$this.optimize($.sq_fields.sq_briefcase_keyword.val())})}}$this.setEvents();$this.setMainKeyword($.sq_fields.sq_keyword.val())};$this.setMainKeyword=function(keyword){if(typeof $.sq_fields.sq_briefcase_content!=="undefined"){if($.sq_fields.sq_briefcase_content.find("li.sq_briefcase_item_used").length>0){$.sq_fields.sq_briefcase_content.find("li.sq_briefcase_item_used").removeClass("sq_main_keyword");$.sq_fields.sq_briefcase_content.find("li.sq_briefcase_item_used").each(function(){if(keyword===""||$.sq_strEqual(keyword,$(this).find(".sq_briefcase_value").text())){$(this).addClass("sq_main_keyword");$.sq_fields.sq_keyword_nokeyword.hide();$.sq_fields.sq_keyword_div.show();$.sq_fields.sq_keyword.val($(this).find(".sq_briefcase_value").text());$.sq_fields.sq_keyword_score.html($(this).find(".sq_briefcase_item_percent").text());return false}});$.sq_fields.sq_keyword_nokeyword.hide();$.sq_fields.sq_keyword_div.show()}}$.sq_fields.sq_selectit.trigger("click")};$this.getColor=function(value){var hue=value.toString();return["hsl(",hue,",71%,43%)"].join("")};$this.setColor=function(obj,value){return;obj.css("color",$this.getColor(value));obj.css("font-weight","bold")};$this.setEvents=function(){$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_delete").on("click",function(){$(this).parent("li").sq_loading();$this.delete($(this).data("id"))});$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_used").find(".sq_briefcase_value").on("click",function(){$this.setMainKeyword($(this).text())});$.sq_fields.sq_briefcase_content.find(".sq_briefcase_circle").on("click",function(){if($(this).hasClass("sq_active")){$(this).removeClass("sq_active")}else{$(this).addClass("sq_active")}$this.get($.sq_fields.sq_briefcase_keyword.val(),$.sq_fields.sq_briefcase_content.find(".sq_briefcase_circle.sq_active"))});$this.find(".sq_briefcase_optimize").on("click",function(){$(this).parent("li").sq_loading();$this.optimize($(this).data("value"))});$this.checkKeywords()};$this.setOptimizations=function(){$.sq_config.silent=true;$.sq_config.briefcase=true;settings.show_addtobriefcasebutton=true;settings.tmpk=$.sq_config.keyword;settings.optimizations=[];if($.sq_fields.sq_briefcase_content.find("li.sq_briefcase_item_used").length>0){$.sq_fields.sq_briefcase_content.find("li.sq_briefcase_item_used").each(function(){$.sq_config.keyword=$(this).find(".sq_briefcase_value").text();if($.sq_strEqual($.sq_fields.sq_keyword.val(),$(this).find(".sq_briefcase_value").text())){settings.show_addtobriefcasebutton=false}$.sq_fields.div_blockseo=$.sq_fields.div_blockseo.clone();$.sq_fields.div_blockseo.find("li").removeClass("checked");$.sq_fields.div_blockseo.find("input").remove();$.sq_blockseo.checkSEO();var completed=$.sq_blockseo.getPercentCompleted();if(completed){$(this).find(".sq_briefcase_item_percent").html(parseInt(completed)+"%");$this.setColor($(this).find(".sq_briefcase_value"),parseInt(completed));if($.sq_strEqual($.sq_fields.sq_keyword.val(),$(this).find(".sq_briefcase_value").text())){$.sq_fields.sq_keyword_score.html(parseInt(completed)+"%")}}$(this).attr("data-position",parseInt(completed));settings.optimizations.push({keyword:$(this).find(".sq_briefcase_value").html(),score:completed,main:$(this).hasClass("sq_main_keyword")});$.sq_fields.div_blockseo.remove();$.sq_fields.div_blockseo=$.sq_config.div.find("#sq_blockseo")})}else{settings.show_addtobriefcasebutton=true}$.sq_config.keyword=settings.tmpk;return settings.optimizations};$this.checkKeywords=function(){$this.setOptimizations();$.sq_fields.sq_briefcase_content.find(".sq_briefcase_item_used").find(".sq_briefcase_separator").attr("data-position",-2);$.sq_fields.sq_briefcase_content.find("ul.sq_briefcase_item_used li").sort($this.sortList).appendTo($.sq_fields.sq_briefcase_content.find("ul.sq_briefcase_item_used"));if(settings.show_addtobriefcasebutton){if($.sq_fields.wp_publish.find("#sq_publish_alert").length==0){$("#sq_publish_alert_briefcase").find("#sq_addtobriefcase").show()}}};$this.sortList=function(a,b){return $(b).data("position")<$(a).data("position")?-1:1};$this.sendOptimization=function(){$this.setOptimizations();if(settings.optimizations.length){$.post($.sq_config.ajaxurl,{action:"sla_briefcase_save",sq_nonce:$.sq_config.sq_nonce,post_id:$.sq_config.postID,optimizations:JSON.stringify(settings.optimizations)}).done(function(response){}).fail(function(){})}};$this.listen=function(){$.sq_fields.sq_briefcase_keyword.on("keypress",function(event){if(event.keyCode===$.ui.keyCode.ENTER){clearTimeout(settings.gettimeout);settings.getapi.abort();$this.get($.sq_fields.sq_briefcase_keyword.val(),$.sq_fields.sq_briefcase_content.find(".sq_briefcase_circle.sq_active"));return false}});$.sq_fields.sq_briefcase_keyword.on("keyup",function(event){if(event.keyCode!==$.ui.keyCode.ENTER){clearTimeout(settings.gettimeout);settings.getapi.abort();settings.gettimeout=setTimeout(function(){$this.get($.sq_fields.sq_briefcase_keyword.val(),$.sq_fields.sq_briefcase_content.find(".sq_briefcase_circle.sq_active"))},1e3)}});$this.on("briefcase.save",function(){$this.sendOptimization()})};$this.one("seo.loaded",function(){SQ_DEBUG&&console.log("sq_briefcase seo.loaded");if(!$.sq_config.subscription_active){return}$this.listen();$.sq_blockseo.on("seo.task_loaded",function(){$this.get()});$.sq_blockseo.on("seo.callback",function(){$this.checkKeywords()});setInterval(function(){$this.trigger("briefcase.save")},3e4);$this.on("briefcase.refresh",function(){SQ_DEBUG&&console.log("sq_briefcase refresh");$this.init(false)});$this.trigger("briefcase.refresh")});return $this}})(jQuery);
view/assets/js/assistant/sq_floating.min.js CHANGED
@@ -1 +1 @@
1
- (function($){"use strict";if($.isFunction($.fn.sq_floating)){return}$.fn.sq_floating=function(options){var $this=this;var settings=$.extend({positions:[],minimize_height:60,maximize_height:100,top:53,bottom:0},options);$.sq_fields=$.extend({wp_form:$(".metabox-location-normal").length>0?$(".metabox-location-normal"):$("#side-sortables"),sq_box_close:$.sq_config.div.find(".sq_box_close"),sq_box_minimize:$.sq_config.div.find(".sq_box_minimize"),sq_box_maximize:$.sq_config.div.find(".sq_box_maximize"),sq_button_squirrly:$(".edit__PinnedPluginIcon-hNdeXr")},$.sq_fields);$.expr.filters.slaoffscreen=function(el){var rect=el.getBoundingClientRect();return rect.x+rect.width<0||rect.y+rect.height<0||(rect.x>window.innerWidth||rect.y>window.innerHeight)};$this.init=function(){var dragposition="";if(typeof $.sq_config.div==="undefined")return;$.sq_config.div.addClass("sq_sticky");$.sq_config.div.addClass("minimized");$.sq_fields.sq_box_minimize.hide();$.sq_fields.sq_box_close.show();$.sq_fields.sq_box_maximize.show();$("#wpbody").prepend($.sq_config.div);var positions=JSON.parse(localStorage.positions||"{}");$(function(){$.each(positions,function(id,pos){$.sq_config.div.css(pos)});$.sq_config.div.css("height",settings.minimize_height);$.sq_config.div.css("top","auto");if($.fn.draggable){$.sq_config.div.draggable({containment:"body",handle:".sq_header",scroll:true,axis:"x",stop:function(event,ui){positions[this.id]=ui.position;localStorage.positions=JSON.stringify(positions)}})}});$.sq_fields.sq_box_minimize.on("click",function(e){e.stopPropagation();$.sq_config.div.css("height",settings.minimize_height+"px");$.sq_config.div.css("bottom",settings.bottom+"px");$.sq_config.div.css("top","auto");$.sq_config.div.addClass("minimized");$.sq_config.div.scrollTop(0);$.sq_fields.sq_box_minimize.hide();$.sq_fields.sq_box_maximize.show()});$.sq_fields.sq_box_close.on("click",function(){$.sq_config.div.hide();$.sq_setCookie("sq_sla","off");$(".components-squirrly-icon").show()});if($.sq_getCookie("sq_sla")==="off"){$.sq_fields.sq_box_close.trigger("click")}$.sq_fields.sq_box_maximize.on("click",function(){$.sq_config.div.show();if($.sq_config.div.hasClass("minimized")){$.sq_config.div.css("top",settings.top+"px");$.sq_config.div.css("height","auto");$.sq_config.div.css("bottom",0);$.sq_config.div.scrollTop(0);$.sq_config.div.removeClass("minimized");$.sq_fields.sq_box_minimize.show();$.sq_fields.sq_box_maximize.hide()}});$.sq_fields.sq_keyword.on("click",function(){if($.sq_config.div.hasClass("minimized")){$.sq_fields.sq_box_maximize.trigger("click")}});$(".editor-writing-flow").css("height","auto");$(window).resize(function(){if(typeof $.sq_config.div==="undefined"){$.sq_config.div=$("#postsquirrly")}if($.sq_config.div.is(":slaoffscreen")){$.sq_config.div.css("left","auto");$.sq_config.div.css("right","0px")}})};$this.one("seo.loaded",function(){if($(".editor-post-title").find("textarea").length>0){$.sq_fields.wp_input_title=$(".editor-post-title").find("textarea")}else if($("h1.wp-block-post-title").length&&!$("#title").length){var $h1title=$("h1.wp-block-post-title");$.sq_fields.wp_input_title=$('<textarea id="title" style="display: none">'+$h1title.html()+"</textarea>");$h1title.after($.sq_fields.wp_input_title);$h1title.on("DOMSubtreeModified",function(){$.sq_fields.wp_input_title.val($h1title.html())})}$this.on("seo.floating.page_saved",function(){$.sq_savePost()});$.sq_editor.createEditorButton("components-squirrly-icon");if($(".components-squirrly-icon").length>0){if(!$.sq_config.div.is(":visible")&&!$(".components-squirrly-icon").is(":visible")){$(".components-squirrly-icon").show()}$(".components-squirrly-icon").off("click").on("click",function(){if($.sq_config.div.is(":visible")){$.sq_config.div.hide();$(".components-squirrly-icon").show();$.sq_setCookie("sq_sla","off")}else{$.sq_config.div.show();$(".components-squirrly-icon").hide();$.sq_setCookie("sq_sla","on")}})}else{$.sq_config.div.show()}});if($.sq_config.div.is(":slaoffscreen")){$.sq_config.div.css("left","auto");$.sq_config.div.css("right","0px")}return $this}})(jQuery);
1
+ (function($){"use strict";if($.isFunction($.fn.sq_floating)){return}$.fn.sq_floating=function(options){var $this=this;var settings=$.extend({positions:[],minimize_height:60,maximize_height:100,top:53,bottom:0},options);$.sq_fields=$.extend({wp_form:$(".metabox-location-normal").length>0?$(".metabox-location-normal"):$("#side-sortables"),sq_box_close:$.sq_config.div.find(".sq_box_close"),sq_box_minimize:$.sq_config.div.find(".sq_box_minimize"),sq_box_maximize:$.sq_config.div.find(".sq_box_maximize"),sq_button_squirrly:$(".edit__PinnedPluginIcon-hNdeXr")},$.sq_fields);$.expr.filters.slaoffscreen=function(el){var rect=el.getBoundingClientRect();return rect.x+rect.width<0||rect.y+rect.height<0||(rect.x>window.innerWidth||rect.y>window.innerHeight)};$this.init=function(){var dragposition="";if(typeof $.sq_config.div==="undefined")return;$.sq_config.div.addClass("sq_sticky");$.sq_config.div.addClass("minimized");$.sq_fields.sq_box_minimize.hide();$.sq_fields.sq_box_close.show();$.sq_fields.sq_box_maximize.show();$("#wpbody").prepend($.sq_config.div);var positions=JSON.parse(localStorage.positions||"{}");$(function(){$.each(positions,function(id,pos){$.sq_config.div.css(pos)});$.sq_config.div.css("height",settings.minimize_height);$.sq_config.div.css("top","auto");if($.fn.draggable){$.sq_config.div.draggable({containment:"body",handle:".sq_header",scroll:true,axis:"x",stop:function(event,ui){positions[this.id]=ui.position;localStorage.positions=JSON.stringify(positions)}})}});$.sq_fields.sq_box_minimize.on("click",function(e){e.stopPropagation();$.sq_config.div.css("height",settings.minimize_height+"px");$.sq_config.div.css("bottom",settings.bottom+"px");$.sq_config.div.css("top","auto");$.sq_config.div.addClass("minimized");$.sq_config.div.scrollTop(0);$.sq_fields.sq_box_minimize.hide();$.sq_fields.sq_box_maximize.show()});$.sq_fields.sq_box_close.on("click",function(){$.sq_config.div.hide();$.sq_setCookie("sq_sla","off");$(".components-squirrly-icon").show()});if($.sq_getCookie("sq_sla")==="off"){$.sq_fields.sq_box_close.trigger("click")}$.sq_fields.sq_box_maximize.on("click",function(){$.sq_config.div.show();if($.sq_config.div.hasClass("minimized")){$.sq_config.div.css("top",settings.top+"px");$.sq_config.div.css("height","auto");$.sq_config.div.css("bottom",0);$.sq_config.div.scrollTop(0);$.sq_config.div.removeClass("minimized");$.sq_fields.sq_box_minimize.show();$.sq_fields.sq_box_maximize.hide()}});$.sq_fields.sq_keyword.on("click",function(){if($.sq_config.div.hasClass("minimized")){$.sq_fields.sq_box_maximize.trigger("click")}});$(".editor-writing-flow").css("height","auto");$(window).resize(function(){if(typeof $.sq_config.div==="undefined"){$.sq_config.div=$("#postsquirrly")}if($.sq_config.div.is(":slaoffscreen")){$.sq_config.div.css("left","auto");$.sq_config.div.css("right","0px")}})};$this.one("seo.loaded",function(){if($.sq_frontend){return}if($.sq_config.referer==="frontend"&&!$.sq_isFrontend()){var sq_header=$.sq_fields.sq_box.find(".sq_header");$.sq_fields.sq_box.html('<div style="font-size: 13px; padding: 2px; margin: 0; line-height: 19px; text-align: center;">'+$.sq_config.__frontend_optimized+"</div>");$.sq_fields.sq_box.prepend(sq_header);$.sq_fields.sq_box.find(".sq_box_maximize").hide();$.sq_fields.sq_box.find(".sq_box_close").on("click",function(){$.sq_config.div.hide();$.sq_setCookie("sq_sla","off")});setTimeout(function(){$.sq_config.div.hide()},5e3)}$this.on("seo.floating.page_saved",function(){$.sq_savePost()});if(!$(".components-squirrly-icon").length){$.sq_editor.createEditorButton("components-squirrly-icon")}if($(".components-squirrly-icon").length>0){if(!$.sq_config.div.is(":visible")&&!$(".components-squirrly-icon").is(":visible")){$(".components-squirrly-icon").show()}$(".components-squirrly-icon").off("click").on("click",function(){if($.sq_config.div.is(":visible")){$.sq_config.div.hide();$(".components-squirrly-icon").show();$.sq_setCookie("sq_sla","off")}else{$.sq_config.div.show();$(".components-squirrly-icon").hide();$.sq_setCookie("sq_sla","on")}})}else{$.sq_config.div.show()}});if($.sq_config.div.is(":slaoffscreen")){$.sq_config.div.css("left","auto");$.sq_config.div.css("right","0px")}return $this}})(jQuery);
view/assets/js/assistant/sq_frontend.min.js CHANGED
@@ -1 +1 @@
1
- (function($){"use strict";if($.isFunction($.fn.sq_frontend)){return}$.fn.sq_frontend=function(options){var $this=this;var settings=$.extend({positions:[],minimize_height:134,maximize_height:100,top:25,bottom:0},options);$.sq_fields=$.extend({wp_form:$(".metabox-location-normal").length>0?$(".metabox-location-normal"):$("#side-sortables"),sq_box_close:$.sq_config.div.find(".sq_box_close"),sq_box_minimize:$.sq_config.div.find(".sq_box_minimize"),sq_box_maximize:$.sq_config.div.find(".sq_box_maximize"),sq_button_squirrly:$(".edit__PinnedPluginIcon-hNdeXr")},$.sq_fields);$.expr.filters.slaoffscreen=function(el){var rect=el.getBoundingClientRect();return rect.x+rect.width<0||rect.y+rect.height<0||(rect.x>window.innerWidth||rect.y>window.innerHeight)};$this.one("seo.loaded",function(){if($.sq_config.referer==="frontend"&&!$.sq_isFrontend()){var sq_header=$.sq_fields.sq_box.find(".sq_header");$.sq_fields.sq_box.html('<div style="font-size: 13px; padding: 2px; margin: 0; line-height: 19px; text-align: center;">'+$.sq_config.__frontend_optimized+"</div>");$.sq_fields.sq_box.prepend(sq_header);$.sq_fields.sq_box.find(".sq_box_maximize").hide();$.sq_fields.sq_box.find(".sq_box_close").on("click",function(){$.sq_config.div.hide();$.sq_setCookie("sq_sla","off")});$.sq_config.div.show();setTimeout(function(){$.sq_config.div.hide()},5e3)}$this.sq_VisualBuilder()});$this.one("seo.frontend.content_loaded",function(){SQ_DEBUG&&console.log("sq_frontend seo.loaded");var dragposition="";$.sq_editor.createEditorButton("components-squirrly-icon");$.sq_config.div.addClass("sq_sticky");$.sq_config.div.addClass("minimized");$.sq_fields.sq_box_minimize.hide();$.sq_fields.sq_box_close.show();$.sq_fields.sq_box_maximize.show();$.sq_config.div.show();var positions=JSON.parse(localStorage.positions||"{}");$(function(){$.each(positions,function(id,pos){$.sq_config.div.css(pos)});$.sq_config.div.css("height",settings.minimize_height);$.sq_config.div.css("top","auto");if($.fn.draggable){$.sq_config.div.draggable({containment:"body",handle:".sq_header",scroll:true,axis:"x",stop:function(event,ui){positions[this.id]=ui.position;localStorage.positions=JSON.stringify(positions)}})}});$.sq_fields.sq_box_minimize.on("click",function(e){e.stopPropagation();$.sq_config.div.css("height",settings.minimize_height+"px");$.sq_config.div.css("bottom",settings.bottom+"px");$.sq_config.div.css("top","auto");$.sq_config.div.addClass("minimized");$.sq_config.div.scrollTop(0);$.sq_fields.sq_box_minimize.hide();$.sq_fields.sq_box_maximize.show()});$.sq_fields.sq_box_close.on("click",function(){$.sq_config.div.hide();$.sq_setCookie("sq_sla","off");if(!$(".components-squirrly-icon").length){$.sq_editor.createEditorButton("components-squirrly-icon")}$(".components-squirrly-icon").show()});if($.sq_getCookie("sq_sla")==="off"){$.sq_fields.sq_box_close.trigger("click")}$.sq_fields.sq_box_maximize.on("click",function(){$.sq_config.div.show();if($.sq_config.div.hasClass("minimized")){$.sq_config.div.css("top",settings.top+"px");$.sq_config.div.css("height","auto");$.sq_config.div.css("bottom",0);$.sq_config.div.scrollTop(0);$.sq_config.div.removeClass("minimized");$.sq_fields.sq_box_minimize.show();$.sq_fields.sq_box_maximize.hide()}});$(".editor-writing-flow").css("height","auto");$(window).resize(function(){if($.sq_config.div.is(":slaoffscreen")){$.sq_config.div.css("left","auto");$.sq_config.div.css("right","0px")}});$(".components-squirrly-icon").on("click",function(){$.sq_fields.sq_box_maximize.trigger("click");$.sq_setCookie("sq_sla","on");$(".components-squirrly-icon").hide()});$this.sq_listenBuilderChange()});if($.sq_config.div.is(":slaoffscreen")){$.sq_config.div.css("left","auto");$.sq_config.div.css("right","0px")}return $this};$.fn.sq_listenBuilderChange=function(){var $this=this;if(!$.sq_blockseo){return}$this.on("seo.frontend.editor_loaded seo.frontend.new_changes",function(){SQ_DEBUG&&console.log("seo.frontend.new_changes");var ed=$.sq_editor.getFrontendEditor();if(ed){if(ed.getPageTitle()!==""){$.sq_fields.wp_input_title.val(ed.getPageTitle())}$.sq_blockseo.trigger("seo.refresh")}SQ_DEBUG&&console.log("seo.frontend.new_changes DONE")});$.sq_blockseo.on("seo.refresh_click",function(){$this.checkPostAjax()});$this.on("seo.frontend.page_saved",function(){SQ_DEBUG&&console.log("seo.frontend.page_saved");var ed=$.sq_editor.getFrontendEditor();if(ed){if($.sq_blockbriefcase){$.sq_blockbriefcase.trigger("briefcase.save")}var $sq_seo=[];$this.find('input[name="sq_seo[]"]').each(function(){$sq_seo.push(this.value)});$.post($.sq_config.ajaxurl,{action:"sq_ajax_save_post",sq_nonce:$.sq_config.sq_nonce,post_id:$.sq_config.postID,sq_keyword:$.sq_config.keyword,referer:"frontend",sq_seo:$sq_seo}).done(function(){$this.trigger("seo.frontend.new_changes")})}SQ_DEBUG&&console.log("seo.frontend.page_saved DONE")});$this.checkPostAjax=function(){return $.post($.sq_config.ajaxurl,{action:"sq_ajax_get_post",sq_nonce:$.sq_config.sq_nonce,post_id:$.sq_config.postID}).done(function(data){if(typeof data.url!=="undefined"){if(!$.sq_config.div.find("#new-post-slug").length){$.sq_config.div.append('<input type="hidden" id="new-post-slug" />')}$("#new-post-slug").val(data.url)}if(typeof data.post_title!=="undefined"){$.sq_fields.wp_input_title.val(data.post_title)}$this.trigger("seo.frontend.new_changes")})};if(!$.sq_config.div.find("#sq_post_title").length){$.sq_config.div.append('<input type="hidden" id="sq_post_title" />');$.sq_fields.wp_input_title=$("#sq_post_title");$this.checkPostAjax()}};$.fn.sq_VisualBuilder=function(){var $this=this;if(typeof window.sq_editor!=="undefined"){return window.sq_editor}var builderExists=false;var builderInUse="";var $builderContents=null;var $lastNumberOfNodes=0;var $currentNumberOfNodes=0;var $elementLoadingTime=null;var buildersInfo={elementor:{enabled:true,name:"elementor",hasIframe:true,iframeSelector:"#elementor-preview-iframe",parrentDiv:".elementor-editor-active"},WPBakery:{enabled:true,name:"wpbakery",hasIframe:true,iframeSelector:"#vc_inline-frame",parrentDiv:"#vc_editor"},divi:{enabled:true,name:"divi",hasIframe:true,iframeSelector:"#et-fb-app-frame",parrentDiv:".et_divi_builder"},oxygen:{enabled:true,name:"oxygen",hasIframe:true,iframeSelector:"#ct-artificial-viewport",parrentDiv:"#oxygen-ui"},zion:{enabled:true,name:"zion",hasIframe:true,iframeSelector:"#znpb-editor-iframe",parrentDiv:".znpb"}};var pageData={url:"",title:"",content:"",h1:"",headline:"",hasMultipleH1:false,images:""};var builderSelectorsSettings={preview:"",h1:"",container:"",containerWidget:"",containerWidgetImages:"",saveButton:""};var currentNumberOfNodes=null;$this.init=function(){SQ_DEBUG&&console.log("checkBuilderExists");$this.checkBuilderExists()};$this.parseBuilders=function(){SQ_DEBUG&&console.log("Check parseBuilders "+$this.getBuilderName());switch($this.getBuilderName()){case"elementor":SQ_DEBUG&&console.log("Found "+$this.getBuilderName()+" builder");$this.parseElementor();break;case"oxygen":SQ_DEBUG&&console.log("Found "+$this.getBuilderName()+" builder");$this.parseOxygen();break;case"divi":SQ_DEBUG&&console.log("Found "+$this.getBuilderName()+" builder");if(typeof $.sq_config.div==="undefined"||typeof $.sq_params.low_density==="undefined"||typeof $.sq_fields.wp_title==="undefined"){$.sq_setConfig();$.sq_setParams();$.sq_setfields()}$this.parseDivi();break;case"wpbakery":SQ_DEBUG&&console.log("Found "+$this.getBuilderName()+" builder");$this.parseWPBakery();break;case"zion":SQ_DEBUG&&console.log("Found "+$this.getBuilderName()+" builder");$this.parseZion();break}};$this.checkBuilderExists=function(){SQ_DEBUG&&console.log("Looking for builders");$.each(Object.values(buildersInfo),function(index,builder){SQ_DEBUG&&console.log("Checking for: "+builder.name+" builder");if(builder.enabled===false){return}if(builder.hasIframe){if($this.elementExists(builder.iframeSelector)){SQ_DEBUG&&console.log("Found: "+builder.iframeSelector+" iframe");$(builder.iframeSelector).load(function(){SQ_DEBUG&&console.log("Loaded iframeSelector: "+builder.iframeSelector+" from builder "+builder.name);$this.setBuilderExists(builder.name);$builderContents=$(builder.iframeSelector).contents()[0];$this.parseBuilders()});$(builder.iframeSelector).ready(function(){SQ_DEBUG&&console.log("Ready iframeSelector: "+builder.iframeSelector+" from builder "+builder.name);$this.setBuilderExists(builder.name);$builderContents=$(builder.iframeSelector).contents()[0];$this.parseBuilders()});return false}}else if($this.elementExists(builder.parrentDiv)){$builderContents=$(builder.parrentDiv).contents();$this.setBuilderExists(builder.name);return false}})};$this.elementExists=function(element,where){var $whereToLook;if(typeof where==="undefined"){$whereToLook=$(document)}else{$whereToLook=$(where)}var $element=$whereToLook.find(element);if(typeof $element!=="undefined"&&$element.length>0){return $element}return false};$this.getBuilderInfo=function(builderName){return buildersInfo[builderName]};$this.waitForElementToDisplay=function(selector,where,time,callback){if($elementLoadingTime){clearTimeout($elementLoadingTime)}var $element=$this.elementExists(selector,where);if($element){callback()}else{$elementLoadingTime=setTimeout(function(){console.log("Waiting for: "+selector);$this.waitForElementToDisplay(selector,where,time,callback)},time)}};$this.parseElementor=function(){SQ_DEBUG&&console.log("Start parsing "+$this.getBuilderName());builderSelectorsSettings={preview:["#elementor-preview-iframe"],title:["h1.entry-title","h1.elementor-heading-title"],header:["h2.elementor-heading-title","h3.elementor-heading-title","h4.elementor-heading-title","h5.elementor-heading-title","h6.elementor-heading-title"],container:[".elementor",".elementor-inner"],containerWidget:"[data-element_type='widget'] .elementor-widget-container",containerWidgetImages:["img"],saveButton:"#elementor-panel-saver-button-publish",draftButton:"#elementor-panel-footer-sub-menu-item-save-draft"};$.each(builderSelectorsSettings.title,function(index,value){if($this.elementExists(value,$builderContents)){$this.setPageTitle($($builderContents).find(value+":first").text())}});$.each(builderSelectorsSettings.container,function(index,value){$this.waitForElementToDisplay(value,$builderContents,$.sq_config.delay_seo,function(){var $elementorWidgets=$($builderContents).find(builderSelectorsSettings.containerWidget);$currentNumberOfNodes=$elementorWidgets.length;var textContainerToConcat="";var textContainerImagesToConcat="";$.each($elementorWidgets,function(){var $element=$(this).clone();$(builderSelectorsSettings.title).each(function(index,val){$element.find(val).remove()});$.each(builderSelectorsSettings.header,function(index,value){if($this.elementExists(value,$element)){$this.setPageHeadline($element.find(value+":first").text())}});if($.isFunction($element.html)){textContainerToConcat+=$element.html()}else if(typeof $element.context!="undefined"){textContainerToConcat+=$element.context.innerHTML}$.each(builderSelectorsSettings.containerWidgetImages,function(index,value){var $imagesContainers=$element.find(value);if($imagesContainers.length>0){$.each($imagesContainers,function(){if($.isFunction($(this).html)){textContainerImagesToConcat+=$(this).html()}else if(typeof $(this).context!="undefined"){textContainerImagesToConcat+=$(this).context.innerHTML}});return false}})});$this.setPageContent(textContainerToConcat);$this.setPageImages(textContainerImagesToConcat);var triggerLoadInterval=setInterval(function(){if(!$(".elementor-loading").is(":visible")){clearInterval(triggerLoadInterval);$this.trigger("seo.frontend.content_loaded")}},1e3)})});$.each(builderSelectorsSettings.preview,function(index,value){$this.waitForElementToDisplay(value,$(document),$.sq_config.delay_seo,function(){$this.setPageURL($(value).attr("src").split("?")[0]);$this.trigger("seo.frontend.preview_loaded")})})};$this.parseOxygen=function(){SQ_DEBUG&&console.log("Start parsing "+$this.getBuilderName());builderSelectorsSettings={preview:["#ct-artificial-viewport"],title:["h1.ct-headline"],header:["div.bnb-subheading"],container:["#ct-builder"],containerWidget:".ct-inner-wrap",containerWidgetImages:[".ct-image"],saveButton:"oxygen-save-button",draftButton:"oxygen-save-button"};$.each(builderSelectorsSettings.title,function(index,value){if($this.elementExists(value,$builderContents)){$this.setPageTitle($($builderContents).find(value+":first").text())}});$.each(builderSelectorsSettings.container,function(index,value){$this.waitForElementToDisplay(value,$builderContents,$.sq_config.delay_seo,function(){var $elementorWidgets=$($builderContents).find(builderSelectorsSettings.containerWidget);$currentNumberOfNodes=$elementorWidgets.length;var textContainerToConcat="";var textContainerImagesToConcat="";$.each($elementorWidgets,function(){var $element=$(this).clone();$(builderSelectorsSettings.title).each(function(index,val){$element.find(val).remove()});$.each(builderSelectorsSettings.header,function(index,value){if($this.elementExists(value,$element)){$this.setPageHeadline($element.find(value+":first").text())}});if($.isFunction($element.html)){textContainerToConcat+=$element.html()}else if(typeof $element.context!="undefined"){textContainerToConcat+=$element.context.innerHTML}$.each(builderSelectorsSettings.containerWidgetImages,function(index,value){var $imagesContainers=$element.find(value);if($imagesContainers.length>0){$.each($imagesContainers,function(){if($.isFunction($(this).html)){textContainerImagesToConcat+=$(this).html()}else if(typeof $(this).context!="undefined"){textContainerImagesToConcat+=$(this).context.innerHTML}});return false}})});$this.setPageContent(textContainerToConcat);$this.setPageImages(textContainerImagesToConcat);$this.trigger("seo.frontend.content_loaded")})});$.each(builderSelectorsSettings.preview,function(index,value){$this.waitForElementToDisplay(value,$(document),$.sq_config.delay_seo,function(){$this.setPageURL($(value).attr("src").split("?")[0]);$this.trigger("seo.frontend.preview_loaded")})})};$this.parseDivi=function(){SQ_DEBUG&&console.log("Start parsing "+$this.getBuilderName());builderSelectorsSettings={preview:["#et-fb-app-frame"],title:["h1.entry-title","h1.et_pb_module_header"],header:["h2","h3","h4","h5","h6"],container:["#et-boc"],containerWidget:".et_pb_section",containerWidgetImages:[".et_pb_image_wrap"],saveButton:"et-fb-button--publish",draftButton:"et-fb-button--save-draft"};$.each(builderSelectorsSettings.title,function(index,value){if($this.elementExists(value,$builderContents)){$this.setPageTitle($($builderContents).find(value+":first").text())}});$.each(builderSelectorsSettings.container,function(index,value){$this.waitForElementToDisplay(value,$builderContents,$.sq_config.delay_seo,function(){var $elementorWidgets=$($builderContents).find(builderSelectorsSettings.containerWidget);$currentNumberOfNodes=$elementorWidgets.length;var textContainerToConcat="";var textContainerImagesToConcat="";$.each($elementorWidgets,function(){var $element=$(this).clone();$(builderSelectorsSettings.title).each(function(index,val){$element.find(val).remove()});$.each(builderSelectorsSettings.header,function(index,value){if($this.elementExists(value,$element)){$this.setPageHeadline($element.find(value+":first").text())}});if($.isFunction($element.html)){textContainerToConcat+=$element.html()}else if(typeof $element.context!="undefined"){textContainerToConcat+=$element.context.innerHTML}$.each(builderSelectorsSettings.containerWidgetImages,function(index,value){var $imagesContainers=$element.find(value);if($imagesContainers.length>0){$.each($imagesContainers,function(){if($.isFunction($(this).html)){textContainerImagesToConcat+=$(this).html()}else if(typeof $(this).context!="undefined"){textContainerImagesToConcat+=$(this).context.innerHTML}});return false}})});$this.setPageContent(textContainerToConcat);$this.setPageImages(textContainerImagesToConcat);var triggerLoadInterval=setInterval(function(){if(!$(".et-fb-page-preloading").length){clearInterval(triggerLoadInterval);$this.trigger("seo.frontend.content_loaded")}},1e3)})});$.each(builderSelectorsSettings.preview,function(index,value){$this.waitForElementToDisplay(value,$(document),$.sq_config.delay_seo,function(){$this.setPageURL($(value).attr("src").split("?")[0]);$this.trigger("seo.frontend.preview_loaded")})})};$this.parseWPBakery=function(){SQ_DEBUG&&console.log("Start parsing "+$this.getBuilderName());builderSelectorsSettings={preview:["#vc_inline-frame"],title:["h1.entry-title","h1.wp-block-post-title",".vc_container-block h1"],header:[".vc_container-block h2,.vc_container-block h3,.vc_container-block h4,.vc_container-block h5,.vc_container-block h6"],container:[".vc-main-sortable-container"],containerWidget:".wpb_wrapper",containerWidgetImages:[".vc_single_image-img",".wpb_gallery_slides"],saveButton:"#vc_button-update",draftButton:"#vc_button-save-draft"};$.each(builderSelectorsSettings.title,function(index,value){if($this.elementExists(value,$builderContents)){$this.setPageTitle($($builderContents).find(value+":first").text())}});$.each(builderSelectorsSettings.container,function(index,value){$this.waitForElementToDisplay(value,$builderContents,$.sq_config.delay_seo,function(){var $elementorWidgets=$($builderContents).find(builderSelectorsSettings.containerWidget);$currentNumberOfNodes=$elementorWidgets.length;var textContainerToConcat="";var textContainerImagesToConcat="";$.each($elementorWidgets,function(){var $element=$(this).clone();$(builderSelectorsSettings.title).each(function(index,val){$element.find(val).remove()});$.each(builderSelectorsSettings.header,function(index,value){if($this.elementExists(value,$element)){$this.setPageHeadline($element.find(value+":first").text())}});if($.isFunction($element.html)){textContainerToConcat+=$element.html()}else if(typeof $element.context!="undefined"){textContainerToConcat+=$element.context.innerHTML}$.each(builderSelectorsSettings.containerWidgetImages,function(index,value){var $imagesContainers=$element.find(value);if($imagesContainers.length>0){$.each($imagesContainers,function(){if($.isFunction($(this).html)){textContainerImagesToConcat+=$(this).html()}else if(typeof $(this).context!="undefined"){textContainerImagesToConcat+=$(this).context.innerHTML}});return false}})});$this.setPageContent(textContainerToConcat);$this.setPageImages(textContainerImagesToConcat);$this.trigger("seo.frontend.content_loaded")})});$.each(builderSelectorsSettings.preview,function(index,value){$this.waitForElementToDisplay(value,$(document),$.sq_config.delay_seo,function(){$this.setPageURL($(value).attr("src").split("?")[0]);$this.trigger("seo.frontend.preview_loaded")})})};$this.parseZion=function(){SQ_DEBUG&&console.log("Start parsing "+$this.getBuilderName());builderSelectorsSettings={preview:["#znpb-editor-iframe"],title:["h1.entry-title","h1.zb-el-zionHeading"],header:["h2.zb-el-zionHeading","h3.zb-el-zionHeading","h4.zb-el-zionHeading","h5.zb-el-zionHeading","h6.zb-el-zionHeading"],container:[".znpb-preview-page-wrapper"],containerWidget:".zb-section__innerWrapper",containerWidgetImages:[".znpb-element__wrapper img"],saveButton:".znpb-editor-header__page-save-wrapper--save",draftButton:".znpb-editor-header__page-save-wrapper"};$.each(builderSelectorsSettings.title,function(index,value){if($this.elementExists(value,$builderContents)){$this.setPageTitle($($builderContents).find(value+":first").text())}});$.each(builderSelectorsSettings.container,function(index,value){$this.waitForElementToDisplay(value,$builderContents,$.sq_config.delay_seo,function(){var $elementorWidgets=$($builderContents).find(builderSelectorsSettings.containerWidget);$currentNumberOfNodes=$elementorWidgets.length;var textContainerToConcat="";var textContainerImagesToConcat="";$.each($elementorWidgets,function(){var $element=$(this).clone();$(builderSelectorsSettings.title).each(function(index,val){$element.find(val).remove()});$.each(builderSelectorsSettings.header,function(index,value){if($this.elementExists(value,$element)){$this.setPageHeadline($element.find(value+":first").text())}});if($.isFunction($element.html)){textContainerToConcat+=$element.html()}else if(typeof $element.context!="undefined"){textContainerToConcat+=$element.context.innerHTML}$.each(builderSelectorsSettings.containerWidgetImages,function(index,value){var $imagesContainers=$element.find(value);if($imagesContainers.length>0){$.each($imagesContainers,function(){if($.isFunction($(this).html)){textContainerImagesToConcat+=$(this).html()}else if(typeof $(this).context!="undefined"){textContainerImagesToConcat+=$(this).context.innerHTML}});return false}})});$this.setPageContent(textContainerToConcat);$this.setPageImages(textContainerImagesToConcat);$this.trigger("seo.frontend.content_loaded")})});$.each(builderSelectorsSettings.preview,function(index,value){$this.waitForElementToDisplay(value,$(document),$.sq_config.delay_seo,function(){$this.setPageURL($(value).attr("src").split("?")[0]);$this.trigger("seo.frontend.preview_loaded")})})};$this.setBuilderExists=function(builderName){builderExists=true;builderInUse=builderName};$this.getBuilderExists=function(){return builderExists};$this.getBuilderName=function(){return builderInUse};$this.getBuilderContainer=function(){if($(builderSelectorsSettings.preview[0]).contents().find(builderSelectorsSettings.container[0]).length>0){return $(builderSelectorsSettings.preview[0]).contents().find(builderSelectorsSettings.container[0]).first()}if(builderSelectorsSettings.preview.length>0){return $(builderSelectorsSettings.preview[0]).contents().find("body")}return false};$this.getPageData=function(){return pageData};$this.getPageURL=function(){return pageData.url};$this.getPageTitle=function(){return pageData.title};$this.getMultipleH1=function(){return pageData.hasMultipleH1};$this.getH1=function(){return pageData.h1};$this.getPageContent=function(){return pageData.content};$this.getPageImages=function(){return pageData.images};$this.getPageHeadline=function(){return pageData.headline};$this.setPageURL=function(url){pageData.url=url};$this.setPageTitle=function(title){pageData.title=title};$this.setH1=function(h1Text){pageData.h1=h1Text};$this.setPageHeadline=function(headline){pageData.headline=headline};$this.setMultipleH1=function(flag){pageData.hasMultipleH1=flag};$this.setPageContent=function(content){pageData.content=content};$this.setPageImages=function(images){pageData.images=images};$this.triggerPageHasChanges=function(){SQ_DEBUG&&console.log("triggerPageHasChanges");$this.trigger("seo.frontend.refresh");$this.trigger("seo.frontend.new_changes")};$this.triggerButtonSaveClicked=function(){SQ_DEBUG&&console.log("triggerButtonSaveClicked");$this.trigger("seo.frontend.refresh");$this.trigger("seo.frontend.page_saved")};$this.on("seo.frontend.refresh",function(){$this.parseBuilders()});$(document).on("click","button",function(){if("#"+$(this).attr("id")===builderSelectorsSettings.saveButton){$this.triggerButtonSaveClicked()}if(typeof builderSelectorsSettings.saveButton!="undefined"){if(builderSelectorsSettings.saveButton.indexOf("#")===-1){if($(this).hasClass(builderSelectorsSettings.saveButton)){$this.triggerButtonSaveClicked()}}}});$(document).on("click","div",function(){if("#"+$(this).attr("id")===builderSelectorsSettings.draftButton){$this.triggerButtonSaveClicked()}if(typeof builderSelectorsSettings.saveButton!="undefined"){if(builderSelectorsSettings.saveButton.indexOf("#")===-1){if($(this).hasClass(builderSelectorsSettings.saveButton)){$this.triggerButtonSaveClicked()}}}if(typeof builderSelectorsSettings.draftButton!="undefined"){if(builderSelectorsSettings.draftButton.indexOf("#")===-1){if($(this).hasClass(builderSelectorsSettings.draftButton)){$this.triggerButtonSaveClicked()}}}});setInterval(function(){$this.trigger("seo.frontend.refresh");SQ_DEBUG&&console.log("Check Blocks number: "+$lastNumberOfNodes+" = "+$currentNumberOfNodes);if($lastNumberOfNodes!==$currentNumberOfNodes){$lastNumberOfNodes=$currentNumberOfNodes;$this.triggerPageHasChanges()}},3e4);$.sq_blockseo.on("seo.task_loaded",function(){$(".sq_tasks").find("#sq_alt").remove()});$this.init();window.sq_editor=$this;$this.trigger("seo.frontend.editor_loaded");return $this}})(jQuery);
1
+ (function($){"use strict";if($.isFunction($.fn.sq_frontend)){return}$.fn.sq_frontend=function(options){var $this=this;var settings=$.extend({positions:[],minimize_height:134,maximize_height:100,top:25,bottom:0},options);$.sq_fields=$.extend({wp_form:$(".metabox-location-normal").length>0?$(".metabox-location-normal"):$("#side-sortables"),sq_box_close:$.sq_config.div.find(".sq_box_close"),sq_box_minimize:$.sq_config.div.find(".sq_box_minimize"),sq_box_maximize:$.sq_config.div.find(".sq_box_maximize"),sq_button_squirrly:$(".edit__PinnedPluginIcon-hNdeXr")},$.sq_fields);$.expr.filters.slaoffscreen=function(el){var rect=el.getBoundingClientRect();return rect.x+rect.width<0||rect.y+rect.height<0||(rect.x>window.innerWidth||rect.y>window.innerHeight)};$this.init=function(){var dragposition="";$.sq_config.div.addClass("sq_sticky");$.sq_config.div.addClass("minimized");$.sq_fields.sq_box_minimize.hide();$.sq_fields.sq_box_close.show();$.sq_fields.sq_box_maximize.show();var positions=JSON.parse(localStorage.positions||"{}");$(function(){$.each(positions,function(id,pos){$.sq_config.div.css(pos)});$.sq_config.div.css("height",settings.minimize_height);$.sq_config.div.css("top","auto");if($.fn.draggable){$.sq_config.div.draggable({containment:"body",handle:".sq_header",scroll:true,axis:"x",stop:function(event,ui){positions[this.id]=ui.position;localStorage.positions=JSON.stringify(positions)}})}});$.sq_fields.sq_box_minimize.on("click",function(e){e.stopPropagation();$.sq_config.div.css("height",settings.minimize_height+"px");$.sq_config.div.css("bottom",settings.bottom+"px");$.sq_config.div.css("top","auto");$.sq_config.div.addClass("minimized");$.sq_config.div.scrollTop(0);$.sq_fields.sq_box_minimize.hide();$.sq_fields.sq_box_maximize.show()});$.sq_fields.sq_box_close.on("click",function(){$.sq_config.div.hide();$.sq_setCookie("sq_sla","off")});if($.sq_getCookie("sq_sla")==="off"){$.sq_fields.sq_box_close.trigger("click")}$.sq_fields.sq_box_maximize.on("click",function(){$.sq_config.div.show();if($.sq_config.div.hasClass("minimized")){$.sq_config.div.css("top",settings.top+"px");$.sq_config.div.css("height","auto");$.sq_config.div.css("bottom",0);$.sq_config.div.scrollTop(0);$.sq_config.div.removeClass("minimized");$.sq_fields.sq_box_minimize.show();$.sq_fields.sq_box_maximize.hide()}});$(".editor-writing-flow").css("height","auto");$(window).resize(function(){if(typeof $.sq_config.div!=="undefined"&&$.sq_config.div.is(":slaoffscreen")){$.sq_config.div.css("left","auto");$.sq_config.div.css("right","0px")}})};$this.one("seo.loaded",function(){$this.sq_VisualBuilder()});$this.one("seo.frontend.content_loaded",function(){SQ_DEBUG&&console.log("sq_frontend seo.loaded");if(!$(".components-squirrly-icon").length){$.sq_editor.createEditorButton("components-squirrly-icon")}$(".components-squirrly-icon").on("click",function(){$.sq_fields.sq_box_maximize.trigger("click");$.sq_setCookie("sq_sla","on");$(".components-squirrly-icon").hide()});$.sq_fields.sq_box_close.on("click",function(){$(".components-squirrly-icon").show()});if($.sq_getCookie("sq_sla")==="off"){$(".components-squirrly-icon").show()}else{$.sq_config.div.show()}$this.sq_listenBuilderChange();$this.trigger("seo.frontend.refresh");$this.trigger("seo.frontend.new_changes")});if($.sq_config.div.is(":slaoffscreen")){$.sq_config.div.css("left","auto");$.sq_config.div.css("right","0px")}return $this};$.fn.sq_listenBuilderChange=function(){var $this=this;if(!$.sq_blockseo){return}$this.on("seo.frontend.editor_loaded seo.frontend.new_changes",function(){SQ_DEBUG&&console.log("seo.frontend.new_changes");var ed=$.sq_editor.getFrontendEditor();if(ed){if(ed.getPageTitle()!==""){$.sq_fields.wp_input_title.val(ed.getPageTitle())}$.sq_blockseo.trigger("seo.refresh")}SQ_DEBUG&&console.log("seo.frontend.new_changes DONE")});$.sq_blockseo.on("seo.refresh_click",function(){$this.checkPostAjax()});$this.on("seo.frontend.page_saved",function(){SQ_DEBUG&&console.log("seo.frontend.page_saved");var ed=$.sq_editor.getFrontendEditor();if(ed){if($.sq_blockbriefcase){$.sq_blockbriefcase.trigger("briefcase.save")}var $sq_seo=[];$this.find('input[name="sq_seo[]"]').each(function(){$sq_seo.push(this.value)});$.post($.sq_config.ajaxurl,{action:"sq_ajax_save_post",sq_nonce:$.sq_config.sq_nonce,post_id:$.sq_config.postID,sq_keyword:$.sq_config.keyword,referer:"frontend",sq_seo:$sq_seo}).done(function(){$this.trigger("seo.frontend.new_changes")})}SQ_DEBUG&&console.log("seo.frontend.page_saved DONE")});$this.checkPostAjax=function(){return $.post($.sq_config.ajaxurl,{action:"sq_ajax_get_post",sq_nonce:$.sq_config.sq_nonce,post_id:$.sq_config.postID}).done(function(data){if(typeof data.url!=="undefined"){if(!$.sq_config.div.find("#new-post-slug").length){$.sq_config.div.append('<input type="hidden" id="new-post-slug" />')}$("#new-post-slug").val(data.url)}if(typeof data.post_title!=="undefined"){$.sq_fields.wp_input_title.val(data.post_title)}$this.trigger("seo.frontend.new_changes")})};if(!$.sq_config.div.find("#sq_post_title").length){$.sq_config.div.append('<input type="hidden" id="sq_post_title" />');$.sq_fields.wp_input_title=$("#sq_post_title");$this.checkPostAjax()}};$.fn.sq_VisualBuilder=function(){var $this=this;if(typeof window.sq_editor!=="undefined"){return window.sq_editor}var builderExists=false;var builderInUse="";var $builderContents=null;var $lastNumberOfNodes=0;var $currentNumberOfNodes=0;var $elementLoadingTime=null;var buildersInfo={elementor:{enabled:true,name:"elementor",hasIframe:true,iframeSelector:"#elementor-preview-iframe",parrentDiv:".elementor-editor-active"},WPBakery:{enabled:true,name:"wpbakery",hasIframe:true,iframeSelector:"#vc_inline-frame",parrentDiv:"#vc_editor"},bricks:{enabled:true,name:"bricks",hasIframe:true,iframeSelector:"#bricks-builder-iframe",parrentDiv:"#bricks-builder-iframe-wrapper"},thrive:{enabled:true,name:"thrive",hasIframe:true,iframeSelector:"#tve-editor-frame",parrentDiv:".tcb-editor-main"},divi:{enabled:true,name:"divi",hasIframe:true,iframeSelector:"#et-fb-app-frame",parrentDiv:".et_divi_builder"},oxygen:{enabled:true,name:"oxygen",hasIframe:true,iframeSelector:"#ct-artificial-viewport",parrentDiv:"#oxygen-ui"},zion:{enabled:true,name:"zion",hasIframe:true,iframeSelector:"#znpb-editor-iframe",parrentDiv:".znpb"}};var pageData={url:"",title:"",content:"",h1:"",headline:"",hasMultipleH1:false,images:""};var builderSelectorsSettings={preview:"",h1:"",container:"",containerWidget:"",containerWidgetImages:"",saveButton:"",saveAction:""};var currentNumberOfNodes=null;$this.init=function(){SQ_DEBUG&&console.log("checkBuilderExists");$this.checkBuilderExists()};$this.parseBuilders=function(){SQ_DEBUG&&console.log("Check parseBuilders "+$this.getBuilderName());switch($this.getBuilderName()){case"elementor":SQ_DEBUG&&console.log("Found "+$this.getBuilderName()+" builder");$this.parseElementor();break;case"oxygen":SQ_DEBUG&&console.log("Found "+$this.getBuilderName()+" builder");$this.parseOxygen();break;case"divi":SQ_DEBUG&&console.log("Found "+$this.getBuilderName()+" builder");if(typeof $.sq_config.div==="undefined"||typeof $.sq_params.low_density==="undefined"||typeof $.sq_fields.wp_title==="undefined"){$.sq_setConfig();$.sq_setParams();$.sq_setfields()}$this.parseDivi();break;case"wpbakery":SQ_DEBUG&&console.log("Found "+$this.getBuilderName()+" builder");$this.parseWPBakery();break;case"zion":SQ_DEBUG&&console.log("Found "+$this.getBuilderName()+" builder");$this.parseZion();break;case"thrive":SQ_DEBUG&&console.log("Found "+$this.getBuilderName()+" builder");$this.parseThrive();break;case"bricks":SQ_DEBUG&&console.log("Found "+$this.getBuilderName()+" builder");$this.parseBricks();break}};$this.checkBuilderExists=function(){SQ_DEBUG&&console.log("Looking for builders");$.each(Object.values(buildersInfo),function(index,builder){SQ_DEBUG&&console.log("Checking for: "+builder.name+" builder");if(builder.enabled===false){return}if(builder.hasIframe){if($this.elementExists(builder.iframeSelector)){SQ_DEBUG&&console.log("Found: "+builder.iframeSelector+" iframe");$(builder.iframeSelector).load(function(){SQ_DEBUG&&console.log("Loaded iframeSelector: "+builder.iframeSelector+" from builder "+builder.name);$this.setBuilderExists(builder.name);$builderContents=$(builder.iframeSelector).contents()[0];$this.parseBuilders()});$(builder.iframeSelector).ready(function(){SQ_DEBUG&&console.log("Ready iframeSelector: "+builder.iframeSelector+" from builder "+builder.name);$this.setBuilderExists(builder.name);$builderContents=$(builder.iframeSelector).contents()[0];$this.parseBuilders()});return false}}else if($this.elementExists(builder.parrentDiv)){$builderContents=$(builder.parrentDiv).contents();$this.setBuilderExists(builder.name);return false}})};$this.elementExists=function(element,where){var $whereToLook;if(typeof where==="undefined"){$whereToLook=$(document)}else{$whereToLook=$(where)}var $element=$whereToLook.find(element);if(typeof $element!=="undefined"&&$element.length>0){return $element}return false};$this.getBuilderInfo=function(builderName){return buildersInfo[builderName]};$this.waitForElementToDisplay=function(selector,where,time,callback){if($elementLoadingTime){clearTimeout($elementLoadingTime)}var $element=$this.elementExists(selector,where);if($element){callback()}else{$elementLoadingTime=setTimeout(function(){console.log("Waiting for: "+selector);$this.waitForElementToDisplay(selector,where,time,callback)},time)}};$this.parseElementor=function(){SQ_DEBUG&&console.log("Start parsing "+$this.getBuilderName());builderSelectorsSettings={preview:["#elementor-preview-iframe"],title:["h1.elementor-heading-title","h1.entry-title"],header:["h2","h3","h4","h5","h6"],container:[".elementor-section-wrap",".elementor-inner"],containerWidget:".elementor-widget-container",containerWidgetImages:["img"],saveAction:"save_builder"};$.each(builderSelectorsSettings.title,function(index,value){if($this.elementExists(value,$builderContents)){$this.setPageTitle($($builderContents).find(value+":first").text())}});$.each(builderSelectorsSettings.container,function(index,container){$this.waitForElementToDisplay(container,$builderContents,$.sq_config.delay_seo,function(){var $container=$($builderContents).find(container);var $elementorWidgets=$container.find(builderSelectorsSettings.containerWidget);$currentNumberOfNodes=$elementorWidgets.length;var textContainerToConcat="";var textContainerImagesToConcat="";$.each($elementorWidgets,function(){var $element=$(this).clone();if($element.find(builderSelectorsSettings.containerWidget).length){$element=$element.find(builderSelectorsSettings.containerWidget)}$.each(builderSelectorsSettings.title,function(index,value){if($this.getPageTitle()===""&&$this.elementExists(value,$element)){$this.setPageTitle($element.find(value+":first").text())}});$.each(builderSelectorsSettings.header,function(index,value){if($this.getPageHeadline()===""&&$this.elementExists(value,$element)){$this.setPageHeadline($element.find(value+":first").text())}});if($.isFunction($element.html)){textContainerToConcat+=$element.html()}else if(typeof $element.context!="undefined"){textContainerToConcat+=$element.context.innerHTML}$.each(builderSelectorsSettings.containerWidgetImages,function(index,value){var $imagesContainers=$element.find(value);if($imagesContainers.length>0){$.each($imagesContainers,function(){if($.isFunction($(this).html)){textContainerImagesToConcat+=$(this).html()}else if(typeof $(this).context!="undefined"){textContainerImagesToConcat+=$(this).context.innerHTML}});return false}});$element.remove()});$this.setPageContent(textContainerToConcat);$this.setPageImages(textContainerImagesToConcat);var triggerLoadInterval=setInterval(function(){if(!$("#elementor-loading").is(":visible")){clearInterval(triggerLoadInterval);$this.trigger("seo.frontend.content_loaded")}},1e3)})})};$this.parseOxygen=function(){SQ_DEBUG&&console.log("Start parsing "+$this.getBuilderName());builderSelectorsSettings={preview:["#ct-artificial-viewport"],title:["h1.ct-headline"],header:["div.bnb-subheading"],container:["#ct-builder"],containerWidget:".ct-inner-wrap",containerWidgetImages:[".ct-image"],saveAction:"oxygen-save-button",draftButton:"oxygen-save-button"};$.each(builderSelectorsSettings.title,function(index,value){if($this.elementExists(value,$builderContents)){$this.setPageTitle($($builderContents).find(value+":first").text())}});$.each(builderSelectorsSettings.container,function(index,container){$this.waitForElementToDisplay(container,$builderContents,$.sq_config.delay_seo,function(){var $container=$($builderContents).find(container);var $elementorWidgets=$container.find(builderSelectorsSettings.containerWidget);$currentNumberOfNodes=$elementorWidgets.length;var textContainerToConcat="";var textContainerImagesToConcat="";$.each($elementorWidgets,function(){var $element=$(this).clone();$.each(builderSelectorsSettings.title,function(index,value){if($this.getPageTitle()===""&&$this.elementExists(value,$element)){$this.setPageTitle($element.find(value+":first").text())}});$.each(builderSelectorsSettings.header,function(index,value){if($this.getPageHeadline()===""&&$this.elementExists(value,$element)){$this.setPageHeadline($element.find(value+":first").text())}});if($.isFunction($element.html)){textContainerToConcat+=$element.html()}else if(typeof $element.context!="undefined"){textContainerToConcat+=$element.context.innerHTML}$.each(builderSelectorsSettings.containerWidgetImages,function(index,value){var $imagesContainers=$element.find(value);if($imagesContainers.length>0){$.each($imagesContainers,function(){if($.isFunction($(this).html)){textContainerImagesToConcat+=$(this).html()}else if(typeof $(this).context!="undefined"){textContainerImagesToConcat+=$(this).context.innerHTML}});return false}});$element.remove()});$this.setPageContent(textContainerToConcat);$this.setPageImages(textContainerImagesToConcat);var triggerLoadInterval=setInterval(function(){if(!$(".ct-page-overlay").is(":visible")){clearInterval(triggerLoadInterval);$this.trigger("seo.frontend.content_loaded");if($(".oxygen-left-button-wrap").length&&$("button.components-squirrly-icon").length){var $icon=$("button.components-squirrly-icon");$(".oxygen-left-button-wrap").after($icon);$icon.css("position","initial");$icon.css("margin-left","2px")}}},1e3)})})};$this.parseDivi=function(){SQ_DEBUG&&console.log("Start parsing "+$this.getBuilderName());builderSelectorsSettings={preview:["#et-fb-app-frame"],title:["h1.entry-title","h1.et_pb_module_header"],header:["h2","h3","h4","h5","h6"],container:["#et-boc"],containerWidget:".et_pb_section",containerWidgetImages:[".et_pb_image_wrap"],saveButton:"et_fb_ajax_save",draftButton:"et-fb-button--save-draft"};$.each(builderSelectorsSettings.container,function(index,container){$this.waitForElementToDisplay(container,$builderContents,$.sq_config.delay_seo,function(){var $container=$($builderContents).find(container);var $elementorWidgets=$container.find(builderSelectorsSettings.containerWidget);$currentNumberOfNodes=$elementorWidgets.length;var textContainerToConcat="";var textContainerImagesToConcat="";$.each($elementorWidgets,function(){var $element=$(this).clone();$.each(builderSelectorsSettings.title,function(index,value){if($this.getPageTitle()===""&&$this.elementExists(value,$element)){$this.setPageTitle($element.find(value+":first").text())}});$.each(builderSelectorsSettings.header,function(index,value){if($this.getPageHeadline()===""&&$this.elementExists(value,$element)){$this.setPageHeadline($element.find(value+":first").text())}});$.each(builderSelectorsSettings.header,function(index,value){if($this.elementExists(value,$element)){$this.setPageHeadline($element.find(value+":first").text())}});if($.isFunction($element.html)){textContainerToConcat+=$element.html()}else if(typeof $element.context!="undefined"){textContainerToConcat+=$element.context.innerHTML}$.each(builderSelectorsSettings.containerWidgetImages,function(index,value){var $imagesContainers=$element.find(value);if($imagesContainers.length>0){$.each($imagesContainers,function(){if($.isFunction($(this).html)){textContainerImagesToConcat+=$(this).html()}else if(typeof $(this).context!="undefined"){textContainerImagesToConcat+=$(this).context.innerHTML}});return false}});$element.remove()});$this.setPageContent(textContainerToConcat);$this.setPageImages(textContainerImagesToConcat);var triggerLoadInterval=setInterval(function(){if(!$(".et-fb-page-preloading").length){clearInterval(triggerLoadInterval);$this.trigger("seo.frontend.content_loaded");if($(".et-fb-button--help").length&&$("button.components-squirrly-icon").length){var $icon=$("button.components-squirrly-icon");$(".et-fb-button--help").after($icon);$icon.css("position","initial");$icon.css("margin-right","5px")}}},1e3)})})};$this.parseWPBakery=function(){SQ_DEBUG&&console.log("Start parsing "+$this.getBuilderName());builderSelectorsSettings={preview:["#vc_inline-frame"],title:["h1.entry-title","h1.wp-block-post-title",".vc_container-block h1"],header:[".vc_container-block h2,.vc_container-block h3,.vc_container-block h4,.vc_container-block h5,.vc_container-block h6"],container:[".vc-main-sortable-container"],containerWidget:".wpb_wrapper",containerWidgetImages:[".vc_single_image-img",".wpb_gallery_slides"],saveAction:"vc_save"};$.each(builderSelectorsSettings.title,function(index,value){if($this.elementExists(value,$builderContents)){$this.setPageTitle($($builderContents).find(value+":first").text())}});$.each(builderSelectorsSettings.container,function(index,container){$this.waitForElementToDisplay(container,$builderContents,$.sq_config.delay_seo,function(){var $container=$($builderContents).find(container);var $elementorWidgets=$container.find(builderSelectorsSettings.containerWidget);$currentNumberOfNodes=$elementorWidgets.length;var textContainerToConcat="";var textContainerImagesToConcat="";$.each($elementorWidgets,function(){var $element=$(this).clone();$.each(builderSelectorsSettings.title,function(index,value){if($this.getPageTitle()===""&&$this.elementExists(value,$element)){$this.setPageTitle($element.find(value+":first").text())}});$.each(builderSelectorsSettings.header,function(index,value){if($this.getPageHeadline()===""&&$this.elementExists(value,$element)){$this.setPageHeadline($element.find(value+":first").text())}});if($.isFunction($element.html)){textContainerToConcat+=$element.html()}else if(typeof $element.context!="undefined"){textContainerToConcat+=$element.context.innerHTML}$.each(builderSelectorsSettings.containerWidgetImages,function(index,value){var $imagesContainers=$element.find(value);if($imagesContainers.length>0){$.each($imagesContainers,function(){if($.isFunction($(this).html)){textContainerImagesToConcat+=$(this).html()}else if(typeof $(this).context!="undefined"){textContainerImagesToConcat+=$(this).context.innerHTML}});return false}});$element.remove()});$this.setPageContent(textContainerToConcat);$this.setPageImages(textContainerImagesToConcat);var triggerLoadInterval=setInterval(function(){if(!$("#vc_preloader").is(":visible")){clearInterval(triggerLoadInterval);$this.trigger("seo.frontend.content_loaded");if(!$("body > #postsquirrly").length){$("#postsquirrly").appendTo("body")}if($(".vc_navbar-header").length&&$("button.components-squirrly-icon").length){var $icon=$("button.components-squirrly-icon");$(".vc_navbar-header").append($icon);$icon.css("position","initial");$icon.css("margin-top","10px")}}},1e3)})})};$this.parseThrive=function(){SQ_DEBUG&&console.log("Start parsing "+$this.getBuilderName());builderSelectorsSettings={preview:["#tve-editor-frame"],title:["h1"],header:["h2","h3","h4","h5","h6"],container:["#tve_editor"],containerWidget:".thrv_wrapper",containerWidgetImages:["img"],saveAction:"tcb_editor_ajax"};$.each(builderSelectorsSettings.container,function(index,container){$this.waitForElementToDisplay(container,$builderContents,$.sq_config.delay_seo,function(){var $container=$($builderContents).find(container);var $elementorWidgets=$container.children(builderSelectorsSettings.containerWidget);$currentNumberOfNodes=$elementorWidgets.length;var textContainerToConcat="";var textContainerImagesToConcat="";$.each($elementorWidgets,function(){var $element=$(this).clone();$.each(builderSelectorsSettings.title,function(index,value){if($this.getPageTitle()===""&&$this.elementExists(value,$element)){$this.setPageTitle($element.find(value+":first").text())}});$.each(builderSelectorsSettings.header,function(index,value){if($this.getPageHeadline()===""&&$this.elementExists(value,$element)){$this.setPageHeadline($element.find(value+":first").text())}});if($.isFunction($element.html)){textContainerToConcat+=$element.html()}else if(typeof $element.context!="undefined"){textContainerToConcat+=$element.context.innerHTML}$.each(builderSelectorsSettings.containerWidgetImages,function(index,value){var $imagesContainers=$element.find(value);if($imagesContainers.length>0){$.each($imagesContainers,function(){if($.isFunction($(this).html)){textContainerImagesToConcat+=$(this).html()}else if(typeof $(this).context!="undefined"){textContainerImagesToConcat+=$(this).context.innerHTML}});return false}});$element.remove()});$this.setPageContent(textContainerToConcat);$this.setPageImages(textContainerImagesToConcat);var triggerLoadInterval=setInterval(function(){if(!$("#tve-page-loader").is(":visible")){clearInterval(triggerLoadInterval);$this.trigger("seo.frontend.content_loaded");if($("#sidebar-bottom").length&&$("button.components-squirrly-icon").length){var $icon=$("button.components-squirrly-icon");$("#sidebar-bottom").prepend($icon);$icon.css("position","initial");$icon.css("margin-right","2px")}}},1e3)})})};$this.parseZion=function(){SQ_DEBUG&&console.log("Start parsing "+$this.getBuilderName());builderSelectorsSettings={preview:["#znpb-editor-iframe"],title:["h1.entry-title","h1.zb-el-zionHeading"],header:["h2.zb-el-zionHeading","h3.zb-el-zionHeading","h4.zb-el-zionHeading","h5.zb-el-zionHeading","h6.zb-el-zionHeading"],container:[".znpb-preview-page-wrapper"],containerWidget:".zb-section__innerWrapper",containerWidgetImages:[".znpb-element__wrapper img"],saveButton:".znpb-editor-header__page-save-wrapper--save",draftButton:".znpb-editor-header__page-save-wrapper"};$.each(builderSelectorsSettings.title,function(index,value){if($this.elementExists(value,$builderContents)){$this.setPageTitle($($builderContents).find(value+":first").text())}});$.each(builderSelectorsSettings.container,function(index,container){$this.waitForElementToDisplay(container,$builderContents,$.sq_config.delay_seo,function(){var $container=$($builderContents).find(container);var $elementorWidgets=$container.find(builderSelectorsSettings.containerWidget);$currentNumberOfNodes=$elementorWidgets.length;var textContainerToConcat="";var textContainerImagesToConcat="";$.each($elementorWidgets,function(){var $element=$(this).clone();$.each(builderSelectorsSettings.title,function(index,value){if($this.getPageTitle()===""&&$this.elementExists(value,$element)){$this.setPageTitle($element.find(value+":first").text())}});$.each(builderSelectorsSettings.header,function(index,value){if($this.getPageHeadline()===""&&$this.elementExists(value,$element)){$this.setPageHeadline($element.find(value+":first").text())}});if($.isFunction($element.html)){textContainerToConcat+=$element.html()}else if(typeof $element.context!="undefined"){textContainerToConcat+=$element.context.innerHTML}$.each(builderSelectorsSettings.containerWidgetImages,function(index,value){var $imagesContainers=$element.find(value);if($imagesContainers.length>0){$.each($imagesContainers,function(){if($.isFunction($(this).html)){textContainerImagesToConcat+=$(this).html()}else if(typeof $(this).context!="undefined"){textContainerImagesToConcat+=$(this).context.innerHTML}});return false}});$element.remove()});$this.setPageContent(textContainerToConcat);$this.setPageImages(textContainerImagesToConcat);var triggerLoadInterval=setInterval(function(){if(!$(".znpb-loading-wrapper-gif").is(":visible")){clearInterval(triggerLoadInterval);$this.trigger("seo.frontend.content_loaded");if($(".znpb-editor-header__first").length&&$("button.components-squirrly-icon").length){var $icon=$("button.components-squirrly-icon");$(".znpb-editor-header__first").append($icon);$icon.css("position","initial");$icon.css("margin-top","5px")}}},1e3)})})};$this.parseBricks=function(){SQ_DEBUG&&console.log("Start parsing "+$this.getBuilderName());builderSelectorsSettings={preview:["#bricks-builder-iframe"],title:["h1.entry-title","h1.brxe-post-title"],header:["h2","h3","h4","h5","h6"],container:[".brx-body"],containerWidget:".brx-container.root",containerWidgetImages:[".brxe-image"],saveAction:"bricks_save_post"};$.each(builderSelectorsSettings.container,function(index,container){$this.waitForElementToDisplay(container,$builderContents,$.sq_config.delay_seo,function(){var $container=$($builderContents).find(container);var $elementorWidgets=$container.find(builderSelectorsSettings.containerWidget);$currentNumberOfNodes=$elementorWidgets.length;var textContainerToConcat="";var textContainerImagesToConcat="";$.each($elementorWidgets,function(){var $element=$(this).clone();$.each(builderSelectorsSettings.title,function(index,value){if($this.getPageTitle()===""&&$this.elementExists(value,$element)){$this.setPageTitle($element.find(value+":first").text())}});$.each(builderSelectorsSettings.header,function(index,value){if($this.getPageHeadline()===""&&$this.elementExists(value,$element)){$this.setPageHeadline($element.find(value+":first").text())}});$.each(builderSelectorsSettings.header,function(index,value){if($this.elementExists(value,$element)){$this.setPageHeadline($element.find(value+":first").text())}});if($.isFunction($element.html)){textContainerToConcat+=$element.html()}else if(typeof $element.context!="undefined"){textContainerToConcat+=$element.context.innerHTML}$.each(builderSelectorsSettings.containerWidgetImages,function(index,value){var $imagesContainers=$element.find(value);if($imagesContainers.length>0){$.each($imagesContainers,function(){if($.isFunction($(this).html)){textContainerImagesToConcat+=$(this).html()}else if(typeof $(this).context!="undefined"){textContainerImagesToConcat+=$(this).context.innerHTML}});return false}});$element.remove()});$this.setPageContent(textContainerToConcat);$this.setPageImages(textContainerImagesToConcat);var triggerLoadInterval=setInterval(function(){if(!$(".et-fb-page-preloading").is(":visible")){clearInterval(triggerLoadInterval);$this.trigger("seo.frontend.content_loaded");if($("#bricks-toolbar").length&&$("button.components-squirrly-icon").length){var $icon=$("button.components-squirrly-icon");$("#bricks-toolbar .group-wrapper.left").append($icon);$icon.css("position","initial");$icon.css("margin-left","2px")}}},1e3)})})};$this.setBuilderExists=function(builderName){builderExists=true;builderInUse=builderName};$this.getBuilderExists=function(){return builderExists};$this.getBuilderName=function(){return builderInUse};$this.getBuilderContainer=function(){if($(builderSelectorsSettings.preview[0]).contents().find(builderSelectorsSettings.container[0]).length>0){return $(builderSelectorsSettings.preview[0]).contents().find(builderSelectorsSettings.container[0]).first()}if(builderSelectorsSettings.preview.length>0){return $(builderSelectorsSettings.preview[0]).contents().find("body")}return false};$this.getPageData=function(){return pageData};$this.getPageURL=function(){return pageData.url};$this.getPageTitle=function(){return pageData.title};$this.getMultipleH1=function(){return pageData.hasMultipleH1};$this.getH1=function(){return pageData.h1};$this.getPageContent=function(){return pageData.content};$this.getPageImages=function(){return pageData.images};$this.getPageHeadline=function(){return pageData.headline};$this.setPageURL=function(url){pageData.url=url};$this.setPageTitle=function(title){pageData.title=title};$this.setH1=function(h1Text){pageData.h1=h1Text};$this.setPageHeadline=function(headline){pageData.headline=headline};$this.setMultipleH1=function(flag){pageData.hasMultipleH1=flag};$this.setPageContent=function(content){pageData.content=content};$this.setPageImages=function(images){pageData.images=images};$this.triggerPageHasChanges=function(){SQ_DEBUG&&console.log("triggerPageHasChanges");$this.trigger("seo.frontend.refresh");$this.trigger("seo.frontend.new_changes")};$this.triggerButtonSaveClicked=function(){SQ_DEBUG&&console.log("triggerButtonSaveClicked");$this.trigger("seo.frontend.refresh");$this.trigger("seo.frontend.page_saved")};$this.on("seo.frontend.refresh",function(){$this.parseBuilders()});$(document).on("click","button",function(){if("#"+$(this).attr("id")===builderSelectorsSettings.saveButton){$this.triggerButtonSaveClicked()}if(typeof builderSelectorsSettings.saveButton!="undefined"){if(builderSelectorsSettings.saveButton.indexOf("#")===-1){if($(this).hasClass(builderSelectorsSettings.saveButton)){$this.triggerButtonSaveClicked()}}}});$(document).on("click","div",function(){if("#"+$(this).attr("id")===builderSelectorsSettings.draftButton){$this.triggerButtonSaveClicked()}if(typeof builderSelectorsSettings.saveButton!="undefined"){if(builderSelectorsSettings.saveButton.indexOf("#")===-1){if($(this).hasClass(builderSelectorsSettings.saveButton)){$this.triggerButtonSaveClicked()}}}if(typeof builderSelectorsSettings.draftButton!="undefined"){if(builderSelectorsSettings.draftButton.indexOf("#")===-1){if($(this).hasClass(builderSelectorsSettings.draftButton)){$this.triggerButtonSaveClicked()}}}});$(document).ajaxSend(function(event,jqxhr,settings){if(typeof settings.data!=="undefined"){if(typeof builderSelectorsSettings.saveAction!="undefined"){if(settings.data.indexOf(builderSelectorsSettings.saveAction)!==-1){$this.triggerButtonSaveClicked()}}}});setInterval(function(){$this.trigger("seo.frontend.refresh");SQ_DEBUG&&console.log("Check Blocks number: "+$lastNumberOfNodes+" = "+$currentNumberOfNodes);if($lastNumberOfNodes!==$currentNumberOfNodes){$lastNumberOfNodes=$currentNumberOfNodes;$this.triggerPageHasChanges()}},3e4);$.sq_blockseo.on("seo.task_loaded",function(){$(".sq_tasks").find("#sq_alt").remove()});$this.init();window.sq_editor=$this;$this.trigger("seo.frontend.editor_loaded");return $this}})(jQuery);
view/assets/js/assistant/squirrly.min.js CHANGED
@@ -1 +1 @@
1
- if(typeof SQ_DEBUG==="undefined"){var SQ_DEBUG=false}(function($){"use strict";if($.isFunction($.fn.sq_main)||typeof $.sq_config==="undefined"){return}$.sq_initialized=false;$.sq_setConfig=function(){$.sq_config=$.extend({div:$("#postsquirrly"),editor:false,editor_type:false,active_editor:false,token:"",url_token:"",sq_apiurl:"//api.squirrly.co/v2/",ajaxurl:"",sq_nonce:"",sq_version:"",is_gutenberg:0,referer:"",keyword:"",lsi:[],language:"en-US",subscription_active:1,subscription_paid:0,sq_keywordtag:"",postID:0,prevNonce:"",user_url:"http://"+document.domain,research_language:"us",timeout_seo:null,timeout_search:null,timeout_research:null,sq_windowerror:false,interval_seo:null,calltimeout:5e3,delay_seo:500,cookie_expires:60*24*2,nrb:8,after_insert:'<div><br style="clear:both" /></div>',firsttime:false,manual:false,silent:false,briefcase:false,sq_cache:[]},$.sq_config)};$.sq_setParams=function(){$.sq_params=$.extend({low_density:1,high_density:2.5,high_density_title:35,low_density_title:2.5,min_length_title:10,max_length_title:75,min_length_body:80,max_length_body:0,min_length_description:20,max_length_description:160,begin_last_max_chars:400,max_word_density:3,beginning_length:255,ending_length:255,min_words_between_keywords:70,min_chars_between_keywords:200,max_keywords:5},$.sq_params)};$.sq_setfields=function(){$.sq_fields=$.extend({wp_title:$("#titlediv"),wp_input_title:$("#title"),wp_postimagediv:$("#postimagediv"),wp_content_wrap:$(".wp-editor-wrap"),wp_content:$(".wp-editor-area"),wp_publish:$("#publish"),wp_postarea:$(".postarea"),wp_thumbnail_alt:$("#attachment_alt"),wp_thumbnail:$(".wp_attachment_image"),content_html:$("#content-html"),content_tmce:$("#content-tmce"),content_html_wp3:$("#edButtonHTML"),content_tmce_wp3:$("#edButtonPreview"),sq_box:$.sq_config.div.find(".sq_box"),sq_preloading:$.sq_config.div.find("#sq_preloading"),sq_preloading_keyword:$.sq_config.div.find("#sq_preloading_keyword"),sq_errorloading:$.sq_config.div.find("#sq_errorloading"),div_blocksearch:$.sq_config.div.find("#sq_blocksearch"),div_blockseo:$.sq_config.div.find("#sq_blockseo"),div_blockbriefacse:$("#sq_briefcase"),div_blocksnippet:$("#sq_blocksnippet"),sq_blocktabs:$.sq_config.div.find("#sq_block_tabs"),sq_blocksteps:$.sq_config.div.find(".sq_block_steps"),sq_search:$.sq_config.div.find(".sq_search"),sq_search_img_filter:$.sq_config.div.find("#sq_search_img_filter"),sq_search_second:$.sq_config.div.find("#sq_search_second"),sq_keyword_second:$.sq_config.div.find("#sq_keyword_second"),sq_keyword_second_check:$.sq_config.div.find("#sq_keyword_second_check"),sq_briefcase_icon:$.sq_config.div.find("#sq_briefcase_icon"),sq_briefcase_list:$.sq_config.div.find("#sq_briefcase_list"),sq_research_link:$.sq_config.div.find("#sq_research_link"),sq_selectit:$.sq_config.div.find("#sq_selectit"),sq_types:$.sq_config.div.find("#sq_types"),sq_type_img:$.sq_config.div.find("#sq_type_img"),sq_type_twitter:$.sq_config.div.find("#sq_type_twitter"),sq_type_news:$.sq_config.div.find("#sq_type_news"),sq_type_blog:$.sq_config.div.find("#sq_type_blog"),sq_type_wiki:$.sq_config.div.find("#sq_type_wiki"),sq_type_local:$.sq_config.div.find("#sq_type_local"),sq_research:$("#sq_research"),sq_blog_preview:$('<div id="sq_blog_preview"><div id="sq_blog_preview_close" >x</div><div id="sq_blog_preview_title"></div><div id="sq_blog_preview_body"></div></div><div id="sq_blog_preview_overlay"></div>'),sq_search_img_nolicence:$("#sq_search_img_nolicence"),sq_keyword:$.sq_config.div.find("#sq_keyword"),sq_keyword_score:$.sq_config.div.find("#sq_keyword_score"),sq_keyword_check:$.sq_config.div.find("#sq_keyword_check"),sq_keywords_research:$("#sq_keywords_research"),sq_keywords_research_add:$(".sq_keywords_research_add"),sq_keywords_research_submit:$(".sq_keywords_research_submit"),sq_keywords_research_clear:$(".sq_keywords_research_clear"),sq_research_close:$("#sq_research_close")},$.sq_fields)};$.isDom=function(inp){return inp&&inp.tagName&&inp.nodeName&&inp.ownerDocument&&inp.removeAttribute};$.sq_isGutenberg=function(){if(typeof wp!=="undefined"&&typeof wp.data!=="undefined"&&typeof wp.data.select("core/editor")!=="undefined"&&typeof wp.blocks!=="undefined"){if(wp.data.select("core/editor")&&$.isFunction(wp.data.select("core/editor").getEditedPostAttribute)&&$(".block-editor").length>0){return true}}return false};$.sq_isDiviBuilder=function(){if($("#et_pb_layout:visible").length>0){return true}return false};$.sq_getBuilderEditorContainer=function(){if($.sq_isGutenberg()){if($(".block-editor-block-list__layout.is-root-container").length>0){return $(".block-editor-block-list__layout.is-root-container")}}else if($.sq_isFrontend()){if($.sq_editor.getFrontendEditor()&&$.sq_editor.getFrontendEditor().getBuilderContainer()){return $.sq_editor.getFrontendEditor().getBuilderContainer()}}else if($.sq_config.active_editor){return $.sq_config.active_editor}return $("<div></div>")};$.sq_isFrontend=function(){if($.sq_config.div.length>0&&$.sq_config.div.hasClass("sq_frontend")){return true}return false};$.sq_getDomain=function(url,ret,separator){var domainName="";if(typeof ret==="undefined"){var ret=[8,10]}if(typeof separator==="undefined"){var separator=""}url=url.split(/([a-z0-9_\-]{1,5}:\/\/)?(([a-z0-9_\-]{1,}):([a-z0-9_\-]{1,})\@)?((www\.)|([a-z0-9_\-]{1,}\.)+)?([a-z0-9_\-]{3,})((\.[a-z]{2,4})(:(\d{1,5}))?)(\/([a-z0-9_\-]{1,}\/)+)?([a-z0-9_\-]{1,})?(\.[a-z]{2,})?(\?)?(((\&)?[a-z0-9_\-]{1,}(\=[a-z0-9_\-]{1,})?)+)?/g);$.each(ret,function(key,val){if(typeof url[val]!=="undefined"){domainName=domainName+(domainName!==""?separator:"")+url[val]}});return domainName};if(!$.sq_showMessage)$.sq_showMessage=function(text,time){$(".sq_notice").hide();var $div=$('<div class="sq_notice sq_fixed" ><div>'+text+"</div></div>");$("body").prepend($div);if(typeof time==="undefined"){time=2e3}setTimeout(function(){$div.remove()},time);return $div.find("div")};if(!$.sq_getHashParam)$.sq_getHashParam=function(key){if(location.href.indexOf("#")!==-1&&location.href.indexOf("#"+key)!==-1&&window.location.href.split("#")[1]!==""){var results=new RegExp("[\\?&#]"+key+"=([^&#]*)").exec(window.location.href);if(results){return results[1]||0}else{var results=new RegExp("[\\?&#]"+key+"[^&#]*").exec(window.location.href);if(results){return"1"}}}return false};if(!$.sq_setHashParam)$.sq_setHashParam=function(key){var separator="";if(!$.sq_getHashParam(key)){if(location.href.indexOf("#")!==-1){if(location.href.split("#")[1]!=="")separator="&"}else{separator="#"}window.location.href=window.location.href+separator+key}return false};if(!$.sq_deleteHashParam)$.sq_deleteHashParam=function(key){if($.sq_getHashParam(key)){window.location.href=window.location.href.replace("&"+key,"")}if($.sq_getHashParam(key)){window.location.href=window.location.href.replace(key,"")}return false};$.sq_formatNumber=function(number){var x,x1,x2;number+="";x=number.split(".");x1=x[0];x2=x.length>1?"."+x[1]:"";var rgx=/(\d+)(\d{3})/;while(rgx.test(x1)){x1=x1.replace(rgx,"$1"+","+"$2")}return x1+x2};$.sq_clearText=function(str){if(typeof str!=="undefined"&&str.length>0){str=$.sq_clearDiacritics(str);str=$.sq_stripTags(str)}return str};$.sq_umlautsText=function(str){str=str.replace("ä","ae");str=str.replace("ö","oe");str=str.replace("ß","ss");str=str.replace("ü","ue");str=str.replace("æ","ae");str=str.replace("ø","oe");str=str.replace("å","aa");str=str.replace("é","e");str=str.replace("è","e");return str};$.sq_stripTags=function(str){if(typeof str!=="undefined"&&str.length>0){str=$("<div />").html(str).text()}return str};$.sq_stripShortcode=function(str){if(typeof str!=="undefined"&&str.length>0){str=str.replace(/\\[[^\\]]+\\]/g,"")}return str};$.sq_stripChars=function(str){if(typeof str!=="undefined"&&str.length>0){str=str.replace(/[-.\/]+/g," ");var pattern=$.sq_regex("[^\\p{L}\\d\\s]");if(pattern){str=str.replace(pattern,"")}str=str.replace(/\s{2,}/g," ");str=str.trim()}return str};$.sq_clearDiacritics=function(str){if(typeof sqDiacritics!=="undefined"&&typeof str=="string"){return sqDiacritics.clear(str)}return str};$.sq_getCookie=function(name){var nameEQ=name+"=";var ca=document.cookie.split(";");for(var i=0;i<ca.length;i++){var c=ca[i];while(c.charAt(0)==" ")c=c.substring(1,c.length);if(c.indexOf(nameEQ)==0)return decodeURIComponent(c.substring(nameEQ.length,c.length))}return null};$.sq_setCookie=function(name,value){value=value.replace(new RegExp("\\\\","g"),"");document.cookie=name+"="+encodeURIComponent(value)+"; expires="+$.sq_config.cookie_expires+"; path=/"};$.sq_uriEncode=function(url){return url.replace(/'/g,"%27").replace(/\(/g,"%28").replace(/\)/g,"%29")};$.sq_getCache=function(name){if(typeof $.sq_config.sq_cache!=="undefined")if(typeof $.sq_config.sq_cache[name]!=="undefined")return $.sq_config.sq_cache[name];return""};$.sq_setCache=function(name,value){if(typeof name!=="undefined"&&typeof $.sq_config.sq_cache!=="undefined"){$.sq_config.sq_cache[name]=value}};$.sq_strEqual=function(a,b){return typeof a==="string"&&typeof b==="string"?a.localeCompare(b,undefined,{sensitivity:"accent"})===0:a===b};$.sq_isArray=function(input){return typeof input==="object"&&input instanceof Array};$.sq_regex=function(striptag){if(typeof XRegExp!=="undefined"){return XRegExp(striptag,"gi")}return false};$.fn.sq_loading=function(name){var $this=this;if(typeof name==="undefined"){$this.sq_classname="sq_minloading"}else{$this.sq_classname=name}clearTimeout($.sq_loadprocess);$this.addClass($this.sq_classname);$this.frame=function(){$this.html('<span class="sq_error_message">'+$.sq_config.__ajaxerror+"</span>");$this.addClass("sq_error");$this.sq_doneloading()};$.sq_loadprocess=setTimeout($this.frame,1e4);return $this};$.fn.sq_doneloading=function(name){var $this=this;if(typeof name==="undefined"){name="sq_minloading"}clearTimeout($.sq_loadprocess);$this.removeClass(name);$this.find(".sq_error_message").remove();return $this};$.sq_checkin=function(){return $.post($.sq_config.ajaxurl,{action:"sla_checkin",sq_nonce:$.sq_config.sq_nonce,output:"json"}).done(function(response){$.sq_fields.sq_box.show();$.sq_fields.sq_preloading.hide();$.sq_fields.sq_preloading_keyword.show();if(typeof response.error!=="undefined"){if(response.error==="invalid_token"){if($.isFunction($.sq_config.div.sq_floating)){$.sq_floating=$.sq_config.div.sq_floating([]);$.sq_floating.init()}var $message=$('<div class="sq_error_message" style="width: 100%;text-align: center;padding: 10px;"><a href="admin.php?page=sq_dashboard" style="color: #df3434;font-size: 13px;font-weight: 500;">'+$.sq_config.__noconnection+"</a></div>");var sq_header=$.sq_fields.sq_box.find(".sq_header");$.sq_fields.sq_box.html($message);$.sq_fields.sq_box.prepend(sq_header);$.sq_fields.sq_box.find(".sq_box_maximize").hide();$.sq_fields.sq_box.find(".sq_box_close").on("click",function(){$.sq_config.div.hide();$.sq_setCookie("sq_sla","off")});$.sq_config.div.show();setTimeout(function(){$.sq_config.div.hide()},5e3)}else if(response.error==="maintenance"){if($.isFunction($.sq_config.div.sq_floating)){$.sq_floating=$.sq_config.div.sq_floating([]);$.sq_floating.init()}var $message=$('<div class="sq_error_message" style="width: 100%;text-align: center;padding: 10px;font-size: 12px;">'+$.sq_config.__maintenance+"</div>");var sq_header=$.sq_fields.sq_box.find(".sq_header");$.sq_fields.sq_box.html($message);$.sq_fields.sq_box.prepend(sq_header);$.sq_fields.sq_box.find(".sq_box_maximize").hide();$.sq_fields.sq_box.find(".sq_box_close").on("click",function(){$.sq_config.div.hide();$.sq_setCookie("sq_sla","off")});$.sq_config.div.show();setTimeout(function(){$.sq_config.div.hide()},5e3)}}if(typeof response.data!=="undefined"){var triggerLoadInterval=setInterval(function(){if($.sq_triggerLoad("seo.loaded")){clearInterval(triggerLoadInterval)}},1e3)}}).fail(function(){$.sq_fields.sq_box.show();$.sq_fields.sq_preloading.hide();$.sq_fields.sq_errorloading.show()})};$.sq_triggerLoad=function(message){if(typeof $.sq_blockbriefcase!=="undefined"&&typeof $.sq_blockseo!=="undefined"&&typeof $.sq_blocksearch!=="undefined"){$.sq_blockbriefcase.trigger(message);$.sq_blockseo.trigger(message);$.sq_blocksearch.trigger(message);$.sq_config.div.trigger(message);return true}else{return false}};$.sq_savePost=function(){var $sq_seo=[];$.sq_config.div.find('input[name="sq_seo[]"]').each(function(){$sq_seo.push(this.value)});if($.sq_blockbriefcase){$.sq_blockbriefcase.trigger("briefcase.save")}$.post($.sq_config.ajaxurl,{action:"sq_ajax_save_post",sq_nonce:$.sq_config.sq_nonce,post_id:$.sq_config.postID,sq_keyword:$.sq_config.keyword,referer:"backend",sq_seo:$sq_seo})};$.sq_editor={getIframeEditor:function(element){var $this=$("#wpcontent");if(typeof element==="undefined"){element="#tinymce"}if($.sq_isGutenberg()){if($this.find("#editor").find("div.edit-post-visual-editor").length>0){return $this.find("#editor").find("div.edit-post-visual-editor")}if($this.find("#editor").find("div.edit-post-text-editor__body").length>0){return $this.find("#editor").find("div.edit-post-text-editor__body")}}if($this.find("#post").length>0&&$this.find("#post").find("iframe").length>0){if($this.find(".mce-container").find("iframe").contents().find(element+".has-focus").length>0){return $(".mce-container").find("iframe").contents().find(element+".has-focus")}if($this.find(".mce-container").find("iframe").contents().find(element).length>0){return $this.find(".mce-container").find("iframe").contents().find(element)}if($this.find("#content_ifr").contents().find(element).length>0){return $this.find("#content_ifr").contents().find(element)}if($this.find(".cke_contents").find("iframe").contents().find("body").length>0){return $this.find(".cke_contents").find("iframe").contents().find("body")}if($this.find("#cke_wysiwyg_frame").contents().find("body").length>0){return $this.find("#cke_wysiwyg_frame").contents().find("body")}}return false},getTinymceEditor:function(ed){var editor;if(typeof ed!=="undefined"&&typeof ed==="object"){editor=ed;if(typeof editor.activeEditor==="object")editor=editor.activeEditor}else{if(typeof tinyMCE==="object"){editor=tinyMCE;if(typeof tinyMCE.get("content")!=="undefined"){editor=tinyMCE.get("content")}else{if(typeof tinyMCE.activeEditor==="object"&&tinyMCE.activeEditor!==null){editor=tinyMCE.activeEditor}else{if(document.getElementById("content")!==null){editor=new tinymce.Editor("content");editor.contentCSS=["/wp-content/plugins/squirrly-seo/themes/default/css/sq_frontend.css"]}}}}}return editor},getBlockEditor:function(action){if($.sq_isGutenberg()){if(action==="select"){var ed=window.wp.data.select("core/editor")}else{var ed=window.wp.data.dispatch("core/editor")}return ed}return false},getFrontendEditor:function(action){if($.sq_isFrontend()){if(typeof window.sq_editor!=="undefined"){return window.sq_editor}}return false},createEditorButton:function(name){if($.sq_isFrontend()&&$("."+name).length==0){$("body").append('<button type="button" class="'+name+'"><i class="sq_logo" ></i></button>')}else if($.sq_isGutenberg()){if($(".edit-post-more-menu").length>0){$(".edit-post-more-menu").before('<button type="button" aria-label="Squirrly SEO" aria-expanded="false" class="components-button components-icon-button '+name+'"><i class="sq_logo" ></i></button>')}else if($(".interface-pinned-items").length>0){$(".interface-pinned-items").after('<button type="button" aria-label="Squirrly SEO" aria-expanded="false" class="sq-ml-2 components-button components-icon-button '+name+'"><i class="sq_logo" ></i></button>')}else if($(".edit-post-header__settings").length>0){$(".edit-post-header__settings").append('<button type="button" aria-label="Squirrly SEO" aria-expanded="false" class="components-button components-icon-button '+name+'"><i class="sq_logo" ></i></button>')}}else{$("body").append('<button type="button" class="'+name+'"><i class="sq_logo" ></i></button>')}},listenHtml:function(e){if(e.originalEvent.dataTransfer===null)return;var img=e.originalEvent.dataTransfer.getData("text");if($("#"+$(img).attr("id")).parent("li").attr("class")==="sq_search_img_li"){$.sq_fields.wp_content.val($.sq_fields.wp_content.val()+$.sq_blocksearch.packimg($(img).attr("id"),$("#"+$(img).attr("id")).parent("li").attr("src"),$("#"+$(img).attr("id")).parent("li")))}},listen:function(e){if($("#"+e.target.id).parent("li").attr("class")==="sq_search_img_li"){if($.sq_editor.lastimage!==$("#"+e.target.id).parent("li").attr("src")){$.sq_editor.insert($.sq_blocksearch.packimg(e.target.id,$("#"+e.target.id).parent("li").attr("src"),$("#"+e.target.id).parent("li")))}}$.sq_editor.lastimage=$("#"+e.target.id).parent("li").attr("src")},setContent:function(content,ed){if($.sq_config.editor_type==="tinymce"){var editor=$.sq_editor.getTinymceEditor(ed);if(typeof editor!=="undefined"){editor.setContent(content)}}},insert:function(content,ed){if($.sq_isDiviBuilder()||$.sq_isFrontend()){var input=document.createElement("textarea");document.body.prepend(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("We've copied the code and you can paste it in the Page Builder.")}catch(e){alert("You can copy the box and paste it in the Page Builder")}input.remove();if($(".edit-post-layout__content").length>0){$(".edit-post-layout__content").animate({scrollTop:$(".edit-post-layout__content").scrollTop()+$("#et_pb_layout").offset().top-50},"slow")}else{$("html,body").animate({scrollTop:$("#et_pb_layout").offset().top-50},"slow")}}else if($("#wpb_visual_composer:visible").length>0){var input=document.createElement("textarea");document.body.prepend(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("Visual Composer detected. We've copied the code and you can paste it in Visual Composer Editor.")}catch(e){alert("Visual Composer detected. You can copy the box and paste it in Visual Composer")}input.remove();if($(".edit-post-layout__content").length>0){$(".edit-post-layout__content").animate({scrollTop:$(".edit-post-layout__content").scrollTop()+$("#wpb_visual_composer").offset().top-50},"slow")}else{$("html,body").animate({scrollTop:$("#wpb_visual_composer").offset().top-50},"slow")}}else if($("#elementor-switch-mode-input").length>0&&$("#elementor-switch-mode-input").val()=="builder"){var input=document.createElement("textarea");document.body.appendChild(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("Elementor is detected. We've copied the code and you can paste it in Elementor Text Editor.")}catch(e){alert("Elementor detected. You can copy the box and paste it in Elementor Text Editor")}input.remove()}else if($("div.wp-editor-container").find("div.cs-editor-container.pro").length>0){var input=document.createElement("textarea");document.body.appendChild(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("Themeco PRO is detected. We've copied the code and you can paste it in Themeco PRO Text Editor.")}catch(e){alert("Themeco PRO detected. You can copy the box and paste it in Themeco PRO Text Editor")}input.remove()}else if($.sq_config.editor_type==="tinymce"){if(typeof tinyMCE==="object"){var editor=tinyMCE;if(typeof editor.activeEditor==="object"){editor=editor.activeEditor}}if(typeof editor!=="undefined"&&editor!==null){if(typeof editor.selection!=="undefined"){editor.selection.setContent(content)}else{editor.setContent(content)}$.sq_blockseo.callback()}}else{$.sq_fields.wp_content.val($.sq_fields.wp_content.val().substr(0,$.sq_fields.wp_content[0].selectionStart)+content+$.sq_fields.wp_content.val().substr($.sq_fields.wp_content[0].selectionEnd));$.sq_blockseo.callback()}}};$.sq_tinymce={callback:function(ed){if(ed.id!=="content")return false;var editor=$.sq_editor.getTinymceEditor(ed);if(typeof editor!=="undefined"&&typeof $.sq_blockseo==="object"){if($.sq_config.editor_type==="tinymce"){$.sq_blockseo.callback()}}},setup:function(ed){},addEvents:function(ed,dom){if(typeof $.sq_blockseo!=="undefined"&&typeof $.sq_editor==="object"&&!$.isDom($.sq_editor)){if($.sq_config.active_editor=$.sq_editor.getIframeEditor()){$.sq_blockseo.callback()}}}};$.fn.sq_main=function(){var $this=this;$this.load=function(){$.sq_setfields();$.sq_setParams();$.sq_initialized=true;$.sq_loadtabs();$.sq_highlight=function(element,text,params){var options=$.extend({element:"mark","acrossElements ":1,ignoreJoiners:1,diacritics:false,separateWordSearch:false,caseSensitive:false,accuracy:{value:"exactly",limiters:["`","~","!","@","#","$","%","^","&","*","(",")","-","_","=","+","{","}","[","]","\\","|",":",";","'",'"',",",".","<",">","/","?","“","”"]},ignorePunctuation:[" ",",","`","~","!","@","#","$","%","^","*","(",")","-","_","=","+","{","}","[","]","\\","|",":",";","'",'"',"<",">","/","?"],counter:1},params);if(typeof element!=="undefined"&&element.html()!==""&&$.isFunction(element.sq_unmark)){if(typeof options.range!=="undefined"){element.sq_unmark({done:function(){element.sq_markRanges(options.range,options)}})}else{element.sq_unmark({done:function(){element.sq_mark(text,options)}})}}};$.sq_removeHighlight=function(element){if(typeof element!=="undefined"&&$.isFunction(element.sq_unmark)&&!$.sq_isDiviBuilder()){element.sq_unmark()}};if($.isFunction($.sq_fields.sq_briefcase_list.sq_briefcase)){$.sq_blockbriefcase=$.sq_fields.sq_briefcase_list.sq_briefcase([])}if($.isFunction($.sq_config.div.sq_frontend)){$.sq_frontend=$.sq_config.div.sq_frontend([])}if($.sq_fields.div_blockseo.length>0&&$.isFunction($.sq_fields.div_blockseo.sq_blockseo)){$.sq_blockseo=$.sq_fields.div_blockseo.sq_blockseo([])}if($.sq_fields.div_blocksearch.length>0&&$.isFunction($.sq_fields.div_blocksearch.sq_blocksearch)){$.sq_blocksearch=$.sq_fields.div_blocksearch.sq_blocksearch([])}if($.isFunction($.sq_config.div.sq_floating)){$.sq_floating=$.sq_config.div.sq_floating([]);$.sq_floating.init()}else{$.sq_config.div.show()}$.sq_checkin()};return $this};$.sq_loadtabs=function(){$.sq_fields.sq_blocktabs.find("div").on("click",function(){$.sq_fields.sq_selectit.trigger("click");$.sq_fields.sq_blocktabs.find("div").removeClass("sq_active");$(this).addClass("sq_active");$(".sq_block_steps").hide();$($(this).data("target")).show()});$.sq_fields.sq_blocksteps.find(".sq_nextstep").on("click",function(){$('.sq_block_tab[data-target="'+$(this).data("target")+'"]').trigger("click")})};$(document).ready(function(){$.sq_setConfig();if(typeof $.sq_config.div!=="undefined"&&!$.sq_initialized&&$.sq_config.div.length>0){$.sq_config.div.sq_main().load()}});window.onerror=function(){if(typeof $.sq_config.div==="undefined"){$.sq_setConfig();if(typeof $.sq_config.div!=="undefined"&&!$.sq_initialized&&$.sq_config.div.length>0){$.sq_config.div.sq_main().load()}}}})(jQuery);
1
+ if(typeof SQ_DEBUG==="undefined"){var SQ_DEBUG=false}(function($){"use strict";if($.isFunction($.fn.sq_main)||typeof $.sq_config==="undefined"){return}$.sq_initialized=false;$.sq_setConfig=function(){$.sq_config=$.extend({div:$("#postsquirrly"),editor:false,editor_type:false,active_editor:false,token:"",url_token:"",sq_apiurl:"//api.squirrly.co/v2/",ajaxurl:"",sq_nonce:"",sq_version:"",is_gutenberg:0,referer:"",keyword:"",lsi:[],language:"en-US",subscription_active:1,subscription_paid:0,sq_keywordtag:"",postID:0,prevNonce:"",user_url:"http://"+document.domain,research_language:"us",timeout_seo:null,timeout_search:null,timeout_research:null,sq_windowerror:false,interval_seo:null,calltimeout:5e3,delay_seo:3e4,cookie_expires:60*24*2,nrb:8,after_insert:'<div><br style="clear:both" /></div>',firsttime:false,manual:false,silent:false,briefcase:false,sq_cache:[]},$.sq_config)};$.sq_setParams=function(){$.sq_params=$.extend({low_density:1,high_density:2.5,high_density_title:35,low_density_title:2.5,min_length_title:10,max_length_title:75,min_length_body:80,max_length_body:0,min_length_description:20,max_length_description:160,begin_last_max_chars:400,max_word_density:3,beginning_length:255,ending_length:255,min_words_between_keywords:70,min_chars_between_keywords:200,max_keywords:5},$.sq_params)};$.sq_setfields=function(){$.sq_fields=$.extend({wp_title:$("#titlediv"),wp_input_title:$("#post").find("#title"),wp_postimagediv:$("#postimagediv"),wp_content_wrap:$(".wp-editor-wrap"),wp_content:$(".wp-editor-area"),wp_publish:$("#publish"),wp_postarea:$(".postarea"),wp_thumbnail_alt:$("#attachment_alt"),wp_thumbnail:$(".wp_attachment_image"),content_html:$("#content-html"),content_tmce:$("#content-tmce"),content_html_wp3:$("#edButtonHTML"),content_tmce_wp3:$("#edButtonPreview"),sq_box:$.sq_config.div.find(".sq_box"),sq_preloading:$.sq_config.div.find("#sq_preloading"),sq_preloading_keyword:$.sq_config.div.find("#sq_preloading_keyword"),sq_errorloading:$.sq_config.div.find("#sq_errorloading"),div_blocksearch:$.sq_config.div.find("#sq_blocksearch"),div_blockseo:$.sq_config.div.find("#sq_blockseo"),div_blockbriefacse:$("#sq_briefcase"),div_blocksnippet:$("#sq_blocksnippet"),sq_blocktabs:$.sq_config.div.find("#sq_block_tabs"),sq_blocksteps:$.sq_config.div.find(".sq_block_steps"),sq_search:$.sq_config.div.find(".sq_search"),sq_search_img_filter:$.sq_config.div.find("#sq_search_img_filter"),sq_search_second:$.sq_config.div.find("#sq_search_second"),sq_keyword_second:$.sq_config.div.find("#sq_keyword_second"),sq_keyword_second_check:$.sq_config.div.find("#sq_keyword_second_check"),sq_briefcase_icon:$.sq_config.div.find("#sq_briefcase_icon"),sq_briefcase_list:$.sq_config.div.find("#sq_briefcase_list"),sq_research_link:$.sq_config.div.find("#sq_research_link"),sq_selectit:$.sq_config.div.find("#sq_selectit"),sq_types:$.sq_config.div.find("#sq_types"),sq_type_img:$.sq_config.div.find("#sq_type_img"),sq_type_twitter:$.sq_config.div.find("#sq_type_twitter"),sq_type_news:$.sq_config.div.find("#sq_type_news"),sq_type_blog:$.sq_config.div.find("#sq_type_blog"),sq_type_wiki:$.sq_config.div.find("#sq_type_wiki"),sq_type_local:$.sq_config.div.find("#sq_type_local"),sq_research:$("#sq_research"),sq_blog_preview:$('<div id="sq_blog_preview"><div id="sq_blog_preview_close" >x</div><div id="sq_blog_preview_title"></div><div id="sq_blog_preview_body"></div></div><div id="sq_blog_preview_overlay"></div>'),sq_search_img_nolicence:$("#sq_search_img_nolicence"),sq_keyword_div:$.sq_config.div.find(".sq_keyword"),sq_keyword:$.sq_config.div.find("#sq_keyword"),sq_keyword_score:$.sq_config.div.find("#sq_keyword_score"),sq_keyword_check:$.sq_config.div.find("#sq_keyword_check"),sq_keyword_nokeyword:$.sq_config.div.find("#sq_nokeyword"),sq_keywords_research:$("#sq_keywords_research"),sq_keywords_research_add:$(".sq_keywords_research_add"),sq_keywords_research_submit:$(".sq_keywords_research_submit"),sq_keywords_research_clear:$(".sq_keywords_research_clear"),sq_research_close:$("#sq_research_close")},$.sq_fields)};$.isDom=function(inp){return inp&&inp.tagName&&inp.nodeName&&inp.ownerDocument&&inp.removeAttribute};$.sq_isGutenberg=function(){if(typeof wp!=="undefined"&&typeof wp.data!=="undefined"&&typeof wp.data.select("core/editor")!=="undefined"&&typeof wp.blocks!=="undefined"){if(wp.data.select("core/editor")&&$.isFunction(wp.data.select("core/editor").getEditedPostAttribute)&&$(".block-editor").length>0){return true}}return false};$.sq_isDiviBuilder=function(){if($("#et_pb_layout:visible").length>0){return true}return false};$.sq_getBuilderEditorContainer=function(){if($.sq_isGutenberg()){if($(".block-editor-block-list__layout.is-root-container").length>0){return $(".block-editor-block-list__layout.is-root-container")}}else if($.sq_isFrontend()){if($.sq_editor.getFrontendEditor()&&$.sq_editor.getFrontendEditor().getBuilderContainer()){return $.sq_editor.getFrontendEditor().getBuilderContainer()}}else if($.sq_config.active_editor){return $.sq_config.active_editor}return $("<div></div>")};$.sq_isFrontend=function(){if(typeof $.sq_config.div==="undefined"){$.sq_initialize()}if($.sq_config.div.length>0&&$.sq_config.div.hasClass("sq_frontend")){return true}return false};$.sq_getDomain=function(url,ret,separator){var domainName="";if(typeof ret==="undefined"){var ret=[8,10]}if(typeof separator==="undefined"){var separator=""}url=url.split(/([a-z0-9_\-]{1,5}:\/\/)?(([a-z0-9_\-]{1,}):([a-z0-9_\-]{1,})\@)?((www\.)|([a-z0-9_\-]{1,}\.)+)?([a-z0-9_\-]{3,})((\.[a-z]{2,4})(:(\d{1,5}))?)(\/([a-z0-9_\-]{1,}\/)+)?([a-z0-9_\-]{1,})?(\.[a-z]{2,})?(\?)?(((\&)?[a-z0-9_\-]{1,}(\=[a-z0-9_\-]{1,})?)+)?/g);$.each(ret,function(key,val){if(typeof url[val]!=="undefined"){domainName=domainName+(domainName!==""?separator:"")+url[val]}});return domainName};if(!$.sq_showMessage)$.sq_showMessage=function(text,time){$(".sq_notice").hide();var $div=$('<div class="sq_notice sq_fixed" ><div>'+text+"</div></div>");$("body").prepend($div);if(typeof time==="undefined"){time=2e3}setTimeout(function(){$div.remove()},time);return $div.find("div")};if(!$.sq_getHashParam)$.sq_getHashParam=function(key){if(location.href.indexOf("#")!==-1&&location.href.indexOf("#"+key)!==-1&&window.location.href.split("#")[1]!==""){var results=new RegExp("[\\?&#]"+key+"=([^&#]*)").exec(window.location.href);if(results){return results[1]||0}else{var results=new RegExp("[\\?&#]"+key+"[^&#]*").exec(window.location.href);if(results){return"1"}}}return false};if(!$.sq_setHashParam)$.sq_setHashParam=function(key){var separator="";if(!$.sq_getHashParam(key)){if(location.href.indexOf("#")!==-1){if(location.href.split("#")[1]!=="")separator="&"}else{separator="#"}window.location.href=window.location.href+separator+key}return false};if(!$.sq_deleteHashParam)$.sq_deleteHashParam=function(key){if($.sq_getHashParam(key)){window.location.href=window.location.href.replace("&"+key,"")}if($.sq_getHashParam(key)){window.location.href=window.location.href.replace(key,"")}return false};$.sq_formatNumber=function(number){var x,x1,x2;number+="";x=number.split(".");x1=x[0];x2=x.length>1?"."+x[1]:"";var rgx=/(\d+)(\d{3})/;while(rgx.test(x1)){x1=x1.replace(rgx,"$1"+","+"$2")}return x1+x2};$.sq_clearText=function(str){if(typeof str!=="undefined"&&str.length>0){str=$.sq_clearDiacritics(str);str=$.sq_stripTags(str)}return str};$.sq_umlautsText=function(str){str=str.replace("ä","ae");str=str.replace("ö","oe");str=str.replace("ß","ss");str=str.replace("ü","ue");str=str.replace("æ","ae");str=str.replace("ø","oe");str=str.replace("å","aa");str=str.replace("é","e");str=str.replace("è","e");return str};$.sq_stripTags=function(str){if(typeof str!=="undefined"&&str.length>0){str=$("<div />").html(str).text()}return str};$.sq_stripShortcode=function(str){if(typeof str!=="undefined"&&str.length>0){str=str.replace(/\\[[^\\]]+\\]/g,"")}return str};$.sq_stripChars=function(str){if(typeof str!=="undefined"&&str.length>0){str=str.replace(/[-.\/]+/g," ");var pattern=$.sq_regex("[^\\p{L}\\d\\s]");if(pattern){str=str.replace(pattern,"")}str=str.replace(/\s{2,}/g," ");str=str.trim()}return str};$.sq_clearDiacritics=function(str){if(typeof sqDiacritics!=="undefined"&&typeof str=="string"){return sqDiacritics.clear(str)}return str};$.sq_getCookie=function(name){var nameEQ=name+"=";var ca=document.cookie.split(";");for(var i=0;i<ca.length;i++){var c=ca[i];while(c.charAt(0)==" ")c=c.substring(1,c.length);if(c.indexOf(nameEQ)==0)return decodeURIComponent(c.substring(nameEQ.length,c.length))}return null};$.sq_setCookie=function(name,value){value=value.replace(new RegExp("\\\\","g"),"");document.cookie=name+"="+encodeURIComponent(value)+"; expires="+$.sq_config.cookie_expires+"; path=/"};$.sq_uriEncode=function(url){return url.replace(/'/g,"%27").replace(/\(/g,"%28").replace(/\)/g,"%29")};$.sq_getCache=function(name){if(typeof $.sq_config.sq_cache!=="undefined")if(typeof $.sq_config.sq_cache[name]!=="undefined")return $.sq_config.sq_cache[name];return""};$.sq_setCache=function(name,value){if(typeof name!=="undefined"&&typeof $.sq_config.sq_cache!=="undefined"){$.sq_config.sq_cache[name]=value}};$.sq_strEqual=function(a,b){return typeof a==="string"&&typeof b==="string"?a.localeCompare(b,undefined,{sensitivity:"accent"})===0:a===b};$.sq_isArray=function(input){return typeof input==="object"&&input instanceof Array};$.sq_regex=function(striptag){if(typeof XRegExp!=="undefined"){return XRegExp(striptag,"gi")}return false};$.fn.sq_loading=function(name){var $this=this;if(typeof name==="undefined"){$this.sq_classname="sq_minloading"}else{$this.sq_classname=name}clearTimeout($.sq_loadprocess);$this.addClass($this.sq_classname);$this.frame=function(){$this.html('<span class="sq_error_message">'+$.sq_config.__ajaxerror+"</span>");$this.addClass("sq_error");$this.sq_doneloading()};$.sq_loadprocess=setTimeout($this.frame,1e4);return $this};$.fn.sq_doneloading=function(name){var $this=this;if(typeof name==="undefined"){name="sq_minloading"}clearTimeout($.sq_loadprocess);$this.removeClass(name);$this.find(".sq_error_message").remove();return $this};$.sq_checkin=function(){return $.post($.sq_config.ajaxurl,{action:"sla_checkin",sq_nonce:$.sq_config.sq_nonce,output:"json"}).done(function(response){$.sq_fields.sq_box.show();$.sq_fields.sq_preloading.hide();$.sq_fields.sq_preloading_keyword.show();if(typeof response.error!=="undefined"){if(response.error==="invalid_token"){if($.isFunction($.sq_config.div.sq_floating)){$.sq_floating=$.sq_config.div.sq_floating([]);$.sq_floating.init()}var $message=$('<div class="sq_error_message" style="width: 100%;text-align: center;padding: 10px;"><a href="admin.php?page=sq_dashboard" style="color: #df3434;font-size: 13px;font-weight: 500;">'+$.sq_config.__noconnection+"</a></div>");var sq_header=$.sq_fields.sq_box.find(".sq_header");$.sq_fields.sq_box.html($message);$.sq_fields.sq_box.prepend(sq_header);$.sq_fields.sq_box.find(".sq_box_maximize").hide();$.sq_fields.sq_box.find(".sq_box_close").on("click",function(){$.sq_config.div.hide();$.sq_setCookie("sq_sla","off")});$.sq_config.div.show();setTimeout(function(){$.sq_config.div.hide()},5e3)}else if(response.error==="maintenance"){if($.isFunction($.sq_config.div.sq_floating)){$.sq_floating=$.sq_config.div.sq_floating([]);$.sq_floating.init()}var $message=$('<div class="sq_error_message" style="width: 100%;text-align: center;padding: 10px;font-size: 12px;">'+$.sq_config.__maintenance+"</div>");var sq_header=$.sq_fields.sq_box.find(".sq_header");$.sq_fields.sq_box.html($message);$.sq_fields.sq_box.prepend(sq_header);$.sq_fields.sq_box.find(".sq_box_maximize").hide();$.sq_fields.sq_box.find(".sq_box_close").on("click",function(){$.sq_config.div.hide();$.sq_setCookie("sq_sla","off")});$.sq_config.div.show();setTimeout(function(){$.sq_config.div.hide()},5e3)}}if(typeof response.data!=="undefined"){var triggerLoadInterval=setInterval(function(){if($.sq_triggerLoad("seo.loaded")){clearInterval(triggerLoadInterval)}},1e3)}}).fail(function(){$.sq_fields.sq_box.show();$.sq_fields.sq_preloading.hide();$.sq_fields.sq_errorloading.show()})};$.sq_triggerLoad=function(message){if(typeof $.sq_config.div==="undefined"){$.sq_initialize()}if(typeof $.sq_blockbriefcase!=="undefined"&&typeof $.sq_blockseo!=="undefined"&&typeof $.sq_blocksearch!=="undefined"){$.sq_blockbriefcase.trigger(message);$.sq_blockseo.trigger(message);$.sq_blocksearch.trigger(message);$.sq_config.div.trigger(message);return true}else{return false}};$.sq_savePost=function(){var $sq_seo=[];$.sq_config.div.find('input[name="sq_seo[]"]').each(function(){$sq_seo.push(this.value)});if($.sq_blockbriefcase){$.sq_blockbriefcase.trigger("briefcase.save")}$.post($.sq_config.ajaxurl,{action:"sq_ajax_save_post",sq_nonce:$.sq_config.sq_nonce,post_id:$.sq_config.postID,sq_keyword:$.sq_config.keyword,referer:"backend",sq_seo:$sq_seo})};$.sq_editor={getIframeEditor:function(element){var $this=$("#wpcontent");if(typeof element==="undefined"){element="#tinymce"}if($.sq_isGutenberg()){if($this.find("#editor").find("div.edit-post-visual-editor").length>0){return $this.find("#editor").find("div.edit-post-visual-editor")}if($this.find("#editor").find("div.edit-post-text-editor__body").length>0){return $this.find("#editor").find("div.edit-post-text-editor__body")}}if($this.find("#post").length>0&&$this.find("#post").find("iframe").length>0){if($this.find(".mce-container").find("iframe").contents().find(element+".has-focus").length>0){return $(".mce-container").find("iframe").contents().find(element+".has-focus")}if($this.find(".mce-container").find("iframe").contents().find(element).length>0){return $this.find(".mce-container").find("iframe").contents().find(element)}if($this.find("#content_ifr").contents().find(element).length>0){return $this.find("#content_ifr").contents().find(element)}if($this.find(".cke_contents").find("iframe").contents().find("body").length>0){return $this.find(".cke_contents").find("iframe").contents().find("body")}if($this.find("#cke_wysiwyg_frame").contents().find("body").length>0){return $this.find("#cke_wysiwyg_frame").contents().find("body")}}return false},getTinymceEditor:function(ed){var editor;if(typeof ed!=="undefined"&&typeof ed==="object"){editor=ed;if(typeof editor.activeEditor==="object")editor=editor.activeEditor}else{if(typeof tinyMCE==="object"){editor=tinyMCE;if(typeof tinyMCE.get("content")!=="undefined"){editor=tinyMCE.get("content")}else{if(typeof tinyMCE.activeEditor==="object"&&tinyMCE.activeEditor!==null){editor=tinyMCE.activeEditor}else{if(document.getElementById("content")!==null){editor=new tinymce.Editor("content");editor.contentCSS=["/wp-content/plugins/squirrly-seo/themes/default/css/sq_frontend.css"]}}}}}return editor},getBlockEditor:function(action){if($.sq_isGutenberg()){if(action==="select"){var ed=window.wp.data.select("core/editor")}else{var ed=window.wp.data.dispatch("core/editor")}return ed}return false},getFrontendEditor:function(action){if($.sq_isFrontend()){if(typeof window.sq_editor!=="undefined"){return window.sq_editor}}return false},createEditorButton:function(name){if($.sq_isFrontend()&&$("."+name).length==0){$("body").append('<button type="button" class="'+name+'"><i class="sq_logo" ></i></button>')}else if($.sq_isGutenberg()){if($(".edit-post-more-menu").length>0){$(".edit-post-more-menu").before('<button type="button" class="sq-position-static '+name+'"><i class="sq_logo" ></i></button>')}else if($(".interface-pinned-items").length>0){$(".interface-pinned-items").after('<button type="button" class="sq-ml-2 sq-position-static '+name+'"><i class="sq_logo" ></i></button>')}else if($(".edit-post-header__settings").length>0){$(".edit-post-header__settings").append('<button type="button" class="sq-position-static '+name+'"><i class="sq_logo" ></i></button>')}}else{$("body").append('<button type="button" class="'+name+'"><i class="sq_logo" ></i></button>')}},listenHtml:function(e){if(e.originalEvent.dataTransfer===null)return;var img=e.originalEvent.dataTransfer.getData("text");if($("#"+$(img).attr("id")).parent("li").attr("class")==="sq_search_img_li"){$.sq_fields.wp_content.val($.sq_fields.wp_content.val()+$.sq_blocksearch.packimg($(img).attr("id"),$("#"+$(img).attr("id")).parent("li").attr("src"),$("#"+$(img).attr("id")).parent("li")))}},listen:function(e){if($("#"+e.target.id).parent("li").attr("class")==="sq_search_img_li"){if($.sq_editor.lastimage!==$("#"+e.target.id).parent("li").attr("src")){$.sq_editor.insert($.sq_blocksearch.packimg(e.target.id,$("#"+e.target.id).parent("li").attr("src"),$("#"+e.target.id).parent("li")))}}$.sq_editor.lastimage=$("#"+e.target.id).parent("li").attr("src")},setContent:function(content,ed){if($.sq_config.editor_type==="tinymce"){var editor=$.sq_editor.getTinymceEditor(ed);if(typeof editor!=="undefined"){editor.setContent(content)}}},insert:function(content,ed){if($.sq_isDiviBuilder()||$.sq_isFrontend()){var input=document.createElement("textarea");document.body.prepend(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("We've copied the code and you can paste it in the Page Builder.")}catch(e){alert("You can copy the box and paste it in the Page Builder")}input.remove();if($(".edit-post-layout__content").length>0){$(".edit-post-layout__content").animate({scrollTop:$(".edit-post-layout__content").scrollTop()+$("#et_pb_layout").offset().top-50},"slow")}else{$("html,body").animate({scrollTop:$("#et_pb_layout").offset().top-50},"slow")}}else if($("#wpb_visual_composer:visible").length>0){var input=document.createElement("textarea");document.body.prepend(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("Visual Composer detected. We've copied the code and you can paste it in Visual Composer Editor.")}catch(e){alert("Visual Composer detected. You can copy the box and paste it in Visual Composer")}input.remove();if($(".edit-post-layout__content").length>0){$(".edit-post-layout__content").animate({scrollTop:$(".edit-post-layout__content").scrollTop()+$("#wpb_visual_composer").offset().top-50},"slow")}else{$("html,body").animate({scrollTop:$("#wpb_visual_composer").offset().top-50},"slow")}}else if($("#elementor-switch-mode-input").length>0&&$("#elementor-switch-mode-input").val()=="builder"){var input=document.createElement("textarea");document.body.appendChild(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("Elementor is detected. We've copied the code and you can paste it in Elementor Text Editor.")}catch(e){alert("Elementor detected. You can copy the box and paste it in Elementor Text Editor")}input.remove()}else if($("div.wp-editor-container").find("div.cs-editor-container.pro").length>0){var input=document.createElement("textarea");document.body.appendChild(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("Themeco PRO is detected. We've copied the code and you can paste it in Themeco PRO Text Editor.")}catch(e){alert("Themeco PRO detected. You can copy the box and paste it in Themeco PRO Text Editor")}input.remove()}else if($.sq_config.editor_type==="tinymce"){if(typeof tinyMCE==="object"){var editor=tinyMCE;if(typeof editor.activeEditor==="object"){editor=editor.activeEditor}}if(typeof editor!=="undefined"&&editor!==null){if(typeof editor.selection!=="undefined"){editor.selection.setContent(content)}else{editor.setContent(content)}$.sq_blockseo.callback()}}else{$.sq_fields.wp_content.val($.sq_fields.wp_content.val().substr(0,$.sq_fields.wp_content[0].selectionStart)+content+$.sq_fields.wp_content.val().substr($.sq_fields.wp_content[0].selectionEnd));$.sq_blockseo.callback()}}};$.sq_tinymce={callback:function(ed){if(ed.id!=="content")return false;var editor=$.sq_editor.getTinymceEditor(ed);if(typeof editor!=="undefined"&&typeof $.sq_blockseo==="object"){if($.sq_config.editor_type==="tinymce"){$.sq_blockseo.callback()}}},setup:function(ed){},addEvents:function(ed,dom){if(typeof $.sq_blockseo!=="undefined"&&typeof $.sq_editor==="object"&&!$.isDom($.sq_editor)){if($.sq_config.active_editor=$.sq_editor.getIframeEditor()){$.sq_blockseo.callback()}}}};$.fn.sq_main=function(){var $this=this;$this.load=function(){$.sq_setfields();$.sq_setParams();$.sq_initialized=true;$.sq_loadtabs();$.sq_highlight=function(element,text,params){var options=$.extend({element:"mark","acrossElements ":1,ignoreJoiners:1,diacritics:false,separateWordSearch:false,caseSensitive:false,accuracy:{value:"exactly",limiters:["`","~","!","@","#","$","%","^","&","*","(",")","-","_","=","+","{","}","[","]","\\","|",":",";","'",'"',",",".","<",">","/","?","“","”"]},ignorePunctuation:[" ",",","`","~","!","@","#","$","%","^","*","(",")","-","_","=","+","{","}","[","]","\\","|",":",";","'",'"',"<",">","/","?"],counter:1},params);if(typeof element!=="undefined"&&element.html()!==""&&$.isFunction(element.sq_unmark)){if(typeof options.range!=="undefined"){element.sq_unmark({done:function(){element.sq_markRanges(options.range,options)}})}else{element.sq_unmark({done:function(){element.sq_mark(text,options)}})}}};$.sq_removeHighlight=function(element){if(typeof element!=="undefined"&&$.isFunction(element.sq_unmark)&&!$.sq_isDiviBuilder()){element.sq_unmark()}};if($.isFunction($.sq_fields.sq_briefcase_list.sq_briefcase)){$.sq_blockbriefcase=$.sq_fields.sq_briefcase_list.sq_briefcase([])}if($.isFunction($.sq_config.div.sq_frontend)){$.sq_frontend=$.sq_config.div.sq_frontend([]);$.sq_frontend.init()}if($.sq_fields.div_blockseo.length>0&&$.isFunction($.sq_fields.div_blockseo.sq_blockseo)){$.sq_blockseo=$.sq_fields.div_blockseo.sq_blockseo([])}if($.sq_fields.div_blocksearch.length>0&&$.isFunction($.sq_fields.div_blocksearch.sq_blocksearch)){$.sq_blocksearch=$.sq_fields.div_blocksearch.sq_blocksearch([])}if($.isFunction($.sq_config.div.sq_floating)){$.sq_floating=$.sq_config.div.sq_floating([]);if(!$.sq_frontend){$.sq_floating.init()}}$.sq_checkin()};return $this};$.sq_loadtabs=function(){$.sq_fields.sq_blocktabs.find("div").on("click",function(){$.sq_fields.sq_selectit.trigger("click");$.sq_fields.sq_blocktabs.find("div").removeClass("sq_active");$(this).addClass("sq_active");$(".sq_block_steps").hide();$($(this).data("target")).show()});$.sq_fields.sq_blocksteps.find(".sq_nextstep").on("click",function(){$('.sq_block_tab[data-target="'+$(this).data("target")+'"]').trigger("click")})};$.sq_initialize=function(){$.sq_setConfig();if(typeof $.sq_config.div!=="undefined"&&!$.sq_initialized&&$.sq_config.div.length>0){$.sq_config.div.sq_main().load()}};$(document).ready(function(){$.sq_initialize()});window.onerror=function(){if(typeof $.sq_config.div==="undefined"){$.sq_initialize()}};$(document).ajaxSuccess(function(event){if(typeof $.sq_config.div==="undefined"){$.sq_initialize()}})})(jQuery);
view/assets/js/bulkseo.min.js CHANGED
@@ -1 +1 @@
1
- if(typeof SQ_DEBUG==="undefined")var SQ_DEBUG=false;(function($){"use strict";$.fn.sq_bulkSeo=function(){};var sq_Assistant=$.fn.sq_Assistant;$.fn.sq_Assistant=function(options){var $this=this;var $modal=$("#sq_assistant_modal");var settings=$.extend({category:"metas",post_hash:""},options);$this.listenTableBullets=function(){$this.find(".sq_show_snippet").off("click").on("click",function(){var $id=$(this).data("id");settings.category=$(this).data("category");if(!$this.find("#sq_edit_"+$id).length){$this.find("#sq_row_"+$id).after('<tr id="sq_edit_'+$id+'" class="sq_edit"><td colspan="5" class="p-0 m-0"></td></tr>');$this.find("#sq_edit_"+$id).find("td").html($this.find("#sq_blocksnippet_"+$id))}$this.find("#sq_blocksnippet_"+$id).show().sq_loadSnippet();$this.find("div.sq_assistant").find("ul").hide();$this.find("ul#sq_assistant_tasks_"+$(this).data("category")+"_"+$(this).data("id")).show(0,function(){$(this).fadeTo(0,.1).fadeTo("fast",1)})});$this.find(".sq_show_snippet").tooltip({placement:"left",trigger:"hover",html:true})};$this.listenSnippet=function(){var $snippet=$this.find(".sq_blocksnippet").each(function(){return $(this).off("sq_snippet_loaded sq_reloaded").on("sq_snippet_loaded sq_reloaded",function(){var $csnippet=$(this);$csnippet.find(".sq-tab-content").addClass("sq_minloading");return $.post(sqQuery.ajaxurl,{action:"sq_ajax_assistant_bulkseo",post_id:$csnippet.find("input[name=sq_post_id]").val(),term_id:$csnippet.find("input[name=sq_term_id]").val(),taxonomy:$csnippet.find("input[name=sq_taxonomy]").val(),post_type:$csnippet.find("input[name=sq_post_type]").val(),sq_nonce:sqQuery.nonce}).done(function(response){$csnippet.find(".sq-tab-content").removeClass("sq_minloading");if(typeof response.html!=="undefined"){if(response.html!==""&&response.html_dest){$this.find(".sq_show_snippet").tooltip("hide");$(response.html_dest).html(response.html);if(response.assistant!==""&&response.assistant_dest){var show_tasks_id=$this.find(".sq_assistant").find("ul:visible").attr("id");$(response.assistant_dest).html(response.assistant);if(show_tasks_id)$this.find("#"+show_tasks_id).show()}$("#sq_wrap").sq_Assistant({category:settings.category});var $tab=$csnippet.find(".sq_snippet_menu").find("#sq-nav-item_"+settings.category);$tab.addClass("active");$csnippet.find($tab.attr("href")).addClass("active")}}else if(typeof response.error!=="undefined"){$.sq_showMessage(response.error)}else{location.reload();SQ_DEBUG&&console.log("no data received")}}).fail(function(){location.reload();SQ_DEBUG&&console.log("no data received")},"json")})});$this.find(".sq-nav-item.sq-nav-link").on("click",function(){settings.category=$(this).data("category");settings.post_hash=$snippet.find("input[name=sq_hash]").val();if($("#sq_row_"+settings.post_hash).length>0){$this.find("div.sq_assistant").find("ul").hide();$this.find("ul#sq_assistant_tasks_"+settings.category+"_"+settings.post_hash).show()}})};$this.listenTableBullets();$this.listenSnippet();var args=Array.prototype.slice.call(arguments,0);return sq_Assistant.apply($this,args)};$(document).ready(function(){$("#sq_seosettings").sq_bulkSeo();if($.sq_getParam("sid")){$("#sq_wrap").find(".sq_show_snippet:first").trigger("click")}})})(jQuery);
1
+ if(typeof SQ_DEBUG==="undefined")var SQ_DEBUG=false;(function($){"use strict";$.fn.sq_bulkSeo=function(){};var sq_Assistant=$.fn.sq_Assistant;$.fn.sq_Assistant=function(options){var $this=this;var $modal=$("#sq_assistant_modal");var settings=$.extend({category:"metas",post_hash:""},options);$this.listenTableBullets=function(){$this.find(".sq_show_snippet").off("click").on("click",function(){var $id=$(this).data("id");settings.category=$(this).data("category");if(!$this.find("#sq_edit_"+$id).length){$this.find("#sq_row_"+$id).after('<tr id="sq_edit_'+$id+'" class="sq_edit"><td colspan="5" class="p-0 m-0"></td></tr>');$this.find("#sq_edit_"+$id).find("td").html($this.find("#sq_blocksnippet_"+$id))}$this.find("#sq_blocksnippet_"+$id).show().sq_loadSnippet();$this.find("div.sq_assistant").find("ul").hide();$this.find("ul#sq_assistant_tasks_"+$(this).data("category")+"_"+$(this).data("id")).show(0,function(){$(this).fadeTo(0,.1).fadeTo("fast",1)})});$this.find(".sq_show_snippet").tooltip({placement:"left",trigger:"hover",html:true})};$this.listenSnippet=function(){var $snippet=$this.find(".sq_blocksnippet").each(function(){return $(this).off("sq_snippet_loaded sq_reloaded").on("sq_snippet_loaded sq_reloaded",function(){var $csnippet=$(this);$csnippet.find(".sq-tab-content").addClass("sq_minloading");return $.post(sqQuery.ajaxurl,{action:"sq_ajax_assistant_bulkseo",post_id:$csnippet.find("input[name=sq_post_id]").val(),term_id:$csnippet.find("input[name=sq_term_id]").val(),taxonomy:$csnippet.find("input[name=sq_taxonomy]").val(),post_type:$csnippet.find("input[name=sq_post_type]").val(),sq_nonce:sqQuery.nonce}).done(function(response){$csnippet.find(".sq-tab-content").removeClass("sq_minloading");if(typeof response.html!=="undefined"){if(response.html!==""&&response.html_dest){$this.find(".sq_show_snippet").tooltip("hide");$(response.html_dest).html(response.html);if(response.assistant!==""&&response.assistant_dest){var show_tasks_id=$this.find(".sq_assistant").find("ul:visible").attr("id");$(response.assistant_dest).html(response.assistant);if(show_tasks_id)$this.find("#"+show_tasks_id).show()}$("#sq_wrap").sq_Assistant({category:settings.category});var $tab=$csnippet.find(".sq_snippet_menu").find("#sq-nav-item_"+settings.category);$tab.addClass("active");$csnippet.find($tab.attr("href")).addClass("active");$csnippet.find(".sq-nav-item.sq-nav-link").on("click",function(){settings.category=$(this).data("category");settings.post_hash=$csnippet.find("input[name=sq_hash]").val();if($("#sq_row_"+settings.post_hash).length>0){$this.find("div.sq_assistant").find("ul").hide();$this.find("ul#sq_assistant_tasks_"+settings.category+"_"+settings.post_hash).show()}})}}else if(typeof response.error!=="undefined"){$.sq_showMessage(response.error)}else{location.reload();SQ_DEBUG&&console.log("no data received")}}).fail(function(){location.reload();SQ_DEBUG&&console.log("no data received")},"json")})})};$this.listenTableBullets();$this.listenSnippet();var args=Array.prototype.slice.call(arguments,0);return sq_Assistant.apply($this,args)};$(document).ready(function(){$("#sq_seosettings").sq_bulkSeo();if($.sq_getParam("sid")){$("#sq_wrap").find(".sq_show_snippet:first").trigger("click")}})})(jQuery);