All in One SEO Pack - Version 4.1.4.3

Version Description

This update adds major improvements and bugfixes.

Download this release

Release Info

Developer arnaudbroes
Plugin Icon 128x128 All in One SEO Pack
Version 4.1.4.3
Comparing to
See all releases

Code changes from version 4.1.4.2 to 4.1.4.3

all_in_one_seo_pack.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: SEO for WordPress. Features like XML Sitemaps, SEO for custom post types, SEO for blogs, business sites, ecommerce sites, and much more. More than 80 million downloads since 2007.
6
  * Author: All in One SEO Team
7
  * Author URI: https://aioseo.com/
8
- * Version: 4.1.4.2
9
  * Text Domain: all-in-one-seo-pack
10
  * Domain Path: /i18n/
11
  *
@@ -84,4 +84,4 @@ if ( version_compare( PHP_VERSION, '5.5', '<' ) ) {
84
  // Define the class and the function.
85
  require_once( dirname( __FILE__ ) . '/app/AIOSEO.php' );
86
 
87
- aioseo();
5
  * Description: SEO for WordPress. Features like XML Sitemaps, SEO for custom post types, SEO for blogs, business sites, ecommerce sites, and much more. More than 80 million downloads since 2007.
6
  * Author: All in One SEO Team
7
  * Author URI: https://aioseo.com/
8
+ * Version: 4.1.4.3
9
  * Text Domain: all-in-one-seo-pack
10
  * Domain Path: /i18n/
11
  *
84
  // Define the class and the function.
85
  require_once( dirname( __FILE__ ) . '/app/AIOSEO.php' );
86
 
87
+ aioseo();
app/Common/Main/Updates.php CHANGED
@@ -67,7 +67,7 @@ class Updates {
67
  */
68
  public function runUpdates() {
69
  // The dynamic options have not yet fully loaded, so let's refresh here to force that to happen.
70
- aioseo()->dynamicOptions->refresh();
71
 
72
  $lastActiveVersion = aioseo()->internalOptions->internal->lastActiveVersion;
73
  if ( version_compare( $lastActiveVersion, '4.0.5', '<' ) ) {
@@ -105,7 +105,7 @@ class Updates {
105
  $this->accessControlNewCapabilities();
106
  }
107
 
108
- if ( version_compare( $lastActiveVersion, '4.1.4', '<' ) ) {
109
  $this->migrateDynamicSettings();
110
  }
111
 
@@ -548,38 +548,41 @@ class Updates {
548
  $options->searchAppearance->postTypes->$postTypeName->advanced->showMetaBox = $data['advanced']['showMetaBox'];
549
  $options->searchAppearance->postTypes->$postTypeName->advanced->bulkEditing = $data['advanced']['bulkEditing'];
550
  }
 
 
 
 
551
  }
552
  }
553
  }
554
 
555
  // Search appearance taxonomy data.
556
  if (
557
- ! empty( $rawOptions['searchAppearance']['dynamic']['taxonomy'] )
558
  ) {
559
- foreach ( $rawOptions['searchAppearance']['dynamic']['taxonomy'] as $taxonomyName => $data ) {
560
- if ( $options->searchAppearance->taxonomy->has( $taxonomyName ) ) {
561
- $options->searchAppearance->taxonomy->$taxonomyName->show = $data['show'];
562
- $options->searchAppearance->taxonomy->$taxonomyName->title = $data['title'];
563
- $options->searchAppearance->taxonomy->$taxonomyName->metaDescription = $data['metaDescription'];
564
 
565
  // Advanced settings.
566
  $advanced = ! empty( $data['advanced']['robotsMeta'] ) ? $data['advanced']['robotsMeta'] : null;
567
  if ( ! empty( $advanced ) ) {
568
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->robotsMeta->default = $data['advanced']['robotsMeta']['default'];
569
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->robotsMeta->noindex = $data['advanced']['robotsMeta']['noindex'];
570
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->robotsMeta->nofollow = $data['advanced']['robotsMeta']['nofollow'];
571
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->robotsMeta->noarchive = $data['advanced']['robotsMeta']['noarchive'];
572
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->robotsMeta->noimageindex = $data['advanced']['robotsMeta']['noimageindex'];
573
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->robotsMeta->notranslate = $data['advanced']['robotsMeta']['notranslate'];
574
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->robotsMeta->nosnippet = $data['advanced']['robotsMeta']['nosnippet'];
575
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->robotsMeta->noodp = $data['advanced']['robotsMeta']['noodp'];
576
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->robotsMeta->maxSnippet = $data['advanced']['robotsMeta']['maxSnippet'];
577
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->robotsMeta->maxVideoPreview = $data['advanced']['robotsMeta']['maxVideoPreview'];
578
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->robotsMeta->maxImagePreview = $data['advanced']['robotsMeta']['maxImagePreview'];
579
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->showDateInGooglePreview = $data['advanced']['showDateInGooglePreview'];
580
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->showPostThumbnailInSearch = $data['advanced']['showPostThumbnailInSearch'];
581
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->showMetaBox = $data['advanced']['showMetaBox'];
582
- $options->searchAppearance->taxonomy->$taxonomyName->advanced->bulkEditing = $data['advanced']['bulkEditing'];
583
  }
584
  }
585
  }
67
  */
68
  public function runUpdates() {
69
  // The dynamic options have not yet fully loaded, so let's refresh here to force that to happen.
70
+ aioseo()->dynamicOptions->refresh(); // TODO: Check if we still need this since it already runs on 999 in the main AIOSEO file.
71
 
72
  $lastActiveVersion = aioseo()->internalOptions->internal->lastActiveVersion;
73
  if ( version_compare( $lastActiveVersion, '4.0.5', '<' ) ) {
105
  $this->accessControlNewCapabilities();
106
  }
107
 
108
+ if ( version_compare( $lastActiveVersion, '4.1.4.3', '<' ) ) {
109
  $this->migrateDynamicSettings();
110
  }
111
 
548
  $options->searchAppearance->postTypes->$postTypeName->advanced->showMetaBox = $data['advanced']['showMetaBox'];
549
  $options->searchAppearance->postTypes->$postTypeName->advanced->bulkEditing = $data['advanced']['bulkEditing'];
550
  }
551
+
552
+ if ( 'attachment' === $postTypeName ) {
553
+ $options->searchAppearance->postTypes->$postTypeName->redirectAttachmentUrls = $data['redirectAttachmentUrls'];
554
+ }
555
  }
556
  }
557
  }
558
 
559
  // Search appearance taxonomy data.
560
  if (
561
+ ! empty( $rawOptions['searchAppearance']['dynamic']['taxonomies'] )
562
  ) {
563
+ foreach ( $rawOptions['searchAppearance']['dynamic']['taxonomies'] as $taxonomyName => $data ) {
564
+ if ( $options->searchAppearance->taxonomies->has( $taxonomyName ) ) {
565
+ $options->searchAppearance->taxonomies->$taxonomyName->show = $data['show'];
566
+ $options->searchAppearance->taxonomies->$taxonomyName->title = $data['title'];
567
+ $options->searchAppearance->taxonomies->$taxonomyName->metaDescription = $data['metaDescription'];
568
 
569
  // Advanced settings.
570
  $advanced = ! empty( $data['advanced']['robotsMeta'] ) ? $data['advanced']['robotsMeta'] : null;
571
  if ( ! empty( $advanced ) ) {
572
+ $options->searchAppearance->taxonomies->$taxonomyName->advanced->robotsMeta->default = $data['advanced']['robotsMeta']['default'];
573
+ $options->searchAppearance->taxonomies->$taxonomyName->advanced->robotsMeta->noindex = $data['advanced']['robotsMeta']['noindex'];
574
+ $options->searchAppearance->taxonomies->$taxonomyName->advanced->robotsMeta->nofollow = $data['advanced']['robotsMeta']['nofollow'];
575
+ $options->searchAppearance->taxonomies->$taxonomyName->advanced->robotsMeta->noarchive = $data['advanced']['robotsMeta']['noarchive'];
576
+ $options->searchAppearance->taxonomies->$taxonomyName->advanced->robotsMeta->noimageindex = $data['advanced']['robotsMeta']['noimageindex'];
577
+ $options->searchAppearance->taxonomies->$taxonomyName->advanced->robotsMeta->notranslate = $data['advanced']['robotsMeta']['notranslate'];
578
+ $options->searchAppearance->taxonomies->$taxonomyName->advanced->robotsMeta->nosnippet = $data['advanced']['robotsMeta']['nosnippet'];
579
+ $options->searchAppearance->taxonomies->$taxonomyName->advanced->robotsMeta->noodp = $data['advanced']['robotsMeta']['noodp'];
580
+ $options->searchAppearance->taxonomies->$taxonomyName->advanced->robotsMeta->maxSnippet = $data['advanced']['robotsMeta']['maxSnippet'];
581
+ $options->searchAppearance->taxonomies->$taxonomyName->advanced->robotsMeta->maxVideoPreview = $data['advanced']['robotsMeta']['maxVideoPreview'];
582
+ $options->searchAppearance->taxonomies->$taxonomyName->advanced->robotsMeta->maxImagePreview = $data['advanced']['robotsMeta']['maxImagePreview'];
583
+ $options->searchAppearance->taxonomies->$taxonomyName->advanced->showDateInGooglePreview = $data['advanced']['showDateInGooglePreview'];
584
+ $options->searchAppearance->taxonomies->$taxonomyName->advanced->showPostThumbnailInSearch = $data['advanced']['showPostThumbnailInSearch'];
585
+ $options->searchAppearance->taxonomies->$taxonomyName->advanced->showMetaBox = $data['advanced']['showMetaBox'];
 
586
  }
587
  }
588
  }
app/Common/Options/DynamicBackup.php CHANGED
@@ -87,8 +87,6 @@ class DynamicBackup {
87
  return;
88
  }
89
 
90
- aioseo()->dynamicOptions->refresh();
91
-
92
  $this->backup = $backup;
93
  $this->options = aioseo()->dynamicOptions->getDefaults();
94
 
87
  return;
88
  }
89
 
 
 
90
  $this->backup = $backup;
91
  $this->options = aioseo()->dynamicOptions->getDefaults();
92
 
dist/Lite/assets/css/aioseo-admin-bar.css CHANGED
@@ -1,3 +1,3 @@
1
- /*! ! built on Thursday, September 9th 2021, 7:47:13 pm */
2
  #wpadminbar #wp-admin-bar-aioseo-main .aioseo-logo.svg{float:left;width:26px;height:30px;background-repeat:no-repeat;background-position:0 6px;background-size:20px;background-image:url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iI2ZmZiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0iYWlvc2VvLWdlYXIiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOS45ODU0MiAxOS45NzA4QzE1LjUwMDIgMTkuOTcwOCAxOS45NzA4IDE1LjUwMDIgMTkuOTcwOCA5Ljk4NTQyQzE5Ljk3MDggNC40NzA2MyAxNS41MDAyIDAgOS45ODU0MiAwQzQuNDcwNjMgMCAwIDQuNDcwNjMgMCA5Ljk4NTQyQzAgMTUuNTAwMiA0LjQ3MDYzIDE5Ljk3MDggOS45ODU0MiAxOS45NzA4Wk04LjM5NTQxIDMuNjU0NjRDOC4yNjAxNiAzLjQ0ODUgOC4wMDk2IDMuMzUyMTEgNy43Nzk4NSAzLjQzMzI3QzcuNTE4MTYgMy41MjU3MiA3LjI2MjE4IDMuNjM0NDUgNy4wMTM0OSAzLjc1ODhDNi43OTUxOSAzLjg2Nzk2IDYuNjg1NjYgNC4xMTczMSA2LjczMzcyIDQuMzYwNDlMNi45MDQ5MyA1LjIyNjk0QzYuOTQ5IDUuNDQ5OTYgNi44NTggNS42NzYzIDYuNjg1MjIgNS44MjAwOUM2LjQxMjE2IDYuMDQ3MzQgNi4xNjAwNyA2LjMwNDI2IDUuOTM0MjEgNi41ODg2NEM1Ljc5MzgzIDYuNzY1MzkgNS41NzIzMyA2Ljg1OTA3IDUuMzUzNjEgNi44MTQ4OUw0LjUwNDI0IDYuNjQzM0M0LjI2NTY0IDYuNTk1MSA0LjAyMTU3IDYuNzA3ODggMy45MTU0NCA2LjkzMTIxQzMuODU1NDkgNy4wNTczOCAzLjc5ODg5IDcuMTg2MiAzLjc0NTgzIDcuMzE3NThDMy42OTI3NiA3LjQ0ODk2IDMuNjQzOTcgNy41ODEwNSAzLjU5OTM4IDcuNzEzNjlDMy41MjA0OCA3Ljk0ODQ3IDMuNjE1NzkgOC4yMDM5OCAzLjgxODM5IDguMzQxMzNMNC41Mzk1OCA4LjgzMDI3QzQuNzI1MjkgOC45NTYxNyA0LjgxNzc4IDkuMTgxOSA0Ljc5NTM0IDkuNDA4MjZDNC43NTkyNSA5Ljc3MjQ0IDQuNzYwNzIgMTAuMTM2IDQuNzk3NTYgMTAuNDkzNkM0LjgyMDg3IDEwLjcxOTggNC43MjkxNSAxMC45NDU5IDQuNTQzODggMTEuMDcyNEwzLjgyNDA4IDExLjU2NDJDMy42MjIwNSAxMS43MDIyIDMuNTI3NTkgMTEuOTU3OSAzLjYwNzEzIDEyLjE5MjNDMy42OTc3NCAxMi40NTkzIDMuODA0MyAxMi43MjA1IDMuOTI2MTUgMTIuOTc0M0M0LjAzMzEzIDEzLjE5NzEgNC4yNzc0OSAxMy4zMDg4IDQuNTE1ODEgMTMuMjU5OEw1LjM2NDk1IDEzLjA4NTFDNS41ODM1IDEzLjA0MDEgNS44MDUzMyAxMy4xMzMgNS45NDYyMyAxMy4zMDkzQzYuMTY4OTMgMTMuNTg3OSA2LjQyMDcxIDEzLjg0NTEgNi42OTk0IDE0LjA3NTZDNi44NzI2MSAxNC4yMTg4IDYuOTY0NDIgMTQuNDQ0OCA2LjkyMTEyIDE0LjY2OEw2Ljc1Mjk2IDE1LjUzNDhDNi43MDU3MiAxNS43NzgyIDYuODE2MjUgMTYuMDI3MyA3LjAzNTExIDE2LjEzNTZDNy4xNTg3NiAxNi4xOTY3IDcuMjg1IDE2LjI1NDUgNy40MTM3NSAxNi4zMDg2QzcuNTQyNTEgMTYuMzYyOCA3LjY3MTk2IDE2LjQxMjYgNy44MDE5NSAxNi40NTgxQzguMTgyMjQgMTYuNTkxMiA4LjcxNDQ5IDE2LjExNDcgOS4xMDggMTUuNzYyNUM5LjMwMjA1IDE1LjU4ODggOS40MjE3NCAxNS4zNDMgOS40MjMwMSAxNS4wNzk4QzkuNDIzMDEgMTUuMDc4NCA5LjQyMzAyIDE1LjA3NyA5LjQyMzAyIDE1LjA3NTZMOS40MjMwMSAxMy42MjYzQzkuNDIzMDEgMTMuNjEwOSA5LjQyMzYgMTMuNTk1NyA5LjQyNDc2IDEzLjU4MDZDOC4yNjI0OCAxMy4yOTcxIDcuMzk4MzggMTIuMjMwMSA3LjM5ODM4IDEwLjk1NzJWOS40MTgyM0M3LjM5ODM4IDkuMzAxMjUgNy40OTEzMSA5LjIwNjQyIDcuNjA1OTYgOS4yMDY0Mkg4LjMyNTg0VjcuNjkyMkM4LjMyNTg0IDcuNDgzMTIgOC40OTE5MyA3LjMxMzY0IDguNjk2ODMgNy4zMTM2NEM4LjkwMTcxIDcuMzEzNjQgOS4wNjc4MSA3LjQ4MzEyIDkuMDY3ODEgNy42OTIyVjkuMjA2NDJIMTEuMDE1NVY3LjY5MjJDMTEuMDE1NSA3LjQ4MzEyIDExLjE4MTYgNy4zMTM2NCAxMS4zODY1IDcuMzEzNjRDMTEuNTkxNCA3LjMxMzY0IDExLjc1NzUgNy40ODMxMiAxMS43NTc1IDcuNjkyMlY5LjIwNjQySDEyLjQ3NzNDMTIuNTkyIDkuMjA2NDIgMTIuNjg0OSA5LjMwMTI1IDEyLjY4NDkgOS40MTgyM1YxMC45NTcyQzEyLjY4NDkgMTIuMjcwNCAxMS43NjUzIDEzLjM2NDMgMTAuNTQ3NCAxMy42MDUxQzEwLjU0NzcgMTMuNjEyMSAxMC41NDc4IDEzLjYxOTIgMTAuNTQ3OCAxMy42MjYzTDEwLjU0NzggMTUuMDY5NEMxMC41NDc4IDE1LjMzNzcgMTAuNjcxMSAxNS41ODc5IDEwLjg3MSAxNS43NjIyQzExLjI3MTUgMTYuMTExNSAxMS44MTI5IDE2LjU4MzcgMTIuMTkxIDE2LjQ1MDJDMTIuNDUyNyAxNi4zNTc3IDEyLjcwODYgMTYuMjQ5IDEyLjk1NzMgMTYuMTI0NkMxMy4xNzU2IDE2LjAxNTUgMTMuMjg1MiAxNS43NjYxIDEzLjIzNzEgMTUuNTIyOUwxMy4wNjU5IDE0LjY1NjVDMTMuMDIxOCAxNC40MzM0IDEzLjExMjggMTQuMjA3MSAxMy4yODU2IDE0LjA2MzNDMTMuNTU4NyAxMy44MzYxIDEzLjgxMDcgMTMuNTc5MiAxNC4wMzY2IDEzLjI5NDhDMTQuMTc3IDEzLjExOCAxNC4zOTg1IDEzLjAyNDQgMTQuNjE3MiAxMy4wNjg1TDE1LjQ2NjYgMTMuMjQwMUMxNS43MDUyIDEzLjI4ODMgMTUuOTQ5MyAxMy4xNzU2IDE2LjA1NTQgMTIuOTUyMkMxNi4xMTUzIDEyLjgyNjEgMTYuMTcxOSAxMi42OTcyIDE2LjIyNSAxMi41NjU5QzE2LjI3ODEgMTIuNDM0NSAxNi4zMjY5IDEyLjMwMjQgMTYuMzcxNCAxMi4xNjk4QzE2LjQ1MDMgMTEuOTM1IDE2LjM1NSAxMS42Nzk1IDE2LjE1MjQgMTEuNTQyMUwxNS40MzEyIDExLjA1MzJDMTUuMjQ1NSAxMC45MjczIDE1LjE1MyAxMC43MDE1IDE1LjE3NTUgMTAuNDc1MkMxNS4yMTE2IDEwLjExMSAxNS4yMTAxIDkuNzQ3NDQgMTUuMTczMyA5LjM4OTg2QzE1LjE0OTkgOS4xNjM2MSAxNS4yNDE3IDguOTM3NTcgMTUuNDI2OSA4LjgxMUwxNi4xNDY3IDguMzE5MjdDMTYuMzQ4OCA4LjE4MTI2IDE2LjQ0MzIgNy45MjU1OCAxNi4zNjM3IDcuNjkxMTVDMTYuMjczMSA3LjQyNDExIDE2LjE2NjUgNy4xNjI5MiAxNi4wNDQ3IDYuOTA5MTVDMTUuOTM3NyA2LjY4NjM4IDE1LjY5MzMgNi41NzQ2MiAxNS40NTUgNi42MjM2NkwxNC42MDU5IDYuNzk4MzdDMTQuMzg3MyA2Ljg0MzM0IDE0LjE2NTUgNi43NTA0OCAxNC4wMjQ2IDYuNTc0MThDMTMuODAxOSA2LjI5NTU0IDEzLjU1MDEgNi4wMzgzMiAxMy4yNzE0IDUuODA3ODRDMTMuMDk4MiA1LjY2NDYgMTMuMDA2NCA1LjQzODU4IDEzLjA0OTcgNS4yMTU0TDEzLjIxNzkgNC4zNDg2OEMxMy4yNjUxIDQuMTA1MjEgMTMuMTU0NiAzLjg1NjE2IDEyLjkzNTcgMy43NDc4N0MxMi44MTIxIDMuNjg2NjkgMTIuNjg1OCAzLjYyODk1IDEyLjU1NzEgMy41NzQ4QzEyLjQyODMgMy41MjA2NSAxMi4yOTg5IDMuNDcwODYgMTIuMTY4OSAzLjQyNTM3QzExLjkzODggMy4zNDQ4NSAxMS42ODg0IDMuNDQyMTEgMTEuNTUzOCAzLjY0ODg0TDExLjA3NDYgNC4zODQ3NUMxMC45NTEzIDQuNTc0MjUgMTAuNzMgNC42Njg2MiAxMC41MDgyIDQuNjQ1NzNDMTAuMTUxMyA0LjYwODkgOS43OTUwMiA0LjYxMDM5IDkuNDQ0NTkgNC42NDc5OUM5LjIyMjg2IDQuNjcxNzcgOS4wMDEzNCA0LjU3ODE4IDguODc3MzEgNC4zODkxM0w4LjM5NTQxIDMuNjU0NjRaIiBmaWxsPSIjZmZmIiAvPjwvc3ZnPg==") !important}#wpadminbar #wp-admin-bar-aioseo-main.new-notifications>.ab-item{background:#2c3338;color:#72aee6}#wpadminbar #wp-admin-bar-aioseo-pro-upgrade a{background-color:#1DA867;padding-bottom:5px}#wpadminbar #wp-admin-bar-aioseo-pro-upgrade a span{font-weight:600}#wpadminbar #wp-admin-bar-aioseo-pro-license a{background-color:#DF2A4A;padding-bottom:5px}#wpadminbar #wp-admin-bar-aioseo-pro-license a span{font-weight:600}#wpadminbar .aioseo-menu-notification-counter{display:inline-flex;vertical-align:top;box-sizing:border-box;margin:7px 0 0 5px;padding:0;min-width:18px;height:18px;border-radius:9px;background-color:#ca4a1f;color:#fff;font-size:11px;line-height:1.6;text-align:center;justify-content:center}#wpadminbar .aioseo-menu-notification-counter span{line-height:1;font-size:11px}#wpadminbar .aioseo-menu-notification-indicator{float:right;margin:10px 0 0;width:8px;height:8px;border-radius:50%;background-color:#ca4a1f;line-height:1.6;animation:aioseo-menu-notification-indicator-pulse 1.5s infinite}#toplevel_page_aioseo .aioseo-menu-notification-indicator{float:right;margin:6px 0 0;width:8px;height:8px;border-radius:50%;background-color:#ca4a1f;line-height:1.6;animation:aioseo-menu-notification-indicator-pulse 1.5s infinite}@keyframes aioseo-menu-notification-indicator-pulse{0%{box-shadow:0 0 0 0px rgba(202,74,31,0.5)}100%{box-shadow:0 0 0 10px rgba(202,74,31,0)}}@media screen and (max-width: 782px){#wpadminbar #wp-admin-bar-aioseo-main{display:block;position:static}#wpadminbar #wp-admin-bar-aioseo-main .ab-item .text{display:none}#wpadminbar #wp-admin-bar-aioseo-main .aioseo-logo.svg{width:52px;height:46px;background-position:50% 8px;background-size:30px}}
3
 
1
+ /*! ! built on Tuesday, September 14th 2021, 11:55:41 am */
2
  #wpadminbar #wp-admin-bar-aioseo-main .aioseo-logo.svg{float:left;width:26px;height:30px;background-repeat:no-repeat;background-position:0 6px;background-size:20px;background-image:url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iI2ZmZiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0iYWlvc2VvLWdlYXIiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOS45ODU0MiAxOS45NzA4QzE1LjUwMDIgMTkuOTcwOCAxOS45NzA4IDE1LjUwMDIgMTkuOTcwOCA5Ljk4NTQyQzE5Ljk3MDggNC40NzA2MyAxNS41MDAyIDAgOS45ODU0MiAwQzQuNDcwNjMgMCAwIDQuNDcwNjMgMCA5Ljk4NTQyQzAgMTUuNTAwMiA0LjQ3MDYzIDE5Ljk3MDggOS45ODU0MiAxOS45NzA4Wk04LjM5NTQxIDMuNjU0NjRDOC4yNjAxNiAzLjQ0ODUgOC4wMDk2IDMuMzUyMTEgNy43Nzk4NSAzLjQzMzI3QzcuNTE4MTYgMy41MjU3MiA3LjI2MjE4IDMuNjM0NDUgNy4wMTM0OSAzLjc1ODhDNi43OTUxOSAzLjg2Nzk2IDYuNjg1NjYgNC4xMTczMSA2LjczMzcyIDQuMzYwNDlMNi45MDQ5MyA1LjIyNjk0QzYuOTQ5IDUuNDQ5OTYgNi44NTggNS42NzYzIDYuNjg1MjIgNS44MjAwOUM2LjQxMjE2IDYuMDQ3MzQgNi4xNjAwNyA2LjMwNDI2IDUuOTM0MjEgNi41ODg2NEM1Ljc5MzgzIDYuNzY1MzkgNS41NzIzMyA2Ljg1OTA3IDUuMzUzNjEgNi44MTQ4OUw0LjUwNDI0IDYuNjQzM0M0LjI2NTY0IDYuNTk1MSA0LjAyMTU3IDYuNzA3ODggMy45MTU0NCA2LjkzMTIxQzMuODU1NDkgNy4wNTczOCAzLjc5ODg5IDcuMTg2MiAzLjc0NTgzIDcuMzE3NThDMy42OTI3NiA3LjQ0ODk2IDMuNjQzOTcgNy41ODEwNSAzLjU5OTM4IDcuNzEzNjlDMy41MjA0OCA3Ljk0ODQ3IDMuNjE1NzkgOC4yMDM5OCAzLjgxODM5IDguMzQxMzNMNC41Mzk1OCA4LjgzMDI3QzQuNzI1MjkgOC45NTYxNyA0LjgxNzc4IDkuMTgxOSA0Ljc5NTM0IDkuNDA4MjZDNC43NTkyNSA5Ljc3MjQ0IDQuNzYwNzIgMTAuMTM2IDQuNzk3NTYgMTAuNDkzNkM0LjgyMDg3IDEwLjcxOTggNC43MjkxNSAxMC45NDU5IDQuNTQzODggMTEuMDcyNEwzLjgyNDA4IDExLjU2NDJDMy42MjIwNSAxMS43MDIyIDMuNTI3NTkgMTEuOTU3OSAzLjYwNzEzIDEyLjE5MjNDMy42OTc3NCAxMi40NTkzIDMuODA0MyAxMi43MjA1IDMuOTI2MTUgMTIuOTc0M0M0LjAzMzEzIDEzLjE5NzEgNC4yNzc0OSAxMy4zMDg4IDQuNTE1ODEgMTMuMjU5OEw1LjM2NDk1IDEzLjA4NTFDNS41ODM1IDEzLjA0MDEgNS44MDUzMyAxMy4xMzMgNS45NDYyMyAxMy4zMDkzQzYuMTY4OTMgMTMuNTg3OSA2LjQyMDcxIDEzLjg0NTEgNi42OTk0IDE0LjA3NTZDNi44NzI2MSAxNC4yMTg4IDYuOTY0NDIgMTQuNDQ0OCA2LjkyMTEyIDE0LjY2OEw2Ljc1Mjk2IDE1LjUzNDhDNi43MDU3MiAxNS43NzgyIDYuODE2MjUgMTYuMDI3MyA3LjAzNTExIDE2LjEzNTZDNy4xNTg3NiAxNi4xOTY3IDcuMjg1IDE2LjI1NDUgNy40MTM3NSAxNi4zMDg2QzcuNTQyNTEgMTYuMzYyOCA3LjY3MTk2IDE2LjQxMjYgNy44MDE5NSAxNi40NTgxQzguMTgyMjQgMTYuNTkxMiA4LjcxNDQ5IDE2LjExNDcgOS4xMDggMTUuNzYyNUM5LjMwMjA1IDE1LjU4ODggOS40MjE3NCAxNS4zNDMgOS40MjMwMSAxNS4wNzk4QzkuNDIzMDEgMTUuMDc4NCA5LjQyMzAyIDE1LjA3NyA5LjQyMzAyIDE1LjA3NTZMOS40MjMwMSAxMy42MjYzQzkuNDIzMDEgMTMuNjEwOSA5LjQyMzYgMTMuNTk1NyA5LjQyNDc2IDEzLjU4MDZDOC4yNjI0OCAxMy4yOTcxIDcuMzk4MzggMTIuMjMwMSA3LjM5ODM4IDEwLjk1NzJWOS40MTgyM0M3LjM5ODM4IDkuMzAxMjUgNy40OTEzMSA5LjIwNjQyIDcuNjA1OTYgOS4yMDY0Mkg4LjMyNTg0VjcuNjkyMkM4LjMyNTg0IDcuNDgzMTIgOC40OTE5MyA3LjMxMzY0IDguNjk2ODMgNy4zMTM2NEM4LjkwMTcxIDcuMzEzNjQgOS4wNjc4MSA3LjQ4MzEyIDkuMDY3ODEgNy42OTIyVjkuMjA2NDJIMTEuMDE1NVY3LjY5MjJDMTEuMDE1NSA3LjQ4MzEyIDExLjE4MTYgNy4zMTM2NCAxMS4zODY1IDcuMzEzNjRDMTEuNTkxNCA3LjMxMzY0IDExLjc1NzUgNy40ODMxMiAxMS43NTc1IDcuNjkyMlY5LjIwNjQySDEyLjQ3NzNDMTIuNTkyIDkuMjA2NDIgMTIuNjg0OSA5LjMwMTI1IDEyLjY4NDkgOS40MTgyM1YxMC45NTcyQzEyLjY4NDkgMTIuMjcwNCAxMS43NjUzIDEzLjM2NDMgMTAuNTQ3NCAxMy42MDUxQzEwLjU0NzcgMTMuNjEyMSAxMC41NDc4IDEzLjYxOTIgMTAuNTQ3OCAxMy42MjYzTDEwLjU0NzggMTUuMDY5NEMxMC41NDc4IDE1LjMzNzcgMTAuNjcxMSAxNS41ODc5IDEwLjg3MSAxNS43NjIyQzExLjI3MTUgMTYuMTExNSAxMS44MTI5IDE2LjU4MzcgMTIuMTkxIDE2LjQ1MDJDMTIuNDUyNyAxNi4zNTc3IDEyLjcwODYgMTYuMjQ5IDEyLjk1NzMgMTYuMTI0NkMxMy4xNzU2IDE2LjAxNTUgMTMuMjg1MiAxNS43NjYxIDEzLjIzNzEgMTUuNTIyOUwxMy4wNjU5IDE0LjY1NjVDMTMuMDIxOCAxNC40MzM0IDEzLjExMjggMTQuMjA3MSAxMy4yODU2IDE0LjA2MzNDMTMuNTU4NyAxMy44MzYxIDEzLjgxMDcgMTMuNTc5MiAxNC4wMzY2IDEzLjI5NDhDMTQuMTc3IDEzLjExOCAxNC4zOTg1IDEzLjAyNDQgMTQuNjE3MiAxMy4wNjg1TDE1LjQ2NjYgMTMuMjQwMUMxNS43MDUyIDEzLjI4ODMgMTUuOTQ5MyAxMy4xNzU2IDE2LjA1NTQgMTIuOTUyMkMxNi4xMTUzIDEyLjgyNjEgMTYuMTcxOSAxMi42OTcyIDE2LjIyNSAxMi41NjU5QzE2LjI3ODEgMTIuNDM0NSAxNi4zMjY5IDEyLjMwMjQgMTYuMzcxNCAxMi4xNjk4QzE2LjQ1MDMgMTEuOTM1IDE2LjM1NSAxMS42Nzk1IDE2LjE1MjQgMTEuNTQyMUwxNS40MzEyIDExLjA1MzJDMTUuMjQ1NSAxMC45MjczIDE1LjE1MyAxMC43MDE1IDE1LjE3NTUgMTAuNDc1MkMxNS4yMTE2IDEwLjExMSAxNS4yMTAxIDkuNzQ3NDQgMTUuMTczMyA5LjM4OTg2QzE1LjE0OTkgOS4xNjM2MSAxNS4yNDE3IDguOTM3NTcgMTUuNDI2OSA4LjgxMUwxNi4xNDY3IDguMzE5MjdDMTYuMzQ4OCA4LjE4MTI2IDE2LjQ0MzIgNy45MjU1OCAxNi4zNjM3IDcuNjkxMTVDMTYuMjczMSA3LjQyNDExIDE2LjE2NjUgNy4xNjI5MiAxNi4wNDQ3IDYuOTA5MTVDMTUuOTM3NyA2LjY4NjM4IDE1LjY5MzMgNi41NzQ2MiAxNS40NTUgNi42MjM2NkwxNC42MDU5IDYuNzk4MzdDMTQuMzg3MyA2Ljg0MzM0IDE0LjE2NTUgNi43NTA0OCAxNC4wMjQ2IDYuNTc0MThDMTMuODAxOSA2LjI5NTU0IDEzLjU1MDEgNi4wMzgzMiAxMy4yNzE0IDUuODA3ODRDMTMuMDk4MiA1LjY2NDYgMTMuMDA2NCA1LjQzODU4IDEzLjA0OTcgNS4yMTU0TDEzLjIxNzkgNC4zNDg2OEMxMy4yNjUxIDQuMTA1MjEgMTMuMTU0NiAzLjg1NjE2IDEyLjkzNTcgMy43NDc4N0MxMi44MTIxIDMuNjg2NjkgMTIuNjg1OCAzLjYyODk1IDEyLjU1NzEgMy41NzQ4QzEyLjQyODMgMy41MjA2NSAxMi4yOTg5IDMuNDcwODYgMTIuMTY4OSAzLjQyNTM3QzExLjkzODggMy4zNDQ4NSAxMS42ODg0IDMuNDQyMTEgMTEuNTUzOCAzLjY0ODg0TDExLjA3NDYgNC4zODQ3NUMxMC45NTEzIDQuNTc0MjUgMTAuNzMgNC42Njg2MiAxMC41MDgyIDQuNjQ1NzNDMTAuMTUxMyA0LjYwODkgOS43OTUwMiA0LjYxMDM5IDkuNDQ0NTkgNC42NDc5OUM5LjIyMjg2IDQuNjcxNzcgOS4wMDEzNCA0LjU3ODE4IDguODc3MzEgNC4zODkxM0w4LjM5NTQxIDMuNjU0NjRaIiBmaWxsPSIjZmZmIiAvPjwvc3ZnPg==") !important}#wpadminbar #wp-admin-bar-aioseo-main.new-notifications>.ab-item{background:#2c3338;color:#72aee6}#wpadminbar #wp-admin-bar-aioseo-pro-upgrade a{background-color:#1DA867;padding-bottom:5px}#wpadminbar #wp-admin-bar-aioseo-pro-upgrade a span{font-weight:600}#wpadminbar #wp-admin-bar-aioseo-pro-license a{background-color:#DF2A4A;padding-bottom:5px}#wpadminbar #wp-admin-bar-aioseo-pro-license a span{font-weight:600}#wpadminbar .aioseo-menu-notification-counter{display:inline-flex;vertical-align:top;box-sizing:border-box;margin:7px 0 0 5px;padding:0;min-width:18px;height:18px;border-radius:9px;background-color:#ca4a1f;color:#fff;font-size:11px;line-height:1.6;text-align:center;justify-content:center}#wpadminbar .aioseo-menu-notification-counter span{line-height:1;font-size:11px}#wpadminbar .aioseo-menu-notification-indicator{float:right;margin:10px 0 0;width:8px;height:8px;border-radius:50%;background-color:#ca4a1f;line-height:1.6;animation:aioseo-menu-notification-indicator-pulse 1.5s infinite}#toplevel_page_aioseo .aioseo-menu-notification-indicator{float:right;margin:6px 0 0;width:8px;height:8px;border-radius:50%;background-color:#ca4a1f;line-height:1.6;animation:aioseo-menu-notification-indicator-pulse 1.5s infinite}@keyframes aioseo-menu-notification-indicator-pulse{0%{box-shadow:0 0 0 0px rgba(202,74,31,0.5)}100%{box-shadow:0 0 0 10px rgba(202,74,31,0)}}@media screen and (max-width: 782px){#wpadminbar #wp-admin-bar-aioseo-main{display:block;position:static}#wpadminbar #wp-admin-bar-aioseo-main .ab-item .text{display:none}#wpadminbar #wp-admin-bar-aioseo-main .aioseo-logo.svg{width:52px;height:46px;background-position:50% 8px;background-size:30px}}
3
 
dist/Lite/assets/css/aioseo-admin-bar.css.gz CHANGED
Binary file
dist/Lite/assets/css/headline-analyzer.css CHANGED
@@ -1,3 +1,3 @@
1
- /*! ! built on Thursday, September 9th 2021, 7:47:13 pm */
2
  .aioseo-inline-buttons{display:grid;grid-template-columns:repeat(2, 1fr)}.aioseo-switcher-button{border:0;border-radius:0;font-size:14px;font-weight:normal;color:#434960;padding:16px 10px;box-shadow:0px 2px 0px #e8e8eb;cursor:pointer;text-align:left;white-space:nowrap;position:relative;transition:0.4s cubic-bezier(0.4, 0, 0.2, 1);background:#fafafa}.aioseo-switcher-button:before{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;opacity:0;transition:0.4s cubic-bezier(0.4, 0, 0.2, 1);will-change:background-color,opacity;content:" "}.aioseo-switcher-button.active:before,.aioseo-switcher-button:hover:before,.aioseo-switcher-button:active:before{background-color:currentColor;opacity:.12}.aioseo-switcher-button.active{font-weight:700;color:#141B38;box-shadow:0px 2px 0px #005AE0}.aioseo-headline-analyzer-wrapper{position:relative}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:200px;margin:0 auto;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-total-out-of-score{font-size:18px;color:#8c8f9a;font-weight:600;z-index:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened svg.components-panel__arrow{transform:rotate(0deg)}.aioseo-headline-analyzer-wrapper .components-panel__body svg.components-panel__arrow{transform:rotate(-90deg);top:50%;margin-top:-12px;transition:.3s}.aioseo-headline-analyzer-wrapper p{font-size:13px;color:#434960;margin-bottom:16px}.aioseo-headline-analyzer-wrapper p>strong{font-size:13px;font-weight:700}.aioseo-headline-analyzer-wrapper .green{color:#00aa63}.aioseo-headline-analyzer-wrapper .orange{color:#f18200}.aioseo-headline-analyzer-wrapper .red{color:#df2a4a}.aioseo-headline-analyzer-wrapper .green-bg{background:#00aa63}.aioseo-headline-analyzer-wrapper .orange-bg{background:#f18200}.aioseo-headline-analyzer-wrapper .red-bg{background:#df2a4a}.aioseo-headline-analyzer-wrapper .components-panel__body-toggle.components-button{font-weight:700;color:#141B38;padding:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-empty-title-warning{text-align:center;padding:0 20px;margin:20px 0;font-size:13px;color:#141B38}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened>.components-panel__body-title{margin:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened{padding:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened .aioseo-headline-analyzer-words-block,.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened .aioseo-headline-analyzer-panel-first-block{padding:0 16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-sentiment.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-previous-scores.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score-form.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-search-preview.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-balance.is-opened .components-panel__body-title{border-bottom:1px solid #e8e8eb;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status{position:absolute;top:45%;left:0;right:0;text-align:center;font-size:50px;line-height:0%;z-index:0;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score p,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status p{margin-bottom:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel{top:calc(58% + 16px)}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status{top:65%;font-size:16px;z-index:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score-tab p{text-align:center}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score-tab .aioseo-headline-analyzer-current-title{text-align:center;font-size:16px;color:#141B38;margin:0 0 24px 0;line-height:1.4}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel h4{text-align:center;font-size:16px;color:#141B38;margin:0 0 28px 0;line-height:1.4}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:200px;margin:0 auto;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-new-score{position:absolute;top:calc(38% + 16px);left:0;right:0;text-align:center;font-size:50px;font-weight:700;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-new-score p{margin-bottom:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score{border-top:1px solid #E8E8EB;padding-top:24px;display:flex;align-items:center;flex-direction:row}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score .aioseo-headline-analyzer-score{min-height:40px;min-width:40px;font-weight:700;color:#ffffff;margin-right:16px;text-align:center;line-height:40px;border-radius:50%;font-size:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score h5{font-weight:400;color:#8C8F9A;margin-top:0;margin-bottom:8px;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score p{margin-top:8px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-tab{margin-bottom:6px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-form-block{padding:6px 12px 22px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field{margin-bottom:10px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field .components-base-control__label{display:block;max-width:100%;font-size:13px;margin:0 0 10px;color:#434960}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field input{padding:11px 12px;font-size:13px;border:1px solid #D0D1D7;color:#393f4c;border-radius:3px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button{font-size:14px;border-radius:4px;padding:0;height:40px;background:#005AE0;width:100%;justify-content:center;color:#ffffff;font-weight:600;border:1px solid transparent;transition:background-color .2s ease;opacity:1}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:disabled{border:1px solid #dcdde1;background-color:#f3f4f5;color:#8c8f9a;cursor:default}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:disabled:hover{color:#8c8f9a}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:hover,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:focus,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:visited{color:#ffffff;box-shadow:none}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference{font-weight:700;position:absolute;left:0;top:16%;right:0;text-align:center;width:42px;height:26px;margin:0 auto;font-size:16px;line-height:26px;border-radius:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.red{background:#fbe9ec}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.orange{background:#FCFAE8}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.green{background:#CBEAE1}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores{margin:0 !important}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li{margin-bottom:16px;cursor:pointer;display:flex;flex-direction:row;align-items:center;color:#434960;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li span.aioseo-headline-analyzer-score{min-height:24px;min-width:24px;margin-right:8px;font-size:11px;text-align:center;line-height:24px;border-radius:50%;color:#ffffff;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li span.aioseo-headline-analyzer-score-text{flex-basis:calc(100% - 32px)}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon .components-panel__body-toggle .components-panel__icon{position:absolute;right:52px;top:50%;margin-top:-10px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.red .components-panel__body-toggle .components-panel__icon path{fill:#df2a4a}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.orange .components-panel__body-toggle .components-panel__icon path{fill:#f18200}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.green .components-panel__body-toggle .components-panel__icon path{fill:#00aa63}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon-alternative{position:relative}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon-alternative .aioseo-headline-analyzer-panel-icon-alternative{position:absolute;top:14px;right:40px;font-weight:700}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-balance .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-sentiment .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-types .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-character-count .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-count .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row{display:block}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-balance .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-sentiment .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-types .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-character-count .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-count .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row h4{font-size:16px;color:#141B38;font-weight:700;margin:0 0 16px 0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block{margin-top:16px;border-bottom:1px solid #e8e8eb}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block h5{font-size:13px;color:#434960;margin-top:0;margin-bottom:16px;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data{overflow:hidden;display:flex;flex-direction:row}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span{display:block;float:left;flex-basis:70%;z-index:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-percentage{font-size:28px;font-weight:700;flex-basis:25%;justify-content:flex-start;align-items:center;display:flex;margin-right:11px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-goal{width:100%;font-size:13px;font-weight:400;color:#8C8F9A}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar{width:100%;position:relative;height:4px;margin-top:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar .aioseo-headline-analyzer-progressbar-bg{width:100%;background:#EEF0F2;height:4px;z-index:9;position:absolute;top:0;left:0;border-radius:30px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar .aioseo-headline-analyzer-progressbar-part{position:absolute;height:4px;top:0;left:0;z-index:10;border-radius:30px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-tag-list{margin:0;padding:0;list-style:none;display:block;margin-top:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-tag-list li{display:inline-block;font-size:13px;font-weight:700;color:#434960;background:#F3F4F5;border-radius:3px;padding:4px 9px;margin-right:8px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-guideline{margin-top:8px;color:#4f4f4f}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-length>span,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-length>span{width:36px;height:48px;display:inline-block;background:#e8e8eb;text-align:center;line-height:48px;font-size:28px;color:#2c324c;font-weight:700;margin-right:4px;border-radius:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-length>span.character-zero,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-length>span.character-zero{color:#D0D1D7}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-status-on-character-length,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-status-on-word-length{display:block;font-weight:700;font-size:16px;color:#141b38;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-count-container,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-counter{margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count p{text-align:left}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:80px;margin:0 auto;margin-bottom:18px;margin-left:-40px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-character-length{position:absolute;top:50%;left:0;right:0;text-align:center;font-size:30px;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-status-on-character-length{position:absolute;left:144px;top:50%;font-size:16px;color:#141B38;margin:-9px 0 0 0;font-weight:700;width:130px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count p{text-align:left}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:80px;margin:0 auto;margin-bottom:18px;margin-left:-40px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-word-length{position:absolute;top:50%;left:0;right:0;text-align:center;font-size:30px;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-status-on-word-length{position:absolute;left:144px;top:50%;font-size:16px;color:#141B38;margin:-9px 0 0 0;font-weight:700;width:130px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words{display:block;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words span{font-size:13px;color:#434960;background:#f3f4f5;border-radius:3px;padding:4px 8px;font-weight:700;display:inline-block}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words-guideline{margin-top:20px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-ending-title,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-begining-title{font-weight:700;font-size:13px;color:#141b38;margin-bottom:12px;list-style:initial;margin:0 16px 8px 16px;padding:0 0 0 8px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-ending-title li,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-begining-title li{margin:0}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-search-prevew-wrap{background:#ffffff;border:0.837954px solid #e8e8eb;padding:8px;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row h4{color:#1a0dab;font-size:16px;margin-top:0 !important;text-transform:none;margin-bottom:5px;font-weight:500}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url{margin-bottom:5px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url a{color:#3c4043;font-size:13px;text-decoration:none}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url a:hover{opacity:0.8}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row p{font-size:12px;color:#434960;margin:0px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types .aioseo-headline-analyzer-panel-types-title{display:block;width:100%;font-size:14px;color:#141B38}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types .aioseo-headline-analyzer-panel-types-title span{float:right;margin-right:25px;color:#141B38;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types p a{color:#005AE0;text-decoration:none}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types p a span{text-decoration:underline}.edit-post-header__settings button.components-button[aioseo-button-color]{display:flex;align-items:center}.edit-post-header__settings button.components-button[aioseo-button-color] svg{max-width:22px;max-height:20px;margin-right:8px}.edit-post-header__settings button.components-button[aioseo-button-color] span{color:#fff;font-weight:700}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]{border:1px solid #df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed{background:#df2a4a !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"] svg path{fill:#df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"] span{color:#df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]{border:1px solid #f18200}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed{background:#f18200 !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"] svg path{fill:#f08629}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"] span{color:#f18200}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]{border:1px solid #1ec185}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed{background:#1ec185 !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"] svg path{fill:#1ec185}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"] span{color:#1bb17a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed{box-shadow:none !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed svg path{fill:#fff !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed span{color:#fff}.edit-post-sidebar{scroll-behavior:smooth}.aioseo-headline-analyzer-current-score-content>p{font-weight:700}.aioseo-headline-analyzer-bottom-notice{padding:16px;background:#E6EEFC;margin:16px;border-radius:3px;font-size:13px;color:#141B38}.aioseo-headline-analyzer-bottom-notice p{text-align:left}.aioseo-headline-analyzer-bottom-notice p a{color:#005AE0;text-decoration:none}.aioseo-headline-analyzer-bottom-notice p a span{text-decoration:underline}.aioseo-donut-container{display:flex;align-items:center;justify-content:center}.aioseo-donut-container .aioseo-seo-headline-analyzer-score__circle{animation:aioseo-seo-site-score-fill 1s reverse;transform:rotate(-180deg);transform-origin:center}
3
 
1
+ /*! ! built on Tuesday, September 14th 2021, 11:55:41 am */
2
  .aioseo-inline-buttons{display:grid;grid-template-columns:repeat(2, 1fr)}.aioseo-switcher-button{border:0;border-radius:0;font-size:14px;font-weight:normal;color:#434960;padding:16px 10px;box-shadow:0px 2px 0px #e8e8eb;cursor:pointer;text-align:left;white-space:nowrap;position:relative;transition:0.4s cubic-bezier(0.4, 0, 0.2, 1);background:#fafafa}.aioseo-switcher-button:before{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;opacity:0;transition:0.4s cubic-bezier(0.4, 0, 0.2, 1);will-change:background-color,opacity;content:" "}.aioseo-switcher-button.active:before,.aioseo-switcher-button:hover:before,.aioseo-switcher-button:active:before{background-color:currentColor;opacity:.12}.aioseo-switcher-button.active{font-weight:700;color:#141B38;box-shadow:0px 2px 0px #005AE0}.aioseo-headline-analyzer-wrapper{position:relative}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:200px;margin:0 auto;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-total-out-of-score{font-size:18px;color:#8c8f9a;font-weight:600;z-index:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened svg.components-panel__arrow{transform:rotate(0deg)}.aioseo-headline-analyzer-wrapper .components-panel__body svg.components-panel__arrow{transform:rotate(-90deg);top:50%;margin-top:-12px;transition:.3s}.aioseo-headline-analyzer-wrapper p{font-size:13px;color:#434960;margin-bottom:16px}.aioseo-headline-analyzer-wrapper p>strong{font-size:13px;font-weight:700}.aioseo-headline-analyzer-wrapper .green{color:#00aa63}.aioseo-headline-analyzer-wrapper .orange{color:#f18200}.aioseo-headline-analyzer-wrapper .red{color:#df2a4a}.aioseo-headline-analyzer-wrapper .green-bg{background:#00aa63}.aioseo-headline-analyzer-wrapper .orange-bg{background:#f18200}.aioseo-headline-analyzer-wrapper .red-bg{background:#df2a4a}.aioseo-headline-analyzer-wrapper .components-panel__body-toggle.components-button{font-weight:700;color:#141B38;padding:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-empty-title-warning{text-align:center;padding:0 20px;margin:20px 0;font-size:13px;color:#141B38}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened>.components-panel__body-title{margin:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened{padding:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened .aioseo-headline-analyzer-words-block,.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened .aioseo-headline-analyzer-panel-first-block{padding:0 16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-sentiment.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-previous-scores.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score-form.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-search-preview.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-balance.is-opened .components-panel__body-title{border-bottom:1px solid #e8e8eb;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status{position:absolute;top:45%;left:0;right:0;text-align:center;font-size:50px;line-height:0%;z-index:0;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score p,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status p{margin-bottom:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel{top:calc(58% + 16px)}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status{top:65%;font-size:16px;z-index:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score-tab p{text-align:center}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score-tab .aioseo-headline-analyzer-current-title{text-align:center;font-size:16px;color:#141B38;margin:0 0 24px 0;line-height:1.4}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel h4{text-align:center;font-size:16px;color:#141B38;margin:0 0 28px 0;line-height:1.4}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:200px;margin:0 auto;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-new-score{position:absolute;top:calc(38% + 16px);left:0;right:0;text-align:center;font-size:50px;font-weight:700;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-new-score p{margin-bottom:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score{border-top:1px solid #E8E8EB;padding-top:24px;display:flex;align-items:center;flex-direction:row}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score .aioseo-headline-analyzer-score{min-height:40px;min-width:40px;font-weight:700;color:#ffffff;margin-right:16px;text-align:center;line-height:40px;border-radius:50%;font-size:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score h5{font-weight:400;color:#8C8F9A;margin-top:0;margin-bottom:8px;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score p{margin-top:8px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-tab{margin-bottom:6px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-form-block{padding:6px 12px 22px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field{margin-bottom:10px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field .components-base-control__label{display:block;max-width:100%;font-size:13px;margin:0 0 10px;color:#434960}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field input{padding:11px 12px;font-size:13px;border:1px solid #D0D1D7;color:#393f4c;border-radius:3px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button{font-size:14px;border-radius:4px;padding:0;height:40px;background:#005AE0;width:100%;justify-content:center;color:#ffffff;font-weight:600;border:1px solid transparent;transition:background-color .2s ease;opacity:1}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:disabled{border:1px solid #dcdde1;background-color:#f3f4f5;color:#8c8f9a;cursor:default}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:disabled:hover{color:#8c8f9a}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:hover,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:focus,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:visited{color:#ffffff;box-shadow:none}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference{font-weight:700;position:absolute;left:0;top:16%;right:0;text-align:center;width:42px;height:26px;margin:0 auto;font-size:16px;line-height:26px;border-radius:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.red{background:#fbe9ec}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.orange{background:#FCFAE8}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.green{background:#CBEAE1}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores{margin:0 !important}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li{margin-bottom:16px;cursor:pointer;display:flex;flex-direction:row;align-items:center;color:#434960;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li span.aioseo-headline-analyzer-score{min-height:24px;min-width:24px;margin-right:8px;font-size:11px;text-align:center;line-height:24px;border-radius:50%;color:#ffffff;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li span.aioseo-headline-analyzer-score-text{flex-basis:calc(100% - 32px)}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon .components-panel__body-toggle .components-panel__icon{position:absolute;right:52px;top:50%;margin-top:-10px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.red .components-panel__body-toggle .components-panel__icon path{fill:#df2a4a}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.orange .components-panel__body-toggle .components-panel__icon path{fill:#f18200}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.green .components-panel__body-toggle .components-panel__icon path{fill:#00aa63}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon-alternative{position:relative}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon-alternative .aioseo-headline-analyzer-panel-icon-alternative{position:absolute;top:14px;right:40px;font-weight:700}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-balance .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-sentiment .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-types .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-character-count .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-count .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row{display:block}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-balance .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-sentiment .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-types .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-character-count .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-count .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row h4{font-size:16px;color:#141B38;font-weight:700;margin:0 0 16px 0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block{margin-top:16px;border-bottom:1px solid #e8e8eb}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block h5{font-size:13px;color:#434960;margin-top:0;margin-bottom:16px;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data{overflow:hidden;display:flex;flex-direction:row}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span{display:block;float:left;flex-basis:70%;z-index:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-percentage{font-size:28px;font-weight:700;flex-basis:25%;justify-content:flex-start;align-items:center;display:flex;margin-right:11px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-goal{width:100%;font-size:13px;font-weight:400;color:#8C8F9A}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar{width:100%;position:relative;height:4px;margin-top:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar .aioseo-headline-analyzer-progressbar-bg{width:100%;background:#EEF0F2;height:4px;z-index:9;position:absolute;top:0;left:0;border-radius:30px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar .aioseo-headline-analyzer-progressbar-part{position:absolute;height:4px;top:0;left:0;z-index:10;border-radius:30px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-tag-list{margin:0;padding:0;list-style:none;display:block;margin-top:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-tag-list li{display:inline-block;font-size:13px;font-weight:700;color:#434960;background:#F3F4F5;border-radius:3px;padding:4px 9px;margin-right:8px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-guideline{margin-top:8px;color:#4f4f4f}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-length>span,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-length>span{width:36px;height:48px;display:inline-block;background:#e8e8eb;text-align:center;line-height:48px;font-size:28px;color:#2c324c;font-weight:700;margin-right:4px;border-radius:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-length>span.character-zero,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-length>span.character-zero{color:#D0D1D7}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-status-on-character-length,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-status-on-word-length{display:block;font-weight:700;font-size:16px;color:#141b38;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-count-container,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-counter{margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count p{text-align:left}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:80px;margin:0 auto;margin-bottom:18px;margin-left:-40px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-character-length{position:absolute;top:50%;left:0;right:0;text-align:center;font-size:30px;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-status-on-character-length{position:absolute;left:144px;top:50%;font-size:16px;color:#141B38;margin:-9px 0 0 0;font-weight:700;width:130px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count p{text-align:left}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:80px;margin:0 auto;margin-bottom:18px;margin-left:-40px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-word-length{position:absolute;top:50%;left:0;right:0;text-align:center;font-size:30px;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-status-on-word-length{position:absolute;left:144px;top:50%;font-size:16px;color:#141B38;margin:-9px 0 0 0;font-weight:700;width:130px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words{display:block;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words span{font-size:13px;color:#434960;background:#f3f4f5;border-radius:3px;padding:4px 8px;font-weight:700;display:inline-block}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words-guideline{margin-top:20px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-ending-title,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-begining-title{font-weight:700;font-size:13px;color:#141b38;margin-bottom:12px;list-style:initial;margin:0 16px 8px 16px;padding:0 0 0 8px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-ending-title li,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-begining-title li{margin:0}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-search-prevew-wrap{background:#ffffff;border:0.837954px solid #e8e8eb;padding:8px;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row h4{color:#1a0dab;font-size:16px;margin-top:0 !important;text-transform:none;margin-bottom:5px;font-weight:500}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url{margin-bottom:5px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url a{color:#3c4043;font-size:13px;text-decoration:none}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url a:hover{opacity:0.8}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row p{font-size:12px;color:#434960;margin:0px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types .aioseo-headline-analyzer-panel-types-title{display:block;width:100%;font-size:14px;color:#141B38}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types .aioseo-headline-analyzer-panel-types-title span{float:right;margin-right:25px;color:#141B38;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types p a{color:#005AE0;text-decoration:none}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types p a span{text-decoration:underline}.edit-post-header__settings button.components-button[aioseo-button-color]{display:flex;align-items:center}.edit-post-header__settings button.components-button[aioseo-button-color] svg{max-width:22px;max-height:20px;margin-right:8px}.edit-post-header__settings button.components-button[aioseo-button-color] span{color:#fff;font-weight:700}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]{border:1px solid #df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed{background:#df2a4a !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"] svg path{fill:#df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"] span{color:#df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]{border:1px solid #f18200}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed{background:#f18200 !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"] svg path{fill:#f08629}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"] span{color:#f18200}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]{border:1px solid #1ec185}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed{background:#1ec185 !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"] svg path{fill:#1ec185}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"] span{color:#1bb17a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed{box-shadow:none !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed svg path{fill:#fff !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed span{color:#fff}.edit-post-sidebar{scroll-behavior:smooth}.aioseo-headline-analyzer-current-score-content>p{font-weight:700}.aioseo-headline-analyzer-bottom-notice{padding:16px;background:#E6EEFC;margin:16px;border-radius:3px;font-size:13px;color:#141B38}.aioseo-headline-analyzer-bottom-notice p{text-align:left}.aioseo-headline-analyzer-bottom-notice p a{color:#005AE0;text-decoration:none}.aioseo-headline-analyzer-bottom-notice p a span{text-decoration:underline}.aioseo-donut-container{display:flex;align-items:center;justify-content:center}.aioseo-donut-container .aioseo-seo-headline-analyzer-score__circle{animation:aioseo-seo-site-score-fill 1s reverse;transform:rotate(-180deg);transform-origin:center}
3
 
dist/Lite/assets/css/headline-analyzer.css.gz CHANGED
Binary file
dist/Lite/assets/js/headline-analyzer.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! ! built on Thursday, September 9th 2021, 7:47:13 pm */
2
  !function(e){var t={};function n(r){if(t[r])return t[r].exports;var a=t[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.l=!0,a.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)n.d(r,a,function(t){return e[t]}.bind(null,a));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=66)}([function(e,t){e.exports=window.wp.element},,function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function a(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var o,i=typeof r;if("string"==i||"number"==i)e.push(r);else if(Array.isArray(r))!r.length||(o=a.apply(null,r))&&e.push(o);else if("object"==i)if(r.toString===Object.prototype.toString)for(var s in r)n.call(r,s)&&r[s]&&e.push(s);else e.push(r.toString())}}return e.join(" ")}e.exports?(a.default=a,e.exports=a):void 0===(r=function(){return a}.apply(t,[]))||(e.exports=r)}()},,,,,,,function(e,t,n){"use strict";var r=n(0);(n={}).headline=Object(r.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15.817 2H22v.038l-6.183 4.226V2.001zm-7.62 9.473V2H2.016v4.683-.267l6.126 5.094.057-.038zm-6.182 5.061l6.183 4.213v1.252H2.015v-5.465zm13.802-.857L22 11.559v10.437h-6.183v-6.32z",fill:"#141B38"}),Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.198 11.435l-.057.039L2.016 6.38v.265-4.644h6.182v9.434zm0 9.226L2.015 16.45v5.55h6.183v-1.337zm7.62-5.07L22 11.474v10.522h-6.183v-6.405zM22 2.001l-6.183 4.226V2H22z",fill:"#141B38"}),Object(r.createElement)("path",{d:"M8.141 13.537L22 4.064v5.432l-13.8 9.19L2 14.46l.016-6.018 6.125 5.094z",fill:"#141B38"})),n.headlineBlack=Object(r.createElement)("svg",{width:"15",height:"14",viewBox:"0 0 15 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{d:"M13.5 2V12H14.5C14.6458 12 14.7604 12.0521 14.8438 12.1562C14.9479 12.2396 15 12.3542 15 12.5V13.5C15 13.6458 14.9479 13.7604 14.8438 13.8438C14.7604 13.9479 14.6458 14 14.5 14H9.5C9.35417 14 9.22917 13.9479 9.125 13.8438C9.04167 13.7604 9 13.6458 9 13.5V12.5C9 12.3542 9.04167 12.2396 9.125 12.1562C9.22917 12.0521 9.35417 12 9.5 12H10.5V8H4.5V12H5.5C5.64583 12 5.76042 12.0521 5.84375 12.1562C5.94792 12.2396 6 12.3542 6 12.5V13.5C6 13.6458 5.94792 13.7604 5.84375 13.8438C5.76042 13.9479 5.64583 14 5.5 14H0.5C0.354167 14 0.229167 13.9479 0.125 13.8438C0.0416667 13.7604 0 13.6458 0 13.5V12.5C0 12.3542 0.0416667 12.2396 0.125 12.1562C0.229167 12.0521 0.354167 12 0.5 12H1.5V2H0.5C0.354167 2 0.229167 1.95833 0.125 1.875C0.0416667 1.77083 0 1.64583 0 1.5V0.5C0 0.354167 0.0416667 0.239583 0.125 0.15625C0.229167 0.0520833 0.354167 0 0.5 0H5.5C5.64583 0 5.76042 0.0520833 5.84375 0.15625C5.94792 0.239583 6 0.354167 6 0.5V1.5C6 1.64583 5.94792 1.77083 5.84375 1.875C5.76042 1.95833 5.64583 2 5.5 2H4.5V6H10.5V2H9.5C9.35417 2 9.22917 1.95833 9.125 1.875C9.04167 1.77083 9 1.64583 9 1.5V0.5C9 0.354167 9.04167 0.239583 9.125 0.15625C9.22917 0.0520833 9.35417 0 9.5 0H14.5C14.6458 0 14.7604 0.0520833 14.8438 0.15625C14.9479 0.239583 15 0.354167 15 0.5V1.5C15 1.64583 14.9479 1.77083 14.8438 1.875C14.7604 1.95833 14.6458 2 14.5 2H13.5Z",fill:"#000"})),n.warning=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM11 5.00002H9V11H11V5.00002ZM11 13H9V15H11V13ZM2.00002 10C2.00002 14.42 5.58002 18 10 18C14.42 18 18 14.42 18 10C18 5.58002 14.42 2.00002 10 2.00002C5.58002 2.00002 2.00002 5.58002 2.00002 10Z",fill:"#005AE0"})),n.smile=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM6.5 6C5.67157 6 5 6.67157 5 7.5C5 8.32843 5.67157 9 6.5 9C7.32843 9 8 8.32843 8 7.5C8 6.67157 7.32843 6 6.5 6ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM6.55 12C7.25 13.19 8.52 14 10 14C11.48 14 12.75 13.19 13.45 12H15.12C14.32 14.05 12.33 15.5 10 15.5C7.67 15.5 5.68 14.05 4.88 12H6.55ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#00AA63"})),n.neutral=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM5 7.5C5 6.67157 5.67157 6 6.5 6C7.32843 6 8 6.67157 8 7.5C8 8.32843 7.32843 9 6.5 9C5.67157 9 5 8.32843 5 7.5ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM7 13.5V12H13V13.5H7ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#005AE0"})),n.negative=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM6.5 6C5.67157 6 5 6.67157 5 7.5C5 8.32843 5.67157 9 6.5 9C7.32843 9 8 8.32843 8 7.5C8 6.67157 7.32843 6 6.5 6ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM4.88 15.5C5.68 13.45 7.67 12 10 12C12.33 12 14.32 13.45 15.12 15.5H13.45C12.75 14.31 11.48 13.5 10 13.5C8.52 13.5 7.24 14.31 6.55 15.5H4.88ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#DF2A4A"})),n.check=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 0C4.48 0 0 4.48 0 10C0 15.52 4.48 20 10 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM8 12.17L14.59 5.58L16 7L8 15L4 11L5.41 9.59L8 12.17Z",fill:"#00AA63"})),t.a=n},function(e,t){var n,r;e=e.exports={};function a(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function i(e){if(n===setTimeout)return setTimeout(e,0);if((n===a||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:a}catch(e){n=a}try{r="function"==typeof clearTimeout?clearTimeout:o}catch(e){r=o}}();var s,l=[],c=!1,u=-1;function d(){c&&s&&(c=!1,s.length?l=s.concat(l):u=-1,l.length&&h())}function h(){if(!c){var e=i(d);c=!0;for(var t=l.length;t;){for(s=l,l=[];++u<t;)s&&s[u].run();u=-1,t=l.length}s=null,c=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===o||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function p(e,t){this.fun=e,this.array=t}function f(){}e.nextTick=function(e){var t=new Array(arguments.length-1);if(1<arguments.length)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new p(e,t)),1!==l.length||c||i(h)},p.prototype.run=function(){this.fun.apply(null,this.array)},e.title="browser",e.browser=!0,e.env={},e.argv=[],e.version="",e.versions={},e.on=f,e.addListener=f,e.once=f,e.off=f,e.removeListener=f,e.removeAllListeners=f,e.emit=f,e.prependListener=f,e.prependOnceListener=f,e.listeners=function(e){return[]},e.binding=function(e){throw new Error("process.binding is not supported")},e.cwd=function(){return"/"},e.chdir=function(e){throw new Error("process.chdir is not supported")},e.umask=function(){return 0}},,,,,,,,,,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return o})),n.d(t,"b",(function(){return i}));t=n(44);var r,a=n.n(t),o=function(e,t){return function(){for(var n=arguments.length,a=new Array(n),o=0;o<n;o++)a[o]=arguments[o];clearTimeout(r),r=setTimeout((function(){return e.apply(void 0,a)}),t)}.call()},i=function(e){return a.a.agent().set("X-WP-Nonce",e).use((function(e){e.on("response",(function(e){(401===e.status||403===e.status)&&console.error(e)}))}))}},,,function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=window.wp.i18n.__;t.a=function(t){var n=i("Goal: ",e.env.VUE_APP_TEXTDOMAIN),a={width:t.value+"%"};return Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block"},Object(r.createElement)("h5",null,t.title),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block-data"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-words-block-percentage",t.classOnScore)},t.value,"%"),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-words-block-percentage-right-column",t.classOnScore)},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-words-block-goal"},n," ",t.goalValue),Object(r.createElement)("span",{className:"aioseo-headline-analyzer-words-block-progressbar"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-progressbar-bg"}),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-progressbar-part",t.classOnScoreBg),style:a})))),Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-words-tag-list"},0<t.words.length?t.words.map((function(e,t){return Object(r.createElement)("li",{key:t},e)})):""),Object(r.createElement)("p",{className:"aioseo-headline-analyzer-words-guideline"},t.guideLine))}}).call(this,n(10))},function(e,t,n){var r=n(68),a=n(69),o=n(33),i=n(70);e.exports=function(e,t){return r(e)||a(e,t)||o(e,t)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(71),a=n(72),o=n(33),i=n(73);e.exports=function(e){return r(e)||a(e)||o(e)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";var r=n(0),a=window.wp.element.Fragment;t.a=function(e){var t=e.barScore;e=e.color;return Object(r.createElement)(a,null,Object(r.createElement)("div",{className:"aioseo-donut-container",style:{flexDirection:"column"}},Object(r.createElement)("svg",{className:"aioseo-donut-score-svg",viewBox:"0 0 33.83098862 33.83098862",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("circle",{className:"aioseo-seo-headline-analyzer-score__background",stroke:"#e8e8eb",strokeWidth:"2",fill:"none",cx:"16.91549431",cy:"16.91549431",r:"15.91549431"}),Object(r.createElement)("circle",{className:"aioseo-seo-headline-analyzer-score__circle",stroke:e,strokeWidth:"2",strokeDasharray:"".concat(t,", 100"),strokeLinecap:"round",fill:"none",cx:"16.91549431",cy:"16.91549431",r:"15.91549431"}))))}},,,,,function(e,t,n){var r=n(34);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return null!==e&&"object"===r(e)}},,,,,,,,function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var a="undefined"!=typeof window?window:"undefined"==typeof self?void console.warn("Using browser-only version of superagent in non-browser environment"):self,o=n(74),i=n(75),s=n(76),l=n(35),c=n(77),u=n(79);function d(){}e.exports=function(e,n){return"function"==typeof n?new t.Request("GET",e).end(n):1===arguments.length?new t.Request("GET",e):new t.Request(e,n)};var h=t=e.exports;t.Request=w,h.getXHR=function(){if(a.XMLHttpRequest&&(!a.location||"file:"!==a.location.protocol||!a.ActiveXObject))return new XMLHttpRequest;try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch(e){}throw new Error("Browser-only version of superagent could not find XHR")};var p="".trim?function(e){return e.trim()}:function(e){return e.replace(/(^\s*|\s*$)/g,"")};function f(e){if(!l(e))return e;var t,n=[];for(t in e)Object.prototype.hasOwnProperty.call(e,t)&&function e(t,n,r){if(void 0!==r)if(null!==r)if(Array.isArray(r))r.forEach((function(r){e(t,n,r)}));else if(l(r))for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&e(t,"".concat(n,"[").concat(a,"]"),r[a]);else t.push(encodeURI(n)+"="+encodeURIComponent(r));else t.push(encodeURI(n))}(n,t,e[t]);return n.join("&")}function m(e){for(var t,n,r={},a=e.split("&"),o=0,i=a.length;o<i;++o)-1===(n=(t=a[o]).indexOf("="))?r[decodeURIComponent(t)]="":r[decodeURIComponent(t.slice(0,n))]=decodeURIComponent(t.slice(n+1));return r}function y(e){return/[/+]json($|[^-\w])/.test(e)}function b(e){this.req=e,this.xhr=this.req.xhr,this.text="HEAD"!==this.req.method&&(""===this.xhr.responseType||"text"===this.xhr.responseType)||void 0===this.xhr.responseType?this.xhr.responseText:null,this.statusText=this.req.xhr.statusText;var t=this.xhr.status;this._setStatusProperties(t=1223===t?204:t),this.headers=function(e){for(var t,n,r,a=e.split(/\r?\n/),o={},i=0,s=a.length;i<s;++i)-1!==(r=(t=a[i]).indexOf(":"))&&(n=t.slice(0,r).toLowerCase(),r=p(t.slice(r+1)),o[n]=r);return o}(this.xhr.getAllResponseHeaders()),this.header=this.headers,this.header["content-type"]=this.xhr.getResponseHeader("content-type"),this._setHeaderProperties(this.header),null===this.text&&e._responseType?this.body=this.xhr.response:this.body="HEAD"===this.req.method?null:this._parseBody(this.text||this.xhr.response)}function w(e,t){var n=this;this._query=this._query||[],this.method=e,this.url=t,this.header={},this._header={},this.on("end",(function(){var e,t=null,r=null;try{r=new b(n)}catch(r){return(t=new Error("Parser is unable to parse the response")).parse=!0,t.original=r,n.xhr?(t.rawResponse=void 0===n.xhr.responseType?n.xhr.responseText:n.xhr.response,t.status=n.xhr.status||null,t.statusCode=t.status):(t.rawResponse=null,t.status=null),n.callback(t)}n.emit("response",r);try{n._isResponseOK(r)||(e=new Error(r.statusText||r.text||"Unsuccessful HTTP response"))}catch(r){e=r}e?(e.original=t,e.response=r,e.status=r.status,n.callback(e,r)):n.callback(null,r)}))}function g(e,t,n){return e=h("DELETE",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e}h.serializeObject=f,h.parseString=m,h.types={html:"text/html",json:"application/json",xml:"text/xml",urlencoded:"application/x-www-form-urlencoded",form:"application/x-www-form-urlencoded","form-data":"application/x-www-form-urlencoded"},h.serialize={"application/x-www-form-urlencoded":f,"application/json":i},h.parse={"application/x-www-form-urlencoded":m,"application/json":JSON.parse},c(b.prototype),b.prototype._parseBody=function(e){var t=h.parse[this.type];return this.req._parser?this.req._parser(this,e):(t=!t&&y(this.type)?h.parse["application/json"]:t)&&e&&(0<e.length||e instanceof Object)?t(e):null},b.prototype.toError=function(){var e=(n=this.req).method,t=n.url,n="cannot ".concat(e," ").concat(t," (").concat(this.status,")");return(n=new Error(n)).status=this.status,n.method=e,n.url=t,n},h.Response=b,o(w.prototype),s(w.prototype),w.prototype.type=function(e){return this.set("Content-Type",h.types[e]||e),this},w.prototype.accept=function(e){return this.set("Accept",h.types[e]||e),this},w.prototype.auth=function(e,t,n){return"object"===r(t=1===arguments.length?"":t)&&null!==t&&(n=t,t=""),n=n||{type:"function"==typeof btoa?"basic":"auto"},this._auth(e,t,n,(function(e){if("function"==typeof btoa)return btoa(e);throw new Error("Cannot use basic auth, btoa is not a function")}))},w.prototype.query=function(e){return(e="string"!=typeof e?f(e):e)&&this._query.push(e),this},w.prototype.attach=function(e,t,n){if(t){if(this._data)throw new Error("superagent can't mix .send() and .attach()");this._getFormData().append(e,t,n||t.name)}return this},w.prototype._getFormData=function(){return this._formData||(this._formData=new a.FormData),this._formData},w.prototype.callback=function(e,t){if(this._shouldRetry(e,t))return this._retry();var n=this._callback;this.clearTimeout(),e&&(this._maxRetries&&(e.retries=this._retries-1),this.emit("error",e)),n(e,t)},w.prototype.crossDomainError=function(){var e=new Error("Request has been terminated\nPossible causes: the network is offline, Origin is not allowed by Access-Control-Allow-Origin, the page is being unloaded, etc.");e.crossDomain=!0,e.status=this.status,e.method=this.method,e.url=this.url,this.callback(e)},w.prototype.buffer=w.prototype.ca=w.prototype.agent=function(){return console.warn("This is not supported in browser version of superagent"),this},w.prototype.pipe=w.prototype.write=function(){throw new Error("Streaming is not supported in browser version of superagent")},w.prototype._isHost=function(e){return e&&"object"===r(e)&&!Array.isArray(e)&&"[object Object]"!==Object.prototype.toString.call(e)},w.prototype.end=function(e){this._endCalled&&console.warn("Warning: .end() was called twice. This is not supported in superagent"),this._endCalled=!0,this._callback=e||d,this._finalizeQueryString(),this._end()},w.prototype._setUploadTimeout=function(){var e=this;this._uploadTimeout&&!this._uploadTimeoutTimer&&(this._uploadTimeoutTimer=setTimeout((function(){e._timeoutError("Upload timeout of ",e._uploadTimeout,"ETIMEDOUT")}),this._uploadTimeout))},w.prototype._end=function(){if(this._aborted)return this.callback(new Error("The request has been aborted even before .end() was called"));var e=this;this.xhr=h.getXHR();var t=this.xhr,n=this._formData||this._data;this._setTimeouts(),t.onreadystatechange=function(){var n,r=t.readyState;if(2<=r&&e._responseTimeoutTimer&&clearTimeout(e._responseTimeoutTimer),4===r){try{n=t.status}catch(r){n=0}if(!n)return e.timedout||e._aborted?void 0:e.crossDomainError();e.emit("end")}};var r,a,o=function(t,n){0<n.total&&(n.percent=n.loaded/n.total*100,100===n.percent&&clearTimeout(e._uploadTimeoutTimer)),n.direction=t,e.emit("progress",n)};if(this.hasListeners("progress"))try{t.addEventListener("progress",o.bind(null,"download")),t.upload&&t.upload.addEventListener("progress",o.bind(null,"upload"))}catch(n){}t.upload&&this._setUploadTimeout();try{this.username&&this.password?t.open(this.method,this.url,!0,this.username,this.password):t.open(this.method,this.url,!0)}catch(n){return this.callback(n)}for(a in this._withCredentials&&(t.withCredentials=!0),this._formData||"GET"===this.method||"HEAD"===this.method||"string"==typeof n||this._isHost(n)||(r=this._header["content-type"],(o=!(o=this._serializer||h.serialize[r?r.split(";")[0]:""])&&y(r)?h.serialize["application/json"]:o)&&(n=o(n))),this.header)null!==this.header[a]&&Object.prototype.hasOwnProperty.call(this.header,a)&&t.setRequestHeader(a,this.header[a]);this._responseType&&(t.responseType=this._responseType),this.emit("request",this),t.send(void 0===n?null:n)},h.agent=function(){return new u},["GET","POST","OPTIONS","PATCH","PUT","DELETE"].forEach((function(e){u.prototype[e.toLowerCase()]=function(t,n){return t=new h.Request(e,t),this._setDefaults(t),n&&t.end(n),t}})),u.prototype.del=u.prototype.delete,h.get=function(e,t,n){return e=h("GET",e),"function"==typeof t&&(n=t,t=null),t&&e.query(t),n&&e.end(n),e},h.head=function(e,t,n){return e=h("HEAD",e),"function"==typeof t&&(n=t,t=null),t&&e.query(t),n&&e.end(n),e},h.options=function(e,t,n){return e=h("OPTIONS",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.del=g,h.delete=g,h.patch=function(e,t,n){return e=h("PATCH",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.post=function(e,t,n){return e=h("POST",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.put=function(e,t,n){return e=h("PUT",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e}},function(e,t,n){"use strict";(function(e){var r=n(26),a=n.n(r),o=n(0),i=(r=n(2),n.n(r)),s=n(46),l=n(47),c=n(48),u=window.wp.i18n.__,d=(r=window.wp.element).Fragment,h=r.useState,p=r.useEffect;t.a=function(t){var n=u("Current Score",e.env.VUE_APP_TEXTDOMAIN),r=u("Try New Headline",e.env.VUE_APP_TEXTDOMAIN),f=h("current-score"),m=(f=a()(f,2))[0],y=f[1];f=void 0!==t.analyzer.isNewData&&t.analyzer.isNewData;return p((function(){t.setAnalyzer({activeTab:m})}),[m]),Object(o.createElement)(d,null,Object(o.createElement)("div",{className:"aioseo-inline-buttons"},Object(o.createElement)("button",{onClick:function(){return y("current-score")},className:i()("aioseo-switcher-button",{active:"current-score"===m})},n),Object(o.createElement)("button",{onClick:function(){return y("new-headline")},className:i()("aioseo-switcher-button",{active:"new-headline"===m})},r)),"new-headline"===m?Object(o.createElement)(d,null,Object(o.createElement)(l.a,{analyzer:t.analyzer,setAnalyzer:t.setAnalyzer})):Object(o.createElement)(s.a,{analyzer:t.analyzer}),f?Object(o.createElement)(c.a,{analyzer:t.analyzer}):"")}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=n(28),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(a=window.wp.components).PanelBody,u=a.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=e.analyzer.currentHeadlineData.sentence,a=s("Score",d),h=s("A good score is between 40 and 60. For best results, you should strive for 70 and above.",d),p=e.analyzer.currentHeadlineData.score,f=p<40?"red":p<=60?"orange":"green";e="red"==f?"#df2a4a":"orange"==f?"#F2994A":"#00aa63";switch(!0){case p<25:t=Object(r.createElement)("span",null,s("Not Looking Great",d));break;case p<50:t=Object(r.createElement)("span",null,s("Could Be Better",d));break;case p<60:t=Object(r.createElement)("span",null,s("Getting There",d));break;case p<75:t=Object(r.createElement)("span",null,s("Looks Good! 👍👍",d));break;case 75<p:t=Object(r.createElement)("span",null,s("Super! 🔥🔥🔥",d));break;default:t=!1}return Object(r.createElement)(l,null,Object(r.createElement)(c,{className:"aioseo-headline-analyzer-panel-score",title:a},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-current-score-tab aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("h4",{className:"aioseo-headline-analyzer-current-title"},"“",n,"”"),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-pie-chart-container"},Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-current-score",f)},p,Object(r.createElement)("span",{className:"aioseo-headline-analyzer-total-out-of-score"},"/ 100")),t&&Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-score-status",f)},t),Object(r.createElement)(i.a,{barScore:p,color:e})),Object(r.createElement)("p",null,h)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(27),a=n.n(r),o=n(0),i=n(22),s=(r=n(2),n.n(r)),l=window.wp.i18n.__,c=window.wp.element.Fragment,u=(r=window.wp.components).PanelBody,d=r.PanelRow,h=r.TextControl,p=r.Button,f=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){function t(t){(t=t.trim())&&Object(i.b)(window.aioseo.nonce).post("".concat(window.aioseo.urls.restUrl,"aioseo/v1/analyze_headline")).send({title:t}).then((function(t){e.setAnalyzer({newHeadlineData:t.body,headlineData:t.body,previousHeadlinesData:[e.analyzer.headlineData].concat(a()(b)),isNewData:!0})})).catch((function(t){e.setAnalyzer({isNewData:!1}),console.log(t)}))}var n=l("Try New Headline",f),r=l("Enter a different headline than your post title to see how it compares.",f),m=l("Analyze Headline",f),y=void 0!==e.analyzer.newHeadline?e.analyzer.newHeadline:"",b=void 0!==e.analyzer.previousHeadlinesData?e.analyzer.previousHeadlinesData:[],w=!y;return Object(o.createElement)(c,null,Object(o.createElement)(u,{title:n,className:s()("aioseo-headline-analyzer-panel-tab-new-score-form")},Object(o.createElement)(d,null,Object(o.createElement)("div",{className:"aioseo-headline-analyzer-new-tab"},Object(o.createElement)("div",{className:"aioseo-headline-analyzer-new-score-form-block"},Object(o.createElement)("form",{onSubmit:function(e){e.preventDefault(),t(y)}},Object(o.createElement)(h,{label:r,value:y,onChange:function(t){" "!==t&&e.setAnalyzer({newHeadline:t})},className:"aioseo-headline-analyzer-input-field"}),Object(o.createElement)(p,{className:s()("aioseo-headline-analyzer-button"),onClick:function(){t(y)},disabled:w},m)))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=n(28),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(a=window.wp.components).PanelBody,u=a.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=e.analyzer.currentHeadlineData.sentence,a=s("New Score",d),h=s("A good score is between 40 and 60. For best results, you should strive for 70 and above.",d),p=s("Current Score",d),f=void 0!==e.analyzer.newHeadlineData?e.analyzer.newHeadlineData.sentence:"",m=void 0!==e.analyzer.newHeadlineData?e.analyzer.newHeadlineData.score:"",y=void 0!==e.analyzer.currentHeadlineData.score?e.analyzer.currentHeadlineData.score:"",b=m<40?"red":m<=60?"orange":"green",w="red"==b?"#df2a4a":"orange"==b?"#F2994A":"#00aa63",g=y<40?"red-bg":y<=60?"orange-bg":"green-bg";e=Math.abs(m-y);switch(!0){case m<25:t=Object(r.createElement)("span",null,s("Not Looking Great",d));break;case m<50:t=Object(r.createElement)("span",null,s("Could Be Better",d));break;case m<60:t=Object(r.createElement)("span",null,s("Getting There",d));break;case m<75:t=Object(r.createElement)("span",null,s("Looks Good! 👍👍",d));break;case 75<m:t=Object(r.createElement)("span",null,s("Super! 🔥🔥🔥",d));break;default:t=!1}return Object(r.createElement)(l,null,Object(r.createElement)(c,{title:a,className:"aioseo-headline-analyzer-panel-tab-new-score"},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-new-score-panel"},Object(r.createElement)("p",null,h),Object(r.createElement)("h4",null,"“",f,"”"),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-pie-chart-container"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-new-score",b)},m),Object(r.createElement)(i.a,{barScore:m,color:w}),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score-difference",b)},y<m?"+ ":m===y?"":"- ",e),t&&Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-score-status",b)},t)),Object(r.createElement)("div",{className:"current-score"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score",g)},y),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-current-score-content"},Object(r.createElement)("h5",null,p),Object(r.createElement)("p",null,n))))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=window.wp.i18n.__,s=window.wp.element.Fragment,l=(a=window.wp.components).PanelBody,c=a.PanelRow;t.a=function(t){var n=i("Previous Scores",e.env.VUE_APP_TEXTDOMAIN),a="undefined"!==t.analyzer.previousHeadlinesData?t.analyzer.previousHeadlinesData:[],u=document.querySelector(".edit-post-sidebar"),d="current-score"===("undefined"!==t.analyzer.activeTab?t.analyzer.activeTab:"current-score")?390:300;return Object(r.createElement)(s,null,Object(r.createElement)(l,{title:n,className:"aioseo-headline-analyzer-panel-previous-scores"},Object(r.createElement)(c,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-previous-scores"},a.map((function(e,n){if(n<10&&(void 0!==e.sentence||void 0!==e.score)){var i=e.score<40?"red-bg":e.score<=60?"orange-bg":"green-bg";return Object(r.createElement)("li",{key:n,onClick:function(){t.setAnalyzer({newHeadlineData:a[n],headlineData:a[n],newHeadline:a[n].sentence,isNewData:!0}),u&&(u.scrollTop=d)}},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score",i)},e.score),Object(r.createElement)("span",{className:"aioseo-headline-analyzer-score-text"},e.sentence))}return null})))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o),s=n(25),l=window.wp.i18n.__,c=window.wp.element.Fragment,u=(o=window.wp.components).PanelBody,d=o.PanelRow,h=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=l("Word Balance",h),o=l("Compare the percentages of your results to the goal for each category and adjust as necessary.",h),p=e.data.score,f=e.data.score<40?"red":e.data.score<=60?"orange":"green",m=0===e.data.result.commonWordsPercentage?"red":e.data.result.commonWordsPercentage<.2?"orange":"green",y=0===e.data.result.commonWordsPercentage?"red-bg":e.data.result.commonWordsPercentage<.2?"orange-bg":"green-bg",b=e.data.result.commonWordsPercentage<.2?l("Your headline would be more likely to get clicks if it had more common words.",h):l("Headlines with 20-30% common words are more likely to get clicks.",h),w=0===e.data.result.uncommonWordsPercentage?"red":e.data.result.uncommonWordsPercentage<.1?"orange":"green",g=0===e.data.result.uncommonWordsPercentage?"red-bg":e.data.result.uncommonWordsPercentage<.1?"orange-bg":"green-bg",v=e.data.result.uncommonWordsPercentage<.1?l("Your headline would be more likely to get clicks if it had more uncommon words.",h):l("Headlines with uncommon words are more likely to get clicks.",h),E=0===e.data.result.emotionalWordsPercentage?"red":e.data.result.emotionalWordsPercentage<.1?"orange":"green",O=0===e.data.result.emotionalWordsPercentage?"red-bg":e.data.result.emotionalWordsPercentage<.1?"orange-bg":"green-bg",j=l("Emotionally triggered headlines are likely to drive more clicks.",h),_=0===e.data.result.powerWords.length?"orange":"green",T=0===e.data.result.powerWords.length?"orange":"green-bg",x=l("Headlines with Power Words are more likely to get clicks.",h),C=l("Common Words",h),z=l("20-30%",h),k=l("Uncommon Words",h),P=l("10-20%",h),A=l("Emotional Words",h),N=l("10-15%",h),S=l("Power Words",h),D=l("At least one",h);switch(!0){case p<25:t=Object(r.createElement)("span",null,l("Not Looking Great",h));break;case p<50:t=Object(r.createElement)("span",null,l("Could Be Better",h));break;case p<60:t=Object(r.createElement)("span",null,l("Getting There",h));break;case p<75:t=Object(r.createElement)("span",null,l("Looks Good! 👍👍",h));break;case 75<p:t=Object(r.createElement)("span",null,l("Super! 🔥🔥🔥",h));break;default:t=!1}return Object(r.createElement)(c,null,Object(r.createElement)(u,{title:n,className:i()("aioseo-headline-analyzer-panel-word-balance","aioseo-headline-analyzer-panel-has-icon",f),icon:"green"==f?a.a.check:a.a.warning},Object(r.createElement)(d,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block"},Object(r.createElement)("h4",null,t),Object(r.createElement)("p",null,o)),Object(r.createElement)(s.a,{title:C,value:Math.round(100*e.data.result.commonWordsPercentage),goalValue:z,words:e.data.result.commonWords,guideLine:b,classOnScore:m,classOnScoreBg:y}),Object(r.createElement)(s.a,{title:k,value:Math.round(100*e.data.result.uncommonWordsPercentage),goalValue:P,words:e.data.result.uncommonWords,guideLine:v,classOnScore:w,classOnScoreBg:g}),Object(r.createElement)(s.a,{title:A,value:Math.round(100*e.data.result.emotionalWordsPercentage),goalValue:N,words:e.data.result.emotionWords,guideLine:j,classOnScore:E,classOnScoreBg:O}),Object(r.createElement)(s.a,{title:S,value:Math.round(100*e.data.result.powerWordsPercentage),goalValue:D,words:e.data.result.powerWords,guideLine:x,classOnScore:_,classOnScoreBg:T}))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(o=window.wp.components).PanelBody,u=o.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=s("Your headline has a neutral sentiment.",d),n=s("Headlines that are strongly positive or negative tend to get more engagement then neutral ones.",d),o=s("Your headline has a positive sentiment.",d),h=s("Positive headlines tend to get better engagement than neutral or negative ones.",d),p=s("Your headline has a negative sentiment.",d),f=s("Negative headlines are attention-grabbing and tend to perform better than neutral ones.",d),m=s("Sentiment",d),y="neu"===e.data.result.sentiment?s("Neutral",d):"pos"===e.data.result.sentiment?s("Positive",d):s("Negative",d),b="neu"===e.data.result.sentiment?a.a.neutral:"pos"===e.data.result.sentiment?a.a.smile:a.a.negative,w="neu"===e.data.result.sentiment?"orange":"pos"===e.data.result.sentiment?"green":"red";return Object(r.createElement)(l,null,Object(r.createElement)(c,{title:m,className:i()("aioseo-headline-analyzer-panel-sentiment","aioseo-headline-analyzer-panel-has-icon",w),icon:b},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("h4",null,y),"neu"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,t),Object(r.createElement)("br",null),n):"","pos"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,o),Object(r.createElement)("br",null),h):"","neg"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,p),Object(r.createElement)("br",null)," ",f):""))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r,a=n(0),o=(r=window.wp.i18n).__,i=r.sprintf,s=window.wp.element.Fragment,l=(r=window.wp.components).PanelBody,c=r.PanelRow;t.a=function(t){var n=t.data.result.headlineTypes.join(", "),r=o("Headline Type",e.env.VUE_APP_TEXTDOMAIN);t=Object(a.createElement)("span",{className:"aioseo-headline-analyzer-panel-types-title"},r,Object(a.createElement)("span",null,n)),r=i(o("Headlines that are lists and how-to get more engagement on average than other types of headlines. %1sRead more about %2sdifferent types of headlines here%3s →%4s",e.env.VUE_APP_TEXTDOMAIN),"<br/><br/>",'<a href="https://optinmonster.com/why-these-21-headlines-went-viral-and-how-you-can-copy-their-success/" target="_blank" className="aioseo-headline-analyzer-link"><span>',"</span>","</a>");return Object(a.createElement)(s,null,Object(a.createElement)(l,{title:t,className:"aioseo-headline-analyzer-panel-types"},Object(a.createElement)(c,null,Object(a.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(a.createElement)("h4",null,n),Object(a.createElement)("p",{dangerouslySetInnerHTML:{__html:r}})))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o);function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return{s:t=function(){},n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return o=e.done,e},e:function(e){i=!0,a=e},f:function(){try{o||null==n.return||n.return()}finally{if(i)throw a}}}}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var c=window.wp.i18n.__,u=window.wp.element.Fragment,d=(o=window.wp.components).PanelBody,h=o.PanelRow,p=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=c("Character Count",p),n=e.data.result.length,o=n.toString(),l="",f="",m=(e="","");if(1===o.length&&(m='<span class="character-zero">0</span><span class="character-zero">0</span><span>'.concat(n,"</span>")),2===o.length){m='<span class="character-zero">0</span>';var y,b=s(o);try{for(b.s();!(y=b.n()).done;){var w=y.value;m+="<span>".concat(w,"</span>")}}catch(e){b.e(e)}finally{b.f()}}if(3===n.toString().length){var g,v=s(o);try{for(v.s();!(g=v.n()).done;){var E=g.value;m+="<span>".concat(E,"</span>")}}catch(e){v.e(e)}finally{v.f()}}return n<=19?l="red":20<=n&&n<=34?l="orange":35<=n&&n<=66?l="green":67<=n&&n<=79?l="orange":80<=n&&(l="red"),n<=34?(f=c("Too Short 🙃",p),e=c("You have space to add more keywords and power words to boost your rankings and click-through rate.",p)):35<=n&&n<=66?(f=c("Good 🙂",p),e=c("Headlines that are about 55 characters long will display fully in search results and tend to get more clicks.",p)):67<=n&&(f=c("Too Long 😑",p),e=c("At this length, it will get cut off in search results. Try reducing it to about 55 characters.",p)),Object(r.createElement)(u,null,Object(r.createElement)(d,{title:t,className:i()("aioseo-headline-analyzer-panel-character-count","aioseo-headline-analyzer-panel-has-icon",l),icon:"green"===l?a.a.check:a.a.warning},Object(r.createElement)(h,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-character-count-container"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-status-on-character-length"},f),Object(r.createElement)("span",{className:i()("aioseo-headline-analyzer-character-length",l),dangerouslySetInnerHTML:{__html:m}})),Object(r.createElement)("p",null,e)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o);function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return{s:t=function(){},n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return o=e.done,e},e:function(e){i=!0,a=e},f:function(){try{o||null==n.return||n.return()}finally{if(i)throw a}}}}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var c=window.wp.i18n.__,u=window.wp.element.Fragment,d=(o=window.wp.components).PanelBody,h=o.PanelRow,p=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=c("Word Count",p),n=e.data.result.wordCount,o=n.toString(),l="",f="",m=(e="","");if(1===o.length&&(m='<span class="character-zero">0</span><span class="character-zero">0</span><span>'.concat(n,"</span>")),2===o.length){m='<span class="character-zero">0</span>';var y,b=s(o);try{for(b.s();!(y=b.n()).done;){var w=y.value;m+="<span>".concat(w,"</span>")}}catch(e){b.e(e)}finally{b.f()}}if(3===o.length){var g,v=s(o);try{for(v.s();!(g=v.n()).done;){var E=g.value;m+="<span>".concat(E,"</span>")}}catch(e){v.e(e)}finally{v.f()}}return n<=4?(l="red",f=c("Not Enough Words 🙃",p),e=c("Your headline doesn’t use enough words. You have more space to add keywords and power words to improve your SEO and get more engagement.",p)):5<=n&&n<=9?(l="green",f=c("Good 🙂",p),e=c("Your headline has the right amount of words. Headlines are more likely to be clicked on in search results if they have about 6 words.",p)):10<=n&&n<=11?(l="orange",f=c("Reduce Word Count 🙂",p)):(l="red",f=c("Too Many Words 😑",p),e=c("Your headline has too many words. Long headlines will get cut off in search results and won’t get as many clicks.",p)),Object(r.createElement)(u,null,Object(r.createElement)(d,{title:t,className:i()("aioseo-headline-analyzer-panel-word-count","aioseo-headline-analyzer-panel-has-icon",l),icon:"green"===l?a.a.check:a.a.warning},Object(r.createElement)(h,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-word-counter"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-status-on-word-length"},f),Object(r.createElement)("span",{className:i()("aioseo-headline-analyzer-word-length",l),dangerouslySetInnerHTML:{__html:m}})),Object(r.createElement)("p",null,e)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=window.wp.i18n.__,o=window.wp.element.Fragment,i=window.wp.components,s=i.PanelBody,l=i.PanelRow,c=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=a("Beginning & Ending Words",c),n=e.data.result.originalExplodedHeadline,i=a("Most readers only look at the first and last 3 words of a headline before deciding whether to click.",c),u="";e="";return 6<=n.length?(u=n.slice(0,3).join(" "),e=n.slice(-3).join(" ")):3<n.length&&n.length<=5?(u=n.slice(0,3).join(" "),e=n.slice(3).join(" ")):u=n.slice(0,3).join(" "),Object(r.createElement)(o,null,Object(r.createElement)(s,{title:t,className:"aioseo-headline-analyzer-panel-beginning-ending-words"},Object(r.createElement)(l,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},u?Object(r.createElement)(o,null,Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-word-begining-title"},Object(r.createElement)("li",null,a("Beginning Words",c))),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words beginning"},Object(r.createElement)("span",null,u))):"",e?Object(r.createElement)(o,null,Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-word-ending-title"},Object(r.createElement)("li",null,a("Ending Words",c))),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words ending"},Object(r.createElement)("span",null,e))):"",Object(r.createElement)("p",{className:"aioseo-headline-analyzer-words-guideline"},i)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(57),a=n.n(r),o=n(0),i=window.wp.i18n.__,s=window.wp.element.Fragment,l=(r=window.wp.components).PanelBody,c=r.PanelRow,u=window.wp.data.select;t.a=function(t){var n=i("Search Preview",e.env.VUE_APP_TEXTDOMAIN),r=i("Here is how your headline will look like in Google search results page.",e.env.VUE_APP_TEXTDOMAIN),d=u("core/editor").getPermalink(),h={href:d};return Object(o.createElement)(s,null,Object(o.createElement)(l,{title:n,className:"aioseo-headline-analyzer-panel-search-preview"},Object(o.createElement)(c,null,Object(o.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(o.createElement)("div",{className:"aioseo-headline-analyzer-search-prevew-wrap"},Object(o.createElement)("p",{className:"aioseo-headline-analyzer-post-url"},Object(o.createElement)("a",a()({},h,{target:"_blank"}),d)),Object(o.createElement)("h4",null,t.data.sentence),Object(o.createElement)("p",null,r))))))}}).call(this,n(10))},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,r=arguments[t];for(n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.default=e.exports,e.exports.__esModule=!0,n.apply(this,arguments)}e.exports=n,e.exports.default=e.exports,e.exports.__esModule=!0},,,,,,,,,function(e,t,n){n(67),e.exports=n(80)},function(e,t,n){"use strict";n.r(t),function(e){var t=n(26),r=n.n(t),a=n(27),o=n.n(a),i=n(43),s=n.n(i),l=n(0),c=(t=n(9),n(22)),u=n(45),d=n(49),h=n(50),p=n(51),f=n(52),m=n(53),y=n(54),b=n(55),w=n(56);function g(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function v(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?g(Object(n),!0).forEach((function(t){s()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):g(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var E=(a=window.wp.i18n).__,O=a.sprintf,j=(i=window.wp.element).Fragment,_=i.useState,T=i.useEffect,x=(a=window.wp.plugins.registerPlugin,(i=window.wp.editPost).PluginSidebar),C=i.PluginSidebarMoreMenuItem,z=window.wp.data.select,k=e.env.VUE_APP_TEXTDOMAIN;a("aioseo-headline-analyzer",{icon:t.a.headline,render:function(){function e(){t?Object(c.b)(window.aioseo.nonce).post("".concat(window.aioseo.urls.restUrl,"aioseo/v1/analyze_headline")).send({title:t}).then((function(e){var t={dataExist:!1};e.body.analysed&&(t.currentHeadlineData=e.body,t.headlineData=e.body,t.dataExist=!0,void 0!==g.headlineData&&(t.previousHeadlinesData=[g.headlineData].concat(o()(A)))),P(v(v({},g),t))})).catch((function(e){P(v(v({},g),{dataExist:!1})),console.log("Couldn't fetch score for headline:",e)})):P(v(v({},g),{dataExist:!1}))}var t=z("core/editor").getEditedPostAttribute("title");T(e,[]),window.wp.data.subscribe((function(){t!==z("core/editor").getEditedPostAttribute("title")&&(t=z("core/editor").getEditedPostAttribute("title"),Object(c.a)(e,2e3))}));var n=E("SEO Headline Analyzer",k),a=E("Write your post title to see the analyzer data. This Headline Analyzer tool enables you to write irresistible SEO headlines that drive traffic, shares, and rank better in search results.",k),i=_({}),s=r()(i,2),g=s[0],P=s[1],A=void 0!==g.previousHeadlinesData?g.previousHeadlinesData:[],N=O(E("This headline analyzer is part of AIOSEO to help you increase your traffic. %1sAnalyze your site further here%2s →%3s",k),O('<a href="%1$s" className="aioseo-headline-analyzer-link" target="_blank"><span>',window.aioseo.urls.aio.seoAnalysis),"</span>","</a>"),S=document.querySelector(".components-button[aria-label='".concat(n,"'] svg"));S&&(i=document.createElement("span"),g.dataExist&&void 0!==g.currentHeadlineData.score?(s=g.currentHeadlineData.score,S.parentNode.setAttribute("aioseo-button-color",s<40?"red":s<=60?"orange":"green"),S.nextElementSibling?S.nextElementSibling.innerHTML="".concat(s,"/100"):(i.innerHTML="".concat(s,"/100"),S.parentNode.insertBefore(i,S.nextSibling))):(S.parentNode.setAttribute("aioseo-button-color","red"),S.nextElementSibling?S.nextElementSibling.innerHTML="00/100":(i.innerHTML="00/100",S.parentNode.insertBefore(i,S.nextSibling)))),!(S=document.querySelector(".aioseo-headline-analyzer-wrapper"))||(D=S.parentNode.querySelectorAll(".components-panel__header"))&&D.forEach((function(e){(e=e.querySelector('[aria-pressed="true"]'))&&null!==e&&(e.style.display="none")}));var D=function(e){P(v(v({},g),e))};return Object(l.createElement)(j,null,Object(l.createElement)(C,{target:"aioseo-headline-analyzer"},n),Object(l.createElement)(x,{name:"aioseo-headline-analyzer",title:n,className:"aioseo-headline-analyzer-wrapper"},void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(u.a,{analyzer:g,setAnalyzer:D}):Object(l.createElement)("p",{className:"aioseo-headline-analyzer-empty-title-warning"},a),void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed&&0<A.length?Object(l.createElement)(d.a,{analyzer:g,setAnalyzer:D}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(h.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(p.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(f.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(m.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(y.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(b.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(w.a,{data:g.headlineData}):"",Object(l.createElement)("div",{className:"aioseo-headline-analyzer-bottom-notice"},Object(l.createElement)("p",{dangerouslySetInnerHTML:{__html:N}}))))}})}.call(this,n(10))},function(e,t){e.exports=function(e){if(Array.isArray(e))return e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,o=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(o.push(r.value),!t||o.length!==t);i=!0);}catch(e){s=!0,a=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw a}}return o}},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(34);e.exports=function(e){if(Array.isArray(e))return r(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){function r(e){if(e)return function(e){for(var t in r.prototype)e[t]=r.prototype[t];return e}(e)}(e.exports=r).prototype.on=r.prototype.addEventListener=function(e,t){return this._callbacks=this._callbacks||{},(this._callbacks["$"+e]=this._callbacks["$"+e]||[]).push(t),this},r.prototype.once=function(e,t){function n(){this.off(e,n),t.apply(this,arguments)}return n.fn=t,this.on(e,n),this},r.prototype.off=r.prototype.removeListener=r.prototype.removeAllListeners=r.prototype.removeEventListener=function(e,t){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,r=this._callbacks["$"+e];if(!r)return this;if(1==arguments.length)return delete this._callbacks["$"+e],this;for(var a=0;a<r.length;a++)if((n=r[a])===t||n.fn===t){r.splice(a,1);break}return 0===r.length&&delete this._callbacks["$"+e],this},r.prototype.emit=function(e){this._callbacks=this._callbacks||{};for(var t=new Array(arguments.length-1),n=this._callbacks["$"+e],r=1;r<arguments.length;r++)t[r-1]=arguments[r];if(n){r=0;for(var a=(n=n.slice(0)).length;r<a;++r)n[r].apply(this,t)}return this},r.prototype.listeners=function(e){return this._callbacks=this._callbacks||{},this._callbacks["$"+e]||[]},r.prototype.hasListeners=function(e){return!!this.listeners(e).length}},function(e,t){((e.exports=a).default=a).stable=i,a.stableStringify=i;var n=[],r=[];function a(e,t,a){for(function e(t,a,o,i){var s;if("object"==typeof t&&null!==t){for(s=0;s<o.length;s++)if(o[s]===t){var l=Object.getOwnPropertyDescriptor(i,a);return void(void 0!==l.get?l.configurable?(Object.defineProperty(i,a,{value:"[Circular]"}),n.push([i,a,t,l])):r.push([t,a]):(i[a]="[Circular]",n.push([i,a,t])))}if(o.push(t),Array.isArray(t))for(s=0;s<t.length;s++)e(t[s],s,o,t);else{var c=Object.keys(t);for(s=0;s<c.length;s++){var u=c[s];e(t[u],u,o,t)}}o.pop()}}(e,"",[],void 0),a=0===r.length?JSON.stringify(e,t,a):JSON.stringify(e,s(t),a);0!==n.length;){var o=n.pop();4===o.length?Object.defineProperty(o[0],o[1],o[3]):o[0][o[1]]=o[2]}return a}function o(e,t){return e<t?-1:t<e?1:0}function i(e,t,a){for(e=function e(t,a,i,s){var l;if("object"==typeof t&&null!==t){for(l=0;l<i.length;l++)if(i[l]===t){var c=Object.getOwnPropertyDescriptor(s,a);return void(void 0!==c.get?c.configurable?(Object.defineProperty(s,a,{value:"[Circular]"}),n.push([s,a,t,c])):r.push([t,a]):(s[a]="[Circular]",n.push([s,a,t])))}if("function"!=typeof t.toJSON){if(i.push(t),Array.isArray(t))for(l=0;l<t.length;l++)e(t[l],l,i,t);else{var u={},d=Object.keys(t).sort(o);for(l=0;l<d.length;l++){var h=d[l];e(t[h],h,i,t),u[h]=t[h]}if(void 0===s)return u;n.push([s,a,t]),s[a]=u}i.pop()}}}(e,"",[],void 0)||e,a=0===r.length?JSON.stringify(e,t,a):JSON.stringify(e,s(t),a);0!==n.length;){var i=n.pop();4===i.length?Object.defineProperty(i[0],i[1],i[3]):i[0][i[1]]=i[2]}return a}function s(e){return e=void 0!==e?e:function(e,t){return t},function(t,n){if(0<r.length)for(var a=0;a<r.length;a++){var o=r[a];if(o[1]===t&&o[0]===n){n="[Circular]",r.splice(a,1);break}}return e.call(this,t,n)}}},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var a=n(35);function o(e){if(e)return function(e){for(var t in o.prototype)Object.prototype.hasOwnProperty.call(o.prototype,t)&&(e[t]=o.prototype[t]);return e}(e)}(e.exports=o).prototype.clearTimeout=function(){return clearTimeout(this._timer),clearTimeout(this._responseTimeoutTimer),clearTimeout(this._uploadTimeoutTimer),delete this._timer,delete this._responseTimeoutTimer,delete this._uploadTimeoutTimer,this},o.prototype.parse=function(e){return this._parser=e,this},o.prototype.responseType=function(e){return this._responseType=e,this},o.prototype.serialize=function(e){return this._serializer=e,this},o.prototype.timeout=function(e){if(!e||"object"!==r(e))return this._timeout=e,this._responseTimeout=0,this._uploadTimeout=0,this;for(var t in e)if(Object.prototype.hasOwnProperty.call(e,t))switch(t){case"deadline":this._timeout=e.deadline;break;case"response":this._responseTimeout=e.response;break;case"upload":this._uploadTimeout=e.upload;break;default:console.warn("Unknown timeout option",t)}return this},o.prototype.retry=function(e,t){return this._maxRetries=e=(e=0===arguments.length||!0===e?1:e)<=0?0:e,this._retries=0,this._retryCallback=t,this};var i=["ECONNRESET","ETIMEDOUT","EADDRINFO","ESOCKETTIMEDOUT"];o.prototype._shouldRetry=function(e,t){if(!this._maxRetries||this._retries++>=this._maxRetries)return!1;if(this._retryCallback)try{var n=this._retryCallback(e,t);if(!0===n)return!0;if(!1===n)return!1}catch(e){console.error(e)}if(t&&t.status&&500<=t.status&&501!==t.status)return!0;if(e){if(e.code&&i.includes(e.code))return!0;if(e.timeout&&"ECONNABORTED"===e.code)return!0;if(e.crossDomain)return!0}return!1},o.prototype._retry=function(){return this.clearTimeout(),this.req&&(this.req=null,this.req=this.request()),this._aborted=!1,this.timedout=!1,this.timedoutError=null,this._end()},o.prototype.then=function(e,t){var n,r=this;return this._fullfilledPromise||((n=this)._endCalled&&console.warn("Warning: superagent request was sent twice, because both .end() and .then() were called. Never call .end() if you use promises"),this._fullfilledPromise=new Promise((function(e,t){n.on("abort",(function(){var e;r.timedout&&r.timedoutError?t(r.timedoutError):((e=new Error("Aborted")).code="ABORTED",e.status=r.status,e.method=r.method,e.url=r.url,t(e))})),n.end((function(n,r){n?t(n):e(r)}))}))),this._fullfilledPromise.then(e,t)},o.prototype.catch=function(e){return this.then(void 0,e)},o.prototype.use=function(e){return e(this),this},o.prototype.ok=function(e){if("function"!=typeof e)throw new Error("Callback required");return this._okCallback=e,this},o.prototype._isResponseOK=function(e){return!!e&&(this._okCallback?this._okCallback(e):200<=e.status&&e.status<300)},o.prototype.getHeader=o.prototype.get=function(e){return this._header[e.toLowerCase()]},o.prototype.set=function(e,t){if(a(e)){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&this.set(n,e[n]);return this}return this._header[e.toLowerCase()]=t,this.header[e]=t,this},o.prototype.unset=function(e){return delete this._header[e.toLowerCase()],delete this.header[e],this},o.prototype.field=function(e,t){if(null==e)throw new Error(".field(name, val) name can not be empty");if(this._data)throw new Error(".field() can't be used if .send() is used. Please use only .send() or only .field() & .attach()");if(a(e)){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&this.field(n,e[n]);return this}if(Array.isArray(t)){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&this.field(e,t[r]);return this}if(null==t)throw new Error(".field(name, val) val can not be empty");return"boolean"==typeof t&&(t=String(t)),this._getFormData().append(e,t),this},o.prototype.abort=function(){return this._aborted||(this._aborted=!0,this.xhr&&this.xhr.abort(),this.req&&this.req.abort(),this.clearTimeout(),this.emit("abort")),this},o.prototype._auth=function(e,t,n,r){switch(n.type){case"basic":this.set("Authorization","Basic ".concat(r("".concat(e,":").concat(t))));break;case"auto":this.username=e,this.password=t;break;case"bearer":this.set("Authorization","Bearer ".concat(e))}return this},o.prototype.withCredentials=function(e){return this._withCredentials=e=void 0===e||e,this},o.prototype.redirects=function(e){return this._maxRedirects=e,this},o.prototype.maxResponseSize=function(e){if("number"!=typeof e)throw new TypeError("Invalid argument");return this._maxResponseSize=e,this},o.prototype.toJSON=function(){return{method:this.method,url:this.url,data:this._data,headers:this._header}},o.prototype.send=function(e){var t=a(e),n=this._header["content-type"];if(this._formData)throw new Error(".send() can't be used if .attach() or .field() is used. Please use only .send() or only .field() & .attach()");if(t&&!this._data)Array.isArray(e)?this._data=[]:this._isHost(e)||(this._data={});else if(e&&this._data&&this._isHost(this._data))throw new Error("Can't merge these send calls");if(t&&a(this._data))for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(this._data[r]=e[r]);else"string"==typeof e?(n||this.type("form"),n=this._header["content-type"],this._data="application/x-www-form-urlencoded"===n?this._data?"".concat(this._data,"&").concat(e):e:(this._data||"")+e):this._data=e;return!t||this._isHost(e)||n||this.type("json"),this},o.prototype.sortQuery=function(e){return this._sort=void 0===e||e,this},o.prototype._finalizeQueryString=function(){var e,t=this._query.join("&");t&&(this.url+=(this.url.includes("?")?"&":"?")+t),this._query.length=0,!this._sort||0<=(e=this.url.indexOf("?"))&&(t=this.url.slice(e+1).split("&"),"function"==typeof this._sort?t.sort(this._sort):t.sort(),this.url=this.url.slice(0,e)+"?"+t.join("&"))},o.prototype._appendQueryString=function(){console.warn("Unsupported")},o.prototype._timeoutError=function(e,t,n){this._aborted||((e=new Error("".concat(e+t,"ms exceeded"))).timeout=t,e.code="ECONNABORTED",e.errno=n,this.timedout=!0,this.timedoutError=e,this.abort(),this.callback(e))},o.prototype._setTimeouts=function(){var e=this;this._timeout&&!this._timer&&(this._timer=setTimeout((function(){e._timeoutError("Timeout of ",e._timeout,"ETIME")}),this._timeout)),this._responseTimeout&&!this._responseTimeoutTimer&&(this._responseTimeoutTimer=setTimeout((function(){e._timeoutError("Response timeout of ",e._responseTimeout,"ETIMEDOUT")}),this._responseTimeout))}},function(e,t,n){"use strict";var r=n(78);function a(e){if(e)return function(e){for(var t in a.prototype)Object.prototype.hasOwnProperty.call(a.prototype,t)&&(e[t]=a.prototype[t]);return e}(e)}(e.exports=a).prototype.get=function(e){return this.header[e.toLowerCase()]},a.prototype._setHeaderProperties=function(e){var t=e["content-type"]||"";this.type=r.type(t);var n,a=r.params(t);for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(this[n]=a[n]);this.links={};try{e.link&&(this.links=r.parseLinks(e.link))}catch(e){}},a.prototype._setStatusProperties=function(e){var t=e/100|0;this.statusCode=e,this.status=this.statusCode,this.statusType=t,this.info=1==t,this.ok=2==t,this.redirect=3==t,this.clientError=4==t,this.serverError=5==t,this.error=(4==t||5==t)&&this.toError(),this.created=201===e,this.accepted=202===e,this.noContent=204===e,this.badRequest=400===e,this.unauthorized=401===e,this.notAcceptable=406===e,this.forbidden=403===e,this.notFound=404===e,this.unprocessableEntity=422===e}},function(e,t,n){"use strict";t.type=function(e){return e.split(/ *; */).shift()},t.params=function(e){return e.split(/ *; */).reduce((function(e,t){t=(n=t.split(/ *= */)).shift();var n=n.shift();return t&&n&&(e[t]=n),e}),{})},t.parseLinks=function(e){return e.split(/ *, */).reduce((function(e,t){var n=t.split(/ *; */);t=n[0].slice(1,-1);return e[n[1].split(/ *= */)[1].slice(1,-1)]=t,e}),{})},t.cleanHeader=function(e,t){return delete e["content-type"],delete e["content-length"],delete e["transfer-encoding"],delete e.host,t&&(delete e.authorization,delete e.cookie),e}},function(e,t,n){"use strict";function r(){this._defaults=[]}["use","on","once","set","query","type","accept","auth","withCredentials","sortQuery","retry","ok","redirects","timeout","buffer","serialize","parse","ca","key","pfx","cert","disableTLSCerts"].forEach((function(e){r.prototype[e]=function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return this._defaults.push({fn:e,args:n}),this}})),r.prototype._setDefaults=function(e){this._defaults.forEach((function(t){e[t.fn].apply(e,function(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t<e.length;t++)n[t]=e[t];return n}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}(t.args))}))},e.exports=r},function(e,t,n){"use strict";n.r(t)}]);
1
+ /*! ! built on Tuesday, September 14th 2021, 11:55:41 am */
2
  !function(e){var t={};function n(r){if(t[r])return t[r].exports;var a=t[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.l=!0,a.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)n.d(r,a,function(t){return e[t]}.bind(null,a));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=66)}([function(e,t){e.exports=window.wp.element},,function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function a(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var o,i=typeof r;if("string"==i||"number"==i)e.push(r);else if(Array.isArray(r))!r.length||(o=a.apply(null,r))&&e.push(o);else if("object"==i)if(r.toString===Object.prototype.toString)for(var s in r)n.call(r,s)&&r[s]&&e.push(s);else e.push(r.toString())}}return e.join(" ")}e.exports?(a.default=a,e.exports=a):void 0===(r=function(){return a}.apply(t,[]))||(e.exports=r)}()},,,,,,,function(e,t,n){"use strict";var r=n(0);(n={}).headline=Object(r.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15.817 2H22v.038l-6.183 4.226V2.001zm-7.62 9.473V2H2.016v4.683-.267l6.126 5.094.057-.038zm-6.182 5.061l6.183 4.213v1.252H2.015v-5.465zm13.802-.857L22 11.559v10.437h-6.183v-6.32z",fill:"#141B38"}),Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.198 11.435l-.057.039L2.016 6.38v.265-4.644h6.182v9.434zm0 9.226L2.015 16.45v5.55h6.183v-1.337zm7.62-5.07L22 11.474v10.522h-6.183v-6.405zM22 2.001l-6.183 4.226V2H22z",fill:"#141B38"}),Object(r.createElement)("path",{d:"M8.141 13.537L22 4.064v5.432l-13.8 9.19L2 14.46l.016-6.018 6.125 5.094z",fill:"#141B38"})),n.headlineBlack=Object(r.createElement)("svg",{width:"15",height:"14",viewBox:"0 0 15 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{d:"M13.5 2V12H14.5C14.6458 12 14.7604 12.0521 14.8438 12.1562C14.9479 12.2396 15 12.3542 15 12.5V13.5C15 13.6458 14.9479 13.7604 14.8438 13.8438C14.7604 13.9479 14.6458 14 14.5 14H9.5C9.35417 14 9.22917 13.9479 9.125 13.8438C9.04167 13.7604 9 13.6458 9 13.5V12.5C9 12.3542 9.04167 12.2396 9.125 12.1562C9.22917 12.0521 9.35417 12 9.5 12H10.5V8H4.5V12H5.5C5.64583 12 5.76042 12.0521 5.84375 12.1562C5.94792 12.2396 6 12.3542 6 12.5V13.5C6 13.6458 5.94792 13.7604 5.84375 13.8438C5.76042 13.9479 5.64583 14 5.5 14H0.5C0.354167 14 0.229167 13.9479 0.125 13.8438C0.0416667 13.7604 0 13.6458 0 13.5V12.5C0 12.3542 0.0416667 12.2396 0.125 12.1562C0.229167 12.0521 0.354167 12 0.5 12H1.5V2H0.5C0.354167 2 0.229167 1.95833 0.125 1.875C0.0416667 1.77083 0 1.64583 0 1.5V0.5C0 0.354167 0.0416667 0.239583 0.125 0.15625C0.229167 0.0520833 0.354167 0 0.5 0H5.5C5.64583 0 5.76042 0.0520833 5.84375 0.15625C5.94792 0.239583 6 0.354167 6 0.5V1.5C6 1.64583 5.94792 1.77083 5.84375 1.875C5.76042 1.95833 5.64583 2 5.5 2H4.5V6H10.5V2H9.5C9.35417 2 9.22917 1.95833 9.125 1.875C9.04167 1.77083 9 1.64583 9 1.5V0.5C9 0.354167 9.04167 0.239583 9.125 0.15625C9.22917 0.0520833 9.35417 0 9.5 0H14.5C14.6458 0 14.7604 0.0520833 14.8438 0.15625C14.9479 0.239583 15 0.354167 15 0.5V1.5C15 1.64583 14.9479 1.77083 14.8438 1.875C14.7604 1.95833 14.6458 2 14.5 2H13.5Z",fill:"#000"})),n.warning=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM11 5.00002H9V11H11V5.00002ZM11 13H9V15H11V13ZM2.00002 10C2.00002 14.42 5.58002 18 10 18C14.42 18 18 14.42 18 10C18 5.58002 14.42 2.00002 10 2.00002C5.58002 2.00002 2.00002 5.58002 2.00002 10Z",fill:"#005AE0"})),n.smile=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM6.5 6C5.67157 6 5 6.67157 5 7.5C5 8.32843 5.67157 9 6.5 9C7.32843 9 8 8.32843 8 7.5C8 6.67157 7.32843 6 6.5 6ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM6.55 12C7.25 13.19 8.52 14 10 14C11.48 14 12.75 13.19 13.45 12H15.12C14.32 14.05 12.33 15.5 10 15.5C7.67 15.5 5.68 14.05 4.88 12H6.55ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#00AA63"})),n.neutral=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM5 7.5C5 6.67157 5.67157 6 6.5 6C7.32843 6 8 6.67157 8 7.5C8 8.32843 7.32843 9 6.5 9C5.67157 9 5 8.32843 5 7.5ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM7 13.5V12H13V13.5H7ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#005AE0"})),n.negative=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM6.5 6C5.67157 6 5 6.67157 5 7.5C5 8.32843 5.67157 9 6.5 9C7.32843 9 8 8.32843 8 7.5C8 6.67157 7.32843 6 6.5 6ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM4.88 15.5C5.68 13.45 7.67 12 10 12C12.33 12 14.32 13.45 15.12 15.5H13.45C12.75 14.31 11.48 13.5 10 13.5C8.52 13.5 7.24 14.31 6.55 15.5H4.88ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#DF2A4A"})),n.check=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 0C4.48 0 0 4.48 0 10C0 15.52 4.48 20 10 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM8 12.17L14.59 5.58L16 7L8 15L4 11L5.41 9.59L8 12.17Z",fill:"#00AA63"})),t.a=n},function(e,t){var n,r;e=e.exports={};function a(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function i(e){if(n===setTimeout)return setTimeout(e,0);if((n===a||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:a}catch(e){n=a}try{r="function"==typeof clearTimeout?clearTimeout:o}catch(e){r=o}}();var s,l=[],c=!1,u=-1;function d(){c&&s&&(c=!1,s.length?l=s.concat(l):u=-1,l.length&&h())}function h(){if(!c){var e=i(d);c=!0;for(var t=l.length;t;){for(s=l,l=[];++u<t;)s&&s[u].run();u=-1,t=l.length}s=null,c=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===o||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function p(e,t){this.fun=e,this.array=t}function f(){}e.nextTick=function(e){var t=new Array(arguments.length-1);if(1<arguments.length)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new p(e,t)),1!==l.length||c||i(h)},p.prototype.run=function(){this.fun.apply(null,this.array)},e.title="browser",e.browser=!0,e.env={},e.argv=[],e.version="",e.versions={},e.on=f,e.addListener=f,e.once=f,e.off=f,e.removeListener=f,e.removeAllListeners=f,e.emit=f,e.prependListener=f,e.prependOnceListener=f,e.listeners=function(e){return[]},e.binding=function(e){throw new Error("process.binding is not supported")},e.cwd=function(){return"/"},e.chdir=function(e){throw new Error("process.chdir is not supported")},e.umask=function(){return 0}},,,,,,,,,,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return o})),n.d(t,"b",(function(){return i}));t=n(44);var r,a=n.n(t),o=function(e,t){return function(){for(var n=arguments.length,a=new Array(n),o=0;o<n;o++)a[o]=arguments[o];clearTimeout(r),r=setTimeout((function(){return e.apply(void 0,a)}),t)}.call()},i=function(e){return a.a.agent().set("X-WP-Nonce",e).use((function(e){e.on("response",(function(e){(401===e.status||403===e.status)&&console.error(e)}))}))}},,,function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=window.wp.i18n.__;t.a=function(t){var n=i("Goal: ",e.env.VUE_APP_TEXTDOMAIN),a={width:t.value+"%"};return Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block"},Object(r.createElement)("h5",null,t.title),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block-data"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-words-block-percentage",t.classOnScore)},t.value,"%"),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-words-block-percentage-right-column",t.classOnScore)},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-words-block-goal"},n," ",t.goalValue),Object(r.createElement)("span",{className:"aioseo-headline-analyzer-words-block-progressbar"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-progressbar-bg"}),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-progressbar-part",t.classOnScoreBg),style:a})))),Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-words-tag-list"},0<t.words.length?t.words.map((function(e,t){return Object(r.createElement)("li",{key:t},e)})):""),Object(r.createElement)("p",{className:"aioseo-headline-analyzer-words-guideline"},t.guideLine))}}).call(this,n(10))},function(e,t,n){var r=n(68),a=n(69),o=n(33),i=n(70);e.exports=function(e,t){return r(e)||a(e,t)||o(e,t)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(71),a=n(72),o=n(33),i=n(73);e.exports=function(e){return r(e)||a(e)||o(e)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";var r=n(0),a=window.wp.element.Fragment;t.a=function(e){var t=e.barScore;e=e.color;return Object(r.createElement)(a,null,Object(r.createElement)("div",{className:"aioseo-donut-container",style:{flexDirection:"column"}},Object(r.createElement)("svg",{className:"aioseo-donut-score-svg",viewBox:"0 0 33.83098862 33.83098862",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("circle",{className:"aioseo-seo-headline-analyzer-score__background",stroke:"#e8e8eb",strokeWidth:"2",fill:"none",cx:"16.91549431",cy:"16.91549431",r:"15.91549431"}),Object(r.createElement)("circle",{className:"aioseo-seo-headline-analyzer-score__circle",stroke:e,strokeWidth:"2",strokeDasharray:"".concat(t,", 100"),strokeLinecap:"round",fill:"none",cx:"16.91549431",cy:"16.91549431",r:"15.91549431"}))))}},,,,,function(e,t,n){var r=n(34);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return null!==e&&"object"===r(e)}},,,,,,,,function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var a="undefined"!=typeof window?window:"undefined"==typeof self?void console.warn("Using browser-only version of superagent in non-browser environment"):self,o=n(74),i=n(75),s=n(76),l=n(35),c=n(77),u=n(79);function d(){}e.exports=function(e,n){return"function"==typeof n?new t.Request("GET",e).end(n):1===arguments.length?new t.Request("GET",e):new t.Request(e,n)};var h=t=e.exports;t.Request=w,h.getXHR=function(){if(a.XMLHttpRequest&&(!a.location||"file:"!==a.location.protocol||!a.ActiveXObject))return new XMLHttpRequest;try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch(e){}throw new Error("Browser-only version of superagent could not find XHR")};var p="".trim?function(e){return e.trim()}:function(e){return e.replace(/(^\s*|\s*$)/g,"")};function f(e){if(!l(e))return e;var t,n=[];for(t in e)Object.prototype.hasOwnProperty.call(e,t)&&function e(t,n,r){if(void 0!==r)if(null!==r)if(Array.isArray(r))r.forEach((function(r){e(t,n,r)}));else if(l(r))for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&e(t,"".concat(n,"[").concat(a,"]"),r[a]);else t.push(encodeURI(n)+"="+encodeURIComponent(r));else t.push(encodeURI(n))}(n,t,e[t]);return n.join("&")}function m(e){for(var t,n,r={},a=e.split("&"),o=0,i=a.length;o<i;++o)-1===(n=(t=a[o]).indexOf("="))?r[decodeURIComponent(t)]="":r[decodeURIComponent(t.slice(0,n))]=decodeURIComponent(t.slice(n+1));return r}function y(e){return/[/+]json($|[^-\w])/.test(e)}function b(e){this.req=e,this.xhr=this.req.xhr,this.text="HEAD"!==this.req.method&&(""===this.xhr.responseType||"text"===this.xhr.responseType)||void 0===this.xhr.responseType?this.xhr.responseText:null,this.statusText=this.req.xhr.statusText;var t=this.xhr.status;this._setStatusProperties(t=1223===t?204:t),this.headers=function(e){for(var t,n,r,a=e.split(/\r?\n/),o={},i=0,s=a.length;i<s;++i)-1!==(r=(t=a[i]).indexOf(":"))&&(n=t.slice(0,r).toLowerCase(),r=p(t.slice(r+1)),o[n]=r);return o}(this.xhr.getAllResponseHeaders()),this.header=this.headers,this.header["content-type"]=this.xhr.getResponseHeader("content-type"),this._setHeaderProperties(this.header),null===this.text&&e._responseType?this.body=this.xhr.response:this.body="HEAD"===this.req.method?null:this._parseBody(this.text||this.xhr.response)}function w(e,t){var n=this;this._query=this._query||[],this.method=e,this.url=t,this.header={},this._header={},this.on("end",(function(){var e,t=null,r=null;try{r=new b(n)}catch(r){return(t=new Error("Parser is unable to parse the response")).parse=!0,t.original=r,n.xhr?(t.rawResponse=void 0===n.xhr.responseType?n.xhr.responseText:n.xhr.response,t.status=n.xhr.status||null,t.statusCode=t.status):(t.rawResponse=null,t.status=null),n.callback(t)}n.emit("response",r);try{n._isResponseOK(r)||(e=new Error(r.statusText||r.text||"Unsuccessful HTTP response"))}catch(r){e=r}e?(e.original=t,e.response=r,e.status=r.status,n.callback(e,r)):n.callback(null,r)}))}function g(e,t,n){return e=h("DELETE",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e}h.serializeObject=f,h.parseString=m,h.types={html:"text/html",json:"application/json",xml:"text/xml",urlencoded:"application/x-www-form-urlencoded",form:"application/x-www-form-urlencoded","form-data":"application/x-www-form-urlencoded"},h.serialize={"application/x-www-form-urlencoded":f,"application/json":i},h.parse={"application/x-www-form-urlencoded":m,"application/json":JSON.parse},c(b.prototype),b.prototype._parseBody=function(e){var t=h.parse[this.type];return this.req._parser?this.req._parser(this,e):(t=!t&&y(this.type)?h.parse["application/json"]:t)&&e&&(0<e.length||e instanceof Object)?t(e):null},b.prototype.toError=function(){var e=(n=this.req).method,t=n.url,n="cannot ".concat(e," ").concat(t," (").concat(this.status,")");return(n=new Error(n)).status=this.status,n.method=e,n.url=t,n},h.Response=b,o(w.prototype),s(w.prototype),w.prototype.type=function(e){return this.set("Content-Type",h.types[e]||e),this},w.prototype.accept=function(e){return this.set("Accept",h.types[e]||e),this},w.prototype.auth=function(e,t,n){return"object"===r(t=1===arguments.length?"":t)&&null!==t&&(n=t,t=""),n=n||{type:"function"==typeof btoa?"basic":"auto"},this._auth(e,t,n,(function(e){if("function"==typeof btoa)return btoa(e);throw new Error("Cannot use basic auth, btoa is not a function")}))},w.prototype.query=function(e){return(e="string"!=typeof e?f(e):e)&&this._query.push(e),this},w.prototype.attach=function(e,t,n){if(t){if(this._data)throw new Error("superagent can't mix .send() and .attach()");this._getFormData().append(e,t,n||t.name)}return this},w.prototype._getFormData=function(){return this._formData||(this._formData=new a.FormData),this._formData},w.prototype.callback=function(e,t){if(this._shouldRetry(e,t))return this._retry();var n=this._callback;this.clearTimeout(),e&&(this._maxRetries&&(e.retries=this._retries-1),this.emit("error",e)),n(e,t)},w.prototype.crossDomainError=function(){var e=new Error("Request has been terminated\nPossible causes: the network is offline, Origin is not allowed by Access-Control-Allow-Origin, the page is being unloaded, etc.");e.crossDomain=!0,e.status=this.status,e.method=this.method,e.url=this.url,this.callback(e)},w.prototype.buffer=w.prototype.ca=w.prototype.agent=function(){return console.warn("This is not supported in browser version of superagent"),this},w.prototype.pipe=w.prototype.write=function(){throw new Error("Streaming is not supported in browser version of superagent")},w.prototype._isHost=function(e){return e&&"object"===r(e)&&!Array.isArray(e)&&"[object Object]"!==Object.prototype.toString.call(e)},w.prototype.end=function(e){this._endCalled&&console.warn("Warning: .end() was called twice. This is not supported in superagent"),this._endCalled=!0,this._callback=e||d,this._finalizeQueryString(),this._end()},w.prototype._setUploadTimeout=function(){var e=this;this._uploadTimeout&&!this._uploadTimeoutTimer&&(this._uploadTimeoutTimer=setTimeout((function(){e._timeoutError("Upload timeout of ",e._uploadTimeout,"ETIMEDOUT")}),this._uploadTimeout))},w.prototype._end=function(){if(this._aborted)return this.callback(new Error("The request has been aborted even before .end() was called"));var e=this;this.xhr=h.getXHR();var t=this.xhr,n=this._formData||this._data;this._setTimeouts(),t.onreadystatechange=function(){var n,r=t.readyState;if(2<=r&&e._responseTimeoutTimer&&clearTimeout(e._responseTimeoutTimer),4===r){try{n=t.status}catch(r){n=0}if(!n)return e.timedout||e._aborted?void 0:e.crossDomainError();e.emit("end")}};var r,a,o=function(t,n){0<n.total&&(n.percent=n.loaded/n.total*100,100===n.percent&&clearTimeout(e._uploadTimeoutTimer)),n.direction=t,e.emit("progress",n)};if(this.hasListeners("progress"))try{t.addEventListener("progress",o.bind(null,"download")),t.upload&&t.upload.addEventListener("progress",o.bind(null,"upload"))}catch(n){}t.upload&&this._setUploadTimeout();try{this.username&&this.password?t.open(this.method,this.url,!0,this.username,this.password):t.open(this.method,this.url,!0)}catch(n){return this.callback(n)}for(a in this._withCredentials&&(t.withCredentials=!0),this._formData||"GET"===this.method||"HEAD"===this.method||"string"==typeof n||this._isHost(n)||(r=this._header["content-type"],(o=!(o=this._serializer||h.serialize[r?r.split(";")[0]:""])&&y(r)?h.serialize["application/json"]:o)&&(n=o(n))),this.header)null!==this.header[a]&&Object.prototype.hasOwnProperty.call(this.header,a)&&t.setRequestHeader(a,this.header[a]);this._responseType&&(t.responseType=this._responseType),this.emit("request",this),t.send(void 0===n?null:n)},h.agent=function(){return new u},["GET","POST","OPTIONS","PATCH","PUT","DELETE"].forEach((function(e){u.prototype[e.toLowerCase()]=function(t,n){return t=new h.Request(e,t),this._setDefaults(t),n&&t.end(n),t}})),u.prototype.del=u.prototype.delete,h.get=function(e,t,n){return e=h("GET",e),"function"==typeof t&&(n=t,t=null),t&&e.query(t),n&&e.end(n),e},h.head=function(e,t,n){return e=h("HEAD",e),"function"==typeof t&&(n=t,t=null),t&&e.query(t),n&&e.end(n),e},h.options=function(e,t,n){return e=h("OPTIONS",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.del=g,h.delete=g,h.patch=function(e,t,n){return e=h("PATCH",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.post=function(e,t,n){return e=h("POST",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.put=function(e,t,n){return e=h("PUT",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e}},function(e,t,n){"use strict";(function(e){var r=n(26),a=n.n(r),o=n(0),i=(r=n(2),n.n(r)),s=n(46),l=n(47),c=n(48),u=window.wp.i18n.__,d=(r=window.wp.element).Fragment,h=r.useState,p=r.useEffect;t.a=function(t){var n=u("Current Score",e.env.VUE_APP_TEXTDOMAIN),r=u("Try New Headline",e.env.VUE_APP_TEXTDOMAIN),f=h("current-score"),m=(f=a()(f,2))[0],y=f[1];f=void 0!==t.analyzer.isNewData&&t.analyzer.isNewData;return p((function(){t.setAnalyzer({activeTab:m})}),[m]),Object(o.createElement)(d,null,Object(o.createElement)("div",{className:"aioseo-inline-buttons"},Object(o.createElement)("button",{onClick:function(){return y("current-score")},className:i()("aioseo-switcher-button",{active:"current-score"===m})},n),Object(o.createElement)("button",{onClick:function(){return y("new-headline")},className:i()("aioseo-switcher-button",{active:"new-headline"===m})},r)),"new-headline"===m?Object(o.createElement)(d,null,Object(o.createElement)(l.a,{analyzer:t.analyzer,setAnalyzer:t.setAnalyzer})):Object(o.createElement)(s.a,{analyzer:t.analyzer}),f?Object(o.createElement)(c.a,{analyzer:t.analyzer}):"")}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=n(28),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(a=window.wp.components).PanelBody,u=a.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=e.analyzer.currentHeadlineData.sentence,a=s("Score",d),h=s("A good score is between 40 and 60. For best results, you should strive for 70 and above.",d),p=e.analyzer.currentHeadlineData.score,f=p<40?"red":p<=60?"orange":"green";e="red"==f?"#df2a4a":"orange"==f?"#F2994A":"#00aa63";switch(!0){case p<25:t=Object(r.createElement)("span",null,s("Not Looking Great",d));break;case p<50:t=Object(r.createElement)("span",null,s("Could Be Better",d));break;case p<60:t=Object(r.createElement)("span",null,s("Getting There",d));break;case p<75:t=Object(r.createElement)("span",null,s("Looks Good! 👍👍",d));break;case 75<p:t=Object(r.createElement)("span",null,s("Super! 🔥🔥🔥",d));break;default:t=!1}return Object(r.createElement)(l,null,Object(r.createElement)(c,{className:"aioseo-headline-analyzer-panel-score",title:a},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-current-score-tab aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("h4",{className:"aioseo-headline-analyzer-current-title"},"“",n,"”"),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-pie-chart-container"},Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-current-score",f)},p,Object(r.createElement)("span",{className:"aioseo-headline-analyzer-total-out-of-score"},"/ 100")),t&&Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-score-status",f)},t),Object(r.createElement)(i.a,{barScore:p,color:e})),Object(r.createElement)("p",null,h)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(27),a=n.n(r),o=n(0),i=n(22),s=(r=n(2),n.n(r)),l=window.wp.i18n.__,c=window.wp.element.Fragment,u=(r=window.wp.components).PanelBody,d=r.PanelRow,h=r.TextControl,p=r.Button,f=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){function t(t){(t=t.trim())&&Object(i.b)(window.aioseo.nonce).post("".concat(window.aioseo.urls.restUrl,"aioseo/v1/analyze_headline")).send({title:t}).then((function(t){e.setAnalyzer({newHeadlineData:t.body,headlineData:t.body,previousHeadlinesData:[e.analyzer.headlineData].concat(a()(b)),isNewData:!0})})).catch((function(t){e.setAnalyzer({isNewData:!1}),console.log(t)}))}var n=l("Try New Headline",f),r=l("Enter a different headline than your post title to see how it compares.",f),m=l("Analyze Headline",f),y=void 0!==e.analyzer.newHeadline?e.analyzer.newHeadline:"",b=void 0!==e.analyzer.previousHeadlinesData?e.analyzer.previousHeadlinesData:[],w=!y;return Object(o.createElement)(c,null,Object(o.createElement)(u,{title:n,className:s()("aioseo-headline-analyzer-panel-tab-new-score-form")},Object(o.createElement)(d,null,Object(o.createElement)("div",{className:"aioseo-headline-analyzer-new-tab"},Object(o.createElement)("div",{className:"aioseo-headline-analyzer-new-score-form-block"},Object(o.createElement)("form",{onSubmit:function(e){e.preventDefault(),t(y)}},Object(o.createElement)(h,{label:r,value:y,onChange:function(t){" "!==t&&e.setAnalyzer({newHeadline:t})},className:"aioseo-headline-analyzer-input-field"}),Object(o.createElement)(p,{className:s()("aioseo-headline-analyzer-button"),onClick:function(){t(y)},disabled:w},m)))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=n(28),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(a=window.wp.components).PanelBody,u=a.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=e.analyzer.currentHeadlineData.sentence,a=s("New Score",d),h=s("A good score is between 40 and 60. For best results, you should strive for 70 and above.",d),p=s("Current Score",d),f=void 0!==e.analyzer.newHeadlineData?e.analyzer.newHeadlineData.sentence:"",m=void 0!==e.analyzer.newHeadlineData?e.analyzer.newHeadlineData.score:"",y=void 0!==e.analyzer.currentHeadlineData.score?e.analyzer.currentHeadlineData.score:"",b=m<40?"red":m<=60?"orange":"green",w="red"==b?"#df2a4a":"orange"==b?"#F2994A":"#00aa63",g=y<40?"red-bg":y<=60?"orange-bg":"green-bg";e=Math.abs(m-y);switch(!0){case m<25:t=Object(r.createElement)("span",null,s("Not Looking Great",d));break;case m<50:t=Object(r.createElement)("span",null,s("Could Be Better",d));break;case m<60:t=Object(r.createElement)("span",null,s("Getting There",d));break;case m<75:t=Object(r.createElement)("span",null,s("Looks Good! 👍👍",d));break;case 75<m:t=Object(r.createElement)("span",null,s("Super! 🔥🔥🔥",d));break;default:t=!1}return Object(r.createElement)(l,null,Object(r.createElement)(c,{title:a,className:"aioseo-headline-analyzer-panel-tab-new-score"},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-new-score-panel"},Object(r.createElement)("p",null,h),Object(r.createElement)("h4",null,"“",f,"”"),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-pie-chart-container"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-new-score",b)},m),Object(r.createElement)(i.a,{barScore:m,color:w}),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score-difference",b)},y<m?"+ ":m===y?"":"- ",e),t&&Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-score-status",b)},t)),Object(r.createElement)("div",{className:"current-score"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score",g)},y),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-current-score-content"},Object(r.createElement)("h5",null,p),Object(r.createElement)("p",null,n))))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=window.wp.i18n.__,s=window.wp.element.Fragment,l=(a=window.wp.components).PanelBody,c=a.PanelRow;t.a=function(t){var n=i("Previous Scores",e.env.VUE_APP_TEXTDOMAIN),a="undefined"!==t.analyzer.previousHeadlinesData?t.analyzer.previousHeadlinesData:[],u=document.querySelector(".edit-post-sidebar"),d="current-score"===("undefined"!==t.analyzer.activeTab?t.analyzer.activeTab:"current-score")?390:300;return Object(r.createElement)(s,null,Object(r.createElement)(l,{title:n,className:"aioseo-headline-analyzer-panel-previous-scores"},Object(r.createElement)(c,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-previous-scores"},a.map((function(e,n){if(n<10&&(void 0!==e.sentence||void 0!==e.score)){var i=e.score<40?"red-bg":e.score<=60?"orange-bg":"green-bg";return Object(r.createElement)("li",{key:n,onClick:function(){t.setAnalyzer({newHeadlineData:a[n],headlineData:a[n],newHeadline:a[n].sentence,isNewData:!0}),u&&(u.scrollTop=d)}},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score",i)},e.score),Object(r.createElement)("span",{className:"aioseo-headline-analyzer-score-text"},e.sentence))}return null})))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o),s=n(25),l=window.wp.i18n.__,c=window.wp.element.Fragment,u=(o=window.wp.components).PanelBody,d=o.PanelRow,h=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=l("Word Balance",h),o=l("Compare the percentages of your results to the goal for each category and adjust as necessary.",h),p=e.data.score,f=e.data.score<40?"red":e.data.score<=60?"orange":"green",m=0===e.data.result.commonWordsPercentage?"red":e.data.result.commonWordsPercentage<.2?"orange":"green",y=0===e.data.result.commonWordsPercentage?"red-bg":e.data.result.commonWordsPercentage<.2?"orange-bg":"green-bg",b=e.data.result.commonWordsPercentage<.2?l("Your headline would be more likely to get clicks if it had more common words.",h):l("Headlines with 20-30% common words are more likely to get clicks.",h),w=0===e.data.result.uncommonWordsPercentage?"red":e.data.result.uncommonWordsPercentage<.1?"orange":"green",g=0===e.data.result.uncommonWordsPercentage?"red-bg":e.data.result.uncommonWordsPercentage<.1?"orange-bg":"green-bg",v=e.data.result.uncommonWordsPercentage<.1?l("Your headline would be more likely to get clicks if it had more uncommon words.",h):l("Headlines with uncommon words are more likely to get clicks.",h),E=0===e.data.result.emotionalWordsPercentage?"red":e.data.result.emotionalWordsPercentage<.1?"orange":"green",O=0===e.data.result.emotionalWordsPercentage?"red-bg":e.data.result.emotionalWordsPercentage<.1?"orange-bg":"green-bg",j=l("Emotionally triggered headlines are likely to drive more clicks.",h),_=0===e.data.result.powerWords.length?"orange":"green",T=0===e.data.result.powerWords.length?"orange":"green-bg",x=l("Headlines with Power Words are more likely to get clicks.",h),C=l("Common Words",h),z=l("20-30%",h),k=l("Uncommon Words",h),P=l("10-20%",h),A=l("Emotional Words",h),N=l("10-15%",h),S=l("Power Words",h),D=l("At least one",h);switch(!0){case p<25:t=Object(r.createElement)("span",null,l("Not Looking Great",h));break;case p<50:t=Object(r.createElement)("span",null,l("Could Be Better",h));break;case p<60:t=Object(r.createElement)("span",null,l("Getting There",h));break;case p<75:t=Object(r.createElement)("span",null,l("Looks Good! 👍👍",h));break;case 75<p:t=Object(r.createElement)("span",null,l("Super! 🔥🔥🔥",h));break;default:t=!1}return Object(r.createElement)(c,null,Object(r.createElement)(u,{title:n,className:i()("aioseo-headline-analyzer-panel-word-balance","aioseo-headline-analyzer-panel-has-icon",f),icon:"green"==f?a.a.check:a.a.warning},Object(r.createElement)(d,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block"},Object(r.createElement)("h4",null,t),Object(r.createElement)("p",null,o)),Object(r.createElement)(s.a,{title:C,value:Math.round(100*e.data.result.commonWordsPercentage),goalValue:z,words:e.data.result.commonWords,guideLine:b,classOnScore:m,classOnScoreBg:y}),Object(r.createElement)(s.a,{title:k,value:Math.round(100*e.data.result.uncommonWordsPercentage),goalValue:P,words:e.data.result.uncommonWords,guideLine:v,classOnScore:w,classOnScoreBg:g}),Object(r.createElement)(s.a,{title:A,value:Math.round(100*e.data.result.emotionalWordsPercentage),goalValue:N,words:e.data.result.emotionWords,guideLine:j,classOnScore:E,classOnScoreBg:O}),Object(r.createElement)(s.a,{title:S,value:Math.round(100*e.data.result.powerWordsPercentage),goalValue:D,words:e.data.result.powerWords,guideLine:x,classOnScore:_,classOnScoreBg:T}))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(o=window.wp.components).PanelBody,u=o.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=s("Your headline has a neutral sentiment.",d),n=s("Headlines that are strongly positive or negative tend to get more engagement then neutral ones.",d),o=s("Your headline has a positive sentiment.",d),h=s("Positive headlines tend to get better engagement than neutral or negative ones.",d),p=s("Your headline has a negative sentiment.",d),f=s("Negative headlines are attention-grabbing and tend to perform better than neutral ones.",d),m=s("Sentiment",d),y="neu"===e.data.result.sentiment?s("Neutral",d):"pos"===e.data.result.sentiment?s("Positive",d):s("Negative",d),b="neu"===e.data.result.sentiment?a.a.neutral:"pos"===e.data.result.sentiment?a.a.smile:a.a.negative,w="neu"===e.data.result.sentiment?"orange":"pos"===e.data.result.sentiment?"green":"red";return Object(r.createElement)(l,null,Object(r.createElement)(c,{title:m,className:i()("aioseo-headline-analyzer-panel-sentiment","aioseo-headline-analyzer-panel-has-icon",w),icon:b},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("h4",null,y),"neu"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,t),Object(r.createElement)("br",null),n):"","pos"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,o),Object(r.createElement)("br",null),h):"","neg"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,p),Object(r.createElement)("br",null)," ",f):""))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r,a=n(0),o=(r=window.wp.i18n).__,i=r.sprintf,s=window.wp.element.Fragment,l=(r=window.wp.components).PanelBody,c=r.PanelRow;t.a=function(t){var n=t.data.result.headlineTypes.join(", "),r=o("Headline Type",e.env.VUE_APP_TEXTDOMAIN);t=Object(a.createElement)("span",{className:"aioseo-headline-analyzer-panel-types-title"},r,Object(a.createElement)("span",null,n)),r=i(o("Headlines that are lists and how-to get more engagement on average than other types of headlines. %1sRead more about %2sdifferent types of headlines here%3s →%4s",e.env.VUE_APP_TEXTDOMAIN),"<br/><br/>",'<a href="https://optinmonster.com/why-these-21-headlines-went-viral-and-how-you-can-copy-their-success/" target="_blank" className="aioseo-headline-analyzer-link"><span>',"</span>","</a>");return Object(a.createElement)(s,null,Object(a.createElement)(l,{title:t,className:"aioseo-headline-analyzer-panel-types"},Object(a.createElement)(c,null,Object(a.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(a.createElement)("h4",null,n),Object(a.createElement)("p",{dangerouslySetInnerHTML:{__html:r}})))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o);function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return{s:t=function(){},n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return o=e.done,e},e:function(e){i=!0,a=e},f:function(){try{o||null==n.return||n.return()}finally{if(i)throw a}}}}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var c=window.wp.i18n.__,u=window.wp.element.Fragment,d=(o=window.wp.components).PanelBody,h=o.PanelRow,p=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=c("Character Count",p),n=e.data.result.length,o=n.toString(),l="",f="",m=(e="","");if(1===o.length&&(m='<span class="character-zero">0</span><span class="character-zero">0</span><span>'.concat(n,"</span>")),2===o.length){m='<span class="character-zero">0</span>';var y,b=s(o);try{for(b.s();!(y=b.n()).done;){var w=y.value;m+="<span>".concat(w,"</span>")}}catch(e){b.e(e)}finally{b.f()}}if(3===n.toString().length){var g,v=s(o);try{for(v.s();!(g=v.n()).done;){var E=g.value;m+="<span>".concat(E,"</span>")}}catch(e){v.e(e)}finally{v.f()}}return n<=19?l="red":20<=n&&n<=34?l="orange":35<=n&&n<=66?l="green":67<=n&&n<=79?l="orange":80<=n&&(l="red"),n<=34?(f=c("Too Short 🙃",p),e=c("You have space to add more keywords and power words to boost your rankings and click-through rate.",p)):35<=n&&n<=66?(f=c("Good 🙂",p),e=c("Headlines that are about 55 characters long will display fully in search results and tend to get more clicks.",p)):67<=n&&(f=c("Too Long 😑",p),e=c("At this length, it will get cut off in search results. Try reducing it to about 55 characters.",p)),Object(r.createElement)(u,null,Object(r.createElement)(d,{title:t,className:i()("aioseo-headline-analyzer-panel-character-count","aioseo-headline-analyzer-panel-has-icon",l),icon:"green"===l?a.a.check:a.a.warning},Object(r.createElement)(h,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-character-count-container"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-status-on-character-length"},f),Object(r.createElement)("span",{className:i()("aioseo-headline-analyzer-character-length",l),dangerouslySetInnerHTML:{__html:m}})),Object(r.createElement)("p",null,e)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o);function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return{s:t=function(){},n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return o=e.done,e},e:function(e){i=!0,a=e},f:function(){try{o||null==n.return||n.return()}finally{if(i)throw a}}}}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var c=window.wp.i18n.__,u=window.wp.element.Fragment,d=(o=window.wp.components).PanelBody,h=o.PanelRow,p=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=c("Word Count",p),n=e.data.result.wordCount,o=n.toString(),l="",f="",m=(e="","");if(1===o.length&&(m='<span class="character-zero">0</span><span class="character-zero">0</span><span>'.concat(n,"</span>")),2===o.length){m='<span class="character-zero">0</span>';var y,b=s(o);try{for(b.s();!(y=b.n()).done;){var w=y.value;m+="<span>".concat(w,"</span>")}}catch(e){b.e(e)}finally{b.f()}}if(3===o.length){var g,v=s(o);try{for(v.s();!(g=v.n()).done;){var E=g.value;m+="<span>".concat(E,"</span>")}}catch(e){v.e(e)}finally{v.f()}}return n<=4?(l="red",f=c("Not Enough Words 🙃",p),e=c("Your headline doesn’t use enough words. You have more space to add keywords and power words to improve your SEO and get more engagement.",p)):5<=n&&n<=9?(l="green",f=c("Good 🙂",p),e=c("Your headline has the right amount of words. Headlines are more likely to be clicked on in search results if they have about 6 words.",p)):10<=n&&n<=11?(l="orange",f=c("Reduce Word Count 🙂",p)):(l="red",f=c("Too Many Words 😑",p),e=c("Your headline has too many words. Long headlines will get cut off in search results and won’t get as many clicks.",p)),Object(r.createElement)(u,null,Object(r.createElement)(d,{title:t,className:i()("aioseo-headline-analyzer-panel-word-count","aioseo-headline-analyzer-panel-has-icon",l),icon:"green"===l?a.a.check:a.a.warning},Object(r.createElement)(h,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-word-counter"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-status-on-word-length"},f),Object(r.createElement)("span",{className:i()("aioseo-headline-analyzer-word-length",l),dangerouslySetInnerHTML:{__html:m}})),Object(r.createElement)("p",null,e)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=window.wp.i18n.__,o=window.wp.element.Fragment,i=window.wp.components,s=i.PanelBody,l=i.PanelRow,c=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=a("Beginning & Ending Words",c),n=e.data.result.originalExplodedHeadline,i=a("Most readers only look at the first and last 3 words of a headline before deciding whether to click.",c),u="";e="";return 6<=n.length?(u=n.slice(0,3).join(" "),e=n.slice(-3).join(" ")):3<n.length&&n.length<=5?(u=n.slice(0,3).join(" "),e=n.slice(3).join(" ")):u=n.slice(0,3).join(" "),Object(r.createElement)(o,null,Object(r.createElement)(s,{title:t,className:"aioseo-headline-analyzer-panel-beginning-ending-words"},Object(r.createElement)(l,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},u?Object(r.createElement)(o,null,Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-word-begining-title"},Object(r.createElement)("li",null,a("Beginning Words",c))),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words beginning"},Object(r.createElement)("span",null,u))):"",e?Object(r.createElement)(o,null,Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-word-ending-title"},Object(r.createElement)("li",null,a("Ending Words",c))),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words ending"},Object(r.createElement)("span",null,e))):"",Object(r.createElement)("p",{className:"aioseo-headline-analyzer-words-guideline"},i)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(57),a=n.n(r),o=n(0),i=window.wp.i18n.__,s=window.wp.element.Fragment,l=(r=window.wp.components).PanelBody,c=r.PanelRow,u=window.wp.data.select;t.a=function(t){var n=i("Search Preview",e.env.VUE_APP_TEXTDOMAIN),r=i("Here is how your headline will look like in Google search results page.",e.env.VUE_APP_TEXTDOMAIN),d=u("core/editor").getPermalink(),h={href:d};return Object(o.createElement)(s,null,Object(o.createElement)(l,{title:n,className:"aioseo-headline-analyzer-panel-search-preview"},Object(o.createElement)(c,null,Object(o.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(o.createElement)("div",{className:"aioseo-headline-analyzer-search-prevew-wrap"},Object(o.createElement)("p",{className:"aioseo-headline-analyzer-post-url"},Object(o.createElement)("a",a()({},h,{target:"_blank"}),d)),Object(o.createElement)("h4",null,t.data.sentence),Object(o.createElement)("p",null,r))))))}}).call(this,n(10))},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,r=arguments[t];for(n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.default=e.exports,e.exports.__esModule=!0,n.apply(this,arguments)}e.exports=n,e.exports.default=e.exports,e.exports.__esModule=!0},,,,,,,,,function(e,t,n){n(67),e.exports=n(80)},function(e,t,n){"use strict";n.r(t),function(e){var t=n(26),r=n.n(t),a=n(27),o=n.n(a),i=n(43),s=n.n(i),l=n(0),c=(t=n(9),n(22)),u=n(45),d=n(49),h=n(50),p=n(51),f=n(52),m=n(53),y=n(54),b=n(55),w=n(56);function g(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function v(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?g(Object(n),!0).forEach((function(t){s()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):g(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var E=(a=window.wp.i18n).__,O=a.sprintf,j=(i=window.wp.element).Fragment,_=i.useState,T=i.useEffect,x=(a=window.wp.plugins.registerPlugin,(i=window.wp.editPost).PluginSidebar),C=i.PluginSidebarMoreMenuItem,z=window.wp.data.select,k=e.env.VUE_APP_TEXTDOMAIN;a("aioseo-headline-analyzer",{icon:t.a.headline,render:function(){function e(){t?Object(c.b)(window.aioseo.nonce).post("".concat(window.aioseo.urls.restUrl,"aioseo/v1/analyze_headline")).send({title:t}).then((function(e){var t={dataExist:!1};e.body.analysed&&(t.currentHeadlineData=e.body,t.headlineData=e.body,t.dataExist=!0,void 0!==g.headlineData&&(t.previousHeadlinesData=[g.headlineData].concat(o()(A)))),P(v(v({},g),t))})).catch((function(e){P(v(v({},g),{dataExist:!1})),console.log("Couldn't fetch score for headline:",e)})):P(v(v({},g),{dataExist:!1}))}var t=z("core/editor").getEditedPostAttribute("title");T(e,[]),window.wp.data.subscribe((function(){t!==z("core/editor").getEditedPostAttribute("title")&&(t=z("core/editor").getEditedPostAttribute("title"),Object(c.a)(e,2e3))}));var n=E("SEO Headline Analyzer",k),a=E("Write your post title to see the analyzer data. This Headline Analyzer tool enables you to write irresistible SEO headlines that drive traffic, shares, and rank better in search results.",k),i=_({}),s=r()(i,2),g=s[0],P=s[1],A=void 0!==g.previousHeadlinesData?g.previousHeadlinesData:[],N=O(E("This headline analyzer is part of AIOSEO to help you increase your traffic. %1sAnalyze your site further here%2s →%3s",k),O('<a href="%1$s" className="aioseo-headline-analyzer-link" target="_blank"><span>',window.aioseo.urls.aio.seoAnalysis),"</span>","</a>"),S=document.querySelector(".components-button[aria-label='".concat(n,"'] svg"));S&&(i=document.createElement("span"),g.dataExist&&void 0!==g.currentHeadlineData.score?(s=g.currentHeadlineData.score,S.parentNode.setAttribute("aioseo-button-color",s<40?"red":s<=60?"orange":"green"),S.nextElementSibling?S.nextElementSibling.innerHTML="".concat(s,"/100"):(i.innerHTML="".concat(s,"/100"),S.parentNode.insertBefore(i,S.nextSibling))):(S.parentNode.setAttribute("aioseo-button-color","red"),S.nextElementSibling?S.nextElementSibling.innerHTML="00/100":(i.innerHTML="00/100",S.parentNode.insertBefore(i,S.nextSibling)))),!(S=document.querySelector(".aioseo-headline-analyzer-wrapper"))||(D=S.parentNode.querySelectorAll(".components-panel__header"))&&D.forEach((function(e){(e=e.querySelector('[aria-pressed="true"]'))&&null!==e&&(e.style.display="none")}));var D=function(e){P(v(v({},g),e))};return Object(l.createElement)(j,null,Object(l.createElement)(C,{target:"aioseo-headline-analyzer"},n),Object(l.createElement)(x,{name:"aioseo-headline-analyzer",title:n,className:"aioseo-headline-analyzer-wrapper"},void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(u.a,{analyzer:g,setAnalyzer:D}):Object(l.createElement)("p",{className:"aioseo-headline-analyzer-empty-title-warning"},a),void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed&&0<A.length?Object(l.createElement)(d.a,{analyzer:g,setAnalyzer:D}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(h.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(p.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(f.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(m.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(y.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(b.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(w.a,{data:g.headlineData}):"",Object(l.createElement)("div",{className:"aioseo-headline-analyzer-bottom-notice"},Object(l.createElement)("p",{dangerouslySetInnerHTML:{__html:N}}))))}})}.call(this,n(10))},function(e,t){e.exports=function(e){if(Array.isArray(e))return e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,o=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(o.push(r.value),!t||o.length!==t);i=!0);}catch(e){s=!0,a=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw a}}return o}},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(34);e.exports=function(e){if(Array.isArray(e))return r(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){function r(e){if(e)return function(e){for(var t in r.prototype)e[t]=r.prototype[t];return e}(e)}(e.exports=r).prototype.on=r.prototype.addEventListener=function(e,t){return this._callbacks=this._callbacks||{},(this._callbacks["$"+e]=this._callbacks["$"+e]||[]).push(t),this},r.prototype.once=function(e,t){function n(){this.off(e,n),t.apply(this,arguments)}return n.fn=t,this.on(e,n),this},r.prototype.off=r.prototype.removeListener=r.prototype.removeAllListeners=r.prototype.removeEventListener=function(e,t){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,r=this._callbacks["$"+e];if(!r)return this;if(1==arguments.length)return delete this._callbacks["$"+e],this;for(var a=0;a<r.length;a++)if((n=r[a])===t||n.fn===t){r.splice(a,1);break}return 0===r.length&&delete this._callbacks["$"+e],this},r.prototype.emit=function(e){this._callbacks=this._callbacks||{};for(var t=new Array(arguments.length-1),n=this._callbacks["$"+e],r=1;r<arguments.length;r++)t[r-1]=arguments[r];if(n){r=0;for(var a=(n=n.slice(0)).length;r<a;++r)n[r].apply(this,t)}return this},r.prototype.listeners=function(e){return this._callbacks=this._callbacks||{},this._callbacks["$"+e]||[]},r.prototype.hasListeners=function(e){return!!this.listeners(e).length}},function(e,t){((e.exports=a).default=a).stable=i,a.stableStringify=i;var n=[],r=[];function a(e,t,a){for(function e(t,a,o,i){var s;if("object"==typeof t&&null!==t){for(s=0;s<o.length;s++)if(o[s]===t){var l=Object.getOwnPropertyDescriptor(i,a);return void(void 0!==l.get?l.configurable?(Object.defineProperty(i,a,{value:"[Circular]"}),n.push([i,a,t,l])):r.push([t,a]):(i[a]="[Circular]",n.push([i,a,t])))}if(o.push(t),Array.isArray(t))for(s=0;s<t.length;s++)e(t[s],s,o,t);else{var c=Object.keys(t);for(s=0;s<c.length;s++){var u=c[s];e(t[u],u,o,t)}}o.pop()}}(e,"",[],void 0),a=0===r.length?JSON.stringify(e,t,a):JSON.stringify(e,s(t),a);0!==n.length;){var o=n.pop();4===o.length?Object.defineProperty(o[0],o[1],o[3]):o[0][o[1]]=o[2]}return a}function o(e,t){return e<t?-1:t<e?1:0}function i(e,t,a){for(e=function e(t,a,i,s){var l;if("object"==typeof t&&null!==t){for(l=0;l<i.length;l++)if(i[l]===t){var c=Object.getOwnPropertyDescriptor(s,a);return void(void 0!==c.get?c.configurable?(Object.defineProperty(s,a,{value:"[Circular]"}),n.push([s,a,t,c])):r.push([t,a]):(s[a]="[Circular]",n.push([s,a,t])))}if("function"!=typeof t.toJSON){if(i.push(t),Array.isArray(t))for(l=0;l<t.length;l++)e(t[l],l,i,t);else{var u={},d=Object.keys(t).sort(o);for(l=0;l<d.length;l++){var h=d[l];e(t[h],h,i,t),u[h]=t[h]}if(void 0===s)return u;n.push([s,a,t]),s[a]=u}i.pop()}}}(e,"",[],void 0)||e,a=0===r.length?JSON.stringify(e,t,a):JSON.stringify(e,s(t),a);0!==n.length;){var i=n.pop();4===i.length?Object.defineProperty(i[0],i[1],i[3]):i[0][i[1]]=i[2]}return a}function s(e){return e=void 0!==e?e:function(e,t){return t},function(t,n){if(0<r.length)for(var a=0;a<r.length;a++){var o=r[a];if(o[1]===t&&o[0]===n){n="[Circular]",r.splice(a,1);break}}return e.call(this,t,n)}}},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var a=n(35);function o(e){if(e)return function(e){for(var t in o.prototype)Object.prototype.hasOwnProperty.call(o.prototype,t)&&(e[t]=o.prototype[t]);return e}(e)}(e.exports=o).prototype.clearTimeout=function(){return clearTimeout(this._timer),clearTimeout(this._responseTimeoutTimer),clearTimeout(this._uploadTimeoutTimer),delete this._timer,delete this._responseTimeoutTimer,delete this._uploadTimeoutTimer,this},o.prototype.parse=function(e){return this._parser=e,this},o.prototype.responseType=function(e){return this._responseType=e,this},o.prototype.serialize=function(e){return this._serializer=e,this},o.prototype.timeout=function(e){if(!e||"object"!==r(e))return this._timeout=e,this._responseTimeout=0,this._uploadTimeout=0,this;for(var t in e)if(Object.prototype.hasOwnProperty.call(e,t))switch(t){case"deadline":this._timeout=e.deadline;break;case"response":this._responseTimeout=e.response;break;case"upload":this._uploadTimeout=e.upload;break;default:console.warn("Unknown timeout option",t)}return this},o.prototype.retry=function(e,t){return this._maxRetries=e=(e=0===arguments.length||!0===e?1:e)<=0?0:e,this._retries=0,this._retryCallback=t,this};var i=["ECONNRESET","ETIMEDOUT","EADDRINFO","ESOCKETTIMEDOUT"];o.prototype._shouldRetry=function(e,t){if(!this._maxRetries||this._retries++>=this._maxRetries)return!1;if(this._retryCallback)try{var n=this._retryCallback(e,t);if(!0===n)return!0;if(!1===n)return!1}catch(e){console.error(e)}if(t&&t.status&&500<=t.status&&501!==t.status)return!0;if(e){if(e.code&&i.includes(e.code))return!0;if(e.timeout&&"ECONNABORTED"===e.code)return!0;if(e.crossDomain)return!0}return!1},o.prototype._retry=function(){return this.clearTimeout(),this.req&&(this.req=null,this.req=this.request()),this._aborted=!1,this.timedout=!1,this.timedoutError=null,this._end()},o.prototype.then=function(e,t){var n,r=this;return this._fullfilledPromise||((n=this)._endCalled&&console.warn("Warning: superagent request was sent twice, because both .end() and .then() were called. Never call .end() if you use promises"),this._fullfilledPromise=new Promise((function(e,t){n.on("abort",(function(){var e;r.timedout&&r.timedoutError?t(r.timedoutError):((e=new Error("Aborted")).code="ABORTED",e.status=r.status,e.method=r.method,e.url=r.url,t(e))})),n.end((function(n,r){n?t(n):e(r)}))}))),this._fullfilledPromise.then(e,t)},o.prototype.catch=function(e){return this.then(void 0,e)},o.prototype.use=function(e){return e(this),this},o.prototype.ok=function(e){if("function"!=typeof e)throw new Error("Callback required");return this._okCallback=e,this},o.prototype._isResponseOK=function(e){return!!e&&(this._okCallback?this._okCallback(e):200<=e.status&&e.status<300)},o.prototype.getHeader=o.prototype.get=function(e){return this._header[e.toLowerCase()]},o.prototype.set=function(e,t){if(a(e)){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&this.set(n,e[n]);return this}return this._header[e.toLowerCase()]=t,this.header[e]=t,this},o.prototype.unset=function(e){return delete this._header[e.toLowerCase()],delete this.header[e],this},o.prototype.field=function(e,t){if(null==e)throw new Error(".field(name, val) name can not be empty");if(this._data)throw new Error(".field() can't be used if .send() is used. Please use only .send() or only .field() & .attach()");if(a(e)){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&this.field(n,e[n]);return this}if(Array.isArray(t)){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&this.field(e,t[r]);return this}if(null==t)throw new Error(".field(name, val) val can not be empty");return"boolean"==typeof t&&(t=String(t)),this._getFormData().append(e,t),this},o.prototype.abort=function(){return this._aborted||(this._aborted=!0,this.xhr&&this.xhr.abort(),this.req&&this.req.abort(),this.clearTimeout(),this.emit("abort")),this},o.prototype._auth=function(e,t,n,r){switch(n.type){case"basic":this.set("Authorization","Basic ".concat(r("".concat(e,":").concat(t))));break;case"auto":this.username=e,this.password=t;break;case"bearer":this.set("Authorization","Bearer ".concat(e))}return this},o.prototype.withCredentials=function(e){return this._withCredentials=e=void 0===e||e,this},o.prototype.redirects=function(e){return this._maxRedirects=e,this},o.prototype.maxResponseSize=function(e){if("number"!=typeof e)throw new TypeError("Invalid argument");return this._maxResponseSize=e,this},o.prototype.toJSON=function(){return{method:this.method,url:this.url,data:this._data,headers:this._header}},o.prototype.send=function(e){var t=a(e),n=this._header["content-type"];if(this._formData)throw new Error(".send() can't be used if .attach() or .field() is used. Please use only .send() or only .field() & .attach()");if(t&&!this._data)Array.isArray(e)?this._data=[]:this._isHost(e)||(this._data={});else if(e&&this._data&&this._isHost(this._data))throw new Error("Can't merge these send calls");if(t&&a(this._data))for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(this._data[r]=e[r]);else"string"==typeof e?(n||this.type("form"),n=this._header["content-type"],this._data="application/x-www-form-urlencoded"===n?this._data?"".concat(this._data,"&").concat(e):e:(this._data||"")+e):this._data=e;return!t||this._isHost(e)||n||this.type("json"),this},o.prototype.sortQuery=function(e){return this._sort=void 0===e||e,this},o.prototype._finalizeQueryString=function(){var e,t=this._query.join("&");t&&(this.url+=(this.url.includes("?")?"&":"?")+t),this._query.length=0,!this._sort||0<=(e=this.url.indexOf("?"))&&(t=this.url.slice(e+1).split("&"),"function"==typeof this._sort?t.sort(this._sort):t.sort(),this.url=this.url.slice(0,e)+"?"+t.join("&"))},o.prototype._appendQueryString=function(){console.warn("Unsupported")},o.prototype._timeoutError=function(e,t,n){this._aborted||((e=new Error("".concat(e+t,"ms exceeded"))).timeout=t,e.code="ECONNABORTED",e.errno=n,this.timedout=!0,this.timedoutError=e,this.abort(),this.callback(e))},o.prototype._setTimeouts=function(){var e=this;this._timeout&&!this._timer&&(this._timer=setTimeout((function(){e._timeoutError("Timeout of ",e._timeout,"ETIME")}),this._timeout)),this._responseTimeout&&!this._responseTimeoutTimer&&(this._responseTimeoutTimer=setTimeout((function(){e._timeoutError("Response timeout of ",e._responseTimeout,"ETIMEDOUT")}),this._responseTimeout))}},function(e,t,n){"use strict";var r=n(78);function a(e){if(e)return function(e){for(var t in a.prototype)Object.prototype.hasOwnProperty.call(a.prototype,t)&&(e[t]=a.prototype[t]);return e}(e)}(e.exports=a).prototype.get=function(e){return this.header[e.toLowerCase()]},a.prototype._setHeaderProperties=function(e){var t=e["content-type"]||"";this.type=r.type(t);var n,a=r.params(t);for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(this[n]=a[n]);this.links={};try{e.link&&(this.links=r.parseLinks(e.link))}catch(e){}},a.prototype._setStatusProperties=function(e){var t=e/100|0;this.statusCode=e,this.status=this.statusCode,this.statusType=t,this.info=1==t,this.ok=2==t,this.redirect=3==t,this.clientError=4==t,this.serverError=5==t,this.error=(4==t||5==t)&&this.toError(),this.created=201===e,this.accepted=202===e,this.noContent=204===e,this.badRequest=400===e,this.unauthorized=401===e,this.notAcceptable=406===e,this.forbidden=403===e,this.notFound=404===e,this.unprocessableEntity=422===e}},function(e,t,n){"use strict";t.type=function(e){return e.split(/ *; */).shift()},t.params=function(e){return e.split(/ *; */).reduce((function(e,t){t=(n=t.split(/ *= */)).shift();var n=n.shift();return t&&n&&(e[t]=n),e}),{})},t.parseLinks=function(e){return e.split(/ *, */).reduce((function(e,t){var n=t.split(/ *; */);t=n[0].slice(1,-1);return e[n[1].split(/ *= */)[1].slice(1,-1)]=t,e}),{})},t.cleanHeader=function(e,t){return delete e["content-type"],delete e["content-length"],delete e["transfer-encoding"],delete e.host,t&&(delete e.authorization,delete e.cookie),e}},function(e,t,n){"use strict";function r(){this._defaults=[]}["use","on","once","set","query","type","accept","auth","withCredentials","sortQuery","retry","ok","redirects","timeout","buffer","serialize","parse","ca","key","pfx","cert","disableTLSCerts"].forEach((function(e){r.prototype[e]=function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return this._defaults.push({fn:e,args:n}),this}})),r.prototype._setDefaults=function(e){this._defaults.forEach((function(t){e[t.fn].apply(e,function(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t<e.length;t++)n[t]=e[t];return n}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}(t.args))}))},e.exports=r},function(e,t,n){"use strict";n.r(t)}]);
dist/Lite/assets/js/headline-analyzer.js.gz CHANGED
Binary file
dist/Lite/assets/js/link-format-block-old.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! ! built on Thursday, September 9th 2021, 7:47:13 pm */
2
  !function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=82)}({0:function(e,t){e.exports=window.wp.element},12:function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,o=arguments[t];for(n in o)Object.prototype.hasOwnProperty.call(o,n)&&(e[n]=o[n])}return e},n.apply(this,arguments)}e.exports=n},14:function(e,t,n){var o=n(29);e.exports=function(e,t){if(null==e)return{};var n,r=o(e,t);if(Object.getOwnPropertySymbols)for(var i=Object.getOwnPropertySymbols(e),s=0;s<i.length;s++)n=i[s],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n]);return r}},15:function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},16:function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}e.exports=function(e,t,o){return t&&n(e.prototype,t),o&&n(e,o),e}},17:function(e,t,n){var o=n(30);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&o(e,t)}},18:function(e,t,n){var o=n(31),r=n(3);e.exports=function(e,t){return!t||"object"!==o(t)&&"function"!=typeof t?r(e):t}},19:function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},29:function(e,t){e.exports=function(e,t){if(null==e)return{};for(var n,o={},r=Object.keys(e),i=0;i<r.length;i++)n=r[i],0<=t.indexOf(n)||(o[n]=e[n]);return o}},3:function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},30:function(e,t){function n(t,o){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,o)}e.exports=n},31:function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},6:function(e,t){e.exports=window.lodash},7:function(e,t,n){var o;!function(){"use strict";var n={}.hasOwnProperty;function r(){for(var e=[],t=0;t<arguments.length;t++){var o=arguments[t];if(o){var i=typeof o;if("string"==i||"number"==i)e.push(o);else if(Array.isArray(o)&&o.length){var s=r.apply(null,o);s&&e.push(s)}else if("object"==i)for(var a in o)n.call(o,a)&&o[a]&&e.push(a)}}return e.join(" ")}e.exports?(r.default=r,e.exports=r):void 0===(o=function(){return r}.apply(t,[]))||(e.exports=o)}()},8:function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},82:function(e,t,n){"use strict";n.r(t),n.d(t,"link",(function(){return Et}));var o=n(14),r=n.n(o),i=n(19),s=n.n(i),a=n(15),l=n.n(a),c=(t=n(16),n.n(t)),u=(o=n(3),n.n(o)),p=(i=n(17),n.n(i)),f=(a=n(18),n.n(a)),d=(t=n(8),n.n(t)),h=n(0),g=n(6),v=(o=n(12),n.n(o)),b=(a=(i=window.wp).url).getProtocol,y=a.isValidProtocol,m=a.getAuthority,w=a.isValidAuthority,k=a.getPath,O=a.isValidPath,S=a.getQueryString,j=a.isValidQueryString,L=a.getFragment,R=a.isValidFragment,E=(t=i.i18n).__,C=t.sprintf;function P(e){if(e){var t=e.trim();if(t){if(/^\S+:/.test(t)){if(e=b(t),!y(e))return;if(Object(g.startsWith)(e,"http")&&!/^https?:\/\/[^\/\s]/i.test(t))return;if(e=m(t),!w(e))return;if((e=k(t))&&!O(e))return;if((e=S(t))&&!j(e))return;if((e=L(t))&&!R(e))return}return!Object(g.startsWith)(t,"#")||R(t)?1:void 0}}}function x(e){var t=e.url,n=e.opensInNewWindow,o=e.noFollow,r=e.sponsored,i=e.ugc,s=e.text;e={type:"core/link",attributes:{url:t}},t=[];return n&&(s=C(E("%s (opens in a new tab)","all-in-one-seo-pack"),s),e.attributes.target="_blank",e.attributes["aria-label"]=s,t.push("noreferrer noopener")),o&&t.push("nofollow"),r&&t.push("sponsored"),i&&t.push("ugc"),0<t.length&&(e.attributes.rel=t.join(" ")),e}o=wp.element.Component;var N=(a=wp.dom).getOffsetParent,_=a.getRectangleFromRange,F=function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).state={style:function(){var e=window.getSelection();if(0===e.rangeCount)return{};var t=(n=_(e.getRangeAt(0))).top+n.height,n=n.left+n.width/2;return(e=N(e.anchorNode))&&(t-=(e=e.getBoundingClientRect()).top,n-=e.left),{top:t,left:n}}()},e}return c()(n,[{key:"render",value:function(){var e=this.props.children,t=this.state.style;return Object(h.createElement)("div",{className:"editor-format-toolbar__selection-position",style:t},e)}}]),n}(o),T=(i=n(7),n.n(i));function W(e){return(W="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function A(e,t){var n,o=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)),o}function I(e,t){var n=e["page".concat(t?"Y":"X","Offset")];t="scroll".concat(t?"Top":"Left");return"number"==typeof n||"number"!=typeof(n=(e=e.document).documentElement[t])&&(n=e.body[t]),n}function D(e){return I(e)}function V(e){return I(e,!0)}function B(e){var t,n,o,r=(n=(r=(t=e).ownerDocument).body,o=r&&r.documentElement,t=(r=t.getBoundingClientRect()).left,r=r.top,{left:t-=o.clientLeft||n.clientLeft||0,top:r-=o.clientTop||n.clientTop||0});e=(e=e.ownerDocument).defaultView||e.parentWindow;return r.left+=D(e),r.top+=V(e),r}var M,U=new RegExp("^(".concat(/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,")(?!px)[a-z%]+$"),"i"),K=/^(top|right|bottom|left)$/,H="currentStyle",z="runtimeStyle",q="left";function Q(e,t){for(var n=0;n<e.length;n++)t(e[n])}function $(e){return"border-box"===M(e,"boxSizing")}"undefined"!=typeof window&&(M=window.getComputedStyle?function(e,t,n){var o="",r=e.ownerDocument;return(e=n||r.defaultView.getComputedStyle(e,null))?e.getPropertyValue(t)||e[t]:o}:function(e,t){var n,o,r,i=e[H]&&e[H][t];return U.test(i)&&!K.test(t)&&(o=(n=e.style)[q],r=e[z][q],e[z][q]=e[H][q],n[q]="fontSize"===t?"1em":i||0,i=n.pixelLeft+"px",n[q]=o,e[z][q]=r),""===i?"auto":i});var G=["margin","border","padding"];function X(e,t,n){for(var o,r,i=0,s=0;s<t.length;s++)if(o=t[s])for(r=0;r<n.length;r++){var a="border"===o?"".concat(o+n[r],"Width"):o+n[r];i+=parseFloat(M(e,a))||0}return i}function Y(e){return null!=e&&e==e.window}var J={};function Z(e,t,n){if(Y(e))return"width"===t?J.viewportWidth(e):J.viewportHeight(e);if(9===e.nodeType)return"width"===t?J.docWidth(e):J.docHeight(e);var o="width"===t?["Left","Right"]:["Top","Bottom"],r="width"===t?e.offsetWidth:e.offsetHeight,i=(M(e),$(e)),s=0;return(null==r||r<=0)&&(r=void 0,(null==(s=M(e,t))||Number(s)<0)&&(s=e.style[t]||0),s=parseFloat(s)||0),t=void 0!==r||i,r=r||s,-1===(n=void 0===n?i?1:-1:n)?t?r-X(e,["border","padding"],o):s:t?(t=2===n?-X(e,["border"],o):X(e,["margin"],o),r+(1===n?0:t)):s+X(e,G.slice(n),o)}Q(["Width","Height"],(function(e){J["doc".concat(e)]=function(t){return t=t.document,Math.max(t.documentElement["scroll".concat(e)],t.body["scroll".concat(e)],J["viewport".concat(e)](t))},J["viewport".concat(e)]=function(t){var n="client".concat(e),o=t.document,r=o.body;t=o.documentElement[n];return"CSS1Compat"===o.compatMode&&t||r&&r[n]||t}}));var ee={position:"absolute",visibility:"hidden",display:"block"};function te(e){var t,n=arguments;return 0!==e.offsetWidth?t=Z.apply(void 0,n):function(e,t,n){var o,r={},i=e.style;for(o in t)t.hasOwnProperty(o)&&(r[o]=i[o],i[o]=t[o]);for(o in n.call(e),t)t.hasOwnProperty(o)&&(i[o]=r[o])}(e,ee,(function(){t=Z.apply(void 0,n)})),t}function ne(e,t,n){var o;n=n;if("object"!==W(t))return void 0!==n?("number"==typeof n&&(n+="px"),void(e.style[t]=n)):M(e,t);for(o in t)t.hasOwnProperty(o)&&ne(e,o,t[o])}Q(["width","height"],(function(e){var t=e.charAt(0).toUpperCase()+e.slice(1);J["outer".concat(t)]=function(t,n){return t&&te(t,e,n?0:1)};var n="width"===e?["Left","Right"]:["Top","Bottom"];J[e]=function(t,o){return void 0===o?t&&te(t,e,-1):t?(M(t),$(t)&&(o+=X(t,["padding","border"],n)),ne(t,e,o)):void 0}}));var oe=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?A(n,!0).forEach((function(t){var o,r;o=e,t=n[r=t],r in o?Object.defineProperty(o,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):o[r]=t})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):A(n).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({getWindow:function(e){return(e=e.ownerDocument||e).defaultView||e.parentWindow},offset:function(e,t){if(void 0===t)return B(e);!function(e,t){"static"===ne(e,"position")&&(e.style.position="relative");var n,o,r=B(e),i={};for(o in t)t.hasOwnProperty(o)&&(n=parseFloat(ne(e,o))||0,i[o]=n+t[o]-r[o]);ne(e,i)}(e,t)},isWindow:Y,each:Q,css:ne,clone:function(e){var t,n={};for(t in e)e.hasOwnProperty(t)&&(n[t]=e[t]);if(e.overflow)for(var o in e)e.hasOwnProperty(o)&&(n.overflow[o]=e.overflow[o]);return n},scrollLeft:function(e,t){if(Y(e)){if(void 0===t)return D(e);window.scrollTo(t,V(e))}else{if(void 0===t)return e.scrollLeft;e.scrollLeft=t}},scrollTop:function(e,t){if(Y(e)){if(void 0===t)return V(e);window.scrollTo(D(e),t)}else{if(void 0===t)return e.scrollTop;e.scrollTop=t}},viewportWidth:0,viewportHeight:0},J);function re(e){return e.stopPropagation()}var ie=(a=(t=window.wp).i18n).__,se=a.sprintf,ae=a._n,le=(n=(o=t.element).Component,o.createRef),ce=t.htmlEntities.decodeEntities,ue=(i=t.keycodes).UP,pe=i.DOWN,fe=i.ENTER,de=i.TAB,he=(a=t.components).Spinner,ge=(o=a.withSpokenMessages,a.Popover),ve=(i=t.compose.withInstanceId,t.apiFetch),be=t.url.addQueryArgs,ye=o(i(function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(e){var o=e.autocompleteRef;return l()(this,n),(e=t.apply(this,arguments)).onChange=e.onChange.bind(u()(e)),e.onKeyDown=e.onKeyDown.bind(u()(e)),e.autocompleteRef=o||le(),e.inputRef=le(),e.updateSuggestions=Object(g.throttle)(e.updateSuggestions.bind(u()(e)),200),e.suggestionNodes=[],e.state={posts:[],showSuggestions:!1,selectedSuggestion:null},e}return c()(n,[{key:"componentDidUpdate",value:function(){var e=this,t=(n=this.state).showSuggestions,n=n.selectedSuggestion;t&&null!==n&&!this.scrollingIntoView&&(this.scrollingIntoView=!0,function(e,t,n){n=n||{},9===t.nodeType&&(t=oe.getWindow(t));var o,r,i,s,a,l,c=n.allowHorizontalScroll,u=n.onlyScrollIfNeeded,p=n.alignWithTop,f=n.alignWithLeft,d=n.offsetTop||0,h=n.offsetLeft||0,g=n.offsetBottom||0,v=n.offsetRight||0,b=(c=void 0===c||c,oe.isWindow(t)),y=oe.offset(e);n=oe.outerHeight(e),e=oe.outerWidth(e);b?(i=t,l=oe.height(i),a=oe.width(i),s={left:oe.scrollLeft(i),top:oe.scrollTop(i)},o={left:y.left-s.left-h,top:y.top-s.top-d},r={left:y.left+e-(s.left+a)+v,top:y.top+n-(s.top+l)+g},i=s):(a=oe.offset(t),l=t.clientHeight,s=t.clientWidth,i={left:t.scrollLeft,top:t.scrollTop},o={left:y.left-(a.left+(parseFloat(oe.css(t,"borderLeftWidth"))||0))-h,top:y.top-(a.top+(parseFloat(oe.css(t,"borderTopWidth"))||0))-d},r={left:y.left+e-(a.left+s+(parseFloat(oe.css(t,"borderRightWidth"))||0))+v,top:y.top+n-(a.top+l+(parseFloat(oe.css(t,"borderBottomWidth"))||0))+g}),o.top<0||0<r.top?!0===p||!1!==p&&o.top<0?oe.scrollTop(t,i.top+o.top):oe.scrollTop(t,i.top+r.top):u||((p=void 0===p||!!p)?oe.scrollTop(t,i.top+o.top):oe.scrollTop(t,i.top+r.top)),c&&(o.left<0||0<r.left?!0===f||!1!==f&&o.left<0?oe.scrollLeft(t,i.left+o.left):oe.scrollLeft(t,i.left+r.left):u||((f=void 0===f||!!f)?oe.scrollLeft(t,i.left+o.left):oe.scrollLeft(t,i.left+r.left)))}(this.suggestionNodes[n],this.autocompleteRef.current,{onlyScrollIfNeeded:!0}),setTimeout((function(){e.scrollingIntoView=!1}),100))}},{key:"componentWillUnmount",value:function(){delete this.suggestionsRequest}},{key:"bindSuggestionNode",value:function(e){var t=this;return function(n){t.suggestionNodes[e]=n}}},{key:"updateSuggestions",value:function(e){var t,n=this;e.length<2||/^https?:/.test(e)?this.setState({showSuggestions:!1,selectedSuggestion:null,loading:!1}):(this.setState({showSuggestions:!0,selectedSuggestion:null,loading:!0}),(t=ve({path:be("/wp/v2/search",{search:e,per_page:20,type:"post"})})).then((function(e){n.suggestionsRequest===t&&(n.setState({posts:e,loading:!1}),e.length?n.props.debouncedSpeak(se(ae("%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate.",e.length),e.length),"assertive"):n.props.debouncedSpeak(ie("No results.","all-in-one-seo-pack"),"assertive"))})).catch((function(){n.suggestionsRequest===t&&n.setState({loading:!1})})),this.suggestionsRequest=t)}},{key:"onChange",value:function(e){e=e.target.value,this.props.onChange(e),this.updateSuggestions(e)}},{key:"onKeyDown",value:function(e){var t=(r=this.state).showSuggestions,n=r.selectedSuggestion,o=r.posts,r=r.loading;if(t&&o.length&&!r){var i=this.state.posts[this.state.selectedSuggestion];switch(e.keyCode){case ue:e.stopPropagation(),e.preventDefault();var s=n?n-1:o.length-1;this.setState({selectedSuggestion:s});break;case pe:e.stopPropagation(),e.preventDefault(),s=null===n||n===o.length-1?0:n+1,this.setState({selectedSuggestion:s});break;case de:null!==this.state.selectedSuggestion&&(this.selectLink(i),this.props.speak(ie("Link selected.","all-in-one-seo-pack")));break;case fe:null!==this.state.selectedSuggestion&&(e.stopPropagation(),this.selectLink(i))}}else switch(e.keyCode){case ue:0!==e.target.selectionStart&&(e.stopPropagation(),e.preventDefault(),e.target.setSelectionRange(0,0));break;case pe:this.props.value.length!==e.target.selectionStart&&(e.stopPropagation(),e.preventDefault(),e.target.setSelectionRange(this.props.value.length,this.props.value.length))}}},{key:"selectLink",value:function(e){this.props.onChange(e.url,e),this.setState({selectedSuggestion:null,showSuggestions:!1})}},{key:"handleOnClick",value:function(e){this.selectLink(e),this.inputRef.current.focus()}},{key:"render",value:function(){var e=this,t=void 0===(l=(s=this.props).value)?"":l,n=void 0===(i=s.autoFocus)||i,o=s.instanceId,r=s.className,i=(l=this.state).showSuggestions,s=l.posts,a=l.selectedSuggestion,l=l.loading;return Object(h.createElement)("div",{className:T()("editor-url-input block-editor-url-input",r)},Object(h.createElement)("input",{autoFocus:n,type:"text","aria-label":ie("URL","all-in-one-seo-pack"),required:!0,value:t,onChange:this.onChange,onInput:re,placeholder:ie("Paste URL or type to search","all-in-one-seo-pack"),onKeyDown:this.onKeyDown,role:"combobox","aria-expanded":i,"aria-autocomplete":"list","aria-owns":"editor-url-input-suggestions-".concat(o),"aria-activedescendant":null!==a?"editor-url-input-suggestion-".concat(o,"-").concat(a):void 0,ref:this.inputRef}),l&&Object(h.createElement)(he,null),i&&!!s.length&&Object(h.createElement)(ge,{position:"bottom",noArrow:!0,focusOnMount:!1},Object(h.createElement)("div",{className:T()("editor-url-input__suggestions","block-editor-url-input__suggestions","".concat(r,"__suggestions")),id:"editor-url-input-suggestions-".concat(o),ref:this.autocompleteRef,role:"listbox"},s.map((function(t,n){return Object(h.createElement)("button",{key:t.id,role:"option",tabIndex:"-1",id:"editor-url-input-suggestion-".concat(o,"-").concat(n),ref:e.bindSuggestionNode(n),className:T()("editor-url-input__suggestion block-editor-url-input__suggestion",{"is-selected":n===a}),onClick:function(){return e.handleOnClick(t)},"aria-selected":n===a},ce(t.title)||ie("(no title)","all-in-one-seo-pack"))})))))}}]),n}(n))),me=["autocompleteRef","className","onChangeInputValue","value"],we=(a=window.wp).i18n.__,ke=a.components.IconButton;function Oe(e){var t=e.autocompleteRef,n=e.className,o=e.onChangeInputValue,i=e.value;e=r()(e,me);return Object(h.createElement)("form",v()({className:T()("block-editor-url-popover__link-editor",n)},e),Object(h.createElement)(ye,{value:i,onChange:o,autocompleteRef:t}),Object(h.createElement)(ke,{icon:"editor-break",label:we("Apply","all-in-one-seo-pack"),type:"submit"}))}var Se=["className","linkClassName","onEditLinkClick","url","urlLabel"],je=(t=window.wp).i18n.__,Le=(o=t.components).ExternalLink,Re=o.IconButton,Ee=(i=t.url).safeDecodeURI,Ce=i.filterURLForDisplay;function Pe(e){var t=e.url,n=e.urlLabel;e=e.className,e=T()(e,"block-editor-url-popover__link-viewer-url");return t?Object(h.createElement)(Le,{className:e,href:t},n||Ce(Ee(t))):Object(h.createElement)("span",{className:e})}function xe(e){var t=e.className,n=e.linkClassName,o=e.onEditLinkClick,i=e.url,s=e.urlLabel;e=r()(e,Se);return Object(h.createElement)("div",v()({className:T()("block-editor-url-popover__link-viewer",t)},e),Object(h.createElement)(Pe,{url:i,urlLabel:s,className:n}),o&&Object(h.createElement)(Re,{icon:"edit",label:je("Edit","all-in-one-seo-pack"),onClick:o}))}var Ne=["isActive","addingLink","value","resetOnMount"];function _e(e){return e.stopPropagation()}var Fe=(n=window.wp).i18n.__,Te=(o=(a=n.element).Component,a.createRef),We=a.useMemo,Ae=a.Fragment,Ie=(t=n.components).ToggleControl,De=(i=t.withSpokenMessages,(a=n.keycodes).LEFT),Ve=a.RIGHT,Be=a.UP,Me=a.DOWN,Ue=a.BACKSPACE,Ke=a.ENTER,He=a.ESCAPE,ze=n.dom.getRectangleFromRange,qe=n.url.prependHTTP,Qe=(t=n.richText).create,$e=t.insert,Ge=t.isCollapsed,Xe=t.applyFormat,Ye=t.getTextContent,Je=t.slice,Ze=n.blockEditor.URLPopover;function et(e,t){return e.addingLink||t.editLink}function tt(e){var t=e.isActive,n=e.addingLink,o=e.value,i=e.resetOnMount;e=r()(e,Ne);return(o=We((function(){var e;if(e=0<(e=window.getSelection()).rangeCount?e.getRangeAt(0):null){if(n)return ze(e);for(var t=(t=e.startContainer).nextElementSibling||t;t.nodeType!==window.Node.ELEMENT_NODE;)t=t.parentNode;return(e=t.closest("a"))?e.getBoundingClientRect():void 0}}),[t,n,o.start,o.end]))?(i(o),Object(h.createElement)(Ze,v()({anchorRect:o},e))):null}var nt=i(function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).editLink=e.editLink.bind(u()(e)),e.submitLink=e.submitLink.bind(u()(e)),e.onKeyDown=e.onKeyDown.bind(u()(e)),e.onChangeInputValue=e.onChangeInputValue.bind(u()(e)),e.setLinkTarget=e.setLinkTarget.bind(u()(e)),e.setNoFollow=e.setNoFollow.bind(u()(e)),e.setSponsored=e.setSponsored.bind(u()(e)),e.setUgc=e.setUgc.bind(u()(e)),e.onFocusOutside=e.onFocusOutside.bind(u()(e)),e.resetState=e.resetState.bind(u()(e)),e.autocompleteRef=Te(),e.resetOnMount=e.resetOnMount.bind(u()(e)),e.state={opensInNewWindow:!1,noFollow:!1,sponsored:!1,ugc:!1,inputValue:"",anchorRect:!1},e}return c()(n,[{key:"onKeyDown",value:function(e){-1<[De,Me,Ve,Be,Ue,Ke].indexOf(e.keyCode)&&e.stopPropagation(),-1<[He].indexOf(e.keyCode)&&this.resetState()}},{key:"onChangeInputValue",value:function(e){this.setState({inputValue:e})}},{key:"setLinkTarget",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({opensInNewWindow:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:e,noFollow:this.state.noFollow,sponsored:this.state.sponsored,ugc:this.state.ugc,text:t}))))}},{key:"setNoFollow",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({noFollow:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:e,sponsored:this.state.sponsored,ugc:this.state.ugc,text:t}))))}},{key:"setSponsored",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({sponsored:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:this.state.noFollow,sponsored:e,ugc:this.state.ugc,text:t}))))}},{key:"setUgc",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({ugc:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:this.state.noFollow,sponsored:this.state.sponsored,ugc:e,text:t}))))}},{key:"editLink",value:function(e){this.setState({editLink:!0}),e.preventDefault()}},{key:"submitLink",value:function(e){var t=(l=this.props).isActive,n=l.value,o=l.onChange,r=l.speak,i=(c=this.state).inputValue,s=c.opensInNewWindow,a=c.noFollow,l=c.sponsored,c=c.ugc;c=x({url:i=qe(i),opensInNewWindow:s,noFollow:a,sponsored:l,ugc:c,text:Ye(Je(n))});e.preventDefault(),Ge(n)&&!t?(e=Xe(Qe({text:i}),c,0,i.length),o($e(n,e))):o(Xe(n,c)),this.resetState(),P(i)?r(Fe(t?"Link edited.":"Link inserted.","all-in-one-seo-pack"),"assertive"):r(Fe("Warning: the link has been inserted but could have errors. Please test it.","all-in-one-seo-pack"),"assertive")}},{key:"onFocusOutside",value:function(){var e=this.autocompleteRef.current;e&&e.contains(event.target)||this.resetState()}},{key:"resetState",value:function(){this.props.stopAddingLink(),this.setState({editLink:!1})}},{key:"resetOnMount",value:function(e){this.state.anchorRect!==e&&this.setState({opensInNewWindow:!1,noFollow:!1,sponsored:!1,ugc:!1,anchorRect:e})}},{key:"render",value:function(){var e=this,t=(u=this.props).isActive,n=u.activeAttributes.url,o=u.addingLink,r=u.value;if(!t&&!o)return null;var i=(u=this.state).inputValue,s=u.opensInNewWindow,a=u.noFollow,l=u.sponsored,c=u.ugc,u=et(this.props,this.state);return Object(h.createElement)(F,{key:"".concat(r.start).concat(r.end)},Object(h.createElement)(tt,{resetOnMount:this.resetOnMount,value:r,isActive:t,addingLink:o,onFocusOutside:this.onFocusOutside,onClose:function(){i||e.resetState()},focusOnMount:!!u&&"firstElement",renderSettings:function(){return Object(h.createElement)(Ae,null,Object(h.createElement)(Ie,{label:Fe("Open in New Tab","all-in-one-seo-pack"),checked:s,onChange:e.setLinkTarget}),Object(h.createElement)(Ie,{label:Fe('Add "nofollow" to link',"all-in-one-seo-pack"),checked:a,onChange:e.setNoFollow}),Object(h.createElement)(Ie,{label:Fe('Add "sponsored" to link',"all-in-one-seo-pack"),checked:l,onChange:e.setSponsored}),Object(h.createElement)(Ie,{label:Fe('Add "ugc" to link',"all-in-one-seo-pack"),checked:c,onChange:e.setUgc}))}},u?Object(h.createElement)(Oe,{className:"editor-format-toolbar__link-container-content block-editor-format-toolbar__link-container-content",value:i,onChangeInputValue:this.onChangeInputValue,onKeyDown:this.onKeyDown,onKeyPress:_e,onSubmit:this.submitLink,autocompleteRef:this.autocompleteRef}):Object(h.createElement)(xe,{className:"editor-format-toolbar__link-container-content block-editor-format-toolbar__link-container-content",onKeyPress:_e,url:n,onEditLinkClick:this.editLink,linkClassName:P(qe(n))?void 0:"has-invalid-link"})))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=(i=e.activeAttributes).url,o=i.target,r=i.rel,i="_blank"===o;o={};return et(e,t)||(n!==t.inputValue&&(o.inputValue=n),i!==t.opensInNewWindow&&(o.opensInNewWindow=i),"string"==typeof r&&(n=r.split(" ").includes("nofollow"),i=r.split(" ").includes("sponsored"),r=r.split(" ").includes("ugc"),n!==t.noFollow&&(o.noFollow=n),i!==t.sponsored&&(o.sponsored=i),r!==t.ugc&&(o.ugc=r))),o}}]),n}(o));function ot(e,t){var n,o=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)),o}var rt=(a=window.wp).i18n.__,it=(n=(t=a.element).Component,t.Fragment),st=(i=a.data).select,at=(o=i.withSelect,(t=a.blockEditor).BlockControls),lt=t.RichTextToolbarButton,ct=t.RichTextShortcut,ut=(i=a.richText).getTextContent,pt=i.applyFormat,ft=i.removeFormat,dt=i.slice,ht=a.url.isURL,gt=(t=a.components).Toolbar,vt=(i=t.withSpokenMessages,a=(t=a.compose).compose,t=t.ifCondition,"core/link"),bt=rt("Add Link","all-in-one-seo-pack"),yt=/^(mailto:)?[a-z0-9._%+-]+@[a-z0-9][a-z0-9.-]*\.[a-z]{2,63}$/i,mt=(n=function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).isEmail=e.isEmail.bind(u()(e)),e.addLink=e.addLink.bind(u()(e)),e.stopAddingLink=e.stopAddingLink.bind(u()(e)),e.onRemoveFormat=e.onRemoveFormat.bind(u()(e)),e.state={addingLink:!1},e}return c()(n,[{key:"isEmail",value:function(e){return yt.test(e)}},{key:"addLink",value:function(){var e,t=(e=this.props).value,n=e.onChange;(e=ut(dt(t)))&&ht(e)?n(pt(t,{type:vt,attributes:{url:e}})):e&&this.isEmail(e)?n(pt(t,{type:vt,attributes:{url:"mailto:".concat(e)}})):this.setState({addingLink:!0})}},{key:"stopAddingLink",value:function(){this.setState({addingLink:!1})}},{key:"onRemoveFormat",value:function(){var e=(n=this.props).value,t=n.onChange,n=n.speak,o=e;Object(g.map)(["core/link"],(function(e){o=ft(o,e)})),t(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ot(Object(n),!0).forEach((function(t){s()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ot(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},o)),n(rt("Link removed.","all-in-one-seo-pack"),"assertive")}},{key:"render",value:function(){var e=(n=this.props).activeAttributes,t=n.onChange,n=(o=this.props).isActive,o=o.value;return Object(h.createElement)(it,null,Object(h.createElement)(at,null,Object(h.createElement)(gt,{className:"editorskit-components-toolbar"},Object(h.createElement)(ct,{type:"primary",character:"k",onUse:this.addLink}),Object(h.createElement)(ct,{type:"primaryShift",character:"k",onUse:this.onRemoveFormat}),n&&Object(h.createElement)(lt,{name:"link",icon:"editor-unlink",title:rt("Unlink","all-in-one-seo-pack"),onClick:this.onRemoveFormat,isActive:n,shortcutType:"primaryShift",shortcutCharacter:"k"}),!n&&Object(h.createElement)(lt,{name:"link",icon:"admin-links",title:bt,onClick:this.addLink,isActive:n,shortcutType:"primary",shortcutCharacter:"k"}),Object(h.createElement)(nt,{addingLink:this.state.addingLink,stopAddingLink:this.stopAddingLink,isActive:n,activeAttributes:e,value:o,onChange:t}))))}}]),n}(n),t=a(o((function(){return{isDisabled:st("core/edit-post").isFeatureActive("disableEditorsKitLinkFormats")}})),t((function(e){return!e.isDisabled})),i)(n),["name"]),wt=(i=wp.i18n.__,(n=wp.richText).registerFormatType),kt=n.unregisterFormatType,Ot=n.applyFormat,St=n.isCollapsed,jt=wp.htmlEntities.decodeEntities,Lt=wp.url.isURL,Rt="core/link",Et={name:Rt,title:i("Link","all-in-one-seo-pack"),tagName:"a",className:null,attributes:{url:"href",target:"target",rel:"rel"},__unstablePasteRule:function(e,t){var n=t.html;t=t.plainText;return St(e)?e:(t=(n||t).replace(/<[^>]+>/g,"").trim(),Lt(t)?Ot(e,{type:Rt,attributes:{url:jt(t)}}):e)},edit:t};[Et].forEach((function(e){var t=e.name;e=r()(e,mt);t&&(kt("core/link"),wt(t,e))}))}});
1
+ /*! ! built on Tuesday, September 14th 2021, 11:55:41 am */
2
  !function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=82)}({0:function(e,t){e.exports=window.wp.element},12:function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,o=arguments[t];for(n in o)Object.prototype.hasOwnProperty.call(o,n)&&(e[n]=o[n])}return e},n.apply(this,arguments)}e.exports=n},14:function(e,t,n){var o=n(29);e.exports=function(e,t){if(null==e)return{};var n,r=o(e,t);if(Object.getOwnPropertySymbols)for(var i=Object.getOwnPropertySymbols(e),s=0;s<i.length;s++)n=i[s],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n]);return r}},15:function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},16:function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}e.exports=function(e,t,o){return t&&n(e.prototype,t),o&&n(e,o),e}},17:function(e,t,n){var o=n(30);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&o(e,t)}},18:function(e,t,n){var o=n(31),r=n(3);e.exports=function(e,t){return!t||"object"!==o(t)&&"function"!=typeof t?r(e):t}},19:function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},29:function(e,t){e.exports=function(e,t){if(null==e)return{};for(var n,o={},r=Object.keys(e),i=0;i<r.length;i++)n=r[i],0<=t.indexOf(n)||(o[n]=e[n]);return o}},3:function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},30:function(e,t){function n(t,o){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,o)}e.exports=n},31:function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},6:function(e,t){e.exports=window.lodash},7:function(e,t,n){var o;!function(){"use strict";var n={}.hasOwnProperty;function r(){for(var e=[],t=0;t<arguments.length;t++){var o=arguments[t];if(o){var i=typeof o;if("string"==i||"number"==i)e.push(o);else if(Array.isArray(o)&&o.length){var s=r.apply(null,o);s&&e.push(s)}else if("object"==i)for(var a in o)n.call(o,a)&&o[a]&&e.push(a)}}return e.join(" ")}e.exports?(r.default=r,e.exports=r):void 0===(o=function(){return r}.apply(t,[]))||(e.exports=o)}()},8:function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},82:function(e,t,n){"use strict";n.r(t),n.d(t,"link",(function(){return Et}));var o=n(14),r=n.n(o),i=n(19),s=n.n(i),a=n(15),l=n.n(a),c=(t=n(16),n.n(t)),u=(o=n(3),n.n(o)),p=(i=n(17),n.n(i)),f=(a=n(18),n.n(a)),d=(t=n(8),n.n(t)),h=n(0),g=n(6),v=(o=n(12),n.n(o)),b=(a=(i=window.wp).url).getProtocol,y=a.isValidProtocol,m=a.getAuthority,w=a.isValidAuthority,k=a.getPath,O=a.isValidPath,S=a.getQueryString,j=a.isValidQueryString,L=a.getFragment,R=a.isValidFragment,E=(t=i.i18n).__,C=t.sprintf;function P(e){if(e){var t=e.trim();if(t){if(/^\S+:/.test(t)){if(e=b(t),!y(e))return;if(Object(g.startsWith)(e,"http")&&!/^https?:\/\/[^\/\s]/i.test(t))return;if(e=m(t),!w(e))return;if((e=k(t))&&!O(e))return;if((e=S(t))&&!j(e))return;if((e=L(t))&&!R(e))return}return!Object(g.startsWith)(t,"#")||R(t)?1:void 0}}}function x(e){var t=e.url,n=e.opensInNewWindow,o=e.noFollow,r=e.sponsored,i=e.ugc,s=e.text;e={type:"core/link",attributes:{url:t}},t=[];return n&&(s=C(E("%s (opens in a new tab)","all-in-one-seo-pack"),s),e.attributes.target="_blank",e.attributes["aria-label"]=s,t.push("noreferrer noopener")),o&&t.push("nofollow"),r&&t.push("sponsored"),i&&t.push("ugc"),0<t.length&&(e.attributes.rel=t.join(" ")),e}o=wp.element.Component;var N=(a=wp.dom).getOffsetParent,_=a.getRectangleFromRange,F=function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).state={style:function(){var e=window.getSelection();if(0===e.rangeCount)return{};var t=(n=_(e.getRangeAt(0))).top+n.height,n=n.left+n.width/2;return(e=N(e.anchorNode))&&(t-=(e=e.getBoundingClientRect()).top,n-=e.left),{top:t,left:n}}()},e}return c()(n,[{key:"render",value:function(){var e=this.props.children,t=this.state.style;return Object(h.createElement)("div",{className:"editor-format-toolbar__selection-position",style:t},e)}}]),n}(o),T=(i=n(7),n.n(i));function W(e){return(W="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function A(e,t){var n,o=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)),o}function I(e,t){var n=e["page".concat(t?"Y":"X","Offset")];t="scroll".concat(t?"Top":"Left");return"number"==typeof n||"number"!=typeof(n=(e=e.document).documentElement[t])&&(n=e.body[t]),n}function D(e){return I(e)}function V(e){return I(e,!0)}function B(e){var t,n,o,r=(n=(r=(t=e).ownerDocument).body,o=r&&r.documentElement,t=(r=t.getBoundingClientRect()).left,r=r.top,{left:t-=o.clientLeft||n.clientLeft||0,top:r-=o.clientTop||n.clientTop||0});e=(e=e.ownerDocument).defaultView||e.parentWindow;return r.left+=D(e),r.top+=V(e),r}var M,U=new RegExp("^(".concat(/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,")(?!px)[a-z%]+$"),"i"),K=/^(top|right|bottom|left)$/,H="currentStyle",z="runtimeStyle",q="left";function Q(e,t){for(var n=0;n<e.length;n++)t(e[n])}function $(e){return"border-box"===M(e,"boxSizing")}"undefined"!=typeof window&&(M=window.getComputedStyle?function(e,t,n){var o="",r=e.ownerDocument;return(e=n||r.defaultView.getComputedStyle(e,null))?e.getPropertyValue(t)||e[t]:o}:function(e,t){var n,o,r,i=e[H]&&e[H][t];return U.test(i)&&!K.test(t)&&(o=(n=e.style)[q],r=e[z][q],e[z][q]=e[H][q],n[q]="fontSize"===t?"1em":i||0,i=n.pixelLeft+"px",n[q]=o,e[z][q]=r),""===i?"auto":i});var G=["margin","border","padding"];function X(e,t,n){for(var o,r,i=0,s=0;s<t.length;s++)if(o=t[s])for(r=0;r<n.length;r++){var a="border"===o?"".concat(o+n[r],"Width"):o+n[r];i+=parseFloat(M(e,a))||0}return i}function Y(e){return null!=e&&e==e.window}var J={};function Z(e,t,n){if(Y(e))return"width"===t?J.viewportWidth(e):J.viewportHeight(e);if(9===e.nodeType)return"width"===t?J.docWidth(e):J.docHeight(e);var o="width"===t?["Left","Right"]:["Top","Bottom"],r="width"===t?e.offsetWidth:e.offsetHeight,i=(M(e),$(e)),s=0;return(null==r||r<=0)&&(r=void 0,(null==(s=M(e,t))||Number(s)<0)&&(s=e.style[t]||0),s=parseFloat(s)||0),t=void 0!==r||i,r=r||s,-1===(n=void 0===n?i?1:-1:n)?t?r-X(e,["border","padding"],o):s:t?(t=2===n?-X(e,["border"],o):X(e,["margin"],o),r+(1===n?0:t)):s+X(e,G.slice(n),o)}Q(["Width","Height"],(function(e){J["doc".concat(e)]=function(t){return t=t.document,Math.max(t.documentElement["scroll".concat(e)],t.body["scroll".concat(e)],J["viewport".concat(e)](t))},J["viewport".concat(e)]=function(t){var n="client".concat(e),o=t.document,r=o.body;t=o.documentElement[n];return"CSS1Compat"===o.compatMode&&t||r&&r[n]||t}}));var ee={position:"absolute",visibility:"hidden",display:"block"};function te(e){var t,n=arguments;return 0!==e.offsetWidth?t=Z.apply(void 0,n):function(e,t,n){var o,r={},i=e.style;for(o in t)t.hasOwnProperty(o)&&(r[o]=i[o],i[o]=t[o]);for(o in n.call(e),t)t.hasOwnProperty(o)&&(i[o]=r[o])}(e,ee,(function(){t=Z.apply(void 0,n)})),t}function ne(e,t,n){var o;n=n;if("object"!==W(t))return void 0!==n?("number"==typeof n&&(n+="px"),void(e.style[t]=n)):M(e,t);for(o in t)t.hasOwnProperty(o)&&ne(e,o,t[o])}Q(["width","height"],(function(e){var t=e.charAt(0).toUpperCase()+e.slice(1);J["outer".concat(t)]=function(t,n){return t&&te(t,e,n?0:1)};var n="width"===e?["Left","Right"]:["Top","Bottom"];J[e]=function(t,o){return void 0===o?t&&te(t,e,-1):t?(M(t),$(t)&&(o+=X(t,["padding","border"],n)),ne(t,e,o)):void 0}}));var oe=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?A(n,!0).forEach((function(t){var o,r;o=e,t=n[r=t],r in o?Object.defineProperty(o,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):o[r]=t})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):A(n).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({getWindow:function(e){return(e=e.ownerDocument||e).defaultView||e.parentWindow},offset:function(e,t){if(void 0===t)return B(e);!function(e,t){"static"===ne(e,"position")&&(e.style.position="relative");var n,o,r=B(e),i={};for(o in t)t.hasOwnProperty(o)&&(n=parseFloat(ne(e,o))||0,i[o]=n+t[o]-r[o]);ne(e,i)}(e,t)},isWindow:Y,each:Q,css:ne,clone:function(e){var t,n={};for(t in e)e.hasOwnProperty(t)&&(n[t]=e[t]);if(e.overflow)for(var o in e)e.hasOwnProperty(o)&&(n.overflow[o]=e.overflow[o]);return n},scrollLeft:function(e,t){if(Y(e)){if(void 0===t)return D(e);window.scrollTo(t,V(e))}else{if(void 0===t)return e.scrollLeft;e.scrollLeft=t}},scrollTop:function(e,t){if(Y(e)){if(void 0===t)return V(e);window.scrollTo(D(e),t)}else{if(void 0===t)return e.scrollTop;e.scrollTop=t}},viewportWidth:0,viewportHeight:0},J);function re(e){return e.stopPropagation()}var ie=(a=(t=window.wp).i18n).__,se=a.sprintf,ae=a._n,le=(n=(o=t.element).Component,o.createRef),ce=t.htmlEntities.decodeEntities,ue=(i=t.keycodes).UP,pe=i.DOWN,fe=i.ENTER,de=i.TAB,he=(a=t.components).Spinner,ge=(o=a.withSpokenMessages,a.Popover),ve=(i=t.compose.withInstanceId,t.apiFetch),be=t.url.addQueryArgs,ye=o(i(function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(e){var o=e.autocompleteRef;return l()(this,n),(e=t.apply(this,arguments)).onChange=e.onChange.bind(u()(e)),e.onKeyDown=e.onKeyDown.bind(u()(e)),e.autocompleteRef=o||le(),e.inputRef=le(),e.updateSuggestions=Object(g.throttle)(e.updateSuggestions.bind(u()(e)),200),e.suggestionNodes=[],e.state={posts:[],showSuggestions:!1,selectedSuggestion:null},e}return c()(n,[{key:"componentDidUpdate",value:function(){var e=this,t=(n=this.state).showSuggestions,n=n.selectedSuggestion;t&&null!==n&&!this.scrollingIntoView&&(this.scrollingIntoView=!0,function(e,t,n){n=n||{},9===t.nodeType&&(t=oe.getWindow(t));var o,r,i,s,a,l,c=n.allowHorizontalScroll,u=n.onlyScrollIfNeeded,p=n.alignWithTop,f=n.alignWithLeft,d=n.offsetTop||0,h=n.offsetLeft||0,g=n.offsetBottom||0,v=n.offsetRight||0,b=(c=void 0===c||c,oe.isWindow(t)),y=oe.offset(e);n=oe.outerHeight(e),e=oe.outerWidth(e);b?(i=t,l=oe.height(i),a=oe.width(i),s={left:oe.scrollLeft(i),top:oe.scrollTop(i)},o={left:y.left-s.left-h,top:y.top-s.top-d},r={left:y.left+e-(s.left+a)+v,top:y.top+n-(s.top+l)+g},i=s):(a=oe.offset(t),l=t.clientHeight,s=t.clientWidth,i={left:t.scrollLeft,top:t.scrollTop},o={left:y.left-(a.left+(parseFloat(oe.css(t,"borderLeftWidth"))||0))-h,top:y.top-(a.top+(parseFloat(oe.css(t,"borderTopWidth"))||0))-d},r={left:y.left+e-(a.left+s+(parseFloat(oe.css(t,"borderRightWidth"))||0))+v,top:y.top+n-(a.top+l+(parseFloat(oe.css(t,"borderBottomWidth"))||0))+g}),o.top<0||0<r.top?!0===p||!1!==p&&o.top<0?oe.scrollTop(t,i.top+o.top):oe.scrollTop(t,i.top+r.top):u||((p=void 0===p||!!p)?oe.scrollTop(t,i.top+o.top):oe.scrollTop(t,i.top+r.top)),c&&(o.left<0||0<r.left?!0===f||!1!==f&&o.left<0?oe.scrollLeft(t,i.left+o.left):oe.scrollLeft(t,i.left+r.left):u||((f=void 0===f||!!f)?oe.scrollLeft(t,i.left+o.left):oe.scrollLeft(t,i.left+r.left)))}(this.suggestionNodes[n],this.autocompleteRef.current,{onlyScrollIfNeeded:!0}),setTimeout((function(){e.scrollingIntoView=!1}),100))}},{key:"componentWillUnmount",value:function(){delete this.suggestionsRequest}},{key:"bindSuggestionNode",value:function(e){var t=this;return function(n){t.suggestionNodes[e]=n}}},{key:"updateSuggestions",value:function(e){var t,n=this;e.length<2||/^https?:/.test(e)?this.setState({showSuggestions:!1,selectedSuggestion:null,loading:!1}):(this.setState({showSuggestions:!0,selectedSuggestion:null,loading:!0}),(t=ve({path:be("/wp/v2/search",{search:e,per_page:20,type:"post"})})).then((function(e){n.suggestionsRequest===t&&(n.setState({posts:e,loading:!1}),e.length?n.props.debouncedSpeak(se(ae("%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate.",e.length),e.length),"assertive"):n.props.debouncedSpeak(ie("No results.","all-in-one-seo-pack"),"assertive"))})).catch((function(){n.suggestionsRequest===t&&n.setState({loading:!1})})),this.suggestionsRequest=t)}},{key:"onChange",value:function(e){e=e.target.value,this.props.onChange(e),this.updateSuggestions(e)}},{key:"onKeyDown",value:function(e){var t=(r=this.state).showSuggestions,n=r.selectedSuggestion,o=r.posts,r=r.loading;if(t&&o.length&&!r){var i=this.state.posts[this.state.selectedSuggestion];switch(e.keyCode){case ue:e.stopPropagation(),e.preventDefault();var s=n?n-1:o.length-1;this.setState({selectedSuggestion:s});break;case pe:e.stopPropagation(),e.preventDefault(),s=null===n||n===o.length-1?0:n+1,this.setState({selectedSuggestion:s});break;case de:null!==this.state.selectedSuggestion&&(this.selectLink(i),this.props.speak(ie("Link selected.","all-in-one-seo-pack")));break;case fe:null!==this.state.selectedSuggestion&&(e.stopPropagation(),this.selectLink(i))}}else switch(e.keyCode){case ue:0!==e.target.selectionStart&&(e.stopPropagation(),e.preventDefault(),e.target.setSelectionRange(0,0));break;case pe:this.props.value.length!==e.target.selectionStart&&(e.stopPropagation(),e.preventDefault(),e.target.setSelectionRange(this.props.value.length,this.props.value.length))}}},{key:"selectLink",value:function(e){this.props.onChange(e.url,e),this.setState({selectedSuggestion:null,showSuggestions:!1})}},{key:"handleOnClick",value:function(e){this.selectLink(e),this.inputRef.current.focus()}},{key:"render",value:function(){var e=this,t=void 0===(l=(s=this.props).value)?"":l,n=void 0===(i=s.autoFocus)||i,o=s.instanceId,r=s.className,i=(l=this.state).showSuggestions,s=l.posts,a=l.selectedSuggestion,l=l.loading;return Object(h.createElement)("div",{className:T()("editor-url-input block-editor-url-input",r)},Object(h.createElement)("input",{autoFocus:n,type:"text","aria-label":ie("URL","all-in-one-seo-pack"),required:!0,value:t,onChange:this.onChange,onInput:re,placeholder:ie("Paste URL or type to search","all-in-one-seo-pack"),onKeyDown:this.onKeyDown,role:"combobox","aria-expanded":i,"aria-autocomplete":"list","aria-owns":"editor-url-input-suggestions-".concat(o),"aria-activedescendant":null!==a?"editor-url-input-suggestion-".concat(o,"-").concat(a):void 0,ref:this.inputRef}),l&&Object(h.createElement)(he,null),i&&!!s.length&&Object(h.createElement)(ge,{position:"bottom",noArrow:!0,focusOnMount:!1},Object(h.createElement)("div",{className:T()("editor-url-input__suggestions","block-editor-url-input__suggestions","".concat(r,"__suggestions")),id:"editor-url-input-suggestions-".concat(o),ref:this.autocompleteRef,role:"listbox"},s.map((function(t,n){return Object(h.createElement)("button",{key:t.id,role:"option",tabIndex:"-1",id:"editor-url-input-suggestion-".concat(o,"-").concat(n),ref:e.bindSuggestionNode(n),className:T()("editor-url-input__suggestion block-editor-url-input__suggestion",{"is-selected":n===a}),onClick:function(){return e.handleOnClick(t)},"aria-selected":n===a},ce(t.title)||ie("(no title)","all-in-one-seo-pack"))})))))}}]),n}(n))),me=["autocompleteRef","className","onChangeInputValue","value"],we=(a=window.wp).i18n.__,ke=a.components.IconButton;function Oe(e){var t=e.autocompleteRef,n=e.className,o=e.onChangeInputValue,i=e.value;e=r()(e,me);return Object(h.createElement)("form",v()({className:T()("block-editor-url-popover__link-editor",n)},e),Object(h.createElement)(ye,{value:i,onChange:o,autocompleteRef:t}),Object(h.createElement)(ke,{icon:"editor-break",label:we("Apply","all-in-one-seo-pack"),type:"submit"}))}var Se=["className","linkClassName","onEditLinkClick","url","urlLabel"],je=(t=window.wp).i18n.__,Le=(o=t.components).ExternalLink,Re=o.IconButton,Ee=(i=t.url).safeDecodeURI,Ce=i.filterURLForDisplay;function Pe(e){var t=e.url,n=e.urlLabel;e=e.className,e=T()(e,"block-editor-url-popover__link-viewer-url");return t?Object(h.createElement)(Le,{className:e,href:t},n||Ce(Ee(t))):Object(h.createElement)("span",{className:e})}function xe(e){var t=e.className,n=e.linkClassName,o=e.onEditLinkClick,i=e.url,s=e.urlLabel;e=r()(e,Se);return Object(h.createElement)("div",v()({className:T()("block-editor-url-popover__link-viewer",t)},e),Object(h.createElement)(Pe,{url:i,urlLabel:s,className:n}),o&&Object(h.createElement)(Re,{icon:"edit",label:je("Edit","all-in-one-seo-pack"),onClick:o}))}var Ne=["isActive","addingLink","value","resetOnMount"];function _e(e){return e.stopPropagation()}var Fe=(n=window.wp).i18n.__,Te=(o=(a=n.element).Component,a.createRef),We=a.useMemo,Ae=a.Fragment,Ie=(t=n.components).ToggleControl,De=(i=t.withSpokenMessages,(a=n.keycodes).LEFT),Ve=a.RIGHT,Be=a.UP,Me=a.DOWN,Ue=a.BACKSPACE,Ke=a.ENTER,He=a.ESCAPE,ze=n.dom.getRectangleFromRange,qe=n.url.prependHTTP,Qe=(t=n.richText).create,$e=t.insert,Ge=t.isCollapsed,Xe=t.applyFormat,Ye=t.getTextContent,Je=t.slice,Ze=n.blockEditor.URLPopover;function et(e,t){return e.addingLink||t.editLink}function tt(e){var t=e.isActive,n=e.addingLink,o=e.value,i=e.resetOnMount;e=r()(e,Ne);return(o=We((function(){var e;if(e=0<(e=window.getSelection()).rangeCount?e.getRangeAt(0):null){if(n)return ze(e);for(var t=(t=e.startContainer).nextElementSibling||t;t.nodeType!==window.Node.ELEMENT_NODE;)t=t.parentNode;return(e=t.closest("a"))?e.getBoundingClientRect():void 0}}),[t,n,o.start,o.end]))?(i(o),Object(h.createElement)(Ze,v()({anchorRect:o},e))):null}var nt=i(function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).editLink=e.editLink.bind(u()(e)),e.submitLink=e.submitLink.bind(u()(e)),e.onKeyDown=e.onKeyDown.bind(u()(e)),e.onChangeInputValue=e.onChangeInputValue.bind(u()(e)),e.setLinkTarget=e.setLinkTarget.bind(u()(e)),e.setNoFollow=e.setNoFollow.bind(u()(e)),e.setSponsored=e.setSponsored.bind(u()(e)),e.setUgc=e.setUgc.bind(u()(e)),e.onFocusOutside=e.onFocusOutside.bind(u()(e)),e.resetState=e.resetState.bind(u()(e)),e.autocompleteRef=Te(),e.resetOnMount=e.resetOnMount.bind(u()(e)),e.state={opensInNewWindow:!1,noFollow:!1,sponsored:!1,ugc:!1,inputValue:"",anchorRect:!1},e}return c()(n,[{key:"onKeyDown",value:function(e){-1<[De,Me,Ve,Be,Ue,Ke].indexOf(e.keyCode)&&e.stopPropagation(),-1<[He].indexOf(e.keyCode)&&this.resetState()}},{key:"onChangeInputValue",value:function(e){this.setState({inputValue:e})}},{key:"setLinkTarget",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({opensInNewWindow:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:e,noFollow:this.state.noFollow,sponsored:this.state.sponsored,ugc:this.state.ugc,text:t}))))}},{key:"setNoFollow",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({noFollow:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:e,sponsored:this.state.sponsored,ugc:this.state.ugc,text:t}))))}},{key:"setSponsored",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({sponsored:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:this.state.noFollow,sponsored:e,ugc:this.state.ugc,text:t}))))}},{key:"setUgc",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({ugc:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:this.state.noFollow,sponsored:this.state.sponsored,ugc:e,text:t}))))}},{key:"editLink",value:function(e){this.setState({editLink:!0}),e.preventDefault()}},{key:"submitLink",value:function(e){var t=(l=this.props).isActive,n=l.value,o=l.onChange,r=l.speak,i=(c=this.state).inputValue,s=c.opensInNewWindow,a=c.noFollow,l=c.sponsored,c=c.ugc;c=x({url:i=qe(i),opensInNewWindow:s,noFollow:a,sponsored:l,ugc:c,text:Ye(Je(n))});e.preventDefault(),Ge(n)&&!t?(e=Xe(Qe({text:i}),c,0,i.length),o($e(n,e))):o(Xe(n,c)),this.resetState(),P(i)?r(Fe(t?"Link edited.":"Link inserted.","all-in-one-seo-pack"),"assertive"):r(Fe("Warning: the link has been inserted but could have errors. Please test it.","all-in-one-seo-pack"),"assertive")}},{key:"onFocusOutside",value:function(){var e=this.autocompleteRef.current;e&&e.contains(event.target)||this.resetState()}},{key:"resetState",value:function(){this.props.stopAddingLink(),this.setState({editLink:!1})}},{key:"resetOnMount",value:function(e){this.state.anchorRect!==e&&this.setState({opensInNewWindow:!1,noFollow:!1,sponsored:!1,ugc:!1,anchorRect:e})}},{key:"render",value:function(){var e=this,t=(u=this.props).isActive,n=u.activeAttributes.url,o=u.addingLink,r=u.value;if(!t&&!o)return null;var i=(u=this.state).inputValue,s=u.opensInNewWindow,a=u.noFollow,l=u.sponsored,c=u.ugc,u=et(this.props,this.state);return Object(h.createElement)(F,{key:"".concat(r.start).concat(r.end)},Object(h.createElement)(tt,{resetOnMount:this.resetOnMount,value:r,isActive:t,addingLink:o,onFocusOutside:this.onFocusOutside,onClose:function(){i||e.resetState()},focusOnMount:!!u&&"firstElement",renderSettings:function(){return Object(h.createElement)(Ae,null,Object(h.createElement)(Ie,{label:Fe("Open in New Tab","all-in-one-seo-pack"),checked:s,onChange:e.setLinkTarget}),Object(h.createElement)(Ie,{label:Fe('Add "nofollow" to link',"all-in-one-seo-pack"),checked:a,onChange:e.setNoFollow}),Object(h.createElement)(Ie,{label:Fe('Add "sponsored" to link',"all-in-one-seo-pack"),checked:l,onChange:e.setSponsored}),Object(h.createElement)(Ie,{label:Fe('Add "ugc" to link',"all-in-one-seo-pack"),checked:c,onChange:e.setUgc}))}},u?Object(h.createElement)(Oe,{className:"editor-format-toolbar__link-container-content block-editor-format-toolbar__link-container-content",value:i,onChangeInputValue:this.onChangeInputValue,onKeyDown:this.onKeyDown,onKeyPress:_e,onSubmit:this.submitLink,autocompleteRef:this.autocompleteRef}):Object(h.createElement)(xe,{className:"editor-format-toolbar__link-container-content block-editor-format-toolbar__link-container-content",onKeyPress:_e,url:n,onEditLinkClick:this.editLink,linkClassName:P(qe(n))?void 0:"has-invalid-link"})))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=(i=e.activeAttributes).url,o=i.target,r=i.rel,i="_blank"===o;o={};return et(e,t)||(n!==t.inputValue&&(o.inputValue=n),i!==t.opensInNewWindow&&(o.opensInNewWindow=i),"string"==typeof r&&(n=r.split(" ").includes("nofollow"),i=r.split(" ").includes("sponsored"),r=r.split(" ").includes("ugc"),n!==t.noFollow&&(o.noFollow=n),i!==t.sponsored&&(o.sponsored=i),r!==t.ugc&&(o.ugc=r))),o}}]),n}(o));function ot(e,t){var n,o=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)),o}var rt=(a=window.wp).i18n.__,it=(n=(t=a.element).Component,t.Fragment),st=(i=a.data).select,at=(o=i.withSelect,(t=a.blockEditor).BlockControls),lt=t.RichTextToolbarButton,ct=t.RichTextShortcut,ut=(i=a.richText).getTextContent,pt=i.applyFormat,ft=i.removeFormat,dt=i.slice,ht=a.url.isURL,gt=(t=a.components).Toolbar,vt=(i=t.withSpokenMessages,a=(t=a.compose).compose,t=t.ifCondition,"core/link"),bt=rt("Add Link","all-in-one-seo-pack"),yt=/^(mailto:)?[a-z0-9._%+-]+@[a-z0-9][a-z0-9.-]*\.[a-z]{2,63}$/i,mt=(n=function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).isEmail=e.isEmail.bind(u()(e)),e.addLink=e.addLink.bind(u()(e)),e.stopAddingLink=e.stopAddingLink.bind(u()(e)),e.onRemoveFormat=e.onRemoveFormat.bind(u()(e)),e.state={addingLink:!1},e}return c()(n,[{key:"isEmail",value:function(e){return yt.test(e)}},{key:"addLink",value:function(){var e,t=(e=this.props).value,n=e.onChange;(e=ut(dt(t)))&&ht(e)?n(pt(t,{type:vt,attributes:{url:e}})):e&&this.isEmail(e)?n(pt(t,{type:vt,attributes:{url:"mailto:".concat(e)}})):this.setState({addingLink:!0})}},{key:"stopAddingLink",value:function(){this.setState({addingLink:!1})}},{key:"onRemoveFormat",value:function(){var e=(n=this.props).value,t=n.onChange,n=n.speak,o=e;Object(g.map)(["core/link"],(function(e){o=ft(o,e)})),t(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ot(Object(n),!0).forEach((function(t){s()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ot(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},o)),n(rt("Link removed.","all-in-one-seo-pack"),"assertive")}},{key:"render",value:function(){var e=(n=this.props).activeAttributes,t=n.onChange,n=(o=this.props).isActive,o=o.value;return Object(h.createElement)(it,null,Object(h.createElement)(at,null,Object(h.createElement)(gt,{className:"editorskit-components-toolbar"},Object(h.createElement)(ct,{type:"primary",character:"k",onUse:this.addLink}),Object(h.createElement)(ct,{type:"primaryShift",character:"k",onUse:this.onRemoveFormat}),n&&Object(h.createElement)(lt,{name:"link",icon:"editor-unlink",title:rt("Unlink","all-in-one-seo-pack"),onClick:this.onRemoveFormat,isActive:n,shortcutType:"primaryShift",shortcutCharacter:"k"}),!n&&Object(h.createElement)(lt,{name:"link",icon:"admin-links",title:bt,onClick:this.addLink,isActive:n,shortcutType:"primary",shortcutCharacter:"k"}),Object(h.createElement)(nt,{addingLink:this.state.addingLink,stopAddingLink:this.stopAddingLink,isActive:n,activeAttributes:e,value:o,onChange:t}))))}}]),n}(n),t=a(o((function(){return{isDisabled:st("core/edit-post").isFeatureActive("disableEditorsKitLinkFormats")}})),t((function(e){return!e.isDisabled})),i)(n),["name"]),wt=(i=wp.i18n.__,(n=wp.richText).registerFormatType),kt=n.unregisterFormatType,Ot=n.applyFormat,St=n.isCollapsed,jt=wp.htmlEntities.decodeEntities,Lt=wp.url.isURL,Rt="core/link",Et={name:Rt,title:i("Link","all-in-one-seo-pack"),tagName:"a",className:null,attributes:{url:"href",target:"target",rel:"rel"},__unstablePasteRule:function(e,t){var n=t.html;t=t.plainText;return St(e)?e:(t=(n||t).replace(/<[^>]+>/g,"").trim(),Lt(t)?Ot(e,{type:Rt,attributes:{url:jt(t)}}):e)},edit:t};[Et].forEach((function(e){var t=e.name;e=r()(e,mt);t&&(kt("core/link"),wt(t,e))}))}});
dist/Lite/assets/js/link-format-block-old.js.gz CHANGED
Binary file
dist/Lite/assets/js/link-format-block.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! ! built on Thursday, September 9th 2021, 7:47:13 pm */
2
  !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=81)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},,function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.components},function(e,t){e.exports=window.lodash},function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var c=typeof r;if("string"==c||"number"==c)e.push(r);else if(Array.isArray(r)&&r.length){var i=o.apply(null,r);i&&e.push(i)}else if("object"==c)for(var l in r)n.call(r,l)&&r[l]&&e.push(l)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},,,function(e,t){e.exports=window.wp.richText},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,r=arguments[t];for(n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},n.apply(this,arguments)}e.exports=n},function(e,t){e.exports=window.wp.primitives},function(e,t,n){var r=n(29);e.exports=function(e,t){if(null==e)return{};var n,o=r(e,t);if(Object.getOwnPropertySymbols)for(var c=Object.getOwnPropertySymbols(e),i=0;i<c.length;i++)n=c[i],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n]);return o}},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e}},function(e,t,n){var r=n(30);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)}},function(e,t,n){var r=n(31),o=n(3);e.exports=function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?o(e):t}},function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},function(e,t,n){var r=n(60),o=n(61),c=n(62),i=n(64);e.exports=function(e,t){return r(e)||o(e,t)||c(e,t)||i()}},function(e,t){e.exports=window.regeneratorRuntime},,function(e,t){e.exports=window.wp.blockEditor},function(e,t){function n(e,t,n,r,o,c,i){try{var l=e[c](i),a=l.value}catch(e){return void n(e)}l.done?t(a):Promise.resolve(a).then(r,o)}e.exports=function(e){return function(){var t=this,r=arguments;return new Promise((function(o,c){var i=e.apply(t,r);function l(e){n(i,o,c,l,a,"next",e)}function a(e){n(i,o,c,l,a,"throw",e)}l(void 0)}))}}},,,,,function(e,t){e.exports=function(e,t){if(null==e)return{};for(var n,r={},o=Object.keys(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||(r[n]=e[n]);return r}},function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,r)}e.exports=n},function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},,,,,,,function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.data},function(e,t){e.exports=window.wp.dom},function(e,t){e.exports=window.wp.editor},,,,,,,,,,,,,,,,,,function(e,t){e.exports=function(e){if(Array.isArray(e))return e}},function(e,t){e.exports=function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,c=void 0;try{for(var i,l=e[Symbol.iterator]();!(r=(i=l.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==l.return||l.return()}finally{if(o)throw c}}return n}}},function(e,t,n){var r=n(63);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}}},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}},,,,,,,,,,,,,,,,,function(e,t,n){"use strict";n.r(t);var r=n(14),o=n.n(r),c=(t=n(15),n.n(t)),i=(r=n(16),n.n(r)),l=(t=n(3),n.n(t)),a=(r=n(17),n.n(r)),s=(t=n(18),n.n(t)),u=(r=n(8),n.n(r)),p=n(0),b=n(1),f=n(5),d=n(11),m=n(4),O=n(23),g=n(38),h=(t=n(13),Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(p.createElement)(t.Path,{d:"M15.6 7.3h-.7l1.6-3.5-.9-.4-3.9 8.5H9v1.5h2l-1.3 2.8H8.4c-2 0-3.7-1.7-3.7-3.7s1.7-3.7 3.7-3.7H10V7.3H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H9l-1.4 3.2.9.4 5.7-12.5h1.4c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.9 0 5.2-2.3 5.2-5.2 0-2.9-2.4-5.2-5.2-5.2z"}))),j=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(p.createElement)(t.Path,{d:"M15.6 7.2H14v1.5h1.6c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.8 0 5.2-2.3 5.2-5.2 0-2.9-2.3-5.2-5.2-5.2zM4.7 12.4c0-2 1.7-3.7 3.7-3.7H10V7.2H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H10v-1.5H8.4c-2 0-3.7-1.7-3.7-3.7zm4.6.9h5.3v-1.5H9.3v1.5z"})),v=(r=n(19),n.n(r)),y=(r=n(20),n.n(r)),k=n(6),w=(r=n(12),n.n(r)),_=(r=n(24),n.n(r)),x=(r=n(21),n.n(r)),E=(r=n(7),n.n(r)),S=n(39),P=n(40),C=n(41);function T(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function N(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?T(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):T(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var L=[{id:"opensInNewTab",title:Object(b.__)("Open in new tab"),type:"ToggleControl"},{id:"nofollow",title:Object(b.__)('Add "nofollow" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"sponsored",title:Object(b.__)('Add "sponsored" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"ugc",title:Object(b.__)('Add "ugc" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"title",title:Object(b.__)("Add title attribute to link","all-in-one-seo-pack"),type:"TextControl"}],R=function(e){var t=e.value,n=e.onChange,r=void 0===n?k.noop:n;return(e=void 0===(e=e.settings)?L:e)&&e.length?(e=e.map((function(e){if("TextControl"!==e.type)return"ToggleControl"===e.type?Object(p.createElement)(f.ToggleControl,{className:"block-editor-link-control__setting",key:e.id,label:e.title,onChange:(n=e,function(e){r(N(N({},t),{},v()({},n.id,e)))}),checked:!!t&&!!t[e.id]}):null;var n,o=Object(p.useState)(),c=y()(o,2),i=(o=c[0],c[1]);return Object(p.createElement)(f.TextControl,{"data-aioseop":"true",className:"block-editor-link-control__setting",key:e.id,label:e.title,onChange:function(e){i(e)},onBlur:function(n){r(N(N({},t),{},v()({},e.id,n.target.value)))},value:o||t[e.id]})})),Object(p.createElement)("fieldset",{className:"block-editor-link-control__settings"},Object(p.createElement)(f.VisuallyHidden,{as:"legend"},Object(b.__)("Currently selected link settings")),e)):null};function H(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function A(e){var t=e.icon,n=void 0===(n=e.size)?24:n;e=function(e,t){if(null==e)return{};var n,r=function(e,t){if(null==e)return{};for(var n,r={},o=Object.keys(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||(r[n]=e[n]);return r}(e,t);if(Object.getOwnPropertySymbols)for(var o=Object.getOwnPropertySymbols(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n]);return r}(e,["icon","size"]);return Object(p.cloneElement)(t,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?H(Object(n),!0).forEach((function(t){var r,o;r=e,t=n[o=t],o in r?Object.defineProperty(r,o,{value:t,enumerable:!0,configurable:!0,writable:!0}):r[o]=t})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):H(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({width:n,height:n},e))}var I=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},Object(p.createElement)(t.Path,{d:"M9 0C4.03 0 0 4.03 0 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zM1.11 9.68h2.51c.04.91.167 1.814.38 2.7H1.84c-.403-.85-.65-1.764-.73-2.7zm8.57-5.4V1.19c.964.366 1.756 1.08 2.22 2 .205.347.386.708.54 1.08l-2.76.01zm3.22 1.35c.232.883.37 1.788.41 2.7H9.68v-2.7h3.22zM8.32 1.19v3.09H5.56c.154-.372.335-.733.54-1.08.462-.924 1.255-1.64 2.22-2.01zm0 4.44v2.7H4.7c.04-.912.178-1.817.41-2.7h3.21zm-4.7 2.69H1.11c.08-.936.327-1.85.73-2.7H4c-.213.886-.34 1.79-.38 2.7zM4.7 9.68h3.62v2.7H5.11c-.232-.883-.37-1.788-.41-2.7zm3.63 4v3.09c-.964-.366-1.756-1.08-2.22-2-.205-.347-.386-.708-.54-1.08l2.76-.01zm1.35 3.09v-3.04h2.76c-.154.372-.335.733-.54 1.08-.464.92-1.256 1.634-2.22 2v-.04zm0-4.44v-2.7h3.62c-.04.912-.178 1.817-.41 2.7H9.68zm4.71-2.7h2.51c-.08.936-.327 1.85-.73 2.7H14c.21-.87.337-1.757.38-2.65l.01-.05zm0-1.35c-.046-.894-.176-1.78-.39-2.65h2.16c.403.85.65 1.764.73 2.7l-2.5-.05zm1-4H13.6c-.324-.91-.793-1.76-1.39-2.52 1.244.56 2.325 1.426 3.14 2.52h.04zm-9.6-2.52c-.597.76-1.066 1.61-1.39 2.52H2.65c.815-1.094 1.896-1.96 3.14-2.52zm-3.15 12H4.4c.324.91.793 1.76 1.39 2.52-1.248-.567-2.33-1.445-3.14-2.55l-.01.03zm9.56 2.52c.597-.76 1.066-1.61 1.39-2.52h1.76c-.82 1.08-1.9 1.933-3.14 2.48l-.01.04z"})),F=function(e){var t=e.itemProps,n=e.suggestion,r=void 0!==(c=e.isSelected)&&c,o=e.onClick,c=void 0!==(c=e.isURL)&&c;e=void 0===(e=e.searchTerm)?"":e;return Object(p.createElement)(f.Button,w()({},t,{onClick:o,className:E()("block-editor-link-control__search-item",{"is-selected":r,"is-url":c,"is-entity":!c})}),c&&Object(p.createElement)(A,{className:"block-editor-link-control__search-item-icon",icon:I}),Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-title"},Object(p.createElement)(f.TextHighlight,{text:n.title,highlight:e})),Object(p.createElement)("span",{"aria-hidden":!c,className:"block-editor-link-control__search-item-info"},!c&&(Object(m.safeDecodeURI)(n.url)||""),c&&Object(b.__)("Press ENTER to add this link"))),n.type&&Object(p.createElement)("span",{className:"block-editor-link-control__search-item-type"},n.type))},z=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},Object(p.createElement)(t.Path,{d:"M16 4h2v9H7v3l-5-4 5-4v3h9V4z"})),D=n(42),M=function(e){var t=e.value,n=e.onChange,r=e.onSelect,o=e.renderSuggestions,c=e.fetchSuggestions,i=e.showInitialSuggestions,l=e.errorMessage,a=(e=Object(p.useState)(),(e=y()(e,2))[0]),s=e[1];return Object(p.createElement)("form",{onSubmit:function(e){e.preventDefault(),r(a||{url:t})}},Object(p.createElement)("div",{className:"block-editor-link-control__search-input-wrapper"},Object(p.createElement)(D.URLInput,{className:"block-editor-link-control__search-input",value:t,onChange:function(e,t){n(e),s(t)},placeholder:Object(b.__)("Search or type url"),__experimentalRenderSuggestions:o,__experimentalFetchLinkSuggestions:c,__experimentalHandleURLSuggestions:!0,__experimentalShowInitialSuggestions:i}),Object(p.createElement)("div",{className:"block-editor-link-control__search-actions"},Object(p.createElement)(f.Button,{type:"submit",label:Object(b.__)("Submit"),icon:z,className:"block-editor-link-control__search-submit"}))),l&&Object(p.createElement)(f.Notice,{className:"block-editor-link-control__search-error",status:"error",isDismissible:!1},l))},V=function(e){var t=e.searchTerm,n=e.onClick,r=e.itemProps;e=e.isSelected;return t?Object(p.createElement)(f.Button,w()({},r,{className:E()("block-editor-link-control__search-create block-editor-link-control__search-item",{"is-selected":e}),onClick:n}),Object(p.createElement)(f.Icon,{className:"block-editor-link-control__search-item-icon",icon:"insert"}),Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-title"},Object(p.createInterpolateElement)(Object(b.sprintf)(Object(b.__)("New page: <mark>%s</mark>"),t),{mark:Object(p.createElement)("mark",null)})))):null};function U(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function B(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?U(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):U(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var W=(n=Object(f.createSlotFill)("BlockEditorLinkControlViewer")).Slot,G=(n=n.Fill,"__CREATE__"),Q=function(e){var t=!1;return{promise:new Promise((function(n,r){e.then((function(e){return t?r({isCanceled:!0}):n(e)}),(function(e){return r(t?{isCanceled:!0}:e)}))})),cancel:function(){t=!0}}};function q(e){var t=e.value,n=e.settings,r=void 0===(j=e.onChange)?k.noop:j,o=void 0===(K=e.showSuggestions)||K,c=e.showInitialSuggestions,i=e.forceIsEditingLink,l=e.createSuggestion,a=Object(p.useRef)(),s=Object(p.useRef)(),u=Object(p.useRef)(),d=Object(S.useInstanceId)(q),O=Object(p.useState)(t&&t.url||""),g=(N=y()(O,2))[0],h=N[1],j=Object(p.useState)(void 0!==i?i:!t||!t.url),v=(K=y()(j,2))[0],T=K[1],N=(e=Object(p.useState)(!1),(O=y()(e,2))[0]),L=O[1],H=(j=Object(p.useState)(null),e=(K=y()(j,2))[0],K[1]),A=Object(p.useRef)(!1),I=Object(P.useSelect)((function(e){return{fetchSearchSuggestions:(0,e("core/block-editor").getSettings)().__experimentalFetchLinkSuggestions}}),[]).fetchSearchSuggestions;O=t&&Object(m.filterURLForDisplay)(Object(m.safeDecodeURI)(t.url))||"";function z(e){var t="URL",n=Object(m.getProtocol)(e)||"";return n.includes("mailto")&&(t="mailto"),n.includes("tel")&&(t="tel"),Object(k.startsWith)(e,"#")&&(t="internal"),Promise.resolve([{id:e,title:e,url:"URL"===t?Object(m.prependHTTP)(e):e,type:t}])}Object(p.useEffect)((function(){void 0!==i&&i!==v&&T(i)}),[i]),Object(p.useEffect)((function(){A.current&&u.current&&!u.current.contains(document.activeElement)&&(C.focus.focusable.find(u.current)[0]||u.current).focus(),A.current=!1}),[v]),Object(p.useEffect)((function(){return function(){a.current&&a.current.cancel(),s.current&&s.current.cancel()}}),[]);var D=function(){var e=_()(x.a.mark((function e(t,n){var r,o;return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([I(t,B({},n.isInitialSuggestions?{perPage:3}:{})),z(t)]);case 2:return r=e.sent,o=!t.includes(" "),r=o&&!n.isInitialSuggestions?r[0].concat(r[1]):r[0],e.abrupt("return",$(t)?r:r.concat({title:t,url:t,type:G}));case 6:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}();function U(){A.current=!!u.current&&u.current.contains(document.activeElement),T(!1)}function $(e){var t=Object(k.startsWith)(e,"#");return Object(m.isURL)(e)||e&&e.includes("www.")||t}j=Object(p.useCallback)((function(e,t){return o?$(e)?z(e):D(e,t):Promise.resolve([])}),[z,I]);var J=function(){var e=_()(x.a.mark((function e(t){var n;return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return L(!0),H(null),e.prev=2,s.current=Q(Promise.resolve(l(t))),e.next=6,s.current.promise;case 6:n=e.sent,L(!1),n?(r(n),U()):T(!0),e.next=18;break;case 11:if(e.prev=11,e.t0=e.catch(2),e.t0&&e.t0.isCanceled)return e.abrupt("return");e.next=15;break;case 15:H(e.t0.message||Object(b.__)("An unknown error occurred during creation. Please try again.")),L(!1),T(!0);case 18:case"end":return e.stop()}}),e,null,[[2,11]])})));return function(t){return e.apply(this,arguments)}}(),K=Object(p.useMemo)((function(){return{url:t&&t.url}}),[t&&t.url]);return Object(p.createElement)("div",{tabIndex:-1,ref:u,className:"block-editor-link-control"},N&&Object(p.createElement)("div",{className:"block-editor-link-control__loading"},Object(p.createElement)(f.Spinner,null)," ",Object(b.__)("Creating"),"…"),(v||!t)&&!N&&Object(p.createElement)(M,{value:g,onChange:function(){h(0<arguments.length&&void 0!==arguments[0]?arguments[0]:"")},onSelect:function(){var e=_()(x.a.mark((function e(n){return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(G===n.type)return e.next=3,J(g);e.next=5;break;case 3:e.next=7;break;case 5:!function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};T(!1),r(B(B({},t),e))}(n,t),U();case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),renderSuggestions:o?function(e){var n=e.suggestionsListProps,o=e.buildSuggestionItemProps,c=e.suggestions,i=e.selectedSuggestion,a=e.isLoading,s=e.isInitialSuggestions,u=E()("block-editor-link-control__search-results",{"is-loading":a}),m=["url","mailto","tel","internal"],O=(e=1===c.length&&m.includes(c[0].type.toLowerCase()),l&&!e&&!s);a="block-editor-link-control-search-results-label-".concat(d),e=s?Object(b.__)("Recently updated"):Object(b.sprintf)(Object(b.__)('Search results for "%s"'),g),e=Object(p.createElement)(s?p.Fragment:f.VisuallyHidden,{},Object(p.createElement)("span",{className:"block-editor-link-control__search-results-label",id:a},e));return Object(p.createElement)("div",{className:"block-editor-link-control__search-results-wrapper"},e,Object(p.createElement)("div",w()({},n,{className:u,"aria-labelledby":a}),c.map((function(e,n){return O&&G===e.type?Object(p.createElement)(V,{searchTerm:g,onClick:_()(x.a.mark((function t(){return x.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,J(e.title);case 2:case"end":return t.stop()}}),t)}))),key:e.type,itemProps:o(e,n),isSelected:n===i}):G===e.type?null:Object(p.createElement)(F,{key:"".concat(e.id,"-").concat(e.type),itemProps:o(e,n),suggestion:e,index:n,onClick:function(){U(),r(B(B({},t),e))},isSelected:n===i,isURL:m.includes(e.type.toLowerCase()),searchTerm:g})}))))}:null,fetchSuggestions:j,showInitialSuggestions:c,errorMessage:e}),t&&!v&&!N&&Object(p.createElement)(p.Fragment,null,Object(p.createElement)("div",{"aria-label":Object(b.__)("Currently selected"),"aria-selected":"true",className:E()("block-editor-link-control__search-item",{"is-current":!0})},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)(f.ExternalLink,{className:"block-editor-link-control__search-item-title",href:t.url},t&&t.title||O),t&&t.title&&Object(p.createElement)("span",{className:"block-editor-link-control__search-item-info"},O)),Object(p.createElement)(f.Button,{isSecondary:!0,onClick:function(){return T(!0)},className:"block-editor-link-control__search-item-action"},Object(b.__)("Edit")),Object(p.createElement)(W,{fillProps:K}))),Object(p.createElement)(R,{key:"aioseop-settings-drawer",value:t,settings:n,onChange:r}))}q.ViewerFill=n;var $=q;function J(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function K(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?J(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):J(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var X=Object(f.withSpokenMessages)((function(e){var t=e.isActive,n=e.activeAttributes,r=e.addingLink,o=e.value,c=e.onChange,i=e.speak,l=e.stopAddingLink,a=Object(p.useMemo)(k.uniqueId,[r]),s=(e=Object(p.useState)(),(e=y()(e,2))[0]),u=e[1],O=(e=Object(p.useMemo)((function(){var e=window.getSelection();if(e.rangeCount){if(e=e.getRangeAt(0),r&&!t)return e;for(var n=(n=e.startContainer).nextElementSibling||n;n.nodeType!==window.Node.ELEMENT_NODE;)n=n.parentNode;return n.closest("a")}}),[r,o.start,o.end]),K({url:n.url,opensInNewTab:"_blank"===n.target,nofollow:!!n.rel&&n.rel.includes("nofollow"),sponsored:!!n.rel&&n.rel.includes("sponsored"),ugc:!!n.rel&&n.rel.includes("ugc"),title:n.title},s));return Object(p.createElement)(f.Popover,{key:a,anchorRef:e,focusOnMount:!!r&&"firstElement",onClose:l,position:"bottom center"},Object(p.createElement)($,{value:O,onChange:function(e){e=K(K({},s),e);var n,r,a,p,f,g,h,j=(O.opensInNewTab!==e.opensInNewTab||O.sponsored!==e.sponsored||O.nofollow!==e.nofollow||O.ugc!==e.ugc)&&O.url===e.url,v=j&&void 0===e.url;u(v?e:void 0),v||(a=(r={url:n=Object(m.prependHTTP)(e.url),opensInNewWindow:e.opensInNewTab,nofollow:e.nofollow,sponsored:e.sponsored,ugc:e.ugc,title:e.title}).url,p=r.opensInNewWindow,f=r.nofollow,g=r.sponsored,h=r.ugc,v=r.title,r={type:"core/link",attributes:{url:a}},a=[],p&&(r.attributes.target="_blank",a.push("noreferrer noopener")),f&&a.push("nofollow"),g&&a.push("sponsored"),h&&a.push("ugc"),0<a.length&&(r.attributes.rel=a.join(" ")),v&&(r.attributes.title=v),r=r,Object(d.isCollapsed)(o)&&!t?(e=e.title||n,e=Object(d.applyFormat)(Object(d.create)({text:e}),r,0,e.length),c(Object(d.insert)(o,e))):c(Object(d.applyFormat)(o,r)),j||l(),function(e){if(e){var t=e.trim();if(t){if(/^\S+:/.test(t)){if(e=Object(m.getProtocol)(t),!Object(m.isValidProtocol)(e))return;if(Object(k.startsWith)(e,"http")&&!/^https?:\/\/[^/\s]/i.test(t))return;if(e=Object(m.getAuthority)(t),!Object(m.isValidAuthority)(e))return;if((e=Object(m.getPath)(t))&&!Object(m.isValidPath)(e))return;if((e=Object(m.getQueryString)(t))&&!Object(m.isValidQueryString)(e))return;if((e=Object(m.getFragment)(t))&&!Object(m.isValidFragment)(e))return}return!Object(k.startsWith)(t,"#")||Object(m.isValidFragment)(t)?1:void 0}}}(n)?i(t?Object(b.__)("Link edited.","all-in-one-seo-pack"):Object(b.__)("Link inserted.","all-in-one-seo-pack"),"assertive"):i(Object(b.__)("Warning: the link has been inserted but may have errors. Please test it.","all-in-one-seo-pack"),"assertive"))},forceIsEditingLink:r}))}));var Y="core/link",Z=Object(b.__)("Link","all-in-one-seo-pack"),ee={name:Y,title:Z,tagName:"a",className:null,attributes:{url:"href",target:"target",rel:"rel",title:"title"},__unstablePasteRule:function(e,t){var n=t.html;t=t.plainText;return Object(d.isCollapsed)(e)?e:(t=(n||t).replace(/<[^>]+>/g,"").trim(),Object(m.isURL)(t)?(window.console.log("Created link:\n\n",t),Object(d.applyFormat)(e,{type:Y,attributes:{url:Object(g.decodeEntities)(t)}})):e)},edit:Object(f.withSpokenMessages)(function(e){a()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=u()(e);return r=t?(n=u()(this).constructor,Reflect.construct(r,arguments,n)):r.apply(this,arguments),s()(this,r)}}(n);function n(){var e;return c()(this,n),(e=t.apply(this,arguments)).addLink=e.addLink.bind(l()(e)),e.stopAddingLink=e.stopAddingLink.bind(l()(e)),e.onRemoveFormat=e.onRemoveFormat.bind(l()(e)),e.state={addingLink:!1},e}return i()(n,[{key:"addLink",value:function(){var e,t=(e=this.props).value,n=e.onChange;(e=Object(d.getTextContent)(Object(d.slice)(t)))&&Object(m.isURL)(e)?n(Object(d.applyFormat)(t,{type:Y,attributes:{url:e}})):e&&Object(m.isEmail)(e)?n(Object(d.applyFormat)(t,{type:Y,attributes:{url:"mailto:".concat(e)}})):this.setState({addingLink:!0})}},{key:"stopAddingLink",value:function(){this.setState({addingLink:!1}),this.props.onFocus()}},{key:"onRemoveFormat",value:function(){var e=(n=this.props).value,t=n.onChange,n=n.speak;t(Object(d.removeFormat)(e,Y)),n(Object(b.__)("Link removed.","all-in-one-seo-pack"),"assertive")}},{key:"render",value:function(){var e=(r=this.props).isActive,t=r.activeAttributes,n=r.value,r=r.onChange;return Object(p.createElement)(p.Fragment,null,Object(p.createElement)(O.RichTextShortcut,{type:"primary",character:"k",onUse:this.addLink}),Object(p.createElement)(O.RichTextShortcut,{type:"primaryShift",character:"k",onUse:this.onRemoveFormat}),e&&Object(p.createElement)(O.RichTextToolbarButton,{name:"link",icon:h,title:Object(b.__)("Unlink","all-in-one-seo-pack"),onClick:this.onRemoveFormat,isActive:e,shortcutType:"primaryShift",shortcutCharacter:"k"}),!e&&Object(p.createElement)(O.RichTextToolbarButton,{name:"link",icon:j,title:Z,onClick:this.addLink,isActive:e,shortcutType:"primary",shortcutCharacter:"k"}),(this.state.addingLink||e)&&Object(p.createElement)(X,{key:"aioseop-inline-link-ui",addingLink:this.state.addingLink,stopAddingLink:this.stopAddingLink,isActive:e,activeAttributes:t,value:n,onChange:r}))}}]),n}(p.Component))},te=["name"],ne=(n=wp.richText).registerFormatType,re=n.unregisterFormatType;[ee].forEach((function(e){var t=e.name;e=o()(e,te);t&&(re("core/link"),ne(t,e))}))}]);
1
+ /*! ! built on Tuesday, September 14th 2021, 11:55:41 am */
2
  !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=81)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},,function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.components},function(e,t){e.exports=window.lodash},function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var c=typeof r;if("string"==c||"number"==c)e.push(r);else if(Array.isArray(r)&&r.length){var i=o.apply(null,r);i&&e.push(i)}else if("object"==c)for(var l in r)n.call(r,l)&&r[l]&&e.push(l)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},,,function(e,t){e.exports=window.wp.richText},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,r=arguments[t];for(n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},n.apply(this,arguments)}e.exports=n},function(e,t){e.exports=window.wp.primitives},function(e,t,n){var r=n(29);e.exports=function(e,t){if(null==e)return{};var n,o=r(e,t);if(Object.getOwnPropertySymbols)for(var c=Object.getOwnPropertySymbols(e),i=0;i<c.length;i++)n=c[i],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n]);return o}},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e}},function(e,t,n){var r=n(30);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)}},function(e,t,n){var r=n(31),o=n(3);e.exports=function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?o(e):t}},function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},function(e,t,n){var r=n(60),o=n(61),c=n(62),i=n(64);e.exports=function(e,t){return r(e)||o(e,t)||c(e,t)||i()}},function(e,t){e.exports=window.regeneratorRuntime},,function(e,t){e.exports=window.wp.blockEditor},function(e,t){function n(e,t,n,r,o,c,i){try{var l=e[c](i),a=l.value}catch(e){return void n(e)}l.done?t(a):Promise.resolve(a).then(r,o)}e.exports=function(e){return function(){var t=this,r=arguments;return new Promise((function(o,c){var i=e.apply(t,r);function l(e){n(i,o,c,l,a,"next",e)}function a(e){n(i,o,c,l,a,"throw",e)}l(void 0)}))}}},,,,,function(e,t){e.exports=function(e,t){if(null==e)return{};for(var n,r={},o=Object.keys(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||(r[n]=e[n]);return r}},function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,r)}e.exports=n},function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},,,,,,,function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.data},function(e,t){e.exports=window.wp.dom},function(e,t){e.exports=window.wp.editor},,,,,,,,,,,,,,,,,,function(e,t){e.exports=function(e){if(Array.isArray(e))return e}},function(e,t){e.exports=function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,c=void 0;try{for(var i,l=e[Symbol.iterator]();!(r=(i=l.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==l.return||l.return()}finally{if(o)throw c}}return n}}},function(e,t,n){var r=n(63);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}}},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}},,,,,,,,,,,,,,,,,function(e,t,n){"use strict";n.r(t);var r=n(14),o=n.n(r),c=(t=n(15),n.n(t)),i=(r=n(16),n.n(r)),l=(t=n(3),n.n(t)),a=(r=n(17),n.n(r)),s=(t=n(18),n.n(t)),u=(r=n(8),n.n(r)),p=n(0),b=n(1),f=n(5),d=n(11),m=n(4),O=n(23),g=n(38),h=(t=n(13),Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(p.createElement)(t.Path,{d:"M15.6 7.3h-.7l1.6-3.5-.9-.4-3.9 8.5H9v1.5h2l-1.3 2.8H8.4c-2 0-3.7-1.7-3.7-3.7s1.7-3.7 3.7-3.7H10V7.3H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H9l-1.4 3.2.9.4 5.7-12.5h1.4c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.9 0 5.2-2.3 5.2-5.2 0-2.9-2.4-5.2-5.2-5.2z"}))),j=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(p.createElement)(t.Path,{d:"M15.6 7.2H14v1.5h1.6c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.8 0 5.2-2.3 5.2-5.2 0-2.9-2.3-5.2-5.2-5.2zM4.7 12.4c0-2 1.7-3.7 3.7-3.7H10V7.2H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H10v-1.5H8.4c-2 0-3.7-1.7-3.7-3.7zm4.6.9h5.3v-1.5H9.3v1.5z"})),v=(r=n(19),n.n(r)),y=(r=n(20),n.n(r)),k=n(6),w=(r=n(12),n.n(r)),_=(r=n(24),n.n(r)),x=(r=n(21),n.n(r)),E=(r=n(7),n.n(r)),S=n(39),P=n(40),C=n(41);function T(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function N(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?T(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):T(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var L=[{id:"opensInNewTab",title:Object(b.__)("Open in new tab"),type:"ToggleControl"},{id:"nofollow",title:Object(b.__)('Add "nofollow" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"sponsored",title:Object(b.__)('Add "sponsored" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"ugc",title:Object(b.__)('Add "ugc" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"title",title:Object(b.__)("Add title attribute to link","all-in-one-seo-pack"),type:"TextControl"}],R=function(e){var t=e.value,n=e.onChange,r=void 0===n?k.noop:n;return(e=void 0===(e=e.settings)?L:e)&&e.length?(e=e.map((function(e){if("TextControl"!==e.type)return"ToggleControl"===e.type?Object(p.createElement)(f.ToggleControl,{className:"block-editor-link-control__setting",key:e.id,label:e.title,onChange:(n=e,function(e){r(N(N({},t),{},v()({},n.id,e)))}),checked:!!t&&!!t[e.id]}):null;var n,o=Object(p.useState)(),c=y()(o,2),i=(o=c[0],c[1]);return Object(p.createElement)(f.TextControl,{"data-aioseop":"true",className:"block-editor-link-control__setting",key:e.id,label:e.title,onChange:function(e){i(e)},onBlur:function(n){r(N(N({},t),{},v()({},e.id,n.target.value)))},value:o||t[e.id]})})),Object(p.createElement)("fieldset",{className:"block-editor-link-control__settings"},Object(p.createElement)(f.VisuallyHidden,{as:"legend"},Object(b.__)("Currently selected link settings")),e)):null};function H(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function A(e){var t=e.icon,n=void 0===(n=e.size)?24:n;e=function(e,t){if(null==e)return{};var n,r=function(e,t){if(null==e)return{};for(var n,r={},o=Object.keys(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||(r[n]=e[n]);return r}(e,t);if(Object.getOwnPropertySymbols)for(var o=Object.getOwnPropertySymbols(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n]);return r}(e,["icon","size"]);return Object(p.cloneElement)(t,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?H(Object(n),!0).forEach((function(t){var r,o;r=e,t=n[o=t],o in r?Object.defineProperty(r,o,{value:t,enumerable:!0,configurable:!0,writable:!0}):r[o]=t})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):H(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({width:n,height:n},e))}var I=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},Object(p.createElement)(t.Path,{d:"M9 0C4.03 0 0 4.03 0 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zM1.11 9.68h2.51c.04.91.167 1.814.38 2.7H1.84c-.403-.85-.65-1.764-.73-2.7zm8.57-5.4V1.19c.964.366 1.756 1.08 2.22 2 .205.347.386.708.54 1.08l-2.76.01zm3.22 1.35c.232.883.37 1.788.41 2.7H9.68v-2.7h3.22zM8.32 1.19v3.09H5.56c.154-.372.335-.733.54-1.08.462-.924 1.255-1.64 2.22-2.01zm0 4.44v2.7H4.7c.04-.912.178-1.817.41-2.7h3.21zm-4.7 2.69H1.11c.08-.936.327-1.85.73-2.7H4c-.213.886-.34 1.79-.38 2.7zM4.7 9.68h3.62v2.7H5.11c-.232-.883-.37-1.788-.41-2.7zm3.63 4v3.09c-.964-.366-1.756-1.08-2.22-2-.205-.347-.386-.708-.54-1.08l2.76-.01zm1.35 3.09v-3.04h2.76c-.154.372-.335.733-.54 1.08-.464.92-1.256 1.634-2.22 2v-.04zm0-4.44v-2.7h3.62c-.04.912-.178 1.817-.41 2.7H9.68zm4.71-2.7h2.51c-.08.936-.327 1.85-.73 2.7H14c.21-.87.337-1.757.38-2.65l.01-.05zm0-1.35c-.046-.894-.176-1.78-.39-2.65h2.16c.403.85.65 1.764.73 2.7l-2.5-.05zm1-4H13.6c-.324-.91-.793-1.76-1.39-2.52 1.244.56 2.325 1.426 3.14 2.52h.04zm-9.6-2.52c-.597.76-1.066 1.61-1.39 2.52H2.65c.815-1.094 1.896-1.96 3.14-2.52zm-3.15 12H4.4c.324.91.793 1.76 1.39 2.52-1.248-.567-2.33-1.445-3.14-2.55l-.01.03zm9.56 2.52c.597-.76 1.066-1.61 1.39-2.52h1.76c-.82 1.08-1.9 1.933-3.14 2.48l-.01.04z"})),F=function(e){var t=e.itemProps,n=e.suggestion,r=void 0!==(c=e.isSelected)&&c,o=e.onClick,c=void 0!==(c=e.isURL)&&c;e=void 0===(e=e.searchTerm)?"":e;return Object(p.createElement)(f.Button,w()({},t,{onClick:o,className:E()("block-editor-link-control__search-item",{"is-selected":r,"is-url":c,"is-entity":!c})}),c&&Object(p.createElement)(A,{className:"block-editor-link-control__search-item-icon",icon:I}),Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-title"},Object(p.createElement)(f.TextHighlight,{text:n.title,highlight:e})),Object(p.createElement)("span",{"aria-hidden":!c,className:"block-editor-link-control__search-item-info"},!c&&(Object(m.safeDecodeURI)(n.url)||""),c&&Object(b.__)("Press ENTER to add this link"))),n.type&&Object(p.createElement)("span",{className:"block-editor-link-control__search-item-type"},n.type))},z=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},Object(p.createElement)(t.Path,{d:"M16 4h2v9H7v3l-5-4 5-4v3h9V4z"})),D=n(42),M=function(e){var t=e.value,n=e.onChange,r=e.onSelect,o=e.renderSuggestions,c=e.fetchSuggestions,i=e.showInitialSuggestions,l=e.errorMessage,a=(e=Object(p.useState)(),(e=y()(e,2))[0]),s=e[1];return Object(p.createElement)("form",{onSubmit:function(e){e.preventDefault(),r(a||{url:t})}},Object(p.createElement)("div",{className:"block-editor-link-control__search-input-wrapper"},Object(p.createElement)(D.URLInput,{className:"block-editor-link-control__search-input",value:t,onChange:function(e,t){n(e),s(t)},placeholder:Object(b.__)("Search or type url"),__experimentalRenderSuggestions:o,__experimentalFetchLinkSuggestions:c,__experimentalHandleURLSuggestions:!0,__experimentalShowInitialSuggestions:i}),Object(p.createElement)("div",{className:"block-editor-link-control__search-actions"},Object(p.createElement)(f.Button,{type:"submit",label:Object(b.__)("Submit"),icon:z,className:"block-editor-link-control__search-submit"}))),l&&Object(p.createElement)(f.Notice,{className:"block-editor-link-control__search-error",status:"error",isDismissible:!1},l))},V=function(e){var t=e.searchTerm,n=e.onClick,r=e.itemProps;e=e.isSelected;return t?Object(p.createElement)(f.Button,w()({},r,{className:E()("block-editor-link-control__search-create block-editor-link-control__search-item",{"is-selected":e}),onClick:n}),Object(p.createElement)(f.Icon,{className:"block-editor-link-control__search-item-icon",icon:"insert"}),Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-title"},Object(p.createInterpolateElement)(Object(b.sprintf)(Object(b.__)("New page: <mark>%s</mark>"),t),{mark:Object(p.createElement)("mark",null)})))):null};function U(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function B(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?U(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):U(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var W=(n=Object(f.createSlotFill)("BlockEditorLinkControlViewer")).Slot,G=(n=n.Fill,"__CREATE__"),Q=function(e){var t=!1;return{promise:new Promise((function(n,r){e.then((function(e){return t?r({isCanceled:!0}):n(e)}),(function(e){return r(t?{isCanceled:!0}:e)}))})),cancel:function(){t=!0}}};function q(e){var t=e.value,n=e.settings,r=void 0===(j=e.onChange)?k.noop:j,o=void 0===(K=e.showSuggestions)||K,c=e.showInitialSuggestions,i=e.forceIsEditingLink,l=e.createSuggestion,a=Object(p.useRef)(),s=Object(p.useRef)(),u=Object(p.useRef)(),d=Object(S.useInstanceId)(q),O=Object(p.useState)(t&&t.url||""),g=(N=y()(O,2))[0],h=N[1],j=Object(p.useState)(void 0!==i?i:!t||!t.url),v=(K=y()(j,2))[0],T=K[1],N=(e=Object(p.useState)(!1),(O=y()(e,2))[0]),L=O[1],H=(j=Object(p.useState)(null),e=(K=y()(j,2))[0],K[1]),A=Object(p.useRef)(!1),I=Object(P.useSelect)((function(e){return{fetchSearchSuggestions:(0,e("core/block-editor").getSettings)().__experimentalFetchLinkSuggestions}}),[]).fetchSearchSuggestions;O=t&&Object(m.filterURLForDisplay)(Object(m.safeDecodeURI)(t.url))||"";function z(e){var t="URL",n=Object(m.getProtocol)(e)||"";return n.includes("mailto")&&(t="mailto"),n.includes("tel")&&(t="tel"),Object(k.startsWith)(e,"#")&&(t="internal"),Promise.resolve([{id:e,title:e,url:"URL"===t?Object(m.prependHTTP)(e):e,type:t}])}Object(p.useEffect)((function(){void 0!==i&&i!==v&&T(i)}),[i]),Object(p.useEffect)((function(){A.current&&u.current&&!u.current.contains(document.activeElement)&&(C.focus.focusable.find(u.current)[0]||u.current).focus(),A.current=!1}),[v]),Object(p.useEffect)((function(){return function(){a.current&&a.current.cancel(),s.current&&s.current.cancel()}}),[]);var D=function(){var e=_()(x.a.mark((function e(t,n){var r,o;return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([I(t,B({},n.isInitialSuggestions?{perPage:3}:{})),z(t)]);case 2:return r=e.sent,o=!t.includes(" "),r=o&&!n.isInitialSuggestions?r[0].concat(r[1]):r[0],e.abrupt("return",$(t)?r:r.concat({title:t,url:t,type:G}));case 6:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}();function U(){A.current=!!u.current&&u.current.contains(document.activeElement),T(!1)}function $(e){var t=Object(k.startsWith)(e,"#");return Object(m.isURL)(e)||e&&e.includes("www.")||t}j=Object(p.useCallback)((function(e,t){return o?$(e)?z(e):D(e,t):Promise.resolve([])}),[z,I]);var J=function(){var e=_()(x.a.mark((function e(t){var n;return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return L(!0),H(null),e.prev=2,s.current=Q(Promise.resolve(l(t))),e.next=6,s.current.promise;case 6:n=e.sent,L(!1),n?(r(n),U()):T(!0),e.next=18;break;case 11:if(e.prev=11,e.t0=e.catch(2),e.t0&&e.t0.isCanceled)return e.abrupt("return");e.next=15;break;case 15:H(e.t0.message||Object(b.__)("An unknown error occurred during creation. Please try again.")),L(!1),T(!0);case 18:case"end":return e.stop()}}),e,null,[[2,11]])})));return function(t){return e.apply(this,arguments)}}(),K=Object(p.useMemo)((function(){return{url:t&&t.url}}),[t&&t.url]);return Object(p.createElement)("div",{tabIndex:-1,ref:u,className:"block-editor-link-control"},N&&Object(p.createElement)("div",{className:"block-editor-link-control__loading"},Object(p.createElement)(f.Spinner,null)," ",Object(b.__)("Creating"),"…"),(v||!t)&&!N&&Object(p.createElement)(M,{value:g,onChange:function(){h(0<arguments.length&&void 0!==arguments[0]?arguments[0]:"")},onSelect:function(){var e=_()(x.a.mark((function e(n){return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(G===n.type)return e.next=3,J(g);e.next=5;break;case 3:e.next=7;break;case 5:!function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};T(!1),r(B(B({},t),e))}(n,t),U();case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),renderSuggestions:o?function(e){var n=e.suggestionsListProps,o=e.buildSuggestionItemProps,c=e.suggestions,i=e.selectedSuggestion,a=e.isLoading,s=e.isInitialSuggestions,u=E()("block-editor-link-control__search-results",{"is-loading":a}),m=["url","mailto","tel","internal"],O=(e=1===c.length&&m.includes(c[0].type.toLowerCase()),l&&!e&&!s);a="block-editor-link-control-search-results-label-".concat(d),e=s?Object(b.__)("Recently updated"):Object(b.sprintf)(Object(b.__)('Search results for "%s"'),g),e=Object(p.createElement)(s?p.Fragment:f.VisuallyHidden,{},Object(p.createElement)("span",{className:"block-editor-link-control__search-results-label",id:a},e));return Object(p.createElement)("div",{className:"block-editor-link-control__search-results-wrapper"},e,Object(p.createElement)("div",w()({},n,{className:u,"aria-labelledby":a}),c.map((function(e,n){return O&&G===e.type?Object(p.createElement)(V,{searchTerm:g,onClick:_()(x.a.mark((function t(){return x.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,J(e.title);case 2:case"end":return t.stop()}}),t)}))),key:e.type,itemProps:o(e,n),isSelected:n===i}):G===e.type?null:Object(p.createElement)(F,{key:"".concat(e.id,"-").concat(e.type),itemProps:o(e,n),suggestion:e,index:n,onClick:function(){U(),r(B(B({},t),e))},isSelected:n===i,isURL:m.includes(e.type.toLowerCase()),searchTerm:g})}))))}:null,fetchSuggestions:j,showInitialSuggestions:c,errorMessage:e}),t&&!v&&!N&&Object(p.createElement)(p.Fragment,null,Object(p.createElement)("div",{"aria-label":Object(b.__)("Currently selected"),"aria-selected":"true",className:E()("block-editor-link-control__search-item",{"is-current":!0})},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)(f.ExternalLink,{className:"block-editor-link-control__search-item-title",href:t.url},t&&t.title||O),t&&t.title&&Object(p.createElement)("span",{className:"block-editor-link-control__search-item-info"},O)),Object(p.createElement)(f.Button,{isSecondary:!0,onClick:function(){return T(!0)},className:"block-editor-link-control__search-item-action"},Object(b.__)("Edit")),Object(p.createElement)(W,{fillProps:K}))),Object(p.createElement)(R,{key:"aioseop-settings-drawer",value:t,settings:n,onChange:r}))}q.ViewerFill=n;var $=q;function J(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function K(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?J(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):J(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var X=Object(f.withSpokenMessages)((function(e){var t=e.isActive,n=e.activeAttributes,r=e.addingLink,o=e.value,c=e.onChange,i=e.speak,l=e.stopAddingLink,a=Object(p.useMemo)(k.uniqueId,[r]),s=(e=Object(p.useState)(),(e=y()(e,2))[0]),u=e[1],O=(e=Object(p.useMemo)((function(){var e=window.getSelection();if(e.rangeCount){if(e=e.getRangeAt(0),r&&!t)return e;for(var n=(n=e.startContainer).nextElementSibling||n;n.nodeType!==window.Node.ELEMENT_NODE;)n=n.parentNode;return n.closest("a")}}),[r,o.start,o.end]),K({url:n.url,opensInNewTab:"_blank"===n.target,nofollow:!!n.rel&&n.rel.includes("nofollow"),sponsored:!!n.rel&&n.rel.includes("sponsored"),ugc:!!n.rel&&n.rel.includes("ugc"),title:n.title},s));return Object(p.createElement)(f.Popover,{key:a,anchorRef:e,focusOnMount:!!r&&"firstElement",onClose:l,position:"bottom center"},Object(p.createElement)($,{value:O,onChange:function(e){e=K(K({},s),e);var n,r,a,p,f,g,h,j=(O.opensInNewTab!==e.opensInNewTab||O.sponsored!==e.sponsored||O.nofollow!==e.nofollow||O.ugc!==e.ugc)&&O.url===e.url,v=j&&void 0===e.url;u(v?e:void 0),v||(a=(r={url:n=Object(m.prependHTTP)(e.url),opensInNewWindow:e.opensInNewTab,nofollow:e.nofollow,sponsored:e.sponsored,ugc:e.ugc,title:e.title}).url,p=r.opensInNewWindow,f=r.nofollow,g=r.sponsored,h=r.ugc,v=r.title,r={type:"core/link",attributes:{url:a}},a=[],p&&(r.attributes.target="_blank",a.push("noreferrer noopener")),f&&a.push("nofollow"),g&&a.push("sponsored"),h&&a.push("ugc"),0<a.length&&(r.attributes.rel=a.join(" ")),v&&(r.attributes.title=v),r=r,Object(d.isCollapsed)(o)&&!t?(e=e.title||n,e=Object(d.applyFormat)(Object(d.create)({text:e}),r,0,e.length),c(Object(d.insert)(o,e))):c(Object(d.applyFormat)(o,r)),j||l(),function(e){if(e){var t=e.trim();if(t){if(/^\S+:/.test(t)){if(e=Object(m.getProtocol)(t),!Object(m.isValidProtocol)(e))return;if(Object(k.startsWith)(e,"http")&&!/^https?:\/\/[^/\s]/i.test(t))return;if(e=Object(m.getAuthority)(t),!Object(m.isValidAuthority)(e))return;if((e=Object(m.getPath)(t))&&!Object(m.isValidPath)(e))return;if((e=Object(m.getQueryString)(t))&&!Object(m.isValidQueryString)(e))return;if((e=Object(m.getFragment)(t))&&!Object(m.isValidFragment)(e))return}return!Object(k.startsWith)(t,"#")||Object(m.isValidFragment)(t)?1:void 0}}}(n)?i(t?Object(b.__)("Link edited.","all-in-one-seo-pack"):Object(b.__)("Link inserted.","all-in-one-seo-pack"),"assertive"):i(Object(b.__)("Warning: the link has been inserted but may have errors. Please test it.","all-in-one-seo-pack"),"assertive"))},forceIsEditingLink:r}))}));var Y="core/link",Z=Object(b.__)("Link","all-in-one-seo-pack"),ee={name:Y,title:Z,tagName:"a",className:null,attributes:{url:"href",target:"target",rel:"rel",title:"title"},__unstablePasteRule:function(e,t){var n=t.html;t=t.plainText;return Object(d.isCollapsed)(e)?e:(t=(n||t).replace(/<[^>]+>/g,"").trim(),Object(m.isURL)(t)?(window.console.log("Created link:\n\n",t),Object(d.applyFormat)(e,{type:Y,attributes:{url:Object(g.decodeEntities)(t)}})):e)},edit:Object(f.withSpokenMessages)(function(e){a()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=u()(e);return r=t?(n=u()(this).constructor,Reflect.construct(r,arguments,n)):r.apply(this,arguments),s()(this,r)}}(n);function n(){var e;return c()(this,n),(e=t.apply(this,arguments)).addLink=e.addLink.bind(l()(e)),e.stopAddingLink=e.stopAddingLink.bind(l()(e)),e.onRemoveFormat=e.onRemoveFormat.bind(l()(e)),e.state={addingLink:!1},e}return i()(n,[{key:"addLink",value:function(){var e,t=(e=this.props).value,n=e.onChange;(e=Object(d.getTextContent)(Object(d.slice)(t)))&&Object(m.isURL)(e)?n(Object(d.applyFormat)(t,{type:Y,attributes:{url:e}})):e&&Object(m.isEmail)(e)?n(Object(d.applyFormat)(t,{type:Y,attributes:{url:"mailto:".concat(e)}})):this.setState({addingLink:!0})}},{key:"stopAddingLink",value:function(){this.setState({addingLink:!1}),this.props.onFocus()}},{key:"onRemoveFormat",value:function(){var e=(n=this.props).value,t=n.onChange,n=n.speak;t(Object(d.removeFormat)(e,Y)),n(Object(b.__)("Link removed.","all-in-one-seo-pack"),"assertive")}},{key:"render",value:function(){var e=(r=this.props).isActive,t=r.activeAttributes,n=r.value,r=r.onChange;return Object(p.createElement)(p.Fragment,null,Object(p.createElement)(O.RichTextShortcut,{type:"primary",character:"k",onUse:this.addLink}),Object(p.createElement)(O.RichTextShortcut,{type:"primaryShift",character:"k",onUse:this.onRemoveFormat}),e&&Object(p.createElement)(O.RichTextToolbarButton,{name:"link",icon:h,title:Object(b.__)("Unlink","all-in-one-seo-pack"),onClick:this.onRemoveFormat,isActive:e,shortcutType:"primaryShift",shortcutCharacter:"k"}),!e&&Object(p.createElement)(O.RichTextToolbarButton,{name:"link",icon:j,title:Z,onClick:this.addLink,isActive:e,shortcutType:"primary",shortcutCharacter:"k"}),(this.state.addingLink||e)&&Object(p.createElement)(X,{key:"aioseop-inline-link-ui",addingLink:this.state.addingLink,stopAddingLink:this.stopAddingLink,isActive:e,activeAttributes:t,value:n,onChange:r}))}}]),n}(p.Component))},te=["name"],ne=(n=wp.richText).registerFormatType,re=n.unregisterFormatType;[ee].forEach((function(e){var t=e.name;e=o()(e,te);t&&(re("core/link"),ne(t,e))}))}]);
dist/Lite/assets/js/link-format-block.js.gz CHANGED
Binary file
dist/Lite/assets/js/link-format-classic.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! ! built on Thursday, September 9th 2021, 7:47:13 pm */
2
  !function(e){var t={};function n(i){if(t[i])return t[i].exports;var l=t[i]={i:i,l:!1,exports:{}};return e[i].call(l.exports,l,l.exports,n),l.l=!0,l.exports}n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var l in e)n.d(i,l,function(t){return e[t]}.bind(null,l));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=65)}({65:function(e,t){function n(){return r?r.$('a[data-wplink-edit="true"]'):null}var i,l,a,r,s,o,c,p,d,u,h,f,k;i=jQuery,l=window.aioseoL10n,a=window.wp,d=/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,63}$/i,u=/^(https?|ftp):\/\/[A-Z0-9.-]+\.[A-Z]{2,63}[^ "]*$/i,h={},f={},k="ontouchend"in document,window.wpLink={timeToTriggerRiver:150,minRiverAJAXDuration:200,riverBottomThreshold:5,keySensitivity:100,lastSearch:"",textarea:"",modalOpen:!1,init:function(){i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span>&nbsp;</span><input type="checkbox" id="aioseop-add-nofollow">'+l.noFollow+"</label>"),i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span>&nbsp;</span><input type="checkbox" id="aioseop-add-sponsored">'+l.sponsored+"</label>"),i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span>&nbsp;</span><input type="checkbox" id="aioseop-add-ugc">'+l.ugc+"</label><br>"),i(".wp-link-text-field").before('<div class="link-title-field"><label><span style="padding-left: 4px;">'+l.labelTitle+'</span><input id="wp-link-title" type="text" name="linktitle" /></label></div>'),i('<style type="text/css"> .has-text-field #wp-link .query-results { top: 256px !important; } #wp-link-wrap.search-panel-visible {height: 549px !important;}</style>').appendTo("head"),h.wrap=i("#wp-link-wrap"),h.dialog=i("#wp-link"),h.backdrop=i("#wp-link-backdrop"),h.submit=i("#wp-link-submit"),h.close=i("#wp-link-close"),h.tanfl=i("#aioseop-add-nofollow"),h.tanfl_sponsored=i("#aioseop-add-sponsored"),h.tanfl_ugc=i("#aioseop-add-ugc"),h.title=i("#wp-link-title"),h.text=i("#wp-link-text"),h.url=i("#wp-link-url"),h.nonce=i("#_ajax_linking_nonce"),h.openInNewTab=i("#wp-link-target"),h.search=i("#wp-link-search"),f.search=new o(i("#search-results")),f.recent=new o(i("#most-recent-results")),f.elements=h.dialog.find(".query-results"),h.queryNotice=i("#query-notice-message"),h.queryNoticeTextDefault=h.queryNotice.find(".query-notice-default"),h.queryNoticeTextHint=h.queryNotice.find(".query-notice-hint"),h.dialog.keydown(wpLink.keydown),h.dialog.keyup(wpLink.keyup),h.submit.click((function(e){e.preventDefault(),wpLink.update()})),h.close.add(h.backdrop).add("#wp-link-cancel button").click((function(e){e.preventDefault(),wpLink.close()})),f.elements.on("river-select",wpLink.updateFields),h.search.on("focus.wplink",(function(){h.queryNoticeTextDefault.hide(),h.queryNoticeTextHint.removeClass("screen-reader-text").show()})).on("blur.wplink",(function(){h.queryNoticeTextDefault.show(),h.queryNoticeTextHint.addClass("screen-reader-text").hide()})),h.search.on("keyup input",(function(){window.clearTimeout(s),s=window.setTimeout((function(){wpLink.searchInternalLinks()}),500)})),h.url.on("paste",(function(){setTimeout(wpLink.correctURL,0)})),h.url.on("blur",wpLink.correctURL)},correctURL:function(){var e=i.trim(h.url.val());e&&p!==e&&!/^(?:[a-z]+:|#|\?|\.|\/)/.test(e)&&(h.url.val("http://"+e),p=e)},open:function(e,t,n){var l=i(document.body);l.addClass("modal-open"),wpLink.modalOpen=!0,wpLink.range=null,e&&(window.wpActiveEditor=e),window.wpActiveEditor&&(this.textarea=i("#"+window.wpActiveEditor).get(0),void 0!==window.tinymce&&(l.append(h.backdrop,h.wrap),l=window.tinymce.get(window.wpActiveEditor),r=l&&!l.isHidden()?l:null),!wpLink.isMCE()&&document.selection&&(this.textarea.focus(),this.range=document.selection.createRange()),h.wrap.show(),h.backdrop.show(),wpLink.refresh(t,n),i(document).trigger("wplink-open",h.wrap))},isMCE:function(){return r&&!r.isHidden()},refresh:function(e,t){f.search.refresh(),f.recent.refresh(),wpLink.isMCE()?wpLink.mceRefresh(e,t):(h.wrap.hasClass("has-text-field")||h.wrap.addClass("has-text-field"),document.selection?document.selection.createRange().text:void 0!==this.textarea.selectionStart&&this.textarea.selectionStart!==this.textarea.selectionEnd&&(t=this.textarea.value.substring(this.textarea.selectionStart,this.textarea.selectionEnd)||t||""),h.text.val(t),wpLink.setDefaultValues()),k?h.url.focus().blur():window.setTimeout((function(){h.url[0].select(),h.url.focus()})),f.recent.ul.children().length||f.recent.ajax(),p=h.url.val().replace(/^http:\/\//,""),jQuery(".has-text-field #wp-link .query-results").css("margin-top",25)},hasSelectedText:function(e){var t,n,i,l=r.selection.getContent();if(/</.test(l)&&(!/^<a [^>]+>[^<]+<\/a>$/.test(l)||-1===l.indexOf("href=")))return!1;if(e.length){if(!(n=e[0].childNodes)||!n.length)return!1;for(i=n.length-1;0<=i;i--)if(3!=(t=n[i]).nodeType&&!window.tinymce.dom.BookmarkManager.isBookmarkNode(t))return!1}return!0},mceRefresh:function(e,t){var a,s,o=n(),c=this.hasSelectedText(o);o.length?(a=o.text(),s=o.attr("href"),i.trim(a)||(a=t||""),"_wp_link_placeholder"!==(s=e&&(u.test(e)||d.test(e))?e:s)?(h.url.val(s),h.openInNewTab.prop("checked","_blank"===o.attr("target")),h.submit.val(l.update)):this.setDefaultValues(a),e&&e!==s?(h.url.val(e),h.search.val(e)):h.search.val(""),0<=r.dom.getAttrib(o,"rel").indexOf("nofollow")?h.tanfl.prop("checked",!0):h.tanfl.prop("checked",!1),0<=r.dom.getAttrib(o,"rel").indexOf("sponsored")?h.tanfl_sponsored.prop("checked",!0):h.tanfl_sponsored.prop("checked",!1),0<=r.dom.getAttrib(o,"rel").indexOf("ugc")?h.tanfl_ugc.prop("checked",!0):h.tanfl_ugc.prop("checked",!1),h.title.val(r.dom.getAttrib(o,"title")),window.setTimeout((function(){wpLink.searchInternalLinks()}))):(a=r.selection.getContent({format:"text"})||t||"",this.setDefaultValues(a),h.url.val(e)),c?(h.text.val(a),h.wrap.addClass("has-text-field")):(h.text.val(""),h.wrap.removeClass("has-text-field"))},close:function(e){i(document.body).removeClass("modal-open"),wpLink.modalOpen=!1,"noReset"!==e&&(wpLink.isMCE()?(r.plugins.wplink&&r.plugins.wplink.close(),r.focus()):(wpLink.textarea.focus(),wpLink.range&&(wpLink.range.moveToBookmark(wpLink.range.getBookmark()),wpLink.range.select()))),h.backdrop.hide(),h.wrap.hide(),p=!1,i(document).trigger("wplink-close",h.wrap)},getAttrs:function(){wpLink.correctURL();var e="";return h.tanfl.prop("checked")&&(e+="nofollow "),h.tanfl_sponsored.prop("checked")&&(e+="sponsored "),h.tanfl_ugc.prop("checked")&&(e+="ugc"),{href:i.trim(h.url.val()),target:h.openInNewTab.prop("checked")?"_blank":null,rel:""!==e?e:null,title:""!==h.title.val()?i.trim(h.title.val()):null}},buildHtml:function(e){var t='<a href="'+e.href+'"';return e.title&&(title=e.title.replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;"),t+=' title="'+title+'"'),e.target?e.rel?t+=' rel="noopener '+e.rel+'" target="'+e.target+'"':t+=' rel="noopener" target="'+e.target+'"':e.rel&&(t+=' rel="'+e.rel+'"'),t+">"},update:function(){wpLink.isMCE()?wpLink.mceUpdate():wpLink.htmlUpdate()},htmlUpdate:function(){var e,t,n,r,s,o=wpLink.textarea;o&&(n=wpLink.getAttrs(),r=h.text.val(),(s=document.createElement("a")).href=n.href,"javascript:"!==s.protocol&&"data:"!==s.protocol||(n.href=""),n.href&&(e=wpLink.buildHtml(n),document.selection&&wpLink.range?(o.focus(),wpLink.range.text=e+(r||wpLink.range.text)+"</a>",wpLink.range.moveToBookmark(wpLink.range.getBookmark()),wpLink.range.select(),wpLink.range=null):void 0!==o.selectionStart&&(t=o.selectionStart,s=o.selectionEnd,r=t+(e=e+(n=r||o.value.substring(t,s))+"</a>").length,t!==s||n||(r-=4),o.value=o.value.substring(0,t)+e+o.value.substring(s,o.value.length),o.selectionStart=o.selectionEnd=r),wpLink.close(),o.focus(),i(o).trigger("change"),a.a11y.speak(l.linkInserted)))},mceUpdate:function(){var e,t,s,o=wpLink.getAttrs(),c=document.createElement("a");if(c.href=o.href,"javascript:"!==c.protocol&&"data:"!==c.protocol||(o.href=""),!o.href)return r.execCommand("unlink"),void wpLink.close();e=n(),r.undoManager.transact((function(){e.length||(r.execCommand("mceInsertLink",!1,{href:"_wp_link_placeholder","data-wp-temp-link":1}),e=r.$('a[data-wp-temp-link="1"]').removeAttr("data-wp-temp-link"),s=i.trim(e.text())),e.length?(h.wrap.hasClass("has-text-field")&&((t=h.text.val())?e.text(t):s||e.text(o.href)),o["data-wplink-edit"]=null,o["data-mce-href"]=o.href,e.attr(o)):r.execCommand("unlink")})),e=r.$('a[data-wplink-url-error="1"]').removeAttr("data-wplink-url-error"),wpLink.close("noReset"),r.focus(),e.length&&(r.selection.select(e[0]),r.plugins.wplink&&r.plugins.wplink.checkLink(e[0])),r.nodeChanged(),a.a11y.speak(l.linkInserted)},updateFields:function(e,t){h.url.val(t.children(".item-permalink").val()),h.title.val(t.hasClass("no-title")?"":t.children(".item-title").text()),h.wrap.hasClass("has-text-field")&&!h.text.val()&&h.text.val(t.children(".item-title").text())},getUrlFromSelection:function(e){return e||(this.isMCE()?e=r.selection.getContent({format:"text"}):document.selection&&wpLink.range?e=wpLink.range.text:void 0!==this.textarea.selectionStart&&(e=this.textarea.value.substring(this.textarea.selectionStart,this.textarea.selectionEnd))),(e=i.trim(e))&&d.test(e)?"mailto:"+e:e&&u.test(e)?e.replace(/&amp;|&#0?38;/gi,"&"):""},setDefaultValues:function(e){h.url.val(this.getUrlFromSelection(e)),h.title.val(""),h.openInNewTab.prop("checked",!1),h.tanfl.prop("checked",!1),h.tanfl_sponsored.prop("checked",!1),h.tanfl_ugc.prop("checked",!1),h.search.val(""),wpLink.searchInternalLinks(),h.submit.val(l.save)},searchInternalLinks:function(){var e,t=h.search.val()||"",n=parseInt(l.minInputLength,10)||3;t.length>=n?(f.recent.hide(),f.search.show(),wpLink.lastSearch!=t&&(wpLink.lastSearch=t,e=h.search.parent().find(".spinner").addClass("is-active"),f.search.change(t),f.search.ajax((function(){e.removeClass("is-active")})))):(f.search.hide(),f.recent.show())},next:function(){f.search.next(),f.recent.next()},prev:function(){f.search.prev(),f.recent.prev()},keydown:function(e){var t;27===e.keyCode?(wpLink.close(),e.stopImmediatePropagation()):9===e.keyCode&&("wp-link-submit"!==(t=e.target.id)||e.shiftKey?"wp-link-close"===t&&e.shiftKey&&(h.submit.focus(),e.preventDefault()):(h.close.focus(),e.preventDefault())),e.shiftKey||38!==e.keyCode&&40!==e.keyCode||document.activeElement&&("link-title-field"===document.activeElement.id||"url-field"===document.activeElement.id)||(t=38===e.keyCode?"prev":"next",clearInterval(wpLink.keyInterval),wpLink[t](),wpLink.keyInterval=setInterval(wpLink[t],wpLink.keySensitivity),e.preventDefault())},keyup:function(e){38!==e.keyCode&&40!==e.keyCode||(clearInterval(wpLink.keyInterval),e.preventDefault())},delayedCallback:function(e,t){var n,i,l,a;return t?(setTimeout((function(){return i?e.apply(a,l):void(n=!0)}),t),function(){if(n)return e.apply(this,arguments);l=arguments,a=this,i=!0}):e}},o=function(e,t){var n=this;this.element=e,this.ul=e.children("ul"),this.contentHeight=e.children("#link-selector-height"),this.waiting=e.find(".river-waiting"),this.change(t),this.refresh(),i("#wp-link .query-results, #wp-link #link-selector").scroll((function(){n.maybeLoad()})),e.on("click","li",(function(e){n.select(i(this),e)}))},i.extend(o.prototype,{refresh:function(){this.deselect(),this.visible=this.element.is(":visible")},show:function(){this.visible||(this.deselect(),this.element.show(),this.visible=!0)},hide:function(){this.element.hide(),this.visible=!1},select:function(e,t){var n,i,l,a;e.hasClass("unselectable")||e==this.selected||(this.deselect(),this.selected=e.addClass("selected"),n=e.outerHeight(),i=this.element.height(),l=e.position().top,a=this.element.scrollTop(),l<0?this.element.scrollTop(a+l):i<l+n&&this.element.scrollTop(a+l-i+n),this.element.trigger("river-select",[e,t,this]))},deselect:function(){this.selected&&this.selected.removeClass("selected"),this.selected=!1},prev:function(){var e;this.visible&&this.selected&&(e=this.selected.prev("li")).length&&this.select(e)},next:function(){var e;!this.visible||(e=this.selected?this.selected.next("li"):i("li:not(.unselectable):first",this.element)).length&&this.select(e)},ajax:function(e){var t=this,n=1==this.query.page?0:wpLink.minRiverAJAXDuration;n=wpLink.delayedCallback((function(n,i){t.process(n,i),e&&e(n,i)}),n);this.query.ajax(n)},change:function(e){this.query&&this._search==e||(this._search=e,this.query=new c(e),this.element.scrollTop(0))},process:function(e,t){var n,a="",r=!0;t=1==t.page;e?i.each(e,(function(){n=r?"alternate":"",n+=this.title?"":" no-title",a+=n?'<li class="'+n+'">':"<li>",a+='<input type="hidden" class="item-permalink" value="'+this.permalink+'" />',a+='<span class="item-title">',a+=this.title||l.noTitle,a+='</span><span class="item-info">'+this.info+"</span></li>",r=!r})):t&&(a+='<li class="unselectable no-matches-found"><span class="item-title"><em>'+l.noMatchesFound+"</em></span></li>"),this.ul[t?"html":"append"](a)},maybeLoad:function(){var e=this,t=this.element,n=t.scrollTop()+t.height();!this.query.ready()||n<this.contentHeight.height()-wpLink.riverBottomThreshold||setTimeout((function(){var n=t.scrollTop(),i=n+t.height();!e.query.ready()||i<e.contentHeight.height()-wpLink.riverBottomThreshold||(e.waiting.addClass("is-active"),t.scrollTop(n+e.waiting.outerHeight()),e.ajax((function(){e.waiting.removeClass("is-active")})))}),wpLink.timeToTriggerRiver)}}),c=function(e){this.page=1,this.allLoaded=!1,this.querying=!1,this.search=e},i.extend(c.prototype,{ready:function(){return!(this.querying||this.allLoaded)},ajax:function(e){var t=this,n={action:"wp-link-ajax",page:this.page,_ajax_linking_nonce:h.nonce.val()};this.search&&(n.search=this.search),this.querying=!0,i.post(window.ajaxurl,n,(function(i){t.page++,t.querying=!1,t.allLoaded=!i,e(i,n)}),"json")}}),i(document).ready(wpLink.init)}});
1
+ /*! ! built on Tuesday, September 14th 2021, 11:55:41 am */
2
  !function(e){var t={};function n(i){if(t[i])return t[i].exports;var l=t[i]={i:i,l:!1,exports:{}};return e[i].call(l.exports,l,l.exports,n),l.l=!0,l.exports}n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var l in e)n.d(i,l,function(t){return e[t]}.bind(null,l));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=65)}({65:function(e,t){function n(){return r?r.$('a[data-wplink-edit="true"]'):null}var i,l,a,r,s,o,c,p,d,u,h,f,k;i=jQuery,l=window.aioseoL10n,a=window.wp,d=/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,63}$/i,u=/^(https?|ftp):\/\/[A-Z0-9.-]+\.[A-Z]{2,63}[^ "]*$/i,h={},f={},k="ontouchend"in document,window.wpLink={timeToTriggerRiver:150,minRiverAJAXDuration:200,riverBottomThreshold:5,keySensitivity:100,lastSearch:"",textarea:"",modalOpen:!1,init:function(){i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span>&nbsp;</span><input type="checkbox" id="aioseop-add-nofollow">'+l.noFollow+"</label>"),i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span>&nbsp;</span><input type="checkbox" id="aioseop-add-sponsored">'+l.sponsored+"</label>"),i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span>&nbsp;</span><input type="checkbox" id="aioseop-add-ugc">'+l.ugc+"</label><br>"),i(".wp-link-text-field").before('<div class="link-title-field"><label><span style="padding-left: 4px;">'+l.labelTitle+'</span><input id="wp-link-title" type="text" name="linktitle" /></label></div>'),i('<style type="text/css"> .has-text-field #wp-link .query-results { top: 256px !important; } #wp-link-wrap.search-panel-visible {height: 549px !important;}</style>').appendTo("head"),h.wrap=i("#wp-link-wrap"),h.dialog=i("#wp-link"),h.backdrop=i("#wp-link-backdrop"),h.submit=i("#wp-link-submit"),h.close=i("#wp-link-close"),h.tanfl=i("#aioseop-add-nofollow"),h.tanfl_sponsored=i("#aioseop-add-sponsored"),h.tanfl_ugc=i("#aioseop-add-ugc"),h.title=i("#wp-link-title"),h.text=i("#wp-link-text"),h.url=i("#wp-link-url"),h.nonce=i("#_ajax_linking_nonce"),h.openInNewTab=i("#wp-link-target"),h.search=i("#wp-link-search"),f.search=new o(i("#search-results")),f.recent=new o(i("#most-recent-results")),f.elements=h.dialog.find(".query-results"),h.queryNotice=i("#query-notice-message"),h.queryNoticeTextDefault=h.queryNotice.find(".query-notice-default"),h.queryNoticeTextHint=h.queryNotice.find(".query-notice-hint"),h.dialog.keydown(wpLink.keydown),h.dialog.keyup(wpLink.keyup),h.submit.click((function(e){e.preventDefault(),wpLink.update()})),h.close.add(h.backdrop).add("#wp-link-cancel button").click((function(e){e.preventDefault(),wpLink.close()})),f.elements.on("river-select",wpLink.updateFields),h.search.on("focus.wplink",(function(){h.queryNoticeTextDefault.hide(),h.queryNoticeTextHint.removeClass("screen-reader-text").show()})).on("blur.wplink",(function(){h.queryNoticeTextDefault.show(),h.queryNoticeTextHint.addClass("screen-reader-text").hide()})),h.search.on("keyup input",(function(){window.clearTimeout(s),s=window.setTimeout((function(){wpLink.searchInternalLinks()}),500)})),h.url.on("paste",(function(){setTimeout(wpLink.correctURL,0)})),h.url.on("blur",wpLink.correctURL)},correctURL:function(){var e=i.trim(h.url.val());e&&p!==e&&!/^(?:[a-z]+:|#|\?|\.|\/)/.test(e)&&(h.url.val("http://"+e),p=e)},open:function(e,t,n){var l=i(document.body);l.addClass("modal-open"),wpLink.modalOpen=!0,wpLink.range=null,e&&(window.wpActiveEditor=e),window.wpActiveEditor&&(this.textarea=i("#"+window.wpActiveEditor).get(0),void 0!==window.tinymce&&(l.append(h.backdrop,h.wrap),l=window.tinymce.get(window.wpActiveEditor),r=l&&!l.isHidden()?l:null),!wpLink.isMCE()&&document.selection&&(this.textarea.focus(),this.range=document.selection.createRange()),h.wrap.show(),h.backdrop.show(),wpLink.refresh(t,n),i(document).trigger("wplink-open",h.wrap))},isMCE:function(){return r&&!r.isHidden()},refresh:function(e,t){f.search.refresh(),f.recent.refresh(),wpLink.isMCE()?wpLink.mceRefresh(e,t):(h.wrap.hasClass("has-text-field")||h.wrap.addClass("has-text-field"),document.selection?document.selection.createRange().text:void 0!==this.textarea.selectionStart&&this.textarea.selectionStart!==this.textarea.selectionEnd&&(t=this.textarea.value.substring(this.textarea.selectionStart,this.textarea.selectionEnd)||t||""),h.text.val(t),wpLink.setDefaultValues()),k?h.url.focus().blur():window.setTimeout((function(){h.url[0].select(),h.url.focus()})),f.recent.ul.children().length||f.recent.ajax(),p=h.url.val().replace(/^http:\/\//,""),jQuery(".has-text-field #wp-link .query-results").css("margin-top",25)},hasSelectedText:function(e){var t,n,i,l=r.selection.getContent();if(/</.test(l)&&(!/^<a [^>]+>[^<]+<\/a>$/.test(l)||-1===l.indexOf("href=")))return!1;if(e.length){if(!(n=e[0].childNodes)||!n.length)return!1;for(i=n.length-1;0<=i;i--)if(3!=(t=n[i]).nodeType&&!window.tinymce.dom.BookmarkManager.isBookmarkNode(t))return!1}return!0},mceRefresh:function(e,t){var a,s,o=n(),c=this.hasSelectedText(o);o.length?(a=o.text(),s=o.attr("href"),i.trim(a)||(a=t||""),"_wp_link_placeholder"!==(s=e&&(u.test(e)||d.test(e))?e:s)?(h.url.val(s),h.openInNewTab.prop("checked","_blank"===o.attr("target")),h.submit.val(l.update)):this.setDefaultValues(a),e&&e!==s?(h.url.val(e),h.search.val(e)):h.search.val(""),0<=r.dom.getAttrib(o,"rel").indexOf("nofollow")?h.tanfl.prop("checked",!0):h.tanfl.prop("checked",!1),0<=r.dom.getAttrib(o,"rel").indexOf("sponsored")?h.tanfl_sponsored.prop("checked",!0):h.tanfl_sponsored.prop("checked",!1),0<=r.dom.getAttrib(o,"rel").indexOf("ugc")?h.tanfl_ugc.prop("checked",!0):h.tanfl_ugc.prop("checked",!1),h.title.val(r.dom.getAttrib(o,"title")),window.setTimeout((function(){wpLink.searchInternalLinks()}))):(a=r.selection.getContent({format:"text"})||t||"",this.setDefaultValues(a),h.url.val(e)),c?(h.text.val(a),h.wrap.addClass("has-text-field")):(h.text.val(""),h.wrap.removeClass("has-text-field"))},close:function(e){i(document.body).removeClass("modal-open"),wpLink.modalOpen=!1,"noReset"!==e&&(wpLink.isMCE()?(r.plugins.wplink&&r.plugins.wplink.close(),r.focus()):(wpLink.textarea.focus(),wpLink.range&&(wpLink.range.moveToBookmark(wpLink.range.getBookmark()),wpLink.range.select()))),h.backdrop.hide(),h.wrap.hide(),p=!1,i(document).trigger("wplink-close",h.wrap)},getAttrs:function(){wpLink.correctURL();var e="";return h.tanfl.prop("checked")&&(e+="nofollow "),h.tanfl_sponsored.prop("checked")&&(e+="sponsored "),h.tanfl_ugc.prop("checked")&&(e+="ugc"),{href:i.trim(h.url.val()),target:h.openInNewTab.prop("checked")?"_blank":null,rel:""!==e?e:null,title:""!==h.title.val()?i.trim(h.title.val()):null}},buildHtml:function(e){var t='<a href="'+e.href+'"';return e.title&&(title=e.title.replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;"),t+=' title="'+title+'"'),e.target?e.rel?t+=' rel="noopener '+e.rel+'" target="'+e.target+'"':t+=' rel="noopener" target="'+e.target+'"':e.rel&&(t+=' rel="'+e.rel+'"'),t+">"},update:function(){wpLink.isMCE()?wpLink.mceUpdate():wpLink.htmlUpdate()},htmlUpdate:function(){var e,t,n,r,s,o=wpLink.textarea;o&&(n=wpLink.getAttrs(),r=h.text.val(),(s=document.createElement("a")).href=n.href,"javascript:"!==s.protocol&&"data:"!==s.protocol||(n.href=""),n.href&&(e=wpLink.buildHtml(n),document.selection&&wpLink.range?(o.focus(),wpLink.range.text=e+(r||wpLink.range.text)+"</a>",wpLink.range.moveToBookmark(wpLink.range.getBookmark()),wpLink.range.select(),wpLink.range=null):void 0!==o.selectionStart&&(t=o.selectionStart,s=o.selectionEnd,r=t+(e=e+(n=r||o.value.substring(t,s))+"</a>").length,t!==s||n||(r-=4),o.value=o.value.substring(0,t)+e+o.value.substring(s,o.value.length),o.selectionStart=o.selectionEnd=r),wpLink.close(),o.focus(),i(o).trigger("change"),a.a11y.speak(l.linkInserted)))},mceUpdate:function(){var e,t,s,o=wpLink.getAttrs(),c=document.createElement("a");if(c.href=o.href,"javascript:"!==c.protocol&&"data:"!==c.protocol||(o.href=""),!o.href)return r.execCommand("unlink"),void wpLink.close();e=n(),r.undoManager.transact((function(){e.length||(r.execCommand("mceInsertLink",!1,{href:"_wp_link_placeholder","data-wp-temp-link":1}),e=r.$('a[data-wp-temp-link="1"]').removeAttr("data-wp-temp-link"),s=i.trim(e.text())),e.length?(h.wrap.hasClass("has-text-field")&&((t=h.text.val())?e.text(t):s||e.text(o.href)),o["data-wplink-edit"]=null,o["data-mce-href"]=o.href,e.attr(o)):r.execCommand("unlink")})),e=r.$('a[data-wplink-url-error="1"]').removeAttr("data-wplink-url-error"),wpLink.close("noReset"),r.focus(),e.length&&(r.selection.select(e[0]),r.plugins.wplink&&r.plugins.wplink.checkLink(e[0])),r.nodeChanged(),a.a11y.speak(l.linkInserted)},updateFields:function(e,t){h.url.val(t.children(".item-permalink").val()),h.title.val(t.hasClass("no-title")?"":t.children(".item-title").text()),h.wrap.hasClass("has-text-field")&&!h.text.val()&&h.text.val(t.children(".item-title").text())},getUrlFromSelection:function(e){return e||(this.isMCE()?e=r.selection.getContent({format:"text"}):document.selection&&wpLink.range?e=wpLink.range.text:void 0!==this.textarea.selectionStart&&(e=this.textarea.value.substring(this.textarea.selectionStart,this.textarea.selectionEnd))),(e=i.trim(e))&&d.test(e)?"mailto:"+e:e&&u.test(e)?e.replace(/&amp;|&#0?38;/gi,"&"):""},setDefaultValues:function(e){h.url.val(this.getUrlFromSelection(e)),h.title.val(""),h.openInNewTab.prop("checked",!1),h.tanfl.prop("checked",!1),h.tanfl_sponsored.prop("checked",!1),h.tanfl_ugc.prop("checked",!1),h.search.val(""),wpLink.searchInternalLinks(),h.submit.val(l.save)},searchInternalLinks:function(){var e,t=h.search.val()||"",n=parseInt(l.minInputLength,10)||3;t.length>=n?(f.recent.hide(),f.search.show(),wpLink.lastSearch!=t&&(wpLink.lastSearch=t,e=h.search.parent().find(".spinner").addClass("is-active"),f.search.change(t),f.search.ajax((function(){e.removeClass("is-active")})))):(f.search.hide(),f.recent.show())},next:function(){f.search.next(),f.recent.next()},prev:function(){f.search.prev(),f.recent.prev()},keydown:function(e){var t;27===e.keyCode?(wpLink.close(),e.stopImmediatePropagation()):9===e.keyCode&&("wp-link-submit"!==(t=e.target.id)||e.shiftKey?"wp-link-close"===t&&e.shiftKey&&(h.submit.focus(),e.preventDefault()):(h.close.focus(),e.preventDefault())),e.shiftKey||38!==e.keyCode&&40!==e.keyCode||document.activeElement&&("link-title-field"===document.activeElement.id||"url-field"===document.activeElement.id)||(t=38===e.keyCode?"prev":"next",clearInterval(wpLink.keyInterval),wpLink[t](),wpLink.keyInterval=setInterval(wpLink[t],wpLink.keySensitivity),e.preventDefault())},keyup:function(e){38!==e.keyCode&&40!==e.keyCode||(clearInterval(wpLink.keyInterval),e.preventDefault())},delayedCallback:function(e,t){var n,i,l,a;return t?(setTimeout((function(){return i?e.apply(a,l):void(n=!0)}),t),function(){if(n)return e.apply(this,arguments);l=arguments,a=this,i=!0}):e}},o=function(e,t){var n=this;this.element=e,this.ul=e.children("ul"),this.contentHeight=e.children("#link-selector-height"),this.waiting=e.find(".river-waiting"),this.change(t),this.refresh(),i("#wp-link .query-results, #wp-link #link-selector").scroll((function(){n.maybeLoad()})),e.on("click","li",(function(e){n.select(i(this),e)}))},i.extend(o.prototype,{refresh:function(){this.deselect(),this.visible=this.element.is(":visible")},show:function(){this.visible||(this.deselect(),this.element.show(),this.visible=!0)},hide:function(){this.element.hide(),this.visible=!1},select:function(e,t){var n,i,l,a;e.hasClass("unselectable")||e==this.selected||(this.deselect(),this.selected=e.addClass("selected"),n=e.outerHeight(),i=this.element.height(),l=e.position().top,a=this.element.scrollTop(),l<0?this.element.scrollTop(a+l):i<l+n&&this.element.scrollTop(a+l-i+n),this.element.trigger("river-select",[e,t,this]))},deselect:function(){this.selected&&this.selected.removeClass("selected"),this.selected=!1},prev:function(){var e;this.visible&&this.selected&&(e=this.selected.prev("li")).length&&this.select(e)},next:function(){var e;!this.visible||(e=this.selected?this.selected.next("li"):i("li:not(.unselectable):first",this.element)).length&&this.select(e)},ajax:function(e){var t=this,n=1==this.query.page?0:wpLink.minRiverAJAXDuration;n=wpLink.delayedCallback((function(n,i){t.process(n,i),e&&e(n,i)}),n);this.query.ajax(n)},change:function(e){this.query&&this._search==e||(this._search=e,this.query=new c(e),this.element.scrollTop(0))},process:function(e,t){var n,a="",r=!0;t=1==t.page;e?i.each(e,(function(){n=r?"alternate":"",n+=this.title?"":" no-title",a+=n?'<li class="'+n+'">':"<li>",a+='<input type="hidden" class="item-permalink" value="'+this.permalink+'" />',a+='<span class="item-title">',a+=this.title||l.noTitle,a+='</span><span class="item-info">'+this.info+"</span></li>",r=!r})):t&&(a+='<li class="unselectable no-matches-found"><span class="item-title"><em>'+l.noMatchesFound+"</em></span></li>"),this.ul[t?"html":"append"](a)},maybeLoad:function(){var e=this,t=this.element,n=t.scrollTop()+t.height();!this.query.ready()||n<this.contentHeight.height()-wpLink.riverBottomThreshold||setTimeout((function(){var n=t.scrollTop(),i=n+t.height();!e.query.ready()||i<e.contentHeight.height()-wpLink.riverBottomThreshold||(e.waiting.addClass("is-active"),t.scrollTop(n+e.waiting.outerHeight()),e.ajax((function(){e.waiting.removeClass("is-active")})))}),wpLink.timeToTriggerRiver)}}),c=function(e){this.page=1,this.allLoaded=!1,this.querying=!1,this.search=e},i.extend(c.prototype,{ready:function(){return!(this.querying||this.allLoaded)},ajax:function(e){var t=this,n={action:"wp-link-ajax",page:this.page,_ajax_linking_nonce:h.nonce.val()};this.search&&(n.search=this.search),this.querying=!0,i.post(window.ajaxurl,n,(function(i){t.page++,t.querying=!1,t.allLoaded=!i,e(i,n)}),"json")}}),i(document).ready(wpLink.init)}});
dist/Lite/assets/js/link-format-classic.js.gz CHANGED
Binary file
dist/Lite/assets/js/plugins.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! ! built on Thursday, September 9th 2021, 7:47:13 pm */
2
  !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=58)}({36:function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},e.exports.default=e.exports,e.exports.__esModule=!0},37:function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e},e.exports.default=e.exports,e.exports.__esModule=!0},58:function(e,t,n){"use strict";n.r(t);t=n(36);var r=n.n(t),o=(t=n(37),n.n(t));new(function(){function e(){r()(this,e),this.selector=document.querySelector('tr[data-plugin="'+window.aioseoPlugins.basename+'"]'),this.init()}return o()(e,[{key:"init",value:function(){var e;this.selector&&(this.selector.classList.add("aioseo-plugin-row"),(e=this.selector.querySelectorAll("span.proupgrade a, span.docs a, span.support a")).length&&e.forEach((function(e){e.setAttribute("target","_blank")})),(e=this.selector.querySelectorAll(".column-description .active a")).length&&e.forEach((function(e){e.setAttribute("target","_blank")})))}}]),e}())}});
1
+ /*! ! built on Tuesday, September 14th 2021, 11:55:41 am */
2
  !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=58)}({36:function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},e.exports.default=e.exports,e.exports.__esModule=!0},37:function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e},e.exports.default=e.exports,e.exports.__esModule=!0},58:function(e,t,n){"use strict";n.r(t);t=n(36);var r=n.n(t),o=(t=n(37),n.n(t));new(function(){function e(){r()(this,e),this.selector=document.querySelector('tr[data-plugin="'+window.aioseoPlugins.basename+'"]'),this.init()}return o()(e,[{key:"init",value:function(){var e;this.selector&&(this.selector.classList.add("aioseo-plugin-row"),(e=this.selector.querySelectorAll("span.proupgrade a, span.docs a, span.support a")).length&&e.forEach((function(e){e.setAttribute("target","_blank")})),(e=this.selector.querySelectorAll(".column-description .active a")).length&&e.forEach((function(e){e.setAttribute("target","_blank")})))}}]),e}())}});
dist/Lite/assets/js/plugins.js.gz CHANGED
Binary file
languages/aioseo-lite.php CHANGED
@@ -4,134 +4,46 @@ $generated_i18n_strings = array(
4
  // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:49
5
  __( '404', 'all-in-one-seo-pack' ),
6
 
7
- // Reference: src/vue/pages/social-networks/views/SocialProfiles.vue:25
8
- /* Translators: This refers to social media profiles. */
 
 
9
  __( 'Social Profiles', 'all-in-one-seo-pack' ),
10
 
11
- // Reference: src/vue/pages/post-settings/views/Social.vue:65
12
  __( 'Facebook', 'all-in-one-seo-pack' ),
13
 
14
- // Reference: src/vue/pages/post-settings/views/Social.vue:69
15
  __( 'Twitter', 'all-in-one-seo-pack' ),
16
 
17
- // Reference: src/vue/pages/social-networks/views/Pinterest.vue:45
18
  __( 'Pinterest', 'all-in-one-seo-pack' ),
19
 
20
  // Reference: src/vue/pages/dashboard/router/paths.js:19
 
21
  __( 'Dashboard', 'all-in-one-seo-pack' ),
22
 
23
- // Reference: src/vue/pages/setup-wizard/router/paths.js:19
24
- __( 'Welcome', 'all-in-one-seo-pack' ),
25
-
26
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:86
27
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:126
28
- __( 'Import', 'all-in-one-seo-pack' ),
29
-
30
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:298
31
- __( 'Category', 'all-in-one-seo-pack' ),
32
-
33
- // Reference: src/vue/pages/setup-wizard/router/paths.js:46
34
- __( 'Additional Site Information', 'all-in-one-seo-pack' ),
35
-
36
- // Reference: src/vue/pages/setup-wizard/router/paths.js:55
37
- __( 'Choose Features', 'all-in-one-seo-pack' ),
38
-
39
- // Reference: src/vue/pages/search-appearance/views/Main.vue:30
40
- __( 'Search Appearance', 'all-in-one-seo-pack' ),
41
-
42
- // Reference: src/vue/pages/setup-wizard/router/paths.js:73
43
- __( 'Smart Recommendations', 'all-in-one-seo-pack' ),
44
-
45
- // Reference: src/vue/components/lite/settings/LicenseKey.vue:58
46
- // Reference: src/vue/pages/setup-wizard/router/paths.js:82
47
- __( 'License Key', 'all-in-one-seo-pack' ),
48
-
49
- // Reference: src/vue/pages/setup-wizard/router/paths.js:91
50
- __( 'Success', 'all-in-one-seo-pack' ),
51
-
52
- // Reference: src/vue/pages/connect/router/paths.js:20
53
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
54
- __( 'Connect with %1$s', 'all-in-one-seo-pack' ),
55
 
56
  // Reference: src/vue/pages/settings/views/Main.vue:29
57
  __( 'General Settings', 'all-in-one-seo-pack' ),
58
 
59
- // Reference: src/vue/pages/settings/router/paths.js:28
60
  __( 'Webmaster Tools', 'all-in-one-seo-pack' ),
61
 
62
- // Reference: src/vue/pages/settings/router/paths.js:37
63
  __( 'Breadcrumbs', 'all-in-one-seo-pack' ),
64
 
65
- // Reference: src/vue/pages/settings/router/paths.js:46
66
  __( 'RSS Content', 'all-in-one-seo-pack' ),
67
 
68
- // Reference: src/vue/pages/settings/router/paths.js:56
69
  __( 'Access Control', 'all-in-one-seo-pack' ),
70
 
71
- // Reference: src/vue/pages/search-appearance/views/Archives.vue:65
72
- // Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:76
73
- // Reference: src/vue/pages/search-appearance/views/Media.vue:127
74
- // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:98
75
- // Reference: src/vue/pages/settings/views/pro/Breadcrumbs.vue:74
76
  __( 'Advanced', 'all-in-one-seo-pack' ),
77
 
78
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:415
79
- __( 'General Sitemap', 'all-in-one-seo-pack' ),
80
-
81
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:7
82
- __( 'Video Sitemap', 'all-in-one-seo-pack' ),
83
-
84
- // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:5
85
- // Reference: src/vue/plugins/constants.js:1125
86
- __( 'News Sitemap', 'all-in-one-seo-pack' ),
87
-
88
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:274
89
- __( 'HTML Sitemap', 'all-in-one-seo-pack' ),
90
-
91
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:124
92
- __( 'RSS Sitemap', 'all-in-one-seo-pack' ),
93
-
94
- // Reference: src/vue/pages/search-appearance/router/paths.js:19
95
- __( 'Global Settings', 'all-in-one-seo-pack' ),
96
-
97
- // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:80
98
- // Reference: src/vue/pages/settings/views/pro/Breadcrumbs.vue:56
99
- __( 'Content Types', 'all-in-one-seo-pack' ),
100
-
101
- // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:86
102
- // Reference: src/vue/pages/settings/views/pro/Breadcrumbs.vue:62
103
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:405
104
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:116
105
- __( 'Taxonomies', 'all-in-one-seo-pack' ),
106
-
107
- // Reference: src/vue/pages/search-appearance/views/Media.vue:110
108
- __( 'Image SEO', 'all-in-one-seo-pack' ),
109
-
110
- // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:92
111
- // Reference: src/vue/pages/settings/views/pro/Breadcrumbs.vue:68
112
- __( 'Archives', 'all-in-one-seo-pack' ),
113
-
114
- // Reference: src/vue/router/index.js:71
115
- __( 'Are you sure you want to leave? you have unsaved changes!', 'all-in-one-seo-pack' ),
116
-
117
- // Reference: src/vue/mixins/ToolsSettings.js:90
118
- __( 'Redirects', 'all-in-one-seo-pack' ),
119
-
120
- // Reference: src/vue/pages/redirects/router/paths.js:28
121
- __( 'Full Site Redirect', 'all-in-one-seo-pack' ),
122
-
123
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:265
124
- __( 'Logs', 'all-in-one-seo-pack' ),
125
-
126
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:269
127
- __( '404 Logs', 'all-in-one-seo-pack' ),
128
-
129
- // Reference: src/vue/pages/redirects/router/paths.js:55
130
- __( 'Import / Export', 'all-in-one-seo-pack' ),
131
-
132
- // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:179
133
- __( 'Settings', 'all-in-one-seo-pack' ),
134
-
135
  // Reference: src/vue/pages/local-business-seo/blocks/LocationCategories.js:30
136
  /* Translators: 1 - AIOSEO. */
137
  __( '%1$s Local - Location Categories', 'all-in-one-seo-pack' ),
@@ -145,7 +57,7 @@ $generated_i18n_strings = array(
145
  // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:117
146
  __( 'No %s found', 'all-in-one-seo-pack' ),
147
 
148
- // Reference: src/vue/plugins/html-sitemap/index.js:146
149
  __( 'Display Settings', 'all-in-one-seo-pack' ),
150
 
151
  // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:212
@@ -155,9 +67,12 @@ $generated_i18n_strings = array(
155
  /* Translators: 1 - AIOSEO. */
156
  __( '%1$s Local - Business Info', 'all-in-one-seo-pack' ),
157
 
158
- // Reference: src/vue/pages/monsterinsights/views/Main.vue:20
159
- // Reference: src/vue/plugins/constants.js:1085
160
- __( 'Analytics', 'all-in-one-seo-pack' ),
 
 
 
161
 
162
  // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:227
163
  __( 'Please configure the map for this location: %s', 'all-in-one-seo-pack' ),
@@ -166,4233 +81,4104 @@ $generated_i18n_strings = array(
166
  /* Translators: 1 - AIOSEO. */
167
  __( '%1$s Local - Map', 'all-in-one-seo-pack' ),
168
 
169
- // Reference: src/vue/standalone/notifications/App.vue:17
170
- __( 'You have new notifications!', 'all-in-one-seo-pack' ),
171
-
172
- // Reference: src/vue/pages/local-business-seo/blocks/Locations.js:46
173
- /* Translators: 1 - AIOSEO. */
174
- __( '%1$s Local - Locations', 'all-in-one-seo-pack' ),
175
-
176
  // Reference: src/vue/pages/local-business-seo/blocks/OpeningHours.js:46
177
  /* Translators: 1 - AIOSEO. */
178
  __( '%1$s Local - Opening Hours', 'all-in-one-seo-pack' ),
179
 
180
- // Reference: src/vue/pages/about/router/paths.js:19
181
- __( 'About Us', 'all-in-one-seo-pack' ),
182
-
183
- // Reference: src/vue/pages/about/router/paths.js:28
184
- __( 'Getting Started', 'all-in-one-seo-pack' ),
185
-
186
- // Reference: src/vue/pages/about/router/paths.js:37
187
- __( 'Lite vs. Pro', 'all-in-one-seo-pack' ),
188
-
189
  // Reference: src/vue/standalone/publish-panel/PrePublish.vue:153
190
  __( 'N/A', 'all-in-one-seo-pack' ),
191
 
192
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:423
193
- __( 'Person or Organization', 'all-in-one-seo-pack' ),
194
 
195
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:427
196
- __( 'Choose a Person', 'all-in-one-seo-pack' ),
197
 
198
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:424
199
- __( 'Person', 'all-in-one-seo-pack' ),
200
 
201
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:425
202
- __( 'Organization', 'all-in-one-seo-pack' ),
203
 
204
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:426
205
- __( 'Choose whether the site represents a person or an organization.', 'all-in-one-seo-pack' ),
206
 
207
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:106
208
- // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:130
209
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:428
210
- __( 'Name', 'all-in-one-seo-pack' ),
211
 
212
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:322
213
- __( 'Organization Name', 'all-in-one-seo-pack' ),
214
 
215
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:429
216
- __( 'Phone Number', 'all-in-one-seo-pack' ),
217
 
218
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:430
219
- __( 'Choose a Contact Type', 'all-in-one-seo-pack' ),
220
 
221
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:431
222
- __( 'Contact Type', 'all-in-one-seo-pack' ),
223
 
224
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:432
225
- __( 'Select which team or department the phone number belongs to.', 'all-in-one-seo-pack' ),
226
 
227
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:433
228
- __( 'Logo', 'all-in-one-seo-pack' ),
229
 
230
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:111
231
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:125
232
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:434
233
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:689
234
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:447
235
- __( 'Upload or Select Image', 'all-in-one-seo-pack' ),
236
 
237
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:112
238
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:126
239
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:435
240
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:690
241
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:448
242
- __( 'Paste your image URL or select a new image', 'all-in-one-seo-pack' ),
243
 
244
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:113
245
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:127
246
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:436
247
- __( 'Minimum size: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or WEBP format.', 'all-in-one-seo-pack' ),
248
 
249
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:114
250
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:128
251
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:437
252
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:705
253
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:459
254
- __( 'Remove', 'all-in-one-seo-pack' ),
255
 
256
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:332
257
- __( 'Default Social Share Image', 'all-in-one-seo-pack' ),
258
 
259
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:333
260
- __( 'Your Social Profiles', 'all-in-one-seo-pack' ),
261
 
262
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:451
263
- __( 'Manually Enter Person', 'all-in-one-seo-pack' ),
264
 
265
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:134
266
- __( 'Which category best describes your website?', 'all-in-one-seo-pack' ),
 
267
 
268
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:135
269
- __( 'Select a category to help us narrow down the SEO options that work best for you and your site.', 'all-in-one-seo-pack' ),
270
 
271
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:136
272
- __( 'Enter your answer', 'all-in-one-seo-pack' ),
273
 
274
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:453
275
- __( 'Home Page Title', 'all-in-one-seo-pack' ),
276
 
277
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:138
278
- __( 'Home Page Meta Description', 'all-in-one-seo-pack' ),
279
 
280
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:306
281
- __( 'Blog', 'all-in-one-seo-pack' ),
282
 
283
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:142
284
- __( 'News Channel', 'all-in-one-seo-pack' ),
285
 
286
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:143
287
- __( 'Online Store', 'all-in-one-seo-pack' ),
288
 
289
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:144
290
- __( 'Small Offline Business', 'all-in-one-seo-pack' ),
291
 
292
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:145
293
- __( 'Corporation', 'all-in-one-seo-pack' ),
294
 
295
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:146
296
- __( 'Portfolio', 'all-in-one-seo-pack' ),
297
 
298
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:148
299
- __( 'Other:', 'all-in-one-seo-pack' ),
300
 
301
- // Reference: src/vue/pages/setup-wizard/views/Import.vue:80
302
- __( 'Import data from your current plugins', 'all-in-one-seo-pack' ),
303
 
304
- // Reference: src/vue/pages/setup-wizard/views/Import.vue:82
305
- /* Translators: 1 - Plugin short name ("AIOSEO"). */
306
- __( 'We have detected other SEO plugins installed on your website. Select which plugins you would like to import data to %1$s.', 'all-in-one-seo-pack' ),
307
 
308
- // Reference: src/vue/pages/setup-wizard/views/Import.vue:83
309
- __( 'Import Data and Continue', 'all-in-one-seo-pack' ),
310
 
311
- // Reference: src/vue/pages/setup-wizard/views/Features.vue:130
312
- /* Translators: 1 - A list of plugin names. */
313
- __( 'The following plugins will be installed: %1$s', 'all-in-one-seo-pack' ),
314
 
315
- // Reference: src/vue/pages/setup-wizard/views/Features.vue:135
316
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - A list of plugin names. */
317
- __( 'The following %1$s addons will be installed: %2$s', 'all-in-one-seo-pack' ),
318
 
319
- // Reference: src/vue/pages/setup-wizard/views/Features.vue:140
320
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - A list of plugin names. */
321
- __( 'The following plugins and %1$s addons will be installed: %2$s', 'all-in-one-seo-pack' ),
322
 
323
- // Reference: src/vue/pages/setup-wizard/views/Features.vue:82
324
- __( 'Which SEO features do you want to enable?', 'all-in-one-seo-pack' ),
325
 
326
- // Reference: src/vue/pages/setup-wizard/views/Features.vue:86
327
- __( 'We have already selected our recommended features based on your site category, but you can use the following features to fine-tune your site.', 'all-in-one-seo-pack' ),
328
 
329
- // Reference: src/vue/pages/dashboard/views/Main.vue:202
330
- __( 'Smart Schema', 'all-in-one-seo-pack' ),
 
331
 
332
- // Reference: src/vue/pages/local-seo/views/Main.vue:23
333
- __( 'Local SEO', 'all-in-one-seo-pack' ),
334
 
335
- // Reference: src/vue/pages/dashboard/views/Main.vue:204
336
- __( 'Advanced support for e-commerce', 'all-in-one-seo-pack' ),
337
 
338
- // Reference: src/vue/pages/dashboard/views/Main.vue:205
339
- __( 'Advanced Google Analytics tracking', 'all-in-one-seo-pack' ),
340
 
341
- // Reference: src/vue/pages/dashboard/views/Main.vue:206
342
- __( 'Video SEO Module', 'all-in-one-seo-pack' ),
343
 
344
- // Reference: src/vue/pages/dashboard/views/Main.vue:207
345
- __( 'Greater control over display settings', 'all-in-one-seo-pack' ),
 
346
 
347
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:145
348
- __( 'SEO for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
349
 
350
- // Reference: src/vue/pages/dashboard/views/Main.vue:209
351
- __( 'Social meta for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
352
 
353
- // Reference: src/vue/pages/dashboard/views/Main.vue:210
354
- __( 'Ad free (no banner adverts)', 'all-in-one-seo-pack' ),
355
 
356
- // Reference: src/vue/pages/dashboard/views/Main.vue:212
357
- __( 'There are no new notifications at this moment.', 'all-in-one-seo-pack' ),
358
 
359
- // Reference: src/vue/pages/dashboard/views/Main.vue:213
360
- __( 'See all dismissed notifications.', 'all-in-one-seo-pack' ),
 
361
 
362
- // Reference: src/vue/pages/dashboard/views/Main.vue:214
363
- __( 'SEO Site Score', 'all-in-one-seo-pack' ),
 
364
 
365
- // Reference: src/vue/pages/dashboard/views/Main.vue:215
366
- __( 'Support', 'all-in-one-seo-pack' ),
367
 
368
- // Reference: src/vue/pages/dashboard/views/Main.vue:217
369
- /* Translators: 1 - The plugin name ("All in One SEO"). */
370
- __( 'Read the %1$s user guide', 'all-in-one-seo-pack' ),
371
 
372
- // Reference: src/vue/pages/dashboard/views/Main.vue:218
373
- __( 'Access our Premium Support', 'all-in-one-seo-pack' ),
374
 
375
- // Reference: src/vue/pages/dashboard/views/Main.vue:219
376
- __( 'View the Changelog', 'all-in-one-seo-pack' ),
377
 
378
- // Reference: src/vue/pages/dashboard/views/Main.vue:220
379
- __( 'Watch video tutorials', 'all-in-one-seo-pack' ),
380
 
381
- // Reference: src/vue/pages/dashboard/views/Main.vue:221
382
- __( 'Getting started? Read the Beginners Guide', 'all-in-one-seo-pack' ),
383
 
384
- // Reference: src/vue/pages/dashboard/views/Main.vue:222
385
- __( 'Quicklinks', 'all-in-one-seo-pack' ),
386
 
387
- // Reference: src/vue/pages/dashboard/views/Main.vue:223
388
- __( 'You can use these quicklinks to quickly access our settings pages to adjust your site\'s SEO settings.', 'all-in-one-seo-pack' ),
389
 
390
- // Reference: src/vue/pages/dashboard/views/Main.vue:225
391
- __( 'Configure how your website content will look in Google, Bing and other search engines.', 'all-in-one-seo-pack' ),
392
 
393
- // Reference: src/vue/pages/seo-analysis/views/Main.vue:21
394
- // Reference: src/vue/pages/settings/views/Advanced.vue:288
395
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:87
396
- __( 'SEO Analysis', 'all-in-one-seo-pack' ),
397
 
398
- // Reference: src/vue/pages/dashboard/views/Main.vue:227
399
- __( 'Check how your site scores with our SEO analyzer and compare against your competitor\'s site.', 'all-in-one-seo-pack' ),
400
 
401
- // Reference: src/vue/pages/dashboard/views/Main.vue:228
402
- __( 'Improve local SEO rankings with schema for business address, open hours, contact, and more.', 'all-in-one-seo-pack' ),
403
 
404
- // Reference: src/vue/pages/social-networks/views/Main.vue:24
405
- __( 'Social Networks', 'all-in-one-seo-pack' ),
 
406
 
407
- // Reference: src/vue/pages/dashboard/views/Main.vue:230
408
- __( 'Setup Open Graph for Facebook, Twitter, etc. to show the right content / thumbnail preview.', 'all-in-one-seo-pack' ),
 
409
 
410
- // Reference: src/vue/pages/tools/views/Main.vue:31
411
- __( 'Tools', 'all-in-one-seo-pack' ),
412
 
413
- // Reference: src/vue/pages/dashboard/views/Main.vue:232
414
- __( 'Fine-tune your site with our powerful tools including Robots.txt editor, import/export and more.', 'all-in-one-seo-pack' ),
415
 
416
- // Reference: src/vue/pages/sitemaps/views/Main.vue:26
417
- __( 'Sitemaps', 'all-in-one-seo-pack' ),
418
 
419
- // Reference: src/vue/pages/dashboard/views/Main.vue:234
420
- __( 'Manage all of your sitemap settings, including XML, Video, News and more.', 'all-in-one-seo-pack' ),
421
 
422
- // Reference: src/vue/pages/dashboard/views/Main.vue:236
423
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro". */
424
- __( 'Get more features in %1$s %2$s:', 'all-in-one-seo-pack' ),
425
 
426
- // Reference: src/vue/pages/dashboard/views/Main.vue:238
427
- /* Translators: 1 - "Pro", 2 - A percentage ("50%"). */
428
- __( 'Upgrade to %1$s and Save %2$s', 'all-in-one-seo-pack' ),
429
 
430
- // Reference: src/vue/pages/dashboard/views/Main.vue:239
431
- __( 'Dismiss All', 'all-in-one-seo-pack' ),
432
 
433
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:60
434
- __( 'Relaunch Setup Wizard', 'all-in-one-seo-pack' ),
435
 
436
- // Reference: src/vue/pages/dashboard/views/Main.vue:249
437
- /* Translators: 1 - A number representing the remaining notifications. */
438
- __( 'You have %1$s more notifications', 'all-in-one-seo-pack' ),
439
 
440
- // Reference: src/vue/pages/posts-table/TermApp.vue:114
441
- __( 'Title:', 'all-in-one-seo-pack' ),
442
 
443
- // Reference: src/vue/pages/posts-table/TermApp.vue:115
444
- __( 'Description:', 'all-in-one-seo-pack' ),
445
 
446
- // Reference: src/vue/pages/posts-table/App.vue:221
447
- __( 'Image Title:', 'all-in-one-seo-pack' ),
448
 
449
- // Reference: src/vue/pages/posts-table/App.vue:222
450
- __( 'Image Alt Tag:', 'all-in-one-seo-pack' ),
451
 
452
- // Reference: src/vue/pages/posts-table/TermApp.vue:116
453
- __( 'Edit', 'all-in-one-seo-pack' ),
454
 
455
- // Reference: src/vue/pages/posts-table/TermApp.vue:117
456
- __( 'Save', 'all-in-one-seo-pack' ),
457
 
458
- // Reference: src/vue/pages/posts-table/TermApp.vue:118
459
- __( 'Cancel', 'all-in-one-seo-pack' ),
 
460
 
461
- // Reference: src/vue/pages/posts-table/TermApp.vue:119
462
- __( 'Please wait...', 'all-in-one-seo-pack' ),
 
463
 
464
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:250
465
- __( 'The way your site is displayed in search results is very important. Take some time to look over these settings and tweak as needed.', 'all-in-one-seo-pack' ),
466
 
467
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:251
468
- __( 'Google Snippet Preview', 'all-in-one-seo-pack' ),
469
 
470
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:252
471
- __( 'Edit Title and Description', 'all-in-one-seo-pack' ),
472
 
473
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:418
474
- __( 'Click on the tags below to insert variables into your site title.', 'all-in-one-seo-pack' ),
475
 
476
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:420
477
- // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:147
478
- __( 'Click on the tags below to insert variables into your meta description.', 'all-in-one-seo-pack' ),
479
 
480
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:419
481
- // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:146
482
- __( 'Meta Description', 'all-in-one-seo-pack' ),
483
 
484
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:257
485
- __( 'Is the site under construction or live (ready to be indexed)?', 'all-in-one-seo-pack' ),
486
 
487
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:258
488
- __( 'Under Construction', 'all-in-one-seo-pack' ),
489
 
490
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:259
491
- __( 'Live Site', 'all-in-one-seo-pack' ),
492
 
493
- // Reference: src/vue/pages/settings/views/Advanced.vue:290
494
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:117
495
- __( 'Include All Post Types', 'all-in-one-seo-pack' ),
496
 
497
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:9
498
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:126
499
- __( 'Enable Sitemap', 'all-in-one-seo-pack' ),
500
 
501
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:262
502
- __( 'Do you have multiple authors?', 'all-in-one-seo-pack' ),
503
 
504
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:263
505
- __( 'Redirect attachment pages?', 'all-in-one-seo-pack' ),
506
 
507
- // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:102
508
- /* Translators: 1 - "Pro". */
509
- __( 'upgrade to %1$s', 'all-in-one-seo-pack' ),
510
 
511
- // Reference: src/vue/components/lite/settings/LicenseKey.vue:60
512
- __( 'Paste your license key here', 'all-in-one-seo-pack' ),
513
 
514
- // Reference: src/vue/components/lite/settings/LicenseKey.vue:61
515
- __( 'Connect', 'all-in-one-seo-pack' ),
516
 
517
- // Reference: src/vue/components/lite/settings/LicenseKey.vue:80
518
- /* Translators: 1 - The plugin name ("All in One SEO"). */
519
- __( 'You\'re using %1$s - no license needed. Enjoy!', 'all-in-one-seo-pack' ),
520
 
521
- // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:128
522
- __( 'To unlock the selected features, please enter your license key below.', 'all-in-one-seo-pack' ),
523
 
524
- // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:130
525
- /* Translators: 1 - "upgrading to Pro". */
526
- __( 'To unlock the selected features, please %1$s and enter your license key below.', 'all-in-one-seo-pack' ),
527
 
528
- // Reference: src/vue/components/lite/settings/LicenseKey.vue:84
529
- /* Translators: 1 - The plugin name ("All in One SEO"). */
530
- __( 'Already purchased? Simply enter your license key below to connect with %1$s!', 'all-in-one-seo-pack' ),
531
 
532
- // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:98
533
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
534
- __( 'Enter your %1$s License Key', 'all-in-one-seo-pack' ),
535
 
536
- // Reference: src/vue/pages/connect/views/Main.vue:30
537
- __( 'Connecting...', 'all-in-one-seo-pack' ),
 
 
 
538
 
539
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:165
540
- __( 'Setup Site Analyzer + Smart Recommendations', 'all-in-one-seo-pack' ),
 
 
541
 
542
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:167
543
- /* Translators: 1 - Plugin short name ("AIOSEO"). */
544
- __( 'Get helpful suggestions from %1$s on how to optimize your website content, so you can rank higher in search results.', 'all-in-one-seo-pack' ),
 
 
545
 
546
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:168
547
- __( 'Your Email Address', 'all-in-one-seo-pack' ),
 
548
 
549
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:169
550
- __( 'Your email is needed so you can receive SEO recommendations. This email will also be used to connect your site with our SEO API.', 'all-in-one-seo-pack' ),
 
551
 
552
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:171
553
- /* Translators: 1 - Plugin short name ("AIOSEO"). */
554
- __( 'Help make %1$s better for everyone', 'all-in-one-seo-pack' ),
 
555
 
556
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:172
557
- __( 'Yes, count me in', 'all-in-one-seo-pack' ),
 
558
 
559
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:173
560
- __( 'Would you like to purchase and install the following features now?', 'all-in-one-seo-pack' ),
 
 
 
561
 
562
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:174
563
- __( 'An upgrade is required to unlock the following features.', 'all-in-one-seo-pack' ),
 
 
 
564
 
565
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:175
566
- __( 'You won\'t have access to this functionality until the extensions have been purchased and installed.', 'all-in-one-seo-pack' ),
 
 
 
567
 
568
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:176
569
- __( 'I\'ll do it later', 'all-in-one-seo-pack' ),
 
570
 
571
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:177
572
- __( 'Purchase and Install Now', 'all-in-one-seo-pack' ),
573
 
574
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:146
575
- /* Translators: 1 - Opening bold tag. 2 - Closing bold tag. 3 - Opening bold tag. 4 - Percent between 1-100. 5 - Closing bold tag. */
576
- __( '%1$sBonus:%2$s You can upgrade your plan today and %3$ssave %4$s off%5$s (discount auto-applied).', 'all-in-one-seo-pack' ),
577
 
578
- // Reference: src/vue/pages/settings/views/Advanced.vue:310
579
- /* Translators: 1 - Opening HTML link and bold tag, 2 - Closing HTML link and bold tag. */
580
- __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'all-in-one-seo-pack' ),
581
 
582
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:134
583
- __( 'Congratulations, your site is now SEO ready!', 'all-in-one-seo-pack' ),
584
 
585
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:135
586
- __( 'Finish Setup and Go to the Dashboard', 'all-in-one-seo-pack' ),
587
 
588
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:136
589
- __( 'Here\'s what to do next:', 'all-in-one-seo-pack' ),
590
 
591
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:137
592
- __( 'Join our Community', 'all-in-one-seo-pack' ),
593
 
594
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:138
595
- __( 'Join on Facebook', 'all-in-one-seo-pack' ),
 
 
 
596
 
597
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:139
598
- __( 'Follow on Twitter', 'all-in-one-seo-pack' ),
 
 
 
599
 
600
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:140
601
- __( 'Read our Step By Step Guide to Improve your SEO Rankings', 'all-in-one-seo-pack' ),
 
602
 
603
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:142
604
- /* Translators: 1 - Plugin short name ("AIOSEO"). */
605
- __( 'Watch our Guided Tour of %1$s', 'all-in-one-seo-pack' ),
606
 
607
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:143
608
- __( 'See Advanced Settings', 'all-in-one-seo-pack' ),
 
609
 
610
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:144
611
- __( 'Setup Webmaster Tools', 'all-in-one-seo-pack' ),
612
 
613
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:147
614
- __( 'Upgrade to Pro to Unlock Powerful SEO Features', 'all-in-one-seo-pack' ),
615
 
616
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:149
617
- /* Translators: 1 - Plugin name ("All in One SEO"), 2 - Plugin short name ("AIOSEO"). */
618
- __( '%1$s is the best WordPress SEO plugin. Join over 2,000,000+ Professionals who are already using %2$s to improve their website search rankings.', 'all-in-one-seo-pack' ),
619
 
620
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:141
621
- __( 'Video and News Sitemaps', 'all-in-one-seo-pack' ),
622
 
623
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:142
624
- __( 'Image SEO Optimization', 'all-in-one-seo-pack' ),
 
625
 
626
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:143
627
- __( 'Local Business SEO', 'all-in-one-seo-pack' ),
628
 
629
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:144
630
- __( 'Advanced WooCommerce', 'all-in-one-seo-pack' ),
631
 
632
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:146
633
- __( 'And many more...', 'all-in-one-seo-pack' ),
634
 
635
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:157
636
- /* Translators: 1 - "Pro". */
637
- __( 'Upgrade to %1$s Today', 'all-in-one-seo-pack' ),
638
 
639
- // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:100
640
- /* Translators: 1 - Strong tag, 2 - Close strong tag. */
641
- __( '%1$sThe custom marker should be: 100x100 px.%2$s If the image exceeds those dimensions it could (partially) cover the info popup.', 'all-in-one-seo-pack' ),
642
 
643
- // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:90
644
- __( 'Show label', 'all-in-one-seo-pack' ),
 
 
645
 
646
- // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:91
647
- __( 'Show icon', 'all-in-one-seo-pack' ),
648
 
649
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:103
650
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:119
651
- // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:129
652
- __( 'Business Info', 'all-in-one-seo-pack' ),
653
 
654
- // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:93
655
- __( 'Map Display', 'all-in-one-seo-pack' ),
656
 
657
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:683
658
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:441
659
- __( 'Width', 'all-in-one-seo-pack' ),
660
 
661
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:684
662
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:442
663
- __( 'Height', 'all-in-one-seo-pack' ),
664
 
665
- // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:96
666
- __( 'Custom Marker', 'all-in-one-seo-pack' ),
 
 
667
 
668
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:417
669
- /* Translators: 1 - The plugin name ("All in One SEO"). */
670
- __( 'An XML Sitemap is a list of all your content that search engines use when they crawl your site. This is an essential part of SEO because it contains some important pieces of information that search engines need when crawling your site. The XML Sitemap created by %1$s tells search engines where to find all of the content on your site.', 'all-in-one-seo-pack' ),
671
 
672
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:127
673
- __( 'Sitemap Settings', 'all-in-one-seo-pack' ),
674
 
675
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:400
676
- __( 'Enable Sitemap Indexes', 'all-in-one-seo-pack' ),
677
 
678
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:401
679
- __( 'Organize sitemap entries into distinct files in your sitemap. We recommend you enable this setting if your sitemap contains more than 1,000 URLs.', 'all-in-one-seo-pack' ),
680
 
681
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:402
682
- __( 'Links Per Sitemap', 'all-in-one-seo-pack' ),
683
 
684
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:11
685
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:131
686
- __( 'Noindexed content will not be displayed in your sitemap.', 'all-in-one-seo-pack' ),
687
 
688
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:12
689
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:132
690
- __( 'Do you get a blank sitemap or 404 error?', 'all-in-one-seo-pack' ),
691
 
692
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:425
693
- __( 'Open Sitemap', 'all-in-one-seo-pack' ),
694
 
695
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:403
696
- __( 'Allows you to specify the maximum number of posts in a sitemap (up to 50,000).', 'all-in-one-seo-pack' ),
697
 
698
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:135
699
- __( 'Automatically Ping Search Engines', 'all-in-one-seo-pack' ),
700
 
701
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:115
702
- __( 'Post Types', 'all-in-one-seo-pack' ),
703
 
704
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:138
705
- __( 'Date Archive Sitemap', 'all-in-one-seo-pack' ),
706
 
707
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:139
708
- __( 'Include Date Archives in your sitemap.', 'all-in-one-seo-pack' ),
 
709
 
710
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:140
711
- __( 'Author Sitemap', 'all-in-one-seo-pack' ),
 
712
 
713
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:141
714
- __( 'Include Author Archives in your sitemap.', 'all-in-one-seo-pack' ),
715
 
716
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:143
717
- __( 'Select which Post Types appear in your sitemap.', 'all-in-one-seo-pack' ),
718
 
719
- // Reference: src/vue/pages/settings/views/Advanced.vue:316
720
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:408
721
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:118
722
- __( 'Include All Taxonomies', 'all-in-one-seo-pack' ),
723
 
724
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:145
725
- __( 'Select which Taxonomies appear in your sitemap.', 'all-in-one-seo-pack' ),
726
 
727
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:438
728
- __( 'Additional Pages', 'all-in-one-seo-pack' ),
 
729
 
730
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:439
731
- __( 'You can use this section to add any URLs to your sitemap which aren’t a part of your WordPress installation. For example, if you have a contact form that you would like to be included on your sitemap you can enter the information manually.', 'all-in-one-seo-pack' ),
 
732
 
733
- // Reference: src/vue/pages/settings/views/Advanced.vue:283
734
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:706
735
- __( 'Advanced Settings', 'all-in-one-seo-pack' ),
736
 
737
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:125
738
- __( 'Exclude Posts / Pages', 'all-in-one-seo-pack' ),
739
 
740
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:414
741
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:126
742
- __( 'Exclude Terms', 'all-in-one-seo-pack' ),
743
 
744
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:415
745
- __( 'Any posts that are assigned to these terms will also be excluded from your sitemap.', 'all-in-one-seo-pack' ),
746
 
747
- // Reference: src/vue/pages/post-settings/views/Advanced.vue:118
748
- __( 'Priority Score', 'all-in-one-seo-pack' ),
749
 
750
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:445
751
- __( 'Grouped', 'all-in-one-seo-pack' ),
752
 
753
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:446
754
- __( 'Post Type Priority Score', 'all-in-one-seo-pack' ),
755
 
756
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:447
757
- __( 'Taxonomy Priority Score', 'all-in-one-seo-pack' ),
758
 
759
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:448
760
- __( 'Exclude Images', 'all-in-one-seo-pack' ),
761
 
762
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:449
763
- __( 'Exclude Images from your sitemap.', 'all-in-one-seo-pack' ),
764
 
765
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:450
766
- __( 'Dynamically Generate', 'all-in-one-seo-pack' ),
767
 
768
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:451
769
- __( 'Dynamically creates the XML Sitemap instead of using a static file.', 'all-in-one-seo-pack' ),
770
 
771
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:432
772
- __( 'We recommend setting the amount of URLs per sitemap index to 1,000 or less. The more links, the longer it will take for the sitemap to load.', 'all-in-one-seo-pack' ),
773
 
774
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:433
775
- __( 'Your static sitemap is currently being regenerated. This may take some time based on the size of your site. This may also cause the sitemap content to look outdated.', 'all-in-one-seo-pack' ),
776
 
777
- // Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:86
778
- __( 'Show Title', 'all-in-one-seo-pack' ),
779
 
780
- // Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:87
781
- __( 'Show Icons', 'all-in-one-seo-pack' ),
782
 
783
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:294
784
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:238
785
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:307
786
- __( 'Monday', 'all-in-one-seo-pack' ),
787
 
788
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:295
789
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:239
790
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:308
791
- __( 'Tuesday', 'all-in-one-seo-pack' ),
792
 
793
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:296
794
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:240
795
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:309
796
- __( 'Wednesday', 'all-in-one-seo-pack' ),
797
 
798
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:297
799
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:241
800
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:310
801
- __( 'Thursday', 'all-in-one-seo-pack' ),
802
 
803
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:298
804
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:242
805
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:311
806
- __( 'Friday', 'all-in-one-seo-pack' ),
807
 
808
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:299
809
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:243
810
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:312
811
- __( 'Saturday', 'all-in-one-seo-pack' ),
812
 
813
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:300
814
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:244
815
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:313
816
- __( 'Sunday', 'all-in-one-seo-pack' ),
817
 
818
- // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:57
819
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:137
820
- __( 'An error occurred while activating the addon. Please upload it manually or contact support for more information.', 'all-in-one-seo-pack' ),
821
 
822
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:377
823
- __( 'Global Robots Meta', 'all-in-one-seo-pack' ),
824
 
825
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:378
826
- __( 'Noindex Empty Category and Tag Archives', 'all-in-one-seo-pack' ),
827
 
828
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:379
829
- __( 'Remove Stopwords from Permalinks', 'all-in-one-seo-pack' ),
830
 
831
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:380
832
- __( 'Remove Category Base Prefix', 'all-in-one-seo-pack' ),
833
 
834
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:383
835
- __( 'Automatically Add Missing Image Alt / Title Tags', 'all-in-one-seo-pack' ),
836
 
837
- // Reference: src/vue/pages/settings/views/Advanced.vue:320
838
- /* Translators: 1 - The plugin short name name ("AIOSEO"), 2 - "Learn more". */
839
- __( 'This feature is only for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
840
 
841
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:386
842
- __( 'Autogenerate Descriptions', 'all-in-one-seo-pack' ),
843
 
844
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:387
845
- __( 'Use Content for Autogenerated Descriptions', 'all-in-one-seo-pack' ),
846
 
847
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:388
848
- __( 'Run Shortcodes in Description', 'all-in-one-seo-pack' ),
849
 
850
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:389
851
- __( 'No Pagination for Canonical URLs', 'all-in-one-seo-pack' ),
852
 
853
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:390
854
- __( 'Use Meta Keywords', 'all-in-one-seo-pack' ),
 
 
855
 
856
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:391
857
- __( 'This option allows you to toggle the use of Meta Keywords throughout the whole of the site.', 'all-in-one-seo-pack' ),
858
 
859
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:392
860
- __( 'Use Categories for Meta Keywords', 'all-in-one-seo-pack' ),
861
 
862
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:393
863
- __( 'Check this if you want your categories for a given post used as the Meta Keywords for this post (in addition to any keywords you specify on the Edit Post screen).', 'all-in-one-seo-pack' ),
 
864
 
865
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:394
866
- __( 'Use Tags for Meta Keywords', 'all-in-one-seo-pack' ),
867
 
868
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:395
869
- __( 'Check this if you want your tags for a given post used as the Meta Keywords for this post (in addition to any keywords you specify on the Edit Post screen).', 'all-in-one-seo-pack' ),
 
870
 
871
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:396
872
- __( 'Dynamically Generate Meta Keywords', 'all-in-one-seo-pack' ),
873
 
874
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:397
875
- __( 'Check this if you want your keywords on your Posts page (set in WordPress under Settings, Reading, Front Page Displays) and your archive pages to be dynamically generated from the keywords of the posts showing on that page. If unchecked, it will use the keywords set in the edit page screen for the posts page.', 'all-in-one-seo-pack' ),
 
876
 
877
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:73
878
- __( 'Paged Format', 'all-in-one-seo-pack' ),
879
 
880
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:399
881
- __( 'This string gets appended to the titles and descriptions of paginated pages (like term or archive pages).', 'all-in-one-seo-pack' ),
 
882
 
883
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:400
884
- __( 'Description Format', 'all-in-one-seo-pack' ),
885
 
886
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:403
887
- __( 'Enable Sitelinks Search Box', 'all-in-one-seo-pack' ),
888
 
889
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:405
890
- /* Translators: 1 - The plugin name ("All in One SEO"). */
891
- __( 'Choose whether %1$s should output the required schema markup that Google needs to generate a sitelinks search box.', 'all-in-one-seo-pack' ),
892
 
893
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:406
894
- __( 'A Description tag is required in order to properly display your meta descriptions on your site.', 'all-in-one-seo-pack' ),
895
 
896
- // Reference: src/vue/pages/about/views/Main.vue:23
897
- __( 'About', 'all-in-one-seo-pack' ),
898
 
899
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:123
900
- __( 'Set title attributes', 'all-in-one-seo-pack' ),
901
 
902
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:124
903
- __( 'Set alt tag attributes', 'all-in-one-seo-pack' ),
904
 
905
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:125
906
- __( 'Strip punctuation for titles', 'all-in-one-seo-pack' ),
 
907
 
908
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:126
909
- __( 'Strip punctuation for alt tags', 'all-in-one-seo-pack' ),
910
 
911
- // Reference: src/vue/pages/about/views/GettingStarted.vue:130
912
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string. */
913
- __( 'Get %1$s %2$s and Unlock all the Powerful Features', 'all-in-one-seo-pack' ),
914
 
915
- // Reference: src/vue/pages/about/views/GettingStarted.vue:132
916
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string. */
917
- __( 'Get %1$s %2$s and Unlock all the Powerful Features.', 'all-in-one-seo-pack' ),
918
 
919
- // Reference: src/vue/pages/about/views/GettingStarted.vue:141
920
- __( 'Social Meta for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
921
 
922
- // Reference: src/vue/pages/about/views/GettingStarted.vue:148
923
- __( 'Video Tutorials', 'all-in-one-seo-pack' ),
924
 
925
- // Reference: src/vue/pages/about/views/GettingStarted.vue:149
926
- __( 'View all video tutorials', 'all-in-one-seo-pack' ),
927
 
928
- // Reference: src/vue/pages/about/views/GettingStarted.vue:154
929
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
930
- __( '%1$s Documentation', 'all-in-one-seo-pack' ),
931
 
932
- // Reference: src/vue/pages/about/views/GettingStarted.vue:155
933
- __( 'See our full documentation', 'all-in-one-seo-pack' ),
 
934
 
935
- // Reference: src/vue/pages/about/views/GettingStarted.vue:161
936
- __( 'Basic Guide to Google Analytics', 'all-in-one-seo-pack' ),
937
 
938
- // Reference: src/vue/pages/about/views/GettingStarted.vue:165
939
- __( 'Basic Guide to Google Search Console', 'all-in-one-seo-pack' ),
940
 
941
- // Reference: src/vue/pages/about/views/GettingStarted.vue:169
942
- __( 'Best Practices for Domains and URLs', 'all-in-one-seo-pack' ),
943
 
944
- // Reference: src/vue/pages/about/views/GettingStarted.vue:173
945
- __( 'How to Control Search Results', 'all-in-one-seo-pack' ),
946
 
947
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:51
948
- __( 'Pro', 'all-in-one-seo-pack' ),
 
949
 
950
- // Reference: src/vue/pages/about/views/GettingStarted.vue:178
951
- /* Translators: 1 - The plugin short name ("AIOSEO Pro"), 2 - "Pro" string. */
952
- __( 'Installing %1$s %2$s', 'all-in-one-seo-pack' ),
953
 
954
- // Reference: src/vue/pages/about/views/GettingStarted.vue:182
955
- __( 'Optimizing your Content Headings', 'all-in-one-seo-pack' ),
956
 
957
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:182
958
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 "Pro". */
959
- __( '%1$s %2$s comes with many additional features to help take your site\'s SEO to the next level!', 'all-in-one-seo-pack' ),
960
 
961
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:109
962
- __( 'Social Meta (Open Graph Markup)', 'all-in-one-seo-pack' ),
963
 
964
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:112
965
- __( 'Posts, Pages and custom Post Types only', 'all-in-one-seo-pack' ),
966
 
967
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:116
968
- __( 'Posts, Pages, custom Post Types + Categories, Tags and custom Taxonomies', 'all-in-one-seo-pack' ),
969
 
970
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:120
971
- __( 'WooCommerce Integration', 'all-in-one-seo-pack' ),
 
972
 
973
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:123
974
- __( 'WooCommerce Products only', 'all-in-one-seo-pack' ),
 
 
975
 
976
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:127
977
- __( 'WooCommerce Products, Product Categories, Product Tags, Product Attributes + WooCommerce smart tags (price, brand, etc.)', 'all-in-one-seo-pack' ),
 
978
 
979
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:131
980
- __( 'Schema Rich Snippets', 'all-in-one-seo-pack' ),
 
981
 
982
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:134
983
- __( 'Posts, Pages, Categories and Tags only', 'all-in-one-seo-pack' ),
984
 
985
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:138
986
- __( 'Posts, Pages, Categories, Tags + Breadcrumb Navigation + advanced graphs (Product, FAQ Page, Recipe, etc.)', 'all-in-one-seo-pack' ),
987
 
988
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:142
989
- __( 'Visual Breadcrumb Trails', 'all-in-one-seo-pack' ),
990
 
991
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:145
992
- __( 'Default template for all pages.', 'all-in-one-seo-pack' ),
993
 
994
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:149
995
- __( 'Granular control over the template for each post type, taxonomy and archive.', 'all-in-one-seo-pack' ),
996
 
997
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:153
998
- __( 'XML Sitemap', 'all-in-one-seo-pack' ),
999
 
1000
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:156
1001
- __( 'Control the priority & frequency per Post Type/Taxonomy', 'all-in-one-seo-pack' ),
1002
 
1003
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:159
1004
- __( 'Complete Support', 'all-in-one-seo-pack' ),
1005
 
1006
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:160
1007
- __( 'Control the priority & frequency of each Post, Page, Category, Tag, etc.', 'all-in-one-seo-pack' ),
1008
 
1009
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:170
1010
- __( 'Submit your videos to search engines (Pro & Elite plans only)', 'all-in-one-seo-pack' ),
1011
 
1012
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:180
1013
- __( 'Submit your latest news stories to Google News (Pro & Elite plans only)', 'all-in-one-seo-pack' ),
1014
 
1015
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:190
1016
- __( 'Control the Title & Alt Tag attribute of your images (Plus, Pro & Elite plans only)', 'all-in-one-seo-pack' ),
1017
 
1018
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:196
1019
- __( 'Not available', 'all-in-one-seo-pack' ),
1020
 
1021
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:200
1022
- __( 'Local Business schema (multiple locations supported) + Business Info & Location blocks, widgets & shortcodes (Plus, Pro & Elite plans only)', 'all-in-one-seo-pack' ),
1023
 
1024
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:204
1025
- __( 'Redirection Manager', 'all-in-one-seo-pack' ),
1026
 
1027
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:206
1028
- __( 'Not Available', 'all-in-one-seo-pack' ),
1029
 
1030
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:209
1031
- __( 'Available as Addon Plugin', 'all-in-one-seo-pack' ),
1032
 
1033
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:210
1034
- __( 'Create, manage and monitor redirects for 404\'s or modified posts + server redirects, full site redirects and site aliases (Pro & Elite plans only)', 'all-in-one-seo-pack' ),
1035
 
1036
- // Reference: src/vue/plugins/constants.js:1050
1037
- __( 'Customer Support', 'all-in-one-seo-pack' ),
1038
 
1039
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:216
1040
- __( 'Limited Support', 'all-in-one-seo-pack' ),
1041
 
1042
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:219
1043
- __( 'Priority Support', 'all-in-one-seo-pack' ),
1044
 
1045
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:71
1046
- /* Translators: 1 - The abbreviated plugin name ("AIOSEO"). */
1047
- __( '%1$s Lite vs. Pro', 'all-in-one-seo-pack' ),
1048
 
1049
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:73
1050
- /* Translators: 1 - The plugin name ("All in One SEO"). */
1051
- __( 'Get the most out of %1$s by upgrading to Pro and unlocking all of the powerful features.', 'all-in-one-seo-pack' ),
1052
 
1053
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:76
1054
- __( 'Features:', 'all-in-one-seo-pack' ),
1055
 
1056
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:86
1057
- /* Translators: 1 - Opening bold tag, 2 - Closing bold tag, 3 - "Pro", 4 - Opening bold tag, 5 - A percentage ("50%"), 6 - Closing bold tag. */
1058
- __( '%1$sBonus:%2$s You can upgrade to the %3$s plan today and %4$ssave %5$s off%6$s (discount auto-applied).', 'all-in-one-seo-pack' ),
1059
 
1060
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:98
1061
- __( 'Search Engine Optimization (SEO)', 'all-in-one-seo-pack' ),
1062
 
1063
- // Reference: src/vue/pages/about/views/AboutUs.vue:119
1064
- /* Translators: 1 - The plugin name ("All in One SEO"), 2 - Same as previous. */
1065
- __( 'Welcome to %1$s, the original SEO plugin for WordPress. At %2$s, we build software that helps you rank your website in search results and gain organic traffic.', 'all-in-one-seo-pack' ),
1066
 
1067
- // Reference: src/vue/pages/about/views/AboutUs.vue:120
1068
- __( 'Over the years, we found that most other WordPress SEO plugins were bloated, buggy, slow, and very hard to use. So we designed our plugin as an easy and powerful tool.', 'all-in-one-seo-pack' ),
1069
 
1070
- // Reference: src/vue/pages/about/views/AboutUs.vue:121
1071
- __( 'Our goal is to take the pain out of optimizing your website for search engines.', 'all-in-one-seo-pack' ),
1072
 
1073
- // Reference: src/vue/pages/about/views/AboutUs.vue:123
1074
- /* Translators: 1 - The plugin name ("All in One SEO"), 2 - Company name ("Awesome Motive"). */
1075
- __( '%1$s is brought to you by %2$s, the same team that’s behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, the best WordPress analytics plugin, MonsterInsights and many more.', 'all-in-one-seo-pack' ),
1076
 
1077
- // Reference: src/vue/pages/about/views/AboutUs.vue:124
1078
- __( 'Yup, we know a thing or two about building awesome products that customers love.', 'all-in-one-seo-pack' ),
1079
 
1080
- // Reference: src/vue/pages/about/views/AboutUs.vue:126
1081
- /* Translators: 1 - Company name ("Awesome Motive"). */
1082
- __( 'The %1$s Team', 'all-in-one-seo-pack' ),
1083
 
1084
- // Reference: src/vue/pages/about/views/AboutUs.vue:130
1085
- __( 'Install Plugin', 'all-in-one-seo-pack' ),
1086
 
1087
- // Reference: src/vue/pages/about/views/AboutUs.vue:131
1088
- __( 'Activate', 'all-in-one-seo-pack' ),
1089
 
1090
- // Reference: src/vue/components/common/core/FeatureCard.vue:130
1091
- __( 'Manage', 'all-in-one-seo-pack' ),
1092
 
1093
- // Reference: src/vue/pages/about/views/AboutUs.vue:134
1094
- __( 'Status:', 'all-in-one-seo-pack' ),
1095
 
1096
- // Reference: src/vue/components/common/core/FeatureCard.vue:125
1097
- __( 'Activated', 'all-in-one-seo-pack' ),
1098
 
1099
- // Reference: src/vue/components/common/core/FeatureCard.vue:126
1100
- __( 'Deactivated', 'all-in-one-seo-pack' ),
1101
 
1102
- // Reference: src/vue/components/common/core/FeatureCard.vue:127
1103
- __( 'Not Installed', 'all-in-one-seo-pack' ),
1104
 
1105
- // Reference: src/vue/pages/about/views/AboutUs.vue:145
1106
- __( 'Our high-converting optin forms like Exit-Intent® popups, Fullscreen Welcome Mats, and Scroll boxes help you dramatically boost conversions and get more email subscribers.', 'all-in-one-seo-pack' ),
1107
 
1108
- // Reference: src/vue/pages/about/views/AboutUs.vue:154
1109
- __( 'WPForms allows you to create beautiful contact forms for your site in minutes, not hours!', 'all-in-one-seo-pack' ),
1110
 
1111
- // Reference: src/vue/pages/about/views/AboutUs.vue:171
1112
- __( 'MonsterInsights makes it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business.', 'all-in-one-seo-pack' ),
1113
 
1114
- // Reference: src/vue/pages/about/views/AboutUs.vue:188
1115
- __( 'The ExactMetrics Google Analytics for WordPress plugin helps you properly setup all the powerful Google Analytics tracking features without writing any code or hiring a developer.', 'all-in-one-seo-pack' ),
1116
 
1117
- // Reference: src/vue/pages/about/views/AboutUs.vue:205
1118
- __( 'Make sure your website\'s emails reach the inbox. Our goal is to make email deliverability easy and reliable. Trusted by over 2 million websites.', 'all-in-one-seo-pack' ),
1119
 
1120
- // Reference: src/vue/pages/about/views/AboutUs.vue:222
1121
- __( 'Create a simple Coming Soon Page, Under Construction or Maintenance Mode Page. Work on your site in private while visitors see a “Coming Soon” or “Maintenance Mode” page.', 'all-in-one-seo-pack' ),
1122
 
1123
- // Reference: src/vue/pages/about/views/AboutUs.vue:239
1124
- __( 'TrustPulse uses FOMO (Fear of Missing Out) to boost your sales and conversions with social proof notifications. Use it to boost sales on your Woocommerce store, increase signups on your membership site, get more email subscribers, and more.', 'all-in-one-seo-pack' ),
1125
 
1126
- // Reference: src/vue/pages/about/views/AboutUs.vue:248
1127
- __( 'Turn your visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with powerful viral giveaways & contests.', 'all-in-one-seo-pack' ),
1128
 
1129
- // Reference: src/vue/pages/about/views/AboutUs.vue:265
1130
- __( 'Display completely customizable Facebook feeds of any public Facebook page or Group.', 'all-in-one-seo-pack' ),
1131
 
1132
- // Reference: src/vue/pages/about/views/AboutUs.vue:282
1133
- __( 'Display beautifully clean, customizable, and responsive Instagram feeds from multiple Instagram accounts.', 'all-in-one-seo-pack' ),
1134
 
1135
- // Reference: src/vue/pages/about/views/AboutUs.vue:299
1136
- __( 'Display completely customizable, responsive and search engine crawlable Twitter feeds on your website.', 'all-in-one-seo-pack' ),
 
1137
 
1138
- // Reference: src/vue/pages/about/views/AboutUs.vue:316
1139
- __( 'The Feeds for YouTube plugin allows you to display customizable YouTube feeds from any YouTube channel.', 'all-in-one-seo-pack' ),
 
1140
 
1141
- // Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:68
1142
- __( 'Relocate Site', 'all-in-one-seo-pack' ),
1143
 
1144
- // Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:69
1145
- __( 'Would you like to relocate your entire site to a new domain? Everything will be redirected except WordPress login and admin. Enabling this option will disable any site aliases or canonical settings.', 'all-in-one-seo-pack' ),
1146
 
1147
- // Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:70
1148
- __( 'By enabling this option you disabled any site aliases or canonical settings. Enter a domain to redirect everything, except WordPress login and admin.', 'all-in-one-seo-pack' ),
1149
 
1150
- // Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:71
1151
- __( 'Your old site address', 'all-in-one-seo-pack' ),
1152
 
1153
- // Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:72
1154
- __( 'Your new site address', 'all-in-one-seo-pack' ),
 
1155
 
1156
- // Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:73
1157
- __( 'Relocate to domain', 'all-in-one-seo-pack' ),
1158
 
1159
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:175
1160
- /* Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO"). */
1161
- __( '%1$s was successfully imported!', 'all-in-one-seo-pack' ),
1162
 
1163
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:179
1164
- /* Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO"). */
1165
- __( 'An error occurred while importing %1$s. Please try again.', 'all-in-one-seo-pack' ),
1166
 
1167
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:222
1168
- /* Translators: 1 - The name of the plugin (e.g. "Yoast SEO"), 2 - The version of the plugin (e.g. "10.2.3"). */
1169
- __( 'We do not support importing from the currently installed version of %1$s (%2$s). Please upgrade to the latest version and try again.', 'all-in-one-seo-pack' ),
1170
 
1171
- // Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:75
1172
- __( 'Import Redirects From Other Plugins', 'all-in-one-seo-pack' ),
1173
 
1174
- // Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:77
1175
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
1176
- __( 'Choose a plugin to import redirects directly into %1$s.', 'all-in-one-seo-pack' ),
1177
 
1178
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:125
1179
- __( 'Select a plugin...', 'all-in-one-seo-pack' ),
1180
 
1181
- // Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:80
1182
- __( 'All Redirects', 'all-in-one-seo-pack' ),
1183
 
1184
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:128
1185
- __( 'not installed', 'all-in-one-seo-pack' ),
1186
 
1187
- // Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:92
1188
- __( 'Site Aliases', 'all-in-one-seo-pack' ),
1189
 
1190
- // Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:93
1191
- __( 'Site aliases are disabled because you have relocated your site to another domain.', 'all-in-one-seo-pack' ),
1192
 
1193
- // Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:94
1194
- __( 'A site alias is another domain that you want to be redirected to this site. For example, an old domain, or a subdomain. This will redirect all URLs, including WordPress login and admin. You will need to configure your system (DNS and server) to pass requests for these domains to this WordPress install.', 'all-in-one-seo-pack' ),
1195
 
1196
- // Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:95
1197
- __( 'Aliased Domain', 'all-in-one-seo-pack' ),
1198
 
1199
- // Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:96
1200
- __( 'Alias', 'all-in-one-seo-pack' ),
1201
 
1202
- // Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:97
1203
- __( 'Add New', 'all-in-one-seo-pack' ),
1204
 
1205
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:259
1206
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:146
1207
- __( 'Delete', 'all-in-one-seo-pack' ),
1208
 
1209
- // Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:99
1210
- __( 'Add an alias redirect by clicking in \'Add New\'.', 'all-in-one-seo-pack' ),
1211
 
1212
- // Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:82
1213
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
1214
- __( 'Import Redirects from %1$s File', 'all-in-one-seo-pack' ),
1215
 
1216
- // Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:83
1217
- __( 'Import from a JSON file...', 'all-in-one-seo-pack' ),
1218
 
1219
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:84
1220
- __( 'Choose a File', 'all-in-one-seo-pack' ),
1221
 
1222
- // Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:85
1223
- __( 'Imported redirects will overwrite existing redirects and will not be merged.', 'all-in-one-seo-pack' ),
1224
 
1225
- // Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:87
1226
- __( 'A JSON file is required to import redirects.', 'all-in-one-seo-pack' ),
 
1227
 
1228
- // Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:88
1229
- __( 'Success! Your redirects have been imported.', 'all-in-one-seo-pack' ),
1230
 
1231
- // Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:89
1232
- __( 'There was an error importing your redirects. Please make sure you are uploading the correct file or it is in the proper format.', 'all-in-one-seo-pack' ),
 
1233
 
1234
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:68
1235
- __( 'Add New Redirection', 'all-in-one-seo-pack' ),
 
1236
 
1237
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:69
1238
- __( 'Search URLs', 'all-in-one-seo-pack' ),
 
 
1239
 
1240
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:217
1241
- __( 'Check Redirect', 'all-in-one-seo-pack' ),
 
1242
 
1243
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:219
1244
- __( 'Are you sure you want to delete this redirect?', 'all-in-one-seo-pack' ),
1245
 
1246
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:220
1247
- __( 'Are you sure you want to delete these redirects?', 'all-in-one-seo-pack' ),
1248
 
1249
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:142
1250
- __( 'This action cannot be undone.', 'all-in-one-seo-pack' ),
1251
 
1252
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:222
1253
- __( 'Yes, I want to delete this redirect', 'all-in-one-seo-pack' ),
1254
 
1255
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:223
1256
- __( 'Yes, I want to delete these redirects', 'all-in-one-seo-pack' ),
1257
 
1258
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:141
1259
- __( 'No, I changed my mind', 'all-in-one-seo-pack' ),
1260
 
1261
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:225
1262
- __( 'Rules', 'all-in-one-seo-pack' ),
1263
 
1264
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:226
1265
- __( 'Custom Rules', 'all-in-one-seo-pack' ),
1266
 
1267
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:164
1268
- __( 'Regex', 'all-in-one-seo-pack' ),
1269
 
1270
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:230
1271
- __( 'Enable', 'all-in-one-seo-pack' ),
1272
 
1273
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:231
1274
- __( 'Disable', 'all-in-one-seo-pack' ),
1275
 
1276
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:232
1277
- __( 'Reset Hits', 'all-in-one-seo-pack' ),
 
1278
 
1279
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:91
1280
- __( 'Source URL', 'all-in-one-seo-pack' ),
 
1281
 
1282
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:95
1283
- __( 'Target URL', 'all-in-one-seo-pack' ),
1284
 
1285
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:99
1286
- __( 'Hits', 'all-in-one-seo-pack' ),
1287
 
1288
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:104
1289
- // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:53
1290
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:122
1291
- // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:131
1292
- __( 'Type', 'all-in-one-seo-pack' ),
1293
 
1294
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:109
1295
- __( 'Group', 'all-in-one-seo-pack' ),
 
1296
 
1297
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:124
1298
- __( 'Filter by Group', 'all-in-one-seo-pack' ),
 
1299
 
1300
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:126
1301
- __( 'All Groups', 'all-in-one-seo-pack' ),
1302
 
1303
- // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:436
1304
- // Reference: src/vue/pages/redirects/views/pro/RedirectsActivate.vue:181
1305
- __( 'Pass through', 'all-in-one-seo-pack' ),
1306
 
1307
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:70
1308
- __( 'Upgrade to Pro and Unlock Redirects', 'all-in-one-seo-pack' ),
1309
 
1310
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:71
1311
- __( 'Redirects are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
1312
 
1313
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:72
1314
- __( 'Fast Server Redirects', 'all-in-one-seo-pack' ),
1315
 
1316
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:73
1317
- __( 'Automatic Redirects', 'all-in-one-seo-pack' ),
1318
 
1319
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:74
1320
- __( 'Redirect Monitoring', 'all-in-one-seo-pack' ),
1321
 
1322
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:75
1323
- __( '404 Monitoring', 'all-in-one-seo-pack' ),
1324
 
1325
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:76
1326
- __( 'Full Site Redirects', 'all-in-one-seo-pack' ),
1327
 
1328
- // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:78
1329
- __( 'Our Redirection Manager allows you to easily create and manage redirects for your broken links to avoid confusing search engines and users, as well as losing valuable backlinks. It even automatically sends users and search engines from your old URLs to your new ones.', 'all-in-one-seo-pack' ),
1330
 
1331
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:16
1332
- __( 'This feature requires one of the following plans:', 'all-in-one-seo-pack' ),
1333
 
1334
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:249
1335
- __( 'Click here', 'all-in-one-seo-pack' ),
1336
 
1337
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:251
1338
- /* Translators: 1 - The addon or plugin name. */
1339
- __( 'Install %1$s', 'all-in-one-seo-pack' ),
1340
 
1341
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:186
1342
- /* Translators: 1 - The name of one of our partner plugins. */
1343
- __( '%1$s is Installed & Active', 'all-in-one-seo-pack' ),
1344
 
1345
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:187
1346
- __( 'Launch Setup Wizard', 'all-in-one-seo-pack' ),
 
1347
 
1348
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:198
1349
- __( 'The Best Google Analytics Plugin for WordPress', 'all-in-one-seo-pack' ),
 
1350
 
1351
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:200
1352
- /* Translators: 1 - The name of one of our partner plugins, 2 - The name of one of our partner plugins. */
1353
- __( '%1$s connects AIOSEO to Google Analytics, providing a powerful integration. %2$s is a sister company of AIOSEO.', 'all-in-one-seo-pack' ),
1354
 
1355
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:201
1356
- __( 'Quick & Easy Google Analytics Setup', 'all-in-one-seo-pack' ),
1357
 
1358
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:202
1359
- __( 'Google Analytics Dashboard + Real Time Stats', 'all-in-one-seo-pack' ),
1360
 
1361
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:203
1362
- __( 'Google Analytics Enhanced Ecommerce Tracking', 'all-in-one-seo-pack' ),
1363
 
1364
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:204
1365
- __( 'Universal Tracking for AMP and Instant Articles', 'all-in-one-seo-pack' ),
1366
 
1367
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:205
1368
- __( 'Install &', 'all-in-one-seo-pack' ),
1369
 
1370
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:207
1371
- /* Translators: 1 - The name of one of our partner plugins. */
1372
- __( 'Activate %1$s', 'all-in-one-seo-pack' ),
1373
 
1374
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:209
1375
- /* Translators: 1 - The name of one of our partner plugins. */
1376
- __( '%1$s shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'all-in-one-seo-pack' ),
1377
 
1378
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:213
1379
- /* Translators: 1 - The name of one of our partner plugins. */
1380
- __( 'Setup %1$s', 'all-in-one-seo-pack' ),
1381
 
1382
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:217
1383
- /* Translators: 1 - The name of one of our partner plugins. */
1384
- __( '%1$s has an intuitive setup wizard to guide you through the setup process.', 'all-in-one-seo-pack' ),
1385
 
1386
- // Reference: src/vue/mixins/TruSeoScore.js:10
1387
- __( 'Excellent!', 'all-in-one-seo-pack' ),
1388
 
1389
- // Reference: src/vue/mixins/SeoSiteScore.js:11
1390
- __( 'to see your Site Score.', 'all-in-one-seo-pack' ),
1391
 
1392
- // Reference: src/vue/mixins/SeoSiteScore.js:12
1393
- __( 'to analyze a competitor site.', 'all-in-one-seo-pack' ),
1394
 
1395
- // Reference: src/vue/mixins/SeoSiteScore.js:13
1396
- __( 'A valid license key is required', 'all-in-one-seo-pack' ),
1397
 
1398
- // Reference: src/vue/mixins/TruSeoScore.js:6
1399
- /* Translators: 1 - HTML Line break tag. */
1400
- __( 'We\'ve got some%1$swork to do!', 'all-in-one-seo-pack' ),
1401
 
1402
- // Reference: src/vue/mixins/TruSeoScore.js:8
1403
- /* Translators: 1 - HTML Line break tag. */
1404
- __( 'Needs%1$sImprovement!', 'all-in-one-seo-pack' ),
1405
 
1406
- // Reference: src/vue/mixins/TruSeoScore.js:9
1407
- __( 'Very Good!', 'all-in-one-seo-pack' ),
1408
 
1409
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:10
1410
- __( 'Open Video Sitemap', 'all-in-one-seo-pack' ),
1411
 
1412
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:13
1413
- __( 'Upgrade to Pro and Unlock Video Sitemaps', 'all-in-one-seo-pack' ),
1414
 
1415
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:15
1416
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
1417
- __( 'Video Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
1418
 
1419
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:5
1420
- __( 'Custom Field Support', 'all-in-one-seo-pack' ),
1421
 
1422
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:6
1423
- __( 'Exclude Pages/Posts', 'all-in-one-seo-pack' ),
1424
 
1425
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:163
1426
- __( 'The Video Sitemap works in much the same way as the XML Sitemap module, it generates an XML Sitemap specifically for video content on your site. Search engines use this information to display rich snippet information in search results.', 'all-in-one-seo-pack' ),
1427
 
1428
- // Reference: src/vue/mixins/ToolsSettings.js:41
1429
- __( 'Robots.txt', 'all-in-one-seo-pack' ),
1430
 
1431
- // Reference: src/vue/pages/tools/router/paths.js:37
1432
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:89
1433
- __( 'Bad Bot Blocker', 'all-in-one-seo-pack' ),
1434
 
1435
- // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:10
1436
- __( 'Open News Sitemap', 'all-in-one-seo-pack' ),
1437
 
1438
- // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:13
1439
- __( 'Upgrade to Pro and Unlock News Sitemaps', 'all-in-one-seo-pack' ),
1440
 
1441
- // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:15
1442
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
1443
- __( 'News Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
1444
 
1445
- // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:6
1446
- __( 'Set Publication Name', 'all-in-one-seo-pack' ),
1447
 
1448
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:167
1449
- __( 'Our Google News Sitemap lets you control which content you submit to Google News and only contains articles that were published in the last 48 hours. In order to submit a News Sitemap to Google, you must have added your site to Google’s Publisher Center and had it approved.', 'all-in-one-seo-pack' ),
1450
 
1451
- // Reference: src/vue/mixins/Wizard.js:6
1452
- __( 'Skip this Step', 'all-in-one-seo-pack' ),
1453
 
1454
- // Reference: src/vue/mixins/Wizard.js:7
1455
- __( 'Go Back', 'all-in-one-seo-pack' ),
1456
 
1457
- // Reference: src/vue/mixins/Wizard.js:8
1458
- __( 'Save and Continue', 'all-in-one-seo-pack' ),
1459
 
1460
- // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:90
1461
- __( 'Critical Issues', 'all-in-one-seo-pack' ),
1462
 
1463
- // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:100
1464
- __( 'Recommended Improvements', 'all-in-one-seo-pack' ),
1465
 
1466
- // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:110
1467
- __( 'Good Results', 'all-in-one-seo-pack' ),
1468
 
1469
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:67
1470
- // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:79
1471
- __( 'Complete Site Audit Checklist', 'all-in-one-seo-pack' ),
1472
 
1473
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:30
1474
- __( 'All Good!', 'all-in-one-seo-pack' ),
1475
 
1476
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:29
1477
- __( 'Errors', 'all-in-one-seo-pack' ),
1478
 
1479
- // Reference: src/vue/mixins/MaxCounts.js:6
1480
- /* Translators: 1 - A number, 2 - A number. */
1481
- __( '%1$s out of %2$s max recommended characters.', 'all-in-one-seo-pack' ),
1482
 
1483
- // Reference: src/vue/mixins/Image.js:119
1484
- __( 'Choose Image', 'all-in-one-seo-pack' ),
1485
 
1486
- // Reference: src/vue/mixins/Image.js:55
1487
- __( 'Default Image (Set Below)', 'all-in-one-seo-pack' ),
1488
 
1489
- // Reference: src/vue/mixins/Image.js:56
1490
- __( 'Featured Image', 'all-in-one-seo-pack' ),
1491
 
1492
- // Reference: src/vue/mixins/Image.js:57
1493
- __( 'Attached Image', 'all-in-one-seo-pack' ),
1494
 
1495
- // Reference: src/vue/mixins/Image.js:58
1496
- __( 'First Image in Content', 'all-in-one-seo-pack' ),
1497
 
1498
- // Reference: src/vue/mixins/Image.js:59
1499
- __( 'Image from Custom Field', 'all-in-one-seo-pack' ),
1500
 
1501
- // Reference: src/vue/mixins/Image.js:60
1502
- __( 'Post Author Image', 'all-in-one-seo-pack' ),
1503
 
1504
- // Reference: src/vue/mixins/Image.js:61
1505
- __( 'First Available Image', 'all-in-one-seo-pack' ),
1506
 
1507
- // Reference: src/vue/mixins/Image.js:68
1508
- __( 'Default Image Source (Set in Social Networks)', 'all-in-one-seo-pack' ),
1509
 
1510
- // Reference: src/vue/mixins/Image.js:71
1511
- __( 'Custom Image', 'all-in-one-seo-pack' ),
1512
 
1513
- // Reference: src/vue/mixins/License.js:11
1514
- __( 'Your license has been disabled.', 'all-in-one-seo-pack' ),
1515
 
1516
- // Reference: src/vue/mixins/License.js:15
1517
- __( 'Your license key is invalid.', 'all-in-one-seo-pack' ),
1518
 
1519
- // Reference: src/vue/mixins/License.js:4
1520
- __( 'You have not yet added a license key.', 'all-in-one-seo-pack' ),
1521
 
1522
- // Reference: src/vue/mixins/License.js:7
1523
- __( 'Your license has expired.', 'all-in-one-seo-pack' ),
1524
 
1525
- // Reference: src/vue/mixins/Notifications.js:6
1526
- __( 'Notifications', 'all-in-one-seo-pack' ),
1527
 
1528
- // Reference: src/vue/mixins/Notifications.js:7
1529
- __( 'New Notifications', 'all-in-one-seo-pack' ),
 
1530
 
1531
- // Reference: src/vue/mixins/Notifications.js:8
1532
- __( 'Active Notifications', 'all-in-one-seo-pack' ),
 
1533
 
1534
- // Reference: src/vue/pages/redirects/views/pro/Logs404.vue:194
1535
- __( 'Add Redirects', 'all-in-one-seo-pack' ),
 
1536
 
1537
- // Reference: src/vue/pages/redirects/views/pro/Logs404.vue:198
1538
- __( 'Add Redirect', 'all-in-one-seo-pack' ),
 
1539
 
1540
- // Reference: src/vue/pages/redirects/views/pro/Logs404.vue:199
1541
- __( 'Add New Redirections', 'all-in-one-seo-pack' ),
1542
 
1543
- // Reference: src/vue/pages/redirects/views/pro/Logs404.vue:240
1544
- __( 'Redirect', 'all-in-one-seo-pack' ),
1545
 
1546
- // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:77
1547
- __( 'Canonical Settings', 'all-in-one-seo-pack' ),
1548
 
1549
- // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:78
1550
- __( 'Canonical Settings are disabled because you have relocated your site to another domain.', 'all-in-one-seo-pack' ),
 
1551
 
1552
- // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:79
1553
- __( 'Your current site address', 'all-in-one-seo-pack' ),
 
1554
 
1555
- // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:81
1556
- __( 'Redirect from HTTP to HTTPS', 'all-in-one-seo-pack' ),
 
1557
 
1558
- // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:82
1559
- __( 'Force a redirect from HTTP to HTTPS', 'all-in-one-seo-pack' ),
1560
 
1561
- // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:83
1562
- __( 'Preferred domain', 'all-in-one-seo-pack' ),
1563
 
1564
- // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:85
1565
- /* Translators: 1 - Opening link tag, 2 - Closing link tag. */
1566
- __( 'You\'ll need to update your Site Address URL to match your new site address. %1$sUpdate Site Address URL%2$s.', 'all-in-one-seo-pack' ),
1567
 
1568
- // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:87
1569
- /* Translators: 1 - Opening strong tag, 2 - Closing strong tag., 3 - Doc link */
1570
- __( '%1$sWarning:%2$s ensure your HTTPS is working before forcing a redirect. %3$s', 'all-in-one-seo-pack' ),
1571
 
1572
- // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:91
1573
- __( 'Leave domain as-is', 'all-in-one-seo-pack' ),
 
1574
 
1575
- // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:95
1576
- __( 'Add www to domain', 'all-in-one-seo-pack' ),
1577
 
1578
- // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:99
1579
- __( 'Remove www from domain', 'all-in-one-seo-pack' ),
1580
 
1581
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:358
1582
- __( 'Redirect Settings', 'all-in-one-seo-pack' ),
1583
 
1584
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:359
1585
- __( 'Redirect Method', 'all-in-one-seo-pack' ),
 
1586
 
1587
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:361
1588
- /* Translators: 1 - Learn more link. */
1589
- __( 'We cannot detect your web server. Server redirects are disabled. %1$s', 'all-in-one-seo-pack' ),
1590
 
1591
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:362
1592
- __( 'PHP', 'all-in-one-seo-pack' ),
1593
 
1594
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:363
1595
- __( 'Web Server', 'all-in-one-seo-pack' ),
1596
 
1597
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:365
1598
- __( 'IP Logging', 'all-in-one-seo-pack' ),
1599
 
1600
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:366
1601
- __( 'HTTP Cache Header', 'all-in-one-seo-pack' ),
1602
 
1603
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:367
1604
- __( 'Redirect Defaults', 'all-in-one-seo-pack' ),
1605
 
1606
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:271
1607
- __( 'Redirect Logs', 'all-in-one-seo-pack' ),
 
1608
 
1609
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:370
1610
- __( 'Log External Redirects', 'all-in-one-seo-pack' ),
1611
 
1612
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:371
1613
- __( 'Log HTTP Header Information', 'all-in-one-seo-pack' ),
1614
 
1615
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:372
1616
- __( 'Enable Redirect Cache', 'all-in-one-seo-pack' ),
1617
 
1618
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:163
1619
- __( 'Ignore Case', 'all-in-one-seo-pack' ),
1620
-
1621
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:162
1622
- __( 'Ignore Slash', 'all-in-one-seo-pack' ),
1623
 
1624
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:375
1625
- __( 'Cache Redirects', 'all-in-one-seo-pack' ),
1626
 
1627
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:376
1628
- __( 'Object Cache', 'all-in-one-seo-pack' ),
1629
 
1630
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:378
1631
- /* Translators: 1 - Opening link tag, 2 - Closing link tag. */
1632
- __( '%1$sGDPR / Privacy information%2$s', 'all-in-one-seo-pack' ),
1633
 
1634
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:379
1635
- __( 'Log IP Addresses', 'all-in-one-seo-pack' ),
1636
 
1637
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:380
1638
- __( 'Redirect Type', 'all-in-one-seo-pack' ),
 
1639
 
1640
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:381
1641
- __( 'Query Parameters', 'all-in-one-seo-pack' ),
 
1642
 
1643
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:383
1644
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
1645
- __( 'Log redirects that happen on your site even if the redirect happened outside of %1$s', 'all-in-one-seo-pack' ),
1646
 
1647
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:384
1648
- __( 'Capture HTTP header information with the logs (except for cookies).', 'all-in-one-seo-pack' ),
1649
 
1650
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:386
1651
- /* Translators: 1 - "NGINX". */
1652
- __( 'Export %1$s config file', 'all-in-one-seo-pack' ),
1653
 
1654
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:388
1655
- /* Translators: 1 - ".htaccess". */
1656
- __( 'Export %1$s file', 'all-in-one-seo-pack' ),
1657
 
1658
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:390
1659
- /* Translators: 1 - ".htaccess". */
1660
- __( 'Auto-write to %1$s', 'all-in-one-seo-pack' ),
1661
 
1662
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:393
1663
- __( 'Monitor Trash', 'all-in-one-seo-pack' ),
 
1664
 
1665
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:394
1666
- __( 'This allows you to monitor changes to post types and automatically add redirects based on URL changes. These will show up with a group called "Modified Posts".', 'all-in-one-seo-pack' ),
 
1667
 
1668
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:397
1669
- __( '1 hour', 'all-in-one-seo-pack' ),
1670
 
1671
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:398
1672
- __( '1 day', 'all-in-one-seo-pack' ),
1673
 
1674
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:399
1675
- __( '1 week', 'all-in-one-seo-pack' ),
1676
 
1677
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:400
1678
- __( 'Forever', 'all-in-one-seo-pack' ),
1679
 
1680
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:403
1681
- __( 'Full Logging', 'all-in-one-seo-pack' ),
1682
 
1683
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:404
1684
- __( 'Anonymize IP', 'all-in-one-seo-pack' ),
1685
 
1686
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:411
1687
- __( '%1$s Server has been detected.', 'all-in-one-seo-pack' ),
 
1688
 
1689
- // Reference: src/vue/pages/redirects/views/pro/Settings.vue:427
1690
- /* Translators: 1 - A code snippet. */
1691
- __( 'Make sure you include the following in your server configuration file: %1$s', 'all-in-one-seo-pack' ),
1692
 
1693
- // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:110
1694
- __( 'Complete Data (JSON)', 'all-in-one-seo-pack' ),
 
1695
 
1696
- // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:111
1697
- __( 'Apache Redirects (.htaccess)', 'all-in-one-seo-pack' ),
1698
 
1699
- // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:112
1700
- __( 'Nginx Redirects (.nginx)', 'all-in-one-seo-pack' ),
1701
 
1702
- // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:115
1703
- __( 'Export Redirects', 'all-in-one-seo-pack' ),
1704
 
1705
- // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:116
1706
- __( 'Export to JSON, .htaccess or .nginx. The JSON format contains full information (and can be re-imported), while the other formats only contain partial information relavant to that format.', 'all-in-one-seo-pack' ),
1707
 
1708
- // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:117
1709
- __( 'Export All Redirects', 'all-in-one-seo-pack' ),
1710
 
1711
- // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:119
1712
- __( 'Export Redirect Logs', 'all-in-one-seo-pack' ),
1713
 
1714
- // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:120
1715
- __( 'Export 404 Logs', 'all-in-one-seo-pack' ),
1716
 
1717
- // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:143
1718
- __( 'HTTP Headers', 'all-in-one-seo-pack' ),
1719
 
1720
- // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:144
1721
- __( 'Site headers are added across your site, including redirects. Redirect headers are only added to redirects.', 'all-in-one-seo-pack' ),
1722
 
1723
- // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:145
1724
- __( 'Location', 'all-in-one-seo-pack' ),
 
1725
 
1726
- // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:146
1727
- __( 'Header', 'all-in-one-seo-pack' ),
 
1728
 
1729
- // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:147
1730
- __( 'Value', 'all-in-one-seo-pack' ),
1731
 
1732
- // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:149
1733
- __( 'Add Header', 'all-in-one-seo-pack' ),
1734
 
1735
- // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:150
1736
- __( 'Add Security Presets', 'all-in-one-seo-pack' ),
1737
 
1738
- // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:151
1739
- __( 'Add CORS Presets', 'all-in-one-seo-pack' ),
1740
 
1741
- // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:152
1742
- __( 'Add headers by clicking in the options below.', 'all-in-one-seo-pack' ),
1743
 
1744
- // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:153
1745
- __( 'Select a header', 'all-in-one-seo-pack' ),
1746
 
1747
- // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:165
1748
- __( 'Site', 'all-in-one-seo-pack' ),
1749
 
1750
- // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:166
1751
- __( 'site', 'all-in-one-seo-pack' ),
1752
 
1753
- // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:170
1754
- __( 'redirect', 'all-in-one-seo-pack' ),
1755
 
1756
- // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:181
1757
- __( 'Custom', 'all-in-one-seo-pack' ),
1758
 
1759
- // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:42
1760
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
1761
- __( 'Welcome to the %1$s Setup Wizard!', 'all-in-one-seo-pack' ),
1762
 
1763
- // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:44
1764
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
1765
- __( '%1$s makes it easy to configure your site\'s SEO settings without the need to hire an expert. And it takes less than 10 minutes too!', 'all-in-one-seo-pack' ),
1766
 
1767
- // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:45
1768
- __( 'Let\'s Get Started', 'all-in-one-seo-pack' ),
1769
 
1770
- // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:46
1771
- __( 'Go back to the Dashboard', 'all-in-one-seo-pack' ),
1772
 
1773
- // Reference: src/vue/pages/redirects/views/Redirects.vue:31
1774
- __( 'Redirects Settings', 'all-in-one-seo-pack' ),
1775
 
1776
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:112
1777
- __( 'Title Attribute Format', 'all-in-one-seo-pack' ),
1778
 
1779
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:113
1780
- __( 'Strip Punctuation for Title Attributes', 'all-in-one-seo-pack' ),
1781
 
1782
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:114
1783
- __( 'Click on the tags below to insert variables into your title attribute.', 'all-in-one-seo-pack' ),
1784
 
1785
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:115
1786
- __( 'Alt Tag Attribute Format', 'all-in-one-seo-pack' ),
1787
 
1788
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:116
1789
- __( 'Click on the tags below to insert variables into your alt tag attribute.', 'all-in-one-seo-pack' ),
1790
 
1791
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:117
1792
- __( 'Strip Punctuation for Alt Attributes', 'all-in-one-seo-pack' ),
1793
 
1794
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:120
1795
- __( 'Upgrade to Pro and Unlock Image SEO', 'all-in-one-seo-pack' ),
1796
 
1797
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:122
1798
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
1799
- __( 'Image SEO is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
1800
 
1801
- // Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:70
1802
- __( 'Custom Fields', 'all-in-one-seo-pack' ),
1803
 
1804
- // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:52
1805
- __( 'List of custom field names to include in the SEO Page Analysis. Add one per line.', 'all-in-one-seo-pack' ),
 
1806
 
1807
- // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:54
1808
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
1809
- __( '%1$s %2$s gives you advanced customizations for our page analysis feature, letting you add custom fields to analyze.', 'all-in-one-seo-pack' ),
1810
 
1811
- // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:55
1812
- __( 'Upgrade to Pro and Unlock Custom Fields', 'all-in-one-seo-pack' ),
 
1813
 
1814
- // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:57
1815
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
1816
- __( 'Custom Fields are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
1817
 
1818
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:125
1819
- __( 'This option will generate a separate RSS Sitemap which can be submitted to Google, Bing and any other search engines that support this type of sitemap. The RSS Sitemap contains an RSS feed of the latest updates to your site content. It is not a full sitemap of all your content.', 'all-in-one-seo-pack' ),
 
1820
 
1821
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:130
1822
- __( 'Number of Posts', 'all-in-one-seo-pack' ),
 
1823
 
1824
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:133
1825
- __( 'Open RSS Sitemap', 'all-in-one-seo-pack' ),
1826
 
1827
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:134
1828
- __( 'Allows you to specify the maximum number of posts for the RSS Sitemap. We recommend an amount of 50 posts.', 'all-in-one-seo-pack' ),
1829
 
1830
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:108
1831
- __( 'Publish Date', 'all-in-one-seo-pack' ),
1832
 
1833
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:223
1834
- __( 'Last Updated Date', 'all-in-one-seo-pack' ),
1835
 
1836
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:110
1837
- __( 'Alphabetical', 'all-in-one-seo-pack' ),
1838
 
1839
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:111
1840
- __( 'Post/Term ID', 'all-in-one-seo-pack' ),
1841
 
1842
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:104
1843
- __( 'Ascending', 'all-in-one-seo-pack' ),
1844
 
1845
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:105
1846
- __( 'Descending', 'all-in-one-seo-pack' ),
1847
 
1848
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:233
1849
- __( 'Display the sitemap on a dedicated page:', 'all-in-one-seo-pack' ),
1850
 
1851
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:239
1852
- /* Translators: 1 - Learn more link. */
1853
- __( 'Use the following shortcode to display the HTML Sitemap. %1$s', 'all-in-one-seo-pack' ),
1854
 
1855
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:247
1856
- /* Translators: 1 - Opening HTML strong tag, 2 - The plugin short name ("AIOSEO"), 3 - Closing HTML strong tag. */
1857
- __( 'To add this block, edit a page or post and search for the %1$s"%2$s - HTML Sitemap"%3$s block.', 'all-in-one-seo-pack' ),
1858
 
1859
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:257
1860
- /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - Opening HTML strong tag, 4 - The plugin short name ("AIOSEO"), 5 - Closing HTML strong tag, 6 - "Learn More" link. */
1861
- __( 'To add this widget, visit the %1$swidgets page%2$s and look for the %3$s"%4$s - HTML Sitemap"%5$s widget.', 'all-in-one-seo-pack' ),
1862
 
1863
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:268
1864
- /* Translators: 1 - Learn more link. */
1865
- __( 'Use the following PHP code anywhere in your theme to display the sitemap. %1$s', 'all-in-one-seo-pack' ),
1866
 
1867
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:276
1868
- __( 'HTML Sitemap Settings', 'all-in-one-seo-pack' ),
1869
 
1870
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:277
1871
- __( 'Using the custom-built tools below, you can add an HTML sitemap to your website and help visitors discover all your content. Adding an HTML sitemap to your website may also help search engines find your content more easily.', 'all-in-one-seo-pack' ),
 
1872
 
1873
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:139
1874
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:278
1875
- __( 'Display HTML Sitemap', 'all-in-one-seo-pack' ),
1876
 
1877
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:123
1878
- __( 'Sort Order', 'all-in-one-seo-pack' ),
1879
 
1880
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:124
1881
- __( 'Sort Direction', 'all-in-one-seo-pack' ),
1882
 
1883
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:287
1884
- __( 'Publication Date', 'all-in-one-seo-pack' ),
1885
 
1886
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:288
1887
- __( 'This setting only applies to posts and pages.', 'all-in-one-seo-pack' ),
1888
 
1889
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:122
1890
- __( 'Compact Archives', 'all-in-one-seo-pack' ),
1891
 
1892
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:292
1893
- /* Translators: 1 - "Learn More" link. */
1894
- __( 'This setting allows you to toggle between the regular sitemap or the compact date archive sitemap. %1$s', 'all-in-one-seo-pack' ),
1895
 
1896
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:15
1897
- __( 'Last IP', 'all-in-one-seo-pack' ),
1898
 
1899
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:16
1900
- __( 'Headers', 'all-in-one-seo-pack' ),
1901
 
1902
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:17
1903
- __( 'at', 'all-in-one-seo-pack' ),
1904
 
1905
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:18
1906
- __( 'Additional Info', 'all-in-one-seo-pack' ),
1907
 
1908
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:20
1909
- __( 'Are you sure you want to delete this record?', 'all-in-one-seo-pack' ),
1910
 
1911
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:22
1912
- __( 'Yes, I want to delete this record', 'all-in-one-seo-pack' ),
1913
 
1914
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:24
1915
- __( 'URL', 'all-in-one-seo-pack' ),
1916
 
1917
- // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:26
1918
- __( 'Last Accessed', 'all-in-one-seo-pack' ),
 
1919
 
1920
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:108
1921
- // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:133
1922
- __( 'Address', 'all-in-one-seo-pack' ),
1923
 
1924
- // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:102
1925
- __( 'Fax Number', 'all-in-one-seo-pack' ),
1926
 
1927
- // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:103
1928
- __( 'Email Address', 'all-in-one-seo-pack' ),
1929
 
1930
- // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:104
1931
- __( 'Show VAT ID', 'all-in-one-seo-pack' ),
1932
 
1933
- // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:105
1934
- __( 'Show Tax ID', 'all-in-one-seo-pack' ),
1935
 
1936
- // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:106
1937
- __( 'Phone/Fax Country Code', 'all-in-one-seo-pack' ),
1938
 
1939
- // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:96
1940
- __( 'Show labels', 'all-in-one-seo-pack' ),
1941
 
1942
- // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:97
1943
- __( 'Show icons', 'all-in-one-seo-pack' ),
 
1944
 
1945
- // Reference: src/vue/components/common/wizard/CloseAndExit.vue:14
1946
- __( 'Close and Exit Wizard Without Saving', 'all-in-one-seo-pack' ),
 
1947
 
1948
- // Reference: src/vue/components/common/Cta.vue:236
1949
- /* Translators: 1 - "Pro". */
1950
- __( 'Upgrade to %1$s', 'all-in-one-seo-pack' ),
1951
 
1952
- // Reference: src/vue/components/common/Cta.vue:238
1953
- /* Translators: 1 - The plugin name ("All in One SEO"). */
1954
- __( 'This feature is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
1955
 
1956
- // Reference: src/vue/components/common/Cta.vue:241
1957
- __( 'Learn more about all features', 'all-in-one-seo-pack' ),
1958
 
1959
- // Reference: src/vue/components/common/Cta.vue:242
1960
- __( 'See all features', 'all-in-one-seo-pack' ),
1961
 
1962
- // Reference: src/vue/components/common/wizard/Steps.vue:15
1963
- /* Translators: 1 - The current step count. 2 - The total step count. */
1964
- __( 'Step %1$s of %2$s', 'all-in-one-seo-pack' ),
1965
 
1966
- // Reference: src/vue/pages/local-seo/router/paths.js:28
1967
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:293
1968
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:306
1969
- __( 'Opening Hours', 'all-in-one-seo-pack' ),
1970
 
1971
- // Reference: src/vue/pages/local-seo/router/paths.js:37
1972
- __( 'Maps', 'all-in-one-seo-pack' ),
1973
 
1974
- // Reference: src/vue/pages/post-settings/views/Main.vue:59
1975
- __( 'Preview Snippet Editor', 'all-in-one-seo-pack' ),
1976
 
1977
- // Reference: src/vue/plugins/constants.js:1049
1978
- __( 'Manually Enter Type', 'all-in-one-seo-pack' ),
 
1979
 
1980
- // Reference: src/vue/plugins/constants.js:1051
1981
- __( 'Technical Support', 'all-in-one-seo-pack' ),
1982
 
1983
- // Reference: src/vue/plugins/constants.js:1052
1984
- __( 'Billing Support', 'all-in-one-seo-pack' ),
1985
 
1986
- // Reference: src/vue/plugins/constants.js:1053
1987
- __( 'Bill Payment', 'all-in-one-seo-pack' ),
1988
 
1989
- // Reference: src/vue/plugins/constants.js:1054
1990
- __( 'Sales', 'all-in-one-seo-pack' ),
1991
 
1992
- // Reference: src/vue/plugins/constants.js:1055
1993
- __( 'Reservations', 'all-in-one-seo-pack' ),
1994
 
1995
- // Reference: src/vue/plugins/constants.js:1056
1996
- __( 'Credit Card Support', 'all-in-one-seo-pack' ),
1997
 
1998
- // Reference: src/vue/plugins/constants.js:1057
1999
- __( 'Emergency', 'all-in-one-seo-pack' ),
2000
 
2001
- // Reference: src/vue/plugins/constants.js:1058
2002
- __( 'Bagage Tracking', 'all-in-one-seo-pack' ),
2003
 
2004
- // Reference: src/vue/plugins/constants.js:1059
2005
- __( 'Roadside Assistance', 'all-in-one-seo-pack' ),
2006
 
2007
- // Reference: src/vue/plugins/constants.js:1060
2008
- __( 'Package Tracking', 'all-in-one-seo-pack' ),
 
2009
 
2010
- // Reference: src/vue/plugins/constants.js:1067
2011
- __( 'Sitemaps are a list of all your content that search engines use when they crawl your site.', 'all-in-one-seo-pack' ),
 
2012
 
2013
- // Reference: src/vue/plugins/constants.js:1077
2014
- __( 'Optimized Search Appearance', 'all-in-one-seo-pack' ),
 
2015
 
2016
- // Reference: src/vue/plugins/constants.js:1078
2017
- __( 'Get all the right tools to make sure your website shows up in Google Search.', 'all-in-one-seo-pack' ),
 
2018
 
2019
- // Reference: src/vue/plugins/constants.js:1086
2020
- __( 'Get the #1 analytics plugin to see how people find and use your website. Simply put, see stats that matter.', 'all-in-one-seo-pack' ),
 
2021
 
2022
- // Reference: src/vue/plugins/constants.js:1102
2023
- __( 'Globally control Title and Alt attributes for attachment pages and images that are embedded in your content.', 'all-in-one-seo-pack' ),
2024
 
2025
- // Reference: src/vue/plugins/constants.js:1110
2026
- __( 'Tell Google about your business for display as a Knowledge Graph card or business carousel.', 'all-in-one-seo-pack' ),
2027
 
2028
- // Reference: src/vue/plugins/constants.js:1118
2029
- __( 'Generate an XML Sitemap specifically for video content on your site.', 'all-in-one-seo-pack' ),
2030
 
2031
- // Reference: src/vue/plugins/constants.js:1126
2032
- __( 'Submit articles to Google News that were published in the last 48 hours.', 'all-in-one-seo-pack' ),
2033
 
2034
- // Reference: src/vue/plugins/constants.js:1133
2035
- __( 'Smart Redirects + 404 Detection', 'all-in-one-seo-pack' ),
2036
 
2037
- // Reference: src/vue/plugins/constants.js:1134
2038
- __( 'Create and manage redirects for your broken links.', 'all-in-one-seo-pack' ),
2039
 
2040
- // Reference: src/vue/plugins/constants.js:1141
2041
- __( 'Internal Link Building Assistant', 'all-in-one-seo-pack' ),
2042
 
2043
- // Reference: src/vue/plugins/constants.js:1149
2044
- __( 'Advanced Rich Snippets + Schema Markups', 'all-in-one-seo-pack' ),
2045
 
2046
- // Reference: src/vue/plugins/constants.js:1160
2047
- __( 'Activities', 'all-in-one-seo-pack' ),
2048
 
2049
- // Reference: src/vue/plugins/constants.js:1162
2050
- __( 'Activity', 'all-in-one-seo-pack' ),
2051
 
2052
- // Reference: src/vue/plugins/constants.js:1163
2053
- __( 'Sport', 'all-in-one-seo-pack' ),
2054
 
2055
- // Reference: src/vue/plugins/constants.js:1167
2056
- __( 'Businesses', 'all-in-one-seo-pack' ),
 
2057
 
2058
- // Reference: src/vue/plugins/constants.js:1169
2059
- __( 'Bar', 'all-in-one-seo-pack' ),
 
2060
 
2061
- // Reference: src/vue/plugins/constants.js:1170
2062
- __( 'Company', 'all-in-one-seo-pack' ),
2063
 
2064
- // Reference: src/vue/plugins/constants.js:1171
2065
- __( 'Cafe', 'all-in-one-seo-pack' ),
2066
 
2067
- // Reference: src/vue/plugins/constants.js:1172
2068
- __( 'Hotel', 'all-in-one-seo-pack' ),
2069
 
2070
- // Reference: src/vue/plugins/constants.js:1173
2071
- __( 'Restaurant', 'all-in-one-seo-pack' ),
2072
 
2073
- // Reference: src/vue/plugins/constants.js:1177
2074
- __( 'Groups', 'all-in-one-seo-pack' ),
 
2075
 
2076
- // Reference: src/vue/plugins/constants.js:1180
2077
- /* Translators: This refers to a charity/non-profit organization. */
2078
- __( 'Cause', 'all-in-one-seo-pack' ),
2079
 
2080
- // Reference: src/vue/plugins/constants.js:1181
2081
- __( 'Sports League', 'all-in-one-seo-pack' ),
 
2082
 
2083
- // Reference: src/vue/plugins/constants.js:1182
2084
- __( 'Sports Team', 'all-in-one-seo-pack' ),
 
2085
 
2086
- // Reference: src/vue/plugins/constants.js:1186
2087
- __( 'Organizations', 'all-in-one-seo-pack' ),
 
2088
 
2089
- // Reference: src/vue/plugins/constants.js:1189
2090
- /* Translators: This refers to a music group. */
2091
- __( 'Band', 'all-in-one-seo-pack' ),
2092
 
2093
- // Reference: src/vue/plugins/constants.js:1190
2094
- __( 'Non-Profit', 'all-in-one-seo-pack' ),
 
2095
 
2096
- // Reference: src/vue/plugins/constants.js:1191
2097
- __( 'School', 'all-in-one-seo-pack' ),
2098
 
2099
- // Reference: src/vue/plugins/constants.js:1192
2100
- __( 'University', 'all-in-one-seo-pack' ),
2101
 
2102
- // Reference: src/vue/plugins/constants.js:1196
2103
- __( 'People', 'all-in-one-seo-pack' ),
2104
 
2105
- // Reference: src/vue/plugins/constants.js:1198
2106
- __( 'Actor', 'all-in-one-seo-pack' ),
2107
 
2108
- // Reference: src/vue/plugins/constants.js:1199
2109
- __( 'Athlete', 'all-in-one-seo-pack' ),
2110
 
2111
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:19
2112
- __( 'Author', 'all-in-one-seo-pack' ),
2113
 
2114
- // Reference: src/vue/plugins/constants.js:1201
2115
- __( 'Director', 'all-in-one-seo-pack' ),
2116
 
2117
- // Reference: src/vue/plugins/constants.js:1202
2118
- __( 'Musician', 'all-in-one-seo-pack' ),
2119
 
2120
- // Reference: src/vue/plugins/constants.js:1203
2121
- __( 'Politician', 'all-in-one-seo-pack' ),
2122
 
2123
- // Reference: src/vue/plugins/constants.js:1204
2124
- __( 'Profile', 'all-in-one-seo-pack' ),
2125
 
2126
- // Reference: src/vue/plugins/constants.js:1205
2127
- __( 'Public Figure', 'all-in-one-seo-pack' ),
 
 
2128
 
2129
- // Reference: src/vue/plugins/constants.js:1209
2130
- __( 'Places', 'all-in-one-seo-pack' ),
2131
 
2132
- // Reference: src/vue/plugins/constants.js:1211
2133
- __( 'City', 'all-in-one-seo-pack' ),
 
2134
 
2135
- // Reference: src/vue/plugins/constants.js:1212
2136
- __( 'Country', 'all-in-one-seo-pack' ),
2137
 
2138
- // Reference: src/vue/plugins/constants.js:1213
2139
- __( 'Landmark', 'all-in-one-seo-pack' ),
2140
 
2141
- // Reference: src/vue/plugins/constants.js:1214
2142
- __( 'State/Province', 'all-in-one-seo-pack' ),
2143
 
2144
- // Reference: src/vue/plugins/constants.js:1218
2145
- __( 'Products & Entertainment', 'all-in-one-seo-pack' ),
2146
 
2147
- // Reference: src/vue/plugins/constants.js:1220
2148
- __( 'Album', 'all-in-one-seo-pack' ),
 
2149
 
2150
- // Reference: src/vue/plugins/constants.js:1221
2151
- __( 'Book', 'all-in-one-seo-pack' ),
 
2152
 
2153
- // Reference: src/vue/plugins/constants.js:1222
2154
- __( 'Drink', 'all-in-one-seo-pack' ),
 
2155
 
2156
- // Reference: src/vue/plugins/constants.js:1223
2157
- __( 'Food', 'all-in-one-seo-pack' ),
 
2158
 
2159
- // Reference: src/vue/plugins/constants.js:1224
2160
- __( 'Game', 'all-in-one-seo-pack' ),
2161
 
2162
- // Reference: src/vue/plugins/constants.js:1225
2163
- __( 'Movie', 'all-in-one-seo-pack' ),
2164
 
2165
- // Reference: src/vue/plugins/constants.js:1226
2166
- __( 'Product', 'all-in-one-seo-pack' ),
 
2167
 
2168
- // Reference: src/vue/plugins/constants.js:1227
2169
- __( 'Song', 'all-in-one-seo-pack' ),
 
2170
 
2171
- // Reference: src/vue/plugins/constants.js:1228
2172
- __( 'TV Show', 'all-in-one-seo-pack' ),
2173
 
2174
- // Reference: src/vue/plugins/constants.js:1229
2175
- __( 'Episode', 'all-in-one-seo-pack' ),
 
2176
 
2177
- // Reference: src/vue/plugins/constants.js:1233
2178
- __( 'Websites', 'all-in-one-seo-pack' ),
 
2179
 
2180
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:73
2181
- __( 'Article', 'all-in-one-seo-pack' ),
 
2182
 
2183
- // Reference: src/vue/plugins/constants.js:1236
2184
- __( 'Website', 'all-in-one-seo-pack' ),
 
2185
 
2186
- // Reference: src/vue/plugins/constants.js:1286
2187
- __( 'Ignore all parameters', 'all-in-one-seo-pack' ),
2188
-
2189
- // Reference: src/vue/plugins/constants.js:1287
2190
- __( 'Exact match all parameters in any order', 'all-in-one-seo-pack' ),
2191
 
2192
- // Reference: src/vue/plugins/constants.js:1288
2193
- __( 'Ignore & pass parameters to the target', 'all-in-one-seo-pack' ),
2194
 
2195
- // Reference: src/vue/plugins/constants.js:1289
2196
- __( 'Ignore all parameters except UTM', 'all-in-one-seo-pack' ),
2197
 
2198
- // Reference: src/vue/plugins/constants.js:1293
2199
- __( 'Manual Redirects', 'all-in-one-seo-pack' ),
2200
 
2201
- // Reference: src/vue/plugins/constants.js:1294
2202
- __( 'Modified Posts', 'all-in-one-seo-pack' ),
2203
 
2204
- // Reference: src/vue/plugins/constants.js:1295
2205
- __( '404 Redirects', 'all-in-one-seo-pack' ),
2206
 
2207
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:134
2208
- __( 'default', 'all-in-one-seo-pack' ),
2209
 
2210
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:135
2211
- __( 'Animal Shelter', 'all-in-one-seo-pack' ),
2212
 
2213
- // Reference: src/vue/plugins/constants.js:1301
2214
- __( 'Archive Organization', 'all-in-one-seo-pack' ),
2215
 
2216
- // Reference: src/vue/plugins/constants.js:1302
2217
- __( 'Automotive Business', 'all-in-one-seo-pack' ),
2218
 
2219
- // Reference: src/vue/plugins/constants.js:1303
2220
- __( 'Childcare', 'all-in-one-seo-pack' ),
2221
 
2222
- // Reference: src/vue/plugins/constants.js:1304
2223
- __( 'Dentist', 'all-in-one-seo-pack' ),
2224
 
2225
- // Reference: src/vue/plugins/constants.js:1305
2226
- __( 'Dry Cleaning/Laundry', 'all-in-one-seo-pack' ),
2227
 
2228
- // Reference: src/vue/plugins/constants.js:1306
2229
- __( 'Emergency Service', 'all-in-one-seo-pack' ),
 
2230
 
2231
- // Reference: src/vue/plugins/constants.js:1307
2232
- __( 'Employment Agency', 'all-in-one-seo-pack' ),
 
2233
 
2234
- // Reference: src/vue/plugins/constants.js:1308
2235
- __( 'Entertainment Business', 'all-in-one-seo-pack' ),
2236
 
2237
- // Reference: src/vue/plugins/constants.js:1309
2238
- __( 'Financial Service', 'all-in-one-seo-pack' ),
 
2239
 
2240
- // Reference: src/vue/plugins/constants.js:1310
2241
- __( 'Food Establishment', 'all-in-one-seo-pack' ),
2242
 
2243
- // Reference: src/vue/plugins/constants.js:1311
2244
- __( 'Government Office', 'all-in-one-seo-pack' ),
 
2245
 
2246
- // Reference: src/vue/plugins/constants.js:1312
2247
- __( 'Health & Beauty Business', 'all-in-one-seo-pack' ),
2248
 
2249
- // Reference: src/vue/plugins/constants.js:1313
2250
- __( 'Home & Construction Business', 'all-in-one-seo-pack' ),
 
2251
 
2252
- // Reference: src/vue/plugins/constants.js:1314
2253
- __( 'Internet Cafe', 'all-in-one-seo-pack' ),
2254
 
2255
- // Reference: src/vue/plugins/constants.js:1315
2256
- __( 'Legal Service', 'all-in-one-seo-pack' ),
 
2257
 
2258
- // Reference: src/vue/plugins/constants.js:1316
2259
- __( 'Library', 'all-in-one-seo-pack' ),
2260
 
2261
- // Reference: src/vue/plugins/constants.js:1317
2262
- __( 'Lodging Business', 'all-in-one-seo-pack' ),
 
2263
 
2264
- // Reference: src/vue/plugins/constants.js:1318
2265
- __( 'Medical Business', 'all-in-one-seo-pack' ),
 
2266
 
2267
- // Reference: src/vue/plugins/constants.js:1319
2268
- __( 'Professional Service', 'all-in-one-seo-pack' ),
2269
 
2270
- // Reference: src/vue/plugins/constants.js:1320
2271
- __( 'Radio Station', 'all-in-one-seo-pack' ),
2272
 
2273
- // Reference: src/vue/plugins/constants.js:1321
2274
- __( 'Real Estate Agent', 'all-in-one-seo-pack' ),
2275
 
2276
- // Reference: src/vue/plugins/constants.js:1322
2277
- __( 'Recycling Center', 'all-in-one-seo-pack' ),
2278
 
2279
- // Reference: src/vue/plugins/constants.js:1323
2280
- __( 'Self Storage', 'all-in-one-seo-pack' ),
2281
 
2282
- // Reference: src/vue/plugins/constants.js:1324
2283
- __( 'Shopping Center', 'all-in-one-seo-pack' ),
2284
 
2285
- // Reference: src/vue/plugins/constants.js:1325
2286
- __( 'Sports Activity Location', 'all-in-one-seo-pack' ),
2287
 
2288
- // Reference: src/vue/plugins/constants.js:1326
2289
- __( 'Store', 'all-in-one-seo-pack' ),
2290
 
2291
- // Reference: src/vue/plugins/constants.js:1327
2292
- __( 'Television Station', 'all-in-one-seo-pack' ),
2293
 
2294
- // Reference: src/vue/plugins/constants.js:1328
2295
- __( 'Tourist Information Center', 'all-in-one-seo-pack' ),
2296
 
2297
- // Reference: src/vue/plugins/constants.js:1329
2298
- __( 'Travel Agency', 'all-in-one-seo-pack' ),
2299
 
2300
- // Reference: src/vue/plugins/constants.js:1404
2301
- __( 'General', 'all-in-one-seo-pack' ),
2302
 
2303
- // Reference: src/vue/plugins/constants.js:1411
2304
- __( 'CORS', 'all-in-one-seo-pack' ),
2305
 
2306
- // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:109
2307
- // Reference: src/vue/plugins/constants.js:1422
2308
- __( 'Security', 'all-in-one-seo-pack' ),
2309
 
2310
- // Reference: src/vue/plugins/constants.js:1439
2311
- __( 'Login Status', 'all-in-one-seo-pack' ),
2312
 
2313
- // Reference: src/vue/plugins/constants.js:1440
2314
- __( 'Referrer', 'all-in-one-seo-pack' ),
2315
 
2316
- // Reference: src/vue/plugins/constants.js:1441
2317
- __( 'WordPress User Roles', 'all-in-one-seo-pack' ),
2318
 
2319
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:247
2320
- __( 'User Agent', 'all-in-one-seo-pack' ),
2321
 
2322
- // Reference: src/vue/plugins/constants.js:1443
2323
- __( 'Cookie', 'all-in-one-seo-pack' ),
 
2324
 
2325
- // Reference: src/vue/plugins/constants.js:1444
2326
- __( 'IP', 'all-in-one-seo-pack' ),
 
2327
 
2328
- // Reference: src/vue/plugins/constants.js:1445
2329
- __( 'Server', 'all-in-one-seo-pack' ),
 
2330
 
2331
- // Reference: src/vue/plugins/constants.js:1446
2332
- __( 'HTTP Header', 'all-in-one-seo-pack' ),
 
2333
 
2334
- // Reference: src/vue/plugins/constants.js:1447
2335
- __( 'WordPress Filter', 'all-in-one-seo-pack' ),
2336
 
2337
- // Reference: src/vue/plugins/constants.js:1448
2338
- __( 'Locale', 'all-in-one-seo-pack' ),
 
2339
 
2340
- // Reference: src/vue/plugins/constants.js:1449
2341
- __( 'Mobile', 'all-in-one-seo-pack' ),
2342
 
2343
- // Reference: src/vue/plugins/constants.js:1450
2344
- __( 'Feeds', 'all-in-one-seo-pack' ),
 
2345
 
2346
- // Reference: src/vue/plugins/constants.js:1451
2347
- __( 'Libraries', 'all-in-one-seo-pack' ),
 
2348
 
2349
- // Reference: src/vue/plugins/constants.js:1452
2350
- __( 'Logged In', 'all-in-one-seo-pack' ),
2351
 
2352
- // Reference: src/vue/plugins/constants.js:1453
2353
- __( 'Logged Out', 'all-in-one-seo-pack' ),
 
2354
 
2355
- // Reference: src/vue/components/common/core/AdditionalPages.vue:103
2356
- // Reference: src/vue/plugins/constants.js:19
2357
- __( 'always', 'all-in-one-seo-pack' ),
2358
 
2359
- // Reference: src/vue/plugins/constants.js:20
2360
- __( 'hourly', 'all-in-one-seo-pack' ),
2361
 
2362
- // Reference: src/vue/plugins/constants.js:21
2363
- __( 'daily', 'all-in-one-seo-pack' ),
2364
 
2365
- // Reference: src/vue/plugins/constants.js:22
2366
- __( 'weekly', 'all-in-one-seo-pack' ),
 
2367
 
2368
- // Reference: src/vue/plugins/constants.js:23
2369
- __( 'monthly', 'all-in-one-seo-pack' ),
2370
 
2371
- // Reference: src/vue/plugins/constants.js:24
2372
- __( 'yearly', 'all-in-one-seo-pack' ),
2373
 
2374
- // Reference: src/vue/plugins/constants.js:25
2375
- __( 'never', 'all-in-one-seo-pack' ),
2376
 
2377
- // Reference: src/vue/plugins/constants.js:29
2378
- __( 'No', 'all-in-one-seo-pack' ),
2379
 
2380
- // Reference: src/vue/plugins/constants.js:30
2381
- __( 'Yes', 'all-in-one-seo-pack' ),
2382
 
2383
- // Reference: src/vue/plugins/constants.js:31
2384
- __( 'Off', 'all-in-one-seo-pack' ),
 
2385
 
2386
- // Reference: src/vue/plugins/constants.js:32
2387
- __( 'On', 'all-in-one-seo-pack' ),
 
2388
 
2389
- // Reference: src/vue/plugins/constants.js:33
2390
- __( 'Show', 'all-in-one-seo-pack' ),
 
2391
 
2392
- // Reference: src/vue/plugins/constants.js:34
2393
- __( 'Hide', 'all-in-one-seo-pack' ),
 
2394
 
2395
- // Reference: src/vue/plugins/constants.js:35
2396
- __( 'Learn More', 'all-in-one-seo-pack' ),
 
 
2397
 
2398
- // Reference: src/vue/plugins/constants.js:36
2399
- __( 'Disabled', 'all-in-one-seo-pack' ),
2400
 
2401
- // Reference: src/vue/plugins/constants.js:37
2402
- __( 'Enabled', 'all-in-one-seo-pack' ),
2403
 
2404
- // Reference: src/vue/plugins/constants.js:38
2405
- __( 'Preview', 'all-in-one-seo-pack' ),
2406
 
2407
- // Reference: src/vue/plugins/constants.js:39
2408
- __( 'Include', 'all-in-one-seo-pack' ),
2409
 
2410
- // Reference: src/vue/components/common/core/ExcludePosts.vue:99
2411
- __( 'Type to search...', 'all-in-one-seo-pack' ),
2412
 
2413
- // Reference: src/vue/components/common/core/ExcludePosts.vue:100
2414
- __( 'Begin typing a post ID, title or slug to search...', 'all-in-one-seo-pack' ),
2415
 
2416
- // Reference: src/vue/components/common/core/ExcludePosts.vue:101
2417
- __( 'Begin typing a term ID or name to search...', 'all-in-one-seo-pack' ),
2418
 
2419
- // Reference: src/vue/components/common/core/ExcludePosts.vue:102
2420
- __( 'No results found for your search. Try again!', 'all-in-one-seo-pack' ),
2421
 
2422
- // Reference: src/vue/components/common/core/ExcludePosts.vue:103
2423
- __( 'Clear', 'all-in-one-seo-pack' ),
2424
 
2425
- // Reference: src/vue/components/common/core/ExcludePosts.vue:104
2426
- __( 'ID', 'all-in-one-seo-pack' ),
2427
 
2428
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:140
2429
- __( 'Dedicated Page', 'all-in-one-seo-pack' ),
2430
 
2431
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:141
2432
- __( 'e.g. %1$s', 'all-in-one-seo-pack' ),
 
2433
 
2434
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:142
2435
- __( 'Open HTML Sitemap', 'all-in-one-seo-pack' ),
2436
 
2437
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:143
2438
- __( 'The page that you have entered already exists. Please enter a page with a unique slug.', 'all-in-one-seo-pack' ),
2439
 
2440
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:144
2441
- __( 'The following shortcode attributes can be used to override the default settings:', 'all-in-one-seo-pack' ),
2442
 
2443
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:145
2444
- __( 'The function accepts an associative array with the following arguments that can be used to override the default settings:', 'all-in-one-seo-pack' ),
2445
 
2446
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:147
2447
- __( 'To view the sitemap, enter a URL and save changes.', 'all-in-one-seo-pack' ),
2448
 
2449
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:148
2450
- __( 'To view the new sitemap, first save changes.', 'all-in-one-seo-pack' ),
2451
 
2452
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:153
2453
- __( 'The post types (by slug, comma-separated) that are included in the sitemap.', 'all-in-one-seo-pack' ),
2454
 
2455
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:157
2456
- __( 'The taxonomies (by slug, comma-separated) that are included in the sitemap.', 'all-in-one-seo-pack' ),
2457
 
2458
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:163
2459
- /* Translators: 1 - The default value. */
2460
- __( 'The HTML tag that is used for the label of each section. Defaults to %1$s.', 'all-in-one-seo-pack' ),
2461
 
2462
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:171
2463
- /* Translators: 1 - The default value. */
2464
- __( 'Whether the labels should be shown or not. Defaults to %1$s.', 'all-in-one-seo-pack' ),
2465
 
2466
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:181
2467
- __( 'Whether the publication date of posts should be shown.', 'all-in-one-seo-pack' ),
2468
 
2469
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:185
2470
- __( 'Whether the regular sitemap or compact date archive sitemap is output.', 'all-in-one-seo-pack' ),
2471
 
2472
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:192
2473
- /* Translators: 1 - HTML code opening tag, 2 - HTML code closing tag. */
2474
- __( 'The sort direction. The supported values are %1$s and %2$s.', 'all-in-one-seo-pack' ),
2475
 
2476
- // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:201
2477
- /* Translators: 1 - HTML code opening tag, 2 - HTML code closing tag. */
2478
- __( 'The sort order. The supported values are %1$s, %2$s, %3$s and %4$s.', 'all-in-one-seo-pack' ),
2479
 
2480
- // Reference: src/vue/components/common/core/Notification.vue:79
2481
- __( 'Dismiss', 'all-in-one-seo-pack' ),
 
2482
 
2483
- // Reference: src/vue/components/common/notifications/Review.vue:115
2484
- __( 'Yes, I love it!', 'all-in-one-seo-pack' ),
2485
 
2486
- // Reference: src/vue/components/common/notifications/Review.vue:116
2487
- __( 'Not Really...', 'all-in-one-seo-pack' ),
 
2488
 
2489
- // Reference: src/vue/components/common/notifications/Review.vue:117
2490
- __( 'Ok, you deserve it', 'all-in-one-seo-pack' ),
2491
 
2492
- // Reference: src/vue/components/common/notifications/Review.vue:118
2493
- __( 'Nope, maybe later', 'all-in-one-seo-pack' ),
2494
 
2495
- // Reference: src/vue/components/common/notifications/Review.vue:119
2496
- __( 'Give feedback', 'all-in-one-seo-pack' ),
2497
 
2498
- // Reference: src/vue/components/common/notifications/Review.vue:120
2499
- __( 'No thanks', 'all-in-one-seo-pack' ),
 
2500
 
2501
- // Reference: src/vue/components/common/notifications/Review.vue:129
2502
- __( 'That\'s Awesome!', 'all-in-one-seo-pack' ),
2503
 
2504
- // Reference: src/vue/components/common/notifications/Review.vue:131
2505
- __( 'Help us improve', 'all-in-one-seo-pack' ),
2506
 
2507
- // Reference: src/vue/components/common/notifications/Review.vue:134
2508
- /* Translators: 1 = The plugin short name ("AIOSEO") */
2509
- __( 'Are you enjoying %1$s?', 'all-in-one-seo-pack' ),
2510
 
2511
- // Reference: src/vue/components/common/notifications/Review.vue:140
2512
- __( 'Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?', 'all-in-one-seo-pack' ),
2513
 
2514
- // Reference: src/vue/components/common/notifications/Review.vue:143
2515
- /* Translators: The plugin name ("All in One SEO"). */
2516
- __( 'CEO of %1$s', 'all-in-one-seo-pack' ),
2517
 
2518
- // Reference: src/vue/components/common/notifications/Review.vue:147
2519
- /* Translators: The plugin name ("All in One SEO"). */
2520
- __( 'We\'re sorry to hear you aren\'t enjoying %1$s. We would love a chance to improve. Could you take a minute and let us know what we can do better?', 'all-in-one-seo-pack' ),
2521
 
2522
- // Reference: src/vue/components/common/core/PostTypeOptions.vue:80
2523
- __( 'Label:', 'all-in-one-seo-pack' ),
2524
 
2525
- // Reference: src/vue/components/common/core/PostTypeOptions.vue:81
2526
- __( 'Slug:', 'all-in-one-seo-pack' ),
 
 
2527
 
2528
- // Reference: src/vue/components/common/notifications/UnlicensedAddons.vue:49
2529
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Addons". */
2530
- __( '%1$s %2$s Not Configured Properly', 'all-in-one-seo-pack' ),
 
2531
 
2532
- // Reference: src/vue/components/common/notifications/UnlicensedAddons.vue:51
2533
- __( 'Upgrade', 'all-in-one-seo-pack' ),
 
 
2534
 
2535
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:57
2536
- __( 'Your Overall Site Score', 'all-in-one-seo-pack' ),
2537
 
2538
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:59
2539
- /* Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag. */
2540
- __( 'A very good score is between %1$s60 and 80%2$s.', 'all-in-one-seo-pack' ),
2541
 
2542
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:61
2543
- /* Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag. */
2544
- __( 'For best results, you should strive for %1$s70 and above%2$s.', 'all-in-one-seo-pack' ),
2545
 
2546
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:62
2547
- __( 'An error occurred while analyzing your site.', 'all-in-one-seo-pack' ),
2548
 
2549
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:64
2550
- // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:76
2551
- __( 'Warnings', 'all-in-one-seo-pack' ),
2552
 
2553
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:68
2554
- __( 'Read the Ultimate WordPress SEO Guide', 'all-in-one-seo-pack' ),
2555
 
2556
- // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:131
2557
- __( 'The URL provided is invalid.', 'all-in-one-seo-pack' ),
2558
 
2559
- // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:135
2560
- __( 'We were unable to parse the content for this site.', 'all-in-one-seo-pack' ),
2561
 
2562
- // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:140
2563
- /* Translators: 1 - The plugin short name ('AIOSEO'). */
2564
- __( 'Your site is not connected. Please connect to %1$s, then try again.', 'all-in-one-seo-pack' ),
2565
 
2566
- // Reference: src/vue/pages/post-settings/views/ModalContent.vue:41
2567
- __( 'Modal Content', 'all-in-one-seo-pack' ),
2568
 
2569
- // Reference: src/vue/pages/post-settings/views/Social.vue:60
2570
- __( 'Social', 'all-in-one-seo-pack' ),
2571
 
2572
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:71
2573
- __( 'Snippet Preview', 'all-in-one-seo-pack' ),
2574
 
2575
- // Reference: src/vue/pages/post-settings/views/General.vue:284
2576
- __( 'Snippet Preview content here.', 'all-in-one-seo-pack' ),
2577
 
2578
- // Reference: src/vue/pages/post-settings/views/General.vue:285
2579
- __( 'Edit Snippet', 'all-in-one-seo-pack' ),
2580
 
2581
- // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:145
2582
- __( 'Click on the tags below to insert variables into your title.', 'all-in-one-seo-pack' ),
2583
 
2584
- // Reference: src/vue/pages/post-settings/views/General.vue:289
2585
- __( 'Pillar Content', 'all-in-one-seo-pack' ),
2586
 
2587
- // Reference: src/vue/pages/post-settings/views/General.vue:290
2588
- __( 'Cornerstone content should be the most important and extensive articles on your site.', 'all-in-one-seo-pack' ),
2589
 
2590
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:97
2591
- __( 'Focus Keyphrase', 'all-in-one-seo-pack' ),
2592
 
2593
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:74
2594
- __( 'Additional Keyphrases', 'all-in-one-seo-pack' ),
2595
 
2596
- // Reference: src/vue/pages/post-settings/views/General.vue:293
2597
- __( 'Page Analysis', 'all-in-one-seo-pack' ),
2598
 
2599
- // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:106
2600
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:36
2601
- __( 'Basic SEO', 'all-in-one-seo-pack' ),
2602
 
2603
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:698
2604
- __( 'Title', 'all-in-one-seo-pack' ),
2605
 
2606
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:92
2607
- __( 'Readability', 'all-in-one-seo-pack' ),
2608
 
2609
- // Reference: src/vue/pages/post-settings/views/General.vue:297
2610
- __( 'Looking for meta keywords? Click on the advanced tab above to add/edit meta keywords.', 'all-in-one-seo-pack' ),
2611
 
2612
- // Reference: src/vue/pages/post-settings/views/General.vue:299
2613
- /* Translators: 1 - "Learn more link". */
2614
- __( 'Not sure what keyphrases are used for? Check out our documentation for more information. %1$s', 'all-in-one-seo-pack' ),
2615
 
2616
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:125
2617
- // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:163
2618
- /* Translators: 1 - The type of page (Post, Page, Category, Tag, etc.). */
2619
- __( '%1$s Title', 'all-in-one-seo-pack' ),
2620
 
2621
- // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:68
2622
- __( 'Refresh Results', 'all-in-one-seo-pack' ),
2623
 
2624
- // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:81
2625
- __( 'Mobile Snapshot', 'all-in-one-seo-pack' ),
2626
 
2627
  // Reference: src/vue/pages/post-settings/views/Advanced.vue:114
2628
  __( 'Robots Setting', 'all-in-one-seo-pack' ),
2629
 
2630
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:47
2631
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:114
2632
- __( 'Use Default Settings', 'all-in-one-seo-pack' ),
2633
-
2634
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:72
2635
- __( 'Canonical URL', 'all-in-one-seo-pack' ),
2636
-
2637
  // Reference: src/vue/pages/post-settings/views/Advanced.vue:117
2638
  __( 'Enter a URL to change the default Canonical URL', 'all-in-one-seo-pack' ),
2639
 
2640
- // Reference: src/vue/components/common/core/AdditionalPages.vue:98
2641
- // Reference: src/vue/pages/post-settings/views/Advanced.vue:119
2642
- __( 'Priority', 'all-in-one-seo-pack' ),
2643
 
2644
- // Reference: src/vue/components/common/core/AdditionalPages.vue:99
2645
- // Reference: src/vue/pages/post-settings/views/Advanced.vue:120
2646
- __( 'Frequency', 'all-in-one-seo-pack' ),
 
2647
 
2648
  // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:442
2649
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:112
2650
  __( 'Keywords', 'all-in-one-seo-pack' ),
2651
 
2652
  // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:443
2653
  __( 'Press enter to create a keyword', 'all-in-one-seo-pack' ),
2654
 
2655
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:105
2656
- // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:56
2657
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:124
2658
- // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:138
2659
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:696
2660
- __( 'Image', 'all-in-one-seo-pack' ),
2661
 
2662
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:107
2663
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:123
2664
- // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:132
2665
- __( 'URLs', 'all-in-one-seo-pack' ),
2666
 
2667
- // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:114
2668
- __( 'Website URL', 'all-in-one-seo-pack' ),
2669
 
2670
- // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:115
2671
- __( 'About Page URL', 'all-in-one-seo-pack' ),
2672
 
2673
- // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:116
2674
- __( 'Contact Page URL', 'all-in-one-seo-pack' ),
2675
 
2676
- // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:54
2677
- // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:134
2678
- __( 'Contact Info', 'all-in-one-seo-pack' ),
2679
 
2680
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:109
2681
- // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:135
2682
- __( 'IDs', 'all-in-one-seo-pack' ),
2683
 
2684
- // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:55
2685
- // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:136
2686
- __( 'Payment Info', 'all-in-one-seo-pack' ),
2687
 
2688
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:110
2689
- // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:137
2690
- __( 'Area Served', 'all-in-one-seo-pack' ),
2691
 
2692
- // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:139
2693
- __( 'Map', 'all-in-one-seo-pack' ),
2694
 
2695
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:306
2696
- // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:51
2697
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:232
2698
- __( 'Select your timezone', 'all-in-one-seo-pack' ),
2699
 
2700
- // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:172
2701
- __( 'Use Defaults', 'all-in-one-seo-pack' ),
 
2702
 
2703
- // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:173
2704
- __( 'Will default opening hours set globally', 'all-in-one-seo-pack' ),
 
2705
 
2706
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:276
2707
- // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:50
2708
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:219
2709
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:295
2710
- __( 'Show Opening Hours', 'all-in-one-seo-pack' ),
2711
 
2712
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:284
2713
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:221
2714
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:297
2715
- __( 'Labels', 'all-in-one-seo-pack' ),
2716
 
2717
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:224
2718
- __( 'Displayed when the business is closed.', 'all-in-one-seo-pack' ),
2719
 
2720
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
2721
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:235
2722
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:315
2723
- __( 'Closed', 'all-in-one-seo-pack' ),
2724
 
2725
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:301
2726
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:234
2727
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:314
2728
- __( 'Open 24h', 'all-in-one-seo-pack' ),
2729
 
2730
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:227
2731
- __( 'Displayed when the business is open all day long.', 'all-in-one-seo-pack' ),
2732
 
2733
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:289
2734
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:229
2735
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:302
2736
- __( 'Open 24/7', 'all-in-one-seo-pack' ),
2737
 
2738
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:290
2739
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:230
2740
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:303
2741
- __( 'Use 24h format', 'all-in-one-seo-pack' ),
2742
 
2743
- // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:185
2744
- __( 'I have two sets of openning hours per day', 'all-in-one-seo-pack' ),
2745
 
2746
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:291
2747
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:231
2748
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:304
2749
- __( 'Timezone', 'all-in-one-seo-pack' ),
2750
 
2751
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:233
2752
- __( 'Hours', 'all-in-one-seo-pack' ),
2753
 
2754
- // Reference: src/vue/components/common/core/SiteScore.vue:45
2755
- __( 'Analyzing...', 'all-in-one-seo-pack' ),
2756
 
2757
- // Reference: src/vue/components/common/core/RobotsMeta.vue:102
2758
- __( 'Robots meta:', 'all-in-one-seo-pack' ),
2759
 
2760
- // Reference: src/vue/components/common/core/RobotsMeta.vue:103
2761
- __( 'Max Snippet', 'all-in-one-seo-pack' ),
2762
 
2763
- // Reference: src/vue/components/common/core/RobotsMeta.vue:104
2764
- __( 'Max Video Preview', 'all-in-one-seo-pack' ),
2765
 
2766
- // Reference: src/vue/components/common/core/RobotsMeta.vue:105
2767
- __( 'Max Image Preview', 'all-in-one-seo-pack' ),
2768
 
2769
- // Reference: src/vue/components/common/core/RobotsMeta.vue:106
2770
- __( 'Standard', 'all-in-one-seo-pack' ),
2771
 
2772
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:67
2773
- // Reference: src/vue/pages/settings/views/Advanced.vue:306
2774
- __( 'None', 'all-in-one-seo-pack' ),
2775
 
2776
- // Reference: src/vue/components/common/core/RobotsMeta.vue:108
2777
- __( 'Large', 'all-in-one-seo-pack' ),
2778
 
2779
- // Reference: src/vue/components/common/core/RobotsMeta.vue:87
2780
- __( 'No Index', 'all-in-one-seo-pack' ),
2781
 
2782
- // Reference: src/vue/components/common/core/RobotsMeta.vue:88
2783
- __( 'No Follow', 'all-in-one-seo-pack' ),
2784
 
2785
- // Reference: src/vue/components/common/core/RobotsMeta.vue:89
2786
- __( 'No Archive', 'all-in-one-seo-pack' ),
2787
 
2788
- // Reference: src/vue/components/common/core/RobotsMeta.vue:90
2789
- __( 'No Translate', 'all-in-one-seo-pack' ),
2790
 
2791
- // Reference: src/vue/components/common/core/RobotsMeta.vue:91
2792
- __( 'No Image Index', 'all-in-one-seo-pack' ),
2793
 
2794
- // Reference: src/vue/components/common/core/RobotsMeta.vue:92
2795
- __( 'No Snippet', 'all-in-one-seo-pack' ),
2796
 
2797
- // Reference: src/vue/components/common/core/RobotsMeta.vue:93
2798
- __( 'No ODP', 'all-in-one-seo-pack' ),
2799
 
2800
- // Reference: src/vue/components/common/core/SocialProfiles.vue:124
2801
- __( 'Your Facebook URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
2802
 
2803
- // Reference: src/vue/components/common/core/SocialProfiles.vue:135
2804
- __( 'Your Twitter URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
2805
 
2806
- // Reference: src/vue/components/common/core/SocialProfiles.vue:146
2807
- __( 'Your Instagram URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
2808
 
2809
- // Reference: src/vue/components/common/core/SocialProfiles.vue:157
2810
- __( 'Your Pinterest URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
 
2811
 
2812
- // Reference: src/vue/components/common/core/SocialProfiles.vue:168
2813
- __( 'Your YouTube URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
2814
 
2815
- // Reference: src/vue/components/common/core/SocialProfiles.vue:179
2816
- __( 'Your LinkedIn URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
2817
 
2818
- // Reference: src/vue/components/common/core/SocialProfiles.vue:190
2819
- __( 'Your Tumblr URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
2820
 
2821
- // Reference: src/vue/components/common/core/SocialProfiles.vue:201
2822
- __( 'Your Yelp URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
2823
 
2824
- // Reference: src/vue/components/common/core/SocialProfiles.vue:212
2825
- __( 'Your SoundCloud URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
2826
 
2827
- // Reference: src/vue/components/common/core/SocialProfiles.vue:223
2828
- __( 'Your Wikipedia URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
 
2829
 
2830
- // Reference: src/vue/components/common/core/SocialProfiles.vue:234
2831
- __( 'Your MySpace URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
2832
 
2833
- // Reference: src/vue/components/common/core/SocialProfiles.vue:241
2834
- __( 'Use the same username for multiple social networks', 'all-in-one-seo-pack' ),
2835
 
2836
- // Reference: src/vue/components/common/core/SocialProfiles.vue:242
2837
- __( 'Your Username:', 'all-in-one-seo-pack' ),
 
2838
 
2839
- // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:107
2840
- __( 'Advanced SEO', 'all-in-one-seo-pack' ),
2841
 
2842
- // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:108
2843
- __( 'Performance', 'all-in-one-seo-pack' ),
2844
 
2845
- // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:110
2846
- __( 'Keywords:', 'all-in-one-seo-pack' ),
2847
 
2848
- // Reference: src/vue/components/common/core/NotificationCards.vue:59
2849
- __( 'Great Scott! Where\'d they all go?', 'all-in-one-seo-pack' ),
2850
 
2851
- // Reference: src/vue/components/common/core/NotificationCards.vue:60
2852
- __( 'You have no new notifications.', 'all-in-one-seo-pack' ),
2853
 
2854
- // Reference: src/vue/components/common/core/NotificationCards.vue:61
2855
- __( 'See Dismissed Notifications', 'all-in-one-seo-pack' ),
2856
 
2857
- // Reference: src/vue/components/common/core/Notification.vue:100
2858
- __( 'a minute ago', 'all-in-one-seo-pack' ),
2859
 
2860
- // Reference: src/vue/components/common/core/Notification.vue:104
2861
- /* Translators: A number will be prepended to this string, e.g. "2 minutes ago". */
2862
- __( 'minutes ago', 'all-in-one-seo-pack' ),
2863
 
2864
- // Reference: src/vue/components/common/core/Notification.vue:106
2865
- __( 'a day ago', 'all-in-one-seo-pack' ),
2866
 
2867
- // Reference: src/vue/components/common/core/Notification.vue:110
2868
- /* Translators: A number will be prepended to this string, e.g. "2 days ago". */
2869
- __( 'days ago', 'all-in-one-seo-pack' ),
2870
 
2871
- // Reference: src/vue/components/common/core/Notification.vue:111
2872
- __( 'a month ago', 'all-in-one-seo-pack' ),
2873
 
2874
- // Reference: src/vue/components/common/core/Notification.vue:115
2875
- /* Translators: A number will be prepended to this string, e.g. "2 months ago". */
2876
- __( 'months ago', 'all-in-one-seo-pack' ),
2877
 
2878
- // Reference: src/vue/components/common/core/Notification.vue:117
2879
- __( 'a year ago', 'all-in-one-seo-pack' ),
 
2880
 
2881
- // Reference: src/vue/components/common/core/Notification.vue:121
2882
- /* Translators: A number will be prepended to this string, e.g. "2 years ago". */
2883
- __( 'years ago', 'all-in-one-seo-pack' ),
2884
 
2885
- // Reference: src/vue/components/common/core/Notification.vue:99
2886
- __( 'a few seconds ago', 'all-in-one-seo-pack' ),
2887
 
2888
- // Reference: src/vue/components/common/core/PostTypeOptions.vue:82
2889
- __( 'No post types available.', 'all-in-one-seo-pack' ),
 
2890
 
2891
- // Reference: src/vue/components/common/core/PostTypeOptions.vue:83
2892
- __( 'No taxonomies available.', 'all-in-one-seo-pack' ),
 
2893
 
2894
- // Reference: src/vue/components/common/core/PostTypeOptions.vue:84
2895
- __( 'All post types are set to noindex or your site does not have any post types registered that are supported by this feature.', 'all-in-one-seo-pack' ),
 
2896
 
2897
- // Reference: src/vue/components/common/core/PostTypeOptions.vue:85
2898
- __( 'All taxonomies are set to noindex or your site does not have any taxonomies registered that are supported by this feature.', 'all-in-one-seo-pack' ),
 
2899
 
2900
- // Reference: src/vue/components/common/core/Notifications.vue:94
2901
- __( 'Dismissed Notifications', 'all-in-one-seo-pack' ),
 
2902
 
2903
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:416
2904
- __( 'Home Page', 'all-in-one-seo-pack' ),
 
2905
 
2906
- // Reference: src/vue/components/common/core/PriorityScore.vue:67
2907
- __( 'Archive Pages', 'all-in-one-seo-pack' ),
 
2908
 
2909
- // Reference: src/vue/components/common/core/PriorityScore.vue:68
2910
- __( 'Author Pages', 'all-in-one-seo-pack' ),
 
2911
 
2912
- // Reference: src/vue/components/common/core/Main.vue:80
2913
- // Reference: src/vue/components/common/core/MainTabs.vue:161
2914
- __( 'Save Changes', 'all-in-one-seo-pack' ),
2915
 
2916
- // Reference: src/vue/components/common/core/RobotsMeta.vue:96
2917
- __( 'No Index Paginated', 'all-in-one-seo-pack' ),
2918
 
2919
- // Reference: src/vue/components/common/core/RobotsMeta.vue:97
2920
- __( 'No Follow Paginated', 'all-in-one-seo-pack' ),
2921
 
2922
- // Reference: src/vue/components/common/core/RobotsMeta.vue:98
2923
- __( 'No Index RSS Feeds', 'all-in-one-seo-pack' ),
2924
 
2925
- // Reference: src/vue/components/common/core/SettingsSeparator.vue:101
2926
- __( 'Custom separator:', 'all-in-one-seo-pack' ),
 
2927
 
2928
- // Reference: src/vue/components/common/core/SettingsSeparator.vue:102
2929
- __( 'Show More', 'all-in-one-seo-pack' ),
2930
 
2931
- // Reference: src/vue/components/common/core/SettingsSeparator.vue:103
2932
- __( 'Show Less', 'all-in-one-seo-pack' ),
2933
 
2934
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:71
2935
- __( 'Schema Type', 'all-in-one-seo-pack' ),
2936
 
2937
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:72
2938
- __( 'Article Type', 'all-in-one-seo-pack' ),
2939
 
2940
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:74
2941
- __( 'Blog Post', 'all-in-one-seo-pack' ),
2942
 
2943
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:75
2944
- __( 'News Article', 'all-in-one-seo-pack' ),
2945
 
2946
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:75
2947
- __( 'Add Additional Keyphrases', 'all-in-one-seo-pack' ),
2948
 
2949
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:76
2950
- __( 'Improve your SEO rankings with additional keyphrases.', 'all-in-one-seo-pack' ),
2951
 
2952
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:79
2953
- /* Translators: 1 - "Pro" string, 2 - "Learn more link". */
2954
- __( 'Multiple Keyphrases is a %1$s feature. %2$s', 'all-in-one-seo-pack' ),
2955
 
2956
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:81
2957
- __( 'Click here to get', 'all-in-one-seo-pack' ),
2958
 
2959
- // Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:26
2960
- __( 'Here you can view and edit the thumbnail, title and description that will be displayed when your site is shared on social media. Click on the button below to view and edit the preview.', 'all-in-one-seo-pack' ),
2961
 
2962
- // Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:27
2963
- __( 'Preview & Edit', 'all-in-one-seo-pack' ),
2964
 
2965
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:238
2966
- __( 'Facebook Preview', 'all-in-one-seo-pack' ),
2967
 
2968
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:239
2969
- __( 'Image Source', 'all-in-one-seo-pack' ),
2970
 
2971
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:240
2972
- __( 'Custom Field Name', 'all-in-one-seo-pack' ),
2973
 
2974
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:241
2975
- __( 'Video URL', 'all-in-one-seo-pack' ),
2976
 
2977
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:729
2978
- __( 'Object Type', 'all-in-one-seo-pack' ),
2979
 
2980
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:245
2981
- __( 'Facebook Image', 'all-in-one-seo-pack' ),
2982
 
2983
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:246
2984
- __( 'Facebook Title', 'all-in-one-seo-pack' ),
2985
 
2986
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:247
2987
- __( 'Facebook Description', 'all-in-one-seo-pack' ),
2988
 
2989
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:250
2990
- __( 'Minimum size: 200px x 200px, ideal ratio 1.91:1, 5MB max. (eg: 1640px x 856px or 3280px x 1712px for retina screens)', 'all-in-one-seo-pack' ),
2991
 
2992
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:700
2993
- __( 'Click on the tags below to insert variables into your site name.', 'all-in-one-seo-pack' ),
2994
 
2995
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:254
2996
- __( 'Article Section', 'all-in-one-seo-pack' ),
2997
 
2998
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:255
2999
- __( 'Article Tags', 'all-in-one-seo-pack' ),
3000
 
3001
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:256
3002
- __( 'Press enter to create an article tag', 'all-in-one-seo-pack' ),
3003
 
3004
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:264
3005
- __( 'Default', 'all-in-one-seo-pack' ),
3006
 
3007
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:264
3008
- __( 'Default Object Type (Set in Social Networks)', 'all-in-one-seo-pack' ),
3009
 
3010
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:213
3011
- __( 'Twitter Preview', 'all-in-one-seo-pack' ),
3012
 
3013
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:214
3014
- __( 'Use Data from Facebook Tab', 'all-in-one-seo-pack' ),
3015
 
3016
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:217
3017
- __( 'Twitter Image', 'all-in-one-seo-pack' ),
3018
 
3019
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:218
3020
- __( 'Twitter Title', 'all-in-one-seo-pack' ),
3021
 
3022
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:219
3023
- __( 'Twitter Description', 'all-in-one-seo-pack' ),
3024
 
3025
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:220
3026
- __( 'Twitter Card Type', 'all-in-one-seo-pack' ),
3027
 
3028
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:449
3029
- __( 'Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and GIF formats only.', 'all-in-one-seo-pack' ),
3030
 
3031
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:450
3032
- __( 'Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and GIF formats only.', 'all-in-one-seo-pack' ),
3033
 
3034
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:234
3035
- __( 'Default (Set under Social Networks)', 'all-in-one-seo-pack' ),
3036
 
3037
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:437
3038
- __( 'Summary', 'all-in-one-seo-pack' ),
 
3039
 
3040
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:438
3041
- __( 'Summary with Large Image', 'all-in-one-seo-pack' ),
3042
 
3043
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:286
3044
- /* Translators: 1 - Semrush. */
3045
- __( 'Additional Keyphrases by %1$s', 'all-in-one-seo-pack' ),
3046
 
3047
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:287
3048
- __( 'Add Focus Keyphrase', 'all-in-one-seo-pack' ),
3049
 
3050
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:288
3051
- __( 'Get Additional Keyphrases', 'all-in-one-seo-pack' ),
3052
 
3053
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:289
3054
- __( 'Show Results For:', 'all-in-one-seo-pack' ),
3055
 
3056
- // Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:8
3057
- __( 'Keyphrase', 'all-in-one-seo-pack' ),
3058
 
3059
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:291
3060
- __( 'Volume', 'all-in-one-seo-pack' ),
3061
 
3062
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:292
3063
- __( 'Trend', 'all-in-one-seo-pack' ),
3064
 
3065
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:293
3066
- __( 'Add Keyphrase', 'all-in-one-seo-pack' ),
3067
 
3068
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:294
3069
- __( 'Remove Keyphrase', 'all-in-one-seo-pack' ),
3070
 
3071
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:295
3072
- __( 'No results', 'all-in-one-seo-pack' ),
3073
 
3074
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:297
3075
- /* Translators: 1 - Plugin short name + Pro "AIOSEO Pro", 2 - Semrush, 3 - Link to learn more. */
3076
- __( 'Analyzing your content with %1$s keywords is only available to licensed %2$s users. %3$s', 'all-in-one-seo-pack' ),
3077
 
3078
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:299
3079
- /* Translators: 1 - Plugin short name "AIOSEO", 2 - Semrush. */
3080
- __( '%1$s integrates directly with %2$s to provide you with actionable keyphrases to help you write better content.', 'all-in-one-seo-pack' ),
3081
 
3082
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:300
3083
- __( 'To use this feature, first add a focus keyphrase.', 'all-in-one-seo-pack' ),
3084
 
3085
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:304
3086
- /* Translators: 1 - Semrush. */
3087
- __( 'Get Additional Keyphrases with %1$s!', 'all-in-one-seo-pack' ),
3088
 
3089
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:306
3090
- /* Translators: 1 - Opening link tag, 2 - Closing link tag, 3 - Semrush. */
3091
- __( '%1$sA valid license key is required%2$s in order to connect with %3$s.', 'all-in-one-seo-pack' ),
3092
 
3093
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:325
3094
- __( 'You have exceeded the limit for requests. Please try again later.', 'all-in-one-seo-pack' ),
3095
 
3096
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:328
3097
- __( 'An error occurred while fetching keyphrases. Please try again later.', 'all-in-one-seo-pack' ),
3098
 
3099
- // Reference: src/vue/components/common/core/Help.vue:153
3100
- __( 'Close', 'all-in-one-seo-pack' ),
3101
 
3102
- // Reference: src/vue/components/common/core/Help.vue:154
3103
- __( 'Search', 'all-in-one-seo-pack' ),
3104
 
3105
- // Reference: src/vue/components/common/core/Help.vue:155
3106
- __( 'View All', 'all-in-one-seo-pack' ),
3107
 
3108
- // Reference: src/vue/components/common/core/Help.vue:156
3109
- __( 'Docs', 'all-in-one-seo-pack' ),
3110
 
3111
- // Reference: src/vue/components/common/core/Help.vue:157
3112
- __( 'View Documentation', 'all-in-one-seo-pack' ),
3113
 
3114
- // Reference: src/vue/components/common/core/Help.vue:159
3115
- /* Translators: 1 - The plugin short name ("AIOEO"). */
3116
- __( 'Browse documentation, reference material, and tutorials for %1$s.', 'all-in-one-seo-pack' ),
3117
 
3118
- // Reference: src/vue/components/common/core/Help.vue:160
3119
- __( 'View All Documentation', 'all-in-one-seo-pack' ),
3120
 
3121
- // Reference: src/vue/components/common/core/Help.vue:161
3122
- __( 'Get Support', 'all-in-one-seo-pack' ),
 
3123
 
3124
- // Reference: src/vue/components/common/core/Help.vue:162
3125
- __( 'Submit a ticket and our world class support team will be in touch soon.', 'all-in-one-seo-pack' ),
3126
 
3127
- // Reference: src/vue/components/common/core/Help.vue:163
3128
- __( 'Submit a Support Ticket', 'all-in-one-seo-pack' ),
3129
 
3130
- // Reference: src/vue/components/common/core/FeatureCard.vue:128
3131
- // Reference: src/vue/components/common/core/Help.vue:164
3132
- __( 'Upgrade to Pro', 'all-in-one-seo-pack' ),
3133
 
3134
- // Reference: src/vue/components/common/core/HtmlTagsEditor.vue:100
3135
- __( 'Click on the tags below to insert variables into your template.', 'all-in-one-seo-pack' ),
3136
 
3137
- // Reference: src/vue/components/common/core/HtmlTagsEditor.vue:119
3138
- __( 'View all tags', 'all-in-one-seo-pack' ),
3139
 
3140
- // Reference: src/vue/components/common/core/GettingStarted.vue:83
3141
- __( 'How to Get Started', 'all-in-one-seo-pack' ),
 
3142
 
3143
- // Reference: src/vue/components/common/core/GettingStarted.vue:85
3144
- /* Translators: 1 - The plugin name ("All in One SEO"). */
3145
- __( 'Welcome to %1$s', 'all-in-one-seo-pack' ),
3146
 
3147
- // Reference: src/vue/components/common/core/GettingStarted.vue:87
3148
- /* Translators: 1 - The plugin name ("All in One SEO"). */
3149
- __( 'Thank you for choosing the best WordPress SEO plugin. %1$s default settings works great out of the box. We created the setup wizard to guide you through some important configuration settings & custom-tailored SEO best practices for your site to help you improve rankings.', 'all-in-one-seo-pack' ),
3150
 
3151
- // Reference: src/vue/components/common/core/GettingStarted.vue:88
3152
- __( 'Launch the Setup Wizard', 'all-in-one-seo-pack' ),
 
3153
 
3154
- // Reference: src/vue/components/common/core/GettingStarted.vue:89
3155
- __( 'Read the Setup Guide', 'all-in-one-seo-pack' ),
 
3156
 
3157
- // Reference: src/vue/components/common/core/FeatureCard.vue:129
3158
- __( 'Upgrade Your Plan', 'all-in-one-seo-pack' ),
3159
 
3160
- // Reference: src/vue/classes/SiteAnalysis.js:102
3161
- __( 'No keywords were found in the page title.', 'all-in-one-seo-pack' ),
 
3162
 
3163
- // Reference: src/vue/classes/SiteAnalysis.js:105
3164
- __( 'No keywords were found in your meta description.', 'all-in-one-seo-pack' ),
 
3165
 
3166
- // Reference: src/vue/classes/SiteAnalysis.js:106
3167
- __( 'No keywords were found in the meta description.', 'all-in-one-seo-pack' ),
3168
 
3169
- // Reference: src/vue/classes/SiteAnalysis.js:108
3170
- __( 'Both the page title and meta description are missing keywords.', 'all-in-one-seo-pack' ),
 
3171
 
3172
- // Reference: src/vue/classes/SiteAnalysis.js:112
3173
- __( 'One or more keywords were found in the title and description of your page.', 'all-in-one-seo-pack' ),
 
3174
 
3175
- // Reference: src/vue/classes/SiteAnalysis.js:113
3176
- __( 'One or more keywords were found in the title and description of the page.', 'all-in-one-seo-pack' ),
3177
 
3178
- // Reference: src/vue/classes/SiteAnalysis.js:129
3179
- __( 'You need to use titles and descriptions that are attractive to users and contain your keywords. Use the keywords naturally - keyword stuffing is usually detected and will result in a lower ranking. What\'s more, it\'s pretty off-putting for potential readers, who are more likely to click on an appealing link.', 'all-in-one-seo-pack' ),
 
3180
 
3181
- // Reference: src/vue/classes/SiteAnalysis.js:130
3182
- __( 'Edit Your Page Title & Description', 'all-in-one-seo-pack' ),
 
3183
 
3184
- // Reference: src/vue/classes/SiteAnalysis.js:139
3185
- __( 'No H1 tag was found.', 'all-in-one-seo-pack' ),
3186
 
3187
- // Reference: src/vue/classes/SiteAnalysis.js:142
3188
- /* Translators: 1 - The number of H1 tags found. */
3189
- __( 'For the best SEO results there should be exactly one H1 tag on each page.', 'all-in-one-seo-pack' ),
3190
 
3191
- // Reference: src/vue/classes/SiteAnalysis.js:142
3192
- /* Translators: 1 - The number of H1 tags found. */
3193
- __( '%1$d H1 tags were found.', 'all-in-one-seo-pack' ),
3194
 
3195
- // Reference: src/vue/classes/SiteAnalysis.js:147
3196
- __( 'One H1 tag was found on your page.', 'all-in-one-seo-pack' ),
3197
 
3198
- // Reference: src/vue/classes/SiteAnalysis.js:148
3199
- __( 'One H1 tag was found on the page.', 'all-in-one-seo-pack' ),
3200
 
3201
- // Reference: src/vue/classes/SiteAnalysis.js:154
3202
- __( 'WordPress sites usually insert the page or post title as an H1 tag (although custom themes can change this behavior).', 'all-in-one-seo-pack' ),
3203
-
3204
- // Reference: src/vue/classes/SiteAnalysis.js:154
3205
- __( 'Ensure your most important keywords appear in the H1 tag - don\'t force it, use them in a natural way that makes sense to human readers.', 'all-in-one-seo-pack' ),
3206
 
3207
- // Reference: src/vue/classes/SiteAnalysis.js:154
3208
- __( 'Because your headline plays a large role in reader engagement, it\'s worth spending extra time perfecting it. Many top copywriters spend hours getting their headlines just right - sometimes they spend longer on the headline than the rest of the article!', 'all-in-one-seo-pack' ),
 
3209
 
3210
- // Reference: src/vue/classes/SiteAnalysis.js:154
3211
- __( 'A good headline stimulates reader interest and offers a compelling reason to read your content. It promises a believable benefit.', 'all-in-one-seo-pack' ),
3212
 
3213
- // Reference: src/vue/classes/SiteAnalysis.js:154
3214
- __( 'You should write as if your readers are selfish people with short attention spans (because that describes a large percentage of the world\'s population). Readers visit websites for selfish reasons - they\'re not there to make you happy.', 'all-in-one-seo-pack' ),
 
3215
 
3216
- // Reference: src/vue/classes/SiteAnalysis.js:165
3217
- __( 'No H2 tags were found on your page.', 'all-in-one-seo-pack' ),
3218
 
3219
- // Reference: src/vue/classes/SiteAnalysis.js:166
3220
- __( 'No H2 tags were found on the page.', 'all-in-one-seo-pack' ),
 
3221
 
3222
- // Reference: src/vue/classes/SiteAnalysis.js:170
3223
- __( 'H2 tags were found on your page.', 'all-in-one-seo-pack' ),
3224
 
3225
- // Reference: src/vue/classes/SiteAnalysis.js:171
3226
- __( 'H2 tags were found on the page.', 'all-in-one-seo-pack' ),
 
3227
 
3228
- // Reference: src/vue/classes/SiteAnalysis.js:177
3229
- __( 'Make sure you have a good balance of H2 tags to plain text in your content. Break the content down into logical sections, and use headings to introduce each new topic.', 'all-in-one-seo-pack' ),
3230
 
3231
- // Reference: src/vue/classes/SiteAnalysis.js:177
3232
- __( 'Also, try to include synonyms and relevant terminology in H2 tag text. Search engines are pretty smart - they know which words usually occur together in each niche.', 'all-in-one-seo-pack' ),
 
3233
 
3234
- // Reference: src/vue/classes/SiteAnalysis.js:177
3235
- __( 'It should be easy to include your main and supporting keywords in the H2 tags - after all, these keywords describe your content! If it\'s hard to work the keywords into your subheadings, it could be a sign that the keywords aren\'t closely related to your content.', 'all-in-one-seo-pack' ),
3236
 
3237
- // Reference: src/vue/classes/SiteAnalysis.js:177
3238
- __( 'Don\'t try to force keywords into sub-headings if they feel unnatural. It will send the wrong message to your readers, possibly driving them away.', 'all-in-one-seo-pack' ),
 
3239
 
3240
- // Reference: src/vue/classes/SiteAnalysis.js:188
3241
- __( 'Some images on your page have no alt attribute.', 'all-in-one-seo-pack' ),
3242
 
3243
- // Reference: src/vue/classes/SiteAnalysis.js:189
3244
- __( 'Some images on the page have no alt attribute.', 'all-in-one-seo-pack' ),
 
3245
 
3246
- // Reference: src/vue/classes/SiteAnalysis.js:193
3247
- __( 'All images on your page have alt attributes.', 'all-in-one-seo-pack' ),
3248
 
3249
- // Reference: src/vue/classes/SiteAnalysis.js:194
3250
- __( 'All images on the page have alt attributes.', 'all-in-one-seo-pack' ),
 
3251
 
3252
- // Reference: src/vue/classes/SiteAnalysis.js:200
3253
- __( 'Make sure every image has an alt tag, and add useful descriptions to each image. Add your keywords or synonyms - but do it in a natural way.', 'all-in-one-seo-pack' ),
3254
 
3255
- // Reference: src/vue/classes/SiteAnalysis.js:211
3256
- __( 'No internal links were found on your page.', 'all-in-one-seo-pack' ),
 
3257
 
3258
- // Reference: src/vue/classes/SiteAnalysis.js:212
3259
- __( 'No internal links were found on the page.', 'all-in-one-seo-pack' ),
3260
 
3261
- // Reference: src/vue/classes/SiteAnalysis.js:215
3262
- __( 'Too few internal links on your page.', 'all-in-one-seo-pack' ),
 
3263
 
3264
- // Reference: src/vue/classes/SiteAnalysis.js:216
3265
- __( 'Too few internal links on the page.', 'all-in-one-seo-pack' ),
3266
 
3267
- // Reference: src/vue/classes/SiteAnalysis.js:218
3268
- __( 'The ratio of internal links to external links is uneven.', 'all-in-one-seo-pack' ),
 
3269
 
3270
- // Reference: src/vue/classes/SiteAnalysis.js:222
3271
- __( 'Your page has a correct number of internal and external links.', 'all-in-one-seo-pack' ),
3272
 
3273
- // Reference: src/vue/classes/SiteAnalysis.js:223
3274
- __( 'The page has a correct number of internal and external links.', 'all-in-one-seo-pack' ),
3275
 
3276
- // Reference: src/vue/classes/SiteAnalysis.js:228
3277
- __( 'Internal:', 'all-in-one-seo-pack' ),
3278
 
3279
- // Reference: src/vue/classes/SiteAnalysis.js:228
3280
- __( 'External:', 'all-in-one-seo-pack' ),
3281
 
3282
- // Reference: src/vue/classes/SiteAnalysis.js:229
3283
- __( 'Add links to external resources that are useful for your readers. Make sure you link to high-quality sites - Google penalizes pages that link to "spammy" sites (ones that break the Google webmaster guidelines).', 'all-in-one-seo-pack' ),
3284
 
3285
- // Reference: src/vue/classes/SiteAnalysis.js:229
3286
- __( 'Ideally, the links should be highly relevant to the subject you\'re writing about. It\'s impossible to cover every aspect of a subject on a single page, but your readers may be fascinated by some detail you barely touch on. If you link to a resource where they can learn more, they\'ll be grateful. What\'s more, you\'ll be rewarded with higher rankings!', 'all-in-one-seo-pack' ),
3287
 
3288
- // Reference: src/vue/classes/SiteAnalysis.js:240
3289
- __( 'No canonical link tag found on your page.', 'all-in-one-seo-pack' ),
3290
 
3291
- // Reference: src/vue/classes/SiteAnalysis.js:241
3292
- __( 'No canonical link tag found on the page.', 'all-in-one-seo-pack' ),
3293
 
3294
- // Reference: src/vue/classes/SiteAnalysis.js:245
3295
- __( 'Your page is using the canonical link tag.', 'all-in-one-seo-pack' ),
3296
 
3297
- // Reference: src/vue/classes/SiteAnalysis.js:246
3298
- __( 'The page is using the canonical link tag.', 'all-in-one-seo-pack' ),
3299
 
3300
- // Reference: src/vue/classes/SiteAnalysis.js:252
3301
- __( 'Every page on your site should have a <link> tag with a \'rel="canonical"\' attribute. The link tag should go inside the page\'s head tag, and it should contain the page\'s "correct" URL.', 'all-in-one-seo-pack' ),
 
3302
 
3303
- // Reference: src/vue/classes/SiteAnalysis.js:252
3304
- __( 'If you\'ve republished an article from another source (such as another site or a different section of your own site) then you need to pick which URL is the "correct" one and use that!', 'all-in-one-seo-pack' ),
3305
 
3306
- // Reference: src/vue/classes/SiteAnalysis.js:263
3307
- __( 'Your page contains a noindex header or meta tag.', 'all-in-one-seo-pack' ),
3308
 
3309
- // Reference: src/vue/classes/SiteAnalysis.js:264
3310
- __( 'The page contains a noindex header or meta tag.', 'all-in-one-seo-pack' ),
3311
 
3312
- // Reference: src/vue/classes/SiteAnalysis.js:268
3313
- __( 'Your page does not contain any noindex header or meta tag.', 'all-in-one-seo-pack' ),
3314
 
3315
- // Reference: src/vue/classes/SiteAnalysis.js:269
3316
- __( 'The page does not contain any noindex header or meta tag.', 'all-in-one-seo-pack' ),
3317
 
3318
- // Reference: src/vue/classes/SiteAnalysis.js:274
3319
- __( 'Only ever use noindex meta tag or header on pages you want to keep out of the reach of search engines!', 'all-in-one-seo-pack' ),
3320
 
3321
- // Reference: src/vue/classes/SiteAnalysis.js:285
3322
- __( 'The www and non-www versions of your URL are not redirected to the same site.', 'all-in-one-seo-pack' ),
3323
 
3324
- // Reference: src/vue/classes/SiteAnalysis.js:286
3325
- __( 'The www and non-www versions of the URL are not redirected to the same site.', 'all-in-one-seo-pack' ),
3326
 
3327
- // Reference: src/vue/classes/SiteAnalysis.js:290
3328
- __( 'Both the www and non-www versions of your URL are redirected to the same site.', 'all-in-one-seo-pack' ),
3329
 
3330
- // Reference: src/vue/classes/SiteAnalysis.js:291
3331
- __( 'Both the www and non-www versions of the URL are redirected to the same site.', 'all-in-one-seo-pack' ),
3332
 
3333
- // Reference: src/vue/classes/SiteAnalysis.js:296
3334
- __( 'Decide whether you want your site\'s URLs to include a "www", or if you prefer a plain domain name. There are marketing pros and cons for each choice, but neither one is better or worse for SEO purposes - as long as you\'re consistent.', 'all-in-one-seo-pack' ),
3335
 
3336
- // Reference: src/vue/classes/SiteAnalysis.js:296
3337
- __( 'You should use HTTP redirections (301 permanant redirects) to pass PageRank from the "wrong" URLs to the standard (canonical) ones. That way, your content will still benefit from backlinks if someone makes a mistake and uses the wrong URL.', 'all-in-one-seo-pack' ),
3338
 
3339
- // Reference: src/vue/classes/SiteAnalysis.js:30
3340
- __( 'We couldn\'t find an SEO Title.', 'all-in-one-seo-pack' ),
3341
 
3342
- // Reference: src/vue/classes/SiteAnalysis.js:307
3343
- __( 'Your robots.txt file is missing or unavailable.', 'all-in-one-seo-pack' ),
3344
 
3345
- // Reference: src/vue/classes/SiteAnalysis.js:308
3346
- __( 'The robots.txt file is missing or unavailable.', 'all-in-one-seo-pack' ),
3347
 
3348
- // Reference: src/vue/classes/SiteAnalysis.js:327
3349
- __( 'Your site has a robots.txt file which includes one or more "disallow" directives.', 'all-in-one-seo-pack' ),
3350
 
3351
- // Reference: src/vue/classes/SiteAnalysis.js:328
3352
- __( 'The site has a robots.txt file which includes one or more "disallow" directives.', 'all-in-one-seo-pack' ),
3353
 
3354
- // Reference: src/vue/classes/SiteAnalysis.js:332
3355
- __( 'Your site has a robots.txt file.', 'all-in-one-seo-pack' ),
3356
 
3357
- // Reference: src/vue/classes/SiteAnalysis.js:333
3358
- __( 'The site has a robots.txt file.', 'all-in-one-seo-pack' ),
3359
 
3360
- // Reference: src/vue/classes/SiteAnalysis.js:34
3361
- /* Translators: 1 - The length of the SEO title as a number. */
3362
- __( 'Your SEO title is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
3363
 
3364
- // Reference: src/vue/classes/SiteAnalysis.js:340
3365
- /* Translators: 1 - The Plugin short name ("AIOSEO"). */
3366
- __( 'Make sure that you only block parts you don\'t want to be indexed.', 'all-in-one-seo-pack' ),
3367
 
3368
- // Reference: src/vue/classes/SiteAnalysis.js:340
3369
- /* Translators: 1 - The Plugin short name ("AIOSEO"). */
3370
- __( 'You can manually create a robots.txt file and upload it to your site\'s web root. A simpler option is to use a plugin for your CMS platform.', 'all-in-one-seo-pack' ),
3371
 
3372
- // Reference: src/vue/classes/SiteAnalysis.js:340
3373
- /* Translators: 1 - The Plugin short name ("AIOSEO"). */
3374
- __( '%1$s has a full suite of tools to manage the robots.txt file, along with other related technologies, like XML Sitemaps.', 'all-in-one-seo-pack' ),
3375
 
3376
- // Reference: src/vue/classes/SiteAnalysis.js:350
3377
- __( 'Some Open Graph meta tags are missing.', 'all-in-one-seo-pack' ),
3378
 
3379
- // Reference: src/vue/classes/SiteAnalysis.js:352
3380
- __( 'Duplicate Open Graph meta tags were found.', 'all-in-one-seo-pack' ),
3381
 
3382
- // Reference: src/vue/classes/SiteAnalysis.js:355
3383
- __( 'All the required Open Graph meta tags have been found.', 'all-in-one-seo-pack' ),
3384
 
3385
- // Reference: src/vue/classes/SiteAnalysis.js:36
3386
- /* Translators: 1 - The length of the SEO title as a number. */
3387
- __( 'The SEO title is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
3388
 
3389
- // Reference: src/vue/classes/SiteAnalysis.js:362
3390
- /* Translators: 1 - The Plugin short name ("AIOSEO"). */
3391
- __( 'Insert a customized Open Graph meta tag for each important page on your site. The standard is very well documented - you can learn more from Facebook\'s developer pages.', 'all-in-one-seo-pack' ),
3392
 
3393
- // Reference: src/vue/classes/SiteAnalysis.js:362
3394
- /* Translators: 1 - The Plugin short name ("AIOSEO"). */
3395
- __( '%1$s provides a simple but powerful interface to craft your Open Graph data. You get immediate feedback with an interactive preview, and you don\'t have to mess around with raw HTML markup.', 'all-in-one-seo-pack' ),
3396
 
3397
- // Reference: src/vue/classes/SiteAnalysis.js:373
3398
- __( 'No Schema.org data was found on your page.', 'all-in-one-seo-pack' ),
3399
 
3400
- // Reference: src/vue/classes/SiteAnalysis.js:374
3401
- __( 'No Schema.org data was found on the page.', 'all-in-one-seo-pack' ),
3402
 
3403
- // Reference: src/vue/classes/SiteAnalysis.js:378
3404
- __( 'We found Schema.org data on your page.', 'all-in-one-seo-pack' ),
3405
 
3406
- // Reference: src/vue/classes/SiteAnalysis.js:379
3407
- __( 'We found Schema.org data on the page.', 'all-in-one-seo-pack' ),
3408
 
3409
- // Reference: src/vue/classes/SiteAnalysis.js:385
3410
- /* Translators: 1 - The Plugin short name ("AIOSEO"). */
3411
- __( '%1$s makes it extremely easy to add highly relevant Schema.org markup to your site. It has a simple graphical interface, so you don\'t have to get your hands dirty with complex HTML markup.', 'all-in-one-seo-pack' ),
3412
 
3413
- // Reference: src/vue/classes/SiteAnalysis.js:386
3414
- __( 'Edit Your Page', 'all-in-one-seo-pack' ),
3415
 
3416
- // Reference: src/vue/classes/SiteAnalysis.js:396
3417
- __( 'Your server is not using "expires" headers for your images.', 'all-in-one-seo-pack' ),
3418
 
3419
- // Reference: src/vue/classes/SiteAnalysis.js:397
3420
- __( 'The server is not using "expires" headers for the images.', 'all-in-one-seo-pack' ),
 
3421
 
3422
- // Reference: src/vue/classes/SiteAnalysis.js:40
3423
- /* Translators: 1 - The length of the SEO title as a number. */
3424
- __( 'Your SEO title is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
3425
 
3426
- // Reference: src/vue/classes/SiteAnalysis.js:401
3427
- __( 'Your server is using "expires" headers for your images.', 'all-in-one-seo-pack' ),
3428
 
3429
- // Reference: src/vue/classes/SiteAnalysis.js:402
3430
- __( 'The server is using "expires" headers for the images.', 'all-in-one-seo-pack' ),
3431
 
3432
- // Reference: src/vue/classes/SiteAnalysis.js:407
3433
- __( 'If you use the Apache or NGINX web servers, you can edit the configuration files to set the "expires" header for all image files. For Apache, you can also use a ".htaccess" file to change the settings for each folder.', 'all-in-one-seo-pack' ),
 
3434
 
3435
- // Reference: src/vue/classes/SiteAnalysis.js:407
3436
- __( 'Alternatively, you can use a CMS plugin to simplify the process - it\'s a more user-friendly option. WordPress has a host of caching plugins, and most of them give you options to control the caching headers.', 'all-in-one-seo-pack' ),
3437
 
3438
- // Reference: src/vue/classes/SiteAnalysis.js:415
3439
- __( 'Some Javascript files don\'t seem to be minified.', 'all-in-one-seo-pack' ),
3440
 
3441
- // Reference: src/vue/classes/SiteAnalysis.js:418
3442
- __( 'All Javascript files appear to be minified.', 'all-in-one-seo-pack' ),
3443
 
3444
- // Reference: src/vue/classes/SiteAnalysis.js:42
3445
- /* Translators: 1 - The length of the SEO title as a number. */
3446
- __( 'The SEO title is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
3447
 
3448
- // Reference: src/vue/classes/SiteAnalysis.js:424
3449
- __( 'JavaScript files appear in many places, including frameworks (like Bootstrap), themes and templates, and third-party plugins.', 'all-in-one-seo-pack' ),
3450
 
3451
- // Reference: src/vue/classes/SiteAnalysis.js:424
3452
- __( 'We recommend tracking down where the un-minified JavaScript files come from', 'all-in-one-seo-pack' ),
3453
 
3454
- // Reference: src/vue/classes/SiteAnalysis.js:424
3455
- __( 'There are server-side tools (including WordPress plugins) to automatically minify JavaScript files.', 'all-in-one-seo-pack' ),
3456
 
3457
- // Reference: src/vue/classes/SiteAnalysis.js:432
3458
- __( 'Some CSS files don\'t seem to be minified.', 'all-in-one-seo-pack' ),
3459
 
3460
- // Reference: src/vue/classes/SiteAnalysis.js:435
3461
- __( 'All CSS files appear to be minified.', 'all-in-one-seo-pack' ),
3462
 
3463
- // Reference: src/vue/classes/SiteAnalysis.js:441
3464
- __( 'CSS files appear in many places, including frameworks (like Bootstrap), themes and templates, and third-party plugins.', 'all-in-one-seo-pack' ),
3465
 
3466
- // Reference: src/vue/classes/SiteAnalysis.js:441
3467
- __( 'We recommend tracking down where the un-minified CSS files come from.', 'all-in-one-seo-pack' ),
3468
 
3469
- // Reference: src/vue/classes/SiteAnalysis.js:441
3470
- __( 'There are server-side tools (including WordPress plugins) to automatically minify CSS files.', 'all-in-one-seo-pack' ),
3471
 
3472
- // Reference: src/vue/classes/SiteAnalysis.js:450
3473
- /* Translators: 1 - The total number of page requests. */
3474
- __( 'Your page makes %1$d requests.', 'all-in-one-seo-pack' ),
3475
 
3476
- // Reference: src/vue/classes/SiteAnalysis.js:452
3477
- /* Translators: 1 - The total number of page requests. */
3478
- __( 'The page makes %1$d requests.', 'all-in-one-seo-pack' ),
3479
 
3480
- // Reference: src/vue/classes/SiteAnalysis.js:454
3481
- __( 'More than 20 requests can result in slow page loading.', 'all-in-one-seo-pack' ),
3482
 
3483
- // Reference: src/vue/classes/SiteAnalysis.js:462
3484
- __( 'Images:', 'all-in-one-seo-pack' ),
3485
 
3486
- // Reference: src/vue/classes/SiteAnalysis.js:462
3487
- __( 'JavaScript:', 'all-in-one-seo-pack' ),
3488
 
3489
- // Reference: src/vue/classes/SiteAnalysis.js:462
3490
- __( 'CSS:', 'all-in-one-seo-pack' ),
3491
 
3492
- // Reference: src/vue/classes/SiteAnalysis.js:463
3493
- __( 'Try to replace embedded objects with HTML5 alternatives.', 'all-in-one-seo-pack' ),
3494
 
3495
- // Reference: src/vue/classes/SiteAnalysis.js:47
3496
- /* Translators: 1 - The length of the SEO title as a number. */
3497
- __( 'Your SEO title is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
3498
 
3499
- // Reference: src/vue/classes/SiteAnalysis.js:471
3500
- /* Translators: 1 - The total number of page requests. */
3501
- __( 'The size of the HTML document is %1$d Kb.', 'all-in-one-seo-pack' ),
3502
 
3503
- // Reference: src/vue/classes/SiteAnalysis.js:473
3504
- __( 'This is over our recommendation of 50 Kb.', 'all-in-one-seo-pack' ),
3505
 
3506
- // Reference: src/vue/classes/SiteAnalysis.js:477
3507
- __( 'This is under the average of 33 Kb.', 'all-in-one-seo-pack' ),
3508
 
3509
- // Reference: src/vue/classes/SiteAnalysis.js:485
3510
- __( 'In order to reduce page size, remove any unnecessary tags from your markup. This includes developer comments, which are invisible to your users - search engines ignore the text in comments, too.', 'all-in-one-seo-pack' ),
3511
 
3512
- // Reference: src/vue/classes/SiteAnalysis.js:485
3513
- __( 'Sometimes inline CSS is a culprit. A little inline CSS can help your page render faster. Too much will bloat the HTML file and increase the page loading time.', 'all-in-one-seo-pack' ),
3514
 
3515
- // Reference: src/vue/classes/SiteAnalysis.js:485
3516
- __( 'You can reduce CSS repetition with HTML class and ID attributes. Often the same rules will be repeated across many page elements, embedded in each tag\'s "style" attribute. You can extract them into a single "style" tag and use classes and ID\'s to target each element.', 'all-in-one-seo-pack' ),
3517
 
3518
- // Reference: src/vue/classes/SiteAnalysis.js:485
3519
- __( 'Removing white space can also have an impact on your HTML page\'s size. White space characters like carriage returns and tabs are ignored by the browser, but they make the markup easier for developers to read. So you should always strip them from your templates or themes before you use them in a production environment.', 'all-in-one-seo-pack' ),
3520
 
3521
- // Reference: src/vue/classes/SiteAnalysis.js:49
3522
- /* Translators: 1 - The length of the SEO title as a number. */
3523
- __( 'The SEO title is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
3524
 
3525
- // Reference: src/vue/classes/SiteAnalysis.js:495
3526
- /* Translators: 1 - The total number of page requests. */
3527
- __( 'The response time of your page is %1$f seconds. It is recommended to keep it equal to or below 0.2 seconds.', 'all-in-one-seo-pack' ),
3528
 
3529
- // Reference: src/vue/classes/SiteAnalysis.js:497
3530
- /* Translators: 1 - The total number of page requests. */
3531
- __( 'The response time of the page is %1$f seconds. It is recommended to keep it equal to or below 0.2 seconds.', 'all-in-one-seo-pack' ),
3532
 
3533
- // Reference: src/vue/classes/SiteAnalysis.js:501
3534
- __( 'Your response time is under 0.2 seconds.', 'all-in-one-seo-pack' ),
3535
 
3536
- // Reference: src/vue/classes/SiteAnalysis.js:502
3537
- __( 'The response time is under 0.2 seconds.', 'all-in-one-seo-pack' ),
3538
 
3539
- // Reference: src/vue/classes/SiteAnalysis.js:507
3540
- __( 'If you want to continue to improve your response time, the simplest and fastest fix is to use a caching plugin. Caching plugins keep a cached version of each page on your site. Instead of building the page from scratch, the server will send the cached copy.', 'all-in-one-seo-pack' ),
3541
 
3542
- // Reference: src/vue/classes/SiteAnalysis.js:507
3543
- __( 'You can get an even greater boost in speed with a content delivery network service. These services host a copy of your content on multiple servers spread out across the globe. A user\'s request is handled by the edge server that\'s closest to their physical location, so the content arrives incredibly fast.', 'all-in-one-seo-pack' ),
3544
 
3545
- // Reference: src/vue/classes/SiteAnalysis.js:516
3546
- __( 'Plugins from your website are publicly visible.', 'all-in-one-seo-pack' ),
3547
 
3548
- // Reference: src/vue/classes/SiteAnalysis.js:517
3549
- __( 'Plugins from the website are publicly visible.', 'all-in-one-seo-pack' ),
3550
 
3551
- // Reference: src/vue/classes/SiteAnalysis.js:521
3552
- __( 'You have no visible plugins!', 'all-in-one-seo-pack' ),
3553
 
3554
- // Reference: src/vue/classes/SiteAnalysis.js:522
3555
- __( 'There are no visible plugins.', 'all-in-one-seo-pack' ),
3556
 
3557
- // Reference: src/vue/classes/SiteAnalysis.js:528
3558
- __( 'It\'s a great idea to try and hide the plugins you have visible. From time to time vulnerabilities are found in plugins and if your site is not updated in a timely fashion, outdated plugins and themes can be exploited.', 'all-in-one-seo-pack' ),
3559
 
3560
- // Reference: src/vue/classes/SiteAnalysis.js:538
3561
- /* Translators: 1 - The name of the theme. */
3562
- __( 'Anyone can see that you are using the %1$s theme.', 'all-in-one-seo-pack' ),
3563
 
3564
- // Reference: src/vue/classes/SiteAnalysis.js:540
3565
- /* Translators: 1 - The name of the theme. */
3566
- __( 'Anyone can see that they are using the %1$s theme.', 'all-in-one-seo-pack' ),
3567
 
3568
- // Reference: src/vue/classes/SiteAnalysis.js:544
3569
- __( 'Your theme is not visible!', 'all-in-one-seo-pack' ),
3570
 
3571
- // Reference: src/vue/classes/SiteAnalysis.js:545
3572
- __( 'The theme is not visible.', 'all-in-one-seo-pack' ),
3573
 
3574
- // Reference: src/vue/classes/SiteAnalysis.js:55
3575
- __( 'Ensure your page\'s title includes your target keywords, and design it to encourage users to click.', 'all-in-one-seo-pack' ),
3576
 
3577
- // Reference: src/vue/classes/SiteAnalysis.js:55
3578
- __( 'Writing compelling titles is both a science and an art. There are automated tools that can analyze your title against known metrics for readability and click-worthiness. You also need to understand the psychology of your target audience.', 'all-in-one-seo-pack' ),
3579
 
3580
- // Reference: src/vue/classes/SiteAnalysis.js:550
3581
- __( 'It\'s a great idea to try and hide the theme you have visible. From time to time vulnerabilities are found in themes and if your site is not updated in a timely fashion, outdated plugins and themes can be exploited.', 'all-in-one-seo-pack' ),
3582
 
3583
- // Reference: src/vue/classes/SiteAnalysis.js:559
3584
- __( 'Directory Listing seems to be enabled on your server.', 'all-in-one-seo-pack' ),
3585
 
3586
- // Reference: src/vue/classes/SiteAnalysis.js:56
3587
- __( 'Edit Your Page Title', 'all-in-one-seo-pack' ),
3588
 
3589
- // Reference: src/vue/classes/SiteAnalysis.js:560
3590
- __( 'Directory Listing seems to be enabled on the server.', 'all-in-one-seo-pack' ),
3591
 
3592
- // Reference: src/vue/classes/SiteAnalysis.js:564
3593
- __( 'Directory Listing seems to be disabled on your server.', 'all-in-one-seo-pack' ),
3594
 
3595
- // Reference: src/vue/classes/SiteAnalysis.js:565
3596
- __( 'Directory Listing seems to be disabled on the server.', 'all-in-one-seo-pack' ),
3597
 
3598
- // Reference: src/vue/classes/SiteAnalysis.js:570
3599
- __( 'Fortunately, every popular web server has options to prevent directory listings. They\'ll show a "403 forbidden" message instead.', 'all-in-one-seo-pack' ),
3600
 
3601
- // Reference: src/vue/classes/SiteAnalysis.js:570
3602
- __( 'Alternatively, you can create an empty index.php file and save it in every directory on your site. That\'s an approach that WordPress uses and it works well.', 'all-in-one-seo-pack' ),
3603
 
3604
- // Reference: src/vue/classes/SiteAnalysis.js:579
3605
- __( 'It looks like your site has been added to one of Google\'s malwares lists.', 'all-in-one-seo-pack' ),
3606
 
3607
- // Reference: src/vue/classes/SiteAnalysis.js:580
3608
- __( 'It looks like this site has been added to one of Google\'s malwares lists.', 'all-in-one-seo-pack' ),
3609
 
3610
- // Reference: src/vue/classes/SiteAnalysis.js:584
3611
- __( 'Google has not flagged your site for malware!', 'all-in-one-seo-pack' ),
3612
 
3613
- // Reference: src/vue/classes/SiteAnalysis.js:585
3614
- __( 'Google has not flagged this site for malware.', 'all-in-one-seo-pack' ),
3615
 
3616
- // Reference: src/vue/classes/SiteAnalysis.js:590
3617
- __( 'Google Safe browsing shows warnings and alerts to users if they visit a suspicious website. If you are flagged by Google Safe Browsing, you should take immediate steps to fix that.', 'all-in-one-seo-pack' ),
3618
 
3619
- // Reference: src/vue/classes/SiteAnalysis.js:599
3620
- __( 'Your site is not using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
3621
 
3622
- // Reference: src/vue/classes/SiteAnalysis.js:600
3623
- __( 'The site is not using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
3624
 
3625
- // Reference: src/vue/classes/SiteAnalysis.js:604
3626
- __( 'Your site is using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
3627
 
3628
- // Reference: src/vue/classes/SiteAnalysis.js:605
3629
- __( 'The site is using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
3630
 
3631
- // Reference: src/vue/classes/SiteAnalysis.js:610
3632
- __( 'If you aren\'t using an SSL certificate for your site that means you are losing a lot of potential traffic. We recommend getting an SSL certificate installed immediately.', 'all-in-one-seo-pack' ),
3633
 
3634
- // Reference: src/vue/classes/SiteAnalysis.js:66
3635
- __( 'No meta description was found for your page.', 'all-in-one-seo-pack' ),
3636
 
3637
- // Reference: src/vue/classes/SiteAnalysis.js:67
3638
- __( 'No meta description was found for the page.', 'all-in-one-seo-pack' ),
3639
 
3640
- // Reference: src/vue/classes/SiteAnalysis.js:71
3641
- /* Translators: 1 - The length of the meta description as a number. */
3642
- __( 'Your meta description is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
3643
 
3644
- // Reference: src/vue/classes/SiteAnalysis.js:73
3645
- /* Translators: 1 - The length of the meta description as a number. */
3646
- __( 'The meta description is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
3647
 
3648
- // Reference: src/vue/classes/SiteAnalysis.js:77
3649
- /* Translators: 1 - The length of the meta description as a number. */
3650
- __( 'Your meta description is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
3651
 
3652
- // Reference: src/vue/classes/SiteAnalysis.js:79
3653
- /* Translators: 1 - The length of the meta description as a number. */
3654
- __( 'The meta description is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
3655
 
3656
- // Reference: src/vue/classes/SiteAnalysis.js:84
3657
- /* Translators: 1 - The length of the meta description as a number. */
3658
- __( 'Your meta description is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
3659
 
3660
- // Reference: src/vue/classes/SiteAnalysis.js:86
3661
- /* Translators: 1 - The length of the meta description as a number. */
3662
- __( 'The meta description is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
3663
 
3664
- // Reference: src/vue/classes/SiteAnalysis.js:92
3665
- __( 'Write a meta description for your page. Use your target keywords (in a natural way) and write with human readers in mind. Summarize the content - describe the topics your article discusses.', 'all-in-one-seo-pack' ),
3666
 
3667
- // Reference: src/vue/classes/SiteAnalysis.js:92
3668
- __( 'The description should stimulate reader interest and get them to click on the article. Think of it as a mini-advertisement for your content.', 'all-in-one-seo-pack' ),
3669
 
3670
- // Reference: src/vue/classes/SiteAnalysis.js:93
3671
- __( 'Edit Your Meta Description', 'all-in-one-seo-pack' ),
3672
 
3673
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:126
3674
- __( 'Copied!', 'all-in-one-seo-pack' ),
3675
 
3676
- // Reference: src/vue/components/common/core/CopyBlock.vue:48
3677
- __( 'Click to Copy', 'all-in-one-seo-pack' ),
3678
 
3679
- // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:116
3680
- __( 'Shortcode', 'all-in-one-seo-pack' ),
3681
 
3682
- // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:117
3683
- __( 'Gutenberg Block', 'all-in-one-seo-pack' ),
3684
 
3685
- // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:118
3686
- __( 'PHP Code', 'all-in-one-seo-pack' ),
3687
 
3688
- // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:115
3689
- __( 'Widget', 'all-in-one-seo-pack' ),
3690
 
3691
- // Reference: src/vue/components/common/core/DisplayInfo.vue:90
3692
- __( 'Display Info', 'all-in-one-seo-pack' ),
3693
 
3694
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:129
3695
- __( 'Website URL:', 'all-in-one-seo-pack' ),
3696
 
3697
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:130
3698
- __( 'About Page URL:', 'all-in-one-seo-pack' ),
3699
 
3700
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:131
3701
- __( 'Contact Page URL:', 'all-in-one-seo-pack' ),
3702
 
3703
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:53
3704
- /* Translators: 1 - "Pro". */
3705
- __( 'upgrading to %1$s', 'all-in-one-seo-pack' ),
3706
 
3707
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:57
3708
- /* Translators: This refers to a discount ("As a valued user you receive 50%, automatically applied at checkout!"). */
3709
- __( 'off', 'all-in-one-seo-pack' ),
3710
 
3711
- // Reference: src/vue/components/lite/settings/LicenseKey.vue:59
3712
- __( 'Your license key provides access to updates and addons.', 'all-in-one-seo-pack' ),
3713
 
3714
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:73
3715
- /* Translators: 1 - "upgrading to Pro". */
3716
- __( 'To unlock more features, consider %1$s.', 'all-in-one-seo-pack' ),
3717
 
3718
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:77
3719
- /* Translators: 1 - "50% off". */
3720
- __( 'As a valued user you receive %1$s, automatically applied at checkout!', 'all-in-one-seo-pack' ),
3721
 
3722
- // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:37
3723
- __( 'Price Indicator:', 'all-in-one-seo-pack' ),
3724
 
3725
- // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:38
3726
- __( 'Currencies Accepted:', 'all-in-one-seo-pack' ),
3727
 
3728
- // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:39
3729
- __( 'Payment Methods Accepted:', 'all-in-one-seo-pack' ),
3730
 
3731
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:120
3732
- __( 'name', 'all-in-one-seo-pack' ),
3733
 
3734
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:121
3735
- __( 'Your name or company name.', 'all-in-one-seo-pack' ),
3736
 
3737
- // Reference: src/vue/components/lite/local-business/BusinessIds.vue:25
3738
- __( 'VAT ID:', 'all-in-one-seo-pack' ),
3739
 
3740
- // Reference: src/vue/components/lite/local-business/BusinessIds.vue:26
3741
- __( 'Tax ID:', 'all-in-one-seo-pack' ),
3742
 
3743
- // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:55
3744
- __( 'Address Line 1', 'all-in-one-seo-pack' ),
3745
 
3746
- // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:56
3747
- __( 'Address Line 2', 'all-in-one-seo-pack' ),
3748
 
3749
- // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:57
3750
- __( 'Zip code:', 'all-in-one-seo-pack' ),
3751
 
3752
- // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:58
3753
- __( 'City:', 'all-in-one-seo-pack' ),
 
3754
 
3755
- // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:59
3756
- __( 'State:', 'all-in-one-seo-pack' ),
3757
 
3758
- // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:60
3759
- __( 'Country:', 'all-in-one-seo-pack' ),
 
3760
 
3761
- // Reference: src/vue/components/lite/local-business/BusinessContact.vue:28
3762
- __( 'Email address:', 'all-in-one-seo-pack' ),
 
3763
 
3764
- // Reference: src/vue/components/lite/local-business/BusinessContact.vue:29
3765
- __( 'Phone number:', 'all-in-one-seo-pack' ),
 
3766
 
3767
- // Reference: src/vue/components/lite/local-business/BusinessContact.vue:30
3768
- __( 'Fax number:', 'all-in-one-seo-pack' ),
 
3769
 
3770
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:50
3771
- __( 'Free', 'all-in-one-seo-pack' ),
3772
 
3773
- // Reference: src/vue/components/lite/core/UpgradeBar.vue:32
3774
- /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro". */
3775
- __( 'You\'re using %1$s. To unlock more features, consider %2$s', 'all-in-one-seo-pack' ),
3776
 
3777
- // Reference: src/vue/components/lite/local-business/AreaServed.vue:16
3778
- __( 'The geographic area where a service or offered item is provided.', 'all-in-one-seo-pack' ),
 
3779
 
3780
- // Reference: src/vue/pages/settings/views/RssContent.vue:101
3781
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:260
3782
- /* Translators: 1 - Learn more link. */
3783
- __( 'Your user account role does not have access to edit this field. %1$s', 'all-in-one-seo-pack' ),
3784
 
3785
- // Reference: src/vue/components/common/core/ApiBar.vue:16
3786
- __( 'Click here to learn more', 'all-in-one-seo-pack' ),
3787
 
3788
- // Reference: src/vue/components/common/core/ApiBar.vue:26
3789
- /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro". */
3790
- __( '%1$s relies on the WordPress Rest API and your site might have it disabled. %2$s.', 'all-in-one-seo-pack' ),
3791
 
3792
- // Reference: src/vue/components/common/base/WpBulkActions.vue:35
3793
- __( 'Bulk Actions', 'all-in-one-seo-pack' ),
3794
 
3795
- // Reference: src/vue/components/common/base/WpBulkActions.vue:36
3796
- __( 'Apply', 'all-in-one-seo-pack' ),
3797
 
3798
- // Reference: src/vue/components/common/base/WpAdditionalFilters.vue:46
3799
- __( 'Filter', 'all-in-one-seo-pack' ),
3800
 
3801
- // Reference: src/vue/components/common/base/WpTable.vue:336
3802
- __( 'of', 'all-in-one-seo-pack' ),
3803
 
3804
- // Reference: src/vue/components/common/base/WpTable.vue:337
3805
- __( 'items', 'all-in-one-seo-pack' ),
3806
 
3807
- // Reference: src/vue/components/common/base/WpTable.vue:338
3808
- __( 'No items found', 'all-in-one-seo-pack' ),
3809
 
3810
- // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:110
3811
- __( 'Select Rule', 'all-in-one-seo-pack' ),
3812
 
3813
- // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:112
3814
- __( 'Add Custom Rule', 'all-in-one-seo-pack' ),
 
3815
 
3816
- // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:114
3817
- __( 'Select a Value or Add a New One', 'all-in-one-seo-pack' ),
3818
 
3819
- // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:115
3820
- __( 'Key', 'all-in-one-seo-pack' ),
3821
 
3822
- // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:123
3823
- __( 'Select Status', 'all-in-one-seo-pack' ),
3824
 
3825
- // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:134
3826
- __( 'Select Roles', 'all-in-one-seo-pack' ),
3827
 
3828
- // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:107
3829
- // Reference: src/vue/pages/settings/views/RssContent.vue:93
3830
- __( 'Learn more', 'all-in-one-seo-pack' ),
3831
 
3832
- // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:178
3833
- __( 'Enter an IP Address', 'all-in-one-seo-pack' ),
3834
 
3835
- // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:186
3836
- __( 'Enter the Server Name', 'all-in-one-seo-pack' ),
3837
 
3838
- // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:199
3839
- __( 'Enter a WordPress Filter Name', 'all-in-one-seo-pack' ),
3840
 
3841
- // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:207
3842
- __( 'Enter a Locale Code, e.g.: en_GB, es_ES', 'all-in-one-seo-pack' ),
3843
 
3844
- // Reference: src/vue/components/common/core/AddRedirectionUrlResults.vue:52
3845
- __( 'DRAFT', 'all-in-one-seo-pack' ),
3846
 
3847
- // Reference: src/vue/components/common/core/AddRedirectionUrlResults.vue:53
3848
- __( 'PENDING', 'all-in-one-seo-pack' ),
3849
 
3850
- // Reference: src/vue/components/common/core/AddRedirectionUrlResults.vue:54
3851
- __( 'FUTURE', 'all-in-one-seo-pack' ),
3852
 
3853
- // Reference: src/vue/components/common/core/AddRedirection.vue:231
3854
- __( 'Redirect Type:', 'all-in-one-seo-pack' ),
3855
 
3856
- // Reference: src/vue/components/common/core/AddRedirection.vue:233
3857
- __( 'Enter a URL or start by typing a page or post title, slug or ID.', 'all-in-one-seo-pack' ),
3858
 
3859
- // Reference: src/vue/components/common/core/AddRedirection.vue:234
3860
- __( 'Add URL', 'all-in-one-seo-pack' ),
 
3861
 
3862
- // Reference: src/vue/components/common/core/AddRedirection.vue:236
3863
- /* Translators: 1 - Oening link tag, 2 - Closing link tag. */
3864
- __( 'Enter a relative URL to redirect from or start by typing in page or post title, slug or ID. You can also use regex (%1$s)', 'all-in-one-seo-pack' ),
3865
 
3866
- // Reference: src/vue/components/common/core/AddRedirection.vue:236
3867
- /* Translators: 1 - Oening link tag, 2 - Closing link tag. */
3868
- __( 'what\'s this?', 'all-in-one-seo-pack' ),
3869
 
3870
- // Reference: src/vue/components/common/core/AddRedirection.vue:238
3871
- __( 'Query Parameters:', 'all-in-one-seo-pack' ),
 
3872
 
3873
- // Reference: src/vue/components/common/core/AddRedirection.vue:241
3874
- __( 'An error occurred while adding your redirects. Please try again later.', 'all-in-one-seo-pack' ),
 
3875
 
3876
- // Reference: src/vue/components/common/core/AddRedirection.vue:269
3877
- __( 'Source URL\'s', 'all-in-one-seo-pack' ),
3878
 
3879
- // Reference: src/vue/components/common/core/AddRedirection.vue:287
3880
- /* Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>. */
3881
- __( 'Your target URL should be an absolute URL like %1$s or start with a slash.', 'all-in-one-seo-pack' ),
3882
 
3883
- // Reference: src/vue/components/common/core/AddRedirection.vue:296
3884
- /* Translators: 1 - Adds a html tag with an option like: <code>^</code>. */
3885
- __( 'Your target URL contains the invalid character(s) %1$s', 'all-in-one-seo-pack' ),
3886
 
3887
- // Reference: src/vue/components/common/core/AddRedirection.vue:309
3888
- __( 'Your URL appears to contain a domain inside the path: %1$s. Did you mean to use %2$s instead?', 'all-in-one-seo-pack' ),
3889
 
3890
- // Reference: src/vue/components/common/core/AddRedirection.vue:405
3891
- __( 'A redirect already exists for this source URL. To make changes, edit the original instead.', 'all-in-one-seo-pack' ),
3892
 
3893
- // Reference: src/vue/components/common/core/AddRedirection.vue:447
3894
- __( 'Moved Permanently', 'all-in-one-seo-pack' ),
3895
 
3896
- // Reference: src/vue/components/common/core/AddRedirection.vue:462
3897
- __( 'This is a duplicate of a URL you are already adding. You can only add unique source URL\'s.', 'all-in-one-seo-pack' ),
3898
 
3899
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:196
3900
- __( 'The regex syntax is invalid.', 'all-in-one-seo-pack' ),
3901
 
3902
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:202
3903
- __( 'Please enter a valid relative source URL.', 'all-in-one-seo-pack' ),
3904
 
3905
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:206
3906
- __( 'Permalinks are not currently supported.', 'all-in-one-seo-pack' ),
3907
 
3908
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:210
3909
- __( 'This redirect is supported using the Relocate Site feature under Full Site Redirect tab.', 'all-in-one-seo-pack' ),
3910
 
3911
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:226
3912
- __( 'Your source is the same as a target and this will create a loop.', 'all-in-one-seo-pack' ),
3913
 
3914
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:243
3915
- __( 'Anchor values are not sent to the server and cannot be redirected.', 'all-in-one-seo-pack' ),
3916
 
3917
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:248
3918
- /* Translators: 1 - Adds a html tag with an option like: <code>Regex</code> */
3919
- __( 'Remember to enable the %1$s option if this is a regular expression.', 'all-in-one-seo-pack' ),
3920
 
3921
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:254
3922
- /* Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>. */
3923
- __( 'To prevent a greedy regular expression you can use %1$s to anchor it to the start of the URL. For example: %2$s', 'all-in-one-seo-pack' ),
3924
 
3925
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:259
3926
- /* Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>. */
3927
- __( 'The caret %1$s should be at the start. For example: %2$s', 'all-in-one-seo-pack' ),
3928
 
3929
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:264
3930
- /* Translators: 1 - Adds a html tag with an option like: <code>^/</code> */
3931
- __( 'The source URL should probably start with a %1$s', 'all-in-one-seo-pack' ),
3932
 
3933
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:269
3934
- /* Translators: 1 - Adds a html tag with an option like: <code>^/</code> */
3935
- __( 'The dollar symbol %1$s should be at the end. For example: %2$s', 'all-in-one-seo-pack' ),
3936
 
3937
- // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:275
3938
- __( 'Some servers may be configured to serve file resources directly, preventing a redirect occurring.', 'all-in-one-seo-pack' ),
3939
 
3940
- // Reference: src/vue/components/common/core/AdditionalPages.vue:100
3941
- __( 'Last Modified', 'all-in-one-seo-pack' ),
3942
 
3943
- // Reference: src/vue/components/common/core/AdditionalPages.vue:96
3944
- /* Translators: 1 - An example URL (e.g. https://aioseo.com/example). */
3945
- __( 'Enter a page URL, e.g. %1$s', 'all-in-one-seo-pack' ),
3946
 
3947
- // Reference: src/vue/components/common/core/AdditionalPages.vue:97
3948
- __( 'Page URL', 'all-in-one-seo-pack' ),
3949
 
3950
- // Reference: src/vue/components/common/base/Editor.vue:122
3951
- __( 'Search for an item...', 'all-in-one-seo-pack' ),
3952
 
3953
- // Reference: src/vue/components/common/base/Editor.vue:123
3954
- __( 'Enter a custom field name...', 'all-in-one-seo-pack' ),
3955
 
3956
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:117
3957
- __( 'Web Page Type', 'all-in-one-seo-pack' ),
 
3958
 
3959
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:86
3960
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:97
3961
- __( 'Course', 'all-in-one-seo-pack' ),
3962
 
3963
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:85
3964
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:99
3965
- __( 'Recipe', 'all-in-one-seo-pack' ),
3966
 
3967
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:77
3968
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
3969
- __( 'Advanced Schema Markup is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
3970
 
3971
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:79
3972
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
3973
- __( '%1$s %2$s allows you to customize the structured data markup for your Posts so that search engines can generate rich snippets for your content in search results.', 'all-in-one-seo-pack' ),
3974
 
3975
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:80
3976
- __( 'Upgrade to Pro and Unlock Advanced Schema Markup', 'all-in-one-seo-pack' ),
3977
-
3978
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:82
3979
- __( 'Product (WooCommerce and EDD support)', 'all-in-one-seo-pack' ),
3980
 
3981
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:83
3982
- __( 'FAQ Page', 'all-in-one-seo-pack' ),
3983
 
3984
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:84
3985
- __( 'Software Application', 'all-in-one-seo-pack' ),
3986
 
3987
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:107
3988
- __( 'Robots Meta Settings', 'all-in-one-seo-pack' ),
3989
 
3990
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:108
3991
- __( 'Bulk Editing', 'all-in-one-seo-pack' ),
 
3992
 
3993
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:109
3994
- __( 'Read Only', 'all-in-one-seo-pack' ),
3995
 
3996
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:110
3997
- __( 'Other Options', 'all-in-one-seo-pack' ),
3998
 
3999
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:111
4000
- __( 'Show Date in Google Preview', 'all-in-one-seo-pack' ),
4001
 
4002
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:129
4003
- /* Translators: 1 - The type of page (Post, Page, Category, Tag, etc.). */
4004
- __( 'Show %1$s Thumbnail in Google Custom Search', 'all-in-one-seo-pack' ),
4005
 
4006
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:133
4007
- /* Translators: 1 - The plugin name ("All in One SEO") */
4008
- __( 'Show %1$s Meta Box', 'all-in-one-seo-pack' ),
4009
 
4010
- // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:144
4011
- __( 'Show in Search Results', 'all-in-one-seo-pack' ),
4012
 
4013
- // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:148
4014
- __( 'Selecting "No" will no-index this page.', 'all-in-one-seo-pack' ),
4015
 
4016
- // Reference: src/vue/pages/search-appearance/views/Archives.vue:59
4017
- // Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:58
4018
- // Reference: src/vue/pages/search-appearance/views/Media.vue:115
4019
- __( 'Title & Description', 'all-in-one-seo-pack' ),
4020
 
4021
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:409
4022
- __( 'Select which Taxonomies appear in your sitemap. Categories and Tags are excluded by default since these do not support video embedding.', 'all-in-one-seo-pack' ),
4023
 
4024
- // Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:64
4025
- // Reference: src/vue/pages/search-appearance/views/Media.vue:121
4026
- __( 'Schema Markup', 'all-in-one-seo-pack' ),
4027
 
4028
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:412
4029
- __( 'Title Separator', 'all-in-one-seo-pack' ),
4030
 
4031
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:413
4032
- __( 'Separator Character', 'all-in-one-seo-pack' ),
 
4033
 
4034
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:415
4035
- /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
4036
- __( 'The home page settings below have been disabled because you are using a static home page. You can %1$sedit your home page settings%2$s directly to change the title and description.', 'all-in-one-seo-pack' ),
4037
 
4038
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:417
4039
- __( 'Site Title', 'all-in-one-seo-pack' ),
4040
 
4041
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:421
4042
- __( 'Knowledge Graph', 'all-in-one-seo-pack' ),
4043
 
4044
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:422
4045
- __( 'Google, Bing and other search engines use specific data from your schema markup to output data in their Knowledge Panels. This data is known as the Knowledge Graph. Use these settings to change how that data looks.', 'all-in-one-seo-pack' ),
4046
 
4047
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:439
4048
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag., 3 - "Pro", 4 - "Pro". */
4049
- __( 'Go to %1$sLocal SEO Settings%2$s and set up your local business info like location address, opening hours (%3$s), and Google Maps settings (%4$s).', 'all-in-one-seo-pack' ),
4050
 
4051
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:440
4052
- __( 'Go to Local SEO Settings', 'all-in-one-seo-pack' ),
4053
 
4054
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:441
4055
- __( 'Enable Schema Markup', 'all-in-one-seo-pack' ),
4056
 
4057
- // Reference: src/vue/pages/search-appearance/views/Media.vue:106
4058
- __( 'Redirect Attachment URLs', 'all-in-one-seo-pack' ),
4059
 
4060
- // Reference: src/vue/pages/search-appearance/views/Media.vue:107
4061
- __( 'Attachment', 'all-in-one-seo-pack' ),
4062
 
4063
- // Reference: src/vue/pages/search-appearance/views/Media.vue:108
4064
- __( 'Attachment Parent', 'all-in-one-seo-pack' ),
4065
 
4066
- // Reference: src/vue/pages/search-appearance/views/Media.vue:109
4067
- __( 'We recommended redirecting attachment URL\'s back to the attachment since the default WordPress attachment pages have little SEO value.', 'all-in-one-seo-pack' ),
4068
 
4069
- // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:59
4070
- __( 'Upgrade to Pro and Unlock Custom Taxonomies', 'all-in-one-seo-pack' ),
4071
 
4072
- // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:61
4073
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro". */
4074
- __( '%1$s %2$s lets you set the SEO title and description for custom taxonomies. You can also control all of the robots meta and other options just like the default category and tags taxonomies.', 'all-in-one-seo-pack' ),
4075
 
4076
- // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:63
4077
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
4078
- __( 'Custom Taxonomy Support is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
4079
 
4080
- // Reference: src/vue/utils/tags.js:64
4081
- __( 'Product Short Description', 'all-in-one-seo-pack' ),
4082
 
4083
- // Reference: src/vue/utils/tags.js:65
4084
- __( 'A short description for your product.', 'all-in-one-seo-pack' ),
4085
 
4086
- // Reference: src/vue/utils/tags.js:66
4087
- __( 'Sample short description for your product.', 'all-in-one-seo-pack' ),
4088
 
4089
- // Reference: src/vue/utils/tags.js:82
4090
- __( 'Archive', 'all-in-one-seo-pack' ),
4091
 
4092
- // Reference: src/vue/utils/tags.js:83
4093
- __( 'archive', 'all-in-one-seo-pack' ),
4094
 
4095
- // Reference: src/vue/plugins/html-sitemap/index.js:44
4096
- __( '%1$s - HTML Sitemap', 'all-in-one-seo-pack' ),
 
4097
 
4098
- // Reference: src/vue/plugins/breadcrumbs/index.js:33
4099
- /* Translators: 1 - AIOSEO. */
4100
- __( '%1$s - Breadcrumbs', 'all-in-one-seo-pack' ),
4101
 
4102
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:148
4103
- __( 'Blocked!', 'all-in-one-seo-pack' ),
4104
 
4105
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:163
4106
- __( 'Good!', 'all-in-one-seo-pack' ),
4107
 
4108
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:169
4109
- /* Translators: 1 - How many errors were found. */
4110
- _n_noop( '%1$s error found!', '%1$s errors found!', 'all-in-one-seo-pack' ),
4111
 
4112
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:174
4113
- __( 'No focus keyphrase!', 'all-in-one-seo-pack' ),
 
4114
 
4115
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:217
4116
- __( 'Your post needs improvement!', 'all-in-one-seo-pack' ),
4117
 
4118
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:218
4119
- __( 'You\'re good to go!', 'all-in-one-seo-pack' ),
4120
 
4121
- // Reference: src/vue/standalone/publish-panel/PrePublish.vue:82
4122
- __( 'Visibility', 'all-in-one-seo-pack' ),
4123
 
4124
- // Reference: src/vue/standalone/publish-panel/PostPublish.vue:30
4125
- __( 'Get out the word!', 'all-in-one-seo-pack' ),
4126
 
4127
- // Reference: src/vue/standalone/publish-panel/PostPublish.vue:31
4128
- __( 'Share your content on your favorite social media platforms to drive engagement and increase your SEO.', 'all-in-one-seo-pack' ),
4129
 
4130
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:109
4131
- __( 'Last Updated', 'all-in-one-seo-pack' ),
4132
 
4133
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:119
4134
- __( 'Show Labels', 'all-in-one-seo-pack' ),
 
4135
 
4136
- // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:120
4137
- __( 'Show Publication Date', 'all-in-one-seo-pack' ),
 
4138
 
4139
- // Reference: src/vue/store/actions.js:146
4140
- __( 'We couldn\'t connect to the site, please try again later.', 'all-in-one-seo-pack' ),
 
4141
 
4142
- // Reference: src/vue/pages/social-networks/views/SocialProfiles.vue:26
4143
- __( 'To let search engines know which profiles are associated with this site, enter them below:', 'all-in-one-seo-pack' ),
4144
 
4145
- // Reference: src/vue/pages/social-networks/views/Pinterest.vue:46
4146
- __( 'Pinterest uses Open Graph metadata just like Facebook, so be sure to keep Open Graph enabled on the Facebook tab checked if you want to optimize your site for Pinterest.', 'all-in-one-seo-pack' ),
4147
 
4148
- // Reference: src/vue/pages/social-networks/views/Pinterest.vue:47
4149
- __( 'Learn how to get your Pinterest Verification Code', 'all-in-one-seo-pack' ),
4150
 
4151
- // Reference: src/vue/pages/social-networks/views/Pinterest.vue:48
4152
- __( 'If you have already confirmed your website with Pinterest, you can skip the step below.', 'all-in-one-seo-pack' ),
4153
 
4154
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:359
4155
- // Reference: src/vue/pages/social-networks/views/Pinterest.vue:49
4156
- __( 'Pinterest Verification Code', 'all-in-one-seo-pack' ),
4157
 
4158
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:432
4159
- __( 'Twitter Card Settings', 'all-in-one-seo-pack' ),
4160
 
4161
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:434
4162
- /* Translators: 1 - The plugin name ("All in One SEO"). */
4163
- __( 'Enable this feature if you want Twitter to display a preview card with images and a text excerpt when a link to your site is shared.', 'all-in-one-seo-pack' ),
4164
 
4165
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:435
4166
- __( 'Enable Twitter Card', 'all-in-one-seo-pack' ),
4167
 
4168
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:436
4169
- __( 'Default Card Type', 'all-in-one-seo-pack' ),
4170
 
4171
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:681
4172
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:439
4173
- __( 'Default Post Image Source', 'all-in-one-seo-pack' ),
4174
-
4175
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:682
4176
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:440
4177
- __( 'Default Term Image Source', 'all-in-one-seo-pack' ),
4178
-
4179
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:685
4180
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:443
4181
- __( 'Post Custom Field Name', 'all-in-one-seo-pack' ),
4182
-
4183
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:686
4184
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:444
4185
- __( 'Term Custom Field Name', 'all-in-one-seo-pack' ),
4186
-
4187
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:445
4188
- __( 'Default Post Twitter Image', 'all-in-one-seo-pack' ),
4189
-
4190
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:446
4191
- __( 'Default Term Twitter Image', 'all-in-one-seo-pack' ),
4192
-
4193
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:692
4194
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:451
4195
- __( 'Home Page Settings', 'all-in-one-seo-pack' ),
4196
-
4197
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:452
4198
- __( 'Home Page Image', 'all-in-one-seo-pack' ),
4199
-
4200
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:699
4201
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:454
4202
- __( 'Use the home page title', 'all-in-one-seo-pack' ),
4203
-
4204
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:701
4205
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:455
4206
- __( 'Click on the tags below to insert variables into your home page title.', 'all-in-one-seo-pack' ),
4207
-
4208
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:702
4209
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:456
4210
- __( 'Description', 'all-in-one-seo-pack' ),
4211
-
4212
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:703
4213
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:457
4214
- __( 'Use the home page description', 'all-in-one-seo-pack' ),
4215
-
4216
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:704
4217
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:458
4218
- __( 'Click on the tags below to insert variables into your description.', 'all-in-one-seo-pack' ),
4219
-
4220
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:460
4221
- __( 'Show Twitter Author', 'all-in-one-seo-pack' ),
4222
-
4223
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:728
4224
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:462
4225
- /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
4226
- __( 'The home page settings below have been disabled because you are using a static home page. You can %1$sedit your home page settings%2$s directly to change the title, meta and image.', 'all-in-one-seo-pack' ),
4227
-
4228
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:463
4229
- __( 'Card Type', 'all-in-one-seo-pack' ),
4230
-
4231
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:464
4232
- __( 'Additional Data', 'all-in-one-seo-pack' ),
4233
-
4234
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:465
4235
- __( 'Enable this option to show additional Twitter data on your posts and pages (i.e., who the post was written by and how long it might take to read the article).', 'all-in-one-seo-pack' ),
4236
 
4237
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:722
4238
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:467
4239
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - Learn more link. */
4240
- __( 'Default Term Image Source is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
4241
 
4242
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:303
4243
- // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:62
4244
- // Reference: src/vue/pages/settings/views/pro/Breadcrumbs.vue:49
4245
- __( 'Breadcrumb Templates', 'all-in-one-seo-pack' ),
4246
 
4247
- // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:63
4248
- // Reference: src/vue/pages/settings/views/pro/Breadcrumbs.vue:50
4249
- __( 'Override the default template for breadcrumbs on your site using our easy-to-use template editor.', 'all-in-one-seo-pack' ),
4250
 
4251
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:678
4252
- __( 'General Facebook Settings', 'all-in-one-seo-pack' ),
4253
 
4254
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:679
4255
- __( 'Enable this feature if you want Facebook and other social media to display a preview with images and a text excerpt when a link to your site is shared.', 'all-in-one-seo-pack' ),
4256
 
4257
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:680
4258
- __( 'Enable Open Graph Markup', 'all-in-one-seo-pack' ),
4259
 
4260
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:687
4261
- __( 'Default Post Facebook Image', 'all-in-one-seo-pack' ),
4262
 
4263
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:688
4264
- __( 'Default Term Facebook Image', 'all-in-one-seo-pack' ),
4265
 
4266
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:691
4267
- __( 'Minimum size: 200px x 200px, ideal ratio 1.91:1, 8MB max. (eg: 1640px x 856px or 3280px x 1712px for retina screens)', 'all-in-one-seo-pack' ),
4268
 
4269
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:693
4270
- __( 'The Title of the Page or Site you are Sharing', 'all-in-one-seo-pack' ),
4271
 
4272
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:695
4273
  /* Translators: 1 - The plugin name ("All in One SEO"). */
4274
- __( 'This is what your page configured with %1$s will look like when shared via Facebook. The site title and description will be automatically added.', 'all-in-one-seo-pack' ),
4275
 
4276
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:697
4277
- __( 'Site Name', 'all-in-one-seo-pack' ),
4278
 
4279
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:707
4280
- __( 'Facebook Admin ID', 'all-in-one-seo-pack' ),
4281
 
4282
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:708
4283
- __( 'Facebook App ID', 'all-in-one-seo-pack' ),
4284
 
4285
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:709
4286
- __( 'Facebook Author URL', 'all-in-one-seo-pack' ),
4287
 
4288
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:710
4289
- __( 'Enter your Facebook Admin ID here. You can enter multiple Facebook Admin IDs by separating them with a comma.', 'all-in-one-seo-pack' ),
4290
 
4291
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:711
4292
- __( 'The Facebook App ID of the site\'s app. In order to use Facebook Insights, you must add the App ID to your page. Insights lets you view analytics for traffic to your site from Facebook. Find the App ID in your App Dashboard.', 'all-in-one-seo-pack' ),
 
4293
 
4294
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:712
4295
- __( 'Will be overriden if the Facebook author URL is present in the individual User Profile.', 'all-in-one-seo-pack' ),
4296
 
4297
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:713
4298
- __( 'How to get your Facebook Admin ID', 'all-in-one-seo-pack' ),
4299
 
4300
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:714
4301
- __( 'How to get your Facebook App ID', 'all-in-one-seo-pack' ),
 
4302
 
4303
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:715
4304
- __( 'How to get your Facebook Author URL', 'all-in-one-seo-pack' ),
4305
 
4306
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:716
4307
- __( 'Show Facebook Author', 'all-in-one-seo-pack' ),
 
4308
 
4309
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:717
4310
- __( 'Default Post Type Object Types', 'all-in-one-seo-pack' ),
4311
 
4312
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:718
4313
- __( 'Default Taxonomy Object Types', 'all-in-one-seo-pack' ),
4314
 
4315
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:720
4316
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - Learn more link. */
4317
- __( 'Default Taxonomy Object Types are only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
4318
 
4319
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:723
4320
- __( 'Automatically Generate Article Tags', 'all-in-one-seo-pack' ),
4321
 
4322
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:724
4323
- __( 'Use Keywords in Article Tags', 'all-in-one-seo-pack' ),
4324
 
4325
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:725
4326
- __( 'Use Categories in Article Tags', 'all-in-one-seo-pack' ),
4327
 
4328
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:726
4329
- __( 'Use Post Tags in Article Tags', 'all-in-one-seo-pack' ),
4330
 
4331
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:64
4332
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/BlogArchives.vue:65
4333
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:138
4334
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypesLite.vue:35
4335
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:99
4336
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/NotFound.vue:64
4337
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/PostTypeArchives.vue:67
4338
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:65
4339
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Taxonomies.vue:105
4340
- __( 'Use a default template', 'all-in-one-seo-pack' ),
4341
 
4342
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:65
4343
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/BlogArchives.vue:66
4344
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:144
4345
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:100
4346
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/NotFound.vue:65
4347
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/PostTypeArchives.vue:68
4348
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:66
4349
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Taxonomies.vue:106
4350
- __( 'Show homepage link', 'all-in-one-seo-pack' ),
4351
 
4352
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:66
4353
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/BlogArchives.vue:67
4354
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:145
4355
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:101
4356
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/NotFound.vue:66
4357
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/PostTypeArchives.vue:69
4358
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:67
4359
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Taxonomies.vue:107
4360
- __( 'Show prefix link', 'all-in-one-seo-pack' ),
4361
 
4362
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:68
4363
- __( 'search term', 'all-in-one-seo-pack' ),
4364
 
4365
- // Reference: src/vue/pages/feature-manager/router/paths.js:19
4366
- // Reference: src/vue/pages/feature-manager/views/Main.vue:20
4367
- __( 'Feature Manager', 'all-in-one-seo-pack' ),
4368
 
4369
- // Reference: src/vue/pages/tools/router/paths.js:19
4370
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:240
4371
- __( 'Robots.txt Editor', 'all-in-one-seo-pack' ),
4372
 
4373
- // Reference: src/vue/pages/tools/router/paths.js:28
4374
- // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:41
4375
- __( '.htaccess Editor', 'all-in-one-seo-pack' ),
4376
 
4377
- // Reference: src/vue/pages/tools/router/paths.js:46
4378
- __( 'Import/Export', 'all-in-one-seo-pack' ),
4379
 
4380
- // Reference: src/vue/pages/tools/router/paths.js:55
4381
- __( 'Database Tools', 'all-in-one-seo-pack' ),
4382
 
4383
- // Reference: src/vue/pages/tools/router/paths.js:64
4384
- __( 'System Status', 'all-in-one-seo-pack' ),
 
4385
 
4386
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:102
4387
- __( 'Year', 'all-in-one-seo-pack' ),
4388
 
4389
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:103
4390
- __( 'Month', 'all-in-one-seo-pack' ),
4391
 
4392
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:104
4393
- __( 'Day', 'all-in-one-seo-pack' ),
4394
 
4395
- // Reference: src/vue/plugins/truSEO/analysis/contentHasAssets.js:36
4396
  // Reference: src/vue/plugins/truSEO/analysis/lengthContent.js:25
4397
  __( 'Please add some content first.', 'all-in-one-seo-pack' ),
4398
 
@@ -4408,15 +4194,6 @@ $generated_i18n_strings = array(
4408
  // Reference: src/vue/plugins/truSEO/analysis/lengthContent.js:71
4409
  __( 'The content is below the minimum of words. Add more content.', 'all-in-one-seo-pack' ),
4410
 
4411
- // Reference: src/vue/plugins/truSEO/analysis/isExternalLink.js:20
4412
- __( 'Great! You are linking to external resources.', 'all-in-one-seo-pack' ),
4413
-
4414
- // Reference: src/vue/plugins/truSEO/analysis/isExternalLink.js:28
4415
- __( 'External links', 'all-in-one-seo-pack' ),
4416
-
4417
- // Reference: src/vue/plugins/truSEO/analysis/isExternalLink.js:29
4418
- __( 'No outbound links were found. Link out to external resources.', 'all-in-one-seo-pack' ),
4419
-
4420
  // Reference: src/vue/plugins/truSEO/analysis/isInternalLink.js:20
4421
  __( 'You are linking to other resources on your website which is great.', 'all-in-one-seo-pack' ),
4422
 
@@ -4426,30 +4203,129 @@ $generated_i18n_strings = array(
4426
  // Reference: src/vue/plugins/truSEO/analysis/isInternalLink.js:29
4427
  __( 'We couldn\'t find any internal links in your content. Add internal links in your content.', 'all-in-one-seo-pack' ),
4428
 
4429
- // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:68
4430
- __( 'WP Roles (Editor, Author)', 'all-in-one-seo-pack' ),
4431
-
4432
- // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:69
4433
- __( 'SEO Manager Role', 'all-in-one-seo-pack' ),
4434
 
4435
- // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:70
4436
- __( 'SEO Editor Role', 'all-in-one-seo-pack' ),
4437
 
4438
- // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:71
4439
- __( 'Default settings that just work', 'all-in-one-seo-pack' ),
4440
 
4441
- // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:72
4442
- __( 'Granular controls per role', 'all-in-one-seo-pack' ),
4443
 
4444
- // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:73
4445
- __( 'Upgrade to Pro and Unlock Access Control', 'all-in-one-seo-pack' ),
4446
 
4447
- // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:75
4448
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
4449
- __( 'Access Control is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4450
 
4451
  // Reference: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:45
4452
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseLength.js:39
4453
  __( 'Good job!', 'all-in-one-seo-pack' ),
4454
 
4455
  // Reference: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:49
@@ -4472,32 +4348,6 @@ $generated_i18n_strings = array(
4472
  // Reference: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:96
4473
  __( ':-)', 'all-in-one-seo-pack' ),
4474
 
4475
- // Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:100
4476
- __( 'You are not using any subheadings, but your text is short enough and probably doesn\'t need them.', 'all-in-one-seo-pack' ),
4477
-
4478
- // Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:72
4479
- /* Translators: 1 - Expand to the number of text sections not separated by subheadings, 2 - expands to the recommended number of words following a subheading. */
4480
- __( '%1$d section of your text is longer than %2$d words and is not separated by any subheadings. Add subheadings to improve readability.', 'all-in-one-seo-pack' ),
4481
-
4482
- // Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:81
4483
- __( 'You are not using any subheadings, although your text is rather long. Try and add some subheadings.', 'all-in-one-seo-pack' ),
4484
-
4485
- // Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:91
4486
- __( 'Great job!', 'all-in-one-seo-pack' ),
4487
-
4488
- // Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:99
4489
- __( 'Subheading distribution', 'all-in-one-seo-pack' ),
4490
-
4491
- // Reference: src/vue/plugins/truSEO/analysis/consecutiveSentences.js:33
4492
- /* Translators: 1 - Number of sentences. */
4493
- __( 'The text contains %1$d consecutive sentences starting with the same word. Try to mix things up!', 'all-in-one-seo-pack' ),
4494
-
4495
- // Reference: src/vue/plugins/truSEO/analysis/consecutiveSentences.js:41
4496
- __( 'Consecutive sentences', 'all-in-one-seo-pack' ),
4497
-
4498
- // Reference: src/vue/plugins/truSEO/analysis/consecutiveSentences.js:42
4499
- __( 'There is enough variety in your sentences. That\'s great!', 'all-in-one-seo-pack' ),
4500
-
4501
  // Reference: src/vue/plugins/truSEO/analysis/transitionWords.js:39
4502
  __( 'None of the sentences contain transition words. Use some.', 'all-in-one-seo-pack' ),
4503
 
@@ -4509,10 +4359,19 @@ $generated_i18n_strings = array(
4509
  __( 'Transition words', 'all-in-one-seo-pack' ),
4510
 
4511
  // Reference: src/vue/plugins/truSEO/analysis/metadescriptionLength.js:54
4512
- // Reference: src/vue/plugins/truSEO/analysis/titleLength.js:59
4513
  // Reference: src/vue/plugins/truSEO/analysis/transitionWords.js:59
4514
  __( 'Well done!', 'all-in-one-seo-pack' ),
4515
 
 
 
 
 
 
 
 
 
 
 
4516
  // Reference: src/vue/plugins/truSEO/analysis/passiveVoice.js:36
4517
  __( 'You\'re using enough active voice. That\'s great!', 'all-in-one-seo-pack' ),
4518
 
@@ -4523,6 +4382,22 @@ $generated_i18n_strings = array(
4523
  /* Translators: 1 - Percentage of the sentences, 2 - Expected maximum percentage of sentences. */
4524
  __( '%1$s of the sentences contain passive voice, which is more than the recommended maximum of %2$s. Try to use their active counterparts.', 'all-in-one-seo-pack' ),
4525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4526
  // Reference: src/vue/plugins/truSEO/analysis/sentenceLength.js:52
4527
  __( 'Sentence length is looking great!', 'all-in-one-seo-pack' ),
4528
 
@@ -4584,1244 +4459,1252 @@ $generated_i18n_strings = array(
4584
  // Reference: src/vue/plugins/truSEO/analysis/titleLength.js:58
4585
  __( 'Title Length', 'all-in-one-seo-pack' ),
4586
 
4587
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:147
4588
- __( 'Activate All Features', 'all-in-one-seo-pack' ),
4589
-
4590
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:148
4591
- __( 'Deactivate All Features', 'all-in-one-seo-pack' ),
4592
 
4593
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:149
4594
- __( 'Search for Features...', 'all-in-one-seo-pack' ),
 
4595
 
4596
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:151
4597
- /* Translators: 1 - The plugin name ("All in One SEO"). */
4598
- __( 'Upgrade %1$s to Pro and Unlock all Features!', 'all-in-one-seo-pack' ),
4599
 
4600
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:152
4601
- __( 'Upgrade to Pro and Unlock All Features', 'all-in-one-seo-pack' ),
4602
 
4603
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:153
4604
- __( 'A valid license key is required in order to use our addons.', 'all-in-one-seo-pack' ),
4605
 
4606
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:154
4607
- __( 'Enter License Key', 'all-in-one-seo-pack' ),
4608
 
4609
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:155
4610
- __( 'Purchase License', 'all-in-one-seo-pack' ),
4611
 
4612
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:159
4613
- __( 'Globally control the Title attribute and Alt text for images in your content. These attributes are essential for both accessibility and SEO.', 'all-in-one-seo-pack' ),
 
4614
 
4615
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:171
4616
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:100
4617
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:281
4618
- // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:127
4619
- __( 'Local Business schema markup enables you to tell Google about your business, including your business name, address and phone number, opening hours and price range. This information may be displayed as a Knowledge Graph card or business carousel.', 'all-in-one-seo-pack' ),
4620
 
4621
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:90
4622
- __( 'Block Bad Bots using HTTP', 'all-in-one-seo-pack' ),
 
4623
 
4624
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:91
4625
- __( 'Block Referral Spam using HTTP', 'all-in-one-seo-pack' ),
 
4626
 
4627
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:92
4628
- __( 'Track Blocked Bots', 'all-in-one-seo-pack' ),
4629
 
4630
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:93
4631
- __( 'Use Custom Blocklists', 'all-in-one-seo-pack' ),
4632
 
4633
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:94
4634
- __( 'User Agent Blocklist', 'all-in-one-seo-pack' ),
4635
 
4636
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:95
4637
- __( 'Referer Blocklist', 'all-in-one-seo-pack' ),
4638
 
4639
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:96
4640
- __( 'Blocked Bots Log', 'all-in-one-seo-pack' ),
4641
 
4642
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:98
4643
- /* Translators: 1 - The location of the log file. */
4644
- __( 'The log for the blocked bots is located here: %1$s', 'all-in-one-seo-pack' ),
4645
 
4646
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:115
4647
- __( 'System Status Info', 'all-in-one-seo-pack' ),
 
4648
 
4649
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:116
4650
- __( 'Download System Info File', 'all-in-one-seo-pack' ),
 
4651
 
4652
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:117
4653
- __( 'Copy to Clipboard', 'all-in-one-seo-pack' ),
 
4654
 
4655
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:118
4656
- __( 'Email Debug Information', 'all-in-one-seo-pack' ),
4657
 
4658
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:119
4659
- __( 'Submit', 'all-in-one-seo-pack' ),
4660
 
4661
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:120
4662
- __( 'WordPress', 'all-in-one-seo-pack' ),
4663
 
4664
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:121
4665
- __( 'Server Info', 'all-in-one-seo-pack' ),
4666
 
4667
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:122
4668
- __( 'Active Theme', 'all-in-one-seo-pack' ),
4669
 
4670
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:123
4671
- __( 'Must-Use Plugins', 'all-in-one-seo-pack' ),
4672
 
4673
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:124
4674
- __( 'Active Plugins', 'all-in-one-seo-pack' ),
4675
 
4676
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:125
4677
- __( 'Inactive Plugins', 'all-in-one-seo-pack' ),
4678
 
4679
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:136
4680
- __( 'Backup Settings', 'all-in-one-seo-pack' ),
4681
 
4682
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:137
4683
- __( 'Are you sure you want to delete this backup?', 'all-in-one-seo-pack' ),
 
4684
 
4685
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:138
4686
- __( 'Are you sure you want to restore this backup?', 'all-in-one-seo-pack' ),
 
4687
 
4688
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:139
4689
- __( 'Yes, I want to delete this backup', 'all-in-one-seo-pack' ),
 
4690
 
4691
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:140
4692
- __( 'Yes, I want to restore this backup', 'all-in-one-seo-pack' ),
 
4693
 
4694
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:143
4695
- __( 'You have no saved backups.', 'all-in-one-seo-pack' ),
4696
 
4697
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:144
4698
- __( 'Create Backup', 'all-in-one-seo-pack' ),
4699
 
4700
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:145
4701
- __( 'Restore', 'all-in-one-seo-pack' ),
4702
 
4703
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:147
4704
- __( 'Success! The backup was deleted.', 'all-in-one-seo-pack' ),
4705
 
4706
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:148
4707
- __( 'Success! The backup was restored.', 'all-in-one-seo-pack' ),
4708
 
4709
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:211
4710
- /* Translators: 1 Date, 2 - Timestamp. */
4711
- __( '%1$s at %2$s', 'all-in-one-seo-pack' ),
4712
 
4713
- // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:118
4714
- __( 'Export Settings', 'all-in-one-seo-pack' ),
4715
 
4716
- // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:119
4717
- __( 'Export All Settings', 'all-in-one-seo-pack' ),
4718
 
4719
- // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:120
4720
- __( 'Export All Post Types', 'all-in-one-seo-pack' ),
4721
 
4722
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:82
4723
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
4724
- __( 'Import / Restore %1$s Settings', 'all-in-one-seo-pack' ),
4725
 
4726
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:83
4727
- __( 'Import from a JSON or INI file...', 'all-in-one-seo-pack' ),
4728
 
4729
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:85
4730
- __( 'Imported settings will overwrite existing settings and will not be merged.', 'all-in-one-seo-pack' ),
4731
 
4732
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:87
4733
- __( 'A JSON or INI file is required to import settings.', 'all-in-one-seo-pack' ),
4734
 
4735
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:88
4736
- __( 'Success! Your settings have been imported.', 'all-in-one-seo-pack' ),
4737
 
4738
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:89
4739
- __( 'There was an error importing your settings. Please make sure you are uploading the correct file or it is in the proper format.', 'all-in-one-seo-pack' ),
4740
 
4741
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:122
4742
- __( 'Import Settings From Other Plugins', 'all-in-one-seo-pack' ),
4743
 
4744
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:124
4745
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
4746
- __( 'Choose a plugin to import SEO data directly into %1$s.', 'all-in-one-seo-pack' ),
4747
 
4748
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:127
4749
- __( 'All Settings', 'all-in-one-seo-pack' ),
4750
 
4751
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:142
4752
- __( 'SEO Settings', 'all-in-one-seo-pack' ),
4753
 
4754
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:143
4755
- __( 'Post Meta', 'all-in-one-seo-pack' ),
4756
 
4757
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:147
4758
- __( 'Term Meta', 'all-in-one-seo-pack' ),
4759
 
4760
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:10
4761
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
4762
- __( 'By default Admins have access to %1$sall SEO site settings%2$s', 'all-in-one-seo-pack' ),
4763
 
4764
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:13
4765
- __( 'Editor', 'all-in-one-seo-pack' ),
4766
 
4767
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:16
4768
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
4769
- __( 'By default Editors have access to %1$sSEO settings for General Settings, Search Appearance and Social Networks, as well as all settings for individual pages and posts.%2$s', 'all-in-one-seo-pack' ),
4770
 
4771
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:22
4772
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
4773
- __( 'By default Authors have access to %1$sSEO settings for individual pages and posts that they already have permission to edit.%2$s', 'all-in-one-seo-pack' ),
4774
 
4775
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:25
4776
- __( 'Contributor', 'all-in-one-seo-pack' ),
4777
 
4778
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:28
4779
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
4780
- __( 'By default Contributors have access to %1$sSEO settings for individual pages and posts that they already have permission to edit.%2$s', 'all-in-one-seo-pack' ),
4781
 
4782
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:31
4783
- __( 'SEO Manager', 'all-in-one-seo-pack' ),
4784
 
4785
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:34
4786
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
4787
- __( 'By default SEO Managers have access to %1$sSEO settings for General Settings, Redirections, and individual pages and posts.%2$s', 'all-in-one-seo-pack' ),
4788
 
4789
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:37
4790
- __( 'SEO Editor', 'all-in-one-seo-pack' ),
 
4791
 
4792
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:40
4793
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
4794
- __( 'By default SEO Editors have access to %1$sSEO settings for individual pages and posts.%2$s', 'all-in-one-seo-pack' ),
4795
 
4796
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:45
4797
- /* Translators: 1 - The plugin name ("All in One SEO") */
4798
- __( 'By default, only users with an Administrator role have permission to manage %1$s within your WordPress admin area. With Access Controls, though, you can easily extend specific access permissions to other user roles.', 'all-in-one-seo-pack' ),
4799
 
4800
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:46
4801
- __( 'Access Control Settings', 'all-in-one-seo-pack' ),
4802
 
4803
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:57
4804
- __( 'By default the %1$s role %2$shas no access%3$s to %4$s settings.', 'all-in-one-seo-pack' ),
 
4805
 
4806
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:7
4807
- __( 'Administrator', 'all-in-one-seo-pack' ),
 
 
4808
 
4809
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:139
4810
- __( 'Taxonomy priority:', 'all-in-one-seo-pack' ),
 
4811
 
4812
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:140
4813
- __( 'Select a taxonomy', 'all-in-one-seo-pack' ),
4814
 
4815
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:141
4816
- __( 'Choose taxonomy that should have a priority for this post type.', 'all-in-one-seo-pack' ),
4817
 
4818
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:142
4819
- __( 'Show post type archive link', 'all-in-one-seo-pack' ),
4820
 
4821
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:143
4822
- __( 'Show taxonomy link', 'all-in-one-seo-pack' ),
4823
 
4824
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:146
4825
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Taxonomies.vue:108
4826
- __( 'Show parent item link', 'all-in-one-seo-pack' ),
4827
 
4828
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:147
4829
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Taxonomies.vue:109
4830
- __( 'Single item template', 'all-in-one-seo-pack' ),
4831
 
4832
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:148
4833
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Taxonomies.vue:110
4834
- __( 'Parent item template', 'all-in-one-seo-pack' ),
4835
 
4836
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:37
4837
- __( 'Date Archives', 'all-in-one-seo-pack' ),
 
4838
 
4839
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:43
4840
- __( 'Search Archives', 'all-in-one-seo-pack' ),
4841
-
4842
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:55
4843
- __( 'Author Archives', 'all-in-one-seo-pack' ),
4844
 
4845
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:61
4846
- __( 'Blog Archive', 'all-in-one-seo-pack' ),
 
4847
 
4848
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:67
4849
- __( 'Post Type Archives', 'all-in-one-seo-pack' ),
4850
 
4851
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:71
4852
- __( 'Show Paged Breadcrumb', 'all-in-one-seo-pack' ),
4853
 
4854
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:72
4855
- __( 'Show a breadcrumb for the current page.', 'all-in-one-seo-pack' ),
4856
 
4857
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:74
4858
- __( 'Format the label used for the page link.', 'all-in-one-seo-pack' ),
4859
 
4860
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:75
4861
- __( 'Unselected Taxonomy Terms', 'all-in-one-seo-pack' ),
4862
 
4863
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:76
4864
- __( 'Show/hide parent terms that are not explicitly selected in your post.', 'all-in-one-seo-pack' ),
4865
 
4866
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:255
4867
- __( 'Reset / Restore Settings', 'all-in-one-seo-pack' ),
4868
 
4869
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:256
4870
- __( 'Select Settings', 'all-in-one-seo-pack' ),
4871
 
4872
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:257
4873
- __( 'Select settings that you would like to reset:', 'all-in-one-seo-pack' ),
4874
 
4875
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:258
4876
- __( 'Reset Selected Settings to Default', 'all-in-one-seo-pack' ),
4877
 
4878
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:259
4879
- __( 'Your settings have been reset successfully!', 'all-in-one-seo-pack' ),
4880
 
4881
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:260
4882
- __( 'Are you sure you want to reset the selected settings to default?', 'all-in-one-seo-pack' ),
 
4883
 
4884
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:262
4885
- /* Translators: 1 - Opening bold tag. 2 - Closing bold tag. */
4886
- __( 'This action cannot be undone. Before taking this action, we recommend that you make a %1$sfull website backup first%2$s.', 'all-in-one-seo-pack' ),
4887
 
4888
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:263
4889
- __( 'Yes, I have a backup and want to reset the settings', 'all-in-one-seo-pack' ),
4890
 
4891
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:264
4892
- __( 'No, I need to make a backup', 'all-in-one-seo-pack' ),
4893
 
4894
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:266
4895
- __( 'Bad Bot Blocker Logs', 'all-in-one-seo-pack' ),
4896
 
4897
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:267
4898
- __( 'Cleared', 'all-in-one-seo-pack' ),
 
4899
 
4900
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:268
4901
- __( 'Clear Bad Bot Blocker Logs', 'all-in-one-seo-pack' ),
4902
 
4903
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:270
4904
- __( 'Clear 404 Logs', 'all-in-one-seo-pack' ),
4905
 
4906
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:272
4907
- __( 'Clear Redirect Logs', 'all-in-one-seo-pack' ),
4908
 
4909
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:274
4910
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
4911
- __( 'All %1$s Settings', 'all-in-one-seo-pack' ),
4912
 
4913
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:275
4914
- __( 'Log sizes may fluctuate and not always be 100% accurate since the results can be cached. Also after clearing a log, it may not show as "0" since database tables also include additional information such as indexes that we don\'t clear.', 'all-in-one-seo-pack' ),
4915
 
4916
- // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:42
4917
- __( 'Edit .htaccess', 'all-in-one-seo-pack' ),
 
4918
 
4919
- // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:44
4920
- /* Translators: 1 - Opening bold tag, 2 - Closing bold tag. */
4921
- __( 'This allows you to edit the .htaccess file for your site. All WordPress sites on an Apache server have a .htaccess file and we have provided you with a convenient way of editing it. Care should always be taken when editing important files from within WordPress as an incorrect change could cause WordPress to become inaccessible. %1$sBe sure to make a backup before making changes and ensure that you have FTP access to your web server and know how to access and edit files via FTP.%2$s', 'all-in-one-seo-pack' ),
4922
 
4923
- // Reference: src/vue/pages/tools/views/ImportExport.vue:36
4924
- __( 'Export / Backup Settings', 'all-in-one-seo-pack' ),
4925
 
4926
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:242
4927
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
4928
- __( 'The robots.txt editor in %1$s allows you to set up a robots.txt file for your site that will override the default robots.txt file that WordPress creates. By creating a robots.txt file with %2$s you have greater control over the instructions you give web crawlers about your site.', 'all-in-one-seo-pack' ),
4929
 
4930
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:244
4931
- /* Translators: 1 - The plugin name ("All in One SEO"). */
4932
- __( 'Just like WordPress, %1$s generates a dynamic file so there is no static file to be found on your server. The content of the robots.txt file is stored in your WordPress database.', 'all-in-one-seo-pack' ),
4933
 
4934
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:245
4935
- __( 'Enable Custom Robots.txt', 'all-in-one-seo-pack' ),
 
4936
 
4937
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:246
4938
- __( 'Duplicate or invalid entries have been detected! Please check your rules and try again.', 'all-in-one-seo-pack' ),
4939
 
4940
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:248
4941
- __( 'Rule', 'all-in-one-seo-pack' ),
4942
 
4943
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:249
4944
- __( 'Directory Path', 'all-in-one-seo-pack' ),
4945
 
4946
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:250
4947
- __( 'Allow', 'all-in-one-seo-pack' ),
4948
 
4949
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:251
4950
- __( 'Disallow', 'all-in-one-seo-pack' ),
4951
 
4952
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:252
4953
- __( 'Add Rule', 'all-in-one-seo-pack' ),
4954
 
4955
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:253
4956
- __( 'Delete Rule', 'all-in-one-seo-pack' ),
4957
 
4958
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:254
4959
- __( 'Robots.txt Preview:', 'all-in-one-seo-pack' ),
4960
 
4961
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:255
4962
- __( 'Open Robots.txt', 'all-in-one-seo-pack' ),
 
4963
 
4964
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:257
4965
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
4966
- __( '%1$s has detected a physical robots.txt file in the root folder of your WordPress installation. We recommend removing this file as it could cause conflicts with WordPress\' dynamically generated one. %2$s can import this file and delete it, or you can simply delete it.', 'all-in-one-seo-pack' ),
4967
 
4968
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:258
4969
- __( 'Import and Delete', 'all-in-one-seo-pack' ),
4970
 
4971
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:290
4972
- /* Translators: 1 - The url to the main site. */
4973
- __( 'This site is running in a sub-directory of your main site located at %1$s. Your robots.txt file should only appear in the root directory of that site.', 'all-in-one-seo-pack' ),
4974
 
4975
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:293
4976
- __( 'It looks like you are missing the proper rewrite rules for the robots.txt file.', 'all-in-one-seo-pack' ),
4977
 
4978
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:297
4979
- /* Translators: 1 - Opening link tag. 2 - Closing link tag. */
4980
- __( 'It appears that your server is running on Apache, so the fix should be as simple as checking the %1$scorrect .htaccess implementation on wordpress.org%2$s.', 'all-in-one-seo-pack' ),
4981
 
4982
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:300
4983
- /* Translators: 1 - Opening link tag, 2 - Closing link tag. */
4984
- __( 'It appears that your server is running on nginx, so the fix will most likely require adding the correct rewrite rules to our nginx configuration. %1$sCheck our documentation for more information%2$s.', 'all-in-one-seo-pack' ),
4985
 
4986
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:67
4987
- __( 'Author name', 'all-in-one-seo-pack' ),
 
4988
 
4989
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:68
4990
- __( 'First name', 'all-in-one-seo-pack' ),
4991
 
4992
- // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:69
4993
- __( 'Last name', 'all-in-one-seo-pack' ),
4994
 
4995
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInImageAlt.js:31
4996
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4997
- __( '%1$s found in image alt attribute(s).', 'all-in-one-seo-pack' ),
4998
 
4999
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInImageAlt.js:40
5000
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
5001
- __( '%1$s in image alt attributes', 'all-in-one-seo-pack' ),
5002
 
5003
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInImageAlt.js:42
5004
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
5005
- __( '%1$s not found in image alt attribute(s). Add an image with your %1$s as alt text.', 'all-in-one-seo-pack' ),
5006
 
5007
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:103
5008
- __( 'Your H2 and H3 subheadings reflects the topic of your copy. Good job!', 'all-in-one-seo-pack' ),
5009
 
5010
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:111
5011
- __( 'Focus Keyphrase in Subheadings', 'all-in-one-seo-pack' ),
5012
 
5013
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:112
5014
- __( 'Use your focus keyphrase more in your H2 and H3 subheadings.', 'all-in-one-seo-pack' ),
5015
 
5016
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:76
5017
- __( 'Use more focus keyphrases in your H2 and H3 subheadings!', 'all-in-one-seo-pack' ),
 
5018
 
5019
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:85
5020
- __( 'More than 75% of your H2 and H3 subheadings reflect the topic of your copy. That\'s too much. Don\'t over-optimize!', 'all-in-one-seo-pack' ),
5021
 
5022
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:94
5023
- __( 'Your H2 or H3 subheading reflects the topic of your copy. Good job!', 'all-in-one-seo-pack' ),
5024
 
5025
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:22
5026
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
5027
- __( '%1$s in introduction', 'all-in-one-seo-pack' ),
5028
 
5029
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:27
5030
- __( 'No content added yet.', 'all-in-one-seo-pack' ),
5031
 
5032
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:42
5033
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
5034
- __( 'Your %1$s appears in the first paragraph. Well done!', 'all-in-one-seo-pack' ),
5035
 
5036
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:52
5037
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
5038
- __( 'Your %1$s does not appear in the first paragraph. Make sure the topic is clear immediately.', 'all-in-one-seo-pack' ),
5039
 
5040
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInContent.js:20
5041
- __( 'Focus Keyphrase found in content.', 'all-in-one-seo-pack' ),
5042
 
5043
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInContent.js:28
5044
- __( 'Focus Keyphrase in content', 'all-in-one-seo-pack' ),
5045
 
5046
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInContent.js:29
5047
- __( 'Focus Keyphrase not found in content.', 'all-in-one-seo-pack' ),
5048
 
5049
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInURL.js:29
5050
- __( 'Focus Keyphrase used in the URL.', 'all-in-one-seo-pack' ),
5051
 
5052
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInURL.js:37
5053
- __( 'Focus Keyphrase in URL', 'all-in-one-seo-pack' ),
5054
 
5055
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInURL.js:38
5056
- __( 'Focus Keyphrase not found in the URL.', 'all-in-one-seo-pack' ),
5057
 
5058
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInDescription.js:19
5059
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
5060
- __( '%1$s in meta description', 'all-in-one-seo-pack' ),
5061
 
5062
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInDescription.js:25
5063
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
5064
- __( '%1$s found in meta description.', 'all-in-one-seo-pack' ),
5065
 
5066
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInDescription.js:35
5067
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
5068
- __( '%1$s not found in meta description.', 'all-in-one-seo-pack' ),
5069
 
5070
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseBeginningTitle.js:18
5071
- __( 'Focus Keyphrase used at the beginning of SEO title.', 'all-in-one-seo-pack' ),
5072
 
5073
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseBeginningTitle.js:26
5074
- __( 'Focus Keyphrase at the beginning of SEO Title', 'all-in-one-seo-pack' ),
5075
 
5076
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseBeginningTitle.js:27
5077
- __( 'Focus Keyphrase doesn\'t appear at the beginning of SEO title.', 'all-in-one-seo-pack' ),
5078
 
5079
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInTitle.js:20
5080
- __( 'Focus Keyphrase found in SEO title.', 'all-in-one-seo-pack' ),
5081
 
5082
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInTitle.js:28
5083
- __( 'Focus Keyphrase in SEO title', 'all-in-one-seo-pack' ),
5084
 
5085
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseInTitle.js:29
5086
- __( 'Focus Keyphrase not found in SEO title.', 'all-in-one-seo-pack' ),
5087
 
5088
- // Reference: src/vue/pages/settings/views/Advanced.vue:284
5089
- __( 'TruSEO Score & Content', 'all-in-one-seo-pack' ),
5090
 
5091
- // Reference: src/vue/pages/settings/views/Advanced.vue:285
5092
- __( 'Enable our TruSEO score to help you optimize your content for maximum traffic.', 'all-in-one-seo-pack' ),
5093
 
5094
- // Reference: src/vue/pages/settings/views/Advanced.vue:286
5095
- __( 'Headline Analyzer', 'all-in-one-seo-pack' ),
5096
 
5097
- // Reference: src/vue/pages/settings/views/Advanced.vue:287
5098
- __( 'Enable our Headline Analyzer to help you write irrestible headlines and rank better in search results.', 'all-in-one-seo-pack' ),
5099
 
5100
- // Reference: src/vue/pages/settings/views/Advanced.vue:289
5101
- __( 'Post Type Columns', 'all-in-one-seo-pack' ),
5102
 
5103
- // Reference: src/vue/pages/settings/views/Advanced.vue:292
5104
- /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
5105
- __( 'Select which Post Types you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
5106
 
5107
- // Reference: src/vue/pages/settings/views/Advanced.vue:293
5108
- __( 'Usage Tracking', 'all-in-one-seo-pack' ),
 
5109
 
5110
- // Reference: src/vue/pages/settings/views/Advanced.vue:294
5111
- __( 'Admin Bar Menu', 'all-in-one-seo-pack' ),
5112
 
5113
- // Reference: src/vue/pages/settings/views/Advanced.vue:296
5114
- /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
5115
- __( 'This adds %1$s to the admin toolbar for easy access to your SEO settings.', 'all-in-one-seo-pack' ),
5116
 
5117
- // Reference: src/vue/pages/settings/views/Advanced.vue:297
5118
- __( 'Dashboard Widget', 'all-in-one-seo-pack' ),
5119
 
5120
- // Reference: src/vue/pages/settings/views/Advanced.vue:298
5121
- __( 'This displays an SEO News widget on the dashboard.', 'all-in-one-seo-pack' ),
5122
 
5123
- // Reference: src/vue/pages/settings/views/Advanced.vue:299
5124
- __( 'Announcements', 'all-in-one-seo-pack' ),
5125
 
5126
- // Reference: src/vue/pages/settings/views/Advanced.vue:300
5127
- __( 'This allows you to hide plugin announcements and update details.', 'all-in-one-seo-pack' ),
5128
 
5129
- // Reference: src/vue/pages/settings/views/Advanced.vue:301
5130
- __( 'Automatic Updates', 'all-in-one-seo-pack' ),
5131
 
5132
- // Reference: src/vue/pages/settings/views/Advanced.vue:302
5133
- __( 'All (recommended)', 'all-in-one-seo-pack' ),
5134
 
5135
- // Reference: src/vue/pages/settings/views/Advanced.vue:303
5136
- __( 'You are getting the latest features, bugfixes, and security updates as they are released.', 'all-in-one-seo-pack' ),
5137
 
5138
- // Reference: src/vue/pages/settings/views/Advanced.vue:304
5139
- __( 'Minor Only', 'all-in-one-seo-pack' ),
5140
 
5141
- // Reference: src/vue/pages/settings/views/Advanced.vue:305
5142
- __( 'You are getting bugfixes and security updates, but not major features.', 'all-in-one-seo-pack' ),
5143
 
5144
- // Reference: src/vue/pages/settings/views/Advanced.vue:307
5145
- __( 'You will need to manually update everything.', 'all-in-one-seo-pack' ),
5146
 
5147
- // Reference: src/vue/pages/settings/views/Advanced.vue:308
5148
- __( 'By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test.', 'all-in-one-seo-pack' ),
5149
 
5150
- // Reference: src/vue/pages/settings/views/Advanced.vue:312
5151
- /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
5152
- __( 'This Admin Bar feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
5153
 
5154
- // Reference: src/vue/pages/settings/views/Advanced.vue:314
5155
- /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
5156
- __( 'The Dashboard Widget feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
5157
 
5158
- // Reference: src/vue/pages/settings/views/Advanced.vue:315
5159
- __( 'Taxonomy Columns', 'all-in-one-seo-pack' ),
5160
 
5161
- // Reference: src/vue/pages/settings/views/Advanced.vue:318
5162
- /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
5163
- __( 'Select which Taxonomies you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
5164
 
5165
- // Reference: src/vue/pages/settings/views/Advanced.vue:322
5166
- /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
5167
- __( 'Uninstall %1$s', 'all-in-one-seo-pack' ),
5168
 
5169
- // Reference: src/vue/pages/settings/views/Advanced.vue:324
5170
- /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
5171
- __( 'Check this if you would like to remove ALL %1$s data upon plugin deletion. All settings and SEO data will be unrecoverable.', 'all-in-one-seo-pack' ),
5172
 
5173
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseLength.js:23
5174
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
5175
- __( '%1$s length', 'all-in-one-seo-pack' ),
5176
 
5177
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseLength.js:29
5178
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
5179
- __( 'No %1$s was set. Set a %1$s in order to calculate your SEO score.', 'all-in-one-seo-pack' ),
5180
 
5181
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseLength.js:50
5182
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
5183
- __( '%1$s is slightly long. Try to make it shorter.', 'all-in-one-seo-pack' ),
5184
 
5185
- // Reference: src/vue/plugins/truSEO/analysis/keyphraseLength.js:60
5186
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
5187
- __( '%1$s is too long. Try to make it shorter.', 'all-in-one-seo-pack' ),
5188
 
5189
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:237
5190
- /* Translators: 1 - Learn more link. */
5191
- __( 'Use the following shortcode to display the current breadcrumbs. %1$s', 'all-in-one-seo-pack' ),
5192
 
5193
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:245
5194
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Learn More" link. */
5195
- __( 'To add this block, edit a page or post and search for the "%1$s - Breadcrumbs" block. %2$s', 'all-in-one-seo-pack' ),
5196
 
5197
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:254
5198
- /* Translators: 1 - Learn more link. */
5199
- __( 'Use the following PHP code anywhere in your theme (in the loop) to display the breadcrumbs. %1$s', 'all-in-one-seo-pack' ),
5200
 
5201
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:262
5202
- /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO"), 4 - "Learn More" link. */
5203
- __( 'To add this widget, visit the %1$swidgets page%2$s and look for the "%3$s - Breadcrumbs" widget. %4$s', 'all-in-one-seo-pack' ),
5204
 
5205
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:272
5206
- /* Translators: 1 - The plugin name ("AIOSEO"). */
5207
- __( 'Breadcrumbs are an essential part of SEO. By default %1$s will automatically add breadcrumbs to the schema markup that we add to your site and you don\'t need to make any changes for that to work. Breadcrumbs can also be used as a secondary navigation system that tells users where they are on a website relative to the homepage.', 'all-in-one-seo-pack' ),
5208
 
5209
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:274
5210
- __( 'The purpose of breadcrumb navigation is to help users navigate around your website. It also helps search engines understand the structure and hierarchy of links on a web page.', 'all-in-one-seo-pack' ),
5211
 
5212
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:275
5213
- __( 'Enable Breadcrumbs', 'all-in-one-seo-pack' ),
5214
 
5215
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:276
5216
- __( 'Show Breadcrumbs on Your Website', 'all-in-one-seo-pack' ),
5217
 
5218
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:277
5219
- __( 'Breadcrumb Settings', 'all-in-one-seo-pack' ),
5220
 
5221
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:280
5222
- /* Translators: 1 - The plugin name ("AIOSEO"). */
5223
- __( 'These settings will affect all the breadcrumbs displayed by %1$s throughout your site.', 'all-in-one-seo-pack' ),
5224
 
5225
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:282
5226
- __( 'Separator', 'all-in-one-seo-pack' ),
5227
 
5228
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:283
5229
- __( 'Homepage Link', 'all-in-one-seo-pack' ),
5230
 
5231
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:284
5232
- __( 'Homepage label', 'all-in-one-seo-pack' ),
5233
 
5234
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:285
5235
- __( 'Label used for homepage link (first item) in breadcrumbs.', 'all-in-one-seo-pack' ),
5236
 
5237
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:286
5238
- __( 'Breadcrumb Prefix', 'all-in-one-seo-pack' ),
5239
 
5240
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:287
5241
- __( 'Prefix for breadcrumb path.', 'all-in-one-seo-pack' ),
5242
 
5243
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:288
5244
- __( 'Archive Format', 'all-in-one-seo-pack' ),
5245
 
5246
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:289
5247
- __( 'Format the label used for archives page.', 'all-in-one-seo-pack' ),
5248
-
5249
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:290
5250
- __( 'Search Result Format', 'all-in-one-seo-pack' ),
5251
 
5252
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:291
5253
- __( 'Format the label used for the search results page.', 'all-in-one-seo-pack' ),
5254
 
5255
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:292
5256
- __( '404 Error Format', 'all-in-one-seo-pack' ),
5257
 
5258
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:293
5259
- __( 'Format the label used for the 404 error page.', 'all-in-one-seo-pack' ),
5260
 
5261
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:294
5262
- __( 'Current Item', 'all-in-one-seo-pack' ),
5263
 
5264
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:295
5265
- __( 'Show current item', 'all-in-one-seo-pack' ),
5266
 
5267
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:296
5268
- __( 'Link current item', 'all-in-one-seo-pack' ),
5269
 
5270
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:297
5271
- __( 'Home', 'all-in-one-seo-pack' ),
5272
 
5273
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:299
5274
- __( 'Subcategory', 'all-in-one-seo-pack' ),
5275
 
5276
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:300
5277
- __( 'Article Title', 'all-in-one-seo-pack' ),
5278
 
5279
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:301
5280
- __( 'search key word goes here', 'all-in-one-seo-pack' ),
5281
 
5282
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:302
5283
- __( 'Category Name', 'all-in-one-seo-pack' ),
5284
 
5285
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:304
5286
- __( 'Category Hierarchy', 'all-in-one-seo-pack' ),
5287
 
5288
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:305
5289
- __( 'Display complete category hierarchy even if not selected on each individual post.', 'all-in-one-seo-pack' ),
5290
 
5291
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:307
5292
- __( 'Blog Page Title', 'all-in-one-seo-pack' ),
5293
 
5294
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:308
5295
- __( 'Show Blog Home', 'all-in-one-seo-pack' ),
 
5296
 
5297
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:49
5298
- __( 'License', 'all-in-one-seo-pack' ),
5299
 
5300
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:59
5301
- __( 'Setup Wizard', 'all-in-one-seo-pack' ),
5302
 
5303
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:62
5304
- /* Translators: 1 - The plugin name ("All in One SEO") */
5305
- __( 'Use our configuration wizard to properly set up %1$s with your WordPress website.', 'all-in-one-seo-pack' ),
5306
 
5307
- // Reference: src/vue/pages/settings/views/RssContent.vue:91
5308
- __( 'Automatically add content to your site\'s RSS feed.', 'all-in-one-seo-pack' ),
5309
 
5310
- // Reference: src/vue/pages/settings/views/RssContent.vue:92
5311
- __( 'This feature is used to automatically add content to your site\'s RSS feed. More specifically, it allows you to add links back to your blog and your blog posts so scrapers will automatically add these links too. This helps search engines identify you as the original source of the content.', 'all-in-one-seo-pack' ),
5312
 
5313
- // Reference: src/vue/pages/settings/views/RssContent.vue:94
5314
- __( 'RSS Content Settings', 'all-in-one-seo-pack' ),
5315
 
5316
- // Reference: src/vue/pages/settings/views/RssContent.vue:95
5317
- __( 'Open Your RSS Feed', 'all-in-one-seo-pack' ),
 
5318
 
5319
- // Reference: src/vue/pages/settings/views/RssContent.vue:96
5320
- __( 'RSS Before Content', 'all-in-one-seo-pack' ),
5321
 
5322
- // Reference: src/vue/pages/settings/views/RssContent.vue:97
5323
- __( 'RSS After Content', 'all-in-one-seo-pack' ),
 
5324
 
5325
- // Reference: src/vue/pages/settings/views/RssContent.vue:98
5326
- __( 'Add content before each post in your site feed.', 'all-in-one-seo-pack' ),
5327
 
5328
- // Reference: src/vue/pages/settings/views/RssContent.vue:99
5329
- __( 'Add content after each post in your site feed.', 'all-in-one-seo-pack' ),
5330
 
5331
- // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:64
5332
- __( 'Upgrade to Pro and Unlock Breadcrumb Templates', 'all-in-one-seo-pack' ),
5333
 
5334
- // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:65
5335
- __( 'Breadcrumb Templates are only available', 'all-in-one-seo-pack' ),
5336
 
5337
- // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:67
5338
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
5339
- __( 'for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
5340
 
5341
- // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:68
5342
- __( 'Our template editor will allow you to easily customize how breadcrumbs are displayed on your site based on each post type or taxonomy.', 'all-in-one-seo-pack' ),
5343
 
5344
- // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:71
5345
- __( 'Custom HTML templates', 'all-in-one-seo-pack' ),
5346
 
5347
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:245
5348
- __( 'Miscellaneous Verification', 'all-in-one-seo-pack' ),
5349
 
5350
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:247
5351
- /* Translators: 1 - "<head></head>". */
5352
- __( 'The code above will be added between the %1$s tags on every page on your website.', 'all-in-one-seo-pack' ),
5353
 
5354
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:248
5355
- __( 'Webmaster Tools Verification', 'all-in-one-seo-pack' ),
5356
 
5357
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:252
5358
- __( 'Success!', 'all-in-one-seo-pack' ),
5359
 
5360
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:256
5361
- /* Translators: 1 - The name of one of our partner plugins. */
5362
- __( 'Google Analytics is now handled by %1$s.', 'all-in-one-seo-pack' ),
5363
 
5364
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:257
5365
- __( 'Manage Google Analytics', 'all-in-one-seo-pack' ),
5366
 
5367
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:258
5368
- __( 'Get Started', 'all-in-one-seo-pack' ),
5369
 
5370
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:269
5371
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
5372
- __( 'We recommend using the %1$sFree MonsterInsights%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
5373
 
5374
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:273
5375
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
5376
- __( 'We recommend using the %1$sFree ExactMetrics%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
5377
 
5378
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:307
5379
- __( 'Google Verification Code', 'all-in-one-seo-pack' ),
5380
 
5381
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:309
5382
- /* Translators: 1 - "Google Search Console". */
5383
- __( 'Google Search Console', 'all-in-one-seo-pack' ),
5384
 
5385
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:309
5386
- /* Translators: 1 - "Google Search Console". */
5387
- __( 'Get your Google verification code in %1$s.', 'all-in-one-seo-pack' ),
5388
 
5389
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:320
5390
- __( 'Bing Verification Code', 'all-in-one-seo-pack' ),
5391
 
5392
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:322
5393
- /* Translators: 1 - "Bing Webmaster Tools". */
5394
- __( 'Bing Webmaster Tools', 'all-in-one-seo-pack' ),
5395
 
5396
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:322
5397
- /* Translators: 1 - "Bing Webmaster Tools". */
5398
- __( 'Get your Bing verification code in %1$s.', 'all-in-one-seo-pack' ),
5399
 
5400
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:333
5401
- __( 'Yandex Verification Code', 'all-in-one-seo-pack' ),
5402
 
5403
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:335
5404
- /* Translators: 1 - "Yandex Webmaster Tools". */
5405
- __( 'Yandex Webmaster Tools', 'all-in-one-seo-pack' ),
5406
 
5407
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:335
5408
- /* Translators: 1 - "Yandex Webmaster Tools". */
5409
- __( 'Get your Yandex verification code in %1$s.', 'all-in-one-seo-pack' ),
5410
 
5411
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:346
5412
- __( 'Baidu Verification Code', 'all-in-one-seo-pack' ),
5413
 
5414
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:348
5415
- /* Translators: 1 - "Baidu Webmaster Tools". */
5416
- __( 'Baidu Webmaster Tools', 'all-in-one-seo-pack' ),
5417
 
5418
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:348
5419
- /* Translators: 1 - "Baidu Webmaster Tools". */
5420
- __( 'Get your Baidu verification code in %1$s.', 'all-in-one-seo-pack' ),
5421
 
5422
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:354
5423
- __( 'Pinterest Site Verification', 'all-in-one-seo-pack' ),
5424
 
5425
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:361
5426
- /* Translators: 1 - "Pinterest account". */
5427
- __( 'Get your Pinterest verification code in your %1$s.', 'all-in-one-seo-pack' ),
5428
 
5429
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:361
5430
- /* Translators: 1 - "Pinterest account". */
5431
- __( 'Pinterest account', 'all-in-one-seo-pack' ),
5432
 
5433
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:392
5434
- __( 'Google Analytics', 'all-in-one-seo-pack' ),
5435
 
5436
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:399
5437
- __( 'Google Analytics ID', 'all-in-one-seo-pack' ),
5438
 
5439
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:401
5440
- /* Translators: 1 - "Google Analytics account". */
5441
- __( 'Get your Google Analytics ID in your %1$s.', 'all-in-one-seo-pack' ),
5442
 
5443
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:401
5444
- /* Translators: 1 - "Google Analytics account". */
5445
- __( 'Google Analytics account', 'all-in-one-seo-pack' ),
5446
 
5447
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:407
5448
- __( 'Enable Advanced Analytics Options', 'all-in-one-seo-pack' ),
5449
 
5450
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:411
5451
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
5452
- __( 'This enables Advanced Google Analytics options.%1$s%2$s', 'all-in-one-seo-pack' ),
5453
 
5454
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:416
5455
- __( 'Tracking Domain', 'all-in-one-seo-pack' ),
5456
 
5457
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:419
5458
- /* Translators: 1 - "http://", 2 - A link to our documentation, 3 - HTML line break tag. */
5459
- __( 'Enter your domain name without the %1$s to set your cookie domain.%2$s%3$s', 'all-in-one-seo-pack' ),
5460
 
5461
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:424
5462
- __( 'Track Multiple Domains', 'all-in-one-seo-pack' ),
5463
 
5464
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:432
5465
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
5466
- __( 'Use this option to enable tracking of multiple or additional domains.%1$s%2$s', 'all-in-one-seo-pack' ),
5467
 
5468
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:437
5469
- __( 'Additional Domains', 'all-in-one-seo-pack' ),
5470
 
5471
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:441
5472
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
5473
- __( 'Add a list of additional domains to track here. Enter one domain name per line without the http://.%1$s%2$s', 'all-in-one-seo-pack' ),
5474
 
5475
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:446
5476
- __( 'Anonymize IP Addresses', 'all-in-one-seo-pack' ),
5477
 
5478
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:454
5479
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
5480
- __( 'This enables support for IP Anonymization in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
5481
 
5482
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:459
5483
- __( 'Display Advertiser Tracking', 'all-in-one-seo-pack' ),
5484
 
5485
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:467
5486
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
5487
- __( 'This enables support for the Display Advertiser Features in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
5488
 
5489
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:472
5490
- __( 'Exclude Users from Tracking', 'all-in-one-seo-pack' ),
5491
 
5492
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:483
5493
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
5494
- __( 'Exclude logged-in users from Google Analytics tracking by role.%1$s%2$s', 'all-in-one-seo-pack' ),
5495
 
5496
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:488
5497
- __( 'Enhanced Link Attribution', 'all-in-one-seo-pack' ),
5498
 
5499
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:496
5500
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
5501
- __( 'This enables support for the Enhanced Link Attribution in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
5502
 
5503
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:501
5504
- __( 'Track Outbound Links', 'all-in-one-seo-pack' ),
 
5505
 
5506
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:509
5507
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
5508
- __( 'This enables tracking outbound links with Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
5509
 
5510
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:514
5511
- __( 'Enhanced Ecommerce', 'all-in-one-seo-pack' ),
5512
 
5513
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:522
5514
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
5515
- __( 'This enables support for the Enhanced Ecommerce in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
5516
 
5517
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:527
5518
- __( 'Track Outbound Forms', 'all-in-one-seo-pack' ),
5519
 
5520
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:541
5521
- __( 'Track Events', 'all-in-one-seo-pack' ),
5522
 
5523
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:555
5524
- __( 'Track URL Changes', 'all-in-one-seo-pack' ),
5525
 
5526
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:569
5527
- __( 'Track Page Visibility', 'all-in-one-seo-pack' ),
5528
 
5529
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:583
5530
- __( 'Track Media Queries', 'all-in-one-seo-pack' ),
5531
 
5532
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:597
5533
- __( 'Track Elements Visibility', 'all-in-one-seo-pack' ),
5534
 
5535
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:611
5536
- __( 'Track Page Scrolling', 'all-in-one-seo-pack' ),
5537
 
5538
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:625
5539
- __( 'Track Facebook and Twitter', 'all-in-one-seo-pack' ),
 
5540
 
5541
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:639
5542
- __( 'Ensure URL Consistency', 'all-in-one-seo-pack' ),
5543
 
5544
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:653
5545
- __( 'Google Tag Manager Container ID', 'all-in-one-seo-pack' ),
5546
 
5547
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:657
5548
- /* Translators: 1 - "Google Tag Manager account". */
5549
- __( 'Get your Google Tag Manager ID in your %1$s.', 'all-in-one-seo-pack' ),
5550
 
5551
- // Reference: src/vue/pages/seo-analysis/router/paths.js:19
5552
- __( 'SEO Audit Checklist', 'all-in-one-seo-pack' ),
5553
 
5554
- // Reference: src/vue/pages/seo-analysis/router/paths.js:28
5555
- __( 'Analyze Competitor Site', 'all-in-one-seo-pack' ),
5556
 
5557
- // Reference: src/vue/pages/local-seo/router/paths.js:19
5558
- __( 'Locations', 'all-in-one-seo-pack' ),
5559
 
5560
- // Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:6
5561
- __( 'Focus keyphrase', 'all-in-one-seo-pack' ),
5562
 
5563
- // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:111
5564
- __( 'Enter Competitor URL', 'all-in-one-seo-pack' ),
5565
 
5566
- // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:112
5567
- __( 'Perform in-depth SEO Analysis of your competitor\'s website.', 'all-in-one-seo-pack' ),
5568
 
5569
- // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:113
5570
- __( 'Analyze', 'all-in-one-seo-pack' ),
5571
 
5572
- // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:114
5573
- __( 'Please enter a valid URL.', 'all-in-one-seo-pack' ),
5574
 
5575
- // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:67
5576
- __( 'Complete SEO Checklist', 'all-in-one-seo-pack' ),
5577
 
5578
- // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:80
5579
- __( 'All Items', 'all-in-one-seo-pack' ),
5580
 
5581
- // Reference: src/vue/pages/local-seo/views/OpeningHours.vue:31
5582
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:282
5583
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:218
5584
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:294
5585
- __( 'Opening Hours Settings', 'all-in-one-seo-pack' ),
5586
 
5587
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:101
5588
- // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:128
5589
- __( 'Local business information may be displayed when users search for businesses on Google search or Google Maps. Google decides on a per search basis whether to display this information or not and it’s completely automated.', 'all-in-one-seo-pack' ),
5590
 
5591
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:102
5592
- // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:114
5593
- __( 'Display Location Info', 'all-in-one-seo-pack' ),
5594
 
5595
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:115
5596
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:68
5597
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:303
5598
- __( 'Upgrade to Pro and Unlock Local SEO', 'all-in-one-seo-pack' ),
5599
 
5600
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:117
5601
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:305
5602
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
5603
- __( 'Local SEO is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
5604
 
5605
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:92
5606
- __( 'Local Business Schema', 'all-in-one-seo-pack' ),
5607
 
5608
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:93
5609
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:61
5610
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:277
5611
- // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:110
5612
- __( 'Multiple Locations', 'all-in-one-seo-pack' ),
5613
 
5614
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:94
5615
- __( 'Business Info and Location blocks, widgets and shortcodes', 'all-in-one-seo-pack' ),
5616
 
5617
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:95
5618
- __( 'Detailed Address, Contact and Payment Info', 'all-in-one-seo-pack' ),
5619
 
5620
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:98
5621
- // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:107
5622
- __( 'Locations Settings', 'all-in-one-seo-pack' ),
5623
 
5624
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:58
5625
- __( 'Google Places Support', 'all-in-one-seo-pack' ),
5626
 
5627
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:59
5628
- __( 'Google Reviews', 'all-in-one-seo-pack' ),
5629
 
5630
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:60
5631
- __( 'Driving Directions', 'all-in-one-seo-pack' ),
5632
 
5633
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:64
5634
- // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:102
5635
- // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:50
5636
- __( 'Google Maps API Key', 'all-in-one-seo-pack' ),
5637
 
5638
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:65
5639
- // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:51
5640
- __( 'Integrating with Google Maps will allow your users to find exactly where your business is located. Our interactive maps let them see your Google Reviews and get directions directly from your site. Create multiple maps for use with multiple locations.', 'all-in-one-seo-pack' ),
5641
 
5642
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:66
5643
- // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:104
5644
- // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:52
5645
- __( 'API Key', 'all-in-one-seo-pack' ),
5646
 
5647
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:67
5648
- // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:106
5649
- // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:53
5650
- __( 'Map Settings', 'all-in-one-seo-pack' ),
5651
 
5652
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:70
5653
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
5654
- __( 'Local SEO Maps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
5655
 
5656
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:71
5657
- __( 'Show your location to your visitors using an interactive Google Map. Create multiple maps for use with multiple locations.', 'all-in-one-seo-pack' ),
5658
 
5659
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:77
5660
- // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:116
5661
- // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:59
5662
- /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO") */
5663
- __( 'To add this widget, visit the %1$swidgets page%2$s and look for the "%3$s Local - Map" widget.', 'all-in-one-seo-pack' ),
5664
 
5665
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:82
5666
- // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:121
5667
- // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:64
5668
- /* Translators: 1 - Learn more link. */
5669
- __( 'Use the following shortcode to display the location map. %1$s', 'all-in-one-seo-pack' ),
5670
 
5671
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:87
5672
- // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:126
5673
- // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:69
5674
- /* Translators: 1 - The plugin short name ("AIOSEO") */
5675
- __( 'To add this block, edit a page or post and search for the "%1$s Local - Map" block.', 'all-in-one-seo-pack' ),
5676
 
5677
- // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:92
5678
- // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:131
5679
- // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:74
5680
- /* Translators: 1 - Learn more link. */
5681
- __( 'Use the following PHP code anywhere in your theme to display the location map. %1$s', 'all-in-one-seo-pack' ),
5682
 
5683
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:278
5684
- __( 'Opening Hours block, widget and shortcode', 'all-in-one-seo-pack' ),
5685
 
5686
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:283
5687
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:220
5688
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:296
5689
- __( 'Display Opening Hours', 'all-in-one-seo-pack' ),
5690
 
5691
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:285
5692
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:298
5693
- __( 'Closed label', 'all-in-one-seo-pack' ),
5694
 
5695
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:286
5696
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:299
5697
- __( 'Text to display when \'Closed\' setting is checked', 'all-in-one-seo-pack' ),
5698
 
5699
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:287
5700
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:226
5701
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:300
5702
- __( 'Open 24h label', 'all-in-one-seo-pack' ),
5703
 
5704
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:288
5705
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:301
5706
- __( 'Text to display when \'Open 24h\' setting is checked', 'all-in-one-seo-pack' ),
5707
 
5708
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:292
5709
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:305
5710
- __( 'Select your timezone:', 'all-in-one-seo-pack' ),
5711
 
5712
- // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:52
5713
- __( 'Google Maps', 'all-in-one-seo-pack' ),
5714
 
5715
- // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:103
5716
- /* Translators: 1 - Learn more link. */
5717
- __( 'Use the following PHP code anywhere in your theme to display the location info. %1$s', 'all-in-one-seo-pack' ),
5718
 
5719
- // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:109
5720
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
5721
- __( 'Whether your business has multiple locations, or just one, %1$s makes it easy to configure and display relevant information about your local business. You can use the custom-built tools below, or you can use the Locations custom post type (multiple locations only) to generate relevant and necessary information for search engines or for your customers.', 'all-in-one-seo-pack' ),
5722
 
5723
- // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:111
5724
- __( 'Use the %1$sLocations%2$s Post Type in the menu on the left to start adding your locations.', 'all-in-one-seo-pack' ),
5725
 
5726
- // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:113
5727
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
5728
- __( 'Multiple Locations feature is available only for %1$s Pro users. Upgrade to Pro and unlock all %2$s features!', 'all-in-one-seo-pack' ),
5729
 
5730
- // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:88
5731
- /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO") */
5732
- __( 'To add this widget, visit the %1$swidgets page%2$s and look for the "%3$s Local - Business Info" widget.', 'all-in-one-seo-pack' ),
5733
 
5734
- // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:93
5735
- /* Translators: 1 - Learn more link. */
5736
- __( 'Use the following shortcode to display the location info. %1$s', 'all-in-one-seo-pack' ),
5737
 
5738
- // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:98
5739
- /* Translators: 1 - The plugin short name ("AIOSEO") */
5740
- __( 'To add this block, edit a page or post and search for the "%1$s Local - Business Info" block.', 'all-in-one-seo-pack' ),
5741
 
5742
- // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:103
5743
- __( 'Integrating with Google Maps will allow your users to find exactly where your business is located. Our interactive maps let them see your Google Reviews and get directions directly from your site. Create multiple maps for use with multiple locations. %s', 'all-in-one-seo-pack' ),
5744
 
5745
- // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:105
5746
- __( 'A Google API Key is necessary to render your maps. %s', 'all-in-one-seo-pack' ),
5747
 
5748
- // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:107
5749
- __( 'Your API Key is invalid. Please make sure you have set your key correctly. %1$s', 'all-in-one-seo-pack' ),
 
5750
 
5751
- // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:108
5752
- __( 'Your Maps Embed API is not enabled. For a more seamless experience with rich information cards, please enable it in your Google Project. %1$s', 'all-in-one-seo-pack' ),
5753
 
5754
- // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:109
5755
- __( 'Display Map', 'all-in-one-seo-pack' ),
 
5756
 
5757
- // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:110
5758
- __( 'Map Preview', 'all-in-one-seo-pack' ),
5759
 
5760
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:148
5761
- __( 'Advanced Locations Settings', 'all-in-one-seo-pack' ),
5762
 
5763
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:149
5764
- __( 'Locations Permalink', 'all-in-one-seo-pack' ),
 
5765
 
5766
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:150
5767
- __( 'Use custom slug', 'all-in-one-seo-pack' ),
5768
 
5769
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:151
5770
- __( 'Slug is empty or is already taken. Please enter a different one.', 'all-in-one-seo-pack' ),
5771
 
5772
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:152
5773
- __( 'Locations Category Permalink', 'all-in-one-seo-pack' ),
5774
 
5775
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:153
5776
- __( 'Use custom category slug', 'all-in-one-seo-pack' ),
5777
 
5778
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:154
5779
- __( 'Enhanced Search', 'all-in-one-seo-pack' ),
5780
 
5781
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:155
5782
- __( 'Include business locations in site-wide search results. Users searching for street name, zip code or city will now also get your business location(s) in their search results.', 'all-in-one-seo-pack' ),
5783
 
5784
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:156
5785
- __( 'Enhanced Search cannot be enabled on your website because there is a search query conflict. To learn more about this, %1$sclick here%2$s.', 'all-in-one-seo-pack' ),
5786
 
5787
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:157
5788
- __( 'Enhanced Search - Excerpt', 'all-in-one-seo-pack' ),
5789
 
5790
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:158
5791
- __( 'Shows the location address appended to the search result.', 'all-in-one-seo-pack' ),
5792
 
5793
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:159
5794
- __( 'Custom Admin Labels', 'all-in-one-seo-pack' ),
5795
 
5796
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:160
5797
- __( 'With multiple locations, you will have a new menu item in your admin sidebar. By default, this menu item is labeled using the plural term of locations with each single item being called a location. If you like, you may enter custom labels to better match your business.', 'all-in-one-seo-pack' ),
5798
 
5799
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:161
5800
- __( 'Single label', 'all-in-one-seo-pack' ),
5801
 
5802
- // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:162
5803
- __( 'Plural label', 'all-in-one-seo-pack' ),
5804
 
5805
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:199
5806
- /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO"). */
5807
- __( 'To add this widget, visit the %1$swidgets page%2$s and look for the "%3$s Local - Opening Hours" widget.', 'all-in-one-seo-pack' ),
5808
 
5809
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:204
 
 
 
 
 
 
5810
  /* Translators: 1 - Learn more link. */
5811
- __( 'Use the following shortcode to display the opening hours info. %1$s', 'all-in-one-seo-pack' ),
5812
 
5813
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:209
5814
- /* Translators: 1 - The plugin short name ("AIOSEO") */
5815
- __( 'To add this block, edit a page or post and search for the "%1$s Local - Opening Hours" block.', 'all-in-one-seo-pack' ),
5816
 
5817
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:214
 
 
 
 
5818
  /* Translators: 1 - Learn more link. */
5819
- __( 'Use the following PHP code anywhere in your theme to display the opening hours. %1$s', 'all-in-one-seo-pack' ),
5820
 
5821
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:222
5822
- __( 'Default Location Settings', 'all-in-one-seo-pack' ),
5823
 
5824
- // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:225
5825
- __( 'Below are the default settings for all locations, which can be overwritten per %1$slocation%2$s.', 'all-in-one-seo-pack' )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5826
  );
5827
  /* THIS IS THE END OF THE GENERATED FILE */
4
  // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:49
5
  __( '404', 'all-in-one-seo-pack' ),
6
 
7
+ // Reference: src/vue/pages/monsterinsights/views/Main.vue:20
8
+ __( 'Analytics', 'all-in-one-seo-pack' ),
9
+
10
+ // Reference: src/vue/pages/social-networks/router/paths.js:19
11
  __( 'Social Profiles', 'all-in-one-seo-pack' ),
12
 
13
+ // Reference: src/vue/pages/social-networks/router/paths.js:28
14
  __( 'Facebook', 'all-in-one-seo-pack' ),
15
 
16
+ // Reference: src/vue/pages/social-networks/router/paths.js:37
17
  __( 'Twitter', 'all-in-one-seo-pack' ),
18
 
19
+ // Reference: src/vue/pages/social-networks/router/paths.js:46
20
  __( 'Pinterest', 'all-in-one-seo-pack' ),
21
 
22
  // Reference: src/vue/pages/dashboard/router/paths.js:19
23
+ // Reference: src/vue/pages/dashboard/views/Main.vue:211
24
  __( 'Dashboard', 'all-in-one-seo-pack' ),
25
 
26
+ // Reference: src/vue/pages/feature-manager/views/Main.vue:20
27
+ __( 'Feature Manager', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
  // Reference: src/vue/pages/settings/views/Main.vue:29
30
  __( 'General Settings', 'all-in-one-seo-pack' ),
31
 
32
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:128
33
  __( 'Webmaster Tools', 'all-in-one-seo-pack' ),
34
 
35
+ // Reference: src/vue/mixins/ToolsSettings.js:46
36
  __( 'Breadcrumbs', 'all-in-one-seo-pack' ),
37
 
38
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:129
39
  __( 'RSS Content', 'all-in-one-seo-pack' ),
40
 
41
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:138
42
  __( 'Access Control', 'all-in-one-seo-pack' ),
43
 
44
+ // Reference: src/vue/pages/search-appearance/router/paths.js:64
 
 
 
 
45
  __( 'Advanced', 'all-in-one-seo-pack' ),
46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  // Reference: src/vue/pages/local-business-seo/blocks/LocationCategories.js:30
48
  /* Translators: 1 - AIOSEO. */
49
  __( '%1$s Local - Location Categories', 'all-in-one-seo-pack' ),
57
  // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:117
58
  __( 'No %s found', 'all-in-one-seo-pack' ),
59
 
60
+ // Reference: src/vue/pages/local-business-seo/blocks/OpeningHours.js:207
61
  __( 'Display Settings', 'all-in-one-seo-pack' ),
62
 
63
  // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:212
67
  /* Translators: 1 - AIOSEO. */
68
  __( '%1$s Local - Business Info', 'all-in-one-seo-pack' ),
69
 
70
+ // Reference: src/vue/pages/local-business-seo/blocks/Locations.js:46
71
+ /* Translators: 1 - AIOSEO. */
72
+ __( '%1$s Local - Locations', 'all-in-one-seo-pack' ),
73
+
74
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:192
75
+ __( 'Settings', 'all-in-one-seo-pack' ),
76
 
77
  // Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:227
78
  __( 'Please configure the map for this location: %s', 'all-in-one-seo-pack' ),
81
  /* Translators: 1 - AIOSEO. */
82
  __( '%1$s Local - Map', 'all-in-one-seo-pack' ),
83
 
 
 
 
 
 
 
 
84
  // Reference: src/vue/pages/local-business-seo/blocks/OpeningHours.js:46
85
  /* Translators: 1 - AIOSEO. */
86
  __( '%1$s Local - Opening Hours', 'all-in-one-seo-pack' ),
87
 
 
 
 
 
 
 
 
 
 
88
  // Reference: src/vue/standalone/publish-panel/PrePublish.vue:153
89
  __( 'N/A', 'all-in-one-seo-pack' ),
90
 
91
+ // Reference: src/vue/pages/local-seo/router/paths.js:19
92
+ __( 'Locations', 'all-in-one-seo-pack' ),
93
 
94
+ // Reference: src/vue/pages/local-seo/router/paths.js:28
95
+ __( 'Opening Hours', 'all-in-one-seo-pack' ),
96
 
97
+ // Reference: src/vue/pages/local-seo/router/paths.js:37
98
+ __( 'Maps', 'all-in-one-seo-pack' ),
99
 
100
+ // Reference: src/vue/classes/SiteAnalysis.js:119
101
+ __( 'Title:', 'all-in-one-seo-pack' ),
102
 
103
+ // Reference: src/vue/classes/SiteAnalysis.js:125
104
+ __( 'Description:', 'all-in-one-seo-pack' ),
105
 
106
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:216
107
+ __( 'Edit', 'all-in-one-seo-pack' ),
 
 
108
 
109
+ // Reference: src/vue/pages/posts-table/TermApp.vue:117
110
+ __( 'Save', 'all-in-one-seo-pack' ),
111
 
112
+ // Reference: src/vue/pages/posts-table/TermApp.vue:118
113
+ __( 'Cancel', 'all-in-one-seo-pack' ),
114
 
115
+ // Reference: src/vue/pages/posts-table/TermApp.vue:119
116
+ __( 'Please wait...', 'all-in-one-seo-pack' ),
117
 
118
+ // Reference: src/vue/standalone/notifications/App.vue:17
119
+ __( 'You have new notifications!', 'all-in-one-seo-pack' ),
120
 
121
+ // Reference: src/vue/standalone/publish-panel/PrePublish.vue:148
122
+ __( 'Blocked!', 'all-in-one-seo-pack' ),
123
 
124
+ // Reference: src/vue/standalone/publish-panel/PrePublish.vue:163
125
+ __( 'Good!', 'all-in-one-seo-pack' ),
126
 
127
+ // Reference: src/vue/standalone/publish-panel/PrePublish.vue:169
128
+ /* Translators: 1 - How many errors were found. */
129
+ _n_noop( '%1$s error found!', '%1$s errors found!', 'all-in-one-seo-pack' ),
 
 
 
130
 
131
+ // Reference: src/vue/standalone/publish-panel/PrePublish.vue:174
132
+ __( 'No focus keyphrase!', 'all-in-one-seo-pack' ),
 
 
 
 
133
 
134
+ // Reference: src/vue/standalone/publish-panel/PrePublish.vue:217
135
+ __( 'Your post needs improvement!', 'all-in-one-seo-pack' ),
 
 
136
 
137
+ // Reference: src/vue/standalone/publish-panel/PrePublish.vue:218
138
+ __( 'You\'re good to go!', 'all-in-one-seo-pack' ),
 
 
 
 
139
 
140
+ // Reference: src/vue/pages/post-settings/views/General.vue:283
141
+ __( 'Snippet Preview', 'all-in-one-seo-pack' ),
142
 
143
+ // Reference: src/vue/standalone/publish-panel/PrePublish.vue:72
144
+ __( 'Canonical URL', 'all-in-one-seo-pack' ),
145
 
146
+ // Reference: src/vue/standalone/publish-panel/PrePublish.vue:82
147
+ __( 'Visibility', 'all-in-one-seo-pack' ),
148
 
149
+ // Reference: src/vue/pages/dashboard/views/Main.vue:226
150
+ // Reference: src/vue/pages/seo-analysis/views/Main.vue:21
151
+ __( 'SEO Analysis', 'all-in-one-seo-pack' ),
152
 
153
+ // Reference: src/vue/pages/post-settings/views/General.vue:296
154
+ __( 'Readability', 'all-in-one-seo-pack' ),
155
 
156
+ // Reference: src/vue/pages/post-settings/views/General.vue:291
157
+ __( 'Focus Keyphrase', 'all-in-one-seo-pack' ),
158
 
159
+ // Reference: src/vue/router/index.js:71
160
+ __( 'Are you sure you want to leave? you have unsaved changes!', 'all-in-one-seo-pack' ),
161
 
162
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:678
163
+ __( 'General Facebook Settings', 'all-in-one-seo-pack' ),
164
 
165
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:679
166
+ __( 'Enable this feature if you want Facebook and other social media to display a preview with images and a text excerpt when a link to your site is shared.', 'all-in-one-seo-pack' ),
167
 
168
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:680
169
+ __( 'Enable Open Graph Markup', 'all-in-one-seo-pack' ),
170
 
171
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:681
172
+ __( 'Default Post Image Source', 'all-in-one-seo-pack' ),
173
 
174
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:682
175
+ __( 'Default Term Image Source', 'all-in-one-seo-pack' ),
176
 
177
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:94
178
+ __( 'Width', 'all-in-one-seo-pack' ),
179
 
180
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:95
181
+ __( 'Height', 'all-in-one-seo-pack' ),
182
 
183
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:685
184
+ __( 'Post Custom Field Name', 'all-in-one-seo-pack' ),
185
 
186
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:686
187
+ __( 'Term Custom Field Name', 'all-in-one-seo-pack' ),
188
 
189
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:687
190
+ __( 'Default Post Facebook Image', 'all-in-one-seo-pack' ),
 
191
 
192
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:688
193
+ __( 'Default Term Facebook Image', 'all-in-one-seo-pack' ),
194
 
195
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:97
196
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:328
197
+ __( 'Upload or Select Image', 'all-in-one-seo-pack' ),
198
 
199
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:98
200
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:329
201
+ __( 'Paste your image URL or select a new image', 'all-in-one-seo-pack' ),
202
 
203
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:691
204
+ __( 'Minimum size: 200px x 200px, ideal ratio 1.91:1, 8MB max. (eg: 1640px x 856px or 3280px x 1712px for retina screens)', 'all-in-one-seo-pack' ),
 
205
 
206
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:692
207
+ __( 'Home Page Settings', 'all-in-one-seo-pack' ),
208
 
209
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:693
210
+ __( 'The Title of the Page or Site you are Sharing', 'all-in-one-seo-pack' ),
211
 
212
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:695
213
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
214
+ __( 'This is what your page configured with %1$s will look like when shared via Facebook. The site title and description will be automatically added.', 'all-in-one-seo-pack' ),
215
 
216
+ // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:112
217
+ __( 'Image', 'all-in-one-seo-pack' ),
218
 
219
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:697
220
+ __( 'Site Name', 'all-in-one-seo-pack' ),
221
 
222
+ // Reference: src/vue/pages/post-settings/views/General.vue:295
223
+ __( 'Title', 'all-in-one-seo-pack' ),
224
 
225
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:699
226
+ __( 'Use the home page title', 'all-in-one-seo-pack' ),
227
 
228
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:252
229
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:700
230
+ __( 'Click on the tags below to insert variables into your site name.', 'all-in-one-seo-pack' ),
231
 
232
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:701
233
+ __( 'Click on the tags below to insert variables into your home page title.', 'all-in-one-seo-pack' ),
234
 
235
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:702
236
+ __( 'Description', 'all-in-one-seo-pack' ),
237
 
238
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:703
239
+ __( 'Use the home page description', 'all-in-one-seo-pack' ),
240
 
241
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:704
242
+ __( 'Click on the tags below to insert variables into your description.', 'all-in-one-seo-pack' ),
243
 
244
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:101
245
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:331
246
+ __( 'Remove', 'all-in-one-seo-pack' ),
247
 
248
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:146
249
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:440
250
+ __( 'Advanced Settings', 'all-in-one-seo-pack' ),
251
 
252
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:707
253
+ __( 'Facebook Admin ID', 'all-in-one-seo-pack' ),
254
 
255
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:708
256
+ __( 'Facebook App ID', 'all-in-one-seo-pack' ),
 
257
 
258
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:709
259
+ __( 'Facebook Author URL', 'all-in-one-seo-pack' ),
260
 
261
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:710
262
+ __( 'Enter your Facebook Admin ID here. You can enter multiple Facebook Admin IDs by separating them with a comma.', 'all-in-one-seo-pack' ),
263
 
264
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:711
265
+ __( 'The Facebook App ID of the site\'s app. In order to use Facebook Insights, you must add the App ID to your page. Insights lets you view analytics for traffic to your site from Facebook. Find the App ID in your App Dashboard.', 'all-in-one-seo-pack' ),
266
 
267
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:712
268
+ __( 'Will be overriden if the Facebook author URL is present in the individual User Profile.', 'all-in-one-seo-pack' ),
269
 
270
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:713
271
+ __( 'How to get your Facebook Admin ID', 'all-in-one-seo-pack' ),
272
 
273
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:714
274
+ __( 'How to get your Facebook App ID', 'all-in-one-seo-pack' ),
275
 
276
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:715
277
+ __( 'How to get your Facebook Author URL', 'all-in-one-seo-pack' ),
278
 
279
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:716
280
+ __( 'Show Facebook Author', 'all-in-one-seo-pack' ),
 
 
281
 
282
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:717
283
+ __( 'Default Post Type Object Types', 'all-in-one-seo-pack' ),
284
 
285
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:718
286
+ __( 'Default Taxonomy Object Types', 'all-in-one-seo-pack' ),
287
 
288
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:720
289
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - Learn more link. */
290
+ __( 'Default Taxonomy Object Types are only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
291
 
292
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:722
293
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - Learn more link. */
294
+ __( 'Default Term Image Source is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
295
 
296
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:723
297
+ __( 'Automatically Generate Article Tags', 'all-in-one-seo-pack' ),
298
 
299
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:724
300
+ __( 'Use Keywords in Article Tags', 'all-in-one-seo-pack' ),
301
 
302
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:725
303
+ __( 'Use Categories in Article Tags', 'all-in-one-seo-pack' ),
304
 
305
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:726
306
+ __( 'Use Post Tags in Article Tags', 'all-in-one-seo-pack' ),
307
 
308
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:728
309
+ /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
310
+ __( 'The home page settings below have been disabled because you are using a static home page. You can %1$sedit your home page settings%2$s directly to change the title, meta and image.', 'all-in-one-seo-pack' ),
311
 
312
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:244
313
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:729
314
+ __( 'Object Type', 'all-in-one-seo-pack' ),
315
 
316
+ // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:117
317
+ __( 'Address', 'all-in-one-seo-pack' ),
318
 
319
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:323
320
+ __( 'Phone Number', 'all-in-one-seo-pack' ),
321
 
322
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:102
323
+ __( 'Fax Number', 'all-in-one-seo-pack' ),
 
324
 
325
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:103
326
+ __( 'Email Address', 'all-in-one-seo-pack' ),
327
 
328
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:104
329
+ __( 'Show VAT ID', 'all-in-one-seo-pack' ),
330
 
331
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:105
332
+ __( 'Show Tax ID', 'all-in-one-seo-pack' ),
333
 
334
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:106
335
+ __( 'Phone/Fax Country Code', 'all-in-one-seo-pack' ),
336
 
337
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:96
338
+ __( 'Show labels', 'all-in-one-seo-pack' ),
339
 
340
+ // Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:97
341
+ __( 'Show icons', 'all-in-one-seo-pack' ),
342
 
343
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:92
344
+ // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:109
345
+ __( 'Business Info', 'all-in-one-seo-pack' ),
346
 
347
+ // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:110
348
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:321
349
+ __( 'Name', 'all-in-one-seo-pack' ),
350
 
351
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:150
352
+ __( 'Video and News Sitemaps', 'all-in-one-seo-pack' ),
353
 
354
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:151
355
+ __( 'Image SEO Optimization', 'all-in-one-seo-pack' ),
356
 
357
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:146
358
+ __( 'Local Business SEO', 'all-in-one-seo-pack' ),
359
 
360
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:153
361
+ __( 'Advanced WooCommerce', 'all-in-one-seo-pack' ),
362
 
363
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:140
364
+ __( 'SEO for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
 
365
 
366
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:155
367
+ __( 'And many more...', 'all-in-one-seo-pack' ),
 
368
 
369
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:147
370
+ __( 'Activate All Features', 'all-in-one-seo-pack' ),
371
 
372
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:148
373
+ __( 'Deactivate All Features', 'all-in-one-seo-pack' ),
374
 
375
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:149
376
+ __( 'Search for Features...', 'all-in-one-seo-pack' ),
377
 
378
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:151
379
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
380
+ __( 'Upgrade %1$s to Pro and Unlock all Features!', 'all-in-one-seo-pack' ),
381
 
382
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:152
383
+ __( 'Upgrade to Pro and Unlock All Features', 'all-in-one-seo-pack' ),
 
384
 
385
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:153
386
+ __( 'A valid license key is required in order to use our addons.', 'all-in-one-seo-pack' ),
387
 
388
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:154
389
+ __( 'Enter License Key', 'all-in-one-seo-pack' ),
390
 
391
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:155
392
+ __( 'Purchase License', 'all-in-one-seo-pack' ),
 
393
 
394
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:159
395
+ __( 'Globally control the Title attribute and Alt text for images in your content. These attributes are essential for both accessibility and SEO.', 'all-in-one-seo-pack' ),
396
 
397
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:8
398
+ __( 'The Video Sitemap works in much the same way as the XML Sitemap module, it generates an XML Sitemap specifically for video content on your site. Search engines use this information to display rich snippet information in search results.', 'all-in-one-seo-pack' ),
399
 
400
+ // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:8
401
+ __( 'Our Google News Sitemap lets you control which content you submit to Google News and only contains articles that were published in the last 48 hours. In order to submit a News Sitemap to Google, you must have added your site to Google’s Publisher Center and had it approved.', 'all-in-one-seo-pack' ),
 
402
 
403
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:127
404
+ __( 'Local Business schema markup enables you to tell Google about your business, including your business name, address and phone number, opening hours and price range. This information may be displayed as a Knowledge Graph card or business carousel.', 'all-in-one-seo-pack' ),
405
 
406
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:225
407
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 "Pro". */
408
+ __( '%1$s %2$s comes with many additional features to help take your site\'s SEO to the next level!', 'all-in-one-seo-pack' ),
409
 
410
+ // Reference: src/vue/components/common/wizard/CloseAndExit.vue:14
411
+ __( 'Close and Exit Wizard Without Saving', 'all-in-one-seo-pack' ),
 
412
 
413
+ // Reference: src/vue/pages/local-seo/views/OpeningHours.vue:31
414
+ __( 'Opening Hours Settings', 'all-in-one-seo-pack' ),
 
415
 
416
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:174
417
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:276
418
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:219
419
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:295
420
+ __( 'Show Opening Hours', 'all-in-one-seo-pack' ),
421
 
422
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:283
423
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:220
424
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:296
425
+ __( 'Display Opening Hours', 'all-in-one-seo-pack' ),
426
 
427
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:175
428
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:284
429
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:221
430
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:297
431
+ __( 'Labels', 'all-in-one-seo-pack' ),
432
 
433
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:285
434
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:298
435
+ __( 'Closed label', 'all-in-one-seo-pack' ),
436
 
437
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:286
438
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:299
439
+ __( 'Text to display when \'Closed\' setting is checked', 'all-in-one-seo-pack' ),
440
 
441
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:287
442
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:226
443
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:300
444
+ __( 'Open 24h label', 'all-in-one-seo-pack' ),
445
 
446
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:288
447
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:301
448
+ __( 'Text to display when \'Open 24h\' setting is checked', 'all-in-one-seo-pack' ),
449
 
450
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:183
451
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:289
452
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:229
453
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:302
454
+ __( 'Open 24/7', 'all-in-one-seo-pack' ),
455
 
456
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:184
457
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:290
458
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:230
459
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:303
460
+ __( 'Use 24h format', 'all-in-one-seo-pack' ),
461
 
462
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:186
463
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:291
464
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:231
465
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:304
466
+ __( 'Timezone', 'all-in-one-seo-pack' ),
467
 
468
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:292
469
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:305
470
+ __( 'Select your timezone:', 'all-in-one-seo-pack' ),
471
 
472
+ // Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:88
473
+ __( 'Monday', 'all-in-one-seo-pack' ),
474
 
475
+ // Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:89
476
+ __( 'Tuesday', 'all-in-one-seo-pack' ),
 
477
 
478
+ // Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:90
479
+ __( 'Wednesday', 'all-in-one-seo-pack' ),
 
480
 
481
+ // Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:91
482
+ __( 'Thursday', 'all-in-one-seo-pack' ),
483
 
484
+ // Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:92
485
+ __( 'Friday', 'all-in-one-seo-pack' ),
486
 
487
+ // Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:93
488
+ __( 'Saturday', 'all-in-one-seo-pack' ),
489
 
490
+ // Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:94
491
+ __( 'Sunday', 'all-in-one-seo-pack' ),
492
 
493
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:181
494
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:301
495
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:234
496
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:314
497
+ __( 'Open 24h', 'all-in-one-seo-pack' ),
498
 
499
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:178
500
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
501
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:235
502
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:315
503
+ __( 'Closed', 'all-in-one-seo-pack' ),
504
 
505
+ // Reference: src/vue/components/common/wizard/Steps.vue:15
506
+ /* Translators: 1 - The current step count. 2 - The total step count. */
507
+ __( 'Step %1$s of %2$s', 'all-in-one-seo-pack' ),
508
 
509
+ // Reference: src/vue/components/common/Cta.vue:236
510
+ /* Translators: 1 - "Pro". */
511
+ __( 'Upgrade to %1$s', 'all-in-one-seo-pack' ),
512
 
513
+ // Reference: src/vue/components/common/Cta.vue:238
514
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
515
+ __( 'This feature is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
516
 
517
+ // Reference: src/vue/components/common/Cta.vue:241
518
+ __( 'Learn more about all features', 'all-in-one-seo-pack' ),
519
 
520
+ // Reference: src/vue/components/common/Cta.vue:242
521
+ __( 'See all features', 'all-in-one-seo-pack' ),
522
 
523
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:128
524
+ __( 'Local business information may be displayed when users search for businesses on Google search or Google Maps. Google decides on a per search basis whether to display this information or not and it’s completely automated.', 'all-in-one-seo-pack' ),
 
525
 
526
+ // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:114
527
+ __( 'Display Location Info', 'all-in-one-seo-pack' ),
528
 
529
+ // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:111
530
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:272
531
+ __( 'Type', 'all-in-one-seo-pack' ),
532
 
533
+ // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:113
534
+ __( 'URLs', 'all-in-one-seo-pack' ),
535
 
536
+ // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:119
537
+ __( 'IDs', 'all-in-one-seo-pack' ),
538
 
539
+ // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:121
540
+ __( 'Area Served', 'all-in-one-seo-pack' ),
541
 
542
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:330
543
+ __( 'Minimum size: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or WEBP format.', 'all-in-one-seo-pack' ),
 
544
 
545
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:115
546
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:303
547
+ __( 'Upgrade to Pro and Unlock Local SEO', 'all-in-one-seo-pack' ),
548
 
549
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:117
550
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:305
551
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
552
+ __( 'Local SEO is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
553
 
554
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:92
555
+ __( 'Local Business Schema', 'all-in-one-seo-pack' ),
556
 
557
+ // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:110
558
+ __( 'Multiple Locations', 'all-in-one-seo-pack' ),
 
 
559
 
560
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:94
561
+ __( 'Business Info and Location blocks, widgets and shortcodes', 'all-in-one-seo-pack' ),
562
 
563
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:95
564
+ __( 'Detailed Address, Contact and Payment Info', 'all-in-one-seo-pack' ),
 
565
 
566
+ // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:107
567
+ __( 'Locations Settings', 'all-in-one-seo-pack' ),
 
568
 
569
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:168
570
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:306
571
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:232
572
+ __( 'Select your timezone', 'all-in-one-seo-pack' ),
573
 
574
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:52
575
+ __( 'Google Maps', 'all-in-one-seo-pack' ),
 
576
 
577
+ // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:118
578
+ __( 'Contact Info', 'all-in-one-seo-pack' ),
579
 
580
+ // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:120
581
+ __( 'Payment Info', 'all-in-one-seo-pack' ),
582
 
583
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:137
584
+ __( 'An error occurred while activating the addon. Please upload it manually or contact support for more information.', 'all-in-one-seo-pack' ),
585
 
586
+ // Reference: src/vue/mixins/Wizard.js:6
587
+ __( 'Skip this Step', 'all-in-one-seo-pack' ),
588
 
589
+ // Reference: src/vue/mixins/Wizard.js:7
590
+ __( 'Go Back', 'all-in-one-seo-pack' ),
 
591
 
592
+ // Reference: src/vue/mixins/Wizard.js:8
593
+ __( 'Save and Continue', 'all-in-one-seo-pack' ),
 
594
 
595
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:249
596
+ __( 'Search Appearance', 'all-in-one-seo-pack' ),
597
 
598
+ // Reference: src/vue/pages/social-networks/views/Main.vue:24
599
+ __( 'Social Networks', 'all-in-one-seo-pack' ),
600
 
601
+ // Reference: src/vue/pages/dashboard/views/Main.vue:233
602
+ __( 'Sitemaps', 'all-in-one-seo-pack' ),
603
 
604
+ // Reference: src/vue/mixins/ToolsSettings.js:41
605
+ __( 'Robots.txt', 'all-in-one-seo-pack' ),
606
 
607
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:89
608
+ __( 'Bad Bot Blocker', 'all-in-one-seo-pack' ),
609
 
610
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:184
611
+ // Reference: src/vue/pages/search-appearance/router/paths.js:46
612
+ __( 'Image SEO', 'all-in-one-seo-pack' ),
613
 
614
+ // Reference: src/vue/mixins/ToolsSettings.js:90
615
+ // Reference: src/vue/pages/redirects/router/paths.js:19
616
+ __( 'Redirects', 'all-in-one-seo-pack' ),
617
 
618
+ // Reference: src/vue/mixins/SeoSiteScore.js:10
619
+ __( 'Excellent!', 'all-in-one-seo-pack' ),
620
 
621
+ // Reference: src/vue/mixins/SeoSiteScore.js:11
622
+ __( 'to see your Site Score.', 'all-in-one-seo-pack' ),
623
 
624
+ // Reference: src/vue/mixins/SeoSiteScore.js:12
625
+ __( 'to analyze a competitor site.', 'all-in-one-seo-pack' ),
 
 
626
 
627
+ // Reference: src/vue/mixins/SeoSiteScore.js:13
628
+ __( 'A valid license key is required', 'all-in-one-seo-pack' ),
629
 
630
+ // Reference: src/vue/pages/connect/router/paths.js:20
631
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
632
+ __( 'Connect with %1$s', 'all-in-one-seo-pack' ),
633
 
634
+ // Reference: src/vue/mixins/SeoSiteScore.js:6
635
+ /* Translators: 1 - HTML Line break tag. */
636
+ __( 'We\'ve got some%1$swork to do!', 'all-in-one-seo-pack' ),
637
 
638
+ // Reference: src/vue/mixins/SeoSiteScore.js:8
639
+ /* Translators: 1 - HTML Line break tag. */
640
+ __( 'Needs%1$sImprovement!', 'all-in-one-seo-pack' ),
641
 
642
+ // Reference: src/vue/mixins/SeoSiteScore.js:9
643
+ __( 'Very Good!', 'all-in-one-seo-pack' ),
644
 
645
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:63
646
+ __( 'Critical Issues', 'all-in-one-seo-pack' ),
 
647
 
648
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:65
649
+ __( 'Recommended Improvements', 'all-in-one-seo-pack' ),
650
 
651
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:66
652
+ __( 'Good Results', 'all-in-one-seo-pack' ),
653
 
654
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:67
655
+ __( 'Complete Site Audit Checklist', 'all-in-one-seo-pack' ),
656
 
657
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:30
658
+ __( 'All Good!', 'all-in-one-seo-pack' ),
659
 
660
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:29
661
+ __( 'Errors', 'all-in-one-seo-pack' ),
662
 
663
+ // Reference: src/vue/mixins/Image.js:119
664
+ __( 'Choose Image', 'all-in-one-seo-pack' ),
665
 
666
+ // Reference: src/vue/mixins/Image.js:55
667
+ __( 'Default Image (Set Below)', 'all-in-one-seo-pack' ),
668
 
669
+ // Reference: src/vue/mixins/Image.js:56
670
+ __( 'Featured Image', 'all-in-one-seo-pack' ),
671
 
672
+ // Reference: src/vue/mixins/Image.js:57
673
+ __( 'Attached Image', 'all-in-one-seo-pack' ),
674
 
675
+ // Reference: src/vue/mixins/Image.js:58
676
+ __( 'First Image in Content', 'all-in-one-seo-pack' ),
677
 
678
+ // Reference: src/vue/mixins/Image.js:59
679
+ __( 'Image from Custom Field', 'all-in-one-seo-pack' ),
680
 
681
+ // Reference: src/vue/mixins/Image.js:60
682
+ __( 'Post Author Image', 'all-in-one-seo-pack' ),
683
 
684
+ // Reference: src/vue/mixins/Image.js:61
685
+ __( 'First Available Image', 'all-in-one-seo-pack' ),
686
 
687
+ // Reference: src/vue/mixins/Image.js:68
688
+ __( 'Default Image Source (Set in Social Networks)', 'all-in-one-seo-pack' ),
 
 
689
 
690
+ // Reference: src/vue/mixins/Image.js:71
691
+ __( 'Custom Image', 'all-in-one-seo-pack' ),
 
 
692
 
693
+ // Reference: src/vue/mixins/MaxCounts.js:6
694
+ /* Translators: 1 - A number, 2 - A number. */
695
+ __( '%1$s out of %2$s max recommended characters.', 'all-in-one-seo-pack' ),
 
696
 
697
+ // Reference: src/vue/mixins/Notifications.js:6
698
+ __( 'Notifications', 'all-in-one-seo-pack' ),
 
 
699
 
700
+ // Reference: src/vue/mixins/Notifications.js:7
701
+ __( 'New Notifications', 'all-in-one-seo-pack' ),
 
 
702
 
703
+ // Reference: src/vue/mixins/Notifications.js:8
704
+ __( 'Active Notifications', 'all-in-one-seo-pack' ),
 
 
705
 
706
+ // Reference: src/vue/mixins/License.js:11
707
+ __( 'Your license has been disabled.', 'all-in-one-seo-pack' ),
 
 
708
 
709
+ // Reference: src/vue/mixins/License.js:15
710
+ __( 'Your license key is invalid.', 'all-in-one-seo-pack' ),
 
711
 
712
+ // Reference: src/vue/mixins/License.js:4
713
+ __( 'You have not yet added a license key.', 'all-in-one-seo-pack' ),
714
 
715
+ // Reference: src/vue/mixins/License.js:7
716
+ __( 'Your license has expired.', 'all-in-one-seo-pack' ),
717
 
718
+ // Reference: src/vue/pages/post-settings/views/General.vue:294
719
+ __( 'Basic SEO', 'all-in-one-seo-pack' ),
720
 
721
+ // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:107
722
+ __( 'Advanced SEO', 'all-in-one-seo-pack' ),
723
 
724
+ // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:108
725
+ __( 'Performance', 'all-in-one-seo-pack' ),
726
 
727
+ // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:109
728
+ __( 'Security', 'all-in-one-seo-pack' ),
 
729
 
730
+ // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:110
731
+ __( 'Keywords:', 'all-in-one-seo-pack' ),
732
 
733
+ // Reference: src/vue/components/common/core/NotificationCards.vue:59
734
+ __( 'Great Scott! Where\'d they all go?', 'all-in-one-seo-pack' ),
735
 
736
+ // Reference: src/vue/components/common/core/NotificationCards.vue:60
737
+ __( 'You have no new notifications.', 'all-in-one-seo-pack' ),
738
 
739
+ // Reference: src/vue/components/common/core/NotificationCards.vue:61
740
+ __( 'See Dismissed Notifications', 'all-in-one-seo-pack' ),
741
 
742
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/metaboxAnalysisDetail.vue:32
743
+ // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:19
744
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:233
745
+ __( 'Delete', 'all-in-one-seo-pack' ),
746
 
747
+ // Reference: src/vue/components/common/core/Main.vue:80
748
+ __( 'Save Changes', 'all-in-one-seo-pack' ),
749
 
750
+ // Reference: src/vue/components/common/core/Notification.vue:100
751
+ __( 'a minute ago', 'all-in-one-seo-pack' ),
752
 
753
+ // Reference: src/vue/components/common/core/Notification.vue:104
754
+ /* Translators: A number will be prepended to this string, e.g. "2 minutes ago". */
755
+ __( 'minutes ago', 'all-in-one-seo-pack' ),
756
 
757
+ // Reference: src/vue/components/common/core/Notification.vue:106
758
+ __( 'a day ago', 'all-in-one-seo-pack' ),
759
 
760
+ // Reference: src/vue/components/common/core/Notification.vue:110
761
+ /* Translators: A number will be prepended to this string, e.g. "2 days ago". */
762
+ __( 'days ago', 'all-in-one-seo-pack' ),
763
 
764
+ // Reference: src/vue/components/common/core/Notification.vue:111
765
+ __( 'a month ago', 'all-in-one-seo-pack' ),
766
 
767
+ // Reference: src/vue/components/common/core/Notification.vue:115
768
+ /* Translators: A number will be prepended to this string, e.g. "2 months ago". */
769
+ __( 'months ago', 'all-in-one-seo-pack' ),
770
 
771
+ // Reference: src/vue/components/common/core/Notification.vue:117
772
+ __( 'a year ago', 'all-in-one-seo-pack' ),
773
 
774
+ // Reference: src/vue/components/common/core/Notification.vue:121
775
+ /* Translators: A number will be prepended to this string, e.g. "2 years ago". */
776
+ __( 'years ago', 'all-in-one-seo-pack' ),
777
 
778
+ // Reference: src/vue/components/common/core/Notification.vue:79
779
+ __( 'Dismiss', 'all-in-one-seo-pack' ),
780
 
781
+ // Reference: src/vue/components/common/core/Notification.vue:99
782
+ __( 'a few seconds ago', 'all-in-one-seo-pack' ),
783
 
784
+ // Reference: src/vue/components/common/core/Help.vue:153
785
+ __( 'Close', 'all-in-one-seo-pack' ),
 
786
 
787
+ // Reference: src/vue/components/common/core/Help.vue:154
788
+ __( 'Search', 'all-in-one-seo-pack' ),
789
 
790
+ // Reference: src/vue/components/common/core/Help.vue:155
791
+ __( 'View All', 'all-in-one-seo-pack' ),
792
 
793
+ // Reference: src/vue/components/common/core/Help.vue:156
794
+ __( 'Docs', 'all-in-one-seo-pack' ),
795
 
796
+ // Reference: src/vue/components/common/core/Help.vue:157
797
+ __( 'View Documentation', 'all-in-one-seo-pack' ),
798
 
799
+ // Reference: src/vue/components/common/core/Help.vue:159
800
+ /* Translators: 1 - The plugin short name ("AIOEO"). */
801
+ __( 'Browse documentation, reference material, and tutorials for %1$s.', 'all-in-one-seo-pack' ),
802
 
803
+ // Reference: src/vue/components/common/core/Help.vue:160
804
+ __( 'View All Documentation', 'all-in-one-seo-pack' ),
805
 
806
+ // Reference: src/vue/components/common/core/Help.vue:161
807
+ __( 'Get Support', 'all-in-one-seo-pack' ),
 
808
 
809
+ // Reference: src/vue/components/common/core/Help.vue:162
810
+ __( 'Submit a ticket and our world class support team will be in touch soon.', 'all-in-one-seo-pack' ),
 
811
 
812
+ // Reference: src/vue/components/common/core/Help.vue:163
813
+ __( 'Submit a Support Ticket', 'all-in-one-seo-pack' ),
814
 
815
+ // Reference: src/vue/components/common/core/FeatureCard.vue:128
816
+ __( 'Upgrade to Pro', 'all-in-one-seo-pack' ),
817
 
818
+ // Reference: src/vue/components/common/core/GettingStarted.vue:83
819
+ __( 'How to Get Started', 'all-in-one-seo-pack' ),
820
 
821
+ // Reference: src/vue/components/common/core/GettingStarted.vue:85
822
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
823
+ __( 'Welcome to %1$s', 'all-in-one-seo-pack' ),
824
 
825
+ // Reference: src/vue/components/common/core/GettingStarted.vue:87
826
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
827
+ __( 'Thank you for choosing the best WordPress SEO plugin. %1$s default settings works great out of the box. We created the setup wizard to guide you through some important configuration settings & custom-tailored SEO best practices for your site to help you improve rankings.', 'all-in-one-seo-pack' ),
828
 
829
+ // Reference: src/vue/components/common/core/GettingStarted.vue:88
830
+ __( 'Launch the Setup Wizard', 'all-in-one-seo-pack' ),
831
 
832
+ // Reference: src/vue/components/common/core/GettingStarted.vue:89
833
+ __( 'Read the Setup Guide', 'all-in-one-seo-pack' ),
834
 
835
+ // Reference: src/vue/components/common/core/HtmlTagsEditor.vue:100
836
+ __( 'Click on the tags below to insert variables into your template.', 'all-in-one-seo-pack' ),
837
 
838
+ // Reference: src/vue/components/common/core/HtmlTagsEditor.vue:119
839
+ __( 'View all tags', 'all-in-one-seo-pack' ),
840
 
841
+ // Reference: src/vue/components/common/core/CopyBlock.vue:48
842
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:126
843
+ __( 'Copied!', 'all-in-one-seo-pack' ),
844
 
845
+ // Reference: src/vue/components/common/core/CopyBlock.vue:48
846
+ __( 'Click to Copy', 'all-in-one-seo-pack' ),
 
847
 
848
+ // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:116
849
+ __( 'Shortcode', 'all-in-one-seo-pack' ),
850
 
851
+ // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:117
852
+ __( 'Gutenberg Block', 'all-in-one-seo-pack' ),
 
853
 
854
+ // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:118
855
+ __( 'PHP Code', 'all-in-one-seo-pack' ),
856
 
857
+ // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:115
858
+ __( 'Widget', 'all-in-one-seo-pack' ),
859
 
860
+ // Reference: src/vue/components/common/core/DisplayInfo.vue:90
861
+ __( 'Display Info', 'all-in-one-seo-pack' ),
862
 
863
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:428
864
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:115
865
+ __( 'Post Types', 'all-in-one-seo-pack' ),
866
 
867
+ // Reference: src/vue/pages/search-appearance/router/paths.js:37
868
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:429
869
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:116
870
+ __( 'Taxonomies', 'all-in-one-seo-pack' ),
871
 
872
+ // Reference: src/vue/components/common/core/AdditionalPages.vue:98
873
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:119
874
+ __( 'Priority', 'all-in-one-seo-pack' ),
875
 
876
+ // Reference: src/vue/components/common/core/AdditionalPages.vue:99
877
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:120
878
+ __( 'Frequency', 'all-in-one-seo-pack' ),
879
 
880
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:416
881
+ __( 'Home Page', 'all-in-one-seo-pack' ),
882
 
883
+ // Reference: src/vue/components/common/core/PriorityScore.vue:67
884
+ __( 'Archive Pages', 'all-in-one-seo-pack' ),
885
 
886
+ // Reference: src/vue/components/common/core/PriorityScore.vue:68
887
+ __( 'Author Pages', 'all-in-one-seo-pack' ),
888
 
889
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:134
890
+ __( 'default', 'all-in-one-seo-pack' ),
891
 
892
+ // Reference: src/vue/components/common/html-sitemap/IncludedObjects.vue:77
893
+ __( 'Label:', 'all-in-one-seo-pack' ),
894
 
895
+ // Reference: src/vue/components/common/html-sitemap/IncludedObjects.vue:78
896
+ __( 'Slug:', 'all-in-one-seo-pack' ),
897
 
898
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:82
899
+ __( 'No post types available.', 'all-in-one-seo-pack' ),
900
 
901
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:83
902
+ __( 'No taxonomies available.', 'all-in-one-seo-pack' ),
903
 
904
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:84
905
+ __( 'All post types are set to noindex or your site does not have any post types registered that are supported by this feature.', 'all-in-one-seo-pack' ),
906
 
907
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:85
908
+ __( 'All taxonomies are set to noindex or your site does not have any taxonomies registered that are supported by this feature.', 'all-in-one-seo-pack' ),
909
 
910
+ // Reference: src/vue/components/common/core/FeatureCard.vue:125
911
+ __( 'Activated', 'all-in-one-seo-pack' ),
912
 
913
+ // Reference: src/vue/components/common/core/FeatureCard.vue:126
914
+ __( 'Deactivated', 'all-in-one-seo-pack' ),
915
 
916
+ // Reference: src/vue/components/common/core/FeatureCard.vue:127
917
+ __( 'Not Installed', 'all-in-one-seo-pack' ),
918
 
919
+ // Reference: src/vue/components/common/core/FeatureCard.vue:129
920
+ __( 'Upgrade Your Plan', 'all-in-one-seo-pack' ),
921
 
922
+ // Reference: src/vue/components/common/core/FeatureCard.vue:130
923
+ __( 'Manage', 'all-in-one-seo-pack' ),
924
 
925
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:114
926
+ __( 'Use Default Settings', 'all-in-one-seo-pack' ),
927
 
928
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:163
929
+ __( 'Robots meta:', 'all-in-one-seo-pack' ),
930
 
931
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:164
932
+ __( 'Max Snippet', 'all-in-one-seo-pack' ),
933
 
934
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:165
935
+ __( 'Max Video Preview', 'all-in-one-seo-pack' ),
936
 
937
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:166
938
+ __( 'Max Image Preview', 'all-in-one-seo-pack' ),
939
 
940
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:167
941
+ __( 'Standard', 'all-in-one-seo-pack' ),
942
 
943
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:168
944
+ __( 'None', 'all-in-one-seo-pack' ),
 
945
 
946
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:169
947
+ __( 'Large', 'all-in-one-seo-pack' ),
 
948
 
949
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:170
950
+ __( 'No Index', 'all-in-one-seo-pack' ),
951
 
952
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:171
953
+ __( 'No Follow', 'all-in-one-seo-pack' ),
 
954
 
955
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:172
956
+ __( 'No Archive', 'all-in-one-seo-pack' ),
957
 
958
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:173
959
+ __( 'No Translate', 'all-in-one-seo-pack' ),
 
960
 
961
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:174
962
+ __( 'No Image Index', 'all-in-one-seo-pack' ),
963
 
964
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:175
965
+ __( 'No Snippet', 'all-in-one-seo-pack' ),
966
 
967
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:176
968
+ __( 'No ODP', 'all-in-one-seo-pack' ),
 
969
 
970
+ // Reference: src/vue/components/common/core/RobotsMeta.vue:96
971
+ __( 'No Index Paginated', 'all-in-one-seo-pack' ),
972
 
973
+ // Reference: src/vue/components/common/core/RobotsMeta.vue:97
974
+ __( 'No Follow Paginated', 'all-in-one-seo-pack' ),
 
975
 
976
+ // Reference: src/vue/components/common/core/RobotsMeta.vue:98
977
+ __( 'No Index RSS Feeds', 'all-in-one-seo-pack' ),
978
 
979
+ // Reference: src/vue/components/common/html-sitemap/ExcludeObjects.vue:95
980
+ __( 'Begin typing a post ID, title or slug to search...', 'all-in-one-seo-pack' ),
981
 
982
+ // Reference: src/vue/components/common/html-sitemap/ExcludeObjects.vue:96
983
+ __( 'Begin typing a term ID or name to search...', 'all-in-one-seo-pack' ),
984
 
985
+ // Reference: src/vue/components/common/html-sitemap/ExcludeObjects.vue:97
986
+ __( 'No results found for your search. Try again!', 'all-in-one-seo-pack' ),
987
 
988
+ // Reference: src/vue/components/common/html-sitemap/ExcludeObjects.vue:98
989
+ __( 'Clear', 'all-in-one-seo-pack' ),
990
 
991
+ // Reference: src/vue/components/common/html-sitemap/ExcludeObjects.vue:99
992
+ __( 'ID', 'all-in-one-seo-pack' ),
993
 
994
+ // Reference: src/vue/components/common/html-sitemap/ExcludeObjects.vue:94
995
+ __( 'Type to search...', 'all-in-one-seo-pack' ),
996
 
997
+ // Reference: src/vue/components/common/core/Notifications.vue:94
998
+ __( 'Dismissed Notifications', 'all-in-one-seo-pack' ),
999
 
1000
+ // Reference: src/vue/pages/dashboard/views/Main.vue:239
1001
+ __( 'Dismiss All', 'all-in-one-seo-pack' ),
1002
 
1003
+ // Reference: src/vue/components/common/core/SettingsSeparator.vue:101
1004
+ __( 'Custom separator:', 'all-in-one-seo-pack' ),
1005
 
1006
+ // Reference: src/vue/components/common/core/SettingsSeparator.vue:102
1007
+ __( 'Show More', 'all-in-one-seo-pack' ),
1008
 
1009
+ // Reference: src/vue/components/common/core/SettingsSeparator.vue:103
1010
+ __( 'Show Less', 'all-in-one-seo-pack' ),
1011
 
1012
+ // Reference: src/vue/components/common/core/SiteScore.vue:45
1013
+ __( 'Analyzing...', 'all-in-one-seo-pack' ),
1014
 
1015
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:64
1016
+ __( 'Warnings', 'all-in-one-seo-pack' ),
1017
 
1018
+ // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:80
1019
+ __( 'Refresh Results', 'all-in-one-seo-pack' ),
1020
 
1021
+ // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:81
1022
+ __( 'Mobile Snapshot', 'all-in-one-seo-pack' ),
1023
 
1024
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:57
1025
+ __( 'Your Overall Site Score', 'all-in-one-seo-pack' ),
1026
 
1027
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:59
1028
+ /* Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag. */
1029
+ __( 'A very good score is between %1$s60 and 80%2$s.', 'all-in-one-seo-pack' ),
1030
 
1031
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:61
1032
+ /* Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag. */
1033
+ __( 'For best results, you should strive for %1$s70 and above%2$s.', 'all-in-one-seo-pack' ),
1034
 
1035
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:62
1036
+ __( 'An error occurred while analyzing your site.', 'all-in-one-seo-pack' ),
1037
 
1038
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:68
1039
+ __( 'Read the Ultimate WordPress SEO Guide', 'all-in-one-seo-pack' ),
1040
 
1041
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:77
1042
+ __( 'The URL provided is invalid.', 'all-in-one-seo-pack' ),
1043
 
1044
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:81
1045
+ __( 'We were unable to parse the content for this site.', 'all-in-one-seo-pack' ),
1046
 
1047
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:86
1048
+ /* Translators: 1 - The plugin short name ('AIOSEO'). */
1049
+ __( 'Your site is not connected. Please connect to %1$s, then try again.', 'all-in-one-seo-pack' ),
1050
 
1051
+ // Reference: src/vue/components/common/core/SocialProfiles.vue:124
1052
+ __( 'Your Facebook URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
1053
 
1054
+ // Reference: src/vue/components/common/core/SocialProfiles.vue:135
1055
+ __( 'Your Twitter URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
 
1056
 
1057
+ // Reference: src/vue/components/common/core/SocialProfiles.vue:146
1058
+ __( 'Your Instagram URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
 
1059
 
1060
+ // Reference: src/vue/components/common/core/SocialProfiles.vue:157
1061
+ __( 'Your Pinterest URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
 
1062
 
1063
+ // Reference: src/vue/components/common/core/SocialProfiles.vue:168
1064
+ __( 'Your YouTube URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
1065
 
1066
+ // Reference: src/vue/components/common/core/SocialProfiles.vue:179
1067
+ __( 'Your LinkedIn URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
 
1068
 
1069
+ // Reference: src/vue/components/common/core/SocialProfiles.vue:190
1070
+ __( 'Your Tumblr URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
1071
 
1072
+ // Reference: src/vue/components/common/core/SocialProfiles.vue:201
1073
+ __( 'Your Yelp URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
1074
 
1075
+ // Reference: src/vue/components/common/core/SocialProfiles.vue:212
1076
+ __( 'Your SoundCloud URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
1077
 
1078
+ // Reference: src/vue/components/common/core/SocialProfiles.vue:223
1079
+ __( 'Your Wikipedia URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
1080
 
1081
+ // Reference: src/vue/components/common/core/SocialProfiles.vue:234
1082
+ __( 'Your MySpace URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
1083
 
1084
+ // Reference: src/vue/components/common/core/SocialProfiles.vue:241
1085
+ __( 'Use the same username for multiple social networks', 'all-in-one-seo-pack' ),
1086
 
1087
+ // Reference: src/vue/components/common/core/SocialProfiles.vue:242
1088
+ __( 'Your Username:', 'all-in-one-seo-pack' ),
1089
 
1090
+ // Reference: src/vue/components/common/notifications/Review.vue:115
1091
+ __( 'Yes, I love it!', 'all-in-one-seo-pack' ),
1092
 
1093
+ // Reference: src/vue/components/common/notifications/Review.vue:116
1094
+ __( 'Not Really...', 'all-in-one-seo-pack' ),
1095
 
1096
+ // Reference: src/vue/components/common/notifications/Review.vue:117
1097
+ __( 'Ok, you deserve it', 'all-in-one-seo-pack' ),
 
1098
 
1099
+ // Reference: src/vue/components/common/notifications/Review.vue:118
1100
+ __( 'Nope, maybe later', 'all-in-one-seo-pack' ),
1101
 
1102
+ // Reference: src/vue/components/common/notifications/Review.vue:119
1103
+ __( 'Give feedback', 'all-in-one-seo-pack' ),
 
1104
 
1105
+ // Reference: src/vue/components/common/notifications/Review.vue:120
1106
+ __( 'No thanks', 'all-in-one-seo-pack' ),
1107
 
1108
+ // Reference: src/vue/components/common/notifications/Review.vue:129
1109
+ __( 'That\'s Awesome!', 'all-in-one-seo-pack' ),
1110
 
1111
+ // Reference: src/vue/components/common/notifications/Review.vue:131
1112
+ __( 'Help us improve', 'all-in-one-seo-pack' ),
1113
 
1114
+ // Reference: src/vue/components/common/notifications/Review.vue:134
1115
+ /* Translators: 1 = The plugin short name ("AIOSEO") */
1116
+ __( 'Are you enjoying %1$s?', 'all-in-one-seo-pack' ),
1117
 
1118
+ // Reference: src/vue/components/common/notifications/Review.vue:140
1119
+ __( 'Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?', 'all-in-one-seo-pack' ),
1120
 
1121
+ // Reference: src/vue/components/common/notifications/Review.vue:143
1122
+ /* Translators: The plugin name ("All in One SEO"). */
1123
+ __( 'CEO of %1$s', 'all-in-one-seo-pack' ),
1124
 
1125
+ // Reference: src/vue/components/common/notifications/Review.vue:147
1126
+ /* Translators: The plugin name ("All in One SEO"). */
1127
+ __( 'We\'re sorry to hear you aren\'t enjoying %1$s. We would love a chance to improve. Could you take a minute and let us know what we can do better?', 'all-in-one-seo-pack' ),
1128
 
1129
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:260
1130
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:434
1131
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:117
1132
+ __( 'Include All Post Types', 'all-in-one-seo-pack' ),
1133
 
1134
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:436
1135
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:118
1136
+ __( 'Include All Taxonomies', 'all-in-one-seo-pack' ),
1137
 
1138
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:139
1139
+ __( 'Display HTML Sitemap', 'all-in-one-seo-pack' ),
1140
 
1141
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:140
1142
+ __( 'Dedicated Page', 'all-in-one-seo-pack' ),
1143
 
1144
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:141
1145
+ __( 'e.g. %1$s', 'all-in-one-seo-pack' ),
1146
 
1147
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:142
1148
+ __( 'Open HTML Sitemap', 'all-in-one-seo-pack' ),
1149
 
1150
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:143
1151
+ __( 'The page that you have entered already exists. Please enter a page with a unique slug.', 'all-in-one-seo-pack' ),
1152
 
1153
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:144
1154
+ __( 'The following shortcode attributes can be used to override the default settings:', 'all-in-one-seo-pack' ),
1155
 
1156
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:145
1157
+ __( 'The function accepts an associative array with the following arguments that can be used to override the default settings:', 'all-in-one-seo-pack' ),
1158
 
1159
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:147
1160
+ __( 'To view the sitemap, enter a URL and save changes.', 'all-in-one-seo-pack' ),
1161
 
1162
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:148
1163
+ __( 'To view the new sitemap, first save changes.', 'all-in-one-seo-pack' ),
1164
 
1165
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:153
1166
+ __( 'The post types (by slug, comma-separated) that are included in the sitemap.', 'all-in-one-seo-pack' ),
1167
 
1168
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:157
1169
+ __( 'The taxonomies (by slug, comma-separated) that are included in the sitemap.', 'all-in-one-seo-pack' ),
1170
 
1171
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:163
1172
+ /* Translators: 1 - The default value. */
1173
+ __( 'The HTML tag that is used for the label of each section. Defaults to %1$s.', 'all-in-one-seo-pack' ),
1174
 
1175
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:171
1176
+ /* Translators: 1 - The default value. */
1177
+ __( 'Whether the labels should be shown or not. Defaults to %1$s.', 'all-in-one-seo-pack' ),
1178
 
1179
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:181
1180
+ __( 'Whether the publication date of posts should be shown.', 'all-in-one-seo-pack' ),
1181
 
1182
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:185
1183
+ __( 'Whether the regular sitemap or compact date archive sitemap is output.', 'all-in-one-seo-pack' ),
1184
 
1185
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:192
1186
+ /* Translators: 1 - HTML code opening tag, 2 - HTML code closing tag. */
1187
+ __( 'The sort direction. The supported values are %1$s and %2$s.', 'all-in-one-seo-pack' ),
 
 
1188
 
1189
+ // Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:201
1190
+ /* Translators: 1 - HTML code opening tag, 2 - HTML code closing tag. */
1191
+ __( 'The sort order. The supported values are %1$s, %2$s, %3$s and %4$s.', 'all-in-one-seo-pack' ),
1192
 
1193
+ // Reference: src/vue/components/common/notifications/UnlicensedAddons.vue:49
1194
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Addons". */
1195
+ __( '%1$s %2$s Not Configured Properly', 'all-in-one-seo-pack' ),
1196
 
1197
+ // Reference: src/vue/components/common/notifications/UnlicensedAddons.vue:50
1198
+ __( 'Learn More', 'all-in-one-seo-pack' ),
1199
 
1200
+ // Reference: src/vue/components/common/notifications/UnlicensedAddons.vue:51
1201
+ __( 'Upgrade', 'all-in-one-seo-pack' ),
 
1202
 
1203
+ // Reference: src/vue/components/common/core/AddRedirectionUrlResults.vue:52
1204
+ __( 'DRAFT', 'all-in-one-seo-pack' ),
1205
 
1206
+ // Reference: src/vue/components/common/core/AddRedirectionUrlResults.vue:53
1207
+ __( 'PENDING', 'all-in-one-seo-pack' ),
1208
 
1209
+ // Reference: src/vue/components/common/core/AddRedirectionUrlResults.vue:54
1210
+ __( 'FUTURE', 'all-in-one-seo-pack' ),
1211
 
1212
+ // Reference: src/vue/classes/SiteAnalysis.js:102
1213
+ __( 'No keywords were found in the page title.', 'all-in-one-seo-pack' ),
1214
 
1215
+ // Reference: src/vue/classes/SiteAnalysis.js:105
1216
+ __( 'No keywords were found in your meta description.', 'all-in-one-seo-pack' ),
1217
 
1218
+ // Reference: src/vue/classes/SiteAnalysis.js:106
1219
+ __( 'No keywords were found in the meta description.', 'all-in-one-seo-pack' ),
1220
 
1221
+ // Reference: src/vue/classes/SiteAnalysis.js:108
1222
+ __( 'Both the page title and meta description are missing keywords.', 'all-in-one-seo-pack' ),
1223
 
1224
+ // Reference: src/vue/classes/SiteAnalysis.js:112
1225
+ __( 'One or more keywords were found in the title and description of your page.', 'all-in-one-seo-pack' ),
1226
 
1227
+ // Reference: src/vue/classes/SiteAnalysis.js:113
1228
+ __( 'One or more keywords were found in the title and description of the page.', 'all-in-one-seo-pack' ),
1229
 
1230
+ // Reference: src/vue/classes/SiteAnalysis.js:129
1231
+ __( 'You need to use titles and descriptions that are attractive to users and contain your keywords. Use the keywords naturally - keyword stuffing is usually detected and will result in a lower ranking. What\'s more, it\'s pretty off-putting for potential readers, who are more likely to click on an appealing link.', 'all-in-one-seo-pack' ),
1232
 
1233
+ // Reference: src/vue/classes/SiteAnalysis.js:130
1234
+ __( 'Edit Your Page Title & Description', 'all-in-one-seo-pack' ),
 
1235
 
1236
+ // Reference: src/vue/classes/SiteAnalysis.js:139
1237
+ __( 'No H1 tag was found.', 'all-in-one-seo-pack' ),
 
1238
 
1239
+ // Reference: src/vue/classes/SiteAnalysis.js:142
1240
+ /* Translators: 1 - The number of H1 tags found. */
1241
+ __( 'For the best SEO results there should be exactly one H1 tag on each page.', 'all-in-one-seo-pack' ),
1242
 
1243
+ // Reference: src/vue/classes/SiteAnalysis.js:142
1244
+ /* Translators: 1 - The number of H1 tags found. */
1245
+ __( '%1$d H1 tags were found.', 'all-in-one-seo-pack' ),
1246
 
1247
+ // Reference: src/vue/classes/SiteAnalysis.js:147
1248
+ __( 'One H1 tag was found on your page.', 'all-in-one-seo-pack' ),
 
1249
 
1250
+ // Reference: src/vue/classes/SiteAnalysis.js:148
1251
+ __( 'One H1 tag was found on the page.', 'all-in-one-seo-pack' ),
1252
 
1253
+ // Reference: src/vue/classes/SiteAnalysis.js:154
1254
+ __( 'WordPress sites usually insert the page or post title as an H1 tag (although custom themes can change this behavior).', 'all-in-one-seo-pack' ),
1255
 
1256
+ // Reference: src/vue/classes/SiteAnalysis.js:154
1257
+ __( 'Ensure your most important keywords appear in the H1 tag - don\'t force it, use them in a natural way that makes sense to human readers.', 'all-in-one-seo-pack' ),
1258
 
1259
+ // Reference: src/vue/classes/SiteAnalysis.js:154
1260
+ __( 'Because your headline plays a large role in reader engagement, it\'s worth spending extra time perfecting it. Many top copywriters spend hours getting their headlines just right - sometimes they spend longer on the headline than the rest of the article!', 'all-in-one-seo-pack' ),
1261
 
1262
+ // Reference: src/vue/classes/SiteAnalysis.js:154
1263
+ __( 'A good headline stimulates reader interest and offers a compelling reason to read your content. It promises a believable benefit.', 'all-in-one-seo-pack' ),
1264
 
1265
+ // Reference: src/vue/classes/SiteAnalysis.js:154
1266
+ __( 'You should write as if your readers are selfish people with short attention spans (because that describes a large percentage of the world\'s population). Readers visit websites for selfish reasons - they\'re not there to make you happy.', 'all-in-one-seo-pack' ),
 
1267
 
1268
+ // Reference: src/vue/classes/SiteAnalysis.js:165
1269
+ __( 'No H2 tags were found on your page.', 'all-in-one-seo-pack' ),
 
1270
 
1271
+ // Reference: src/vue/classes/SiteAnalysis.js:166
1272
+ __( 'No H2 tags were found on the page.', 'all-in-one-seo-pack' ),
 
1273
 
1274
+ // Reference: src/vue/classes/SiteAnalysis.js:170
1275
+ __( 'H2 tags were found on your page.', 'all-in-one-seo-pack' ),
 
1276
 
1277
+ // Reference: src/vue/classes/SiteAnalysis.js:171
1278
+ __( 'H2 tags were found on the page.', 'all-in-one-seo-pack' ),
1279
 
1280
+ // Reference: src/vue/classes/SiteAnalysis.js:177
1281
+ __( 'Make sure you have a good balance of H2 tags to plain text in your content. Break the content down into logical sections, and use headings to introduce each new topic.', 'all-in-one-seo-pack' ),
1282
 
1283
+ // Reference: src/vue/classes/SiteAnalysis.js:177
1284
+ __( 'Also, try to include synonyms and relevant terminology in H2 tag text. Search engines are pretty smart - they know which words usually occur together in each niche.', 'all-in-one-seo-pack' ),
1285
 
1286
+ // Reference: src/vue/classes/SiteAnalysis.js:177
1287
+ __( 'It should be easy to include your main and supporting keywords in the H2 tags - after all, these keywords describe your content! If it\'s hard to work the keywords into your subheadings, it could be a sign that the keywords aren\'t closely related to your content.', 'all-in-one-seo-pack' ),
1288
 
1289
+ // Reference: src/vue/classes/SiteAnalysis.js:177
1290
+ __( 'Don\'t try to force keywords into sub-headings if they feel unnatural. It will send the wrong message to your readers, possibly driving them away.', 'all-in-one-seo-pack' ),
 
1291
 
1292
+ // Reference: src/vue/classes/SiteAnalysis.js:188
1293
+ __( 'Some images on your page have no alt attribute.', 'all-in-one-seo-pack' ),
 
1294
 
1295
+ // Reference: src/vue/classes/SiteAnalysis.js:189
1296
+ __( 'Some images on the page have no alt attribute.', 'all-in-one-seo-pack' ),
1297
 
1298
+ // Reference: src/vue/classes/SiteAnalysis.js:193
1299
+ __( 'All images on your page have alt attributes.', 'all-in-one-seo-pack' ),
1300
 
1301
+ // Reference: src/vue/classes/SiteAnalysis.js:194
1302
+ __( 'All images on the page have alt attributes.', 'all-in-one-seo-pack' ),
1303
 
1304
+ // Reference: src/vue/classes/SiteAnalysis.js:200
1305
+ __( 'Make sure every image has an alt tag, and add useful descriptions to each image. Add your keywords or synonyms - but do it in a natural way.', 'all-in-one-seo-pack' ),
 
1306
 
1307
+ // Reference: src/vue/classes/SiteAnalysis.js:211
1308
+ __( 'No internal links were found on your page.', 'all-in-one-seo-pack' ),
1309
 
1310
+ // Reference: src/vue/classes/SiteAnalysis.js:212
1311
+ __( 'No internal links were found on the page.', 'all-in-one-seo-pack' ),
1312
 
1313
+ // Reference: src/vue/classes/SiteAnalysis.js:215
1314
+ __( 'Too few internal links on your page.', 'all-in-one-seo-pack' ),
1315
 
1316
+ // Reference: src/vue/classes/SiteAnalysis.js:216
1317
+ __( 'Too few internal links on the page.', 'all-in-one-seo-pack' ),
1318
 
1319
+ // Reference: src/vue/classes/SiteAnalysis.js:218
1320
+ __( 'The ratio of internal links to external links is uneven.', 'all-in-one-seo-pack' ),
 
1321
 
1322
+ // Reference: src/vue/classes/SiteAnalysis.js:222
1323
+ __( 'Your page has a correct number of internal and external links.', 'all-in-one-seo-pack' ),
1324
 
1325
+ // Reference: src/vue/classes/SiteAnalysis.js:223
1326
+ __( 'The page has a correct number of internal and external links.', 'all-in-one-seo-pack' ),
1327
 
1328
+ // Reference: src/vue/classes/SiteAnalysis.js:228
1329
+ __( 'Internal:', 'all-in-one-seo-pack' ),
 
1330
 
1331
+ // Reference: src/vue/classes/SiteAnalysis.js:228
1332
+ __( 'External:', 'all-in-one-seo-pack' ),
1333
 
1334
+ // Reference: src/vue/classes/SiteAnalysis.js:229
1335
+ __( 'Add links to external resources that are useful for your readers. Make sure you link to high-quality sites - Google penalizes pages that link to "spammy" sites (ones that break the Google webmaster guidelines).', 'all-in-one-seo-pack' ),
1336
 
1337
+ // Reference: src/vue/classes/SiteAnalysis.js:229
1338
+ __( 'Ideally, the links should be highly relevant to the subject you\'re writing about. It\'s impossible to cover every aspect of a subject on a single page, but your readers may be fascinated by some detail you barely touch on. If you link to a resource where they can learn more, they\'ll be grateful. What\'s more, you\'ll be rewarded with higher rankings!', 'all-in-one-seo-pack' ),
1339
 
1340
+ // Reference: src/vue/classes/SiteAnalysis.js:240
1341
+ __( 'No canonical link tag found on your page.', 'all-in-one-seo-pack' ),
1342
 
1343
+ // Reference: src/vue/classes/SiteAnalysis.js:241
1344
+ __( 'No canonical link tag found on the page.', 'all-in-one-seo-pack' ),
1345
 
1346
+ // Reference: src/vue/classes/SiteAnalysis.js:245
1347
+ __( 'Your page is using the canonical link tag.', 'all-in-one-seo-pack' ),
1348
 
1349
+ // Reference: src/vue/classes/SiteAnalysis.js:246
1350
+ __( 'The page is using the canonical link tag.', 'all-in-one-seo-pack' ),
1351
 
1352
+ // Reference: src/vue/classes/SiteAnalysis.js:252
1353
+ __( 'Every page on your site should have a <link> tag with a \'rel="canonical"\' attribute. The link tag should go inside the page\'s head tag, and it should contain the page\'s "correct" URL.', 'all-in-one-seo-pack' ),
1354
 
1355
+ // Reference: src/vue/classes/SiteAnalysis.js:252
1356
+ __( 'If you\'ve republished an article from another source (such as another site or a different section of your own site) then you need to pick which URL is the "correct" one and use that!', 'all-in-one-seo-pack' ),
 
1357
 
1358
+ // Reference: src/vue/classes/SiteAnalysis.js:263
1359
+ __( 'Your page contains a noindex header or meta tag.', 'all-in-one-seo-pack' ),
1360
 
1361
+ // Reference: src/vue/classes/SiteAnalysis.js:264
1362
+ __( 'The page contains a noindex header or meta tag.', 'all-in-one-seo-pack' ),
1363
 
1364
+ // Reference: src/vue/classes/SiteAnalysis.js:268
1365
+ __( 'Your page does not contain any noindex header or meta tag.', 'all-in-one-seo-pack' ),
 
1366
 
1367
+ // Reference: src/vue/classes/SiteAnalysis.js:269
1368
+ __( 'The page does not contain any noindex header or meta tag.', 'all-in-one-seo-pack' ),
1369
 
1370
+ // Reference: src/vue/classes/SiteAnalysis.js:274
1371
+ __( 'Only ever use noindex meta tag or header on pages you want to keep out of the reach of search engines!', 'all-in-one-seo-pack' ),
1372
 
1373
+ // Reference: src/vue/classes/SiteAnalysis.js:285
1374
+ __( 'The www and non-www versions of your URL are not redirected to the same site.', 'all-in-one-seo-pack' ),
1375
 
1376
+ // Reference: src/vue/classes/SiteAnalysis.js:286
1377
+ __( 'The www and non-www versions of the URL are not redirected to the same site.', 'all-in-one-seo-pack' ),
1378
 
1379
+ // Reference: src/vue/classes/SiteAnalysis.js:290
1380
+ __( 'Both the www and non-www versions of your URL are redirected to the same site.', 'all-in-one-seo-pack' ),
1381
 
1382
+ // Reference: src/vue/classes/SiteAnalysis.js:291
1383
+ __( 'Both the www and non-www versions of the URL are redirected to the same site.', 'all-in-one-seo-pack' ),
1384
 
1385
+ // Reference: src/vue/classes/SiteAnalysis.js:296
1386
+ __( 'Decide whether you want your site\'s URLs to include a "www", or if you prefer a plain domain name. There are marketing pros and cons for each choice, but neither one is better or worse for SEO purposes - as long as you\'re consistent.', 'all-in-one-seo-pack' ),
1387
 
1388
+ // Reference: src/vue/classes/SiteAnalysis.js:296
1389
+ __( 'You should use HTTP redirections (301 permanant redirects) to pass PageRank from the "wrong" URLs to the standard (canonical) ones. That way, your content will still benefit from backlinks if someone makes a mistake and uses the wrong URL.', 'all-in-one-seo-pack' ),
1390
 
1391
+ // Reference: src/vue/classes/SiteAnalysis.js:30
1392
+ __( 'We couldn\'t find an SEO Title.', 'all-in-one-seo-pack' ),
1393
 
1394
+ // Reference: src/vue/classes/SiteAnalysis.js:307
1395
+ __( 'Your robots.txt file is missing or unavailable.', 'all-in-one-seo-pack' ),
1396
 
1397
+ // Reference: src/vue/classes/SiteAnalysis.js:308
1398
+ __( 'The robots.txt file is missing or unavailable.', 'all-in-one-seo-pack' ),
1399
 
1400
+ // Reference: src/vue/classes/SiteAnalysis.js:327
1401
+ __( 'Your site has a robots.txt file which includes one or more "disallow" directives.', 'all-in-one-seo-pack' ),
1402
 
1403
+ // Reference: src/vue/classes/SiteAnalysis.js:328
1404
+ __( 'The site has a robots.txt file which includes one or more "disallow" directives.', 'all-in-one-seo-pack' ),
1405
 
1406
+ // Reference: src/vue/classes/SiteAnalysis.js:332
1407
+ __( 'Your site has a robots.txt file.', 'all-in-one-seo-pack' ),
1408
 
1409
+ // Reference: src/vue/classes/SiteAnalysis.js:333
1410
+ __( 'The site has a robots.txt file.', 'all-in-one-seo-pack' ),
1411
 
1412
+ // Reference: src/vue/classes/SiteAnalysis.js:34
1413
+ /* Translators: 1 - The length of the SEO title as a number. */
1414
+ __( 'Your SEO title is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
1415
 
1416
+ // Reference: src/vue/classes/SiteAnalysis.js:340
1417
+ /* Translators: 1 - The Plugin short name ("AIOSEO"). */
1418
+ __( 'Make sure that you only block parts you don\'t want to be indexed.', 'all-in-one-seo-pack' ),
1419
 
1420
+ // Reference: src/vue/classes/SiteAnalysis.js:340
1421
+ /* Translators: 1 - The Plugin short name ("AIOSEO"). */
1422
+ __( 'You can manually create a robots.txt file and upload it to your site\'s web root. A simpler option is to use a plugin for your CMS platform.', 'all-in-one-seo-pack' ),
1423
 
1424
+ // Reference: src/vue/classes/SiteAnalysis.js:340
1425
+ /* Translators: 1 - The Plugin short name ("AIOSEO"). */
1426
+ __( '%1$s has a full suite of tools to manage the robots.txt file, along with other related technologies, like XML Sitemaps.', 'all-in-one-seo-pack' ),
1427
 
1428
+ // Reference: src/vue/classes/SiteAnalysis.js:350
1429
+ __( 'Some Open Graph meta tags are missing.', 'all-in-one-seo-pack' ),
1430
 
1431
+ // Reference: src/vue/classes/SiteAnalysis.js:352
1432
+ __( 'Duplicate Open Graph meta tags were found.', 'all-in-one-seo-pack' ),
1433
 
1434
+ // Reference: src/vue/classes/SiteAnalysis.js:355
1435
+ __( 'All the required Open Graph meta tags have been found.', 'all-in-one-seo-pack' ),
1436
 
1437
+ // Reference: src/vue/classes/SiteAnalysis.js:36
1438
+ /* Translators: 1 - The length of the SEO title as a number. */
1439
+ __( 'The SEO title is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
1440
 
1441
+ // Reference: src/vue/classes/SiteAnalysis.js:362
1442
+ /* Translators: 1 - The Plugin short name ("AIOSEO"). */
1443
+ __( 'Insert a customized Open Graph meta tag for each important page on your site. The standard is very well documented - you can learn more from Facebook\'s developer pages.', 'all-in-one-seo-pack' ),
1444
 
1445
+ // Reference: src/vue/classes/SiteAnalysis.js:362
1446
+ /* Translators: 1 - The Plugin short name ("AIOSEO"). */
1447
+ __( '%1$s provides a simple but powerful interface to craft your Open Graph data. You get immediate feedback with an interactive preview, and you don\'t have to mess around with raw HTML markup.', 'all-in-one-seo-pack' ),
1448
 
1449
+ // Reference: src/vue/classes/SiteAnalysis.js:373
1450
+ __( 'No Schema.org data was found on your page.', 'all-in-one-seo-pack' ),
1451
 
1452
+ // Reference: src/vue/classes/SiteAnalysis.js:374
1453
+ __( 'No Schema.org data was found on the page.', 'all-in-one-seo-pack' ),
1454
 
1455
+ // Reference: src/vue/classes/SiteAnalysis.js:378
1456
+ __( 'We found Schema.org data on your page.', 'all-in-one-seo-pack' ),
 
1457
 
1458
+ // Reference: src/vue/classes/SiteAnalysis.js:379
1459
+ __( 'We found Schema.org data on the page.', 'all-in-one-seo-pack' ),
 
1460
 
1461
+ // Reference: src/vue/classes/SiteAnalysis.js:385
1462
+ /* Translators: 1 - The Plugin short name ("AIOSEO"). */
1463
+ __( '%1$s makes it extremely easy to add highly relevant Schema.org markup to your site. It has a simple graphical interface, so you don\'t have to get your hands dirty with complex HTML markup.', 'all-in-one-seo-pack' ),
1464
 
1465
+ // Reference: src/vue/classes/SiteAnalysis.js:386
1466
+ __( 'Edit Your Page', 'all-in-one-seo-pack' ),
1467
 
1468
+ // Reference: src/vue/classes/SiteAnalysis.js:396
1469
+ __( 'Your server is not using "expires" headers for your images.', 'all-in-one-seo-pack' ),
1470
 
1471
+ // Reference: src/vue/classes/SiteAnalysis.js:397
1472
+ __( 'The server is not using "expires" headers for the images.', 'all-in-one-seo-pack' ),
1473
 
1474
+ // Reference: src/vue/classes/SiteAnalysis.js:40
1475
+ /* Translators: 1 - The length of the SEO title as a number. */
1476
+ __( 'Your SEO title is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
1477
 
1478
+ // Reference: src/vue/classes/SiteAnalysis.js:401
1479
+ __( 'Your server is using "expires" headers for your images.', 'all-in-one-seo-pack' ),
 
1480
 
1481
+ // Reference: src/vue/classes/SiteAnalysis.js:402
1482
+ __( 'The server is using "expires" headers for the images.', 'all-in-one-seo-pack' ),
1483
 
1484
+ // Reference: src/vue/classes/SiteAnalysis.js:407
1485
+ __( 'If you use the Apache or NGINX web servers, you can edit the configuration files to set the "expires" header for all image files. For Apache, you can also use a ".htaccess" file to change the settings for each folder.', 'all-in-one-seo-pack' ),
1486
 
1487
+ // Reference: src/vue/classes/SiteAnalysis.js:407
1488
+ __( 'Alternatively, you can use a CMS plugin to simplify the process - it\'s a more user-friendly option. WordPress has a host of caching plugins, and most of them give you options to control the caching headers.', 'all-in-one-seo-pack' ),
1489
 
1490
+ // Reference: src/vue/classes/SiteAnalysis.js:415
1491
+ __( 'Some Javascript files don\'t seem to be minified.', 'all-in-one-seo-pack' ),
1492
 
1493
+ // Reference: src/vue/classes/SiteAnalysis.js:418
1494
+ __( 'All Javascript files appear to be minified.', 'all-in-one-seo-pack' ),
1495
 
1496
+ // Reference: src/vue/classes/SiteAnalysis.js:42
1497
+ /* Translators: 1 - The length of the SEO title as a number. */
1498
+ __( 'The SEO title is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
1499
 
1500
+ // Reference: src/vue/classes/SiteAnalysis.js:424
1501
+ __( 'JavaScript files appear in many places, including frameworks (like Bootstrap), themes and templates, and third-party plugins.', 'all-in-one-seo-pack' ),
1502
 
1503
+ // Reference: src/vue/classes/SiteAnalysis.js:424
1504
+ __( 'We recommend tracking down where the un-minified JavaScript files come from', 'all-in-one-seo-pack' ),
1505
 
1506
+ // Reference: src/vue/classes/SiteAnalysis.js:424
1507
+ __( 'There are server-side tools (including WordPress plugins) to automatically minify JavaScript files.', 'all-in-one-seo-pack' ),
1508
 
1509
+ // Reference: src/vue/classes/SiteAnalysis.js:432
1510
+ __( 'Some CSS files don\'t seem to be minified.', 'all-in-one-seo-pack' ),
 
 
 
1511
 
1512
+ // Reference: src/vue/classes/SiteAnalysis.js:435
1513
+ __( 'All CSS files appear to be minified.', 'all-in-one-seo-pack' ),
1514
 
1515
+ // Reference: src/vue/classes/SiteAnalysis.js:441
1516
+ __( 'CSS files appear in many places, including frameworks (like Bootstrap), themes and templates, and third-party plugins.', 'all-in-one-seo-pack' ),
1517
 
1518
+ // Reference: src/vue/classes/SiteAnalysis.js:441
1519
+ __( 'We recommend tracking down where the un-minified CSS files come from.', 'all-in-one-seo-pack' ),
 
1520
 
1521
+ // Reference: src/vue/classes/SiteAnalysis.js:441
1522
+ __( 'There are server-side tools (including WordPress plugins) to automatically minify CSS files.', 'all-in-one-seo-pack' ),
1523
 
1524
+ // Reference: src/vue/classes/SiteAnalysis.js:450
1525
+ /* Translators: 1 - The total number of page requests. */
1526
+ __( 'Your page makes %1$d requests.', 'all-in-one-seo-pack' ),
1527
 
1528
+ // Reference: src/vue/classes/SiteAnalysis.js:452
1529
+ /* Translators: 1 - The total number of page requests. */
1530
+ __( 'The page makes %1$d requests.', 'all-in-one-seo-pack' ),
1531
 
1532
+ // Reference: src/vue/classes/SiteAnalysis.js:454
1533
+ __( 'More than 20 requests can result in slow page loading.', 'all-in-one-seo-pack' ),
 
1534
 
1535
+ // Reference: src/vue/classes/SiteAnalysis.js:462
1536
+ __( 'Images:', 'all-in-one-seo-pack' ),
1537
 
1538
+ // Reference: src/vue/classes/SiteAnalysis.js:462
1539
+ __( 'JavaScript:', 'all-in-one-seo-pack' ),
 
1540
 
1541
+ // Reference: src/vue/classes/SiteAnalysis.js:462
1542
+ __( 'CSS:', 'all-in-one-seo-pack' ),
 
1543
 
1544
+ // Reference: src/vue/classes/SiteAnalysis.js:463
1545
+ __( 'Try to replace embedded objects with HTML5 alternatives.', 'all-in-one-seo-pack' ),
 
1546
 
1547
+ // Reference: src/vue/classes/SiteAnalysis.js:47
1548
+ /* Translators: 1 - The length of the SEO title as a number. */
1549
+ __( 'Your SEO title is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
1550
 
1551
+ // Reference: src/vue/classes/SiteAnalysis.js:471
1552
+ /* Translators: 1 - The total number of page requests. */
1553
+ __( 'The size of the HTML document is %1$d Kb.', 'all-in-one-seo-pack' ),
1554
 
1555
+ // Reference: src/vue/classes/SiteAnalysis.js:473
1556
+ __( 'This is over our recommendation of 50 Kb.', 'all-in-one-seo-pack' ),
1557
 
1558
+ // Reference: src/vue/classes/SiteAnalysis.js:477
1559
+ __( 'This is under the average of 33 Kb.', 'all-in-one-seo-pack' ),
1560
 
1561
+ // Reference: src/vue/classes/SiteAnalysis.js:485
1562
+ __( 'In order to reduce page size, remove any unnecessary tags from your markup. This includes developer comments, which are invisible to your users - search engines ignore the text in comments, too.', 'all-in-one-seo-pack' ),
1563
 
1564
+ // Reference: src/vue/classes/SiteAnalysis.js:485
1565
+ __( 'Sometimes inline CSS is a culprit. A little inline CSS can help your page render faster. Too much will bloat the HTML file and increase the page loading time.', 'all-in-one-seo-pack' ),
1566
 
1567
+ // Reference: src/vue/classes/SiteAnalysis.js:485
1568
+ __( 'You can reduce CSS repetition with HTML class and ID attributes. Often the same rules will be repeated across many page elements, embedded in each tag\'s "style" attribute. You can extract them into a single "style" tag and use classes and ID\'s to target each element.', 'all-in-one-seo-pack' ),
1569
 
1570
+ // Reference: src/vue/classes/SiteAnalysis.js:485
1571
+ __( 'Removing white space can also have an impact on your HTML page\'s size. White space characters like carriage returns and tabs are ignored by the browser, but they make the markup easier for developers to read. So you should always strip them from your templates or themes before you use them in a production environment.', 'all-in-one-seo-pack' ),
1572
 
1573
+ // Reference: src/vue/classes/SiteAnalysis.js:49
1574
+ /* Translators: 1 - The length of the SEO title as a number. */
1575
+ __( 'The SEO title is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
1576
 
1577
+ // Reference: src/vue/classes/SiteAnalysis.js:495
1578
+ /* Translators: 1 - The total number of page requests. */
1579
+ __( 'The response time of your page is %1$f seconds. It is recommended to keep it equal to or below 0.2 seconds.', 'all-in-one-seo-pack' ),
1580
 
1581
+ // Reference: src/vue/classes/SiteAnalysis.js:497
1582
+ /* Translators: 1 - The total number of page requests. */
1583
+ __( 'The response time of the page is %1$f seconds. It is recommended to keep it equal to or below 0.2 seconds.', 'all-in-one-seo-pack' ),
1584
 
1585
+ // Reference: src/vue/classes/SiteAnalysis.js:501
1586
+ __( 'Your response time is under 0.2 seconds.', 'all-in-one-seo-pack' ),
1587
 
1588
+ // Reference: src/vue/classes/SiteAnalysis.js:502
1589
+ __( 'The response time is under 0.2 seconds.', 'all-in-one-seo-pack' ),
1590
 
1591
+ // Reference: src/vue/classes/SiteAnalysis.js:507
1592
+ __( 'If you want to continue to improve your response time, the simplest and fastest fix is to use a caching plugin. Caching plugins keep a cached version of each page on your site. Instead of building the page from scratch, the server will send the cached copy.', 'all-in-one-seo-pack' ),
1593
 
1594
+ // Reference: src/vue/classes/SiteAnalysis.js:507
1595
+ __( 'You can get an even greater boost in speed with a content delivery network service. These services host a copy of your content on multiple servers spread out across the globe. A user\'s request is handled by the edge server that\'s closest to their physical location, so the content arrives incredibly fast.', 'all-in-one-seo-pack' ),
1596
 
1597
+ // Reference: src/vue/classes/SiteAnalysis.js:516
1598
+ __( 'Plugins from your website are publicly visible.', 'all-in-one-seo-pack' ),
1599
 
1600
+ // Reference: src/vue/classes/SiteAnalysis.js:517
1601
+ __( 'Plugins from the website are publicly visible.', 'all-in-one-seo-pack' ),
1602
 
1603
+ // Reference: src/vue/classes/SiteAnalysis.js:521
1604
+ __( 'You have no visible plugins!', 'all-in-one-seo-pack' ),
1605
 
1606
+ // Reference: src/vue/classes/SiteAnalysis.js:522
1607
+ __( 'There are no visible plugins.', 'all-in-one-seo-pack' ),
1608
 
1609
+ // Reference: src/vue/classes/SiteAnalysis.js:528
1610
+ __( 'It\'s a great idea to try and hide the plugins you have visible. From time to time vulnerabilities are found in plugins and if your site is not updated in a timely fashion, outdated plugins and themes can be exploited.', 'all-in-one-seo-pack' ),
1611
 
1612
+ // Reference: src/vue/classes/SiteAnalysis.js:538
1613
+ /* Translators: 1 - The name of the theme. */
1614
+ __( 'Anyone can see that you are using the %1$s theme.', 'all-in-one-seo-pack' ),
1615
 
1616
+ // Reference: src/vue/classes/SiteAnalysis.js:540
1617
+ /* Translators: 1 - The name of the theme. */
1618
+ __( 'Anyone can see that they are using the %1$s theme.', 'all-in-one-seo-pack' ),
1619
 
1620
+ // Reference: src/vue/classes/SiteAnalysis.js:544
1621
+ __( 'Your theme is not visible!', 'all-in-one-seo-pack' ),
1622
 
1623
+ // Reference: src/vue/classes/SiteAnalysis.js:545
1624
+ __( 'The theme is not visible.', 'all-in-one-seo-pack' ),
1625
 
1626
+ // Reference: src/vue/classes/SiteAnalysis.js:55
1627
+ __( 'Ensure your page\'s title includes your target keywords, and design it to encourage users to click.', 'all-in-one-seo-pack' ),
1628
 
1629
+ // Reference: src/vue/classes/SiteAnalysis.js:55
1630
+ __( 'Writing compelling titles is both a science and an art. There are automated tools that can analyze your title against known metrics for readability and click-worthiness. You also need to understand the psychology of your target audience.', 'all-in-one-seo-pack' ),
1631
 
1632
+ // Reference: src/vue/classes/SiteAnalysis.js:550
1633
+ __( 'It\'s a great idea to try and hide the theme you have visible. From time to time vulnerabilities are found in themes and if your site is not updated in a timely fashion, outdated plugins and themes can be exploited.', 'all-in-one-seo-pack' ),
1634
 
1635
+ // Reference: src/vue/classes/SiteAnalysis.js:559
1636
+ __( 'Directory Listing seems to be enabled on your server.', 'all-in-one-seo-pack' ),
1637
 
1638
+ // Reference: src/vue/classes/SiteAnalysis.js:56
1639
+ __( 'Edit Your Page Title', 'all-in-one-seo-pack' ),
1640
 
1641
+ // Reference: src/vue/classes/SiteAnalysis.js:560
1642
+ __( 'Directory Listing seems to be enabled on the server.', 'all-in-one-seo-pack' ),
1643
 
1644
+ // Reference: src/vue/classes/SiteAnalysis.js:564
1645
+ __( 'Directory Listing seems to be disabled on your server.', 'all-in-one-seo-pack' ),
1646
 
1647
+ // Reference: src/vue/classes/SiteAnalysis.js:565
1648
+ __( 'Directory Listing seems to be disabled on the server.', 'all-in-one-seo-pack' ),
1649
 
1650
+ // Reference: src/vue/classes/SiteAnalysis.js:570
1651
+ __( 'Fortunately, every popular web server has options to prevent directory listings. They\'ll show a "403 forbidden" message instead.', 'all-in-one-seo-pack' ),
 
1652
 
1653
+ // Reference: src/vue/classes/SiteAnalysis.js:570
1654
+ __( 'Alternatively, you can create an empty index.php file and save it in every directory on your site. That\'s an approach that WordPress uses and it works well.', 'all-in-one-seo-pack' ),
 
1655
 
1656
+ // Reference: src/vue/classes/SiteAnalysis.js:579
1657
+ __( 'It looks like your site has been added to one of Google\'s malwares lists.', 'all-in-one-seo-pack' ),
1658
 
1659
+ // Reference: src/vue/classes/SiteAnalysis.js:580
1660
+ __( 'It looks like this site has been added to one of Google\'s malwares lists.', 'all-in-one-seo-pack' ),
1661
 
1662
+ // Reference: src/vue/classes/SiteAnalysis.js:584
1663
+ __( 'Google has not flagged your site for malware!', 'all-in-one-seo-pack' ),
1664
 
1665
+ // Reference: src/vue/classes/SiteAnalysis.js:585
1666
+ __( 'Google has not flagged this site for malware.', 'all-in-one-seo-pack' ),
1667
 
1668
+ // Reference: src/vue/classes/SiteAnalysis.js:590
1669
+ __( 'Google Safe browsing shows warnings and alerts to users if they visit a suspicious website. If you are flagged by Google Safe Browsing, you should take immediate steps to fix that.', 'all-in-one-seo-pack' ),
1670
 
1671
+ // Reference: src/vue/classes/SiteAnalysis.js:599
1672
+ __( 'Your site is not using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
1673
 
1674
+ // Reference: src/vue/classes/SiteAnalysis.js:600
1675
+ __( 'The site is not using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
1676
 
1677
+ // Reference: src/vue/classes/SiteAnalysis.js:604
1678
+ __( 'Your site is using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
1679
 
1680
+ // Reference: src/vue/classes/SiteAnalysis.js:605
1681
+ __( 'The site is using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
1682
 
1683
+ // Reference: src/vue/classes/SiteAnalysis.js:610
1684
+ __( 'If you aren\'t using an SSL certificate for your site that means you are losing a lot of potential traffic. We recommend getting an SSL certificate installed immediately.', 'all-in-one-seo-pack' ),
1685
 
1686
+ // Reference: src/vue/classes/SiteAnalysis.js:66
1687
+ __( 'No meta description was found for your page.', 'all-in-one-seo-pack' ),
 
1688
 
1689
+ // Reference: src/vue/classes/SiteAnalysis.js:67
1690
+ __( 'No meta description was found for the page.', 'all-in-one-seo-pack' ),
1691
 
1692
+ // Reference: src/vue/classes/SiteAnalysis.js:71
1693
+ /* Translators: 1 - The length of the meta description as a number. */
1694
+ __( 'Your meta description is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
1695
 
1696
+ // Reference: src/vue/classes/SiteAnalysis.js:73
1697
+ /* Translators: 1 - The length of the meta description as a number. */
1698
+ __( 'The meta description is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
1699
 
1700
+ // Reference: src/vue/classes/SiteAnalysis.js:77
1701
+ /* Translators: 1 - The length of the meta description as a number. */
1702
+ __( 'Your meta description is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
1703
 
1704
+ // Reference: src/vue/classes/SiteAnalysis.js:79
1705
+ /* Translators: 1 - The length of the meta description as a number. */
1706
+ __( 'The meta description is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
1707
 
1708
+ // Reference: src/vue/classes/SiteAnalysis.js:84
1709
+ /* Translators: 1 - The length of the meta description as a number. */
1710
+ __( 'Your meta description is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
1711
 
1712
+ // Reference: src/vue/classes/SiteAnalysis.js:86
1713
+ /* Translators: 1 - The length of the meta description as a number. */
1714
+ __( 'The meta description is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
1715
 
1716
+ // Reference: src/vue/classes/SiteAnalysis.js:92
1717
+ __( 'Write a meta description for your page. Use your target keywords (in a natural way) and write with human readers in mind. Summarize the content - describe the topics your article discusses.', 'all-in-one-seo-pack' ),
1718
 
1719
+ // Reference: src/vue/classes/SiteAnalysis.js:92
1720
+ __( 'The description should stimulate reader interest and get them to click on the article. Think of it as a mini-advertisement for your content.', 'all-in-one-seo-pack' ),
1721
 
1722
+ // Reference: src/vue/classes/SiteAnalysis.js:93
1723
+ __( 'Edit Your Meta Description', 'all-in-one-seo-pack' ),
1724
 
1725
+ // Reference: src/vue/components/common/base/WpAdditionalFilters.vue:46
1726
+ __( 'Filter', 'all-in-one-seo-pack' ),
1727
 
1728
+ // Reference: src/vue/components/common/base/WpBulkActions.vue:35
1729
+ __( 'Bulk Actions', 'all-in-one-seo-pack' ),
1730
 
1731
+ // Reference: src/vue/components/common/base/WpBulkActions.vue:36
1732
+ __( 'Apply', 'all-in-one-seo-pack' ),
1733
 
1734
+ // Reference: src/vue/components/common/base/Editor.vue:122
1735
+ __( 'Search for an item...', 'all-in-one-seo-pack' ),
1736
 
1737
+ // Reference: src/vue/components/common/base/Editor.vue:123
1738
+ __( 'Enter a custom field name...', 'all-in-one-seo-pack' ),
1739
 
1740
+ // Reference: src/vue/components/common/base/WpTable.vue:336
1741
+ __( 'of', 'all-in-one-seo-pack' ),
1742
 
1743
+ // Reference: src/vue/components/common/base/WpTable.vue:337
1744
+ __( 'items', 'all-in-one-seo-pack' ),
 
1745
 
1746
+ // Reference: src/vue/components/common/base/WpTable.vue:338
1747
+ __( 'No items found', 'all-in-one-seo-pack' ),
 
1748
 
1749
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:226
1750
+ __( 'Custom Rules', 'all-in-one-seo-pack' ),
 
1751
 
1752
+ // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:110
1753
+ __( 'Select Rule', 'all-in-one-seo-pack' ),
 
1754
 
1755
+ // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:112
1756
+ __( 'Add Custom Rule', 'all-in-one-seo-pack' ),
1757
 
1758
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:164
1759
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:227
1760
+ __( 'Regex', 'all-in-one-seo-pack' ),
1761
 
1762
+ // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:114
1763
+ __( 'Select a Value or Add a New One', 'all-in-one-seo-pack' ),
 
1764
 
1765
+ // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:115
1766
+ __( 'Key', 'all-in-one-seo-pack' ),
1767
 
1768
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:147
1769
+ __( 'Value', 'all-in-one-seo-pack' ),
1770
 
1771
+ // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:123
1772
+ __( 'Select Status', 'all-in-one-seo-pack' ),
1773
 
1774
+ // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:134
1775
+ __( 'Select Roles', 'all-in-one-seo-pack' ),
1776
 
1777
+ // Reference: src/vue/pages/settings/views/RssContent.vue:93
1778
+ __( 'Learn more', 'all-in-one-seo-pack' ),
1779
 
1780
+ // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:178
1781
+ __( 'Enter an IP Address', 'all-in-one-seo-pack' ),
 
1782
 
1783
+ // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:186
1784
+ __( 'Enter the Server Name', 'all-in-one-seo-pack' ),
1785
 
1786
+ // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:199
1787
+ __( 'Enter a WordPress Filter Name', 'all-in-one-seo-pack' ),
1788
 
1789
+ // Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:207
1790
+ __( 'Enter a Locale Code, e.g.: en_GB, es_ES', 'all-in-one-seo-pack' ),
1791
 
1792
+ // Reference: src/vue/components/common/core/AddRedirection.vue:231
1793
+ __( 'Redirect Type:', 'all-in-one-seo-pack' ),
1794
 
1795
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:263
1796
+ __( 'Target URL', 'all-in-one-seo-pack' ),
1797
 
1798
+ // Reference: src/vue/components/common/core/AddRedirection.vue:233
1799
+ __( 'Enter a URL or start by typing a page or post title, slug or ID.', 'all-in-one-seo-pack' ),
1800
 
1801
+ // Reference: src/vue/components/common/core/AddRedirection.vue:234
1802
+ __( 'Add URL', 'all-in-one-seo-pack' ),
1803
 
1804
+ // Reference: src/vue/components/common/core/AddRedirection.vue:236
1805
+ /* Translators: 1 - Oening link tag, 2 - Closing link tag. */
1806
+ __( 'Enter a relative URL to redirect from or start by typing in page or post title, slug or ID. You can also use regex (%1$s)', 'all-in-one-seo-pack' ),
1807
 
1808
+ // Reference: src/vue/components/common/core/AddRedirection.vue:236
1809
+ /* Translators: 1 - Oening link tag, 2 - Closing link tag. */
1810
+ __( 'what\'s this?', 'all-in-one-seo-pack' ),
1811
 
1812
+ // Reference: src/vue/components/common/core/AddRedirection.vue:238
1813
+ __( 'Query Parameters:', 'all-in-one-seo-pack' ),
1814
 
1815
+ // Reference: src/vue/components/common/core/AddRedirection.vue:241
1816
+ __( 'An error occurred while adding your redirects. Please try again later.', 'all-in-one-seo-pack' ),
1817
 
1818
+ // Reference: src/vue/components/common/core/AddRedirection.vue:269
1819
+ __( 'Source URL\'s', 'all-in-one-seo-pack' ),
1820
 
1821
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:259
1822
+ __( 'Source URL', 'all-in-one-seo-pack' ),
1823
 
1824
+ // Reference: src/vue/components/common/core/AddRedirection.vue:272
1825
+ __( 'Add Redirects', 'all-in-one-seo-pack' ),
1826
 
1827
+ // Reference: src/vue/components/common/core/AddRedirection.vue:272
1828
+ __( 'Add Redirect', 'all-in-one-seo-pack' ),
1829
 
1830
+ // Reference: src/vue/components/common/core/AddRedirection.vue:287
1831
+ /* Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>. */
1832
+ __( 'Your target URL should be an absolute URL like %1$s or start with a slash.', 'all-in-one-seo-pack' ),
1833
 
1834
+ // Reference: src/vue/components/common/core/AddRedirection.vue:296
1835
+ /* Translators: 1 - Adds a html tag with an option like: <code>^</code>. */
1836
+ __( 'Your target URL contains the invalid character(s) %1$s', 'all-in-one-seo-pack' ),
1837
 
1838
+ // Reference: src/vue/components/common/core/AddRedirection.vue:309
1839
+ __( 'Your URL appears to contain a domain inside the path: %1$s. Did you mean to use %2$s instead?', 'all-in-one-seo-pack' ),
 
1840
 
1841
+ // Reference: src/vue/components/common/core/AddRedirection.vue:405
1842
+ __( 'A redirect already exists for this source URL. To make changes, edit the original instead.', 'all-in-one-seo-pack' ),
 
1843
 
1844
+ // Reference: src/vue/components/common/core/AddRedirection.vue:447
1845
+ __( 'Moved Permanently', 'all-in-one-seo-pack' ),
1846
 
1847
+ // Reference: src/vue/components/common/core/AddRedirection.vue:448
1848
+ __( 'Ignore all parameters', 'all-in-one-seo-pack' ),
1849
 
1850
+ // Reference: src/vue/components/common/core/AddRedirection.vue:462
1851
+ __( 'This is a duplicate of a URL you are already adding. You can only add unique source URL\'s.', 'all-in-one-seo-pack' ),
 
1852
 
1853
+ // Reference: src/vue/components/common/core/AdditionalPages.vue:100
1854
+ __( 'Last Modified', 'all-in-one-seo-pack' ),
 
 
1855
 
1856
+ // Reference: src/vue/components/common/core/AdditionalPages.vue:102
1857
+ __( 'Add New', 'all-in-one-seo-pack' ),
1858
 
1859
+ // Reference: src/vue/components/common/core/AdditionalPages.vue:103
1860
+ __( 'always', 'all-in-one-seo-pack' ),
1861
 
1862
+ // Reference: src/vue/components/common/core/AdditionalPages.vue:96
1863
+ /* Translators: 1 - An example URL (e.g. https://aioseo.com/example). */
1864
+ __( 'Enter a page URL, e.g. %1$s', 'all-in-one-seo-pack' ),
1865
 
1866
+ // Reference: src/vue/components/common/core/AdditionalPages.vue:97
1867
+ __( 'Page URL', 'all-in-one-seo-pack' ),
1868
 
1869
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:162
1870
+ __( 'Ignore Slash', 'all-in-one-seo-pack' ),
1871
 
1872
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:163
1873
+ __( 'Ignore Case', 'all-in-one-seo-pack' ),
1874
 
1875
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:196
1876
+ __( 'The regex syntax is invalid.', 'all-in-one-seo-pack' ),
1877
 
1878
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:202
1879
+ __( 'Please enter a valid relative source URL.', 'all-in-one-seo-pack' ),
1880
 
1881
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:206
1882
+ __( 'Permalinks are not currently supported.', 'all-in-one-seo-pack' ),
1883
 
1884
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:210
1885
+ __( 'This redirect is supported using the Relocate Site feature under Full Site Redirect tab.', 'all-in-one-seo-pack' ),
1886
 
1887
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:226
1888
+ __( 'Your source is the same as a target and this will create a loop.', 'all-in-one-seo-pack' ),
1889
 
1890
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:243
1891
+ __( 'Anchor values are not sent to the server and cannot be redirected.', 'all-in-one-seo-pack' ),
1892
 
1893
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:248
1894
+ /* Translators: 1 - Adds a html tag with an option like: <code>Regex</code> */
1895
+ __( 'Remember to enable the %1$s option if this is a regular expression.', 'all-in-one-seo-pack' ),
1896
 
1897
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:254
1898
+ /* Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>. */
1899
+ __( 'To prevent a greedy regular expression you can use %1$s to anchor it to the start of the URL. For example: %2$s', 'all-in-one-seo-pack' ),
1900
 
1901
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:259
1902
+ /* Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>. */
1903
+ __( 'The caret %1$s should be at the start. For example: %2$s', 'all-in-one-seo-pack' ),
1904
 
1905
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:264
1906
+ /* Translators: 1 - Adds a html tag with an option like: <code>^/</code> */
1907
+ __( 'The source URL should probably start with a %1$s', 'all-in-one-seo-pack' ),
1908
 
1909
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:269
1910
+ /* Translators: 1 - Adds a html tag with an option like: <code>^/</code> */
1911
+ __( 'The dollar symbol %1$s should be at the end. For example: %2$s', 'all-in-one-seo-pack' ),
1912
 
1913
+ // Reference: src/vue/components/common/core/AddRedirectionUrl.vue:275
1914
+ __( 'Some servers may be configured to serve file resources directly, preventing a redirect occurring.', 'all-in-one-seo-pack' ),
1915
 
1916
+ // Reference: src/vue/components/lite/local-business/Name.vue:16
1917
+ __( 'name', 'all-in-one-seo-pack' ),
1918
 
1919
+ // Reference: src/vue/components/lite/local-business/Name.vue:17
1920
+ __( 'Your name or company name.', 'all-in-one-seo-pack' ),
1921
 
1922
+ // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:37
1923
+ __( 'Price Indicator:', 'all-in-one-seo-pack' ),
1924
 
1925
+ // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:38
1926
+ __( 'Currencies Accepted:', 'all-in-one-seo-pack' ),
1927
 
1928
+ // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:39
1929
+ __( 'Payment Methods Accepted:', 'all-in-one-seo-pack' ),
1930
 
1931
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:129
1932
+ __( 'Website URL:', 'all-in-one-seo-pack' ),
1933
 
1934
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:130
1935
+ __( 'About Page URL:', 'all-in-one-seo-pack' ),
1936
 
1937
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:131
1938
+ __( 'Contact Page URL:', 'all-in-one-seo-pack' ),
1939
 
1940
+ // Reference: src/vue/components/lite/local-business/BusinessIds.vue:25
1941
+ __( 'VAT ID:', 'all-in-one-seo-pack' ),
1942
 
1943
+ // Reference: src/vue/components/lite/local-business/BusinessIds.vue:26
1944
+ __( 'Tax ID:', 'all-in-one-seo-pack' ),
1945
 
1946
+ // Reference: src/vue/components/lite/core/UpgradeBar.vue:22
1947
+ /* Translators: 1 - "Pro". */
1948
+ __( 'upgrading to %1$s', 'all-in-one-seo-pack' ),
1949
 
1950
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:56
1951
+ /* Translators: This refers to a discount ("As a valued user you receive 50%, automatically applied at checkout!"). */
1952
+ __( 'off', 'all-in-one-seo-pack' ),
1953
 
1954
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:58
1955
+ __( 'License Key', 'all-in-one-seo-pack' ),
1956
 
1957
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:59
1958
+ __( 'Your license key provides access to updates and addons.', 'all-in-one-seo-pack' ),
1959
 
1960
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:103
1961
+ __( 'Paste your license key here', 'all-in-one-seo-pack' ),
1962
 
1963
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:104
1964
+ __( 'Connect', 'all-in-one-seo-pack' ),
1965
 
1966
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:72
1967
+ /* Translators: 1 - "upgrading to Pro". */
1968
+ __( 'To unlock more features, consider %1$s.', 'all-in-one-seo-pack' ),
1969
 
1970
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:76
1971
+ /* Translators: 1 - "50% off". */
1972
+ __( 'As a valued user you receive %1$s, automatically applied at checkout!', 'all-in-one-seo-pack' ),
1973
 
1974
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:121
1975
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
1976
+ __( 'You\'re using %1$s - no license needed. Enjoy!', 'all-in-one-seo-pack' ),
1977
 
1978
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:134
1979
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
1980
+ __( 'Already purchased? Simply enter your license key below to connect with %1$s!', 'all-in-one-seo-pack' ),
1981
 
1982
+ // Reference: src/vue/pages/settings/views/RssContent.vue:101
1983
+ /* Translators: 1 - Learn more link. */
1984
+ __( 'Your user account role does not have access to edit this field. %1$s', 'all-in-one-seo-pack' ),
1985
 
1986
+ // Reference: src/vue/components/lite/core/UpgradeBar.vue:19
1987
+ __( 'Free', 'all-in-one-seo-pack' ),
 
1988
 
1989
+ // Reference: src/vue/components/lite/core/UpgradeBar.vue:32
1990
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro". */
1991
+ __( 'You\'re using %1$s. To unlock more features, consider %2$s', 'all-in-one-seo-pack' ),
1992
 
1993
+ // Reference: src/vue/components/lite/local-business/AreaServed.vue:16
1994
+ __( 'The geographic area where a service or offered item is provided.', 'all-in-one-seo-pack' ),
1995
 
1996
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:55
1997
+ __( 'Address Line 1', 'all-in-one-seo-pack' ),
1998
 
1999
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:56
2000
+ __( 'Address Line 2', 'all-in-one-seo-pack' ),
2001
 
2002
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:57
2003
+ __( 'Zip code:', 'all-in-one-seo-pack' ),
2004
 
2005
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:58
2006
+ __( 'City:', 'all-in-one-seo-pack' ),
2007
 
2008
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:59
2009
+ __( 'State:', 'all-in-one-seo-pack' ),
2010
 
2011
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:60
2012
+ __( 'Country:', 'all-in-one-seo-pack' ),
2013
 
2014
+ // Reference: src/vue/components/lite/local-business/BusinessContact.vue:28
2015
+ __( 'Email address:', 'all-in-one-seo-pack' ),
2016
 
2017
+ // Reference: src/vue/components/lite/local-business/BusinessContact.vue:29
2018
+ __( 'Phone number:', 'all-in-one-seo-pack' ),
2019
 
2020
+ // Reference: src/vue/components/lite/local-business/BusinessContact.vue:30
2021
+ __( 'Fax number:', 'all-in-one-seo-pack' ),
2022
 
2023
+ // Reference: src/vue/components/common/core/ApiBar.vue:15
2024
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:178
2025
+ /* Translators: 1 - The plugin short name ("AIOSEO Pro"), 2 - "Pro" string. */
2026
+ __( 'Pro', 'all-in-one-seo-pack' ),
2027
 
2028
+ // Reference: src/vue/components/common/core/ApiBar.vue:16
2029
+ __( 'Click here to learn more', 'all-in-one-seo-pack' ),
2030
 
2031
+ // Reference: src/vue/components/common/core/ApiBar.vue:26
2032
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro". */
2033
+ __( '%1$s relies on the WordPress Rest API and your site might have it disabled. %2$s.', 'all-in-one-seo-pack' ),
2034
 
2035
+ // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:50
2036
+ __( 'Google Maps API Key', 'all-in-one-seo-pack' ),
2037
 
2038
+ // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:51
2039
+ __( 'Integrating with Google Maps will allow your users to find exactly where your business is located. Our interactive maps let them see your Google Reviews and get directions directly from your site. Create multiple maps for use with multiple locations.', 'all-in-one-seo-pack' ),
2040
 
2041
+ // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:52
2042
+ __( 'API Key', 'all-in-one-seo-pack' ),
2043
 
2044
+ // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:53
2045
+ __( 'Map Settings', 'all-in-one-seo-pack' ),
2046
 
2047
+ // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:59
2048
+ /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO") */
2049
+ __( 'To add this widget, visit the %1$swidgets page%2$s and look for the "%3$s Local - Map" widget.', 'all-in-one-seo-pack' ),
2050
 
2051
+ // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:64
2052
+ /* Translators: 1 - Learn more link. */
2053
+ __( 'Use the following shortcode to display the location map. %1$s', 'all-in-one-seo-pack' ),
2054
 
2055
+ // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:69
2056
+ /* Translators: 1 - The plugin short name ("AIOSEO") */
2057
+ __( 'To add this block, edit a page or post and search for the "%1$s Local - Map" block.', 'all-in-one-seo-pack' ),
2058
 
2059
+ // Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:74
2060
+ /* Translators: 1 - Learn more link. */
2061
+ __( 'Use the following PHP code anywhere in your theme to display the location map. %1$s', 'all-in-one-seo-pack' ),
2062
 
2063
+ // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:122
2064
+ __( 'Map', 'all-in-one-seo-pack' ),
2065
 
2066
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:278
2067
+ __( 'Opening Hours block, widget and shortcode', 'all-in-one-seo-pack' ),
2068
 
2069
+ // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:103
2070
+ /* Translators: 1 - Learn more link. */
2071
+ __( 'Use the following PHP code anywhere in your theme to display the location info. %1$s', 'all-in-one-seo-pack' ),
2072
 
2073
+ // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:109
2074
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
2075
+ __( 'Whether your business has multiple locations, or just one, %1$s makes it easy to configure and display relevant information about your local business. You can use the custom-built tools below, or you can use the Locations custom post type (multiple locations only) to generate relevant and necessary information for search engines or for your customers.', 'all-in-one-seo-pack' ),
2076
 
2077
+ // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:111
2078
+ __( 'Use the %1$sLocations%2$s Post Type in the menu on the left to start adding your locations.', 'all-in-one-seo-pack' ),
2079
 
2080
+ // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:113
2081
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
2082
+ __( 'Multiple Locations feature is available only for %1$s Pro users. Upgrade to Pro and unlock all %2$s features!', 'all-in-one-seo-pack' ),
2083
 
2084
+ // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:88
2085
+ /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO") */
2086
+ __( 'To add this widget, visit the %1$swidgets page%2$s and look for the "%3$s Local - Business Info" widget.', 'all-in-one-seo-pack' ),
2087
 
2088
+ // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:93
2089
+ /* Translators: 1 - Learn more link. */
2090
+ __( 'Use the following shortcode to display the location info. %1$s', 'all-in-one-seo-pack' ),
2091
 
2092
+ // Reference: src/vue/pages/local-seo/views/pro/Locations.vue:98
2093
+ /* Translators: 1 - The plugin short name ("AIOSEO") */
2094
+ __( 'To add this block, edit a page or post and search for the "%1$s Local - Business Info" block.', 'all-in-one-seo-pack' ),
2095
 
2096
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:135
2097
+ __( 'Animal Shelter', 'all-in-one-seo-pack' ),
 
 
 
2098
 
2099
+ // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:103
2100
+ __( 'Integrating with Google Maps will allow your users to find exactly where your business is located. Our interactive maps let them see your Google Reviews and get directions directly from your site. Create multiple maps for use with multiple locations. %s', 'all-in-one-seo-pack' ),
2101
 
2102
+ // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:105
2103
+ __( 'A Google API Key is necessary to render your maps. %s', 'all-in-one-seo-pack' ),
2104
 
2105
+ // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:107
2106
+ __( 'Your API Key is invalid. Please make sure you have set your key correctly. %1$s', 'all-in-one-seo-pack' ),
2107
 
2108
+ // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:108
2109
+ __( 'Your Maps Embed API is not enabled. For a more seamless experience with rich information cards, please enable it in your Google Project. %1$s', 'all-in-one-seo-pack' ),
2110
 
2111
+ // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:109
2112
+ __( 'Display Map', 'all-in-one-seo-pack' ),
2113
 
2114
+ // Reference: src/vue/pages/local-seo/views/pro/Maps.vue:110
2115
+ __( 'Map Preview', 'all-in-one-seo-pack' ),
2116
 
2117
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:68
2118
+ __( 'WP Roles (Editor, Author)', 'all-in-one-seo-pack' ),
2119
 
2120
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:69
2121
+ __( 'SEO Manager Role', 'all-in-one-seo-pack' ),
2122
 
2123
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:70
2124
+ __( 'SEO Editor Role', 'all-in-one-seo-pack' ),
2125
 
2126
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:71
2127
+ __( 'Default settings that just work', 'all-in-one-seo-pack' ),
2128
 
2129
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:72
2130
+ __( 'Granular controls per role', 'all-in-one-seo-pack' ),
2131
 
2132
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:73
2133
+ __( 'Upgrade to Pro and Unlock Access Control', 'all-in-one-seo-pack' ),
2134
 
2135
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:75
2136
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
2137
+ __( 'Access Control is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
2138
 
2139
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:10
2140
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2141
+ __( 'By default Admins have access to %1$sall SEO site settings%2$s', 'all-in-one-seo-pack' ),
2142
 
2143
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:13
2144
+ __( 'Editor', 'all-in-one-seo-pack' ),
2145
 
2146
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:16
2147
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2148
+ __( 'By default Editors have access to %1$sSEO settings for General Settings, Search Appearance and Social Networks, as well as all settings for individual pages and posts.%2$s', 'all-in-one-seo-pack' ),
2149
 
2150
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:19
2151
+ __( 'Author', 'all-in-one-seo-pack' ),
2152
 
2153
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:22
2154
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2155
+ __( 'By default Authors have access to %1$sSEO settings for individual pages and posts that they already have permission to edit.%2$s', 'all-in-one-seo-pack' ),
2156
 
2157
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:25
2158
+ __( 'Contributor', 'all-in-one-seo-pack' ),
2159
 
2160
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:28
2161
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2162
+ __( 'By default Contributors have access to %1$sSEO settings for individual pages and posts that they already have permission to edit.%2$s', 'all-in-one-seo-pack' ),
2163
 
2164
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:31
2165
+ __( 'SEO Manager', 'all-in-one-seo-pack' ),
2166
 
2167
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:34
2168
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2169
+ __( 'By default SEO Managers have access to %1$sSEO settings for General Settings, Redirections, and individual pages and posts.%2$s', 'all-in-one-seo-pack' ),
2170
 
2171
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:37
2172
+ __( 'SEO Editor', 'all-in-one-seo-pack' ),
2173
 
2174
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:40
2175
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2176
+ __( 'By default SEO Editors have access to %1$sSEO settings for individual pages and posts.%2$s', 'all-in-one-seo-pack' ),
2177
 
2178
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:45
2179
+ /* Translators: 1 - The plugin name ("All in One SEO") */
2180
+ __( 'By default, only users with an Administrator role have permission to manage %1$s within your WordPress admin area. With Access Controls, though, you can easily extend specific access permissions to other user roles.', 'all-in-one-seo-pack' ),
2181
 
2182
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:46
2183
+ __( 'Access Control Settings', 'all-in-one-seo-pack' ),
2184
 
2185
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:57
2186
+ __( 'By default the %1$s role %2$shas no access%3$s to %4$s settings.', 'all-in-one-seo-pack' ),
2187
 
2188
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:7
2189
+ __( 'Administrator', 'all-in-one-seo-pack' ),
2190
 
2191
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:148
2192
+ __( 'Advanced Locations Settings', 'all-in-one-seo-pack' ),
2193
 
2194
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:149
2195
+ __( 'Locations Permalink', 'all-in-one-seo-pack' ),
2196
 
2197
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:150
2198
+ __( 'Use custom slug', 'all-in-one-seo-pack' ),
2199
 
2200
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:151
2201
+ __( 'Slug is empty or is already taken. Please enter a different one.', 'all-in-one-seo-pack' ),
2202
 
2203
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:152
2204
+ __( 'Locations Category Permalink', 'all-in-one-seo-pack' ),
2205
 
2206
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:153
2207
+ __( 'Use custom category slug', 'all-in-one-seo-pack' ),
2208
 
2209
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:154
2210
+ __( 'Enhanced Search', 'all-in-one-seo-pack' ),
2211
 
2212
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:155
2213
+ __( 'Include business locations in site-wide search results. Users searching for street name, zip code or city will now also get your business location(s) in their search results.', 'all-in-one-seo-pack' ),
2214
 
2215
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:156
2216
+ __( 'Enhanced Search cannot be enabled on your website because there is a search query conflict. To learn more about this, %1$sclick here%2$s.', 'all-in-one-seo-pack' ),
2217
 
2218
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:157
2219
+ __( 'Enhanced Search - Excerpt', 'all-in-one-seo-pack' ),
2220
 
2221
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:158
2222
+ __( 'Shows the location address appended to the search result.', 'all-in-one-seo-pack' ),
 
2223
 
2224
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:159
2225
+ __( 'Custom Admin Labels', 'all-in-one-seo-pack' ),
2226
 
2227
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:160
2228
+ __( 'With multiple locations, you will have a new menu item in your admin sidebar. By default, this menu item is labeled using the plural term of locations with each single item being called a location. If you like, you may enter custom labels to better match your business.', 'all-in-one-seo-pack' ),
2229
 
2230
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:161
2231
+ __( 'Single label', 'all-in-one-seo-pack' ),
2232
 
2233
+ // Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:162
2234
+ __( 'Plural label', 'all-in-one-seo-pack' ),
2235
 
2236
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:199
2237
+ /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO"). */
2238
+ __( 'To add this widget, visit the %1$swidgets page%2$s and look for the "%3$s Local - Opening Hours" widget.', 'all-in-one-seo-pack' ),
2239
 
2240
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:204
2241
+ /* Translators: 1 - Learn more link. */
2242
+ __( 'Use the following shortcode to display the opening hours info. %1$s', 'all-in-one-seo-pack' ),
2243
 
2244
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:209
2245
+ /* Translators: 1 - The plugin short name ("AIOSEO") */
2246
+ __( 'To add this block, edit a page or post and search for the "%1$s Local - Opening Hours" block.', 'all-in-one-seo-pack' ),
2247
 
2248
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:214
2249
+ /* Translators: 1 - Learn more link. */
2250
+ __( 'Use the following PHP code anywhere in your theme to display the opening hours. %1$s', 'all-in-one-seo-pack' ),
2251
 
2252
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:222
2253
+ __( 'Default Location Settings', 'all-in-one-seo-pack' ),
2254
 
2255
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:177
2256
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:224
2257
+ __( 'Displayed when the business is closed.', 'all-in-one-seo-pack' ),
2258
 
2259
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:225
2260
+ __( 'Below are the default settings for all locations, which can be overwritten per %1$slocation%2$s.', 'all-in-one-seo-pack' ),
2261
 
2262
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:182
2263
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:227
2264
+ __( 'Displayed when the business is open all day long.', 'all-in-one-seo-pack' ),
2265
 
2266
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:187
2267
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:233
2268
+ __( 'Hours', 'all-in-one-seo-pack' ),
2269
 
2270
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:176
2271
+ __( 'Click here', 'all-in-one-seo-pack' ),
2272
 
2273
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:178
2274
+ /* Translators: 1 - The addon or plugin name. */
2275
+ __( 'Install %1$s', 'all-in-one-seo-pack' ),
2276
 
2277
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:186
2278
+ /* Translators: 1 - The name of one of our partner plugins. */
2279
+ __( '%1$s is Installed & Active', 'all-in-one-seo-pack' ),
2280
 
2281
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:187
2282
+ __( 'Launch Setup Wizard', 'all-in-one-seo-pack' ),
2283
 
2284
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:198
2285
+ __( 'The Best Google Analytics Plugin for WordPress', 'all-in-one-seo-pack' ),
2286
 
2287
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:200
2288
+ /* Translators: 1 - The name of one of our partner plugins, 2 - The name of one of our partner plugins. */
2289
+ __( '%1$s connects AIOSEO to Google Analytics, providing a powerful integration. %2$s is a sister company of AIOSEO.', 'all-in-one-seo-pack' ),
2290
 
2291
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:201
2292
+ __( 'Quick & Easy Google Analytics Setup', 'all-in-one-seo-pack' ),
2293
 
2294
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:202
2295
+ __( 'Google Analytics Dashboard + Real Time Stats', 'all-in-one-seo-pack' ),
2296
 
2297
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:203
2298
+ __( 'Google Analytics Enhanced Ecommerce Tracking', 'all-in-one-seo-pack' ),
2299
 
2300
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:204
2301
+ __( 'Universal Tracking for AMP and Instant Articles', 'all-in-one-seo-pack' ),
2302
 
2303
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:205
2304
+ __( 'Install &', 'all-in-one-seo-pack' ),
2305
 
2306
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:207
2307
+ /* Translators: 1 - The name of one of our partner plugins. */
2308
+ __( 'Activate %1$s', 'all-in-one-seo-pack' ),
2309
 
2310
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:209
2311
+ /* Translators: 1 - The name of one of our partner plugins. */
2312
+ __( '%1$s shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'all-in-one-seo-pack' ),
2313
 
2314
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:213
2315
+ /* Translators: 1 - The name of one of our partner plugins. */
2316
+ __( 'Setup %1$s', 'all-in-one-seo-pack' ),
2317
 
2318
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:217
2319
+ /* Translators: 1 - The name of one of our partner plugins. */
2320
+ __( '%1$s has an intuitive setup wizard to guide you through the setup process.', 'all-in-one-seo-pack' ),
2321
 
2322
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:137
2323
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:194
2324
+ // Reference: src/vue/pages/local-seo/views/Main.vue:23
2325
+ __( 'Local SEO', 'all-in-one-seo-pack' ),
2326
 
2327
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:136
2328
+ __( 'Smart Schema', 'all-in-one-seo-pack' ),
2329
 
2330
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:138
2331
+ __( 'Advanced support for e-commerce', 'all-in-one-seo-pack' ),
2332
 
2333
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:142
2334
+ __( 'Advanced Google Analytics tracking', 'all-in-one-seo-pack' ),
2335
 
2336
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:139
2337
+ __( 'Video SEO Module', 'all-in-one-seo-pack' ),
2338
 
2339
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:143
2340
+ __( 'Greater control over display settings', 'all-in-one-seo-pack' ),
2341
 
2342
+ // Reference: src/vue/pages/dashboard/views/Main.vue:209
2343
+ __( 'Social meta for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
2344
 
2345
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:144
2346
+ __( 'Ad free (no banner adverts)', 'all-in-one-seo-pack' ),
2347
 
2348
+ // Reference: src/vue/pages/dashboard/views/Main.vue:212
2349
+ __( 'There are no new notifications at this moment.', 'all-in-one-seo-pack' ),
2350
 
2351
+ // Reference: src/vue/pages/dashboard/views/Main.vue:213
2352
+ __( 'See all dismissed notifications.', 'all-in-one-seo-pack' ),
2353
 
2354
+ // Reference: src/vue/pages/dashboard/views/Main.vue:214
2355
+ __( 'SEO Site Score', 'all-in-one-seo-pack' ),
2356
 
2357
+ // Reference: src/vue/pages/dashboard/views/Main.vue:215
2358
+ __( 'Support', 'all-in-one-seo-pack' ),
2359
 
2360
+ // Reference: src/vue/pages/dashboard/views/Main.vue:217
2361
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
2362
+ __( 'Read the %1$s user guide', 'all-in-one-seo-pack' ),
2363
 
2364
+ // Reference: src/vue/pages/dashboard/views/Main.vue:218
2365
+ __( 'Access our Premium Support', 'all-in-one-seo-pack' ),
2366
 
2367
+ // Reference: src/vue/pages/dashboard/views/Main.vue:219
2368
+ __( 'View the Changelog', 'all-in-one-seo-pack' ),
2369
 
2370
+ // Reference: src/vue/pages/dashboard/views/Main.vue:220
2371
+ __( 'Watch video tutorials', 'all-in-one-seo-pack' ),
2372
 
2373
+ // Reference: src/vue/pages/dashboard/views/Main.vue:221
2374
+ __( 'Getting started? Read the Beginners Guide', 'all-in-one-seo-pack' ),
2375
 
2376
+ // Reference: src/vue/pages/dashboard/views/Main.vue:222
2377
+ __( 'Quicklinks', 'all-in-one-seo-pack' ),
2378
 
2379
+ // Reference: src/vue/pages/dashboard/views/Main.vue:223
2380
+ __( 'You can use these quicklinks to quickly access our settings pages to adjust your site\'s SEO settings.', 'all-in-one-seo-pack' ),
2381
 
2382
+ // Reference: src/vue/pages/dashboard/views/Main.vue:225
2383
+ __( 'Configure how your website content will look in Google, Bing and other search engines.', 'all-in-one-seo-pack' ),
2384
 
2385
+ // Reference: src/vue/pages/dashboard/views/Main.vue:227
2386
+ __( 'Check how your site scores with our SEO analyzer and compare against your competitor\'s site.', 'all-in-one-seo-pack' ),
2387
 
2388
+ // Reference: src/vue/pages/dashboard/views/Main.vue:228
2389
+ __( 'Improve local SEO rankings with schema for business address, open hours, contact, and more.', 'all-in-one-seo-pack' ),
 
2390
 
2391
+ // Reference: src/vue/pages/dashboard/views/Main.vue:230
2392
+ __( 'Setup Open Graph for Facebook, Twitter, etc. to show the right content / thumbnail preview.', 'all-in-one-seo-pack' ),
 
2393
 
2394
+ // Reference: src/vue/pages/tools/views/Main.vue:31
2395
+ __( 'Tools', 'all-in-one-seo-pack' ),
2396
 
2397
+ // Reference: src/vue/pages/dashboard/views/Main.vue:232
2398
+ __( 'Fine-tune your site with our powerful tools including Robots.txt editor, import/export and more.', 'all-in-one-seo-pack' ),
2399
 
2400
+ // Reference: src/vue/pages/dashboard/views/Main.vue:234
2401
+ __( 'Manage all of your sitemap settings, including XML, Video, News and more.', 'all-in-one-seo-pack' ),
 
2402
 
2403
+ // Reference: src/vue/pages/dashboard/views/Main.vue:236
2404
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro". */
2405
+ __( 'Get more features in %1$s %2$s:', 'all-in-one-seo-pack' ),
2406
 
2407
+ // Reference: src/vue/pages/dashboard/views/Main.vue:238
2408
+ /* Translators: 1 - "Pro", 2 - A percentage ("50%"). */
2409
+ __( 'Upgrade to %1$s and Save %2$s', 'all-in-one-seo-pack' ),
2410
 
2411
+ // Reference: src/vue/pages/dashboard/views/Main.vue:240
2412
+ __( 'Relaunch Setup Wizard', 'all-in-one-seo-pack' ),
2413
 
2414
+ // Reference: src/vue/pages/dashboard/views/Main.vue:249
2415
+ /* Translators: 1 - A number representing the remaining notifications. */
2416
+ __( 'You have %1$s more notifications', 'all-in-one-seo-pack' ),
2417
 
2418
+ // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:58
2419
+ __( 'Google Places Support', 'all-in-one-seo-pack' ),
2420
 
2421
+ // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:59
2422
+ __( 'Google Reviews', 'all-in-one-seo-pack' ),
2423
 
2424
+ // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:60
2425
+ __( 'Driving Directions', 'all-in-one-seo-pack' ),
2426
 
2427
+ // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:70
2428
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
2429
+ __( 'Local SEO Maps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
2430
 
2431
+ // Reference: src/vue/pages/local-seo/views/lite/Maps.vue:71
2432
+ __( 'Show your location to your visitors using an interactive Google Map. Create multiple maps for use with multiple locations.', 'all-in-one-seo-pack' ),
2433
 
2434
+ // Reference: src/vue/pages/post-settings/views/Main.vue:59
2435
+ __( 'Preview Snippet Editor', 'all-in-one-seo-pack' ),
2436
 
2437
+ // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:62
2438
+ __( 'Breadcrumb Templates', 'all-in-one-seo-pack' ),
 
2439
 
2440
+ // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:63
2441
+ __( 'Override the default template for breadcrumbs on your site using our easy-to-use template editor.', 'all-in-one-seo-pack' ),
2442
 
2443
+ // Reference: src/vue/pages/search-appearance/router/paths.js:28
2444
+ __( 'Content Types', 'all-in-one-seo-pack' ),
 
2445
 
2446
+ // Reference: src/vue/pages/search-appearance/router/paths.js:55
2447
+ __( 'Archives', 'all-in-one-seo-pack' ),
 
2448
 
2449
+ // Reference: src/vue/store/actions.js:146
2450
+ __( 'We couldn\'t connect to the site, please try again later.', 'all-in-one-seo-pack' ),
2451
 
2452
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:138
2453
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/NotFound.vue:64
2454
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:65
2455
+ __( 'Use a default template', 'all-in-one-seo-pack' ),
2456
 
2457
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:144
2458
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/NotFound.vue:65
2459
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:66
2460
+ __( 'Show homepage link', 'all-in-one-seo-pack' ),
2461
 
2462
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:145
2463
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/NotFound.vue:66
2464
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:67
2465
+ __( 'Show prefix link', 'all-in-one-seo-pack' ),
2466
 
2467
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:68
2468
+ __( 'search term', 'all-in-one-seo-pack' ),
2469
 
2470
+ // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:114
2471
+ __( 'Website URL', 'all-in-one-seo-pack' ),
 
2472
 
2473
+ // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:115
2474
+ __( 'About Page URL', 'all-in-one-seo-pack' ),
 
2475
 
2476
+ // Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:116
2477
+ __( 'Contact Page URL', 'all-in-one-seo-pack' ),
2478
 
2479
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:172
2480
+ __( 'Use Defaults', 'all-in-one-seo-pack' ),
 
2481
 
2482
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:173
2483
+ __( 'Will default opening hours set globally', 'all-in-one-seo-pack' ),
2484
 
2485
+ // Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:185
2486
+ __( 'I have two sets of openning hours per day', 'all-in-one-seo-pack' ),
2487
 
2488
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:37
2489
+ __( 'Date Archives', 'all-in-one-seo-pack' ),
2490
 
2491
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:43
2492
+ __( 'Search Archives', 'all-in-one-seo-pack' ),
 
2493
 
2494
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:55
2495
+ __( 'Author Archives', 'all-in-one-seo-pack' ),
2496
 
2497
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:61
2498
+ __( 'Blog Archive', 'all-in-one-seo-pack' ),
2499
 
2500
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:67
2501
+ __( 'Post Type Archives', 'all-in-one-seo-pack' ),
2502
 
2503
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:139
2504
+ __( 'Taxonomy priority:', 'all-in-one-seo-pack' ),
2505
 
2506
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:140
2507
+ __( 'Select a taxonomy', 'all-in-one-seo-pack' ),
2508
 
2509
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:141
2510
+ __( 'Choose taxonomy that should have a priority for this post type.', 'all-in-one-seo-pack' ),
2511
 
2512
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:142
2513
+ __( 'Show post type archive link', 'all-in-one-seo-pack' ),
2514
 
2515
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:143
2516
+ __( 'Show taxonomy link', 'all-in-one-seo-pack' ),
2517
 
2518
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:146
2519
+ __( 'Show parent item link', 'all-in-one-seo-pack' ),
2520
 
2521
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:147
2522
+ __( 'Single item template', 'all-in-one-seo-pack' ),
2523
 
2524
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:148
2525
+ __( 'Parent item template', 'all-in-one-seo-pack' ),
2526
 
2527
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:71
2528
+ __( 'Show Paged Breadcrumb', 'all-in-one-seo-pack' ),
 
2529
 
2530
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:72
2531
+ __( 'Show a breadcrumb for the current page.', 'all-in-one-seo-pack' ),
2532
 
2533
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:73
2534
+ __( 'Paged Format', 'all-in-one-seo-pack' ),
2535
 
2536
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:74
2537
+ __( 'Format the label used for the page link.', 'all-in-one-seo-pack' ),
2538
 
2539
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:75
2540
+ __( 'Unselected Taxonomy Terms', 'all-in-one-seo-pack' ),
 
2541
 
2542
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:76
2543
+ __( 'Show/hide parent terms that are not explicitly selected in your post.', 'all-in-one-seo-pack' ),
 
 
2544
 
2545
+ // Reference: src/vue/pages/post-settings/views/ModalContent.vue:41
2546
+ __( 'Modal Content', 'all-in-one-seo-pack' ),
2547
 
2548
+ // Reference: src/vue/pages/post-settings/views/Social.vue:60
2549
+ __( 'Social', 'all-in-one-seo-pack' ),
2550
 
2551
  // Reference: src/vue/pages/post-settings/views/Advanced.vue:114
2552
  __( 'Robots Setting', 'all-in-one-seo-pack' ),
2553
 
 
 
 
 
 
 
 
2554
  // Reference: src/vue/pages/post-settings/views/Advanced.vue:117
2555
  __( 'Enter a URL to change the default Canonical URL', 'all-in-one-seo-pack' ),
2556
 
2557
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:444
2558
+ __( 'Priority Score', 'all-in-one-seo-pack' ),
 
2559
 
2560
+ // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:61
2561
+ // Reference: src/vue/pages/settings/views/Advanced.vue:320
2562
+ /* Translators: 1 - The plugin short name name ("AIOSEO"), 2 - "Learn more". */
2563
+ __( 'This feature is only for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
2564
 
2565
  // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:442
 
2566
  __( 'Keywords', 'all-in-one-seo-pack' ),
2567
 
2568
  // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:443
2569
  __( 'Press enter to create a keyword', 'all-in-one-seo-pack' ),
2570
 
2571
+ // Reference: src/vue/pages/post-settings/views/General.vue:282
2572
+ __( 'General', 'all-in-one-seo-pack' ),
 
 
 
 
2573
 
2574
+ // Reference: src/vue/pages/post-settings/views/General.vue:284
2575
+ __( 'Snippet Preview content here.', 'all-in-one-seo-pack' ),
 
 
2576
 
2577
+ // Reference: src/vue/pages/post-settings/views/General.vue:285
2578
+ __( 'Edit Snippet', 'all-in-one-seo-pack' ),
2579
 
2580
+ // Reference: src/vue/pages/post-settings/views/General.vue:286
2581
+ __( 'Click on the tags below to insert variables into your title.', 'all-in-one-seo-pack' ),
2582
 
2583
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:256
2584
+ __( 'Meta Description', 'all-in-one-seo-pack' ),
2585
 
2586
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:254
2587
+ __( 'Click on the tags below to insert variables into your meta description.', 'all-in-one-seo-pack' ),
 
2588
 
2589
+ // Reference: src/vue/pages/post-settings/views/General.vue:289
2590
+ __( 'Pillar Content', 'all-in-one-seo-pack' ),
 
2591
 
2592
+ // Reference: src/vue/pages/post-settings/views/General.vue:290
2593
+ __( 'Cornerstone content should be the most important and extensive articles on your site.', 'all-in-one-seo-pack' ),
 
2594
 
2595
+ // Reference: src/vue/pages/post-settings/views/General.vue:292
2596
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:74
2597
+ __( 'Additional Keyphrases', 'all-in-one-seo-pack' ),
2598
 
2599
+ // Reference: src/vue/pages/post-settings/views/General.vue:293
2600
+ __( 'Page Analysis', 'all-in-one-seo-pack' ),
2601
 
2602
+ // Reference: src/vue/pages/post-settings/views/General.vue:297
2603
+ __( 'Looking for meta keywords? Click on the advanced tab above to add/edit meta keywords.', 'all-in-one-seo-pack' ),
 
 
2604
 
2605
+ // Reference: src/vue/pages/post-settings/views/General.vue:299
2606
+ /* Translators: 1 - "Learn more link". */
2607
+ __( 'Not sure what keyphrases are used for? Check out our documentation for more information. %1$s', 'all-in-one-seo-pack' ),
2608
 
2609
+ // Reference: src/vue/pages/post-settings/views/General.vue:319
2610
+ /* Translators: 1 - The type of page (Post, Page, Category, Tag, etc.). */
2611
+ __( '%1$s Title', 'all-in-one-seo-pack' ),
2612
 
2613
+ // Reference: src/vue/pages/social-networks/views/SocialProfiles.vue:26
2614
+ __( 'To let search engines know which profiles are associated with this site, enter them below:', 'all-in-one-seo-pack' ),
 
 
 
2615
 
2616
+ // Reference: src/vue/pages/social-networks/views/Pinterest.vue:46
2617
+ __( 'Pinterest uses Open Graph metadata just like Facebook, so be sure to keep Open Graph enabled on the Facebook tab checked if you want to optimize your site for Pinterest.', 'all-in-one-seo-pack' ),
 
 
2618
 
2619
+ // Reference: src/vue/pages/social-networks/views/Pinterest.vue:47
2620
+ __( 'Learn how to get your Pinterest Verification Code', 'all-in-one-seo-pack' ),
2621
 
2622
+ // Reference: src/vue/pages/social-networks/views/Pinterest.vue:48
2623
+ __( 'If you have already confirmed your website with Pinterest, you can skip the step below.', 'all-in-one-seo-pack' ),
 
 
2624
 
2625
+ // Reference: src/vue/pages/social-networks/views/Pinterest.vue:49
2626
+ __( 'Pinterest Verification Code', 'all-in-one-seo-pack' ),
 
 
2627
 
2628
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:67
2629
+ __( 'Author name', 'all-in-one-seo-pack' ),
2630
 
2631
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:68
2632
+ __( 'First name', 'all-in-one-seo-pack' ),
 
 
2633
 
2634
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:69
2635
+ __( 'Last name', 'all-in-one-seo-pack' ),
 
 
2636
 
2637
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:432
2638
+ __( 'Twitter Card Settings', 'all-in-one-seo-pack' ),
2639
 
2640
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:434
2641
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
2642
+ __( 'Enable this feature if you want Twitter to display a preview card with images and a text excerpt when a link to your site is shared.', 'all-in-one-seo-pack' ),
 
2643
 
2644
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:435
2645
+ __( 'Enable Twitter Card', 'all-in-one-seo-pack' ),
2646
 
2647
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:436
2648
+ __( 'Default Card Type', 'all-in-one-seo-pack' ),
2649
 
2650
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:235
2651
+ __( 'Summary', 'all-in-one-seo-pack' ),
2652
 
2653
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:236
2654
+ __( 'Summary with Large Image', 'all-in-one-seo-pack' ),
2655
 
2656
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:445
2657
+ __( 'Default Post Twitter Image', 'all-in-one-seo-pack' ),
2658
 
2659
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:446
2660
+ __( 'Default Term Twitter Image', 'all-in-one-seo-pack' ),
2661
 
2662
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:224
2663
+ __( 'Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and GIF formats only.', 'all-in-one-seo-pack' ),
2664
 
2665
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:225
2666
+ __( 'Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and GIF formats only.', 'all-in-one-seo-pack' ),
 
2667
 
2668
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:452
2669
+ __( 'Home Page Image', 'all-in-one-seo-pack' ),
2670
 
2671
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:255
2672
+ __( 'Home Page Title', 'all-in-one-seo-pack' ),
2673
 
2674
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:460
2675
+ __( 'Show Twitter Author', 'all-in-one-seo-pack' ),
2676
 
2677
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:463
2678
+ __( 'Card Type', 'all-in-one-seo-pack' ),
2679
 
2680
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:464
2681
+ __( 'Additional Data', 'all-in-one-seo-pack' ),
2682
 
2683
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:465
2684
+ __( 'Enable this option to show additional Twitter data on your posts and pages (i.e., who the post was written by and how long it might take to read the article).', 'all-in-one-seo-pack' ),
2685
 
2686
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:102
2687
+ __( 'Year', 'all-in-one-seo-pack' ),
2688
 
2689
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:103
2690
+ __( 'Month', 'all-in-one-seo-pack' ),
2691
 
2692
+ // Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:104
2693
+ __( 'Day', 'all-in-one-seo-pack' ),
2694
 
2695
+ // Reference: src/vue/pages/settings/views/GeneralSettings.vue:49
2696
+ __( 'License', 'all-in-one-seo-pack' ),
2697
 
2698
+ // Reference: src/vue/pages/settings/views/GeneralSettings.vue:59
2699
+ __( 'Setup Wizard', 'all-in-one-seo-pack' ),
2700
 
2701
+ // Reference: src/vue/pages/settings/views/GeneralSettings.vue:62
2702
+ /* Translators: 1 - The plugin name ("All in One SEO") */
2703
+ __( 'Use our configuration wizard to properly set up %1$s with your WordPress website.', 'all-in-one-seo-pack' ),
2704
 
2705
+ // Reference: src/vue/pages/settings/views/Advanced.vue:284
2706
+ __( 'TruSEO Score & Content', 'all-in-one-seo-pack' ),
2707
 
2708
+ // Reference: src/vue/pages/settings/views/Advanced.vue:285
2709
+ __( 'Enable our TruSEO score to help you optimize your content for maximum traffic.', 'all-in-one-seo-pack' ),
2710
 
2711
+ // Reference: src/vue/pages/settings/views/Advanced.vue:286
2712
+ __( 'Headline Analyzer', 'all-in-one-seo-pack' ),
2713
 
2714
+ // Reference: src/vue/pages/settings/views/Advanced.vue:287
2715
+ __( 'Enable our Headline Analyzer to help you write irrestible headlines and rank better in search results.', 'all-in-one-seo-pack' ),
2716
 
2717
+ // Reference: src/vue/pages/settings/views/Advanced.vue:289
2718
+ __( 'Post Type Columns', 'all-in-one-seo-pack' ),
2719
 
2720
+ // Reference: src/vue/pages/settings/views/Advanced.vue:292
2721
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
2722
+ __( 'Select which Post Types you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
2723
 
2724
+ // Reference: src/vue/pages/settings/views/Advanced.vue:293
2725
+ __( 'Usage Tracking', 'all-in-one-seo-pack' ),
2726
 
2727
+ // Reference: src/vue/pages/settings/views/Advanced.vue:294
2728
+ __( 'Admin Bar Menu', 'all-in-one-seo-pack' ),
2729
 
2730
+ // Reference: src/vue/pages/settings/views/Advanced.vue:296
2731
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
2732
+ __( 'This adds %1$s to the admin toolbar for easy access to your SEO settings.', 'all-in-one-seo-pack' ),
2733
 
2734
+ // Reference: src/vue/pages/settings/views/Advanced.vue:297
2735
+ __( 'Dashboard Widget', 'all-in-one-seo-pack' ),
2736
 
2737
+ // Reference: src/vue/pages/settings/views/Advanced.vue:298
2738
+ __( 'This displays an SEO News widget on the dashboard.', 'all-in-one-seo-pack' ),
2739
 
2740
+ // Reference: src/vue/pages/settings/views/Advanced.vue:299
2741
+ __( 'Announcements', 'all-in-one-seo-pack' ),
2742
 
2743
+ // Reference: src/vue/pages/settings/views/Advanced.vue:300
2744
+ __( 'This allows you to hide plugin announcements and update details.', 'all-in-one-seo-pack' ),
2745
 
2746
+ // Reference: src/vue/pages/settings/views/Advanced.vue:301
2747
+ __( 'Automatic Updates', 'all-in-one-seo-pack' ),
2748
 
2749
+ // Reference: src/vue/pages/settings/views/Advanced.vue:302
2750
+ __( 'All (recommended)', 'all-in-one-seo-pack' ),
2751
 
2752
+ // Reference: src/vue/pages/settings/views/Advanced.vue:303
2753
+ __( 'You are getting the latest features, bugfixes, and security updates as they are released.', 'all-in-one-seo-pack' ),
2754
 
2755
+ // Reference: src/vue/pages/settings/views/Advanced.vue:304
2756
+ __( 'Minor Only', 'all-in-one-seo-pack' ),
 
2757
 
2758
+ // Reference: src/vue/pages/settings/views/Advanced.vue:305
2759
+ __( 'You are getting bugfixes and security updates, but not major features.', 'all-in-one-seo-pack' ),
2760
 
2761
+ // Reference: src/vue/pages/settings/views/Advanced.vue:307
2762
+ __( 'You will need to manually update everything.', 'all-in-one-seo-pack' ),
 
2763
 
2764
+ // Reference: src/vue/pages/settings/views/Advanced.vue:308
2765
+ __( 'By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test.', 'all-in-one-seo-pack' ),
2766
 
2767
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:181
2768
+ /* Translators: 1 - Opening link tag, 2 - Closing link tag. */
2769
+ __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'all-in-one-seo-pack' ),
2770
 
2771
+ // Reference: src/vue/pages/settings/views/Advanced.vue:312
2772
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
2773
+ __( 'This Admin Bar feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
2774
 
2775
+ // Reference: src/vue/pages/settings/views/Advanced.vue:314
2776
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
2777
+ __( 'The Dashboard Widget feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
2778
 
2779
+ // Reference: src/vue/pages/settings/views/Advanced.vue:315
2780
+ __( 'Taxonomy Columns', 'all-in-one-seo-pack' ),
2781
 
2782
+ // Reference: src/vue/pages/settings/views/Advanced.vue:318
2783
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
2784
+ __( 'Select which Taxonomies you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
2785
 
2786
+ // Reference: src/vue/pages/settings/views/Advanced.vue:322
2787
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
2788
+ __( 'Uninstall %1$s', 'all-in-one-seo-pack' ),
2789
 
2790
+ // Reference: src/vue/pages/settings/views/Advanced.vue:324
2791
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
2792
+ __( 'Check this if you would like to remove ALL %1$s data upon plugin deletion. All settings and SEO data will be unrecoverable.', 'all-in-one-seo-pack' ),
2793
 
2794
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:237
2795
+ /* Translators: 1 - Learn more link. */
2796
+ __( 'Use the following shortcode to display the current breadcrumbs. %1$s', 'all-in-one-seo-pack' ),
2797
 
2798
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:245
2799
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Learn More" link. */
2800
+ __( 'To add this block, edit a page or post and search for the "%1$s - Breadcrumbs" block. %2$s', 'all-in-one-seo-pack' ),
2801
 
2802
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:254
2803
+ /* Translators: 1 - Learn more link. */
2804
+ __( 'Use the following PHP code anywhere in your theme (in the loop) to display the breadcrumbs. %1$s', 'all-in-one-seo-pack' ),
2805
 
2806
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:262
2807
+ /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO"), 4 - "Learn More" link. */
2808
+ __( 'To add this widget, visit the %1$swidgets page%2$s and look for the "%3$s - Breadcrumbs" widget. %4$s', 'all-in-one-seo-pack' ),
2809
 
2810
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:272
2811
+ /* Translators: 1 - The plugin name ("AIOSEO"). */
2812
+ __( 'Breadcrumbs are an essential part of SEO. By default %1$s will automatically add breadcrumbs to the schema markup that we add to your site and you don\'t need to make any changes for that to work. Breadcrumbs can also be used as a secondary navigation system that tells users where they are on a website relative to the homepage.', 'all-in-one-seo-pack' ),
2813
 
2814
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:274
2815
+ __( 'The purpose of breadcrumb navigation is to help users navigate around your website. It also helps search engines understand the structure and hierarchy of links on a web page.', 'all-in-one-seo-pack' ),
 
2816
 
2817
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:275
2818
+ __( 'Enable Breadcrumbs', 'all-in-one-seo-pack' ),
2819
 
2820
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:276
2821
+ __( 'Show Breadcrumbs on Your Website', 'all-in-one-seo-pack' ),
2822
 
2823
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:277
2824
+ __( 'Breadcrumb Settings', 'all-in-one-seo-pack' ),
2825
 
2826
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:280
2827
+ /* Translators: 1 - The plugin name ("AIOSEO"). */
2828
+ __( 'These settings will affect all the breadcrumbs displayed by %1$s throughout your site.', 'all-in-one-seo-pack' ),
2829
 
2830
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:282
2831
+ __( 'Separator', 'all-in-one-seo-pack' ),
2832
 
2833
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:283
2834
+ __( 'Homepage Link', 'all-in-one-seo-pack' ),
2835
 
2836
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:284
2837
+ __( 'Homepage label', 'all-in-one-seo-pack' ),
2838
 
2839
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:285
2840
+ __( 'Label used for homepage link (first item) in breadcrumbs.', 'all-in-one-seo-pack' ),
2841
 
2842
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:286
2843
+ __( 'Breadcrumb Prefix', 'all-in-one-seo-pack' ),
2844
 
2845
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:287
2846
+ __( 'Prefix for breadcrumb path.', 'all-in-one-seo-pack' ),
2847
 
2848
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:288
2849
+ __( 'Archive Format', 'all-in-one-seo-pack' ),
2850
 
2851
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:289
2852
+ __( 'Format the label used for archives page.', 'all-in-one-seo-pack' ),
2853
 
2854
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:290
2855
+ __( 'Search Result Format', 'all-in-one-seo-pack' ),
 
2856
 
2857
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:291
2858
+ __( 'Format the label used for the search results page.', 'all-in-one-seo-pack' ),
2859
 
2860
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:292
2861
+ __( '404 Error Format', 'all-in-one-seo-pack' ),
2862
 
2863
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:293
2864
+ __( 'Format the label used for the 404 error page.', 'all-in-one-seo-pack' ),
2865
 
2866
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:294
2867
+ __( 'Current Item', 'all-in-one-seo-pack' ),
2868
 
2869
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:295
2870
+ __( 'Show current item', 'all-in-one-seo-pack' ),
2871
 
2872
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:296
2873
+ __( 'Link current item', 'all-in-one-seo-pack' ),
2874
 
2875
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:297
2876
+ __( 'Home', 'all-in-one-seo-pack' ),
2877
 
2878
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:298
2879
+ __( 'Category', 'all-in-one-seo-pack' ),
2880
 
2881
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:299
2882
+ __( 'Subcategory', 'all-in-one-seo-pack' ),
2883
 
2884
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:300
2885
+ __( 'Article Title', 'all-in-one-seo-pack' ),
2886
 
2887
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:301
2888
+ __( 'search key word goes here', 'all-in-one-seo-pack' ),
2889
 
2890
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:302
2891
+ __( 'Category Name', 'all-in-one-seo-pack' ),
2892
 
2893
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:304
2894
+ __( 'Category Hierarchy', 'all-in-one-seo-pack' ),
2895
 
2896
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:305
2897
+ __( 'Display complete category hierarchy even if not selected on each individual post.', 'all-in-one-seo-pack' ),
2898
 
2899
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:306
2900
+ __( 'Blog', 'all-in-one-seo-pack' ),
2901
 
2902
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:307
2903
+ __( 'Blog Page Title', 'all-in-one-seo-pack' ),
2904
 
2905
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:308
2906
+ __( 'Show Blog Home', 'all-in-one-seo-pack' ),
2907
 
2908
+ // Reference: src/vue/pages/settings/views/RssContent.vue:91
2909
+ __( 'Automatically add content to your site\'s RSS feed.', 'all-in-one-seo-pack' ),
2910
 
2911
+ // Reference: src/vue/pages/settings/views/RssContent.vue:92
2912
+ __( 'This feature is used to automatically add content to your site\'s RSS feed. More specifically, it allows you to add links back to your blog and your blog posts so scrapers will automatically add these links too. This helps search engines identify you as the original source of the content.', 'all-in-one-seo-pack' ),
2913
 
2914
+ // Reference: src/vue/pages/settings/views/RssContent.vue:94
2915
+ __( 'RSS Content Settings', 'all-in-one-seo-pack' ),
2916
 
2917
+ // Reference: src/vue/pages/settings/views/RssContent.vue:95
2918
+ __( 'Open Your RSS Feed', 'all-in-one-seo-pack' ),
2919
 
2920
+ // Reference: src/vue/pages/settings/views/RssContent.vue:96
2921
+ __( 'RSS Before Content', 'all-in-one-seo-pack' ),
2922
 
2923
+ // Reference: src/vue/pages/settings/views/RssContent.vue:97
2924
+ __( 'RSS After Content', 'all-in-one-seo-pack' ),
2925
 
2926
+ // Reference: src/vue/pages/settings/views/RssContent.vue:98
2927
+ __( 'Add content before each post in your site feed.', 'all-in-one-seo-pack' ),
2928
 
2929
+ // Reference: src/vue/pages/settings/views/RssContent.vue:99
2930
+ __( 'Add content after each post in your site feed.', 'all-in-one-seo-pack' ),
2931
 
2932
+ // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:64
2933
+ __( 'Upgrade to Pro and Unlock Breadcrumb Templates', 'all-in-one-seo-pack' ),
2934
 
2935
+ // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:65
2936
+ __( 'Breadcrumb Templates are only available', 'all-in-one-seo-pack' ),
2937
 
2938
+ // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:67
2939
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
2940
+ __( 'for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
2941
 
2942
+ // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:68
2943
+ __( 'Our template editor will allow you to easily customize how breadcrumbs are displayed on your site based on each post type or taxonomy.', 'all-in-one-seo-pack' ),
2944
 
2945
+ // Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:71
2946
+ __( 'Custom HTML templates', 'all-in-one-seo-pack' ),
 
2947
 
2948
+ // Reference: src/vue/standalone/publish-panel/PostPublish.vue:30
2949
+ __( 'Get out the word!', 'all-in-one-seo-pack' ),
2950
 
2951
+ // Reference: src/vue/standalone/publish-panel/PostPublish.vue:31
2952
+ __( 'Share your content on your favorite social media platforms to drive engagement and increase your SEO.', 'all-in-one-seo-pack' ),
2953
 
2954
+ // Reference: src/vue/utils/tags.js:64
2955
+ __( 'Product Short Description', 'all-in-one-seo-pack' ),
2956
 
2957
+ // Reference: src/vue/utils/tags.js:65
2958
+ __( 'A short description for your product.', 'all-in-one-seo-pack' ),
2959
 
2960
+ // Reference: src/vue/utils/tags.js:66
2961
+ __( 'Sample short description for your product.', 'all-in-one-seo-pack' ),
2962
 
2963
+ // Reference: src/vue/utils/tags.js:82
2964
+ __( 'Archive', 'all-in-one-seo-pack' ),
2965
 
2966
+ // Reference: src/vue/utils/tags.js:83
2967
+ __( 'archive', 'all-in-one-seo-pack' ),
2968
 
2969
+ // Reference: src/vue/pages/posts-table/App.vue:221
2970
+ __( 'Image Title:', 'all-in-one-seo-pack' ),
2971
 
2972
+ // Reference: src/vue/pages/posts-table/App.vue:222
2973
+ __( 'Image Alt Tag:', 'all-in-one-seo-pack' ),
2974
 
2975
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:238
2976
+ __( 'Facebook Preview', 'all-in-one-seo-pack' ),
 
2977
 
2978
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:215
2979
+ __( 'Image Source', 'all-in-one-seo-pack' ),
 
2980
 
2981
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:216
2982
+ __( 'Custom Field Name', 'all-in-one-seo-pack' ),
2983
 
2984
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:241
2985
+ __( 'Video URL', 'all-in-one-seo-pack' ),
 
2986
 
2987
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:245
2988
+ __( 'Facebook Image', 'all-in-one-seo-pack' ),
 
2989
 
2990
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:246
2991
+ __( 'Facebook Title', 'all-in-one-seo-pack' ),
2992
 
2993
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:247
2994
+ __( 'Facebook Description', 'all-in-one-seo-pack' ),
2995
 
2996
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:250
2997
+ __( 'Minimum size: 200px x 200px, ideal ratio 1.91:1, 5MB max. (eg: 1640px x 856px or 3280px x 1712px for retina screens)', 'all-in-one-seo-pack' ),
2998
 
2999
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:254
3000
+ __( 'Article Section', 'all-in-one-seo-pack' ),
3001
 
3002
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:255
3003
+ __( 'Article Tags', 'all-in-one-seo-pack' ),
3004
 
3005
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:256
3006
+ __( 'Press enter to create an article tag', 'all-in-one-seo-pack' ),
3007
 
3008
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:264
3009
+ __( 'Default', 'all-in-one-seo-pack' ),
3010
 
3011
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:264
3012
+ __( 'Default Object Type (Set in Social Networks)', 'all-in-one-seo-pack' ),
 
3013
 
3014
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:245
3015
+ __( 'Miscellaneous Verification', 'all-in-one-seo-pack' ),
3016
 
3017
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:247
3018
+ /* Translators: 1 - "<head></head>". */
3019
+ __( 'The code above will be added between the %1$s tags on every page on your website.', 'all-in-one-seo-pack' ),
3020
 
3021
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:248
3022
+ __( 'Webmaster Tools Verification', 'all-in-one-seo-pack' ),
3023
 
3024
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:252
3025
+ __( 'Success!', 'all-in-one-seo-pack' ),
3026
 
3027
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:256
3028
+ /* Translators: 1 - The name of one of our partner plugins. */
3029
+ __( 'Google Analytics is now handled by %1$s.', 'all-in-one-seo-pack' ),
3030
 
3031
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:257
3032
+ __( 'Manage Google Analytics', 'all-in-one-seo-pack' ),
3033
 
3034
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:258
3035
+ __( 'Get Started', 'all-in-one-seo-pack' ),
3036
 
3037
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:269
3038
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
3039
+ __( 'We recommend using the %1$sFree MonsterInsights%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
3040
 
3041
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:273
3042
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
3043
+ __( 'We recommend using the %1$sFree ExactMetrics%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
3044
 
3045
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:307
3046
+ __( 'Google Verification Code', 'all-in-one-seo-pack' ),
 
3047
 
3048
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:309
3049
+ /* Translators: 1 - "Google Search Console". */
3050
+ __( 'Google Search Console', 'all-in-one-seo-pack' ),
3051
 
3052
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:309
3053
+ /* Translators: 1 - "Google Search Console". */
3054
+ __( 'Get your Google verification code in %1$s.', 'all-in-one-seo-pack' ),
3055
 
3056
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:320
3057
+ __( 'Bing Verification Code', 'all-in-one-seo-pack' ),
3058
 
3059
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:322
3060
+ /* Translators: 1 - "Bing Webmaster Tools". */
3061
+ __( 'Bing Webmaster Tools', 'all-in-one-seo-pack' ),
3062
 
3063
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:322
3064
+ /* Translators: 1 - "Bing Webmaster Tools". */
3065
+ __( 'Get your Bing verification code in %1$s.', 'all-in-one-seo-pack' ),
3066
 
3067
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:333
3068
+ __( 'Yandex Verification Code', 'all-in-one-seo-pack' ),
3069
 
3070
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:335
3071
+ /* Translators: 1 - "Yandex Webmaster Tools". */
3072
+ __( 'Yandex Webmaster Tools', 'all-in-one-seo-pack' ),
3073
 
3074
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:335
3075
+ /* Translators: 1 - "Yandex Webmaster Tools". */
3076
+ __( 'Get your Yandex verification code in %1$s.', 'all-in-one-seo-pack' ),
3077
 
3078
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:346
3079
+ __( 'Baidu Verification Code', 'all-in-one-seo-pack' ),
3080
 
3081
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:348
3082
+ /* Translators: 1 - "Baidu Webmaster Tools". */
3083
+ __( 'Baidu Webmaster Tools', 'all-in-one-seo-pack' ),
3084
 
3085
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:348
3086
+ /* Translators: 1 - "Baidu Webmaster Tools". */
3087
+ __( 'Get your Baidu verification code in %1$s.', 'all-in-one-seo-pack' ),
3088
 
3089
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:354
3090
+ __( 'Pinterest Site Verification', 'all-in-one-seo-pack' ),
3091
 
3092
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:361
3093
+ /* Translators: 1 - "Pinterest account". */
3094
+ __( 'Get your Pinterest verification code in your %1$s.', 'all-in-one-seo-pack' ),
3095
 
3096
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:361
3097
+ /* Translators: 1 - "Pinterest account". */
3098
+ __( 'Pinterest account', 'all-in-one-seo-pack' ),
3099
 
3100
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:392
3101
+ __( 'Google Analytics', 'all-in-one-seo-pack' ),
3102
 
3103
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:399
3104
+ __( 'Google Analytics ID', 'all-in-one-seo-pack' ),
3105
 
3106
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:401
3107
+ /* Translators: 1 - "Google Analytics account". */
3108
+ __( 'Get your Google Analytics ID in your %1$s.', 'all-in-one-seo-pack' ),
 
 
3109
 
3110
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:401
3111
+ /* Translators: 1 - "Google Analytics account". */
3112
+ __( 'Google Analytics account', 'all-in-one-seo-pack' ),
3113
 
3114
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:407
3115
+ __( 'Enable Advanced Analytics Options', 'all-in-one-seo-pack' ),
3116
 
3117
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:411
3118
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
3119
+ __( 'This enables Advanced Google Analytics options.%1$s%2$s', 'all-in-one-seo-pack' ),
3120
 
3121
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:416
3122
+ __( 'Tracking Domain', 'all-in-one-seo-pack' ),
3123
 
3124
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:419
3125
+ /* Translators: 1 - "http://", 2 - A link to our documentation, 3 - HTML line break tag. */
3126
+ __( 'Enter your domain name without the %1$s to set your cookie domain.%2$s%3$s', 'all-in-one-seo-pack' ),
3127
 
3128
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:424
3129
+ __( 'Track Multiple Domains', 'all-in-one-seo-pack' ),
3130
 
3131
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:432
3132
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
3133
+ __( 'Use this option to enable tracking of multiple or additional domains.%1$s%2$s', 'all-in-one-seo-pack' ),
3134
 
3135
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:437
3136
+ __( 'Additional Domains', 'all-in-one-seo-pack' ),
3137
 
3138
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:441
3139
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
3140
+ __( 'Add a list of additional domains to track here. Enter one domain name per line without the http://.%1$s%2$s', 'all-in-one-seo-pack' ),
3141
 
3142
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:446
3143
+ __( 'Anonymize IP Addresses', 'all-in-one-seo-pack' ),
3144
 
3145
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:454
3146
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
3147
+ __( 'This enables support for IP Anonymization in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
3148
 
3149
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:459
3150
+ __( 'Display Advertiser Tracking', 'all-in-one-seo-pack' ),
3151
 
3152
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:467
3153
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
3154
+ __( 'This enables support for the Display Advertiser Features in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
3155
 
3156
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:472
3157
+ __( 'Exclude Users from Tracking', 'all-in-one-seo-pack' ),
3158
 
3159
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:483
3160
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
3161
+ __( 'Exclude logged-in users from Google Analytics tracking by role.%1$s%2$s', 'all-in-one-seo-pack' ),
3162
 
3163
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:488
3164
+ __( 'Enhanced Link Attribution', 'all-in-one-seo-pack' ),
3165
 
3166
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:496
3167
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
3168
+ __( 'This enables support for the Enhanced Link Attribution in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
3169
 
3170
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:501
3171
+ __( 'Track Outbound Links', 'all-in-one-seo-pack' ),
3172
 
3173
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:509
3174
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
3175
+ __( 'This enables tracking outbound links with Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
3176
 
3177
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:514
3178
+ __( 'Enhanced Ecommerce', 'all-in-one-seo-pack' ),
3179
 
3180
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:522
3181
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
3182
+ __( 'This enables support for the Enhanced Ecommerce in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
3183
 
3184
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:527
3185
+ __( 'Track Outbound Forms', 'all-in-one-seo-pack' ),
3186
 
3187
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:541
3188
+ __( 'Track Events', 'all-in-one-seo-pack' ),
3189
 
3190
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:555
3191
+ __( 'Track URL Changes', 'all-in-one-seo-pack' ),
3192
 
3193
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:569
3194
+ __( 'Track Page Visibility', 'all-in-one-seo-pack' ),
3195
 
3196
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:583
3197
+ __( 'Track Media Queries', 'all-in-one-seo-pack' ),
3198
 
3199
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:597
3200
+ __( 'Track Elements Visibility', 'all-in-one-seo-pack' ),
3201
 
3202
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:611
3203
+ __( 'Track Page Scrolling', 'all-in-one-seo-pack' ),
3204
 
3205
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:625
3206
+ __( 'Track Facebook and Twitter', 'all-in-one-seo-pack' ),
3207
 
3208
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:639
3209
+ __( 'Ensure URL Consistency', 'all-in-one-seo-pack' ),
3210
 
3211
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:653
3212
+ __( 'Google Tag Manager Container ID', 'all-in-one-seo-pack' ),
3213
 
3214
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:657
3215
+ /* Translators: 1 - "Google Tag Manager account". */
3216
+ __( 'Get your Google Tag Manager ID in your %1$s.', 'all-in-one-seo-pack' ),
3217
 
3218
+ // Reference: src/vue/plugins/constants.js:1049
3219
+ __( 'Manually Enter Type', 'all-in-one-seo-pack' ),
3220
 
3221
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:214
3222
+ __( 'Customer Support', 'all-in-one-seo-pack' ),
3223
 
3224
+ // Reference: src/vue/plugins/constants.js:1051
3225
+ __( 'Technical Support', 'all-in-one-seo-pack' ),
3226
 
3227
+ // Reference: src/vue/plugins/constants.js:1052
3228
+ __( 'Billing Support', 'all-in-one-seo-pack' ),
3229
 
3230
+ // Reference: src/vue/plugins/constants.js:1053
3231
+ __( 'Bill Payment', 'all-in-one-seo-pack' ),
3232
 
3233
+ // Reference: src/vue/plugins/constants.js:1054
3234
+ __( 'Sales', 'all-in-one-seo-pack' ),
3235
 
3236
+ // Reference: src/vue/plugins/constants.js:1055
3237
+ __( 'Reservations', 'all-in-one-seo-pack' ),
3238
 
3239
+ // Reference: src/vue/plugins/constants.js:1056
3240
+ __( 'Credit Card Support', 'all-in-one-seo-pack' ),
3241
 
3242
+ // Reference: src/vue/plugins/constants.js:1057
3243
+ __( 'Emergency', 'all-in-one-seo-pack' ),
3244
 
3245
+ // Reference: src/vue/plugins/constants.js:1058
3246
+ __( 'Bagage Tracking', 'all-in-one-seo-pack' ),
3247
 
3248
+ // Reference: src/vue/plugins/constants.js:1059
3249
+ __( 'Roadside Assistance', 'all-in-one-seo-pack' ),
3250
 
3251
+ // Reference: src/vue/plugins/constants.js:1060
3252
+ __( 'Package Tracking', 'all-in-one-seo-pack' ),
3253
 
3254
+ // Reference: src/vue/plugins/constants.js:1067
3255
+ __( 'Sitemaps are a list of all your content that search engines use when they crawl your site.', 'all-in-one-seo-pack' ),
3256
 
3257
+ // Reference: src/vue/plugins/constants.js:1077
3258
+ __( 'Optimized Search Appearance', 'all-in-one-seo-pack' ),
3259
 
3260
+ // Reference: src/vue/plugins/constants.js:1078
3261
+ __( 'Get all the right tools to make sure your website shows up in Google Search.', 'all-in-one-seo-pack' ),
3262
 
3263
+ // Reference: src/vue/plugins/constants.js:1086
3264
+ __( 'Get the #1 analytics plugin to see how people find and use your website. Simply put, see stats that matter.', 'all-in-one-seo-pack' ),
3265
 
3266
+ // Reference: src/vue/plugins/constants.js:1102
3267
+ __( 'Globally control Title and Alt attributes for attachment pages and images that are embedded in your content.', 'all-in-one-seo-pack' ),
3268
 
3269
+ // Reference: src/vue/plugins/constants.js:1110
3270
+ __( 'Tell Google about your business for display as a Knowledge Graph card or business carousel.', 'all-in-one-seo-pack' ),
3271
 
3272
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:164
3273
+ __( 'Video Sitemap', 'all-in-one-seo-pack' ),
3274
 
3275
+ // Reference: src/vue/plugins/constants.js:1118
3276
+ __( 'Generate an XML Sitemap specifically for video content on your site.', 'all-in-one-seo-pack' ),
 
3277
 
3278
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:174
3279
+ __( 'News Sitemap', 'all-in-one-seo-pack' ),
 
3280
 
3281
+ // Reference: src/vue/plugins/constants.js:1126
3282
+ __( 'Submit articles to Google News that were published in the last 48 hours.', 'all-in-one-seo-pack' ),
 
3283
 
3284
+ // Reference: src/vue/plugins/constants.js:1133
3285
+ __( 'Smart Redirects + 404 Detection', 'all-in-one-seo-pack' ),
 
3286
 
3287
+ // Reference: src/vue/plugins/constants.js:1134
3288
+ __( 'Create and manage redirects for your broken links.', 'all-in-one-seo-pack' ),
3289
 
3290
+ // Reference: src/vue/plugins/constants.js:1141
3291
+ __( 'Internal Link Building Assistant', 'all-in-one-seo-pack' ),
3292
 
3293
+ // Reference: src/vue/plugins/constants.js:1149
3294
+ __( 'Advanced Rich Snippets + Schema Markups', 'all-in-one-seo-pack' ),
3295
 
3296
+ // Reference: src/vue/plugins/constants.js:1160
3297
+ __( 'Activities', 'all-in-one-seo-pack' ),
 
3298
 
3299
+ // Reference: src/vue/plugins/constants.js:1162
3300
+ __( 'Activity', 'all-in-one-seo-pack' ),
 
3301
 
3302
+ // Reference: src/vue/plugins/constants.js:1163
3303
+ __( 'Sport', 'all-in-one-seo-pack' ),
 
3304
 
3305
+ // Reference: src/vue/plugins/constants.js:1167
3306
+ __( 'Businesses', 'all-in-one-seo-pack' ),
3307
 
3308
+ // Reference: src/vue/plugins/constants.js:1169
3309
+ __( 'Bar', 'all-in-one-seo-pack' ),
3310
 
3311
+ // Reference: src/vue/plugins/constants.js:1170
3312
+ __( 'Company', 'all-in-one-seo-pack' ),
3313
 
3314
+ // Reference: src/vue/plugins/constants.js:1171
3315
+ __( 'Cafe', 'all-in-one-seo-pack' ),
3316
 
3317
+ // Reference: src/vue/plugins/constants.js:1172
3318
+ __( 'Hotel', 'all-in-one-seo-pack' ),
 
3319
 
3320
+ // Reference: src/vue/plugins/constants.js:1173
3321
+ __( 'Restaurant', 'all-in-one-seo-pack' ),
3322
 
3323
+ // Reference: src/vue/plugins/constants.js:1177
3324
+ __( 'Groups', 'all-in-one-seo-pack' ),
3325
 
3326
+ // Reference: src/vue/plugins/constants.js:1180
3327
+ /* Translators: This refers to a charity/non-profit organization. */
3328
+ __( 'Cause', 'all-in-one-seo-pack' ),
3329
 
3330
+ // Reference: src/vue/plugins/constants.js:1181
3331
+ __( 'Sports League', 'all-in-one-seo-pack' ),
 
3332
 
3333
+ // Reference: src/vue/plugins/constants.js:1182
3334
+ __( 'Sports Team', 'all-in-one-seo-pack' ),
3335
 
3336
+ // Reference: src/vue/plugins/constants.js:1186
3337
+ __( 'Organizations', 'all-in-one-seo-pack' ),
3338
 
3339
+ // Reference: src/vue/plugins/constants.js:1189
3340
+ /* Translators: This refers to a music group. */
3341
+ __( 'Band', 'all-in-one-seo-pack' ),
3342
 
3343
+ // Reference: src/vue/plugins/constants.js:1190
3344
+ __( 'Non-Profit', 'all-in-one-seo-pack' ),
3345
 
3346
+ // Reference: src/vue/plugins/constants.js:1191
3347
+ __( 'School', 'all-in-one-seo-pack' ),
3348
 
3349
+ // Reference: src/vue/plugins/constants.js:1192
3350
+ __( 'University', 'all-in-one-seo-pack' ),
3351
 
3352
+ // Reference: src/vue/plugins/constants.js:1196
3353
+ __( 'People', 'all-in-one-seo-pack' ),
 
3354
 
3355
+ // Reference: src/vue/plugins/constants.js:1198
3356
+ __( 'Actor', 'all-in-one-seo-pack' ),
3357
 
3358
+ // Reference: src/vue/plugins/constants.js:1199
3359
+ __( 'Athlete', 'all-in-one-seo-pack' ),
3360
 
3361
+ // Reference: src/vue/plugins/constants.js:1201
3362
+ __( 'Director', 'all-in-one-seo-pack' ),
3363
 
3364
+ // Reference: src/vue/plugins/constants.js:1202
3365
+ __( 'Musician', 'all-in-one-seo-pack' ),
3366
 
3367
+ // Reference: src/vue/plugins/constants.js:1203
3368
+ __( 'Politician', 'all-in-one-seo-pack' ),
3369
 
3370
+ // Reference: src/vue/plugins/constants.js:1204
3371
+ __( 'Profile', 'all-in-one-seo-pack' ),
3372
 
3373
+ // Reference: src/vue/plugins/constants.js:1205
3374
+ __( 'Public Figure', 'all-in-one-seo-pack' ),
3375
 
3376
+ // Reference: src/vue/plugins/constants.js:1209
3377
+ __( 'Places', 'all-in-one-seo-pack' ),
3378
 
3379
+ // Reference: src/vue/plugins/constants.js:1211
3380
+ __( 'City', 'all-in-one-seo-pack' ),
 
3381
 
3382
+ // Reference: src/vue/plugins/constants.js:1212
3383
+ __( 'Country', 'all-in-one-seo-pack' ),
 
3384
 
3385
+ // Reference: src/vue/plugins/constants.js:1213
3386
+ __( 'Landmark', 'all-in-one-seo-pack' ),
3387
 
3388
+ // Reference: src/vue/plugins/constants.js:1214
3389
+ __( 'State/Province', 'all-in-one-seo-pack' ),
3390
 
3391
+ // Reference: src/vue/plugins/constants.js:1218
3392
+ __( 'Products & Entertainment', 'all-in-one-seo-pack' ),
3393
 
3394
+ // Reference: src/vue/plugins/constants.js:1220
3395
+ __( 'Album', 'all-in-one-seo-pack' ),
3396
 
3397
+ // Reference: src/vue/plugins/constants.js:1221
3398
+ __( 'Book', 'all-in-one-seo-pack' ),
3399
 
3400
+ // Reference: src/vue/plugins/constants.js:1222
3401
+ __( 'Drink', 'all-in-one-seo-pack' ),
 
3402
 
3403
+ // Reference: src/vue/plugins/constants.js:1223
3404
+ __( 'Food', 'all-in-one-seo-pack' ),
 
3405
 
3406
+ // Reference: src/vue/plugins/constants.js:1224
3407
+ __( 'Game', 'all-in-one-seo-pack' ),
3408
 
3409
+ // Reference: src/vue/plugins/constants.js:1225
3410
+ __( 'Movie', 'all-in-one-seo-pack' ),
3411
 
3412
+ // Reference: src/vue/plugins/constants.js:1226
3413
+ __( 'Product', 'all-in-one-seo-pack' ),
3414
 
3415
+ // Reference: src/vue/plugins/constants.js:1227
3416
+ __( 'Song', 'all-in-one-seo-pack' ),
3417
 
3418
+ // Reference: src/vue/plugins/constants.js:1228
3419
+ __( 'TV Show', 'all-in-one-seo-pack' ),
3420
 
3421
+ // Reference: src/vue/plugins/constants.js:1229
3422
+ __( 'Episode', 'all-in-one-seo-pack' ),
3423
 
3424
+ // Reference: src/vue/plugins/constants.js:1233
3425
+ __( 'Websites', 'all-in-one-seo-pack' ),
 
3426
 
3427
+ // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:57
3428
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:73
3429
+ __( 'Article', 'all-in-one-seo-pack' ),
3430
 
3431
+ // Reference: src/vue/plugins/constants.js:1236
3432
+ __( 'Website', 'all-in-one-seo-pack' ),
 
3433
 
3434
+ // Reference: src/vue/plugins/constants.js:1287
3435
+ __( 'Exact match all parameters in any order', 'all-in-one-seo-pack' ),
3436
 
3437
+ // Reference: src/vue/plugins/constants.js:1288
3438
+ __( 'Ignore & pass parameters to the target', 'all-in-one-seo-pack' ),
3439
 
3440
+ // Reference: src/vue/plugins/constants.js:1289
3441
+ __( 'Ignore all parameters except UTM', 'all-in-one-seo-pack' ),
3442
 
3443
+ // Reference: src/vue/plugins/constants.js:1293
3444
+ __( 'Manual Redirects', 'all-in-one-seo-pack' ),
3445
 
3446
+ // Reference: src/vue/plugins/constants.js:1294
3447
+ __( 'Modified Posts', 'all-in-one-seo-pack' ),
3448
 
3449
+ // Reference: src/vue/plugins/constants.js:1295
3450
+ __( '404 Redirects', 'all-in-one-seo-pack' ),
3451
 
3452
+ // Reference: src/vue/plugins/constants.js:1301
3453
+ __( 'Archive Organization', 'all-in-one-seo-pack' ),
3454
 
3455
+ // Reference: src/vue/plugins/constants.js:1302
3456
+ __( 'Automotive Business', 'all-in-one-seo-pack' ),
3457
 
3458
+ // Reference: src/vue/plugins/constants.js:1303
3459
+ __( 'Childcare', 'all-in-one-seo-pack' ),
3460
 
3461
+ // Reference: src/vue/plugins/constants.js:1304
3462
+ __( 'Dentist', 'all-in-one-seo-pack' ),
 
3463
 
3464
+ // Reference: src/vue/plugins/constants.js:1305
3465
+ __( 'Dry Cleaning/Laundry', 'all-in-one-seo-pack' ),
 
3466
 
3467
+ // Reference: src/vue/plugins/constants.js:1306
3468
+ __( 'Emergency Service', 'all-in-one-seo-pack' ),
3469
 
3470
+ // Reference: src/vue/plugins/constants.js:1307
3471
+ __( 'Employment Agency', 'all-in-one-seo-pack' ),
3472
 
3473
+ // Reference: src/vue/plugins/constants.js:1308
3474
+ __( 'Entertainment Business', 'all-in-one-seo-pack' ),
3475
 
3476
+ // Reference: src/vue/plugins/constants.js:1309
3477
+ __( 'Financial Service', 'all-in-one-seo-pack' ),
3478
 
3479
+ // Reference: src/vue/plugins/constants.js:1310
3480
+ __( 'Food Establishment', 'all-in-one-seo-pack' ),
3481
 
3482
+ // Reference: src/vue/plugins/constants.js:1311
3483
+ __( 'Government Office', 'all-in-one-seo-pack' ),
3484
 
3485
+ // Reference: src/vue/plugins/constants.js:1312
3486
+ __( 'Health & Beauty Business', 'all-in-one-seo-pack' ),
3487
 
3488
+ // Reference: src/vue/plugins/constants.js:1313
3489
+ __( 'Home & Construction Business', 'all-in-one-seo-pack' ),
3490
 
3491
+ // Reference: src/vue/plugins/constants.js:1314
3492
+ __( 'Internet Cafe', 'all-in-one-seo-pack' ),
3493
 
3494
+ // Reference: src/vue/plugins/constants.js:1315
3495
+ __( 'Legal Service', 'all-in-one-seo-pack' ),
3496
 
3497
+ // Reference: src/vue/plugins/constants.js:1316
3498
+ __( 'Library', 'all-in-one-seo-pack' ),
3499
 
3500
+ // Reference: src/vue/plugins/constants.js:1317
3501
+ __( 'Lodging Business', 'all-in-one-seo-pack' ),
3502
 
3503
+ // Reference: src/vue/plugins/constants.js:1318
3504
+ __( 'Medical Business', 'all-in-one-seo-pack' ),
3505
 
3506
+ // Reference: src/vue/plugins/constants.js:1319
3507
+ __( 'Professional Service', 'all-in-one-seo-pack' ),
3508
 
3509
+ // Reference: src/vue/plugins/constants.js:1320
3510
+ __( 'Radio Station', 'all-in-one-seo-pack' ),
3511
 
3512
+ // Reference: src/vue/plugins/constants.js:1321
3513
+ __( 'Real Estate Agent', 'all-in-one-seo-pack' ),
3514
 
3515
+ // Reference: src/vue/plugins/constants.js:1322
3516
+ __( 'Recycling Center', 'all-in-one-seo-pack' ),
3517
 
3518
+ // Reference: src/vue/plugins/constants.js:1323
3519
+ __( 'Self Storage', 'all-in-one-seo-pack' ),
3520
 
3521
+ // Reference: src/vue/plugins/constants.js:1324
3522
+ __( 'Shopping Center', 'all-in-one-seo-pack' ),
3523
 
3524
+ // Reference: src/vue/plugins/constants.js:1325
3525
+ __( 'Sports Activity Location', 'all-in-one-seo-pack' ),
3526
 
3527
+ // Reference: src/vue/plugins/constants.js:1326
3528
+ __( 'Store', 'all-in-one-seo-pack' ),
3529
 
3530
+ // Reference: src/vue/plugins/constants.js:1327
3531
+ __( 'Television Station', 'all-in-one-seo-pack' ),
3532
 
3533
+ // Reference: src/vue/plugins/constants.js:1328
3534
+ __( 'Tourist Information Center', 'all-in-one-seo-pack' ),
3535
 
3536
+ // Reference: src/vue/plugins/constants.js:1329
3537
+ __( 'Travel Agency', 'all-in-one-seo-pack' ),
3538
 
3539
+ // Reference: src/vue/plugins/constants.js:1411
3540
+ __( 'CORS', 'all-in-one-seo-pack' ),
 
3541
 
3542
+ // Reference: src/vue/plugins/constants.js:1439
3543
+ __( 'Login Status', 'all-in-one-seo-pack' ),
 
3544
 
3545
+ // Reference: src/vue/plugins/constants.js:1440
3546
+ __( 'Referrer', 'all-in-one-seo-pack' ),
 
3547
 
3548
+ // Reference: src/vue/plugins/constants.js:1441
3549
+ __( 'WordPress User Roles', 'all-in-one-seo-pack' ),
 
3550
 
3551
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:247
3552
+ __( 'User Agent', 'all-in-one-seo-pack' ),
 
3553
 
3554
+ // Reference: src/vue/plugins/constants.js:1443
3555
+ __( 'Cookie', 'all-in-one-seo-pack' ),
 
3556
 
3557
+ // Reference: src/vue/plugins/constants.js:1444
3558
+ __( 'IP', 'all-in-one-seo-pack' ),
3559
 
3560
+ // Reference: src/vue/plugins/constants.js:1445
3561
+ __( 'Server', 'all-in-one-seo-pack' ),
3562
 
3563
+ // Reference: src/vue/plugins/constants.js:1446
3564
+ __( 'HTTP Header', 'all-in-one-seo-pack' ),
3565
 
3566
+ // Reference: src/vue/plugins/constants.js:1447
3567
+ __( 'WordPress Filter', 'all-in-one-seo-pack' ),
3568
 
3569
+ // Reference: src/vue/plugins/constants.js:1448
3570
+ __( 'Locale', 'all-in-one-seo-pack' ),
3571
 
3572
+ // Reference: src/vue/plugins/constants.js:1449
3573
+ __( 'Mobile', 'all-in-one-seo-pack' ),
3574
 
3575
+ // Reference: src/vue/plugins/constants.js:1450
3576
+ __( 'Feeds', 'all-in-one-seo-pack' ),
3577
 
3578
+ // Reference: src/vue/plugins/constants.js:1451
3579
+ __( 'Libraries', 'all-in-one-seo-pack' ),
3580
 
3581
+ // Reference: src/vue/plugins/constants.js:1452
3582
+ __( 'Logged In', 'all-in-one-seo-pack' ),
3583
 
3584
+ // Reference: src/vue/plugins/constants.js:1453
3585
+ __( 'Logged Out', 'all-in-one-seo-pack' ),
3586
 
3587
+ // Reference: src/vue/plugins/constants.js:20
3588
+ __( 'hourly', 'all-in-one-seo-pack' ),
3589
 
3590
+ // Reference: src/vue/plugins/constants.js:21
3591
+ __( 'daily', 'all-in-one-seo-pack' ),
3592
 
3593
+ // Reference: src/vue/plugins/constants.js:22
3594
+ __( 'weekly', 'all-in-one-seo-pack' ),
3595
 
3596
+ // Reference: src/vue/plugins/constants.js:23
3597
+ __( 'monthly', 'all-in-one-seo-pack' ),
 
3598
 
3599
+ // Reference: src/vue/plugins/constants.js:24
3600
+ __( 'yearly', 'all-in-one-seo-pack' ),
 
3601
 
3602
+ // Reference: src/vue/plugins/constants.js:25
3603
+ __( 'never', 'all-in-one-seo-pack' ),
3604
 
3605
+ // Reference: src/vue/plugins/constants.js:29
3606
+ __( 'No', 'all-in-one-seo-pack' ),
 
3607
 
3608
+ // Reference: src/vue/plugins/constants.js:30
3609
+ __( 'Yes', 'all-in-one-seo-pack' ),
 
3610
 
3611
+ // Reference: src/vue/plugins/constants.js:31
3612
+ __( 'Off', 'all-in-one-seo-pack' ),
3613
 
3614
+ // Reference: src/vue/plugins/constants.js:32
3615
+ __( 'On', 'all-in-one-seo-pack' ),
3616
 
3617
+ // Reference: src/vue/plugins/constants.js:33
3618
+ __( 'Show', 'all-in-one-seo-pack' ),
3619
 
3620
+ // Reference: src/vue/plugins/constants.js:34
3621
+ __( 'Hide', 'all-in-one-seo-pack' ),
3622
 
3623
+ // Reference: src/vue/plugins/constants.js:36
3624
+ __( 'Disabled', 'all-in-one-seo-pack' ),
3625
 
3626
+ // Reference: src/vue/plugins/constants.js:37
3627
+ __( 'Enabled', 'all-in-one-seo-pack' ),
3628
 
3629
+ // Reference: src/vue/plugins/constants.js:38
3630
+ __( 'Preview', 'all-in-one-seo-pack' ),
3631
 
3632
+ // Reference: src/vue/plugins/constants.js:39
3633
+ __( 'Include', 'all-in-one-seo-pack' ),
3634
 
3635
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:75
3636
+ __( 'Add Additional Keyphrases', 'all-in-one-seo-pack' ),
3637
 
3638
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:76
3639
+ __( 'Improve your SEO rankings with additional keyphrases.', 'all-in-one-seo-pack' ),
3640
 
3641
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:79
3642
+ /* Translators: 1 - "Pro" string, 2 - "Learn more link". */
3643
+ __( 'Multiple Keyphrases is a %1$s feature. %2$s', 'all-in-one-seo-pack' ),
3644
 
3645
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:81
3646
+ __( 'Click here to get', 'all-in-one-seo-pack' ),
3647
 
3648
+ // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:55
3649
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:71
3650
+ __( 'Schema Type', 'all-in-one-seo-pack' ),
3651
 
3652
+ // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:56
3653
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:72
3654
+ __( 'Article Type', 'all-in-one-seo-pack' ),
3655
 
3656
+ // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:58
3657
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:74
3658
+ __( 'Blog Post', 'all-in-one-seo-pack' ),
3659
 
3660
+ // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:59
3661
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:75
3662
+ __( 'News Article', 'all-in-one-seo-pack' ),
3663
 
3664
+ // Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:26
3665
+ __( 'Here you can view and edit the thumbnail, title and description that will be displayed when your site is shared on social media. Click on the button below to view and edit the preview.', 'all-in-one-seo-pack' ),
3666
 
3667
+ // Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:27
3668
+ __( 'Preview & Edit', 'all-in-one-seo-pack' ),
 
3669
 
3670
+ // Reference: src/vue/plugins/breadcrumbs/index.js:33
3671
+ /* Translators: 1 - AIOSEO. */
3672
+ __( '%1$s - Breadcrumbs', 'all-in-one-seo-pack' ),
3673
 
3674
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:213
3675
+ __( 'Twitter Preview', 'all-in-one-seo-pack' ),
 
 
3676
 
3677
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:214
3678
+ __( 'Use Data from Facebook Tab', 'all-in-one-seo-pack' ),
3679
 
3680
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:217
3681
+ __( 'Twitter Image', 'all-in-one-seo-pack' ),
 
3682
 
3683
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:218
3684
+ __( 'Twitter Title', 'all-in-one-seo-pack' ),
3685
 
3686
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:219
3687
+ __( 'Twitter Description', 'all-in-one-seo-pack' ),
3688
 
3689
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:220
3690
+ __( 'Twitter Card Type', 'all-in-one-seo-pack' ),
3691
 
3692
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:234
3693
+ __( 'Default (Set under Social Networks)', 'all-in-one-seo-pack' ),
3694
 
3695
+ // Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:86
3696
+ __( 'Show Title', 'all-in-one-seo-pack' ),
3697
 
3698
+ // Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:87
3699
+ __( 'Show Icons', 'all-in-one-seo-pack' ),
3700
 
3701
+ // Reference: src/vue/plugins/html-sitemap/index.js:44
3702
+ __( '%1$s - HTML Sitemap', 'all-in-one-seo-pack' ),
3703
 
3704
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:100
3705
+ /* Translators: 1 - Strong tag, 2 - Close strong tag. */
3706
+ __( '%1$sThe custom marker should be: 100x100 px.%2$s If the image exceeds those dimensions it could (partially) cover the info popup.', 'all-in-one-seo-pack' ),
3707
 
3708
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:90
3709
+ __( 'Show label', 'all-in-one-seo-pack' ),
3710
 
3711
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:91
3712
+ __( 'Show icon', 'all-in-one-seo-pack' ),
3713
 
3714
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:93
3715
+ __( 'Map Display', 'all-in-one-seo-pack' ),
3716
 
3717
+ // Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:96
3718
+ __( 'Custom Marker', 'all-in-one-seo-pack' ),
3719
 
3720
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:286
3721
+ /* Translators: 1 - Semrush. */
3722
+ __( 'Additional Keyphrases by %1$s', 'all-in-one-seo-pack' ),
3723
 
3724
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:287
3725
+ __( 'Add Focus Keyphrase', 'all-in-one-seo-pack' ),
3726
 
3727
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:288
3728
+ __( 'Get Additional Keyphrases', 'all-in-one-seo-pack' ),
3729
 
3730
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:289
3731
+ __( 'Show Results For:', 'all-in-one-seo-pack' ),
3732
 
3733
+ // Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:8
3734
+ __( 'Keyphrase', 'all-in-one-seo-pack' ),
3735
 
3736
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:291
3737
+ __( 'Volume', 'all-in-one-seo-pack' ),
3738
 
3739
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:292
3740
+ __( 'Trend', 'all-in-one-seo-pack' ),
3741
 
3742
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:293
3743
+ __( 'Add Keyphrase', 'all-in-one-seo-pack' ),
3744
 
3745
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:294
3746
+ __( 'Remove Keyphrase', 'all-in-one-seo-pack' ),
3747
 
3748
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:295
3749
+ __( 'No results', 'all-in-one-seo-pack' ),
3750
 
3751
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:297
3752
+ /* Translators: 1 - Plugin short name + Pro "AIOSEO Pro", 2 - Semrush, 3 - Link to learn more. */
3753
+ __( 'Analyzing your content with %1$s keywords is only available to licensed %2$s users. %3$s', 'all-in-one-seo-pack' ),
3754
 
3755
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:299
3756
+ /* Translators: 1 - Plugin short name "AIOSEO", 2 - Semrush. */
3757
+ __( '%1$s integrates directly with %2$s to provide you with actionable keyphrases to help you write better content.', 'all-in-one-seo-pack' ),
3758
 
3759
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:300
3760
+ __( 'To use this feature, first add a focus keyphrase.', 'all-in-one-seo-pack' ),
 
3761
 
3762
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:304
3763
+ /* Translators: 1 - Semrush. */
3764
+ __( 'Get Additional Keyphrases with %1$s!', 'all-in-one-seo-pack' ),
3765
 
3766
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:306
3767
+ /* Translators: 1 - Opening link tag, 2 - Closing link tag, 3 - Semrush. */
3768
+ __( '%1$sA valid license key is required%2$s in order to connect with %3$s.', 'all-in-one-seo-pack' ),
3769
 
3770
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:325
3771
+ __( 'You have exceeded the limit for requests. Please try again later.', 'all-in-one-seo-pack' ),
3772
 
3773
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:328
3774
+ __( 'An error occurred while fetching keyphrases. Please try again later.', 'all-in-one-seo-pack' ),
 
3775
 
3776
+ // Reference: src/vue/pages/search-appearance/router/paths.js:19
3777
+ __( 'Global Settings', 'all-in-one-seo-pack' ),
 
3778
 
3779
+ // Reference: src/vue/pages/seo-analysis/router/paths.js:19
3780
+ __( 'SEO Audit Checklist', 'all-in-one-seo-pack' ),
3781
 
3782
+ // Reference: src/vue/pages/seo-analysis/router/paths.js:28
3783
+ __( 'Analyze Competitor Site', 'all-in-one-seo-pack' ),
3784
 
3785
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:240
3786
+ __( 'Robots.txt Editor', 'all-in-one-seo-pack' ),
3787
 
3788
+ // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:41
3789
+ __( '.htaccess Editor', 'all-in-one-seo-pack' ),
3790
 
3791
+ // Reference: src/vue/pages/tools/router/paths.js:46
3792
+ __( 'Import/Export', 'all-in-one-seo-pack' ),
3793
 
3794
+ // Reference: src/vue/pages/tools/router/paths.js:55
3795
+ __( 'Database Tools', 'all-in-one-seo-pack' ),
3796
 
3797
+ // Reference: src/vue/pages/tools/router/paths.js:64
3798
+ __( 'System Status', 'all-in-one-seo-pack' ),
3799
 
3800
+ // Reference: src/vue/pages/about/router/paths.js:19
3801
+ __( 'About Us', 'all-in-one-seo-pack' ),
3802
 
3803
+ // Reference: src/vue/pages/about/router/paths.js:28
3804
+ __( 'Getting Started', 'all-in-one-seo-pack' ),
3805
 
3806
+ // Reference: src/vue/pages/about/router/paths.js:37
3807
+ __( 'Lite vs. Pro', 'all-in-one-seo-pack' ),
3808
 
3809
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:104
3810
+ __( 'Ascending', 'all-in-one-seo-pack' ),
 
3811
 
3812
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:105
3813
+ __( 'Descending', 'all-in-one-seo-pack' ),
 
3814
 
3815
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:108
3816
+ __( 'Publish Date', 'all-in-one-seo-pack' ),
 
3817
 
3818
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:109
3819
+ __( 'Last Updated', 'all-in-one-seo-pack' ),
 
3820
 
3821
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:110
3822
+ __( 'Alphabetical', 'all-in-one-seo-pack' ),
 
3823
 
3824
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:111
3825
+ __( 'Post/Term ID', 'all-in-one-seo-pack' ),
3826
 
3827
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:119
3828
+ __( 'Show Labels', 'all-in-one-seo-pack' ),
3829
 
3830
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:120
3831
+ __( 'Show Publication Date', 'all-in-one-seo-pack' ),
 
3832
 
3833
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:122
3834
+ __( 'Compact Archives', 'all-in-one-seo-pack' ),
3835
 
3836
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:123
3837
+ __( 'Sort Order', 'all-in-one-seo-pack' ),
3838
 
3839
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:124
3840
+ __( 'Sort Direction', 'all-in-one-seo-pack' ),
3841
 
3842
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:441
3843
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:125
3844
+ __( 'Exclude Posts / Pages', 'all-in-one-seo-pack' ),
3845
 
3846
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:442
3847
+ // Reference: src/vue/standalone/HtmlSitemapSidebar.vue:126
3848
+ __( 'Exclude Terms', 'all-in-one-seo-pack' ),
3849
 
3850
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:90
3851
+ __( 'Block Bad Bots using HTTP', 'all-in-one-seo-pack' ),
 
3852
 
3853
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:91
3854
+ __( 'Block Referral Spam using HTTP', 'all-in-one-seo-pack' ),
 
3855
 
3856
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:92
3857
+ __( 'Track Blocked Bots', 'all-in-one-seo-pack' ),
 
3858
 
3859
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:93
3860
+ __( 'Use Custom Blocklists', 'all-in-one-seo-pack' ),
 
 
 
3861
 
3862
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:94
3863
+ __( 'User Agent Blocklist', 'all-in-one-seo-pack' ),
3864
 
3865
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:95
3866
+ __( 'Referer Blocklist', 'all-in-one-seo-pack' ),
3867
 
3868
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:96
3869
+ __( 'Blocked Bots Log', 'all-in-one-seo-pack' ),
3870
 
3871
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:98
3872
+ /* Translators: 1 - The location of the log file. */
3873
+ __( 'The log for the blocked bots is located here: %1$s', 'all-in-one-seo-pack' ),
3874
 
3875
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:115
3876
+ __( 'System Status Info', 'all-in-one-seo-pack' ),
3877
 
3878
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:116
3879
+ __( 'Download System Info File', 'all-in-one-seo-pack' ),
3880
 
3881
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:117
3882
+ __( 'Copy to Clipboard', 'all-in-one-seo-pack' ),
3883
 
3884
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:118
3885
+ __( 'Email Debug Information', 'all-in-one-seo-pack' ),
 
3886
 
3887
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:119
3888
+ __( 'Submit', 'all-in-one-seo-pack' ),
 
3889
 
3890
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:120
3891
+ __( 'WordPress', 'all-in-one-seo-pack' ),
3892
 
3893
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:121
3894
+ __( 'Server Info', 'all-in-one-seo-pack' ),
3895
 
3896
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:122
3897
+ __( 'Active Theme', 'all-in-one-seo-pack' ),
 
 
3898
 
3899
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:123
3900
+ __( 'Must-Use Plugins', 'all-in-one-seo-pack' ),
3901
 
3902
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:124
3903
+ __( 'Active Plugins', 'all-in-one-seo-pack' ),
 
3904
 
3905
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:125
3906
+ __( 'Inactive Plugins', 'all-in-one-seo-pack' ),
3907
 
3908
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:82
3909
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
3910
+ __( 'Import / Restore %1$s Settings', 'all-in-one-seo-pack' ),
3911
 
3912
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:83
3913
+ __( 'Import from a JSON or INI file...', 'all-in-one-seo-pack' ),
 
3914
 
3915
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:84
3916
+ __( 'Choose a File', 'all-in-one-seo-pack' ),
3917
 
3918
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:85
3919
+ __( 'Imported settings will overwrite existing settings and will not be merged.', 'all-in-one-seo-pack' ),
3920
 
3921
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:86
3922
+ __( 'Import', 'all-in-one-seo-pack' ),
3923
 
3924
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:87
3925
+ __( 'A JSON or INI file is required to import settings.', 'all-in-one-seo-pack' ),
 
3926
 
3927
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:88
3928
+ __( 'Success! Your settings have been imported.', 'all-in-one-seo-pack' ),
3929
 
3930
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:89
3931
+ __( 'There was an error importing your settings. Please make sure you are uploading the correct file or it is in the proper format.', 'all-in-one-seo-pack' ),
3932
 
3933
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:136
3934
+ __( 'Backup Settings', 'all-in-one-seo-pack' ),
3935
 
3936
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:137
3937
+ __( 'Are you sure you want to delete this backup?', 'all-in-one-seo-pack' ),
3938
 
3939
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:138
3940
+ __( 'Are you sure you want to restore this backup?', 'all-in-one-seo-pack' ),
3941
 
3942
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:139
3943
+ __( 'Yes, I want to delete this backup', 'all-in-one-seo-pack' ),
3944
 
3945
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:140
3946
+ __( 'Yes, I want to restore this backup', 'all-in-one-seo-pack' ),
3947
 
3948
+ // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:23
3949
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:224
3950
+ __( 'No, I changed my mind', 'all-in-one-seo-pack' ),
3951
 
3952
+ // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:21
3953
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:221
3954
+ __( 'This action cannot be undone.', 'all-in-one-seo-pack' ),
3955
 
3956
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:143
3957
+ __( 'You have no saved backups.', 'all-in-one-seo-pack' ),
3958
 
3959
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:144
3960
+ __( 'Create Backup', 'all-in-one-seo-pack' ),
3961
 
3962
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:145
3963
+ __( 'Restore', 'all-in-one-seo-pack' ),
3964
 
3965
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:147
3966
+ __( 'Success! The backup was deleted.', 'all-in-one-seo-pack' ),
3967
 
3968
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:148
3969
+ __( 'Success! The backup was restored.', 'all-in-one-seo-pack' ),
3970
 
3971
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:211
3972
+ /* Translators: 1 Date, 2 - Timestamp. */
3973
+ __( '%1$s at %2$s', 'all-in-one-seo-pack' ),
3974
 
3975
+ // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:118
3976
+ __( 'Export Settings', 'all-in-one-seo-pack' ),
 
3977
 
3978
+ // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:119
3979
+ __( 'Export All Settings', 'all-in-one-seo-pack' ),
3980
 
3981
+ // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:120
3982
+ __( 'Export All Post Types', 'all-in-one-seo-pack' ),
3983
 
3984
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:122
3985
+ __( 'Import Settings From Other Plugins', 'all-in-one-seo-pack' ),
 
3986
 
3987
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:124
3988
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
3989
+ __( 'Choose a plugin to import SEO data directly into %1$s.', 'all-in-one-seo-pack' ),
3990
 
3991
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:125
3992
+ __( 'Select a plugin...', 'all-in-one-seo-pack' ),
3993
 
3994
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:127
3995
+ __( 'All Settings', 'all-in-one-seo-pack' ),
3996
 
3997
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:128
3998
+ __( 'not installed', 'all-in-one-seo-pack' ),
3999
 
4000
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:142
4001
+ __( 'SEO Settings', 'all-in-one-seo-pack' ),
4002
 
4003
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:143
4004
+ __( 'Post Meta', 'all-in-one-seo-pack' ),
4005
 
4006
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:147
4007
+ __( 'Term Meta', 'all-in-one-seo-pack' ),
4008
 
4009
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:175
4010
+ /* Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO"). */
4011
+ __( '%1$s was successfully imported!', 'all-in-one-seo-pack' ),
4012
 
4013
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:179
4014
+ /* Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO"). */
4015
+ __( 'An error occurred while importing %1$s. Please try again.', 'all-in-one-seo-pack' ),
4016
 
4017
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:222
4018
+ /* Translators: 1 - The name of the plugin (e.g. "Yoast SEO"), 2 - The version of the plugin (e.g. "10.2.3"). */
4019
+ __( 'We do not support importing from the currently installed version of %1$s (%2$s). Please upgrade to the latest version and try again.', 'all-in-one-seo-pack' ),
4020
 
4021
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:377
4022
+ __( 'Global Robots Meta', 'all-in-one-seo-pack' ),
4023
 
4024
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:378
4025
+ __( 'Noindex Empty Category and Tag Archives', 'all-in-one-seo-pack' ),
4026
 
4027
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:379
4028
+ __( 'Remove Stopwords from Permalinks', 'all-in-one-seo-pack' ),
4029
 
4030
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:380
4031
+ __( 'Remove Category Base Prefix', 'all-in-one-seo-pack' ),
4032
 
4033
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:383
4034
+ __( 'Automatically Add Missing Image Alt / Title Tags', 'all-in-one-seo-pack' ),
 
4035
 
4036
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:386
4037
+ __( 'Autogenerate Descriptions', 'all-in-one-seo-pack' ),
4038
 
4039
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:387
4040
+ __( 'Use Content for Autogenerated Descriptions', 'all-in-one-seo-pack' ),
 
4041
 
4042
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:388
4043
+ __( 'Run Shortcodes in Description', 'all-in-one-seo-pack' ),
4044
 
4045
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:389
4046
+ __( 'No Pagination for Canonical URLs', 'all-in-one-seo-pack' ),
4047
 
4048
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:390
4049
+ __( 'Use Meta Keywords', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4050
 
4051
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:391
4052
+ __( 'This option allows you to toggle the use of Meta Keywords throughout the whole of the site.', 'all-in-one-seo-pack' ),
 
 
4053
 
4054
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:392
4055
+ __( 'Use Categories for Meta Keywords', 'all-in-one-seo-pack' ),
 
 
4056
 
4057
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:393
4058
+ __( 'Check this if you want your categories for a given post used as the Meta Keywords for this post (in addition to any keywords you specify on the Edit Post screen).', 'all-in-one-seo-pack' ),
 
4059
 
4060
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:394
4061
+ __( 'Use Tags for Meta Keywords', 'all-in-one-seo-pack' ),
4062
 
4063
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:395
4064
+ __( 'Check this if you want your tags for a given post used as the Meta Keywords for this post (in addition to any keywords you specify on the Edit Post screen).', 'all-in-one-seo-pack' ),
4065
 
4066
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:396
4067
+ __( 'Dynamically Generate Meta Keywords', 'all-in-one-seo-pack' ),
4068
 
4069
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:397
4070
+ __( 'Check this if you want your keywords on your Posts page (set in WordPress under Settings, Reading, Front Page Displays) and your archive pages to be dynamically generated from the keywords of the posts showing on that page. If unchecked, it will use the keywords set in the edit page screen for the posts page.', 'all-in-one-seo-pack' ),
4071
 
4072
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:399
4073
+ __( 'This string gets appended to the titles and descriptions of paginated pages (like term or archive pages).', 'all-in-one-seo-pack' ),
4074
 
4075
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:400
4076
+ __( 'Description Format', 'all-in-one-seo-pack' ),
4077
 
4078
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:403
4079
+ __( 'Enable Sitelinks Search Box', 'all-in-one-seo-pack' ),
4080
 
4081
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:405
4082
  /* Translators: 1 - The plugin name ("All in One SEO"). */
4083
+ __( 'Choose whether %1$s should output the required schema markup that Google needs to generate a sitelinks search box.', 'all-in-one-seo-pack' ),
4084
 
4085
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:406
4086
+ __( 'A Description tag is required in order to properly display your meta descriptions on your site.', 'all-in-one-seo-pack' ),
4087
 
4088
+ // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:111
4089
+ __( 'Enter Competitor URL', 'all-in-one-seo-pack' ),
4090
 
4091
+ // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:112
4092
+ __( 'Perform in-depth SEO Analysis of your competitor\'s website.', 'all-in-one-seo-pack' ),
4093
 
4094
+ // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:113
4095
+ __( 'Analyze', 'all-in-one-seo-pack' ),
4096
 
4097
+ // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:114
4098
+ __( 'Please enter a valid URL.', 'all-in-one-seo-pack' ),
4099
 
4100
+ // Reference: src/vue/pages/about/views/AboutUs.vue:119
4101
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - Same as previous. */
4102
+ __( 'Welcome to %1$s, the original SEO plugin for WordPress. At %2$s, we build software that helps you rank your website in search results and gain organic traffic.', 'all-in-one-seo-pack' ),
4103
 
4104
+ // Reference: src/vue/pages/about/views/AboutUs.vue:120
4105
+ __( 'Over the years, we found that most other WordPress SEO plugins were bloated, buggy, slow, and very hard to use. So we designed our plugin as an easy and powerful tool.', 'all-in-one-seo-pack' ),
4106
 
4107
+ // Reference: src/vue/pages/about/views/AboutUs.vue:121
4108
+ __( 'Our goal is to take the pain out of optimizing your website for search engines.', 'all-in-one-seo-pack' ),
4109
 
4110
+ // Reference: src/vue/pages/about/views/AboutUs.vue:123
4111
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - Company name ("Awesome Motive"). */
4112
+ __( '%1$s is brought to you by %2$s, the same team that’s behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, the best WordPress analytics plugin, MonsterInsights and many more.', 'all-in-one-seo-pack' ),
4113
 
4114
+ // Reference: src/vue/pages/about/views/AboutUs.vue:124
4115
+ __( 'Yup, we know a thing or two about building awesome products that customers love.', 'all-in-one-seo-pack' ),
4116
 
4117
+ // Reference: src/vue/pages/about/views/AboutUs.vue:126
4118
+ /* Translators: 1 - Company name ("Awesome Motive"). */
4119
+ __( 'The %1$s Team', 'all-in-one-seo-pack' ),
4120
 
4121
+ // Reference: src/vue/pages/about/views/AboutUs.vue:130
4122
+ __( 'Install Plugin', 'all-in-one-seo-pack' ),
4123
 
4124
+ // Reference: src/vue/pages/about/views/AboutUs.vue:131
4125
+ __( 'Activate', 'all-in-one-seo-pack' ),
4126
 
4127
+ // Reference: src/vue/pages/about/views/AboutUs.vue:134
4128
+ __( 'Status:', 'all-in-one-seo-pack' ),
 
4129
 
4130
+ // Reference: src/vue/pages/about/views/AboutUs.vue:145
4131
+ __( 'Our high-converting optin forms like Exit-Intent® popups, Fullscreen Welcome Mats, and Scroll boxes help you dramatically boost conversions and get more email subscribers.', 'all-in-one-seo-pack' ),
4132
 
4133
+ // Reference: src/vue/pages/about/views/AboutUs.vue:154
4134
+ __( 'WPForms allows you to create beautiful contact forms for your site in minutes, not hours!', 'all-in-one-seo-pack' ),
4135
 
4136
+ // Reference: src/vue/pages/about/views/AboutUs.vue:171
4137
+ __( 'MonsterInsights makes it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business.', 'all-in-one-seo-pack' ),
4138
 
4139
+ // Reference: src/vue/pages/about/views/AboutUs.vue:188
4140
+ __( 'The ExactMetrics Google Analytics for WordPress plugin helps you properly setup all the powerful Google Analytics tracking features without writing any code or hiring a developer.', 'all-in-one-seo-pack' ),
4141
 
4142
+ // Reference: src/vue/pages/about/views/AboutUs.vue:205
4143
+ __( 'Make sure your website\'s emails reach the inbox. Our goal is to make email deliverability easy and reliable. Trusted by over 2 million websites.', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
4144
 
4145
+ // Reference: src/vue/pages/about/views/AboutUs.vue:222
4146
+ __( 'Create a simple Coming Soon Page, Under Construction or Maintenance Mode Page. Work on your site in private while visitors see a “Coming Soon” or “Maintenance Mode” page.', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
4147
 
4148
+ // Reference: src/vue/pages/about/views/AboutUs.vue:239
4149
+ __( 'TrustPulse uses FOMO (Fear of Missing Out) to boost your sales and conversions with social proof notifications. Use it to boost sales on your Woocommerce store, increase signups on your membership site, get more email subscribers, and more.', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
4150
 
4151
+ // Reference: src/vue/pages/about/views/AboutUs.vue:248
4152
+ __( 'Turn your visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with powerful viral giveaways & contests.', 'all-in-one-seo-pack' ),
4153
 
4154
+ // Reference: src/vue/pages/about/views/AboutUs.vue:265
4155
+ __( 'Display completely customizable Facebook feeds of any public Facebook page or Group.', 'all-in-one-seo-pack' ),
 
4156
 
4157
+ // Reference: src/vue/pages/about/views/AboutUs.vue:282
4158
+ __( 'Display beautifully clean, customizable, and responsive Instagram feeds from multiple Instagram accounts.', 'all-in-one-seo-pack' ),
 
4159
 
4160
+ // Reference: src/vue/pages/about/views/AboutUs.vue:299
4161
+ __( 'Display completely customizable, responsive and search engine crawlable Twitter feeds on your website.', 'all-in-one-seo-pack' ),
 
4162
 
4163
+ // Reference: src/vue/pages/about/views/AboutUs.vue:316
4164
+ __( 'The Feeds for YouTube plugin allows you to display customizable YouTube feeds from any YouTube channel.', 'all-in-one-seo-pack' ),
4165
 
4166
+ // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:42
4167
+ __( 'Edit .htaccess', 'all-in-one-seo-pack' ),
4168
 
4169
+ // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:44
4170
+ /* Translators: 1 - Opening bold tag, 2 - Closing bold tag. */
4171
+ __( 'This allows you to edit the .htaccess file for your site. All WordPress sites on an Apache server have a .htaccess file and we have provided you with a convenient way of editing it. Care should always be taken when editing important files from within WordPress as an incorrect change could cause WordPress to become inaccessible. %1$sBe sure to make a backup before making changes and ensure that you have FTP access to your web server and know how to access and edit files via FTP.%2$s', 'all-in-one-seo-pack' ),
4172
 
4173
+ // Reference: src/vue/plugins/truSEO/analysis/isExternalLink.js:20
4174
+ __( 'Great! You are linking to external resources.', 'all-in-one-seo-pack' ),
4175
 
4176
+ // Reference: src/vue/plugins/truSEO/analysis/isExternalLink.js:28
4177
+ __( 'External links', 'all-in-one-seo-pack' ),
4178
 
4179
+ // Reference: src/vue/plugins/truSEO/analysis/isExternalLink.js:29
4180
+ __( 'No outbound links were found. Link out to external resources.', 'all-in-one-seo-pack' ),
4181
 
 
4182
  // Reference: src/vue/plugins/truSEO/analysis/lengthContent.js:25
4183
  __( 'Please add some content first.', 'all-in-one-seo-pack' ),
4184
 
4194
  // Reference: src/vue/plugins/truSEO/analysis/lengthContent.js:71
4195
  __( 'The content is below the minimum of words. Add more content.', 'all-in-one-seo-pack' ),
4196
 
 
 
 
 
 
 
 
 
 
4197
  // Reference: src/vue/plugins/truSEO/analysis/isInternalLink.js:20
4198
  __( 'You are linking to other resources on your website which is great.', 'all-in-one-seo-pack' ),
4199
 
4203
  // Reference: src/vue/plugins/truSEO/analysis/isInternalLink.js:29
4204
  __( 'We couldn\'t find any internal links in your content. Add internal links in your content.', 'all-in-one-seo-pack' ),
4205
 
4206
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:255
4207
+ __( 'Reset / Restore Settings', 'all-in-one-seo-pack' ),
 
 
 
4208
 
4209
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:256
4210
+ __( 'Select Settings', 'all-in-one-seo-pack' ),
4211
 
4212
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:257
4213
+ __( 'Select settings that you would like to reset:', 'all-in-one-seo-pack' ),
4214
 
4215
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:258
4216
+ __( 'Reset Selected Settings to Default', 'all-in-one-seo-pack' ),
4217
 
4218
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:259
4219
+ __( 'Your settings have been reset successfully!', 'all-in-one-seo-pack' ),
4220
 
4221
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:260
4222
+ __( 'Are you sure you want to reset the selected settings to default?', 'all-in-one-seo-pack' ),
4223
+
4224
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:262
4225
+ /* Translators: 1 - Opening bold tag. 2 - Closing bold tag. */
4226
+ __( 'This action cannot be undone. Before taking this action, we recommend that you make a %1$sfull website backup first%2$s.', 'all-in-one-seo-pack' ),
4227
+
4228
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:263
4229
+ __( 'Yes, I have a backup and want to reset the settings', 'all-in-one-seo-pack' ),
4230
+
4231
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:264
4232
+ __( 'No, I need to make a backup', 'all-in-one-seo-pack' ),
4233
+
4234
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:118
4235
+ __( 'Logs', 'all-in-one-seo-pack' ),
4236
+
4237
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:266
4238
+ __( 'Bad Bot Blocker Logs', 'all-in-one-seo-pack' ),
4239
+
4240
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:267
4241
+ __( 'Cleared', 'all-in-one-seo-pack' ),
4242
+
4243
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:268
4244
+ __( 'Clear Bad Bot Blocker Logs', 'all-in-one-seo-pack' ),
4245
+
4246
+ // Reference: src/vue/pages/redirects/router/paths.js:46
4247
+ __( '404 Logs', 'all-in-one-seo-pack' ),
4248
+
4249
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:270
4250
+ __( 'Clear 404 Logs', 'all-in-one-seo-pack' ),
4251
+
4252
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:271
4253
+ __( 'Redirect Logs', 'all-in-one-seo-pack' ),
4254
+
4255
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:272
4256
+ __( 'Clear Redirect Logs', 'all-in-one-seo-pack' ),
4257
+
4258
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:274
4259
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
4260
+ __( 'All %1$s Settings', 'all-in-one-seo-pack' ),
4261
+
4262
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:275
4263
+ __( 'Log sizes may fluctuate and not always be 100% accurate since the results can be cached. Also after clearing a log, it may not show as "0" since database tables also include additional information such as indexes that we don\'t clear.', 'all-in-one-seo-pack' ),
4264
+
4265
+ // Reference: src/vue/pages/tools/views/ImportExport.vue:36
4266
+ __( 'Export / Backup Settings', 'all-in-one-seo-pack' ),
4267
+
4268
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:242
4269
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
4270
+ __( 'The robots.txt editor in %1$s allows you to set up a robots.txt file for your site that will override the default robots.txt file that WordPress creates. By creating a robots.txt file with %2$s you have greater control over the instructions you give web crawlers about your site.', 'all-in-one-seo-pack' ),
4271
+
4272
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:244
4273
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
4274
+ __( 'Just like WordPress, %1$s generates a dynamic file so there is no static file to be found on your server. The content of the robots.txt file is stored in your WordPress database.', 'all-in-one-seo-pack' ),
4275
+
4276
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:245
4277
+ __( 'Enable Custom Robots.txt', 'all-in-one-seo-pack' ),
4278
+
4279
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:246
4280
+ __( 'Duplicate or invalid entries have been detected! Please check your rules and try again.', 'all-in-one-seo-pack' ),
4281
+
4282
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:248
4283
+ __( 'Rule', 'all-in-one-seo-pack' ),
4284
+
4285
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:249
4286
+ __( 'Directory Path', 'all-in-one-seo-pack' ),
4287
+
4288
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:250
4289
+ __( 'Allow', 'all-in-one-seo-pack' ),
4290
+
4291
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:251
4292
+ __( 'Disallow', 'all-in-one-seo-pack' ),
4293
+
4294
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:252
4295
+ __( 'Add Rule', 'all-in-one-seo-pack' ),
4296
+
4297
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:253
4298
+ __( 'Delete Rule', 'all-in-one-seo-pack' ),
4299
+
4300
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:254
4301
+ __( 'Robots.txt Preview:', 'all-in-one-seo-pack' ),
4302
+
4303
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:255
4304
+ __( 'Open Robots.txt', 'all-in-one-seo-pack' ),
4305
+
4306
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:257
4307
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
4308
+ __( '%1$s has detected a physical robots.txt file in the root folder of your WordPress installation. We recommend removing this file as it could cause conflicts with WordPress\' dynamically generated one. %2$s can import this file and delete it, or you can simply delete it.', 'all-in-one-seo-pack' ),
4309
+
4310
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:258
4311
+ __( 'Import and Delete', 'all-in-one-seo-pack' ),
4312
+
4313
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:290
4314
+ /* Translators: 1 - The url to the main site. */
4315
+ __( 'This site is running in a sub-directory of your main site located at %1$s. Your robots.txt file should only appear in the root directory of that site.', 'all-in-one-seo-pack' ),
4316
+
4317
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:293
4318
+ __( 'It looks like you are missing the proper rewrite rules for the robots.txt file.', 'all-in-one-seo-pack' ),
4319
+
4320
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:297
4321
+ /* Translators: 1 - Opening link tag. 2 - Closing link tag. */
4322
+ __( 'It appears that your server is running on Apache, so the fix should be as simple as checking the %1$scorrect .htaccess implementation on wordpress.org%2$s.', 'all-in-one-seo-pack' ),
4323
+
4324
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:300
4325
+ /* Translators: 1 - Opening link tag, 2 - Closing link tag. */
4326
+ __( 'It appears that your server is running on nginx, so the fix will most likely require adding the correct rewrite rules to our nginx configuration. %1$sCheck our documentation for more information%2$s.', 'all-in-one-seo-pack' ),
4327
 
4328
  // Reference: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:45
 
4329
  __( 'Good job!', 'all-in-one-seo-pack' ),
4330
 
4331
  // Reference: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:49
4348
  // Reference: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:96
4349
  __( ':-)', 'all-in-one-seo-pack' ),
4350
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4351
  // Reference: src/vue/plugins/truSEO/analysis/transitionWords.js:39
4352
  __( 'None of the sentences contain transition words. Use some.', 'all-in-one-seo-pack' ),
4353
 
4359
  __( 'Transition words', 'all-in-one-seo-pack' ),
4360
 
4361
  // Reference: src/vue/plugins/truSEO/analysis/metadescriptionLength.js:54
 
4362
  // Reference: src/vue/plugins/truSEO/analysis/transitionWords.js:59
4363
  __( 'Well done!', 'all-in-one-seo-pack' ),
4364
 
4365
+ // Reference: src/vue/plugins/truSEO/analysis/consecutiveSentences.js:33
4366
+ /* Translators: 1 - Number of sentences. */
4367
+ __( 'The text contains %1$d consecutive sentences starting with the same word. Try to mix things up!', 'all-in-one-seo-pack' ),
4368
+
4369
+ // Reference: src/vue/plugins/truSEO/analysis/consecutiveSentences.js:41
4370
+ __( 'Consecutive sentences', 'all-in-one-seo-pack' ),
4371
+
4372
+ // Reference: src/vue/plugins/truSEO/analysis/consecutiveSentences.js:42
4373
+ __( 'There is enough variety in your sentences. That\'s great!', 'all-in-one-seo-pack' ),
4374
+
4375
  // Reference: src/vue/plugins/truSEO/analysis/passiveVoice.js:36
4376
  __( 'You\'re using enough active voice. That\'s great!', 'all-in-one-seo-pack' ),
4377
 
4382
  /* Translators: 1 - Percentage of the sentences, 2 - Expected maximum percentage of sentences. */
4383
  __( '%1$s of the sentences contain passive voice, which is more than the recommended maximum of %2$s. Try to use their active counterparts.', 'all-in-one-seo-pack' ),
4384
 
4385
+ // Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:100
4386
+ __( 'You are not using any subheadings, but your text is short enough and probably doesn\'t need them.', 'all-in-one-seo-pack' ),
4387
+
4388
+ // Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:72
4389
+ /* Translators: 1 - Expand to the number of text sections not separated by subheadings, 2 - expands to the recommended number of words following a subheading. */
4390
+ __( '%1$d section of your text is longer than %2$d words and is not separated by any subheadings. Add subheadings to improve readability.', 'all-in-one-seo-pack' ),
4391
+
4392
+ // Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:81
4393
+ __( 'You are not using any subheadings, although your text is rather long. Try and add some subheadings.', 'all-in-one-seo-pack' ),
4394
+
4395
+ // Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:91
4396
+ __( 'Great job!', 'all-in-one-seo-pack' ),
4397
+
4398
+ // Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:99
4399
+ __( 'Subheading distribution', 'all-in-one-seo-pack' ),
4400
+
4401
  // Reference: src/vue/plugins/truSEO/analysis/sentenceLength.js:52
4402
  __( 'Sentence length is looking great!', 'all-in-one-seo-pack' ),
4403
 
4459
  // Reference: src/vue/plugins/truSEO/analysis/titleLength.js:58
4460
  __( 'Title Length', 'all-in-one-seo-pack' ),
4461
 
4462
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInImageAlt.js:31
4463
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4464
+ __( '%1$s found in image alt attribute(s).', 'all-in-one-seo-pack' ),
 
 
4465
 
4466
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInImageAlt.js:40
4467
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4468
+ __( '%1$s in image alt attributes', 'all-in-one-seo-pack' ),
4469
 
4470
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInImageAlt.js:42
4471
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4472
+ __( '%1$s not found in image alt attribute(s). Add an image with your %1$s as alt text.', 'all-in-one-seo-pack' ),
4473
 
4474
+ // Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:6
4475
+ __( 'Focus keyphrase', 'all-in-one-seo-pack' ),
4476
 
4477
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInContent.js:20
4478
+ __( 'Focus Keyphrase found in content.', 'all-in-one-seo-pack' ),
4479
 
4480
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInContent.js:28
4481
+ __( 'Focus Keyphrase in content', 'all-in-one-seo-pack' ),
4482
 
4483
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInContent.js:29
4484
+ __( 'Focus Keyphrase not found in content.', 'all-in-one-seo-pack' ),
4485
 
4486
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:22
4487
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4488
+ __( '%1$s in introduction', 'all-in-one-seo-pack' ),
4489
 
4490
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:27
4491
+ __( 'No content added yet.', 'all-in-one-seo-pack' ),
 
 
 
4492
 
4493
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:42
4494
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4495
+ __( 'Your %1$s appears in the first paragraph. Well done!', 'all-in-one-seo-pack' ),
4496
 
4497
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:52
4498
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4499
+ __( 'Your %1$s does not appear in the first paragraph. Make sure the topic is clear immediately.', 'all-in-one-seo-pack' ),
4500
 
4501
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:103
4502
+ __( 'Your H2 and H3 subheadings reflects the topic of your copy. Good job!', 'all-in-one-seo-pack' ),
4503
 
4504
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:111
4505
+ __( 'Focus Keyphrase in Subheadings', 'all-in-one-seo-pack' ),
4506
 
4507
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:112
4508
+ __( 'Use your focus keyphrase more in your H2 and H3 subheadings.', 'all-in-one-seo-pack' ),
4509
 
4510
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:76
4511
+ __( 'Use more focus keyphrases in your H2 and H3 subheadings!', 'all-in-one-seo-pack' ),
4512
 
4513
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:85
4514
+ __( 'More than 75% of your H2 and H3 subheadings reflect the topic of your copy. That\'s too much. Don\'t over-optimize!', 'all-in-one-seo-pack' ),
4515
 
4516
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:94
4517
+ __( 'Your H2 or H3 subheading reflects the topic of your copy. Good job!', 'all-in-one-seo-pack' ),
 
4518
 
4519
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInDescription.js:19
4520
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4521
+ __( '%1$s in meta description', 'all-in-one-seo-pack' ),
4522
 
4523
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInDescription.js:25
4524
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4525
+ __( '%1$s found in meta description.', 'all-in-one-seo-pack' ),
4526
 
4527
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInDescription.js:35
4528
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4529
+ __( '%1$s not found in meta description.', 'all-in-one-seo-pack' ),
4530
 
4531
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInURL.js:29
4532
+ __( 'Focus Keyphrase used in the URL.', 'all-in-one-seo-pack' ),
4533
 
4534
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInURL.js:37
4535
+ __( 'Focus Keyphrase in URL', 'all-in-one-seo-pack' ),
4536
 
4537
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInURL.js:38
4538
+ __( 'Focus Keyphrase not found in the URL.', 'all-in-one-seo-pack' ),
4539
 
4540
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseBeginningTitle.js:18
4541
+ __( 'Focus Keyphrase used at the beginning of SEO title.', 'all-in-one-seo-pack' ),
4542
 
4543
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseBeginningTitle.js:26
4544
+ __( 'Focus Keyphrase at the beginning of SEO Title', 'all-in-one-seo-pack' ),
4545
 
4546
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseBeginningTitle.js:27
4547
+ __( 'Focus Keyphrase doesn\'t appear at the beginning of SEO title.', 'all-in-one-seo-pack' ),
4548
 
4549
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInTitle.js:20
4550
+ __( 'Focus Keyphrase found in SEO title.', 'all-in-one-seo-pack' ),
4551
 
4552
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInTitle.js:28
4553
+ __( 'Focus Keyphrase in SEO title', 'all-in-one-seo-pack' ),
4554
 
4555
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseInTitle.js:29
4556
+ __( 'Focus Keyphrase not found in SEO title.', 'all-in-one-seo-pack' ),
4557
 
4558
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseLength.js:23
4559
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4560
+ __( '%1$s length', 'all-in-one-seo-pack' ),
4561
 
4562
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseLength.js:29
4563
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4564
+ __( 'No %1$s was set. Set a %1$s in order to calculate your SEO score.', 'all-in-one-seo-pack' ),
4565
 
4566
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseLength.js:50
4567
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4568
+ __( '%1$s is slightly long. Try to make it shorter.', 'all-in-one-seo-pack' ),
4569
 
4570
+ // Reference: src/vue/plugins/truSEO/analysis/keyphraseLength.js:60
4571
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4572
+ __( '%1$s is too long. Try to make it shorter.', 'all-in-one-seo-pack' ),
4573
 
4574
+ // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:67
4575
+ __( 'Complete SEO Checklist', 'all-in-one-seo-pack' ),
4576
 
4577
+ // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:80
4578
+ __( 'All Items', 'all-in-one-seo-pack' ),
4579
 
4580
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:109
4581
+ __( 'Social Meta (Open Graph Markup)', 'all-in-one-seo-pack' ),
4582
 
4583
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:112
4584
+ __( 'Posts, Pages and custom Post Types only', 'all-in-one-seo-pack' ),
4585
 
4586
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:116
4587
+ __( 'Posts, Pages, custom Post Types + Categories, Tags and custom Taxonomies', 'all-in-one-seo-pack' ),
4588
 
4589
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:120
4590
+ __( 'WooCommerce Integration', 'all-in-one-seo-pack' ),
 
4591
 
4592
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:123
4593
+ __( 'WooCommerce Products only', 'all-in-one-seo-pack' ),
4594
 
4595
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:127
4596
+ __( 'WooCommerce Products, Product Categories, Product Tags, Product Attributes + WooCommerce smart tags (price, brand, etc.)', 'all-in-one-seo-pack' ),
4597
 
4598
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:131
4599
+ __( 'Schema Rich Snippets', 'all-in-one-seo-pack' ),
4600
 
4601
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:134
4602
+ __( 'Posts, Pages, Categories and Tags only', 'all-in-one-seo-pack' ),
 
4603
 
4604
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:138
4605
+ __( 'Posts, Pages, Categories, Tags + Breadcrumb Navigation + advanced graphs (Product, FAQ Page, Recipe, etc.)', 'all-in-one-seo-pack' ),
4606
 
4607
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:142
4608
+ __( 'Visual Breadcrumb Trails', 'all-in-one-seo-pack' ),
4609
 
4610
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:145
4611
+ __( 'Default template for all pages.', 'all-in-one-seo-pack' ),
4612
 
4613
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:149
4614
+ __( 'Granular control over the template for each post type, taxonomy and archive.', 'all-in-one-seo-pack' ),
4615
 
4616
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:153
4617
+ __( 'XML Sitemap', 'all-in-one-seo-pack' ),
4618
 
4619
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:156
4620
+ __( 'Control the priority & frequency per Post Type/Taxonomy', 'all-in-one-seo-pack' ),
4621
 
4622
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:159
4623
+ __( 'Complete Support', 'all-in-one-seo-pack' ),
 
4624
 
4625
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:160
4626
+ __( 'Control the priority & frequency of each Post, Page, Category, Tag, etc.', 'all-in-one-seo-pack' ),
4627
 
4628
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:170
4629
+ __( 'Submit your videos to search engines (Pro & Elite plans only)', 'all-in-one-seo-pack' ),
4630
 
4631
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:180
4632
+ __( 'Submit your latest news stories to Google News (Pro & Elite plans only)', 'all-in-one-seo-pack' ),
4633
 
4634
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:190
4635
+ __( 'Control the Title & Alt Tag attribute of your images (Plus, Pro & Elite plans only)', 'all-in-one-seo-pack' ),
4636
 
4637
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:196
4638
+ __( 'Not available', 'all-in-one-seo-pack' ),
 
4639
 
4640
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:200
4641
+ __( 'Local Business schema (multiple locations supported) + Business Info & Location blocks, widgets & shortcodes (Plus, Pro & Elite plans only)', 'all-in-one-seo-pack' ),
4642
 
4643
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:204
4644
+ __( 'Redirection Manager', 'all-in-one-seo-pack' ),
 
4645
 
4646
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:206
4647
+ __( 'Not Available', 'all-in-one-seo-pack' ),
 
4648
 
4649
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:209
4650
+ __( 'Available as Addon Plugin', 'all-in-one-seo-pack' ),
4651
 
4652
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:210
4653
+ __( 'Create, manage and monitor redirects for 404\'s or modified posts + server redirects, full site redirects and site aliases (Pro & Elite plans only)', 'all-in-one-seo-pack' ),
 
4654
 
4655
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:216
4656
+ __( 'Limited Support', 'all-in-one-seo-pack' ),
4657
 
4658
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:219
4659
+ __( 'Priority Support', 'all-in-one-seo-pack' ),
 
4660
 
4661
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:71
4662
+ /* Translators: 1 - The abbreviated plugin name ("AIOSEO"). */
4663
+ __( '%1$s Lite vs. Pro', 'all-in-one-seo-pack' ),
4664
 
4665
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:73
4666
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
4667
+ __( 'Get the most out of %1$s by upgrading to Pro and unlocking all of the powerful features.', 'all-in-one-seo-pack' ),
4668
 
4669
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:76
4670
+ __( 'Features:', 'all-in-one-seo-pack' ),
 
4671
 
4672
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:79
4673
+ __( 'Upgrade to Pro to Unlock Powerful SEO Features', 'all-in-one-seo-pack' ),
4674
 
4675
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:81
4676
+ /* Translators: 1 - Plugin name ("All in One SEO"), 2 - Plugin short name ("AIOSEO"). */
4677
+ __( '%1$s is the best WordPress SEO plugin. Join over 2,000,000+ Professionals who are already using %2$s to improve their website search rankings.', 'all-in-one-seo-pack' ),
4678
 
4679
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:134
4680
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:83
4681
+ /* Translators: 1 - "Pro". */
4682
+ __( 'Upgrade to %1$s Today', 'all-in-one-seo-pack' ),
4683
 
4684
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:86
4685
+ /* Translators: 1 - Opening bold tag, 2 - Closing bold tag, 3 - "Pro", 4 - Opening bold tag, 5 - A percentage ("50%"), 6 - Closing bold tag. */
4686
+ __( '%1$sBonus:%2$s You can upgrade to the %3$s plan today and %4$ssave %5$s off%6$s (discount auto-applied).', 'all-in-one-seo-pack' ),
4687
 
4688
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:98
4689
+ __( 'Search Engine Optimization (SEO)', 'all-in-one-seo-pack' ),
4690
 
4691
+ // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:144
4692
+ __( 'Show in Search Results', 'all-in-one-seo-pack' ),
4693
 
4694
+ // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:148
4695
+ __( 'Selecting "No" will no-index this page.', 'all-in-one-seo-pack' ),
4696
 
4697
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:51
4698
+ __( 'Custom Fields', 'all-in-one-seo-pack' ),
4699
 
4700
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:52
4701
+ __( 'List of custom field names to include in the SEO Page Analysis. Add one per line.', 'all-in-one-seo-pack' ),
 
4702
 
4703
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:54
4704
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
4705
+ __( '%1$s %2$s gives you advanced customizations for our page analysis feature, letting you add custom fields to analyze.', 'all-in-one-seo-pack' ),
4706
 
4707
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:55
4708
+ __( 'Upgrade to Pro and Unlock Custom Fields', 'all-in-one-seo-pack' ),
 
4709
 
4710
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:57
4711
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
4712
+ __( 'Custom Fields are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
4713
 
4714
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:77
4715
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
4716
+ __( 'Advanced Schema Markup is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
 
 
4717
 
4718
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:79
4719
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
4720
+ __( '%1$s %2$s allows you to customize the structured data markup for your Posts so that search engines can generate rich snippets for your content in search results.', 'all-in-one-seo-pack' ),
4721
 
4722
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:80
4723
+ __( 'Upgrade to Pro and Unlock Advanced Schema Markup', 'all-in-one-seo-pack' ),
4724
 
4725
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:82
4726
+ __( 'Product (WooCommerce and EDD support)', 'all-in-one-seo-pack' ),
4727
 
4728
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:83
4729
+ __( 'FAQ Page', 'all-in-one-seo-pack' ),
4730
 
4731
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:84
4732
+ __( 'Software Application', 'all-in-one-seo-pack' ),
4733
 
4734
+ // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:99
4735
+ __( 'Recipe', 'all-in-one-seo-pack' ),
4736
 
4737
+ // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:97
4738
+ __( 'Course', 'all-in-one-seo-pack' ),
4739
 
4740
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:123
4741
+ __( 'Set title attributes', 'all-in-one-seo-pack' ),
4742
 
4743
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:124
4744
+ __( 'Set alt tag attributes', 'all-in-one-seo-pack' ),
4745
 
4746
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:125
4747
+ __( 'Strip punctuation for titles', 'all-in-one-seo-pack' ),
4748
 
4749
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:126
4750
+ __( 'Strip punctuation for alt tags', 'all-in-one-seo-pack' ),
4751
 
4752
+ // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:117
4753
+ __( 'Web Page Type', 'all-in-one-seo-pack' ),
4754
 
4755
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:130
4756
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string. */
4757
+ __( 'Get %1$s %2$s and Unlock all the Powerful Features', 'all-in-one-seo-pack' ),
4758
 
4759
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:132
4760
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string. */
4761
+ __( 'Get %1$s %2$s and Unlock all the Powerful Features.', 'all-in-one-seo-pack' ),
4762
 
4763
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:141
4764
+ __( 'Social Meta for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
4765
 
4766
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:148
4767
+ __( 'Video Tutorials', 'all-in-one-seo-pack' ),
4768
 
4769
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:149
4770
+ __( 'View all video tutorials', 'all-in-one-seo-pack' ),
4771
 
4772
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:154
4773
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
4774
+ __( '%1$s Documentation', 'all-in-one-seo-pack' ),
4775
 
4776
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:155
4777
+ __( 'See our full documentation', 'all-in-one-seo-pack' ),
4778
 
4779
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:161
4780
+ __( 'Basic Guide to Google Analytics', 'all-in-one-seo-pack' ),
4781
 
4782
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:165
4783
+ __( 'Basic Guide to Google Search Console', 'all-in-one-seo-pack' ),
4784
 
4785
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:169
4786
+ __( 'Best Practices for Domains and URLs', 'all-in-one-seo-pack' ),
 
4787
 
4788
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:173
4789
+ __( 'How to Control Search Results', 'all-in-one-seo-pack' ),
4790
 
4791
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:178
4792
+ /* Translators: 1 - The plugin short name ("AIOSEO Pro"), 2 - "Pro" string. */
4793
+ __( 'Installing %1$s %2$s', 'all-in-one-seo-pack' ),
4794
 
4795
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:182
4796
+ __( 'Optimizing your Content Headings', 'all-in-one-seo-pack' ),
 
4797
 
4798
+ // Reference: src/vue/pages/about/views/Main.vue:23
4799
+ __( 'About', 'all-in-one-seo-pack' ),
4800
 
4801
+ // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:59
4802
+ __( 'Upgrade to Pro and Unlock Custom Taxonomies', 'all-in-one-seo-pack' ),
 
4803
 
4804
+ // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:61
4805
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro". */
4806
+ __( '%1$s %2$s lets you set the SEO title and description for custom taxonomies. You can also control all of the robots meta and other options just like the default category and tags taxonomies.', 'all-in-one-seo-pack' ),
4807
 
4808
+ // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:63
4809
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
4810
+ __( 'Custom Taxonomy Support is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
4811
 
4812
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:112
4813
+ __( 'Title Attribute Format', 'all-in-one-seo-pack' ),
4814
 
4815
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:113
4816
+ __( 'Strip Punctuation for Title Attributes', 'all-in-one-seo-pack' ),
4817
 
4818
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:114
4819
+ __( 'Click on the tags below to insert variables into your title attribute.', 'all-in-one-seo-pack' ),
4820
 
4821
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:115
4822
+ __( 'Alt Tag Attribute Format', 'all-in-one-seo-pack' ),
4823
 
4824
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:116
4825
+ __( 'Click on the tags below to insert variables into your alt tag attribute.', 'all-in-one-seo-pack' ),
4826
 
4827
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:117
4828
+ __( 'Strip Punctuation for Alt Attributes', 'all-in-one-seo-pack' ),
4829
 
4830
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:118
4831
+ __( 'This feature requires one of the following plans:', 'all-in-one-seo-pack' ),
4832
 
4833
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:120
4834
+ __( 'Upgrade to Pro and Unlock Image SEO', 'all-in-one-seo-pack' ),
4835
 
4836
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:122
4837
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
4838
+ __( 'Image SEO is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
4839
 
4840
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:107
4841
+ __( 'Robots Meta Settings', 'all-in-one-seo-pack' ),
 
4842
 
4843
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:108
4844
+ __( 'Bulk Editing', 'all-in-one-seo-pack' ),
4845
 
4846
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:109
4847
+ __( 'Read Only', 'all-in-one-seo-pack' ),
 
4848
 
4849
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:110
4850
+ __( 'Other Options', 'all-in-one-seo-pack' ),
4851
 
4852
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:111
4853
+ __( 'Show Date in Google Preview', 'all-in-one-seo-pack' ),
 
4854
 
4855
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:129
4856
+ /* Translators: 1 - The type of page (Post, Page, Category, Tag, etc.). */
4857
+ __( 'Show %1$s Thumbnail in Google Custom Search', 'all-in-one-seo-pack' ),
4858
 
4859
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:133
4860
+ /* Translators: 1 - The plugin name ("All in One SEO") */
4861
+ __( 'Show %1$s Meta Box', 'all-in-one-seo-pack' ),
4862
 
4863
+ // Reference: src/vue/pages/search-appearance/views/Media.vue:106
4864
+ __( 'Redirect Attachment URLs', 'all-in-one-seo-pack' ),
4865
 
4866
+ // Reference: src/vue/pages/search-appearance/views/Media.vue:107
4867
+ __( 'Attachment', 'all-in-one-seo-pack' ),
4868
 
4869
+ // Reference: src/vue/pages/search-appearance/views/Media.vue:108
4870
+ __( 'Attachment Parent', 'all-in-one-seo-pack' ),
 
4871
 
4872
+ // Reference: src/vue/pages/search-appearance/views/Media.vue:109
4873
+ __( 'We recommended redirecting attachment URL\'s back to the attachment since the default WordPress attachment pages have little SEO value.', 'all-in-one-seo-pack' ),
 
4874
 
4875
+ // Reference: src/vue/pages/search-appearance/views/Archives.vue:59
4876
+ __( 'Title & Description', 'all-in-one-seo-pack' ),
 
4877
 
4878
+ // Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:64
4879
+ __( 'Schema Markup', 'all-in-one-seo-pack' ),
4880
 
4881
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:412
4882
+ __( 'Title Separator', 'all-in-one-seo-pack' ),
4883
 
4884
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:413
4885
+ __( 'Separator Character', 'all-in-one-seo-pack' ),
4886
 
4887
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:415
4888
+ /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
4889
+ __( 'The home page settings below have been disabled because you are using a static home page. You can %1$sedit your home page settings%2$s directly to change the title and description.', 'all-in-one-seo-pack' ),
4890
 
4891
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:417
4892
+ __( 'Site Title', 'all-in-one-seo-pack' ),
4893
 
4894
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:253
4895
+ __( 'Click on the tags below to insert variables into your site title.', 'all-in-one-seo-pack' ),
4896
 
4897
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:421
4898
+ __( 'Knowledge Graph', 'all-in-one-seo-pack' ),
 
4899
 
4900
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:422
4901
+ __( 'Google, Bing and other search engines use specific data from your schema markup to output data in their Knowledge Panels. This data is known as the Knowledge Graph. Use these settings to change how that data looks.', 'all-in-one-seo-pack' ),
4902
 
4903
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:316
4904
+ __( 'Person or Organization', 'all-in-one-seo-pack' ),
 
4905
 
4906
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:318
4907
+ __( 'Person', 'all-in-one-seo-pack' ),
 
4908
 
4909
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:319
4910
+ __( 'Organization', 'all-in-one-seo-pack' ),
4911
 
4912
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:320
4913
+ __( 'Choose whether the site represents a person or an organization.', 'all-in-one-seo-pack' ),
4914
 
4915
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:317
4916
+ __( 'Choose a Person', 'all-in-one-seo-pack' ),
4917
 
4918
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:324
4919
+ __( 'Choose a Contact Type', 'all-in-one-seo-pack' ),
4920
 
4921
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:325
4922
+ __( 'Contact Type', 'all-in-one-seo-pack' ),
4923
 
4924
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:326
4925
+ __( 'Select which team or department the phone number belongs to.', 'all-in-one-seo-pack' ),
4926
 
4927
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:327
4928
+ __( 'Logo', 'all-in-one-seo-pack' ),
 
4929
 
4930
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:439
4931
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag., 3 - "Pro", 4 - "Pro". */
4932
+ __( 'Go to %1$sLocal SEO Settings%2$s and set up your local business info like location address, opening hours (%3$s), and Google Maps settings (%4$s).', 'all-in-one-seo-pack' ),
4933
 
4934
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:440
4935
+ __( 'Go to Local SEO Settings', 'all-in-one-seo-pack' ),
 
4936
 
4937
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:441
4938
+ __( 'Enable Schema Markup', 'all-in-one-seo-pack' ),
4939
 
4940
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:342
4941
+ __( 'Manually Enter Person', 'all-in-one-seo-pack' ),
4942
 
4943
+ // Reference: src/vue/pages/redirects/router/paths.js:28
4944
+ __( 'Full Site Redirect', 'all-in-one-seo-pack' ),
4945
 
4946
+ // Reference: src/vue/pages/redirects/router/paths.js:55
4947
+ __( 'Import / Export', 'all-in-one-seo-pack' ),
4948
 
4949
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:19
4950
+ __( 'Welcome', 'all-in-one-seo-pack' ),
4951
 
4952
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:315
4953
+ __( 'Additional Site Information', 'all-in-one-seo-pack' ),
4954
 
4955
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:55
4956
+ __( 'Choose Features', 'all-in-one-seo-pack' ),
4957
 
4958
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:73
4959
+ __( 'Smart Recommendations', 'all-in-one-seo-pack' ),
4960
 
4961
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:91
4962
+ __( 'Success', 'all-in-one-seo-pack' ),
4963
 
4964
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:415
4965
+ __( 'General Sitemap', 'all-in-one-seo-pack' ),
4966
 
4967
+ // Reference: src/vue/pages/sitemaps/router/paths.js:48
4968
+ __( 'HTML Sitemap', 'all-in-one-seo-pack' ),
4969
 
4970
+ // Reference: src/vue/pages/sitemaps/router/paths.js:57
4971
+ __( 'RSS Sitemap', 'all-in-one-seo-pack' ),
 
4972
 
4973
+ // Reference: src/vue/pages/connect-pro/views/Main.vue:45
4974
+ // Reference: src/vue/pages/connect/views/Main.vue:30
4975
+ __( 'Connecting...', 'all-in-one-seo-pack' ),
4976
 
4977
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:134
4978
+ __( 'Which category best describes your website?', 'all-in-one-seo-pack' ),
4979
 
4980
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:135
4981
+ __( 'Select a category to help us narrow down the SEO options that work best for you and your site.', 'all-in-one-seo-pack' ),
 
4982
 
4983
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:136
4984
+ __( 'Enter your answer', 'all-in-one-seo-pack' ),
4985
 
4986
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:138
4987
+ __( 'Home Page Meta Description', 'all-in-one-seo-pack' ),
4988
 
4989
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:142
4990
+ __( 'News Channel', 'all-in-one-seo-pack' ),
4991
 
4992
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:143
4993
+ __( 'Online Store', 'all-in-one-seo-pack' ),
4994
 
4995
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:144
4996
+ __( 'Small Offline Business', 'all-in-one-seo-pack' ),
4997
 
4998
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:145
4999
+ __( 'Corporation', 'all-in-one-seo-pack' ),
5000
 
5001
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:146
5002
+ __( 'Portfolio', 'all-in-one-seo-pack' ),
5003
 
5004
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:148
5005
+ __( 'Other:', 'all-in-one-seo-pack' ),
5006
 
5007
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:322
5008
+ __( 'Organization Name', 'all-in-one-seo-pack' ),
5009
 
5010
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:332
5011
+ __( 'Default Social Share Image', 'all-in-one-seo-pack' ),
5012
 
5013
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:333
5014
+ __( 'Your Social Profiles', 'all-in-one-seo-pack' ),
5015
 
5016
+ // Reference: src/vue/pages/redirects/views/Redirects.vue:31
5017
+ __( 'Redirects Settings', 'all-in-one-seo-pack' ),
 
5018
 
5019
+ // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:77
5020
+ __( 'Site Aliases', 'all-in-one-seo-pack' ),
 
5021
 
5022
+ // Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:93
5023
+ __( 'Site aliases are disabled because you have relocated your site to another domain.', 'all-in-one-seo-pack' ),
5024
 
5025
+ // Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:94
5026
+ __( 'A site alias is another domain that you want to be redirected to this site. For example, an old domain, or a subdomain. This will redirect all URLs, including WordPress login and admin. You will need to configure your system (DNS and server) to pass requests for these domains to this WordPress install.', 'all-in-one-seo-pack' ),
 
5027
 
5028
+ // Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:95
5029
+ __( 'Aliased Domain', 'all-in-one-seo-pack' ),
 
5030
 
5031
+ // Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:96
5032
+ __( 'Alias', 'all-in-one-seo-pack' ),
 
5033
 
5034
+ // Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:99
5035
+ __( 'Add an alias redirect by clicking in \'Add New\'.', 'all-in-one-seo-pack' ),
 
5036
 
5037
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:417
5038
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
5039
+ __( 'An XML Sitemap is a list of all your content that search engines use when they crawl your site. This is an essential part of SEO because it contains some important pieces of information that search engines need when crawling your site. The XML Sitemap created by %1$s tells search engines where to find all of the content on your site.', 'all-in-one-seo-pack' ),
5040
 
5041
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:261
5042
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:418
5043
+ __( 'Enable Sitemap', 'all-in-one-seo-pack' ),
5044
 
5045
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:419
5046
+ __( 'Sitemap Settings', 'all-in-one-seo-pack' ),
 
5047
 
5048
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:420
5049
+ __( 'Enable Sitemap Indexes', 'all-in-one-seo-pack' ),
 
5050
 
5051
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:421
5052
+ __( 'Organize sitemap entries into distinct files in your sitemap. We recommend you enable this setting if your sitemap contains more than 1,000 URLs.', 'all-in-one-seo-pack' ),
 
5053
 
5054
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:422
5055
+ __( 'Links Per Sitemap', 'all-in-one-seo-pack' ),
 
5056
 
5057
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:423
5058
+ __( 'Noindexed content will not be displayed in your sitemap.', 'all-in-one-seo-pack' ),
 
5059
 
5060
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:424
5061
+ __( 'Do you get a blank sitemap or 404 error?', 'all-in-one-seo-pack' ),
 
5062
 
5063
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:425
5064
+ __( 'Open Sitemap', 'all-in-one-seo-pack' ),
5065
 
5066
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:426
5067
+ __( 'Allows you to specify the maximum number of posts in a sitemap (up to 50,000).', 'all-in-one-seo-pack' ),
5068
 
5069
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:427
5070
+ __( 'Automatically Ping Search Engines', 'all-in-one-seo-pack' ),
5071
 
5072
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:430
5073
+ __( 'Date Archive Sitemap', 'all-in-one-seo-pack' ),
5074
 
5075
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:431
5076
+ __( 'Include Date Archives in your sitemap.', 'all-in-one-seo-pack' ),
 
5077
 
5078
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:432
5079
+ __( 'Author Sitemap', 'all-in-one-seo-pack' ),
5080
 
5081
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:433
5082
+ __( 'Include Author Archives in your sitemap.', 'all-in-one-seo-pack' ),
5083
 
5084
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:435
5085
+ __( 'Select which Post Types appear in your sitemap.', 'all-in-one-seo-pack' ),
5086
 
5087
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:437
5088
+ __( 'Select which Taxonomies appear in your sitemap.', 'all-in-one-seo-pack' ),
5089
 
5090
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:438
5091
+ __( 'Additional Pages', 'all-in-one-seo-pack' ),
5092
 
5093
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:439
5094
+ __( 'You can use this section to add any URLs to your sitemap which aren’t a part of your WordPress installation. For example, if you have a contact form that you would like to be included on your sitemap you can enter the information manually.', 'all-in-one-seo-pack' ),
5095
 
5096
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:443
5097
+ __( 'Any posts that are assigned to these terms will also be excluded from your sitemap.', 'all-in-one-seo-pack' ),
5098
 
5099
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:445
5100
+ __( 'Grouped', 'all-in-one-seo-pack' ),
 
 
 
5101
 
5102
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:446
5103
+ __( 'Post Type Priority Score', 'all-in-one-seo-pack' ),
5104
 
5105
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:447
5106
+ __( 'Taxonomy Priority Score', 'all-in-one-seo-pack' ),
5107
 
5108
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:448
5109
+ __( 'Exclude Images', 'all-in-one-seo-pack' ),
5110
 
5111
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:449
5112
+ __( 'Exclude Images from your sitemap.', 'all-in-one-seo-pack' ),
5113
 
5114
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:450
5115
+ __( 'Dynamically Generate', 'all-in-one-seo-pack' ),
5116
 
5117
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:451
5118
+ __( 'Dynamically creates the XML Sitemap instead of using a static file.', 'all-in-one-seo-pack' ),
5119
 
5120
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:452
5121
+ __( 'We recommend setting the amount of URLs per sitemap index to 1,000 or less. The more links, the longer it will take for the sitemap to load.', 'all-in-one-seo-pack' ),
5122
 
5123
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:453
5124
+ __( 'Your static sitemap is currently being regenerated. This may take some time based on the size of your site. This may also cause the sitemap content to look outdated.', 'all-in-one-seo-pack' ),
5125
 
5126
+ // Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:68
5127
+ __( 'Relocate Site', 'all-in-one-seo-pack' ),
5128
 
5129
+ // Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:69
5130
+ __( 'Would you like to relocate your entire site to a new domain? Everything will be redirected except WordPress login and admin. Enabling this option will disable any site aliases or canonical settings.', 'all-in-one-seo-pack' ),
5131
 
5132
+ // Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:70
5133
+ __( 'By enabling this option you disabled any site aliases or canonical settings. Enter a domain to redirect everything, except WordPress login and admin.', 'all-in-one-seo-pack' ),
5134
 
5135
+ // Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:71
5136
+ __( 'Your old site address', 'all-in-one-seo-pack' ),
5137
 
5138
+ // Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:72
5139
+ __( 'Your new site address', 'all-in-one-seo-pack' ),
5140
 
5141
+ // Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:73
5142
+ __( 'Relocate to domain', 'all-in-one-seo-pack' ),
5143
 
5144
+ // Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:82
5145
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
5146
+ __( 'Import Redirects from %1$s File', 'all-in-one-seo-pack' ),
5147
 
5148
+ // Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:83
5149
+ __( 'Import from a JSON file...', 'all-in-one-seo-pack' ),
5150
 
5151
+ // Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:85
5152
+ __( 'Imported redirects will overwrite existing redirects and will not be merged.', 'all-in-one-seo-pack' ),
5153
 
5154
+ // Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:87
5155
+ __( 'A JSON file is required to import redirects.', 'all-in-one-seo-pack' ),
 
5156
 
5157
+ // Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:88
5158
+ __( 'Success! Your redirects have been imported.', 'all-in-one-seo-pack' ),
5159
 
5160
+ // Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:89
5161
+ __( 'There was an error importing your redirects. Please make sure you are uploading the correct file or it is in the proper format.', 'all-in-one-seo-pack' ),
5162
 
5163
+ // Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:75
5164
+ __( 'Import Redirects From Other Plugins', 'all-in-one-seo-pack' ),
5165
 
5166
+ // Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:77
5167
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
5168
+ __( 'Choose a plugin to import redirects directly into %1$s.', 'all-in-one-seo-pack' ),
5169
 
5170
+ // Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:80
5171
+ __( 'All Redirects', 'all-in-one-seo-pack' ),
5172
 
5173
+ // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:25
5174
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:267
5175
+ __( 'Hits', 'all-in-one-seo-pack' ),
5176
 
5177
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:277
5178
+ __( 'Group', 'all-in-one-seo-pack' ),
5179
 
5180
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:318
5181
+ __( 'Filter by Group', 'all-in-one-seo-pack' ),
5182
 
5183
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:320
5184
+ __( 'All Groups', 'all-in-one-seo-pack' ),
5185
 
5186
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:436
5187
+ __( 'Pass through', 'all-in-one-seo-pack' ),
5188
 
5189
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:214
5190
+ __( 'Add New Redirection', 'all-in-one-seo-pack' ),
 
5191
 
5192
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:215
5193
+ __( 'Search URLs', 'all-in-one-seo-pack' ),
5194
 
5195
+ // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:72
5196
+ __( 'Fast Server Redirects', 'all-in-one-seo-pack' ),
5197
 
5198
+ // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:73
5199
+ __( 'Automatic Redirects', 'all-in-one-seo-pack' ),
5200
 
5201
+ // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:74
5202
+ __( 'Redirect Monitoring', 'all-in-one-seo-pack' ),
 
5203
 
5204
+ // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:75
5205
+ __( '404 Monitoring', 'all-in-one-seo-pack' ),
5206
 
5207
+ // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:76
5208
+ __( 'Full Site Redirects', 'all-in-one-seo-pack' ),
5209
 
5210
+ // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:78
5211
+ __( 'Our Redirection Manager allows you to easily create and manage redirects for your broken links to avoid confusing search engines and users, as well as losing valuable backlinks. It even automatically sends users and search engines from your old URLs to your new ones.', 'all-in-one-seo-pack' ),
 
5212
 
5213
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:110
5214
+ __( 'Complete Data (JSON)', 'all-in-one-seo-pack' ),
5215
 
5216
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:111
5217
+ __( 'Apache Redirects (.htaccess)', 'all-in-one-seo-pack' ),
5218
 
5219
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:112
5220
+ __( 'Nginx Redirects (.nginx)', 'all-in-one-seo-pack' ),
 
5221
 
5222
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:115
5223
+ __( 'Export Redirects', 'all-in-one-seo-pack' ),
 
5224
 
5225
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:116
5226
+ __( 'Export to JSON, .htaccess or .nginx. The JSON format contains full information (and can be re-imported), while the other formats only contain partial information relavant to that format.', 'all-in-one-seo-pack' ),
5227
 
5228
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:117
5229
+ __( 'Export All Redirects', 'all-in-one-seo-pack' ),
 
5230
 
5231
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:119
5232
+ __( 'Export Redirect Logs', 'all-in-one-seo-pack' ),
 
5233
 
5234
+ // Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:120
5235
+ __( 'Export 404 Logs', 'all-in-one-seo-pack' ),
5236
 
5237
+ // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:77
5238
+ __( 'Canonical Settings', 'all-in-one-seo-pack' ),
 
5239
 
5240
+ // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:78
5241
+ __( 'Canonical Settings are disabled because you have relocated your site to another domain.', 'all-in-one-seo-pack' ),
 
5242
 
5243
+ // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:79
5244
+ __( 'Your current site address', 'all-in-one-seo-pack' ),
5245
 
5246
+ // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:81
5247
+ __( 'Redirect from HTTP to HTTPS', 'all-in-one-seo-pack' ),
 
5248
 
5249
+ // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:82
5250
+ __( 'Force a redirect from HTTP to HTTPS', 'all-in-one-seo-pack' ),
 
5251
 
5252
+ // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:83
5253
+ __( 'Preferred domain', 'all-in-one-seo-pack' ),
5254
 
5255
+ // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:85
5256
+ /* Translators: 1 - Opening link tag, 2 - Closing link tag. */
5257
+ __( 'You\'ll need to update your Site Address URL to match your new site address. %1$sUpdate Site Address URL%2$s.', 'all-in-one-seo-pack' ),
5258
 
5259
+ // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:87
5260
+ /* Translators: 1 - Opening strong tag, 2 - Closing strong tag., 3 - Doc link */
5261
+ __( '%1$sWarning:%2$s ensure your HTTPS is working before forcing a redirect. %3$s', 'all-in-one-seo-pack' ),
5262
 
5263
+ // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:91
5264
+ __( 'Leave domain as-is', 'all-in-one-seo-pack' ),
5265
 
5266
+ // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:95
5267
+ __( 'Add www to domain', 'all-in-one-seo-pack' ),
 
5268
 
5269
+ // Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:99
5270
+ __( 'Remove www from domain', 'all-in-one-seo-pack' ),
 
5271
 
5272
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:358
5273
+ __( 'Redirect Settings', 'all-in-one-seo-pack' ),
5274
 
5275
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:359
5276
+ __( 'Redirect Method', 'all-in-one-seo-pack' ),
5277
 
5278
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:361
5279
+ /* Translators: 1 - Learn more link. */
5280
+ __( 'We cannot detect your web server. Server redirects are disabled. %1$s', 'all-in-one-seo-pack' ),
5281
 
5282
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:362
5283
+ __( 'PHP', 'all-in-one-seo-pack' ),
 
5284
 
5285
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:363
5286
+ __( 'Web Server', 'all-in-one-seo-pack' ),
5287
 
5288
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:365
5289
+ __( 'IP Logging', 'all-in-one-seo-pack' ),
 
5290
 
5291
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:366
5292
+ __( 'HTTP Cache Header', 'all-in-one-seo-pack' ),
5293
 
5294
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:367
5295
+ __( 'Redirect Defaults', 'all-in-one-seo-pack' ),
 
5296
 
5297
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:370
5298
+ __( 'Log External Redirects', 'all-in-one-seo-pack' ),
5299
 
5300
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:371
5301
+ __( 'Log HTTP Header Information', 'all-in-one-seo-pack' ),
 
5302
 
5303
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:372
5304
+ __( 'Enable Redirect Cache', 'all-in-one-seo-pack' ),
5305
 
5306
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:375
5307
+ __( 'Cache Redirects', 'all-in-one-seo-pack' ),
 
5308
 
5309
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:376
5310
+ __( 'Object Cache', 'all-in-one-seo-pack' ),
5311
 
5312
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:378
5313
+ /* Translators: 1 - Opening link tag, 2 - Closing link tag. */
5314
+ __( '%1$sGDPR / Privacy information%2$s', 'all-in-one-seo-pack' ),
5315
 
5316
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:379
5317
+ __( 'Log IP Addresses', 'all-in-one-seo-pack' ),
5318
 
5319
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:380
5320
+ __( 'Redirect Type', 'all-in-one-seo-pack' ),
 
5321
 
5322
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:381
5323
+ __( 'Query Parameters', 'all-in-one-seo-pack' ),
5324
 
5325
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:383
5326
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
5327
+ __( 'Log redirects that happen on your site even if the redirect happened outside of %1$s', 'all-in-one-seo-pack' ),
5328
 
5329
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:384
5330
+ __( 'Capture HTTP header information with the logs (except for cookies).', 'all-in-one-seo-pack' ),
5331
 
5332
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:386
5333
+ /* Translators: 1 - "NGINX". */
5334
+ __( 'Export %1$s config file', 'all-in-one-seo-pack' ),
5335
 
5336
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:388
5337
+ /* Translators: 1 - ".htaccess". */
5338
+ __( 'Export %1$s file', 'all-in-one-seo-pack' ),
5339
 
5340
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:390
5341
+ /* Translators: 1 - ".htaccess". */
5342
+ __( 'Auto-write to %1$s', 'all-in-one-seo-pack' ),
5343
 
5344
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:393
5345
+ __( 'Monitor Trash', 'all-in-one-seo-pack' ),
5346
 
5347
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:394
5348
+ __( 'This allows you to monitor changes to post types and automatically add redirects based on URL changes. These will show up with a group called "Modified Posts".', 'all-in-one-seo-pack' ),
 
5349
 
5350
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:397
5351
+ __( '1 hour', 'all-in-one-seo-pack' ),
5352
 
5353
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:398
5354
+ __( '1 day', 'all-in-one-seo-pack' ),
5355
 
5356
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:399
5357
+ __( '1 week', 'all-in-one-seo-pack' ),
5358
 
5359
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:400
5360
+ __( 'Forever', 'all-in-one-seo-pack' ),
5361
 
5362
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:403
5363
+ __( 'Full Logging', 'all-in-one-seo-pack' ),
5364
 
5365
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:404
5366
+ __( 'Anonymize IP', 'all-in-one-seo-pack' ),
5367
 
5368
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:411
5369
+ __( '%1$s Server has been detected.', 'all-in-one-seo-pack' ),
5370
 
5371
+ // Reference: src/vue/pages/redirects/views/pro/Settings.vue:427
5372
+ /* Translators: 1 - A code snippet. */
5373
+ __( 'Make sure you include the following in your server configuration file: %1$s', 'all-in-one-seo-pack' ),
5374
 
5375
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:143
5376
+ __( 'HTTP Headers', 'all-in-one-seo-pack' ),
5377
 
5378
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:144
5379
+ __( 'Site headers are added across your site, including redirects. Redirect headers are only added to redirects.', 'all-in-one-seo-pack' ),
5380
 
5381
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:145
5382
+ __( 'Location', 'all-in-one-seo-pack' ),
 
5383
 
5384
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:146
5385
+ __( 'Header', 'all-in-one-seo-pack' ),
5386
 
5387
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:149
5388
+ __( 'Add Header', 'all-in-one-seo-pack' ),
5389
 
5390
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:150
5391
+ __( 'Add Security Presets', 'all-in-one-seo-pack' ),
5392
 
5393
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:151
5394
+ __( 'Add CORS Presets', 'all-in-one-seo-pack' ),
5395
 
5396
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:152
5397
+ __( 'Add headers by clicking in the options below.', 'all-in-one-seo-pack' ),
5398
 
5399
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:153
5400
+ __( 'Select a header', 'all-in-one-seo-pack' ),
5401
 
5402
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:165
5403
+ __( 'Site', 'all-in-one-seo-pack' ),
5404
 
5405
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:166
5406
+ __( 'site', 'all-in-one-seo-pack' ),
5407
 
5408
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:169
5409
+ __( 'Redirect', 'all-in-one-seo-pack' ),
5410
 
5411
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:170
5412
+ __( 'redirect', 'all-in-one-seo-pack' ),
5413
 
5414
+ // Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:181
5415
+ __( 'Custom', 'all-in-one-seo-pack' ),
 
 
 
5416
 
5417
+ // Reference: src/vue/pages/redirects/views/pro/Logs404.vue:199
5418
+ __( 'Add New Redirections', 'all-in-one-seo-pack' ),
 
5419
 
5420
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:217
5421
+ __( 'Check Redirect', 'all-in-one-seo-pack' ),
 
5422
 
5423
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:219
5424
+ __( 'Are you sure you want to delete this redirect?', 'all-in-one-seo-pack' ),
 
 
5425
 
5426
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:220
5427
+ __( 'Are you sure you want to delete these redirects?', 'all-in-one-seo-pack' ),
 
 
5428
 
5429
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:222
5430
+ __( 'Yes, I want to delete this redirect', 'all-in-one-seo-pack' ),
5431
 
5432
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:223
5433
+ __( 'Yes, I want to delete these redirects', 'all-in-one-seo-pack' ),
 
 
 
5434
 
5435
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:225
5436
+ __( 'Rules', 'all-in-one-seo-pack' ),
5437
 
5438
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:230
5439
+ __( 'Enable', 'all-in-one-seo-pack' ),
5440
 
5441
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:231
5442
+ __( 'Disable', 'all-in-one-seo-pack' ),
 
5443
 
5444
+ // Reference: src/vue/pages/redirects/views/pro/Redirects.vue:232
5445
+ __( 'Reset Hits', 'all-in-one-seo-pack' ),
5446
 
5447
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:409
5448
+ __( 'Select which Taxonomies appear in your sitemap. Categories and Tags are excluded by default since these do not support video embedding.', 'all-in-one-seo-pack' ),
5449
 
5450
+ // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:70
5451
+ __( 'Upgrade to Pro and Unlock Redirects', 'all-in-one-seo-pack' ),
5452
 
5453
+ // Reference: src/vue/pages/redirects/views/lite/Redirects.vue:71
5454
+ __( 'Redirects are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
 
 
5455
 
5456
+ // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:15
5457
+ __( 'Last IP', 'all-in-one-seo-pack' ),
 
5458
 
5459
+ // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:16
5460
+ __( 'Headers', 'all-in-one-seo-pack' ),
 
 
5461
 
5462
+ // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:17
5463
+ __( 'at', 'all-in-one-seo-pack' ),
 
 
5464
 
5465
+ // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:18
5466
+ __( 'Additional Info', 'all-in-one-seo-pack' ),
 
5467
 
5468
+ // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:20
5469
+ __( 'Are you sure you want to delete this record?', 'all-in-one-seo-pack' ),
5470
 
5471
+ // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:22
5472
+ __( 'Yes, I want to delete this record', 'all-in-one-seo-pack' ),
 
 
 
5473
 
5474
+ // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:24
5475
+ __( 'URL', 'all-in-one-seo-pack' ),
 
 
 
5476
 
5477
+ // Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:26
5478
+ __( 'Last Accessed', 'all-in-one-seo-pack' ),
 
 
 
5479
 
5480
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:125
5481
+ __( 'This option will generate a separate RSS Sitemap which can be submitted to Google, Bing and any other search engines that support this type of sitemap. The RSS Sitemap contains an RSS feed of the latest updates to your site content. It is not a full sitemap of all your content.', 'all-in-one-seo-pack' ),
 
 
 
5482
 
5483
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:130
5484
+ __( 'Number of Posts', 'all-in-one-seo-pack' ),
5485
 
5486
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:133
5487
+ __( 'Open RSS Sitemap', 'all-in-one-seo-pack' ),
 
 
5488
 
5489
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:134
5490
+ __( 'Allows you to specify the maximum number of posts for the RSS Sitemap. We recommend an amount of 50 posts.', 'all-in-one-seo-pack' ),
 
5491
 
5492
+ // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:42
5493
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
5494
+ __( 'Welcome to the %1$s Setup Wizard!', 'all-in-one-seo-pack' ),
5495
 
5496
+ // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:44
5497
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
5498
+ __( '%1$s makes it easy to configure your site\'s SEO settings without the need to hire an expert. And it takes less than 10 minutes too!', 'all-in-one-seo-pack' ),
 
5499
 
5500
+ // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:45
5501
+ __( 'Let\'s Get Started', 'all-in-one-seo-pack' ),
 
5502
 
5503
+ // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:46
5504
+ __( 'Go back to the Dashboard', 'all-in-one-seo-pack' ),
 
5505
 
5506
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:134
5507
+ __( 'Congratulations, your site is now SEO ready!', 'all-in-one-seo-pack' ),
5508
 
5509
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:135
5510
+ __( 'Finish Setup and Go to the Dashboard', 'all-in-one-seo-pack' ),
 
5511
 
5512
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:136
5513
+ __( 'Here\'s what to do next:', 'all-in-one-seo-pack' ),
 
5514
 
5515
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:137
5516
+ __( 'Join our Community', 'all-in-one-seo-pack' ),
5517
 
5518
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:138
5519
+ __( 'Join on Facebook', 'all-in-one-seo-pack' ),
 
5520
 
5521
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:139
5522
+ __( 'Follow on Twitter', 'all-in-one-seo-pack' ),
 
5523
 
5524
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:140
5525
+ __( 'Read our Step By Step Guide to Improve your SEO Rankings', 'all-in-one-seo-pack' ),
 
5526
 
5527
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:142
5528
+ /* Translators: 1 - Plugin short name ("AIOSEO"). */
5529
+ __( 'Watch our Guided Tour of %1$s', 'all-in-one-seo-pack' ),
5530
 
5531
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:143
5532
+ __( 'See Advanced Settings', 'all-in-one-seo-pack' ),
5533
 
5534
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:144
5535
+ __( 'Setup Webmaster Tools', 'all-in-one-seo-pack' ),
5536
 
5537
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:179
5538
+ /* Translators: 1 - Opening bold tag, 2 - Closing bold tag, 3 - Opening bold tag, 4 - Percent between 1-100, 5 - Closing bold tag. */
5539
+ __( '%1$sBonus:%2$s You can upgrade your plan today and %3$ssave %4$s off%5$s (discount auto-applied).', 'all-in-one-seo-pack' ),
5540
 
5541
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:165
5542
+ __( 'Setup Site Analyzer + Smart Recommendations', 'all-in-one-seo-pack' ),
5543
 
5544
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:167
5545
+ /* Translators: 1 - Plugin short name ("AIOSEO"). */
5546
+ __( 'Get helpful suggestions from %1$s on how to optimize your website content, so you can rank higher in search results.', 'all-in-one-seo-pack' ),
5547
 
5548
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:168
5549
+ __( 'Your Email Address', 'all-in-one-seo-pack' ),
5550
 
5551
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:169
5552
+ __( 'Your email is needed so you can receive SEO recommendations. This email will also be used to connect your site with our SEO API.', 'all-in-one-seo-pack' ),
5553
 
5554
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:171
5555
+ /* Translators: 1 - Plugin short name ("AIOSEO"). */
5556
+ __( 'Help make %1$s better for everyone', 'all-in-one-seo-pack' ),
5557
 
5558
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:172
5559
+ __( 'Yes, count me in', 'all-in-one-seo-pack' ),
5560
 
5561
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:173
5562
+ __( 'Would you like to purchase and install the following features now?', 'all-in-one-seo-pack' ),
5563
 
5564
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:174
5565
+ __( 'An upgrade is required to unlock the following features.', 'all-in-one-seo-pack' ),
5566
 
5567
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:175
5568
+ __( 'You won\'t have access to this functionality until the extensions have been purchased and installed.', 'all-in-one-seo-pack' ),
5569
 
5570
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:176
5571
+ __( 'I\'ll do it later', 'all-in-one-seo-pack' ),
5572
 
5573
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:177
5574
+ __( 'Purchase and Install Now', 'all-in-one-seo-pack' ),
5575
 
5576
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:250
5577
+ __( 'The way your site is displayed in search results is very important. Take some time to look over these settings and tweak as needed.', 'all-in-one-seo-pack' ),
5578
 
5579
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:251
5580
+ __( 'Google Snippet Preview', 'all-in-one-seo-pack' ),
5581
 
5582
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:252
5583
+ __( 'Edit Title and Description', 'all-in-one-seo-pack' ),
5584
 
5585
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:257
5586
+ __( 'Is the site under construction or live (ready to be indexed)?', 'all-in-one-seo-pack' ),
5587
 
5588
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:258
5589
+ __( 'Under Construction', 'all-in-one-seo-pack' ),
5590
 
5591
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:259
5592
+ __( 'Live Site', 'all-in-one-seo-pack' ),
5593
 
5594
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:262
5595
+ __( 'Do you have multiple authors?', 'all-in-one-seo-pack' ),
5596
 
5597
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:263
5598
+ __( 'Redirect attachment pages?', 'all-in-one-seo-pack' ),
 
5599
 
5600
+ // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:223
5601
+ __( 'Last Updated Date', 'all-in-one-seo-pack' ),
5602
+
5603
+ // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:233
5604
+ __( 'Display the sitemap on a dedicated page:', 'all-in-one-seo-pack' ),
5605
+
5606
+ // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:239
5607
  /* Translators: 1 - Learn more link. */
5608
+ __( 'Use the following shortcode to display the HTML Sitemap. %1$s', 'all-in-one-seo-pack' ),
5609
 
5610
+ // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:247
5611
+ /* Translators: 1 - Opening HTML strong tag, 2 - The plugin short name ("AIOSEO"), 3 - Closing HTML strong tag. */
5612
+ __( 'To add this block, edit a page or post and search for the %1$s"%2$s - HTML Sitemap"%3$s block.', 'all-in-one-seo-pack' ),
5613
 
5614
+ // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:257
5615
+ /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - Opening HTML strong tag, 4 - The plugin short name ("AIOSEO"), 5 - Closing HTML strong tag, 6 - "Learn More" link. */
5616
+ __( 'To add this widget, visit the %1$swidgets page%2$s and look for the %3$s"%4$s - HTML Sitemap"%5$s widget.', 'all-in-one-seo-pack' ),
5617
+
5618
+ // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:268
5619
  /* Translators: 1 - Learn more link. */
5620
+ __( 'Use the following PHP code anywhere in your theme to display the sitemap. %1$s', 'all-in-one-seo-pack' ),
5621
 
5622
+ // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:276
5623
+ __( 'HTML Sitemap Settings', 'all-in-one-seo-pack' ),
5624
 
5625
+ // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:277
5626
+ __( 'Using the custom-built tools below, you can add an HTML sitemap to your website and help visitors discover all your content. Adding an HTML sitemap to your website may also help search engines find your content more easily.', 'all-in-one-seo-pack' ),
5627
+
5628
+ // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:287
5629
+ __( 'Publication Date', 'all-in-one-seo-pack' ),
5630
+
5631
+ // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:288
5632
+ __( 'This setting only applies to posts and pages.', 'all-in-one-seo-pack' ),
5633
+
5634
+ // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:292
5635
+ /* Translators: 1 - "Learn More" link. */
5636
+ __( 'This setting allows you to toggle between the regular sitemap or the compact date archive sitemap. %1$s', 'all-in-one-seo-pack' ),
5637
+
5638
+ // Reference: src/vue/pages/setup-wizard/views/Import.vue:80
5639
+ __( 'Import data from your current plugins', 'all-in-one-seo-pack' ),
5640
+
5641
+ // Reference: src/vue/pages/setup-wizard/views/Import.vue:82
5642
+ /* Translators: 1 - Plugin short name ("AIOSEO"). */
5643
+ __( 'We have detected other SEO plugins installed on your website. Select which plugins you would like to import data to %1$s.', 'all-in-one-seo-pack' ),
5644
+
5645
+ // Reference: src/vue/pages/setup-wizard/views/Import.vue:83
5646
+ __( 'Import Data and Continue', 'all-in-one-seo-pack' ),
5647
+
5648
+ // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:10
5649
+ __( 'Open News Sitemap', 'all-in-one-seo-pack' ),
5650
+
5651
+ // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:13
5652
+ __( 'Upgrade to Pro and Unlock News Sitemaps', 'all-in-one-seo-pack' ),
5653
+
5654
+ // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:15
5655
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
5656
+ __( 'News Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
5657
+
5658
+ // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:6
5659
+ __( 'Set Publication Name', 'all-in-one-seo-pack' ),
5660
+
5661
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:6
5662
+ __( 'Exclude Pages/Posts', 'all-in-one-seo-pack' ),
5663
+
5664
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:10
5665
+ __( 'Open Video Sitemap', 'all-in-one-seo-pack' ),
5666
+
5667
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:13
5668
+ __( 'Upgrade to Pro and Unlock Video Sitemaps', 'all-in-one-seo-pack' ),
5669
+
5670
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:15
5671
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
5672
+ __( 'Video Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
5673
+
5674
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:5
5675
+ __( 'Custom Field Support', 'all-in-one-seo-pack' ),
5676
+
5677
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:102
5678
+ /* Translators: 1 - "Pro". */
5679
+ __( 'upgrade to %1$s', 'all-in-one-seo-pack' ),
5680
+
5681
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:128
5682
+ __( 'To unlock the selected features, please enter your license key below.', 'all-in-one-seo-pack' ),
5683
+
5684
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:130
5685
+ /* Translators: 1 - "upgrading to Pro". */
5686
+ __( 'To unlock the selected features, please %1$s and enter your license key below.', 'all-in-one-seo-pack' ),
5687
+
5688
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:98
5689
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
5690
+ __( 'Enter your %1$s License Key', 'all-in-one-seo-pack' ),
5691
+
5692
+ // Reference: src/vue/pages/setup-wizard/views/Features.vue:130
5693
+ /* Translators: 1 - A list of plugin names. */
5694
+ __( 'The following plugins will be installed: %1$s', 'all-in-one-seo-pack' ),
5695
+
5696
+ // Reference: src/vue/pages/setup-wizard/views/Features.vue:135
5697
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - A list of plugin names. */
5698
+ __( 'The following %1$s addons will be installed: %2$s', 'all-in-one-seo-pack' ),
5699
+
5700
+ // Reference: src/vue/pages/setup-wizard/views/Features.vue:140
5701
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - A list of plugin names. */
5702
+ __( 'The following plugins and %1$s addons will be installed: %2$s', 'all-in-one-seo-pack' ),
5703
+
5704
+ // Reference: src/vue/pages/setup-wizard/views/Features.vue:82
5705
+ __( 'Which SEO features do you want to enable?', 'all-in-one-seo-pack' ),
5706
+
5707
+ // Reference: src/vue/pages/setup-wizard/views/Features.vue:86
5708
+ __( 'We have already selected our recommended features based on your site category, but you can use the following features to fine-tune your site.', 'all-in-one-seo-pack' )
5709
  );
5710
  /* THIS IS THE END OF THE GENERATED FILE */
languages/aioseo-lite.pot CHANGED
@@ -7,172 +7,59 @@ msgstr ""
7
  msgid "404"
8
  msgstr ""
9
 
10
- # Translators: This refers to social media profiles.
11
- #: src/vue/pages/social-networks/views/SocialProfiles.vue:25
 
 
 
12
  msgid "Social Profiles"
13
  msgstr ""
14
 
15
- #: src/vue/pages/post-settings/views/Social.vue:65
16
  msgid "Facebook"
17
  msgstr ""
18
 
19
- #: src/vue/pages/post-settings/views/Social.vue:69
20
  msgid "Twitter"
21
  msgstr ""
22
 
23
- #: src/vue/pages/social-networks/views/Pinterest.vue:45
24
  msgid "Pinterest"
25
  msgstr ""
26
 
27
  #: src/vue/pages/dashboard/router/paths.js:19
 
28
  msgid "Dashboard"
29
  msgstr ""
30
 
31
- #: src/vue/pages/setup-wizard/router/paths.js:19
32
- msgid "Welcome"
33
- msgstr ""
34
-
35
- #: src/vue/pages/tools/views/partials/ImportAioseo.vue:86
36
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:126
37
- msgid "Import"
38
- msgstr ""
39
-
40
- #: src/vue/pages/settings/views/Breadcrumbs.vue:298
41
- msgid "Category"
42
- msgstr ""
43
-
44
- #: src/vue/pages/setup-wizard/router/paths.js:46
45
- msgid "Additional Site Information"
46
- msgstr ""
47
-
48
- #: src/vue/pages/setup-wizard/router/paths.js:55
49
- msgid "Choose Features"
50
- msgstr ""
51
-
52
- #: src/vue/pages/search-appearance/views/Main.vue:30
53
- msgid "Search Appearance"
54
- msgstr ""
55
-
56
- #: src/vue/pages/setup-wizard/router/paths.js:73
57
- msgid "Smart Recommendations"
58
- msgstr ""
59
-
60
- #: src/vue/components/lite/settings/LicenseKey.vue:58
61
- #: src/vue/pages/setup-wizard/router/paths.js:82
62
- msgid "License Key"
63
- msgstr ""
64
-
65
- #: src/vue/pages/setup-wizard/router/paths.js:91
66
- msgid "Success"
67
- msgstr ""
68
-
69
- # Translators: 1 - The plugin short name ("AIOSEO").
70
- #: src/vue/pages/connect/router/paths.js:20
71
- msgid "Connect with %1$s"
72
  msgstr ""
73
 
74
  #: src/vue/pages/settings/views/Main.vue:29
75
  msgid "General Settings"
76
  msgstr ""
77
 
78
- #: src/vue/pages/settings/router/paths.js:28
79
  msgid "Webmaster Tools"
80
  msgstr ""
81
 
82
- #: src/vue/pages/settings/router/paths.js:37
83
  msgid "Breadcrumbs"
84
  msgstr ""
85
 
86
- #: src/vue/pages/settings/router/paths.js:46
87
  msgid "RSS Content"
88
  msgstr ""
89
 
90
- #: src/vue/pages/settings/router/paths.js:56
91
  msgid "Access Control"
92
  msgstr ""
93
 
94
- #: src/vue/pages/search-appearance/views/Archives.vue:65
95
- #: src/vue/pages/search-appearance/views/ContentTypes.vue:76
96
- #: src/vue/pages/search-appearance/views/Media.vue:127
97
- #: src/vue/pages/settings/views/lite/Breadcrumbs.vue:98
98
- #: src/vue/pages/settings/views/pro/Breadcrumbs.vue:74
99
  msgid "Advanced"
100
  msgstr ""
101
 
102
- #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:415
103
- msgid "General Sitemap"
104
- msgstr ""
105
-
106
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:7
107
- msgid "Video Sitemap"
108
- msgstr ""
109
-
110
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:5
111
- #: src/vue/plugins/constants.js:1125
112
- msgid "News Sitemap"
113
- msgstr ""
114
-
115
- #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:274
116
- msgid "HTML Sitemap"
117
- msgstr ""
118
-
119
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:124
120
- msgid "RSS Sitemap"
121
- msgstr ""
122
-
123
- #: src/vue/pages/search-appearance/router/paths.js:19
124
- msgid "Global Settings"
125
- msgstr ""
126
-
127
- #: src/vue/pages/settings/views/lite/Breadcrumbs.vue:80
128
- #: src/vue/pages/settings/views/pro/Breadcrumbs.vue:56
129
- msgid "Content Types"
130
- msgstr ""
131
-
132
- #: src/vue/pages/settings/views/lite/Breadcrumbs.vue:86
133
- #: src/vue/pages/settings/views/pro/Breadcrumbs.vue:62
134
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:405
135
- #: src/vue/standalone/HtmlSitemapSidebar.vue:116
136
- msgid "Taxonomies"
137
- msgstr ""
138
-
139
- #: src/vue/pages/search-appearance/views/Media.vue:110
140
- msgid "Image SEO"
141
- msgstr ""
142
-
143
- #: src/vue/pages/settings/views/lite/Breadcrumbs.vue:92
144
- #: src/vue/pages/settings/views/pro/Breadcrumbs.vue:68
145
- msgid "Archives"
146
- msgstr ""
147
-
148
- #: src/vue/router/index.js:71
149
- msgid "Are you sure you want to leave? you have unsaved changes!"
150
- msgstr ""
151
-
152
- #: src/vue/mixins/ToolsSettings.js:90
153
- msgid "Redirects"
154
- msgstr ""
155
-
156
- #: src/vue/pages/redirects/router/paths.js:28
157
- msgid "Full Site Redirect"
158
- msgstr ""
159
-
160
- #: src/vue/pages/tools/views/DatabaseTools.vue:265
161
- msgid "Logs"
162
- msgstr ""
163
-
164
- #: src/vue/pages/tools/views/DatabaseTools.vue:269
165
- msgid "404 Logs"
166
- msgstr ""
167
-
168
- #: src/vue/pages/redirects/router/paths.js:55
169
- msgid "Import / Export"
170
- msgstr ""
171
-
172
- #: src/vue/pages/local-business-seo/views/OpeningHours.vue:179
173
- msgid "Settings"
174
- msgstr ""
175
-
176
  # Translators: 1 - AIOSEO.
177
  #: src/vue/pages/local-business-seo/blocks/LocationCategories.js:30
178
  msgid "%1$s Local - Location Categories"
@@ -190,7 +77,7 @@ msgstr ""
190
  msgid "No %s found"
191
  msgstr ""
192
 
193
- #: src/vue/plugins/html-sitemap/index.js:146
194
  msgid "Display Settings"
195
  msgstr ""
196
 
@@ -203,9 +90,13 @@ msgstr ""
203
  msgid "%1$s Local - Business Info"
204
  msgstr ""
205
 
206
- #: src/vue/pages/monsterinsights/views/Main.vue:20
207
- #: src/vue/plugins/constants.js:1085
208
- msgid "Analytics"
 
 
 
 
209
  msgstr ""
210
 
211
  #: src/vue/pages/local-business-seo/blocks/LocationMap.js:227
@@ -217,3495 +108,3565 @@ msgstr ""
217
  msgid "%1$s Local - Map"
218
  msgstr ""
219
 
220
- #: src/vue/standalone/notifications/App.vue:17
221
- msgid "You have new notifications!"
222
- msgstr ""
223
-
224
- # Translators: 1 - AIOSEO.
225
- #: src/vue/pages/local-business-seo/blocks/Locations.js:46
226
- msgid "%1$s Local - Locations"
227
- msgstr ""
228
-
229
  # Translators: 1 - AIOSEO.
230
  #: src/vue/pages/local-business-seo/blocks/OpeningHours.js:46
231
  msgid "%1$s Local - Opening Hours"
232
  msgstr ""
233
 
234
- #: src/vue/pages/about/router/paths.js:19
235
- msgid "About Us"
236
  msgstr ""
237
 
238
- #: src/vue/pages/about/router/paths.js:28
239
- msgid "Getting Started"
240
  msgstr ""
241
 
242
- #: src/vue/pages/about/router/paths.js:37
243
- msgid "Lite vs. Pro"
244
  msgstr ""
245
 
246
- #: src/vue/standalone/publish-panel/PrePublish.vue:153
247
- msgid "N/A"
248
  msgstr ""
249
 
250
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:423
251
- msgid "Person or Organization"
252
  msgstr ""
253
 
254
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:427
255
- msgid "Choose a Person"
256
  msgstr ""
257
 
258
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:424
259
- msgid "Person"
260
  msgstr ""
261
 
262
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:425
263
- msgid "Organization"
264
  msgstr ""
265
 
266
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:426
267
- msgid "Choose whether the site represents a person or an organization."
268
  msgstr ""
269
 
270
- #: src/vue/pages/local-seo/views/lite/Locations.vue:106
271
- #: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:130
272
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:428
273
- msgid "Name"
274
  msgstr ""
275
 
276
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:322
277
- msgid "Organization Name"
278
  msgstr ""
279
 
280
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:429
281
- msgid "Phone Number"
282
  msgstr ""
283
 
284
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:430
285
- msgid "Choose a Contact Type"
286
  msgstr ""
287
 
288
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:431
289
- msgid "Contact Type"
 
 
 
 
 
 
 
290
  msgstr ""
291
 
292
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:432
293
- msgid "Select which team or department the phone number belongs to."
294
  msgstr ""
295
 
296
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:433
297
- msgid "Logo"
298
  msgstr ""
299
 
300
- #: src/vue/pages/local-seo/views/lite/Locations.vue:111
301
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:125
302
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:434
303
- #: src/vue/pages/social-networks/views/Facebook.vue:689
304
- #: src/vue/pages/social-networks/views/Twitter.vue:447
305
- msgid "Upload or Select Image"
306
  msgstr ""
307
 
308
- #: src/vue/pages/local-seo/views/lite/Locations.vue:112
309
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:126
310
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:435
311
- #: src/vue/pages/social-networks/views/Facebook.vue:690
312
- #: src/vue/pages/social-networks/views/Twitter.vue:448
313
- msgid "Paste your image URL or select a new image"
314
  msgstr ""
315
 
316
- #: src/vue/pages/local-seo/views/lite/Locations.vue:113
317
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:127
318
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:436
319
- msgid ""
320
- "Minimum size: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or "
321
- "WEBP format."
322
  msgstr ""
323
 
324
- #: src/vue/pages/local-seo/views/lite/Locations.vue:114
325
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:128
326
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:437
327
- #: src/vue/pages/social-networks/views/Facebook.vue:705
328
- #: src/vue/pages/social-networks/views/Twitter.vue:459
329
- msgid "Remove"
330
  msgstr ""
331
 
332
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:332
333
- msgid "Default Social Share Image"
334
  msgstr ""
335
 
336
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:333
337
- msgid "Your Social Profiles"
338
  msgstr ""
339
 
340
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:451
341
- msgid "Manually Enter Person"
342
  msgstr ""
343
 
344
- #: src/vue/pages/setup-wizard/views/Category.vue:134
345
- msgid "Which category best describes your website?"
346
  msgstr ""
347
 
348
- #: src/vue/pages/setup-wizard/views/Category.vue:135
349
  msgid ""
350
- "Select a category to help us narrow down the SEO options that work best for "
351
- "you and your site."
352
  msgstr ""
353
 
354
- #: src/vue/pages/setup-wizard/views/Category.vue:136
355
- msgid "Enter your answer"
356
  msgstr ""
357
 
358
- #: src/vue/pages/social-networks/views/Twitter.vue:453
359
- msgid "Home Page Title"
360
  msgstr ""
361
 
362
- #: src/vue/pages/setup-wizard/views/Category.vue:138
363
- msgid "Home Page Meta Description"
364
  msgstr ""
365
 
366
- #: src/vue/pages/settings/views/Breadcrumbs.vue:306
367
- msgid "Blog"
368
  msgstr ""
369
 
370
- #: src/vue/pages/setup-wizard/views/Category.vue:142
371
- msgid "News Channel"
372
  msgstr ""
373
 
374
- #: src/vue/pages/setup-wizard/views/Category.vue:143
375
- msgid "Online Store"
376
  msgstr ""
377
 
378
- #: src/vue/pages/setup-wizard/views/Category.vue:144
379
- msgid "Small Offline Business"
380
  msgstr ""
381
 
382
- #: src/vue/pages/setup-wizard/views/Category.vue:145
383
- msgid "Corporation"
384
  msgstr ""
385
 
386
- #: src/vue/pages/setup-wizard/views/Category.vue:146
387
- msgid "Portfolio"
388
  msgstr ""
389
 
390
- #: src/vue/pages/setup-wizard/views/Category.vue:148
391
- msgid "Other:"
 
392
  msgstr ""
393
 
394
- #: src/vue/pages/setup-wizard/views/Import.vue:80
395
- msgid "Import data from your current plugins"
 
396
  msgstr ""
397
 
398
- # Translators: 1 - Plugin short name ("AIOSEO").
399
- #: src/vue/pages/setup-wizard/views/Import.vue:82
400
  msgid ""
401
- "We have detected other SEO plugins installed on your website. Select which "
402
- "plugins you would like to import data to %1$s."
403
  msgstr ""
404
 
405
- #: src/vue/pages/setup-wizard/views/Import.vue:83
406
- msgid "Import Data and Continue"
407
- msgstr ""
408
-
409
- # Translators: 1 - A list of plugin names.
410
- #: src/vue/pages/setup-wizard/views/Features.vue:130
411
- msgid "The following plugins will be installed: %1$s"
412
  msgstr ""
413
 
414
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - A list of plugin names.
415
- #: src/vue/pages/setup-wizard/views/Features.vue:135
416
- msgid "The following %1$s addons will be installed: %2$s"
417
  msgstr ""
418
 
419
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - A list of plugin names.
420
- #: src/vue/pages/setup-wizard/views/Features.vue:140
421
- msgid "The following plugins and %1$s addons will be installed: %2$s"
 
 
422
  msgstr ""
423
 
424
- #: src/vue/pages/setup-wizard/views/Features.vue:82
425
- msgid "Which SEO features do you want to enable?"
426
  msgstr ""
427
 
428
- #: src/vue/pages/setup-wizard/views/Features.vue:86
429
- msgid ""
430
- "We have already selected our recommended features based on your site "
431
- "category, but you can use the following features to fine-tune your site."
432
  msgstr ""
433
 
434
- #: src/vue/pages/dashboard/views/Main.vue:202
435
- msgid "Smart Schema"
436
  msgstr ""
437
 
438
- #: src/vue/pages/local-seo/views/Main.vue:23
439
- msgid "Local SEO"
440
  msgstr ""
441
 
442
- #: src/vue/pages/dashboard/views/Main.vue:204
443
- msgid "Advanced support for e-commerce"
 
444
  msgstr ""
445
 
446
- #: src/vue/pages/dashboard/views/Main.vue:205
447
- msgid "Advanced Google Analytics tracking"
448
  msgstr ""
449
 
450
- #: src/vue/pages/dashboard/views/Main.vue:206
451
- msgid "Video SEO Module"
452
  msgstr ""
453
 
454
- #: src/vue/pages/dashboard/views/Main.vue:207
455
- msgid "Greater control over display settings"
456
  msgstr ""
457
 
458
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:145
459
- msgid "SEO for Categories, Tags and Custom Taxonomies"
460
  msgstr ""
461
 
462
- #: src/vue/pages/dashboard/views/Main.vue:209
463
- msgid "Social meta for Categories, Tags and Custom Taxonomies"
 
464
  msgstr ""
465
 
466
- #: src/vue/pages/dashboard/views/Main.vue:210
467
- msgid "Ad free (no banner adverts)"
 
468
  msgstr ""
469
 
470
- #: src/vue/pages/dashboard/views/Main.vue:212
471
- msgid "There are no new notifications at this moment."
472
  msgstr ""
473
 
474
- #: src/vue/pages/dashboard/views/Main.vue:213
475
- msgid "See all dismissed notifications."
476
  msgstr ""
477
 
478
- #: src/vue/pages/dashboard/views/Main.vue:214
479
- msgid "SEO Site Score"
480
  msgstr ""
481
 
482
- #: src/vue/pages/dashboard/views/Main.vue:215
483
- msgid "Support"
 
 
484
  msgstr ""
485
 
486
- # Translators: 1 - The plugin name ("All in One SEO").
487
- #: src/vue/pages/dashboard/views/Main.vue:217
488
- msgid "Read the %1$s user guide"
 
 
489
  msgstr ""
490
 
491
- #: src/vue/pages/dashboard/views/Main.vue:218
492
- msgid "Access our Premium Support"
 
 
493
  msgstr ""
494
 
495
- #: src/vue/pages/dashboard/views/Main.vue:219
496
- msgid "View the Changelog"
497
  msgstr ""
498
 
499
- #: src/vue/pages/dashboard/views/Main.vue:220
500
- msgid "Watch video tutorials"
501
  msgstr ""
502
 
503
- #: src/vue/pages/dashboard/views/Main.vue:221
504
- msgid "Getting started? Read the Beginners Guide"
505
  msgstr ""
506
 
507
- #: src/vue/pages/dashboard/views/Main.vue:222
508
- msgid "Quicklinks"
509
  msgstr ""
510
 
511
- #: src/vue/pages/dashboard/views/Main.vue:223
512
- msgid ""
513
- "You can use these quicklinks to quickly access our settings pages to adjust "
514
- "your site's SEO settings."
515
  msgstr ""
516
 
517
- #: src/vue/pages/dashboard/views/Main.vue:225
518
- msgid ""
519
- "Configure how your website content will look in Google, Bing and other "
520
- "search engines."
521
  msgstr ""
522
 
523
- #: src/vue/pages/seo-analysis/views/Main.vue:21
524
- #: src/vue/pages/settings/views/Advanced.vue:288
525
- #: src/vue/standalone/publish-panel/PrePublish.vue:87
526
- msgid "SEO Analysis"
 
527
  msgstr ""
528
 
529
- #: src/vue/pages/dashboard/views/Main.vue:227
530
- msgid ""
531
- "Check how your site scores with our SEO analyzer and compare against your "
532
- "competitor's site."
533
  msgstr ""
534
 
535
- #: src/vue/pages/dashboard/views/Main.vue:228
536
- msgid ""
537
- "Improve local SEO rankings with schema for business address, open hours, "
538
- "contact, and more."
539
  msgstr ""
540
 
541
- #: src/vue/pages/social-networks/views/Main.vue:24
542
- msgid "Social Networks"
543
  msgstr ""
544
 
545
- #: src/vue/pages/dashboard/views/Main.vue:230
546
- msgid ""
547
- "Setup Open Graph for Facebook, Twitter, etc. to show the right content / "
548
- "thumbnail preview."
549
  msgstr ""
550
 
551
- #: src/vue/pages/tools/views/Main.vue:31
552
- msgid "Tools"
553
  msgstr ""
554
 
555
- #: src/vue/pages/dashboard/views/Main.vue:232
 
556
  msgid ""
557
- "Fine-tune your site with our powerful tools including Robots.txt editor, "
558
- "import/export and more."
 
559
  msgstr ""
560
 
561
- #: src/vue/pages/sitemaps/views/Main.vue:26
562
- msgid "Sitemaps"
 
563
  msgstr ""
564
 
565
- #: src/vue/pages/dashboard/views/Main.vue:234
566
- msgid "Manage all of your sitemap settings, including XML, Video, News and more."
567
  msgstr ""
568
 
569
- # Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro".
570
- #: src/vue/pages/dashboard/views/Main.vue:236
571
- msgid "Get more features in %1$s %2$s:"
572
  msgstr ""
573
 
574
- # Translators: 1 - "Pro", 2 - A percentage ("50%").
575
- #: src/vue/pages/dashboard/views/Main.vue:238
576
- msgid "Upgrade to %1$s and Save %2$s"
577
  msgstr ""
578
 
579
- #: src/vue/pages/dashboard/views/Main.vue:239
580
- msgid "Dismiss All"
581
  msgstr ""
582
 
583
- #: src/vue/pages/settings/views/GeneralSettings.vue:60
584
- msgid "Relaunch Setup Wizard"
585
  msgstr ""
586
 
587
- # Translators: 1 - A number representing the remaining notifications.
588
- #: src/vue/pages/dashboard/views/Main.vue:249
589
- msgid "You have %1$s more notifications"
590
  msgstr ""
591
 
592
- #: src/vue/pages/posts-table/TermApp.vue:114
593
- msgid "Title:"
594
  msgstr ""
595
 
596
- #: src/vue/pages/posts-table/TermApp.vue:115
597
- msgid "Description:"
598
  msgstr ""
599
 
600
- #: src/vue/pages/posts-table/App.vue:221
601
- msgid "Image Title:"
602
  msgstr ""
603
 
604
- #: src/vue/pages/posts-table/App.vue:222
605
- msgid "Image Alt Tag:"
 
606
  msgstr ""
607
 
608
- #: src/vue/pages/posts-table/TermApp.vue:116
609
- msgid "Edit"
 
610
  msgstr ""
611
 
612
- #: src/vue/pages/posts-table/TermApp.vue:117
613
- msgid "Save"
614
  msgstr ""
615
 
616
- #: src/vue/pages/posts-table/TermApp.vue:118
617
- msgid "Cancel"
618
  msgstr ""
619
 
620
- #: src/vue/pages/posts-table/TermApp.vue:119
621
- msgid "Please wait..."
622
  msgstr ""
623
 
624
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:250
625
- msgid ""
626
- "The way your site is displayed in search results is very important. Take "
627
- "some time to look over these settings and tweak as needed."
628
  msgstr ""
629
 
630
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:251
631
- msgid "Google Snippet Preview"
632
  msgstr ""
633
 
634
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:252
635
- msgid "Edit Title and Description"
636
  msgstr ""
637
 
638
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:418
639
- msgid "Click on the tags below to insert variables into your site title."
640
  msgstr ""
641
 
642
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:420
643
- #: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:147
644
- msgid "Click on the tags below to insert variables into your meta description."
645
  msgstr ""
646
 
647
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:419
648
- #: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:146
649
- msgid "Meta Description"
650
  msgstr ""
651
 
652
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:257
653
- msgid "Is the site under construction or live (ready to be indexed)?"
 
654
  msgstr ""
655
 
656
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:258
657
- msgid "Under Construction"
658
  msgstr ""
659
 
660
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:259
661
- msgid "Live Site"
662
  msgstr ""
663
 
664
- #: src/vue/pages/settings/views/Advanced.vue:290
665
- #: src/vue/standalone/HtmlSitemapSidebar.vue:117
666
- msgid "Include All Post Types"
667
  msgstr ""
668
 
669
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:9
670
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:126
671
- msgid "Enable Sitemap"
672
  msgstr ""
673
 
674
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:262
675
- msgid "Do you have multiple authors?"
 
 
676
  msgstr ""
677
 
678
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:263
679
- msgid "Redirect attachment pages?"
680
- msgstr ""
681
-
682
- # Translators: 1 - "Pro".
683
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:102
684
- msgid "upgrade to %1$s"
685
- msgstr ""
686
-
687
- #: src/vue/components/lite/settings/LicenseKey.vue:60
688
- msgid "Paste your license key here"
689
- msgstr ""
690
-
691
- #: src/vue/components/lite/settings/LicenseKey.vue:61
692
- msgid "Connect"
693
  msgstr ""
694
 
695
- # Translators: 1 - The plugin name ("All in One SEO").
696
- #: src/vue/components/lite/settings/LicenseKey.vue:80
697
- msgid "You're using %1$s - no license needed. Enjoy!"
 
 
 
698
  msgstr ""
699
 
700
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:128
701
- msgid "To unlock the selected features, please enter your license key below."
 
 
 
 
702
  msgstr ""
703
 
704
- # Translators: 1 - "upgrading to Pro".
705
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:130
706
  msgid ""
707
- "To unlock the selected features, please %1$s and enter your license key "
708
- "below."
709
  msgstr ""
710
 
711
- # Translators: 1 - The plugin name ("All in One SEO").
712
- #: src/vue/components/lite/settings/LicenseKey.vue:84
713
- msgid "Already purchased? Simply enter your license key below to connect with %1$s!"
714
  msgstr ""
715
 
716
- # Translators: 1 - The plugin short name ("AIOSEO").
717
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:98
718
- msgid "Enter your %1$s License Key"
719
  msgstr ""
720
 
721
- #: src/vue/pages/connect/views/Main.vue:30
722
- msgid "Connecting..."
 
 
 
723
  msgstr ""
724
 
725
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:165
726
- msgid "Setup Site Analyzer + Smart Recommendations"
 
 
727
  msgstr ""
728
 
729
- # Translators: 1 - Plugin short name ("AIOSEO").
730
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:167
731
- msgid ""
732
- "Get helpful suggestions from %1$s on how to optimize your website content, "
733
- "so you can rank higher in search results."
734
  msgstr ""
735
 
736
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:168
737
- msgid "Your Email Address"
 
738
  msgstr ""
739
 
740
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:169
741
- msgid ""
742
- "Your email is needed so you can receive SEO recommendations. This email "
743
- "will also be used to connect your site with our SEO API."
744
  msgstr ""
745
 
746
- # Translators: 1 - Plugin short name ("AIOSEO").
747
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:171
748
- msgid "Help make %1$s better for everyone"
 
749
  msgstr ""
750
 
751
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:172
752
- msgid "Yes, count me in"
 
753
  msgstr ""
754
 
755
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:173
756
- msgid "Would you like to purchase and install the following features now?"
 
 
 
757
  msgstr ""
758
 
759
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:174
760
- msgid "An upgrade is required to unlock the following features."
 
 
 
761
  msgstr ""
762
 
763
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:175
764
- msgid ""
765
- "You won't have access to this functionality until the extensions have been "
766
- "purchased and installed."
 
767
  msgstr ""
768
 
769
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:176
770
- msgid "I'll do it later"
 
771
  msgstr ""
772
 
773
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:177
774
- msgid "Purchase and Install Now"
775
  msgstr ""
776
 
777
- # Translators: 1 - Opening bold tag. 2 - Closing bold tag. 3 - Opening bold tag. 4 - Percent between 1-100. 5 - Closing bold tag.
778
- #: src/vue/pages/setup-wizard/views/Success.vue:146
779
- msgid ""
780
- "%1$sBonus:%2$s You can upgrade your plan today and %3$ssave %4$s off%5$s "
781
- "(discount auto-applied)."
782
  msgstr ""
783
 
784
- # Translators: 1 - Opening HTML link and bold tag, 2 - Closing HTML link and bold tag.
785
- #: src/vue/pages/settings/views/Advanced.vue:310
786
- msgid "Complete documentation on usage tracking is available %1$shere%2$s."
787
  msgstr ""
788
 
789
- #: src/vue/pages/setup-wizard/views/Success.vue:134
790
- msgid "Congratulations, your site is now SEO ready!"
791
  msgstr ""
792
 
793
- #: src/vue/pages/setup-wizard/views/Success.vue:135
794
- msgid "Finish Setup and Go to the Dashboard"
795
  msgstr ""
796
 
797
- #: src/vue/pages/setup-wizard/views/Success.vue:136
798
- msgid "Here's what to do next:"
799
  msgstr ""
800
 
801
- #: src/vue/pages/setup-wizard/views/Success.vue:137
802
- msgid "Join our Community"
803
  msgstr ""
804
 
805
- #: src/vue/pages/setup-wizard/views/Success.vue:138
806
- msgid "Join on Facebook"
 
 
 
807
  msgstr ""
808
 
809
- #: src/vue/pages/setup-wizard/views/Success.vue:139
810
- msgid "Follow on Twitter"
 
 
 
811
  msgstr ""
812
 
813
- #: src/vue/pages/setup-wizard/views/Success.vue:140
814
- msgid "Read our Step By Step Guide to Improve your SEO Rankings"
 
815
  msgstr ""
816
 
817
- # Translators: 1 - Plugin short name ("AIOSEO").
818
- #: src/vue/pages/setup-wizard/views/Success.vue:142
819
- msgid "Watch our Guided Tour of %1$s"
820
  msgstr ""
821
 
822
- #: src/vue/pages/setup-wizard/views/Success.vue:143
823
- msgid "See Advanced Settings"
 
824
  msgstr ""
825
 
826
- #: src/vue/pages/setup-wizard/views/Success.vue:144
827
- msgid "Setup Webmaster Tools"
828
  msgstr ""
829
 
830
- #: src/vue/pages/setup-wizard/views/Success.vue:147
831
- msgid "Upgrade to Pro to Unlock Powerful SEO Features"
832
  msgstr ""
833
 
834
- # Translators: 1 - Plugin name ("All in One SEO"), 2 - Plugin short name ("AIOSEO").
835
- #: src/vue/pages/setup-wizard/views/Success.vue:149
836
  msgid ""
837
- "%1$s is the best WordPress SEO plugin. Join over 2,000,000+ Professionals "
838
- "who are already using %2$s to improve their website search rankings."
 
 
839
  msgstr ""
840
 
841
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:141
842
- msgid "Video and News Sitemaps"
843
  msgstr ""
844
 
845
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:142
846
- msgid "Image SEO Optimization"
 
847
  msgstr ""
848
 
849
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:143
850
- msgid "Local Business SEO"
851
  msgstr ""
852
 
853
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:144
854
- msgid "Advanced WooCommerce"
855
  msgstr ""
856
 
857
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:146
858
- msgid "And many more..."
859
  msgstr ""
860
 
861
- # Translators: 1 - "Pro".
862
- #: src/vue/pages/setup-wizard/views/Success.vue:157
863
- msgid "Upgrade to %1$s Today"
 
864
  msgstr ""
865
 
866
- # Translators: 1 - Strong tag, 2 - Close strong tag.
867
- #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:100
868
- msgid ""
869
- "%1$sThe custom marker should be: 100x100 px.%2$s If the image exceeds those "
870
- "dimensions it could (partially) cover the info popup."
871
  msgstr ""
872
 
873
- #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:90
874
- msgid "Show label"
 
 
875
  msgstr ""
876
 
877
- #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:91
878
- msgid "Show icon"
879
  msgstr ""
880
 
881
- #: src/vue/pages/local-seo/views/lite/Locations.vue:103
882
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:119
883
- #: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:129
884
- msgid "Business Info"
885
  msgstr ""
886
 
887
- #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:93
888
- msgid "Map Display"
889
  msgstr ""
890
 
891
- #: src/vue/pages/social-networks/views/Facebook.vue:683
892
- #: src/vue/pages/social-networks/views/Twitter.vue:441
893
- msgid "Width"
894
  msgstr ""
895
 
896
- #: src/vue/pages/social-networks/views/Facebook.vue:684
897
- #: src/vue/pages/social-networks/views/Twitter.vue:442
898
- msgid "Height"
899
  msgstr ""
900
 
901
- #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:96
902
- msgid "Custom Marker"
 
 
903
  msgstr ""
904
 
905
- # Translators: 1 - The plugin name ("All in One SEO").
906
- #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:417
907
- msgid ""
908
- "An XML Sitemap is a list of all your content that search engines use when "
909
- "they crawl your site. This is an essential part of SEO because it contains "
910
- "some important pieces of information that search engines need when crawling "
911
- "your site. The XML Sitemap created by %1$s tells search engines where to "
912
- "find all of the content on your site."
913
  msgstr ""
914
 
915
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:127
916
- msgid "Sitemap Settings"
917
  msgstr ""
918
 
919
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:400
920
- msgid "Enable Sitemap Indexes"
921
  msgstr ""
922
 
923
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:401
924
  msgid ""
925
- "Organize sitemap entries into distinct files in your sitemap. We recommend "
926
- "you enable this setting if your sitemap contains more than 1,000 URLs."
927
  msgstr ""
928
 
929
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:402
930
- msgid "Links Per Sitemap"
931
  msgstr ""
932
 
933
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:11
934
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:131
935
- msgid "Noindexed content will not be displayed in your sitemap."
936
- msgstr ""
937
 
938
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:12
939
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:132
940
- msgid "Do you get a blank sitemap or 404 error?"
941
  msgstr ""
942
 
943
- #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:425
944
- msgid "Open Sitemap"
945
  msgstr ""
946
 
947
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:403
948
- msgid ""
949
- "Allows you to specify the maximum number of posts in a sitemap (up to "
950
- "50,000)."
951
  msgstr ""
952
 
953
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:135
954
- msgid "Automatically Ping Search Engines"
955
  msgstr ""
956
 
957
- #: src/vue/standalone/HtmlSitemapSidebar.vue:115
958
- msgid "Post Types"
959
  msgstr ""
960
 
961
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:138
962
- msgid "Date Archive Sitemap"
963
  msgstr ""
964
 
965
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:139
966
- msgid "Include Date Archives in your sitemap."
 
967
  msgstr ""
968
 
969
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:140
970
- msgid "Author Sitemap"
 
971
  msgstr ""
972
 
973
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:141
974
- msgid "Include Author Archives in your sitemap."
975
  msgstr ""
976
 
977
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:143
978
- msgid "Select which Post Types appear in your sitemap."
979
  msgstr ""
980
 
981
- #: src/vue/pages/settings/views/Advanced.vue:316
982
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:408
983
- #: src/vue/standalone/HtmlSitemapSidebar.vue:118
984
- msgid "Include All Taxonomies"
985
  msgstr ""
986
 
987
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:145
988
- msgid "Select which Taxonomies appear in your sitemap."
989
  msgstr ""
990
 
991
- #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:438
992
- msgid "Additional Pages"
 
993
  msgstr ""
994
 
995
- #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:439
996
- msgid ""
997
- "You can use this section to add any URLs to your sitemap which aren’t a "
998
- "part of your WordPress installation. For example, if you have a contact "
999
- "form that you would like to be included on your sitemap you can enter the "
1000
- "information manually."
1001
  msgstr ""
1002
 
1003
- #: src/vue/pages/settings/views/Advanced.vue:283
1004
- #: src/vue/pages/social-networks/views/Facebook.vue:706
1005
- msgid "Advanced Settings"
1006
  msgstr ""
1007
 
1008
- #: src/vue/standalone/HtmlSitemapSidebar.vue:125
1009
- msgid "Exclude Posts / Pages"
1010
  msgstr ""
1011
 
1012
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:414
1013
- #: src/vue/standalone/HtmlSitemapSidebar.vue:126
1014
- msgid "Exclude Terms"
1015
  msgstr ""
1016
 
1017
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:415
1018
- msgid ""
1019
- "Any posts that are assigned to these terms will also be excluded from your "
1020
- "sitemap."
1021
  msgstr ""
1022
 
1023
- #: src/vue/pages/post-settings/views/Advanced.vue:118
1024
- msgid "Priority Score"
1025
  msgstr ""
1026
 
1027
- #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:445
1028
- msgid "Grouped"
1029
  msgstr ""
1030
 
1031
- #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:446
1032
- msgid "Post Type Priority Score"
1033
  msgstr ""
1034
 
1035
- #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:447
1036
- msgid "Taxonomy Priority Score"
1037
  msgstr ""
1038
 
1039
- #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:448
1040
- msgid "Exclude Images"
1041
  msgstr ""
1042
 
1043
- #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:449
1044
- msgid "Exclude Images from your sitemap."
1045
  msgstr ""
1046
 
1047
- #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:450
1048
- msgid "Dynamically Generate"
1049
  msgstr ""
1050
 
1051
- #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:451
1052
- msgid "Dynamically creates the XML Sitemap instead of using a static file."
1053
  msgstr ""
1054
 
1055
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:432
1056
- msgid ""
1057
- "We recommend setting the amount of URLs per sitemap index to 1,000 or less. "
1058
- "The more links, the longer it will take for the sitemap to load."
1059
  msgstr ""
1060
 
1061
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:433
1062
- msgid ""
1063
- "Your static sitemap is currently being regenerated. This may take some time "
1064
- "based on the size of your site. This may also cause the sitemap content to "
1065
- "look outdated."
1066
  msgstr ""
1067
 
1068
- #: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:86
1069
- msgid "Show Title"
1070
  msgstr ""
1071
 
1072
- #: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:87
1073
- msgid "Show Icons"
1074
  msgstr ""
1075
 
1076
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:294
1077
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:238
1078
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:307
1079
- msgid "Monday"
1080
  msgstr ""
1081
 
1082
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:295
1083
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:239
1084
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:308
1085
- msgid "Tuesday"
1086
  msgstr ""
1087
 
1088
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:296
1089
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:240
1090
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:309
1091
- msgid "Wednesday"
1092
  msgstr ""
1093
 
1094
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:297
1095
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:241
1096
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:310
1097
- msgid "Thursday"
1098
  msgstr ""
1099
 
1100
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:298
1101
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:242
1102
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:311
1103
- msgid "Friday"
1104
  msgstr ""
1105
 
1106
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:299
1107
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:243
1108
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:312
1109
- msgid "Saturday"
1110
  msgstr ""
1111
 
1112
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:300
1113
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:244
1114
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:313
1115
- msgid "Sunday"
1116
  msgstr ""
1117
 
1118
- #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:57
1119
- #: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:137
1120
- msgid ""
1121
- "An error occurred while activating the addon. Please upload it manually or "
1122
- "contact support for more information."
1123
  msgstr ""
1124
 
1125
- #: src/vue/pages/search-appearance/views/Advanced.vue:377
1126
- msgid "Global Robots Meta"
1127
  msgstr ""
1128
 
1129
- #: src/vue/pages/search-appearance/views/Advanced.vue:378
1130
- msgid "Noindex Empty Category and Tag Archives"
1131
  msgstr ""
1132
 
1133
- #: src/vue/pages/search-appearance/views/Advanced.vue:379
1134
- msgid "Remove Stopwords from Permalinks"
1135
  msgstr ""
1136
 
1137
- #: src/vue/pages/search-appearance/views/Advanced.vue:380
1138
- msgid "Remove Category Base Prefix"
1139
  msgstr ""
1140
 
1141
- #: src/vue/pages/search-appearance/views/Advanced.vue:383
1142
- msgid "Automatically Add Missing Image Alt / Title Tags"
1143
  msgstr ""
1144
 
1145
- # Translators: 1 - The plugin short name name ("AIOSEO"), 2 - "Learn more".
1146
- #: src/vue/pages/settings/views/Advanced.vue:320
1147
- msgid "This feature is only for licensed %1$s users. %2$s"
1148
  msgstr ""
1149
 
1150
- #: src/vue/pages/search-appearance/views/Advanced.vue:386
1151
- msgid "Autogenerate Descriptions"
1152
  msgstr ""
1153
 
1154
- #: src/vue/pages/search-appearance/views/Advanced.vue:387
1155
- msgid "Use Content for Autogenerated Descriptions"
1156
  msgstr ""
1157
 
1158
- #: src/vue/pages/search-appearance/views/Advanced.vue:388
1159
- msgid "Run Shortcodes in Description"
1160
  msgstr ""
1161
 
1162
- #: src/vue/pages/search-appearance/views/Advanced.vue:389
1163
- msgid "No Pagination for Canonical URLs"
1164
  msgstr ""
1165
 
1166
- #: src/vue/pages/search-appearance/views/Advanced.vue:390
1167
- msgid "Use Meta Keywords"
 
 
1168
  msgstr ""
1169
 
1170
- #: src/vue/pages/search-appearance/views/Advanced.vue:391
1171
- msgid ""
1172
- "This option allows you to toggle the use of Meta Keywords throughout the "
1173
- "whole of the site."
1174
  msgstr ""
1175
 
1176
- #: src/vue/pages/search-appearance/views/Advanced.vue:392
1177
- msgid "Use Categories for Meta Keywords"
1178
  msgstr ""
1179
 
1180
- #: src/vue/pages/search-appearance/views/Advanced.vue:393
1181
- msgid ""
1182
- "Check this if you want your categories for a given post used as the Meta "
1183
- "Keywords for this post (in addition to any keywords you specify on the Edit "
1184
- "Post screen)."
1185
  msgstr ""
1186
 
1187
- #: src/vue/pages/search-appearance/views/Advanced.vue:394
1188
- msgid "Use Tags for Meta Keywords"
1189
  msgstr ""
1190
 
1191
- #: src/vue/pages/search-appearance/views/Advanced.vue:395
1192
- msgid ""
1193
- "Check this if you want your tags for a given post used as the Meta Keywords "
1194
- "for this post (in addition to any keywords you specify on the Edit Post "
1195
- "screen)."
1196
  msgstr ""
1197
 
1198
- #: src/vue/pages/search-appearance/views/Advanced.vue:396
1199
- msgid "Dynamically Generate Meta Keywords"
1200
  msgstr ""
1201
 
1202
- #: src/vue/pages/search-appearance/views/Advanced.vue:397
1203
- msgid ""
1204
- "Check this if you want your keywords on your Posts page (set in WordPress "
1205
- "under Settings, Reading, Front Page Displays) and your archive pages to be "
1206
- "dynamically generated from the keywords of the posts showing on that page. "
1207
- "If unchecked, it will use the keywords set in the edit page screen for the "
1208
- "posts page."
1209
  msgstr ""
1210
 
1211
- #: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:73
1212
- msgid "Paged Format"
1213
  msgstr ""
1214
 
1215
- #: src/vue/pages/search-appearance/views/Advanced.vue:399
1216
- msgid ""
1217
- "This string gets appended to the titles and descriptions of paginated pages "
1218
- "(like term or archive pages)."
1219
  msgstr ""
1220
 
1221
- #: src/vue/pages/search-appearance/views/Advanced.vue:400
1222
- msgid "Description Format"
1223
  msgstr ""
1224
 
1225
- #: src/vue/pages/search-appearance/views/Advanced.vue:403
1226
- msgid "Enable Sitelinks Search Box"
1227
  msgstr ""
1228
 
1229
- # Translators: 1 - The plugin name ("All in One SEO").
1230
- #: src/vue/pages/search-appearance/views/Advanced.vue:405
1231
- msgid ""
1232
- "Choose whether %1$s should output the required schema markup that Google "
1233
- "needs to generate a sitelinks search box."
1234
  msgstr ""
1235
 
1236
- #: src/vue/pages/search-appearance/views/Advanced.vue:406
1237
- msgid ""
1238
- "A Description tag is required in order to properly display your meta "
1239
- "descriptions on your site."
1240
  msgstr ""
1241
 
1242
- #: src/vue/pages/about/views/Main.vue:23
1243
- msgid "About"
1244
  msgstr ""
1245
 
1246
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:123
1247
- msgid "Set title attributes"
1248
  msgstr ""
1249
 
1250
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:124
1251
- msgid "Set alt tag attributes"
1252
  msgstr ""
1253
 
1254
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:125
1255
- msgid "Strip punctuation for titles"
 
1256
  msgstr ""
1257
 
1258
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:126
1259
- msgid "Strip punctuation for alt tags"
1260
  msgstr ""
1261
 
1262
- # Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string.
1263
- #: src/vue/pages/about/views/GettingStarted.vue:130
1264
- msgid "Get %1$s %2$s and Unlock all the Powerful Features"
1265
  msgstr ""
1266
 
1267
- # Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string.
1268
- #: src/vue/pages/about/views/GettingStarted.vue:132
1269
- msgid "Get %1$s %2$s and Unlock all the Powerful Features."
1270
  msgstr ""
1271
 
1272
- #: src/vue/pages/about/views/GettingStarted.vue:141
1273
- msgid "Social Meta for Categories, Tags and Custom Taxonomies"
1274
  msgstr ""
1275
 
1276
- #: src/vue/pages/about/views/GettingStarted.vue:148
1277
- msgid "Video Tutorials"
1278
  msgstr ""
1279
 
1280
- #: src/vue/pages/about/views/GettingStarted.vue:149
1281
- msgid "View all video tutorials"
1282
  msgstr ""
1283
 
1284
- # Translators: 1 - The plugin short name ("AIOSEO").
1285
- #: src/vue/pages/about/views/GettingStarted.vue:154
1286
- msgid "%1$s Documentation"
1287
  msgstr ""
1288
 
1289
- #: src/vue/pages/about/views/GettingStarted.vue:155
1290
- msgid "See our full documentation"
 
 
 
 
 
1291
  msgstr ""
1292
 
1293
- #: src/vue/pages/about/views/GettingStarted.vue:161
1294
- msgid "Basic Guide to Google Analytics"
1295
  msgstr ""
1296
 
1297
- #: src/vue/pages/about/views/GettingStarted.vue:165
1298
- msgid "Basic Guide to Google Search Console"
1299
  msgstr ""
1300
 
1301
- #: src/vue/pages/about/views/GettingStarted.vue:169
1302
- msgid "Best Practices for Domains and URLs"
1303
  msgstr ""
1304
 
1305
- #: src/vue/pages/about/views/GettingStarted.vue:173
1306
- msgid "How to Control Search Results"
1307
  msgstr ""
1308
 
1309
- #: src/vue/pages/settings/views/GeneralSettings.vue:51
1310
- msgid "Pro"
 
1311
  msgstr ""
1312
 
1313
- # Translators: 1 - The plugin short name ("AIOSEO Pro"), 2 - "Pro" string.
1314
- #: src/vue/pages/about/views/GettingStarted.vue:178
1315
- msgid "Installing %1$s %2$s"
1316
  msgstr ""
1317
 
1318
- #: src/vue/pages/about/views/GettingStarted.vue:182
1319
- msgid "Optimizing your Content Headings"
1320
  msgstr ""
1321
 
1322
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 "Pro".
1323
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:182
1324
- msgid ""
1325
- "%1$s %2$s comes with many additional features to help take your site's SEO "
1326
- "to the next level!"
1327
  msgstr ""
1328
 
1329
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:109
1330
- msgid "Social Meta (Open Graph Markup)"
1331
  msgstr ""
1332
 
1333
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:112
1334
- msgid "Posts, Pages and custom Post Types only"
1335
  msgstr ""
1336
 
1337
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:116
1338
- msgid "Posts, Pages, custom Post Types + Categories, Tags and custom Taxonomies"
1339
  msgstr ""
1340
 
1341
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:120
1342
- msgid "WooCommerce Integration"
 
1343
  msgstr ""
1344
 
1345
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:123
1346
- msgid "WooCommerce Products only"
 
 
1347
  msgstr ""
1348
 
1349
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:127
1350
- msgid ""
1351
- "WooCommerce Products, Product Categories, Product Tags, Product Attributes "
1352
- "+ WooCommerce smart tags (price, brand, etc.)"
1353
  msgstr ""
1354
 
1355
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:131
1356
- msgid "Schema Rich Snippets"
 
1357
  msgstr ""
1358
 
1359
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:134
1360
- msgid "Posts, Pages, Categories and Tags only"
1361
  msgstr ""
1362
 
1363
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:138
1364
- msgid ""
1365
- "Posts, Pages, Categories, Tags + Breadcrumb Navigation + advanced graphs "
1366
- "(Product, FAQ Page, Recipe, etc.)"
1367
  msgstr ""
1368
 
1369
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:142
1370
- msgid "Visual Breadcrumb Trails"
1371
  msgstr ""
1372
 
1373
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:145
1374
- msgid "Default template for all pages."
1375
  msgstr ""
1376
 
1377
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:149
1378
- msgid "Granular control over the template for each post type, taxonomy and archive."
1379
  msgstr ""
1380
 
1381
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:153
1382
- msgid "XML Sitemap"
1383
  msgstr ""
1384
 
1385
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:156
1386
- msgid "Control the priority & frequency per Post Type/Taxonomy"
1387
  msgstr ""
1388
 
1389
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:159
1390
- msgid "Complete Support"
1391
  msgstr ""
1392
 
1393
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:160
1394
- msgid "Control the priority & frequency of each Post, Page, Category, Tag, etc."
 
 
1395
  msgstr ""
1396
 
1397
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:170
1398
- msgid "Submit your videos to search engines (Pro & Elite plans only)"
 
 
1399
  msgstr ""
1400
 
1401
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:180
1402
- msgid "Submit your latest news stories to Google News (Pro & Elite plans only)"
1403
  msgstr ""
1404
 
1405
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:190
1406
- msgid ""
1407
- "Control the Title & Alt Tag attribute of your images (Plus, Pro & Elite "
1408
- "plans only)"
1409
  msgstr ""
1410
 
1411
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:196
1412
- msgid "Not available"
1413
  msgstr ""
1414
 
1415
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:200
1416
- msgid ""
1417
- "Local Business schema (multiple locations supported) + Business Info & "
1418
- "Location blocks, widgets & shortcodes (Plus, Pro & Elite plans only)"
1419
  msgstr ""
1420
 
1421
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:204
1422
- msgid "Redirection Manager"
1423
  msgstr ""
1424
 
1425
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:206
1426
- msgid "Not Available"
1427
  msgstr ""
1428
 
1429
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:209
1430
- msgid "Available as Addon Plugin"
1431
  msgstr ""
1432
 
1433
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:210
1434
- msgid ""
1435
- "Create, manage and monitor redirects for 404's or modified posts + server "
1436
- "redirects, full site redirects and site aliases (Pro & Elite plans only)"
1437
  msgstr ""
1438
 
1439
- #: src/vue/plugins/constants.js:1050
1440
- msgid "Customer Support"
1441
  msgstr ""
1442
 
1443
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:216
1444
- msgid "Limited Support"
1445
  msgstr ""
1446
 
1447
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:219
1448
- msgid "Priority Support"
1449
  msgstr ""
1450
 
1451
- # Translators: 1 - The abbreviated plugin name ("AIOSEO").
1452
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:71
1453
- msgid "%1$s Lite vs. Pro"
1454
  msgstr ""
1455
 
1456
- # Translators: 1 - The plugin name ("All in One SEO").
1457
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:73
1458
- msgid ""
1459
- "Get the most out of %1$s by upgrading to Pro and unlocking all of the "
1460
- "powerful features."
1461
  msgstr ""
1462
 
1463
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:76
1464
- msgid "Features:"
1465
  msgstr ""
1466
 
1467
- # Translators: 1 - Opening bold tag, 2 - Closing bold tag, 3 - "Pro", 4 - Opening bold tag, 5 - A percentage ("50%"), 6 - Closing bold tag.
1468
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:86
1469
- msgid ""
1470
- "%1$sBonus:%2$s You can upgrade to the %3$s plan today and %4$ssave %5$s "
1471
- "off%6$s (discount auto-applied)."
1472
  msgstr ""
1473
 
1474
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:98
1475
- msgid "Search Engine Optimization (SEO)"
1476
  msgstr ""
1477
 
1478
- # Translators: 1 - The plugin name ("All in One SEO"), 2 - Same as previous.
1479
- #: src/vue/pages/about/views/AboutUs.vue:119
1480
- msgid ""
1481
- "Welcome to %1$s, the original SEO plugin for WordPress. At %2$s, we build "
1482
- "software that helps you rank your website in search results and gain "
1483
- "organic traffic."
1484
  msgstr ""
1485
 
1486
- #: src/vue/pages/about/views/AboutUs.vue:120
1487
- msgid ""
1488
- "Over the years, we found that most other WordPress SEO plugins were "
1489
- "bloated, buggy, slow, and very hard to use. So we designed our plugin as an "
1490
- "easy and powerful tool."
1491
  msgstr ""
1492
 
1493
- #: src/vue/pages/about/views/AboutUs.vue:121
1494
- msgid ""
1495
- "Our goal is to take the pain out of optimizing your website for search "
1496
- "engines."
1497
  msgstr ""
1498
 
1499
- # Translators: 1 - The plugin name ("All in One SEO"), 2 - Company name ("Awesome Motive").
1500
- #: src/vue/pages/about/views/AboutUs.vue:123
1501
- msgid ""
1502
- "%1$s is brought to you by %2$s, the same team that’s behind the largest "
1503
- "WordPress resource site, WPBeginner, the most popular lead-generation "
1504
- "software, OptinMonster, the best WordPress analytics plugin, "
1505
- "MonsterInsights and many more."
1506
  msgstr ""
1507
 
1508
- #: src/vue/pages/about/views/AboutUs.vue:124
1509
- msgid ""
1510
- "Yup, we know a thing or two about building awesome products that customers "
1511
- "love."
1512
  msgstr ""
1513
 
1514
- # Translators: 1 - Company name ("Awesome Motive").
1515
- #: src/vue/pages/about/views/AboutUs.vue:126
1516
- msgid "The %1$s Team"
1517
  msgstr ""
1518
 
1519
- #: src/vue/pages/about/views/AboutUs.vue:130
1520
- msgid "Install Plugin"
1521
  msgstr ""
1522
 
1523
- #: src/vue/pages/about/views/AboutUs.vue:131
1524
- msgid "Activate"
1525
  msgstr ""
1526
 
1527
- #: src/vue/components/common/core/FeatureCard.vue:130
1528
- msgid "Manage"
1529
  msgstr ""
1530
 
1531
- #: src/vue/pages/about/views/AboutUs.vue:134
1532
- msgid "Status:"
1533
  msgstr ""
1534
 
1535
- #: src/vue/components/common/core/FeatureCard.vue:125
1536
- msgid "Activated"
1537
  msgstr ""
1538
 
1539
- #: src/vue/components/common/core/FeatureCard.vue:126
1540
- msgid "Deactivated"
1541
  msgstr ""
1542
 
1543
- #: src/vue/components/common/core/FeatureCard.vue:127
1544
- msgid "Not Installed"
1545
  msgstr ""
1546
 
1547
- #: src/vue/pages/about/views/AboutUs.vue:145
1548
- msgid ""
1549
- "Our high-converting optin forms like Exit-Intent® popups, Fullscreen "
1550
- "Welcome Mats, and Scroll boxes help you dramatically boost conversions and "
1551
- "get more email subscribers."
1552
  msgstr ""
1553
 
1554
- #: src/vue/pages/about/views/AboutUs.vue:154
1555
- msgid ""
1556
- "WPForms allows you to create beautiful contact forms for your site in "
1557
- "minutes, not hours!"
1558
  msgstr ""
1559
 
1560
- #: src/vue/pages/about/views/AboutUs.vue:171
1561
- msgid ""
1562
- "MonsterInsights makes it “effortless” to properly connect your WordPress "
1563
- "site with Google Analytics, so you can start making data-driven decisions "
1564
- "to grow your business."
1565
  msgstr ""
1566
 
1567
- #: src/vue/pages/about/views/AboutUs.vue:188
1568
- msgid ""
1569
- "The ExactMetrics Google Analytics for WordPress plugin helps you properly "
1570
- "setup all the powerful Google Analytics tracking features without writing "
1571
- "any code or hiring a developer."
1572
  msgstr ""
1573
 
1574
- #: src/vue/pages/about/views/AboutUs.vue:205
1575
- msgid ""
1576
- "Make sure your website's emails reach the inbox. Our goal is to make email "
1577
- "deliverability easy and reliable. Trusted by over 2 million websites."
1578
  msgstr ""
1579
 
1580
- #: src/vue/pages/about/views/AboutUs.vue:222
1581
- msgid ""
1582
- "Create a simple Coming Soon Page, Under Construction or Maintenance Mode "
1583
- "Page. Work on your site in private while visitors see a “Coming Soon” or "
1584
- "“Maintenance Mode” page."
1585
  msgstr ""
1586
 
1587
- #: src/vue/pages/about/views/AboutUs.vue:239
1588
- msgid ""
1589
- "TrustPulse uses FOMO (Fear of Missing Out) to boost your sales and "
1590
- "conversions with social proof notifications. Use it to boost sales on your "
1591
- "Woocommerce store, increase signups on your membership site, get more email "
1592
- "subscribers, and more."
1593
  msgstr ""
1594
 
1595
- #: src/vue/pages/about/views/AboutUs.vue:248
1596
- msgid ""
1597
- "Turn your visitors into brand ambassadors! Easily grow your email list, "
1598
- "website traffic, and social media followers with powerful viral giveaways & "
1599
- "contests."
1600
  msgstr ""
1601
 
1602
- #: src/vue/pages/about/views/AboutUs.vue:265
1603
- msgid ""
1604
- "Display completely customizable Facebook feeds of any public Facebook page "
1605
- "or Group."
1606
  msgstr ""
1607
 
1608
- #: src/vue/pages/about/views/AboutUs.vue:282
1609
- msgid ""
1610
- "Display beautifully clean, customizable, and responsive Instagram feeds "
1611
- "from multiple Instagram accounts."
1612
  msgstr ""
1613
 
1614
- #: src/vue/pages/about/views/AboutUs.vue:299
1615
- msgid ""
1616
- "Display completely customizable, responsive and search engine crawlable "
1617
- "Twitter feeds on your website."
1618
  msgstr ""
1619
 
1620
- #: src/vue/pages/about/views/AboutUs.vue:316
1621
- msgid ""
1622
- "The Feeds for YouTube plugin allows you to display customizable YouTube "
1623
- "feeds from any YouTube channel."
1624
  msgstr ""
1625
 
1626
- #: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:68
1627
- msgid "Relocate Site"
1628
  msgstr ""
1629
 
1630
- #: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:69
1631
- msgid ""
1632
- "Would you like to relocate your entire site to a new domain? Everything "
1633
- "will be redirected except WordPress login and admin. Enabling this option "
1634
- "will disable any site aliases or canonical settings."
1635
  msgstr ""
1636
 
1637
- #: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:70
1638
- msgid ""
1639
- "By enabling this option you disabled any site aliases or canonical "
1640
- "settings. Enter a domain to redirect everything, except WordPress login and "
1641
- "admin."
1642
  msgstr ""
1643
 
1644
- #: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:71
1645
- msgid "Your old site address"
1646
  msgstr ""
1647
 
1648
- #: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:72
1649
- msgid "Your new site address"
 
1650
  msgstr ""
1651
 
1652
- #: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:73
1653
- msgid "Relocate to domain"
1654
  msgstr ""
1655
 
1656
- # Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO").
1657
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:175
1658
- msgid "%1$s was successfully imported!"
1659
  msgstr ""
1660
 
1661
- # Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO").
1662
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:179
1663
- msgid "An error occurred while importing %1$s. Please try again."
1664
  msgstr ""
1665
 
1666
- # Translators: 1 - The name of the plugin (e.g. "Yoast SEO"), 2 - The version of the plugin (e.g. "10.2.3").
1667
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:222
1668
- msgid ""
1669
- "We do not support importing from the currently installed version of %1$s "
1670
- "(%2$s). Please upgrade to the latest version and try again."
1671
  msgstr ""
1672
 
1673
- #: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:75
1674
- msgid "Import Redirects From Other Plugins"
1675
  msgstr ""
1676
 
1677
- # Translators: 1 - The plugin short name ("AIOSEO").
1678
- #: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:77
1679
- msgid "Choose a plugin to import redirects directly into %1$s."
1680
  msgstr ""
1681
 
1682
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:125
1683
- msgid "Select a plugin..."
1684
  msgstr ""
1685
 
1686
- #: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:80
1687
- msgid "All Redirects"
1688
  msgstr ""
1689
 
1690
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:128
1691
- msgid "not installed"
1692
  msgstr ""
1693
 
1694
- #: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:92
1695
- msgid "Site Aliases"
1696
  msgstr ""
1697
 
1698
- #: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:93
1699
- msgid ""
1700
- "Site aliases are disabled because you have relocated your site to another "
1701
- "domain."
1702
  msgstr ""
1703
 
1704
- #: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:94
1705
- msgid ""
1706
- "A site alias is another domain that you want to be redirected to this site. "
1707
- "For example, an old domain, or a subdomain. This will redirect all URLs, "
1708
- "including WordPress login and admin. You will need to configure your system "
1709
- "(DNS and server) to pass requests for these domains to this WordPress "
1710
- "install."
1711
  msgstr ""
1712
 
1713
- #: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:95
1714
- msgid "Aliased Domain"
1715
  msgstr ""
1716
 
1717
- #: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:96
1718
- msgid "Alias"
1719
  msgstr ""
1720
 
1721
- #: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:97
1722
- msgid "Add New"
1723
  msgstr ""
1724
 
1725
- #: src/vue/pages/tools/views/RobotsEditor.vue:259
1726
- #: src/vue/pages/tools/views/partials/BackupSettings.vue:146
1727
- msgid "Delete"
1728
  msgstr ""
1729
 
1730
- #: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:99
1731
- msgid "Add an alias redirect by clicking in 'Add New'."
1732
  msgstr ""
1733
 
1734
- # Translators: 1 - The plugin short name ("AIOSEO").
1735
- #: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:82
1736
- msgid "Import Redirects from %1$s File"
1737
  msgstr ""
1738
 
1739
- #: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:83
1740
- msgid "Import from a JSON file..."
1741
  msgstr ""
1742
 
1743
- #: src/vue/pages/tools/views/partials/ImportAioseo.vue:84
1744
- msgid "Choose a File"
1745
  msgstr ""
1746
 
1747
- #: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:85
1748
- msgid "Imported redirects will overwrite existing redirects and will not be merged."
1749
  msgstr ""
1750
 
1751
- #: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:87
1752
- msgid "A JSON file is required to import redirects."
 
1753
  msgstr ""
1754
 
1755
- #: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:88
1756
- msgid "Success! Your redirects have been imported."
 
 
1757
  msgstr ""
1758
 
1759
- #: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:89
1760
- msgid ""
1761
- "There was an error importing your redirects. Please make sure you are "
1762
- "uploading the correct file or it is in the proper format."
1763
- msgstr ""
1764
-
1765
- #: src/vue/pages/redirects/views/lite/Redirects.vue:68
1766
- msgid "Add New Redirection"
1767
  msgstr ""
1768
 
1769
- #: src/vue/pages/redirects/views/lite/Redirects.vue:69
1770
- msgid "Search URLs"
 
 
 
1771
  msgstr ""
1772
 
1773
- #: src/vue/pages/redirects/views/pro/Redirects.vue:217
1774
- msgid "Check Redirect"
 
 
1775
  msgstr ""
1776
 
1777
- #: src/vue/pages/redirects/views/pro/Redirects.vue:219
1778
- msgid "Are you sure you want to delete this redirect?"
 
1779
  msgstr ""
1780
 
1781
- #: src/vue/pages/redirects/views/pro/Redirects.vue:220
1782
- msgid "Are you sure you want to delete these redirects?"
1783
  msgstr ""
1784
 
1785
- #: src/vue/pages/tools/views/partials/BackupSettings.vue:142
1786
- msgid "This action cannot be undone."
1787
  msgstr ""
1788
 
1789
- #: src/vue/pages/redirects/views/pro/Redirects.vue:222
1790
- msgid "Yes, I want to delete this redirect"
1791
  msgstr ""
1792
 
1793
- #: src/vue/pages/redirects/views/pro/Redirects.vue:223
1794
- msgid "Yes, I want to delete these redirects"
1795
  msgstr ""
1796
 
1797
- #: src/vue/pages/tools/views/partials/BackupSettings.vue:141
1798
- msgid "No, I changed my mind"
 
 
1799
  msgstr ""
1800
 
1801
- #: src/vue/pages/redirects/views/pro/Redirects.vue:225
1802
- msgid "Rules"
 
 
1803
  msgstr ""
1804
 
1805
- #: src/vue/pages/redirects/views/pro/Redirects.vue:226
1806
- msgid "Custom Rules"
 
 
1807
  msgstr ""
1808
 
1809
- #: src/vue/components/common/core/AddRedirectionUrl.vue:164
1810
- msgid "Regex"
1811
  msgstr ""
1812
 
1813
- #: src/vue/pages/redirects/views/pro/Redirects.vue:230
1814
- msgid "Enable"
1815
  msgstr ""
1816
 
1817
- #: src/vue/pages/redirects/views/pro/Redirects.vue:231
1818
- msgid "Disable"
1819
  msgstr ""
1820
 
1821
- #: src/vue/pages/redirects/views/pro/Redirects.vue:232
1822
- msgid "Reset Hits"
1823
  msgstr ""
1824
 
1825
- #: src/vue/pages/redirects/views/lite/Redirects.vue:91
1826
- msgid "Source URL"
 
1827
  msgstr ""
1828
 
1829
- #: src/vue/pages/redirects/views/lite/Redirects.vue:95
1830
- msgid "Target URL"
 
1831
  msgstr ""
1832
 
1833
- #: src/vue/pages/redirects/views/lite/Redirects.vue:99
1834
- msgid "Hits"
1835
  msgstr ""
1836
 
1837
- #: src/vue/pages/local-seo/views/lite/Locations.vue:104
1838
- #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:53
1839
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:122
1840
- #: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:131
1841
- msgid "Type"
1842
  msgstr ""
1843
 
1844
- #: src/vue/pages/redirects/views/lite/Redirects.vue:109
1845
- msgid "Group"
 
1846
  msgstr ""
1847
 
1848
- #: src/vue/pages/redirects/views/lite/Redirects.vue:124
1849
- msgid "Filter by Group"
 
1850
  msgstr ""
1851
 
1852
- #: src/vue/pages/redirects/views/lite/Redirects.vue:126
1853
- msgid "All Groups"
 
1854
  msgstr ""
1855
 
1856
- #: src/vue/pages/redirects/views/pro/Redirects.vue:436
1857
- #: src/vue/pages/redirects/views/pro/RedirectsActivate.vue:181
1858
- msgid "Pass through"
1859
  msgstr ""
1860
 
1861
- #: src/vue/pages/redirects/views/lite/Redirects.vue:70
1862
- msgid "Upgrade to Pro and Unlock Redirects"
1863
  msgstr ""
1864
 
1865
- #: src/vue/pages/redirects/views/lite/Redirects.vue:71
1866
- msgid "Redirects are only available for licensed %1$s %2$s users."
1867
  msgstr ""
1868
 
1869
- #: src/vue/pages/redirects/views/lite/Redirects.vue:72
1870
- msgid "Fast Server Redirects"
1871
  msgstr ""
1872
 
1873
- #: src/vue/pages/redirects/views/lite/Redirects.vue:73
1874
- msgid "Automatic Redirects"
1875
  msgstr ""
1876
 
1877
- #: src/vue/pages/redirects/views/lite/Redirects.vue:74
1878
- msgid "Redirect Monitoring"
1879
  msgstr ""
1880
 
1881
- #: src/vue/pages/redirects/views/lite/Redirects.vue:75
1882
- msgid "404 Monitoring"
1883
  msgstr ""
1884
 
1885
- #: src/vue/pages/redirects/views/lite/Redirects.vue:76
1886
- msgid "Full Site Redirects"
1887
  msgstr ""
1888
 
1889
- #: src/vue/pages/redirects/views/lite/Redirects.vue:78
1890
- msgid ""
1891
- "Our Redirection Manager allows you to easily create and manage redirects "
1892
- "for your broken links to avoid confusing search engines and users, as well "
1893
- "as losing valuable backlinks. It even automatically sends users and search "
1894
- "engines from your old URLs to your new ones."
1895
  msgstr ""
1896
 
1897
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:16
1898
- msgid "This feature requires one of the following plans:"
1899
  msgstr ""
1900
 
1901
- #: src/vue/pages/settings/views/WebmasterTools.vue:249
1902
- msgid "Click here"
1903
  msgstr ""
1904
 
1905
- # Translators: 1 - The addon or plugin name.
1906
- #: src/vue/pages/settings/views/WebmasterTools.vue:251
1907
- msgid "Install %1$s"
 
 
 
 
1908
  msgstr ""
1909
 
1910
- # Translators: 1 - The name of one of our partner plugins.
1911
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:186
1912
- msgid "%1$s is Installed & Active"
1913
  msgstr ""
1914
 
1915
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:187
1916
- msgid "Launch Setup Wizard"
1917
  msgstr ""
1918
 
1919
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:198
1920
- msgid "The Best Google Analytics Plugin for WordPress"
 
1921
  msgstr ""
1922
 
1923
- # Translators: 1 - The name of one of our partner plugins, 2 - The name of one of our partner plugins.
1924
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:200
1925
- msgid ""
1926
- "%1$s connects AIOSEO to Google Analytics, providing a powerful integration. "
1927
- "%2$s is a sister company of AIOSEO."
1928
  msgstr ""
1929
 
1930
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:201
1931
- msgid "Quick & Easy Google Analytics Setup"
1932
  msgstr ""
1933
 
1934
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:202
1935
- msgid "Google Analytics Dashboard + Real Time Stats"
1936
  msgstr ""
1937
 
1938
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:203
1939
- msgid "Google Analytics Enhanced Ecommerce Tracking"
 
 
1940
  msgstr ""
1941
 
1942
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:204
1943
- msgid "Universal Tracking for AMP and Instant Articles"
 
 
1944
  msgstr ""
1945
 
1946
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:205
1947
- msgid "Install &"
 
 
 
 
1948
  msgstr ""
1949
 
1950
- # Translators: 1 - The name of one of our partner plugins.
1951
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:207
1952
- msgid "Activate %1$s"
 
1953
  msgstr ""
1954
 
1955
- # Translators: 1 - The name of one of our partner plugins.
1956
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:209
1957
  msgid ""
1958
- "%1$s shows you exactly which content gets the most visits, so you can "
1959
- "analyze and optimize it for higher conversions."
 
 
1960
  msgstr ""
1961
 
1962
- # Translators: 1 - The name of one of our partner plugins.
1963
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:213
1964
- msgid "Setup %1$s"
1965
  msgstr ""
1966
 
1967
- # Translators: 1 - The name of one of our partner plugins.
1968
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:217
1969
- msgid "%1$s has an intuitive setup wizard to guide you through the setup process."
1970
  msgstr ""
1971
 
1972
- #: src/vue/mixins/TruSeoScore.js:10
1973
- msgid "Excellent!"
1974
  msgstr ""
1975
 
1976
- #: src/vue/mixins/SeoSiteScore.js:11
1977
- msgid "to see your Site Score."
1978
  msgstr ""
1979
 
1980
- #: src/vue/mixins/SeoSiteScore.js:12
1981
- msgid "to analyze a competitor site."
 
 
 
1982
  msgstr ""
1983
 
1984
- #: src/vue/mixins/SeoSiteScore.js:13
1985
- msgid "A valid license key is required"
 
 
 
1986
  msgstr ""
1987
 
1988
- # Translators: 1 - HTML Line break tag.
1989
- #: src/vue/mixins/TruSeoScore.js:6
1990
- msgid "We've got some%1$swork to do!"
 
 
 
1991
  msgstr ""
1992
 
1993
- # Translators: 1 - HTML Line break tag.
1994
- #: src/vue/mixins/TruSeoScore.js:8
1995
- msgid "Needs%1$sImprovement!"
1996
- msgstr ""
1997
-
1998
- #: src/vue/mixins/TruSeoScore.js:9
1999
- msgid "Very Good!"
2000
- msgstr ""
2001
-
2002
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:10
2003
- msgid "Open Video Sitemap"
2004
  msgstr ""
2005
 
2006
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:13
2007
- msgid "Upgrade to Pro and Unlock Video Sitemaps"
2008
  msgstr ""
2009
 
2010
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
2011
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:15
2012
- msgid "Video Sitemaps are only available for licensed %1$s %2$s users."
2013
  msgstr ""
2014
 
2015
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:5
2016
- msgid "Custom Field Support"
2017
  msgstr ""
2018
 
2019
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:6
2020
- msgid "Exclude Pages/Posts"
2021
  msgstr ""
2022
 
2023
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:163
2024
  msgid ""
2025
- "The Video Sitemap works in much the same way as the XML Sitemap module, it "
2026
- "generates an XML Sitemap specifically for video content on your site. "
2027
- "Search engines use this information to display rich snippet information in "
2028
- "search results."
2029
- msgstr ""
2030
-
2031
- #: src/vue/mixins/ToolsSettings.js:41
2032
- msgid "Robots.txt"
2033
  msgstr ""
2034
 
2035
- #: src/vue/pages/tools/router/paths.js:37
2036
- #: src/vue/pages/tools/views/BadBotBlocker.vue:89
2037
- msgid "Bad Bot Blocker"
2038
  msgstr ""
2039
 
2040
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:10
2041
- msgid "Open News Sitemap"
2042
  msgstr ""
2043
 
2044
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:13
2045
- msgid "Upgrade to Pro and Unlock News Sitemaps"
2046
  msgstr ""
2047
 
2048
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
2049
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:15
2050
- msgid "News Sitemaps are only available for licensed %1$s %2$s users."
2051
  msgstr ""
2052
 
2053
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:6
2054
- msgid "Set Publication Name"
2055
  msgstr ""
2056
 
2057
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:167
2058
- msgid ""
2059
- "Our Google News Sitemap lets you control which content you submit to Google "
2060
- "News and only contains articles that were published in the last 48 hours. "
2061
- "In order to submit a News Sitemap to Google, you must have added your site "
2062
- "to Google’s Publisher Center and had it approved."
2063
  msgstr ""
2064
 
2065
- #: src/vue/mixins/Wizard.js:6
2066
- msgid "Skip this Step"
2067
  msgstr ""
2068
 
2069
- #: src/vue/mixins/Wizard.js:7
2070
- msgid "Go Back"
2071
  msgstr ""
2072
 
2073
- #: src/vue/mixins/Wizard.js:8
2074
- msgid "Save and Continue"
2075
  msgstr ""
2076
 
2077
- #: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:90
2078
- msgid "Critical Issues"
 
 
 
2079
  msgstr ""
2080
 
2081
- #: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:100
2082
- msgid "Recommended Improvements"
 
 
 
 
 
2083
  msgstr ""
2084
 
2085
- #: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:110
2086
- msgid "Good Results"
2087
  msgstr ""
2088
 
2089
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:67
2090
- #: src/vue/components/common/core/SiteScoreCompetitor.vue:79
2091
- msgid "Complete Site Audit Checklist"
2092
  msgstr ""
2093
 
2094
- #: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:30
2095
- msgid "All Good!"
2096
  msgstr ""
2097
 
2098
- #: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:29
2099
- msgid "Errors"
2100
  msgstr ""
2101
 
2102
- # Translators: 1 - A number, 2 - A number.
2103
- #: src/vue/mixins/MaxCounts.js:6
2104
- msgid "%1$s out of %2$s max recommended characters."
 
 
2105
  msgstr ""
2106
 
2107
- #: src/vue/mixins/Image.js:119
2108
- msgid "Choose Image"
 
 
 
2109
  msgstr ""
2110
 
2111
- #: src/vue/mixins/Image.js:55
2112
- msgid "Default Image (Set Below)"
2113
  msgstr ""
2114
 
2115
- #: src/vue/mixins/Image.js:56
2116
- msgid "Featured Image"
2117
  msgstr ""
2118
 
2119
- #: src/vue/mixins/Image.js:57
2120
- msgid "Attached Image"
2121
  msgstr ""
2122
 
2123
- #: src/vue/mixins/Image.js:58
2124
- msgid "First Image in Content"
2125
  msgstr ""
2126
 
2127
- #: src/vue/mixins/Image.js:59
2128
- msgid "Image from Custom Field"
 
 
2129
  msgstr ""
2130
 
2131
- #: src/vue/mixins/Image.js:60
2132
- msgid "Post Author Image"
 
 
2133
  msgstr ""
2134
 
2135
- #: src/vue/mixins/Image.js:61
2136
- msgid "First Available Image"
2137
  msgstr ""
2138
 
2139
- #: src/vue/mixins/Image.js:68
2140
- msgid "Default Image Source (Set in Social Networks)"
 
 
2141
  msgstr ""
2142
 
2143
- #: src/vue/mixins/Image.js:71
2144
- msgid "Custom Image"
 
 
2145
  msgstr ""
2146
 
2147
- #: src/vue/mixins/License.js:11
2148
- msgid "Your license has been disabled."
 
 
 
 
2149
  msgstr ""
2150
 
2151
- #: src/vue/mixins/License.js:15
2152
- msgid "Your license key is invalid."
 
 
 
 
2153
  msgstr ""
2154
 
2155
- #: src/vue/mixins/License.js:4
2156
- msgid "You have not yet added a license key."
2157
  msgstr ""
2158
 
2159
- #: src/vue/mixins/License.js:7
2160
- msgid "Your license has expired."
2161
  msgstr ""
2162
 
2163
- #: src/vue/mixins/Notifications.js:6
2164
- msgid "Notifications"
2165
  msgstr ""
2166
 
2167
- #: src/vue/mixins/Notifications.js:7
2168
- msgid "New Notifications"
 
 
2169
  msgstr ""
2170
 
2171
- #: src/vue/mixins/Notifications.js:8
2172
- msgid "Active Notifications"
 
 
2173
  msgstr ""
2174
 
2175
- #: src/vue/pages/redirects/views/pro/Logs404.vue:194
2176
- msgid "Add Redirects"
2177
  msgstr ""
2178
 
2179
- #: src/vue/pages/redirects/views/pro/Logs404.vue:198
2180
- msgid "Add Redirect"
2181
  msgstr ""
2182
 
2183
- #: src/vue/pages/redirects/views/pro/Logs404.vue:199
2184
- msgid "Add New Redirections"
 
2185
  msgstr ""
2186
 
2187
- #: src/vue/pages/redirects/views/pro/Logs404.vue:240
2188
- msgid "Redirect"
 
2189
  msgstr ""
2190
 
2191
- #: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:77
2192
- msgid "Canonical Settings"
 
 
 
2193
  msgstr ""
2194
 
2195
- #: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:78
 
2196
  msgid ""
2197
- "Canonical Settings are disabled because you have relocated your site to "
2198
- "another domain."
2199
  msgstr ""
2200
 
2201
- #: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:79
2202
- msgid "Your current site address"
2203
  msgstr ""
2204
 
2205
- #: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:81
2206
- msgid "Redirect from HTTP to HTTPS"
2207
  msgstr ""
2208
 
2209
- #: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:82
2210
- msgid "Force a redirect from HTTP to HTTPS"
2211
  msgstr ""
2212
 
2213
- #: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:83
2214
- msgid "Preferred domain"
 
2215
  msgstr ""
2216
 
2217
- # Translators: 1 - Opening link tag, 2 - Closing link tag.
2218
- #: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:85
2219
  msgid ""
2220
- "You'll need to update your Site Address URL to match your new site address. "
2221
- "%1$sUpdate Site Address URL%2$s."
 
2222
  msgstr ""
2223
 
2224
- # Translators: 1 - Opening strong tag, 2 - Closing strong tag., 3 - Doc link
2225
- #: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:87
2226
  msgid ""
2227
- "%1$sWarning:%2$s ensure your HTTPS is working before forcing a redirect. "
2228
- "%3$s"
 
2229
  msgstr ""
2230
 
2231
- #: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:91
2232
- msgid "Leave domain as-is"
2233
  msgstr ""
2234
 
2235
- #: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:95
2236
- msgid "Add www to domain"
2237
  msgstr ""
2238
 
2239
- #: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:99
2240
- msgid "Remove www from domain"
2241
  msgstr ""
2242
 
2243
- #: src/vue/pages/redirects/views/pro/Settings.vue:358
2244
- msgid "Redirect Settings"
2245
  msgstr ""
2246
 
2247
- #: src/vue/pages/redirects/views/pro/Settings.vue:359
2248
- msgid "Redirect Method"
 
 
 
 
2249
  msgstr ""
2250
 
2251
- # Translators: 1 - Learn more link.
2252
- #: src/vue/pages/redirects/views/pro/Settings.vue:361
2253
- msgid "We cannot detect your web server. Server redirects are disabled. %1$s"
2254
  msgstr ""
2255
 
2256
- #: src/vue/pages/redirects/views/pro/Settings.vue:362
2257
- msgid "PHP"
2258
  msgstr ""
2259
 
2260
- #: src/vue/pages/redirects/views/pro/Settings.vue:363
2261
- msgid "Web Server"
2262
  msgstr ""
2263
 
2264
- #: src/vue/pages/redirects/views/pro/Settings.vue:365
2265
- msgid "IP Logging"
 
2266
  msgstr ""
2267
 
2268
- #: src/vue/pages/redirects/views/pro/Settings.vue:366
2269
- msgid "HTTP Cache Header"
2270
  msgstr ""
2271
 
2272
- #: src/vue/pages/redirects/views/pro/Settings.vue:367
2273
- msgid "Redirect Defaults"
2274
  msgstr ""
2275
 
2276
- #: src/vue/pages/tools/views/DatabaseTools.vue:271
2277
- msgid "Redirect Logs"
 
 
 
2278
  msgstr ""
2279
 
2280
- #: src/vue/pages/redirects/views/pro/Settings.vue:370
2281
- msgid "Log External Redirects"
 
 
 
2282
  msgstr ""
2283
 
2284
- #: src/vue/pages/redirects/views/pro/Settings.vue:371
2285
- msgid "Log HTTP Header Information"
2286
  msgstr ""
2287
 
2288
- #: src/vue/pages/redirects/views/pro/Settings.vue:372
2289
- msgid "Enable Redirect Cache"
2290
  msgstr ""
2291
 
2292
- #: src/vue/components/common/core/AddRedirectionUrl.vue:163
2293
- msgid "Ignore Case"
 
2294
  msgstr ""
2295
 
2296
- #: src/vue/components/common/core/AddRedirectionUrl.vue:162
2297
- msgid "Ignore Slash"
 
 
2298
  msgstr ""
2299
 
2300
- #: src/vue/pages/redirects/views/pro/Settings.vue:375
2301
- msgid "Cache Redirects"
2302
  msgstr ""
2303
 
2304
- #: src/vue/pages/redirects/views/pro/Settings.vue:376
2305
- msgid "Object Cache"
 
 
2306
  msgstr ""
2307
 
2308
- # Translators: 1 - Opening link tag, 2 - Closing link tag.
2309
- #: src/vue/pages/redirects/views/pro/Settings.vue:378
2310
- msgid "%1$sGDPR / Privacy information%2$s"
2311
  msgstr ""
2312
 
2313
- #: src/vue/pages/redirects/views/pro/Settings.vue:379
2314
- msgid "Log IP Addresses"
2315
  msgstr ""
2316
 
2317
- #: src/vue/pages/redirects/views/pro/Settings.vue:380
2318
- msgid "Redirect Type"
 
 
2319
  msgstr ""
2320
 
2321
- #: src/vue/pages/redirects/views/pro/Settings.vue:381
2322
- msgid "Query Parameters"
2323
  msgstr ""
2324
 
2325
- # Translators: 1 - The plugin short name ("AIOSEO").
2326
- #: src/vue/pages/redirects/views/pro/Settings.vue:383
2327
  msgid ""
2328
- "Log redirects that happen on your site even if the redirect happened "
2329
- "outside of %1$s"
2330
- msgstr ""
2331
-
2332
- #: src/vue/pages/redirects/views/pro/Settings.vue:384
2333
- msgid "Capture HTTP header information with the logs (except for cookies)."
2334
  msgstr ""
2335
 
2336
- # Translators: 1 - "NGINX".
2337
- #: src/vue/pages/redirects/views/pro/Settings.vue:386
2338
- msgid "Export %1$s config file"
2339
  msgstr ""
2340
 
2341
- # Translators: 1 - ".htaccess".
2342
- #: src/vue/pages/redirects/views/pro/Settings.vue:388
2343
- msgid "Export %1$s file"
2344
  msgstr ""
2345
 
2346
- # Translators: 1 - ".htaccess".
2347
- #: src/vue/pages/redirects/views/pro/Settings.vue:390
2348
- msgid "Auto-write to %1$s"
2349
  msgstr ""
2350
 
2351
- #: src/vue/pages/redirects/views/pro/Settings.vue:393
2352
- msgid "Monitor Trash"
2353
  msgstr ""
2354
 
2355
- #: src/vue/pages/redirects/views/pro/Settings.vue:394
2356
- msgid ""
2357
- "This allows you to monitor changes to post types and automatically add "
2358
- "redirects based on URL changes. These will show up with a group called "
2359
- "\"Modified Posts\"."
2360
  msgstr ""
2361
 
2362
- #: src/vue/pages/redirects/views/pro/Settings.vue:397
2363
- msgid "1 hour"
2364
  msgstr ""
2365
 
2366
- #: src/vue/pages/redirects/views/pro/Settings.vue:398
2367
- msgid "1 day"
2368
  msgstr ""
2369
 
2370
- #: src/vue/pages/redirects/views/pro/Settings.vue:399
2371
- msgid "1 week"
 
2372
  msgstr ""
2373
 
2374
- #: src/vue/pages/redirects/views/pro/Settings.vue:400
2375
- msgid "Forever"
 
2376
  msgstr ""
2377
 
2378
- #: src/vue/pages/redirects/views/pro/Settings.vue:403
2379
- msgid "Full Logging"
2380
  msgstr ""
2381
 
2382
- #: src/vue/pages/redirects/views/pro/Settings.vue:404
2383
- msgid "Anonymize IP"
2384
  msgstr ""
2385
 
2386
- #: src/vue/pages/redirects/views/pro/Settings.vue:411
2387
- msgid "%1$s Server has been detected."
 
 
 
2388
  msgstr ""
2389
 
2390
- # Translators: 1 - A code snippet.
2391
- #: src/vue/pages/redirects/views/pro/Settings.vue:427
2392
- msgid "Make sure you include the following in your server configuration file: %1$s"
 
 
2393
  msgstr ""
2394
 
2395
- #: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:110
2396
- msgid "Complete Data (JSON)"
 
 
 
 
2397
  msgstr ""
2398
 
2399
- #: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:111
2400
- msgid "Apache Redirects (.htaccess)"
 
 
 
 
 
2401
  msgstr ""
2402
 
2403
- #: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:112
2404
- msgid "Nginx Redirects (.nginx)"
 
2405
  msgstr ""
2406
 
2407
- #: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:115
2408
- msgid "Export Redirects"
 
 
 
2409
  msgstr ""
2410
 
2411
- #: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:116
 
2412
  msgid ""
2413
- "Export to JSON, .htaccess or .nginx. The JSON format contains full "
2414
- "information (and can be re-imported), while the other formats only contain "
2415
- "partial information relavant to that format."
2416
  msgstr ""
2417
 
2418
- #: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:117
2419
- msgid "Export All Redirects"
2420
  msgstr ""
2421
 
2422
- #: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:119
2423
- msgid "Export Redirect Logs"
2424
  msgstr ""
2425
 
2426
- #: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:120
2427
- msgid "Export 404 Logs"
2428
- msgstr ""
2429
-
2430
- #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:143
2431
- msgid "HTTP Headers"
2432
  msgstr ""
2433
 
2434
- #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:144
2435
  msgid ""
2436
- "Site headers are added across your site, including redirects. Redirect "
2437
- "headers are only added to redirects."
 
 
 
2438
  msgstr ""
2439
 
2440
- #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:145
2441
- msgid "Location"
2442
  msgstr ""
2443
 
2444
- #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:146
2445
- msgid "Header"
2446
  msgstr ""
2447
 
2448
- #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:147
2449
- msgid "Value"
2450
  msgstr ""
2451
 
2452
- #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:149
2453
- msgid "Add Header"
2454
  msgstr ""
2455
 
2456
- #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:150
2457
- msgid "Add Security Presets"
 
 
 
2458
  msgstr ""
2459
 
2460
- #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:151
2461
- msgid "Add CORS Presets"
 
2462
  msgstr ""
2463
 
2464
- #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:152
2465
- msgid "Add headers by clicking in the options below."
 
2466
  msgstr ""
2467
 
2468
- #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:153
2469
- msgid "Select a header"
2470
  msgstr ""
2471
 
2472
- #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:165
2473
- msgid "Site"
2474
  msgstr ""
2475
 
2476
- #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:166
2477
- msgid "site"
 
 
2478
  msgstr ""
2479
 
2480
- #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:170
2481
- msgid "redirect"
 
 
 
 
2482
  msgstr ""
2483
 
2484
- #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:181
2485
- msgid "Custom"
 
 
 
2486
  msgstr ""
2487
 
2488
- # Translators: 1 - The plugin short name ("AIOSEO").
2489
- #: src/vue/pages/setup-wizard/views/Welcome.vue:42
2490
- msgid "Welcome to the %1$s Setup Wizard!"
2491
  msgstr ""
2492
 
2493
- # Translators: 1 - The plugin short name ("AIOSEO").
2494
- #: src/vue/pages/setup-wizard/views/Welcome.vue:44
2495
- msgid ""
2496
- "%1$s makes it easy to configure your site's SEO settings without the need "
2497
- "to hire an expert. And it takes less than 10 minutes too!"
2498
  msgstr ""
2499
 
2500
- #: src/vue/pages/setup-wizard/views/Welcome.vue:45
2501
- msgid "Let's Get Started"
2502
  msgstr ""
2503
 
2504
- #: src/vue/pages/setup-wizard/views/Welcome.vue:46
2505
- msgid "Go back to the Dashboard"
2506
  msgstr ""
2507
 
2508
- #: src/vue/pages/redirects/views/Redirects.vue:31
2509
- msgid "Redirects Settings"
2510
  msgstr ""
2511
 
2512
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:112
2513
- msgid "Title Attribute Format"
 
 
2514
  msgstr ""
2515
 
2516
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:113
2517
- msgid "Strip Punctuation for Title Attributes"
 
 
 
2518
  msgstr ""
2519
 
2520
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:114
2521
- msgid "Click on the tags below to insert variables into your title attribute."
2522
  msgstr ""
2523
 
2524
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:115
2525
- msgid "Alt Tag Attribute Format"
2526
  msgstr ""
2527
 
2528
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:116
2529
- msgid "Click on the tags below to insert variables into your alt tag attribute."
2530
  msgstr ""
2531
 
2532
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:117
2533
- msgid "Strip Punctuation for Alt Attributes"
2534
  msgstr ""
2535
 
2536
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:120
2537
- msgid "Upgrade to Pro and Unlock Image SEO"
 
 
 
2538
  msgstr ""
2539
 
2540
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
2541
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:122
2542
- msgid "Image SEO is only available for licensed %1$s %2$s users."
2543
  msgstr ""
2544
 
2545
- #: src/vue/pages/search-appearance/views/ContentTypes.vue:70
2546
- msgid "Custom Fields"
2547
  msgstr ""
2548
 
2549
- #: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:52
2550
- msgid ""
2551
- "List of custom field names to include in the SEO Page Analysis. Add one per "
2552
- "line."
2553
  msgstr ""
2554
 
2555
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
2556
- #: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:54
 
 
 
2557
  msgid ""
2558
- "%1$s %2$s gives you advanced customizations for our page analysis feature, "
2559
- "letting you add custom fields to analyze."
 
2560
  msgstr ""
2561
 
2562
- #: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:55
2563
- msgid "Upgrade to Pro and Unlock Custom Fields"
2564
  msgstr ""
2565
 
2566
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
2567
- #: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:57
2568
- msgid "Custom Fields are only available for licensed %1$s %2$s users."
2569
  msgstr ""
2570
 
2571
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:125
2572
- msgid ""
2573
- "This option will generate a separate RSS Sitemap which can be submitted to "
2574
- "Google, Bing and any other search engines that support this type of "
2575
- "sitemap. The RSS Sitemap contains an RSS feed of the latest updates to your "
2576
- "site content. It is not a full sitemap of all your content."
2577
  msgstr ""
2578
 
2579
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:130
2580
- msgid "Number of Posts"
 
2581
  msgstr ""
2582
 
2583
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:133
2584
- msgid "Open RSS Sitemap"
 
2585
  msgstr ""
2586
 
2587
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:134
2588
- msgid ""
2589
- "Allows you to specify the maximum number of posts for the RSS Sitemap. We "
2590
- "recommend an amount of 50 posts."
2591
  msgstr ""
2592
 
2593
- #: src/vue/standalone/HtmlSitemapSidebar.vue:108
2594
- msgid "Publish Date"
 
2595
  msgstr ""
2596
 
2597
- #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:223
2598
- msgid "Last Updated Date"
 
2599
  msgstr ""
2600
 
2601
- #: src/vue/standalone/HtmlSitemapSidebar.vue:110
2602
- msgid "Alphabetical"
 
 
 
2603
  msgstr ""
2604
 
2605
- #: src/vue/standalone/HtmlSitemapSidebar.vue:111
2606
- msgid "Post/Term ID"
 
 
2607
  msgstr ""
2608
 
2609
- #: src/vue/standalone/HtmlSitemapSidebar.vue:104
2610
- msgid "Ascending"
2611
  msgstr ""
2612
 
2613
- #: src/vue/standalone/HtmlSitemapSidebar.vue:105
2614
- msgid "Descending"
2615
  msgstr ""
2616
 
2617
- #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:233
2618
- msgid "Display the sitemap on a dedicated page:"
2619
  msgstr ""
2620
 
2621
- # Translators: 1 - Learn more link.
2622
- #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:239
2623
- msgid "Use the following shortcode to display the HTML Sitemap. %1$s"
2624
  msgstr ""
2625
 
2626
- # Translators: 1 - Opening HTML strong tag, 2 - The plugin short name ("AIOSEO"), 3 - Closing HTML strong tag.
2627
- #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:247
2628
- msgid ""
2629
- "To add this block, edit a page or post and search for the %1$s\"%2$s - HTML "
2630
- "Sitemap\"%3$s block."
2631
  msgstr ""
2632
 
2633
- # Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - Opening HTML strong tag, 4 - The plugin short name ("AIOSEO"), 5 - Closing HTML strong tag, 6 - "Learn More" link.
2634
- #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:257
2635
- msgid ""
2636
- "To add this widget, visit the %1$swidgets page%2$s and look for the "
2637
- "%3$s\"%4$s - HTML Sitemap\"%5$s widget."
2638
  msgstr ""
2639
 
2640
- # Translators: 1 - Learn more link.
2641
- #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:268
2642
- msgid ""
2643
- "Use the following PHP code anywhere in your theme to display the sitemap. "
2644
- "%1$s"
2645
  msgstr ""
2646
 
2647
- #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:276
2648
- msgid "HTML Sitemap Settings"
2649
  msgstr ""
2650
 
2651
- #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:277
2652
- msgid ""
2653
- "Using the custom-built tools below, you can add an HTML sitemap to your "
2654
- "website and help visitors discover all your content. Adding an HTML sitemap "
2655
- "to your website may also help search engines find your content more easily."
2656
  msgstr ""
2657
 
2658
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:139
2659
- #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:278
2660
- msgid "Display HTML Sitemap"
2661
  msgstr ""
2662
 
2663
- #: src/vue/standalone/HtmlSitemapSidebar.vue:123
2664
- msgid "Sort Order"
2665
  msgstr ""
2666
 
2667
- #: src/vue/standalone/HtmlSitemapSidebar.vue:124
2668
- msgid "Sort Direction"
2669
  msgstr ""
2670
 
2671
- #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:287
2672
- msgid "Publication Date"
 
2673
  msgstr ""
2674
 
2675
- #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:288
2676
- msgid "This setting only applies to posts and pages."
2677
  msgstr ""
2678
 
2679
- #: src/vue/standalone/HtmlSitemapSidebar.vue:122
2680
- msgid "Compact Archives"
2681
  msgstr ""
2682
 
2683
- # Translators: 1 - "Learn More" link.
2684
- #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:292
2685
- msgid ""
2686
- "This setting allows you to toggle between the regular sitemap or the "
2687
- "compact date archive sitemap. %1$s"
2688
  msgstr ""
2689
 
2690
- #: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:15
2691
- msgid "Last IP"
2692
  msgstr ""
2693
 
2694
- #: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:16
2695
- msgid "Headers"
2696
  msgstr ""
2697
 
2698
- #: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:17
2699
- msgid "at"
2700
  msgstr ""
2701
 
2702
- #: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:18
2703
- msgid "Additional Info"
2704
  msgstr ""
2705
 
2706
- #: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:20
2707
- msgid "Are you sure you want to delete this record?"
2708
  msgstr ""
2709
 
2710
- #: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:22
2711
- msgid "Yes, I want to delete this record"
2712
  msgstr ""
2713
 
2714
- #: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:24
2715
- msgid "URL"
2716
  msgstr ""
2717
 
2718
- #: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:26
2719
- msgid "Last Accessed"
2720
  msgstr ""
2721
 
2722
- #: src/vue/pages/local-seo/views/lite/Locations.vue:108
2723
- #: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:133
2724
- msgid "Address"
2725
  msgstr ""
2726
 
2727
- #: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:102
2728
- msgid "Fax Number"
2729
  msgstr ""
2730
 
2731
- #: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:103
2732
- msgid "Email Address"
2733
  msgstr ""
2734
 
2735
- #: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:104
2736
- msgid "Show VAT ID"
 
 
 
2737
  msgstr ""
2738
 
2739
- #: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:105
2740
- msgid "Show Tax ID"
 
2741
  msgstr ""
2742
 
2743
- #: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:106
2744
- msgid "Phone/Fax Country Code"
2745
  msgstr ""
2746
 
2747
- #: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:96
2748
- msgid "Show labels"
2749
  msgstr ""
2750
 
2751
- #: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:97
2752
- msgid "Show icons"
2753
  msgstr ""
2754
 
2755
- #: src/vue/components/common/wizard/CloseAndExit.vue:14
2756
- msgid "Close and Exit Wizard Without Saving"
2757
  msgstr ""
2758
 
2759
- # Translators: 1 - "Pro".
2760
- #: src/vue/components/common/Cta.vue:236
2761
- msgid "Upgrade to %1$s"
2762
  msgstr ""
2763
 
2764
- # Translators: 1 - The plugin name ("All in One SEO").
2765
- #: src/vue/components/common/Cta.vue:238
2766
- msgid "This feature is only available for licensed %1$s %2$s users."
2767
  msgstr ""
2768
 
2769
- #: src/vue/components/common/Cta.vue:241
2770
- msgid "Learn more about all features"
 
2771
  msgstr ""
2772
 
2773
- #: src/vue/components/common/Cta.vue:242
2774
- msgid "See all features"
 
2775
  msgstr ""
2776
 
2777
- # Translators: 1 - The current step count. 2 - The total step count.
2778
- #: src/vue/components/common/wizard/Steps.vue:15
2779
- msgid "Step %1$s of %2$s"
 
2780
  msgstr ""
2781
 
2782
- #: src/vue/pages/local-seo/router/paths.js:28
2783
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:293
2784
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:306
2785
- msgid "Opening Hours"
2786
  msgstr ""
2787
 
2788
- #: src/vue/pages/local-seo/router/paths.js:37
2789
- msgid "Maps"
2790
  msgstr ""
2791
 
2792
- #: src/vue/pages/post-settings/views/Main.vue:59
2793
- msgid "Preview Snippet Editor"
2794
  msgstr ""
2795
 
2796
- #: src/vue/plugins/constants.js:1049
2797
- msgid "Manually Enter Type"
 
 
2798
  msgstr ""
2799
 
2800
- #: src/vue/plugins/constants.js:1051
2801
- msgid "Technical Support"
2802
  msgstr ""
2803
 
2804
- #: src/vue/plugins/constants.js:1052
2805
- msgid "Billing Support"
2806
  msgstr ""
2807
 
2808
- #: src/vue/plugins/constants.js:1053
2809
- msgid "Bill Payment"
2810
  msgstr ""
2811
 
2812
- #: src/vue/plugins/constants.js:1054
2813
- msgid "Sales"
 
2814
  msgstr ""
2815
 
2816
- #: src/vue/plugins/constants.js:1055
2817
- msgid "Reservations"
2818
  msgstr ""
2819
 
2820
- #: src/vue/plugins/constants.js:1056
2821
- msgid "Credit Card Support"
2822
  msgstr ""
2823
 
2824
- #: src/vue/plugins/constants.js:1057
2825
- msgid "Emergency"
2826
  msgstr ""
2827
 
2828
- #: src/vue/plugins/constants.js:1058
2829
- msgid "Bagage Tracking"
2830
  msgstr ""
2831
 
2832
- #: src/vue/plugins/constants.js:1059
2833
- msgid "Roadside Assistance"
2834
  msgstr ""
2835
 
2836
- #: src/vue/plugins/constants.js:1060
2837
- msgid "Package Tracking"
2838
  msgstr ""
2839
 
2840
- #: src/vue/plugins/constants.js:1067
2841
  msgid ""
2842
- "Sitemaps are a list of all your content that search engines use when they "
2843
- "crawl your site."
2844
  msgstr ""
2845
 
2846
- #: src/vue/plugins/constants.js:1077
2847
- msgid "Optimized Search Appearance"
2848
  msgstr ""
2849
 
2850
- #: src/vue/plugins/constants.js:1078
2851
- msgid "Get all the right tools to make sure your website shows up in Google Search."
2852
  msgstr ""
2853
 
2854
- #: src/vue/plugins/constants.js:1086
2855
- msgid ""
2856
- "Get the #1 analytics plugin to see how people find and use your website. "
2857
- "Simply put, see stats that matter."
2858
  msgstr ""
2859
 
2860
- #: src/vue/plugins/constants.js:1102
 
2861
  msgid ""
2862
- "Globally control Title and Alt attributes for attachment pages and images "
2863
- "that are embedded in your content."
2864
  msgstr ""
2865
 
2866
- #: src/vue/plugins/constants.js:1110
2867
- msgid ""
2868
- "Tell Google about your business for display as a Knowledge Graph card or "
2869
- "business carousel."
2870
  msgstr ""
2871
 
2872
- #: src/vue/plugins/constants.js:1118
2873
- msgid "Generate an XML Sitemap specifically for video content on your site."
 
2874
  msgstr ""
2875
 
2876
- #: src/vue/plugins/constants.js:1126
2877
- msgid "Submit articles to Google News that were published in the last 48 hours."
 
2878
  msgstr ""
2879
 
2880
- #: src/vue/plugins/constants.js:1133
2881
- msgid "Smart Redirects + 404 Detection"
 
 
2882
  msgstr ""
2883
 
2884
- #: src/vue/plugins/constants.js:1134
2885
- msgid "Create and manage redirects for your broken links."
2886
  msgstr ""
2887
 
2888
- #: src/vue/plugins/constants.js:1141
2889
- msgid "Internal Link Building Assistant"
2890
  msgstr ""
2891
 
2892
- #: src/vue/plugins/constants.js:1149
2893
- msgid "Advanced Rich Snippets + Schema Markups"
2894
  msgstr ""
2895
 
2896
- #: src/vue/plugins/constants.js:1160
2897
- msgid "Activities"
2898
  msgstr ""
2899
 
2900
- #: src/vue/plugins/constants.js:1162
2901
- msgid "Activity"
2902
  msgstr ""
2903
 
2904
- #: src/vue/plugins/constants.js:1163
2905
- msgid "Sport"
2906
  msgstr ""
2907
 
2908
- #: src/vue/plugins/constants.js:1167
2909
- msgid "Businesses"
2910
  msgstr ""
2911
 
2912
- #: src/vue/plugins/constants.js:1169
2913
- msgid "Bar"
2914
  msgstr ""
2915
 
2916
- #: src/vue/plugins/constants.js:1170
2917
- msgid "Company"
2918
  msgstr ""
2919
 
2920
- #: src/vue/plugins/constants.js:1171
2921
- msgid "Cafe"
2922
  msgstr ""
2923
 
2924
- #: src/vue/plugins/constants.js:1172
2925
- msgid "Hotel"
 
2926
  msgstr ""
2927
 
2928
- #: src/vue/plugins/constants.js:1173
2929
- msgid "Restaurant"
 
2930
  msgstr ""
2931
 
2932
- #: src/vue/plugins/constants.js:1177
2933
- msgid "Groups"
2934
  msgstr ""
2935
 
2936
- # Translators: This refers to a charity/non-profit organization.
2937
- #: src/vue/plugins/constants.js:1180
2938
- msgid "Cause"
2939
  msgstr ""
2940
 
2941
- #: src/vue/plugins/constants.js:1181
2942
- msgid "Sports League"
2943
  msgstr ""
2944
 
2945
- #: src/vue/plugins/constants.js:1182
2946
- msgid "Sports Team"
2947
  msgstr ""
2948
 
2949
- #: src/vue/plugins/constants.js:1186
2950
- msgid "Organizations"
 
2951
  msgstr ""
2952
 
2953
- # Translators: This refers to a music group.
2954
- #: src/vue/plugins/constants.js:1189
2955
- msgid "Band"
2956
  msgstr ""
2957
 
2958
- #: src/vue/plugins/constants.js:1190
2959
- msgid "Non-Profit"
 
2960
  msgstr ""
2961
 
2962
- #: src/vue/plugins/constants.js:1191
2963
- msgid "School"
 
2964
  msgstr ""
2965
 
2966
- #: src/vue/plugins/constants.js:1192
2967
- msgid "University"
 
2968
  msgstr ""
2969
 
2970
- #: src/vue/plugins/constants.js:1196
2971
- msgid "People"
2972
  msgstr ""
2973
 
2974
- #: src/vue/plugins/constants.js:1198
2975
- msgid "Actor"
 
2976
  msgstr ""
2977
 
2978
- #: src/vue/plugins/constants.js:1199
2979
- msgid "Athlete"
2980
  msgstr ""
2981
 
2982
- #: src/vue/pages/settings/mixins/AccessControl.js:19
2983
- msgid "Author"
2984
  msgstr ""
2985
 
2986
- #: src/vue/plugins/constants.js:1201
2987
- msgid "Director"
2988
  msgstr ""
2989
 
2990
- #: src/vue/plugins/constants.js:1202
2991
- msgid "Musician"
2992
  msgstr ""
2993
 
2994
- #: src/vue/plugins/constants.js:1203
2995
- msgid "Politician"
2996
  msgstr ""
2997
 
2998
- #: src/vue/plugins/constants.js:1204
2999
- msgid "Profile"
3000
  msgstr ""
3001
 
3002
- #: src/vue/plugins/constants.js:1205
3003
- msgid "Public Figure"
3004
  msgstr ""
3005
 
3006
- #: src/vue/plugins/constants.js:1209
3007
- msgid "Places"
3008
  msgstr ""
3009
 
3010
- #: src/vue/plugins/constants.js:1211
3011
- msgid "City"
3012
  msgstr ""
3013
 
3014
- #: src/vue/plugins/constants.js:1212
3015
- msgid "Country"
3016
  msgstr ""
3017
 
3018
- #: src/vue/plugins/constants.js:1213
3019
- msgid "Landmark"
 
 
3020
  msgstr ""
3021
 
3022
- #: src/vue/plugins/constants.js:1214
3023
- msgid "State/Province"
3024
  msgstr ""
3025
 
3026
- #: src/vue/plugins/constants.js:1218
3027
- msgid "Products & Entertainment"
 
 
 
3028
  msgstr ""
3029
 
3030
- #: src/vue/plugins/constants.js:1220
3031
- msgid "Album"
3032
  msgstr ""
3033
 
3034
- #: src/vue/plugins/constants.js:1221
3035
- msgid "Book"
 
 
 
 
3036
  msgstr ""
3037
 
3038
- #: src/vue/plugins/constants.js:1222
3039
- msgid "Drink"
3040
  msgstr ""
3041
 
3042
- #: src/vue/plugins/constants.js:1223
3043
- msgid "Food"
3044
  msgstr ""
3045
 
3046
- #: src/vue/plugins/constants.js:1224
3047
- msgid "Game"
 
 
 
3048
  msgstr ""
3049
 
3050
- #: src/vue/plugins/constants.js:1225
3051
- msgid "Movie"
 
3052
  msgstr ""
3053
 
3054
- #: src/vue/plugins/constants.js:1226
3055
- msgid "Product"
 
 
 
3056
  msgstr ""
3057
 
3058
- #: src/vue/plugins/constants.js:1227
3059
- msgid "Song"
 
 
 
3060
  msgstr ""
3061
 
3062
- #: src/vue/plugins/constants.js:1228
3063
- msgid "TV Show"
3064
  msgstr ""
3065
 
3066
- #: src/vue/plugins/constants.js:1229
3067
- msgid "Episode"
3068
  msgstr ""
3069
 
3070
- #: src/vue/plugins/constants.js:1233
3071
- msgid "Websites"
 
 
 
3072
  msgstr ""
3073
 
3074
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:73
3075
- msgid "Article"
 
 
 
 
 
 
3076
  msgstr ""
3077
 
3078
- #: src/vue/plugins/constants.js:1236
3079
- msgid "Website"
 
 
3080
  msgstr ""
3081
 
3082
- #: src/vue/plugins/constants.js:1286
3083
- msgid "Ignore all parameters"
 
 
 
3084
  msgstr ""
3085
 
3086
- #: src/vue/plugins/constants.js:1287
3087
- msgid "Exact match all parameters in any order"
 
 
 
3088
  msgstr ""
3089
 
3090
- #: src/vue/plugins/constants.js:1288
3091
- msgid "Ignore & pass parameters to the target"
 
3092
  msgstr ""
3093
 
3094
- #: src/vue/plugins/constants.js:1289
3095
- msgid "Ignore all parameters except UTM"
 
 
 
3096
  msgstr ""
3097
 
3098
- #: src/vue/plugins/constants.js:1293
3099
- msgid "Manual Redirects"
3100
  msgstr ""
3101
 
3102
- #: src/vue/plugins/constants.js:1294
3103
- msgid "Modified Posts"
 
 
 
 
3104
  msgstr ""
3105
 
3106
- #: src/vue/plugins/constants.js:1295
3107
- msgid "404 Redirects"
3108
  msgstr ""
3109
 
3110
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:134
3111
- msgid "default"
 
 
3112
  msgstr ""
3113
 
3114
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:135
3115
- msgid "Animal Shelter"
 
 
3116
  msgstr ""
3117
 
3118
- #: src/vue/plugins/constants.js:1301
3119
- msgid "Archive Organization"
3120
  msgstr ""
3121
 
3122
- #: src/vue/plugins/constants.js:1302
3123
- msgid "Automotive Business"
3124
  msgstr ""
3125
 
3126
- #: src/vue/plugins/constants.js:1303
3127
- msgid "Childcare"
3128
  msgstr ""
3129
 
3130
- #: src/vue/plugins/constants.js:1304
3131
- msgid "Dentist"
3132
  msgstr ""
3133
 
3134
- #: src/vue/plugins/constants.js:1305
3135
- msgid "Dry Cleaning/Laundry"
3136
  msgstr ""
3137
 
3138
- #: src/vue/plugins/constants.js:1306
3139
- msgid "Emergency Service"
3140
  msgstr ""
3141
 
3142
- #: src/vue/plugins/constants.js:1307
3143
- msgid "Employment Agency"
3144
  msgstr ""
3145
 
3146
- #: src/vue/plugins/constants.js:1308
3147
- msgid "Entertainment Business"
3148
  msgstr ""
3149
 
3150
- #: src/vue/plugins/constants.js:1309
3151
- msgid "Financial Service"
 
3152
  msgstr ""
3153
 
3154
- #: src/vue/plugins/constants.js:1310
3155
- msgid "Food Establishment"
 
3156
  msgstr ""
3157
 
3158
- #: src/vue/plugins/constants.js:1311
3159
- msgid "Government Office"
3160
  msgstr ""
3161
 
3162
- #: src/vue/plugins/constants.js:1312
3163
- msgid "Health & Beauty Business"
 
 
 
 
3164
  msgstr ""
3165
 
3166
- #: src/vue/plugins/constants.js:1313
3167
- msgid "Home & Construction Business"
3168
  msgstr ""
3169
 
3170
- #: src/vue/plugins/constants.js:1314
3171
- msgid "Internet Cafe"
 
 
 
3172
  msgstr ""
3173
 
3174
- #: src/vue/plugins/constants.js:1315
3175
- msgid "Legal Service"
3176
  msgstr ""
3177
 
3178
- #: src/vue/plugins/constants.js:1316
3179
- msgid "Library"
 
 
 
3180
  msgstr ""
3181
 
3182
- #: src/vue/plugins/constants.js:1317
3183
- msgid "Lodging Business"
3184
  msgstr ""
3185
 
3186
- #: src/vue/plugins/constants.js:1318
3187
- msgid "Medical Business"
 
 
 
3188
  msgstr ""
3189
 
3190
- #: src/vue/plugins/constants.js:1319
3191
- msgid "Professional Service"
3192
  msgstr ""
3193
 
3194
- #: src/vue/plugins/constants.js:1320
3195
- msgid "Radio Station"
 
 
 
3196
  msgstr ""
3197
 
3198
- #: src/vue/plugins/constants.js:1321
3199
- msgid "Real Estate Agent"
 
 
 
 
3200
  msgstr ""
3201
 
3202
- #: src/vue/plugins/constants.js:1322
3203
- msgid "Recycling Center"
3204
  msgstr ""
3205
 
3206
- #: src/vue/plugins/constants.js:1323
3207
- msgid "Self Storage"
3208
  msgstr ""
3209
 
3210
- #: src/vue/plugins/constants.js:1324
3211
- msgid "Shopping Center"
3212
  msgstr ""
3213
 
3214
- #: src/vue/plugins/constants.js:1325
3215
- msgid "Sports Activity Location"
3216
  msgstr ""
3217
 
3218
- #: src/vue/plugins/constants.js:1326
3219
- msgid "Store"
3220
  msgstr ""
3221
 
3222
- #: src/vue/plugins/constants.js:1327
3223
- msgid "Television Station"
3224
  msgstr ""
3225
 
3226
- #: src/vue/plugins/constants.js:1328
3227
- msgid "Tourist Information Center"
3228
  msgstr ""
3229
 
3230
- #: src/vue/plugins/constants.js:1329
3231
- msgid "Travel Agency"
3232
  msgstr ""
3233
 
3234
- #: src/vue/plugins/constants.js:1404
3235
- msgid "General"
3236
  msgstr ""
3237
 
3238
- #: src/vue/plugins/constants.js:1411
3239
- msgid "CORS"
3240
  msgstr ""
3241
 
3242
- #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:109
3243
- #: src/vue/plugins/constants.js:1422
3244
- msgid "Security"
 
 
3245
  msgstr ""
3246
 
3247
- #: src/vue/plugins/constants.js:1439
3248
- msgid "Login Status"
 
 
3249
  msgstr ""
3250
 
3251
- #: src/vue/plugins/constants.js:1440
3252
- msgid "Referrer"
3253
  msgstr ""
3254
 
3255
- #: src/vue/plugins/constants.js:1441
3256
- msgid "WordPress User Roles"
3257
  msgstr ""
3258
 
3259
- #: src/vue/pages/tools/views/RobotsEditor.vue:247
3260
- msgid "User Agent"
3261
  msgstr ""
3262
 
3263
- #: src/vue/plugins/constants.js:1443
3264
- msgid "Cookie"
 
 
 
 
3265
  msgstr ""
3266
 
3267
- #: src/vue/plugins/constants.js:1444
3268
- msgid "IP"
3269
  msgstr ""
3270
 
3271
- #: src/vue/plugins/constants.js:1445
3272
- msgid "Server"
3273
  msgstr ""
3274
 
3275
- #: src/vue/plugins/constants.js:1446
3276
- msgid "HTTP Header"
 
 
 
3277
  msgstr ""
3278
 
3279
- #: src/vue/plugins/constants.js:1447
3280
- msgid "WordPress Filter"
 
3281
  msgstr ""
3282
 
3283
- #: src/vue/plugins/constants.js:1448
3284
- msgid "Locale"
 
 
 
3285
  msgstr ""
3286
 
3287
- #: src/vue/plugins/constants.js:1449
3288
- msgid "Mobile"
 
 
 
3289
  msgstr ""
3290
 
3291
- #: src/vue/plugins/constants.js:1450
3292
- msgid "Feeds"
3293
  msgstr ""
3294
 
3295
- #: src/vue/plugins/constants.js:1451
3296
- msgid "Libraries"
 
3297
  msgstr ""
3298
 
3299
- #: src/vue/plugins/constants.js:1452
3300
- msgid "Logged In"
 
 
3301
  msgstr ""
3302
 
3303
- #: src/vue/plugins/constants.js:1453
3304
- msgid "Logged Out"
 
3305
  msgstr ""
3306
 
3307
- #: src/vue/components/common/core/AdditionalPages.vue:103
3308
- #: src/vue/plugins/constants.js:19
3309
- msgid "always"
3310
  msgstr ""
3311
 
3312
- #: src/vue/plugins/constants.js:20
3313
- msgid "hourly"
3314
  msgstr ""
3315
 
3316
- #: src/vue/plugins/constants.js:21
3317
- msgid "daily"
3318
- msgstr ""
 
3319
 
3320
- #: src/vue/plugins/constants.js:22
3321
- msgid "weekly"
 
3322
  msgstr ""
3323
 
3324
- #: src/vue/plugins/constants.js:23
3325
- msgid "monthly"
3326
  msgstr ""
3327
 
3328
- #: src/vue/plugins/constants.js:24
3329
- msgid "yearly"
3330
  msgstr ""
3331
 
3332
- #: src/vue/plugins/constants.js:25
3333
- msgid "never"
 
 
 
3334
  msgstr ""
3335
 
3336
- #: src/vue/plugins/constants.js:29
3337
- msgid "No"
3338
  msgstr ""
3339
 
3340
- #: src/vue/plugins/constants.js:30
3341
- msgid "Yes"
3342
  msgstr ""
3343
 
3344
- #: src/vue/plugins/constants.js:31
3345
- msgid "Off"
3346
  msgstr ""
3347
 
3348
- #: src/vue/plugins/constants.js:32
3349
- msgid "On"
3350
  msgstr ""
3351
 
3352
- #: src/vue/plugins/constants.js:33
3353
- msgid "Show"
3354
  msgstr ""
3355
 
3356
- #: src/vue/plugins/constants.js:34
3357
- msgid "Hide"
 
3358
  msgstr ""
3359
 
3360
- #: src/vue/plugins/constants.js:35
3361
- msgid "Learn More"
 
 
 
3362
  msgstr ""
3363
 
3364
- #: src/vue/plugins/constants.js:36
3365
- msgid "Disabled"
 
3366
  msgstr ""
3367
 
3368
- #: src/vue/plugins/constants.js:37
3369
- msgid "Enabled"
 
3370
  msgstr ""
3371
 
3372
- #: src/vue/plugins/constants.js:38
3373
- msgid "Preview"
 
 
3374
  msgstr ""
3375
 
3376
- #: src/vue/plugins/constants.js:39
3377
- msgid "Include"
3378
  msgstr ""
3379
 
3380
- #: src/vue/components/common/core/ExcludePosts.vue:99
3381
- msgid "Type to search..."
3382
  msgstr ""
3383
 
3384
- #: src/vue/components/common/core/ExcludePosts.vue:100
3385
- msgid "Begin typing a post ID, title or slug to search..."
3386
  msgstr ""
3387
 
3388
- #: src/vue/components/common/core/ExcludePosts.vue:101
3389
- msgid "Begin typing a term ID or name to search..."
3390
  msgstr ""
3391
 
3392
- #: src/vue/components/common/core/ExcludePosts.vue:102
3393
- msgid "No results found for your search. Try again!"
3394
  msgstr ""
3395
 
3396
- #: src/vue/components/common/core/ExcludePosts.vue:103
3397
- msgid "Clear"
3398
  msgstr ""
3399
 
3400
- #: src/vue/components/common/core/ExcludePosts.vue:104
3401
- msgid "ID"
3402
  msgstr ""
3403
 
3404
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:140
3405
- msgid "Dedicated Page"
3406
  msgstr ""
3407
 
3408
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:141
3409
- msgid "e.g. %1$s"
3410
  msgstr ""
3411
 
3412
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:142
3413
- msgid "Open HTML Sitemap"
3414
  msgstr ""
3415
 
3416
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:143
3417
- msgid ""
3418
- "The page that you have entered already exists. Please enter a page with a "
3419
- "unique slug."
3420
  msgstr ""
3421
 
3422
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:144
3423
- msgid ""
3424
- "The following shortcode attributes can be used to override the default "
3425
- "settings:"
3426
  msgstr ""
3427
 
3428
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:145
3429
- msgid ""
3430
- "The function accepts an associative array with the following arguments that "
3431
- "can be used to override the default settings:"
3432
  msgstr ""
3433
 
3434
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:147
3435
- msgid "To view the sitemap, enter a URL and save changes."
3436
  msgstr ""
3437
 
3438
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:148
3439
- msgid "To view the new sitemap, first save changes."
3440
  msgstr ""
3441
 
3442
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:153
3443
- msgid "The post types (by slug, comma-separated) that are included in the sitemap."
3444
  msgstr ""
3445
 
3446
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:157
3447
- msgid "The taxonomies (by slug, comma-separated) that are included in the sitemap."
3448
  msgstr ""
3449
 
3450
- # Translators: 1 - The default value.
3451
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:163
3452
- msgid "The HTML tag that is used for the label of each section. Defaults to %1$s."
 
3453
  msgstr ""
3454
 
3455
- # Translators: 1 - The default value.
3456
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:171
3457
- msgid "Whether the labels should be shown or not. Defaults to %1$s."
 
3458
  msgstr ""
3459
 
3460
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:181
3461
- msgid "Whether the publication date of posts should be shown."
 
 
3462
  msgstr ""
3463
 
3464
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:185
3465
- msgid "Whether the regular sitemap or compact date archive sitemap is output."
 
 
3466
  msgstr ""
3467
 
3468
- # Translators: 1 - HTML code opening tag, 2 - HTML code closing tag.
3469
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:192
3470
- msgid "The sort direction. The supported values are %1$s and %2$s."
 
3471
  msgstr ""
3472
 
3473
- # Translators: 1 - HTML code opening tag, 2 - HTML code closing tag.
3474
- #: src/vue/components/common/html-sitemap/DisplayInfo.vue:201
3475
- msgid "The sort order. The supported values are %1$s, %2$s, %3$s and %4$s."
3476
  msgstr ""
3477
 
3478
- #: src/vue/components/common/core/Notification.vue:79
3479
- msgid "Dismiss"
 
 
3480
  msgstr ""
3481
 
3482
- #: src/vue/components/common/notifications/Review.vue:115
3483
- msgid "Yes, I love it!"
3484
  msgstr ""
3485
 
3486
- #: src/vue/components/common/notifications/Review.vue:116
3487
- msgid "Not Really..."
 
3488
  msgstr ""
3489
 
3490
- #: src/vue/components/common/notifications/Review.vue:117
3491
- msgid "Ok, you deserve it"
 
3492
  msgstr ""
3493
 
3494
- #: src/vue/components/common/notifications/Review.vue:118
3495
- msgid "Nope, maybe later"
3496
  msgstr ""
3497
 
3498
- #: src/vue/components/common/notifications/Review.vue:119
3499
- msgid "Give feedback"
 
3500
  msgstr ""
3501
 
3502
- #: src/vue/components/common/notifications/Review.vue:120
3503
- msgid "No thanks"
3504
  msgstr ""
3505
 
3506
- #: src/vue/components/common/notifications/Review.vue:129
3507
- msgid "That's Awesome!"
3508
  msgstr ""
3509
 
3510
- #: src/vue/components/common/notifications/Review.vue:131
3511
- msgid "Help us improve"
3512
  msgstr ""
3513
 
3514
- # Translators: 1 = The plugin short name ("AIOSEO")
3515
- #: src/vue/components/common/notifications/Review.vue:134
3516
- msgid "Are you enjoying %1$s?"
3517
  msgstr ""
3518
 
3519
- #: src/vue/components/common/notifications/Review.vue:140
3520
  msgid ""
3521
- "Could you please do me a BIG favor and give it a 5-star rating on WordPress "
3522
- "to help us spread the word and boost our motivation?"
3523
  msgstr ""
3524
 
3525
- # Translators: The plugin name ("All in One SEO").
3526
- #: src/vue/components/common/notifications/Review.vue:143
3527
- msgid "CEO of %1$s"
3528
  msgstr ""
3529
 
3530
- # Translators: The plugin name ("All in One SEO").
3531
- #: src/vue/components/common/notifications/Review.vue:147
3532
- msgid ""
3533
- "We're sorry to hear you aren't enjoying %1$s. We would love a chance to "
3534
- "improve. Could you take a minute and let us know what we can do better?"
3535
  msgstr ""
3536
 
3537
- #: src/vue/components/common/core/PostTypeOptions.vue:80
3538
- msgid "Label:"
 
 
3539
  msgstr ""
3540
 
3541
- #: src/vue/components/common/core/PostTypeOptions.vue:81
3542
- msgid "Slug:"
3543
  msgstr ""
3544
 
3545
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Addons".
3546
- #: src/vue/components/common/notifications/UnlicensedAddons.vue:49
3547
- msgid "%1$s %2$s Not Configured Properly"
3548
  msgstr ""
3549
 
3550
- #: src/vue/components/common/notifications/UnlicensedAddons.vue:51
3551
- msgid "Upgrade"
3552
  msgstr ""
3553
 
3554
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:57
3555
- msgid "Your Overall Site Score"
 
 
3556
  msgstr ""
3557
 
3558
- # Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag.
3559
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:59
3560
- msgid "A very good score is between %1$s60 and 80%2$s."
 
3561
  msgstr ""
3562
 
3563
- # Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag.
3564
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:61
3565
- msgid "For best results, you should strive for %1$s70 and above%2$s."
 
3566
  msgstr ""
3567
 
3568
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:62
3569
- msgid "An error occurred while analyzing your site."
3570
  msgstr ""
3571
 
3572
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:64
3573
- #: src/vue/components/common/core/SiteScoreCompetitor.vue:76
3574
- msgid "Warnings"
3575
  msgstr ""
3576
 
3577
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:68
3578
- msgid "Read the Ultimate WordPress SEO Guide"
3579
  msgstr ""
3580
 
3581
- #: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:131
3582
- msgid "The URL provided is invalid."
3583
  msgstr ""
3584
 
3585
- #: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:135
3586
- msgid "We were unable to parse the content for this site."
3587
  msgstr ""
3588
 
3589
- # Translators: 1 - The plugin short name ('AIOSEO').
3590
- #: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:140
3591
- msgid "Your site is not connected. Please connect to %1$s, then try again."
3592
  msgstr ""
3593
 
3594
- #: src/vue/pages/post-settings/views/ModalContent.vue:41
3595
- msgid "Modal Content"
3596
  msgstr ""
3597
 
3598
- #: src/vue/pages/post-settings/views/Social.vue:60
3599
- msgid "Social"
3600
  msgstr ""
3601
 
3602
- #: src/vue/standalone/publish-panel/PrePublish.vue:71
3603
- msgid "Snippet Preview"
3604
  msgstr ""
3605
 
3606
- #: src/vue/pages/post-settings/views/General.vue:284
3607
- msgid "Snippet Preview content here."
3608
  msgstr ""
3609
 
3610
- #: src/vue/pages/post-settings/views/General.vue:285
3611
- msgid "Edit Snippet"
3612
  msgstr ""
3613
 
3614
- #: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:145
3615
- msgid "Click on the tags below to insert variables into your title."
3616
  msgstr ""
3617
 
3618
- #: src/vue/pages/post-settings/views/General.vue:289
3619
- msgid "Pillar Content"
3620
  msgstr ""
3621
 
3622
- #: src/vue/pages/post-settings/views/General.vue:290
3623
- msgid ""
3624
- "Cornerstone content should be the most important and extensive articles on "
3625
- "your site."
3626
  msgstr ""
3627
 
3628
- #: src/vue/standalone/publish-panel/PrePublish.vue:97
3629
- msgid "Focus Keyphrase"
3630
  msgstr ""
3631
 
3632
- #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:74
3633
- msgid "Additional Keyphrases"
3634
  msgstr ""
3635
 
3636
- #: src/vue/pages/post-settings/views/General.vue:293
3637
- msgid "Page Analysis"
3638
  msgstr ""
3639
 
3640
- #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:106
3641
- #: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:36
3642
- msgid "Basic SEO"
3643
  msgstr ""
3644
 
3645
- #: src/vue/pages/social-networks/views/Facebook.vue:698
3646
- msgid "Title"
3647
  msgstr ""
3648
 
3649
- #: src/vue/standalone/publish-panel/PrePublish.vue:92
3650
- msgid "Readability"
3651
  msgstr ""
3652
 
3653
- #: src/vue/pages/post-settings/views/General.vue:297
3654
- msgid ""
3655
- "Looking for meta keywords? Click on the advanced tab above to add/edit meta "
3656
- "keywords."
3657
  msgstr ""
3658
 
3659
- # Translators: 1 - "Learn more link".
3660
- #: src/vue/pages/post-settings/views/General.vue:299
3661
- msgid ""
3662
- "Not sure what keyphrases are used for? Check out our documentation for more "
3663
- "information. %1$s"
3664
  msgstr ""
3665
 
3666
- # Translators: 1 - The type of page (Post, Page, Category, Tag, etc.).
3667
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:125
3668
- #: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:163
3669
- msgid "%1$s Title"
3670
  msgstr ""
3671
 
3672
- #: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:68
3673
- msgid "Refresh Results"
3674
  msgstr ""
3675
 
3676
- #: src/vue/components/common/core/SiteScoreCompetitor.vue:81
3677
- msgid "Mobile Snapshot"
3678
  msgstr ""
3679
 
3680
- #: src/vue/pages/post-settings/views/Advanced.vue:114
3681
- msgid "Robots Setting"
3682
  msgstr ""
3683
 
3684
- #: src/vue/pages/settings/mixins/AccessControl.js:47
3685
- #: src/vue/standalone/HtmlSitemapSidebar.vue:114
3686
- msgid "Use Default Settings"
3687
  msgstr ""
3688
 
3689
- #: src/vue/standalone/publish-panel/PrePublish.vue:72
3690
- msgid "Canonical URL"
 
 
 
 
3691
  msgstr ""
3692
 
3693
  #: src/vue/pages/post-settings/views/Advanced.vue:117
3694
  msgid "Enter a URL to change the default Canonical URL"
3695
  msgstr ""
3696
 
3697
- #: src/vue/components/common/core/AdditionalPages.vue:98
3698
- #: src/vue/pages/post-settings/views/Advanced.vue:119
3699
- msgid "Priority"
3700
  msgstr ""
3701
 
3702
- #: src/vue/components/common/core/AdditionalPages.vue:99
3703
- #: src/vue/pages/post-settings/views/Advanced.vue:120
3704
- msgid "Frequency"
 
3705
  msgstr ""
3706
 
3707
  #: src/vue/pages/search-appearance/views/GlobalSettings.vue:442
3708
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:112
3709
  msgid "Keywords"
3710
  msgstr ""
3711
 
@@ -3713,2518 +3674,2296 @@ msgstr ""
3713
  msgid "Press enter to create a keyword"
3714
  msgstr ""
3715
 
3716
- #: src/vue/pages/local-seo/views/lite/Locations.vue:105
3717
- #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:56
3718
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:124
3719
- #: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:138
3720
- #: src/vue/pages/social-networks/views/Facebook.vue:696
3721
- msgid "Image"
3722
  msgstr ""
3723
 
3724
- #: src/vue/pages/local-seo/views/lite/Locations.vue:107
3725
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:123
3726
- #: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:132
3727
- msgid "URLs"
3728
  msgstr ""
3729
 
3730
- #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:114
3731
- msgid "Website URL"
3732
  msgstr ""
3733
 
3734
- #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:115
3735
- msgid "About Page URL"
3736
  msgstr ""
3737
 
3738
- #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:116
3739
- msgid "Contact Page URL"
3740
  msgstr ""
3741
 
3742
- #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:54
3743
- #: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:134
3744
- msgid "Contact Info"
3745
  msgstr ""
3746
 
3747
- #: src/vue/pages/local-seo/views/lite/Locations.vue:109
3748
- #: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:135
3749
- msgid "IDs"
3750
  msgstr ""
3751
 
3752
- #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:55
3753
- #: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:136
3754
- msgid "Payment Info"
 
3755
  msgstr ""
3756
 
3757
- #: src/vue/pages/local-seo/views/lite/Locations.vue:110
3758
- #: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:137
3759
- msgid "Area Served"
3760
  msgstr ""
3761
 
3762
- #: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:139
3763
- msgid "Map"
3764
  msgstr ""
3765
 
3766
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:306
3767
- #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:51
3768
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:232
3769
- msgid "Select your timezone"
3770
  msgstr ""
3771
 
3772
- #: src/vue/pages/local-business-seo/views/OpeningHours.vue:172
3773
- msgid "Use Defaults"
 
 
 
3774
  msgstr ""
3775
 
3776
- #: src/vue/pages/local-business-seo/views/OpeningHours.vue:173
3777
- msgid "Will default opening hours set globally"
 
3778
  msgstr ""
3779
 
3780
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:276
3781
- #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:50
3782
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:219
3783
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:295
3784
- msgid "Show Opening Hours"
3785
  msgstr ""
3786
 
3787
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:284
3788
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:221
3789
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:297
3790
- msgid "Labels"
 
3791
  msgstr ""
3792
 
3793
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:224
3794
- msgid "Displayed when the business is closed."
3795
  msgstr ""
3796
 
3797
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
3798
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:235
3799
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:315
3800
- msgid "Closed"
3801
  msgstr ""
3802
 
3803
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:301
3804
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:234
3805
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:314
3806
- msgid "Open 24h"
3807
  msgstr ""
3808
 
3809
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:227
3810
- msgid "Displayed when the business is open all day long."
3811
  msgstr ""
3812
 
3813
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:289
3814
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:229
3815
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:302
3816
- msgid "Open 24/7"
3817
  msgstr ""
3818
 
3819
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:290
3820
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:230
3821
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:303
3822
- msgid "Use 24h format"
3823
  msgstr ""
3824
 
3825
- #: src/vue/pages/local-business-seo/views/OpeningHours.vue:185
3826
- msgid "I have two sets of openning hours per day"
3827
  msgstr ""
3828
 
3829
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:291
3830
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:231
3831
- #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:304
3832
- msgid "Timezone"
 
3833
  msgstr ""
3834
 
3835
- #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:233
3836
- msgid "Hours"
3837
  msgstr ""
3838
 
3839
- #: src/vue/components/common/core/SiteScore.vue:45
3840
- msgid "Analyzing..."
3841
- msgstr ""
3842
-
3843
- #: src/vue/components/common/core/RobotsMeta.vue:102
3844
- msgid "Robots meta:"
3845
  msgstr ""
3846
 
3847
- #: src/vue/components/common/core/RobotsMeta.vue:103
3848
- msgid "Max Snippet"
3849
  msgstr ""
3850
 
3851
- #: src/vue/components/common/core/RobotsMeta.vue:104
3852
- msgid "Max Video Preview"
3853
  msgstr ""
3854
 
3855
- #: src/vue/components/common/core/RobotsMeta.vue:105
3856
- msgid "Max Image Preview"
3857
  msgstr ""
3858
 
3859
- #: src/vue/components/common/core/RobotsMeta.vue:106
3860
- msgid "Standard"
3861
  msgstr ""
3862
 
3863
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:67
3864
- #: src/vue/pages/settings/views/Advanced.vue:306
3865
- msgid "None"
 
3866
  msgstr ""
3867
 
3868
- #: src/vue/components/common/core/RobotsMeta.vue:108
3869
- msgid "Large"
 
 
3870
  msgstr ""
3871
 
3872
- #: src/vue/components/common/core/RobotsMeta.vue:87
3873
- msgid "No Index"
3874
  msgstr ""
3875
 
3876
- #: src/vue/components/common/core/RobotsMeta.vue:88
3877
- msgid "No Follow"
3878
  msgstr ""
3879
 
3880
- #: src/vue/components/common/core/RobotsMeta.vue:89
3881
- msgid "No Archive"
3882
  msgstr ""
3883
 
3884
- #: src/vue/components/common/core/RobotsMeta.vue:90
3885
- msgid "No Translate"
3886
  msgstr ""
3887
 
3888
- #: src/vue/components/common/core/RobotsMeta.vue:91
3889
- msgid "No Image Index"
3890
  msgstr ""
3891
 
3892
- #: src/vue/components/common/core/RobotsMeta.vue:92
3893
- msgid "No Snippet"
 
 
 
3894
  msgstr ""
3895
 
3896
- #: src/vue/components/common/core/RobotsMeta.vue:93
3897
- msgid "No ODP"
3898
  msgstr ""
3899
 
3900
- #: src/vue/components/common/core/SocialProfiles.vue:124
3901
- msgid "Your Facebook URL is invalid. Please check the format and try again."
3902
  msgstr ""
3903
 
3904
- #: src/vue/components/common/core/SocialProfiles.vue:135
3905
- msgid "Your Twitter URL is invalid. Please check the format and try again."
3906
  msgstr ""
3907
 
3908
- #: src/vue/components/common/core/SocialProfiles.vue:146
3909
- msgid "Your Instagram URL is invalid. Please check the format and try again."
3910
  msgstr ""
3911
 
3912
- #: src/vue/components/common/core/SocialProfiles.vue:157
3913
- msgid "Your Pinterest URL is invalid. Please check the format and try again."
3914
  msgstr ""
3915
 
3916
- #: src/vue/components/common/core/SocialProfiles.vue:168
3917
- msgid "Your YouTube URL is invalid. Please check the format and try again."
 
 
 
3918
  msgstr ""
3919
 
3920
- #: src/vue/components/common/core/SocialProfiles.vue:179
3921
- msgid "Your LinkedIn URL is invalid. Please check the format and try again."
3922
  msgstr ""
3923
 
3924
- #: src/vue/components/common/core/SocialProfiles.vue:190
3925
- msgid "Your Tumblr URL is invalid. Please check the format and try again."
 
 
3926
  msgstr ""
3927
 
3928
- #: src/vue/components/common/core/SocialProfiles.vue:201
3929
- msgid "Your Yelp URL is invalid. Please check the format and try again."
3930
  msgstr ""
3931
 
3932
- #: src/vue/components/common/core/SocialProfiles.vue:212
3933
- msgid "Your SoundCloud URL is invalid. Please check the format and try again."
 
 
3934
  msgstr ""
3935
 
3936
- #: src/vue/components/common/core/SocialProfiles.vue:223
3937
- msgid "Your Wikipedia URL is invalid. Please check the format and try again."
3938
  msgstr ""
3939
 
3940
- #: src/vue/components/common/core/SocialProfiles.vue:234
3941
- msgid "Your MySpace URL is invalid. Please check the format and try again."
 
3942
  msgstr ""
3943
 
3944
- #: src/vue/components/common/core/SocialProfiles.vue:241
3945
- msgid "Use the same username for multiple social networks"
3946
  msgstr ""
3947
 
3948
- #: src/vue/components/common/core/SocialProfiles.vue:242
3949
- msgid "Your Username:"
3950
  msgstr ""
3951
 
3952
- #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:107
3953
- msgid "Advanced SEO"
 
3954
  msgstr ""
3955
 
3956
- #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:108
3957
- msgid "Performance"
3958
  msgstr ""
3959
 
3960
- #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:110
3961
- msgid "Keywords:"
3962
  msgstr ""
3963
 
3964
- #: src/vue/components/common/core/NotificationCards.vue:59
3965
- msgid "Great Scott! Where'd they all go?"
3966
  msgstr ""
3967
 
3968
- #: src/vue/components/common/core/NotificationCards.vue:60
3969
- msgid "You have no new notifications."
3970
  msgstr ""
3971
 
3972
- #: src/vue/components/common/core/NotificationCards.vue:61
3973
- msgid "See Dismissed Notifications"
3974
  msgstr ""
3975
 
3976
- #: src/vue/components/common/core/Notification.vue:100
3977
- msgid "a minute ago"
3978
  msgstr ""
3979
 
3980
- # Translators: A number will be prepended to this string, e.g. "2 minutes ago".
3981
- #: src/vue/components/common/core/Notification.vue:104
3982
- msgid "minutes ago"
 
3983
  msgstr ""
3984
 
3985
- #: src/vue/components/common/core/Notification.vue:106
3986
- msgid "a day ago"
3987
  msgstr ""
3988
 
3989
- # Translators: A number will be prepended to this string, e.g. "2 days ago".
3990
- #: src/vue/components/common/core/Notification.vue:110
3991
- msgid "days ago"
3992
  msgstr ""
3993
 
3994
- #: src/vue/components/common/core/Notification.vue:111
3995
- msgid "a month ago"
3996
  msgstr ""
3997
 
3998
- # Translators: A number will be prepended to this string, e.g. "2 months ago".
3999
- #: src/vue/components/common/core/Notification.vue:115
4000
- msgid "months ago"
 
4001
  msgstr ""
4002
 
4003
- #: src/vue/components/common/core/Notification.vue:117
4004
- msgid "a year ago"
 
4005
  msgstr ""
4006
 
4007
- # Translators: A number will be prepended to this string, e.g. "2 years ago".
4008
- #: src/vue/components/common/core/Notification.vue:121
4009
- msgid "years ago"
4010
  msgstr ""
4011
 
4012
- #: src/vue/components/common/core/Notification.vue:99
4013
- msgid "a few seconds ago"
 
4014
  msgstr ""
4015
 
4016
- #: src/vue/components/common/core/PostTypeOptions.vue:82
4017
- msgid "No post types available."
4018
  msgstr ""
4019
 
4020
- #: src/vue/components/common/core/PostTypeOptions.vue:83
4021
- msgid "No taxonomies available."
 
4022
  msgstr ""
4023
 
4024
- #: src/vue/components/common/core/PostTypeOptions.vue:84
4025
- msgid ""
4026
- "All post types are set to noindex or your site does not have any post types "
4027
- "registered that are supported by this feature."
4028
  msgstr ""
4029
 
4030
- #: src/vue/components/common/core/PostTypeOptions.vue:85
 
4031
  msgid ""
4032
- "All taxonomies are set to noindex or your site does not have any taxonomies "
4033
- "registered that are supported by this feature."
4034
  msgstr ""
4035
 
4036
- #: src/vue/components/common/core/Notifications.vue:94
4037
- msgid "Dismissed Notifications"
 
4038
  msgstr ""
4039
 
4040
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:416
4041
- msgid "Home Page"
 
 
 
4042
  msgstr ""
4043
 
4044
- #: src/vue/components/common/core/PriorityScore.vue:67
4045
- msgid "Archive Pages"
 
 
 
4046
  msgstr ""
4047
 
4048
- #: src/vue/components/common/core/PriorityScore.vue:68
4049
- msgid "Author Pages"
 
 
 
4050
  msgstr ""
4051
 
4052
- #: src/vue/components/common/core/Main.vue:80
4053
- #: src/vue/components/common/core/MainTabs.vue:161
4054
- msgid "Save Changes"
 
 
 
 
 
4055
  msgstr ""
4056
 
4057
- #: src/vue/components/common/core/RobotsMeta.vue:96
4058
- msgid "No Index Paginated"
 
 
 
4059
  msgstr ""
4060
 
4061
- #: src/vue/components/common/core/RobotsMeta.vue:97
4062
- msgid "No Follow Paginated"
4063
  msgstr ""
4064
 
4065
- #: src/vue/components/common/core/RobotsMeta.vue:98
4066
- msgid "No Index RSS Feeds"
4067
  msgstr ""
4068
 
4069
- #: src/vue/components/common/core/SettingsSeparator.vue:101
4070
- msgid "Custom separator:"
4071
  msgstr ""
4072
 
4073
- #: src/vue/components/common/core/SettingsSeparator.vue:102
4074
- msgid "Show More"
 
 
 
4075
  msgstr ""
4076
 
4077
- #: src/vue/components/common/core/SettingsSeparator.vue:103
4078
- msgid "Show Less"
4079
  msgstr ""
4080
 
4081
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:71
4082
- msgid "Schema Type"
4083
  msgstr ""
4084
 
4085
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:72
4086
- msgid "Article Type"
4087
  msgstr ""
4088
 
4089
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:74
4090
- msgid "Blog Post"
4091
  msgstr ""
4092
 
4093
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:75
4094
- msgid "News Article"
4095
  msgstr ""
4096
 
4097
- #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:75
4098
- msgid "Add Additional Keyphrases"
4099
  msgstr ""
4100
 
4101
- #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:76
4102
- msgid "Improve your SEO rankings with additional keyphrases."
4103
  msgstr ""
4104
 
4105
- # Translators: 1 - "Pro" string, 2 - "Learn more link".
4106
- #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:79
4107
- msgid "Multiple Keyphrases is a %1$s feature. %2$s"
4108
  msgstr ""
4109
 
4110
- #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:81
4111
- msgid "Click here to get"
4112
  msgstr ""
4113
 
4114
- #: src/vue/pages/post-settings/views/SocialSideBar.vue:26
4115
- msgid ""
4116
- "Here you can view and edit the thumbnail, title and description that will "
4117
- "be displayed when your site is shared on social media. Click on the button "
4118
- "below to view and edit the preview."
4119
  msgstr ""
4120
 
4121
- #: src/vue/pages/post-settings/views/SocialSideBar.vue:27
4122
- msgid "Preview & Edit"
4123
  msgstr ""
4124
 
4125
- #: src/vue/pages/post-settings/views/Facebook.vue:238
4126
- msgid "Facebook Preview"
4127
  msgstr ""
4128
 
4129
- #: src/vue/pages/post-settings/views/Facebook.vue:239
4130
- msgid "Image Source"
4131
  msgstr ""
4132
 
4133
- #: src/vue/pages/post-settings/views/Facebook.vue:240
4134
- msgid "Custom Field Name"
4135
  msgstr ""
4136
 
4137
- #: src/vue/pages/post-settings/views/Facebook.vue:241
4138
- msgid "Video URL"
4139
  msgstr ""
4140
 
4141
- #: src/vue/pages/social-networks/views/Facebook.vue:729
4142
- msgid "Object Type"
4143
  msgstr ""
4144
 
4145
- #: src/vue/pages/post-settings/views/Facebook.vue:245
4146
- msgid "Facebook Image"
4147
  msgstr ""
4148
 
4149
- #: src/vue/pages/post-settings/views/Facebook.vue:246
4150
- msgid "Facebook Title"
4151
  msgstr ""
4152
 
4153
- #: src/vue/pages/post-settings/views/Facebook.vue:247
4154
- msgid "Facebook Description"
4155
  msgstr ""
4156
 
4157
- #: src/vue/pages/post-settings/views/Facebook.vue:250
4158
- msgid ""
4159
- "Minimum size: 200px x 200px, ideal ratio 1.91:1, 5MB max. (eg: 1640px x "
4160
- "856px or 3280px x 1712px for retina screens)"
4161
  msgstr ""
4162
 
4163
- #: src/vue/pages/social-networks/views/Facebook.vue:700
4164
- msgid "Click on the tags below to insert variables into your site name."
4165
  msgstr ""
4166
 
4167
- #: src/vue/pages/post-settings/views/Facebook.vue:254
4168
- msgid "Article Section"
4169
  msgstr ""
4170
 
4171
- #: src/vue/pages/post-settings/views/Facebook.vue:255
4172
- msgid "Article Tags"
 
 
4173
  msgstr ""
4174
 
4175
- #: src/vue/pages/post-settings/views/Facebook.vue:256
4176
- msgid "Press enter to create an article tag"
4177
  msgstr ""
4178
 
4179
- #: src/vue/pages/post-settings/views/Facebook.vue:264
4180
- msgid "Default"
4181
  msgstr ""
4182
 
4183
- #: src/vue/pages/post-settings/views/Facebook.vue:264
4184
- msgid "Default Object Type (Set in Social Networks)"
4185
  msgstr ""
4186
 
4187
- #: src/vue/pages/post-settings/views/Twitter.vue:213
4188
- msgid "Twitter Preview"
4189
  msgstr ""
4190
 
4191
- #: src/vue/pages/post-settings/views/Twitter.vue:214
4192
- msgid "Use Data from Facebook Tab"
 
 
 
 
4193
  msgstr ""
4194
 
4195
- #: src/vue/pages/post-settings/views/Twitter.vue:217
4196
- msgid "Twitter Image"
4197
  msgstr ""
4198
 
4199
- #: src/vue/pages/post-settings/views/Twitter.vue:218
4200
- msgid "Twitter Title"
4201
  msgstr ""
4202
 
4203
- #: src/vue/pages/post-settings/views/Twitter.vue:219
4204
- msgid "Twitter Description"
4205
  msgstr ""
4206
 
4207
- #: src/vue/pages/post-settings/views/Twitter.vue:220
4208
- msgid "Twitter Card Type"
4209
  msgstr ""
4210
 
4211
- #: src/vue/pages/social-networks/views/Twitter.vue:449
4212
- msgid ""
4213
- "Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and "
4214
- "GIF formats only."
4215
  msgstr ""
4216
 
4217
- #: src/vue/pages/social-networks/views/Twitter.vue:450
4218
- msgid ""
4219
- "Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and "
4220
- "GIF formats only."
4221
  msgstr ""
4222
 
4223
- #: src/vue/pages/post-settings/views/Twitter.vue:234
4224
- msgid "Default (Set under Social Networks)"
4225
  msgstr ""
4226
 
4227
- #: src/vue/pages/social-networks/views/Twitter.vue:437
4228
- msgid "Summary"
4229
  msgstr ""
4230
 
4231
- #: src/vue/pages/social-networks/views/Twitter.vue:438
4232
- msgid "Summary with Large Image"
 
4233
  msgstr ""
4234
 
4235
- # Translators: 1 - Semrush.
4236
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:286
4237
- msgid "Additional Keyphrases by %1$s"
 
4238
  msgstr ""
4239
 
4240
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:287
4241
- msgid "Add Focus Keyphrase"
4242
  msgstr ""
4243
 
4244
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:288
4245
- msgid "Get Additional Keyphrases"
4246
  msgstr ""
4247
 
4248
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:289
4249
- msgid "Show Results For:"
 
 
4250
  msgstr ""
4251
 
4252
- #: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:8
4253
- msgid "Keyphrase"
4254
  msgstr ""
4255
 
4256
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:291
4257
- msgid "Volume"
4258
  msgstr ""
4259
 
4260
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:292
4261
- msgid "Trend"
4262
  msgstr ""
4263
 
4264
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:293
4265
- msgid "Add Keyphrase"
4266
  msgstr ""
4267
 
4268
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:294
4269
- msgid "Remove Keyphrase"
4270
  msgstr ""
4271
 
4272
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:295
4273
- msgid "No results"
4274
  msgstr ""
4275
 
4276
- # Translators: 1 - Plugin short name + Pro "AIOSEO Pro", 2 - Semrush, 3 - Link to learn more.
4277
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:297
4278
- msgid ""
4279
- "Analyzing your content with %1$s keywords is only available to licensed "
4280
- "%2$s users. %3$s"
4281
  msgstr ""
4282
 
4283
- # Translators: 1 - Plugin short name "AIOSEO", 2 - Semrush.
4284
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:299
4285
- msgid ""
4286
- "%1$s integrates directly with %2$s to provide you with actionable "
4287
- "keyphrases to help you write better content."
4288
  msgstr ""
4289
 
4290
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:300
4291
- msgid "To use this feature, first add a focus keyphrase."
4292
  msgstr ""
4293
 
4294
- # Translators: 1 - Semrush.
4295
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:304
4296
- msgid "Get Additional Keyphrases with %1$s!"
4297
  msgstr ""
4298
 
4299
- # Translators: 1 - Opening link tag, 2 - Closing link tag, 3 - Semrush.
4300
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:306
4301
- msgid "%1$sA valid license key is required%2$s in order to connect with %3$s."
4302
  msgstr ""
4303
 
4304
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:325
4305
- msgid "You have exceeded the limit for requests. Please try again later."
4306
  msgstr ""
4307
 
4308
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:328
4309
- msgid "An error occurred while fetching keyphrases. Please try again later."
4310
  msgstr ""
4311
 
4312
- #: src/vue/components/common/core/Help.vue:153
4313
- msgid "Close"
4314
  msgstr ""
4315
 
4316
- #: src/vue/components/common/core/Help.vue:154
4317
- msgid "Search"
 
 
4318
  msgstr ""
4319
 
4320
- #: src/vue/components/common/core/Help.vue:155
4321
- msgid "View All"
4322
- msgstr ""
4323
-
4324
- #: src/vue/components/common/core/Help.vue:156
4325
- msgid "Docs"
4326
  msgstr ""
4327
 
4328
- #: src/vue/components/common/core/Help.vue:157
4329
- msgid "View Documentation"
4330
  msgstr ""
4331
 
4332
- # Translators: 1 - The plugin short name ("AIOEO").
4333
- #: src/vue/components/common/core/Help.vue:159
4334
- msgid "Browse documentation, reference material, and tutorials for %1$s."
4335
  msgstr ""
4336
 
4337
- #: src/vue/components/common/core/Help.vue:160
4338
- msgid "View All Documentation"
4339
  msgstr ""
4340
 
4341
- #: src/vue/components/common/core/Help.vue:161
4342
- msgid "Get Support"
4343
  msgstr ""
4344
 
4345
- #: src/vue/components/common/core/Help.vue:162
4346
- msgid "Submit a ticket and our world class support team will be in touch soon."
4347
  msgstr ""
4348
 
4349
- #: src/vue/components/common/core/Help.vue:163
4350
- msgid "Submit a Support Ticket"
 
 
 
4351
  msgstr ""
4352
 
4353
- #: src/vue/components/common/core/FeatureCard.vue:128
4354
- #: src/vue/components/common/core/Help.vue:164
4355
- msgid "Upgrade to Pro"
4356
  msgstr ""
4357
 
4358
- #: src/vue/components/common/core/HtmlTagsEditor.vue:100
4359
- msgid "Click on the tags below to insert variables into your template."
4360
  msgstr ""
4361
 
4362
- #: src/vue/components/common/core/HtmlTagsEditor.vue:119
4363
- msgid "View all tags"
 
4364
  msgstr ""
4365
 
4366
- #: src/vue/components/common/core/GettingStarted.vue:83
4367
- msgid "How to Get Started"
4368
  msgstr ""
4369
 
4370
- # Translators: 1 - The plugin name ("All in One SEO").
4371
- #: src/vue/components/common/core/GettingStarted.vue:85
4372
- msgid "Welcome to %1$s"
4373
  msgstr ""
4374
 
4375
- # Translators: 1 - The plugin name ("All in One SEO").
4376
- #: src/vue/components/common/core/GettingStarted.vue:87
4377
  msgid ""
4378
- "Thank you for choosing the best WordPress SEO plugin. %1$s default settings "
4379
- "works great out of the box. We created the setup wizard to guide you "
4380
- "through some important configuration settings & custom-tailored SEO best "
4381
- "practices for your site to help you improve rankings."
4382
  msgstr ""
4383
 
4384
- #: src/vue/components/common/core/GettingStarted.vue:88
4385
- msgid "Launch the Setup Wizard"
 
 
 
4386
  msgstr ""
4387
 
4388
- #: src/vue/components/common/core/GettingStarted.vue:89
4389
- msgid "Read the Setup Guide"
4390
  msgstr ""
4391
 
4392
- #: src/vue/components/common/core/FeatureCard.vue:129
4393
- msgid "Upgrade Your Plan"
 
4394
  msgstr ""
4395
 
4396
- #: src/vue/classes/SiteAnalysis.js:102
4397
- msgid "No keywords were found in the page title."
 
4398
  msgstr ""
4399
 
4400
- #: src/vue/classes/SiteAnalysis.js:105
4401
- msgid "No keywords were found in your meta description."
4402
  msgstr ""
4403
 
4404
- #: src/vue/classes/SiteAnalysis.js:106
4405
- msgid "No keywords were found in the meta description."
 
4406
  msgstr ""
4407
 
4408
- #: src/vue/classes/SiteAnalysis.js:108
4409
- msgid "Both the page title and meta description are missing keywords."
 
4410
  msgstr ""
4411
 
4412
- #: src/vue/classes/SiteAnalysis.js:112
4413
- msgid "One or more keywords were found in the title and description of your page."
4414
  msgstr ""
4415
 
4416
- #: src/vue/classes/SiteAnalysis.js:113
4417
- msgid "One or more keywords were found in the title and description of the page."
 
4418
  msgstr ""
4419
 
4420
- #: src/vue/classes/SiteAnalysis.js:129
4421
- msgid ""
4422
- "You need to use titles and descriptions that are attractive to users and "
4423
- "contain your keywords. Use the keywords naturally - keyword stuffing is "
4424
- "usually detected and will result in a lower ranking. What's more, it's "
4425
- "pretty off-putting for potential readers, who are more likely to click on "
4426
- "an appealing link."
4427
  msgstr ""
4428
 
4429
- #: src/vue/classes/SiteAnalysis.js:130
4430
- msgid "Edit Your Page Title & Description"
4431
  msgstr ""
4432
 
4433
- #: src/vue/classes/SiteAnalysis.js:139
4434
- msgid "No H1 tag was found."
 
4435
  msgstr ""
4436
 
4437
- # Translators: 1 - The number of H1 tags found.
4438
- #: src/vue/classes/SiteAnalysis.js:142
4439
- msgid "For the best SEO results there should be exactly one H1 tag on each page."
4440
  msgstr ""
4441
 
4442
- # Translators: 1 - The number of H1 tags found.
4443
- #: src/vue/classes/SiteAnalysis.js:142
4444
- msgid "%1$d H1 tags were found."
4445
  msgstr ""
4446
 
4447
- #: src/vue/classes/SiteAnalysis.js:147
4448
- msgid "One H1 tag was found on your page."
 
4449
  msgstr ""
4450
 
4451
- #: src/vue/classes/SiteAnalysis.js:148
4452
- msgid "One H1 tag was found on the page."
 
4453
  msgstr ""
4454
 
4455
- #: src/vue/classes/SiteAnalysis.js:154
4456
- msgid ""
4457
- "WordPress sites usually insert the page or post title as an H1 tag "
4458
- "(although custom themes can change this behavior)."
4459
  msgstr ""
4460
 
4461
- #: src/vue/classes/SiteAnalysis.js:154
4462
- msgid ""
4463
- "Ensure your most important keywords appear in the H1 tag - don't force it, "
4464
- "use them in a natural way that makes sense to human readers."
4465
  msgstr ""
4466
 
4467
- #: src/vue/classes/SiteAnalysis.js:154
4468
- msgid ""
4469
- "Because your headline plays a large role in reader engagement, it's worth "
4470
- "spending extra time perfecting it. Many top copywriters spend hours getting "
4471
- "their headlines just right - sometimes they spend longer on the headline "
4472
- "than the rest of the article!"
4473
  msgstr ""
4474
 
4475
- #: src/vue/classes/SiteAnalysis.js:154
4476
- msgid ""
4477
- "A good headline stimulates reader interest and offers a compelling reason "
4478
- "to read your content. It promises a believable benefit."
4479
  msgstr ""
4480
 
4481
- #: src/vue/classes/SiteAnalysis.js:154
4482
- msgid ""
4483
- "You should write as if your readers are selfish people with short attention "
4484
- "spans (because that describes a large percentage of the world's "
4485
- "population). Readers visit websites for selfish reasons - they're not there "
4486
- "to make you happy."
4487
  msgstr ""
4488
 
4489
- #: src/vue/classes/SiteAnalysis.js:165
4490
- msgid "No H2 tags were found on your page."
 
4491
  msgstr ""
4492
 
4493
- #: src/vue/classes/SiteAnalysis.js:166
4494
- msgid "No H2 tags were found on the page."
4495
  msgstr ""
4496
 
4497
- #: src/vue/classes/SiteAnalysis.js:170
4498
- msgid "H2 tags were found on your page."
 
4499
  msgstr ""
4500
 
4501
- #: src/vue/classes/SiteAnalysis.js:171
4502
- msgid "H2 tags were found on the page."
4503
  msgstr ""
4504
 
4505
- #: src/vue/classes/SiteAnalysis.js:177
 
4506
  msgid ""
4507
- "Make sure you have a good balance of H2 tags to plain text in your content. "
4508
- "Break the content down into logical sections, and use headings to introduce "
4509
- "each new topic."
4510
  msgstr ""
4511
 
4512
- #: src/vue/classes/SiteAnalysis.js:177
4513
- msgid ""
4514
- "Also, try to include synonyms and relevant terminology in H2 tag text. "
4515
- "Search engines are pretty smart - they know which words usually occur "
4516
- "together in each niche."
4517
  msgstr ""
4518
 
4519
- #: src/vue/classes/SiteAnalysis.js:177
 
4520
  msgid ""
4521
- "It should be easy to include your main and supporting keywords in the H2 "
4522
- "tags - after all, these keywords describe your content! If it's hard to "
4523
- "work the keywords into your subheadings, it could be a sign that the "
4524
- "keywords aren't closely related to your content."
4525
  msgstr ""
4526
 
4527
- #: src/vue/classes/SiteAnalysis.js:177
4528
- msgid ""
4529
- "Don't try to force keywords into sub-headings if they feel unnatural. It "
4530
- "will send the wrong message to your readers, possibly driving them away."
4531
  msgstr ""
4532
 
4533
- #: src/vue/classes/SiteAnalysis.js:188
4534
- msgid "Some images on your page have no alt attribute."
 
4535
  msgstr ""
4536
 
4537
- #: src/vue/classes/SiteAnalysis.js:189
4538
- msgid "Some images on the page have no alt attribute."
4539
  msgstr ""
4540
 
4541
- #: src/vue/classes/SiteAnalysis.js:193
4542
- msgid "All images on your page have alt attributes."
 
 
 
4543
  msgstr ""
4544
 
4545
- #: src/vue/classes/SiteAnalysis.js:194
4546
- msgid "All images on the page have alt attributes."
4547
  msgstr ""
4548
 
4549
- #: src/vue/classes/SiteAnalysis.js:200
4550
- msgid ""
4551
- "Make sure every image has an alt tag, and add useful descriptions to each "
4552
- "image. Add your keywords or synonyms - but do it in a natural way."
4553
  msgstr ""
4554
 
4555
- #: src/vue/classes/SiteAnalysis.js:211
4556
- msgid "No internal links were found on your page."
4557
  msgstr ""
4558
 
4559
- #: src/vue/classes/SiteAnalysis.js:212
4560
- msgid "No internal links were found on the page."
 
 
 
4561
  msgstr ""
4562
 
4563
- #: src/vue/classes/SiteAnalysis.js:215
4564
- msgid "Too few internal links on your page."
4565
  msgstr ""
4566
 
4567
- #: src/vue/classes/SiteAnalysis.js:216
4568
- msgid "Too few internal links on the page."
 
4569
  msgstr ""
4570
 
4571
- #: src/vue/classes/SiteAnalysis.js:218
4572
- msgid "The ratio of internal links to external links is uneven."
4573
  msgstr ""
4574
 
4575
- #: src/vue/classes/SiteAnalysis.js:222
4576
- msgid "Your page has a correct number of internal and external links."
 
4577
  msgstr ""
4578
 
4579
- #: src/vue/classes/SiteAnalysis.js:223
4580
- msgid "The page has a correct number of internal and external links."
4581
  msgstr ""
4582
 
4583
- #: src/vue/classes/SiteAnalysis.js:228
4584
- msgid "Internal:"
4585
  msgstr ""
4586
 
4587
- #: src/vue/classes/SiteAnalysis.js:228
4588
- msgid "External:"
4589
  msgstr ""
4590
 
4591
- #: src/vue/classes/SiteAnalysis.js:229
4592
- msgid ""
4593
- "Add links to external resources that are useful for your readers. Make sure "
4594
- "you link to high-quality sites - Google penalizes pages that link to "
4595
- "\"spammy\" sites (ones that break the Google webmaster guidelines)."
4596
  msgstr ""
4597
 
4598
- #: src/vue/classes/SiteAnalysis.js:229
4599
- msgid ""
4600
- "Ideally, the links should be highly relevant to the subject you're writing "
4601
- "about. It's impossible to cover every aspect of a subject on a single page, "
4602
- "but your readers may be fascinated by some detail you barely touch on. If "
4603
- "you link to a resource where they can learn more, they'll be grateful. "
4604
- "What's more, you'll be rewarded with higher rankings!"
4605
  msgstr ""
4606
 
4607
- #: src/vue/classes/SiteAnalysis.js:240
4608
- msgid "No canonical link tag found on your page."
4609
  msgstr ""
4610
 
4611
- #: src/vue/classes/SiteAnalysis.js:241
4612
- msgid "No canonical link tag found on the page."
4613
  msgstr ""
4614
 
4615
- #: src/vue/classes/SiteAnalysis.js:245
4616
- msgid "Your page is using the canonical link tag."
4617
  msgstr ""
4618
 
4619
- #: src/vue/classes/SiteAnalysis.js:246
4620
- msgid "The page is using the canonical link tag."
4621
  msgstr ""
4622
 
4623
- #: src/vue/classes/SiteAnalysis.js:252
4624
- msgid ""
4625
- "Every page on your site should have a <link> tag with a 'rel=\"canonical\"' "
4626
- "attribute. The link tag should go inside the page's head tag, and it should "
4627
- "contain the page's \"correct\" URL."
4628
  msgstr ""
4629
 
4630
- #: src/vue/classes/SiteAnalysis.js:252
4631
- msgid ""
4632
- "If you've republished an article from another source (such as another site "
4633
- "or a different section of your own site) then you need to pick which URL is "
4634
- "the \"correct\" one and use that!"
4635
  msgstr ""
4636
 
4637
- #: src/vue/classes/SiteAnalysis.js:263
4638
- msgid "Your page contains a noindex header or meta tag."
4639
  msgstr ""
4640
 
4641
- #: src/vue/classes/SiteAnalysis.js:264
4642
- msgid "The page contains a noindex header or meta tag."
4643
  msgstr ""
4644
 
4645
- #: src/vue/classes/SiteAnalysis.js:268
4646
- msgid "Your page does not contain any noindex header or meta tag."
4647
  msgstr ""
4648
 
4649
- #: src/vue/classes/SiteAnalysis.js:269
4650
- msgid "The page does not contain any noindex header or meta tag."
4651
  msgstr ""
4652
 
4653
- #: src/vue/classes/SiteAnalysis.js:274
4654
- msgid ""
4655
- "Only ever use noindex meta tag or header on pages you want to keep out of "
4656
- "the reach of search engines!"
4657
  msgstr ""
4658
 
4659
- #: src/vue/classes/SiteAnalysis.js:285
4660
- msgid ""
4661
- "The www and non-www versions of your URL are not redirected to the same "
4662
- "site."
4663
  msgstr ""
4664
 
4665
- #: src/vue/classes/SiteAnalysis.js:286
4666
- msgid "The www and non-www versions of the URL are not redirected to the same site."
4667
  msgstr ""
4668
 
4669
- #: src/vue/classes/SiteAnalysis.js:290
4670
- msgid ""
4671
- "Both the www and non-www versions of your URL are redirected to the same "
4672
- "site."
4673
  msgstr ""
4674
 
4675
- #: src/vue/classes/SiteAnalysis.js:291
4676
- msgid ""
4677
- "Both the www and non-www versions of the URL are redirected to the same "
4678
- "site."
4679
  msgstr ""
4680
 
4681
- #: src/vue/classes/SiteAnalysis.js:296
4682
- msgid ""
4683
- "Decide whether you want your site's URLs to include a \"www\", or if you "
4684
- "prefer a plain domain name. There are marketing pros and cons for each "
4685
- "choice, but neither one is better or worse for SEO purposes - as long as "
4686
- "you're consistent."
4687
  msgstr ""
4688
 
4689
- #: src/vue/classes/SiteAnalysis.js:296
4690
- msgid ""
4691
- "You should use HTTP redirections (301 permanant redirects) to pass PageRank "
4692
- "from the \"wrong\" URLs to the standard (canonical) ones. That way, your "
4693
- "content will still benefit from backlinks if someone makes a mistake and "
4694
- "uses the wrong URL."
4695
  msgstr ""
4696
 
4697
- #: src/vue/classes/SiteAnalysis.js:30
4698
- msgid "We couldn't find an SEO Title."
4699
  msgstr ""
4700
 
4701
- #: src/vue/classes/SiteAnalysis.js:307
4702
- msgid "Your robots.txt file is missing or unavailable."
 
 
4703
  msgstr ""
4704
 
4705
- #: src/vue/classes/SiteAnalysis.js:308
4706
- msgid "The robots.txt file is missing or unavailable."
4707
  msgstr ""
4708
 
4709
- #: src/vue/classes/SiteAnalysis.js:327
4710
- msgid ""
4711
- "Your site has a robots.txt file which includes one or more \"disallow\" "
4712
- "directives."
4713
  msgstr ""
4714
 
4715
- #: src/vue/classes/SiteAnalysis.js:328
4716
  msgid ""
4717
- "The site has a robots.txt file which includes one or more \"disallow\" "
4718
- "directives."
4719
  msgstr ""
4720
 
4721
- #: src/vue/classes/SiteAnalysis.js:332
4722
- msgid "Your site has a robots.txt file."
 
 
4723
  msgstr ""
4724
 
4725
- #: src/vue/classes/SiteAnalysis.js:333
4726
- msgid "The site has a robots.txt file."
 
 
4727
  msgstr ""
4728
 
4729
- # Translators: 1 - The length of the SEO title as a number.
4730
- #: src/vue/classes/SiteAnalysis.js:34
4731
- msgid "Your SEO title is only %1$d characters long, which is too short."
4732
  msgstr ""
4733
 
4734
- # Translators: 1 - The Plugin short name ("AIOSEO").
4735
- #: src/vue/classes/SiteAnalysis.js:340
4736
- msgid "Make sure that you only block parts you don't want to be indexed."
4737
  msgstr ""
4738
 
4739
- # Translators: 1 - The Plugin short name ("AIOSEO").
4740
- #: src/vue/classes/SiteAnalysis.js:340
4741
- msgid ""
4742
- "You can manually create a robots.txt file and upload it to your site's web "
4743
- "root. A simpler option is to use a plugin for your CMS platform."
4744
  msgstr ""
4745
 
4746
- # Translators: 1 - The Plugin short name ("AIOSEO").
4747
- #: src/vue/classes/SiteAnalysis.js:340
4748
- msgid ""
4749
- "%1$s has a full suite of tools to manage the robots.txt file, along with "
4750
- "other related technologies, like XML Sitemaps."
4751
  msgstr ""
4752
 
4753
- #: src/vue/classes/SiteAnalysis.js:350
4754
- msgid "Some Open Graph meta tags are missing."
4755
  msgstr ""
4756
 
4757
- #: src/vue/classes/SiteAnalysis.js:352
4758
- msgid "Duplicate Open Graph meta tags were found."
4759
  msgstr ""
4760
 
4761
- #: src/vue/classes/SiteAnalysis.js:355
4762
- msgid "All the required Open Graph meta tags have been found."
4763
  msgstr ""
4764
 
4765
- # Translators: 1 - The length of the SEO title as a number.
4766
- #: src/vue/classes/SiteAnalysis.js:36
4767
- msgid "The SEO title is only %1$d characters long, which is too short."
4768
  msgstr ""
4769
 
4770
- # Translators: 1 - The Plugin short name ("AIOSEO").
4771
- #: src/vue/classes/SiteAnalysis.js:362
4772
- msgid ""
4773
- "Insert a customized Open Graph meta tag for each important page on your "
4774
- "site. The standard is very well documented - you can learn more from "
4775
- "Facebook's developer pages."
4776
  msgstr ""
4777
 
4778
- # Translators: 1 - The Plugin short name ("AIOSEO").
4779
- #: src/vue/classes/SiteAnalysis.js:362
4780
- msgid ""
4781
- "%1$s provides a simple but powerful interface to craft your Open Graph "
4782
- "data. You get immediate feedback with an interactive preview, and you don't "
4783
- "have to mess around with raw HTML markup."
4784
  msgstr ""
4785
 
4786
- #: src/vue/classes/SiteAnalysis.js:373
4787
- msgid "No Schema.org data was found on your page."
4788
  msgstr ""
4789
 
4790
- #: src/vue/classes/SiteAnalysis.js:374
4791
- msgid "No Schema.org data was found on the page."
4792
  msgstr ""
4793
 
4794
- #: src/vue/classes/SiteAnalysis.js:378
4795
- msgid "We found Schema.org data on your page."
4796
  msgstr ""
4797
 
4798
- #: src/vue/classes/SiteAnalysis.js:379
4799
- msgid "We found Schema.org data on the page."
4800
  msgstr ""
4801
 
4802
- # Translators: 1 - The Plugin short name ("AIOSEO").
4803
- #: src/vue/classes/SiteAnalysis.js:385
4804
- msgid ""
4805
- "%1$s makes it extremely easy to add highly relevant Schema.org markup to "
4806
- "your site. It has a simple graphical interface, so you don't have to get "
4807
- "your hands dirty with complex HTML markup."
4808
  msgstr ""
4809
 
4810
- #: src/vue/classes/SiteAnalysis.js:386
4811
- msgid "Edit Your Page"
4812
  msgstr ""
4813
 
4814
- #: src/vue/classes/SiteAnalysis.js:396
4815
- msgid "Your server is not using \"expires\" headers for your images."
4816
  msgstr ""
4817
 
4818
- #: src/vue/classes/SiteAnalysis.js:397
4819
- msgid "The server is not using \"expires\" headers for the images."
4820
  msgstr ""
4821
 
4822
- # Translators: 1 - The length of the SEO title as a number.
4823
- #: src/vue/classes/SiteAnalysis.js:40
4824
- msgid "Your SEO title is %1$d characters long, which is too long."
4825
  msgstr ""
4826
 
4827
- #: src/vue/classes/SiteAnalysis.js:401
4828
- msgid "Your server is using \"expires\" headers for your images."
4829
  msgstr ""
4830
 
4831
- #: src/vue/classes/SiteAnalysis.js:402
4832
- msgid "The server is using \"expires\" headers for the images."
4833
  msgstr ""
4834
 
4835
- #: src/vue/classes/SiteAnalysis.js:407
4836
- msgid ""
4837
- "If you use the Apache or NGINX web servers, you can edit the configuration "
4838
- "files to set the \"expires\" header for all image files. For Apache, you "
4839
- "can also use a \".htaccess\" file to change the settings for each folder."
4840
  msgstr ""
4841
 
4842
- #: src/vue/classes/SiteAnalysis.js:407
4843
- msgid ""
4844
- "Alternatively, you can use a CMS plugin to simplify the process - it's a "
4845
- "more user-friendly option. WordPress has a host of caching plugins, and "
4846
- "most of them give you options to control the caching headers."
4847
  msgstr ""
4848
 
4849
- #: src/vue/classes/SiteAnalysis.js:415
4850
- msgid "Some Javascript files don't seem to be minified."
4851
  msgstr ""
4852
 
4853
- #: src/vue/classes/SiteAnalysis.js:418
4854
- msgid "All Javascript files appear to be minified."
4855
  msgstr ""
4856
 
4857
- # Translators: 1 - The length of the SEO title as a number.
4858
- #: src/vue/classes/SiteAnalysis.js:42
4859
- msgid "The SEO title is %1$d characters long, which is too long."
4860
  msgstr ""
4861
 
4862
- #: src/vue/classes/SiteAnalysis.js:424
4863
- msgid ""
4864
- "JavaScript files appear in many places, including frameworks (like "
4865
- "Bootstrap), themes and templates, and third-party plugins."
4866
  msgstr ""
4867
 
4868
- #: src/vue/classes/SiteAnalysis.js:424
4869
- msgid "We recommend tracking down where the un-minified JavaScript files come from"
4870
  msgstr ""
4871
 
4872
- #: src/vue/classes/SiteAnalysis.js:424
4873
- msgid ""
4874
- "There are server-side tools (including WordPress plugins) to automatically "
4875
- "minify JavaScript files."
4876
  msgstr ""
4877
 
4878
- #: src/vue/classes/SiteAnalysis.js:432
4879
- msgid "Some CSS files don't seem to be minified."
4880
  msgstr ""
4881
 
4882
- #: src/vue/classes/SiteAnalysis.js:435
4883
- msgid "All CSS files appear to be minified."
4884
  msgstr ""
4885
 
4886
- #: src/vue/classes/SiteAnalysis.js:441
4887
- msgid ""
4888
- "CSS files appear in many places, including frameworks (like Bootstrap), "
4889
- "themes and templates, and third-party plugins."
4890
  msgstr ""
4891
 
4892
- #: src/vue/classes/SiteAnalysis.js:441
4893
- msgid "We recommend tracking down where the un-minified CSS files come from."
4894
  msgstr ""
4895
 
4896
- #: src/vue/classes/SiteAnalysis.js:441
4897
- msgid ""
4898
- "There are server-side tools (including WordPress plugins) to automatically "
4899
- "minify CSS files."
4900
  msgstr ""
4901
 
4902
- # Translators: 1 - The total number of page requests.
4903
- #: src/vue/classes/SiteAnalysis.js:450
4904
- msgid "Your page makes %1$d requests."
4905
  msgstr ""
4906
 
4907
- # Translators: 1 - The total number of page requests.
4908
- #: src/vue/classes/SiteAnalysis.js:452
4909
- msgid "The page makes %1$d requests."
4910
  msgstr ""
4911
 
4912
- #: src/vue/classes/SiteAnalysis.js:454
4913
- msgid "More than 20 requests can result in slow page loading."
4914
  msgstr ""
4915
 
4916
- #: src/vue/classes/SiteAnalysis.js:462
4917
- msgid "Images:"
4918
  msgstr ""
4919
 
4920
- #: src/vue/classes/SiteAnalysis.js:462
4921
- msgid "JavaScript:"
4922
  msgstr ""
4923
 
4924
- #: src/vue/classes/SiteAnalysis.js:462
4925
- msgid "CSS:"
4926
  msgstr ""
4927
 
4928
- #: src/vue/classes/SiteAnalysis.js:463
4929
- msgid "Try to replace embedded objects with HTML5 alternatives."
4930
  msgstr ""
4931
 
4932
- # Translators: 1 - The length of the SEO title as a number.
4933
- #: src/vue/classes/SiteAnalysis.js:47
4934
- msgid "Your SEO title is set and is %1$d characters long."
4935
  msgstr ""
4936
 
4937
- # Translators: 1 - The total number of page requests.
4938
- #: src/vue/classes/SiteAnalysis.js:471
4939
- msgid "The size of the HTML document is %1$d Kb."
4940
  msgstr ""
4941
 
4942
- #: src/vue/classes/SiteAnalysis.js:473
4943
- msgid "This is over our recommendation of 50 Kb."
4944
  msgstr ""
4945
 
4946
- #: src/vue/classes/SiteAnalysis.js:477
4947
- msgid "This is under the average of 33 Kb."
4948
  msgstr ""
4949
 
4950
- #: src/vue/classes/SiteAnalysis.js:485
4951
- msgid ""
4952
- "In order to reduce page size, remove any unnecessary tags from your markup. "
4953
- "This includes developer comments, which are invisible to your users - "
4954
- "search engines ignore the text in comments, too."
4955
  msgstr ""
4956
 
4957
- #: src/vue/classes/SiteAnalysis.js:485
4958
- msgid ""
4959
- "Sometimes inline CSS is a culprit. A little inline CSS can help your page "
4960
- "render faster. Too much will bloat the HTML file and increase the page "
4961
- "loading time."
4962
  msgstr ""
4963
 
4964
- #: src/vue/classes/SiteAnalysis.js:485
4965
- msgid ""
4966
- "You can reduce CSS repetition with HTML class and ID attributes. Often the "
4967
- "same rules will be repeated across many page elements, embedded in each "
4968
- "tag's \"style\" attribute. You can extract them into a single \"style\" tag "
4969
- "and use classes and ID's to target each element."
4970
  msgstr ""
4971
 
4972
- #: src/vue/classes/SiteAnalysis.js:485
4973
- msgid ""
4974
- "Removing white space can also have an impact on your HTML page's size. "
4975
- "White space characters like carriage returns and tabs are ignored by the "
4976
- "browser, but they make the markup easier for developers to read. So you "
4977
- "should always strip them from your templates or themes before you use them "
4978
- "in a production environment."
4979
  msgstr ""
4980
 
4981
- # Translators: 1 - The length of the SEO title as a number.
4982
- #: src/vue/classes/SiteAnalysis.js:49
4983
- msgid "The SEO title is set and is %1$d characters long."
4984
  msgstr ""
4985
 
4986
- # Translators: 1 - The total number of page requests.
4987
- #: src/vue/classes/SiteAnalysis.js:495
4988
- msgid ""
4989
- "The response time of your page is %1$f seconds. It is recommended to keep "
4990
- "it equal to or below 0.2 seconds."
4991
  msgstr ""
4992
 
4993
- # Translators: 1 - The total number of page requests.
4994
- #: src/vue/classes/SiteAnalysis.js:497
4995
- msgid ""
4996
- "The response time of the page is %1$f seconds. It is recommended to keep it "
4997
- "equal to or below 0.2 seconds."
4998
  msgstr ""
4999
 
5000
- #: src/vue/classes/SiteAnalysis.js:501
5001
- msgid "Your response time is under 0.2 seconds."
5002
  msgstr ""
5003
 
5004
- #: src/vue/classes/SiteAnalysis.js:502
5005
- msgid "The response time is under 0.2 seconds."
5006
  msgstr ""
5007
 
5008
- #: src/vue/classes/SiteAnalysis.js:507
5009
- msgid ""
5010
- "If you want to continue to improve your response time, the simplest and "
5011
- "fastest fix is to use a caching plugin. Caching plugins keep a cached "
5012
- "version of each page on your site. Instead of building the page from "
5013
- "scratch, the server will send the cached copy."
5014
  msgstr ""
5015
 
5016
- #: src/vue/classes/SiteAnalysis.js:507
5017
- msgid ""
5018
- "You can get an even greater boost in speed with a content delivery network "
5019
- "service. These services host a copy of your content on multiple servers "
5020
- "spread out across the globe. A user's request is handled by the edge server "
5021
- "that's closest to their physical location, so the content arrives "
5022
- "incredibly fast."
5023
  msgstr ""
5024
 
5025
- #: src/vue/classes/SiteAnalysis.js:516
5026
- msgid "Plugins from your website are publicly visible."
5027
  msgstr ""
5028
 
5029
- #: src/vue/classes/SiteAnalysis.js:517
5030
- msgid "Plugins from the website are publicly visible."
5031
  msgstr ""
5032
 
5033
- #: src/vue/classes/SiteAnalysis.js:521
5034
- msgid "You have no visible plugins!"
5035
  msgstr ""
5036
 
5037
- #: src/vue/classes/SiteAnalysis.js:522
5038
- msgid "There are no visible plugins."
5039
  msgstr ""
5040
 
5041
- #: src/vue/classes/SiteAnalysis.js:528
5042
- msgid ""
5043
- "It's a great idea to try and hide the plugins you have visible. From time "
5044
- "to time vulnerabilities are found in plugins and if your site is not "
5045
- "updated in a timely fashion, outdated plugins and themes can be exploited."
5046
  msgstr ""
5047
 
5048
- # Translators: 1 - The name of the theme.
5049
- #: src/vue/classes/SiteAnalysis.js:538
5050
- msgid "Anyone can see that you are using the %1$s theme."
5051
- msgstr ""
5052
-
5053
- # Translators: 1 - The name of the theme.
5054
- #: src/vue/classes/SiteAnalysis.js:540
5055
- msgid "Anyone can see that they are using the %1$s theme."
5056
  msgstr ""
5057
 
5058
- #: src/vue/classes/SiteAnalysis.js:544
5059
- msgid "Your theme is not visible!"
5060
  msgstr ""
5061
 
5062
- #: src/vue/classes/SiteAnalysis.js:545
5063
- msgid "The theme is not visible."
5064
  msgstr ""
5065
 
5066
- #: src/vue/classes/SiteAnalysis.js:55
5067
- msgid ""
5068
- "Ensure your page's title includes your target keywords, and design it to "
5069
- "encourage users to click."
5070
  msgstr ""
5071
 
5072
- #: src/vue/classes/SiteAnalysis.js:55
5073
- msgid ""
5074
- "Writing compelling titles is both a science and an art. There are automated "
5075
- "tools that can analyze your title against known metrics for readability and "
5076
- "click-worthiness. You also need to understand the psychology of your target "
5077
- "audience."
5078
  msgstr ""
5079
 
5080
- #: src/vue/classes/SiteAnalysis.js:550
5081
- msgid ""
5082
- "It's a great idea to try and hide the theme you have visible. From time to "
5083
- "time vulnerabilities are found in themes and if your site is not updated in "
5084
- "a timely fashion, outdated plugins and themes can be exploited."
5085
  msgstr ""
5086
 
5087
- #: src/vue/classes/SiteAnalysis.js:559
5088
- msgid "Directory Listing seems to be enabled on your server."
5089
  msgstr ""
5090
 
5091
- #: src/vue/classes/SiteAnalysis.js:56
5092
- msgid "Edit Your Page Title"
5093
  msgstr ""
5094
 
5095
- #: src/vue/classes/SiteAnalysis.js:560
5096
- msgid "Directory Listing seems to be enabled on the server."
5097
  msgstr ""
5098
 
5099
- #: src/vue/classes/SiteAnalysis.js:564
5100
- msgid "Directory Listing seems to be disabled on your server."
5101
  msgstr ""
5102
 
5103
- #: src/vue/classes/SiteAnalysis.js:565
5104
- msgid "Directory Listing seems to be disabled on the server."
5105
  msgstr ""
5106
 
5107
- #: src/vue/classes/SiteAnalysis.js:570
5108
- msgid ""
5109
- "Fortunately, every popular web server has options to prevent directory "
5110
- "listings. They'll show a \"403 forbidden\" message instead."
5111
  msgstr ""
5112
 
5113
- #: src/vue/classes/SiteAnalysis.js:570
5114
- msgid ""
5115
- "Alternatively, you can create an empty index.php file and save it in every "
5116
- "directory on your site. That's an approach that WordPress uses and it works "
5117
- "well."
5118
  msgstr ""
5119
 
5120
- #: src/vue/classes/SiteAnalysis.js:579
5121
- msgid "It looks like your site has been added to one of Google's malwares lists."
5122
  msgstr ""
5123
 
5124
- #: src/vue/classes/SiteAnalysis.js:580
5125
- msgid "It looks like this site has been added to one of Google's malwares lists."
5126
  msgstr ""
5127
 
5128
- #: src/vue/classes/SiteAnalysis.js:584
5129
- msgid "Google has not flagged your site for malware!"
5130
  msgstr ""
5131
 
5132
- #: src/vue/classes/SiteAnalysis.js:585
5133
- msgid "Google has not flagged this site for malware."
5134
  msgstr ""
5135
 
5136
- #: src/vue/classes/SiteAnalysis.js:590
5137
- msgid ""
5138
- "Google Safe browsing shows warnings and alerts to users if they visit a "
5139
- "suspicious website. If you are flagged by Google Safe Browsing, you should "
5140
- "take immediate steps to fix that."
5141
  msgstr ""
5142
 
5143
- #: src/vue/classes/SiteAnalysis.js:599
5144
- msgid "Your site is not using a secure transfer protocol (https)."
5145
  msgstr ""
5146
 
5147
- #: src/vue/classes/SiteAnalysis.js:600
5148
- msgid "The site is not using a secure transfer protocol (https)."
5149
  msgstr ""
5150
 
5151
- #: src/vue/classes/SiteAnalysis.js:604
5152
- msgid "Your site is using a secure transfer protocol (https)."
5153
  msgstr ""
5154
 
5155
- #: src/vue/classes/SiteAnalysis.js:605
5156
- msgid "The site is using a secure transfer protocol (https)."
5157
  msgstr ""
5158
 
5159
- #: src/vue/classes/SiteAnalysis.js:610
5160
- msgid ""
5161
- "If you aren't using an SSL certificate for your site that means you are "
5162
- "losing a lot of potential traffic. We recommend getting an SSL certificate "
5163
- "installed immediately."
5164
  msgstr ""
5165
 
5166
- #: src/vue/classes/SiteAnalysis.js:66
5167
- msgid "No meta description was found for your page."
5168
  msgstr ""
5169
 
5170
- #: src/vue/classes/SiteAnalysis.js:67
5171
- msgid "No meta description was found for the page."
5172
  msgstr ""
5173
 
5174
- # Translators: 1 - The length of the meta description as a number.
5175
- #: src/vue/classes/SiteAnalysis.js:71
5176
- msgid "Your meta description is only %1$d characters long, which is too short."
5177
  msgstr ""
5178
 
5179
- # Translators: 1 - The length of the meta description as a number.
5180
- #: src/vue/classes/SiteAnalysis.js:73
5181
- msgid "The meta description is only %1$d characters long, which is too short."
5182
  msgstr ""
5183
 
5184
- # Translators: 1 - The length of the meta description as a number.
5185
- #: src/vue/classes/SiteAnalysis.js:77
5186
- msgid "Your meta description is %1$d characters long, which is too long."
5187
  msgstr ""
5188
 
5189
- # Translators: 1 - The length of the meta description as a number.
5190
- #: src/vue/classes/SiteAnalysis.js:79
5191
- msgid "The meta description is %1$d characters long, which is too long."
5192
  msgstr ""
5193
 
5194
- # Translators: 1 - The length of the meta description as a number.
5195
- #: src/vue/classes/SiteAnalysis.js:84
5196
- msgid "Your meta description is set and is %1$d characters long."
5197
  msgstr ""
5198
 
5199
- # Translators: 1 - The length of the meta description as a number.
5200
- #: src/vue/classes/SiteAnalysis.js:86
5201
- msgid "The meta description is set and is %1$d characters long."
5202
  msgstr ""
5203
 
5204
- #: src/vue/classes/SiteAnalysis.js:92
5205
- msgid ""
5206
- "Write a meta description for your page. Use your target keywords (in a "
5207
- "natural way) and write with human readers in mind. Summarize the content - "
5208
- "describe the topics your article discusses."
5209
  msgstr ""
5210
 
5211
- #: src/vue/classes/SiteAnalysis.js:92
5212
- msgid ""
5213
- "The description should stimulate reader interest and get them to click on "
5214
- "the article. Think of it as a mini-advertisement for your content."
5215
  msgstr ""
5216
 
5217
- #: src/vue/classes/SiteAnalysis.js:93
5218
- msgid "Edit Your Meta Description"
5219
  msgstr ""
5220
 
5221
- #: src/vue/pages/tools/views/SystemStatus.vue:126
5222
- msgid "Copied!"
5223
  msgstr ""
5224
 
5225
- #: src/vue/components/common/core/CopyBlock.vue:48
5226
- msgid "Click to Copy"
5227
  msgstr ""
5228
 
5229
- #: src/vue/pages/local-seo/views/pro/Locations.vue:116
5230
- msgid "Shortcode"
5231
  msgstr ""
5232
 
5233
- #: src/vue/pages/local-seo/views/pro/Locations.vue:117
5234
- msgid "Gutenberg Block"
5235
  msgstr ""
5236
 
5237
- #: src/vue/pages/local-seo/views/pro/Locations.vue:118
5238
- msgid "PHP Code"
5239
  msgstr ""
5240
 
5241
- #: src/vue/pages/local-seo/views/pro/Locations.vue:115
5242
- msgid "Widget"
5243
  msgstr ""
5244
 
5245
- #: src/vue/components/common/core/DisplayInfo.vue:90
5246
- msgid "Display Info"
5247
  msgstr ""
5248
 
5249
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:129
5250
- msgid "Website URL:"
5251
  msgstr ""
5252
 
5253
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:130
5254
- msgid "About Page URL:"
5255
  msgstr ""
5256
 
5257
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:131
5258
- msgid "Contact Page URL:"
5259
  msgstr ""
5260
 
5261
- # Translators: 1 - "Pro".
5262
- #: src/vue/pages/settings/views/GeneralSettings.vue:53
5263
- msgid "upgrading to %1$s"
5264
  msgstr ""
5265
 
5266
- # Translators: This refers to a discount ("As a valued user you receive 50%, automatically applied at checkout!").
5267
- #: src/vue/pages/settings/views/GeneralSettings.vue:57
5268
- msgid "off"
5269
  msgstr ""
5270
 
5271
- #: src/vue/components/lite/settings/LicenseKey.vue:59
5272
- msgid "Your license key provides access to updates and addons."
5273
  msgstr ""
5274
 
5275
- # Translators: 1 - "upgrading to Pro".
5276
- #: src/vue/pages/settings/views/GeneralSettings.vue:73
5277
- msgid "To unlock more features, consider %1$s."
5278
  msgstr ""
5279
 
5280
- # Translators: 1 - "50% off".
5281
- #: src/vue/pages/settings/views/GeneralSettings.vue:77
5282
- msgid "As a valued user you receive %1$s, automatically applied at checkout!"
5283
  msgstr ""
5284
 
5285
- #: src/vue/components/lite/local-business/PaymentInfo.vue:37
5286
- msgid "Price Indicator:"
5287
  msgstr ""
5288
 
5289
- #: src/vue/components/lite/local-business/PaymentInfo.vue:38
5290
- msgid "Currencies Accepted:"
5291
  msgstr ""
5292
 
5293
- #: src/vue/components/lite/local-business/PaymentInfo.vue:39
5294
- msgid "Payment Methods Accepted:"
5295
  msgstr ""
5296
 
5297
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:120
5298
- msgid "name"
5299
  msgstr ""
5300
 
5301
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:121
5302
- msgid "Your name or company name."
5303
  msgstr ""
5304
 
5305
- #: src/vue/components/lite/local-business/BusinessIds.vue:25
5306
- msgid "VAT ID:"
5307
  msgstr ""
5308
 
5309
- #: src/vue/components/lite/local-business/BusinessIds.vue:26
5310
- msgid "Tax ID:"
5311
  msgstr ""
5312
 
5313
- #: src/vue/components/lite/local-business/BusinessAddress.vue:55
5314
- msgid "Address Line 1"
5315
  msgstr ""
5316
 
5317
- #: src/vue/components/lite/local-business/BusinessAddress.vue:56
5318
- msgid "Address Line 2"
5319
  msgstr ""
5320
 
5321
- #: src/vue/components/lite/local-business/BusinessAddress.vue:57
5322
- msgid "Zip code:"
5323
  msgstr ""
5324
 
5325
- #: src/vue/components/lite/local-business/BusinessAddress.vue:58
5326
- msgid "City:"
5327
  msgstr ""
5328
 
5329
- #: src/vue/components/lite/local-business/BusinessAddress.vue:59
5330
- msgid "State:"
5331
  msgstr ""
5332
 
5333
- #: src/vue/components/lite/local-business/BusinessAddress.vue:60
5334
- msgid "Country:"
 
5335
  msgstr ""
5336
 
5337
- #: src/vue/components/lite/local-business/BusinessContact.vue:28
5338
- msgid "Email address:"
5339
  msgstr ""
5340
 
5341
- #: src/vue/components/lite/local-business/BusinessContact.vue:29
5342
- msgid "Phone number:"
 
5343
  msgstr ""
5344
 
5345
- #: src/vue/components/lite/local-business/BusinessContact.vue:30
5346
- msgid "Fax number:"
 
5347
  msgstr ""
5348
 
5349
- #: src/vue/pages/settings/views/GeneralSettings.vue:50
5350
- msgid "Free"
 
5351
  msgstr ""
5352
 
5353
- # Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro".
5354
- #: src/vue/components/lite/core/UpgradeBar.vue:32
5355
- msgid "You're using %1$s. To unlock more features, consider %2$s"
5356
  msgstr ""
5357
 
5358
- #: src/vue/components/lite/local-business/AreaServed.vue:16
5359
- msgid "The geographic area where a service or offered item is provided."
 
 
 
5360
  msgstr ""
5361
 
5362
- # Translators: 1 - Learn more link.
5363
- #: src/vue/pages/settings/views/RssContent.vue:101
5364
- #: src/vue/pages/settings/views/WebmasterTools.vue:260
5365
- msgid "Your user account role does not have access to edit this field. %1$s"
5366
  msgstr ""
5367
 
5368
- #: src/vue/components/common/core/ApiBar.vue:16
5369
- msgid "Click here to learn more"
 
5370
  msgstr ""
5371
 
5372
- # Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro".
5373
- #: src/vue/components/common/core/ApiBar.vue:26
5374
- msgid ""
5375
- "%1$s relies on the WordPress Rest API and your site might have it disabled. "
5376
- "%2$s."
5377
  msgstr ""
5378
 
5379
- #: src/vue/components/common/base/WpBulkActions.vue:35
5380
- msgid "Bulk Actions"
5381
  msgstr ""
5382
 
5383
- #: src/vue/components/common/base/WpBulkActions.vue:36
5384
- msgid "Apply"
5385
  msgstr ""
5386
 
5387
- #: src/vue/components/common/base/WpAdditionalFilters.vue:46
5388
- msgid "Filter"
5389
  msgstr ""
5390
 
5391
- #: src/vue/components/common/base/WpTable.vue:336
5392
- msgid "of"
5393
  msgstr ""
5394
 
5395
- #: src/vue/components/common/base/WpTable.vue:337
5396
- msgid "items"
5397
  msgstr ""
5398
 
5399
- #: src/vue/components/common/base/WpTable.vue:338
5400
- msgid "No items found"
5401
  msgstr ""
5402
 
5403
- #: src/vue/components/common/core/AddRedirectionCustomRules.vue:110
5404
- msgid "Select Rule"
5405
  msgstr ""
5406
 
5407
- #: src/vue/components/common/core/AddRedirectionCustomRules.vue:112
5408
- msgid "Add Custom Rule"
5409
  msgstr ""
5410
 
5411
- #: src/vue/components/common/core/AddRedirectionCustomRules.vue:114
5412
- msgid "Select a Value or Add a New One"
5413
  msgstr ""
5414
 
5415
- #: src/vue/components/common/core/AddRedirectionCustomRules.vue:115
5416
- msgid "Key"
 
 
 
5417
  msgstr ""
5418
 
5419
- #: src/vue/components/common/core/AddRedirectionCustomRules.vue:123
5420
- msgid "Select Status"
5421
  msgstr ""
5422
 
5423
- #: src/vue/components/common/core/AddRedirectionCustomRules.vue:134
5424
- msgid "Select Roles"
5425
  msgstr ""
5426
 
5427
- #: src/vue/pages/local-seo/views/pro/Maps.vue:107
5428
- #: src/vue/pages/settings/views/RssContent.vue:93
5429
- msgid "Learn more"
5430
  msgstr ""
5431
 
5432
- #: src/vue/components/common/core/AddRedirectionCustomRules.vue:178
5433
- msgid "Enter an IP Address"
5434
  msgstr ""
5435
 
5436
- #: src/vue/components/common/core/AddRedirectionCustomRules.vue:186
5437
- msgid "Enter the Server Name"
 
5438
  msgstr ""
5439
 
5440
- #: src/vue/components/common/core/AddRedirectionCustomRules.vue:199
5441
- msgid "Enter a WordPress Filter Name"
5442
  msgstr ""
5443
 
5444
- #: src/vue/components/common/core/AddRedirectionCustomRules.vue:207
5445
- msgid "Enter a Locale Code, e.g.: en_GB, es_ES"
5446
  msgstr ""
5447
 
5448
- #: src/vue/components/common/core/AddRedirectionUrlResults.vue:52
5449
- msgid "DRAFT"
5450
  msgstr ""
5451
 
5452
- #: src/vue/components/common/core/AddRedirectionUrlResults.vue:53
5453
- msgid "PENDING"
5454
  msgstr ""
5455
 
5456
- #: src/vue/components/common/core/AddRedirectionUrlResults.vue:54
5457
- msgid "FUTURE"
5458
  msgstr ""
5459
 
5460
- #: src/vue/components/common/core/AddRedirection.vue:231
5461
- msgid "Redirect Type:"
5462
  msgstr ""
5463
 
5464
- #: src/vue/components/common/core/AddRedirection.vue:233
5465
- msgid "Enter a URL or start by typing a page or post title, slug or ID."
5466
  msgstr ""
5467
 
5468
- #: src/vue/components/common/core/AddRedirection.vue:234
5469
- msgid "Add URL"
5470
  msgstr ""
5471
 
5472
- # Translators: 1 - Oening link tag, 2 - Closing link tag.
5473
- #: src/vue/components/common/core/AddRedirection.vue:236
5474
- msgid ""
5475
- "Enter a relative URL to redirect from or start by typing in page or post "
5476
- "title, slug or ID. You can also use regex (%1$s)"
5477
  msgstr ""
5478
 
5479
- # Translators: 1 - Oening link tag, 2 - Closing link tag.
5480
- #: src/vue/components/common/core/AddRedirection.vue:236
5481
- msgid "what's this?"
 
 
5482
  msgstr ""
5483
 
5484
- #: src/vue/components/common/core/AddRedirection.vue:238
5485
- msgid "Query Parameters:"
 
 
 
5486
  msgstr ""
5487
 
5488
- #: src/vue/components/common/core/AddRedirection.vue:241
5489
- msgid "An error occurred while adding your redirects. Please try again later."
5490
  msgstr ""
5491
 
5492
- #: src/vue/components/common/core/AddRedirection.vue:269
5493
- msgid "Source URL's"
 
5494
  msgstr ""
5495
 
5496
- # Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>.
5497
- #: src/vue/components/common/core/AddRedirection.vue:287
5498
- msgid "Your target URL should be an absolute URL like %1$s or start with a slash."
5499
  msgstr ""
5500
 
5501
- # Translators: 1 - Adds a html tag with an option like: <code>^</code>.
5502
- #: src/vue/components/common/core/AddRedirection.vue:296
5503
- msgid "Your target URL contains the invalid character(s) %1$s"
5504
  msgstr ""
5505
 
5506
- #: src/vue/components/common/core/AddRedirection.vue:309
5507
- msgid ""
5508
- "Your URL appears to contain a domain inside the path: %1$s. Did you mean to "
5509
- "use %2$s instead?"
5510
  msgstr ""
5511
 
5512
- #: src/vue/components/common/core/AddRedirection.vue:405
5513
- msgid ""
5514
- "A redirect already exists for this source URL. To make changes, edit the "
5515
- "original instead."
5516
  msgstr ""
5517
 
5518
- #: src/vue/components/common/core/AddRedirection.vue:447
5519
- msgid "Moved Permanently"
5520
  msgstr ""
5521
 
5522
- #: src/vue/components/common/core/AddRedirection.vue:462
5523
- msgid ""
5524
- "This is a duplicate of a URL you are already adding. You can only add "
5525
- "unique source URL's."
5526
  msgstr ""
5527
 
5528
- #: src/vue/components/common/core/AddRedirectionUrl.vue:196
5529
- msgid "The regex syntax is invalid."
5530
  msgstr ""
5531
 
5532
- #: src/vue/components/common/core/AddRedirectionUrl.vue:202
5533
- msgid "Please enter a valid relative source URL."
5534
  msgstr ""
5535
 
5536
- #: src/vue/components/common/core/AddRedirectionUrl.vue:206
5537
- msgid "Permalinks are not currently supported."
5538
  msgstr ""
5539
 
5540
- #: src/vue/components/common/core/AddRedirectionUrl.vue:210
5541
- msgid ""
5542
- "This redirect is supported using the Relocate Site feature under Full Site "
5543
- "Redirect tab."
5544
  msgstr ""
5545
 
5546
- #: src/vue/components/common/core/AddRedirectionUrl.vue:226
5547
- msgid "Your source is the same as a target and this will create a loop."
5548
  msgstr ""
5549
 
5550
- #: src/vue/components/common/core/AddRedirectionUrl.vue:243
5551
- msgid "Anchor values are not sent to the server and cannot be redirected."
5552
  msgstr ""
5553
 
5554
- # Translators: 1 - Adds a html tag with an option like: <code>Regex</code>
5555
- #: src/vue/components/common/core/AddRedirectionUrl.vue:248
5556
- msgid "Remember to enable the %1$s option if this is a regular expression."
5557
  msgstr ""
5558
 
5559
- # Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>.
5560
- #: src/vue/components/common/core/AddRedirectionUrl.vue:254
5561
- msgid ""
5562
- "To prevent a greedy regular expression you can use %1$s to anchor it to the "
5563
- "start of the URL. For example: %2$s"
5564
  msgstr ""
5565
 
5566
- # Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>.
5567
- #: src/vue/components/common/core/AddRedirectionUrl.vue:259
5568
- msgid "The caret %1$s should be at the start. For example: %2$s"
5569
  msgstr ""
5570
 
5571
- # Translators: 1 - Adds a html tag with an option like: <code>^/</code>
5572
- #: src/vue/components/common/core/AddRedirectionUrl.vue:264
5573
- msgid "The source URL should probably start with a %1$s"
5574
  msgstr ""
5575
 
5576
- # Translators: 1 - Adds a html tag with an option like: <code>^/</code>
5577
- #: src/vue/components/common/core/AddRedirectionUrl.vue:269
5578
- msgid "The dollar symbol %1$s should be at the end. For example: %2$s"
5579
  msgstr ""
5580
 
5581
- #: src/vue/components/common/core/AddRedirectionUrl.vue:275
5582
- msgid ""
5583
- "Some servers may be configured to serve file resources directly, preventing "
5584
- "a redirect occurring."
5585
  msgstr ""
5586
 
5587
- #: src/vue/components/common/core/AdditionalPages.vue:100
5588
- msgid "Last Modified"
5589
  msgstr ""
5590
 
5591
- # Translators: 1 - An example URL (e.g. https://aioseo.com/example).
5592
- #: src/vue/components/common/core/AdditionalPages.vue:96
5593
- msgid "Enter a page URL, e.g. %1$s"
5594
  msgstr ""
5595
 
5596
- #: src/vue/components/common/core/AdditionalPages.vue:97
5597
- msgid "Page URL"
5598
  msgstr ""
5599
 
5600
- #: src/vue/components/common/base/Editor.vue:122
5601
- msgid "Search for an item..."
5602
  msgstr ""
5603
 
5604
- #: src/vue/components/common/base/Editor.vue:123
5605
- msgid "Enter a custom field name..."
5606
  msgstr ""
5607
 
5608
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:117
5609
- msgid "Web Page Type"
5610
  msgstr ""
5611
 
5612
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:86
5613
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:97
5614
- msgid "Course"
5615
  msgstr ""
5616
 
5617
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:85
5618
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:99
5619
- msgid "Recipe"
5620
  msgstr ""
5621
 
5622
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
5623
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:77
5624
- msgid "Advanced Schema Markup is only available for licensed %1$s %2$s users."
5625
  msgstr ""
5626
 
5627
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
5628
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:79
5629
- msgid ""
5630
- "%1$s %2$s allows you to customize the structured data markup for your Posts "
5631
- "so that search engines can generate rich snippets for your content in "
5632
- "search results."
5633
  msgstr ""
5634
 
5635
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:80
5636
- msgid "Upgrade to Pro and Unlock Advanced Schema Markup"
5637
  msgstr ""
5638
 
5639
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:82
5640
- msgid "Product (WooCommerce and EDD support)"
5641
  msgstr ""
5642
 
5643
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:83
5644
- msgid "FAQ Page"
5645
  msgstr ""
5646
 
5647
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:84
5648
- msgid "Software Application"
5649
  msgstr ""
5650
 
5651
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:107
5652
- msgid "Robots Meta Settings"
5653
  msgstr ""
5654
 
5655
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:108
5656
- msgid "Bulk Editing"
5657
  msgstr ""
5658
 
5659
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:109
5660
- msgid "Read Only"
 
5661
  msgstr ""
5662
 
5663
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:110
5664
- msgid "Other Options"
5665
  msgstr ""
5666
 
5667
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:111
5668
- msgid "Show Date in Google Preview"
5669
  msgstr ""
5670
 
5671
- # Translators: 1 - The type of page (Post, Page, Category, Tag, etc.).
5672
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:129
5673
- msgid "Show %1$s Thumbnail in Google Custom Search"
5674
  msgstr ""
5675
 
5676
- # Translators: 1 - The plugin name ("All in One SEO")
5677
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:133
5678
- msgid "Show %1$s Meta Box"
5679
  msgstr ""
5680
 
5681
- #: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:144
5682
- msgid "Show in Search Results"
5683
  msgstr ""
5684
 
5685
- #: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:148
5686
- msgid "Selecting \"No\" will no-index this page."
5687
  msgstr ""
5688
 
5689
- #: src/vue/pages/search-appearance/views/Archives.vue:59
5690
- #: src/vue/pages/search-appearance/views/ContentTypes.vue:58
5691
- #: src/vue/pages/search-appearance/views/Media.vue:115
5692
- msgid "Title & Description"
5693
  msgstr ""
5694
 
5695
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:409
5696
- msgid ""
5697
- "Select which Taxonomies appear in your sitemap. Categories and Tags are "
5698
- "excluded by default since these do not support video embedding."
5699
  msgstr ""
5700
 
5701
- #: src/vue/pages/search-appearance/views/ContentTypes.vue:64
5702
- #: src/vue/pages/search-appearance/views/Media.vue:121
5703
- msgid "Schema Markup"
5704
  msgstr ""
5705
 
5706
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:412
5707
- msgid "Title Separator"
5708
  msgstr ""
5709
 
5710
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:413
5711
- msgid "Separator Character"
5712
  msgstr ""
5713
 
5714
- # Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag.
5715
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:415
5716
- msgid ""
5717
- "The home page settings below have been disabled because you are using a "
5718
- "static home page. You can %1$sedit your home page settings%2$s directly to "
5719
- "change the title and description."
5720
  msgstr ""
5721
 
5722
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:417
5723
- msgid "Site Title"
5724
  msgstr ""
5725
 
5726
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:421
5727
- msgid "Knowledge Graph"
5728
  msgstr ""
5729
 
5730
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:422
5731
- msgid ""
5732
- "Google, Bing and other search engines use specific data from your schema "
5733
- "markup to output data in their Knowledge Panels. This data is known as the "
5734
- "Knowledge Graph. Use these settings to change how that data looks."
5735
  msgstr ""
5736
 
5737
- # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag., 3 - "Pro", 4 - "Pro".
5738
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:439
5739
- msgid ""
5740
- "Go to %1$sLocal SEO Settings%2$s and set up your local business info like "
5741
- "location address, opening hours (%3$s), and Google Maps settings (%4$s)."
5742
  msgstr ""
5743
 
5744
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:440
5745
- msgid "Go to Local SEO Settings"
5746
  msgstr ""
5747
 
5748
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:441
5749
- msgid "Enable Schema Markup"
5750
  msgstr ""
5751
 
5752
- #: src/vue/pages/search-appearance/views/Media.vue:106
5753
- msgid "Redirect Attachment URLs"
 
 
5754
  msgstr ""
5755
 
5756
- #: src/vue/pages/search-appearance/views/Media.vue:107
5757
- msgid "Attachment"
5758
  msgstr ""
5759
 
5760
- #: src/vue/pages/search-appearance/views/Media.vue:108
5761
- msgid "Attachment Parent"
5762
  msgstr ""
5763
 
5764
- #: src/vue/pages/search-appearance/views/Media.vue:109
5765
- msgid ""
5766
- "We recommended redirecting attachment URL's back to the attachment since "
5767
- "the default WordPress attachment pages have little SEO value."
5768
  msgstr ""
5769
 
5770
- #: src/vue/pages/search-appearance/views/Taxonomies.vue:59
5771
- msgid "Upgrade to Pro and Unlock Custom Taxonomies"
5772
  msgstr ""
5773
 
5774
- # Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro".
5775
- #: src/vue/pages/search-appearance/views/Taxonomies.vue:61
5776
- msgid ""
5777
- "%1$s %2$s lets you set the SEO title and description for custom taxonomies. "
5778
- "You can also control all of the robots meta and other options just like the "
5779
- "default category and tags taxonomies."
5780
  msgstr ""
5781
 
5782
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
5783
- #: src/vue/pages/search-appearance/views/Taxonomies.vue:63
5784
- msgid "Custom Taxonomy Support is only available for licensed %1$s %2$s users."
5785
  msgstr ""
5786
 
5787
- #: src/vue/utils/tags.js:64
5788
- msgid "Product Short Description"
 
5789
  msgstr ""
5790
 
5791
- #: src/vue/utils/tags.js:65
5792
- msgid "A short description for your product."
5793
  msgstr ""
5794
 
5795
- #: src/vue/utils/tags.js:66
5796
- msgid "Sample short description for your product."
5797
  msgstr ""
5798
 
5799
- #: src/vue/utils/tags.js:82
5800
- msgid "Archive"
5801
  msgstr ""
5802
 
5803
- #: src/vue/utils/tags.js:83
5804
- msgid "archive"
5805
  msgstr ""
5806
 
5807
- #: src/vue/plugins/html-sitemap/index.js:44
5808
- msgid "%1$s - HTML Sitemap"
5809
  msgstr ""
5810
 
5811
- # Translators: 1 - AIOSEO.
5812
- #: src/vue/plugins/breadcrumbs/index.js:33
5813
- msgid "%1$s - Breadcrumbs"
5814
  msgstr ""
5815
 
5816
- #: src/vue/standalone/publish-panel/PrePublish.vue:148
5817
- msgid "Blocked!"
5818
  msgstr ""
5819
 
5820
- #: src/vue/standalone/publish-panel/PrePublish.vue:163
5821
- msgid "Good!"
5822
  msgstr ""
5823
 
5824
- # Translators: 1 - How many errors were found.
5825
- #: src/vue/standalone/publish-panel/PrePublish.vue:169
5826
- msgid "%1$s error found!"
5827
- msgid_plural "%1$s errors found!"
5828
- msgstr[0] ""
5829
- msgstr[1] ""
5830
-
5831
- #: src/vue/standalone/publish-panel/PrePublish.vue:174
5832
- msgid "No focus keyphrase!"
5833
  msgstr ""
5834
 
5835
- #: src/vue/standalone/publish-panel/PrePublish.vue:217
5836
- msgid "Your post needs improvement!"
5837
  msgstr ""
5838
 
5839
- #: src/vue/standalone/publish-panel/PrePublish.vue:218
5840
- msgid "You're good to go!"
 
5841
  msgstr ""
5842
 
5843
- #: src/vue/standalone/publish-panel/PrePublish.vue:82
5844
- msgid "Visibility"
5845
  msgstr ""
5846
 
5847
- #: src/vue/standalone/publish-panel/PostPublish.vue:30
5848
- msgid "Get out the word!"
5849
  msgstr ""
5850
 
5851
- #: src/vue/standalone/publish-panel/PostPublish.vue:31
5852
- msgid ""
5853
- "Share your content on your favorite social media platforms to drive "
5854
- "engagement and increase your SEO."
5855
  msgstr ""
5856
 
5857
- #: src/vue/standalone/HtmlSitemapSidebar.vue:109
5858
- msgid "Last Updated"
5859
  msgstr ""
5860
 
5861
- #: src/vue/standalone/HtmlSitemapSidebar.vue:119
5862
- msgid "Show Labels"
5863
  msgstr ""
5864
 
5865
- #: src/vue/standalone/HtmlSitemapSidebar.vue:120
5866
- msgid "Show Publication Date"
5867
  msgstr ""
5868
 
5869
- #: src/vue/store/actions.js:146
5870
- msgid "We couldn't connect to the site, please try again later."
 
5871
  msgstr ""
5872
 
5873
- #: src/vue/pages/social-networks/views/SocialProfiles.vue:26
5874
- msgid ""
5875
- "To let search engines know which profiles are associated with this site, "
5876
- "enter them below:"
5877
  msgstr ""
5878
 
5879
- #: src/vue/pages/social-networks/views/Pinterest.vue:46
 
5880
  msgid ""
5881
- "Pinterest uses Open Graph metadata just like Facebook, so be sure to keep "
5882
- "Open Graph enabled on the Facebook tab checked if you want to optimize your "
5883
- "site for Pinterest."
5884
  msgstr ""
5885
 
5886
- #: src/vue/pages/social-networks/views/Pinterest.vue:47
5887
- msgid "Learn how to get your Pinterest Verification Code"
5888
  msgstr ""
5889
 
5890
- #: src/vue/pages/social-networks/views/Pinterest.vue:48
5891
- msgid ""
5892
- "If you have already confirmed your website with Pinterest, you can skip the "
5893
- "step below."
5894
  msgstr ""
5895
 
5896
- #: src/vue/pages/settings/views/WebmasterTools.vue:359
5897
- #: src/vue/pages/social-networks/views/Pinterest.vue:49
5898
- msgid "Pinterest Verification Code"
5899
  msgstr ""
5900
 
5901
- #: src/vue/pages/social-networks/views/Twitter.vue:432
5902
- msgid "Twitter Card Settings"
5903
  msgstr ""
5904
 
5905
- # Translators: 1 - The plugin name ("All in One SEO").
5906
- #: src/vue/pages/social-networks/views/Twitter.vue:434
5907
- msgid ""
5908
- "Enable this feature if you want Twitter to display a preview card with "
5909
- "images and a text excerpt when a link to your site is shared."
5910
  msgstr ""
5911
 
5912
- #: src/vue/pages/social-networks/views/Twitter.vue:435
5913
- msgid "Enable Twitter Card"
5914
  msgstr ""
5915
 
5916
- #: src/vue/pages/social-networks/views/Twitter.vue:436
5917
- msgid "Default Card Type"
5918
  msgstr ""
5919
 
5920
- #: src/vue/pages/social-networks/views/Facebook.vue:681
5921
- #: src/vue/pages/social-networks/views/Twitter.vue:439
5922
- msgid "Default Post Image Source"
5923
  msgstr ""
5924
 
5925
- #: src/vue/pages/social-networks/views/Facebook.vue:682
5926
- #: src/vue/pages/social-networks/views/Twitter.vue:440
5927
- msgid "Default Term Image Source"
5928
  msgstr ""
5929
 
5930
- #: src/vue/pages/social-networks/views/Facebook.vue:685
5931
- #: src/vue/pages/social-networks/views/Twitter.vue:443
5932
- msgid "Post Custom Field Name"
5933
  msgstr ""
5934
 
5935
- #: src/vue/pages/social-networks/views/Facebook.vue:686
5936
- #: src/vue/pages/social-networks/views/Twitter.vue:444
5937
- msgid "Term Custom Field Name"
 
5938
  msgstr ""
5939
 
5940
- #: src/vue/pages/social-networks/views/Twitter.vue:445
5941
- msgid "Default Post Twitter Image"
5942
  msgstr ""
5943
 
5944
- #: src/vue/pages/social-networks/views/Twitter.vue:446
5945
- msgid "Default Term Twitter Image"
 
 
 
5946
  msgstr ""
5947
 
5948
- #: src/vue/pages/social-networks/views/Facebook.vue:692
5949
- #: src/vue/pages/social-networks/views/Twitter.vue:451
5950
- msgid "Home Page Settings"
5951
  msgstr ""
5952
 
5953
- #: src/vue/pages/social-networks/views/Twitter.vue:452
5954
- msgid "Home Page Image"
 
 
 
5955
  msgstr ""
5956
 
5957
- #: src/vue/pages/social-networks/views/Facebook.vue:699
5958
- #: src/vue/pages/soc
7
  msgid "404"
8
  msgstr ""
9
 
10
+ #: src/vue/pages/monsterinsights/views/Main.vue:20
11
+ msgid "Analytics"
12
+ msgstr ""
13
+
14
+ #: src/vue/pages/social-networks/router/paths.js:19
15
  msgid "Social Profiles"
16
  msgstr ""
17
 
18
+ #: src/vue/pages/social-networks/router/paths.js:28
19
  msgid "Facebook"
20
  msgstr ""
21
 
22
+ #: src/vue/pages/social-networks/router/paths.js:37
23
  msgid "Twitter"
24
  msgstr ""
25
 
26
+ #: src/vue/pages/social-networks/router/paths.js:46
27
  msgid "Pinterest"
28
  msgstr ""
29
 
30
  #: src/vue/pages/dashboard/router/paths.js:19
31
+ #: src/vue/pages/dashboard/views/Main.vue:211
32
  msgid "Dashboard"
33
  msgstr ""
34
 
35
+ #: src/vue/pages/feature-manager/views/Main.vue:20
36
+ msgid "Feature Manager"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  msgstr ""
38
 
39
  #: src/vue/pages/settings/views/Main.vue:29
40
  msgid "General Settings"
41
  msgstr ""
42
 
43
+ #: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:128
44
  msgid "Webmaster Tools"
45
  msgstr ""
46
 
47
+ #: src/vue/mixins/ToolsSettings.js:46
48
  msgid "Breadcrumbs"
49
  msgstr ""
50
 
51
+ #: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:129
52
  msgid "RSS Content"
53
  msgstr ""
54
 
55
+ #: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:138
56
  msgid "Access Control"
57
  msgstr ""
58
 
59
+ #: src/vue/pages/search-appearance/router/paths.js:64
 
 
 
 
60
  msgid "Advanced"
61
  msgstr ""
62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  # Translators: 1 - AIOSEO.
64
  #: src/vue/pages/local-business-seo/blocks/LocationCategories.js:30
65
  msgid "%1$s Local - Location Categories"
77
  msgid "No %s found"
78
  msgstr ""
79
 
80
+ #: src/vue/pages/local-business-seo/blocks/OpeningHours.js:207
81
  msgid "Display Settings"
82
  msgstr ""
83
 
90
  msgid "%1$s Local - Business Info"
91
  msgstr ""
92
 
93
+ # Translators: 1 - AIOSEO.
94
+ #: src/vue/pages/local-business-seo/blocks/Locations.js:46
95
+ msgid "%1$s Local - Locations"
96
+ msgstr ""
97
+
98
+ #: src/vue/pages/local-business-seo/blocks/LocationMap.js:192
99
+ msgid "Settings"
100
  msgstr ""
101
 
102
  #: src/vue/pages/local-business-seo/blocks/LocationMap.js:227
108
  msgid "%1$s Local - Map"
109
  msgstr ""
110
 
 
 
 
 
 
 
 
 
 
111
  # Translators: 1 - AIOSEO.
112
  #: src/vue/pages/local-business-seo/blocks/OpeningHours.js:46
113
  msgid "%1$s Local - Opening Hours"
114
  msgstr ""
115
 
116
+ #: src/vue/standalone/publish-panel/PrePublish.vue:153
117
+ msgid "N/A"
118
  msgstr ""
119
 
120
+ #: src/vue/pages/local-seo/router/paths.js:19
121
+ msgid "Locations"
122
  msgstr ""
123
 
124
+ #: src/vue/pages/local-seo/router/paths.js:28
125
+ msgid "Opening Hours"
126
  msgstr ""
127
 
128
+ #: src/vue/pages/local-seo/router/paths.js:37
129
+ msgid "Maps"
130
  msgstr ""
131
 
132
+ #: src/vue/classes/SiteAnalysis.js:119
133
+ msgid "Title:"
134
  msgstr ""
135
 
136
+ #: src/vue/classes/SiteAnalysis.js:125
137
+ msgid "Description:"
138
  msgstr ""
139
 
140
+ #: src/vue/pages/redirects/views/pro/Redirects.vue:216
141
+ msgid "Edit"
142
  msgstr ""
143
 
144
+ #: src/vue/pages/posts-table/TermApp.vue:117
145
+ msgid "Save"
146
  msgstr ""
147
 
148
+ #: src/vue/pages/posts-table/TermApp.vue:118
149
+ msgid "Cancel"
150
  msgstr ""
151
 
152
+ #: src/vue/pages/posts-table/TermApp.vue:119
153
+ msgid "Please wait..."
 
 
154
  msgstr ""
155
 
156
+ #: src/vue/standalone/notifications/App.vue:17
157
+ msgid "You have new notifications!"
158
  msgstr ""
159
 
160
+ #: src/vue/standalone/publish-panel/PrePublish.vue:148
161
+ msgid "Blocked!"
162
  msgstr ""
163
 
164
+ #: src/vue/standalone/publish-panel/PrePublish.vue:163
165
+ msgid "Good!"
166
  msgstr ""
167
 
168
+ # Translators: 1 - How many errors were found.
169
+ #: src/vue/standalone/publish-panel/PrePublish.vue:169
170
+ msgid "%1$s error found!"
171
+ msgid_plural "%1$s errors found!"
172
+ msgstr[0] ""
173
+ msgstr[1] ""
174
+
175
+ #: src/vue/standalone/publish-panel/PrePublish.vue:174
176
+ msgid "No focus keyphrase!"
177
  msgstr ""
178
 
179
+ #: src/vue/standalone/publish-panel/PrePublish.vue:217
180
+ msgid "Your post needs improvement!"
181
  msgstr ""
182
 
183
+ #: src/vue/standalone/publish-panel/PrePublish.vue:218
184
+ msgid "You're good to go!"
185
  msgstr ""
186
 
187
+ #: src/vue/pages/post-settings/views/General.vue:283
188
+ msgid "Snippet Preview"
 
 
 
 
189
  msgstr ""
190
 
191
+ #: src/vue/standalone/publish-panel/PrePublish.vue:72
192
+ msgid "Canonical URL"
 
 
 
 
193
  msgstr ""
194
 
195
+ #: src/vue/standalone/publish-panel/PrePublish.vue:82
196
+ msgid "Visibility"
 
 
 
 
197
  msgstr ""
198
 
199
+ #: src/vue/pages/dashboard/views/Main.vue:226
200
+ #: src/vue/pages/seo-analysis/views/Main.vue:21
201
+ msgid "SEO Analysis"
 
 
 
202
  msgstr ""
203
 
204
+ #: src/vue/pages/post-settings/views/General.vue:296
205
+ msgid "Readability"
206
  msgstr ""
207
 
208
+ #: src/vue/pages/post-settings/views/General.vue:291
209
+ msgid "Focus Keyphrase"
210
  msgstr ""
211
 
212
+ #: src/vue/router/index.js:71
213
+ msgid "Are you sure you want to leave? you have unsaved changes!"
214
  msgstr ""
215
 
216
+ #: src/vue/pages/social-networks/views/Facebook.vue:678
217
+ msgid "General Facebook Settings"
218
  msgstr ""
219
 
220
+ #: src/vue/pages/social-networks/views/Facebook.vue:679
221
  msgid ""
222
+ "Enable this feature if you want Facebook and other social media to display "
223
+ "a preview with images and a text excerpt when a link to your site is shared."
224
  msgstr ""
225
 
226
+ #: src/vue/pages/social-networks/views/Facebook.vue:680
227
+ msgid "Enable Open Graph Markup"
228
  msgstr ""
229
 
230
+ #: src/vue/pages/social-networks/views/Facebook.vue:681
231
+ msgid "Default Post Image Source"
232
  msgstr ""
233
 
234
+ #: src/vue/pages/social-networks/views/Facebook.vue:682
235
+ msgid "Default Term Image Source"
236
  msgstr ""
237
 
238
+ #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:94
239
+ msgid "Width"
240
  msgstr ""
241
 
242
+ #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:95
243
+ msgid "Height"
244
  msgstr ""
245
 
246
+ #: src/vue/pages/social-networks/views/Facebook.vue:685
247
+ msgid "Post Custom Field Name"
248
  msgstr ""
249
 
250
+ #: src/vue/pages/social-networks/views/Facebook.vue:686
251
+ msgid "Term Custom Field Name"
252
  msgstr ""
253
 
254
+ #: src/vue/pages/social-networks/views/Facebook.vue:687
255
+ msgid "Default Post Facebook Image"
256
  msgstr ""
257
 
258
+ #: src/vue/pages/social-networks/views/Facebook.vue:688
259
+ msgid "Default Term Facebook Image"
260
  msgstr ""
261
 
262
+ #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:97
263
+ #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:328
264
+ msgid "Upload or Select Image"
265
  msgstr ""
266
 
267
+ #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:98
268
+ #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:329
269
+ msgid "Paste your image URL or select a new image"
270
  msgstr ""
271
 
272
+ #: src/vue/pages/social-networks/views/Facebook.vue:691
 
273
  msgid ""
274
+ "Minimum size: 200px x 200px, ideal ratio 1.91:1, 8MB max. (eg: 1640px x "
275
+ "856px or 3280px x 1712px for retina screens)"
276
  msgstr ""
277
 
278
+ #: src/vue/pages/social-networks/views/Facebook.vue:692
279
+ msgid "Home Page Settings"
 
 
 
 
 
280
  msgstr ""
281
 
282
+ #: src/vue/pages/social-networks/views/Facebook.vue:693
283
+ msgid "The Title of the Page or Site you are Sharing"
 
284
  msgstr ""
285
 
286
+ # Translators: 1 - The plugin name ("All in One SEO").
287
+ #: src/vue/pages/social-networks/views/Facebook.vue:695
288
+ msgid ""
289
+ "This is what your page configured with %1$s will look like when shared via "
290
+ "Facebook. The site title and description will be automatically added."
291
  msgstr ""
292
 
293
+ #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:112
294
+ msgid "Image"
295
  msgstr ""
296
 
297
+ #: src/vue/pages/social-networks/views/Facebook.vue:697
298
+ msgid "Site Name"
 
 
299
  msgstr ""
300
 
301
+ #: src/vue/pages/post-settings/views/General.vue:295
302
+ msgid "Title"
303
  msgstr ""
304
 
305
+ #: src/vue/pages/social-networks/views/Facebook.vue:699
306
+ msgid "Use the home page title"
307
  msgstr ""
308
 
309
+ #: src/vue/pages/post-settings/views/Facebook.vue:252
310
+ #: src/vue/pages/social-networks/views/Facebook.vue:700
311
+ msgid "Click on the tags below to insert variables into your site name."
312
  msgstr ""
313
 
314
+ #: src/vue/pages/social-networks/views/Facebook.vue:701
315
+ msgid "Click on the tags below to insert variables into your home page title."
316
  msgstr ""
317
 
318
+ #: src/vue/pages/social-networks/views/Facebook.vue:702
319
+ msgid "Description"
320
  msgstr ""
321
 
322
+ #: src/vue/pages/social-networks/views/Facebook.vue:703
323
+ msgid "Use the home page description"
324
  msgstr ""
325
 
326
+ #: src/vue/pages/social-networks/views/Facebook.vue:704
327
+ msgid "Click on the tags below to insert variables into your description."
328
  msgstr ""
329
 
330
+ #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:101
331
+ #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:331
332
+ msgid "Remove"
333
  msgstr ""
334
 
335
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:146
336
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:440
337
+ msgid "Advanced Settings"
338
  msgstr ""
339
 
340
+ #: src/vue/pages/social-networks/views/Facebook.vue:707
341
+ msgid "Facebook Admin ID"
342
  msgstr ""
343
 
344
+ #: src/vue/pages/social-networks/views/Facebook.vue:708
345
+ msgid "Facebook App ID"
346
  msgstr ""
347
 
348
+ #: src/vue/pages/social-networks/views/Facebook.vue:709
349
+ msgid "Facebook Author URL"
350
  msgstr ""
351
 
352
+ #: src/vue/pages/social-networks/views/Facebook.vue:710
353
+ msgid ""
354
+ "Enter your Facebook Admin ID here. You can enter multiple Facebook Admin "
355
+ "IDs by separating them with a comma."
356
  msgstr ""
357
 
358
+ #: src/vue/pages/social-networks/views/Facebook.vue:711
359
+ msgid ""
360
+ "The Facebook App ID of the site's app. In order to use Facebook Insights, "
361
+ "you must add the App ID to your page. Insights lets you view analytics for "
362
+ "traffic to your site from Facebook. Find the App ID in your App Dashboard."
363
  msgstr ""
364
 
365
+ #: src/vue/pages/social-networks/views/Facebook.vue:712
366
+ msgid ""
367
+ "Will be overriden if the Facebook author URL is present in the individual "
368
+ "User Profile."
369
  msgstr ""
370
 
371
+ #: src/vue/pages/social-networks/views/Facebook.vue:713
372
+ msgid "How to get your Facebook Admin ID"
373
  msgstr ""
374
 
375
+ #: src/vue/pages/social-networks/views/Facebook.vue:714
376
+ msgid "How to get your Facebook App ID"
377
  msgstr ""
378
 
379
+ #: src/vue/pages/social-networks/views/Facebook.vue:715
380
+ msgid "How to get your Facebook Author URL"
381
  msgstr ""
382
 
383
+ #: src/vue/pages/social-networks/views/Facebook.vue:716
384
+ msgid "Show Facebook Author"
385
  msgstr ""
386
 
387
+ #: src/vue/pages/social-networks/views/Facebook.vue:717
388
+ msgid "Default Post Type Object Types"
 
 
389
  msgstr ""
390
 
391
+ #: src/vue/pages/social-networks/views/Facebook.vue:718
392
+ msgid "Default Taxonomy Object Types"
 
 
393
  msgstr ""
394
 
395
+ # Translators: 1 - The plugin short name ("AIOSEO"), 2 - Learn more link.
396
+ #: src/vue/pages/social-networks/views/Facebook.vue:720
397
+ msgid ""
398
+ "Default Taxonomy Object Types are only available for licensed %1$s users. "
399
+ "%2$s"
400
  msgstr ""
401
 
402
+ # Translators: 1 - The plugin short name ("AIOSEO"), 2 - Learn more link.
403
+ #: src/vue/pages/social-networks/views/Facebook.vue:722
404
+ msgid "Default Term Image Source is only available for licensed %1$s users. %2$s"
 
405
  msgstr ""
406
 
407
+ #: src/vue/pages/social-networks/views/Facebook.vue:723
408
+ msgid "Automatically Generate Article Tags"
 
 
409
  msgstr ""
410
 
411
+ #: src/vue/pages/social-networks/views/Facebook.vue:724
412
+ msgid "Use Keywords in Article Tags"
413
  msgstr ""
414
 
415
+ #: src/vue/pages/social-networks/views/Facebook.vue:725
416
+ msgid "Use Categories in Article Tags"
 
 
417
  msgstr ""
418
 
419
+ #: src/vue/pages/social-networks/views/Facebook.vue:726
420
+ msgid "Use Post Tags in Article Tags"
421
  msgstr ""
422
 
423
+ # Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag.
424
+ #: src/vue/pages/social-networks/views/Facebook.vue:728
425
  msgid ""
426
+ "The home page settings below have been disabled because you are using a "
427
+ "static home page. You can %1$sedit your home page settings%2$s directly to "
428
+ "change the title, meta and image."
429
  msgstr ""
430
 
431
+ #: src/vue/pages/post-settings/views/Facebook.vue:244
432
+ #: src/vue/pages/social-networks/views/Facebook.vue:729
433
+ msgid "Object Type"
434
  msgstr ""
435
 
436
+ #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:117
437
+ msgid "Address"
438
  msgstr ""
439
 
440
+ #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:323
441
+ msgid "Phone Number"
 
442
  msgstr ""
443
 
444
+ #: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:102
445
+ msgid "Fax Number"
 
446
  msgstr ""
447
 
448
+ #: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:103
449
+ msgid "Email Address"
450
  msgstr ""
451
 
452
+ #: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:104
453
+ msgid "Show VAT ID"
454
  msgstr ""
455
 
456
+ #: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:105
457
+ msgid "Show Tax ID"
 
458
  msgstr ""
459
 
460
+ #: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:106
461
+ msgid "Phone/Fax Country Code"
462
  msgstr ""
463
 
464
+ #: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:96
465
+ msgid "Show labels"
466
  msgstr ""
467
 
468
+ #: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:97
469
+ msgid "Show icons"
470
  msgstr ""
471
 
472
+ #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:92
473
+ #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:109
474
+ msgid "Business Info"
475
  msgstr ""
476
 
477
+ #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:110
478
+ #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:321
479
+ msgid "Name"
480
  msgstr ""
481
 
482
+ #: src/vue/pages/setup-wizard/views/Success.vue:150
483
+ msgid "Video and News Sitemaps"
484
  msgstr ""
485
 
486
+ #: src/vue/pages/setup-wizard/views/Success.vue:151
487
+ msgid "Image SEO Optimization"
488
  msgstr ""
489
 
490
+ #: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:146
491
+ msgid "Local Business SEO"
492
  msgstr ""
493
 
494
+ #: src/vue/pages/setup-wizard/views/Success.vue:153
495
+ msgid "Advanced WooCommerce"
 
 
496
  msgstr ""
497
 
498
+ #: src/vue/pages/about/views/GettingStarted.vue:140
499
+ msgid "SEO for Categories, Tags and Custom Taxonomies"
500
  msgstr ""
501
 
502
+ #: src/vue/pages/setup-wizard/views/Success.vue:155
503
+ msgid "And many more..."
504
  msgstr ""
505
 
506
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:147
507
+ msgid "Activate All Features"
508
  msgstr ""
509
 
510
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:148
511
+ msgid "Deactivate All Features"
 
512
  msgstr ""
513
 
514
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:149
515
+ msgid "Search for Features..."
 
516
  msgstr ""
517
 
518
+ # Translators: 1 - The plugin name ("All in One SEO").
519
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:151
520
+ msgid "Upgrade %1$s to Pro and Unlock all Features!"
521
  msgstr ""
522
 
523
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:152
524
+ msgid "Upgrade to Pro and Unlock All Features"
525
  msgstr ""
526
 
527
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:153
528
+ msgid "A valid license key is required in order to use our addons."
529
  msgstr ""
530
 
531
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:154
532
+ msgid "Enter License Key"
 
533
  msgstr ""
534
 
535
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:155
536
+ msgid "Purchase License"
 
537
  msgstr ""
538
 
539
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:159
540
+ msgid ""
541
+ "Globally control the Title attribute and Alt text for images in your "
542
+ "content. These attributes are essential for both accessibility and SEO."
543
  msgstr ""
544
 
545
+ #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:8
546
+ msgid ""
547
+ "The Video Sitemap works in much the same way as the XML Sitemap module, it "
548
+ "generates an XML Sitemap specifically for video content on your site. "
549
+ "Search engines use this information to display rich snippet information in "
550
+ "search results."
 
 
 
 
 
 
 
 
 
551
  msgstr ""
552
 
553
+ #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:8
554
+ msgid ""
555
+ "Our Google News Sitemap lets you control which content you submit to Google "
556
+ "News and only contains articles that were published in the last 48 hours. "
557
+ "In order to submit a News Sitemap to Google, you must have added your site "
558
+ "to Google’s Publisher Center and had it approved."
559
  msgstr ""
560
 
561
+ #: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:127
562
+ msgid ""
563
+ "Local Business schema markup enables you to tell Google about your "
564
+ "business, including your business name, address and phone number, opening "
565
+ "hours and price range. This information may be displayed as a Knowledge "
566
+ "Graph card or business carousel."
567
  msgstr ""
568
 
569
+ # Translators: 1 - Plugin short name ("AIOSEO"), 2 "Pro".
570
+ #: src/vue/pages/about/views/GettingStarted.vue:225
571
  msgid ""
572
+ "%1$s %2$s comes with many additional features to help take your site's SEO "
573
+ "to the next level!"
574
  msgstr ""
575
 
576
+ #: src/vue/components/common/wizard/CloseAndExit.vue:14
577
+ msgid "Close and Exit Wizard Without Saving"
 
578
  msgstr ""
579
 
580
+ #: src/vue/pages/local-seo/views/OpeningHours.vue:31
581
+ msgid "Opening Hours Settings"
 
582
  msgstr ""
583
 
584
+ #: src/vue/pages/local-business-seo/views/OpeningHours.vue:174
585
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:276
586
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:219
587
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:295
588
+ msgid "Show Opening Hours"
589
  msgstr ""
590
 
591
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:283
592
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:220
593
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:296
594
+ msgid "Display Opening Hours"
595
  msgstr ""
596
 
597
+ #: src/vue/pages/local-business-seo/views/OpeningHours.vue:175
598
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:284
599
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:221
600
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:297
601
+ msgid "Labels"
602
  msgstr ""
603
 
604
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:285
605
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:298
606
+ msgid "Closed label"
607
  msgstr ""
608
 
609
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:286
610
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:299
611
+ msgid "Text to display when 'Closed' setting is checked"
 
612
  msgstr ""
613
 
614
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:287
615
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:226
616
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:300
617
+ msgid "Open 24h label"
618
  msgstr ""
619
 
620
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:288
621
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:301
622
+ msgid "Text to display when 'Open 24h' setting is checked"
623
  msgstr ""
624
 
625
+ #: src/vue/pages/local-business-seo/views/OpeningHours.vue:183
626
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:289
627
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:229
628
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:302
629
+ msgid "Open 24/7"
630
  msgstr ""
631
 
632
+ #: src/vue/pages/local-business-seo/views/OpeningHours.vue:184
633
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:290
634
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:230
635
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:303
636
+ msgid "Use 24h format"
637
  msgstr ""
638
 
639
+ #: src/vue/pages/local-business-seo/views/OpeningHours.vue:186
640
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:291
641
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:231
642
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:304
643
+ msgid "Timezone"
644
  msgstr ""
645
 
646
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:292
647
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:305
648
+ msgid "Select your timezone:"
649
  msgstr ""
650
 
651
+ #: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:88
652
+ msgid "Monday"
653
  msgstr ""
654
 
655
+ #: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:89
656
+ msgid "Tuesday"
 
 
 
657
  msgstr ""
658
 
659
+ #: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:90
660
+ msgid "Wednesday"
 
661
  msgstr ""
662
 
663
+ #: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:91
664
+ msgid "Thursday"
665
  msgstr ""
666
 
667
+ #: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:92
668
+ msgid "Friday"
669
  msgstr ""
670
 
671
+ #: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:93
672
+ msgid "Saturday"
673
  msgstr ""
674
 
675
+ #: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:94
676
+ msgid "Sunday"
677
  msgstr ""
678
 
679
+ #: src/vue/pages/local-business-seo/views/OpeningHours.vue:181
680
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:301
681
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:234
682
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:314
683
+ msgid "Open 24h"
684
  msgstr ""
685
 
686
+ #: src/vue/pages/local-business-seo/views/OpeningHours.vue:178
687
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
688
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:235
689
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:315
690
+ msgid "Closed"
691
  msgstr ""
692
 
693
+ # Translators: 1 - The current step count. 2 - The total step count.
694
+ #: src/vue/components/common/wizard/Steps.vue:15
695
+ msgid "Step %1$s of %2$s"
696
  msgstr ""
697
 
698
+ # Translators: 1 - "Pro".
699
+ #: src/vue/components/common/Cta.vue:236
700
+ msgid "Upgrade to %1$s"
701
  msgstr ""
702
 
703
+ # Translators: 1 - The plugin name ("All in One SEO").
704
+ #: src/vue/components/common/Cta.vue:238
705
+ msgid "This feature is only available for licensed %1$s %2$s users."
706
  msgstr ""
707
 
708
+ #: src/vue/components/common/Cta.vue:241
709
+ msgid "Learn more about all features"
710
  msgstr ""
711
 
712
+ #: src/vue/components/common/Cta.vue:242
713
+ msgid "See all features"
714
  msgstr ""
715
 
716
+ #: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:128
 
717
  msgid ""
718
+ "Local business information may be displayed when users search for "
719
+ "businesses on Google search or Google Maps. Google decides on a per search "
720
+ "basis whether to display this information or not and it’s completely "
721
+ "automated."
722
  msgstr ""
723
 
724
+ #: src/vue/pages/local-seo/views/pro/Locations.vue:114
725
+ msgid "Display Location Info"
726
  msgstr ""
727
 
728
+ #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:111
729
+ #: src/vue/pages/redirects/views/pro/Redirects.vue:272
730
+ msgid "Type"
731
  msgstr ""
732
 
733
+ #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:113
734
+ msgid "URLs"
735
  msgstr ""
736
 
737
+ #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:119
738
+ msgid "IDs"
739
  msgstr ""
740
 
741
+ #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:121
742
+ msgid "Area Served"
743
  msgstr ""
744
 
745
+ #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:330
746
+ msgid ""
747
+ "Minimum size: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or "
748
+ "WEBP format."
749
  msgstr ""
750
 
751
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:115
752
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:303
753
+ msgid "Upgrade to Pro and Unlock Local SEO"
 
 
754
  msgstr ""
755
 
756
+ # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
757
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:117
758
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:305
759
+ msgid "Local SEO is only available for licensed %1$s %2$s users."
760
  msgstr ""
761
 
762
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:92
763
+ msgid "Local Business Schema"
764
  msgstr ""
765
 
766
+ #: src/vue/pages/local-seo/views/pro/Locations.vue:110
767
+ msgid "Multiple Locations"
 
 
768
  msgstr ""
769
 
770
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:94
771
+ msgid "Business Info and Location blocks, widgets and shortcodes"
772
  msgstr ""
773
 
774
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:95
775
+ msgid "Detailed Address, Contact and Payment Info"
 
776
  msgstr ""
777
 
778
+ #: src/vue/pages/local-seo/views/pro/Locations.vue:107
779
+ msgid "Locations Settings"
 
780
  msgstr ""
781
 
782
+ #: src/vue/pages/local-business-seo/views/OpeningHours.vue:168
783
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:306
784
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:232
785
+ msgid "Select your timezone"
786
  msgstr ""
787
 
788
+ #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:52
789
+ msgid "Google Maps"
 
 
 
 
 
 
790
  msgstr ""
791
 
792
+ #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:118
793
+ msgid "Contact Info"
794
  msgstr ""
795
 
796
+ #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:120
797
+ msgid "Payment Info"
798
  msgstr ""
799
 
800
+ #: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:137
801
  msgid ""
802
+ "An error occurred while activating the addon. Please upload it manually or "
803
+ "contact support for more information."
804
  msgstr ""
805
 
806
+ #: src/vue/mixins/Wizard.js:6
807
+ msgid "Skip this Step"
808
  msgstr ""
809
 
810
+ #: src/vue/mixins/Wizard.js:7
811
+ msgid "Go Back"
812
+ msgstr ""
 
813
 
814
+ #: src/vue/mixins/Wizard.js:8
815
+ msgid "Save and Continue"
 
816
  msgstr ""
817
 
818
+ #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:249
819
+ msgid "Search Appearance"
820
  msgstr ""
821
 
822
+ #: src/vue/pages/social-networks/views/Main.vue:24
823
+ msgid "Social Networks"
 
 
824
  msgstr ""
825
 
826
+ #: src/vue/pages/dashboard/views/Main.vue:233
827
+ msgid "Sitemaps"
828
  msgstr ""
829
 
830
+ #: src/vue/mixins/ToolsSettings.js:41
831
+ msgid "Robots.txt"
832
  msgstr ""
833
 
834
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:89
835
+ msgid "Bad Bot Blocker"
836
  msgstr ""
837
 
838
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:184
839
+ #: src/vue/pages/search-appearance/router/paths.js:46
840
+ msgid "Image SEO"
841
  msgstr ""
842
 
843
+ #: src/vue/mixins/ToolsSettings.js:90
844
+ #: src/vue/pages/redirects/router/paths.js:19
845
+ msgid "Redirects"
846
  msgstr ""
847
 
848
+ #: src/vue/mixins/SeoSiteScore.js:10
849
+ msgid "Excellent!"
850
  msgstr ""
851
 
852
+ #: src/vue/mixins/SeoSiteScore.js:11
853
+ msgid "to see your Site Score."
854
  msgstr ""
855
 
856
+ #: src/vue/mixins/SeoSiteScore.js:12
857
+ msgid "to analyze a competitor site."
 
 
858
  msgstr ""
859
 
860
+ #: src/vue/mixins/SeoSiteScore.js:13
861
+ msgid "A valid license key is required"
862
  msgstr ""
863
 
864
+ # Translators: 1 - The plugin short name ("AIOSEO").
865
+ #: src/vue/pages/connect/router/paths.js:20
866
+ msgid "Connect with %1$s"
867
  msgstr ""
868
 
869
+ # Translators: 1 - HTML Line break tag.
870
+ #: src/vue/mixins/SeoSiteScore.js:6
871
+ msgid "We've got some%1$swork to do!"
 
 
 
872
  msgstr ""
873
 
874
+ # Translators: 1 - HTML Line break tag.
875
+ #: src/vue/mixins/SeoSiteScore.js:8
876
+ msgid "Needs%1$sImprovement!"
877
  msgstr ""
878
 
879
+ #: src/vue/mixins/SeoSiteScore.js:9
880
+ msgid "Very Good!"
881
  msgstr ""
882
 
883
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:63
884
+ msgid "Critical Issues"
 
885
  msgstr ""
886
 
887
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:65
888
+ msgid "Recommended Improvements"
 
 
889
  msgstr ""
890
 
891
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:66
892
+ msgid "Good Results"
893
  msgstr ""
894
 
895
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:67
896
+ msgid "Complete Site Audit Checklist"
897
  msgstr ""
898
 
899
+ #: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:30
900
+ msgid "All Good!"
901
  msgstr ""
902
 
903
+ #: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:29
904
+ msgid "Errors"
905
  msgstr ""
906
 
907
+ #: src/vue/mixins/Image.js:119
908
+ msgid "Choose Image"
909
  msgstr ""
910
 
911
+ #: src/vue/mixins/Image.js:55
912
+ msgid "Default Image (Set Below)"
913
  msgstr ""
914
 
915
+ #: src/vue/mixins/Image.js:56
916
+ msgid "Featured Image"
917
  msgstr ""
918
 
919
+ #: src/vue/mixins/Image.js:57
920
+ msgid "Attached Image"
921
  msgstr ""
922
 
923
+ #: src/vue/mixins/Image.js:58
924
+ msgid "First Image in Content"
 
 
925
  msgstr ""
926
 
927
+ #: src/vue/mixins/Image.js:59
928
+ msgid "Image from Custom Field"
 
 
 
929
  msgstr ""
930
 
931
+ #: src/vue/mixins/Image.js:60
932
+ msgid "Post Author Image"
933
  msgstr ""
934
 
935
+ #: src/vue/mixins/Image.js:61
936
+ msgid "First Available Image"
937
  msgstr ""
938
 
939
+ #: src/vue/mixins/Image.js:68
940
+ msgid "Default Image Source (Set in Social Networks)"
 
 
941
  msgstr ""
942
 
943
+ #: src/vue/mixins/Image.js:71
944
+ msgid "Custom Image"
 
 
945
  msgstr ""
946
 
947
+ # Translators: 1 - A number, 2 - A number.
948
+ #: src/vue/mixins/MaxCounts.js:6
949
+ msgid "%1$s out of %2$s max recommended characters."
 
950
  msgstr ""
951
 
952
+ #: src/vue/mixins/Notifications.js:6
953
+ msgid "Notifications"
 
 
954
  msgstr ""
955
 
956
+ #: src/vue/mixins/Notifications.js:7
957
+ msgid "New Notifications"
 
 
958
  msgstr ""
959
 
960
+ #: src/vue/mixins/Notifications.js:8
961
+ msgid "Active Notifications"
 
 
962
  msgstr ""
963
 
964
+ #: src/vue/mixins/License.js:11
965
+ msgid "Your license has been disabled."
 
 
966
  msgstr ""
967
 
968
+ #: src/vue/mixins/License.js:15
969
+ msgid "Your license key is invalid."
 
 
 
970
  msgstr ""
971
 
972
+ #: src/vue/mixins/License.js:4
973
+ msgid "You have not yet added a license key."
974
  msgstr ""
975
 
976
+ #: src/vue/mixins/License.js:7
977
+ msgid "Your license has expired."
978
  msgstr ""
979
 
980
+ #: src/vue/pages/post-settings/views/General.vue:294
981
+ msgid "Basic SEO"
982
  msgstr ""
983
 
984
+ #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:107
985
+ msgid "Advanced SEO"
986
  msgstr ""
987
 
988
+ #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:108
989
+ msgid "Performance"
990
  msgstr ""
991
 
992
+ #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:109
993
+ msgid "Security"
 
994
  msgstr ""
995
 
996
+ #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:110
997
+ msgid "Keywords:"
998
  msgstr ""
999
 
1000
+ #: src/vue/components/common/core/NotificationCards.vue:59
1001
+ msgid "Great Scott! Where'd they all go?"
1002
  msgstr ""
1003
 
1004
+ #: src/vue/components/common/core/NotificationCards.vue:60
1005
+ msgid "You have no new notifications."
1006
  msgstr ""
1007
 
1008
+ #: src/vue/components/common/core/NotificationCards.vue:61
1009
+ msgid "See Dismissed Notifications"
1010
  msgstr ""
1011
 
1012
+ #: src/vue/pages/post-settings/views/partialsGeneral/metaboxAnalysisDetail.vue:32
1013
+ #: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:19
1014
+ #: src/vue/pages/redirects/views/pro/Redirects.vue:233
1015
+ msgid "Delete"
1016
  msgstr ""
1017
 
1018
+ #: src/vue/components/common/core/Main.vue:80
1019
+ msgid "Save Changes"
 
 
1020
  msgstr ""
1021
 
1022
+ #: src/vue/components/common/core/Notification.vue:100
1023
+ msgid "a minute ago"
1024
  msgstr ""
1025
 
1026
+ # Translators: A number will be prepended to this string, e.g. "2 minutes ago".
1027
+ #: src/vue/components/common/core/Notification.vue:104
1028
+ msgid "minutes ago"
 
 
1029
  msgstr ""
1030
 
1031
+ #: src/vue/components/common/core/Notification.vue:106
1032
+ msgid "a day ago"
1033
  msgstr ""
1034
 
1035
+ # Translators: A number will be prepended to this string, e.g. "2 days ago".
1036
+ #: src/vue/components/common/core/Notification.vue:110
1037
+ msgid "days ago"
 
 
1038
  msgstr ""
1039
 
1040
+ #: src/vue/components/common/core/Notification.vue:111
1041
+ msgid "a month ago"
1042
  msgstr ""
1043
 
1044
+ # Translators: A number will be prepended to this string, e.g. "2 months ago".
1045
+ #: src/vue/components/common/core/Notification.vue:115
1046
+ msgid "months ago"
 
 
 
 
1047
  msgstr ""
1048
 
1049
+ #: src/vue/components/common/core/Notification.vue:117
1050
+ msgid "a year ago"
1051
  msgstr ""
1052
 
1053
+ # Translators: A number will be prepended to this string, e.g. "2 years ago".
1054
+ #: src/vue/components/common/core/Notification.vue:121
1055
+ msgid "years ago"
 
1056
  msgstr ""
1057
 
1058
+ #: src/vue/components/common/core/Notification.vue:79
1059
+ msgid "Dismiss"
1060
  msgstr ""
1061
 
1062
+ #: src/vue/components/common/core/Notification.vue:99
1063
+ msgid "a few seconds ago"
1064
  msgstr ""
1065
 
1066
+ #: src/vue/components/common/core/Help.vue:153
1067
+ msgid "Close"
 
 
 
1068
  msgstr ""
1069
 
1070
+ #: src/vue/components/common/core/Help.vue:154
1071
+ msgid "Search"
 
 
1072
  msgstr ""
1073
 
1074
+ #: src/vue/components/common/core/Help.vue:155
1075
+ msgid "View All"
1076
  msgstr ""
1077
 
1078
+ #: src/vue/components/common/core/Help.vue:156
1079
+ msgid "Docs"
1080
  msgstr ""
1081
 
1082
+ #: src/vue/components/common/core/Help.vue:157
1083
+ msgid "View Documentation"
1084
  msgstr ""
1085
 
1086
+ # Translators: 1 - The plugin short name ("AIOEO").
1087
+ #: src/vue/components/common/core/Help.vue:159
1088
+ msgid "Browse documentation, reference material, and tutorials for %1$s."
1089
  msgstr ""
1090
 
1091
+ #: src/vue/components/common/core/Help.vue:160
1092
+ msgid "View All Documentation"
1093
  msgstr ""
1094
 
1095
+ #: src/vue/components/common/core/Help.vue:161
1096
+ msgid "Get Support"
 
1097
  msgstr ""
1098
 
1099
+ #: src/vue/components/common/core/Help.vue:162
1100
+ msgid "Submit a ticket and our world class support team will be in touch soon."
 
1101
  msgstr ""
1102
 
1103
+ #: src/vue/components/common/core/Help.vue:163
1104
+ msgid "Submit a Support Ticket"
1105
  msgstr ""
1106
 
1107
+ #: src/vue/components/common/core/FeatureCard.vue:128
1108
+ msgid "Upgrade to Pro"
1109
  msgstr ""
1110
 
1111
+ #: src/vue/components/common/core/GettingStarted.vue:83
1112
+ msgid "How to Get Started"
1113
  msgstr ""
1114
 
1115
+ # Translators: 1 - The plugin name ("All in One SEO").
1116
+ #: src/vue/components/common/core/GettingStarted.vue:85
1117
+ msgid "Welcome to %1$s"
1118
  msgstr ""
1119
 
1120
+ # Translators: 1 - The plugin name ("All in One SEO").
1121
+ #: src/vue/components/common/core/GettingStarted.vue:87
1122
+ msgid ""
1123
+ "Thank you for choosing the best WordPress SEO plugin. %1$s default settings "
1124
+ "works great out of the box. We created the setup wizard to guide you "
1125
+ "through some important configuration settings & custom-tailored SEO best "
1126
+ "practices for your site to help you improve rankings."
1127
  msgstr ""
1128
 
1129
+ #: src/vue/components/common/core/GettingStarted.vue:88
1130
+ msgid "Launch the Setup Wizard"
1131
  msgstr ""
1132
 
1133
+ #: src/vue/components/common/core/GettingStarted.vue:89
1134
+ msgid "Read the Setup Guide"
1135
  msgstr ""
1136
 
1137
+ #: src/vue/components/common/core/HtmlTagsEditor.vue:100
1138
+ msgid "Click on the tags below to insert variables into your template."
1139
  msgstr ""
1140
 
1141
+ #: src/vue/components/common/core/HtmlTagsEditor.vue:119
1142
+ msgid "View all tags"
1143
  msgstr ""
1144
 
1145
+ #: src/vue/components/common/core/CopyBlock.vue:48
1146
+ #: src/vue/pages/tools/views/SystemStatus.vue:126
1147
+ msgid "Copied!"
1148
  msgstr ""
1149
 
1150
+ #: src/vue/components/common/core/CopyBlock.vue:48
1151
+ msgid "Click to Copy"
 
1152
  msgstr ""
1153
 
1154
+ #: src/vue/pages/local-seo/views/pro/Locations.vue:116
1155
+ msgid "Shortcode"
1156
  msgstr ""
1157
 
1158
+ #: src/vue/pages/local-seo/views/pro/Locations.vue:117
1159
+ msgid "Gutenberg Block"
 
 
 
1160
  msgstr ""
1161
 
1162
+ #: src/vue/pages/local-seo/views/pro/Locations.vue:118
1163
+ msgid "PHP Code"
1164
  msgstr ""
1165
 
1166
+ #: src/vue/pages/local-seo/views/pro/Locations.vue:115
1167
+ msgid "Widget"
1168
  msgstr ""
1169
 
1170
+ #: src/vue/components/common/core/DisplayInfo.vue:90
1171
+ msgid "Display Info"
1172
  msgstr ""
1173
 
1174
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:428
1175
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:115
1176
+ msgid "Post Types"
1177
  msgstr ""
1178
 
1179
+ #: src/vue/pages/search-appearance/router/paths.js:37
1180
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:429
1181
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:116
1182
+ msgid "Taxonomies"
1183
  msgstr ""
1184
 
1185
+ #: src/vue/components/common/core/AdditionalPages.vue:98
1186
+ #: src/vue/pages/post-settings/views/Advanced.vue:119
1187
+ msgid "Priority"
 
1188
  msgstr ""
1189
 
1190
+ #: src/vue/components/common/core/AdditionalPages.vue:99
1191
+ #: src/vue/pages/post-settings/views/Advanced.vue:120
1192
+ msgid "Frequency"
1193
  msgstr ""
1194
 
1195
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:416
1196
+ msgid "Home Page"
1197
  msgstr ""
1198
 
1199
+ #: src/vue/components/common/core/PriorityScore.vue:67
1200
+ msgid "Archive Pages"
 
 
1201
  msgstr ""
1202
 
1203
+ #: src/vue/components/common/core/PriorityScore.vue:68
1204
+ msgid "Author Pages"
1205
  msgstr ""
1206
 
1207
+ #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:134
1208
+ msgid "default"
1209
  msgstr ""
1210
 
1211
+ #: src/vue/components/common/html-sitemap/IncludedObjects.vue:77
1212
+ msgid "Label:"
1213
  msgstr ""
1214
 
1215
+ #: src/vue/components/common/html-sitemap/IncludedObjects.vue:78
1216
+ msgid "Slug:"
1217
  msgstr ""
1218
 
1219
+ #: src/vue/components/common/core/PostTypeOptions.vue:82
1220
+ msgid "No post types available."
1221
  msgstr ""
1222
 
1223
+ #: src/vue/components/common/core/PostTypeOptions.vue:83
1224
+ msgid "No taxonomies available."
1225
  msgstr ""
1226
 
1227
+ #: src/vue/components/common/core/PostTypeOptions.vue:84
1228
+ msgid ""
1229
+ "All post types are set to noindex or your site does not have any post types "
1230
+ "registered that are supported by this feature."
1231
  msgstr ""
1232
 
1233
+ #: src/vue/components/common/core/PostTypeOptions.vue:85
1234
+ msgid ""
1235
+ "All taxonomies are set to noindex or your site does not have any taxonomies "
1236
+ "registered that are supported by this feature."
1237
  msgstr ""
1238
 
1239
+ #: src/vue/components/common/core/FeatureCard.vue:125
1240
+ msgid "Activated"
1241
  msgstr ""
1242
 
1243
+ #: src/vue/components/common/core/FeatureCard.vue:126
1244
+ msgid "Deactivated"
 
 
1245
  msgstr ""
1246
 
1247
+ #: src/vue/components/common/core/FeatureCard.vue:127
1248
+ msgid "Not Installed"
1249
  msgstr ""
1250
 
1251
+ #: src/vue/components/common/core/FeatureCard.vue:129
1252
+ msgid "Upgrade Your Plan"
 
 
1253
  msgstr ""
1254
 
1255
+ #: src/vue/components/common/core/FeatureCard.vue:130
1256
+ msgid "Manage"
1257
  msgstr ""
1258
 
1259
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:114
1260
+ msgid "Use Default Settings"
1261
  msgstr ""
1262
 
1263
+ #: src/vue/components/common/core/SingleRobotsMeta.vue:163
1264
+ msgid "Robots meta:"
1265
  msgstr ""
1266
 
1267
+ #: src/vue/components/common/core/SingleRobotsMeta.vue:164
1268
+ msgid "Max Snippet"
 
 
1269
  msgstr ""
1270
 
1271
+ #: src/vue/components/common/core/SingleRobotsMeta.vue:165
1272
+ msgid "Max Video Preview"
1273
  msgstr ""
1274
 
1275
+ #: src/vue/components/common/core/SingleRobotsMeta.vue:166
1276
+ msgid "Max Image Preview"
1277
  msgstr ""
1278
 
1279
+ #: src/vue/components/common/core/SingleRobotsMeta.vue:167
1280
+ msgid "Standard"
1281
  msgstr ""
1282
 
1283
+ #: src/vue/components/common/core/SingleRobotsMeta.vue:168
1284
+ msgid "None"
 
1285
  msgstr ""
1286
 
1287
+ #: src/vue/components/common/core/SingleRobotsMeta.vue:169
1288
+ msgid "Large"
 
 
 
1289
  msgstr ""
1290
 
1291
+ #: src/vue/components/common/core/SingleRobotsMeta.vue:170
1292
+ msgid "No Index"
1293
  msgstr ""
1294
 
1295
+ #: src/vue/components/common/core/SingleRobotsMeta.vue:171
1296
+ msgid "No Follow"
 
 
 
1297
  msgstr ""
1298
 
1299
+ #: src/vue/components/common/core/SingleRobotsMeta.vue:172
1300
+ msgid "No Archive"
1301
  msgstr ""
1302
 
1303
+ #: src/vue/components/common/core/SingleRobotsMeta.vue:173
1304
+ msgid "No Translate"
 
 
 
 
1305
  msgstr ""
1306
 
1307
+ #: src/vue/components/common/core/SingleRobotsMeta.vue:174
1308
+ msgid "No Image Index"
 
 
 
1309
  msgstr ""
1310
 
1311
+ #: src/vue/components/common/core/SingleRobotsMeta.vue:175
1312
+ msgid "No Snippet"
 
 
1313
  msgstr ""
1314
 
1315
+ #: src/vue/components/common/core/SingleRobotsMeta.vue:176
1316
+ msgid "No ODP"
 
 
 
 
 
1317
  msgstr ""
1318
 
1319
+ #: src/vue/components/common/core/RobotsMeta.vue:96
1320
+ msgid "No Index Paginated"
 
 
1321
  msgstr ""
1322
 
1323
+ #: src/vue/components/common/core/RobotsMeta.vue:97
1324
+ msgid "No Follow Paginated"
 
1325
  msgstr ""
1326
 
1327
+ #: src/vue/components/common/core/RobotsMeta.vue:98
1328
+ msgid "No Index RSS Feeds"
1329
  msgstr ""
1330
 
1331
+ #: src/vue/components/common/html-sitemap/ExcludeObjects.vue:95
1332
+ msgid "Begin typing a post ID, title or slug to search..."
1333
  msgstr ""
1334
 
1335
+ #: src/vue/components/common/html-sitemap/ExcludeObjects.vue:96
1336
+ msgid "Begin typing a term ID or name to search..."
1337
  msgstr ""
1338
 
1339
+ #: src/vue/components/common/html-sitemap/ExcludeObjects.vue:97
1340
+ msgid "No results found for your search. Try again!"
1341
  msgstr ""
1342
 
1343
+ #: src/vue/components/common/html-sitemap/ExcludeObjects.vue:98
1344
+ msgid "Clear"
1345
  msgstr ""
1346
 
1347
+ #: src/vue/components/common/html-sitemap/ExcludeObjects.vue:99
1348
+ msgid "ID"
1349
  msgstr ""
1350
 
1351
+ #: src/vue/components/common/html-sitemap/ExcludeObjects.vue:94
1352
+ msgid "Type to search..."
1353
  msgstr ""
1354
 
1355
+ #: src/vue/components/common/core/Notifications.vue:94
1356
+ msgid "Dismissed Notifications"
 
 
 
1357
  msgstr ""
1358
 
1359
+ #: src/vue/pages/dashboard/views/Main.vue:239
1360
+ msgid "Dismiss All"
 
 
1361
  msgstr ""
1362
 
1363
+ #: src/vue/components/common/core/SettingsSeparator.vue:101
1364
+ msgid "Custom separator:"
 
 
 
1365
  msgstr ""
1366
 
1367
+ #: src/vue/components/common/core/SettingsSeparator.vue:102
1368
+ msgid "Show More"
 
 
 
1369
  msgstr ""
1370
 
1371
+ #: src/vue/components/common/core/SettingsSeparator.vue:103
1372
+ msgid "Show Less"
 
 
1373
  msgstr ""
1374
 
1375
+ #: src/vue/components/common/core/SiteScore.vue:45
1376
+ msgid "Analyzing..."
 
 
 
1377
  msgstr ""
1378
 
1379
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:64
1380
+ msgid "Warnings"
 
 
 
 
1381
  msgstr ""
1382
 
1383
+ #: src/vue/components/common/core/SiteScoreCompetitor.vue:80
1384
+ msgid "Refresh Results"
 
 
 
1385
  msgstr ""
1386
 
1387
+ #: src/vue/components/common/core/SiteScoreCompetitor.vue:81
1388
+ msgid "Mobile Snapshot"
 
 
1389
  msgstr ""
1390
 
1391
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:57
1392
+ msgid "Your Overall Site Score"
 
 
1393
  msgstr ""
1394
 
1395
+ # Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag.
1396
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:59
1397
+ msgid "A very good score is between %1$s60 and 80%2$s."
 
1398
  msgstr ""
1399
 
1400
+ # Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag.
1401
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:61
1402
+ msgid "For best results, you should strive for %1$s70 and above%2$s."
 
1403
  msgstr ""
1404
 
1405
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:62
1406
+ msgid "An error occurred while analyzing your site."
1407
  msgstr ""
1408
 
1409
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:68
1410
+ msgid "Read the Ultimate WordPress SEO Guide"
 
 
 
1411
  msgstr ""
1412
 
1413
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:77
1414
+ msgid "The URL provided is invalid."
 
 
 
1415
  msgstr ""
1416
 
1417
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:81
1418
+ msgid "We were unable to parse the content for this site."
1419
  msgstr ""
1420
 
1421
+ # Translators: 1 - The plugin short name ('AIOSEO').
1422
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:86
1423
+ msgid "Your site is not connected. Please connect to %1$s, then try again."
1424
  msgstr ""
1425
 
1426
+ #: src/vue/components/common/core/SocialProfiles.vue:124
1427
+ msgid "Your Facebook URL is invalid. Please check the format and try again."
1428
  msgstr ""
1429
 
1430
+ #: src/vue/components/common/core/SocialProfiles.vue:135
1431
+ msgid "Your Twitter URL is invalid. Please check the format and try again."
 
1432
  msgstr ""
1433
 
1434
+ #: src/vue/components/common/core/SocialProfiles.vue:146
1435
+ msgid "Your Instagram URL is invalid. Please check the format and try again."
 
1436
  msgstr ""
1437
 
1438
+ #: src/vue/components/common/core/SocialProfiles.vue:157
1439
+ msgid "Your Pinterest URL is invalid. Please check the format and try again."
 
 
 
1440
  msgstr ""
1441
 
1442
+ #: src/vue/components/common/core/SocialProfiles.vue:168
1443
+ msgid "Your YouTube URL is invalid. Please check the format and try again."
1444
  msgstr ""
1445
 
1446
+ #: src/vue/components/common/core/SocialProfiles.vue:179
1447
+ msgid "Your LinkedIn URL is invalid. Please check the format and try again."
 
1448
  msgstr ""
1449
 
1450
+ #: src/vue/components/common/core/SocialProfiles.vue:190
1451
+ msgid "Your Tumblr URL is invalid. Please check the format and try again."
1452
  msgstr ""
1453
 
1454
+ #: src/vue/components/common/core/SocialProfiles.vue:201
1455
+ msgid "Your Yelp URL is invalid. Please check the format and try again."
1456
  msgstr ""
1457
 
1458
+ #: src/vue/components/common/core/SocialProfiles.vue:212
1459
+ msgid "Your SoundCloud URL is invalid. Please check the format and try again."
1460
  msgstr ""
1461
 
1462
+ #: src/vue/components/common/core/SocialProfiles.vue:223
1463
+ msgid "Your Wikipedia URL is invalid. Please check the format and try again."
1464
  msgstr ""
1465
 
1466
+ #: src/vue/components/common/core/SocialProfiles.vue:234
1467
+ msgid "Your MySpace URL is invalid. Please check the format and try again."
 
 
1468
  msgstr ""
1469
 
1470
+ #: src/vue/components/common/core/SocialProfiles.vue:241
1471
+ msgid "Use the same username for multiple social networks"
 
 
 
 
 
1472
  msgstr ""
1473
 
1474
+ #: src/vue/components/common/core/SocialProfiles.vue:242
1475
+ msgid "Your Username:"
1476
  msgstr ""
1477
 
1478
+ #: src/vue/components/common/notifications/Review.vue:115
1479
+ msgid "Yes, I love it!"
1480
  msgstr ""
1481
 
1482
+ #: src/vue/components/common/notifications/Review.vue:116
1483
+ msgid "Not Really..."
1484
  msgstr ""
1485
 
1486
+ #: src/vue/components/common/notifications/Review.vue:117
1487
+ msgid "Ok, you deserve it"
 
1488
  msgstr ""
1489
 
1490
+ #: src/vue/components/common/notifications/Review.vue:118
1491
+ msgid "Nope, maybe later"
1492
  msgstr ""
1493
 
1494
+ #: src/vue/components/common/notifications/Review.vue:119
1495
+ msgid "Give feedback"
 
1496
  msgstr ""
1497
 
1498
+ #: src/vue/components/common/notifications/Review.vue:120
1499
+ msgid "No thanks"
1500
  msgstr ""
1501
 
1502
+ #: src/vue/components/common/notifications/Review.vue:129
1503
+ msgid "That's Awesome!"
1504
  msgstr ""
1505
 
1506
+ #: src/vue/components/common/notifications/Review.vue:131
1507
+ msgid "Help us improve"
1508
  msgstr ""
1509
 
1510
+ # Translators: 1 = The plugin short name ("AIOSEO")
1511
+ #: src/vue/components/common/notifications/Review.vue:134
1512
+ msgid "Are you enjoying %1$s?"
1513
  msgstr ""
1514
 
1515
+ #: src/vue/components/common/notifications/Review.vue:140
1516
+ msgid ""
1517
+ "Could you please do me a BIG favor and give it a 5-star rating on WordPress "
1518
+ "to help us spread the word and boost our motivation?"
1519
  msgstr ""
1520
 
1521
+ # Translators: The plugin name ("All in One SEO").
1522
+ #: src/vue/components/common/notifications/Review.vue:143
1523
+ msgid "CEO of %1$s"
 
 
 
 
 
1524
  msgstr ""
1525
 
1526
+ # Translators: The plugin name ("All in One SEO").
1527
+ #: src/vue/components/common/notifications/Review.vue:147
1528
+ msgid ""
1529
+ "We're sorry to hear you aren't enjoying %1$s. We would love a chance to "
1530
+ "improve. Could you take a minute and let us know what we can do better?"
1531
  msgstr ""
1532
 
1533
+ #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:260
1534
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:434
1535
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:117
1536
+ msgid "Include All Post Types"
1537
  msgstr ""
1538
 
1539
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:436
1540
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:118
1541
+ msgid "Include All Taxonomies"
1542
  msgstr ""
1543
 
1544
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:139
1545
+ msgid "Display HTML Sitemap"
1546
  msgstr ""
1547
 
1548
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:140
1549
+ msgid "Dedicated Page"
1550
  msgstr ""
1551
 
1552
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:141
1553
+ msgid "e.g. %1$s"
1554
  msgstr ""
1555
 
1556
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:142
1557
+ msgid "Open HTML Sitemap"
1558
  msgstr ""
1559
 
1560
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:143
1561
+ msgid ""
1562
+ "The page that you have entered already exists. Please enter a page with a "
1563
+ "unique slug."
1564
  msgstr ""
1565
 
1566
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:144
1567
+ msgid ""
1568
+ "The following shortcode attributes can be used to override the default "
1569
+ "settings:"
1570
  msgstr ""
1571
 
1572
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:145
1573
+ msgid ""
1574
+ "The function accepts an associative array with the following arguments that "
1575
+ "can be used to override the default settings:"
1576
  msgstr ""
1577
 
1578
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:147
1579
+ msgid "To view the sitemap, enter a URL and save changes."
1580
  msgstr ""
1581
 
1582
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:148
1583
+ msgid "To view the new sitemap, first save changes."
1584
  msgstr ""
1585
 
1586
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:153
1587
+ msgid "The post types (by slug, comma-separated) that are included in the sitemap."
1588
  msgstr ""
1589
 
1590
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:157
1591
+ msgid "The taxonomies (by slug, comma-separated) that are included in the sitemap."
1592
  msgstr ""
1593
 
1594
+ # Translators: 1 - The default value.
1595
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:163
1596
+ msgid "The HTML tag that is used for the label of each section. Defaults to %1$s."
1597
  msgstr ""
1598
 
1599
+ # Translators: 1 - The default value.
1600
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:171
1601
+ msgid "Whether the labels should be shown or not. Defaults to %1$s."
1602
  msgstr ""
1603
 
1604
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:181
1605
+ msgid "Whether the publication date of posts should be shown."
1606
  msgstr ""
1607
 
1608
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:185
1609
+ msgid "Whether the regular sitemap or compact date archive sitemap is output."
 
 
 
1610
  msgstr ""
1611
 
1612
+ # Translators: 1 - HTML code opening tag, 2 - HTML code closing tag.
1613
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:192
1614
+ msgid "The sort direction. The supported values are %1$s and %2$s."
1615
  msgstr ""
1616
 
1617
+ # Translators: 1 - HTML code opening tag, 2 - HTML code closing tag.
1618
+ #: src/vue/components/common/html-sitemap/DisplayInfo.vue:201
1619
+ msgid "The sort order. The supported values are %1$s, %2$s, %3$s and %4$s."
1620
  msgstr ""
1621
 
1622
+ # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Addons".
1623
+ #: src/vue/components/common/notifications/UnlicensedAddons.vue:49
1624
+ msgid "%1$s %2$s Not Configured Properly"
1625
  msgstr ""
1626
 
1627
+ #: src/vue/components/common/notifications/UnlicensedAddons.vue:50
1628
+ msgid "Learn More"
 
1629
  msgstr ""
1630
 
1631
+ #: src/vue/components/common/notifications/UnlicensedAddons.vue:51
1632
+ msgid "Upgrade"
1633
  msgstr ""
1634
 
1635
+ #: src/vue/components/common/core/AddRedirectionUrlResults.vue:52
1636
+ msgid "DRAFT"
1637
  msgstr ""
1638
 
1639
+ #: src/vue/components/common/core/AddRedirectionUrlResults.vue:53
1640
+ msgid "PENDING"
1641
  msgstr ""
1642
 
1643
+ #: src/vue/components/common/core/AddRedirectionUrlResults.vue:54
1644
+ msgid "FUTURE"
1645
  msgstr ""
1646
 
1647
+ #: src/vue/classes/SiteAnalysis.js:102
1648
+ msgid "No keywords were found in the page title."
1649
  msgstr ""
1650
 
1651
+ #: src/vue/classes/SiteAnalysis.js:105
1652
+ msgid "No keywords were found in your meta description."
1653
  msgstr ""
1654
 
1655
+ #: src/vue/classes/SiteAnalysis.js:106
1656
+ msgid "No keywords were found in the meta description."
1657
  msgstr ""
1658
 
1659
+ #: src/vue/classes/SiteAnalysis.js:108
1660
+ msgid "Both the page title and meta description are missing keywords."
 
 
 
 
1661
  msgstr ""
1662
 
1663
+ #: src/vue/classes/SiteAnalysis.js:112
1664
+ msgid "One or more keywords were found in the title and description of your page."
1665
  msgstr ""
1666
 
1667
+ #: src/vue/classes/SiteAnalysis.js:113
1668
+ msgid "One or more keywords were found in the title and description of the page."
1669
  msgstr ""
1670
 
1671
+ #: src/vue/classes/SiteAnalysis.js:129
1672
+ msgid ""
1673
+ "You need to use titles and descriptions that are attractive to users and "
1674
+ "contain your keywords. Use the keywords naturally - keyword stuffing is "
1675
+ "usually detected and will result in a lower ranking. What's more, it's "
1676
+ "pretty off-putting for potential readers, who are more likely to click on "
1677
+ "an appealing link."
1678
  msgstr ""
1679
 
1680
+ #: src/vue/classes/SiteAnalysis.js:130
1681
+ msgid "Edit Your Page Title & Description"
 
1682
  msgstr ""
1683
 
1684
+ #: src/vue/classes/SiteAnalysis.js:139
1685
+ msgid "No H1 tag was found."
1686
  msgstr ""
1687
 
1688
+ # Translators: 1 - The number of H1 tags found.
1689
+ #: src/vue/classes/SiteAnalysis.js:142
1690
+ msgid "For the best SEO results there should be exactly one H1 tag on each page."
1691
  msgstr ""
1692
 
1693
+ # Translators: 1 - The number of H1 tags found.
1694
+ #: src/vue/classes/SiteAnalysis.js:142
1695
+ msgid "%1$d H1 tags were found."
 
 
1696
  msgstr ""
1697
 
1698
+ #: src/vue/classes/SiteAnalysis.js:147
1699
+ msgid "One H1 tag was found on your page."
1700
  msgstr ""
1701
 
1702
+ #: src/vue/classes/SiteAnalysis.js:148
1703
+ msgid "One H1 tag was found on the page."
1704
  msgstr ""
1705
 
1706
+ #: src/vue/classes/SiteAnalysis.js:154
1707
+ msgid ""
1708
+ "WordPress sites usually insert the page or post title as an H1 tag "
1709
+ "(although custom themes can change this behavior)."
1710
  msgstr ""
1711
 
1712
+ #: src/vue/classes/SiteAnalysis.js:154
1713
+ msgid ""
1714
+ "Ensure your most important keywords appear in the H1 tag - don't force it, "
1715
+ "use them in a natural way that makes sense to human readers."
1716
  msgstr ""
1717
 
1718
+ #: src/vue/classes/SiteAnalysis.js:154
1719
+ msgid ""
1720
+ "Because your headline plays a large role in reader engagement, it's worth "
1721
+ "spending extra time perfecting it. Many top copywriters spend hours getting "
1722
+ "their headlines just right - sometimes they spend longer on the headline "
1723
+ "than the rest of the article!"
1724
  msgstr ""
1725
 
1726
+ #: src/vue/classes/SiteAnalysis.js:154
1727
+ msgid ""
1728
+ "A good headline stimulates reader interest and offers a compelling reason "
1729
+ "to read your content. It promises a believable benefit."
1730
  msgstr ""
1731
 
1732
+ #: src/vue/classes/SiteAnalysis.js:154
 
1733
  msgid ""
1734
+ "You should write as if your readers are selfish people with short attention "
1735
+ "spans (because that describes a large percentage of the world's "
1736
+ "population). Readers visit websites for selfish reasons - they're not there "
1737
+ "to make you happy."
1738
  msgstr ""
1739
 
1740
+ #: src/vue/classes/SiteAnalysis.js:165
1741
+ msgid "No H2 tags were found on your page."
 
1742
  msgstr ""
1743
 
1744
+ #: src/vue/classes/SiteAnalysis.js:166
1745
+ msgid "No H2 tags were found on the page."
 
1746
  msgstr ""
1747
 
1748
+ #: src/vue/classes/SiteAnalysis.js:170
1749
+ msgid "H2 tags were found on your page."
1750
  msgstr ""
1751
 
1752
+ #: src/vue/classes/SiteAnalysis.js:171
1753
+ msgid "H2 tags were found on the page."
1754
  msgstr ""
1755
 
1756
+ #: src/vue/classes/SiteAnalysis.js:177
1757
+ msgid ""
1758
+ "Make sure you have a good balance of H2 tags to plain text in your content. "
1759
+ "Break the content down into logical sections, and use headings to introduce "
1760
+ "each new topic."
1761
  msgstr ""
1762
 
1763
+ #: src/vue/classes/SiteAnalysis.js:177
1764
+ msgid ""
1765
+ "Also, try to include synonyms and relevant terminology in H2 tag text. "
1766
+ "Search engines are pretty smart - they know which words usually occur "
1767
+ "together in each niche."
1768
  msgstr ""
1769
 
1770
+ #: src/vue/classes/SiteAnalysis.js:177
1771
+ msgid ""
1772
+ "It should be easy to include your main and supporting keywords in the H2 "
1773
+ "tags - after all, these keywords describe your content! If it's hard to "
1774
+ "work the keywords into your subheadings, it could be a sign that the "
1775
+ "keywords aren't closely related to your content."
1776
  msgstr ""
1777
 
1778
+ #: src/vue/classes/SiteAnalysis.js:177
1779
+ msgid ""
1780
+ "Don't try to force keywords into sub-headings if they feel unnatural. It "
1781
+ "will send the wrong message to your readers, possibly driving them away."
 
 
 
 
 
 
 
1782
  msgstr ""
1783
 
1784
+ #: src/vue/classes/SiteAnalysis.js:188
1785
+ msgid "Some images on your page have no alt attribute."
1786
  msgstr ""
1787
 
1788
+ #: src/vue/classes/SiteAnalysis.js:189
1789
+ msgid "Some images on the page have no alt attribute."
 
1790
  msgstr ""
1791
 
1792
+ #: src/vue/classes/SiteAnalysis.js:193
1793
+ msgid "All images on your page have alt attributes."
1794
  msgstr ""
1795
 
1796
+ #: src/vue/classes/SiteAnalysis.js:194
1797
+ msgid "All images on the page have alt attributes."
1798
  msgstr ""
1799
 
1800
+ #: src/vue/classes/SiteAnalysis.js:200
1801
  msgid ""
1802
+ "Make sure every image has an alt tag, and add useful descriptions to each "
1803
+ "image. Add your keywords or synonyms - but do it in a natural way."
 
 
 
 
 
 
1804
  msgstr ""
1805
 
1806
+ #: src/vue/classes/SiteAnalysis.js:211
1807
+ msgid "No internal links were found on your page."
 
1808
  msgstr ""
1809
 
1810
+ #: src/vue/classes/SiteAnalysis.js:212
1811
+ msgid "No internal links were found on the page."
1812
  msgstr ""
1813
 
1814
+ #: src/vue/classes/SiteAnalysis.js:215
1815
+ msgid "Too few internal links on your page."
1816
  msgstr ""
1817
 
1818
+ #: src/vue/classes/SiteAnalysis.js:216
1819
+ msgid "Too few internal links on the page."
 
1820
  msgstr ""
1821
 
1822
+ #: src/vue/classes/SiteAnalysis.js:218
1823
+ msgid "The ratio of internal links to external links is uneven."
1824
  msgstr ""
1825
 
1826
+ #: src/vue/classes/SiteAnalysis.js:222
1827
+ msgid "Your page has a correct number of internal and external links."
 
 
 
 
1828
  msgstr ""
1829
 
1830
+ #: src/vue/classes/SiteAnalysis.js:223
1831
+ msgid "The page has a correct number of internal and external links."
1832
  msgstr ""
1833
 
1834
+ #: src/vue/classes/SiteAnalysis.js:228
1835
+ msgid "Internal:"
1836
  msgstr ""
1837
 
1838
+ #: src/vue/classes/SiteAnalysis.js:228
1839
+ msgid "External:"
1840
  msgstr ""
1841
 
1842
+ #: src/vue/classes/SiteAnalysis.js:229
1843
+ msgid ""
1844
+ "Add links to external resources that are useful for your readers. Make sure "
1845
+ "you link to high-quality sites - Google penalizes pages that link to "
1846
+ "\"spammy\" sites (ones that break the Google webmaster guidelines)."
1847
  msgstr ""
1848
 
1849
+ #: src/vue/classes/SiteAnalysis.js:229
1850
+ msgid ""
1851
+ "Ideally, the links should be highly relevant to the subject you're writing "
1852
+ "about. It's impossible to cover every aspect of a subject on a single page, "
1853
+ "but your readers may be fascinated by some detail you barely touch on. If "
1854
+ "you link to a resource where they can learn more, they'll be grateful. "
1855
+ "What's more, you'll be rewarded with higher rankings!"
1856
  msgstr ""
1857
 
1858
+ #: src/vue/classes/SiteAnalysis.js:240
1859
+ msgid "No canonical link tag found on your page."
1860
  msgstr ""
1861
 
1862
+ #: src/vue/classes/SiteAnalysis.js:241
1863
+ msgid "No canonical link tag found on the page."
 
1864
  msgstr ""
1865
 
1866
+ #: src/vue/classes/SiteAnalysis.js:245
1867
+ msgid "Your page is using the canonical link tag."
1868
  msgstr ""
1869
 
1870
+ #: src/vue/classes/SiteAnalysis.js:246
1871
+ msgid "The page is using the canonical link tag."
1872
  msgstr ""
1873
 
1874
+ #: src/vue/classes/SiteAnalysis.js:252
1875
+ msgid ""
1876
+ "Every page on your site should have a <link> tag with a 'rel=\"canonical\"' "
1877
+ "attribute. The link tag should go inside the page's head tag, and it should "
1878
+ "contain the page's \"correct\" URL."
1879
  msgstr ""
1880
 
1881
+ #: src/vue/classes/SiteAnalysis.js:252
1882
+ msgid ""
1883
+ "If you've republished an article from another source (such as another site "
1884
+ "or a different section of your own site) then you need to pick which URL is "
1885
+ "the \"correct\" one and use that!"
1886
  msgstr ""
1887
 
1888
+ #: src/vue/classes/SiteAnalysis.js:263
1889
+ msgid "Your page contains a noindex header or meta tag."
1890
  msgstr ""
1891
 
1892
+ #: src/vue/classes/SiteAnalysis.js:264
1893
+ msgid "The page contains a noindex header or meta tag."
1894
  msgstr ""
1895
 
1896
+ #: src/vue/classes/SiteAnalysis.js:268
1897
+ msgid "Your page does not contain any noindex header or meta tag."
1898
  msgstr ""
1899
 
1900
+ #: src/vue/classes/SiteAnalysis.js:269
1901
+ msgid "The page does not contain any noindex header or meta tag."
1902
  msgstr ""
1903
 
1904
+ #: src/vue/classes/SiteAnalysis.js:274
1905
+ msgid ""
1906
+ "Only ever use noindex meta tag or header on pages you want to keep out of "
1907
+ "the reach of search engines!"
1908
  msgstr ""
1909
 
1910
+ #: src/vue/classes/SiteAnalysis.js:285
1911
+ msgid ""
1912
+ "The www and non-www versions of your URL are not redirected to the same "
1913
+ "site."
1914
  msgstr ""
1915
 
1916
+ #: src/vue/classes/SiteAnalysis.js:286
1917
+ msgid "The www and non-www versions of the URL are not redirected to the same site."
1918
  msgstr ""
1919
 
1920
+ #: src/vue/classes/SiteAnalysis.js:290
1921
+ msgid ""
1922
+ "Both the www and non-www versions of your URL are redirected to the same "
1923
+ "site."
1924
  msgstr ""
1925
 
1926
+ #: src/vue/classes/SiteAnalysis.js:291
1927
+ msgid ""
1928
+ "Both the www and non-www versions of the URL are redirected to the same "
1929
+ "site."
1930
  msgstr ""
1931
 
1932
+ #: src/vue/classes/SiteAnalysis.js:296
1933
+ msgid ""
1934
+ "Decide whether you want your site's URLs to include a \"www\", or if you "
1935
+ "prefer a plain domain name. There are marketing pros and cons for each "
1936
+ "choice, but neither one is better or worse for SEO purposes - as long as "
1937
+ "you're consistent."
1938
  msgstr ""
1939
 
1940
+ #: src/vue/classes/SiteAnalysis.js:296
1941
+ msgid ""
1942
+ "You should use HTTP redirections (301 permanant redirects) to pass PageRank "
1943
+ "from the \"wrong\" URLs to the standard (canonical) ones. That way, your "
1944
+ "content will still benefit from backlinks if someone makes a mistake and "
1945
+ "uses the wrong URL."
1946
  msgstr ""
1947
 
1948
+ #: src/vue/classes/SiteAnalysis.js:30
1949
+ msgid "We couldn't find an SEO Title."
1950
  msgstr ""
1951
 
1952
+ #: src/vue/classes/SiteAnalysis.js:307
1953
+ msgid "Your robots.txt file is missing or unavailable."
1954
  msgstr ""
1955
 
1956
+ #: src/vue/classes/SiteAnalysis.js:308
1957
+ msgid "The robots.txt file is missing or unavailable."
1958
  msgstr ""
1959
 
1960
+ #: src/vue/classes/SiteAnalysis.js:327
1961
+ msgid ""
1962
+ "Your site has a robots.txt file which includes one or more \"disallow\" "
1963
+ "directives."
1964
  msgstr ""
1965
 
1966
+ #: src/vue/classes/SiteAnalysis.js:328
1967
+ msgid ""
1968
+ "The site has a robots.txt file which includes one or more \"disallow\" "
1969
+ "directives."
1970
  msgstr ""
1971
 
1972
+ #: src/vue/classes/SiteAnalysis.js:332
1973
+ msgid "Your site has a robots.txt file."
1974
  msgstr ""
1975
 
1976
+ #: src/vue/classes/SiteAnalysis.js:333
1977
+ msgid "The site has a robots.txt file."
1978
  msgstr ""
1979
 
1980
+ # Translators: 1 - The length of the SEO title as a number.
1981
+ #: src/vue/classes/SiteAnalysis.js:34
1982
+ msgid "Your SEO title is only %1$d characters long, which is too short."
1983
  msgstr ""
1984
 
1985
+ # Translators: 1 - The Plugin short name ("AIOSEO").
1986
+ #: src/vue/classes/SiteAnalysis.js:340
1987
+ msgid "Make sure that you only block parts you don't want to be indexed."
1988
  msgstr ""
1989
 
1990
+ # Translators: 1 - The Plugin short name ("AIOSEO").
1991
+ #: src/vue/classes/SiteAnalysis.js:340
1992
+ msgid ""
1993
+ "You can manually create a robots.txt file and upload it to your site's web "
1994
+ "root. A simpler option is to use a plugin for your CMS platform."
1995
  msgstr ""
1996
 
1997
+ # Translators: 1 - The Plugin short name ("AIOSEO").
1998
+ #: src/vue/classes/SiteAnalysis.js:340
1999
  msgid ""
2000
+ "%1$s has a full suite of tools to manage the robots.txt file, along with "
2001
+ "other related technologies, like XML Sitemaps."
2002
  msgstr ""
2003
 
2004
+ #: src/vue/classes/SiteAnalysis.js:350
2005
+ msgid "Some Open Graph meta tags are missing."
2006
  msgstr ""
2007
 
2008
+ #: src/vue/classes/SiteAnalysis.js:352
2009
+ msgid "Duplicate Open Graph meta tags were found."
2010
  msgstr ""
2011
 
2012
+ #: src/vue/classes/SiteAnalysis.js:355
2013
+ msgid "All the required Open Graph meta tags have been found."
2014
  msgstr ""
2015
 
2016
+ # Translators: 1 - The length of the SEO title as a number.
2017
+ #: src/vue/classes/SiteAnalysis.js:36
2018
+ msgid "The SEO title is only %1$d characters long, which is too short."
2019
  msgstr ""
2020
 
2021
+ # Translators: 1 - The Plugin short name ("AIOSEO").
2022
+ #: src/vue/classes/SiteAnalysis.js:362
2023
  msgid ""
2024
+ "Insert a customized Open Graph meta tag for each important page on your "
2025
+ "site. The standard is very well documented - you can learn more from "
2026
+ "Facebook's developer pages."
2027
  msgstr ""
2028
 
2029
+ # Translators: 1 - The Plugin short name ("AIOSEO").
2030
+ #: src/vue/classes/SiteAnalysis.js:362
2031
  msgid ""
2032
+ "%1$s provides a simple but powerful interface to craft your Open Graph "
2033
+ "data. You get immediate feedback with an interactive preview, and you don't "
2034
+ "have to mess around with raw HTML markup."
2035
  msgstr ""
2036
 
2037
+ #: src/vue/classes/SiteAnalysis.js:373
2038
+ msgid "No Schema.org data was found on your page."
2039
  msgstr ""
2040
 
2041
+ #: src/vue/classes/SiteAnalysis.js:374
2042
+ msgid "No Schema.org data was found on the page."
2043
  msgstr ""
2044
 
2045
+ #: src/vue/classes/SiteAnalysis.js:378
2046
+ msgid "We found Schema.org data on your page."
2047
  msgstr ""
2048
 
2049
+ #: src/vue/classes/SiteAnalysis.js:379
2050
+ msgid "We found Schema.org data on the page."
2051
  msgstr ""
2052
 
2053
+ # Translators: 1 - The Plugin short name ("AIOSEO").
2054
+ #: src/vue/classes/SiteAnalysis.js:385
2055
+ msgid ""
2056
+ "%1$s makes it extremely easy to add highly relevant Schema.org markup to "
2057
+ "your site. It has a simple graphical interface, so you don't have to get "
2058
+ "your hands dirty with complex HTML markup."
2059
  msgstr ""
2060
 
2061
+ #: src/vue/classes/SiteAnalysis.js:386
2062
+ msgid "Edit Your Page"
 
2063
  msgstr ""
2064
 
2065
+ #: src/vue/classes/SiteAnalysis.js:396
2066
+ msgid "Your server is not using \"expires\" headers for your images."
2067
  msgstr ""
2068
 
2069
+ #: src/vue/classes/SiteAnalysis.js:397
2070
+ msgid "The server is not using \"expires\" headers for the images."
2071
  msgstr ""
2072
 
2073
+ # Translators: 1 - The length of the SEO title as a number.
2074
+ #: src/vue/classes/SiteAnalysis.js:40
2075
+ msgid "Your SEO title is %1$d characters long, which is too long."
2076
  msgstr ""
2077
 
2078
+ #: src/vue/classes/SiteAnalysis.js:401
2079
+ msgid "Your server is using \"expires\" headers for your images."
2080
  msgstr ""
2081
 
2082
+ #: src/vue/classes/SiteAnalysis.js:402
2083
+ msgid "The server is using \"expires\" headers for the images."
2084
  msgstr ""
2085
 
2086
+ #: src/vue/classes/SiteAnalysis.js:407
2087
+ msgid ""
2088
+ "If you use the Apache or NGINX web servers, you can edit the configuration "
2089
+ "files to set the \"expires\" header for all image files. For Apache, you "
2090
+ "can also use a \".htaccess\" file to change the settings for each folder."
2091
  msgstr ""
2092
 
2093
+ #: src/vue/classes/SiteAnalysis.js:407
2094
+ msgid ""
2095
+ "Alternatively, you can use a CMS plugin to simplify the process - it's a "
2096
+ "more user-friendly option. WordPress has a host of caching plugins, and "
2097
+ "most of them give you options to control the caching headers."
2098
  msgstr ""
2099
 
2100
+ #: src/vue/classes/SiteAnalysis.js:415
2101
+ msgid "Some Javascript files don't seem to be minified."
2102
  msgstr ""
2103
 
2104
+ #: src/vue/classes/SiteAnalysis.js:418
2105
+ msgid "All Javascript files appear to be minified."
2106
  msgstr ""
2107
 
2108
+ # Translators: 1 - The length of the SEO title as a number.
2109
+ #: src/vue/classes/SiteAnalysis.js:42
2110
+ msgid "The SEO title is %1$d characters long, which is too long."
2111
  msgstr ""
2112
 
2113
+ #: src/vue/classes/SiteAnalysis.js:424
2114
+ msgid ""
2115
+ "JavaScript files appear in many places, including frameworks (like "
2116
+ "Bootstrap), themes and templates, and third-party plugins."
2117
  msgstr ""
2118
 
2119
+ #: src/vue/classes/SiteAnalysis.js:424
2120
+ msgid "We recommend tracking down where the un-minified JavaScript files come from"
2121
  msgstr ""
2122
 
2123
+ #: src/vue/classes/SiteAnalysis.js:424
2124
+ msgid ""
2125
+ "There are server-side tools (including WordPress plugins) to automatically "
2126
+ "minify JavaScript files."
2127
  msgstr ""
2128
 
2129
+ #: src/vue/classes/SiteAnalysis.js:432
2130
+ msgid "Some CSS files don't seem to be minified."
 
2131
  msgstr ""
2132
 
2133
+ #: src/vue/classes/SiteAnalysis.js:435
2134
+ msgid "All CSS files appear to be minified."
2135
  msgstr ""
2136
 
2137
+ #: src/vue/classes/SiteAnalysis.js:441
2138
+ msgid ""
2139
+ "CSS files appear in many places, including frameworks (like Bootstrap), "
2140
+ "themes and templates, and third-party plugins."
2141
  msgstr ""
2142
 
2143
+ #: src/vue/classes/SiteAnalysis.js:441
2144
+ msgid "We recommend tracking down where the un-minified CSS files come from."
2145
  msgstr ""
2146
 
2147
+ #: src/vue/classes/SiteAnalysis.js:441
 
2148
  msgid ""
2149
+ "There are server-side tools (including WordPress plugins) to automatically "
2150
+ "minify CSS files."
 
 
 
 
2151
  msgstr ""
2152
 
2153
+ # Translators: 1 - The total number of page requests.
2154
+ #: src/vue/classes/SiteAnalysis.js:450
2155
+ msgid "Your page makes %1$d requests."
2156
  msgstr ""
2157
 
2158
+ # Translators: 1 - The total number of page requests.
2159
+ #: src/vue/classes/SiteAnalysis.js:452
2160
+ msgid "The page makes %1$d requests."
2161
  msgstr ""
2162
 
2163
+ #: src/vue/classes/SiteAnalysis.js:454
2164
+ msgid "More than 20 requests can result in slow page loading."
 
2165
  msgstr ""
2166
 
2167
+ #: src/vue/classes/SiteAnalysis.js:462
2168
+ msgid "Images:"
2169
  msgstr ""
2170
 
2171
+ #: src/vue/classes/SiteAnalysis.js:462
2172
+ msgid "JavaScript:"
 
 
 
2173
  msgstr ""
2174
 
2175
+ #: src/vue/classes/SiteAnalysis.js:462
2176
+ msgid "CSS:"
2177
  msgstr ""
2178
 
2179
+ #: src/vue/classes/SiteAnalysis.js:463
2180
+ msgid "Try to replace embedded objects with HTML5 alternatives."
2181
  msgstr ""
2182
 
2183
+ # Translators: 1 - The length of the SEO title as a number.
2184
+ #: src/vue/classes/SiteAnalysis.js:47
2185
+ msgid "Your SEO title is set and is %1$d characters long."
2186
  msgstr ""
2187
 
2188
+ # Translators: 1 - The total number of page requests.
2189
+ #: src/vue/classes/SiteAnalysis.js:471
2190
+ msgid "The size of the HTML document is %1$d Kb."
2191
  msgstr ""
2192
 
2193
+ #: src/vue/classes/SiteAnalysis.js:473
2194
+ msgid "This is over our recommendation of 50 Kb."
2195
  msgstr ""
2196
 
2197
+ #: src/vue/classes/SiteAnalysis.js:477
2198
+ msgid "This is under the average of 33 Kb."
2199
  msgstr ""
2200
 
2201
+ #: src/vue/classes/SiteAnalysis.js:485
2202
+ msgid ""
2203
+ "In order to reduce page size, remove any unnecessary tags from your markup. "
2204
+ "This includes developer comments, which are invisible to your users - "
2205
+ "search engines ignore the text in comments, too."
2206
  msgstr ""
2207
 
2208
+ #: src/vue/classes/SiteAnalysis.js:485
2209
+ msgid ""
2210
+ "Sometimes inline CSS is a culprit. A little inline CSS can help your page "
2211
+ "render faster. Too much will bloat the HTML file and increase the page "
2212
+ "loading time."
2213
  msgstr ""
2214
 
2215
+ #: src/vue/classes/SiteAnalysis.js:485
2216
+ msgid ""
2217
+ "You can reduce CSS repetition with HTML class and ID attributes. Often the "
2218
+ "same rules will be repeated across many page elements, embedded in each "
2219
+ "tag's \"style\" attribute. You can extract them into a single \"style\" tag "
2220
+ "and use classes and ID's to target each element."
2221
  msgstr ""
2222
 
2223
+ #: src/vue/classes/SiteAnalysis.js:485
2224
+ msgid ""
2225
+ "Removing white space can also have an impact on your HTML page's size. "
2226
+ "White space characters like carriage returns and tabs are ignored by the "
2227
+ "browser, but they make the markup easier for developers to read. So you "
2228
+ "should always strip them from your templates or themes before you use them "
2229
+ "in a production environment."
2230
  msgstr ""
2231
 
2232
+ # Translators: 1 - The length of the SEO title as a number.
2233
+ #: src/vue/classes/SiteAnalysis.js:49
2234
+ msgid "The SEO title is set and is %1$d characters long."
2235
  msgstr ""
2236
 
2237
+ # Translators: 1 - The total number of page requests.
2238
+ #: src/vue/classes/SiteAnalysis.js:495
2239
+ msgid ""
2240
+ "The response time of your page is %1$f seconds. It is recommended to keep "
2241
+ "it equal to or below 0.2 seconds."
2242
  msgstr ""
2243
 
2244
+ # Translators: 1 - The total number of page requests.
2245
+ #: src/vue/classes/SiteAnalysis.js:497
2246
  msgid ""
2247
+ "The response time of the page is %1$f seconds. It is recommended to keep it "
2248
+ "equal to or below 0.2 seconds."
 
2249
  msgstr ""
2250
 
2251
+ #: src/vue/classes/SiteAnalysis.js:501
2252
+ msgid "Your response time is under 0.2 seconds."
2253
  msgstr ""
2254
 
2255
+ #: src/vue/classes/SiteAnalysis.js:502
2256
+ msgid "The response time is under 0.2 seconds."
2257
  msgstr ""
2258
 
2259
+ #: src/vue/classes/SiteAnalysis.js:507
2260
+ msgid ""
2261
+ "If you want to continue to improve your response time, the simplest and "
2262
+ "fastest fix is to use a caching plugin. Caching plugins keep a cached "
2263
+ "version of each page on your site. Instead of building the page from "
2264
+ "scratch, the server will send the cached copy."
2265
  msgstr ""
2266
 
2267
+ #: src/vue/classes/SiteAnalysis.js:507
2268
  msgid ""
2269
+ "You can get an even greater boost in speed with a content delivery network "
2270
+ "service. These services host a copy of your content on multiple servers "
2271
+ "spread out across the globe. A user's request is handled by the edge server "
2272
+ "that's closest to their physical location, so the content arrives "
2273
+ "incredibly fast."
2274
  msgstr ""
2275
 
2276
+ #: src/vue/classes/SiteAnalysis.js:516
2277
+ msgid "Plugins from your website are publicly visible."
2278
  msgstr ""
2279
 
2280
+ #: src/vue/classes/SiteAnalysis.js:517
2281
+ msgid "Plugins from the website are publicly visible."
2282
  msgstr ""
2283
 
2284
+ #: src/vue/classes/SiteAnalysis.js:521
2285
+ msgid "You have no visible plugins!"
2286
  msgstr ""
2287
 
2288
+ #: src/vue/classes/SiteAnalysis.js:522
2289
+ msgid "There are no visible plugins."
2290
  msgstr ""
2291
 
2292
+ #: src/vue/classes/SiteAnalysis.js:528
2293
+ msgid ""
2294
+ "It's a great idea to try and hide the plugins you have visible. From time "
2295
+ "to time vulnerabilities are found in plugins and if your site is not "
2296
+ "updated in a timely fashion, outdated plugins and themes can be exploited."
2297
  msgstr ""
2298
 
2299
+ # Translators: 1 - The name of the theme.
2300
+ #: src/vue/classes/SiteAnalysis.js:538
2301
+ msgid "Anyone can see that you are using the %1$s theme."
2302
  msgstr ""
2303
 
2304
+ # Translators: 1 - The name of the theme.
2305
+ #: src/vue/classes/SiteAnalysis.js:540
2306
+ msgid "Anyone can see that they are using the %1$s theme."
2307
  msgstr ""
2308
 
2309
+ #: src/vue/classes/SiteAnalysis.js:544
2310
+ msgid "Your theme is not visible!"
2311
  msgstr ""
2312
 
2313
+ #: src/vue/classes/SiteAnalysis.js:545
2314
+ msgid "The theme is not visible."
2315
  msgstr ""
2316
 
2317
+ #: src/vue/classes/SiteAnalysis.js:55
2318
+ msgid ""
2319
+ "Ensure your page's title includes your target keywords, and design it to "
2320
+ "encourage users to click."
2321
  msgstr ""
2322
 
2323
+ #: src/vue/classes/SiteAnalysis.js:55
2324
+ msgid ""
2325
+ "Writing compelling titles is both a science and an art. There are automated "
2326
+ "tools that can analyze your title against known metrics for readability and "
2327
+ "click-worthiness. You also need to understand the psychology of your target "
2328
+ "audience."
2329
  msgstr ""
2330
 
2331
+ #: src/vue/classes/SiteAnalysis.js:550
2332
+ msgid ""
2333
+ "It's a great idea to try and hide the theme you have visible. From time to "
2334
+ "time vulnerabilities are found in themes and if your site is not updated in "
2335
+ "a timely fashion, outdated plugins and themes can be exploited."
2336
  msgstr ""
2337
 
2338
+ #: src/vue/classes/SiteAnalysis.js:559
2339
+ msgid "Directory Listing seems to be enabled on your server."
 
2340
  msgstr ""
2341
 
2342
+ #: src/vue/classes/SiteAnalysis.js:56
2343
+ msgid "Edit Your Page Title"
 
 
 
2344
  msgstr ""
2345
 
2346
+ #: src/vue/classes/SiteAnalysis.js:560
2347
+ msgid "Directory Listing seems to be enabled on the server."
2348
  msgstr ""
2349
 
2350
+ #: src/vue/classes/SiteAnalysis.js:564
2351
+ msgid "Directory Listing seems to be disabled on your server."
2352
  msgstr ""
2353
 
2354
+ #: src/vue/classes/SiteAnalysis.js:565
2355
+ msgid "Directory Listing seems to be disabled on the server."
2356
  msgstr ""
2357
 
2358
+ #: src/vue/classes/SiteAnalysis.js:570
2359
+ msgid ""
2360
+ "Fortunately, every popular web server has options to prevent directory "
2361
+ "listings. They'll show a \"403 forbidden\" message instead."
2362
  msgstr ""
2363
 
2364
+ #: src/vue/classes/SiteAnalysis.js:570
2365
+ msgid ""
2366
+ "Alternatively, you can create an empty index.php file and save it in every "
2367
+ "directory on your site. That's an approach that WordPress uses and it works "
2368
+ "well."
2369
  msgstr ""
2370
 
2371
+ #: src/vue/classes/SiteAnalysis.js:579
2372
+ msgid "It looks like your site has been added to one of Google's malwares lists."
2373
  msgstr ""
2374
 
2375
+ #: src/vue/classes/SiteAnalysis.js:580
2376
+ msgid "It looks like this site has been added to one of Google's malwares lists."
2377
  msgstr ""
2378
 
2379
+ #: src/vue/classes/SiteAnalysis.js:584
2380
+ msgid "Google has not flagged your site for malware!"
2381
  msgstr ""
2382
 
2383
+ #: src/vue/classes/SiteAnalysis.js:585
2384
+ msgid "Google has not flagged this site for malware."
2385
  msgstr ""
2386
 
2387
+ #: src/vue/classes/SiteAnalysis.js:590
2388
+ msgid ""
2389
+ "Google Safe browsing shows warnings and alerts to users if they visit a "
2390
+ "suspicious website. If you are flagged by Google Safe Browsing, you should "
2391
+ "take immediate steps to fix that."
2392
  msgstr ""
2393
 
2394
+ #: src/vue/classes/SiteAnalysis.js:599
2395
+ msgid "Your site is not using a secure transfer protocol (https)."
 
2396
  msgstr ""
2397
 
2398
+ #: src/vue/classes/SiteAnalysis.js:600
2399
+ msgid "The site is not using a secure transfer protocol (https)."
2400
  msgstr ""
2401
 
2402
+ #: src/vue/classes/SiteAnalysis.js:604
2403
+ msgid "Your site is using a secure transfer protocol (https)."
 
 
2404
  msgstr ""
2405
 
2406
+ #: src/vue/classes/SiteAnalysis.js:605
2407
+ msgid "The site is using a secure transfer protocol (https)."
2408
+ msgstr ""
2409
+
2410
+ #: src/vue/classes/SiteAnalysis.js:610
2411
  msgid ""
2412
+ "If you aren't using an SSL certificate for your site that means you are "
2413
+ "losing a lot of potential traffic. We recommend getting an SSL certificate "
2414
+ "installed immediately."
2415
  msgstr ""
2416
 
2417
+ #: src/vue/classes/SiteAnalysis.js:66
2418
+ msgid "No meta description was found for your page."
2419
  msgstr ""
2420
 
2421
+ #: src/vue/classes/SiteAnalysis.js:67
2422
+ msgid "No meta description was found for the page."
 
2423
  msgstr ""
2424
 
2425
+ # Translators: 1 - The length of the meta description as a number.
2426
+ #: src/vue/classes/SiteAnalysis.js:71
2427
+ msgid "Your meta description is only %1$d characters long, which is too short."
 
 
 
2428
  msgstr ""
2429
 
2430
+ # Translators: 1 - The length of the meta description as a number.
2431
+ #: src/vue/classes/SiteAnalysis.js:73
2432
+ msgid "The meta description is only %1$d characters long, which is too short."
2433
  msgstr ""
2434
 
2435
+ # Translators: 1 - The length of the meta description as a number.
2436
+ #: src/vue/classes/SiteAnalysis.js:77
2437
+ msgid "Your meta description is %1$d characters long, which is too long."
2438
  msgstr ""
2439
 
2440
+ # Translators: 1 - The length of the meta description as a number.
2441
+ #: src/vue/classes/SiteAnalysis.js:79
2442
+ msgid "The meta description is %1$d characters long, which is too long."
 
2443
  msgstr ""
2444
 
2445
+ # Translators: 1 - The length of the meta description as a number.
2446
+ #: src/vue/classes/SiteAnalysis.js:84
2447
+ msgid "Your meta description is set and is %1$d characters long."
2448
  msgstr ""
2449
 
2450
+ # Translators: 1 - The length of the meta description as a number.
2451
+ #: src/vue/classes/SiteAnalysis.js:86
2452
+ msgid "The meta description is set and is %1$d characters long."
2453
  msgstr ""
2454
 
2455
+ #: src/vue/classes/SiteAnalysis.js:92
2456
+ msgid ""
2457
+ "Write a meta description for your page. Use your target keywords (in a "
2458
+ "natural way) and write with human readers in mind. Summarize the content - "
2459
+ "describe the topics your article discusses."
2460
  msgstr ""
2461
 
2462
+ #: src/vue/classes/SiteAnalysis.js:92
2463
+ msgid ""
2464
+ "The description should stimulate reader interest and get them to click on "
2465
+ "the article. Think of it as a mini-advertisement for your content."
2466
  msgstr ""
2467
 
2468
+ #: src/vue/classes/SiteAnalysis.js:93
2469
+ msgid "Edit Your Meta Description"
2470
  msgstr ""
2471
 
2472
+ #: src/vue/components/common/base/WpAdditionalFilters.vue:46
2473
+ msgid "Filter"
2474
  msgstr ""
2475
 
2476
+ #: src/vue/components/common/base/WpBulkActions.vue:35
2477
+ msgid "Bulk Actions"
2478
  msgstr ""
2479
 
2480
+ #: src/vue/components/common/base/WpBulkActions.vue:36
2481
+ msgid "Apply"
 
2482
  msgstr ""
2483
 
2484
+ #: src/vue/components/common/base/Editor.vue:122
2485
+ msgid "Search for an item..."
 
 
 
2486
  msgstr ""
2487
 
2488
+ #: src/vue/components/common/base/Editor.vue:123
2489
+ msgid "Enter a custom field name..."
 
 
 
2490
  msgstr ""
2491
 
2492
+ #: src/vue/components/common/base/WpTable.vue:336
2493
+ msgid "of"
 
 
 
2494
  msgstr ""
2495
 
2496
+ #: src/vue/components/common/base/WpTable.vue:337
2497
+ msgid "items"
2498
  msgstr ""
2499
 
2500
+ #: src/vue/components/common/base/WpTable.vue:338
2501
+ msgid "No items found"
 
 
 
2502
  msgstr ""
2503
 
2504
+ #: src/vue/pages/redirects/views/pro/Redirects.vue:226
2505
+ msgid "Custom Rules"
 
2506
  msgstr ""
2507
 
2508
+ #: src/vue/components/common/core/AddRedirectionCustomRules.vue:110
2509
+ msgid "Select Rule"
2510
  msgstr ""
2511
 
2512
+ #: src/vue/components/common/core/AddRedirectionCustomRules.vue:112
2513
+ msgid "Add Custom Rule"
2514
  msgstr ""
2515
 
2516
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:164
2517
+ #: src/vue/pages/redirects/views/pro/Redirects.vue:227
2518
+ msgid "Regex"
2519
  msgstr ""
2520
 
2521
+ #: src/vue/components/common/core/AddRedirectionCustomRules.vue:114
2522
+ msgid "Select a Value or Add a New One"
2523
  msgstr ""
2524
 
2525
+ #: src/vue/components/common/core/AddRedirectionCustomRules.vue:115
2526
+ msgid "Key"
2527
  msgstr ""
2528
 
2529
+ #: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:147
2530
+ msgid "Value"
 
 
 
2531
  msgstr ""
2532
 
2533
+ #: src/vue/components/common/core/AddRedirectionCustomRules.vue:123
2534
+ msgid "Select Status"
2535
  msgstr ""
2536
 
2537
+ #: src/vue/components/common/core/AddRedirectionCustomRules.vue:134
2538
+ msgid "Select Roles"
2539
  msgstr ""
2540
 
2541
+ #: src/vue/pages/settings/views/RssContent.vue:93
2542
+ msgid "Learn more"
2543
  msgstr ""
2544
 
2545
+ #: src/vue/components/common/core/AddRedirectionCustomRules.vue:178
2546
+ msgid "Enter an IP Address"
2547
  msgstr ""
2548
 
2549
+ #: src/vue/components/common/core/AddRedirectionCustomRules.vue:186
2550
+ msgid "Enter the Server Name"
2551
  msgstr ""
2552
 
2553
+ #: src/vue/components/common/core/AddRedirectionCustomRules.vue:199
2554
+ msgid "Enter a WordPress Filter Name"
2555
  msgstr ""
2556
 
2557
+ #: src/vue/components/common/core/AddRedirectionCustomRules.vue:207
2558
+ msgid "Enter a Locale Code, e.g.: en_GB, es_ES"
2559
  msgstr ""
2560
 
2561
+ #: src/vue/components/common/core/AddRedirection.vue:231
2562
+ msgid "Redirect Type:"
2563
  msgstr ""
2564
 
2565
+ #: src/vue/pages/redirects/views/pro/Redirects.vue:263
2566
+ msgid "Target URL"
 
2567
  msgstr ""
2568
 
2569
+ #: src/vue/components/common/core/AddRedirection.vue:233
2570
+ msgid "Enter a URL or start by typing a page or post title, slug or ID."
2571
  msgstr ""
2572
 
2573
+ #: src/vue/components/common/core/AddRedirection.vue:234
2574
+ msgid "Add URL"
2575
  msgstr ""
2576
 
2577
+ # Translators: 1 - Oening link tag, 2 - Closing link tag.
2578
+ #: src/vue/components/common/core/AddRedirection.vue:236
2579
+ msgid ""
2580
+ "Enter a relative URL to redirect from or start by typing in page or post "
2581
+ "title, slug or ID. You can also use regex (%1$s)"
2582
  msgstr ""
2583
 
2584
+ # Translators: 1 - Oening link tag, 2 - Closing link tag.
2585
+ #: src/vue/components/common/core/AddRedirection.vue:236
2586
+ msgid "what's this?"
2587
  msgstr ""
2588
 
2589
+ #: src/vue/components/common/core/AddRedirection.vue:238
2590
+ msgid "Query Parameters:"
2591
  msgstr ""
2592
 
2593
+ #: src/vue/components/common/core/AddRedirection.vue:241
2594
+ msgid "An error occurred while adding your redirects. Please try again later."
2595
  msgstr ""
2596
 
2597
+ #: src/vue/components/common/core/AddRedirection.vue:269
2598
+ msgid "Source URL's"
2599
  msgstr ""
2600
 
2601
+ #: src/vue/pages/redirects/views/pro/Redirects.vue:259
2602
+ msgid "Source URL"
2603
  msgstr ""
2604
 
2605
+ #: src/vue/components/common/core/AddRedirection.vue:272
2606
+ msgid "Add Redirects"
 
2607
  msgstr ""
2608
 
2609
+ #: src/vue/components/common/core/AddRedirection.vue:272
2610
+ msgid "Add Redirect"
 
2611
  msgstr ""
2612
 
2613
+ # Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>.
2614
+ #: src/vue/components/common/core/AddRedirection.vue:287
2615
+ msgid "Your target URL should be an absolute URL like %1$s or start with a slash."
2616
  msgstr ""
2617
 
2618
+ # Translators: 1 - Adds a html tag with an option like: <code>^</code>.
2619
+ #: src/vue/components/common/core/AddRedirection.vue:296
2620
+ msgid "Your target URL contains the invalid character(s) %1$s"
2621
  msgstr ""
2622
 
2623
+ #: src/vue/components/common/core/AddRedirection.vue:309
2624
+ msgid ""
2625
+ "Your URL appears to contain a domain inside the path: %1$s. Did you mean to "
2626
+ "use %2$s instead?"
2627
  msgstr ""
2628
 
2629
+ #: src/vue/components/common/core/AddRedirection.vue:405
2630
+ msgid ""
2631
+ "A redirect already exists for this source URL. To make changes, edit the "
2632
+ "original instead."
2633
  msgstr ""
2634
 
2635
+ #: src/vue/components/common/core/AddRedirection.vue:447
2636
+ msgid "Moved Permanently"
2637
  msgstr ""
2638
 
2639
+ #: src/vue/components/common/core/AddRedirection.vue:448
2640
+ msgid "Ignore all parameters"
2641
  msgstr ""
2642
 
2643
+ #: src/vue/components/common/core/AddRedirection.vue:462
2644
+ msgid ""
2645
+ "This is a duplicate of a URL you are already adding. You can only add "
2646
+ "unique source URL's."
2647
  msgstr ""
2648
 
2649
+ #: src/vue/components/common/core/AdditionalPages.vue:100
2650
+ msgid "Last Modified"
2651
  msgstr ""
2652
 
2653
+ #: src/vue/components/common/core/AdditionalPages.vue:102
2654
+ msgid "Add New"
2655
  msgstr ""
2656
 
2657
+ #: src/vue/components/common/core/AdditionalPages.vue:103
2658
+ msgid "always"
2659
  msgstr ""
2660
 
2661
+ # Translators: 1 - An example URL (e.g. https://aioseo.com/example).
2662
+ #: src/vue/components/common/core/AdditionalPages.vue:96
2663
+ msgid "Enter a page URL, e.g. %1$s"
2664
  msgstr ""
2665
 
2666
+ #: src/vue/components/common/core/AdditionalPages.vue:97
2667
+ msgid "Page URL"
2668
  msgstr ""
2669
 
2670
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:162
2671
+ msgid "Ignore Slash"
2672
  msgstr ""
2673
 
2674
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:163
2675
+ msgid "Ignore Case"
2676
  msgstr ""
2677
 
2678
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:196
2679
+ msgid "The regex syntax is invalid."
2680
  msgstr ""
2681
 
2682
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:202
2683
+ msgid "Please enter a valid relative source URL."
2684
  msgstr ""
2685
 
2686
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:206
2687
+ msgid "Permalinks are not currently supported."
2688
  msgstr ""
2689
 
2690
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:210
2691
  msgid ""
2692
+ "This redirect is supported using the Relocate Site feature under Full Site "
2693
+ "Redirect tab."
2694
  msgstr ""
2695
 
2696
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:226
2697
+ msgid "Your source is the same as a target and this will create a loop."
2698
  msgstr ""
2699
 
2700
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:243
2701
+ msgid "Anchor values are not sent to the server and cannot be redirected."
2702
  msgstr ""
2703
 
2704
+ # Translators: 1 - Adds a html tag with an option like: <code>Regex</code>
2705
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:248
2706
+ msgid "Remember to enable the %1$s option if this is a regular expression."
 
2707
  msgstr ""
2708
 
2709
+ # Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>.
2710
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:254
2711
  msgid ""
2712
+ "To prevent a greedy regular expression you can use %1$s to anchor it to the "
2713
+ "start of the URL. For example: %2$s"
2714
  msgstr ""
2715
 
2716
+ # Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>.
2717
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:259
2718
+ msgid "The caret %1$s should be at the start. For example: %2$s"
 
2719
  msgstr ""
2720
 
2721
+ # Translators: 1 - Adds a html tag with an option like: <code>^/</code>
2722
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:264
2723
+ msgid "The source URL should probably start with a %1$s"
2724
  msgstr ""
2725
 
2726
+ # Translators: 1 - Adds a html tag with an option like: <code>^/</code>
2727
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:269
2728
+ msgid "The dollar symbol %1$s should be at the end. For example: %2$s"
2729
  msgstr ""
2730
 
2731
+ #: src/vue/components/common/core/AddRedirectionUrl.vue:275
2732
+ msgid ""
2733
+ "Some servers may be configured to serve file resources directly, preventing "
2734
+ "a redirect occurring."
2735
  msgstr ""
2736
 
2737
+ #: src/vue/components/lite/local-business/Name.vue:16
2738
+ msgid "name"
2739
  msgstr ""
2740
 
2741
+ #: src/vue/components/lite/local-business/Name.vue:17
2742
+ msgid "Your name or company name."
2743
  msgstr ""
2744
 
2745
+ #: src/vue/components/lite/local-business/PaymentInfo.vue:37
2746
+ msgid "Price Indicator:"
2747
  msgstr ""
2748
 
2749
+ #: src/vue/components/lite/local-business/PaymentInfo.vue:38
2750
+ msgid "Currencies Accepted:"
2751
  msgstr ""
2752
 
2753
+ #: src/vue/components/lite/local-business/PaymentInfo.vue:39
2754
+ msgid "Payment Methods Accepted:"
2755
  msgstr ""
2756
 
2757
+ #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:129
2758
+ msgid "Website URL:"
2759
  msgstr ""
2760
 
2761
+ #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:130
2762
+ msgid "About Page URL:"
2763
  msgstr ""
2764
 
2765
+ #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:131
2766
+ msgid "Contact Page URL:"
2767
  msgstr ""
2768
 
2769
+ #: src/vue/components/lite/local-business/BusinessIds.vue:25
2770
+ msgid "VAT ID:"
2771
  msgstr ""
2772
 
2773
+ #: src/vue/components/lite/local-business/BusinessIds.vue:26
2774
+ msgid "Tax ID:"
2775
  msgstr ""
2776
 
2777
+ # Translators: 1 - "Pro".
2778
+ #: src/vue/components/lite/core/UpgradeBar.vue:22
2779
+ msgid "upgrading to %1$s"
2780
  msgstr ""
2781
 
2782
+ # Translators: This refers to a discount ("As a valued user you receive 50%, automatically applied at checkout!").
2783
+ #: src/vue/components/lite/settings/LicenseKey.vue:56
2784
+ msgid "off"
2785
  msgstr ""
2786
 
2787
+ #: src/vue/components/lite/settings/LicenseKey.vue:58
2788
+ msgid "License Key"
2789
  msgstr ""
2790
 
2791
+ #: src/vue/components/lite/settings/LicenseKey.vue:59
2792
+ msgid "Your license key provides access to updates and addons."
 
2793
  msgstr ""
2794
 
2795
+ #: src/vue/pages/setup-wizard/views/LicenseKey.vue:103
2796
+ msgid "Paste your license key here"
2797
  msgstr ""
2798
 
2799
+ #: src/vue/pages/setup-wizard/views/LicenseKey.vue:104
2800
+ msgid "Connect"
2801
  msgstr ""
2802
 
2803
+ # Translators: 1 - "upgrading to Pro".
2804
+ #: src/vue/components/lite/settings/LicenseKey.vue:72
2805
+ msgid "To unlock more features, consider %1$s."
2806
  msgstr ""
2807
 
2808
+ # Translators: 1 - "50% off".
2809
+ #: src/vue/components/lite/settings/LicenseKey.vue:76
2810
+ msgid "As a valued user you receive %1$s, automatically applied at checkout!"
2811
  msgstr ""
2812
 
2813
+ # Translators: 1 - The plugin name ("All in One SEO").
2814
+ #: src/vue/pages/setup-wizard/views/LicenseKey.vue:121
2815
+ msgid "You're using %1$s - no license needed. Enjoy!"
2816
  msgstr ""
2817
 
2818
+ # Translators: 1 - The plugin name ("All in One SEO").
2819
+ #: src/vue/pages/setup-wizard/views/LicenseKey.vue:134
2820
+ msgid "Already purchased? Simply enter your license key below to connect with %1$s!"
2821
  msgstr ""
2822
 
2823
+ # Translators: 1 - Learn more link.
2824
+ #: src/vue/pages/settings/views/RssContent.vue:101
2825
+ msgid "Your user account role does not have access to edit this field. %1$s"
2826
  msgstr ""
2827
 
2828
+ #: src/vue/components/lite/core/UpgradeBar.vue:19
2829
+ msgid "Free"
2830
  msgstr ""
2831
 
2832
+ # Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro".
2833
+ #: src/vue/components/lite/core/UpgradeBar.vue:32
2834
+ msgid "You're using %1$s. To unlock more features, consider %2$s"
2835
  msgstr ""
2836
 
2837
+ #: src/vue/components/lite/local-business/AreaServed.vue:16
2838
+ msgid "The geographic area where a service or offered item is provided."
2839
  msgstr ""
2840
 
2841
+ #: src/vue/components/lite/local-business/BusinessAddress.vue:55
2842
+ msgid "Address Line 1"
2843
  msgstr ""
2844
 
2845
+ #: src/vue/components/lite/local-business/BusinessAddress.vue:56
2846
+ msgid "Address Line 2"
2847
  msgstr ""
2848
 
2849
+ #: src/vue/components/lite/local-business/BusinessAddress.vue:57
2850
+ msgid "Zip code:"
2851
  msgstr ""
2852
 
2853
+ #: src/vue/components/lite/local-business/BusinessAddress.vue:58
2854
+ msgid "City:"
2855
  msgstr ""
2856
 
2857
+ #: src/vue/components/lite/local-business/BusinessAddress.vue:59
2858
+ msgid "State:"
2859
  msgstr ""
2860
 
2861
+ #: src/vue/components/lite/local-business/BusinessAddress.vue:60
2862
+ msgid "Country:"
2863
  msgstr ""
2864
 
2865
+ #: src/vue/components/lite/local-business/BusinessContact.vue:28
2866
+ msgid "Email address:"
2867
  msgstr ""
2868
 
2869
+ #: src/vue/components/lite/local-business/BusinessContact.vue:29
2870
+ msgid "Phone number:"
2871
  msgstr ""
2872
 
2873
+ #: src/vue/components/lite/local-business/BusinessContact.vue:30
2874
+ msgid "Fax number:"
2875
  msgstr ""
2876
 
2877
+ # Translators: 1 - The plugin short name ("AIOSEO Pro"), 2 - "Pro" string.
2878
+ #: src/vue/components/common/core/ApiBar.vue:15
2879
+ #: src/vue/pages/about/views/GettingStarted.vue:178
2880
+ msgid "Pro"
2881
  msgstr ""
2882
 
2883
+ #: src/vue/components/common/core/ApiBar.vue:16
2884
+ msgid "Click here to learn more"
2885
  msgstr ""
2886
 
2887
+ # Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro".
2888
+ #: src/vue/components/common/core/ApiBar.vue:26
2889
+ msgid ""
2890
+ "%1$s relies on the WordPress Rest API and your site might have it disabled. "
2891
+ "%2$s."
2892
  msgstr ""
2893
 
2894
+ #: src/vue/pages/local-seo/views/pro/MapsActivate.vue:50
2895
+ msgid "Google Maps API Key"
2896
  msgstr ""
2897
 
2898
+ #: src/vue/pages/local-seo/views/pro/MapsActivate.vue:51
2899
+ msgid ""
2900
+ "Integrating with Google Maps will allow your users to find exactly where "
2901
+ "your business is located. Our interactive maps let them see your Google "
2902
+ "Reviews and get directions directly from your site. Create multiple maps "
2903
+ "for use with multiple locations."
2904
  msgstr ""
2905
 
2906
+ #: src/vue/pages/local-seo/views/pro/MapsActivate.vue:52
2907
+ msgid "API Key"
2908
  msgstr ""
2909
 
2910
+ #: src/vue/pages/local-seo/views/pro/MapsActivate.vue:53
2911
+ msgid "Map Settings"
2912
  msgstr ""
2913
 
2914
+ # Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO")
2915
+ #: src/vue/pages/local-seo/views/pro/MapsActivate.vue:59
2916
+ msgid ""
2917
+ "To add this widget, visit the %1$swidgets page%2$s and look for the \"%3$s "
2918
+ "Local - Map\" widget."
2919
  msgstr ""
2920
 
2921
+ # Translators: 1 - Learn more link.
2922
+ #: src/vue/pages/local-seo/views/pro/MapsActivate.vue:64
2923
+ msgid "Use the following shortcode to display the location map. %1$s"
2924
  msgstr ""
2925
 
2926
+ # Translators: 1 - The plugin short name ("AIOSEO")
2927
+ #: src/vue/pages/local-seo/views/pro/MapsActivate.vue:69
2928
+ msgid ""
2929
+ "To add this block, edit a page or post and search for the \"%1$s Local - "
2930
+ "Map\" block."
2931
  msgstr ""
2932
 
2933
+ # Translators: 1 - Learn more link.
2934
+ #: src/vue/pages/local-seo/views/pro/MapsActivate.vue:74
2935
+ msgid ""
2936
+ "Use the following PHP code anywhere in your theme to display the location "
2937
+ "map. %1$s"
2938
  msgstr ""
2939
 
2940
+ #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:122
2941
+ msgid "Map"
2942
  msgstr ""
2943
 
2944
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:278
2945
+ msgid "Opening Hours block, widget and shortcode"
2946
  msgstr ""
2947
 
2948
+ # Translators: 1 - Learn more link.
2949
+ #: src/vue/pages/local-seo/views/pro/Locations.vue:103
2950
+ msgid ""
2951
+ "Use the following PHP code anywhere in your theme to display the location "
2952
+ "info. %1$s"
2953
  msgstr ""
2954
 
2955
+ # Translators: 1 - The plugin short name ("AIOSEO").
2956
+ #: src/vue/pages/local-seo/views/pro/Locations.vue:109
2957
+ msgid ""
2958
+ "Whether your business has multiple locations, or just one, %1$s makes it "
2959
+ "easy to configure and display relevant information about your local "
2960
+ "business. You can use the custom-built tools below, or you can use the "
2961
+ "Locations custom post type (multiple locations only) to generate relevant "
2962
+ "and necessary information for search engines or for your customers."
2963
  msgstr ""
2964
 
2965
+ #: src/vue/pages/local-seo/views/pro/Locations.vue:111
2966
+ msgid ""
2967
+ "Use the %1$sLocations%2$s Post Type in the menu on the left to start adding "
2968
+ "your locations."
2969
  msgstr ""
2970
 
2971
+ # Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO").
2972
+ #: src/vue/pages/local-seo/views/pro/Locations.vue:113
2973
+ msgid ""
2974
+ "Multiple Locations feature is available only for %1$s Pro users. Upgrade to "
2975
+ "Pro and unlock all %2$s features!"
2976
  msgstr ""
2977
 
2978
+ # Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO")
2979
+ #: src/vue/pages/local-seo/views/pro/Locations.vue:88
2980
+ msgid ""
2981
+ "To add this widget, visit the %1$swidgets page%2$s and look for the \"%3$s "
2982
+ "Local - Business Info\" widget."
2983
  msgstr ""
2984
 
2985
+ # Translators: 1 - Learn more link.
2986
+ #: src/vue/pages/local-seo/views/pro/Locations.vue:93
2987
+ msgid "Use the following shortcode to display the location info. %1$s"
2988
  msgstr ""
2989
 
2990
+ # Translators: 1 - The plugin short name ("AIOSEO")
2991
+ #: src/vue/pages/local-seo/views/pro/Locations.vue:98
2992
+ msgid ""
2993
+ "To add this block, edit a page or post and search for the \"%1$s Local - "
2994
+ "Business Info\" block."
2995
  msgstr ""
2996
 
2997
+ #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:135
2998
+ msgid "Animal Shelter"
2999
  msgstr ""
3000
 
3001
+ #: src/vue/pages/local-seo/views/pro/Maps.vue:103
3002
+ msgid ""
3003
+ "Integrating with Google Maps will allow your users to find exactly where "
3004
+ "your business is located. Our interactive maps let them see your Google "
3005
+ "Reviews and get directions directly from your site. Create multiple maps "
3006
+ "for use with multiple locations. %s"
3007
  msgstr ""
3008
 
3009
+ #: src/vue/pages/local-seo/views/pro/Maps.vue:105
3010
+ msgid "A Google API Key is necessary to render your maps. %s"
3011
  msgstr ""
3012
 
3013
+ #: src/vue/pages/local-seo/views/pro/Maps.vue:107
3014
+ msgid ""
3015
+ "Your API Key is invalid. Please make sure you have set your key correctly. "
3016
+ "%1$s"
3017
  msgstr ""
3018
 
3019
+ #: src/vue/pages/local-seo/views/pro/Maps.vue:108
3020
+ msgid ""
3021
+ "Your Maps Embed API is not enabled. For a more seamless experience with "
3022
+ "rich information cards, please enable it in your Google Project. %1$s"
3023
  msgstr ""
3024
 
3025
+ #: src/vue/pages/local-seo/views/pro/Maps.vue:109
3026
+ msgid "Display Map"
3027
  msgstr ""
3028
 
3029
+ #: src/vue/pages/local-seo/views/pro/Maps.vue:110
3030
+ msgid "Map Preview"
3031
  msgstr ""
3032
 
3033
+ #: src/vue/pages/settings/views/lite/AccessControl.vue:68
3034
+ msgid "WP Roles (Editor, Author)"
3035
  msgstr ""
3036
 
3037
+ #: src/vue/pages/settings/views/lite/AccessControl.vue:69
3038
+ msgid "SEO Manager Role"
3039
  msgstr ""
3040
 
3041
+ #: src/vue/pages/settings/views/lite/AccessControl.vue:70
3042
+ msgid "SEO Editor Role"
3043
  msgstr ""
3044
 
3045
+ #: src/vue/pages/settings/views/lite/AccessControl.vue:71
3046
+ msgid "Default settings that just work"
3047
  msgstr ""
3048
 
3049
+ #: src/vue/pages/settings/views/lite/AccessControl.vue:72
3050
+ msgid "Granular controls per role"
3051
  msgstr ""
3052
 
3053
+ #: src/vue/pages/settings/views/lite/AccessControl.vue:73
3054
+ msgid "Upgrade to Pro and Unlock Access Control"
3055
  msgstr ""
3056
 
3057
+ # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
3058
+ #: src/vue/pages/settings/views/lite/AccessControl.vue:75
3059
+ msgid "Access Control is only available for licensed %1$s %2$s users."
3060
  msgstr ""
3061
 
3062
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
3063
+ #: src/vue/pages/settings/mixins/AccessControl.js:10
3064
+ msgid "By default Admins have access to %1$sall SEO site settings%2$s"
3065
  msgstr ""
3066
 
3067
+ #: src/vue/pages/settings/mixins/AccessControl.js:13
3068
+ msgid "Editor"
3069
  msgstr ""
3070
 
3071
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
3072
+ #: src/vue/pages/settings/mixins/AccessControl.js:16
3073
+ msgid ""
3074
+ "By default Editors have access to %1$sSEO settings for General Settings, "
3075
+ "Search Appearance and Social Networks, as well as all settings for "
3076
+ "individual pages and posts.%2$s"
3077
  msgstr ""
3078
 
3079
+ #: src/vue/pages/settings/mixins/AccessControl.js:19
3080
+ msgid "Author"
3081
  msgstr ""
3082
 
3083
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
3084
+ #: src/vue/pages/settings/mixins/AccessControl.js:22
3085
+ msgid ""
3086
+ "By default Authors have access to %1$sSEO settings for individual pages and "
3087
+ "posts that they already have permission to edit.%2$s"
3088
  msgstr ""
3089
 
3090
+ #: src/vue/pages/settings/mixins/AccessControl.js:25
3091
+ msgid "Contributor"
3092
  msgstr ""
3093
 
3094
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
3095
+ #: src/vue/pages/settings/mixins/AccessControl.js:28
3096
+ msgid ""
3097
+ "By default Contributors have access to %1$sSEO settings for individual "
3098
+ "pages and posts that they already have permission to edit.%2$s"
3099
  msgstr ""
3100
 
3101
+ #: src/vue/pages/settings/mixins/AccessControl.js:31
3102
+ msgid "SEO Manager"
3103
  msgstr ""
3104
 
3105
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
3106
+ #: src/vue/pages/settings/mixins/AccessControl.js:34
3107
+ msgid ""
3108
+ "By default SEO Managers have access to %1$sSEO settings for General "
3109
+ "Settings, Redirections, and individual pages and posts.%2$s"
3110
  msgstr ""
3111
 
3112
+ #: src/vue/pages/settings/mixins/AccessControl.js:37
3113
+ msgid "SEO Editor"
3114
  msgstr ""
3115
 
3116
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
3117
+ #: src/vue/pages/settings/mixins/AccessControl.js:40
3118
+ msgid ""
3119
+ "By default SEO Editors have access to %1$sSEO settings for individual pages "
3120
+ "and posts.%2$s"
3121
  msgstr ""
3122
 
3123
+ # Translators: 1 - The plugin name ("All in One SEO")
3124
+ #: src/vue/pages/settings/mixins/AccessControl.js:45
3125
+ msgid ""
3126
+ "By default, only users with an Administrator role have permission to manage "
3127
+ "%1$s within your WordPress admin area. With Access Controls, though, you "
3128
+ "can easily extend specific access permissions to other user roles."
3129
  msgstr ""
3130
 
3131
+ #: src/vue/pages/settings/mixins/AccessControl.js:46
3132
+ msgid "Access Control Settings"
3133
  msgstr ""
3134
 
3135
+ #: src/vue/pages/settings/mixins/AccessControl.js:57
3136
+ msgid "By default the %1$s role %2$shas no access%3$s to %4$s settings."
3137
  msgstr ""
3138
 
3139
+ #: src/vue/pages/settings/mixins/AccessControl.js:7
3140
+ msgid "Administrator"
3141
  msgstr ""
3142
 
3143
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:148
3144
+ msgid "Advanced Locations Settings"
3145
  msgstr ""
3146
 
3147
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:149
3148
+ msgid "Locations Permalink"
3149
  msgstr ""
3150
 
3151
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:150
3152
+ msgid "Use custom slug"
3153
  msgstr ""
3154
 
3155
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:151
3156
+ msgid "Slug is empty or is already taken. Please enter a different one."
3157
  msgstr ""
3158
 
3159
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:152
3160
+ msgid "Locations Category Permalink"
3161
  msgstr ""
3162
 
3163
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:153
3164
+ msgid "Use custom category slug"
3165
  msgstr ""
3166
 
3167
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:154
3168
+ msgid "Enhanced Search"
3169
  msgstr ""
3170
 
3171
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:155
3172
+ msgid ""
3173
+ "Include business locations in site-wide search results. Users searching for "
3174
+ "street name, zip code or city will now also get your business location(s) "
3175
+ "in their search results."
3176
  msgstr ""
3177
 
3178
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:156
3179
+ msgid ""
3180
+ "Enhanced Search cannot be enabled on your website because there is a search "
3181
+ "query conflict. To learn more about this, %1$sclick here%2$s."
3182
  msgstr ""
3183
 
3184
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:157
3185
+ msgid "Enhanced Search - Excerpt"
3186
  msgstr ""
3187
 
3188
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:158
3189
+ msgid "Shows the location address appended to the search result."
3190
  msgstr ""
3191
 
3192
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:159
3193
+ msgid "Custom Admin Labels"
3194
  msgstr ""
3195
 
3196
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:160
3197
+ msgid ""
3198
+ "With multiple locations, you will have a new menu item in your admin "
3199
+ "sidebar. By default, this menu item is labeled using the plural term of "
3200
+ "locations with each single item being called a location. If you like, you "
3201
+ "may enter custom labels to better match your business."
3202
  msgstr ""
3203
 
3204
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:161
3205
+ msgid "Single label"
3206
  msgstr ""
3207
 
3208
+ #: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:162
3209
+ msgid "Plural label"
3210
  msgstr ""
3211
 
3212
+ # Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO").
3213
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:199
3214
+ msgid ""
3215
+ "To add this widget, visit the %1$swidgets page%2$s and look for the \"%3$s "
3216
+ "Local - Opening Hours\" widget."
3217
  msgstr ""
3218
 
3219
+ # Translators: 1 - Learn more link.
3220
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:204
3221
+ msgid "Use the following shortcode to display the opening hours info. %1$s"
3222
  msgstr ""
3223
 
3224
+ # Translators: 1 - The plugin short name ("AIOSEO")
3225
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:209
3226
+ msgid ""
3227
+ "To add this block, edit a page or post and search for the \"%1$s Local - "
3228
+ "Opening Hours\" block."
3229
  msgstr ""
3230
 
3231
+ # Translators: 1 - Learn more link.
3232
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:214
3233
+ msgid ""
3234
+ "Use the following PHP code anywhere in your theme to display the opening "
3235
+ "hours. %1$s"
3236
  msgstr ""
3237
 
3238
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:222
3239
+ msgid "Default Location Settings"
3240
  msgstr ""
3241
 
3242
+ #: src/vue/pages/local-business-seo/views/OpeningHours.vue:177
3243
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:224
3244
+ msgid "Displayed when the business is closed."
3245
  msgstr ""
3246
 
3247
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:225
3248
+ msgid ""
3249
+ "Below are the default settings for all locations, which can be overwritten "
3250
+ "per %1$slocation%2$s."
3251
  msgstr ""
3252
 
3253
+ #: src/vue/pages/local-business-seo/views/OpeningHours.vue:182
3254
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:227
3255
+ msgid "Displayed when the business is open all day long."
3256
  msgstr ""
3257
 
3258
+ #: src/vue/pages/local-business-seo/views/OpeningHours.vue:187
3259
+ #: src/vue/pages/local-seo/views/pro/OpeningHours.vue:233
3260
+ msgid "Hours"
3261
  msgstr ""
3262
 
3263
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:176
3264
+ msgid "Click here"
3265
  msgstr ""
3266
 
3267
+ # Translators: 1 - The addon or plugin name.
3268
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:178
3269
+ msgid "Install %1$s"
3270
+ msgstr ""
3271
 
3272
+ # Translators: 1 - The name of one of our partner plugins.
3273
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:186
3274
+ msgid "%1$s is Installed & Active"
3275
  msgstr ""
3276
 
3277
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:187
3278
+ msgid "Launch Setup Wizard"
3279
  msgstr ""
3280
 
3281
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:198
3282
+ msgid "The Best Google Analytics Plugin for WordPress"
3283
  msgstr ""
3284
 
3285
+ # Translators: 1 - The name of one of our partner plugins, 2 - The name of one of our partner plugins.
3286
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:200
3287
+ msgid ""
3288
+ "%1$s connects AIOSEO to Google Analytics, providing a powerful integration. "
3289
+ "%2$s is a sister company of AIOSEO."
3290
  msgstr ""
3291
 
3292
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:201
3293
+ msgid "Quick & Easy Google Analytics Setup"
3294
  msgstr ""
3295
 
3296
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:202
3297
+ msgid "Google Analytics Dashboard + Real Time Stats"
3298
  msgstr ""
3299
 
3300
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:203
3301
+ msgid "Google Analytics Enhanced Ecommerce Tracking"
3302
  msgstr ""
3303
 
3304
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:204
3305
+ msgid "Universal Tracking for AMP and Instant Articles"
3306
  msgstr ""
3307
 
3308
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:205
3309
+ msgid "Install &"
3310
  msgstr ""
3311
 
3312
+ # Translators: 1 - The name of one of our partner plugins.
3313
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:207
3314
+ msgid "Activate %1$s"
3315
  msgstr ""
3316
 
3317
+ # Translators: 1 - The name of one of our partner plugins.
3318
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:209
3319
+ msgid ""
3320
+ "%1$s shows you exactly which content gets the most visits, so you can "
3321
+ "analyze and optimize it for higher conversions."
3322
  msgstr ""
3323
 
3324
+ # Translators: 1 - The name of one of our partner plugins.
3325
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:213
3326
+ msgid "Setup %1$s"
3327
  msgstr ""
3328
 
3329
+ # Translators: 1 - The name of one of our partner plugins.
3330
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:217
3331
+ msgid "%1$s has an intuitive setup wizard to guide you through the setup process."
3332
  msgstr ""
3333
 
3334
+ #: src/vue/pages/about/views/GettingStarted.vue:137
3335
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:194
3336
+ #: src/vue/pages/local-seo/views/Main.vue:23
3337
+ msgid "Local SEO"
3338
  msgstr ""
3339
 
3340
+ #: src/vue/pages/about/views/GettingStarted.vue:136
3341
+ msgid "Smart Schema"
3342
  msgstr ""
3343
 
3344
+ #: src/vue/pages/about/views/GettingStarted.vue:138
3345
+ msgid "Advanced support for e-commerce"
3346
  msgstr ""
3347
 
3348
+ #: src/vue/pages/about/views/GettingStarted.vue:142
3349
+ msgid "Advanced Google Analytics tracking"
3350
  msgstr ""
3351
 
3352
+ #: src/vue/pages/about/views/GettingStarted.vue:139
3353
+ msgid "Video SEO Module"
3354
  msgstr ""
3355
 
3356
+ #: src/vue/pages/about/views/GettingStarted.vue:143
3357
+ msgid "Greater control over display settings"
3358
  msgstr ""
3359
 
3360
+ #: src/vue/pages/dashboard/views/Main.vue:209
3361
+ msgid "Social meta for Categories, Tags and Custom Taxonomies"
3362
  msgstr ""
3363
 
3364
+ #: src/vue/pages/about/views/GettingStarted.vue:144
3365
+ msgid "Ad free (no banner adverts)"
3366
  msgstr ""
3367
 
3368
+ #: src/vue/pages/dashboard/views/Main.vue:212
3369
+ msgid "There are no new notifications at this moment."
3370
  msgstr ""
3371
 
3372
+ #: src/vue/pages/dashboard/views/Main.vue:213
3373
+ msgid "See all dismissed notifications."
3374
  msgstr ""
3375
 
3376
+ #: src/vue/pages/dashboard/views/Main.vue:214
3377
+ msgid "SEO Site Score"
3378
  msgstr ""
3379
 
3380
+ #: src/vue/pages/dashboard/views/Main.vue:215
3381
+ msgid "Support"
 
 
3382
  msgstr ""
3383
 
3384
+ # Translators: 1 - The plugin name ("All in One SEO").
3385
+ #: src/vue/pages/dashboard/views/Main.vue:217
3386
+ msgid "Read the %1$s user guide"
 
3387
  msgstr ""
3388
 
3389
+ #: src/vue/pages/dashboard/views/Main.vue:218
3390
+ msgid "Access our Premium Support"
 
 
3391
  msgstr ""
3392
 
3393
+ #: src/vue/pages/dashboard/views/Main.vue:219
3394
+ msgid "View the Changelog"
3395
  msgstr ""
3396
 
3397
+ #: src/vue/pages/dashboard/views/Main.vue:220
3398
+ msgid "Watch video tutorials"
3399
  msgstr ""
3400
 
3401
+ #: src/vue/pages/dashboard/views/Main.vue:221
3402
+ msgid "Getting started? Read the Beginners Guide"
3403
  msgstr ""
3404
 
3405
+ #: src/vue/pages/dashboard/views/Main.vue:222
3406
+ msgid "Quicklinks"
3407
  msgstr ""
3408
 
3409
+ #: src/vue/pages/dashboard/views/Main.vue:223
3410
+ msgid ""
3411
+ "You can use these quicklinks to quickly access our settings pages to adjust "
3412
+ "your site's SEO settings."
3413
  msgstr ""
3414
 
3415
+ #: src/vue/pages/dashboard/views/Main.vue:225
3416
+ msgid ""
3417
+ "Configure how your website content will look in Google, Bing and other "
3418
+ "search engines."
3419
  msgstr ""
3420
 
3421
+ #: src/vue/pages/dashboard/views/Main.vue:227
3422
+ msgid ""
3423
+ "Check how your site scores with our SEO analyzer and compare against your "
3424
+ "competitor's site."
3425
  msgstr ""
3426
 
3427
+ #: src/vue/pages/dashboard/views/Main.vue:228
3428
+ msgid ""
3429
+ "Improve local SEO rankings with schema for business address, open hours, "
3430
+ "contact, and more."
3431
  msgstr ""
3432
 
3433
+ #: src/vue/pages/dashboard/views/Main.vue:230
3434
+ msgid ""
3435
+ "Setup Open Graph for Facebook, Twitter, etc. to show the right content / "
3436
+ "thumbnail preview."
3437
  msgstr ""
3438
 
3439
+ #: src/vue/pages/tools/views/Main.vue:31
3440
+ msgid "Tools"
 
3441
  msgstr ""
3442
 
3443
+ #: src/vue/pages/dashboard/views/Main.vue:232
3444
+ msgid ""
3445
+ "Fine-tune your site with our powerful tools including Robots.txt editor, "
3446
+ "import/export and more."
3447
  msgstr ""
3448
 
3449
+ #: src/vue/pages/dashboard/views/Main.vue:234
3450
+ msgid "Manage all of your sitemap settings, including XML, Video, News and more."
3451
  msgstr ""
3452
 
3453
+ # Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro".
3454
+ #: src/vue/pages/dashboard/views/Main.vue:236
3455
+ msgid "Get more features in %1$s %2$s:"
3456
  msgstr ""
3457
 
3458
+ # Translators: 1 - "Pro", 2 - A percentage ("50%").
3459
+ #: src/vue/pages/dashboard/views/Main.vue:238
3460
+ msgid "Upgrade to %1$s and Save %2$s"
3461
  msgstr ""
3462
 
3463
+ #: src/vue/pages/dashboard/views/Main.vue:240
3464
+ msgid "Relaunch Setup Wizard"
3465
  msgstr ""
3466
 
3467
+ # Translators: 1 - A number representing the remaining notifications.
3468
+ #: src/vue/pages/dashboard/views/Main.vue:249
3469
+ msgid "You have %1$s more notifications"
3470
  msgstr ""
3471
 
3472
+ #: src/vue/pages/local-seo/views/lite/Maps.vue:58
3473
+ msgid "Google Places Support"
3474
  msgstr ""
3475
 
3476
+ #: src/vue/pages/local-seo/views/lite/Maps.vue:59
3477
+ msgid "Google Reviews"
3478
  msgstr ""
3479
 
3480
+ #: src/vue/pages/local-seo/views/lite/Maps.vue:60
3481
+ msgid "Driving Directions"
3482
  msgstr ""
3483
 
3484
+ # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
3485
+ #: src/vue/pages/local-seo/views/lite/Maps.vue:70
3486
+ msgid "Local SEO Maps are only available for licensed %1$s %2$s users."
3487
  msgstr ""
3488
 
3489
+ #: src/vue/pages/local-seo/views/lite/Maps.vue:71
3490
  msgid ""
3491
+ "Show your location to your visitors using an interactive Google Map. Create "
3492
+ "multiple maps for use with multiple locations."
3493
  msgstr ""
3494
 
3495
+ #: src/vue/pages/post-settings/views/Main.vue:59
3496
+ msgid "Preview Snippet Editor"
 
3497
  msgstr ""
3498
 
3499
+ #: src/vue/pages/settings/views/lite/Breadcrumbs.vue:62
3500
+ msgid "Breadcrumb Templates"
 
 
 
3501
  msgstr ""
3502
 
3503
+ #: src/vue/pages/settings/views/lite/Breadcrumbs.vue:63
3504
+ msgid ""
3505
+ "Override the default template for breadcrumbs on your site using our "
3506
+ "easy-to-use template editor."
3507
  msgstr ""
3508
 
3509
+ #: src/vue/pages/search-appearance/router/paths.js:28
3510
+ msgid "Content Types"
3511
  msgstr ""
3512
 
3513
+ #: src/vue/pages/search-appearance/router/paths.js:55
3514
+ msgid "Archives"
 
3515
  msgstr ""
3516
 
3517
+ #: src/vue/store/actions.js:146
3518
+ msgid "We couldn't connect to the site, please try again later."
3519
  msgstr ""
3520
 
3521
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:138
3522
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/NotFound.vue:64
3523
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:65
3524
+ msgid "Use a default template"
3525
  msgstr ""
3526
 
3527
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:144
3528
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/NotFound.vue:65
3529
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:66
3530
+ msgid "Show homepage link"
3531
  msgstr ""
3532
 
3533
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:145
3534
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/NotFound.vue:66
3535
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:67
3536
+ msgid "Show prefix link"
3537
  msgstr ""
3538
 
3539
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:68
3540
+ msgid "search term"
3541
  msgstr ""
3542
 
3543
+ #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:114
3544
+ msgid "Website URL"
 
3545
  msgstr ""
3546
 
3547
+ #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:115
3548
+ msgid "About Page URL"
3549
  msgstr ""
3550
 
3551
+ #: src/vue/pages/local-business-seo/views/BusinessInfo.vue:116
3552
+ msgid "Contact Page URL"
3553
  msgstr ""
3554
 
3555
+ #: src/vue/pages/local-business-seo/views/OpeningHours.vue:172
3556
+ msgid "Use Defaults"
3557
  msgstr ""
3558
 
3559
+ #: src/vue/pages/local-business-seo/views/OpeningHours.vue:173
3560
+ msgid "Will default opening hours set globally"
 
3561
  msgstr ""
3562
 
3563
+ #: src/vue/pages/local-business-seo/views/OpeningHours.vue:185
3564
+ msgid "I have two sets of openning hours per day"
3565
  msgstr ""
3566
 
3567
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:37
3568
+ msgid "Date Archives"
3569
  msgstr ""
3570
 
3571
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:43
3572
+ msgid "Search Archives"
3573
  msgstr ""
3574
 
3575
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:55
3576
+ msgid "Author Archives"
3577
  msgstr ""
3578
 
3579
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:61
3580
+ msgid "Blog Archive"
3581
  msgstr ""
3582
 
3583
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:67
3584
+ msgid "Post Type Archives"
3585
  msgstr ""
3586
 
3587
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:139
3588
+ msgid "Taxonomy priority:"
3589
  msgstr ""
3590
 
3591
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:140
3592
+ msgid "Select a taxonomy"
 
 
3593
  msgstr ""
3594
 
3595
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:141
3596
+ msgid "Choose taxonomy that should have a priority for this post type."
3597
  msgstr ""
3598
 
3599
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:142
3600
+ msgid "Show post type archive link"
3601
  msgstr ""
3602
 
3603
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:143
3604
+ msgid "Show taxonomy link"
3605
  msgstr ""
3606
 
3607
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:146
3608
+ msgid "Show parent item link"
 
3609
  msgstr ""
3610
 
3611
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:147
3612
+ msgid "Single item template"
3613
  msgstr ""
3614
 
3615
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:148
3616
+ msgid "Parent item template"
3617
  msgstr ""
3618
 
3619
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:71
3620
+ msgid "Show Paged Breadcrumb"
 
 
3621
  msgstr ""
3622
 
3623
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:72
3624
+ msgid "Show a breadcrumb for the current page."
 
 
 
3625
  msgstr ""
3626
 
3627
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:73
3628
+ msgid "Paged Format"
 
 
3629
  msgstr ""
3630
 
3631
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:74
3632
+ msgid "Format the label used for the page link."
3633
  msgstr ""
3634
 
3635
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:75
3636
+ msgid "Unselected Taxonomy Terms"
3637
  msgstr ""
3638
 
3639
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:76
3640
+ msgid "Show/hide parent terms that are not explicitly selected in your post."
3641
  msgstr ""
3642
 
3643
+ #: src/vue/pages/post-settings/views/ModalContent.vue:41
3644
+ msgid "Modal Content"
 
3645
  msgstr ""
3646
 
3647
+ #: src/vue/pages/post-settings/views/Social.vue:60
3648
+ msgid "Social"
3649
+ msgstr ""
3650
+
3651
+ #: src/vue/pages/post-settings/views/Advanced.vue:114
3652
+ msgid "Robots Setting"
3653
  msgstr ""
3654
 
3655
  #: src/vue/pages/post-settings/views/Advanced.vue:117
3656
  msgid "Enter a URL to change the default Canonical URL"
3657
  msgstr ""
3658
 
3659
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:444
3660
+ msgid "Priority Score"
 
3661
  msgstr ""
3662
 
3663
+ # Translators: 1 - The plugin short name name ("AIOSEO"), 2 - "Learn more".
3664
+ #: src/vue/pages/post-settings/views/lite/Schema.vue:61
3665
+ #: src/vue/pages/settings/views/Advanced.vue:320
3666
+ msgid "This feature is only for licensed %1$s users. %2$s"
3667
  msgstr ""
3668
 
3669
  #: src/vue/pages/search-appearance/views/GlobalSettings.vue:442
 
3670
  msgid "Keywords"
3671
  msgstr ""
3672
 
3674
  msgid "Press enter to create a keyword"
3675
  msgstr ""
3676
 
3677
+ #: src/vue/pages/post-settings/views/General.vue:282
3678
+ msgid "General"
 
 
 
 
3679
  msgstr ""
3680
 
3681
+ #: src/vue/pages/post-settings/views/General.vue:284
3682
+ msgid "Snippet Preview content here."
 
 
3683
  msgstr ""
3684
 
3685
+ #: src/vue/pages/post-settings/views/General.vue:285
3686
+ msgid "Edit Snippet"
3687
  msgstr ""
3688
 
3689
+ #: src/vue/pages/post-settings/views/General.vue:286
3690
+ msgid "Click on the tags below to insert variables into your title."
3691
  msgstr ""
3692
 
3693
+ #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:256
3694
+ msgid "Meta Description"
3695
  msgstr ""
3696
 
3697
+ #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:254
3698
+ msgid "Click on the tags below to insert variables into your meta description."
 
3699
  msgstr ""
3700
 
3701
+ #: src/vue/pages/post-settings/views/General.vue:289
3702
+ msgid "Pillar Content"
 
3703
  msgstr ""
3704
 
3705
+ #: src/vue/pages/post-settings/views/General.vue:290
3706
+ msgid ""
3707
+ "Cornerstone content should be the most important and extensive articles on "
3708
+ "your site."
3709
  msgstr ""
3710
 
3711
+ #: src/vue/pages/post-settings/views/General.vue:292
3712
+ #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:74
3713
+ msgid "Additional Keyphrases"
3714
  msgstr ""
3715
 
3716
+ #: src/vue/pages/post-settings/views/General.vue:293
3717
+ msgid "Page Analysis"
3718
  msgstr ""
3719
 
3720
+ #: src/vue/pages/post-settings/views/General.vue:297
3721
+ msgid ""
3722
+ "Looking for meta keywords? Click on the advanced tab above to add/edit meta "
3723
+ "keywords."
3724
  msgstr ""
3725
 
3726
+ # Translators: 1 - "Learn more link".
3727
+ #: src/vue/pages/post-settings/views/General.vue:299
3728
+ msgid ""
3729
+ "Not sure what keyphrases are used for? Check out our documentation for more "
3730
+ "information. %1$s"
3731
  msgstr ""
3732
 
3733
+ # Translators: 1 - The type of page (Post, Page, Category, Tag, etc.).
3734
+ #: src/vue/pages/post-settings/views/General.vue:319
3735
+ msgid "%1$s Title"
3736
  msgstr ""
3737
 
3738
+ #: src/vue/pages/social-networks/views/SocialProfiles.vue:26
3739
+ msgid ""
3740
+ "To let search engines know which profiles are associated with this site, "
3741
+ "enter them below:"
 
3742
  msgstr ""
3743
 
3744
+ #: src/vue/pages/social-networks/views/Pinterest.vue:46
3745
+ msgid ""
3746
+ "Pinterest uses Open Graph metadata just like Facebook, so be sure to keep "
3747
+ "Open Graph enabled on the Facebook tab checked if you want to optimize your "
3748
+ "site for Pinterest."
3749
  msgstr ""
3750
 
3751
+ #: src/vue/pages/social-networks/views/Pinterest.vue:47
3752
+ msgid "Learn how to get your Pinterest Verification Code"
3753
  msgstr ""
3754
 
3755
+ #: src/vue/pages/social-networks/views/Pinterest.vue:48
3756
+ msgid ""
3757
+ "If you have already confirmed your website with Pinterest, you can skip the "
3758
+ "step below."
3759
  msgstr ""
3760
 
3761
+ #: src/vue/pages/social-networks/views/Pinterest.vue:49
3762
+ msgid "Pinterest Verification Code"
 
 
3763
  msgstr ""
3764
 
3765
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:67
3766
+ msgid "Author name"
3767
  msgstr ""
3768
 
3769
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:68
3770
+ msgid "First name"
 
 
3771
  msgstr ""
3772
 
3773
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:69
3774
+ msgid "Last name"
 
 
3775
  msgstr ""
3776
 
3777
+ #: src/vue/pages/social-networks/views/Twitter.vue:432
3778
+ msgid "Twitter Card Settings"
3779
  msgstr ""
3780
 
3781
+ # Translators: 1 - The plugin name ("All in One SEO").
3782
+ #: src/vue/pages/social-networks/views/Twitter.vue:434
3783
+ msgid ""
3784
+ "Enable this feature if you want Twitter to display a preview card with "
3785
+ "images and a text excerpt when a link to your site is shared."
3786
  msgstr ""
3787
 
3788
+ #: src/vue/pages/social-networks/views/Twitter.vue:435
3789
+ msgid "Enable Twitter Card"
3790
  msgstr ""
3791
 
3792
+ #: src/vue/pages/social-networks/views/Twitter.vue:436
3793
+ msgid "Default Card Type"
 
 
 
 
3794
  msgstr ""
3795
 
3796
+ #: src/vue/pages/post-settings/views/Twitter.vue:235
3797
+ msgid "Summary"
3798
  msgstr ""
3799
 
3800
+ #: src/vue/pages/post-settings/views/Twitter.vue:236
3801
+ msgid "Summary with Large Image"
3802
  msgstr ""
3803
 
3804
+ #: src/vue/pages/social-networks/views/Twitter.vue:445
3805
+ msgid "Default Post Twitter Image"
3806
  msgstr ""
3807
 
3808
+ #: src/vue/pages/social-networks/views/Twitter.vue:446
3809
+ msgid "Default Term Twitter Image"
3810
  msgstr ""
3811
 
3812
+ #: src/vue/pages/post-settings/views/Twitter.vue:224
3813
+ msgid ""
3814
+ "Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and "
3815
+ "GIF formats only."
3816
  msgstr ""
3817
 
3818
+ #: src/vue/pages/post-settings/views/Twitter.vue:225
3819
+ msgid ""
3820
+ "Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and "
3821
+ "GIF formats only."
3822
  msgstr ""
3823
 
3824
+ #: src/vue/pages/social-networks/views/Twitter.vue:452
3825
+ msgid "Home Page Image"
3826
  msgstr ""
3827
 
3828
+ #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:255
3829
+ msgid "Home Page Title"
3830
  msgstr ""
3831
 
3832
+ #: src/vue/pages/social-networks/views/Twitter.vue:460
3833
+ msgid "Show Twitter Author"
3834
  msgstr ""
3835
 
3836
+ #: src/vue/pages/social-networks/views/Twitter.vue:463
3837
+ msgid "Card Type"
3838
  msgstr ""
3839
 
3840
+ #: src/vue/pages/social-networks/views/Twitter.vue:464
3841
+ msgid "Additional Data"
3842
  msgstr ""
3843
 
3844
+ #: src/vue/pages/social-networks/views/Twitter.vue:465
3845
+ msgid ""
3846
+ "Enable this option to show additional Twitter data on your posts and pages "
3847
+ "(i.e., who the post was written by and how long it might take to read the "
3848
+ "article)."
3849
  msgstr ""
3850
 
3851
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:102
3852
+ msgid "Year"
3853
  msgstr ""
3854
 
3855
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:103
3856
+ msgid "Month"
3857
  msgstr ""
3858
 
3859
+ #: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:104
3860
+ msgid "Day"
3861
  msgstr ""
3862
 
3863
+ #: src/vue/pages/settings/views/GeneralSettings.vue:49
3864
+ msgid "License"
3865
  msgstr ""
3866
 
3867
+ #: src/vue/pages/settings/views/GeneralSettings.vue:59
3868
+ msgid "Setup Wizard"
3869
  msgstr ""
3870
 
3871
+ # Translators: 1 - The plugin name ("All in One SEO")
3872
+ #: src/vue/pages/settings/views/GeneralSettings.vue:62
3873
+ msgid ""
3874
+ "Use our configuration wizard to properly set up %1$s with your WordPress "
3875
+ "website."
3876
  msgstr ""
3877
 
3878
+ #: src/vue/pages/settings/views/Advanced.vue:284
3879
+ msgid "TruSEO Score & Content"
3880
  msgstr ""
3881
 
3882
+ #: src/vue/pages/settings/views/Advanced.vue:285
3883
+ msgid ""
3884
+ "Enable our TruSEO score to help you optimize your content for maximum "
3885
+ "traffic."
3886
  msgstr ""
3887
 
3888
+ #: src/vue/pages/settings/views/Advanced.vue:286
3889
+ msgid "Headline Analyzer"
3890
  msgstr ""
3891
 
3892
+ #: src/vue/pages/settings/views/Advanced.vue:287
3893
+ msgid ""
3894
+ "Enable our Headline Analyzer to help you write irrestible headlines and "
3895
+ "rank better in search results."
3896
  msgstr ""
3897
 
3898
+ #: src/vue/pages/settings/views/Advanced.vue:289
3899
+ msgid "Post Type Columns"
3900
  msgstr ""
3901
 
3902
+ # Translators: 1 - Plugin Short Name ("AIOSEO").
3903
+ #: src/vue/pages/settings/views/Advanced.vue:292
3904
+ msgid "Select which Post Types you want to use the %1$s columns with."
3905
  msgstr ""
3906
 
3907
+ #: src/vue/pages/settings/views/Advanced.vue:293
3908
+ msgid "Usage Tracking"
3909
  msgstr ""
3910
 
3911
+ #: src/vue/pages/settings/views/Advanced.vue:294
3912
+ msgid "Admin Bar Menu"
3913
  msgstr ""
3914
 
3915
+ # Translators: 1 - Plugin Short Name ("AIOSEO").
3916
+ #: src/vue/pages/settings/views/Advanced.vue:296
3917
+ msgid "This adds %1$s to the admin toolbar for easy access to your SEO settings."
3918
  msgstr ""
3919
 
3920
+ #: src/vue/pages/settings/views/Advanced.vue:297
3921
+ msgid "Dashboard Widget"
3922
  msgstr ""
3923
 
3924
+ #: src/vue/pages/settings/views/Advanced.vue:298
3925
+ msgid "This displays an SEO News widget on the dashboard."
3926
  msgstr ""
3927
 
3928
+ #: src/vue/pages/settings/views/Advanced.vue:299
3929
+ msgid "Announcements"
3930
  msgstr ""
3931
 
3932
+ #: src/vue/pages/settings/views/Advanced.vue:300
3933
+ msgid "This allows you to hide plugin announcements and update details."
3934
  msgstr ""
3935
 
3936
+ #: src/vue/pages/settings/views/Advanced.vue:301
3937
+ msgid "Automatic Updates"
3938
  msgstr ""
3939
 
3940
+ #: src/vue/pages/settings/views/Advanced.vue:302
3941
+ msgid "All (recommended)"
3942
  msgstr ""
3943
 
3944
+ #: src/vue/pages/settings/views/Advanced.vue:303
3945
+ msgid ""
3946
+ "You are getting the latest features, bugfixes, and security updates as they "
3947
+ "are released."
3948
  msgstr ""
3949
 
3950
+ #: src/vue/pages/settings/views/Advanced.vue:304
3951
+ msgid "Minor Only"
3952
  msgstr ""
3953
 
3954
+ #: src/vue/pages/settings/views/Advanced.vue:305
3955
+ msgid "You are getting bugfixes and security updates, but not major features."
 
3956
  msgstr ""
3957
 
3958
+ #: src/vue/pages/settings/views/Advanced.vue:307
3959
+ msgid "You will need to manually update everything."
3960
  msgstr ""
3961
 
3962
+ #: src/vue/pages/settings/views/Advanced.vue:308
3963
+ msgid ""
3964
+ "By allowing us to track usage data we can better help you because we know "
3965
+ "with which WordPress configurations, themes and plugins we should test."
3966
  msgstr ""
3967
 
3968
+ # Translators: 1 - Opening link tag, 2 - Closing link tag.
3969
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:181
3970
+ msgid "Complete documentation on usage tracking is available %1$shere%2$s."
3971
  msgstr ""
3972
 
3973
+ # Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more".
3974
+ #: src/vue/pages/settings/views/Advanced.vue:312
3975
+ msgid "This Admin Bar feature is only available for licensed %1$s users. %2$s"
3976
  msgstr ""
3977
 
3978
+ # Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more".
3979
+ #: src/vue/pages/settings/views/Advanced.vue:314
3980
+ msgid "The Dashboard Widget feature is only available for licensed %1$s users. %2$s"
3981
  msgstr ""
3982
 
3983
+ #: src/vue/pages/settings/views/Advanced.vue:315
3984
+ msgid "Taxonomy Columns"
3985
  msgstr ""
3986
 
3987
+ # Translators: 1 - Plugin Short Name ("AIOSEO").
3988
+ #: src/vue/pages/settings/views/Advanced.vue:318
3989
+ msgid "Select which Taxonomies you want to use the %1$s columns with."
3990
  msgstr ""
3991
 
3992
+ # Translators: 1 - Plugin Short Name ("AIOSEO").
3993
+ #: src/vue/pages/settings/views/Advanced.vue:322
3994
+ msgid "Uninstall %1$s"
 
3995
  msgstr ""
3996
 
3997
+ # Translators: 1 - Plugin Short Name ("AIOSEO").
3998
+ #: src/vue/pages/settings/views/Advanced.vue:324
3999
  msgid ""
4000
+ "Check this if you would like to remove ALL %1$s data upon plugin deletion. "
4001
+ "All settings and SEO data will be unrecoverable."
4002
  msgstr ""
4003
 
4004
+ # Translators: 1 - Learn more link.
4005
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:237
4006
+ msgid "Use the following shortcode to display the current breadcrumbs. %1$s"
4007
  msgstr ""
4008
 
4009
+ # Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Learn More" link.
4010
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:245
4011
+ msgid ""
4012
+ "To add this block, edit a page or post and search for the \"%1$s - "
4013
+ "Breadcrumbs\" block. %2$s"
4014
  msgstr ""
4015
 
4016
+ # Translators: 1 - Learn more link.
4017
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:254
4018
+ msgid ""
4019
+ "Use the following PHP code anywhere in your theme (in the loop) to display "
4020
+ "the breadcrumbs. %1$s"
4021
  msgstr ""
4022
 
4023
+ # Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO"), 4 - "Learn More" link.
4024
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:262
4025
+ msgid ""
4026
+ "To add this widget, visit the %1$swidgets page%2$s and look for the \"%3$s "
4027
+ "- Breadcrumbs\" widget. %4$s"
4028
  msgstr ""
4029
 
4030
+ # Translators: 1 - The plugin name ("AIOSEO").
4031
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:272
4032
+ msgid ""
4033
+ "Breadcrumbs are an essential part of SEO. By default %1$s will "
4034
+ "automatically add breadcrumbs to the schema markup that we add to your site "
4035
+ "and you don't need to make any changes for that to work. Breadcrumbs can "
4036
+ "also be used as a secondary navigation system that tells users where they "
4037
+ "are on a website relative to the homepage."
4038
  msgstr ""
4039
 
4040
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:274
4041
+ msgid ""
4042
+ "The purpose of breadcrumb navigation is to help users navigate around your "
4043
+ "website. It also helps search engines understand the structure and "
4044
+ "hierarchy of links on a web page."
4045
  msgstr ""
4046
 
4047
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:275
4048
+ msgid "Enable Breadcrumbs"
4049
  msgstr ""
4050
 
4051
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:276
4052
+ msgid "Show Breadcrumbs on Your Website"
4053
  msgstr ""
4054
 
4055
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:277
4056
+ msgid "Breadcrumb Settings"
4057
  msgstr ""
4058
 
4059
+ # Translators: 1 - The plugin name ("AIOSEO").
4060
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:280
4061
+ msgid ""
4062
+ "These settings will affect all the breadcrumbs displayed by %1$s throughout "
4063
+ "your site."
4064
  msgstr ""
4065
 
4066
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:282
4067
+ msgid "Separator"
4068
  msgstr ""
4069
 
4070
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:283
4071
+ msgid "Homepage Link"
4072
  msgstr ""
4073
 
4074
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:284
4075
+ msgid "Homepage label"
4076
  msgstr ""
4077
 
4078
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:285
4079
+ msgid "Label used for homepage link (first item) in breadcrumbs."
4080
  msgstr ""
4081
 
4082
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:286
4083
+ msgid "Breadcrumb Prefix"
4084
  msgstr ""
4085
 
4086
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:287
4087
+ msgid "Prefix for breadcrumb path."
4088
  msgstr ""
4089
 
4090
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:288
4091
+ msgid "Archive Format"
4092
  msgstr ""
4093
 
4094
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:289
4095
+ msgid "Format the label used for archives page."
 
4096
  msgstr ""
4097
 
4098
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:290
4099
+ msgid "Search Result Format"
4100
  msgstr ""
4101
 
4102
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:291
4103
+ msgid "Format the label used for the search results page."
 
 
 
4104
  msgstr ""
4105
 
4106
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:292
4107
+ msgid "404 Error Format"
4108
  msgstr ""
4109
 
4110
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:293
4111
+ msgid "Format the label used for the 404 error page."
4112
  msgstr ""
4113
 
4114
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:294
4115
+ msgid "Current Item"
4116
  msgstr ""
4117
 
4118
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:295
4119
+ msgid "Show current item"
4120
  msgstr ""
4121
 
4122
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:296
4123
+ msgid "Link current item"
4124
  msgstr ""
4125
 
4126
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:297
4127
+ msgid "Home"
4128
  msgstr ""
4129
 
4130
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:298
4131
+ msgid "Category"
4132
  msgstr ""
4133
 
4134
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:299
4135
+ msgid "Subcategory"
4136
  msgstr ""
4137
 
4138
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:300
4139
+ msgid "Article Title"
4140
  msgstr ""
4141
 
4142
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:301
4143
+ msgid "search key word goes here"
 
 
4144
  msgstr ""
4145
 
4146
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:302
4147
+ msgid "Category Name"
4148
  msgstr ""
4149
 
4150
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:304
4151
+ msgid "Category Hierarchy"
4152
  msgstr ""
4153
 
4154
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:305
4155
+ msgid ""
4156
+ "Display complete category hierarchy even if not selected on each individual "
4157
+ "post."
4158
  msgstr ""
4159
 
4160
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:306
4161
+ msgid "Blog"
4162
  msgstr ""
4163
 
4164
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:307
4165
+ msgid "Blog Page Title"
4166
  msgstr ""
4167
 
4168
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:308
4169
+ msgid "Show Blog Home"
4170
  msgstr ""
4171
 
4172
+ #: src/vue/pages/settings/views/RssContent.vue:91
4173
+ msgid "Automatically add content to your site's RSS feed."
4174
  msgstr ""
4175
 
4176
+ #: src/vue/pages/settings/views/RssContent.vue:92
4177
+ msgid ""
4178
+ "This feature is used to automatically add content to your site's RSS feed. "
4179
+ "More specifically, it allows you to add links back to your blog and your "
4180
+ "blog posts so scrapers will automatically add these links too. This helps "
4181
+ "search engines identify you as the original source of the content."
4182
  msgstr ""
4183
 
4184
+ #: src/vue/pages/settings/views/RssContent.vue:94
4185
+ msgid "RSS Content Settings"
4186
  msgstr ""
4187
 
4188
+ #: src/vue/pages/settings/views/RssContent.vue:95
4189
+ msgid "Open Your RSS Feed"
4190
  msgstr ""
4191
 
4192
+ #: src/vue/pages/settings/views/RssContent.vue:96
4193
+ msgid "RSS Before Content"
4194
  msgstr ""
4195
 
4196
+ #: src/vue/pages/settings/views/RssContent.vue:97
4197
+ msgid "RSS After Content"
4198
  msgstr ""
4199
 
4200
+ #: src/vue/pages/settings/views/RssContent.vue:98
4201
+ msgid "Add content before each post in your site feed."
 
 
4202
  msgstr ""
4203
 
4204
+ #: src/vue/pages/settings/views/RssContent.vue:99
4205
+ msgid "Add content after each post in your site feed."
 
 
4206
  msgstr ""
4207
 
4208
+ #: src/vue/pages/settings/views/lite/Breadcrumbs.vue:64
4209
+ msgid "Upgrade to Pro and Unlock Breadcrumb Templates"
4210
  msgstr ""
4211
 
4212
+ #: src/vue/pages/settings/views/lite/Breadcrumbs.vue:65
4213
+ msgid "Breadcrumb Templates are only available"
4214
  msgstr ""
4215
 
4216
+ # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
4217
+ #: src/vue/pages/settings/views/lite/Breadcrumbs.vue:67
4218
+ msgid "for licensed %1$s %2$s users."
4219
  msgstr ""
4220
 
4221
+ #: src/vue/pages/settings/views/lite/Breadcrumbs.vue:68
4222
+ msgid ""
4223
+ "Our template editor will allow you to easily customize how breadcrumbs are "
4224
+ "displayed on your site based on each post type or taxonomy."
4225
  msgstr ""
4226
 
4227
+ #: src/vue/pages/settings/views/lite/Breadcrumbs.vue:71
4228
+ msgid "Custom HTML templates"
4229
  msgstr ""
4230
 
4231
+ #: src/vue/standalone/publish-panel/PostPublish.vue:30
4232
+ msgid "Get out the word!"
4233
  msgstr ""
4234
 
4235
+ #: src/vue/standalone/publish-panel/PostPublish.vue:31
4236
+ msgid ""
4237
+ "Share your content on your favorite social media platforms to drive "
4238
+ "engagement and increase your SEO."
4239
  msgstr ""
4240
 
4241
+ #: src/vue/utils/tags.js:64
4242
+ msgid "Product Short Description"
4243
  msgstr ""
4244
 
4245
+ #: src/vue/utils/tags.js:65
4246
+ msgid "A short description for your product."
4247
  msgstr ""
4248
 
4249
+ #: src/vue/utils/tags.js:66
4250
+ msgid "Sample short description for your product."
4251
  msgstr ""
4252
 
4253
+ #: src/vue/utils/tags.js:82
4254
+ msgid "Archive"
4255
  msgstr ""
4256
 
4257
+ #: src/vue/utils/tags.js:83
4258
+ msgid "archive"
4259
  msgstr ""
4260
 
4261
+ #: src/vue/pages/posts-table/App.vue:221
4262
+ msgid "Image Title:"
4263
  msgstr ""
4264
 
4265
+ #: src/vue/pages/posts-table/App.vue:222
4266
+ msgid "Image Alt Tag:"
 
 
 
4267
  msgstr ""
4268
 
4269
+ #: src/vue/pages/post-settings/views/Facebook.vue:238
4270
+ msgid "Facebook Preview"
 
 
 
4271
  msgstr ""
4272
 
4273
+ #: src/vue/pages/post-settings/views/Twitter.vue:215
4274
+ msgid "Image Source"
4275
  msgstr ""
4276
 
4277
+ #: src/vue/pages/post-settings/views/Twitter.vue:216
4278
+ msgid "Custom Field Name"
 
4279
  msgstr ""
4280
 
4281
+ #: src/vue/pages/post-settings/views/Facebook.vue:241
4282
+ msgid "Video URL"
 
4283
  msgstr ""
4284
 
4285
+ #: src/vue/pages/post-settings/views/Facebook.vue:245
4286
+ msgid "Facebook Image"
4287
  msgstr ""
4288
 
4289
+ #: src/vue/pages/post-settings/views/Facebook.vue:246
4290
+ msgid "Facebook Title"
4291
  msgstr ""
4292
 
4293
+ #: src/vue/pages/post-settings/views/Facebook.vue:247
4294
+ msgid "Facebook Description"
4295
  msgstr ""
4296
 
4297
+ #: src/vue/pages/post-settings/views/Facebook.vue:250
4298
+ msgid ""
4299
+ "Minimum size: 200px x 200px, ideal ratio 1.91:1, 5MB max. (eg: 1640px x "
4300
+ "856px or 3280px x 1712px for retina screens)"
4301
  msgstr ""
4302
 
4303
+ #: src/vue/pages/post-settings/views/Facebook.vue:254
4304
+ msgid "Article Section"
 
 
 
 
4305
  msgstr ""
4306
 
4307
+ #: src/vue/pages/post-settings/views/Facebook.vue:255
4308
+ msgid "Article Tags"
4309
  msgstr ""
4310
 
4311
+ #: src/vue/pages/post-settings/views/Facebook.vue:256
4312
+ msgid "Press enter to create an article tag"
 
4313
  msgstr ""
4314
 
4315
+ #: src/vue/pages/post-settings/views/Facebook.vue:264
4316
+ msgid "Default"
4317
  msgstr ""
4318
 
4319
+ #: src/vue/pages/post-settings/views/Facebook.vue:264
4320
+ msgid "Default Object Type (Set in Social Networks)"
4321
  msgstr ""
4322
 
4323
+ #: src/vue/pages/settings/views/WebmasterTools.vue:245
4324
+ msgid "Miscellaneous Verification"
4325
  msgstr ""
4326
 
4327
+ # Translators: 1 - "<head></head>".
4328
+ #: src/vue/pages/settings/views/WebmasterTools.vue:247
4329
+ msgid ""
4330
+ "The code above will be added between the %1$s tags on every page on your "
4331
+ "website."
4332
  msgstr ""
4333
 
4334
+ #: src/vue/pages/settings/views/WebmasterTools.vue:248
4335
+ msgid "Webmaster Tools Verification"
 
4336
  msgstr ""
4337
 
4338
+ #: src/vue/pages/settings/views/WebmasterTools.vue:252
4339
+ msgid "Success!"
4340
  msgstr ""
4341
 
4342
+ # Translators: 1 - The name of one of our partner plugins.
4343
+ #: src/vue/pages/settings/views/WebmasterTools.vue:256
4344
+ msgid "Google Analytics is now handled by %1$s."
4345
  msgstr ""
4346
 
4347
+ #: src/vue/pages/settings/views/WebmasterTools.vue:257
4348
+ msgid "Manage Google Analytics"
4349
  msgstr ""
4350
 
4351
+ #: src/vue/pages/settings/views/WebmasterTools.vue:258
4352
+ msgid "Get Started"
 
4353
  msgstr ""
4354
 
4355
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
4356
+ #: src/vue/pages/settings/views/WebmasterTools.vue:269
4357
  msgid ""
4358
+ "We recommend using the %1$sFree MonsterInsights%2$s plugin to get the most "
4359
+ "out of Google Analytics."
 
 
4360
  msgstr ""
4361
 
4362
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
4363
+ #: src/vue/pages/settings/views/WebmasterTools.vue:273
4364
+ msgid ""
4365
+ "We recommend using the %1$sFree ExactMetrics%2$s plugin to get the most out "
4366
+ "of Google Analytics."
4367
  msgstr ""
4368
 
4369
+ #: src/vue/pages/settings/views/WebmasterTools.vue:307
4370
+ msgid "Google Verification Code"
4371
  msgstr ""
4372
 
4373
+ # Translators: 1 - "Google Search Console".
4374
+ #: src/vue/pages/settings/views/WebmasterTools.vue:309
4375
+ msgid "Google Search Console"
4376
  msgstr ""
4377
 
4378
+ # Translators: 1 - "Google Search Console".
4379
+ #: src/vue/pages/settings/views/WebmasterTools.vue:309
4380
+ msgid "Get your Google verification code in %1$s."
4381
  msgstr ""
4382
 
4383
+ #: src/vue/pages/settings/views/WebmasterTools.vue:320
4384
+ msgid "Bing Verification Code"
4385
  msgstr ""
4386
 
4387
+ # Translators: 1 - "Bing Webmaster Tools".
4388
+ #: src/vue/pages/settings/views/WebmasterTools.vue:322
4389
+ msgid "Bing Webmaster Tools"
4390
  msgstr ""
4391
 
4392
+ # Translators: 1 - "Bing Webmaster Tools".
4393
+ #: src/vue/pages/settings/views/WebmasterTools.vue:322
4394
+ msgid "Get your Bing verification code in %1$s."
4395
  msgstr ""
4396
 
4397
+ #: src/vue/pages/settings/views/WebmasterTools.vue:333
4398
+ msgid "Yandex Verification Code"
4399
  msgstr ""
4400
 
4401
+ # Translators: 1 - "Yandex Webmaster Tools".
4402
+ #: src/vue/pages/settings/views/WebmasterTools.vue:335
4403
+ msgid "Yandex Webmaster Tools"
4404
  msgstr ""
4405
 
4406
+ # Translators: 1 - "Yandex Webmaster Tools".
4407
+ #: src/vue/pages/settings/views/WebmasterTools.vue:335
4408
+ msgid "Get your Yandex verification code in %1$s."
 
 
 
 
4409
  msgstr ""
4410
 
4411
+ #: src/vue/pages/settings/views/WebmasterTools.vue:346
4412
+ msgid "Baidu Verification Code"
4413
  msgstr ""
4414
 
4415
+ # Translators: 1 - "Baidu Webmaster Tools".
4416
+ #: src/vue/pages/settings/views/WebmasterTools.vue:348
4417
+ msgid "Baidu Webmaster Tools"
4418
  msgstr ""
4419
 
4420
+ # Translators: 1 - "Baidu Webmaster Tools".
4421
+ #: src/vue/pages/settings/views/WebmasterTools.vue:348
4422
+ msgid "Get your Baidu verification code in %1$s."
4423
  msgstr ""
4424
 
4425
+ #: src/vue/pages/settings/views/WebmasterTools.vue:354
4426
+ msgid "Pinterest Site Verification"
 
4427
  msgstr ""
4428
 
4429
+ # Translators: 1 - "Pinterest account".
4430
+ #: src/vue/pages/settings/views/WebmasterTools.vue:361
4431
+ msgid "Get your Pinterest verification code in your %1$s."
4432
  msgstr ""
4433
 
4434
+ # Translators: 1 - "Pinterest account".
4435
+ #: src/vue/pages/settings/views/WebmasterTools.vue:361
4436
+ msgid "Pinterest account"
4437
  msgstr ""
4438
 
4439
+ #: src/vue/pages/settings/views/WebmasterTools.vue:392
4440
+ msgid "Google Analytics"
 
 
4441
  msgstr ""
4442
 
4443
+ #: src/vue/pages/settings/views/WebmasterTools.vue:399
4444
+ msgid "Google Analytics ID"
 
 
4445
  msgstr ""
4446
 
4447
+ # Translators: 1 - "Google Analytics account".
4448
+ #: src/vue/pages/settings/views/WebmasterTools.vue:401
4449
+ msgid "Get your Google Analytics ID in your %1$s."
 
 
 
4450
  msgstr ""
4451
 
4452
+ # Translators: 1 - "Google Analytics account".
4453
+ #: src/vue/pages/settings/views/WebmasterTools.vue:401
4454
+ msgid "Google Analytics account"
 
4455
  msgstr ""
4456
 
4457
+ #: src/vue/pages/settings/views/WebmasterTools.vue:407
4458
+ msgid "Enable Advanced Analytics Options"
 
 
 
 
4459
  msgstr ""
4460
 
4461
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
4462
+ #: src/vue/pages/settings/views/WebmasterTools.vue:411
4463
+ msgid "This enables Advanced Google Analytics options.%1$s%2$s"
4464
  msgstr ""
4465
 
4466
+ #: src/vue/pages/settings/views/WebmasterTools.vue:416
4467
+ msgid "Tracking Domain"
4468
  msgstr ""
4469
 
4470
+ # Translators: 1 - "http://", 2 - A link to our documentation, 3 - HTML line break tag.
4471
+ #: src/vue/pages/settings/views/WebmasterTools.vue:419
4472
+ msgid "Enter your domain name without the %1$s to set your cookie domain.%2$s%3$s"
4473
  msgstr ""
4474
 
4475
+ #: src/vue/pages/settings/views/WebmasterTools.vue:424
4476
+ msgid "Track Multiple Domains"
4477
  msgstr ""
4478
 
4479
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
4480
+ #: src/vue/pages/settings/views/WebmasterTools.vue:432
4481
  msgid ""
4482
+ "Use this option to enable tracking of multiple or additional "
4483
+ "domains.%1$s%2$s"
 
4484
  msgstr ""
4485
 
4486
+ #: src/vue/pages/settings/views/WebmasterTools.vue:437
4487
+ msgid "Additional Domains"
 
 
 
4488
  msgstr ""
4489
 
4490
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
4491
+ #: src/vue/pages/settings/views/WebmasterTools.vue:441
4492
  msgid ""
4493
+ "Add a list of additional domains to track here. Enter one domain name per "
4494
+ "line without the http://.%1$s%2$s"
 
 
4495
  msgstr ""
4496
 
4497
+ #: src/vue/pages/settings/views/WebmasterTools.vue:446
4498
+ msgid "Anonymize IP Addresses"
 
 
4499
  msgstr ""
4500
 
4501
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
4502
+ #: src/vue/pages/settings/views/WebmasterTools.vue:454
4503
+ msgid "This enables support for IP Anonymization in Google Analytics.%1$s%2$s"
4504
  msgstr ""
4505
 
4506
+ #: src/vue/pages/settings/views/WebmasterTools.vue:459
4507
+ msgid "Display Advertiser Tracking"
4508
  msgstr ""
4509
 
4510
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
4511
+ #: src/vue/pages/settings/views/WebmasterTools.vue:467
4512
+ msgid ""
4513
+ "This enables support for the Display Advertiser Features in Google "
4514
+ "Analytics.%1$s%2$s"
4515
  msgstr ""
4516
 
4517
+ #: src/vue/pages/settings/views/WebmasterTools.vue:472
4518
+ msgid "Exclude Users from Tracking"
4519
  msgstr ""
4520
 
4521
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
4522
+ #: src/vue/pages/settings/views/WebmasterTools.vue:483
4523
+ msgid "Exclude logged-in users from Google Analytics tracking by role.%1$s%2$s"
 
4524
  msgstr ""
4525
 
4526
+ #: src/vue/pages/settings/views/WebmasterTools.vue:488
4527
+ msgid "Enhanced Link Attribution"
4528
  msgstr ""
4529
 
4530
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
4531
+ #: src/vue/pages/settings/views/WebmasterTools.vue:496
4532
+ msgid ""
4533
+ "This enables support for the Enhanced Link Attribution in Google "
4534
+ "Analytics.%1$s%2$s"
4535
  msgstr ""
4536
 
4537
+ #: src/vue/pages/settings/views/WebmasterTools.vue:501
4538
+ msgid "Track Outbound Links"
4539
  msgstr ""
4540
 
4541
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
4542
+ #: src/vue/pages/settings/views/WebmasterTools.vue:509
4543
+ msgid "This enables tracking outbound links with Google Analytics.%1$s%2$s"
4544
  msgstr ""
4545
 
4546
+ #: src/vue/pages/settings/views/WebmasterTools.vue:514
4547
+ msgid "Enhanced Ecommerce"
4548
  msgstr ""
4549
 
4550
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
4551
+ #: src/vue/pages/settings/views/WebmasterTools.vue:522
4552
+ msgid "This enables support for the Enhanced Ecommerce in Google Analytics.%1$s%2$s"
4553
  msgstr ""
4554
 
4555
+ #: src/vue/pages/settings/views/WebmasterTools.vue:527
4556
+ msgid "Track Outbound Forms"
4557
  msgstr ""
4558
 
4559
+ #: src/vue/pages/settings/views/WebmasterTools.vue:541
4560
+ msgid "Track Events"
4561
  msgstr ""
4562
 
4563
+ #: src/vue/pages/settings/views/WebmasterTools.vue:555
4564
+ msgid "Track URL Changes"
4565
  msgstr ""
4566
 
4567
+ #: src/vue/pages/settings/views/WebmasterTools.vue:569
4568
+ msgid "Track Page Visibility"
 
 
 
4569
  msgstr ""
4570
 
4571
+ #: src/vue/pages/settings/views/WebmasterTools.vue:583
4572
+ msgid "Track Media Queries"
 
 
 
 
 
4573
  msgstr ""
4574
 
4575
+ #: src/vue/pages/settings/views/WebmasterTools.vue:597
4576
+ msgid "Track Elements Visibility"
4577
  msgstr ""
4578
 
4579
+ #: src/vue/pages/settings/views/WebmasterTools.vue:611
4580
+ msgid "Track Page Scrolling"
4581
  msgstr ""
4582
 
4583
+ #: src/vue/pages/settings/views/WebmasterTools.vue:625
4584
+ msgid "Track Facebook and Twitter"
4585
  msgstr ""
4586
 
4587
+ #: src/vue/pages/settings/views/WebmasterTools.vue:639
4588
+ msgid "Ensure URL Consistency"
4589
  msgstr ""
4590
 
4591
+ #: src/vue/pages/settings/views/WebmasterTools.vue:653
4592
+ msgid "Google Tag Manager Container ID"
 
 
 
4593
  msgstr ""
4594
 
4595
+ # Translators: 1 - "Google Tag Manager account".
4596
+ #: src/vue/pages/settings/views/WebmasterTools.vue:657
4597
+ msgid "Get your Google Tag Manager ID in your %1$s."
 
 
4598
  msgstr ""
4599
 
4600
+ #: src/vue/plugins/constants.js:1049
4601
+ msgid "Manually Enter Type"
4602
  msgstr ""
4603
 
4604
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:214
4605
+ msgid "Customer Support"
4606
  msgstr ""
4607
 
4608
+ #: src/vue/plugins/constants.js:1051
4609
+ msgid "Technical Support"
4610
  msgstr ""
4611
 
4612
+ #: src/vue/plugins/constants.js:1052
4613
+ msgid "Billing Support"
4614
  msgstr ""
4615
 
4616
+ #: src/vue/plugins/constants.js:1053
4617
+ msgid "Bill Payment"
 
 
4618
  msgstr ""
4619
 
4620
+ #: src/vue/plugins/constants.js:1054
4621
+ msgid "Sales"
 
 
4622
  msgstr ""
4623
 
4624
+ #: src/vue/plugins/constants.js:1055
4625
+ msgid "Reservations"
4626
  msgstr ""
4627
 
4628
+ #: src/vue/plugins/constants.js:1056
4629
+ msgid "Credit Card Support"
 
 
4630
  msgstr ""
4631
 
4632
+ #: src/vue/plugins/constants.js:1057
4633
+ msgid "Emergency"
 
 
4634
  msgstr ""
4635
 
4636
+ #: src/vue/plugins/constants.js:1058
4637
+ msgid "Bagage Tracking"
 
 
 
 
4638
  msgstr ""
4639
 
4640
+ #: src/vue/plugins/constants.js:1059
4641
+ msgid "Roadside Assistance"
 
 
 
 
4642
  msgstr ""
4643
 
4644
+ #: src/vue/plugins/constants.js:1060
4645
+ msgid "Package Tracking"
4646
  msgstr ""
4647
 
4648
+ #: src/vue/plugins/constants.js:1067
4649
+ msgid ""
4650
+ "Sitemaps are a list of all your content that search engines use when they "
4651
+ "crawl your site."
4652
  msgstr ""
4653
 
4654
+ #: src/vue/plugins/constants.js:1077
4655
+ msgid "Optimized Search Appearance"
4656
  msgstr ""
4657
 
4658
+ #: src/vue/plugins/constants.js:1078
4659
+ msgid "Get all the right tools to make sure your website shows up in Google Search."
 
 
4660
  msgstr ""
4661
 
4662
+ #: src/vue/plugins/constants.js:1086
4663
  msgid ""
4664
+ "Get the #1 analytics plugin to see how people find and use your website. "
4665
+ "Simply put, see stats that matter."
4666
  msgstr ""
4667
 
4668
+ #: src/vue/plugins/constants.js:1102
4669
+ msgid ""
4670
+ "Globally control Title and Alt attributes for attachment pages and images "
4671
+ "that are embedded in your content."
4672
  msgstr ""
4673
 
4674
+ #: src/vue/plugins/constants.js:1110
4675
+ msgid ""
4676
+ "Tell Google about your business for display as a Knowledge Graph card or "
4677
+ "business carousel."
4678
  msgstr ""
4679
 
4680
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:164
4681
+ msgid "Video Sitemap"
 
4682
  msgstr ""
4683
 
4684
+ #: src/vue/plugins/constants.js:1118
4685
+ msgid "Generate an XML Sitemap specifically for video content on your site."
 
4686
  msgstr ""
4687
 
4688
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:174
4689
+ msgid "News Sitemap"
 
 
 
4690
  msgstr ""
4691
 
4692
+ #: src/vue/plugins/constants.js:1126
4693
+ msgid "Submit articles to Google News that were published in the last 48 hours."
 
 
 
4694
  msgstr ""
4695
 
4696
+ #: src/vue/plugins/constants.js:1133
4697
+ msgid "Smart Redirects + 404 Detection"
4698
  msgstr ""
4699
 
4700
+ #: src/vue/plugins/constants.js:1134
4701
+ msgid "Create and manage redirects for your broken links."
4702
  msgstr ""
4703
 
4704
+ #: src/vue/plugins/constants.js:1141
4705
+ msgid "Internal Link Building Assistant"
4706
  msgstr ""
4707
 
4708
+ #: src/vue/plugins/constants.js:1149
4709
+ msgid "Advanced Rich Snippets + Schema Markups"
 
4710
  msgstr ""
4711
 
4712
+ #: src/vue/plugins/constants.js:1160
4713
+ msgid "Activities"
 
 
 
 
4714
  msgstr ""
4715
 
4716
+ #: src/vue/plugins/constants.js:1162
4717
+ msgid "Activity"
 
 
 
 
4718
  msgstr ""
4719
 
4720
+ #: src/vue/plugins/constants.js:1163
4721
+ msgid "Sport"
4722
  msgstr ""
4723
 
4724
+ #: src/vue/plugins/constants.js:1167
4725
+ msgid "Businesses"
4726
  msgstr ""
4727
 
4728
+ #: src/vue/plugins/constants.js:1169
4729
+ msgid "Bar"
4730
  msgstr ""
4731
 
4732
+ #: src/vue/plugins/constants.js:1170
4733
+ msgid "Company"
4734
  msgstr ""
4735
 
4736
+ #: src/vue/plugins/constants.js:1171
4737
+ msgid "Cafe"
 
 
 
 
4738
  msgstr ""
4739
 
4740
+ #: src/vue/plugins/constants.js:1172
4741
+ msgid "Hotel"
4742
  msgstr ""
4743
 
4744
+ #: src/vue/plugins/constants.js:1173
4745
+ msgid "Restaurant"
4746
  msgstr ""
4747
 
4748
+ #: src/vue/plugins/constants.js:1177
4749
+ msgid "Groups"
4750
  msgstr ""
4751
 
4752
+ # Translators: This refers to a charity/non-profit organization.
4753
+ #: src/vue/plugins/constants.js:1180
4754
+ msgid "Cause"
4755
  msgstr ""
4756
 
4757
+ #: src/vue/plugins/constants.js:1181
4758
+ msgid "Sports League"
4759
  msgstr ""
4760
 
4761
+ #: src/vue/plugins/constants.js:1182
4762
+ msgid "Sports Team"
4763
  msgstr ""
4764
 
4765
+ #: src/vue/plugins/constants.js:1186
4766
+ msgid "Organizations"
 
 
 
4767
  msgstr ""
4768
 
4769
+ # Translators: This refers to a music group.
4770
+ #: src/vue/plugins/constants.js:1189
4771
+ msgid "Band"
 
 
4772
  msgstr ""
4773
 
4774
+ #: src/vue/plugins/constants.js:1190
4775
+ msgid "Non-Profit"
4776
  msgstr ""
4777
 
4778
+ #: src/vue/plugins/constants.js:1191
4779
+ msgid "School"
4780
  msgstr ""
4781
 
4782
+ #: src/vue/plugins/constants.js:1192
4783
+ msgid "University"
 
4784
  msgstr ""
4785
 
4786
+ #: src/vue/plugins/constants.js:1196
4787
+ msgid "People"
 
 
4788
  msgstr ""
4789
 
4790
+ #: src/vue/plugins/constants.js:1198
4791
+ msgid "Actor"
4792
  msgstr ""
4793
 
4794
+ #: src/vue/plugins/constants.js:1199
4795
+ msgid "Athlete"
 
 
4796
  msgstr ""
4797
 
4798
+ #: src/vue/plugins/constants.js:1201
4799
+ msgid "Director"
4800
  msgstr ""
4801
 
4802
+ #: src/vue/plugins/constants.js:1202
4803
+ msgid "Musician"
4804
  msgstr ""
4805
 
4806
+ #: src/vue/plugins/constants.js:1203
4807
+ msgid "Politician"
 
 
4808
  msgstr ""
4809
 
4810
+ #: src/vue/plugins/constants.js:1204
4811
+ msgid "Profile"
4812
  msgstr ""
4813
 
4814
+ #: src/vue/plugins/constants.js:1205
4815
+ msgid "Public Figure"
 
 
4816
  msgstr ""
4817
 
4818
+ #: src/vue/plugins/constants.js:1209
4819
+ msgid "Places"
 
4820
  msgstr ""
4821
 
4822
+ #: src/vue/plugins/constants.js:1211
4823
+ msgid "City"
 
4824
  msgstr ""
4825
 
4826
+ #: src/vue/plugins/constants.js:1212
4827
+ msgid "Country"
4828
  msgstr ""
4829
 
4830
+ #: src/vue/plugins/constants.js:1213
4831
+ msgid "Landmark"
4832
  msgstr ""
4833
 
4834
+ #: src/vue/plugins/constants.js:1214
4835
+ msgid "State/Province"
4836
  msgstr ""
4837
 
4838
+ #: src/vue/plugins/constants.js:1218
4839
+ msgid "Products & Entertainment"
4840
  msgstr ""
4841
 
4842
+ #: src/vue/plugins/constants.js:1220
4843
+ msgid "Album"
4844
  msgstr ""
4845
 
4846
+ #: src/vue/plugins/constants.js:1221
4847
+ msgid "Book"
 
4848
  msgstr ""
4849
 
4850
+ #: src/vue/plugins/constants.js:1222
4851
+ msgid "Drink"
 
4852
  msgstr ""
4853
 
4854
+ #: src/vue/plugins/constants.js:1223
4855
+ msgid "Food"
4856
  msgstr ""
4857
 
4858
+ #: src/vue/plugins/constants.js:1224
4859
+ msgid "Game"
4860
  msgstr ""
4861
 
4862
+ #: src/vue/plugins/constants.js:1225
4863
+ msgid "Movie"
 
 
 
4864
  msgstr ""
4865
 
4866
+ #: src/vue/plugins/constants.js:1226
4867
+ msgid "Product"
 
 
 
4868
  msgstr ""
4869
 
4870
+ #: src/vue/plugins/constants.js:1227
4871
+ msgid "Song"
 
 
 
 
4872
  msgstr ""
4873
 
4874
+ #: src/vue/plugins/constants.js:1228
4875
+ msgid "TV Show"
 
 
 
 
 
4876
  msgstr ""
4877
 
4878
+ #: src/vue/plugins/constants.js:1229
4879
+ msgid "Episode"
 
4880
  msgstr ""
4881
 
4882
+ #: src/vue/plugins/constants.js:1233
4883
+ msgid "Websites"
 
 
 
4884
  msgstr ""
4885
 
4886
+ #: src/vue/pages/post-settings/views/lite/Schema.vue:57
4887
+ #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:73
4888
+ msgid "Article"
 
 
4889
  msgstr ""
4890
 
4891
+ #: src/vue/plugins/constants.js:1236
4892
+ msgid "Website"
4893
  msgstr ""
4894
 
4895
+ #: src/vue/plugins/constants.js:1287
4896
+ msgid "Exact match all parameters in any order"
4897
  msgstr ""
4898
 
4899
+ #: src/vue/plugins/constants.js:1288
4900
+ msgid "Ignore & pass parameters to the target"
 
 
 
 
4901
  msgstr ""
4902
 
4903
+ #: src/vue/plugins/constants.js:1289
4904
+ msgid "Ignore all parameters except UTM"
 
 
 
 
 
4905
  msgstr ""
4906
 
4907
+ #: src/vue/plugins/constants.js:1293
4908
+ msgid "Manual Redirects"
4909
  msgstr ""
4910
 
4911
+ #: src/vue/plugins/constants.js:1294
4912
+ msgid "Modified Posts"
4913
  msgstr ""
4914
 
4915
+ #: src/vue/plugins/constants.js:1295
4916
+ msgid "404 Redirects"
4917
  msgstr ""
4918
 
4919
+ #: src/vue/plugins/constants.js:1301
4920
+ msgid "Archive Organization"
4921
  msgstr ""
4922
 
4923
+ #: src/vue/plugins/constants.js:1302
4924
+ msgid "Automotive Business"
 
 
 
4925
  msgstr ""
4926
 
4927
+ #: src/vue/plugins/constants.js:1303
4928
+ msgid "Childcare"
 
 
 
 
 
 
4929
  msgstr ""
4930
 
4931
+ #: src/vue/plugins/constants.js:1304
4932
+ msgid "Dentist"
4933
  msgstr ""
4934
 
4935
+ #: src/vue/plugins/constants.js:1305
4936
+ msgid "Dry Cleaning/Laundry"
4937
  msgstr ""
4938
 
4939
+ #: src/vue/plugins/constants.js:1306
4940
+ msgid "Emergency Service"
 
 
4941
  msgstr ""
4942
 
4943
+ #: src/vue/plugins/constants.js:1307
4944
+ msgid "Employment Agency"
 
 
 
 
4945
  msgstr ""
4946
 
4947
+ #: src/vue/plugins/constants.js:1308
4948
+ msgid "Entertainment Business"
 
 
 
4949
  msgstr ""
4950
 
4951
+ #: src/vue/plugins/constants.js:1309
4952
+ msgid "Financial Service"
4953
  msgstr ""
4954
 
4955
+ #: src/vue/plugins/constants.js:1310
4956
+ msgid "Food Establishment"
4957
  msgstr ""
4958
 
4959
+ #: src/vue/plugins/constants.js:1311
4960
+ msgid "Government Office"
4961
  msgstr ""
4962
 
4963
+ #: src/vue/plugins/constants.js:1312
4964
+ msgid "Health & Beauty Business"
4965
  msgstr ""
4966
 
4967
+ #: src/vue/plugins/constants.js:1313
4968
+ msgid "Home & Construction Business"
4969
  msgstr ""
4970
 
4971
+ #: src/vue/plugins/constants.js:1314
4972
+ msgid "Internet Cafe"
 
 
4973
  msgstr ""
4974
 
4975
+ #: src/vue/plugins/constants.js:1315
4976
+ msgid "Legal Service"
 
 
 
4977
  msgstr ""
4978
 
4979
+ #: src/vue/plugins/constants.js:1316
4980
+ msgid "Library"
4981
  msgstr ""
4982
 
4983
+ #: src/vue/plugins/constants.js:1317
4984
+ msgid "Lodging Business"
4985
  msgstr ""
4986
 
4987
+ #: src/vue/plugins/constants.js:1318
4988
+ msgid "Medical Business"
4989
  msgstr ""
4990
 
4991
+ #: src/vue/plugins/constants.js:1319
4992
+ msgid "Professional Service"
4993
  msgstr ""
4994
 
4995
+ #: src/vue/plugins/constants.js:1320
4996
+ msgid "Radio Station"
 
 
 
4997
  msgstr ""
4998
 
4999
+ #: src/vue/plugins/constants.js:1321
5000
+ msgid "Real Estate Agent"
5001
  msgstr ""
5002
 
5003
+ #: src/vue/plugins/constants.js:1322
5004
+ msgid "Recycling Center"
5005
  msgstr ""
5006
 
5007
+ #: src/vue/plugins/constants.js:1323
5008
+ msgid "Self Storage"
5009
  msgstr ""
5010
 
5011
+ #: src/vue/plugins/constants.js:1324
5012
+ msgid "Shopping Center"
5013
  msgstr ""
5014
 
5015
+ #: src/vue/plugins/constants.js:1325
5016
+ msgid "Sports Activity Location"
 
 
 
5017
  msgstr ""
5018
 
5019
+ #: src/vue/plugins/constants.js:1326
5020
+ msgid "Store"
5021
  msgstr ""
5022
 
5023
+ #: src/vue/plugins/constants.js:1327
5024
+ msgid "Television Station"
5025
  msgstr ""
5026
 
5027
+ #: src/vue/plugins/constants.js:1328
5028
+ msgid "Tourist Information Center"
 
5029
  msgstr ""
5030
 
5031
+ #: src/vue/plugins/constants.js:1329
5032
+ msgid "Travel Agency"
 
5033
  msgstr ""
5034
 
5035
+ #: src/vue/plugins/constants.js:1411
5036
+ msgid "CORS"
 
5037
  msgstr ""
5038
 
5039
+ #: src/vue/plugins/constants.js:1439
5040
+ msgid "Login Status"
 
5041
  msgstr ""
5042
 
5043
+ #: src/vue/plugins/constants.js:1440
5044
+ msgid "Referrer"
 
5045
  msgstr ""
5046
 
5047
+ #: src/vue/plugins/constants.js:1441
5048
+ msgid "WordPress User Roles"
 
5049
  msgstr ""
5050
 
5051
+ #: src/vue/pages/tools/views/RobotsEditor.vue:247
5052
+ msgid "User Agent"
 
 
 
5053
  msgstr ""
5054
 
5055
+ #: src/vue/plugins/constants.js:1443
5056
+ msgid "Cookie"
 
 
5057
  msgstr ""
5058
 
5059
+ #: src/vue/plugins/constants.js:1444
5060
+ msgid "IP"
5061
  msgstr ""
5062
 
5063
+ #: src/vue/plugins/constants.js:1445
5064
+ msgid "Server"
5065
  msgstr ""
5066
 
5067
+ #: src/vue/plugins/constants.js:1446
5068
+ msgid "HTTP Header"
5069
  msgstr ""
5070
 
5071
+ #: src/vue/plugins/constants.js:1447
5072
+ msgid "WordPress Filter"
5073
  msgstr ""
5074
 
5075
+ #: src/vue/plugins/constants.js:1448
5076
+ msgid "Locale"
5077
  msgstr ""
5078
 
5079
+ #: src/vue/plugins/constants.js:1449
5080
+ msgid "Mobile"
5081
  msgstr ""
5082
 
5083
+ #: src/vue/plugins/constants.js:1450
5084
+ msgid "Feeds"
5085
  msgstr ""
5086
 
5087
+ #: src/vue/plugins/constants.js:1451
5088
+ msgid "Libraries"
5089
  msgstr ""
5090
 
5091
+ #: src/vue/plugins/constants.js:1452
5092
+ msgid "Logged In"
5093
  msgstr ""
5094
 
5095
+ #: src/vue/plugins/constants.js:1453
5096
+ msgid "Logged Out"
5097
  msgstr ""
5098
 
5099
+ #: src/vue/plugins/constants.js:20
5100
+ msgid "hourly"
5101
  msgstr ""
5102
 
5103
+ #: src/vue/plugins/constants.js:21
5104
+ msgid "daily"
 
5105
  msgstr ""
5106
 
5107
+ #: src/vue/plugins/constants.js:22
5108
+ msgid "weekly"
 
5109
  msgstr ""
5110
 
5111
+ #: src/vue/plugins/constants.js:23
5112
+ msgid "monthly"
5113
  msgstr ""
5114
 
5115
+ #: src/vue/plugins/constants.js:24
5116
+ msgid "yearly"
 
5117
  msgstr ""
5118
 
5119
+ #: src/vue/plugins/constants.js:25
5120
+ msgid "never"
 
5121
  msgstr ""
5122
 
5123
+ #: src/vue/plugins/constants.js:29
5124
+ msgid "No"
5125
  msgstr ""
5126
 
5127
+ #: src/vue/plugins/constants.js:30
5128
+ msgid "Yes"
5129
  msgstr ""
5130
 
5131
+ #: src/vue/plugins/constants.js:31
5132
+ msgid "Off"
5133
  msgstr ""
5134
 
5135
+ #: src/vue/plugins/constants.js:32
5136
+ msgid "On"
5137
  msgstr ""
5138
 
5139
+ #: src/vue/plugins/constants.js:33
5140
+ msgid "Show"
5141
  msgstr ""
5142
 
5143
+ #: src/vue/plugins/constants.js:34
5144
+ msgid "Hide"
5145
  msgstr ""
5146
 
5147
+ #: src/vue/plugins/constants.js:36
5148
+ msgid "Disabled"
5149
  msgstr ""
5150
 
5151
+ #: src/vue/plugins/constants.js:37
5152
+ msgid "Enabled"
5153
  msgstr ""
5154
 
5155
+ #: src/vue/plugins/constants.js:38
5156
+ msgid "Preview"
5157
  msgstr ""
5158
 
5159
+ #: src/vue/plugins/constants.js:39
5160
+ msgid "Include"
5161
  msgstr ""
5162
 
5163
+ #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:75
5164
+ msgid "Add Additional Keyphrases"
5165
  msgstr ""
5166
 
5167
+ #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:76
5168
+ msgid "Improve your SEO rankings with additional keyphrases."
5169
  msgstr ""
5170
 
5171
+ # Translators: 1 - "Pro" string, 2 - "Learn more link".
5172
+ #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:79
5173
+ msgid "Multiple Keyphrases is a %1$s feature. %2$s"
5174
  msgstr ""
5175
 
5176
+ #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:81
5177
+ msgid "Click here to get"
5178
  msgstr ""
5179
 
5180
+ #: src/vue/pages/post-settings/views/lite/Schema.vue:55
5181
+ #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:71
5182
+ msgid "Schema Type"
5183
  msgstr ""
5184
 
5185
+ #: src/vue/pages/post-settings/views/lite/Schema.vue:56
5186
+ #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:72
5187
+ msgid "Article Type"
5188
  msgstr ""
5189
 
5190
+ #: src/vue/pages/post-settings/views/lite/Schema.vue:58
5191
+ #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:74
5192
+ msgid "Blog Post"
5193
  msgstr ""
5194
 
5195
+ #: src/vue/pages/post-settings/views/lite/Schema.vue:59
5196
+ #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:75
5197
+ msgid "News Article"
5198
  msgstr ""
5199
 
5200
+ #: src/vue/pages/post-settings/views/SocialSideBar.vue:26
5201
+ msgid ""
5202
+ "Here you can view and edit the thumbnail, title and description that will "
5203
+ "be displayed when your site is shared on social media. Click on the button "
5204
+ "below to view and edit the preview."
5205
  msgstr ""
5206
 
5207
+ #: src/vue/pages/post-settings/views/SocialSideBar.vue:27
5208
+ msgid "Preview & Edit"
 
 
5209
  msgstr ""
5210
 
5211
+ # Translators: 1 - AIOSEO.
5212
+ #: src/vue/plugins/breadcrumbs/index.js:33
5213
+ msgid "%1$s - Breadcrumbs"
5214
  msgstr ""
5215
 
5216
+ #: src/vue/pages/post-settings/views/Twitter.vue:213
5217
+ msgid "Twitter Preview"
 
 
 
5218
  msgstr ""
5219
 
5220
+ #: src/vue/pages/post-settings/views/Twitter.vue:214
5221
+ msgid "Use Data from Facebook Tab"
5222
  msgstr ""
5223
 
5224
+ #: src/vue/pages/post-settings/views/Twitter.vue:217
5225
+ msgid "Twitter Image"
5226
  msgstr ""
5227
 
5228
+ #: src/vue/pages/post-settings/views/Twitter.vue:218
5229
+ msgid "Twitter Title"
5230
  msgstr ""
5231
 
5232
+ #: src/vue/pages/post-settings/views/Twitter.vue:219
5233
+ msgid "Twitter Description"
5234
  msgstr ""
5235
 
5236
+ #: src/vue/pages/post-settings/views/Twitter.vue:220
5237
+ msgid "Twitter Card Type"
5238
  msgstr ""
5239
 
5240
+ #: src/vue/pages/post-settings/views/Twitter.vue:234
5241
+ msgid "Default (Set under Social Networks)"
5242
  msgstr ""
5243
 
5244
+ #: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:86
5245
+ msgid "Show Title"
5246
  msgstr ""
5247
 
5248
+ #: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:87
5249
+ msgid "Show Icons"
5250
  msgstr ""
5251
 
5252
+ #: src/vue/plugins/html-sitemap/index.js:44
5253
+ msgid "%1$s - HTML Sitemap"
5254
  msgstr ""
5255
 
5256
+ # Translators: 1 - Strong tag, 2 - Close strong tag.
5257
+ #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:100
5258
+ msgid ""
5259
+ "%1$sThe custom marker should be: 100x100 px.%2$s If the image exceeds those "
5260
+ "dimensions it could (partially) cover the info popup."
5261
  msgstr ""
5262
 
5263
+ #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:90
5264
+ msgid "Show label"
5265
  msgstr ""
5266
 
5267
+ #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:91
5268
+ msgid "Show icon"
5269
  msgstr ""
5270
 
5271
+ #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:93
5272
+ msgid "Map Display"
 
5273
  msgstr ""
5274
 
5275
+ #: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:96
5276
+ msgid "Custom Marker"
5277
  msgstr ""
5278
 
5279
+ # Translators: 1 - Semrush.
5280
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:286
5281
+ msgid "Additional Keyphrases by %1$s"
5282
  msgstr ""
5283
 
5284
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:287
5285
+ msgid "Add Focus Keyphrase"
5286
  msgstr ""
5287
 
5288
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:288
5289
+ msgid "Get Additional Keyphrases"
5290
  msgstr ""
5291
 
5292
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:289
5293
+ msgid "Show Results For:"
5294
  msgstr ""
5295
 
5296
+ #: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:8
5297
+ msgid "Keyphrase"
5298
  msgstr ""
5299
 
5300
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:291
5301
+ msgid "Volume"
5302
  msgstr ""
5303
 
5304
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:292
5305
+ msgid "Trend"
5306
  msgstr ""
5307
 
5308
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:293
5309
+ msgid "Add Keyphrase"
5310
  msgstr ""
5311
 
5312
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:294
5313
+ msgid "Remove Keyphrase"
5314
  msgstr ""
5315
 
5316
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:295
5317
+ msgid "No results"
 
 
 
5318
  msgstr ""
5319
 
5320
+ # Translators: 1 - Plugin short name + Pro "AIOSEO Pro", 2 - Semrush, 3 - Link to learn more.
5321
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:297
5322
+ msgid ""
5323
+ "Analyzing your content with %1$s keywords is only available to licensed "
5324
+ "%2$s users. %3$s"
5325
  msgstr ""
5326
 
5327
+ # Translators: 1 - Plugin short name "AIOSEO", 2 - Semrush.
5328
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:299
5329
+ msgid ""
5330
+ "%1$s integrates directly with %2$s to provide you with actionable "
5331
+ "keyphrases to help you write better content."
5332
  msgstr ""
5333
 
5334
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:300
5335
+ msgid "To use this feature, first add a focus keyphrase."
5336
  msgstr ""
5337
 
5338
+ # Translators: 1 - Semrush.
5339
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:304
5340
+ msgid "Get Additional Keyphrases with %1$s!"
5341
  msgstr ""
5342
 
5343
+ # Translators: 1 - Opening link tag, 2 - Closing link tag, 3 - Semrush.
5344
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:306
5345
+ msgid "%1$sA valid license key is required%2$s in order to connect with %3$s."
5346
  msgstr ""
5347
 
5348
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:325
5349
+ msgid "You have exceeded the limit for requests. Please try again later."
 
5350
  msgstr ""
5351
 
5352
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:328
5353
+ msgid "An error occurred while fetching keyphrases. Please try again later."
 
 
5354
  msgstr ""
5355
 
5356
+ #: src/vue/pages/search-appearance/router/paths.js:19
5357
+ msgid "Global Settings"
 
 
5358
  msgstr ""
5359
 
5360
+ #: src/vue/pages/seo-analysis/router/paths.js:19
5361
+ msgid "SEO Audit Checklist"
5362
  msgstr ""
5363
 
5364
+ #: src/vue/pages/seo-analysis/router/paths.js:28
5365
+ msgid "Analyze Competitor Site"
 
 
5366
  msgstr ""
5367
 
5368
+ #: src/vue/pages/tools/views/RobotsEditor.vue:240
5369
+ msgid "Robots.txt Editor"
5370
  msgstr ""
5371
 
5372
+ #: src/vue/pages/tools/views/HtaccessEditor.vue:41
5373
+ msgid ".htaccess Editor"
5374
  msgstr ""
5375
 
5376
+ #: src/vue/pages/tools/router/paths.js:46
5377
+ msgid "Import/Export"
5378
  msgstr ""
5379
 
5380
+ #: src/vue/pages/tools/router/paths.js:55
5381
+ msgid "Database Tools"
 
 
5382
  msgstr ""
5383
 
5384
+ #: src/vue/pages/tools/router/paths.js:64
5385
+ msgid "System Status"
5386
  msgstr ""
5387
 
5388
+ #: src/vue/pages/about/router/paths.js:19
5389
+ msgid "About Us"
5390
  msgstr ""
5391
 
5392
+ #: src/vue/pages/about/router/paths.js:28
5393
+ msgid "Getting Started"
 
5394
  msgstr ""
5395
 
5396
+ #: src/vue/pages/about/router/paths.js:37
5397
+ msgid "Lite vs. Pro"
 
 
 
5398
  msgstr ""
5399
 
5400
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:104
5401
+ msgid "Ascending"
 
5402
  msgstr ""
5403
 
5404
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:105
5405
+ msgid "Descending"
 
5406
  msgstr ""
5407
 
5408
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:108
5409
+ msgid "Publish Date"
 
5410
  msgstr ""
5411
 
5412
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:109
5413
+ msgid "Last Updated"
 
 
5414
  msgstr ""
5415
 
5416
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:110
5417
+ msgid "Alphabetical"
5418
  msgstr ""
5419
 
5420
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:111
5421
+ msgid "Post/Term ID"
 
5422
  msgstr ""
5423
 
5424
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:119
5425
+ msgid "Show Labels"
5426
  msgstr ""
5427
 
5428
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:120
5429
+ msgid "Show Publication Date"
5430
  msgstr ""
5431
 
5432
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:122
5433
+ msgid "Compact Archives"
5434
  msgstr ""
5435
 
5436
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:123
5437
+ msgid "Sort Order"
5438
  msgstr ""
5439
 
5440
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:124
5441
+ msgid "Sort Direction"
 
5442
  msgstr ""
5443
 
5444
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:441
5445
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:125
5446
+ msgid "Exclude Posts / Pages"
5447
  msgstr ""
5448
 
5449
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:442
5450
+ #: src/vue/standalone/HtmlSitemapSidebar.vue:126
5451
+ msgid "Exclude Terms"
5452
  msgstr ""
5453
 
5454
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:90
5455
+ msgid "Block Bad Bots using HTTP"
 
 
 
 
5456
  msgstr ""
5457
 
5458
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:91
5459
+ msgid "Block Referral Spam using HTTP"
5460
  msgstr ""
5461
 
5462
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:92
5463
+ msgid "Track Blocked Bots"
5464
  msgstr ""
5465
 
5466
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:93
5467
+ msgid "Use Custom Blocklists"
5468
  msgstr ""
5469
 
5470
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:94
5471
+ msgid "User Agent Blocklist"
5472
  msgstr ""
5473
 
5474
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:95
5475
+ msgid "Referer Blocklist"
5476
  msgstr ""
5477
 
5478
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:96
5479
+ msgid "Blocked Bots Log"
5480
  msgstr ""
5481
 
5482
+ # Translators: 1 - The location of the log file.
5483
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:98
5484
+ msgid "The log for the blocked bots is located here: %1$s"
5485
  msgstr ""
5486
 
5487
+ #: src/vue/pages/tools/views/SystemStatus.vue:115
5488
+ msgid "System Status Info"
5489
  msgstr ""
5490
 
5491
+ #: src/vue/pages/tools/views/SystemStatus.vue:116
5492
+ msgid "Download System Info File"
5493
  msgstr ""
5494
 
5495
+ #: src/vue/pages/tools/views/SystemStatus.vue:117
5496
+ msgid "Copy to Clipboard"
 
5497
  msgstr ""
5498
 
5499
+ #: src/vue/pages/tools/views/SystemStatus.vue:118
5500
+ msgid "Email Debug Information"
 
5501
  msgstr ""
5502
 
5503
+ #: src/vue/pages/tools/views/SystemStatus.vue:119
5504
+ msgid "Submit"
5505
  msgstr ""
5506
 
5507
+ #: src/vue/pages/tools/views/SystemStatus.vue:120
5508
+ msgid "WordPress"
5509
  msgstr ""
5510
 
5511
+ #: src/vue/pages/tools/views/SystemStatus.vue:121
5512
+ msgid "Server Info"
 
 
5513
  msgstr ""
5514
 
5515
+ #: src/vue/pages/tools/views/SystemStatus.vue:122
5516
+ msgid "Active Theme"
 
 
5517
  msgstr ""
5518
 
5519
+ #: src/vue/pages/tools/views/SystemStatus.vue:123
5520
+ msgid "Must-Use Plugins"
 
5521
  msgstr ""
5522
 
5523
+ #: src/vue/pages/tools/views/SystemStatus.vue:124
5524
+ msgid "Active Plugins"
5525
  msgstr ""
5526
 
5527
+ #: src/vue/pages/tools/views/SystemStatus.vue:125
5528
+ msgid "Inactive Plugins"
5529
  msgstr ""
5530
 
5531
+ # Translators: 1 - The plugin short name ("AIOSEO").
5532
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:82
5533
+ msgid "Import / Restore %1$s Settings"
 
 
 
5534
  msgstr ""
5535
 
5536
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:83
5537
+ msgid "Import from a JSON or INI file..."
5538
  msgstr ""
5539
 
5540
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:84
5541
+ msgid "Choose a File"
5542
  msgstr ""
5543
 
5544
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:85
5545
+ msgid "Imported settings will overwrite existing settings and will not be merged."
 
 
 
5546
  msgstr ""
5547
 
5548
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:86
5549
+ msgid "Import"
 
 
 
5550
  msgstr ""
5551
 
5552
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:87
5553
+ msgid "A JSON or INI file is required to import settings."
5554
  msgstr ""
5555
 
5556
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:88
5557
+ msgid "Success! Your settings have been imported."
5558
  msgstr ""
5559
 
5560
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:89
5561
+ msgid ""
5562
+ "There was an error importing your settings. Please make sure you are "
5563
+ "uploading the correct file or it is in the proper format."
5564
  msgstr ""
5565
 
5566
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:136
5567
+ msgid "Backup Settings"
5568
  msgstr ""
5569
 
5570
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:137
5571
+ msgid "Are you sure you want to delete this backup?"
5572
  msgstr ""
5573
 
5574
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:138
5575
+ msgid "Are you sure you want to restore this backup?"
 
 
5576
  msgstr ""
5577
 
5578
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:139
5579
+ msgid "Yes, I want to delete this backup"
5580
  msgstr ""
5581
 
5582
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:140
5583
+ msgid "Yes, I want to restore this backup"
 
 
 
 
5584
  msgstr ""
5585
 
5586
+ #: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:23
5587
+ #: src/vue/pages/redirects/views/pro/Redirects.vue:224
5588
+ msgid "No, I changed my mind"
5589
  msgstr ""
5590
 
5591
+ #: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:21
5592
+ #: src/vue/pages/redirects/views/pro/Redirects.vue:221
5593
+ msgid "This action cannot be undone."
5594
  msgstr ""
5595
 
5596
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:143
5597
+ msgid "You have no saved backups."
5598
  msgstr ""
5599
 
5600
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:144
5601
+ msgid "Create Backup"
5602
  msgstr ""
5603
 
5604
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:145
5605
+ msgid "Restore"
5606
  msgstr ""
5607
 
5608
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:147
5609
+ msgid "Success! The backup was deleted."
5610
  msgstr ""
5611
 
5612
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:148
5613
+ msgid "Success! The backup was restored."
5614
  msgstr ""
5615
 
5616
+ # Translators: 1 Date, 2 - Timestamp.
5617
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:211
5618
+ msgid "%1$s at %2$s"
5619
  msgstr ""
5620
 
5621
+ #: src/vue/pages/tools/views/partials/ExportSettings.vue:118
5622
+ msgid "Export Settings"
5623
  msgstr ""
5624
 
5625
+ #: src/vue/pages/tools/views/partials/ExportSettings.vue:119
5626
+ msgid "Export All Settings"
5627
  msgstr ""
5628
 
5629
+ #: src/vue/pages/tools/views/partials/ExportSettings.vue:120
5630
+ msgid "Export All Post Types"
 
 
 
 
 
 
 
5631
  msgstr ""
5632
 
5633
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:122
5634
+ msgid "Import Settings From Other Plugins"
5635
  msgstr ""
5636
 
5637
+ # Translators: 1 - The plugin short name ("AIOSEO").
5638
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:124
5639
+ msgid "Choose a plugin to import SEO data directly into %1$s."
5640
  msgstr ""
5641
 
5642
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:125
5643
+ msgid "Select a plugin..."
5644
  msgstr ""
5645
 
5646
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:127
5647
+ msgid "All Settings"
5648
  msgstr ""
5649
 
5650
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:128
5651
+ msgid "not installed"
 
 
5652
  msgstr ""
5653
 
5654
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:142
5655
+ msgid "SEO Settings"
5656
  msgstr ""
5657
 
5658
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:143
5659
+ msgid "Post Meta"
5660
  msgstr ""
5661
 
5662
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:147
5663
+ msgid "Term Meta"
5664
  msgstr ""
5665
 
5666
+ # Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO").
5667
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:175
5668
+ msgid "%1$s was successfully imported!"
5669
  msgstr ""
5670
 
5671
+ # Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO").
5672
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:179
5673
+ msgid "An error occurred while importing %1$s. Please try again."
 
5674
  msgstr ""
5675
 
5676
+ # Translators: 1 - The name of the plugin (e.g. "Yoast SEO"), 2 - The version of the plugin (e.g. "10.2.3").
5677
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:222
5678
  msgid ""
5679
+ "We do not support importing from the currently installed version of %1$s "
5680
+ "(%2$s). Please upgrade to the latest version and try again."
 
5681
  msgstr ""
5682
 
5683
+ #: src/vue/pages/search-appearance/views/Advanced.vue:377
5684
+ msgid "Global Robots Meta"
5685
  msgstr ""
5686
 
5687
+ #: src/vue/pages/search-appearance/views/Advanced.vue:378
5688
+ msgid "Noindex Empty Category and Tag Archives"
 
 
5689
  msgstr ""
5690
 
5691
+ #: src/vue/pages/search-appearance/views/Advanced.vue:379
5692
+ msgid "Remove Stopwords from Permalinks"
 
5693
  msgstr ""
5694
 
5695
+ #: src/vue/pages/search-appearance/views/Advanced.vue:380
5696
+ msgid "Remove Category Base Prefix"
5697
  msgstr ""
5698
 
5699
+ #: src/vue/pages/search-appearance/views/Advanced.vue:383
5700
+ msgid "Automatically Add Missing Image Alt / Title Tags"
 
 
 
5701
  msgstr ""
5702
 
5703
+ #: src/vue/pages/search-appearance/views/Advanced.vue:386
5704
+ msgid "Autogenerate Descriptions"
5705
  msgstr ""
5706
 
5707
+ #: src/vue/pages/search-appearance/views/Advanced.vue:387
5708
+ msgid "Use Content for Autogenerated Descriptions"
5709
  msgstr ""
5710
 
5711
+ #: src/vue/pages/search-appearance/views/Advanced.vue:388
5712
+ msgid "Run Shortcodes in Description"
 
5713
  msgstr ""
5714
 
5715
+ #: src/vue/pages/search-appearance/views/Advanced.vue:389
5716
+ msgid "No Pagination for Canonical URLs"
 
5717
  msgstr ""
5718
 
5719
+ #: src/vue/pages/search-appearance/views/Advanced.vue:390
5720
+ msgid "Use Meta Keywords"
 
5721
  msgstr ""
5722
 
5723
+ #: src/vue/pages/search-appearance/views/Advanced.vue:391
5724
+ msgid ""
5725
+ "This option allows you to toggle the use of Meta Keywords throughout the "
5726
+ "whole of the site."
5727
  msgstr ""
5728
 
5729
+ #: src/vue/pages/search-appearance/views/Advanced.vue:392
5730
+ msgid "Use Categories for Meta Keywords"
5731
  msgstr ""
5732
 
5733
+ #: src/vue/pages/search-appearance/views/Advanced.vue:393
5734
+ msgid ""
5735
+ "Check this if you want your categories for a given post used as the Meta "
5736
+ "Keywords for this post (in addition to any keywords you specify on the Edit "
5737
+ "Post screen)."
5738
  msgstr ""
5739
 
5740
+ #: src/vue/pages/search-appearance/views/Advanced.vue:394
5741
+ msgid "Use Tags for Meta Keywords"
 
5742
  msgstr ""
5743
 
5744
+ #: src/vue/pages/search-appearance/views/Advanced.vue:395
5745
+ msgid ""
5746
+ "Check this if you want your tags for a given post used as the Meta Keywords "
5747
+ "for this post (in addition to any keywords you specify on the Edit Post "
5748
+ "screen)."
5749
  msgstr ""
5750