All in One SEO Pack - Version 4.0.9

Version Description

This update adds major improvements and bugfixes.

Download this release

Release Info

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

Code changes from version 4.0.8 to 4.0.9

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 65 million downloads since 2007.
6
  * Author: All in One SEO Team
7
  * Author URI: https://aioseo.com/
8
- * Version: 4.0.8
9
  * Text Domain: all-in-one-seo-pack
10
  * Domain Path: /i18n/
11
  *
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 65 million downloads since 2007.
6
  * Author: All in One SEO Team
7
  * Author URI: https://aioseo.com/
8
+ * Version: 4.0.9
9
  * Text Domain: all-in-one-seo-pack
10
  * Domain Path: /i18n/
11
  *
app/Common/Admin/Admin.php CHANGED
@@ -115,7 +115,7 @@ class Admin {
115
  'aioseo-monsterinsights' => [
116
  'menu_title' => esc_html__( 'Analytics', 'all-in-one-seo-pack' ),
117
  'capability' => apply_filters( 'aioseo_manage_seo', 'aioseo_manage_seo' ),
118
- 'parent' => $this->pageSlug
119
  ],
120
  'aioseo-about' => [
121
  'menu_title' => esc_html__( 'About Us', 'all-in-one-seo-pack' ),
115
  'aioseo-monsterinsights' => [
116
  'menu_title' => esc_html__( 'Analytics', 'all-in-one-seo-pack' ),
117
  'capability' => apply_filters( 'aioseo_manage_seo', 'aioseo_manage_seo' ),
118
+ 'parent' => 'aioseo-monsterinsights'
119
  ],
120
  'aioseo-about' => [
121
  'menu_title' => esc_html__( 'About Us', 'all-in-one-seo-pack' ),
app/Common/Admin/Notices/Migration.php CHANGED
@@ -21,7 +21,8 @@ class Migration {
21
  return;
22
  }
23
 
24
- $this->showNotice();
 
25
  }
26
 
27
  /**
21
  return;
22
  }
23
 
24
+ // Disable the notice for now since it is almost unnecessary. We can come back and revisit this in the future.
25
+ // $this->showNotice();
26
  }
27
 
28
  /**
app/Common/Main/Head.php CHANGED
@@ -62,6 +62,10 @@ class Head {
62
  * @return void
63
  */
64
  public function registerTitleHooks() {
 
 
 
 
65
  add_filter( 'pre_get_document_title', [ $this, 'getTitle' ], 99999 );
66
  add_filter( 'wp_title', [ $this, 'getTitle' ], 99999 );
67
  if ( ! current_theme_supports( 'title-tag' ) ) {
@@ -123,15 +127,15 @@ class Head {
123
  public function rewriteTitle() {
124
  $content = ob_get_clean();
125
  $split = preg_split( '#</head>#', $content );
126
- $head = $split[0];
127
  $body = $split[1];
128
 
129
  // Remove all existing title tags.
130
  $head = preg_replace( '#<title.*?\/title>#', '', $head );
131
 
132
  // Add the new title tag to our own comment block.
133
- $pageTitle = $this->getTitle();
134
- $head = preg_replace( '#(<!--\sAll\sin\sOne\sSEO[a-zA-Z\s0-9.]+\s-->)#', "$1\r\n\t\t<title>$pageTitle</title>", $head, 1 );
135
 
136
  $content = $head . $body;
137
  echo $content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
62
  * @return void
63
  */
64
  public function registerTitleHooks() {
65
+ if ( apply_filters( 'aioseo_disable_title_rewrites', false ) ) {
66
+ return;
67
+ }
68
+
69
  add_filter( 'pre_get_document_title', [ $this, 'getTitle' ], 99999 );
70
  add_filter( 'wp_title', [ $this, 'getTitle' ], 99999 );
71
  if ( ! current_theme_supports( 'title-tag' ) ) {
127
  public function rewriteTitle() {
128
  $content = ob_get_clean();
129
  $split = preg_split( '#</head>#', $content );
130
+ $head = $split[0] . '</head>';
131
  $body = $split[1];
132
 
133
  // Remove all existing title tags.
134
  $head = preg_replace( '#<title.*?\/title>#', '', $head );
135
 
136
  // Add the new title tag to our own comment block.
137
+ $pageTitle = aioseo()->helpers->escapeRegexReplacement( $this->getTitle() );
138
+ $head = preg_replace( '#(<!--\sAll\sin\sOne\sSEO[a-zA-Z\s0-9.]+\s-->)#', "$1\r\n\t\t<title>$pageTitle</title>", $head, 1 );
139
 
140
  $content = $head . $body;
141
  echo $content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
app/Common/Migration/Meta.php CHANGED
@@ -47,7 +47,7 @@ class Meta {
47
  * @return void
48
  */
49
  public function migratePostMeta() {
50
- $postsPerAction = 100;
51
  $publicPostTypes = implode( "', '", aioseo()->helpers->getPublicPostTypes( true ) );
52
  $timeStarted = gmdate( 'Y-m-d H:i:s', get_transient( 'aioseo_v3_migration_in_progress_posts' ) );
53
 
@@ -79,7 +79,7 @@ class Meta {
79
 
80
  if ( count( $postsToMigrate ) === $postsPerAction ) {
81
  try {
82
- as_schedule_single_action( time() + 5, 'aioseo_migrate_post_meta', [], 'aioseo' );
83
  } catch ( \Exception $e ) {
84
  // Do nothing.
85
  }
47
  * @return void
48
  */
49
  public function migratePostMeta() {
50
+ $postsPerAction = 50;
51
  $publicPostTypes = implode( "', '", aioseo()->helpers->getPublicPostTypes( true ) );
52
  $timeStarted = gmdate( 'Y-m-d H:i:s', get_transient( 'aioseo_v3_migration_in_progress_posts' ) );
53
 
79
 
80
  if ( count( $postsToMigrate ) === $postsPerAction ) {
81
  try {
82
+ as_schedule_single_action( time() + 30, 'aioseo_migrate_post_meta', [], 'aioseo' );
83
  } catch ( \Exception $e ) {
84
  // Do nothing.
85
  }
app/Common/Migration/Sitemap.php CHANGED
@@ -184,6 +184,14 @@ class Sitemap {
184
  return;
185
  }
186
 
 
 
 
 
 
 
 
 
187
  $publicPostTypes = aioseo()->helpers->getPublicPostTypes( true );
188
  $publicTaxonomies = aioseo()->helpers->getPublicTaxonomies( true );
189
 
184
  return;
185
  }
186
 
187
+ if ( ! is_array( $this->oldOptions['modules']['aiosp_sitemap_options']['aiosp_sitemap_posttypes'] ) ) {
188
+ $this->oldOptions['modules']['aiosp_sitemap_options']['aiosp_sitemap_posttypes'] = [];
189
+ }
190
+
191
+ if ( ! is_array( $this->oldOptions['modules']['aiosp_sitemap_options']['aiosp_sitemap_taxonomies'] ) ) {
192
+ $this->oldOptions['modules']['aiosp_sitemap_options']['aiosp_sitemap_taxonomies'] = [];
193
+ }
194
+
195
  $publicPostTypes = aioseo()->helpers->getPublicPostTypes( true );
196
  $publicTaxonomies = aioseo()->helpers->getPublicTaxonomies( true );
197
 
app/Common/Sitemap/Content.php CHANGED
@@ -521,7 +521,7 @@ class Content {
521
  public function rss() {
522
  $posts = aioseo()->sitemap->query->posts(
523
  aioseo()->sitemap->helpers->includedPostTypes(),
524
- [ 'orderBy' => '`p`.`post_modified_gmt` ASC' ]
525
  );
526
 
527
  if ( ! count( $posts ) ) {
521
  public function rss() {
522
  $posts = aioseo()->sitemap->query->posts(
523
  aioseo()->sitemap->helpers->includedPostTypes(),
524
+ [ 'orderBy' => '`p`.`post_modified_gmt` DESC' ]
525
  );
526
 
527
  if ( ! count( $posts ) ) {
app/Common/Social/Output.php CHANGED
@@ -25,7 +25,7 @@ class Output {
25
  return;
26
  }
27
 
28
- return $this->getMetaHelper();
29
  }
30
 
31
  /**
25
  return;
26
  }
27
 
28
+ return apply_filters( 'aioseo_social_meta_tags', $this->getMetaHelper() );
29
  }
30
 
31
  /**
app/Common/Utils/Access.php CHANGED
@@ -51,7 +51,7 @@ class Access {
51
  $allRoles = $wpRoles->roles;
52
  foreach ( $allRoles as $key => $wpRole ) {
53
  $role = get_role( $key );
54
- if ( $role->has_cap( 'install_plugins' ) ) {
55
  $adminRoles[ $key ] = $key;
56
  }
57
  }
@@ -151,6 +151,10 @@ class Access {
151
  return true;
152
  }
153
 
 
 
 
 
154
  return false;
155
  }
156
 
@@ -214,6 +218,33 @@ class Access {
214
  return false;
215
  }
216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  /**
218
  * Checks if the passed in role can manage AIOSEO.
219
  *
51
  $allRoles = $wpRoles->roles;
52
  foreach ( $allRoles as $key => $wpRole ) {
53
  $role = get_role( $key );
54
+ if ( $role->has_cap( 'install_plugins' ) || $role->has_cap( 'publish_posts' ) ) {
55
  $adminRoles[ $key ] = $key;
56
  }
57
  }
151
  return true;
152
  }
153
 
154
+ if ( $this->canPublish( $checkRole ) && false !== strpos( $capability, 'aioseo_page_' ) ) {
155
+ return true;
156
+ }
157
+
158
  return false;
159
  }
160
 
218
  return false;
219
  }
220
 
221
+ /**
222
+ * Check if the passed in role can publish posts.
223
+ *
224
+ * @since 4.0.9
225
+ *
226
+ * @param string $role The role to check.
227
+ * @return boolean True if the role can publish.
228
+ */
229
+ protected function canPublish( $role ) {
230
+ if ( empty( $role ) ) {
231
+ return current_user_can( 'publish_posts' );
232
+ }
233
+
234
+ $wpRoles = wp_roles();
235
+ $allRoles = $wpRoles->roles;
236
+ foreach ( $allRoles as $key => $wpRole ) {
237
+ if ( $key === $role ) {
238
+ $r = get_role( $key );
239
+ if ( $r->has_cap( 'publish_posts' ) ) {
240
+ return true;
241
+ }
242
+ }
243
+ }
244
+
245
+ return false;
246
+ }
247
+
248
  /**
249
  * Checks if the passed in role can manage AIOSEO.
250
  *
app/Common/Utils/Helpers.php CHANGED
@@ -512,24 +512,24 @@ class Helpers {
512
  'monsterinsights' => admin_url( 'admin.php?page=aioseo-monsterinsights' )
513
  ]
514
  ],
515
- 'backups' => array_reverse( aioseo()->backup->all() ),
516
- 'importers' => aioseo()->importExport->plugins(),
517
  'data' => [
518
  'server' => [
519
- 'apache' => $this->isApache(),
520
- 'nginx' => $this->isNginx()
521
  ],
522
  'robots' => [
523
- 'defaultRules' => $page ? aioseo()->robotsTxt->getDefaultRules() : [],
524
- 'hasPhysicalRobots' => aioseo()->robotsTxt->hasPhysicalRobotsTxt(),
525
- 'rewriteExists' => aioseo()->robotsTxt->rewriteRulesExist(),
526
- 'sitemapUrls' => aioseo()->sitemap->helpers->getSitemapUrls()
527
  ],
528
  'logSizes' => [
529
- 'badBotBlockerLog' => $this->convertFileSize( aioseo()->badBotBlocker->getLogSize() )
530
  ],
531
- 'status' => Tools\SystemStatus::getSystemStatusInfo(),
532
- 'htaccess' => aioseo()->htaccess->getContents(),
533
  'multisite' => is_multisite(),
534
  'network' => is_network_admin(),
535
  'mainSite' => is_main_site(),
@@ -676,7 +676,8 @@ class Helpers {
676
  }
677
 
678
  if ( 'setup-wizard' === $page ) {
679
- $data['users'] = $this->getSiteUsers( [ 'administrator', 'editor', 'author' ] );
 
680
  }
681
 
682
  if ( 'search-appearance' === $page ) {
@@ -696,6 +697,26 @@ class Helpers {
696
  ];
697
  }
698
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
699
  return $data;
700
  }
701
 
@@ -1064,6 +1085,12 @@ class Helpers {
1064
 
1065
  $url = $this->maybeRemoveTrailingSlash( $url );
1066
 
 
 
 
 
 
 
1067
  $searchTerm = get_query_var( 's' );
1068
  if ( is_search() && ! empty( $searchTerm ) ) {
1069
  $url = add_query_arg( 's', $searchTerm, $url );
@@ -1249,6 +1276,10 @@ class Helpers {
1249
  * @return WP_Filesystem The filesystem object.
1250
  */
1251
  public function wpfs( $args = [] ) {
 
 
 
 
1252
  require_once( ABSPATH . 'wp-admin/includes/file.php' );
1253
  WP_Filesystem( $args );
1254
 
512
  'monsterinsights' => admin_url( 'admin.php?page=aioseo-monsterinsights' )
513
  ]
514
  ],
515
+ 'backups' => [],
516
+ 'importers' => [],
517
  'data' => [
518
  'server' => [
519
+ 'apache' => null,
520
+ 'nginx' => null
521
  ],
522
  'robots' => [
523
+ 'defaultRules' => [],
524
+ 'hasPhysicalRobots' => null,
525
+ 'rewriteExists' => null,
526
+ 'sitemapUrls' => []
527
  ],
528
  'logSizes' => [
529
+ 'badBotBlockerLog' => null
530
  ],
531
+ 'status' => [],
532
+ 'htaccess' => '',
533
  'multisite' => is_multisite(),
534
  'network' => is_network_admin(),
535
  'mainSite' => is_main_site(),
676
  }
677
 
678
  if ( 'setup-wizard' === $page ) {
679
+ $data['users'] = $this->getSiteUsers( [ 'administrator', 'editor', 'author' ] );
680
+ $data['importers'] = aioseo()->importExport->plugins();
681
  }
682
 
683
  if ( 'search-appearance' === $page ) {
697
  ];
698
  }
699
 
700
+ if ( 'tools' === $page ) {
701
+ $data['backups'] = array_reverse( aioseo()->backup->all() );
702
+ $data['importers'] = aioseo()->importExport->plugins();
703
+ $data['data']['server'] = [
704
+ 'apache' => $this->isApache(),
705
+ 'nginx' => $this->isNginx()
706
+ ];
707
+ $data['data']['robots'] = [
708
+ 'defaultRules' => $page ? aioseo()->robotsTxt->getDefaultRules() : [],
709
+ 'hasPhysicalRobots' => aioseo()->robotsTxt->hasPhysicalRobotsTxt(),
710
+ 'rewriteExists' => aioseo()->robotsTxt->rewriteRulesExist(),
711
+ 'sitemapUrls' => aioseo()->sitemap->helpers->getSitemapUrls()
712
+ ];
713
+ $data['data']['logSizes'] = [
714
+ 'badBotBlockerLog' => $this->convertFileSize( aioseo()->badBotBlocker->getLogSize() )
715
+ ];
716
+ $data['data']['status'] = Tools\SystemStatus::getSystemStatusInfo();
717
+ $data['data']['htaccess'] = aioseo()->htaccess->getContents();
718
+ }
719
+
720
  return $data;
721
  }
722
 
1085
 
1086
  $url = $this->maybeRemoveTrailingSlash( $url );
1087
 
1088
+ // Get rid of /amp at the end of the URL.
1089
+ if ( ! apply_filters( 'aioseo_disable_canonical_url_amp', false ) ) {
1090
+ $url = preg_replace( '/\/amp$/', '', $url );
1091
+ $url = preg_replace( '/\/amp\/$/', '/', $url );
1092
+ }
1093
+
1094
  $searchTerm = get_query_var( 's' );
1095
  if ( is_search() && ! empty( $searchTerm ) ) {
1096
  $url = add_query_arg( 's', $searchTerm, $url );
1276
  * @return WP_Filesystem The filesystem object.
1277
  */
1278
  public function wpfs( $args = [] ) {
1279
+ if ( ! defined( 'FS_METHOD' ) ) {
1280
+ define( 'FS_METHOD', 'direct' );
1281
+ }
1282
+
1283
  require_once( ABSPATH . 'wp-admin/includes/file.php' );
1284
  WP_Filesystem( $args );
1285
 
app/Common/Utils/Tags.php CHANGED
@@ -865,7 +865,16 @@ class Tags {
865
  case 'post_excerpt_only':
866
  return empty( $postId ) ? ( $sampleData ? __( 'Sample excerpt from a page/post.', 'all-in-one-seo-pack' ) : '' ) : $post->post_excerpt;
867
  case 'post_excerpt':
868
- return empty( $postId ) ? ( $sampleData ? __( 'Sample excerpt from a page/post.', 'all-in-one-seo-pack' ) : '' ) : get_the_excerpt( $post );
 
 
 
 
 
 
 
 
 
869
  case 'post_content':
870
  return empty( $postId ) ? ( $sampleData ? __( 'An example of content from your page/post.', 'all-in-one-seo-pack' ) : '' ) : aioseo()->helpers->getContent( $post );
871
  case 'category':
@@ -907,8 +916,8 @@ class Tags {
907
  case 'tagline':
908
  return aioseo()->helpers->decodeHtmlEntities( get_bloginfo( 'description' ) );
909
  case 'archive_title':
910
- $title = wp_strip_all_tags( get_the_archive_title() );
911
- return $sampleData ? __( 'Sample Archive Title', 'all-in-one-seo-pack' ) : $title;
912
  case 'author_link':
913
  return '<a href="' . esc_url( get_author_posts_url( $author->ID ) ) . '">' . esc_html( $author->display_name ) . '</a>';
914
  case 'author_link_alt':
865
  case 'post_excerpt_only':
866
  return empty( $postId ) ? ( $sampleData ? __( 'Sample excerpt from a page/post.', 'all-in-one-seo-pack' ) : '' ) : $post->post_excerpt;
867
  case 'post_excerpt':
868
+ if ( empty( $postId ) ) {
869
+ return $sampleData ? __( 'Sample excerpt from a page/post.', 'all-in-one-seo-pack' ) : '';
870
+ }
871
+ try {
872
+ $excerpt = is_admin() ? $post->post_excerpt : get_the_excerpt( $post );
873
+ } catch ( \Exception $e ) {
874
+ $excerpt = '';
875
+ }
876
+
877
+ return $excerpt;
878
  case 'post_content':
879
  return empty( $postId ) ? ( $sampleData ? __( 'An example of content from your page/post.', 'all-in-one-seo-pack' ) : '' ) : aioseo()->helpers->getContent( $post );
880
  case 'category':
916
  case 'tagline':
917
  return aioseo()->helpers->decodeHtmlEntities( get_bloginfo( 'description' ) );
918
  case 'archive_title':
919
+ $title = is_post_type_archive() ? post_type_archive_title( '', false ) : get_the_archive_title();
920
+ return $sampleData ? __( 'Sample Archive Title', 'all-in-one-seo-pack' ) : wp_strip_all_tags( $title );
921
  case 'author_link':
922
  return '<a href="' . esc_url( get_author_posts_url( $author->ID ) ) . '">' . esc_html( $author->display_name ) . '</a>';
923
  case 'author_link_alt':
dist/Lite/assets/css/aioseo-admin-bar.css CHANGED
@@ -1,3 +1,3 @@
1
- /*! ! built on Monday, December 21st 2020, 2:25:29 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-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}@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, December 22nd 2020, 2:24:58 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-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}@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/js/aioseo-admin-bar.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! ! built on Monday, December 21st 2020, 2:25:29 pm */
2
  !function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=60)}({60:function(e,t,r){"use strict";r.r(t)}});
1
+ /*! ! built on Tuesday, December 22nd 2020, 2:24:58 pm */
2
  !function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=60)}({60:function(e,t,r){"use strict";r.r(t)}});
dist/Lite/assets/js/aioseo-admin-bar.js.gz CHANGED
Binary file
dist/Lite/assets/js/plugins.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! ! built on Monday, December 21st 2020, 2:25:29 pm */
2
  !function(t){var n={};function r(e){if(n[e])return n[e].exports;var o=n[e]={i:e,l:!1,exports:{}};return t[e].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=t,r.c=n,r.d=function(t,n,e){r.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:e})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,n){if(1&n&&(t=r(t)),8&n)return t;if(4&n&&"object"==typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(r.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&n&&"string"!=typeof t)for(var o in t)r.d(e,o,function(n){return t[n]}.bind(null,o));return e},r.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(n,"a",n),n},r.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},r.p="",r(r.s=26)}([function(t,n,r){(function(n){function r(t){return t&&t.Math==Math&&t}t.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n&&n)||Function("return this")()}).call(this,r(29))},function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,n){var r={}.hasOwnProperty;t.exports=function(t,n){return r.call(t,n)}},function(t,n,r){r=r(1),t.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},function(t,n){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,n,r){var e=r(3),o=r(15),i=r(9);t.exports=e?function(t,n,r){return o.f(t,n,i(1,r))}:function(t,n,r){return t[n]=r,t}},function(t,n,r){var e=r(10),o=r(12);t.exports=function(t){return e(o(t))}},function(t,n,r){var e=r(0),o=r(5);t.exports=function(t,n){try{o(e,t,n)}catch(r){e[t]=n}return n}},function(t,n,r){var e=r(3),o=r(30),i=r(9),u=r(6),c=r(13),f=r(2),a=r(14),s=Object.getOwnPropertyDescriptor;n.f=e?s:function(t,n){if(t=u(t),n=c(n,!0),a)try{return s(t,n)}catch(t){}if(f(t,n))return i(!o.f.call(t,n),t[n])}},function(t,n){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},function(t,n,r){var e=r(1),o=r(11),i="".split;t.exports=e((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,n){var r={}.toString;t.exports=function(t){return r.call(t).slice(8,-1)}},function(t,n){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,n,r){var e=r(4);t.exports=function(t,n){if(!e(t))return t;var r,o;if(n&&"function"==typeof(r=t.toString)&&!e(o=r.call(t)))return o;if("function"==typeof(r=t.valueOf)&&!e(o=r.call(t)))return o;if(!n&&"function"==typeof(r=t.toString)&&!e(o=r.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,n,r){var e=r(3),o=r(1),i=r(31);t.exports=!e&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},function(t,n,r){var e=r(3),o=r(14),i=r(16),u=r(13),c=Object.defineProperty;n.f=e?c:function(t,n,r){if(i(t),n=u(n,!0),i(r),o)try{return c(t,n,r)}catch(t){}if("get"in r||"set"in r)throw TypeError("Accessors not supported");return"value"in r&&(t[n]=r.value),t}},function(t,n,r){var e=r(4);t.exports=function(t){if(!e(t))throw TypeError(String(t)+" is not an object");return t}},function(t,n,r){r=r(18);var e=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(t){return e.call(t)}),t.exports=r.inspectSource},function(t,n,r){var e=r(0),o=r(7);r=e[r="__core-js_shared__"]||o(r,{});t.exports=r},function(t,n,r){var e=r(36),o=r(18);(t.exports=function(t,n){return o[t]||(o[t]=void 0!==n?n:{})})("versions",[]).push({version:"3.6.5",mode:e?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},function(t,n){var r=0,e=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++r+e).toString(36)}},function(t,n){t.exports={}},function(t,n,r){var e=r(23),o=Math.min;t.exports=function(t){return 0<t?o(e(t),9007199254740991):0}},function(t,n){var r=Math.ceil,e=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(0<t?e:r)(t)}},function(t,n,r){"use strict";var e=r(48).forEach,o=r(56);r=r(57),o=o("forEach"),r=r("forEach");t.exports=o&&r?[].forEach:function(t,n){return e(this,t,1<arguments.length?n:void 0)}},function(t,n,r){r=r(1),t.exports=!!Object.getOwnPropertySymbols&&!r((function(){return!String(Symbol())}))},function(t,n,r){r(27),r(58),new(function(){"use strict";function t(){this.selector=document.querySelector('tr[data-plugin="'+window.aioseoPlugins.basename+'"]'),this.init()}return t.prototype.init=function(){var t;this.selector&&(this.selector.classList.add("aioseo-plugin-row"),(t=this.selector.querySelectorAll("span.proupgrade a, span.docs a, span.support a")).length&&t.forEach((function(t){t.setAttribute("target","_blank")})),(t=this.selector.querySelectorAll(".column-description .active a")).length&&t.forEach((function(t){t.setAttribute("target","_blank")})))},t}())},function(t,n,r){"use strict";var e=r(28);r=r(24);e({target:"Array",proto:!0,forced:[].forEach!=r},{forEach:r})},function(t,n,r){var e=r(0),o=r(8).f,i=r(5),u=r(32),c=r(7),f=r(37),a=r(47);t.exports=function(t,n){var r,s,l,p=t.target,y=t.global,v=t.stat,h=y?e:v?e[p]||c(p,{}):(e[p]||{}).prototype;if(h)for(r in n){if(s=n[r],l=t.noTargetGet?(l=o(h,r))&&l.value:h[r],!a(y?r:p+(v?".":"#")+r,t.forced)&&void 0!==l){if(typeof s==typeof l)continue;f(s,l)}(t.sham||l&&l.sham)&&i(s,"sham",!0),u(h,r,s,t)}}},function(t,n){var r=function(){return this}();try{r=r||new Function("return this")()}catch(t){"object"==typeof window&&(r=window)}t.exports=r},function(t,n,r){"use strict";var e={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!e.call({1:2},1);n.f=i?function(t){return!!(t=o(this,t))&&t.enumerable}:e},function(t,n,r){var e=r(0),o=(r=r(4),e.document),i=r(o)&&r(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},function(t,n,r){var e=r(0),o=r(5),i=r(2),u=r(7),c=r(17),f=(r=r(33)).get,a=r.enforce,s=String(String).split("String");(t.exports=function(t,n,r,c){var f=!!c&&!!c.unsafe,l=!!c&&!!c.enumerable;c=!!c&&!!c.noTargetGet;"function"==typeof r&&("string"!=typeof n||i(r,"name")||o(r,"name",n),a(r).source=s.join("string"==typeof n?n:"")),t!==e?(f?!c&&t[n]&&(l=!0):delete t[n],l?t[n]=r:o(t,n,r)):l?t[n]=r:u(n,r)})(Function.prototype,"toString",(function(){return"function"==typeof this&&f(this).source||c(this)}))},function(t,n,r){var e,o,i,u,c,f,a,s,l=r(34),p=r(0),y=r(4),v=r(5),h=r(2),g=r(35);r=r(21),p=p.WeakMap;a=l?(e=new p,o=e.get,i=e.has,u=e.set,c=function(t,n){return u.call(e,t,n),n},f=function(t){return o.call(e,t)||{}},function(t){return i.call(e,t)}):(r[s=g("state")]=!0,c=function(t,n){return v(t,s,n),n},f=function(t){return h(t,s)?t[s]:{}},function(t){return h(t,s)}),t.exports={set:c,get:f,has:a,enforce:function(t){return a(t)?f(t):c(t,{})},getterFor:function(t){return function(n){var r;if(!y(n)||(r=f(n)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return r}}}},function(t,n,r){var e=r(0);r=r(17),e=e.WeakMap;t.exports="function"==typeof e&&/native code/.test(r(e))},function(t,n,r){var e=r(19),o=r(20),i=e("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,n){t.exports=!1},function(t,n,r){var e=r(2),o=r(38),i=r(8),u=r(15);t.exports=function(t,n){for(var r=o(n),c=u.f,f=i.f,a=0;a<r.length;a++){var s=r[a];e(t,s)||c(t,s,f(n,s))}}},function(t,n,r){var e=r(39),o=r(41),i=r(46),u=r(16);t.exports=e("Reflect","ownKeys")||function(t){var n=o.f(u(t)),r=i.f;return r?n.concat(r(t)):n}},function(t,n,r){function e(t){return"function"==typeof t?t:void 0}var o=r(40),i=r(0);t.exports=function(t,n){return arguments.length<2?e(o[t])||e(i[t]):o[t]&&o[t][n]||i[t]&&i[t][n]}},function(t,n,r){r=r(0),t.exports=r},function(t,n,r){var e=r(42),o=r(45).concat("length","prototype");n.f=Object.getOwnPropertyNames||function(t){return e(t,o)}},function(t,n,r){var e=r(2),o=r(6),i=r(43).indexOf,u=r(21);t.exports=function(t,n){var r,c=o(t),f=0,a=[];for(r in c)!e(u,r)&&e(c,r)&&a.push(r);for(;n.length>f;)e(c,r=n[f++])&&(~i(a,r)||a.push(r));return a}},function(t,n,r){var e=r(6),o=r(22),i=r(44);r=function(t){return function(n,r,u){var c,f=e(n),a=o(f.length),s=i(u,a);if(t&&r!=r){for(;s<a;)if((c=f[s++])!=c)return!0}else for(;s<a;s++)if((t||s in f)&&f[s]===r)return t||s||0;return!t&&-1}};t.exports={includes:r(!0),indexOf:r(!1)}},function(t,n,r){var e=r(23),o=Math.max,i=Math.min;t.exports=function(t,n){return(t=e(t))<0?o(t+n,0):i(t,n)}},function(t,n){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,n){n.f=Object.getOwnPropertySymbols},function(t,n,r){var e=r(1),o=/#|\.prototype\./,i=(r=function(t,n){return(t=u[i(t)])==f||t!=c&&("function"==typeof n?e(n):!!n)}).normalize=function(t){return String(t).replace(o,".").toLowerCase()},u=r.data={},c=r.NATIVE="N",f=r.POLYFILL="P";t.exports=r},function(t,n,r){var e=r(49),o=r(10),i=r(51),u=r(22),c=r(52),f=[].push;r=function(t){var n=1==t,r=2==t,a=3==t,s=4==t,l=6==t,p=5==t||l;return function(y,v,h,g){for(var d,b,x=i(y),S=o(x),m=e(v,h,3),w=u(S.length),O=0,L=(g=g||c,n?g(y,w):r?g(y,0):void 0);O<w;O++)if((p||O in S)&&(b=m(d=S[O],O,x),t))if(n)L[O]=b;else if(b)switch(t){case 3:return!0;case 5:return d;case 6:return O;case 2:f.call(L,d)}else if(s)return!1;return l?-1:a||s?s:L}};t.exports={forEach:r(0),map:r(1),filter:r(2),some:r(3),every:r(4),find:r(5),findIndex:r(6)}},function(t,n,r){var e=r(50);t.exports=function(t,n,r){if(e(t),void 0===n)return t;switch(r){case 0:return function(){return t.call(n)};case 1:return function(r){return t.call(n,r)};case 2:return function(r,e){return t.call(n,r,e)};case 3:return function(r,e,o){return t.call(n,r,e,o)}}return function(){return t.apply(n,arguments)}}},function(t,n){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},function(t,n,r){var e=r(12);t.exports=function(t){return Object(e(t))}},function(t,n,r){var e=r(4),o=r(53),i=r(54)("species");t.exports=function(t,n){var r;return o(t)&&("function"==typeof(r=t.constructor)&&(r===Array||o(r.prototype))||e(r)&&null===(r=r[i]))&&(r=void 0),new(void 0===r?Array:r)(0===n?0:n)}},function(t,n,r){var e=r(11);t.exports=Array.isArray||function(t){return"Array"==e(t)}},function(t,n,r){var e=r(0),o=r(19),i=r(2),u=r(20),c=r(25),f=(r=r(55),o("wks")),a=e.Symbol,s=r?a:a&&a.withoutSetter||u;t.exports=function(t){return i(f,t)||(c&&i(a,t)?f[t]=a[t]:f[t]=s("Symbol."+t)),f[t]}},function(t,n,r){r=r(25),t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,n,r){"use strict";var e=r(1);t.exports=function(t,n){var r=[][t];return!!r&&e((function(){r.call(null,n||function(){throw 1},1)}))}},function(t,n,r){function e(t){throw t}var o=r(3),i=r(1),u=r(2),c=Object.defineProperty,f={};t.exports=function(t,n){if(u(f,t))return f[t];var r=[][t],a=!!u(n=n||{},"ACCESSORS")&&n.ACCESSORS,s=u(n,0)?n[0]:e,l=u(n,1)?n[1]:void 0;return f[t]=!!r&&!i((function(){if(a&&!o)return!0;var t={length:-1};a?c(t,1,{enumerable:!0,get:e}):t[1]=1,r.call(t,s,l)}))}},function(t,n,r){var e,o=r(0),i=r(59),u=r(24),c=r(5);for(e in i){var f=o[e],a=f&&f.prototype;if(a&&a.forEach!==u)try{c(a,"forEach",u)}catch(t){a.forEach=u}}},function(t,n){t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}}]);
1
+ /*! ! built on Tuesday, December 22nd 2020, 2:24:58 pm */
2
  !function(t){var n={};function r(e){if(n[e])return n[e].exports;var o=n[e]={i:e,l:!1,exports:{}};return t[e].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=t,r.c=n,r.d=function(t,n,e){r.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:e})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,n){if(1&n&&(t=r(t)),8&n)return t;if(4&n&&"object"==typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(r.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&n&&"string"!=typeof t)for(var o in t)r.d(e,o,function(n){return t[n]}.bind(null,o));return e},r.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(n,"a",n),n},r.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},r.p="",r(r.s=26)}([function(t,n,r){(function(n){function r(t){return t&&t.Math==Math&&t}t.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n&&n)||Function("return this")()}).call(this,r(29))},function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,n){var r={}.hasOwnProperty;t.exports=function(t,n){return r.call(t,n)}},function(t,n,r){r=r(1),t.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},function(t,n){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,n,r){var e=r(3),o=r(15),i=r(9);t.exports=e?function(t,n,r){return o.f(t,n,i(1,r))}:function(t,n,r){return t[n]=r,t}},function(t,n,r){var e=r(10),o=r(12);t.exports=function(t){return e(o(t))}},function(t,n,r){var e=r(0),o=r(5);t.exports=function(t,n){try{o(e,t,n)}catch(r){e[t]=n}return n}},function(t,n,r){var e=r(3),o=r(30),i=r(9),u=r(6),c=r(13),f=r(2),a=r(14),s=Object.getOwnPropertyDescriptor;n.f=e?s:function(t,n){if(t=u(t),n=c(n,!0),a)try{return s(t,n)}catch(t){}if(f(t,n))return i(!o.f.call(t,n),t[n])}},function(t,n){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},function(t,n,r){var e=r(1),o=r(11),i="".split;t.exports=e((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,n){var r={}.toString;t.exports=function(t){return r.call(t).slice(8,-1)}},function(t,n){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,n,r){var e=r(4);t.exports=function(t,n){if(!e(t))return t;var r,o;if(n&&"function"==typeof(r=t.toString)&&!e(o=r.call(t)))return o;if("function"==typeof(r=t.valueOf)&&!e(o=r.call(t)))return o;if(!n&&"function"==typeof(r=t.toString)&&!e(o=r.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,n,r){var e=r(3),o=r(1),i=r(31);t.exports=!e&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},function(t,n,r){var e=r(3),o=r(14),i=r(16),u=r(13),c=Object.defineProperty;n.f=e?c:function(t,n,r){if(i(t),n=u(n,!0),i(r),o)try{return c(t,n,r)}catch(t){}if("get"in r||"set"in r)throw TypeError("Accessors not supported");return"value"in r&&(t[n]=r.value),t}},function(t,n,r){var e=r(4);t.exports=function(t){if(!e(t))throw TypeError(String(t)+" is not an object");return t}},function(t,n,r){r=r(18);var e=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(t){return e.call(t)}),t.exports=r.inspectSource},function(t,n,r){var e=r(0),o=r(7);r=e[r="__core-js_shared__"]||o(r,{});t.exports=r},function(t,n,r){var e=r(36),o=r(18);(t.exports=function(t,n){return o[t]||(o[t]=void 0!==n?n:{})})("versions",[]).push({version:"3.6.5",mode:e?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},function(t,n){var r=0,e=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++r+e).toString(36)}},function(t,n){t.exports={}},function(t,n,r){var e=r(23),o=Math.min;t.exports=function(t){return 0<t?o(e(t),9007199254740991):0}},function(t,n){var r=Math.ceil,e=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(0<t?e:r)(t)}},function(t,n,r){"use strict";var e=r(48).forEach,o=r(56);r=r(57),o=o("forEach"),r=r("forEach");t.exports=o&&r?[].forEach:function(t,n){return e(this,t,1<arguments.length?n:void 0)}},function(t,n,r){r=r(1),t.exports=!!Object.getOwnPropertySymbols&&!r((function(){return!String(Symbol())}))},function(t,n,r){r(27),r(58),new(function(){"use strict";function t(){this.selector=document.querySelector('tr[data-plugin="'+window.aioseoPlugins.basename+'"]'),this.init()}return t.prototype.init=function(){var t;this.selector&&(this.selector.classList.add("aioseo-plugin-row"),(t=this.selector.querySelectorAll("span.proupgrade a, span.docs a, span.support a")).length&&t.forEach((function(t){t.setAttribute("target","_blank")})),(t=this.selector.querySelectorAll(".column-description .active a")).length&&t.forEach((function(t){t.setAttribute("target","_blank")})))},t}())},function(t,n,r){"use strict";var e=r(28);r=r(24);e({target:"Array",proto:!0,forced:[].forEach!=r},{forEach:r})},function(t,n,r){var e=r(0),o=r(8).f,i=r(5),u=r(32),c=r(7),f=r(37),a=r(47);t.exports=function(t,n){var r,s,l,p=t.target,y=t.global,v=t.stat,h=y?e:v?e[p]||c(p,{}):(e[p]||{}).prototype;if(h)for(r in n){if(s=n[r],l=t.noTargetGet?(l=o(h,r))&&l.value:h[r],!a(y?r:p+(v?".":"#")+r,t.forced)&&void 0!==l){if(typeof s==typeof l)continue;f(s,l)}(t.sham||l&&l.sham)&&i(s,"sham",!0),u(h,r,s,t)}}},function(t,n){var r=function(){return this}();try{r=r||new Function("return this")()}catch(t){"object"==typeof window&&(r=window)}t.exports=r},function(t,n,r){"use strict";var e={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!e.call({1:2},1);n.f=i?function(t){return!!(t=o(this,t))&&t.enumerable}:e},function(t,n,r){var e=r(0),o=(r=r(4),e.document),i=r(o)&&r(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},function(t,n,r){var e=r(0),o=r(5),i=r(2),u=r(7),c=r(17),f=(r=r(33)).get,a=r.enforce,s=String(String).split("String");(t.exports=function(t,n,r,c){var f=!!c&&!!c.unsafe,l=!!c&&!!c.enumerable;c=!!c&&!!c.noTargetGet;"function"==typeof r&&("string"!=typeof n||i(r,"name")||o(r,"name",n),a(r).source=s.join("string"==typeof n?n:"")),t!==e?(f?!c&&t[n]&&(l=!0):delete t[n],l?t[n]=r:o(t,n,r)):l?t[n]=r:u(n,r)})(Function.prototype,"toString",(function(){return"function"==typeof this&&f(this).source||c(this)}))},function(t,n,r){var e,o,i,u,c,f,a,s,l=r(34),p=r(0),y=r(4),v=r(5),h=r(2),g=r(35);r=r(21),p=p.WeakMap;a=l?(e=new p,o=e.get,i=e.has,u=e.set,c=function(t,n){return u.call(e,t,n),n},f=function(t){return o.call(e,t)||{}},function(t){return i.call(e,t)}):(r[s=g("state")]=!0,c=function(t,n){return v(t,s,n),n},f=function(t){return h(t,s)?t[s]:{}},function(t){return h(t,s)}),t.exports={set:c,get:f,has:a,enforce:function(t){return a(t)?f(t):c(t,{})},getterFor:function(t){return function(n){var r;if(!y(n)||(r=f(n)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return r}}}},function(t,n,r){var e=r(0);r=r(17),e=e.WeakMap;t.exports="function"==typeof e&&/native code/.test(r(e))},function(t,n,r){var e=r(19),o=r(20),i=e("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,n){t.exports=!1},function(t,n,r){var e=r(2),o=r(38),i=r(8),u=r(15);t.exports=function(t,n){for(var r=o(n),c=u.f,f=i.f,a=0;a<r.length;a++){var s=r[a];e(t,s)||c(t,s,f(n,s))}}},function(t,n,r){var e=r(39),o=r(41),i=r(46),u=r(16);t.exports=e("Reflect","ownKeys")||function(t){var n=o.f(u(t)),r=i.f;return r?n.concat(r(t)):n}},function(t,n,r){function e(t){return"function"==typeof t?t:void 0}var o=r(40),i=r(0);t.exports=function(t,n){return arguments.length<2?e(o[t])||e(i[t]):o[t]&&o[t][n]||i[t]&&i[t][n]}},function(t,n,r){r=r(0),t.exports=r},function(t,n,r){var e=r(42),o=r(45).concat("length","prototype");n.f=Object.getOwnPropertyNames||function(t){return e(t,o)}},function(t,n,r){var e=r(2),o=r(6),i=r(43).indexOf,u=r(21);t.exports=function(t,n){var r,c=o(t),f=0,a=[];for(r in c)!e(u,r)&&e(c,r)&&a.push(r);for(;n.length>f;)e(c,r=n[f++])&&(~i(a,r)||a.push(r));return a}},function(t,n,r){var e=r(6),o=r(22),i=r(44);r=function(t){return function(n,r,u){var c,f=e(n),a=o(f.length),s=i(u,a);if(t&&r!=r){for(;s<a;)if((c=f[s++])!=c)return!0}else for(;s<a;s++)if((t||s in f)&&f[s]===r)return t||s||0;return!t&&-1}};t.exports={includes:r(!0),indexOf:r(!1)}},function(t,n,r){var e=r(23),o=Math.max,i=Math.min;t.exports=function(t,n){return(t=e(t))<0?o(t+n,0):i(t,n)}},function(t,n){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,n){n.f=Object.getOwnPropertySymbols},function(t,n,r){var e=r(1),o=/#|\.prototype\./,i=(r=function(t,n){return(t=u[i(t)])==f||t!=c&&("function"==typeof n?e(n):!!n)}).normalize=function(t){return String(t).replace(o,".").toLowerCase()},u=r.data={},c=r.NATIVE="N",f=r.POLYFILL="P";t.exports=r},function(t,n,r){var e=r(49),o=r(10),i=r(51),u=r(22),c=r(52),f=[].push;r=function(t){var n=1==t,r=2==t,a=3==t,s=4==t,l=6==t,p=5==t||l;return function(y,v,h,g){for(var d,b,x=i(y),S=o(x),m=e(v,h,3),w=u(S.length),O=0,L=(g=g||c,n?g(y,w):r?g(y,0):void 0);O<w;O++)if((p||O in S)&&(b=m(d=S[O],O,x),t))if(n)L[O]=b;else if(b)switch(t){case 3:return!0;case 5:return d;case 6:return O;case 2:f.call(L,d)}else if(s)return!1;return l?-1:a||s?s:L}};t.exports={forEach:r(0),map:r(1),filter:r(2),some:r(3),every:r(4),find:r(5),findIndex:r(6)}},function(t,n,r){var e=r(50);t.exports=function(t,n,r){if(e(t),void 0===n)return t;switch(r){case 0:return function(){return t.call(n)};case 1:return function(r){return t.call(n,r)};case 2:return function(r,e){return t.call(n,r,e)};case 3:return function(r,e,o){return t.call(n,r,e,o)}}return function(){return t.apply(n,arguments)}}},function(t,n){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},function(t,n,r){var e=r(12);t.exports=function(t){return Object(e(t))}},function(t,n,r){var e=r(4),o=r(53),i=r(54)("species");t.exports=function(t,n){var r;return o(t)&&("function"==typeof(r=t.constructor)&&(r===Array||o(r.prototype))||e(r)&&null===(r=r[i]))&&(r=void 0),new(void 0===r?Array:r)(0===n?0:n)}},function(t,n,r){var e=r(11);t.exports=Array.isArray||function(t){return"Array"==e(t)}},function(t,n,r){var e=r(0),o=r(19),i=r(2),u=r(20),c=r(25),f=(r=r(55),o("wks")),a=e.Symbol,s=r?a:a&&a.withoutSetter||u;t.exports=function(t){return i(f,t)||(c&&i(a,t)?f[t]=a[t]:f[t]=s("Symbol."+t)),f[t]}},function(t,n,r){r=r(25),t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,n,r){"use strict";var e=r(1);t.exports=function(t,n){var r=[][t];return!!r&&e((function(){r.call(null,n||function(){throw 1},1)}))}},function(t,n,r){function e(t){throw t}var o=r(3),i=r(1),u=r(2),c=Object.defineProperty,f={};t.exports=function(t,n){if(u(f,t))return f[t];var r=[][t],a=!!u(n=n||{},"ACCESSORS")&&n.ACCESSORS,s=u(n,0)?n[0]:e,l=u(n,1)?n[1]:void 0;return f[t]=!!r&&!i((function(){if(a&&!o)return!0;var t={length:-1};a?c(t,1,{enumerable:!0,get:e}):t[1]=1,r.call(t,s,l)}))}},function(t,n,r){var e,o=r(0),i=r(59),u=r(24),c=r(5);for(e in i){var f=o[e],a=f&&f.prototype;if(a&&a.forEach!==u)try{c(a,"forEach",u)}catch(t){a.forEach=u}}},function(t,n){t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}}]);
dist/Lite/assets/js/plugins.js.gz CHANGED
Binary file
dist/Lite/assets/js/post-settings.js CHANGED
@@ -1 +1 @@
1
- (function(t){function e(e){for(var o,a,r=e[0],c=e[1],l=e[2],d=0,p=[];d<r.length;d++)a=r[d],Object.prototype.hasOwnProperty.call(n,a)&&n[a]&&p.push(n[a][0]),n[a]=0;for(o in c)Object.prototype.hasOwnProperty.call(c,o)&&(t[o]=c[o]);u&&u(e);while(p.length)p.shift()();return i.push.apply(i,l||[]),s()}function s(){for(var t,e=0;e<i.length;e++){for(var s=i[e],o=!0,r=1;r<s.length;r++){var c=s[r];0!==n[c]&&(o=!1)}o&&(i.splice(e--,1),t=a(a.s=s[0]))}return t}var o={},n={"post-settings":0},i=[];function a(e){if(o[e])return o[e].exports;var s=o[e]={i:e,l:!1,exports:{}};return t[e].call(s.exports,s,s.exports,a),s.l=!0,s.exports}a.m=t,a.c=o,a.d=function(t,e,s){a.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:s})},a.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},a.t=function(t,e){if(1&e&&(t=a(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var s=Object.create(null);if(a.r(s),Object.defineProperty(s,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)a.d(s,o,function(e){return t[e]}.bind(null,o));return s},a.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return a.d(e,"a",e),e},a.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},a.p="/";var r=window["aioseopjsonp"]=window["aioseopjsonp"]||[],c=r.push.bind(r);r.push=e,r=r.slice();for(var l=0;l<r.length;l++)e(r[l]);var u=c;i.push([9,"chunk-vendors","chunk-common"]),s()})({"08d2":function(t,e,s){},"0e57":function(t,e,s){"use strict";s.r(e);s("e260"),s("e6cf"),s("cca6"),s("a79d");var o=s("a026"),n=(s("1725"),s("75b9"),function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",[t.pong?t._e():s("core-api-bar"),t.currentPost.id?s("main-view"):t._e()],1)}),i=[],a=(s("4de4"),s("7db0"),s("a630"),s("caad"),s("a15b"),s("d81d"),s("b0c0"),s("b680"),s("ac1f"),s("2532"),s("3ca3"),s("5319"),s("2909")),r=(s("96cf"),s("1da1")),c=s("5530"),l=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-app"},[s("core-main-tabs",{attrs:{tabs:t.getTabs,showSaveButton:!1,active:this.activeTab,internal:"",disableMobile:""},on:{changed:function(e){return t.processChangeTab(e)}}}),s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(t.activeTab,{tag:"component",attrs:{parentComponentContext:"metabox"}})],1),t.currentPost.modalOpen&&"sidebar"===t.$root._data.screenContext?s("core-modal",{on:{close:t.closeModal}},[s("div",{attrs:{slot:"headerTitle"},slot:"headerTitle"},[t._v(" "+t._s(t.strings.modalTitle)+" ")]),s("div",{attrs:{slot:"body"},slot:"body"},[s("ModalContent")],1)]):t._e()],1)},u=[],d=s("2f62"),p=s("51da"),m=s("248f"),g=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-tab-content aioseo-post-advanced"},[s("core-settings-row",{attrs:{name:t.strings.robotsSetting,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-single-robots-meta")]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.canonicalURL,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-input",{attrs:{type:"text",size:"medium",placeholder:t.strings.placeholder},on:{input:t.setIsDirty},model:{value:t.currentPost.canonicalUrl,callback:function(e){t.$set(t.currentPost,"canonicalUrl",e)},expression:"currentPost.canonicalUrl"}})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.priorityScore,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("div",{staticClass:"selectbox-row"},[s("div",{staticClass:"select"},[s("span",[t._v(t._s(t.strings.priority))]),s("base-select",{attrs:{disabled:t.isUnlicensed,size:"medium","open-direction":t.getOpenDirection,options:t.getPriorityOptions,value:t.isUnlicensed?t.getPriority("default"):t.getPriority(t.currentPost.priority)},on:{input:function(e){return t.isUnlicensed?null:t.savePriority(e.value)}}})],1),s("div",{staticClass:"separator"},[s("span"),t._v(" - ")]),s("div",{staticClass:"select"},[s("span",[t._v(t._s(t.strings.frequency))]),s("base-select",{attrs:{disabled:t.isUnlicensed,size:"medium","open-direction":t.getOpenDirection,options:t.getFrequencyOptions,value:t.isUnlicensed?t.getFrequency("default"):t.getFrequency(t.currentPost.frequency)},on:{input:function(e){return t.isUnlicensed?null:t.saveFrequency(e.value)}}})],1)]),t.isUnlicensed?s("core-alert",{staticClass:"inline-upsell",attrs:{type:"blue"}},[s("div",{domProps:{innerHTML:t._s(t.strings.priorityFrequencyUpsell)}})]):t._e()]},proxy:!0}])}),t.options.searchAppearance.advanced.useKeywords?s("core-settings-row",{attrs:{name:t.strings.keywords,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{attrs:{multiple:"",taggable:"",options:t.getJsonValue(t.currentPost.keywords)||[],value:t.getJsonValue(t.currentPost.keywords)||[],"tag-placeholder":t.strings.tagPlaceholder},on:{input:function(e){return t.currentPost.keywords=t.setJsonValue(e)}}})]},proxy:!0}],null,!1,2312666634)}):t._e()],1)},h=[],_=(s("99af"),s("9c0e")),y={mixins:[_["c"],_["d"]],props:{disabled:{type:Boolean,default:function(){return!1}},type:{type:String,required:!1},object:{type:Object,required:!1}},data:function(){return{strings:{pageName:this.$t.__("Advanced",this.$td),robotsSetting:this.$t.__("Robots Setting",this.$td),robotsToggle:this.$t.__("Use default settings",this.$td),canonicalURL:this.$t.__("Canonical URL",this.$td),placeholder:this.$t.__("Enter a URL to change the default Canonical URL",this.$td),priorityScore:this.$t.__("Priority Score",this.$td),priority:this.$t.__("Priority",this.$td),frequency:this.$t.__("Frequency",this.$td),priorityFrequencyUpsell:this.$t.sprintf(this.$t.__("This feature is only for licensed %1$s users. %2$s",this.$td),"<strong>".concat("AIOSEO"," Pro</strong>"),this.$links.getUpsellLink("post-advanced",this.$constants.GLOBAL_STRINGS.learnMore,"priority-frequency",!0)),keywords:this.$t.__("Keywords",this.$td),tagPlaceholder:this.$t.__("Press enter to create a keyword",this.$td)}}},computed:Object(c["a"])(Object(c["a"])(Object(c["a"])({},Object(d["c"])(["isUnlicensed"])),Object(d["e"])(["currentPost","options"])),{},{getOpenDirection:function(){return"sidebar"===this.$root._data.screenContext?"bottom":"top"},getPriorityOptions:function(){return[{label:this.$t.__("default",this.$td),value:"default"}].concat(this.$constants.PRIORITY_OPTIONS)},getFrequencyOptions:function(){return[{label:this.$t.__("default",this.$td),value:"default"}].concat(this.$constants.FREQUENCY_OPTIONS)}}),methods:{getPriority:function(t){return this.getPriorityOptions.find((function(e){return e.value===t}))},savePriority:function(t){this.$set(this.currentPost,"priority",t),this.$store.commit("isDirty",!0)},getFrequency:function(t){return this.getFrequencyOptions.find((function(e){return e.value===t}))},saveFrequency:function(t){this.$set(this.currentPost,"frequency",t),this.$store.commit("isDirty",!0)}}},b=y,f=(s("5e7f"),s("2877")),v=Object(f["a"])(b,g,h,!1,null,null,null),P=v.exports,w=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-tab-content aioseo-post-general"},[this.$allowed("aioseo_page_general_settings")?s("core-settings-row",{staticClass:"mobile-radio-buttons",scopedSlots:t._u([{key:"content",fn:function(){return["metabox"===t.$root._data.screenContext||"modal"===t.parentComponentContext?s("base-radio-toggle",{staticClass:"circle",attrs:{value:t.currentPost.generalMobilePrev,name:"previewGeneralIsMobile",options:[{label:"desktop",value:!1,activeClass:"dark",slot:"desktop"},{label:"mobile",value:!0,slot:"mobile"}]},on:{input:t.isMobilePreviewEv},scopedSlots:t._u([{key:"desktop",fn:function(){return[s("svg-desktop")]},proxy:!0},{key:"mobile",fn:function(){return[s("svg-mobile")]},proxy:!0}],null,!1,3417581673)}):t._e()]},proxy:!0}],null,!1,1896340531)}):t._e(),this.$allowed("aioseo_page_general_settings")?s("core-settings-row",{staticClass:"snippet-preview-row",attrs:{name:t.strings.snippetPreview},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-google-search-preview",{class:{ismobile:t.currentPost.generalMobilePrev},attrs:{title:t.currentPost.title||t.currentPost.tags.title||"#post_title #separator_sa #site_title",separator:t.options.searchAppearance.global.separator,description:t.currentPost.description||t.currentPost.tags.description||"#post_content"},scopedSlots:t._u([{key:"domain",fn:function(){return[t._v(" "+t._s(t.liveTags.permalink)+" ")]},proxy:!0}],null,!1,3436692130)}),"sidebar"===t.$root._data.screenContext&&"modal"!==t.parentComponentContext?s("base-button",{staticClass:"edit-snippet gray small",on:{click:t.editSnippetEv}},[s("svg-pencil"),t._v(" "+t._s(t.strings.editSnippet)+" ")],1):t._e()]},proxy:!0}],null,!1,3824536476)}):t._e(),"metabox"!==t.$root._data.screenContext&&"modal"!==t.parentComponentContext||!this.$allowed("aioseo_page_general_settings")?t._e():s("core-settings-row",{staticClass:"snippet-title-row",attrs:{name:t.title},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":(t.currentPost.postType||t.currentPost.termType)+"Title",defaultMenuOrientation:"modal"===t.parentComponentContext?"top":"bottom","default-tags":t.getDefaultTags("title")},on:{counter:function(e){return t.updateCount(e,"titleCount")},input:t.setContent},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddTitle)+" ")]},proxy:!0}],null,!1,3106947238),model:{value:t.currentPost.title,callback:function(e){t.$set(t.currentPost,"title",e)},expression:"currentPost.title"}}),s("div",{staticClass:"max-recommended-count",domProps:{innerHTML:t._s(t.maxRecommendedCount(t.titleCount,60))}})]},proxy:!0}],null,!1,2076209906)}),"metabox"!==t.$root._data.screenContext&&"modal"!==t.parentComponentContext||!this.$allowed("aioseo_page_general_settings")?t._e():s("core-settings-row",{staticClass:"snippet-description-row",attrs:{name:t.strings.metaDescription},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{attrs:{"line-numbers":!1,description:"","tags-context":(t.currentPost.postType||t.currentPost.termType)+"Description",defaultMenuOrientation:"modal"===t.parentComponentContext?"top":"bottom","default-tags":t.getDefaultTags("description")},on:{counter:function(e){return t.updateCount(e,"descriptionCount")},input:t.setContent},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddDescription)+" ")]},proxy:!0}],null,!1,1726597184),model:{value:t.currentPost.description,callback:function(e){t.$set(t.currentPost,"description",e)},expression:"currentPost.description"}}),s("div",{staticClass:"max-recommended-count",domProps:{innerHTML:t._s(t.maxRecommendedCount(t.descriptionCount,160))}})]},proxy:!0}],null,!1,566412060)}),t.displayTruSeoMetaboxCard&&t.options.searchAppearance.advanced.useKeywords&&t.options.searchAppearance.advanced.keywordsLooking?s("div",[s("core-alert",{attrs:{type:"blue","show-close":""},on:{"close-alert":t.hideKeywordsLooking}},[t._v(" "+t._s(t.strings.lookingForMetaKeywords)+" ")])],1):t._e(),t.displayTruSeoMetaboxCard?s("core-settings-row",{staticClass:"snippet-focus-keyphrase-row",attrs:{name:t.strings.focusKeyphrase,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("focusKeyphrase")]},proxy:!0}],null,!1,2098324327)}):t._e(),t.displayTruSeoMetaboxCard?s("core-settings-row",{staticClass:"snippet-additional-keyphrases-row",attrs:{name:t.strings.additionalKeyphrases},scopedSlots:t._u([{key:"content",fn:function(){return[s("additionalKeyphrases")]},proxy:!0}],null,!1,3781583425)}):t._e(),t.displayTruSeoMetaboxCard&&t.currentPost.page_analysis?s("core-settings-row",{staticClass:"snippet-page-analysis-row",attrs:{name:t.strings.pageAnalysis,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("pageAnalysis")]},proxy:!0}],null,!1,1626229952)}):t._e(),t.displayTruSeoSidebarKeyphraseCard?s("core-sidebar-card",{staticClass:"card-focus-keyphrase",attrs:{slug:"focus","header-text":t.strings.focusKeyphrase,focusScore:t.currentPost.keyphrases.focus.score}},[s("focusKeyphrase")],1):t._e(),t.displayTruSeoSidebarKeyphraseCard?s("core-sidebar-card",{staticClass:"card-additional-keyphrase",attrs:{slug:"additional","header-text":t.strings.additionalKeyphrases}},[s("additionalKeyphrases")],1):t._e(),t.displayTruSeoSidebarAnalysisCard?s("core-sidebar-card",{staticClass:"card-basic-seo",attrs:{slug:"basicseo","header-text":t.strings.basicSeo,trueSeoScore:t.currentPost.page_analysis.analysis.basic.errors}},[s("metaboxAnalysisDetail",{attrs:{analysisItems:t.currentPost.page_analysis.analysis.basic}})],1):t._e(),t.displayTruSeoSidebarAnalysisCard?s("core-sidebar-card",{staticClass:"card-title-seo",attrs:{slug:"title","header-text":t.strings.title,trueSeoScore:t.currentPost.page_analysis.analysis.title.errors}},[s("metaboxAnalysisDetail",{attrs:{analysisItems:t.currentPost.page_analysis.analysis.title}})],1):t._e(),t.displayTruSeoSidebarAnalysisCard?s("core-sidebar-card",{staticClass:"card-readability-seo",attrs:{slug:"readability","header-text":t.strings.readability,trueSeoScore:t.currentPost.page_analysis.analysis.readability.errors}},[s("metaboxAnalysisDetail",{attrs:{analysisItems:t.currentPost.page_analysis.analysis.readability}})],1):t._e()],1)},C=[],$=(s("a4d3"),s("e01a"),function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"page-analysis-panel"},[s("core-main-tabs",{attrs:{tabs:t.tabs,showSaveButton:!1,active:this.initTab,internal:""},on:{changed:function(e){return t.processChangeTab(e)}}}),s("transition",{attrs:{mode:"out-in"}},[t.currentPost.page_analysis?s("metaboxAnalysisDetail",{attrs:{analysisItems:t.currentPost.page_analysis.analysis[this.initTab]}}):t._e()],1)],1)}),k=[],S=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("ul",{staticClass:"aioseo-analysis-detail"},t._l(t.analysisItems,(function(e,o){return s("li",{key:o},[s("p",{staticClass:"title"},[0===e.error?s("svg-circle-check",{attrs:{width:"12"}}):t._e(),1===e.error?s("svg-circle-close",{attrs:{width:"12"}}):t._e(),t._v(" "+t._s(e.title)+" "),1===e.error?s("svg-caret",{attrs:{width:"16"},on:{click:t.toggleDescriptionEv}}):t._e()],1),1===e.error?s("p",{staticClass:"description"},[t._v(t._s(e.description))]):t._e()])})),0)},x=[],T={props:{analysisItems:{type:Object}},data:function(){return{strings:{delete:this.$t.__("Delete",this.$td)}}},methods:{toggleDescriptionEv:function(t){t.target.parentElement.classList.toggle("toggled")}}},O=T,j=(s("a072"),Object(f["a"])(O,S,x,!1,null,null,null)),E=j.exports,A={components:{metaboxAnalysisDetail:E},data:function(){return{strings:{errors:this.$t.__("Errors",this.$td),allGood:this.$t.__("All Good!",this.$td)},initTab:"basic",tabs:[{slug:"basic",name:this.$t.__("Basic SEO",this.$td)},{slug:"title",name:this.$t.__("Title",this.$td)},{slug:"readability",name:this.$t.__("Readability",this.$td)}]}},computed:Object(c["a"])(Object(c["a"])({},Object(d["c"])(["currentPost"])),Object(d["e"])(["currentPost"])),methods:{processChangeTab:function(t){this.initTab=t}},mounted:function(){var t=this;this.tabs.map((function(e){e.errorCount=t.currentPost.page_analysis.analysis[e.slug].errors}))}},D=A,I=(s("8c79"),Object(f["a"])(D,$,k,!1,null,null,null)),L=I.exports,M=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"focus-keyphrase-panel"},[t.currentPost.keyphrases.focus.keyphrase?t._e():s("base-input",{class:"add-focus-keyphrase-"+this.$root._data.screenContext+"-input",attrs:{size:"medium"},on:{keydown:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.pressEnter(e)}}}),t.currentPost.keyphrases.focus.keyphrase?t._e():s("base-button",{staticClass:"add-keyphrase gray small",attrs:{id:"add-focus-keyphrase"},on:{click:t.addKeyphraseEv}},[s("svg-circle-plus",{attrs:{width:"14",height:"14"}}),t._v(" "+t._s(t.strings.addKeyphrase)+" ")],1),t.currentPost.keyphrases.focus.keyphrase?s("core-keyphrase",{staticClass:"aioseo-keyphrase-tag",attrs:{index:0,keyphrase:t.currentPost.keyphrases.focus.keyphrase,score:t.currentPost.keyphrases.focus.score},on:{saved:t.onSaved,deleted:t.onDeleted}}):t._e(),t.currentPost.loading.focus&&t.currentPost.keyphrases.focus?s("core-loader",{staticClass:"analysis-loading",attrs:{dark:""}}):t._e(),!t.currentPost.loading.focus&&t.currentPost.keyphrases.focus.keyphrase?s("metaboxAnalysisDetail",{attrs:{analysisItems:t.currentPost.keyphrases.focus.analysis}}):t._e(),t.currentPost.keyphrases.focus.keyphrase?t._e():s("core-alert",{staticClass:"keyphrase-documentation",attrs:{type:"yellow"},domProps:{innerHTML:t._s(t.strings.keyphraseDocumentation)}})],1)},q=[],N=function(){return document.querySelector("#wp-content-wrap").classList.contains("tmce-active")},z=function(){var t=window.tinyMCE.get("content");return N()?t.getContent({format:"raw"}):document.querySelector("#content")?document.querySelector("#content").value:""},K=s("cf27"),B={mixins:[_["c"]],components:{metaboxAnalysisDetail:E},data:function(){return{strings:{addKeyphrase:this.$t.__("Add Focus Keyphrase",this.$td),keyphraseDocumentation:this.$t.sprintf(this.$t.__("Not sure what keyphrases are used for? Check out our documentation for more information. %1$s",this.$td),this.$links.getDocLink(this.$constants.GLOBAL_STRINGS.learnMore,"useKeyphrases",!0))}}},computed:Object(c["a"])(Object(c["a"])({},Object(d["c"])(["currentPost"])),Object(d["e"])(["currentPost"])),methods:{onSaved:function(t){var e=this,s=t.value,o=window.wp.data?window.wp.data.select("core/editor"):null,n=document.body.classList.contains("block-editor-page"),i=n?o.getEditedPostContent():z(),a=n?o.getPermalink():document.querySelector("#editable-post-name")?document.querySelector("#editable-post-name").innerHTML:"";this.currentPost.keyphrases.focus.keyphrase=s,this.currentPost.loading.focus=!0,setTimeout((function(){window.aioseo.truSEO.runAnalysis({postId:e.currentPost.id,postData:e.currentPost,content:i,slug:a,state:Object(c["a"])({},K["a"].state.currentPost)}),e.currentPost.loading.focus=!1,e.setIsDirty()}),2e3)},onDeleted:function(){var t=this,e=window.wp.data?window.wp.data.select("core/editor"):null,s=document.body.classList.contains("block-editor-page"),o=s?e.getEditedPostContent():z(),n=s?e.getPermalink():document.querySelector("#editable-post-name")?document.querySelector("#editable-post-name").innerHTML:"";this.currentPost.keyphrases.focus={},this.currentPost.loading.focus=!0,setTimeout((function(){window.aioseo.truSEO.runAnalysis({postId:t.currentPost.id,postData:t.currentPost,content:o,slug:n,state:Object(c["a"])({},K["a"].state.currentPost)}),t.currentPost.loading.focus=!1,t.setIsDirty()}),2e3)},addKeyphraseEv:function(){var t=this,e=document.getElementsByClassName("add-focus-keyphrase-".concat(this.$root._data.screenContext,"-input")),s=e[0].querySelector(".medium"),o=window.wp.data?window.wp.data.select("core/editor"):null;if(s.value){var n={keyphrase:s.value,score:0,analysis:{}},i=document.body.classList.contains("block-editor-page"),a=i?o.getEditedPostContent():z(),r=i?o.getPermalink():document.querySelector("#editable-post-name")?document.querySelector("#editable-post-name").innerHTML:"";this.$set(this.currentPost.keyphrases,"focus",n),this.currentPost.loading.focus=!0,s.value="",s.blur(),setTimeout((function(){window.aioseo.truSEO.runAnalysis({postId:t.currentPost.id,postData:t.currentPost,content:a,slug:r,state:Object(c["a"])({},K["a"].state.currentPost)}),t.currentPost.loading.focus=!1,t.setIsDirty()}),2e3)}},toggleDescriptionEv:function(t){t.target.parentElement.classList.toggle("toggled")},pressEnter:function(t){var e=document.getElementById("add-focus-keyphrase");t.preventDefault(),e.click()}}},F=B,U=(s("e2aa"),Object(f["a"])(F,M,q,!1,null,null,null)),R=U.exports,G=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"additional-keyphrases-panel"},[t.currentPost.keyphrases.additional.length>0&&t.$isPro&&t.$aioseo.license.isActive?s("div",[t._l(t.currentPost.keyphrases.additional,(function(e,o){return s("core-keyphrase",{key:o,staticClass:"aioseo-keyphrase-tag additional-keyphrase",class:t.selectedKeyphrase===o?"selected":null,attrs:{index:o,keyphrase:e.keyphrase,score:e.score},on:{saved:t.onSaved,deleted:t.onDeleted,selectedKeyphrase:t.onSelectedKeyphrase}})})),s("div",{staticClass:"analysis-wrapper"},[t.currentPost.loading.additional[this.selectedKeyphrase]&&t.currentPost.keyphrases.additional[this.selectedKeyphrase].keyphrase?s("core-loader",{staticClass:"analysis-loading",attrs:{dark:""}}):t._e(),!t.currentPost.loading.additional[this.selectedKeyphrase]&&t.currentPost.keyphrases.additional[this.selectedKeyphrase].keyphrase?s("metaboxAnalysisDetail",{attrs:{analysisItems:t.currentPost.keyphrases.additional[this.selectedKeyphrase].analysis}}):t._e()],1)],2):t._e(),t.$isPro&&t.$aioseo.license.isActive?s("base-input",{class:"add-keyphrase-"+this.$root._data.screenContext+"-input",attrs:{size:"medium"},on:{keydown:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.pressEnter(e)}}}):t._e(),t.$isPro&&t.$aioseo.license.isActive?s("base-button",{staticClass:"add-keyphrase gray small",attrs:{id:"add-additional-keyphrase"},on:{click:t.addKeyphraseEv}},[s("svg-circle-plus",{attrs:{width:"14",height:"14"}}),t._v(" "+t._s(t.strings.addKeyphrase)+" ")],1):t._e(),t.$isPro&&t.$aioseo.license.isActive?t._e():s("core-alert",{staticClass:"inline-upsell",attrs:{type:"blue"}},[s("div",{domProps:{innerHTML:t._s(t.strings.upSell)}})])],1)},H=[],W=(s("a434"),{mixins:[_["c"]],components:{metaboxAnalysisDetail:E},data:function(){return{selectedKeyphrase:0,strings:{additional:this.$t.__("Additional Keyphrases",this.$td),addKeyphrase:this.$t.__("Add Additional Keyphrases",this.$td),upSell:this.$t.sprintf(this.$t.__("Upgrade to %1$s to add related keyphrases. %2$s",this.$td),this.$t.__("Pro",this.$td),this.$links.getDocLink(this.$constants.GLOBAL_STRINGS.learnMore,"useKeyphrases",!0))}}},computed:Object(c["a"])(Object(c["a"])({},Object(d["c"])(["currentPost"])),Object(d["e"])(["currentPost"])),methods:{onSelectedKeyphrase:function(t){this.selectedKeyphrase=t},onSaved:function(t){var e=this,s=t.index,o=t.value,n=window.wp.data?window.wp.data.select("core/editor"):null,i=document.body.classList.contains("block-editor-page"),a=i?n.getEditedPostContent():z(),r=i?n.getPermalink():document.querySelector("#editable-post-name")?document.querySelector("#editable-post-name").innerHTML:"";this.currentPost.keyphrases.additional[s].keyphrase=o,this.currentPost.keyphrases.additional[s].score=0,this.currentPost.loading.additional[s]=!0,setTimeout((function(){window.aioseo.truSEO.runAnalysis({postId:e.currentPost.id,postData:e.currentPost,content:a,slug:r,state:Object(c["a"])({},K["a"].state.currentPost)}),e.currentPost.loading.additional[s]=!1,e.selectedKeyphrase=s,e.setIsDirty()}),2e3)},onDeleted:function(t){this.currentPost.keyphrases.additional.splice(t,1),this.selectedKeyphrase=0,this.setIsDirty()},addKeyphraseEv:function(){var t=this,e=document.getElementsByClassName("add-keyphrase-".concat(this.$root._data.screenContext,"-input")),s=e[0].querySelector(".medium"),o=window.wp.data?window.wp.data.select("core/editor"):null;if(s.value){var n={keyphrase:s.value,score:0},i=this.currentPost.keyphrases.additional.push(n),a=document.getElementsByClassName("keyphrase-name"),r=document.body.classList.contains("block-editor-page"),l=r?o.getEditedPostContent():z(),u=r?o.getPermalink():document.querySelector("#editable-post-name")?document.querySelector("#editable-post-name").innerHTML:"";this.currentPost.loading.additional[0]=!0,s.value="",s.blur(),setTimeout((function(){window.aioseo.truSEO.runAnalysis({postId:t.currentPost.id,postData:t.currentPost,content:l,slug:u,state:Object(c["a"])({},K["a"].state.currentPost)}),a[i].click(),t.setIsDirty()}),2e3)}},pressEnter:function(t){var e=document.getElementById("add-additional-keyphrase");t.preventDefault(),e.click()},created:function(){var t=this;this.currentPost.keyphrases.map((function(e,s){t.currentPost.loading.additional[s]=!1}))}}}),V=W,J=Object(f["a"])(V,G,H,!1,null,null,null),Y=J.exports,Z={mixins:[_["f"],_["j"],_["n"],_["c"]],components:{pageAnalysis:L,focusKeyphrase:R,additionalKeyphrases:Y,metaboxAnalysisDetail:E},props:{disabled:{type:Boolean,default:function(){return!1}},parentComponentContext:String},data:function(){return{titleCount:0,descriptionCount:0,keywords:null,keyphrases:null,selectedKeyphrase:0,editSnippet:!1,truSEO:null,strings:{pageName:this.$t.__("General",this.$td),snippetPreview:this.$t.__("Snippet Preview",this.$td),snippetPreviewContent:this.$t.__("Snippet Preview content here.",this.$td),editSnippet:this.$t.__("Edit Snippet",this.$td),clickToAddTitle:this.$t.__("Click on tags below to insert variables into your title.",this.$td),metaDescription:this.$t.__("Meta Description",this.$td),clickToAddDescription:this.$t.__("Click on tags below to insert variables into your meta description.",this.$td),pillarContent:this.$t.__("Pillar Content",this.$td),pillarContentCopy:this.$t.__("Cornerstone content should be the most important and extensive articles on your site.",this.$td),focusKeyphrase:this.$t.__("Focus Keyphrase",this.$td),additionalKeyphrases:this.$t.__("Additional Keyphrases",this.$td),pageAnalysis:this.$t.__("Page Analysis",this.$td),basicSeo:this.$t.__("Basic SEO",this.$td),title:this.$t.__("Title",this.$td),readability:this.$t.__("Readability",this.$td),lookingForMetaKeywords:this.$t.__("Looking for meta keywords? Click on the advanced tab above to add/edit meta keywords.",this.$td)}}},computed:Object(c["a"])(Object(c["a"])(Object(c["a"])({},Object(d["e"])(["currentPost","options"])),Object(d["e"])("live-tags",["liveTags"])),{},{title:function(){return this.$t.sprintf(this.$t.__("%s Title",this.$td),this.currentPost.type)},toggled:function(){return 1===this.currentPost.pillar_content},displayTruSeoMetaboxCard:function(){return this.options.advanced.truSeo&&"metabox"===this.$root._data.screenContext&&"post"===this.currentPost.context&&"attachment"!==this.currentPost.postType&&"modal"!==this.parentComponentContext&&this.$allowed("aioseo_page_analysis")&&!this.isWooCommerceProduct&&!this.currentPost.isSpecialPage&&!this.isForum},displayTruSeoSidebarKeyphraseCard:function(){return this.options.advanced.truSeo&&"sidebar"===this.$root._data.screenContext&&"modal"!==this.parentComponentContext&&this.$allowed("aioseo_page_analysis")&&!this.currentPost.isSpecialPage&&!this.isForum},displayTruSeoSidebarAnalysisCard:function(){return this.options.advanced.truSeo&&"sidebar"===this.$root._data.screenContext&&this.currentPost.page_analysis&&"modal"!==this.parentComponentContext&&this.$allowed("aioseo_page_analysis")&&!this.currentPost.isSpecialPage&&!this.isForum},isWooCommerceProduct:function(){return!(!window.aioseo.data.isWooCommerceActive||"product"!==this.currentPost.postType)},isForum:function(){return!("forum"!==this.currentPost.postType&&"topic"!==this.currentPost.postType&&"reply"!==this.currentPost.postType||!window.aioseo.data.isBBPressActive)}}),methods:Object(c["a"])(Object(c["a"])({},Object(d["b"])(["changeGeneralPreview","openModal"])),{},{hideKeywordsLooking:function(){this.options.searchAppearance.advanced.keywordsLooking=!1,this.saveChanges()},isMobilePreviewEv:function(t){this.changeGeneralPreview(t)},editSnippetEv:function(){this.editSnippet=!this.editSnippet,this.$set(this.currentPost.tabs,"tab_modal","general"),this.openModal(!0)},setContent:function(){var t=this,e=function(){return Object(m["a"])((function(){var e=window.wp.data?window.wp.data.select("core/editor"):null;t.setIsDirty(),"post"===t.currentPost.context&&"attachment"!==t.currentPost.postType&&"product"!==t.currentPost.postType&&e&&t.runPageAnalysis({postId:t.currentPost.id,postData:t.currentPost,content:e.getEditedPostContent(),slug:e.getPermalink()})}),1e3)};e()},getDefaultTags:function(t){switch(t){case"title":return"post"===this.currentPost.context?["post_title","separator_sa","site_title"]:["taxonomy_title","separator_sa","site_title"];case"description":return"post"===this.currentPost.context?"attachment"===this.currentPost.postType?["attachment_caption","separator_sa","site_title"]:"product"===this.currentPost.postType?["post_excerpt","post_content"]:["post_excerpt","post_content","separator_sa"]:["taxonomy_title","separator_sa","taxonomy_description"]}}}),mounted:function(){this.keyphrases=this.currentPost.keyphrases,"post"!==this.currentPost.context||this.currentPost.keyphrases.length||(this.selectedKeyphrase=-1)},created:function(){this.currentPost.metaDefaults&&(this.currentPost.title||this.$set(this.currentPost,"title",this.currentPost.metaDefaults.title),this.currentPost.description||this.$set(this.currentPost,"description",this.currentPost.metaDefaults.description))}},Q=Z,X=(s("40ea"),Object(f["a"])(Q,w,C,!1,null,null,null)),tt=X.exports,et=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-post-schema-view"},[t.isUnlicensed?t._e():s("schema"),t.isUnlicensed?s("schema-lite"):t._e()],1)},st=[],ot=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-tab-content aioseo-post-schema-lite"},[s("core-settings-row",{attrs:{name:t.strings.schemaType},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{staticClass:"schema-type",attrs:{disabled:"",size:"medium",options:[{value:"default",label:"Default (Set in Search Appearance)"},{value:"none",label:"None"},{value:"Article",label:"Article"}],value:{value:"Article",label:"Article"}}})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.articleType,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{disabled:"",name:"articleType",value:"BlogPosting",options:[{label:t.strings.article,value:"Article"},{label:t.strings.blogPost,value:"BlogPosting"},{label:t.strings.newsArticle,value:"NewsArticle"}]}})]},proxy:!0}])}),t.$isPro&&t.$aioseo.license.isActive?t._e():s("core-alert",{staticClass:"schema-upsell inline-upsell",attrs:{type:"blue"}},[s("div",{domProps:{innerHTML:t._s(t.strings.schemaUpsell)}})])],1)},nt=[],it={data:function(){return{strings:{schemaType:this.$t.__("Schema Type",this.$td),articleType:this.$t.__("Article Type",this.$td),article:this.$t.__("Article",this.$td),blogPost:this.$t.__("Blog Post",this.$td),newsArticle:this.$t.__("News Article",this.$td),schemaUpsell:this.$t.sprintf(this.$t.__("This feature is only for licensed %1$s %2$s users. %3$s",this.$td),"<strong>".concat("AIOSEO"," Pro</strong>"),this.$t.__("Pro",this.$td),this.$links.getUpsellLink("post-schema",this.$constants.GLOBAL_STRINGS.learnMore,null,!0))}}},computed:Object(c["a"])({},Object(d["e"])(["currentPost"]))},at=it,rt=(s("5282"),Object(f["a"])(at,ot,nt,!1,null,null,null)),ct=rt.exports,lt={components:{Schema:ct,SchemaLite:ct},computed:Object(c["a"])({},Object(d["c"])(["isUnlicensed"]))},ut=lt,dt=Object(f["a"])(ut,et,st,!1,null,null,null),pt=dt.exports,mt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-tab-content aioseo-post-social"},[s("core-settings-row",{staticClass:"mobile-radio-buttons",scopedSlots:t._u([{key:"content",fn:function(){return[s("core-main-tabs",{attrs:{tabs:t.tabs,showSaveButton:!1,active:t.initTab,internal:""},on:{changed:function(e){return t.processChangeTab(e)}}}),"metabox"===t.$root._data.screenContext||"modal"===t.parentComponentContext?s("base-radio-toggle",{staticClass:"circle",attrs:{value:t.currentPost.socialMobilePreview,name:"previewSocialIsMobile",options:[{label:"desktop",value:!1,activeClass:"dark",slot:"desktop"},{label:"mobile",value:!0,slot:"mobile"}]},on:{input:t.isMobilePreviewEv},scopedSlots:t._u([{key:"desktop",fn:function(){return[s("svg-desktop")]},proxy:!0},{key:"mobile",fn:function(){return[s("svg-mobile")]},proxy:!0}],null,!1,3417581673)}):t._e()]},proxy:!0}])}),s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(t.initTab,{tag:"component"})],1),"modal"!==this.parentComponentContext?s("social-side-bar"):t._e()],1)},gt=[],ht=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"tab-facebook"},[s("core-settings-row",{attrs:{name:t.strings.tabName},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-facebook-preview",{class:{ismobilecard:t.currentPost.socialMobilePreview},attrs:{image:t.currentPost.og_image_custom_url||t.currentPost.og_image},scopedSlots:t._u([{key:"site-url",fn:function(){return[s("span",[t._v(t._s(t.liveTags.permalink))])]},proxy:!0},{key:"site-title",fn:function(){return[s("span",[t._v(t._s(t.truncate(t.parseTags(t.currentPost.og_title||t.currentPost.tags.title||"#post_title #separator_sa #site_title"),100)))])]},proxy:!0},{key:"site-description",fn:function(){return[s("span",[t._v(t._s(t.truncate(t.parseTags(t.currentPost.og_description||t.currentPost.tags.description||"#post_content"))))])]},proxy:!0}])})]},proxy:!0}])}),s("core-settings-row",{staticClass:"facebook-title-settings",attrs:{name:t.strings.facebookTitle,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{staticClass:"facebook-meta-input",attrs:{"line-numbers":!1,single:"","tags-context":(t.currentPost.postType||t.currentPost.termType)+"Title","default-tags":t.$tags.getDefaultTags("term"===t.currentPost.context?"taxonomies":null,null,"title")},on:{counter:function(e){return t.updateCount(e,"titleCount")},input:t.setIsDirty},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddSiteName)+" ")]},proxy:!0}]),model:{value:t.currentPost.og_title,callback:function(e){t.$set(t.currentPost,"og_title",e)},expression:"currentPost.og_title"}}),s("div",{staticClass:"max-recommended-count",domProps:{innerHTML:t._s(t.maxRecommendedCount(t.titleCount,95))}})]},proxy:!0}])}),s("core-settings-row",{staticClass:"facebook-description-settings",attrs:{name:t.strings.facebookDescription,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{staticClass:"facebook-meta-input",attrs:{"line-numbers":!1,description:"","tags-context":(t.currentPost.postType||t.currentPost.termType)+"Description","default-tags":t.$tags.getDefaultTags("term"===t.currentPost.context?"taxonomies":null,null,"description")},on:{counter:function(e){return t.updateCount(e,"descriptionCount")},input:t.setIsDirty},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddHomePageDescription)+" ")]},proxy:!0}]),model:{value:t.currentPost.og_description,callback:function(e){t.$set(t.currentPost,"og_description",e)},expression:"currentPost.og_description"}}),s("div",{staticClass:"max-recommended-count",domProps:{innerHTML:t._s(t.maxRecommendedCount(t.descriptionCount,200))}})]},proxy:!0}])}),s("core-settings-row",{staticClass:"facebook-image-source",attrs:{name:t.strings.imageSource,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{attrs:{size:"medium",options:t.imageSourceOptionsFiltered,value:t.getImageSourceOptionFiltered(t.currentPost.og_image_type)},on:{input:function(e){return t.saveImageType(e.value)}}})]},proxy:!0}])}),"custom"===t.currentPost.og_image_type?s("core-settings-row",{attrs:{name:t.strings.customFieldsName,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-input",{attrs:{type:"text",size:"medium",placeholder:t.strings.placeholder},on:{input:t.setIsDirty},model:{value:t.currentPost.og_image_custom_fields,callback:function(e){t.$set(t.currentPost,"og_image_custom_fields",e)},expression:"currentPost.og_image_custom_fields"}})]},proxy:!0}],null,!1,1200630708)}):t._e(),"custom_image"===t.currentPost.og_image_type?s("core-settings-row",{staticClass:"facebook-image",attrs:{name:t.strings.facebookImage},scopedSlots:t._u([{key:"content",fn:function(){return[s("div",{staticClass:"facebook-image-upload"},[s("base-input",{attrs:{size:"medium",placeholder:t.strings.pasteYourImageUrl},on:{input:t.setIsDirty},model:{value:t.currentPost.og_image_custom_url,callback:function(e){t.$set(t.currentPost,"og_image_custom_url",e)},expression:"currentPost.og_image_custom_url"}}),s("base-button",{staticClass:"insert-image",attrs:{size:"medium",type:"black"},on:{click:function(e){return t.openUploadModal("facebookImage",["currentPost","og_image_custom_url"])}}},[s("svg-circle-plus"),t._v(" "+t._s(t.strings.uploadOrSelectImage)+" ")],1),s("base-button",{staticClass:"remove-image",attrs:{size:"medium",type:"gray"},on:{click:function(e){t.currentPost.og_image_custom_url=null}}},[t._v(" "+t._s(t.strings.remove)+" ")])],1),s("div",{staticClass:"aioseo-description"},[t._v(" "+t._s(t.strings.minimumSize)+" ")]),t.canShowImage(t.currentPost.og_image_custom_url)?s("img",{attrs:{src:t.currentPost.og_image_custom_url}}):t._e()]},proxy:!0}],null,!1,4059947824)}):t._e(),s("core-settings-row",{staticClass:"facebook-video",attrs:{name:t.strings.video,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-input",{attrs:{type:"text",size:"medium"},model:{value:t.currentPost.og_video,callback:function(e){t.$set(t.currentPost,"og_video",e)},expression:"currentPost.og_video"}})]},proxy:!0}])}),s("core-settings-row",{staticClass:"facebook-object-type",attrs:{name:t.strings.facebookObjectType,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{attrs:{size:"medium","open-direction":"top",options:t.objectTypeOptions,"group-label":"groupLabel","group-values":"options",value:t.getObjectTypeOptions(t.currentPost.og_object_type)},on:{input:function(e){return t.setObjectType(e.value)}}})]},proxy:!0}])}),t.shouldShowArticleSection?s("core-settings-row",{attrs:{name:t.strings.articleSection,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-input",{attrs:{type:"text",size:"medium"},model:{value:t.currentPost.og_article_section,callback:function(e){t.$set(t.currentPost,"og_article_section",e)},expression:"currentPost.og_article_section"}})]},proxy:!0}],null,!1,1205905290)}):t._e(),t.shouldShowArticleSection?s("core-settings-row",{attrs:{name:t.strings.articleTags,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{attrs:{multiple:"",taggable:"",options:t.getJsonValue(t.currentPost.og_article_tags)||[],value:t.getJsonValue(t.currentPost.og_article_tags)||[],"tag-placeholder":t.strings.tagPlaceholder},on:{input:function(e){return t.currentPost.og_article_tags=t.setJsonValue(e)}}})]},proxy:!0}],null,!1,2497302637)}):t._e()],1)},_t=[],yt=(s("4160"),s("159b"),{mixins:[_["a"],_["b"],_["d"],_["f"],_["m"],_["o"],_["c"]],props:{isMobilePreview:{type:Boolean,default:function(){return!1}}},data:function(){return{titleCount:0,descriptionCount:0,strings:{tabName:this.$t.__("Facebook Preview",this.$td),imageSource:this.$t.__("Image Source",this.$td),customFieldsName:this.$t.__("Custom Field Name",this.$td),video:this.$t.__("Video URL",this.$td),width:this.$t.__("Width",this.$td),height:this.$t.__("Height",this.$td),facebookObjectType:this.$t.__("Object Type",this.$td),facebookImage:this.$t.__("Facebook Image",this.$td),facebookTitle:this.$t.__("Facebook Title",this.$td),facebookDescription:this.$t.__("Facebook Description",this.$td),uploadOrSelectImage:this.$t.__("Upload or Select Image",this.$td),pasteYourImageUrl:this.$t.__("Paste your image URL or select a new image",this.$td),minimumSize:this.$t.__("Minimum size: 200px x 200px, ideal ratio 1.91:1, 5MB max. (eg: 1640px x 856px or 3280px x 1712px for retina screens)",this.$td),remove:this.$t.__("Remove",this.$td),clickToAddSiteName:this.$t.__("Click on tags below to insert variables into your site name.",this.$td),clickToAddHomePageDescription:this.$t.__("Click on tags below to insert variables into your meta description.",this.$td),articleSection:this.$t.__("Article Section",this.$td),articleTags:this.$t.__("Article Tags",this.$td),tagPlaceholder:this.$t.__("Press enter to create an article tag",this.$td)}}},computed:Object(c["a"])(Object(c["a"])(Object(c["a"])({},Object(d["e"])("live-tags",["liveTags"])),Object(d["e"])(["currentPost","options"])),{},{objectTypeOptions:function(){return[{groupLabel:this.$t.__("Default",this.$td),options:[{label:this.$t.__("Default Object Type (Set in Social Networks)",this.$td),value:"default"}]}].concat(this.$constants.OG_TYPE_OPTIONS)},shouldShowArticleSection:function(){var t="term"===this.currentPost.context?"taxonomies":"postTypes";return"article"===this.currentPost.og_object_type||"default"===this.currentPost.og_object_type&&"article"===this.options.social.facebook.general.dynamic[t][this.currentPost.postType||this.currentPost.termType].objectType}}),methods:{scrollToElement:function(){var t=document.getElementsByClassName("component-wrapper")[0];setTimeout((function(){t&&(t.firstChild.scrollTop=0)}),10)},saveImageType:function(t){this.$set(this.currentPost,"og_image_type",t),this.$store.commit("isDirty",!0)},getObjectTypeOptions:function(t){var e=null;return this.objectTypeOptions.forEach((function(s){var o=s.options.find((function(e){return e.value===t}));o&&(e=o)})),e},setObjectType:function(t){this.$set(this.currentPost,"og_object_type",t),this.$store.commit("isDirty",!0)}},mounted:function(){this.scrollToElement()}}),bt=yt,ft=(s("98a3"),Object(f["a"])(bt,ht,_t,!1,null,null,null)),vt=ft.exports,Pt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"tab-twitter"},[s("core-settings-row",{attrs:{name:t.strings.twitterPreview},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-twitter-preview",{class:{ismobilecard:t.currentPost.socialMobilePreview},attrs:{image:t.currentPost.twitter_use_og?t.currentPost.og_image_custom_url||t.currentPost.og_image:t.currentPost.twitter_image_custom_url||t.currentPost.twitter_image,card:t.currentPost.twitter_card},scopedSlots:t._u([{key:"site-title",fn:function(){return[s("span",[t._v(t._s(t.previewTitle))])]},proxy:!0},{key:"site-description",fn:function(){return[s("span",[t._v(t._s(t.previewDescription))])]},proxy:!0}])})]},proxy:!0}])}),s("core-settings-row",{staticClass:"use-facebook",attrs:{name:t.strings.useFB,leftSize:"5",rightSize:"7"},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-toggle",{on:{input:t.setIsDirty},model:{value:t.currentPost.twitter_use_og,callback:function(e){t.$set(t.currentPost,"twitter_use_og",e)},expression:"currentPost.twitter_use_og"}})]},proxy:!0}])}),t.currentPost.twitter_use_og?t._e():s("core-settings-row",{staticClass:"twitter-title-settings",attrs:{name:t.strings.twitterTitle,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{staticClass:"twitter-meta-input",attrs:{"line-numbers":!1,single:"","tags-context":(t.currentPost.postType||t.currentPost.termType)+"Title","default-tags":t.$tags.getDefaultTags("term"===t.currentPost.context?"taxonomies":null,null,"title")},on:{counter:function(e){return t.updateCount(e,"titleCount")},input:t.setIsDirty},model:{value:t.currentPost.twitter_title,callback:function(e){t.$set(t.currentPost,"twitter_title",e)},expression:"currentPost.twitter_title"}}),s("div",{staticClass:"max-recommended-count",domProps:{innerHTML:t._s(t.maxRecommendedCount(t.titleCount,70))}})]},proxy:!0}],null,!1,4187010693)}),t.currentPost.twitter_use_og?t._e():s("core-settings-row",{staticClass:"twitter-description-settings",attrs:{name:t.strings.twitterDescription,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{staticClass:"twitter-meta-input",attrs:{"line-numbers":!1,description:"","tags-context":(t.currentPost.postType||t.currentPost.termType)+"Description","default-tags":t.$tags.getDefaultTags("term"===t.currentPost.context?"taxonomies":null,null,"description")},on:{counter:function(e){return t.updateCount(e,"descriptionCount")},input:t.setIsDirty},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddHomePageDescription)+" ")]},proxy:!0}],null,!1,3376949532),model:{value:t.currentPost.twitter_description,callback:function(e){t.$set(t.currentPost,"twitter_description",e)},expression:"currentPost.twitter_description"}}),s("div",{staticClass:"max-recommended-count",domProps:{innerHTML:t._s(t.maxRecommendedCount(t.descriptionCount,200))}})]},proxy:!0}],null,!1,577802586)}),t.currentPost.twitter_use_og?t._e():s("core-settings-row",{staticClass:"twitter-image-source",attrs:{name:t.strings.imageSource,leftSize:"5",rightSize:"7",align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{attrs:{size:"medium",options:t.imageSourceOptionsFiltered,value:t.getImageSourceOptionFiltered(t.currentPost.twitter_image_type)},on:{input:function(e){return t.saveTwitterImageType(e.value)}}})]},proxy:!0}],null,!1,45254494)}),t.currentPost.twitter_use_og||"custom"!==t.currentPost.twitter_image_type?t._e():s("core-settings-row",{staticClass:"twitter-custom-field",attrs:{name:t.strings.customFieldsName,leftSize:"5",rightSize:"7",align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-input",{attrs:{type:"text",size:"medium",placeholder:t.strings.placeholder},on:{input:t.setIsDirty},model:{value:t.currentPost.twitter_image_custom_fields,callback:function(e){t.$set(t.currentPost,"twitter_image_custom_fields",e)},expression:"currentPost.twitter_image_custom_fields"}})]},proxy:!0}],null,!1,2513842721)}),t.currentPost.twitter_use_og||"custom_image"!==t.currentPost.twitter_image_type?t._e():s("core-settings-row",{staticClass:"twitter-image",attrs:{name:t.strings.twitterImage},scopedSlots:t._u([{key:"content",fn:function(){return[s("div",{staticClass:"twitter-image-upload"},[s("base-input",{attrs:{size:"medium",placeholder:t.strings.pasteYourImageUrl},on:{input:t.setIsDirty},model:{value:t.currentPost.twitter_image_custom_url,callback:function(e){t.$set(t.currentPost,"twitter_image_custom_url",e)},expression:"currentPost.twitter_image_custom_url"}}),s("base-button",{staticClass:"insert-image",attrs:{size:"medium",type:"black"},on:{click:function(e){return t.openUploadModal("twitterImage",["currentPost","twitter_image_custom_url"])}}},[s("svg-circle-plus"),t._v(" "+t._s(t.strings.uploadOrSelectImage)+" ")],1),s("base-button",{staticClass:"remove-image",attrs:{size:"medium",type:"gray"},on:{click:function(e){t.currentPost.twitter_image_custom_url=null}}},[t._v(" "+t._s(t.strings.remove)+" ")])],1),s("div",{staticClass:"aioseo-description"},["summary"===t.currentPost.twitter_card?s("span",[t._v(t._s(t.strings.minimumSizeSummary))]):t._e(),"summary_large_image"===t.currentPost.twitter_card?s("span",[t._v(t._s(t.strings.minimumSizeSummaryWithLarge))]):t._e()]),t.canShowImage(t.currentPost.twitter_image_custom_url)?s("img",{attrs:{src:t.currentPost.twitter_image_custom_url}}):t._e()]},proxy:!0}],null,!1,3377365394)}),s("core-settings-row",{staticClass:"twitter-card-type",attrs:{name:t.strings.twitterCardType,leftSize:"5",rightSize:"7",align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{attrs:{size:"medium","open-direction":"top",options:t.twitterCards,value:t.getCardOptions(t.currentPost.twitter_card)},on:{input:function(e){return t.cardSelect(e.value)}}})]},proxy:!0}])})],1)},wt=[],Ct={mixins:[_["a"],_["b"],_["f"],_["m"],_["o"],_["c"]],props:{isMobilePreview:{type:Boolean,default:function(){return!1}}},data:function(){return{titleCount:0,descriptionCount:0,strings:{twitterPreview:this.$t.__("Twitter Preview",this.$td),useFB:this.$t.__("Use Data from Facebook Tab",this.$td),imageSource:this.$t.__("Image Source",this.$td),customFieldsName:this.$t.__("Custom Field Name",this.$td),twitterImage:this.$t.__("Twitter Image",this.$td),twitterTitle:this.$t.__("Twitter Title",this.$td),twitterDescription:this.$t.__("Twitter Description",this.$td),twitterCardType:this.$t.__("Twitter Card Type",this.$td),pasteYourImageUrl:this.$t.__("Paste your image URL or select a new image",this.$td),uploadOrSelectImage:this.$t.__("Upload or Select Image",this.$td),remove:this.$t.__("Remove",this.$td),minimumSizeSummary:this.$t.__("Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and GIF formats only.",this.$td),minimumSizeSummaryWithLarge:this.$t.__("Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and GIF formats only.",this.$td)}}},computed:Object(c["a"])(Object(c["a"])({},Object(d["e"])(["currentPost","options"])),{},{twitterCards:function(){return[{label:this.$t.__("Default (Set under Social Networks)",this.$td),value:"default"},{label:this.$t.__("Summary",this.$td),value:"summary"},{label:this.$t.__("Summary with Large Image",this.$td),value:"summary_large_image"}]},previewTitle:function(){var t=this.currentPost.twitter_use_og?this.currentPost.og_title:this.currentPost.twitter_title;return this.truncate(this.parseTags(t||this.currentPost.tags.title||"#post_title #separator_sa #site_title"),100)},previewDescription:function(){var t=this.currentPost.twitter_use_og?this.currentPost.og_description:this.currentPost.twitter_description;return this.truncate(this.parseTags(t||this.currentPost.tags.description||"#post_content"))}}),methods:{getCardOptions:function(t){return this.twitterCards.find((function(e){return e.value===t}))},cardSelect:function(t){this.$set(this.currentPost,"twitter_card",t),this.$store.commit("isDirty",!0)},scrollToElement:function(){var t=document.getElementsByClassName("component-wrapper")[0];setTimeout((function(){t&&(t.firstChild.scrollTop=0)}),10)},saveTwitterImageType:function(t){this.$set(this.currentPost,"twitter_image_type",t),this.$store.commit("isDirty",!0)}},mounted:function(){this.scrollToElement()}},$t=Ct,kt=(s("81a1"),Object(f["a"])($t,Pt,wt,!1,null,null,null)),St=kt.exports,xt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return"sidebar"===t.$root._data.screenContext?s("core-settings-row",{staticClass:"snippet-description-row open-social-copy",attrs:{name:t.strings.metaDescription},scopedSlots:t._u([{key:"content",fn:function(){return[s("p",[t._v(t._s(t.strings.sidebarCopy))]),s("base-button",{staticClass:"open-social-modal gray small",on:{click:t.openModalEv}},[s("svg-pencil"),t._v(" "+t._s(t.strings.editSnippet)+" ")],1)]},proxy:!0}],null,!1,3842645279)}):t._e()},Tt=[],Ot={data:function(){return{strings:{sidebarCopy:this.$t.__("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.",this.$td),editSnippet:this.$t.__("Preview & Edit",this.$td)}}},methods:Object(c["a"])(Object(c["a"])({},Object(d["b"])(["openModal"])),{},{openModalEv:function(){this.$store.commit("changeTabSettings",{setting:"tab_modal",value:"social"}),this.openModal(!0)}})},jt=Ot,Et=(s("e6ba"),Object(f["a"])(jt,xt,Tt,!1,null,null,null)),At=Et.exports,Dt={components:{Facebook:vt,Twitter:St,SocialSideBar:At},props:{parentComponentContext:String},data:function(){return{strings:{pageName:this.$t.__("Social",this.$td)},tabs:[{slug:"facebook",name:this.$t.__("Facebook",this.$td)},{slug:"twitter",name:this.$t.__("Twitter",this.$td)}]}},computed:Object(c["a"])(Object(c["a"])({},Object(d["e"])(["currentPost","options"])),{},{initTab:function(){return Object(p["a"])()["social-tab"]?Object(p["a"])()["social-tab"]:"modal"===this.parentComponentContext?this.currentPost.tabs.tab_modal_social:this.currentPost.tabs.tab_social}}),methods:Object(c["a"])(Object(c["a"])({},Object(d["b"])(["changeSocialPreview"])),{},{isMobilePreviewEv:function(t){this.changeSocialPreview(t)},processChangeTab:function(t){"modal"===this.parentComponentContext?this.$set(this.currentPost.tabs,"tab_modal_social",t):this.$set(this.currentPost.tabs,"tab_social",t)}})},It=Dt,Lt=(s("8dbd"),Object(f["a"])(It,mt,gt,!1,null,null,null)),Mt=Lt.exports,qt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-modal-content"},[s("core-settings-row",{staticClass:"mobile-radio-buttons",scopedSlots:t._u([{key:"content",fn:function(){return[s("core-main-tabs",{attrs:{tabs:t.getTabs,showSaveButton:!1,active:t.currentPost.tabs.tab_modal,internal:""},on:{changed:function(e){return t.processChangeTab(e)}}})]},proxy:!0}])}),s("div",{staticClass:"component-wrapper"},[s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(this.activeTab,{tag:"component",attrs:{parentComponentContext:"modal"}})],1)],1)],1)},Nt=[],zt={components:{General:tt,Social:Mt},data:function(){return{activeTab:"general",strings:{pageName:this.$t.__("Modal Content",this.$td)},tabs:[{slug:"general",icon:"svg-settings",name:"General"},{slug:"social",icon:"svg-share",name:"Social"}]}},computed:Object(c["a"])(Object(c["a"])({},Object(d["e"])(["currentPost"])),{},{getTabs:function(){var t=this;return this.tabs.filter((function(e){return t.$allowed("aioseo_page_".concat(e.slug,"_settings"))}))}}),methods:Object(c["a"])(Object(c["a"])({},Object(d["b"])(["changeTabSettings"])),{},{processChangeTab:function(t){this.activeTab=t,this.changeTabSettings({setting:"tab_modal",value:t})}})},Kt=zt,Bt=(s("483d"),Object(f["a"])(Kt,qt,Nt,!1,null,null,null)),Ft=Bt.exports,Ut={components:{Advanced:P,General:tt,Schema:pt,Social:Mt,ModalContent:Ft},data:function(){return{activeTab:"general",modal:!1,strings:{pageName:"General",modalTitle:this.$t.__("Preview Snippet Editor",this.$td)},tabs:[{slug:"general",icon:"svg-settings",name:"General"},{slug:"social",icon:"svg-share",name:"Social"},{slug:"schema",icon:"svg-receipt",name:"Schema"},{slug:"advanced",icon:"svg-build",name:"Advanced"}]}},watch:{currentPost:{deep:!0,handler:function(){var t=this;Object(m["a"])((function(){return t.savePostState()}),500)}}},computed:Object(c["a"])(Object(c["a"])({},Object(d["e"])(["currentPost"])),{},{initTab:function(){return"sidebar"===this.$root._data.screenContext?this.currentPost.tabs.tab_sidebar&&this.$allowed("aioseo_page_".concat(this.currentPost.tabs.tab_sidebar,"_settings"))?this.currentPost.tabs.tab_sidebar:this.$allowed("aioseo_page_general_settings")?"general":this.$allowed("aioseo_page_social_settings")?"social":this.$allowed("aioseo_page_schema_settings")?"schema":"advanced":this.currentPost.tabs.tab&&this.$allowed("aioseo_page_".concat(this.currentPost.tabs.tab,"_settings"))?this.currentPost.tabs.tab:this.$allowed("aioseo_page_general_settings")?"general":this.$allowed("aioseo_page_social_settings")?"social":this.$allowed("aioseo_page_schema_settings")?"schema":"advanced"},getTabs:function(){var t=this;return"term"===this.currentPost.context||this.currentPost.isWooCommercePage?this.tabs.filter((function(e){return"schema"!==e.slug&&t.$allowed("aioseo_page_".concat(e.slug,"_settings"))})):this.tabs.filter((function(e){return"general"===e.slug&&(t.$allowed("aioseo_page_analysis")||t.$allowed("aioseo_page_".concat(e.slug,"_settings")))||t.$allowed("aioseo_page_".concat(e.slug,"_settings"))}))}}),methods:Object(c["a"])(Object(c["a"])({},Object(d["b"])(["openModal","updateState"])),{},{savePostState:function(){this.updateState(this.currentPost);var t=document.querySelector("#aioseo-post-settings");if(t&&(t.value=JSON.stringify(this.currentPost)),"term"===this.currentPost.context){var e=document.querySelector("#aioseo-term-settings");e&&(e.value=JSON.stringify(this.currentPost))}},processChangeTab:function(t){switch(this.activeTab=t,this.$root._data.screenContext){case"sidebar":this.$set(this.currentPost.tabs,"tab_sidebar",t);break;default:this.$set(this.currentPost.tabs,"tab",t);break}},closeModal:function(){this.openModal(!1)}}),created:function(){switch(this.modal=Object(p["a"])()["aioseo-modaltab"]||this.modal,this.modal&&(this.$set(this.currentPost.tabs,"tab_modal",this.modal),this.openModal(!0),setTimeout((function(){Object(p["b"])("aioseo-modaltab")}),500)),this.$root._data.screenContext){case"sidebar":this.activeTab=Object(p["a"])()["aioseo-sidebartab"]||this.initTab,this.$set(this.currentPost.tabs,"tab_sidebar",this.activeTab),setTimeout((function(){Object(p["b"])("aioseo-sidebartab")}),500);break;default:this.activeTab=Object(p["a"])()["aioseo-tab"]||this.initTab,this.$set(this.currentPost.tabs,"tab",this.activeTab),setTimeout((function(){Object(p["b"])("aioseo-tab")}),500);break}}},Rt=Ut,Gt=(s("549f"),Object(f["a"])(Rt,l,u,!1,null,null,null)),Ht=Gt.exports,Wt=s("bfad"),Vt=s("4245"),Jt=s.n(Vt),Yt=(s("c975"),s("1276"),function(){var t=window.aioseo.options.searchAppearance.dynamic.postTypes.post.customFields;if(!t)return"";var e=t.replace(/\n/g," ").split(" "),s=[],o=["INPUT","TEXTAREA","IMG"];e.forEach((function(t){var n=document.querySelector("#".concat(t)),i=document.querySelectorAll("#the-list > tr"),a=document.querySelectorAll(".acf-field");n&&-1!==o.indexOf(n.tagName)?n.closest(".acf-field")||s.push(n):i.length&&i.forEach((function(t){var n=t.querySelector("#".concat(t.id,"-key")),i=t.querySelector("#".concat(t.id,"-value"));i&&-1!==o.indexOf(i.tagName)&&-1!==e.indexOf(n)&&s.push(i)})),a.length&&a.forEach((function(e){if(t!==e.dataset.name)return"";var n=e.querySelector('[name="acf['.concat(e.dataset.key,']"]'));return"image"===e.dataset.type&&(n=e.querySelector(".has-value img")),"gallery"===e.dataset.type&&(n=e.querySelector(".acf-gallery-attachment img")),n?n.type&&"hidden"===n.type?"":void(-1!==o.indexOf(n.tagName)&&s.push(n)):""}))}));var n="";return s.length&&s.forEach((function(t){var e="";if(t.value&&(e=t.value),"IMG"===t.tagName&&t.src){var s=t.alt?'alt="'.concat(t.alt,'"'):"";e='<img src="'.concat(t.src,'" ').concat(s,">")}t.value&&t.type&&"url"===t.type&&(e='<a href="'.concat(e,'">').concat(e,"</a>")),e&&(n+=e)})),n}),Zt=Yt,Qt={mixins:[_["n"]],props:{restUrl:String},components:{"main-view":Ht},data:function(){return{isAnalyzing:!1}},computed:Object(c["a"])(Object(c["a"])(Object(c["a"])({},Object(d["e"])(["currentPost","options","pong"])),Object(d["e"])("live-tags",["permalinkSlug","terms"])),{},{isWooCommerceProduct:function(){return!(!window.aioseo.data.isWooCommerceActive||"product"!==this.currentPost.postType)}}),methods:Object(c["a"])(Object(c["a"])(Object(c["a"])({},Object(d["b"])(["savePost","ping"])),Object(d["d"])("live-tags",["updateTaxonomyTitle","updateTaxonomyDescription","updatePermalinkSlug","updatePermalink","updatePostTitle","updatePostContent","updatePostExcerpt","updateAttachmentCaption","updateAltTag","updateCategories","updateWooCommerceBrand","updateWooCommerceSku","updateWooCommercePrice"])),{},{classicEditor:function(){var t=this;if(window.tinyMCE){var e="",s="",o=!1,n=window.aioseo.options.advanced.truSeo,i=window.tinyMCE.get("content");i&&(this.updatePostContent(z()+Zt()),i.on("keyup",(function(){t.updatePostContent(z()+Zt())}))),window.setInterval((function(){var o=document.querySelectorAll('#post input[name="post_category[]"]:checked');o.length?(e!==o[0].parentNode.innerText&&(e=o[0].parentNode.innerText,t.updateTaxonomyTitle(o[0].parentNode.innerText)),s=Array.from(o).map((function(t){return t.parentNode.innerText})).join(", "),t.updateCategories(s)):""!==e&&(e=s="",t.updateTaxonomyTitle(""),t.updateCategories(""))}),1e3),setInterval((function(){t.isAnalyzing&&(t.isAnalyzing=!1),o&&(o=!1)}),2e3),this.isWooCommerceProduct||setInterval((function(){if(window.tinyMCE&&window.tinyMCE.activeEditor.isDirty()&&n&&!window.aioseo.currentPost.isSpecialPage&&"attachment"!==window.aioseo.currentPost.postType&&!t.isAnalyzing){var e=Object(c["a"])({},K["a"].state.currentPost),s=z()+Zt(),o=document.querySelector("#editable-post-name")?document.querySelector("#editable-post-name").innerHTML:"";t.isAnalyzing=!0,window.aioseo.truSEO.runAnalysis({postId:e.id,postData:e,content:s,slug:o,state:e})}}),1e3)}},blockEditor:function(){var t=this,e=window.wp.data.select("core/editor"),s=window.wp.data.select("core"),o=e.getCurrentPost();this.updatePostTitle(o.title),this.updatePostContent(o.content+Zt()),this.updatePostExcerpt(o.excerpt),this.updatePermalinkSlug(o.slug),this.updatePermalink(this.currentPost.permalink);var n=o.title,i=o.excerpt,a=o.content+Zt(),r=o.slug,c="",l=e.getEditedPostContent()+Zt(),u=!1;setInterval((function(){t.isAnalyzing&&(t.isAnalyzing=!1),u&&(u=!1)}),2e3),window.wp.data.subscribe((function(){var o=e.getEditedPostAttribute("title");n!==o&&(n=o,t.updatePostTitle(o));var d=e.getEditedPostAttribute("content")+Zt();a!==d&&(a=d,t.updatePostContent(d));var p=e.getEditedPostAttribute("excerpt");i!==p&&(i=p,t.updatePostExcerpt(p));var m=e.getEditedPostAttribute("slug");t.permalinkSlug||t.updatePermalinkSlug(m),r!==m&&(r=m,t.updatePermalink(t.currentPost.permalink.replace("/".concat(t.permalinkSlug),"/".concat(m.replace(/ /gi,"-").replace(/[^a-z0-9-]/gi,"").toLowerCase()))));var g=s.getEntityRecords("taxonomy","category"),h=e.getEditedPostAttribute("categories");if(h&&h.length&&g){var _=g.find((function(t){return t.id===h[0]}));_&&c!==_.name&&(c=_.name,t.updateTaxonomyTitle(_.name));var y=g.filter((function(t){return h.includes(t.id)})).map((function(t){return t.name})).join(", ");t.updateCategories(y)}else""!==c&&(c="",t.updateTaxonomyTitle(c));if(t.options.advanced.truSeo){var b=e.getEditedPostContent()+Zt();""===l||l===b||t.isAnalyzing||(t.isAnalyzing=!0,t.runPageAnalysis({postId:t.currentPost.id,postData:t.currentPost,content:b,slug:e.getPermalink()})),l=b}var f=e.isSavingPost(),v=e.isAutosavingPost();!f||v||u||(u=!0,t.$store.commit("isDirty",!1),t.options.advanced.truSeo&&t.runPageAnalysis({postId:t.currentPost.id,useSavedData:!0,postData:t.currentPost,content:e.getEditedPostContent(),slug:e.getPermalink()}),t.savePost())}))},wooCommerce:function(){var t=this,e="",s="",o="";window.setInterval((function(){var n=document.getElementById("_sku");n&&(e=n.value),t.updateWooCommerceSku(e);var i=document.getElementById("_sale_price"),a=document.getElementById("_regular_price");i&&(s=i.value),!s&&a&&(s=a.value);var r=t.$aioseo.wooCommerce.currencySymbol+parseFloat(s||0).toFixed(2);t.updateWooCommercePrice(r);var c=document.querySelectorAll('#post input[name="tax_input[product_brand][]"]:checked');c.length||(c=document.querySelectorAll('#post input[name="tax_input[pwb-brand][]"]:checked')),c.length?o!==c[0].parentNode.innerText&&(o=c[0].parentNode.innerText,t.updateWooCommerceBrand(c[0].parentNode.innerText)):""!==o&&(o="",t.updateWooCommerceBrand(""))}),1e3)}}),created:function(){var t=this;return Object(r["a"])(regeneratorRuntime.mark((function e(){var s,o,n,i,r,l,u,d,p,m,g,h,_,y,b,f,v,P,w,C,$,k,S,x,T;return regeneratorRuntime.wrap((function(e){while(1)switch(e.prev=e.next){case 0:return e.next=2,Object(Wt["a"])(t.$http);case 2:s=e.sent,o=s.internalOptions,n=s.options,i=s.networkOptions,r=s.settings,l=s.notifications,u=s.addons,d=s.license,p=s.currentPost,m=s.tags,t.$set(t.$store.state,"internalOptions",Jt()(Object(c["a"])({},t.$store.state.internalOptions),Object(c["a"])({},o))),t.$set(t.$store.state,"options",Jt()(Object(c["a"])({},t.$store.state.options),Object(c["a"])({},n))),t.$set(t.$store.state,"networkOptions",Jt()(Object(c["a"])({},t.$store.state.networkOptions),Object(c["a"])({},i))),t.$set(t.$store.state,"settings",Jt()(Object(c["a"])({},t.$store.state.settings),Object(c["a"])({},r))),t.$set(t.$store.state,"notifications",Jt()(Object(c["a"])({},t.$store.state.notifications),Object(c["a"])({},l))),t.$set(t.$store.state,"addons",Jt()(Object(a["a"])(t.$store.state.addons),Object(a["a"])(u))),t.$set(t.$store.state,"license",Jt()(Object(c["a"])({},t.$store.state.license),Object(c["a"])({},d))),t.$set(t.$store.state,"currentPost",Jt()(Object(c["a"])({},t.$store.state.currentPost),Object(c["a"])({},p))),t.$set(t.$store.state,"tags",Jt()(Object(c["a"])({},t.$store.state.tags),Object(c["a"])({},m))),t.ping(),"term"===t.currentPost.context?(g=document.querySelector("#edittag input#name"),t.updateTaxonomyTitle(g.value),g.addEventListener("input",(function(e){t.updateTaxonomyTitle(e.target.value)})),h=document.querySelector("#edittag textarea#description"),t.updateTaxonomyDescription(h.value),h.addEventListener("input",(function(e){t.updateTaxonomyDescription(e.target.value)})),_=document.querySelector("#edittag input#slug"),t.updatePermalinkSlug(_.value),t.updatePermalink(t.currentPost.permalink),_.addEventListener("input",(function(e){t.updatePermalink(t.currentPost.permalink.replace("/".concat(t.permalinkSlug),"/".concat(e.target.value.replace(/ /gi,"-").replace(/[^a-z0-9-]/gi,"").toLowerCase())))})),y=document.querySelector("#aioseo-term-settings"),y&&(y.value=JSON.stringify(t.currentPost))):(b=document.body.classList.contains("block-editor-page"),b?f=window.setInterval((function(){var e=window.wp.data.select("core/editor"),s=e.getCurrentPost();s.id&&(window.clearInterval(f),t.blockEditor())}),50):(t.isWooCommerceProduct&&t.wooCommerce(),v=document.querySelector("#aioseo-post-settings"),v&&(v.value=JSON.stringify(t.currentPost)),P=document.querySelector("#post input#title"),t.updatePostTitle(P.value),P.addEventListener("input",(function(e){t.updatePostTitle(e.target.value)})),w=document.querySelector("#post_name"),C=w.value,t.updatePermalinkSlug(C),t.updatePermalink(t.currentPost.permalink),window.setInterval((function(){C!==w.value&&(C=w.value,t.updatePermalink(t.currentPost.permalink.replace("/".concat(t.permalinkSlug),"/".concat(w.value.replace(/ /gi,"-").replace(/[^a-z0-9-]/gi,"").toLowerCase()))))}),1e3),$=document.querySelector("#postexcerpt textarea#attachment_caption"),$&&(t.updateAttachmentCaption($.value),$.addEventListener("input",(function(e){t.updateAttachmentCaption(e.target.value)}))),k=document.querySelector("#postexcerpt textarea#excerpt"),k&&(t.updatePostExcerpt(k.value),k.addEventListener("input",(function(e){t.updatePostExcerpt(e.target.value)}))),S=document.querySelector("#postexcerpt textarea#attachment_alt"),S&&(t.updateAltTag(S.value),S.addEventListener("input",(function(e){t.updateAltTag(e.target.value)}))),x=document.querySelector("#content"),x&&x.addEventListener("keyup",(function(){if(t.updatePostContent(z()+Zt()),!t.isAnalyzing){var e=Object(c["a"])({},K["a"].state.currentPost),s=z()+Zt(),o=document.querySelector("#editable-post-name")?document.querySelector("#editable-post-name").innerHTML:"";t.isAnalyzing=!0,window.aioseo.truSEO.runAnalysis({postId:e.id,postData:e,content:s,slug:o,state:e}),setTimeout((function(){t.isAnalyzing=!1}),1e3)}})),T=window.setInterval((function(){if(window.tinyMCE){var e=window.tinyMCE.get("content");e&&(window.clearInterval(T),t.classicEditor())}}),50)));case 23:case"end":return e.stop()}}),e)})))()}},Xt=Qt,te=Object(f["a"])(Xt,n,i,!1,null,null,null),ee=te.exports,se=s("561c");(function(t){var e=document.body.classList.contains("block-editor-page"),s="all-in-one-seo-pack";if(e&&window.aioseo.currentPost&&"post"===window.aioseo.currentPost.context&&window.aioseo.options.searchAppearance.dynamic.postTypes[window.aioseo.currentPost.postType].advanced.showMetaBox){var o=t.plugins.registerPlugin,n=t.editPost.PluginSidebarMoreMenuItem,i=t.editPost.PluginSidebar,a=t.element.Fragment,r=t.element.createElement,c=window.aioseo.options.advanced.truSeo,l=window.aioseo.user.capabilities.aioseo_page_analysis,u=window.aioseo.currentPost.isSpecialPage,d=window.aioseo.currentPost.seo_score,p=Object(se["__"])("N/A",s),m=function(t){return c&&l&&!u?80<t?"score-green":50<t?"score-orange":1<t?"score-red":"score-disabled":"score-disabled"},g=r("svg",{width:20,height:20,viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},r("path",{d:"M10 20C15.5228 20 20 15.5228 20 10C20 4.47715 15.5228 0 10 0C4.47716 0 0 4.47715 0 10C0 15.5228 4.47716 20 10 20ZM8.40767 3.65998C8.27222 3.45353 8.02129 3.357 7.79121 3.43828C7.52913 3.53087 7.27279 3.63976 7.02373 3.76429C6.80511 3.87361 6.69542 4.12332 6.74355 4.36686L6.91501 5.23457C6.95914 5.45792 6.86801 5.68459 6.69498 5.82859C6.42152 6.05617 6.16906 6.31347 5.94287 6.59826C5.80229 6.77526 5.58046 6.86908 5.36142 6.82484L4.51082 6.653C4.27186 6.60473 4.02744 6.71767 3.92115 6.94133C3.86111 7.06769 3.80444 7.19669 3.75129 7.32826C3.69815 7.45983 3.64929 7.59212 3.60464 7.72495C3.52562 7.96007 3.62107 8.21596 3.82396 8.35351L4.54621 8.84316C4.73219 8.96925 4.82481 9.19531 4.80234 9.42199C4.7662 9.78671 4.76767 10.1508 4.80457 10.5089C4.82791 10.7355 4.73605 10.9619 4.55052 11.0886L3.82966 11.5811C3.62734 11.7193 3.53274 11.9753 3.61239 12.2101C3.70314 12.4775 3.80985 12.7391 3.93188 12.9932C4.03901 13.2163 4.28373 13.3282 4.5224 13.2791L5.37279 13.1042C5.59165 13.0591 5.8138 13.1521 5.95491 13.3287C6.17794 13.6077 6.43009 13.8653 6.70918 14.0961C6.88264 14.2396 6.97459 14.4659 6.93122 14.6894L6.76282 15.5574C6.71551 15.8013 6.8262 16.0507 7.04538 16.1591C7.16921 16.2204 7.29563 16.2782 7.42457 16.3324C7.55352 16.3867 7.68316 16.4365 7.81334 16.4821C8.19418 16.6154 8.72721 16.1383 9.1213 15.7855C9.31563 15.6116 9.4355 15.3654 9.43677 15.1018C9.43677 15.1004 9.43678 15.099 9.43678 15.0976L9.43677 13.6462C9.43677 13.6308 9.43736 13.6155 9.43852 13.6004C8.27454 13.3165 7.40918 12.248 7.40918 10.9732V9.43198C7.40918 9.31483 7.50224 9.21986 7.61706 9.21986H8.338V7.70343C8.338 7.49405 8.50433 7.32432 8.70952 7.32432C8.9147 7.32432 9.08105 7.49405 9.08105 7.70343V9.21986H11.0316V7.70343C11.0316 7.49405 11.1979 7.32432 11.4031 7.32432C11.6083 7.32432 11.7746 7.49405 11.7746 7.70343V9.21986H12.4956C12.6104 9.21986 12.7034 9.31483 12.7034 9.43198V10.9732C12.7034 12.2883 11.7825 13.3838 10.5628 13.625C10.5631 13.632 10.5632 13.6391 10.5632 13.6462L10.5632 15.0914C10.5632 15.36 10.6867 15.6107 10.8868 15.7853C11.2879 16.1351 11.8302 16.6079 12.2088 16.4742C12.4708 16.3816 12.7272 16.2727 12.9762 16.1482C13.1949 16.0389 13.3046 15.7891 13.2564 15.5456L13.085 14.6779C13.0408 14.4545 13.132 14.2278 13.305 14.0838C13.5785 13.8563 13.8309 13.599 14.0571 13.3142C14.1977 13.1372 14.4195 13.0434 14.6385 13.0876L15.4892 13.2595C15.7281 13.3077 15.9725 13.1948 16.0788 12.9711C16.1389 12.8448 16.1955 12.7158 16.2487 12.5842C16.3018 12.4526 16.3507 12.3204 16.3953 12.1875C16.4744 11.9524 16.3789 11.6965 16.176 11.559L15.4537 11.0693C15.2678 10.9432 15.1752 10.7171 15.1976 10.4905C15.2338 10.1258 15.2323 9.76167 15.1954 9.40357C15.1721 9.17699 15.2639 8.95062 15.4495 8.82387L16.1703 8.33141C16.3726 8.1932 16.4672 7.93715 16.3876 7.70238C16.2968 7.43495 16.1901 7.17337 16.0681 6.91924C15.961 6.69615 15.7162 6.58422 15.4776 6.63333L14.6272 6.8083C14.4083 6.85333 14.1862 6.76033 14.0451 6.58377C13.822 6.30474 13.5699 6.04713 13.2908 5.81632C13.1173 5.67287 13.0254 5.44652 13.0688 5.22301L13.2372 4.35503C13.2845 4.11121 13.1738 3.86179 12.9546 3.75334C12.8308 3.69208 12.7043 3.63424 12.5754 3.58002C12.4465 3.52579 12.3168 3.47593 12.1866 3.43037C11.9562 3.34974 11.7055 3.44713 11.5707 3.65416L11.0908 4.39115C10.9672 4.58093 10.7457 4.67543 10.5235 4.65251C10.1661 4.61563 9.80932 4.61712 9.45837 4.65477C9.23633 4.6786 9.01448 4.58486 8.89027 4.39554L8.40767 3.65998Z",fillRule:"evenodd",clipRule:"evenodd"})),h=r("div",{id:"aioseo-post-settings-sidebar-button",className:m(d)},g,r("span",{id:"aioseo-post-score-disabled"},p),r("span",{id:"aioseo-post-score"},d),r("span",{},"/100")),_=window.aioseo.user;o("aioseo-post-settings-sidebar",{render:function(){return _.capabilities.aioseo_page_analysis||_.capabilities.aioseo_page_general_settings||_.capabilities.aioseo_page_social_settings||_.capabilities.aioseo_page_schema_settings||_.capabilities.aioseo_page_advanced_settings?r(a,{},r(n,{target:"aioseo-post-settings-sidebar",icon:g},"AIOSEO"),r(i,{name:"aioseo-post-settings-sidebar",icon:h,title:"AIOSEO"},r("div",{id:"aioseo-post-settings-sidebar",className:"aioseo-post-settings-sidebar"},r("div",{className:"aioseo-loading-spinner dark"},r("div",{className:"double-bounce1"},null),r("div",{className:"double-bounce2"},null))))):null}})}})(window.wp);s("2d26");if(window.aioseo.currentPost){o["default"].config.productionTip=!1;var oe=window.aioseo.currentPost.context,ne="post"===oe?window.aioseo.currentPost.postType:window.aioseo.currentPost.termType,ie="post"===oe?window.aioseo.options.searchAppearance.dynamic.postTypes[ne]:null,ae="term"===oe?window.aioseo.options.searchAppearance.dynamic.taxonomies[ne]:null,re="post"===oe?!!ie&&ie.advanced.showMetaBox:!!ae&&ae.advanced.showMetaBox,ce=document.querySelector("#aioseo-".concat(oe,"-settings-metabox"));ce&&(!window.wp.blockEditor&&window.wp.blocks&&window.wp.oldEditor&&(window.wp.blockEditor=window.editor),"post"!==oe&&"term"!==oe||!re||new o["default"]({store:K["a"],data:{tableContext:oe,screenContext:"metabox"},render:function(t){return t(ee,{props:{restUrl:window.aioseo.urls.restUrl}})}}).$mount("#aioseo-".concat(oe,"-settings-metabox")),"post"===oe&&re&&setInterval((function(){var t=document.getElementById("aioseo-post-settings-sidebar");t&&new o["default"]({store:K["a"],data:{tableContext:"post",screenContext:"sidebar"},render:function(t){return t(ee)}}).$mount("#aioseo-post-settings-sidebar")}),100))}window.onload=function(){var t=document.body.classList.contains("block-editor-page");window.addEventListener("beforeunload",(function(e){if(t){if(!K["a"].state.isDirty)return;e.preventDefault(),e.returnValue=""}}))}},"1cfa":function(t,e,s){},2309:function(t,e,s){},"243b":function(t,e,s){},"3d9a":function(t,e,s){},"40ea":function(t,e,s){"use strict";var o=s("588d"),n=s.n(o);n.a},"483d":function(t,e,s){"use strict";var o=s("b604"),n=s.n(o);n.a},"4c91":function(t,e,s){},5282:function(t,e,s){"use strict";var o=s("3d9a"),n=s.n(o);n.a},"549f":function(t,e,s){"use strict";var o=s("9a45"),n=s.n(o);n.a},"588d":function(t,e,s){},"5e7f":function(t,e,s){"use strict";var o=s("fc16"),n=s.n(o);n.a},"5fed":function(t,e,s){},"81a1":function(t,e,s){"use strict";var o=s("4c91"),n=s.n(o);n.a},"8c79":function(t,e,s){"use strict";var o=s("5fed"),n=s.n(o);n.a},"8dbd":function(t,e,s){"use strict";var o=s("2309"),n=s.n(o);n.a},9:function(t,e,s){t.exports=s("0e57")},"98a3":function(t,e,s){"use strict";var o=s("243b"),n=s.n(o);n.a},"9a45":function(t,e,s){},a072:function(t,e,s){"use strict";var o=s("1cfa"),n=s.n(o);n.a},b604:function(t,e,s){},e2aa:function(t,e,s){"use strict";var o=s("fe51"),n=s.n(o);n.a},e6ba:function(t,e,s){"use strict";var o=s("08d2"),n=s.n(o);n.a},fc16:function(t,e,s){},fe51:function(t,e,s){}});
1
+ (function(t){function e(e){for(var o,a,r=e[0],c=e[1],l=e[2],d=0,p=[];d<r.length;d++)a=r[d],Object.prototype.hasOwnProperty.call(n,a)&&n[a]&&p.push(n[a][0]),n[a]=0;for(o in c)Object.prototype.hasOwnProperty.call(c,o)&&(t[o]=c[o]);u&&u(e);while(p.length)p.shift()();return i.push.apply(i,l||[]),s()}function s(){for(var t,e=0;e<i.length;e++){for(var s=i[e],o=!0,r=1;r<s.length;r++){var c=s[r];0!==n[c]&&(o=!1)}o&&(i.splice(e--,1),t=a(a.s=s[0]))}return t}var o={},n={"post-settings":0},i=[];function a(e){if(o[e])return o[e].exports;var s=o[e]={i:e,l:!1,exports:{}};return t[e].call(s.exports,s,s.exports,a),s.l=!0,s.exports}a.m=t,a.c=o,a.d=function(t,e,s){a.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:s})},a.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},a.t=function(t,e){if(1&e&&(t=a(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var s=Object.create(null);if(a.r(s),Object.defineProperty(s,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)a.d(s,o,function(e){return t[e]}.bind(null,o));return s},a.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return a.d(e,"a",e),e},a.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},a.p="/";var r=window["aioseopjsonp"]=window["aioseopjsonp"]||[],c=r.push.bind(r);r.push=e,r=r.slice();for(var l=0;l<r.length;l++)e(r[l]);var u=c;i.push([9,"chunk-vendors","chunk-common"]),s()})({"08d2":function(t,e,s){},"0e57":function(t,e,s){"use strict";s.r(e);s("e260"),s("e6cf"),s("cca6"),s("a79d");var o=s("a026"),n=(s("1725"),s("75b9"),function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",[t.pong?t._e():s("core-api-bar"),t.currentPost.id?s("main-view"):t._e()],1)}),i=[],a=(s("4de4"),s("7db0"),s("a630"),s("caad"),s("a15b"),s("d81d"),s("b0c0"),s("b680"),s("ac1f"),s("2532"),s("3ca3"),s("5319"),s("2909")),r=(s("96cf"),s("1da1")),c=s("5530"),l=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-app"},[s("core-main-tabs",{attrs:{tabs:t.getTabs,showSaveButton:!1,active:this.activeTab,internal:"",disableMobile:""},on:{changed:function(e){return t.processChangeTab(e)}}}),s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(t.activeTab,{tag:"component",attrs:{parentComponentContext:"metabox"}})],1),t.currentPost.modalOpen&&"sidebar"===t.$root._data.screenContext?s("core-modal",{on:{close:t.closeModal}},[s("div",{attrs:{slot:"headerTitle"},slot:"headerTitle"},[t._v(" "+t._s(t.strings.modalTitle)+" ")]),s("div",{attrs:{slot:"body"},slot:"body"},[s("ModalContent")],1)]):t._e()],1)},u=[],d=s("2f62"),p=s("51da"),m=s("248f"),g=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-tab-content aioseo-post-advanced"},[s("core-settings-row",{attrs:{name:t.strings.robotsSetting,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-single-robots-meta")]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.canonicalURL,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-input",{attrs:{type:"text",size:"medium",placeholder:t.strings.placeholder},on:{input:t.setIsDirty},model:{value:t.currentPost.canonicalUrl,callback:function(e){t.$set(t.currentPost,"canonicalUrl",e)},expression:"currentPost.canonicalUrl"}})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.priorityScore,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("div",{staticClass:"selectbox-row"},[s("div",{staticClass:"select"},[s("span",[t._v(t._s(t.strings.priority))]),s("base-select",{attrs:{disabled:t.isUnlicensed,size:"medium","open-direction":t.getOpenDirection,options:t.getPriorityOptions,value:t.isUnlicensed?t.getPriority("default"):t.getPriority(t.currentPost.priority)},on:{input:function(e){return t.isUnlicensed?null:t.savePriority(e.value)}}})],1),s("div",{staticClass:"separator"},[s("span"),t._v(" - ")]),s("div",{staticClass:"select"},[s("span",[t._v(t._s(t.strings.frequency))]),s("base-select",{attrs:{disabled:t.isUnlicensed,size:"medium","open-direction":t.getOpenDirection,options:t.getFrequencyOptions,value:t.isUnlicensed?t.getFrequency("default"):t.getFrequency(t.currentPost.frequency)},on:{input:function(e){return t.isUnlicensed?null:t.saveFrequency(e.value)}}})],1)]),t.isUnlicensed?s("core-alert",{staticClass:"inline-upsell",attrs:{type:"blue"}},[s("div",{domProps:{innerHTML:t._s(t.strings.priorityFrequencyUpsell)}})]):t._e()]},proxy:!0}])}),t.options.searchAppearance.advanced.useKeywords?s("core-settings-row",{attrs:{name:t.strings.keywords,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{attrs:{multiple:"",taggable:"",options:t.getJsonValue(t.currentPost.keywords)||[],value:t.getJsonValue(t.currentPost.keywords)||[],"tag-placeholder":t.strings.tagPlaceholder},on:{input:function(e){return t.currentPost.keywords=t.setJsonValue(e)}}})]},proxy:!0}],null,!1,2312666634)}):t._e()],1)},h=[],_=(s("99af"),s("9c0e")),y={mixins:[_["c"],_["d"]],props:{disabled:{type:Boolean,default:function(){return!1}},type:{type:String,required:!1},object:{type:Object,required:!1}},data:function(){return{strings:{pageName:this.$t.__("Advanced",this.$td),robotsSetting:this.$t.__("Robots Setting",this.$td),robotsToggle:this.$t.__("Use default settings",this.$td),canonicalURL:this.$t.__("Canonical URL",this.$td),placeholder:this.$t.__("Enter a URL to change the default Canonical URL",this.$td),priorityScore:this.$t.__("Priority Score",this.$td),priority:this.$t.__("Priority",this.$td),frequency:this.$t.__("Frequency",this.$td),priorityFrequencyUpsell:this.$t.sprintf(this.$t.__("This feature is only for licensed %1$s users. %2$s",this.$td),"<strong>".concat("AIOSEO"," Pro</strong>"),this.$links.getUpsellLink("post-advanced",this.$constants.GLOBAL_STRINGS.learnMore,"priority-frequency",!0)),keywords:this.$t.__("Keywords",this.$td),tagPlaceholder:this.$t.__("Press enter to create a keyword",this.$td)}}},computed:Object(c["a"])(Object(c["a"])(Object(c["a"])({},Object(d["c"])(["isUnlicensed"])),Object(d["e"])(["currentPost","options"])),{},{getOpenDirection:function(){return"sidebar"===this.$root._data.screenContext?"bottom":"top"},getPriorityOptions:function(){return[{label:this.$t.__("default",this.$td),value:"default"}].concat(this.$constants.PRIORITY_OPTIONS)},getFrequencyOptions:function(){return[{label:this.$t.__("default",this.$td),value:"default"}].concat(this.$constants.FREQUENCY_OPTIONS)}}),methods:{getPriority:function(t){return this.getPriorityOptions.find((function(e){return e.value===t}))},savePriority:function(t){this.$set(this.currentPost,"priority",t),this.$store.commit("isDirty",!0)},getFrequency:function(t){return this.getFrequencyOptions.find((function(e){return e.value===t}))},saveFrequency:function(t){this.$set(this.currentPost,"frequency",t),this.$store.commit("isDirty",!0)}}},b=y,f=(s("5e7f"),s("2877")),v=Object(f["a"])(b,g,h,!1,null,null,null),P=v.exports,w=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-tab-content aioseo-post-general"},[this.$allowed("aioseo_page_general_settings")?s("core-settings-row",{staticClass:"mobile-radio-buttons",scopedSlots:t._u([{key:"content",fn:function(){return["metabox"===t.$root._data.screenContext||"modal"===t.parentComponentContext?s("base-radio-toggle",{staticClass:"circle",attrs:{value:t.currentPost.generalMobilePrev,name:"previewGeneralIsMobile",options:[{label:"desktop",value:!1,activeClass:"dark",slot:"desktop"},{label:"mobile",value:!0,slot:"mobile"}]},on:{input:t.isMobilePreviewEv},scopedSlots:t._u([{key:"desktop",fn:function(){return[s("svg-desktop")]},proxy:!0},{key:"mobile",fn:function(){return[s("svg-mobile")]},proxy:!0}],null,!1,3417581673)}):t._e()]},proxy:!0}],null,!1,1896340531)}):t._e(),this.$allowed("aioseo_page_general_settings")?s("core-settings-row",{staticClass:"snippet-preview-row",attrs:{name:t.strings.snippetPreview},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-google-search-preview",{class:{ismobile:t.currentPost.generalMobilePrev},attrs:{title:t.currentPost.title||t.currentPost.tags.title||"#post_title #separator_sa #site_title",separator:t.options.searchAppearance.global.separator,description:t.currentPost.description||t.currentPost.tags.description||"#post_content"},scopedSlots:t._u([{key:"domain",fn:function(){return[t._v(" "+t._s(t.liveTags.permalink)+" ")]},proxy:!0}],null,!1,3436692130)}),"sidebar"===t.$root._data.screenContext&&"modal"!==t.parentComponentContext?s("base-button",{staticClass:"edit-snippet gray small",on:{click:t.editSnippetEv}},[s("svg-pencil"),t._v(" "+t._s(t.strings.editSnippet)+" ")],1):t._e()]},proxy:!0}],null,!1,3824536476)}):t._e(),"metabox"!==t.$root._data.screenContext&&"modal"!==t.parentComponentContext||!this.$allowed("aioseo_page_general_settings")?t._e():s("core-settings-row",{staticClass:"snippet-title-row",attrs:{name:t.title},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":(t.currentPost.postType||t.currentPost.termType)+"Title",defaultMenuOrientation:"modal"===t.parentComponentContext?"top":"bottom","default-tags":t.getDefaultTags("title")},on:{counter:function(e){return t.updateCount(e,"titleCount")},input:t.setContent},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddTitle)+" ")]},proxy:!0}],null,!1,3106947238),model:{value:t.currentPost.title,callback:function(e){t.$set(t.currentPost,"title",e)},expression:"currentPost.title"}}),s("div",{staticClass:"max-recommended-count",domProps:{innerHTML:t._s(t.maxRecommendedCount(t.titleCount,60))}})]},proxy:!0}],null,!1,2076209906)}),"metabox"!==t.$root._data.screenContext&&"modal"!==t.parentComponentContext||!this.$allowed("aioseo_page_general_settings")?t._e():s("core-settings-row",{staticClass:"snippet-description-row",attrs:{name:t.strings.metaDescription},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{attrs:{"line-numbers":!1,description:"","tags-context":(t.currentPost.postType||t.currentPost.termType)+"Description",defaultMenuOrientation:"modal"===t.parentComponentContext?"top":"bottom","default-tags":t.getDefaultTags("description")},on:{counter:function(e){return t.updateCount(e,"descriptionCount")},input:t.setContent},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddDescription)+" ")]},proxy:!0}],null,!1,1726597184),model:{value:t.currentPost.description,callback:function(e){t.$set(t.currentPost,"description",e)},expression:"currentPost.description"}}),s("div",{staticClass:"max-recommended-count",domProps:{innerHTML:t._s(t.maxRecommendedCount(t.descriptionCount,160))}})]},proxy:!0}],null,!1,566412060)}),t.displayTruSeoMetaboxCard&&t.options.searchAppearance.advanced.useKeywords&&t.options.searchAppearance.advanced.keywordsLooking?s("div",[s("core-alert",{attrs:{type:"blue","show-close":""},on:{"close-alert":t.hideKeywordsLooking}},[t._v(" "+t._s(t.strings.lookingForMetaKeywords)+" ")])],1):t._e(),t.displayTruSeoMetaboxCard?s("core-settings-row",{staticClass:"snippet-focus-keyphrase-row",attrs:{name:t.strings.focusKeyphrase,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("focusKeyphrase")]},proxy:!0}],null,!1,2098324327)}):t._e(),t.displayTruSeoMetaboxCard?s("core-settings-row",{staticClass:"snippet-additional-keyphrases-row",attrs:{name:t.strings.additionalKeyphrases},scopedSlots:t._u([{key:"content",fn:function(){return[s("additionalKeyphrases")]},proxy:!0}],null,!1,3781583425)}):t._e(),t.displayTruSeoMetaboxCard&&t.currentPost.page_analysis?s("core-settings-row",{staticClass:"snippet-page-analysis-row",attrs:{name:t.strings.pageAnalysis,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("pageAnalysis")]},proxy:!0}],null,!1,1626229952)}):t._e(),t.displayTruSeoSidebarKeyphraseCard?s("core-sidebar-card",{staticClass:"card-focus-keyphrase",attrs:{slug:"focus","header-text":t.strings.focusKeyphrase,focusScore:t.currentPost.keyphrases.focus.score}},[s("focusKeyphrase")],1):t._e(),t.displayTruSeoSidebarKeyphraseCard?s("core-sidebar-card",{staticClass:"card-additional-keyphrase",attrs:{slug:"additional","header-text":t.strings.additionalKeyphrases}},[s("additionalKeyphrases")],1):t._e(),t.displayTruSeoSidebarAnalysisCard?s("core-sidebar-card",{staticClass:"card-basic-seo",attrs:{slug:"basicseo","header-text":t.strings.basicSeo,trueSeoScore:t.currentPost.page_analysis.analysis.basic.errors}},[s("metaboxAnalysisDetail",{attrs:{analysisItems:t.currentPost.page_analysis.analysis.basic}})],1):t._e(),t.displayTruSeoSidebarAnalysisCard?s("core-sidebar-card",{staticClass:"card-title-seo",attrs:{slug:"title","header-text":t.strings.title,trueSeoScore:t.currentPost.page_analysis.analysis.title.errors}},[s("metaboxAnalysisDetail",{attrs:{analysisItems:t.currentPost.page_analysis.analysis.title}})],1):t._e(),t.displayTruSeoSidebarAnalysisCard?s("core-sidebar-card",{staticClass:"card-readability-seo",attrs:{slug:"readability","header-text":t.strings.readability,trueSeoScore:t.currentPost.page_analysis.analysis.readability.errors}},[s("metaboxAnalysisDetail",{attrs:{analysisItems:t.currentPost.page_analysis.analysis.readability}})],1):t._e()],1)},C=[],$=(s("a4d3"),s("e01a"),function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"page-analysis-panel"},[s("core-main-tabs",{attrs:{tabs:t.tabs,showSaveButton:!1,active:this.initTab,internal:""},on:{changed:function(e){return t.processChangeTab(e)}}}),s("transition",{attrs:{mode:"out-in"}},[t.currentPost.page_analysis?s("metaboxAnalysisDetail",{attrs:{analysisItems:t.currentPost.page_analysis.analysis[this.initTab]}}):t._e()],1)],1)}),k=[],S=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("ul",{staticClass:"aioseo-analysis-detail"},t._l(t.analysisItems,(function(e,o){return s("li",{key:o},[s("p",{staticClass:"title"},[0===e.error?s("svg-circle-check",{attrs:{width:"12"}}):t._e(),1===e.error?s("svg-circle-close",{attrs:{width:"12"}}):t._e(),t._v(" "+t._s(e.title)+" "),1===e.error?s("svg-caret",{attrs:{width:"16"},on:{click:t.toggleDescriptionEv}}):t._e()],1),1===e.error?s("p",{staticClass:"description"},[t._v(t._s(e.description))]):t._e()])})),0)},x=[],T={props:{analysisItems:{type:Object}},data:function(){return{strings:{delete:this.$t.__("Delete",this.$td)}}},methods:{toggleDescriptionEv:function(t){t.target.parentElement.classList.toggle("toggled")}}},O=T,j=(s("a072"),Object(f["a"])(O,S,x,!1,null,null,null)),E=j.exports,A={components:{metaboxAnalysisDetail:E},data:function(){return{strings:{errors:this.$t.__("Errors",this.$td),allGood:this.$t.__("All Good!",this.$td)},initTab:"basic",tabs:[{slug:"basic",name:this.$t.__("Basic SEO",this.$td)},{slug:"title",name:this.$t.__("Title",this.$td)},{slug:"readability",name:this.$t.__("Readability",this.$td)}]}},computed:Object(c["a"])(Object(c["a"])({},Object(d["c"])(["currentPost"])),Object(d["e"])(["currentPost"])),methods:{processChangeTab:function(t){this.initTab=t}},mounted:function(){var t=this;this.tabs.map((function(e){e.errorCount=t.currentPost.page_analysis.analysis[e.slug].errors}))}},D=A,I=(s("8c79"),Object(f["a"])(D,$,k,!1,null,null,null)),L=I.exports,M=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"focus-keyphrase-panel"},[t.currentPost.keyphrases.focus.keyphrase?t._e():s("base-input",{class:"add-focus-keyphrase-"+this.$root._data.screenContext+"-input",attrs:{size:"medium"},on:{keydown:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.pressEnter(e)}}}),t.currentPost.keyphrases.focus.keyphrase?t._e():s("base-button",{staticClass:"add-keyphrase gray small",attrs:{id:"add-focus-keyphrase"},on:{click:t.addKeyphraseEv}},[s("svg-circle-plus",{attrs:{width:"14",height:"14"}}),t._v(" "+t._s(t.strings.addKeyphrase)+" ")],1),t.currentPost.keyphrases.focus.keyphrase?s("core-keyphrase",{staticClass:"aioseo-keyphrase-tag",attrs:{index:0,keyphrase:t.currentPost.keyphrases.focus.keyphrase,score:t.currentPost.keyphrases.focus.score},on:{saved:t.onSaved,deleted:t.onDeleted}}):t._e(),t.currentPost.loading.focus&&t.currentPost.keyphrases.focus?s("core-loader",{staticClass:"analysis-loading",attrs:{dark:""}}):t._e(),!t.currentPost.loading.focus&&t.currentPost.keyphrases.focus.keyphrase?s("metaboxAnalysisDetail",{attrs:{analysisItems:t.currentPost.keyphrases.focus.analysis}}):t._e(),t.currentPost.keyphrases.focus.keyphrase?t._e():s("core-alert",{staticClass:"keyphrase-documentation",attrs:{type:"yellow"},domProps:{innerHTML:t._s(t.strings.keyphraseDocumentation)}})],1)},q=[],N=function(){return document.querySelector("#wp-content-wrap").classList.contains("tmce-active")},z=function(){var t=window.tinyMCE.get("content");return N()?t.getContent({format:"raw"}):document.querySelector("#content")?document.querySelector("#content").value:""},K=s("cf27"),B={mixins:[_["c"]],components:{metaboxAnalysisDetail:E},data:function(){return{strings:{addKeyphrase:this.$t.__("Add Focus Keyphrase",this.$td),keyphraseDocumentation:this.$t.sprintf(this.$t.__("Not sure what keyphrases are used for? Check out our documentation for more information. %1$s",this.$td),this.$links.getDocLink(this.$constants.GLOBAL_STRINGS.learnMore,"useKeyphrases",!0))}}},computed:Object(c["a"])(Object(c["a"])({},Object(d["c"])(["currentPost"])),Object(d["e"])(["currentPost"])),methods:{onSaved:function(t){var e=this,s=t.value,o=window.wp.data?window.wp.data.select("core/editor"):null,n=document.body.classList.contains("block-editor-page"),i=n?o.getEditedPostContent():z(),a=n?o.getPermalink():document.querySelector("#editable-post-name")?document.querySelector("#editable-post-name").innerHTML:"";this.currentPost.keyphrases.focus.keyphrase=s,this.currentPost.loading.focus=!0,setTimeout((function(){window.aioseo.truSEO.runAnalysis({postId:e.currentPost.id,postData:e.currentPost,content:i,slug:a,state:Object(c["a"])({},K["a"].state.currentPost)}),e.currentPost.loading.focus=!1,e.setIsDirty()}),2e3)},onDeleted:function(){var t=this,e=window.wp.data?window.wp.data.select("core/editor"):null,s=document.body.classList.contains("block-editor-page"),o=s?e.getEditedPostContent():z(),n=s?e.getPermalink():document.querySelector("#editable-post-name")?document.querySelector("#editable-post-name").innerHTML:"";this.currentPost.keyphrases.focus={},this.currentPost.loading.focus=!0,setTimeout((function(){window.aioseo.truSEO.runAnalysis({postId:t.currentPost.id,postData:t.currentPost,content:o,slug:n,state:Object(c["a"])({},K["a"].state.currentPost)}),t.currentPost.loading.focus=!1,t.setIsDirty()}),2e3)},addKeyphraseEv:function(){var t=this,e=document.getElementsByClassName("add-focus-keyphrase-".concat(this.$root._data.screenContext,"-input")),s=e[0].querySelector(".medium"),o=window.wp.data?window.wp.data.select("core/editor"):null;if(s.value){var n={keyphrase:s.value,score:0,analysis:{}},i=document.body.classList.contains("block-editor-page"),a=i?o.getEditedPostContent():z(),r=i?o.getPermalink():document.querySelector("#editable-post-name")?document.querySelector("#editable-post-name").innerHTML:"";this.$set(this.currentPost.keyphrases,"focus",n),this.currentPost.loading.focus=!0,s.value="",s.blur(),setTimeout((function(){window.aioseo.truSEO.runAnalysis({postId:t.currentPost.id,postData:t.currentPost,content:a,slug:r,state:Object(c["a"])({},K["a"].state.currentPost)}),t.currentPost.loading.focus=!1,t.setIsDirty()}),2e3)}},toggleDescriptionEv:function(t){t.target.parentElement.classList.toggle("toggled")},pressEnter:function(t){var e=document.getElementById("add-focus-keyphrase");t.preventDefault(),e.click()}}},F=B,U=(s("e2aa"),Object(f["a"])(F,M,q,!1,null,null,null)),R=U.exports,G=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"additional-keyphrases-panel"},[t.currentPost.keyphrases.additional.length>0&&t.$isPro&&t.$aioseo.license.isActive?s("div",[t._l(t.currentPost.keyphrases.additional,(function(e,o){return s("core-keyphrase",{key:o,staticClass:"aioseo-keyphrase-tag additional-keyphrase",class:t.selectedKeyphrase===o?"selected":null,attrs:{index:o,keyphrase:e.keyphrase,score:e.score},on:{saved:t.onSaved,deleted:t.onDeleted,selectedKeyphrase:t.onSelectedKeyphrase}})})),s("div",{staticClass:"analysis-wrapper"},[t.currentPost.loading.additional[this.selectedKeyphrase]&&t.currentPost.keyphrases.additional[this.selectedKeyphrase].keyphrase?s("core-loader",{staticClass:"analysis-loading",attrs:{dark:""}}):t._e(),!t.currentPost.loading.additional[this.selectedKeyphrase]&&t.currentPost.keyphrases.additional[this.selectedKeyphrase].keyphrase?s("metaboxAnalysisDetail",{attrs:{analysisItems:t.currentPost.keyphrases.additional[this.selectedKeyphrase].analysis}}):t._e()],1)],2):t._e(),t.$isPro&&t.$aioseo.license.isActive?s("base-input",{class:"add-keyphrase-"+this.$root._data.screenContext+"-input",attrs:{size:"medium"},on:{keydown:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.pressEnter(e)}}}):t._e(),t.$isPro&&t.$aioseo.license.isActive?s("base-button",{staticClass:"add-keyphrase gray small",attrs:{id:"add-additional-keyphrase"},on:{click:t.addKeyphraseEv}},[s("svg-circle-plus",{attrs:{width:"14",height:"14"}}),t._v(" "+t._s(t.strings.addKeyphrase)+" ")],1):t._e(),t.$isPro&&t.$aioseo.license.isActive?t._e():s("core-alert",{staticClass:"inline-upsell",attrs:{type:"blue"}},[s("div",{domProps:{innerHTML:t._s(t.strings.upSell)}})])],1)},H=[],W=(s("a434"),{mixins:[_["c"]],components:{metaboxAnalysisDetail:E},data:function(){return{selectedKeyphrase:0,strings:{additional:this.$t.__("Additional Keyphrases",this.$td),addKeyphrase:this.$t.__("Add Additional Keyphrases",this.$td),upSell:this.$t.sprintf(this.$t.__("Upgrade to %1$s to add related keyphrases. %2$s",this.$td),this.$t.__("Pro",this.$td),this.$links.getDocLink(this.$constants.GLOBAL_STRINGS.learnMore,"useKeyphrases",!0))}}},computed:Object(c["a"])(Object(c["a"])({},Object(d["c"])(["currentPost"])),Object(d["e"])(["currentPost"])),methods:{onSelectedKeyphrase:function(t){this.selectedKeyphrase=t},onSaved:function(t){var e=this,s=t.index,o=t.value,n=window.wp.data?window.wp.data.select("core/editor"):null,i=document.body.classList.contains("block-editor-page"),a=i?n.getEditedPostContent():z(),r=i?n.getPermalink():document.querySelector("#editable-post-name")?document.querySelector("#editable-post-name").innerHTML:"";this.currentPost.keyphrases.additional[s].keyphrase=o,this.currentPost.keyphrases.additional[s].score=0,this.currentPost.loading.additional[s]=!0,setTimeout((function(){window.aioseo.truSEO.runAnalysis({postId:e.currentPost.id,postData:e.currentPost,content:a,slug:r,state:Object(c["a"])({},K["a"].state.currentPost)}),e.currentPost.loading.additional[s]=!1,e.selectedKeyphrase=s,e.setIsDirty()}),2e3)},onDeleted:function(t){this.currentPost.keyphrases.additional.splice(t,1),this.selectedKeyphrase=0,this.setIsDirty()},addKeyphraseEv:function(){var t=this,e=document.getElementsByClassName("add-keyphrase-".concat(this.$root._data.screenContext,"-input")),s=e[0].querySelector(".medium"),o=window.wp.data?window.wp.data.select("core/editor"):null;if(s.value){var n={keyphrase:s.value,score:0},i=this.currentPost.keyphrases.additional.push(n),a=document.getElementsByClassName("keyphrase-name"),r=document.body.classList.contains("block-editor-page"),l=r?o.getEditedPostContent():z(),u=r?o.getPermalink():document.querySelector("#editable-post-name")?document.querySelector("#editable-post-name").innerHTML:"";this.currentPost.loading.additional[0]=!0,s.value="",s.blur(),setTimeout((function(){window.aioseo.truSEO.runAnalysis({postId:t.currentPost.id,postData:t.currentPost,content:l,slug:u,state:Object(c["a"])({},K["a"].state.currentPost)}),a[i].click(),t.setIsDirty()}),2e3)}},pressEnter:function(t){var e=document.getElementById("add-additional-keyphrase");t.preventDefault(),e.click()},created:function(){var t=this;this.currentPost.keyphrases.map((function(e,s){t.currentPost.loading.additional[s]=!1}))}}}),V=W,J=Object(f["a"])(V,G,H,!1,null,null,null),Y=J.exports,Z={mixins:[_["f"],_["j"],_["n"],_["c"]],components:{pageAnalysis:L,focusKeyphrase:R,additionalKeyphrases:Y,metaboxAnalysisDetail:E},props:{disabled:{type:Boolean,default:function(){return!1}},parentComponentContext:String},data:function(){return{titleCount:0,descriptionCount:0,keywords:null,keyphrases:null,selectedKeyphrase:0,editSnippet:!1,truSEO:null,strings:{pageName:this.$t.__("General",this.$td),snippetPreview:this.$t.__("Snippet Preview",this.$td),snippetPreviewContent:this.$t.__("Snippet Preview content here.",this.$td),editSnippet:this.$t.__("Edit Snippet",this.$td),clickToAddTitle:this.$t.__("Click on tags below to insert variables into your title.",this.$td),metaDescription:this.$t.__("Meta Description",this.$td),clickToAddDescription:this.$t.__("Click on tags below to insert variables into your meta description.",this.$td),pillarContent:this.$t.__("Pillar Content",this.$td),pillarContentCopy:this.$t.__("Cornerstone content should be the most important and extensive articles on your site.",this.$td),focusKeyphrase:this.$t.__("Focus Keyphrase",this.$td),additionalKeyphrases:this.$t.__("Additional Keyphrases",this.$td),pageAnalysis:this.$t.__("Page Analysis",this.$td),basicSeo:this.$t.__("Basic SEO",this.$td),title:this.$t.__("Title",this.$td),readability:this.$t.__("Readability",this.$td),lookingForMetaKeywords:this.$t.__("Looking for meta keywords? Click on the advanced tab above to add/edit meta keywords.",this.$td)}}},computed:Object(c["a"])(Object(c["a"])(Object(c["a"])({},Object(d["e"])(["currentPost","options"])),Object(d["e"])("live-tags",["liveTags"])),{},{title:function(){return this.$t.sprintf(this.$t.__("%s Title",this.$td),this.currentPost.type)},toggled:function(){return 1===this.currentPost.pillar_content},displayTruSeoMetaboxCard:function(){return this.options.advanced.truSeo&&"metabox"===this.$root._data.screenContext&&"post"===this.currentPost.context&&"attachment"!==this.currentPost.postType&&"modal"!==this.parentComponentContext&&this.$allowed("aioseo_page_analysis")&&!this.isWooCommerceProduct&&!this.currentPost.isSpecialPage&&!this.isForum},displayTruSeoSidebarKeyphraseCard:function(){return this.options.advanced.truSeo&&"sidebar"===this.$root._data.screenContext&&"modal"!==this.parentComponentContext&&this.$allowed("aioseo_page_analysis")&&!this.currentPost.isSpecialPage&&!this.isForum},displayTruSeoSidebarAnalysisCard:function(){return this.options.advanced.truSeo&&"sidebar"===this.$root._data.screenContext&&this.currentPost.page_analysis&&"modal"!==this.parentComponentContext&&this.$allowed("aioseo_page_analysis")&&!this.currentPost.isSpecialPage&&!this.isForum},isWooCommerceProduct:function(){return!(!window.aioseo.data.isWooCommerceActive||"product"!==this.currentPost.postType)},isForum:function(){return!("forum"!==this.currentPost.postType&&"topic"!==this.currentPost.postType&&"reply"!==this.currentPost.postType||!window.aioseo.data.isBBPressActive)}}),methods:Object(c["a"])(Object(c["a"])({},Object(d["b"])(["changeGeneralPreview","openModal"])),{},{hideKeywordsLooking:function(){this.options.searchAppearance.advanced.keywordsLooking=!1,this.saveChanges()},isMobilePreviewEv:function(t){this.changeGeneralPreview(t)},editSnippetEv:function(){this.editSnippet=!this.editSnippet,this.$set(this.currentPost.tabs,"tab_modal","general"),this.openModal(!0)},setContent:function(){var t=this,e=function(){return Object(m["a"])((function(){var e=window.wp.data?window.wp.data.select("core/editor"):null;t.setIsDirty(),"post"===t.currentPost.context&&"attachment"!==t.currentPost.postType&&"product"!==t.currentPost.postType&&e&&t.runPageAnalysis({postId:t.currentPost.id,postData:t.currentPost,content:e.getEditedPostContent(),slug:e.getPermalink()})}),1e3)};e()},getDefaultTags:function(t){switch(t){case"title":return"post"===this.currentPost.context?["post_title","separator_sa","site_title"]:["taxonomy_title","separator_sa","site_title"];case"description":return"post"===this.currentPost.context?"attachment"===this.currentPost.postType?["attachment_caption","separator_sa","site_title"]:"product"===this.currentPost.postType?["post_excerpt","post_content"]:["post_excerpt","post_content","separator_sa"]:["taxonomy_title","separator_sa","taxonomy_description"]}}}),mounted:function(){this.keyphrases=this.currentPost.keyphrases,"post"!==this.currentPost.context||this.currentPost.keyphrases.length||(this.selectedKeyphrase=-1)},created:function(){this.currentPost.metaDefaults&&(this.currentPost.title||this.$set(this.currentPost,"title",this.currentPost.metaDefaults.title),this.currentPost.description||this.$set(this.currentPost,"description",this.currentPost.metaDefaults.description))}},Q=Z,X=(s("40ea"),Object(f["a"])(Q,w,C,!1,null,null,null)),tt=X.exports,et=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-post-schema-view"},[t.isUnlicensed?t._e():s("schema"),t.isUnlicensed?s("schema-lite"):t._e()],1)},st=[],ot=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-tab-content aioseo-post-schema-lite"},[s("core-settings-row",{attrs:{name:t.strings.schemaType},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{staticClass:"schema-type",attrs:{disabled:"",size:"medium",options:[{value:"default",label:"Default (Set in Search Appearance)"},{value:"none",label:"None"},{value:"Article",label:"Article"}],value:{value:"Article",label:"Article"}}})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.articleType,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{disabled:"",name:"articleType",value:"BlogPosting",options:[{label:t.strings.article,value:"Article"},{label:t.strings.blogPost,value:"BlogPosting"},{label:t.strings.newsArticle,value:"NewsArticle"}]}})]},proxy:!0}])}),t.$isPro&&t.$aioseo.license.isActive?t._e():s("core-alert",{staticClass:"schema-upsell inline-upsell",attrs:{type:"blue"}},[s("div",{domProps:{innerHTML:t._s(t.strings.schemaUpsell)}})])],1)},nt=[],it={data:function(){return{strings:{schemaType:this.$t.__("Schema Type",this.$td),articleType:this.$t.__("Article Type",this.$td),article:this.$t.__("Article",this.$td),blogPost:this.$t.__("Blog Post",this.$td),newsArticle:this.$t.__("News Article",this.$td),schemaUpsell:this.$t.sprintf(this.$t.__("This feature is only for licensed %1$s %2$s users. %3$s",this.$td),"<strong>".concat("AIOSEO"," Pro</strong>"),this.$t.__("Pro",this.$td),this.$links.getUpsellLink("post-schema",this.$constants.GLOBAL_STRINGS.learnMore,null,!0))}}},computed:Object(c["a"])({},Object(d["e"])(["currentPost"]))},at=it,rt=(s("5282"),Object(f["a"])(at,ot,nt,!1,null,null,null)),ct=rt.exports,lt={components:{Schema:ct,SchemaLite:ct},computed:Object(c["a"])({},Object(d["c"])(["isUnlicensed"]))},ut=lt,dt=Object(f["a"])(ut,et,st,!1,null,null,null),pt=dt.exports,mt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-tab-content aioseo-post-social"},[s("core-settings-row",{staticClass:"mobile-radio-buttons",scopedSlots:t._u([{key:"content",fn:function(){return[s("core-main-tabs",{attrs:{tabs:t.tabs,showSaveButton:!1,active:t.initTab,internal:""},on:{changed:function(e){return t.processChangeTab(e)}}}),"metabox"===t.$root._data.screenContext||"modal"===t.parentComponentContext?s("base-radio-toggle",{staticClass:"circle",attrs:{value:t.currentPost.socialMobilePreview,name:"previewSocialIsMobile",options:[{label:"desktop",value:!1,activeClass:"dark",slot:"desktop"},{label:"mobile",value:!0,slot:"mobile"}]},on:{input:t.isMobilePreviewEv},scopedSlots:t._u([{key:"desktop",fn:function(){return[s("svg-desktop")]},proxy:!0},{key:"mobile",fn:function(){return[s("svg-mobile")]},proxy:!0}],null,!1,3417581673)}):t._e()]},proxy:!0}])}),s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(t.initTab,{tag:"component"})],1),"modal"!==this.parentComponentContext?s("social-side-bar"):t._e()],1)},gt=[],ht=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"tab-facebook"},[s("core-settings-row",{attrs:{name:t.strings.tabName},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-facebook-preview",{class:{ismobilecard:t.currentPost.socialMobilePreview},attrs:{image:t.currentPost.og_image_custom_url||t.currentPost.og_image},scopedSlots:t._u([{key:"site-url",fn:function(){return[s("span",[t._v(t._s(t.liveTags.permalink))])]},proxy:!0},{key:"site-title",fn:function(){return[s("span",[t._v(t._s(t.truncate(t.parseTags(t.currentPost.og_title||t.currentPost.tags.title||"#post_title #separator_sa #site_title"),100)))])]},proxy:!0},{key:"site-description",fn:function(){return[s("span",[t._v(t._s(t.truncate(t.parseTags(t.currentPost.og_description||t.currentPost.tags.description||"#post_content"))))])]},proxy:!0}])})]},proxy:!0}])}),s("core-settings-row",{staticClass:"facebook-title-settings",attrs:{name:t.strings.facebookTitle,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{staticClass:"facebook-meta-input",attrs:{"line-numbers":!1,single:"","tags-context":(t.currentPost.postType||t.currentPost.termType)+"Title","default-tags":t.$tags.getDefaultTags("term"===t.currentPost.context?"taxonomies":null,null,"title")},on:{counter:function(e){return t.updateCount(e,"titleCount")},input:t.setIsDirty},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddSiteName)+" ")]},proxy:!0}]),model:{value:t.currentPost.og_title,callback:function(e){t.$set(t.currentPost,"og_title",e)},expression:"currentPost.og_title"}}),s("div",{staticClass:"max-recommended-count",domProps:{innerHTML:t._s(t.maxRecommendedCount(t.titleCount,95))}})]},proxy:!0}])}),s("core-settings-row",{staticClass:"facebook-description-settings",attrs:{name:t.strings.facebookDescription,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{staticClass:"facebook-meta-input",attrs:{"line-numbers":!1,description:"","tags-context":(t.currentPost.postType||t.currentPost.termType)+"Description","default-tags":t.$tags.getDefaultTags("term"===t.currentPost.context?"taxonomies":null,null,"description")},on:{counter:function(e){return t.updateCount(e,"descriptionCount")},input:t.setIsDirty},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddHomePageDescription)+" ")]},proxy:!0}]),model:{value:t.currentPost.og_description,callback:function(e){t.$set(t.currentPost,"og_description",e)},expression:"currentPost.og_description"}}),s("div",{staticClass:"max-recommended-count",domProps:{innerHTML:t._s(t.maxRecommendedCount(t.descriptionCount,200))}})]},proxy:!0}])}),s("core-settings-row",{staticClass:"facebook-image-source",attrs:{name:t.strings.imageSource,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{attrs:{size:"medium",options:t.imageSourceOptionsFiltered,value:t.getImageSourceOptionFiltered(t.currentPost.og_image_type)},on:{input:function(e){return t.saveImageType(e.value)}}})]},proxy:!0}])}),"custom"===t.currentPost.og_image_type?s("core-settings-row",{attrs:{name:t.strings.customFieldsName,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-input",{attrs:{type:"text",size:"medium",placeholder:t.strings.placeholder},on:{input:t.setIsDirty},model:{value:t.currentPost.og_image_custom_fields,callback:function(e){t.$set(t.currentPost,"og_image_custom_fields",e)},expression:"currentPost.og_image_custom_fields"}})]},proxy:!0}],null,!1,1200630708)}):t._e(),"custom_image"===t.currentPost.og_image_type?s("core-settings-row",{staticClass:"facebook-image",attrs:{name:t.strings.facebookImage},scopedSlots:t._u([{key:"content",fn:function(){return[s("div",{staticClass:"facebook-image-upload"},[s("base-input",{attrs:{size:"medium",placeholder:t.strings.pasteYourImageUrl},on:{input:t.setIsDirty},model:{value:t.currentPost.og_image_custom_url,callback:function(e){t.$set(t.currentPost,"og_image_custom_url",e)},expression:"currentPost.og_image_custom_url"}}),s("base-button",{staticClass:"insert-image",attrs:{size:"medium",type:"black"},on:{click:function(e){return t.openUploadModal("facebookImage",["currentPost","og_image_custom_url"])}}},[s("svg-circle-plus"),t._v(" "+t._s(t.strings.uploadOrSelectImage)+" ")],1),s("base-button",{staticClass:"remove-image",attrs:{size:"medium",type:"gray"},on:{click:function(e){t.currentPost.og_image_custom_url=null}}},[t._v(" "+t._s(t.strings.remove)+" ")])],1),s("div",{staticClass:"aioseo-description"},[t._v(" "+t._s(t.strings.minimumSize)+" ")]),t.canShowImage(t.currentPost.og_image_custom_url)?s("img",{attrs:{src:t.currentPost.og_image_custom_url}}):t._e()]},proxy:!0}],null,!1,4059947824)}):t._e(),s("core-settings-row",{staticClass:"facebook-video",attrs:{name:t.strings.video,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-input",{attrs:{type:"text",size:"medium"},model:{value:t.currentPost.og_video,callback:function(e){t.$set(t.currentPost,"og_video",e)},expression:"currentPost.og_video"}})]},proxy:!0}])}),s("core-settings-row",{staticClass:"facebook-object-type",attrs:{name:t.strings.facebookObjectType,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{attrs:{size:"medium","open-direction":"top",options:t.objectTypeOptions,"group-label":"groupLabel","group-values":"options",value:t.getObjectTypeOptions(t.currentPost.og_object_type)},on:{input:function(e){return t.setObjectType(e.value)}}})]},proxy:!0}])}),t.shouldShowArticleSection?s("core-settings-row",{attrs:{name:t.strings.articleSection,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-input",{attrs:{type:"text",size:"medium"},model:{value:t.currentPost.og_article_section,callback:function(e){t.$set(t.currentPost,"og_article_section",e)},expression:"currentPost.og_article_section"}})]},proxy:!0}],null,!1,1205905290)}):t._e(),t.shouldShowArticleSection?s("core-settings-row",{attrs:{name:t.strings.articleTags,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{attrs:{multiple:"",taggable:"",options:t.getJsonValue(t.currentPost.og_article_tags)||[],value:t.getJsonValue(t.currentPost.og_article_tags)||[],"tag-placeholder":t.strings.tagPlaceholder},on:{input:function(e){return t.currentPost.og_article_tags=t.setJsonValue(e)}}})]},proxy:!0}],null,!1,2497302637)}):t._e()],1)},_t=[],yt=(s("4160"),s("159b"),{mixins:[_["a"],_["b"],_["d"],_["f"],_["m"],_["o"],_["c"]],props:{isMobilePreview:{type:Boolean,default:function(){return!1}}},data:function(){return{titleCount:0,descriptionCount:0,strings:{tabName:this.$t.__("Facebook Preview",this.$td),imageSource:this.$t.__("Image Source",this.$td),customFieldsName:this.$t.__("Custom Field Name",this.$td),video:this.$t.__("Video URL",this.$td),width:this.$t.__("Width",this.$td),height:this.$t.__("Height",this.$td),facebookObjectType:this.$t.__("Object Type",this.$td),facebookImage:this.$t.__("Facebook Image",this.$td),facebookTitle:this.$t.__("Facebook Title",this.$td),facebookDescription:this.$t.__("Facebook Description",this.$td),uploadOrSelectImage:this.$t.__("Upload or Select Image",this.$td),pasteYourImageUrl:this.$t.__("Paste your image URL or select a new image",this.$td),minimumSize:this.$t.__("Minimum size: 200px x 200px, ideal ratio 1.91:1, 5MB max. (eg: 1640px x 856px or 3280px x 1712px for retina screens)",this.$td),remove:this.$t.__("Remove",this.$td),clickToAddSiteName:this.$t.__("Click on tags below to insert variables into your site name.",this.$td),clickToAddHomePageDescription:this.$t.__("Click on tags below to insert variables into your meta description.",this.$td),articleSection:this.$t.__("Article Section",this.$td),articleTags:this.$t.__("Article Tags",this.$td),tagPlaceholder:this.$t.__("Press enter to create an article tag",this.$td)}}},computed:Object(c["a"])(Object(c["a"])(Object(c["a"])({},Object(d["e"])("live-tags",["liveTags"])),Object(d["e"])(["currentPost","options"])),{},{objectTypeOptions:function(){return[{groupLabel:this.$t.__("Default",this.$td),options:[{label:this.$t.__("Default Object Type (Set in Social Networks)",this.$td),value:"default"}]}].concat(this.$constants.OG_TYPE_OPTIONS)},shouldShowArticleSection:function(){var t="term"===this.currentPost.context?"taxonomies":"postTypes";return"article"===this.currentPost.og_object_type||"default"===this.currentPost.og_object_type&&"article"===this.options.social.facebook.general.dynamic[t][this.currentPost.postType||this.currentPost.termType].objectType}}),methods:{scrollToElement:function(){var t=document.getElementsByClassName("component-wrapper")[0];setTimeout((function(){t&&(t.firstChild.scrollTop=0)}),10)},saveImageType:function(t){this.$set(this.currentPost,"og_image_type",t),this.$store.commit("isDirty",!0)},getObjectTypeOptions:function(t){var e=null;return this.objectTypeOptions.forEach((function(s){var o=s.options.find((function(e){return e.value===t}));o&&(e=o)})),e},setObjectType:function(t){this.$set(this.currentPost,"og_object_type",t),this.$store.commit("isDirty",!0)}},mounted:function(){this.scrollToElement()}}),bt=yt,ft=(s("98a3"),Object(f["a"])(bt,ht,_t,!1,null,null,null)),vt=ft.exports,Pt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"tab-twitter"},[s("core-settings-row",{attrs:{name:t.strings.twitterPreview},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-twitter-preview",{class:{ismobilecard:t.currentPost.socialMobilePreview},attrs:{image:t.currentPost.twitter_use_og?t.currentPost.og_image_custom_url||t.currentPost.og_image:t.currentPost.twitter_image_custom_url||t.currentPost.twitter_image,card:t.currentPost.twitter_card},scopedSlots:t._u([{key:"site-title",fn:function(){return[s("span",[t._v(t._s(t.previewTitle))])]},proxy:!0},{key:"site-description",fn:function(){return[s("span",[t._v(t._s(t.previewDescription))])]},proxy:!0}])})]},proxy:!0}])}),s("core-settings-row",{staticClass:"use-facebook",attrs:{name:t.strings.useFB,leftSize:"5",rightSize:"7"},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-toggle",{on:{input:t.setIsDirty},model:{value:t.currentPost.twitter_use_og,callback:function(e){t.$set(t.currentPost,"twitter_use_og",e)},expression:"currentPost.twitter_use_og"}})]},proxy:!0}])}),t.currentPost.twitter_use_og?t._e():s("core-settings-row",{staticClass:"twitter-title-settings",attrs:{name:t.strings.twitterTitle,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{staticClass:"twitter-meta-input",attrs:{"line-numbers":!1,single:"","tags-context":(t.currentPost.postType||t.currentPost.termType)+"Title","default-tags":t.$tags.getDefaultTags("term"===t.currentPost.context?"taxonomies":null,null,"title")},on:{counter:function(e){return t.updateCount(e,"titleCount")},input:t.setIsDirty},model:{value:t.currentPost.twitter_title,callback:function(e){t.$set(t.currentPost,"twitter_title",e)},expression:"currentPost.twitter_title"}}),s("div",{staticClass:"max-recommended-count",domProps:{innerHTML:t._s(t.maxRecommendedCount(t.titleCount,70))}})]},proxy:!0}],null,!1,4187010693)}),t.currentPost.twitter_use_og?t._e():s("core-settings-row",{staticClass:"twitter-description-settings",attrs:{name:t.strings.twitterDescription,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{staticClass:"twitter-meta-input",attrs:{"line-numbers":!1,description:"","tags-context":(t.currentPost.postType||t.currentPost.termType)+"Description","default-tags":t.$tags.getDefaultTags("term"===t.currentPost.context?"taxonomies":null,null,"description")},on:{counter:function(e){return t.updateCount(e,"descriptionCount")},input:t.setIsDirty},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddHomePageDescription)+" ")]},proxy:!0}],null,!1,3376949532),model:{value:t.currentPost.twitter_description,callback:function(e){t.$set(t.currentPost,"twitter_description",e)},expression:"currentPost.twitter_description"}}),s("div",{staticClass:"max-recommended-count",domProps:{innerHTML:t._s(t.maxRecommendedCount(t.descriptionCount,200))}})]},proxy:!0}],null,!1,577802586)}),t.currentPost.twitter_use_og?t._e():s("core-settings-row",{staticClass:"twitter-image-source",attrs:{name:t.strings.imageSource,leftSize:"5",rightSize:"7",align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{attrs:{size:"medium",options:t.imageSourceOptionsFiltered,value:t.getImageSourceOptionFiltered(t.currentPost.twitter_image_type)},on:{input:function(e){return t.saveTwitterImageType(e.value)}}})]},proxy:!0}],null,!1,45254494)}),t.currentPost.twitter_use_og||"custom"!==t.currentPost.twitter_image_type?t._e():s("core-settings-row",{staticClass:"twitter-custom-field",attrs:{name:t.strings.customFieldsName,leftSize:"5",rightSize:"7",align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-input",{attrs:{type:"text",size:"medium",placeholder:t.strings.placeholder},on:{input:t.setIsDirty},model:{value:t.currentPost.twitter_image_custom_fields,callback:function(e){t.$set(t.currentPost,"twitter_image_custom_fields",e)},expression:"currentPost.twitter_image_custom_fields"}})]},proxy:!0}],null,!1,2513842721)}),t.currentPost.twitter_use_og||"custom_image"!==t.currentPost.twitter_image_type?t._e():s("core-settings-row",{staticClass:"twitter-image",attrs:{name:t.strings.twitterImage},scopedSlots:t._u([{key:"content",fn:function(){return[s("div",{staticClass:"twitter-image-upload"},[s("base-input",{attrs:{size:"medium",placeholder:t.strings.pasteYourImageUrl},on:{input:t.setIsDirty},model:{value:t.currentPost.twitter_image_custom_url,callback:function(e){t.$set(t.currentPost,"twitter_image_custom_url",e)},expression:"currentPost.twitter_image_custom_url"}}),s("base-button",{staticClass:"insert-image",attrs:{size:"medium",type:"black"},on:{click:function(e){return t.openUploadModal("twitterImage",["currentPost","twitter_image_custom_url"])}}},[s("svg-circle-plus"),t._v(" "+t._s(t.strings.uploadOrSelectImage)+" ")],1),s("base-button",{staticClass:"remove-image",attrs:{size:"medium",type:"gray"},on:{click:function(e){t.currentPost.twitter_image_custom_url=null}}},[t._v(" "+t._s(t.strings.remove)+" ")])],1),s("div",{staticClass:"aioseo-description"},["summary"===t.currentPost.twitter_card?s("span",[t._v(t._s(t.strings.minimumSizeSummary))]):t._e(),"summary_large_image"===t.currentPost.twitter_card?s("span",[t._v(t._s(t.strings.minimumSizeSummaryWithLarge))]):t._e()]),t.canShowImage(t.currentPost.twitter_image_custom_url)?s("img",{attrs:{src:t.currentPost.twitter_image_custom_url}}):t._e()]},proxy:!0}],null,!1,3377365394)}),s("core-settings-row",{staticClass:"twitter-card-type",attrs:{name:t.strings.twitterCardType,leftSize:"5",rightSize:"7",align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{attrs:{size:"medium","open-direction":"top",options:t.twitterCards,value:t.getCardOptions(t.currentPost.twitter_card)},on:{input:function(e){return t.cardSelect(e.value)}}})]},proxy:!0}])})],1)},wt=[],Ct={mixins:[_["a"],_["b"],_["f"],_["m"],_["o"],_["c"]],props:{isMobilePreview:{type:Boolean,default:function(){return!1}}},data:function(){return{titleCount:0,descriptionCount:0,strings:{twitterPreview:this.$t.__("Twitter Preview",this.$td),useFB:this.$t.__("Use Data from Facebook Tab",this.$td),imageSource:this.$t.__("Image Source",this.$td),customFieldsName:this.$t.__("Custom Field Name",this.$td),twitterImage:this.$t.__("Twitter Image",this.$td),twitterTitle:this.$t.__("Twitter Title",this.$td),twitterDescription:this.$t.__("Twitter Description",this.$td),twitterCardType:this.$t.__("Twitter Card Type",this.$td),pasteYourImageUrl:this.$t.__("Paste your image URL or select a new image",this.$td),uploadOrSelectImage:this.$t.__("Upload or Select Image",this.$td),remove:this.$t.__("Remove",this.$td),minimumSizeSummary:this.$t.__("Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and GIF formats only.",this.$td),minimumSizeSummaryWithLarge:this.$t.__("Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and GIF formats only.",this.$td)}}},computed:Object(c["a"])(Object(c["a"])({},Object(d["e"])(["currentPost","options"])),{},{twitterCards:function(){return[{label:this.$t.__("Default (Set under Social Networks)",this.$td),value:"default"},{label:this.$t.__("Summary",this.$td),value:"summary"},{label:this.$t.__("Summary with Large Image",this.$td),value:"summary_large_image"}]},previewTitle:function(){var t=this.currentPost.twitter_use_og?this.currentPost.og_title:this.currentPost.twitter_title;return this.truncate(this.parseTags(t||this.currentPost.tags.title||"#post_title #separator_sa #site_title"),100)},previewDescription:function(){var t=this.currentPost.twitter_use_og?this.currentPost.og_description:this.currentPost.twitter_description;return this.truncate(this.parseTags(t||this.currentPost.tags.description||"#post_content"))}}),methods:{getCardOptions:function(t){return this.twitterCards.find((function(e){return e.value===t}))},cardSelect:function(t){this.$set(this.currentPost,"twitter_card",t),this.$store.commit("isDirty",!0)},scrollToElement:function(){var t=document.getElementsByClassName("component-wrapper")[0];setTimeout((function(){t&&(t.firstChild.scrollTop=0)}),10)},saveTwitterImageType:function(t){this.$set(this.currentPost,"twitter_image_type",t),this.$store.commit("isDirty",!0)}},mounted:function(){this.scrollToElement()}},$t=Ct,kt=(s("81a1"),Object(f["a"])($t,Pt,wt,!1,null,null,null)),St=kt.exports,xt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return"sidebar"===t.$root._data.screenContext?s("core-settings-row",{staticClass:"snippet-description-row open-social-copy",attrs:{name:t.strings.metaDescription},scopedSlots:t._u([{key:"content",fn:function(){return[s("p",[t._v(t._s(t.strings.sidebarCopy))]),s("base-button",{staticClass:"open-social-modal gray small",on:{click:t.openModalEv}},[s("svg-pencil"),t._v(" "+t._s(t.strings.editSnippet)+" ")],1)]},proxy:!0}],null,!1,3842645279)}):t._e()},Tt=[],Ot={data:function(){return{strings:{sidebarCopy:this.$t.__("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.",this.$td),editSnippet:this.$t.__("Preview & Edit",this.$td)}}},methods:Object(c["a"])(Object(c["a"])({},Object(d["b"])(["openModal"])),{},{openModalEv:function(){this.$store.commit("changeTabSettings",{setting:"tab_modal",value:"social"}),this.openModal(!0)}})},jt=Ot,Et=(s("e6ba"),Object(f["a"])(jt,xt,Tt,!1,null,null,null)),At=Et.exports,Dt={components:{Facebook:vt,Twitter:St,SocialSideBar:At},props:{parentComponentContext:String},data:function(){return{strings:{pageName:this.$t.__("Social",this.$td)},tabs:[{slug:"facebook",name:this.$t.__("Facebook",this.$td)},{slug:"twitter",name:this.$t.__("Twitter",this.$td)}]}},computed:Object(c["a"])(Object(c["a"])({},Object(d["e"])(["currentPost","options"])),{},{initTab:function(){return Object(p["a"])()["social-tab"]?Object(p["a"])()["social-tab"]:"modal"===this.parentComponentContext?this.currentPost.tabs.tab_modal_social:this.currentPost.tabs.tab_social}}),methods:Object(c["a"])(Object(c["a"])({},Object(d["b"])(["changeSocialPreview"])),{},{isMobilePreviewEv:function(t){this.changeSocialPreview(t)},processChangeTab:function(t){"modal"===this.parentComponentContext?this.$set(this.currentPost.tabs,"tab_modal_social",t):this.$set(this.currentPost.tabs,"tab_social",t)}})},It=Dt,Lt=(s("8dbd"),Object(f["a"])(It,mt,gt,!1,null,null,null)),Mt=Lt.exports,qt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-modal-content"},[s("core-settings-row",{staticClass:"mobile-radio-buttons",scopedSlots:t._u([{key:"content",fn:function(){return[s("core-main-tabs",{attrs:{tabs:t.getTabs,showSaveButton:!1,active:t.currentPost.tabs.tab_modal,internal:""},on:{changed:function(e){return t.processChangeTab(e)}}})]},proxy:!0}])}),s("div",{staticClass:"component-wrapper"},[s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(this.activeTab,{tag:"component",attrs:{parentComponentContext:"modal"}})],1)],1)],1)},Nt=[],zt={components:{General:tt,Social:Mt},data:function(){return{activeTab:"general",strings:{pageName:this.$t.__("Modal Content",this.$td)},tabs:[{slug:"general",icon:"svg-settings",name:"General"},{slug:"social",icon:"svg-share",name:"Social"}]}},computed:Object(c["a"])(Object(c["a"])({},Object(d["e"])(["currentPost"])),{},{getTabs:function(){var t=this;return this.tabs.filter((function(e){return t.$allowed("aioseo_page_".concat(e.slug,"_settings"))}))}}),methods:Object(c["a"])(Object(c["a"])({},Object(d["b"])(["changeTabSettings"])),{},{processChangeTab:function(t){this.activeTab=t,this.changeTabSettings({setting:"tab_modal",value:t})}})},Kt=zt,Bt=(s("483d"),Object(f["a"])(Kt,qt,Nt,!1,null,null,null)),Ft=Bt.exports,Ut={components:{Advanced:P,General:tt,Schema:pt,Social:Mt,ModalContent:Ft},data:function(){return{activeTab:"general",modal:!1,strings:{pageName:"General",modalTitle:this.$t.__("Preview Snippet Editor",this.$td)},tabs:[{slug:"general",icon:"svg-settings",name:"General"},{slug:"social",icon:"svg-share",name:"Social"},{slug:"schema",icon:"svg-receipt",name:"Schema"},{slug:"advanced",icon:"svg-build",name:"Advanced"}]}},watch:{currentPost:{deep:!0,handler:function(){var t=this;Object(m["a"])((function(){return t.savePostState()}),500)}}},computed:Object(c["a"])(Object(c["a"])({},Object(d["e"])(["currentPost"])),{},{initTab:function(){return"sidebar"===this.$root._data.screenContext?this.currentPost.tabs.tab_sidebar&&this.$allowed("aioseo_page_".concat(this.currentPost.tabs.tab_sidebar,"_settings"))?this.currentPost.tabs.tab_sidebar:this.$allowed("aioseo_page_general_settings")?"general":this.$allowed("aioseo_page_social_settings")?"social":this.$allowed("aioseo_page_schema_settings")?"schema":"advanced":this.currentPost.tabs.tab&&this.$allowed("aioseo_page_".concat(this.currentPost.tabs.tab,"_settings"))?this.currentPost.tabs.tab:this.$allowed("aioseo_page_general_settings")?"general":this.$allowed("aioseo_page_social_settings")?"social":this.$allowed("aioseo_page_schema_settings")?"schema":"advanced"},getTabs:function(){var t=this;return"term"===this.currentPost.context||this.currentPost.isWooCommercePage?this.tabs.filter((function(e){return"schema"!==e.slug&&t.$allowed("aioseo_page_".concat(e.slug,"_settings"))})):this.tabs.filter((function(e){return"general"===e.slug&&(t.$allowed("aioseo_page_analysis")||t.$allowed("aioseo_page_".concat(e.slug,"_settings")))||t.$allowed("aioseo_page_".concat(e.slug,"_settings"))}))}}),methods:Object(c["a"])(Object(c["a"])({},Object(d["b"])(["openModal","updateState"])),{},{savePostState:function(){this.updateState(this.currentPost);var t=document.querySelector("#aioseo-post-settings");if(t&&(t.value=JSON.stringify(this.currentPost)),"term"===this.currentPost.context){var e=document.querySelector("#aioseo-term-settings");e&&(e.value=JSON.stringify(this.currentPost))}},processChangeTab:function(t){switch(this.activeTab=t,this.$root._data.screenContext){case"sidebar":this.$set(this.currentPost.tabs,"tab_sidebar",t);break;default:this.$set(this.currentPost.tabs,"tab",t);break}},closeModal:function(){this.openModal(!1)}}),created:function(){switch(this.modal=Object(p["a"])()["aioseo-modaltab"]||this.modal,this.modal&&(this.$set(this.currentPost.tabs,"tab_modal",this.modal),this.openModal(!0),setTimeout((function(){Object(p["b"])("aioseo-modaltab")}),500)),this.$root._data.screenContext){case"sidebar":this.activeTab=Object(p["a"])()["aioseo-sidebartab"]||this.initTab,this.$set(this.currentPost.tabs,"tab_sidebar",this.activeTab),setTimeout((function(){Object(p["b"])("aioseo-sidebartab")}),500);break;default:this.activeTab=Object(p["a"])()["aioseo-tab"]||this.initTab,this.$set(this.currentPost.tabs,"tab",this.activeTab),setTimeout((function(){Object(p["b"])("aioseo-tab")}),500);break}}},Rt=Ut,Gt=(s("549f"),Object(f["a"])(Rt,l,u,!1,null,null,null)),Ht=Gt.exports,Wt=s("bfad"),Vt=s("4245"),Jt=s.n(Vt),Yt=(s("c975"),s("1276"),function(){var t=window.aioseo.options.searchAppearance.dynamic.postTypes.post.customFields;if(!t)return"";var e=t.replace(/\n/g," ").split(" "),s=[],o=["INPUT","TEXTAREA","IMG"];e.forEach((function(t){var n=document.querySelector("#".concat(t)),i=document.querySelectorAll("#the-list > tr"),a=document.querySelectorAll(".acf-field");n&&-1!==o.indexOf(n.tagName)?n.closest(".acf-field")||s.push(n):i.length&&i.forEach((function(t){var n=t.querySelector("#".concat(t.id,"-key")),i=t.querySelector("#".concat(t.id,"-value"));i&&-1!==o.indexOf(i.tagName)&&-1!==e.indexOf(n)&&s.push(i)})),a.length&&a.forEach((function(e){if(t!==e.dataset.name)return"";var n=e.querySelector('[name="acf['.concat(e.dataset.key,']"]'));return"image"===e.dataset.type&&(n=e.querySelector(".has-value img")),"gallery"===e.dataset.type&&(n=e.querySelector(".acf-gallery-attachment img")),n?n.type&&"hidden"===n.type?"":void(-1!==o.indexOf(n.tagName)&&s.push(n)):""}))}));var n="";return s.length&&s.forEach((function(t){var e="";if(t.value&&(e=t.value),"IMG"===t.tagName&&t.src){var s=t.alt?'alt="'.concat(t.alt,'"'):"";e='<img src="'.concat(t.src,'" ').concat(s,">")}t.value&&t.type&&"url"===t.type&&(e='<a href="'.concat(e,'">').concat(e,"</a>")),e&&(n+=e)})),n}),Zt=Yt,Qt={mixins:[_["n"]],props:{restUrl:String},components:{"main-view":Ht},data:function(){return{isAnalyzing:!1}},computed:Object(c["a"])(Object(c["a"])(Object(c["a"])({},Object(d["e"])(["currentPost","options","pong"])),Object(d["e"])("live-tags",["permalinkSlug","terms"])),{},{isWooCommerceProduct:function(){return!(!window.aioseo.data.isWooCommerceActive||"product"!==this.currentPost.postType)}}),methods:Object(c["a"])(Object(c["a"])(Object(c["a"])({},Object(d["b"])(["savePost","ping"])),Object(d["d"])("live-tags",["updateTaxonomyTitle","updateTaxonomyDescription","updatePermalinkSlug","updatePermalink","updatePostTitle","updatePostContent","updatePostExcerpt","updateAttachmentCaption","updateAltTag","updateCategories","updateWooCommerceBrand","updateWooCommerceSku","updateWooCommercePrice"])),{},{classicEditor:function(){var t=this;if(window.tinyMCE){var e="",s="",o=!1,n=window.aioseo.options.advanced.truSeo,i=window.tinyMCE.get("content");i&&(this.updatePostContent(z()+Zt()),i.on("keyup",(function(){t.updatePostContent(z()+Zt())}))),window.setInterval((function(){var o=document.querySelectorAll('#post input[name="post_category[]"]:checked');o.length?(e!==o[0].parentNode.innerText&&(e=o[0].parentNode.innerText,t.updateTaxonomyTitle(o[0].parentNode.innerText)),s=Array.from(o).map((function(t){return t.parentNode.innerText})).join(", "),t.updateCategories(s)):""!==e&&(e=s="",t.updateTaxonomyTitle(""),t.updateCategories(""))}),1e3),setInterval((function(){t.isAnalyzing&&(t.isAnalyzing=!1),o&&(o=!1)}),2e3),this.isWooCommerceProduct||setInterval((function(){if(window.tinyMCE&&window.tinyMCE.activeEditor.isDirty()&&n&&!window.aioseo.currentPost.isSpecialPage&&"attachment"!==window.aioseo.currentPost.postType&&!t.isAnalyzing){var e=Object(c["a"])({},K["a"].state.currentPost),s=z()+Zt(),o=document.querySelector("#editable-post-name")&&document.querySelector("#editable-post-name").parentElement&&document.querySelector("#editable-post-name").parentElement.href?document.querySelector("#editable-post-name").parentElement.href:"";t.isAnalyzing=!0,window.aioseo.truSEO.runAnalysis({postId:e.id,postData:e,content:s,slug:o,state:e})}}),1e3)}},blockEditor:function(){var t=this,e=window.wp.data.select("core/editor"),s=window.wp.data.select("core"),o=e.getCurrentPost();this.updatePostTitle(o.title),this.updatePostContent(o.content+Zt()),this.updatePostExcerpt(o.excerpt),this.updatePermalinkSlug(o.slug),this.updatePermalink(this.currentPost.permalink);var n=o.title,i=o.excerpt,a=o.content+Zt(),r=o.slug,c="",l=e.getEditedPostContent()+Zt(),u=!1;setInterval((function(){t.isAnalyzing&&(t.isAnalyzing=!1),u&&(u=!1)}),2e3),window.wp.data.subscribe((function(){var o=e.getEditedPostAttribute("title");n!==o&&(n=o,t.updatePostTitle(o));var d=e.getEditedPostAttribute("content")+Zt();a!==d&&(a=d,t.updatePostContent(d));var p=e.getEditedPostAttribute("excerpt");i!==p&&(i=p,t.updatePostExcerpt(p));var m=e.getEditedPostAttribute("slug");t.permalinkSlug||t.updatePermalinkSlug(m),r!==m&&(r=m,t.updatePermalink(t.currentPost.permalink.replace("/".concat(t.permalinkSlug),"/".concat(m.replace(/ /gi,"-").replace(/[^a-z0-9-]/gi,"").toLowerCase()))));var g=s.getEntityRecords("taxonomy","category"),h=e.getEditedPostAttribute("categories");if(h&&h.length&&g){var _=g.find((function(t){return t.id===h[0]}));_&&c!==_.name&&(c=_.name,t.updateTaxonomyTitle(_.name));var y=g.filter((function(t){return h.includes(t.id)})).map((function(t){return t.name})).join(", ");t.updateCategories(y)}else""!==c&&(c="",t.updateTaxonomyTitle(c));if(t.options.advanced.truSeo){var b=e.getEditedPostContent()+Zt();""===l||l===b||t.isAnalyzing||(t.isAnalyzing=!0,t.runPageAnalysis({postId:t.currentPost.id,postData:t.currentPost,content:b,slug:e.getPermalink()})),l=b}var f=e.isSavingPost(),v=e.isAutosavingPost();!f||v||u||(u=!0,t.$store.commit("isDirty",!1),t.options.advanced.truSeo&&t.runPageAnalysis({postId:t.currentPost.id,useSavedData:!0,postData:t.currentPost,content:e.getEditedPostContent(),slug:e.getPermalink()}),t.savePost())}))},wooCommerce:function(){var t=this,e="",s="",o="";window.setInterval((function(){var n=document.getElementById("_sku");n&&(e=n.value),t.updateWooCommerceSku(e);var i=document.getElementById("_sale_price"),a=document.getElementById("_regular_price");i&&(s=i.value),!s&&a&&(s=a.value);var r=t.$aioseo.wooCommerce.currencySymbol+parseFloat(s||0).toFixed(2);t.updateWooCommercePrice(r);var c=document.querySelectorAll('#post input[name="tax_input[product_brand][]"]:checked');c.length||(c=document.querySelectorAll('#post input[name="tax_input[pwb-brand][]"]:checked')),c.length?o!==c[0].parentNode.innerText&&(o=c[0].parentNode.innerText,t.updateWooCommerceBrand(c[0].parentNode.innerText)):""!==o&&(o="",t.updateWooCommerceBrand(""))}),1e3)}}),created:function(){var t=this;return Object(r["a"])(regeneratorRuntime.mark((function e(){var s,o,n,i,r,l,u,d,p,m,g,h,_,y,b,f,v,P,w,C,$,k,S,x,T;return regeneratorRuntime.wrap((function(e){while(1)switch(e.prev=e.next){case 0:return e.next=2,Object(Wt["a"])(t.$http);case 2:s=e.sent,o=s.internalOptions,n=s.options,i=s.networkOptions,r=s.settings,l=s.notifications,u=s.addons,d=s.license,p=s.currentPost,m=s.tags,t.$set(t.$store.state,"internalOptions",Jt()(Object(c["a"])({},t.$store.state.internalOptions),Object(c["a"])({},o))),t.$set(t.$store.state,"options",Jt()(Object(c["a"])({},t.$store.state.options),Object(c["a"])({},n))),t.$set(t.$store.state,"networkOptions",Jt()(Object(c["a"])({},t.$store.state.networkOptions),Object(c["a"])({},i))),t.$set(t.$store.state,"settings",Jt()(Object(c["a"])({},t.$store.state.settings),Object(c["a"])({},r))),t.$set(t.$store.state,"notifications",Jt()(Object(c["a"])({},t.$store.state.notifications),Object(c["a"])({},l))),t.$set(t.$store.state,"addons",Jt()(Object(a["a"])(t.$store.state.addons),Object(a["a"])(u))),t.$set(t.$store.state,"license",Jt()(Object(c["a"])({},t.$store.state.license),Object(c["a"])({},d))),t.$set(t.$store.state,"currentPost",Jt()(Object(c["a"])({},t.$store.state.currentPost),Object(c["a"])({},p))),t.$set(t.$store.state,"tags",Jt()(Object(c["a"])({},t.$store.state.tags),Object(c["a"])({},m))),t.ping(),"term"===t.currentPost.context?(g=document.querySelector("#edittag input#name"),t.updateTaxonomyTitle(g.value),g.addEventListener("input",(function(e){t.updateTaxonomyTitle(e.target.value)})),h=document.querySelector("#edittag textarea#description"),t.updateTaxonomyDescription(h.value),h.addEventListener("input",(function(e){t.updateTaxonomyDescription(e.target.value)})),_=document.querySelector("#edittag input#slug"),t.updatePermalinkSlug(_.value),t.updatePermalink(t.currentPost.permalink),_.addEventListener("input",(function(e){t.updatePermalink(t.currentPost.permalink.replace("/".concat(t.permalinkSlug),"/".concat(e.target.value.replace(/ /gi,"-").replace(/[^a-z0-9-]/gi,"").toLowerCase())))})),y=document.querySelector("#aioseo-term-settings"),y&&(y.value=JSON.stringify(t.currentPost))):(b=document.body.classList.contains("block-editor-page"),b?f=window.setInterval((function(){var e=window.wp.data.select("core/editor"),s=e.getCurrentPost();s.id&&(window.clearInterval(f),t.blockEditor())}),50):(t.isWooCommerceProduct&&t.wooCommerce(),v=document.querySelector("#aioseo-post-settings"),v&&(v.value=JSON.stringify(t.currentPost)),P=document.querySelector("#post input#title"),t.updatePostTitle(P.value),P.addEventListener("input",(function(e){t.updatePostTitle(e.target.value)})),w=document.querySelector("#post_name"),C=w.value,t.updatePermalinkSlug(C),t.updatePermalink(t.currentPost.permalink),window.setInterval((function(){C!==w.value&&(C=w.value,t.updatePermalink(t.currentPost.permalink.replace("/".concat(t.permalinkSlug),"/".concat(w.value.replace(/ /gi,"-").replace(/[^a-z0-9-]/gi,"").toLowerCase()))))}),1e3),$=document.querySelector("#postexcerpt textarea#attachment_caption"),$&&(t.updateAttachmentCaption($.value),$.addEventListener("input",(function(e){t.updateAttachmentCaption(e.target.value)}))),k=document.querySelector("#postexcerpt textarea#excerpt"),k&&(t.updatePostExcerpt(k.value),k.addEventListener("input",(function(e){t.updatePostExcerpt(e.target.value)}))),S=document.querySelector("#postexcerpt textarea#attachment_alt"),S&&(t.updateAltTag(S.value),S.addEventListener("input",(function(e){t.updateAltTag(e.target.value)}))),x=document.querySelector("#content"),x&&x.addEventListener("keyup",(function(){if(t.updatePostContent(z()+Zt()),!t.isAnalyzing){var e=Object(c["a"])({},K["a"].state.currentPost),s=z()+Zt(),o=document.querySelector("#editable-post-name")&&document.querySelector("#editable-post-name").parentElement&&document.querySelector("#editable-post-name").parentElement.href?document.querySelector("#editable-post-name").parentElement.href:"";t.isAnalyzing=!0,window.aioseo.truSEO.runAnalysis({postId:e.id,postData:e,content:s,slug:o,state:e}),setTimeout((function(){t.isAnalyzing=!1}),1e3)}})),T=window.setInterval((function(){if(window.tinyMCE){var e=window.tinyMCE.get("content");e&&(window.clearInterval(T),t.classicEditor())}}),50)));case 23:case"end":return e.stop()}}),e)})))()}},Xt=Qt,te=Object(f["a"])(Xt,n,i,!1,null,null,null),ee=te.exports,se=s("561c");(function(t){var e=document.body.classList.contains("block-editor-page"),s="all-in-one-seo-pack";if(e&&window.aioseo.currentPost&&"post"===window.aioseo.currentPost.context&&window.aioseo.options.searchAppearance.dynamic.postTypes[window.aioseo.currentPost.postType].advanced.showMetaBox){var o=t.plugins.registerPlugin,n=t.editPost.PluginSidebarMoreMenuItem,i=t.editPost.PluginSidebar,a=t.element.Fragment,r=t.element.createElement,c=window.aioseo.options.advanced.truSeo,l=window.aioseo.user.capabilities.aioseo_page_analysis,u=window.aioseo.currentPost.isSpecialPage,d=window.aioseo.currentPost.seo_score,p=Object(se["__"])("N/A",s),m=function(t){return c&&l&&!u?80<t?"score-green":50<t?"score-orange":1<t?"score-red":"score-disabled":"score-disabled"},g=r("svg",{width:20,height:20,viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg"},r("path",{d:"M10 20C15.5228 20 20 15.5228 20 10C20 4.47715 15.5228 0 10 0C4.47716 0 0 4.47715 0 10C0 15.5228 4.47716 20 10 20ZM8.40767 3.65998C8.27222 3.45353 8.02129 3.357 7.79121 3.43828C7.52913 3.53087 7.27279 3.63976 7.02373 3.76429C6.80511 3.87361 6.69542 4.12332 6.74355 4.36686L6.91501 5.23457C6.95914 5.45792 6.86801 5.68459 6.69498 5.82859C6.42152 6.05617 6.16906 6.31347 5.94287 6.59826C5.80229 6.77526 5.58046 6.86908 5.36142 6.82484L4.51082 6.653C4.27186 6.60473 4.02744 6.71767 3.92115 6.94133C3.86111 7.06769 3.80444 7.19669 3.75129 7.32826C3.69815 7.45983 3.64929 7.59212 3.60464 7.72495C3.52562 7.96007 3.62107 8.21596 3.82396 8.35351L4.54621 8.84316C4.73219 8.96925 4.82481 9.19531 4.80234 9.42199C4.7662 9.78671 4.76767 10.1508 4.80457 10.5089C4.82791 10.7355 4.73605 10.9619 4.55052 11.0886L3.82966 11.5811C3.62734 11.7193 3.53274 11.9753 3.61239 12.2101C3.70314 12.4775 3.80985 12.7391 3.93188 12.9932C4.03901 13.2163 4.28373 13.3282 4.5224 13.2791L5.37279 13.1042C5.59165 13.0591 5.8138 13.1521 5.95491 13.3287C6.17794 13.6077 6.43009 13.8653 6.70918 14.0961C6.88264 14.2396 6.97459 14.4659 6.93122 14.6894L6.76282 15.5574C6.71551 15.8013 6.8262 16.0507 7.04538 16.1591C7.16921 16.2204 7.29563 16.2782 7.42457 16.3324C7.55352 16.3867 7.68316 16.4365 7.81334 16.4821C8.19418 16.6154 8.72721 16.1383 9.1213 15.7855C9.31563 15.6116 9.4355 15.3654 9.43677 15.1018C9.43677 15.1004 9.43678 15.099 9.43678 15.0976L9.43677 13.6462C9.43677 13.6308 9.43736 13.6155 9.43852 13.6004C8.27454 13.3165 7.40918 12.248 7.40918 10.9732V9.43198C7.40918 9.31483 7.50224 9.21986 7.61706 9.21986H8.338V7.70343C8.338 7.49405 8.50433 7.32432 8.70952 7.32432C8.9147 7.32432 9.08105 7.49405 9.08105 7.70343V9.21986H11.0316V7.70343C11.0316 7.49405 11.1979 7.32432 11.4031 7.32432C11.6083 7.32432 11.7746 7.49405 11.7746 7.70343V9.21986H12.4956C12.6104 9.21986 12.7034 9.31483 12.7034 9.43198V10.9732C12.7034 12.2883 11.7825 13.3838 10.5628 13.625C10.5631 13.632 10.5632 13.6391 10.5632 13.6462L10.5632 15.0914C10.5632 15.36 10.6867 15.6107 10.8868 15.7853C11.2879 16.1351 11.8302 16.6079 12.2088 16.4742C12.4708 16.3816 12.7272 16.2727 12.9762 16.1482C13.1949 16.0389 13.3046 15.7891 13.2564 15.5456L13.085 14.6779C13.0408 14.4545 13.132 14.2278 13.305 14.0838C13.5785 13.8563 13.8309 13.599 14.0571 13.3142C14.1977 13.1372 14.4195 13.0434 14.6385 13.0876L15.4892 13.2595C15.7281 13.3077 15.9725 13.1948 16.0788 12.9711C16.1389 12.8448 16.1955 12.7158 16.2487 12.5842C16.3018 12.4526 16.3507 12.3204 16.3953 12.1875C16.4744 11.9524 16.3789 11.6965 16.176 11.559L15.4537 11.0693C15.2678 10.9432 15.1752 10.7171 15.1976 10.4905C15.2338 10.1258 15.2323 9.76167 15.1954 9.40357C15.1721 9.17699 15.2639 8.95062 15.4495 8.82387L16.1703 8.33141C16.3726 8.1932 16.4672 7.93715 16.3876 7.70238C16.2968 7.43495 16.1901 7.17337 16.0681 6.91924C15.961 6.69615 15.7162 6.58422 15.4776 6.63333L14.6272 6.8083C14.4083 6.85333 14.1862 6.76033 14.0451 6.58377C13.822 6.30474 13.5699 6.04713 13.2908 5.81632C13.1173 5.67287 13.0254 5.44652 13.0688 5.22301L13.2372 4.35503C13.2845 4.11121 13.1738 3.86179 12.9546 3.75334C12.8308 3.69208 12.7043 3.63424 12.5754 3.58002C12.4465 3.52579 12.3168 3.47593 12.1866 3.43037C11.9562 3.34974 11.7055 3.44713 11.5707 3.65416L11.0908 4.39115C10.9672 4.58093 10.7457 4.67543 10.5235 4.65251C10.1661 4.61563 9.80932 4.61712 9.45837 4.65477C9.23633 4.6786 9.01448 4.58486 8.89027 4.39554L8.40767 3.65998Z",fillRule:"evenodd",clipRule:"evenodd"})),h=r("div",{id:"aioseo-post-settings-sidebar-button",className:m(d)},g,r("span",{id:"aioseo-post-score-disabled"},p),r("span",{id:"aioseo-post-score"},d),r("span",{},"/100")),_=window.aioseo.user;o("aioseo-post-settings-sidebar",{render:function(){return _.capabilities.aioseo_page_analysis||_.capabilities.aioseo_page_general_settings||_.capabilities.aioseo_page_social_settings||_.capabilities.aioseo_page_schema_settings||_.capabilities.aioseo_page_advanced_settings?r(a,{},r(n,{target:"aioseo-post-settings-sidebar",icon:g},"AIOSEO"),r(i,{name:"aioseo-post-settings-sidebar",icon:h,title:"AIOSEO"},r("div",{id:"aioseo-post-settings-sidebar",className:"aioseo-post-settings-sidebar"},r("div",{className:"aioseo-loading-spinner dark"},r("div",{className:"double-bounce1"},null),r("div",{className:"double-bounce2"},null))))):null}})}})(window.wp);s("2d26");if(window.aioseo.currentPost){o["default"].config.productionTip=!1;var oe=window.aioseo.currentPost.context,ne="post"===oe?window.aioseo.currentPost.postType:window.aioseo.currentPost.termType,ie="post"===oe?window.aioseo.options.searchAppearance.dynamic.postTypes[ne]:null,ae="term"===oe?window.aioseo.options.searchAppearance.dynamic.taxonomies[ne]:null,re="post"===oe?!!ie&&ie.advanced.showMetaBox:!!ae&&ae.advanced.showMetaBox,ce=document.querySelector("#aioseo-".concat(oe,"-settings-metabox"));ce&&(!window.wp.blockEditor&&window.wp.blocks&&window.wp.oldEditor&&(window.wp.blockEditor=window.editor),"post"!==oe&&"term"!==oe||!re||new o["default"]({store:K["a"],data:{tableContext:oe,screenContext:"metabox"},render:function(t){return t(ee,{props:{restUrl:window.aioseo.urls.restUrl}})}}).$mount("#aioseo-".concat(oe,"-settings-metabox")),"post"===oe&&re&&setInterval((function(){var t=document.getElementById("aioseo-post-settings-sidebar");t&&new o["default"]({store:K["a"],data:{tableContext:"post",screenContext:"sidebar"},render:function(t){return t(ee)}}).$mount("#aioseo-post-settings-sidebar")}),100))}window.onload=function(){var t=document.body.classList.contains("block-editor-page");window.addEventListener("beforeunload",(function(e){if(t){if(!K["a"].state.isDirty)return;e.preventDefault(),e.returnValue=""}}))}},"1cfa":function(t,e,s){},2309:function(t,e,s){},"243b":function(t,e,s){},"3d9a":function(t,e,s){},"40ea":function(t,e,s){"use strict";var o=s("588d"),n=s.n(o);n.a},"483d":function(t,e,s){"use strict";var o=s("b604"),n=s.n(o);n.a},"4c91":function(t,e,s){},5282:function(t,e,s){"use strict";var o=s("3d9a"),n=s.n(o);n.a},"549f":function(t,e,s){"use strict";var o=s("9a45"),n=s.n(o);n.a},"588d":function(t,e,s){},"5e7f":function(t,e,s){"use strict";var o=s("fc16"),n=s.n(o);n.a},"5fed":function(t,e,s){},"81a1":function(t,e,s){"use strict";var o=s("4c91"),n=s.n(o);n.a},"8c79":function(t,e,s){"use strict";var o=s("5fed"),n=s.n(o);n.a},"8dbd":function(t,e,s){"use strict";var o=s("2309"),n=s.n(o);n.a},9:function(t,e,s){t.exports=s("0e57")},"98a3":function(t,e,s){"use strict";var o=s("243b"),n=s.n(o);n.a},"9a45":function(t,e,s){},a072:function(t,e,s){"use strict";var o=s("1cfa"),n=s.n(o);n.a},b604:function(t,e,s){},e2aa:function(t,e,s){"use strict";var o=s("fe51"),n=s.n(o);n.a},e6ba:function(t,e,s){"use strict";var o=s("08d2"),n=s.n(o);n.a},fc16:function(t,e,s){},fe51:function(t,e,s){}});
languages/aioseo-lite.php CHANGED
@@ -1,75 +1,107 @@
1
  <?php
2
  /* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
3
  $generated_i18n_strings = array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  // Reference: src/vue/pages/local-seo/router/paths.js:19
5
  __( 'Locations', 'all-in-one-seo-pack' ),
6
 
 
7
  // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:292
 
8
  __( 'Opening Hours', 'all-in-one-seo-pack' ),
9
 
 
 
 
10
  // Reference: src/vue/router/index.js:51
11
  __( 'Are you sure you want to leave? you have unsaved changes!', 'all-in-one-seo-pack' ),
12
 
13
- // Reference: src/vue/pages/feature-manager/views/Main.vue:20
14
- __( 'Feature Manager', 'all-in-one-seo-pack' ),
15
-
16
- // Reference: src/vue/mixins/SeoSiteScore.js:18
17
  /* Translators: 1 - The plugin short name ("AIOSEO"). */
18
  __( 'Connect with %1$s', 'all-in-one-seo-pack' ),
19
 
20
- // Reference: src/vue/plugins/constants.js:1077
21
- __( 'Analytics', 'all-in-one-seo-pack' ),
22
-
23
- // Reference: src/vue/pages/post-settings/registerScoreToggler.js:21
24
- __( 'N/A', 'all-in-one-seo-pack' ),
25
-
26
- // Reference: src/vue/pages/dashboard/views/Main.vue:210
27
- __( 'Dashboard', 'all-in-one-seo-pack' ),
28
-
29
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:236
30
- __( 'Robots.txt Editor', 'all-in-one-seo-pack' ),
31
 
32
- // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:40
33
- __( '.htaccess Editor', 'all-in-one-seo-pack' ),
34
 
35
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:202
36
- __( 'Bad Bot Blocker', 'all-in-one-seo-pack' ),
37
 
38
- // Reference: src/vue/pages/tools/router/paths.js:46
39
- __( 'Import/Export', 'all-in-one-seo-pack' ),
40
 
41
- // Reference: src/vue/pages/tools/router/paths.js:55
42
- __( 'Database Tools', 'all-in-one-seo-pack' ),
43
 
44
- // Reference: src/vue/pages/tools/router/paths.js:64
45
- __( 'System Status', 'all-in-one-seo-pack' ),
46
 
47
- // Reference: src/vue/pages/about/router/paths.js:19
48
- __( 'About Us', 'all-in-one-seo-pack' ),
49
 
50
- // Reference: src/vue/pages/about/router/paths.js:28
51
- __( 'Getting Started', 'all-in-one-seo-pack' ),
52
 
53
- // Reference: src/vue/pages/about/router/paths.js:37
54
- __( 'Lite vs. Pro', '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/tools/views/DatabaseTools.vue:192
60
  __( 'Webmaster Tools', 'all-in-one-seo-pack' ),
61
 
62
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:193
63
  __( 'RSS Content', 'all-in-one-seo-pack' ),
64
 
65
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:210
66
  __( 'Access Control', 'all-in-one-seo-pack' ),
67
 
68
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:194
69
- __( 'Advanced', 'all-in-one-seo-pack' ),
70
 
71
- // Reference: src/vue/pages/social-networks/views/SocialProfiles.vue:25
72
- /* Translators: This refers to social media profiles. */
73
  __( 'Social Profiles', 'all-in-one-seo-pack' ),
74
 
75
  // Reference: src/vue/pages/post-settings/views/Social.vue:65
@@ -81,236 +113,359 @@ $generated_i18n_strings = array(
81
  // Reference: src/vue/pages/social-networks/views/Pinterest.vue:45
82
  __( 'Pinterest', 'all-in-one-seo-pack' ),
83
 
84
- // Reference: src/vue/pages/search-appearance/router/paths.js:19
85
- __( 'Global Settings', 'all-in-one-seo-pack' ),
86
-
87
- // Reference: src/vue/pages/search-appearance/router/paths.js:28
88
- __( 'Content Types', 'all-in-one-seo-pack' ),
89
-
90
- // Reference: src/vue/components/common/core/PriorityScore.vue:63
91
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:137
92
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:405
93
- __( 'Taxonomies', 'all-in-one-seo-pack' ),
94
-
95
- // Reference: src/vue/pages/search-appearance/router/paths.js:46
96
- __( 'Media', 'all-in-one-seo-pack' ),
97
-
98
- // Reference: src/vue/pages/search-appearance/router/paths.js:55
99
- __( 'Archives', 'all-in-one-seo-pack' ),
100
-
101
- // Reference: src/vue/pages/sitemaps/router/paths.js:19
102
  __( 'General Sitemap', 'all-in-one-seo-pack' ),
103
 
104
  // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:9
105
- // Reference: src/vue/plugins/constants.js:1115
106
  __( 'Video Sitemap', 'all-in-one-seo-pack' ),
107
 
108
- // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:7
109
- // Reference: src/vue/plugins/constants.js:1126
110
  __( 'News Sitemap', 'all-in-one-seo-pack' ),
111
 
112
  // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:124
113
  __( 'RSS Sitemap', 'all-in-one-seo-pack' ),
114
 
115
- // Reference: src/vue/pages/setup-wizard/router/paths.js:19
116
- __( 'Welcome', 'all-in-one-seo-pack' ),
117
 
118
- // Reference: src/vue/pages/setup-wizard/router/paths.js:28
119
- __( 'Import', 'all-in-one-seo-pack' ),
120
 
121
- // Reference: src/vue/pages/setup-wizard/router/paths.js:37
122
- __( 'Category', 'all-in-one-seo-pack' ),
123
 
124
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:315
125
- __( 'Additional Site Information', 'all-in-one-seo-pack' ),
126
 
127
- // Reference: src/vue/pages/setup-wizard/router/paths.js:55
128
- __( 'Choose Features', 'all-in-one-seo-pack' ),
129
 
130
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:249
131
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:195
132
- __( 'Search Appearance', 'all-in-one-seo-pack' ),
133
 
134
- // Reference: src/vue/pages/setup-wizard/router/paths.js:73
135
- __( 'Smart Recommendations', 'all-in-one-seo-pack' ),
136
 
137
- // Reference: src/vue/pages/setup-wizard/router/paths.js:82
138
- __( 'License Key', 'all-in-one-seo-pack' ),
139
 
140
- // Reference: src/vue/pages/setup-wizard/router/paths.js:91
141
- __( 'Success', 'all-in-one-seo-pack' ),
142
 
143
- // Reference: src/vue/pages/seo-analysis/router/paths.js:19
144
- __( 'SEO Audit Checklist', 'all-in-one-seo-pack' ),
145
 
146
- // Reference: src/vue/pages/seo-analysis/router/paths.js:28
147
- __( 'Analyze Competitor Site', 'all-in-one-seo-pack' ),
148
 
149
- // Reference: src/vue/pages/local-seo/views/OpeningHours.vue:31
150
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:280
151
- __( 'Opening Hours Settings', 'all-in-one-seo-pack' ),
152
 
153
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:281
154
- __( 'Show Opening Hours', 'all-in-one-seo-pack' ),
 
155
 
156
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:282
157
- __( 'Display Opening Hours', 'all-in-one-seo-pack' ),
158
 
159
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:283
160
- __( 'Labels', 'all-in-one-seo-pack' ),
161
 
162
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:284
163
- __( 'Closed label', 'all-in-one-seo-pack' ),
164
 
165
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:285
166
- __( 'Text to display when \'Closed\' setting is checked', 'all-in-one-seo-pack' ),
167
 
168
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:286
169
- __( 'Open 24h label', 'all-in-one-seo-pack' ),
170
 
171
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:287
172
- __( 'Text to display when \'Open 24h\' setting is checked', 'all-in-one-seo-pack' ),
173
 
174
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:288
175
- __( 'Open 24/7', 'all-in-one-seo-pack' ),
176
 
177
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:289
178
- __( 'Use 24h format', 'all-in-one-seo-pack' ),
179
 
180
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:290
181
- __( 'Timezone', 'all-in-one-seo-pack' ),
182
 
183
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:291
184
- __( 'Select your timezone:', 'all-in-one-seo-pack' ),
185
 
186
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:293
187
- __( 'Monday', 'all-in-one-seo-pack' ),
188
 
189
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:294
190
- __( 'Tuesday', 'all-in-one-seo-pack' ),
191
 
192
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:295
193
- __( 'Wednesday', 'all-in-one-seo-pack' ),
194
 
195
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:296
196
- __( 'Thursday', 'all-in-one-seo-pack' ),
197
 
198
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:297
199
- __( 'Friday', 'all-in-one-seo-pack' ),
200
 
201
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:298
202
- __( 'Saturday', 'all-in-one-seo-pack' ),
203
 
204
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:299
205
- __( 'Sunday', 'all-in-one-seo-pack' ),
206
 
207
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:300
208
- __( 'Open 24h', 'all-in-one-seo-pack' ),
209
 
210
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:301
211
- __( 'Closed', 'all-in-one-seo-pack' ),
 
212
 
213
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:100
214
- __( 'Locations Settings', 'all-in-one-seo-pack' ),
215
 
216
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:106
217
- __( 'Business Info', 'all-in-one-seo-pack' ),
218
 
219
- // Reference: src/vue/components/lite/local-business/Name.vue:16
220
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:120
221
- __( 'name', 'all-in-one-seo-pack' ),
222
 
223
- // Reference: src/vue/components/lite/local-business/Name.vue:17
224
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:121
225
- __( 'Your name or company name.', 'all-in-one-seo-pack' ),
226
 
227
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:108
228
- __( 'Business Type', 'all-in-one-seo-pack' ),
229
 
230
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:109
231
- __( 'URLs', 'all-in-one-seo-pack' ),
232
 
233
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:115
234
- __( 'Business Image', 'all-in-one-seo-pack' ),
235
 
236
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:116
237
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:328
238
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:447
239
- __( 'Upload or Select Image', 'all-in-one-seo-pack' ),
240
 
241
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:117
242
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:329
243
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:448
244
- __( 'Paste your image URL or select a new image', 'all-in-one-seo-pack' ),
245
 
246
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:118
247
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:330
248
- __( 'Minimum size: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or WEBP format.', 'all-in-one-seo-pack' ),
249
 
250
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:119
251
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:331
252
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:459
253
- __( 'Remove', 'all-in-one-seo-pack' ),
254
 
255
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:129
256
- __( 'Website URL:', 'all-in-one-seo-pack' ),
257
 
258
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:130
259
- __( 'About Page URL:', 'all-in-one-seo-pack' ),
260
 
261
- // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:131
262
- __( 'Contact Page URL:', 'all-in-one-seo-pack' ),
263
 
264
- // Reference: src/vue/components/common/core/PriorityScore.vue:77
265
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:124
266
- __( 'default', 'all-in-one-seo-pack' ),
267
 
268
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:125
269
- __( 'Animal Shelter', 'all-in-one-seo-pack' ),
270
 
271
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:304
272
- __( 'Select your timezone', 'all-in-one-seo-pack' ),
 
273
 
274
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:111
275
- __( 'Business Contact Info', 'all-in-one-seo-pack' ),
276
 
277
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:113
278
- __( 'Payment Info', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
279
 
280
- // Reference: src/vue/components/common/core/FeatureCard.vue:125
281
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:141
282
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemapActivate.vue:122
 
283
  __( 'An error occurred while activating the addon. Please upload it manually or contact support for more information.', 'all-in-one-seo-pack' ),
284
 
285
- // Reference: src/vue/pages/connect-pro/views/Main.vue:45
286
- __( 'Connecting...', 'all-in-one-seo-pack' ),
287
 
288
- // Reference: src/vue/pages/dashboard/views/Main.vue:201
289
  __( 'Smart Schema', 'all-in-one-seo-pack' ),
290
 
291
  // Reference: src/vue/pages/local-seo/views/Main.vue:21
292
- // Reference: src/vue/plugins/constants.js:1104
293
  __( 'Local SEO', 'all-in-one-seo-pack' ),
294
 
295
- // Reference: src/vue/pages/dashboard/views/Main.vue:203
296
  __( 'Advanced support for e-commerce', 'all-in-one-seo-pack' ),
297
 
298
- // Reference: src/vue/pages/dashboard/views/Main.vue:204
299
  __( 'Advanced Google Analytics tracking', 'all-in-one-seo-pack' ),
300
 
301
- // Reference: src/vue/pages/dashboard/views/Main.vue:205
302
  __( 'Video SEO Module', 'all-in-one-seo-pack' ),
303
 
304
- // Reference: src/vue/pages/dashboard/views/Main.vue:206
305
  __( 'Greater control over display settings', 'all-in-one-seo-pack' ),
306
 
 
307
  // Reference: src/vue/pages/setup-wizard/views/Success.vue:152
308
  __( 'SEO for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
309
 
310
  // Reference: src/vue/pages/dashboard/views/Main.vue:208
311
  __( 'Social meta for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
312
 
313
- // Reference: src/vue/pages/dashboard/views/Main.vue:209
314
  __( 'Ad free (no banner adverts)', 'all-in-one-seo-pack' ),
315
 
316
  // Reference: src/vue/pages/dashboard/views/Main.vue:211
@@ -360,21 +515,18 @@ $generated_i18n_strings = array(
360
  __( 'Improve local SEO rankings with schema for business address, open hours, contact, and more.', 'all-in-one-seo-pack' ),
361
 
362
  // Reference: src/vue/pages/social-networks/views/Main.vue:24
363
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:196
364
  __( 'Social Networks', 'all-in-one-seo-pack' ),
365
 
366
  // Reference: src/vue/pages/dashboard/views/Main.vue:229
367
  __( 'Setup Open Graph for Facebook, Twitter, etc. to show the right content / thumbnail preview.', 'all-in-one-seo-pack' ),
368
 
369
- // Reference: src/vue/pages/tools/views/Main.vue:29
370
  __( 'Tools', 'all-in-one-seo-pack' ),
371
 
372
  // Reference: src/vue/pages/dashboard/views/Main.vue:231
373
  __( 'Fine-tune your site with our powerful tools including Robots.txt editor, import/export and more.', 'all-in-one-seo-pack' ),
374
 
375
- // Reference: src/vue/pages/sitemaps/views/Main.vue:26
376
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:197
377
- // Reference: src/vue/plugins/constants.js:1058
378
  __( 'Sitemaps', 'all-in-one-seo-pack' ),
379
 
380
  // Reference: src/vue/pages/dashboard/views/Main.vue:233
@@ -391,37 +543,30 @@ $generated_i18n_strings = array(
391
  // Reference: src/vue/components/common/core/Notifications.vue:95
392
  __( 'Dismiss All', 'all-in-one-seo-pack' ),
393
 
394
- // Reference: src/vue/pages/dashboard/views/Main.vue:239
395
  __( 'Relaunch Setup Wizard', 'all-in-one-seo-pack' ),
396
 
397
  // Reference: src/vue/pages/dashboard/views/Main.vue:247
398
  __( 'You have %1$s more notifications', 'all-in-one-seo-pack' ),
399
 
400
- // Reference: src/vue/components/common/Cta.vue:236
401
- /* Translators: 1 - "Pro". */
402
- __( 'Upgrade to %1$s', 'all-in-one-seo-pack' ),
403
 
404
- // Reference: src/vue/components/common/Cta.vue:238
405
  /* Translators: 1 - The plugin name ("All in One SEO"). */
406
- __( 'This feature is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
407
-
408
- // Reference: src/vue/components/common/Cta.vue:239
409
- __( '%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' ),
410
-
411
- // Reference: src/vue/components/common/Cta.vue:240
412
- __( 'Learn more about all features', 'all-in-one-seo-pack' ),
413
 
414
- // Reference: src/vue/components/common/Cta.vue:241
415
- __( 'See all features', 'all-in-one-seo-pack' ),
416
 
417
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:678
418
- __( 'General Facebook Settings', 'all-in-one-seo-pack' ),
419
 
420
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:679
421
- __( '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' ),
422
 
423
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:680
424
- __( 'Enable Open Graph Markup', 'all-in-one-seo-pack' ),
425
 
426
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:439
427
  __( 'Default Post Image Source', 'all-in-one-seo-pack' ),
@@ -429,10 +574,10 @@ $generated_i18n_strings = array(
429
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:440
430
  __( 'Default Term Image Source', 'all-in-one-seo-pack' ),
431
 
432
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:441
433
  __( 'Width', 'all-in-one-seo-pack' ),
434
 
435
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:442
436
  __( 'Height', 'all-in-one-seo-pack' ),
437
 
438
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:443
@@ -441,40 +586,38 @@ $generated_i18n_strings = array(
441
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:444
442
  __( 'Term Custom Field Name', 'all-in-one-seo-pack' ),
443
 
444
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:687
445
- __( 'Default Post Facebook Image', 'all-in-one-seo-pack' ),
446
 
447
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:688
448
- __( 'Default Term Facebook Image', 'all-in-one-seo-pack' ),
449
 
450
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:691
451
- __( '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' ),
 
452
 
453
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:451
454
- __( 'Home Page Settings', 'all-in-one-seo-pack' ),
 
455
 
456
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:693
457
- __( 'The Title of the Page or Site you are Sharing', 'all-in-one-seo-pack' ),
458
 
459
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:695
460
- /* Translators: 1 - The plugin name ("All in One SEO"). */
461
- __( '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' ),
462
 
463
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:696
464
- __( 'Image', 'all-in-one-seo-pack' ),
465
 
466
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:697
467
- __( 'Site Name', 'all-in-one-seo-pack' ),
468
 
469
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:40
470
- __( 'Title', 'all-in-one-seo-pack' ),
471
 
472
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:454
473
  __( 'Use the home page title', 'all-in-one-seo-pack' ),
474
 
475
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:700
476
- __( 'Click on the tags below to insert variables into your site name.', 'all-in-one-seo-pack' ),
477
-
478
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:455
479
  __( 'Click on the tags below to insert variables into your home page title.', 'all-in-one-seo-pack' ),
480
 
@@ -487,195 +630,103 @@ $generated_i18n_strings = array(
487
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:458
488
  __( 'Click on the tags below to insert variables into your description.', 'all-in-one-seo-pack' ),
489
 
490
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:376
491
- __( 'Advanced Settings', 'all-in-one-seo-pack' ),
 
492
 
493
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:707
494
- __( 'Facebook Admin ID', 'all-in-one-seo-pack' ),
495
 
496
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:708
497
- __( 'Facebook App ID', 'all-in-one-seo-pack' ),
 
498
 
499
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:709
500
- __( 'Facebook Author URL', 'all-in-one-seo-pack' ),
501
 
502
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:710
503
- __( 'Enter your Facebook Admin ID here. You can enter multiple Facebook Admin IDs by separating them with a comma.', 'all-in-one-seo-pack' ),
504
 
505
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:711
506
- __( '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' ),
507
-
508
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:712
509
- __( 'Will be overriden if the Facebook author URL is present in the individual User Profile.', 'all-in-one-seo-pack' ),
510
-
511
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:713
512
- __( 'How to get your Facebook Admin ID', 'all-in-one-seo-pack' ),
513
-
514
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:714
515
- __( 'How to get your Facebook App ID', 'all-in-one-seo-pack' ),
516
-
517
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:715
518
- __( 'How to get your Facebook Author URL', 'all-in-one-seo-pack' ),
519
-
520
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:716
521
- __( 'Show Facebook Author', 'all-in-one-seo-pack' ),
522
-
523
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:717
524
- __( 'Default Post Type Object Types', 'all-in-one-seo-pack' ),
525
-
526
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:718
527
- __( 'Default Taxonomy Object Types', 'all-in-one-seo-pack' ),
528
-
529
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:719
530
- __( 'Default Taxonomy Object Types are only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
531
 
532
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:466
533
  __( 'Default Term Image Source is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
534
 
535
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:721
536
- __( 'Automatically Generate Article Tags', 'all-in-one-seo-pack' ),
537
-
538
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:722
539
- __( 'Use Keywords in Article Tags', 'all-in-one-seo-pack' ),
540
-
541
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:723
542
- __( 'Use Categories in Article Tags', 'all-in-one-seo-pack' ),
543
-
544
- // Reference: src/vue/pages/social-networks/views/Facebook.vue:724
545
- __( 'Use Post Tags in Article Tags', 'all-in-one-seo-pack' ),
546
-
547
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:462
548
- /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
549
- __( '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' ),
550
-
551
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:244
552
- __( 'Object Type', 'all-in-one-seo-pack' ),
553
-
554
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:148
555
- __( 'Video and News Sitemaps', 'all-in-one-seo-pack' ),
556
-
557
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:149
558
- __( 'Image SEO Optimization', 'all-in-one-seo-pack' ),
559
-
560
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:150
561
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:218
562
- __( 'Local Business SEO', 'all-in-one-seo-pack' ),
563
-
564
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:151
565
- __( 'Advanced WooCommerce', 'all-in-one-seo-pack' ),
566
-
567
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:153
568
- __( 'And many more...', 'all-in-one-seo-pack' ),
569
-
570
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:147
571
- __( 'Activate All Features', 'all-in-one-seo-pack' ),
572
-
573
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:148
574
- __( 'Deactivate All Features', 'all-in-one-seo-pack' ),
575
-
576
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:149
577
- __( 'Search for Features...', 'all-in-one-seo-pack' ),
578
-
579
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:151
580
- /* Translators: 1 - The plugin name ("All in One SEO"). */
581
- __( 'Upgrade %1$s to Pro and Unlock all Features!', 'all-in-one-seo-pack' ),
582
-
583
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:152
584
- __( 'Upgrade to Pro and Unlock All Features', 'all-in-one-seo-pack' ),
585
-
586
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:153
587
- __( 'A valid license key is required in order to use our addons.', 'all-in-one-seo-pack' ),
588
-
589
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:154
590
- __( 'Enter License Key', 'all-in-one-seo-pack' ),
591
-
592
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:155
593
- __( 'Purchase License', 'all-in-one-seo-pack' ),
594
-
595
- // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:159
596
- __( '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' ),
597
 
598
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:10
599
- __( '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' ),
600
 
601
- // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:10
602
- __( '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' ),
603
 
604
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:102
605
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:279
606
- __( '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' ),
607
 
608
  // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:417
609
  /* Translators: 1 - The plugin name ("All in One SEO"). */
610
  __( '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' ),
611
 
612
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:261
613
- // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:11
614
  // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:11
615
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:126
616
  __( 'Enable Sitemap', 'all-in-one-seo-pack' ),
617
 
618
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:127
619
  __( 'Sitemap Settings', 'all-in-one-seo-pack' ),
620
 
621
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:128
622
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:400
623
  __( 'Enable Sitemap Indexes', 'all-in-one-seo-pack' ),
624
 
625
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:129
626
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:401
627
  __( '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' ),
628
 
629
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:402
630
  __( 'Links Per Sitemap', 'all-in-one-seo-pack' ),
631
 
632
- // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:13
633
  // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:13
634
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:131
635
  __( 'Noindexed content will not be displayed in your sitemap.', 'all-in-one-seo-pack' ),
636
 
637
- // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:14
638
  // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:14
639
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:132
640
  __( 'Do you get a blank sitemap or 404 error?', 'all-in-one-seo-pack' ),
641
 
642
  // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:425
643
  __( 'Open Sitemap', 'all-in-one-seo-pack' ),
644
 
645
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:403
646
  __( 'Allows you to specify the maximum number of posts in a sitemap (up to 50,000).', 'all-in-one-seo-pack' ),
647
 
648
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:135
649
  __( 'Automatically Ping Search Engines', 'all-in-one-seo-pack' ),
650
 
651
- // Reference: src/vue/components/common/core/PriorityScore.vue:62
652
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:136
653
  __( 'Post Types', 'all-in-one-seo-pack' ),
654
 
655
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:138
656
  __( 'Date Archive Sitemap', 'all-in-one-seo-pack' ),
657
 
658
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:139
659
  __( 'Include Date Archives in your sitemap.', 'all-in-one-seo-pack' ),
660
 
661
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:140
662
  __( 'Author Sitemap', 'all-in-one-seo-pack' ),
663
 
664
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:141
665
  __( 'Include Author Archives in your sitemap.', 'all-in-one-seo-pack' ),
666
 
667
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:260
668
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:142
669
  __( 'Include All Post Types', 'all-in-one-seo-pack' ),
670
 
671
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:143
672
  __( 'Select which Post Types appear in your sitemap.', 'all-in-one-seo-pack' ),
673
 
674
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:144
675
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:408
676
  __( 'Include All Taxonomies', 'all-in-one-seo-pack' ),
677
 
678
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:145
679
  __( 'Select which Taxonomies appear in your sitemap.', 'all-in-one-seo-pack' ),
680
 
681
  // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:438
@@ -684,16 +735,10 @@ $generated_i18n_strings = array(
684
  // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:439
685
  __( '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' ),
686
 
687
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:401
688
- __( 'Exclude Posts / Pages', 'all-in-one-seo-pack' ),
689
-
690
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:414
691
- __( 'Exclude Terms', 'all-in-one-seo-pack' ),
692
-
693
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:415
694
  __( 'Any posts that are assigned to these terms will also be excluded from your sitemap.', 'all-in-one-seo-pack' ),
695
 
696
- // Reference: src/vue/pages/post-settings/views/Advanced.vue:118
697
  __( 'Priority Score', 'all-in-one-seo-pack' ),
698
 
699
  // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:445
@@ -717,388 +762,579 @@ $generated_i18n_strings = array(
717
  // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:451
718
  __( 'Dynamically creates the XML Sitemap instead of using a static file.', 'all-in-one-seo-pack' ),
719
 
720
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:436
721
  __( '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' ),
722
 
723
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:437
724
  __( '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' ),
725
 
726
- // Reference: src/vue/pages/search-appearance/views/Media.vue:106
727
- __( 'Redirect Attachment URLs', 'all-in-one-seo-pack' ),
728
 
729
- // Reference: src/vue/pages/search-appearance/views/Media.vue:107
730
- __( 'Attachment', 'all-in-one-seo-pack' ),
731
 
732
- // Reference: src/vue/pages/search-appearance/views/Media.vue:108
733
- __( 'Attachment Parent', 'all-in-one-seo-pack' ),
734
 
735
- // Reference: src/vue/pages/search-appearance/views/Media.vue:109
736
- __( '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' ),
737
 
738
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:214
739
- // Reference: src/vue/plugins/constants.js:1093
740
- __( 'Image SEO', 'all-in-one-seo-pack' ),
741
 
742
- // Reference: src/vue/pages/search-appearance/views/Media.vue:115
743
- __( 'Title & Description', 'all-in-one-seo-pack' ),
744
 
745
- // Reference: src/vue/pages/search-appearance/views/Media.vue:121
746
- __( 'Schema Markup', 'all-in-one-seo-pack' ),
747
 
748
- // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:90
749
- __( 'Upgrade to Pro and Unlock Custom Taxonomies', 'all-in-one-seo-pack' ),
750
 
751
- // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:92
752
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro". */
753
- __( '%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' ),
754
 
755
- // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:93
756
- __( 'Custom Taxonomy Support is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
 
757
 
758
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:114
759
- __( 'Title Attribute Format', 'all-in-one-seo-pack' ),
760
 
761
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:115
762
- __( 'Strip Punctuation for Title Attributes', 'all-in-one-seo-pack' ),
763
 
764
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:116
765
- __( 'Click on the tags below to insert variables into your title attribute.', 'all-in-one-seo-pack' ),
766
 
767
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:117
768
- __( 'Alt Tag Attribute Format', 'all-in-one-seo-pack' ),
 
769
 
770
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:118
771
- __( 'Click on the tags below to insert variables into your alt tag attribute.', 'all-in-one-seo-pack' ),
 
772
 
773
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:119
774
- __( 'Strip Punctuation for Alt Attributes', 'all-in-one-seo-pack' ),
 
775
 
776
- // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:17
777
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:17
778
- __( 'This feature requires one of the following plans:', 'all-in-one-seo-pack' ),
779
 
780
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:122
781
- __( 'Upgrade to Pro and Unlock Image SEO', 'all-in-one-seo-pack' ),
 
782
 
783
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:123
784
- __( 'Image SEO is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
785
 
786
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:132
787
- __( 'Set title attributes', 'all-in-one-seo-pack' ),
788
 
789
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:133
790
- __( 'Set alt tag attributes', 'all-in-one-seo-pack' ),
791
 
792
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:134
793
- __( 'Strip punctuation for titles', 'all-in-one-seo-pack' ),
 
794
 
795
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:135
796
- __( 'Strip punctuation for alt tags', 'all-in-one-seo-pack' ),
797
 
798
- // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:109
799
- __( 'Export Settings', 'all-in-one-seo-pack' ),
800
 
801
- // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:110
802
- __( 'Export All Settings', 'all-in-one-seo-pack' ),
803
 
804
- // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:111
805
- __( 'Export All Post Types', 'all-in-one-seo-pack' ),
806
 
807
- // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:144
808
- __( 'Show in Search Results', 'all-in-one-seo-pack' ),
809
 
810
- // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:145
811
- __( 'Click on the tags below to insert variables into your title.', 'all-in-one-seo-pack' ),
812
 
813
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:150
814
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:256
815
- __( 'Meta Description', 'all-in-one-seo-pack' ),
816
 
817
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:254
818
- __( 'Click on the tags below to insert variables into your meta description.', 'all-in-one-seo-pack' ),
819
 
820
- // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:148
821
- __( 'Selecting "No" will no-index this page.', 'all-in-one-seo-pack' ),
822
 
823
- // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:163
824
- /* Translators: 1 - The type of page (Post, Page, Category, Tag, etc.). */
825
- __( '%1$s Title', 'all-in-one-seo-pack' ),
826
 
827
- // Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:70
828
- // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:51
829
- __( 'Custom Fields', 'all-in-one-seo-pack' ),
830
 
831
- // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:52
832
- __( 'List of custom field names to include in the SEO Page Analysis. Add one per line.', 'all-in-one-seo-pack' ),
833
 
834
- // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:54
835
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
836
- __( '%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' ),
837
 
838
- // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:55
839
- __( 'Upgrade to Pro and Unlock Custom Fields', 'all-in-one-seo-pack' ),
840
 
841
- // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:56
842
- __( 'Custom Fields are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
843
 
844
- // Reference: src/vue/components/common/core/RobotsMeta.vue:106
845
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:168
846
- __( 'None', 'all-in-one-seo-pack' ),
847
 
848
- // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:55
849
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:70
850
- __( 'Schema Type', 'all-in-one-seo-pack' ),
851
 
852
- // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:56
853
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:71
854
- __( 'Article Type', 'all-in-one-seo-pack' ),
855
 
856
- // Reference: src/vue/plugins/constants.js:1239
857
- __( 'Article', 'all-in-one-seo-pack' ),
858
 
859
- // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:58
860
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:73
861
- __( 'Blog Post', 'all-in-one-seo-pack' ),
862
 
863
- // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:59
864
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:74
865
- __( 'News Article', 'all-in-one-seo-pack' ),
866
 
867
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:76
868
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
869
- __( '%1$s %2$s gives you advanced customizations for the structured data markup on Posts, Pages, Categories, Tags, etc.', 'all-in-one-seo-pack' ),
870
 
871
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:77
872
- __( 'Upgrade to Pro and Unlock Schema Markup', 'all-in-one-seo-pack' ),
873
 
874
- // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:78
875
- __( 'Schema Markup is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
876
 
877
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:107
878
- __( 'Web Page Type', 'all-in-one-seo-pack' ),
 
879
 
880
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:107
881
- __( 'Robots Meta Settings', 'all-in-one-seo-pack' ),
882
 
883
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:108
884
- __( 'Bulk Editing', 'all-in-one-seo-pack' ),
 
885
 
886
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:109
887
- __( 'Read Only', 'all-in-one-seo-pack' ),
 
888
 
889
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:110
890
- __( 'Other Options', 'all-in-one-seo-pack' ),
 
891
 
892
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:111
893
- __( 'Show Date in Google Preview', 'all-in-one-seo-pack' ),
 
894
 
895
- // Reference: src/vue/pages/post-settings/views/Advanced.vue:123
896
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:442
897
- __( 'Keywords', 'all-in-one-seo-pack' ),
898
 
899
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:129
900
- /* Translators: 1 - The type of page (Post, Page, Category, Tag, etc.). */
901
- __( 'Show %1$s Thumbnail in Google Custom Search', 'all-in-one-seo-pack' ),
902
 
903
- // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:133
904
- /* Translators: 1 - The plugin name ("All in One SEO") */
905
- __( 'Show %1$s Meta Box', 'all-in-one-seo-pack' ),
906
 
907
- // Reference: src/vue/components/common/core/AdditionalPages.vue:101
908
- // Reference: src/vue/components/common/core/Keyphrase.vue:44
909
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:254
910
- __( 'Delete', 'all-in-one-seo-pack' ),
911
 
912
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:101
913
- __( 'Success! The backup was deleted.', 'all-in-one-seo-pack' ),
 
914
 
915
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:102
916
- __( 'Success! The backup was restored.', 'all-in-one-seo-pack' ),
 
917
 
918
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:146
919
- __( '%1$s at %2$s', 'all-in-one-seo-pack' ),
 
920
 
921
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:96
922
- __( 'Backup Settings', 'all-in-one-seo-pack' ),
 
923
 
924
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:97
925
- __( 'You have no saved backups.', 'all-in-one-seo-pack' ),
 
926
 
927
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:98
928
- __( 'Create Backup', 'all-in-one-seo-pack' ),
 
929
 
930
- // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:99
931
- __( 'Restore', 'all-in-one-seo-pack' ),
 
932
 
933
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:412
934
- __( 'Title Separator', 'all-in-one-seo-pack' ),
 
935
 
936
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:413
937
- __( 'Separator Character', 'all-in-one-seo-pack' ),
 
938
 
939
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:415
940
- /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
941
- __( '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' ),
942
 
943
- // Reference: src/vue/components/common/core/PriorityScore.vue:66
944
- __( 'Home Page', 'all-in-one-seo-pack' ),
 
945
 
946
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:417
947
- __( 'Site Title', 'all-in-one-seo-pack' ),
948
 
949
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:253
950
- __( 'Click on the tags below to insert variables into your site title.', 'all-in-one-seo-pack' ),
951
 
952
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:421
953
- __( 'Knowledge Graph', 'all-in-one-seo-pack' ),
954
 
955
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:422
956
- __( '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' ),
957
 
958
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:316
959
- __( 'Person or Organization', 'all-in-one-seo-pack' ),
960
 
961
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:318
962
- __( 'Person', 'all-in-one-seo-pack' ),
963
 
964
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:319
965
- __( 'Organization', 'all-in-one-seo-pack' ),
966
 
967
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:320
968
- __( 'Choose whether the site represents a person or an organization.', 'all-in-one-seo-pack' ),
969
 
970
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:317
971
- __( 'Choose a Person', 'all-in-one-seo-pack' ),
972
 
973
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:321
974
- __( 'Name', 'all-in-one-seo-pack' ),
975
 
976
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:323
977
- __( 'Phone Number', 'all-in-one-seo-pack' ),
978
 
979
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:324
980
- __( 'Choose a Contact Type', 'all-in-one-seo-pack' ),
981
 
982
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:325
983
- __( 'Contact Type', 'all-in-one-seo-pack' ),
984
 
985
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:326
986
- __( 'Select which team or department the phone number belongs to.', 'all-in-one-seo-pack' ),
987
 
988
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:327
989
- __( 'Logo', 'all-in-one-seo-pack' ),
990
 
991
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:439
992
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag., 3 - "Pro", 4 - "Pro". */
993
- __( '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' ),
994
 
995
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:440
996
- __( 'Go to Local SEO Settings', 'all-in-one-seo-pack' ),
997
 
998
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:441
999
- __( 'Enable Schema Markup', 'all-in-one-seo-pack' ),
1000
 
1001
- // Reference: src/vue/pages/post-settings/views/Advanced.vue:124
1002
- // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:443
1003
- __( 'Press enter to create a keyword', 'all-in-one-seo-pack' ),
1004
 
1005
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:342
1006
- __( 'Manually Enter Person', 'all-in-one-seo-pack' ),
1007
 
1008
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:377
1009
- __( 'Global Robots Meta', 'all-in-one-seo-pack' ),
1010
 
1011
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:378
1012
- __( 'Noindex Empty Category and Tag Archives', 'all-in-one-seo-pack' ),
1013
 
1014
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:379
1015
- __( 'Remove Stopwords from Permalinks', 'all-in-one-seo-pack' ),
1016
 
1017
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:380
1018
- __( 'Remove Category Base Prefix', 'all-in-one-seo-pack' ),
1019
 
1020
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:383
1021
- __( 'Automatically Add Missing Image Alt / Title Tags', 'all-in-one-seo-pack' ),
1022
 
1023
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:385
1024
- /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
1025
- __( 'This feature is only for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
1026
 
1027
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:386
1028
- __( 'Autogenerate Descriptions', 'all-in-one-seo-pack' ),
1029
 
1030
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:387
1031
- __( 'Use Content for Autogenerated Descriptions', 'all-in-one-seo-pack' ),
1032
 
1033
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:388
1034
- __( 'Run Shortcodes in Description', 'all-in-one-seo-pack' ),
1035
 
1036
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:389
1037
- __( 'No Pagination for Canonical URLs', 'all-in-one-seo-pack' ),
1038
 
1039
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:390
1040
- __( 'Use Meta Keywords', 'all-in-one-seo-pack' ),
1041
 
1042
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:391
1043
- __( 'This option allows you to toggle the use of Meta Keywords throughout the whole of the site.', 'all-in-one-seo-pack' ),
1044
 
1045
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:392
1046
- __( 'Use Categories for Meta Keywords', 'all-in-one-seo-pack' ),
1047
 
1048
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:393
1049
- __( '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' ),
1050
 
1051
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:394
1052
- __( 'Use Tags for Meta Keywords', 'all-in-one-seo-pack' ),
1053
 
1054
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:395
1055
- __( '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' ),
1056
 
1057
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:396
1058
- __( 'Dynamically Generate Meta Keywords', 'all-in-one-seo-pack' ),
1059
 
1060
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:397
1061
- __( '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' ),
1062
 
1063
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:398
1064
- __( 'Paged Format', 'all-in-one-seo-pack' ),
1065
 
1066
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:399
1067
- __( 'This string gets appended/prepended to titles and descriptions of paged index pages (like home or archive pages).', 'all-in-one-seo-pack' ),
1068
 
1069
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:400
1070
- __( 'Description Format', 'all-in-one-seo-pack' ),
1071
 
1072
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:403
1073
- __( 'Enable Sitelinks Search Box', 'all-in-one-seo-pack' ),
1074
 
1075
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:405
1076
- /* Translators: 1 - The plugin name ("All in One SEO"). */
1077
- __( 'Choose whether %1$s should output the required schema markup that Google needs to generate a sitelinks search box.', 'all-in-one-seo-pack' ),
1078
 
1079
- // Reference: src/vue/pages/search-appearance/views/Advanced.vue:406
1080
- __( 'A Description tag is required in order to properly display your meta descriptions on your site.', 'all-in-one-seo-pack' ),
1081
 
1082
- // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:68
1083
- __( 'WP Roles (Editor, Author)', 'all-in-one-seo-pack' ),
1084
 
1085
- // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:69
1086
- __( 'SEO Manager Role', 'all-in-one-seo-pack' ),
1087
 
1088
- // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:70
1089
- __( 'SEO Editor Role', 'all-in-one-seo-pack' ),
1090
 
1091
- // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:71
1092
- __( 'Default settings that just work', 'all-in-one-seo-pack' ),
1093
 
1094
- // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:72
1095
- __( 'Granular controls per role', 'all-in-one-seo-pack' ),
1096
 
1097
- // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:73
1098
- __( 'Upgrade to Pro and Unlock Access Control', 'all-in-one-seo-pack' ),
1099
 
1100
- // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:74
1101
- __( 'Access Control is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1102
 
1103
  // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:109
1104
  __( 'Social Meta (Open Graph Markup)', 'all-in-one-seo-pack' ),
@@ -1136,6 +1372,9 @@ $generated_i18n_strings = array(
1136
  // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:156
1137
  __( 'Submit Your Latest News Stories to Google News (Business & Agency tier only)', 'all-in-one-seo-pack' ),
1138
 
 
 
 
1139
  // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:162
1140
  __( 'Not Available', 'all-in-one-seo-pack' ),
1141
 
@@ -1154,7 +1393,7 @@ $generated_i18n_strings = array(
1154
  // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:176
1155
  __( 'Posts, Pages, Categories, Tags + Breadcrumb Navigation', 'all-in-one-seo-pack' ),
1156
 
1157
- // Reference: src/vue/plugins/constants.js:1042
1158
  __( 'Customer Support', 'all-in-one-seo-pack' ),
1159
 
1160
  // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:182
@@ -1174,13 +1413,14 @@ $generated_i18n_strings = array(
1174
  // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:76
1175
  __( 'Features:', 'all-in-one-seo-pack' ),
1176
 
1177
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:146
1178
  __( 'Upgrade to Pro to Unlock Powerful SEO Features', 'all-in-one-seo-pack' ),
1179
 
1180
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:147
 
1181
  __( '%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' ),
1182
 
1183
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:155
1184
  /* Translators: 1 - "Pro". */
1185
  __( 'Upgrade to %1$s Today', 'all-in-one-seo-pack' ),
1186
 
@@ -1190,39 +1430,113 @@ $generated_i18n_strings = array(
1190
  // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:98
1191
  __( 'Search Engine Optimization (SEO)', 'all-in-one-seo-pack' ),
1192
 
1193
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:81
1194
- __( 'Import / Restore %1$s Settings', 'all-in-one-seo-pack' ),
1195
 
1196
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:82
1197
- __( 'Import from a JSON or INI file...', 'all-in-one-seo-pack' ),
1198
 
1199
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:83
1200
- __( 'Choose a File', 'all-in-one-seo-pack' ),
1201
 
1202
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:84
1203
- __( 'Imported settings will overwrite existing settings and will not be merged.', 'all-in-one-seo-pack' ),
1204
 
1205
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:86
1206
- __( 'A JSON or INI file is required to import settings.', 'all-in-one-seo-pack' ),
1207
 
1208
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:87
1209
- __( 'Success! Your settings have been imported.', 'all-in-one-seo-pack' ),
1210
 
1211
- // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:88
1212
- __( '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' ),
1213
 
1214
- // Reference: src/vue/pages/about/views/GettingStarted.vue:129
1215
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string. */
1216
- __( 'Get %1$s %2$s and Unlock all the Powerful Features', 'all-in-one-seo-pack' ),
1217
 
1218
- // Reference: src/vue/pages/about/views/GettingStarted.vue:131
1219
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string. */
1220
- __( 'Get %1$s %2$s and Unlock all the Powerful Features.', 'all-in-one-seo-pack' ),
1221
 
1222
- // Reference: src/vue/pages/about/views/GettingStarted.vue:140
1223
- __( 'Social Meta for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
1224
 
1225
- // Reference: src/vue/pages/about/views/GettingStarted.vue:147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1226
  __( 'Video Tutorials', 'all-in-one-seo-pack' ),
1227
 
1228
  // Reference: src/vue/pages/about/views/GettingStarted.vue:148
@@ -1258,99 +1572,153 @@ $generated_i18n_strings = array(
1258
  // Reference: src/vue/pages/about/views/GettingStarted.vue:181
1259
  __( 'Optimizing your Content Headings', 'all-in-one-seo-pack' ),
1260
 
1261
- // Reference: src/vue/pages/about/views/Main.vue:23
1262
- __( 'About', 'all-in-one-seo-pack' ),
1263
 
1264
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:90
1265
- __( 'Block Bad Bots using HTTP', 'all-in-one-seo-pack' ),
1266
 
1267
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:91
1268
- __( 'Block Referral Spam using HTTP', 'all-in-one-seo-pack' ),
1269
 
1270
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:92
1271
- __( 'Track Blocked Bots', 'all-in-one-seo-pack' ),
 
1272
 
1273
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:93
1274
- __( 'Use Custom Blocklists', 'all-in-one-seo-pack' ),
1275
 
1276
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:94
1277
- __( 'User Agent Blocklist', 'all-in-one-seo-pack' ),
1278
 
1279
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:95
1280
- __( 'Referer Blocklist', 'all-in-one-seo-pack' ),
 
1281
 
1282
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:96
1283
- __( 'Blocked Bots Log', 'all-in-one-seo-pack' ),
1284
 
1285
- // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:98
1286
- /* Translators: 1 - The location of the log file. */
1287
- __( 'The log for the blocked bots is located here: %1$s', 'all-in-one-seo-pack' ),
1288
 
1289
- // Reference: src/vue/pages/settings/views/RssContent.vue:121
1290
- __( 'Automatically add content to your site\'s RSS feed.', 'all-in-one-seo-pack' ),
1291
 
1292
- // Reference: src/vue/pages/settings/views/RssContent.vue:122
1293
- __( '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' ),
1294
 
1295
- // Reference: src/vue/pages/settings/views/RssContent.vue:123
1296
- __( 'Learn more', 'all-in-one-seo-pack' ),
1297
 
1298
- // Reference: src/vue/pages/settings/views/RssContent.vue:124
1299
- __( 'RSS Content Settings', 'all-in-one-seo-pack' ),
1300
 
1301
- // Reference: src/vue/pages/settings/views/RssContent.vue:125
1302
- __( 'Open Your RSS Feed', 'all-in-one-seo-pack' ),
1303
 
1304
- // Reference: src/vue/pages/settings/views/RssContent.vue:126
1305
- __( 'RSS Before Content', 'all-in-one-seo-pack' ),
1306
 
1307
- // Reference: src/vue/pages/settings/views/RssContent.vue:127
1308
- __( 'RSS After Content', 'all-in-one-seo-pack' ),
1309
 
1310
- // Reference: src/vue/pages/settings/views/RssContent.vue:128
1311
- __( 'Add content before each post in your site feed.', 'all-in-one-seo-pack' ),
1312
 
1313
- // Reference: src/vue/pages/settings/views/RssContent.vue:129
1314
- __( 'Add content after each post in your site feed.', 'all-in-one-seo-pack' ),
1315
 
1316
- // Reference: src/vue/pages/settings/views/RssContent.vue:130
1317
- __( 'Your user account role does not have access to edit this field. %2$s', 'all-in-one-seo-pack' ),
1318
 
1319
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:124
1320
- __( 'Import Settings From Other Plugins', 'all-in-one-seo-pack' ),
 
1321
 
1322
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:125
1323
- __( 'Choose a plugin to import SEO data directly into %1$s.', 'all-in-one-seo-pack' ),
 
1324
 
1325
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:126
1326
- __( 'Select a plugin...', 'all-in-one-seo-pack' ),
1327
 
1328
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:128
1329
- __( 'All Settings', 'all-in-one-seo-pack' ),
 
1330
 
1331
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:129
1332
- __( 'not installed', 'all-in-one-seo-pack' ),
 
1333
 
1334
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:143
1335
- __( 'SEO Settings', 'all-in-one-seo-pack' ),
 
1336
 
1337
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:144
1338
- __( 'Post Meta', 'all-in-one-seo-pack' ),
1339
 
1340
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:148
1341
- __( 'Term Meta', 'all-in-one-seo-pack' ),
1342
 
1343
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:176
1344
- /* Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO"). */
1345
- __( '%1$s was successfully imported!', 'all-in-one-seo-pack' ),
1346
 
1347
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:180
1348
- /* Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO"). */
1349
- __( 'An error occurred while importing %1$s. Please try again.', 'all-in-one-seo-pack' ),
1350
 
1351
- // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:223
1352
- /* Translators: 1 - The name of the plugin (e.g. "Yoast SEO"), 2 - The version of the plugin (e.g. "10.2.3"). */
1353
- __( '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' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1354
 
1355
  // Reference: src/vue/pages/settings/views/GeneralSettings.vue:49
1356
  __( 'License', 'all-in-one-seo-pack' ),
@@ -1359,11 +1727,11 @@ $generated_i18n_strings = array(
1359
  __( 'Free', 'all-in-one-seo-pack' ),
1360
 
1361
  // Reference: src/vue/components/lite/core/UpgradeBar.vue:28
 
1362
  /* Translators: 1 - "Pro". */
1363
  __( 'upgrading to %1$s', 'all-in-one-seo-pack' ),
1364
 
1365
  // Reference: src/vue/components/lite/settings/LicenseKey.vue:56
1366
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:57
1367
  /* Translators: This refers to a discount ("As a valued user you receive 50%, automatically applied at checkout!"). */
1368
  __( 'off', 'all-in-one-seo-pack' ),
1369
 
@@ -1375,1508 +1743,855 @@ $generated_i18n_strings = array(
1375
  __( 'Use our configuration wizard to properly set up %1$s with your WordPress website.', 'all-in-one-seo-pack' ),
1376
 
1377
  // Reference: src/vue/components/lite/settings/LicenseKey.vue:72
1378
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:73
1379
  /* Translators: 1 - "upgrading to Pro". */
1380
  __( 'To unlock more features, consider %1$s.', 'all-in-one-seo-pack' ),
1381
 
1382
  // Reference: src/vue/components/lite/settings/LicenseKey.vue:76
1383
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:77
1384
  /* Translators: 1 - "50% off". */
1385
  __( 'As a valued user you receive %1$s, automatically applied at checkout!', 'all-in-one-seo-pack' ),
1386
 
1387
- // Reference: src/vue/pages/about/views/AboutUs.vue:118
1388
- /* Translators: 1 - The plugin name ("All in One SEO"), 2 - Same as previous. */
1389
- __( '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' ),
1390
 
1391
- // Reference: src/vue/pages/about/views/AboutUs.vue:119
1392
- __( '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' ),
1393
 
1394
- // Reference: src/vue/pages/about/views/AboutUs.vue:120
1395
- __( 'Our goal is to take the pain out of optimizing your website for search engines.', 'all-in-one-seo-pack' ),
1396
 
1397
- // Reference: src/vue/pages/about/views/AboutUs.vue:122
1398
- /* Translators: 1 - The plugin name ("All in One SEO"), 2 - Company name ("Awesome Motive"). */
1399
- __( '%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' ),
1400
 
1401
- // Reference: src/vue/pages/about/views/AboutUs.vue:123
1402
- __( 'Yup, we know a thing or two about building awesome products that customers love.', 'all-in-one-seo-pack' ),
1403
 
1404
- // Reference: src/vue/pages/about/views/AboutUs.vue:125
1405
- /* Translators: 1 - Company name ("Awesome Motive"). */
1406
- __( 'The %1$s Team', 'all-in-one-seo-pack' ),
1407
 
1408
- // Reference: src/vue/pages/about/views/AboutUs.vue:129
1409
- __( 'Install Plugin', 'all-in-one-seo-pack' ),
1410
 
1411
- // Reference: src/vue/pages/about/views/AboutUs.vue:130
1412
- __( 'Activate', 'all-in-one-seo-pack' ),
1413
 
1414
- // Reference: src/vue/components/common/core/FeatureCard.vue:124
1415
- __( 'Manage', 'all-in-one-seo-pack' ),
1416
 
1417
- // Reference: src/vue/pages/about/views/AboutUs.vue:133
1418
- __( 'Status:', 'all-in-one-seo-pack' ),
1419
 
1420
- // Reference: src/vue/components/common/core/FeatureCard.vue:119
1421
- __( 'Activated', 'all-in-one-seo-pack' ),
1422
 
1423
- // Reference: src/vue/components/common/core/FeatureCard.vue:120
1424
- __( 'Deactivated', 'all-in-one-seo-pack' ),
1425
 
1426
- // Reference: src/vue/components/common/core/FeatureCard.vue:121
1427
- __( 'Not Installed', 'all-in-one-seo-pack' ),
1428
 
1429
- // Reference: src/vue/pages/about/views/AboutUs.vue:144
1430
- __( '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' ),
 
1431
 
1432
- // Reference: src/vue/pages/about/views/AboutUs.vue:153
1433
- __( 'WPForms allows you to create beautiful contact forms for your site in minutes, not hours!', 'all-in-one-seo-pack' ),
1434
 
1435
- // Reference: src/vue/pages/about/views/AboutUs.vue:170
1436
- __( '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' ),
1437
 
1438
- // Reference: src/vue/pages/about/views/AboutUs.vue:187
1439
- __( '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' ),
1440
 
1441
- // Reference: src/vue/pages/about/views/AboutUs.vue:204
1442
- __( 'Make sure your website\'s emails reach the inbox. Our goal is to make email deliverability easy and reliable. Trusted by over 1 million websites.', 'all-in-one-seo-pack' ),
1443
 
1444
- // Reference: src/vue/pages/about/views/AboutUs.vue:221
1445
- __( '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' ),
1446
 
1447
- // Reference: src/vue/pages/about/views/AboutUs.vue:238
1448
- __( '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' ),
1449
 
1450
- // Reference: src/vue/pages/about/views/AboutUs.vue:247
1451
- __( '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' ),
1452
 
1453
- // Reference: src/vue/pages/about/views/AboutUs.vue:264
1454
- __( 'Display completely customizable Facebook feeds of any public Facebook page or Group.', 'all-in-one-seo-pack' ),
1455
 
1456
- // Reference: src/vue/pages/about/views/AboutUs.vue:281
1457
- __( 'Display beautifully clean, customizable, and responsive Instagram feeds from multiple Instagram accounts.', 'all-in-one-seo-pack' ),
1458
 
1459
- // Reference: src/vue/pages/about/views/AboutUs.vue:298
1460
- __( 'Display completely customizable, responsive and search engine crawlable Twitter feeds on your website.', 'all-in-one-seo-pack' ),
1461
 
1462
- // Reference: src/vue/pages/about/views/AboutUs.vue:315
1463
- __( 'The Feeds for YouTube plugin allows you to display customizable YouTube feeds from any YouTube channel.', 'all-in-one-seo-pack' ),
1464
 
1465
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:357
1466
- __( 'Enable Breadcrumbs', 'all-in-one-seo-pack' ),
1467
 
1468
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:358
1469
- __( 'Show Breadcrumbs on your Website', 'all-in-one-seo-pack' ),
1470
 
1471
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:359
1472
- __( 'Shortcode', 'all-in-one-seo-pack' ),
 
1473
 
1474
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:360
1475
- __( 'Gutenberg Block', 'all-in-one-seo-pack' ),
1476
 
1477
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:361
1478
- __( 'PHP Code', 'all-in-one-seo-pack' ),
1479
 
1480
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:362
1481
- __( 'Breadcrumb Settings', 'all-in-one-seo-pack' ),
1482
 
1483
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:363
1484
- __( 'Separator', 'all-in-one-seo-pack' ),
1485
 
1486
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:364
1487
- __( 'Homepage Link', 'all-in-one-seo-pack' ),
1488
 
1489
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:365
1490
- __( 'Breadcrumb Prefix', 'all-in-one-seo-pack' ),
1491
 
1492
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:366
1493
- __( 'Archive Format', 'all-in-one-seo-pack' ),
1494
 
1495
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:367
1496
- __( 'Search Result Format', 'all-in-one-seo-pack' ),
1497
 
1498
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:368
1499
- __( '404 Error Format', 'all-in-one-seo-pack' ),
1500
 
1501
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:369
1502
- __( 'Current Item', 'all-in-one-seo-pack' ),
1503
 
1504
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:370
1505
- __( 'Home', 'all-in-one-seo-pack' ),
1506
 
1507
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:372
1508
- __( 'Subcategory', 'all-in-one-seo-pack' ),
1509
 
1510
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:373
1511
- __( 'Article Title', 'all-in-one-seo-pack' ),
1512
 
1513
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:374
1514
- __( 'Archives of', 'all-in-one-seo-pack' ),
1515
 
1516
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:375
1517
- __( 'Search for', 'all-in-one-seo-pack' ),
1518
 
1519
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:376
1520
- __( '404 Error: page not found', 'all-in-one-seo-pack' ),
1521
 
1522
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:377
1523
- __( 'search key word goes here', 'all-in-one-seo-pack' ),
1524
 
1525
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:378
1526
- __( 'Category Name', 'all-in-one-seo-pack' ),
1527
 
1528
- // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:379
1529
- __( 'Breadcrumb Templates', 'all-in-one-seo-pack' ),
1530
 
1531
- // Reference: src/vue/pages/settings/views/Advanced.vue:269
1532
- __( 'TruSEO Score & Content', 'all-in-one-seo-pack' ),
1533
 
1534
- // Reference: src/vue/pages/settings/views/Advanced.vue:270
1535
- __( 'Enable our TruSEO score to help you optimize your content for maximum traffic.', 'all-in-one-seo-pack' ),
1536
 
1537
- // Reference: src/vue/pages/settings/views/Advanced.vue:272
1538
- __( 'Post Type Columns', 'all-in-one-seo-pack' ),
1539
 
1540
- // Reference: src/vue/pages/settings/views/Advanced.vue:275
1541
- /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
1542
- __( 'Select which Post Types you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
1543
 
1544
- // Reference: src/vue/pages/settings/views/Advanced.vue:276
1545
- __( 'Usage Tracking', 'all-in-one-seo-pack' ),
1546
 
1547
- // Reference: src/vue/pages/settings/views/Advanced.vue:277
1548
- __( 'Admin Bar Menu', 'all-in-one-seo-pack' ),
1549
 
1550
- // Reference: src/vue/pages/settings/views/Advanced.vue:279
1551
- /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
1552
- __( 'This adds %1$s to the admin toolbar for easy access to your SEO settings.', 'all-in-one-seo-pack' ),
1553
 
1554
- // Reference: src/vue/pages/settings/views/Advanced.vue:280
1555
- __( 'Dashboard Widget', 'all-in-one-seo-pack' ),
1556
 
1557
- // Reference: src/vue/pages/settings/views/Advanced.vue:281
1558
- __( 'This displays an SEO News widget on the dashboard.', 'all-in-one-seo-pack' ),
1559
 
1560
- // Reference: src/vue/pages/settings/views/Advanced.vue:282
1561
- __( 'Announcements', 'all-in-one-seo-pack' ),
1562
 
1563
- // Reference: src/vue/pages/settings/views/Advanced.vue:283
1564
- __( 'This allows you to hide plugin announcements and update details.', 'all-in-one-seo-pack' ),
1565
 
1566
- // Reference: src/vue/pages/settings/views/Advanced.vue:284
1567
- __( 'Automatic Updates', 'all-in-one-seo-pack' ),
1568
 
1569
- // Reference: src/vue/pages/settings/views/Advanced.vue:285
1570
- __( 'All (recommended)', 'all-in-one-seo-pack' ),
1571
 
1572
- // Reference: src/vue/pages/settings/views/Advanced.vue:286
1573
- __( 'You are getting the latest features, bugfixes, and security updates as they are released.', 'all-in-one-seo-pack' ),
1574
 
1575
- // Reference: src/vue/pages/settings/views/Advanced.vue:287
1576
- __( 'Minor Only', 'all-in-one-seo-pack' ),
1577
 
1578
- // Reference: src/vue/pages/settings/views/Advanced.vue:288
1579
- __( 'You are getting bugfixes and security updates, but not major features.', 'all-in-one-seo-pack' ),
1580
 
1581
- // Reference: src/vue/pages/settings/views/Advanced.vue:290
1582
- __( 'You will need to manually update everything.', 'all-in-one-seo-pack' ),
1583
 
1584
- // Reference: src/vue/pages/settings/views/Advanced.vue:291
1585
- __( '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' ),
1586
 
1587
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:194
1588
- __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'all-in-one-seo-pack' ),
 
1589
 
1590
- // Reference: src/vue/pages/settings/views/Advanced.vue:295
1591
- /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
1592
- __( 'This Admin Bar feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
1593
 
1594
- // Reference: src/vue/pages/settings/views/Advanced.vue:297
1595
- /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
1596
- __( 'The Dashboard Widget feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
1597
 
1598
- // Reference: src/vue/pages/settings/views/Advanced.vue:298
1599
- __( 'Taxonomy Columns', 'all-in-one-seo-pack' ),
 
1600
 
1601
- // Reference: src/vue/pages/settings/views/Advanced.vue:301
1602
- /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
1603
- __( 'Select which Taxonomies you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
1604
 
1605
- // Reference: src/vue/pages/settings/views/Advanced.vue:304
1606
- /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
1607
- __( 'Uninstall %1$s', 'all-in-one-seo-pack' ),
1608
 
1609
- // Reference: src/vue/pages/settings/views/Advanced.vue:306
1610
- /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
1611
- __( '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' ),
1612
 
1613
- // Reference: src/vue/pages/post-settings/views/Main.vue:55
1614
- __( 'Preview Snippet Editor', 'all-in-one-seo-pack' ),
 
1615
 
1616
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:256
1617
- __( 'Miscellaneous Verification', 'all-in-one-seo-pack' ),
 
1618
 
1619
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:258
1620
- /* Translators: 1 - "<head></head>". */
1621
- __( 'The code above will be added between the %1$s tags on every page on your website.', 'all-in-one-seo-pack' ),
1622
 
1623
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:259
1624
- __( 'Webmaster Tools Verification', 'all-in-one-seo-pack' ),
1625
 
1626
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:176
1627
- __( 'Click here', 'all-in-one-seo-pack' ),
1628
 
1629
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:177
1630
- __( 'Install Monsterinsights', 'all-in-one-seo-pack' ),
1631
 
1632
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:262
1633
- __( 'Success!', 'all-in-one-seo-pack' ),
1634
 
1635
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:263
1636
- __( 'Google Analytics is now handled by MonsterInsights.', 'all-in-one-seo-pack' ),
1637
 
1638
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:264
1639
- __( 'Google Analytics is now handled by ExactMetrics.', 'all-in-one-seo-pack' ),
1640
 
1641
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:265
1642
- __( 'Manage Google Analytics', 'all-in-one-seo-pack' ),
1643
 
1644
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:266
1645
- __( 'Get Started', 'all-in-one-seo-pack' ),
1646
 
1647
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:276
1648
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
1649
- __( 'We recommend using the %1$sFree MonsterInsights%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
1650
 
1651
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:280
1652
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
1653
- __( 'We recommend using the %1$sFree ExactMetrics%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
1654
 
1655
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:314
1656
- __( 'Google Verification Code', 'all-in-one-seo-pack' ),
1657
 
1658
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:316
1659
- /* Translators: 1 - "Google Search Console". */
1660
- __( 'Google Search Console', 'all-in-one-seo-pack' ),
1661
 
1662
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:316
1663
- /* Translators: 1 - "Google Search Console". */
1664
- __( 'Get your Google verification code in %1$s.', 'all-in-one-seo-pack' ),
1665
 
1666
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:327
1667
- __( 'Bing Verification Code', 'all-in-one-seo-pack' ),
1668
 
1669
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:329
1670
- /* Translators: 1 - "Bing Webmaster Tools". */
1671
- __( 'Bing Webmaster Tools', 'all-in-one-seo-pack' ),
1672
 
1673
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:329
1674
- /* Translators: 1 - "Bing Webmaster Tools". */
1675
- __( 'Get your Bing verification code in %1$s.', 'all-in-one-seo-pack' ),
1676
 
1677
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:340
1678
- __( 'Yandex Verification Code', 'all-in-one-seo-pack' ),
1679
 
1680
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:342
1681
- /* Translators: 1 - "Yandex Webmaster Tools". */
1682
- __( 'Yandex Webmaster Tools', 'all-in-one-seo-pack' ),
1683
 
1684
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:342
1685
- /* Translators: 1 - "Yandex Webmaster Tools". */
1686
- __( 'Get your Yandex verification code in %1$s.', 'all-in-one-seo-pack' ),
1687
 
1688
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:353
1689
- __( 'Baidu Verification Code', 'all-in-one-seo-pack' ),
1690
 
1691
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:355
1692
- /* Translators: 1 - "Baidu Webmaster Tools". */
1693
- __( 'Baidu Webmaster Tools', 'all-in-one-seo-pack' ),
1694
 
1695
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:355
1696
- /* Translators: 1 - "Baidu Webmaster Tools". */
1697
- __( 'Get your Baidu verification code in %1$s.', 'all-in-one-seo-pack' ),
1698
 
1699
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:361
1700
- __( 'Pinterest Site Verification', 'all-in-one-seo-pack' ),
1701
 
1702
- // Reference: src/vue/pages/social-networks/views/Pinterest.vue:49
1703
- __( 'Pinterest Verification Code', 'all-in-one-seo-pack' ),
1704
 
1705
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:368
1706
- /* Translators: 1 - "Pinterest account". */
1707
- __( 'Get your Pinterest verification code in your %1$s.', 'all-in-one-seo-pack' ),
1708
 
1709
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:368
1710
- /* Translators: 1 - "Pinterest account". */
1711
- __( 'Pinterest account', 'all-in-one-seo-pack' ),
1712
 
1713
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:399
1714
- __( 'Google Analytics', 'all-in-one-seo-pack' ),
1715
 
1716
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:406
1717
- __( 'Google Analytics ID', 'all-in-one-seo-pack' ),
1718
 
1719
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:408
1720
- /* Translators: 1 - "Google Analytics account". */
1721
- __( 'Get your Google Analytics ID in your %1$s.', 'all-in-one-seo-pack' ),
1722
 
1723
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:408
1724
- /* Translators: 1 - "Google Analytics account". */
1725
- __( 'Google Analytics account', 'all-in-one-seo-pack' ),
1726
 
1727
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:414
1728
- __( 'Enable Advanced Analytics Options', 'all-in-one-seo-pack' ),
 
1729
 
1730
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:418
1731
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
1732
- __( 'This enables Advanced Google Analytics options.%1$s%2$s', 'all-in-one-seo-pack' ),
1733
 
1734
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:423
1735
- __( 'Tracking Domain', 'all-in-one-seo-pack' ),
 
1736
 
1737
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:426
1738
- /* Translators: 1 - "http://", 2 - A link to our documentation, 3 - HTML line break tag. */
1739
- __( 'Enter your domain name without the %1$s to set your cookie domain.%2$s%3$s', 'all-in-one-seo-pack' ),
1740
 
1741
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:431
1742
- __( 'Track Multiple Domains', 'all-in-one-seo-pack' ),
1743
 
1744
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:439
1745
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
1746
- __( 'Use this option to enable tracking of multiple or additional domains.%1$s%2$s', 'all-in-one-seo-pack' ),
1747
 
1748
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:444
1749
- __( 'Additional Domains', 'all-in-one-seo-pack' ),
1750
 
1751
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:448
1752
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
1753
- __( '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' ),
1754
 
1755
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:453
1756
- __( 'Anonymize IP Addresses', 'all-in-one-seo-pack' ),
1757
 
1758
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:461
1759
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
1760
- __( 'This enables support for IP Anonymization in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
1761
 
1762
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:466
1763
- __( 'Display Advertiser Tracking', 'all-in-one-seo-pack' ),
1764
 
1765
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:474
1766
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
1767
- __( 'This enables support for the Display Advertiser Features in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
1768
 
1769
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:479
1770
- __( 'Exclude Users from Tracking', 'all-in-one-seo-pack' ),
1771
 
1772
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:490
1773
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
1774
- __( 'Exclude logged-in users from Google Analytics tracking by role.%1$s%2$s', 'all-in-one-seo-pack' ),
1775
 
1776
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:495
1777
- __( 'Enhanced Link Attribution', 'all-in-one-seo-pack' ),
1778
-
1779
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:503
1780
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
1781
- __( 'This enables support for the Enhanced Link Attribution in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
1782
 
1783
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:508
1784
- __( 'Track Outbound Links', 'all-in-one-seo-pack' ),
1785
 
1786
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:516
1787
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
1788
- __( 'This enables tracking outbound links with Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
1789
 
1790
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:521
1791
- __( 'Enhanced Ecommerce', 'all-in-one-seo-pack' ),
1792
 
1793
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:529
1794
- /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
1795
- __( 'This enables support for the Enhanced Ecommerce in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
1796
 
1797
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:534
1798
- __( 'Track Outbound Forms', 'all-in-one-seo-pack' ),
1799
 
1800
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:548
1801
- __( 'Track Events', 'all-in-one-seo-pack' ),
1802
 
1803
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:562
1804
- __( 'Track URL Changes', 'all-in-one-seo-pack' ),
1805
 
1806
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:576
1807
- __( 'Track Page Visibility', 'all-in-one-seo-pack' ),
1808
 
1809
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:590
1810
- __( 'Track Media Queries', 'all-in-one-seo-pack' ),
1811
 
1812
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:604
1813
- __( 'Track Elements Visibility', 'all-in-one-seo-pack' ),
1814
 
1815
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:618
1816
- __( 'Track Page Scrolling', 'all-in-one-seo-pack' ),
1817
 
1818
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:632
1819
- __( 'Track Facebook and Twitter', 'all-in-one-seo-pack' ),
 
1820
 
1821
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:646
1822
- __( 'Ensure URL Consistency', 'all-in-one-seo-pack' ),
1823
 
1824
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:660
1825
- __( 'Google Tag Manager Container ID', 'all-in-one-seo-pack' ),
 
1826
 
1827
- // Reference: src/vue/pages/settings/views/WebmasterTools.vue:664
1828
- /* Translators: 1 - "Google Tag Manager account". */
1829
- __( 'Get your Google Tag Manager ID in your %1$s.', 'all-in-one-seo-pack' ),
1830
 
1831
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:178
1832
- __( 'Activate Monsterinsights', 'all-in-one-seo-pack' ),
 
1833
 
1834
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:180
1835
- __( 'MonsterInsights is Installed & Active', 'all-in-one-seo-pack' ),
1836
 
1837
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:181
1838
- __( 'ExactMetrics is Installed & Active', 'all-in-one-seo-pack' ),
 
1839
 
1840
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:182
1841
- __( 'Launch Setup Wizard', 'all-in-one-seo-pack' ),
1842
 
1843
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:184
1844
- __( 'ExactMetrics connects AIOSEO to Google Analytics, providing a powerful integration. ExactMetrics is a sister company of AIOSEO.', 'all-in-one-seo-pack' ),
1845
 
1846
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:188
1847
- __( 'Activate ExactMetrics', 'all-in-one-seo-pack' ),
 
1848
 
1849
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:189
1850
- __( 'ExactMetrics shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'all-in-one-seo-pack' ),
1851
 
1852
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:190
1853
- __( 'The Best Google Analytics Plugin for WordPress', 'all-in-one-seo-pack' ),
 
1854
 
1855
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:191
1856
- __( 'MonsterInsights connects AIOSEO to Google Analytics, providing a powerful integration. MonsterInsights is a sister company of AIOSEO.', 'all-in-one-seo-pack' ),
1857
 
1858
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:192
1859
- __( 'Quick & Easy Google Analytics Setup', 'all-in-one-seo-pack' ),
1860
 
1861
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:193
1862
- __( 'Google Analytics Dashboard + Real Time Stats', 'all-in-one-seo-pack' ),
 
1863
 
1864
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:194
1865
- __( 'Google Analytics Enhanced Ecommerce Tracking', 'all-in-one-seo-pack' ),
1866
 
1867
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:195
1868
- __( 'Universal Tracking for AMP and Instant Articles', 'all-in-one-seo-pack' ),
 
1869
 
1870
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:196
1871
- __( 'Install &', 'all-in-one-seo-pack' ),
 
1872
 
1873
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:197
1874
- __( 'Activate MonsterInsights', 'all-in-one-seo-pack' ),
 
1875
 
1876
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:198
1877
- __( 'MonsterInsights shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'all-in-one-seo-pack' ),
1878
 
1879
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:199
1880
- __( 'Setup ExactMetrics', 'all-in-one-seo-pack' ),
1881
 
1882
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:200
1883
- __( 'Setup MonsterInsights', 'all-in-one-seo-pack' ),
1884
 
1885
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:201
1886
- __( 'ExactMetrics has an intuitive setup wizard to guide you through the setup process.', 'all-in-one-seo-pack' ),
1887
 
1888
- // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:202
1889
- __( 'MonsterInsights has an intuitive setup wizard to guide you through the setup process.', 'all-in-one-seo-pack' ),
1890
 
1891
- // Reference: src/vue/mixins/Wizard.js:6
1892
- __( 'Skip this Step', 'all-in-one-seo-pack' ),
1893
 
1894
- // Reference: src/vue/mixins/Wizard.js:7
1895
- __( 'Go Back', 'all-in-one-seo-pack' ),
1896
 
1897
- // Reference: src/vue/mixins/Wizard.js:8
1898
- __( 'Save and Continue', 'all-in-one-seo-pack' ),
1899
 
1900
- // Reference: src/vue/mixins/SeoSiteScore.js:10
1901
- __( 'to analyze a competitor site.', 'all-in-one-seo-pack' ),
1902
 
1903
- // Reference: src/vue/mixins/SeoSiteScore.js:11
1904
- __( 'A valid license key is required', 'all-in-one-seo-pack' ),
1905
 
1906
- // Reference: src/vue/mixins/SeoSiteScore.js:5
1907
- __( 'We\'ve got some<br>work to do!', 'all-in-one-seo-pack' ),
1908
 
1909
- // Reference: src/vue/mixins/SeoSiteScore.js:6
1910
- __( 'Needs<br>Improvement!', 'all-in-one-seo-pack' ),
1911
 
1912
- // Reference: src/vue/mixins/SeoSiteScore.js:7
1913
- __( 'Very Good!', 'all-in-one-seo-pack' ),
1914
 
1915
- // Reference: src/vue/mixins/SeoSiteScore.js:8
1916
- __( 'Excellent!', 'all-in-one-seo-pack' ),
1917
 
1918
- // Reference: src/vue/mixins/SeoSiteScore.js:9
1919
- __( 'to see your Site Score.', 'all-in-one-seo-pack' ),
1920
 
1921
- // Reference: src/vue/mixins/Image.js:119
1922
- __( 'Choose Image', 'all-in-one-seo-pack' ),
1923
 
1924
- // Reference: src/vue/mixins/Image.js:55
1925
- __( 'Default Image (Set Below)', 'all-in-one-seo-pack' ),
1926
 
1927
- // Reference: src/vue/mixins/Image.js:56
1928
- __( 'Featured Image', 'all-in-one-seo-pack' ),
1929
 
1930
- // Reference: src/vue/mixins/Image.js:57
1931
- __( 'Attached Image', 'all-in-one-seo-pack' ),
 
1932
 
1933
- // Reference: src/vue/mixins/Image.js:58
1934
- __( 'First Image in Content', 'all-in-one-seo-pack' ),
1935
 
1936
- // Reference: src/vue/mixins/Image.js:59
1937
- __( 'Image from Custom Field', 'all-in-one-seo-pack' ),
 
1938
 
1939
- // Reference: src/vue/mixins/Image.js:60
1940
- __( 'Post Author Image', 'all-in-one-seo-pack' ),
1941
 
1942
- // Reference: src/vue/mixins/Image.js:61
1943
- __( 'First Available Image', 'all-in-one-seo-pack' ),
1944
 
1945
- // Reference: src/vue/mixins/Image.js:68
1946
- __( 'Default Image Source (Set in Social Networks)', 'all-in-one-seo-pack' ),
1947
 
1948
- // Reference: src/vue/mixins/Image.js:71
1949
- __( 'Custom Image', 'all-in-one-seo-pack' ),
1950
 
1951
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:63
1952
- // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:75
1953
- // Reference: src/vue/components/common/core/SiteScoreDashboard.vue:65
1954
- // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:90
1955
- __( 'Critical Issues', 'all-in-one-seo-pack' ),
1956
 
1957
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:65
1958
- // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:77
1959
- // Reference: src/vue/components/common/core/SiteScoreDashboard.vue:67
1960
- // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:100
1961
- __( 'Recommended Improvements', 'all-in-one-seo-pack' ),
1962
 
1963
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:66
1964
- // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:78
1965
- // Reference: src/vue/components/common/core/SiteScoreDashboard.vue:68
1966
- // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:110
1967
- __( 'Good Results', 'all-in-one-seo-pack' ),
1968
 
1969
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:67
1970
- // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:79
1971
- // Reference: src/vue/components/common/core/SiteScoreDashboard.vue:69
1972
- __( 'Complete Site Audit Checklist', 'all-in-one-seo-pack' ),
1973
 
1974
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:30
1975
- __( 'All Good!', 'all-in-one-seo-pack' ),
1976
 
1977
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:29
1978
- __( 'Errors', 'all-in-one-seo-pack' ),
1979
-
1980
- // Reference: src/vue/mixins/License.js:11
1981
- __( 'Your license has been disabled.', 'all-in-one-seo-pack' ),
1982
-
1983
- // Reference: src/vue/mixins/License.js:15
1984
- __( 'Your license key is invalid.', 'all-in-one-seo-pack' ),
1985
-
1986
- // Reference: src/vue/mixins/License.js:4
1987
- __( 'You have not yet added a license key.', 'all-in-one-seo-pack' ),
1988
-
1989
- // Reference: src/vue/mixins/License.js:7
1990
- __( 'Your license has expired.', 'all-in-one-seo-pack' ),
1991
-
1992
- // Reference: src/vue/mixins/MaxCounts.js:6
1993
- /* Translators: 1 - A number, 2 - A number. */
1994
- __( '%1$s out of %2$s max recommended characters.', 'all-in-one-seo-pack' ),
1995
-
1996
- // Reference: src/vue/mixins/Notifications.js:6
1997
- __( 'Notifications', 'all-in-one-seo-pack' ),
1998
-
1999
- // Reference: src/vue/mixins/Notifications.js:7
2000
- __( 'New Notifications', 'all-in-one-seo-pack' ),
2001
-
2002
- // Reference: src/vue/mixins/Notifications.js:8
2003
- __( 'Active Notifications', 'all-in-one-seo-pack' ),
2004
-
2005
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:14
2006
- /* Translators: 1 - The plugin name ("All in One SEO") */
2007
- __( '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' ),
2008
-
2009
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:15
2010
- __( 'Access Control Settings', 'all-in-one-seo-pack' ),
2011
-
2012
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:16
2013
- __( 'Administrator', 'all-in-one-seo-pack' ),
2014
-
2015
- // Reference: src/vue/components/common/core/RobotsMeta.vue:100
2016
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:162
2017
- __( 'Use Default Settings', 'all-in-one-seo-pack' ),
2018
-
2019
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:18
2020
- __( 'Editor', 'all-in-one-seo-pack' ),
2021
-
2022
- // Reference: src/vue/plugins/constants.js:1204
2023
- __( 'Author', 'all-in-one-seo-pack' ),
2024
-
2025
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:20
2026
- __( 'SEO Manager', 'all-in-one-seo-pack' ),
2027
-
2028
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:21
2029
- __( 'SEO Editor', 'all-in-one-seo-pack' ),
2030
-
2031
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:23
2032
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2033
- __( 'By default Admins have access to %1$sall SEO site settings%2$s', 'all-in-one-seo-pack' ),
2034
-
2035
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:25
2036
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2037
- __( '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' ),
2038
-
2039
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:27
2040
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2041
- __( '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' ),
2042
-
2043
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:29
2044
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2045
- __( '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' ),
2046
-
2047
- // Reference: src/vue/pages/settings/mixins/AccessControl.js:31
2048
- /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2049
- __( 'By default SEO Editors have access to %1$sSEO settings for individual pages and posts.%2$s', 'all-in-one-seo-pack' ),
2050
-
2051
- // Reference: src/vue/pages/post-settings/views/ModalContent.vue:41
2052
- __( 'Modal Content', 'all-in-one-seo-pack' ),
2053
-
2054
- // Reference: src/vue/pages/post-settings/views/Advanced.vue:114
2055
- __( 'Robots Setting', 'all-in-one-seo-pack' ),
2056
-
2057
- // Reference: src/vue/pages/post-settings/views/Advanced.vue:115
2058
- __( 'Use default settings', 'all-in-one-seo-pack' ),
2059
-
2060
- // Reference: src/vue/pages/post-settings/views/Advanced.vue:116
2061
- __( 'Canonical URL', 'all-in-one-seo-pack' ),
2062
-
2063
- // Reference: src/vue/pages/post-settings/views/Advanced.vue:117
2064
- __( 'Enter a URL to change the default Canonical URL', 'all-in-one-seo-pack' ),
2065
-
2066
- // Reference: src/vue/components/common/core/AdditionalPages.vue:98
2067
- // Reference: src/vue/components/common/core/PriorityScore.vue:64
2068
- __( 'Priority', 'all-in-one-seo-pack' ),
2069
-
2070
- // Reference: src/vue/components/common/core/AdditionalPages.vue:99
2071
- // Reference: src/vue/components/common/core/PriorityScore.vue:65
2072
- __( 'Frequency', 'all-in-one-seo-pack' ),
2073
-
2074
- // Reference: src/vue/pages/post-settings/views/General.vue:260
2075
- __( 'General', 'all-in-one-seo-pack' ),
2076
-
2077
- // Reference: src/vue/pages/post-settings/views/General.vue:261
2078
- __( 'Snippet Preview', 'all-in-one-seo-pack' ),
2079
-
2080
- // Reference: src/vue/pages/post-settings/views/General.vue:262
2081
- __( 'Snippet Preview content here.', 'all-in-one-seo-pack' ),
2082
-
2083
- // Reference: src/vue/pages/post-settings/views/General.vue:263
2084
- __( 'Edit Snippet', 'all-in-one-seo-pack' ),
2085
-
2086
- // Reference: src/vue/pages/post-settings/views/General.vue:264
2087
- __( 'Click on tags below to insert variables into your title.', 'all-in-one-seo-pack' ),
2088
-
2089
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:253
2090
- __( 'Click on tags below to insert variables into your meta description.', 'all-in-one-seo-pack' ),
2091
-
2092
- // Reference: src/vue/pages/post-settings/views/General.vue:267
2093
- __( 'Pillar Content', 'all-in-one-seo-pack' ),
2094
-
2095
- // Reference: src/vue/pages/post-settings/views/General.vue:268
2096
- __( 'Cornerstone content should be the most important and extensive articles on your site.', 'all-in-one-seo-pack' ),
2097
-
2098
- // Reference: src/vue/pages/post-settings/views/General.vue:269
2099
- __( 'Focus Keyphrase', 'all-in-one-seo-pack' ),
2100
-
2101
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:68
2102
- __( 'Additional Keyphrases', 'all-in-one-seo-pack' ),
2103
-
2104
- // Reference: src/vue/pages/post-settings/views/General.vue:271
2105
- __( 'Page Analysis', 'all-in-one-seo-pack' ),
2106
-
2107
- // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:106
2108
- __( 'Basic SEO', 'all-in-one-seo-pack' ),
2109
-
2110
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:44
2111
- __( 'Readability', 'all-in-one-seo-pack' ),
2112
-
2113
- // Reference: src/vue/pages/post-settings/views/General.vue:275
2114
- __( 'Looking for meta keywords? Click on the advanced tab above to add/edit meta keywords.', 'all-in-one-seo-pack' ),
2115
-
2116
- // Reference: src/vue/pages/post-settings/views/General.vue:284
2117
- /* Translators: %s: The type of page (Post, Page, Category, Tag, etc.). */
2118
- __( '%s Title', 'all-in-one-seo-pack' ),
2119
-
2120
- // Reference: src/vue/pages/post-settings/views/Social.vue:60
2121
- __( 'Social', 'all-in-one-seo-pack' ),
2122
-
2123
- // Reference: src/vue/components/lite/settings/LicenseKey.vue:59
2124
- __( 'Your license key provides access to updates and addons.', 'all-in-one-seo-pack' ),
2125
-
2126
- // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:103
2127
- __( 'Paste your license key here', 'all-in-one-seo-pack' ),
2128
-
2129
- // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:104
2130
- __( 'Connect', 'all-in-one-seo-pack' ),
2131
-
2132
- // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:121
2133
- /* Translators: 1 - The plugin name ("All in One SEO"). */
2134
- __( 'You\'re using %1$s - no license needed. Enjoy!', 'all-in-one-seo-pack' ),
2135
-
2136
- // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:134
2137
- /* Translators: 1 - The plugin name ("All in One SEO"). */
2138
- __( 'Already purchased? Simply enter your license key below to connect with %1$s!', 'all-in-one-seo-pack' ),
2139
-
2140
- // Reference: src/vue/components/lite/local-business/AreaServed.vue:16
2141
- __( 'The geographic area where a service or offered item is provided.', 'all-in-one-seo-pack' ),
2142
-
2143
- // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:55
2144
- __( 'Street address:', 'all-in-one-seo-pack' ),
2145
-
2146
- // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:56
2147
- __( 'Street address line 2 (optional):', 'all-in-one-seo-pack' ),
2148
-
2149
- // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:57
2150
- __( 'Zip code:', 'all-in-one-seo-pack' ),
2151
-
2152
- // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:58
2153
- __( 'City:', 'all-in-one-seo-pack' ),
2154
-
2155
- // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:59
2156
- __( 'State:', 'all-in-one-seo-pack' ),
2157
-
2158
- // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:60
2159
- __( 'Country:', 'all-in-one-seo-pack' ),
2160
-
2161
- // Reference: src/vue/components/lite/local-business/BusinessContact.vue:28
2162
- __( 'Email address:', 'all-in-one-seo-pack' ),
2163
-
2164
- // Reference: src/vue/components/lite/local-business/BusinessContact.vue:29
2165
- __( 'Phone number:', 'all-in-one-seo-pack' ),
2166
-
2167
- // Reference: src/vue/components/lite/local-business/BusinessContact.vue:30
2168
- __( 'Fax number:', 'all-in-one-seo-pack' ),
2169
-
2170
- // Reference: src/vue/components/lite/local-business/BusinessIds.vue:25
2171
- __( 'VAT ID:', 'all-in-one-seo-pack' ),
2172
-
2173
- // Reference: src/vue/components/lite/local-business/BusinessIds.vue:26
2174
- __( 'Tax ID:', 'all-in-one-seo-pack' ),
2175
-
2176
- // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:37
2177
- __( 'Price Indicator:', 'all-in-one-seo-pack' ),
2178
-
2179
- // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:38
2180
- __( 'Accepted Currencies:', 'all-in-one-seo-pack' ),
2181
-
2182
- // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:39
2183
- __( 'Accepted Payment Methods:', 'all-in-one-seo-pack' ),
2184
-
2185
- // Reference: src/vue/components/lite/core/UpgradeBar.vue:38
2186
- /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro". */
2187
- __( 'You\'re using %1$s. To unlock more features, consider %2$s.', 'all-in-one-seo-pack' ),
2188
-
2189
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:103
2190
- __( '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' ),
2191
-
2192
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:104
2193
- __( 'Multiple Locations', 'all-in-one-seo-pack' ),
2194
-
2195
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:105
2196
- __( 'Display Location Info', 'all-in-one-seo-pack' ),
2197
-
2198
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:107
2199
- __( 'Business Name', 'all-in-one-seo-pack' ),
2200
-
2201
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:110
2202
- __( 'Business Address', 'all-in-one-seo-pack' ),
2203
-
2204
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:112
2205
- __( 'Business IDs', 'all-in-one-seo-pack' ),
2206
-
2207
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:114
2208
- __( 'Area Served', 'all-in-one-seo-pack' ),
2209
-
2210
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:126
2211
- __( 'Archive Organization', 'all-in-one-seo-pack' ),
2212
-
2213
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:127
2214
- __( 'Automotive Business', 'all-in-one-seo-pack' ),
2215
-
2216
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:128
2217
- __( 'Childcare', 'all-in-one-seo-pack' ),
2218
-
2219
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:129
2220
- __( 'Dentist', 'all-in-one-seo-pack' ),
2221
-
2222
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:130
2223
- __( 'Dry Cleaning/Laundry', 'all-in-one-seo-pack' ),
2224
-
2225
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:131
2226
- __( 'Emergency Service', 'all-in-one-seo-pack' ),
2227
-
2228
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:132
2229
- __( 'Employment Agency', 'all-in-one-seo-pack' ),
2230
-
2231
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:133
2232
- __( 'Entertainment Business', 'all-in-one-seo-pack' ),
2233
-
2234
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:134
2235
- __( 'Financial Service', 'all-in-one-seo-pack' ),
2236
-
2237
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:135
2238
- __( 'Food Establishment', 'all-in-one-seo-pack' ),
2239
-
2240
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:136
2241
- __( 'Government Office', 'all-in-one-seo-pack' ),
2242
-
2243
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:137
2244
- __( 'Health & Beauty Business', 'all-in-one-seo-pack' ),
2245
-
2246
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:138
2247
- __( 'Home & Construction Business', 'all-in-one-seo-pack' ),
2248
-
2249
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:139
2250
- __( 'Internet Cafe', 'all-in-one-seo-pack' ),
2251
-
2252
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:140
2253
- __( 'Legal Service', 'all-in-one-seo-pack' ),
2254
-
2255
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:141
2256
- __( 'Library', 'all-in-one-seo-pack' ),
2257
-
2258
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:142
2259
- __( 'Lodging Business', 'all-in-one-seo-pack' ),
2260
-
2261
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:143
2262
- __( 'Medical Business', 'all-in-one-seo-pack' ),
2263
-
2264
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:144
2265
- __( 'Radio Station', 'all-in-one-seo-pack' ),
2266
-
2267
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:145
2268
- __( 'Real Estate Agent', 'all-in-one-seo-pack' ),
2269
-
2270
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:146
2271
- __( 'Recycling Center', 'all-in-one-seo-pack' ),
2272
-
2273
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:147
2274
- __( 'Self Storage', 'all-in-one-seo-pack' ),
2275
-
2276
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:148
2277
- __( 'Shopping Center', 'all-in-one-seo-pack' ),
2278
-
2279
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:149
2280
- __( 'Sports Activity Location', 'all-in-one-seo-pack' ),
2281
-
2282
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:150
2283
- __( 'Store', 'all-in-one-seo-pack' ),
2284
-
2285
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:151
2286
- __( 'Television Station', 'all-in-one-seo-pack' ),
2287
-
2288
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:152
2289
- __( 'Tourist Information Center', 'all-in-one-seo-pack' ),
2290
-
2291
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:153
2292
- __( 'Travel Agency', 'all-in-one-seo-pack' ),
2293
-
2294
- // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:61
2295
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro", 3 - "Learn more link".. */
2296
- __( 'This feature is only for licensed %1$s %2$s users. %3$s', 'all-in-one-seo-pack' ),
2297
-
2298
- // Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:26
2299
- __( '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' ),
2300
-
2301
- // Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:27
2302
- __( 'Preview & Edit', 'all-in-one-seo-pack' ),
2303
-
2304
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:238
2305
- __( 'Facebook Preview', 'all-in-one-seo-pack' ),
2306
-
2307
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:239
2308
- __( 'Image Source', 'all-in-one-seo-pack' ),
2309
-
2310
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:240
2311
- __( 'Custom Field Name', 'all-in-one-seo-pack' ),
2312
-
2313
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:241
2314
- __( 'Video URL', 'all-in-one-seo-pack' ),
2315
-
2316
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:245
2317
- __( 'Facebook Image', 'all-in-one-seo-pack' ),
2318
-
2319
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:246
2320
- __( 'Facebook Title', 'all-in-one-seo-pack' ),
2321
-
2322
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:247
2323
- __( 'Facebook Description', 'all-in-one-seo-pack' ),
2324
-
2325
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:250
2326
- __( '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' ),
2327
-
2328
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:252
2329
- __( 'Click on tags below to insert variables into your site name.', 'all-in-one-seo-pack' ),
2330
-
2331
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:254
2332
- __( 'Article Section', 'all-in-one-seo-pack' ),
2333
-
2334
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:255
2335
- __( 'Article Tags', 'all-in-one-seo-pack' ),
2336
-
2337
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:256
2338
- __( 'Press enter to create an article tag', 'all-in-one-seo-pack' ),
2339
-
2340
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:264
2341
- __( 'Default', 'all-in-one-seo-pack' ),
2342
-
2343
- // Reference: src/vue/pages/post-settings/views/Facebook.vue:264
2344
- __( 'Default Object Type (Set in Social Networks)', 'all-in-one-seo-pack' ),
2345
-
2346
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:213
2347
- __( 'Twitter Preview', 'all-in-one-seo-pack' ),
2348
-
2349
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:214
2350
- __( 'Use Data from Facebook Tab', 'all-in-one-seo-pack' ),
2351
-
2352
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:217
2353
- __( 'Twitter Image', 'all-in-one-seo-pack' ),
2354
-
2355
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:218
2356
- __( 'Twitter Title', 'all-in-one-seo-pack' ),
2357
-
2358
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:219
2359
- __( 'Twitter Description', 'all-in-one-seo-pack' ),
2360
-
2361
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:220
2362
- __( 'Twitter Card Type', 'all-in-one-seo-pack' ),
2363
-
2364
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:449
2365
- __( 'Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and GIF formats only.', 'all-in-one-seo-pack' ),
2366
-
2367
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:450
2368
- __( 'Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and GIF formats only.', 'all-in-one-seo-pack' ),
2369
-
2370
- // Reference: src/vue/pages/post-settings/views/Twitter.vue:234
2371
- __( 'Default (Set under Social Networks)', 'all-in-one-seo-pack' ),
2372
-
2373
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:437
2374
- __( 'Summary', 'all-in-one-seo-pack' ),
2375
-
2376
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:438
2377
- __( 'Summary with Large Image', 'all-in-one-seo-pack' ),
2378
-
2379
- // Reference: src/vue/classes/SiteAnalysis.js:119
2380
- __( 'Title:', 'all-in-one-seo-pack' ),
2381
-
2382
- // Reference: src/vue/classes/SiteAnalysis.js:125
2383
- __( 'Description:', 'all-in-one-seo-pack' ),
2384
-
2385
- // Reference: src/vue/pages/posts-table/App.vue:222
2386
- __( 'Edit', 'all-in-one-seo-pack' ),
2387
-
2388
- // Reference: src/vue/pages/posts-table/App.vue:223
2389
- __( 'Save', 'all-in-one-seo-pack' ),
2390
-
2391
- // Reference: src/vue/pages/posts-table/App.vue:224
2392
- __( 'Cancel', 'all-in-one-seo-pack' ),
2393
-
2394
- // Reference: src/vue/pages/posts-table/App.vue:225
2395
- __( 'Please wait...', 'all-in-one-seo-pack' ),
2396
-
2397
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:69
2398
- __( 'Add Additional Keyphrases', 'all-in-one-seo-pack' ),
2399
-
2400
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:71
2401
- /* Translators: 1 - "Pro" string, 2 - "Learn more link". */
2402
- __( 'Upgrade to %1$s to add related keyphrases. %2$s', 'all-in-one-seo-pack' ),
2403
-
2404
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:60
2405
- __( 'Add Focus Keyphrase', 'all-in-one-seo-pack' ),
2406
-
2407
- // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:62
2408
- /* Translators: 1 - "Learn more link". */
2409
- __( 'Not sure what keyphrases are used for? Check out our documentation for more information. %1$s', 'all-in-one-seo-pack' ),
2410
-
2411
- // Reference: src/vue/pages/posts-table/App.vue:220
2412
- __( 'Image Title:', 'all-in-one-seo-pack' ),
2413
-
2414
- // Reference: src/vue/pages/posts-table/App.vue:221
2415
- __( 'Image Alt Tag:', 'all-in-one-seo-pack' ),
2416
-
2417
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:120
2418
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
2419
- __( 'Upgrade to Pro and Unlock Local SEO', 'all-in-one-seo-pack' ),
2420
-
2421
- // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:121
2422
- // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:303
2423
- __( 'Local SEO is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
2424
-
2425
- // Reference: src/vue/pages/social-networks/views/Pinterest.vue:46
2426
- __( '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' ),
2427
-
2428
- // Reference: src/vue/pages/social-networks/views/Pinterest.vue:47
2429
- __( 'Learn how to get your Pinterest Verification Code', 'all-in-one-seo-pack' ),
2430
-
2431
- // Reference: src/vue/pages/social-networks/views/Pinterest.vue:48
2432
- __( 'If you have already confirmed your website with Pinterest, you can skip the step below.', 'all-in-one-seo-pack' ),
2433
-
2434
- // Reference: src/vue/components/common/wizard/CloseAndExit.vue:14
2435
- __( 'Close and Exit Wizard Without Saving', 'all-in-one-seo-pack' ),
2436
-
2437
- // Reference: src/vue/components/common/wizard/Steps.vue:15
2438
- /* Translators: 1 - The current step count. 2 - The total step count. */
2439
- __( 'Step %1$s of %2$s', 'all-in-one-seo-pack' ),
2440
-
2441
- // Reference: src/vue/pages/social-networks/views/SocialProfiles.vue:26
2442
- __( 'To let search engines know which profiles are associated with this site, enter them below:', 'all-in-one-seo-pack' ),
2443
-
2444
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:432
2445
- __( 'Twitter Card Settings', 'all-in-one-seo-pack' ),
2446
-
2447
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:434
2448
- /* Translators: 1 - The plugin name ("All in One SEO"). */
2449
- __( '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' ),
2450
-
2451
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:435
2452
- __( 'Enable Twitter Card', 'all-in-one-seo-pack' ),
2453
-
2454
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:436
2455
- __( 'Default Card Type', 'all-in-one-seo-pack' ),
2456
-
2457
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:445
2458
- __( 'Default Post Twitter Image', 'all-in-one-seo-pack' ),
2459
-
2460
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:446
2461
- __( 'Default Term Twitter Image', 'all-in-one-seo-pack' ),
2462
-
2463
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:452
2464
- __( 'Home Page Image', 'all-in-one-seo-pack' ),
2465
-
2466
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:149
2467
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:255
2468
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:453
2469
- __( 'Home Page Title', 'all-in-one-seo-pack' ),
2470
-
2471
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:460
2472
- __( 'Show Twitter Author', 'all-in-one-seo-pack' ),
2473
-
2474
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:463
2475
- __( 'Card Type', 'all-in-one-seo-pack' ),
2476
-
2477
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:464
2478
- __( 'Additional Data', 'all-in-one-seo-pack' ),
2479
-
2480
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:465
2481
- __( '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' ),
2482
-
2483
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:146
2484
- __( 'Which category best describes your website?', 'all-in-one-seo-pack' ),
2485
-
2486
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:147
2487
- __( 'Select a category to help us narrow down the SEO options that work best for you and your site.', 'all-in-one-seo-pack' ),
2488
-
2489
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:148
2490
- __( 'Enter your answer', 'all-in-one-seo-pack' ),
2491
-
2492
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:153
2493
- __( 'Blog', 'all-in-one-seo-pack' ),
2494
-
2495
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:154
2496
- __( 'News Channel', 'all-in-one-seo-pack' ),
2497
-
2498
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:155
2499
- __( 'Online Store', 'all-in-one-seo-pack' ),
2500
-
2501
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:156
2502
- __( 'Small Offline Business', 'all-in-one-seo-pack' ),
2503
-
2504
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:157
2505
- __( 'Corporation', 'all-in-one-seo-pack' ),
2506
-
2507
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:158
2508
- __( 'Portfolio', 'all-in-one-seo-pack' ),
2509
-
2510
- // Reference: src/vue/pages/setup-wizard/views/Category.vue:160
2511
- __( 'Other:', 'all-in-one-seo-pack' ),
2512
-
2513
- // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:67
2514
- __( 'Complete SEO Checklist', 'all-in-one-seo-pack' ),
2515
-
2516
- // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:80
2517
- // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:68
2518
- __( 'Refresh Results', 'all-in-one-seo-pack' ),
2519
-
2520
- // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:80
2521
- __( 'All Items', 'all-in-one-seo-pack' ),
2522
-
2523
- // Reference: src/vue/pages/setup-wizard/views/Features.vue:126
2524
- __( 'The following plugins will be installed: %2$s', 'all-in-one-seo-pack' ),
2525
-
2526
- // Reference: src/vue/pages/setup-wizard/views/Features.vue:130
2527
- __( 'The following %1$s addons will be installed: %2$s', 'all-in-one-seo-pack' ),
2528
-
2529
- // Reference: src/vue/pages/setup-wizard/views/Features.vue:134
2530
- __( 'The following plugins and %1$s addons will be installed: %2$s', 'all-in-one-seo-pack' ),
2531
-
2532
- // Reference: src/vue/pages/setup-wizard/views/Features.vue:82
2533
- __( 'Which SEO features do you want to enable?', 'all-in-one-seo-pack' ),
2534
-
2535
- // Reference: src/vue/pages/setup-wizard/views/Features.vue:86
2536
- __( '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' ),
2537
-
2538
- // Reference: src/vue/pages/setup-wizard/views/Import.vue:80
2539
- __( 'Import data from your current plugins', 'all-in-one-seo-pack' ),
2540
-
2541
- // Reference: src/vue/pages/setup-wizard/views/Import.vue:81
2542
- __( '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' ),
2543
-
2544
- // Reference: src/vue/pages/setup-wizard/views/Import.vue:82
2545
- __( 'Import Data and Continue', 'all-in-one-seo-pack' ),
2546
-
2547
- // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:102
2548
- /* Translators: 1 - "Pro". */
2549
- __( 'upgrade to %1$s', 'all-in-one-seo-pack' ),
2550
-
2551
- // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:128
2552
- __( 'To unlock the selected features, please enter your license key below.', 'all-in-one-seo-pack' ),
2553
-
2554
- // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:130
2555
- /* Translators: 1 - "upgrading to Pro". */
2556
- __( 'To unlock the selected features, please %1$s and enter your license key below.', 'all-in-one-seo-pack' ),
2557
-
2558
- // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:98
2559
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
2560
- __( 'Enter your %1$s License Key', 'all-in-one-seo-pack' ),
2561
-
2562
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:250
2563
- __( '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' ),
2564
-
2565
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:251
2566
- __( 'Google Snippet Preview', 'all-in-one-seo-pack' ),
2567
-
2568
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:252
2569
- __( 'Edit Title and Description', 'all-in-one-seo-pack' ),
2570
-
2571
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:257
2572
- __( 'Is the site under construction or live (ready to be indexed)?', 'all-in-one-seo-pack' ),
2573
-
2574
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:258
2575
- __( 'Under Construction', 'all-in-one-seo-pack' ),
2576
-
2577
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:259
2578
- __( 'Live Site', 'all-in-one-seo-pack' ),
2579
-
2580
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:262
2581
- __( 'Do you have multiple authors?', 'all-in-one-seo-pack' ),
2582
-
2583
- // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:263
2584
- __( 'Redirect attachment pages?', 'all-in-one-seo-pack' ),
2585
-
2586
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:179
2587
- __( 'Setup Site Analyzer + Smart Recommendations', 'all-in-one-seo-pack' ),
2588
-
2589
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:180
2590
- __( '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' ),
2591
-
2592
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:181
2593
- __( 'Your Email Address', 'all-in-one-seo-pack' ),
2594
-
2595
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:182
2596
- __( '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' ),
2597
-
2598
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:183
2599
- __( 'Get Automatic WordPress Plugin Updates', 'all-in-one-seo-pack' ),
2600
-
2601
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:184
2602
- __( 'Enable automatic updates', 'all-in-one-seo-pack' ),
2603
-
2604
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:185
2605
- __( 'Help make %1$s better for everyone', 'all-in-one-seo-pack' ),
2606
-
2607
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:186
2608
- __( 'Yes, count me in', 'all-in-one-seo-pack' ),
2609
-
2610
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:187
2611
- __( 'Would you like to purchase and install the following features now?', 'all-in-one-seo-pack' ),
2612
-
2613
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:188
2614
- __( 'An upgrade is required to unlock the following features.', 'all-in-one-seo-pack' ),
2615
 
2616
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:189
2617
- __( 'You won\'t have access to this functionality until the extensions have been purchased and installed.', 'all-in-one-seo-pack' ),
 
2618
 
2619
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:190
2620
- __( 'I\'ll do it later', 'all-in-one-seo-pack' ),
2621
 
2622
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:191
2623
- __( 'Purchase and Install Now', 'all-in-one-seo-pack' ),
 
2624
 
2625
- // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:193
2626
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:145
2627
- /* Translators: 1 - Opening bold tag. 2 - Closing bold tag. 3 - Opening bold tag. 4 - Percent between 1-100. 5 - Closing bold tag. */
2628
- __( '%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' ),
2629
 
2630
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:134
2631
- __( 'Congratulations, your site is now SEO ready!', 'all-in-one-seo-pack' ),
2632
 
2633
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:135
2634
- __( 'Finish Setup and Go to the Dashboard', 'all-in-one-seo-pack' ),
 
2635
 
2636
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:136
2637
- __( 'Here\'s what to do next:', 'all-in-one-seo-pack' ),
 
2638
 
2639
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:137
2640
- __( 'Join our Community', 'all-in-one-seo-pack' ),
2641
 
2642
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:138
2643
- __( 'Join on Facebook', 'all-in-one-seo-pack' ),
 
2644
 
2645
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:139
2646
- __( 'Follow on Twitter', 'all-in-one-seo-pack' ),
 
2647
 
2648
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:140
2649
- __( 'Read our Step By Step Guide to Improve your SEO Rankings', 'all-in-one-seo-pack' ),
2650
 
2651
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:141
2652
- __( 'Watch our Guided Tour of %1$s', 'all-in-one-seo-pack' ),
 
2653
 
2654
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:142
2655
- __( 'See Advanced Settings', 'all-in-one-seo-pack' ),
 
2656
 
2657
- // Reference: src/vue/pages/setup-wizard/views/Success.vue:143
2658
- __( 'Setup Webmaster Tools', 'all-in-one-seo-pack' ),
2659
 
2660
- // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:42
2661
- /* Translators: 1 - The plugin name ("All in One SEO"). */
2662
- __( 'Welcome to the %1$s Setup Wizard!', 'all-in-one-seo-pack' ),
2663
 
2664
- // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:43
2665
- __( '%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' ),
 
2666
 
2667
- // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:44
2668
- __( 'Let\'s Get Started', 'all-in-one-seo-pack' ),
 
2669
 
2670
- // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:45
2671
- __( 'Go back to the Dashboard', 'all-in-one-seo-pack' ),
2672
 
2673
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:322
2674
- __( 'Organization Name', 'all-in-one-seo-pack' ),
 
2675
 
2676
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:332
2677
- __( 'Default Social Share Image', 'all-in-one-seo-pack' ),
2678
 
2679
- // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:333
2680
- __( 'Your Social Profiles', 'all-in-one-seo-pack' ),
 
2681
 
2682
- // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:111
2683
- __( 'Enter Competitor URL', 'all-in-one-seo-pack' ),
2684
 
2685
- // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:112
2686
- __( 'Perform in-depth SEO Analysis of your competitor\'s website.', 'all-in-one-seo-pack' ),
 
2687
 
2688
- // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:113
2689
- __( 'Analyze', 'all-in-one-seo-pack' ),
2690
 
2691
- // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:114
2692
- __( 'Please enter a valid URL.', 'all-in-one-seo-pack' ),
 
2693
 
2694
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:77
2695
- // Reference: src/vue/components/common/core/SiteScoreDashboard.vue:78
2696
- // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:131
2697
- __( 'The URL provided is invalid.', 'all-in-one-seo-pack' ),
2698
 
2699
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:79
2700
- // Reference: src/vue/components/common/core/SiteScoreDashboard.vue:80
2701
- // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:133
2702
- __( 'We were unable to parse the content for this site.', 'all-in-one-seo-pack' ),
2703
 
2704
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:82
2705
- // Reference: src/vue/components/common/core/SiteScoreDashboard.vue:83
2706
- // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:136
2707
- /* Translators: 1 - The plugin short name ('AIOSEO'). */
2708
- __( 'Your site is not connected. Please connect to %1$s, then try again.', 'all-in-one-seo-pack' ),
2709
 
2710
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:409
2711
- __( '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' ),
 
2712
 
2713
- // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:16
2714
- __( 'HTML Sitemap', 'all-in-one-seo-pack' ),
2715
 
2716
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:125
2717
- __( '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' ),
 
2718
 
2719
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:130
2720
- __( 'Number of Posts', 'all-in-one-seo-pack' ),
2721
 
2722
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:133
2723
- __( 'Open RSS Sitemap', 'all-in-one-seo-pack' ),
 
2724
 
2725
- // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:134
2726
- __( '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' ),
2727
 
2728
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:168
2729
- __( 'Reset / Restore Settings', 'all-in-one-seo-pack' ),
 
2730
 
2731
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:169
2732
- __( 'Select Settings', 'all-in-one-seo-pack' ),
2733
 
2734
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:170
2735
- __( 'Select settings that you would like to reset:', 'all-in-one-seo-pack' ),
 
2736
 
2737
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:171
2738
- __( 'Reset Selected Settings to Default', 'all-in-one-seo-pack' ),
2739
 
2740
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:172
2741
- __( 'Your settings have been reset successfully!', 'all-in-one-seo-pack' ),
2742
 
2743
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:173
2744
- __( 'Are you sure you want to reset the selected settings to default?', 'all-in-one-seo-pack' ),
2745
 
2746
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:175
2747
- __( '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' ),
2748
 
2749
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:176
2750
- __( 'Yes, I have a backup and want to reset the settings', 'all-in-one-seo-pack' ),
2751
 
2752
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:177
2753
- __( 'No, I need to make a backup', 'all-in-one-seo-pack' ),
2754
 
2755
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:178
2756
- __( 'Logs', 'all-in-one-seo-pack' ),
2757
 
2758
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:179
2759
- __( 'Bad Bot Blocker Logs', 'all-in-one-seo-pack' ),
2760
 
2761
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:180
2762
- __( 'Cleared', 'all-in-one-seo-pack' ),
2763
 
2764
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:181
2765
- __( 'Clear Bad Bot Blocker Logs', 'all-in-one-seo-pack' ),
2766
 
2767
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:183
2768
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
2769
- __( 'All %1$s Settings', 'all-in-one-seo-pack' ),
2770
 
2771
- // Reference: src/vue/pages/tools/views/DatabaseTools.vue:198
2772
- __( 'Robots.txt', 'all-in-one-seo-pack' ),
2773
 
2774
- // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:41
2775
- __( 'Edit .htaccess', 'all-in-one-seo-pack' ),
2776
 
2777
- // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:43
2778
- __( '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' ),
2779
 
2780
- // Reference: src/vue/pages/tools/views/ImportExport.vue:36
2781
- __( 'Export / Backup Settings', 'all-in-one-seo-pack' ),
2782
 
2783
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:238
2784
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
2785
- __( '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' ),
2786
 
2787
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:239
2788
- __( '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' ),
2789
 
2790
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:240
2791
- __( 'Enable Custom Robots.txt', 'all-in-one-seo-pack' ),
2792
 
2793
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:241
2794
- __( 'Duplicate or invalid entries have been detected! Please check your rules and try again.', 'all-in-one-seo-pack' ),
2795
 
2796
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:242
2797
- __( 'User Agent', 'all-in-one-seo-pack' ),
2798
 
2799
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:243
2800
- __( 'Rule', 'all-in-one-seo-pack' ),
2801
 
2802
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:244
2803
- __( 'Directory Path', 'all-in-one-seo-pack' ),
2804
 
2805
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:245
2806
- __( 'Allow', 'all-in-one-seo-pack' ),
2807
 
2808
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:246
2809
- __( 'Disallow', 'all-in-one-seo-pack' ),
2810
 
2811
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:247
2812
- __( 'Add Rule', 'all-in-one-seo-pack' ),
2813
 
2814
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:248
2815
- __( 'Delete Rule', 'all-in-one-seo-pack' ),
2816
 
2817
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:249
2818
- __( 'Robots.txt Preview:', 'all-in-one-seo-pack' ),
2819
 
2820
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:250
2821
- __( 'Open Robots.txt', 'all-in-one-seo-pack' ),
2822
 
2823
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:252
2824
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
2825
- __( '%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' ),
2826
 
2827
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:253
2828
- __( 'Import and Delete', 'all-in-one-seo-pack' ),
 
2829
 
2830
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:285
2831
- /* Translators: 1 - The url to the main site. */
2832
- __( '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' ),
2833
 
2834
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:288
2835
- __( 'It looks like you are missing the proper rewrite rules for the robots.txt file.', 'all-in-one-seo-pack' ),
2836
 
2837
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:292
2838
- /* Translators: 1 - Opening link tag. 2 - Closing link tag. */
2839
- __( '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' ),
2840
 
2841
- // Reference: src/vue/pages/tools/views/RobotsEditor.vue:294
2842
- __( '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' ),
2843
 
2844
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:115
2845
- __( 'System Status Info', 'all-in-one-seo-pack' ),
2846
 
2847
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:116
2848
- __( 'Download System Info File', 'all-in-one-seo-pack' ),
2849
 
2850
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:117
2851
- __( 'Copy to Clipboard', 'all-in-one-seo-pack' ),
2852
 
2853
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:118
2854
- __( 'Email Debug Information', 'all-in-one-seo-pack' ),
2855
 
2856
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:119
2857
- __( 'Submit', 'all-in-one-seo-pack' ),
2858
 
2859
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:120
2860
- __( 'WordPress', 'all-in-one-seo-pack' ),
2861
 
2862
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:121
2863
- __( 'Server Info', 'all-in-one-seo-pack' ),
2864
 
2865
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:122
2866
- __( 'Active Theme', 'all-in-one-seo-pack' ),
2867
 
2868
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:123
2869
- __( 'Must-Use Plugins', 'all-in-one-seo-pack' ),
2870
 
2871
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:124
2872
- __( 'Active Plugins', 'all-in-one-seo-pack' ),
2873
 
2874
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:125
2875
- __( 'Inactive Plugins', 'all-in-one-seo-pack' ),
2876
 
2877
- // Reference: src/vue/components/common/core/CopyBlock.vue:48
2878
- // Reference: src/vue/pages/tools/views/SystemStatus.vue:126
2879
- __( 'Copied!', 'all-in-one-seo-pack' ),
2880
 
2881
  // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:12
2882
  __( 'Open News Sitemap', 'all-in-one-seo-pack' ),
@@ -2887,10 +2602,12 @@ $generated_i18n_strings = array(
2887
  // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:16
2888
  __( 'News Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
2889
 
 
 
 
2890
  // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:8
2891
  __( 'Set Publication Name', 'all-in-one-seo-pack' ),
2892
 
2893
- // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:9
2894
  // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:8
2895
  __( 'Exclude Pages/Posts', 'all-in-one-seo-pack' ),
2896
 
@@ -2906,129 +2623,103 @@ $generated_i18n_strings = array(
2906
  // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:7
2907
  __( 'Custom Field Support', 'all-in-one-seo-pack' ),
2908
 
2909
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:64
2910
- // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:76
2911
- // Reference: src/vue/components/common/core/SiteScoreDashboard.vue:66
2912
- __( 'Warnings', 'all-in-one-seo-pack' ),
2913
-
2914
- // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:81
2915
- __( 'Mobile Snapshot', 'all-in-one-seo-pack' ),
2916
-
2917
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:57
2918
- __( 'Your Overall Site Score', 'all-in-one-seo-pack' ),
2919
-
2920
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:59
2921
- /* Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag. */
2922
- __( 'A very good score is between %1$s60 and 80%2$s.', 'all-in-one-seo-pack' ),
2923
-
2924
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:61
2925
- /* Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag. */
2926
- __( 'For best results, you should strive for %1$s70 and above%2$s.', 'all-in-one-seo-pack' ),
2927
-
2928
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:62
2929
- // Reference: src/vue/components/common/core/SiteScoreDashboard.vue:64
2930
- __( 'An error occurred while analyzing your site.', 'all-in-one-seo-pack' ),
2931
-
2932
- // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:68
2933
- __( 'Read the Ultimate WordPress SEO Guide', 'all-in-one-seo-pack' ),
2934
-
2935
  // Reference: src/vue/components/common/core/SiteScore.vue:45
2936
  __( 'Analyzing...', 'all-in-one-seo-pack' ),
2937
 
2938
- // Reference: src/vue/components/common/core/NotificationCards.vue:58
2939
- __( 'Great Scott! Where\'d they all go?', 'all-in-one-seo-pack' ),
2940
-
2941
- // Reference: src/vue/components/common/core/NotificationCards.vue:59
2942
- __( 'You have no new notifications.', 'all-in-one-seo-pack' ),
2943
-
2944
- // Reference: src/vue/components/common/core/NotificationCards.vue:60
2945
- __( 'See Dismissed Notifications', 'all-in-one-seo-pack' ),
2946
-
2947
- // Reference: src/vue/components/common/core/Notifications.vue:94
2948
- __( 'Dismissed Notifications', 'all-in-one-seo-pack' ),
2949
-
2950
- // Reference: src/vue/components/common/core/PostTypeOptions.vue:86
2951
- __( 'Label:', 'all-in-one-seo-pack' ),
2952
-
2953
- // Reference: src/vue/components/common/core/PostTypeOptions.vue:87
2954
- __( 'Slug:', 'all-in-one-seo-pack' ),
2955
-
2956
- // Reference: src/vue/components/common/core/PostTypeOptions.vue:88
2957
- __( 'No post types available.', 'all-in-one-seo-pack' ),
2958
-
2959
- // Reference: src/vue/components/common/core/PostTypeOptions.vue:89
2960
- __( 'No taxonomies available.', 'all-in-one-seo-pack' ),
2961
-
2962
- // Reference: src/vue/components/common/core/PostTypeOptions.vue:90
2963
- __( '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' ),
2964
-
2965
- // Reference: src/vue/components/common/core/PostTypeOptions.vue:91
2966
- __( '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' ),
2967
-
2968
- // Reference: src/vue/components/common/core/PriorityScore.vue:67
2969
- __( 'Archive Pages', 'all-in-one-seo-pack' ),
2970
-
2971
- // Reference: src/vue/components/common/core/PriorityScore.vue:68
2972
- __( 'Author Pages', 'all-in-one-seo-pack' ),
2973
-
2974
  // Reference: src/vue/components/common/core/RobotsMeta.vue:101
2975
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:163
2976
  __( 'Robots meta:', 'all-in-one-seo-pack' ),
2977
 
2978
  // Reference: src/vue/components/common/core/RobotsMeta.vue:102
2979
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:164
2980
  __( 'Max Snippet', 'all-in-one-seo-pack' ),
2981
 
2982
  // Reference: src/vue/components/common/core/RobotsMeta.vue:103
2983
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:165
2984
  __( 'Max Video Preview', 'all-in-one-seo-pack' ),
2985
 
2986
  // Reference: src/vue/components/common/core/RobotsMeta.vue:104
2987
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:166
2988
  __( 'Max Image Preview', 'all-in-one-seo-pack' ),
2989
 
2990
  // Reference: src/vue/components/common/core/RobotsMeta.vue:105
2991
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:167
2992
  __( 'Standard', 'all-in-one-seo-pack' ),
2993
 
2994
  // Reference: src/vue/components/common/core/RobotsMeta.vue:107
2995
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:169
2996
  __( 'Large', 'all-in-one-seo-pack' ),
2997
 
2998
  // Reference: src/vue/components/common/core/RobotsMeta.vue:87
2999
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:170
3000
  __( 'No Index', 'all-in-one-seo-pack' ),
3001
 
3002
  // Reference: src/vue/components/common/core/RobotsMeta.vue:88
3003
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:171
3004
  __( 'No Follow', 'all-in-one-seo-pack' ),
3005
 
3006
  // Reference: src/vue/components/common/core/RobotsMeta.vue:89
3007
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:172
3008
  __( 'No Archive', 'all-in-one-seo-pack' ),
3009
 
3010
  // Reference: src/vue/components/common/core/RobotsMeta.vue:90
3011
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:173
3012
  __( 'No Translate', 'all-in-one-seo-pack' ),
3013
 
3014
  // Reference: src/vue/components/common/core/RobotsMeta.vue:91
3015
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:174
3016
  __( 'No Image Index', 'all-in-one-seo-pack' ),
3017
 
3018
  // Reference: src/vue/components/common/core/RobotsMeta.vue:92
3019
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:175
3020
  __( 'No Snippet', 'all-in-one-seo-pack' ),
3021
 
3022
  // Reference: src/vue/components/common/core/RobotsMeta.vue:93
3023
- // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:176
3024
  __( 'No ODP', 'all-in-one-seo-pack' ),
3025
 
 
 
 
 
 
 
 
 
 
3026
  // Reference: src/vue/components/common/core/RobotsMeta.vue:96
3027
  __( 'No Index Paginated', 'all-in-one-seo-pack' ),
3028
 
3029
  // Reference: src/vue/components/common/core/RobotsMeta.vue:97
3030
  __( 'No Follow Paginated', 'all-in-one-seo-pack' ),
3031
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3032
  // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:107
3033
  __( 'Advanced SEO', 'all-in-one-seo-pack' ),
3034
 
@@ -3041,14 +2732,28 @@ $generated_i18n_strings = array(
3041
  // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:110
3042
  __( 'Keywords:', 'all-in-one-seo-pack' ),
3043
 
3044
- // Reference: src/vue/components/common/core/SettingsSeparator.vue:101
3045
- __( 'Custom separator:', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3046
 
3047
- // Reference: src/vue/components/common/core/SettingsSeparator.vue:102
3048
- __( 'Show More', 'all-in-one-seo-pack' ),
3049
 
3050
- // Reference: src/vue/components/common/core/SettingsSeparator.vue:103
3051
- __( 'Show Less', 'all-in-one-seo-pack' ),
3052
 
3053
  // Reference: src/vue/components/common/core/SocialProfiles.vue:121
3054
  __( 'Your Facebook URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
@@ -3089,6 +2794,48 @@ $generated_i18n_strings = array(
3089
  // Reference: src/vue/components/common/core/SocialProfiles.vue:239
3090
  __( 'Your Username:', 'all-in-one-seo-pack' ),
3091
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3092
  // Reference: src/vue/classes/SiteAnalysis.js:102
3093
  __( 'No keywords were found in the page title.', 'all-in-one-seo-pack' ),
3094
 
@@ -3600,63 +3347,11 @@ $generated_i18n_strings = array(
3600
  // Reference: src/vue/classes/SiteAnalysis.js:93
3601
  __( 'Edit Your Meta Description', 'all-in-one-seo-pack' ),
3602
 
3603
- // Reference: src/vue/components/common/core/Main.vue:72
3604
- // Reference: src/vue/components/common/core/MainTabs.vue:161
3605
- __( 'Save Changes', 'all-in-one-seo-pack' ),
3606
-
3607
- // Reference: src/vue/components/common/core/Notification.vue:100
3608
- __( 'a minute ago', 'all-in-one-seo-pack' ),
3609
-
3610
- // Reference: src/vue/components/common/core/Notification.vue:101
3611
- __( 'minutes ago', 'all-in-one-seo-pack' ),
3612
-
3613
- // Reference: src/vue/components/common/core/Notification.vue:102
3614
- __( 'a day ago', 'all-in-one-seo-pack' ),
3615
-
3616
- // Reference: src/vue/components/common/core/Notification.vue:103
3617
- __( 'days ago', 'all-in-one-seo-pack' ),
3618
-
3619
- // Reference: src/vue/components/common/core/Notification.vue:104
3620
- __( 'a month ago', 'all-in-one-seo-pack' ),
3621
-
3622
- // Reference: src/vue/components/common/core/Notification.vue:105
3623
- __( 'months ago', 'all-in-one-seo-pack' ),
3624
-
3625
- // Reference: src/vue/components/common/core/Notification.vue:106
3626
- __( 'a year ago', 'all-in-one-seo-pack' ),
3627
-
3628
- // Reference: src/vue/components/common/core/Notification.vue:107
3629
- __( 'years ago', 'all-in-one-seo-pack' ),
3630
-
3631
- // Reference: src/vue/components/common/core/Notification.vue:79
3632
- __( 'Dismiss', 'all-in-one-seo-pack' ),
3633
-
3634
- // Reference: src/vue/components/common/core/Notification.vue:99
3635
- __( 'a few seconds ago', 'all-in-one-seo-pack' ),
3636
-
3637
- // Reference: src/vue/components/common/core/FeatureCard.vue:122
3638
- // Reference: src/vue/components/common/core/Help.vue:137
3639
- __( 'Upgrade to Pro', 'all-in-one-seo-pack' ),
3640
-
3641
- // Reference: src/vue/components/common/core/FeatureCard.vue:123
3642
- __( 'Upgrade Your Plan', 'all-in-one-seo-pack' ),
3643
-
3644
- // Reference: src/vue/components/common/core/GettingStarted.vue:83
3645
- __( 'How to Get Started', 'all-in-one-seo-pack' ),
3646
-
3647
- // Reference: src/vue/components/common/core/GettingStarted.vue:85
3648
- /* Translators: 1 - The plugin name ("All in One SEO"). */
3649
- __( 'Welcome to %1$s', 'all-in-one-seo-pack' ),
3650
-
3651
- // Reference: src/vue/components/common/core/GettingStarted.vue:87
3652
- /* Translators: 1 - The plugin name ("All in One SEO"). */
3653
- __( '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' ),
3654
-
3655
- // Reference: src/vue/components/common/core/GettingStarted.vue:88
3656
- __( 'Launch the Setup Wizard', 'all-in-one-seo-pack' ),
3657
 
3658
- // Reference: src/vue/components/common/core/GettingStarted.vue:89
3659
- __( 'Read the Setup Guide', 'all-in-one-seo-pack' ),
3660
 
3661
  // Reference: src/vue/components/common/core/Help.vue:126
3662
  __( 'Close', 'all-in-one-seo-pack' ),
@@ -3689,14 +3384,29 @@ $generated_i18n_strings = array(
3689
  // Reference: src/vue/components/common/core/Help.vue:136
3690
  __( 'Submit a Support Ticket', 'all-in-one-seo-pack' ),
3691
 
3692
- // Reference: src/vue/components/common/core/HtmlTagsEditor.vue:98
3693
- __( 'Click on the tags below to insert variables into your template.', 'all-in-one-seo-pack' ),
 
3694
 
3695
- // Reference: src/vue/components/common/core/HtmlTagsEditor.vue:99
3696
- __( 'View all tags', 'all-in-one-seo-pack' ),
3697
 
3698
- // Reference: src/vue/components/common/core/CopyBlock.vue:48
3699
- __( 'Click to Copy', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3700
 
3701
  // Reference: src/vue/components/common/core/ExcludePosts.vue:100
3702
  __( 'No results found for that title. Try again!', 'all-in-one-seo-pack' ),
@@ -3716,6 +3426,9 @@ $generated_i18n_strings = array(
3716
  // Reference: src/vue/components/common/core/ExcludePosts.vue:99
3717
  __( 'Begin typing a title to search...', 'all-in-one-seo-pack' ),
3718
 
 
 
 
3719
  // Reference: src/vue/components/common/core/AdditionalPages.vue:100
3720
  __( 'Last Modified', 'all-in-one-seo-pack' ),
3721
 
@@ -3723,7 +3436,6 @@ $generated_i18n_strings = array(
3723
  __( 'Add New', 'all-in-one-seo-pack' ),
3724
 
3725
  // Reference: src/vue/components/common/core/AdditionalPages.vue:103
3726
- // Reference: src/vue/plugins/constants.js:19
3727
  __( 'always', 'all-in-one-seo-pack' ),
3728
 
3729
  // Reference: src/vue/components/common/core/AdditionalPages.vue:96
@@ -3739,6 +3451,21 @@ $generated_i18n_strings = array(
3739
  // Reference: src/vue/components/common/base/Editor.vue:123
3740
  __( 'Enter a custom field name...', 'all-in-one-seo-pack' ),
3741
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3742
  // Reference: src/vue/plugins/constants.js:1041
3743
  __( 'Manually Enter Type', 'all-in-one-seo-pack' ),
3744
 
@@ -3990,24 +3717,93 @@ $generated_i18n_strings = array(
3990
  // Reference: src/vue/plugins/constants.js:38
3991
  __( 'Preview', 'all-in-one-seo-pack' ),
3992
 
3993
- // Reference: src/vue/utils/tags.js:64
3994
- __( 'Product Short Description', 'all-in-one-seo-pack' ),
3995
 
3996
- // Reference: src/vue/utils/tags.js:65
3997
- __( 'A short description for your product.', 'all-in-one-seo-pack' ),
3998
 
3999
- // Reference: src/vue/utils/tags.js:66
4000
- __( 'Sample short description for your product.', 'all-in-one-seo-pack' ),
4001
 
4002
- // Reference: src/vue/utils/tags.js:82
4003
- __( 'Archive', 'all-in-one-seo-pack' ),
4004
 
4005
- // Reference: src/vue/utils/tags.js:83
4006
- __( 'archive', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4007
 
4008
  // Reference: src/vue/store/actions.js:146
4009
  __( 'We couldn\'t connect to the site, please try again later.', 'all-in-one-seo-pack' ),
4010
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4011
  // Reference: src/vue/plugins/truSEO/Analysis/isExternalLink.js:22
4012
  __( 'Great! You are linking to external resources.', 'all-in-one-seo-pack' ),
4013
 
@@ -4017,7 +3813,22 @@ $generated_i18n_strings = array(
4017
  // Reference: src/vue/plugins/truSEO/Analysis/isExternalLink.js:31
4018
  __( 'No outbound links were found. Link out to external resources.', 'all-in-one-seo-pack' ),
4019
 
4020
- // Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4021
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:41
4022
  __( 'Good job!', 'all-in-one-seo-pack' ),
4023
 
@@ -4041,15 +3852,6 @@ $generated_i18n_strings = array(
4041
  // Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:98
4042
  __( ':-)', 'all-in-one-seo-pack' ),
4043
 
4044
- // Reference: src/vue/plugins/truSEO/Analysis/isInternalLink.js:22
4045
- __( 'You are linking to other resources on your website which is great.', 'all-in-one-seo-pack' ),
4046
-
4047
- // Reference: src/vue/plugins/truSEO/Analysis/isInternalLink.js:30
4048
- __( 'Internal links', 'all-in-one-seo-pack' ),
4049
-
4050
- // Reference: src/vue/plugins/truSEO/Analysis/isInternalLink.js:31
4051
- __( 'We couldn\'t find any internal links in your content. Add internal links in your content.', 'all-in-one-seo-pack' ),
4052
-
4053
  // Reference: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:23
4054
  /* Translators: 1 - Number of sentences. */
4055
  __( 'The text contains %1$d consecutive sentences starting with the same word. Try to mix things up!', 'all-in-one-seo-pack' ),
@@ -4060,21 +3862,15 @@ $generated_i18n_strings = array(
4060
  // Reference: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:32
4061
  __( 'There is enough variety in your sentences. That\'s great!', 'all-in-one-seo-pack' ),
4062
 
4063
- // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:65
4064
- /* Translators: 1 - Expand to the number of text sections not separated by subheadings, 2 - expands to the recommended number of words following a subheading. */
4065
- __( '%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' ),
4066
-
4067
- // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:74
4068
- __( 'You are not using any subheadings, although your text is rather long. Try and add some subheadings.', 'all-in-one-seo-pack' ),
4069
-
4070
- // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:84
4071
- __( 'Great job!', 'all-in-one-seo-pack' ),
4072
 
4073
- // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:92
4074
- __( 'Subheading distribution', 'all-in-one-seo-pack' ),
4075
 
4076
- // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:93
4077
- __( 'You are not using any subheadings, but your text is short enough and probably doesn\'t need them.', 'all-in-one-seo-pack' ),
 
4078
 
4079
  // Reference: src/vue/plugins/truSEO/Analysis/transitionWords.js:21
4080
  __( 'None of the sentences contain transition words. Use some', 'all-in-one-seo-pack' ),
@@ -4087,29 +3883,20 @@ $generated_i18n_strings = array(
4087
  __( 'Transition words', 'all-in-one-seo-pack' ),
4088
 
4089
  // Reference: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:56
4090
- // Reference: src/vue/plugins/truSEO/Analysis/titleLength.js:61
4091
  // Reference: src/vue/plugins/truSEO/Analysis/transitionWords.js:41
4092
  __( 'Well done!', 'all-in-one-seo-pack' ),
4093
 
4094
- // Reference: src/vue/plugins/truSEO/Analysis/passiveVoice.js:38
4095
- __( 'You\'re using enough active voice. That\'s great!', 'all-in-one-seo-pack' ),
4096
-
4097
- // Reference: src/vue/plugins/truSEO/Analysis/passiveVoice.js:45
4098
- __( 'Passive Voice', 'all-in-one-seo-pack' ),
4099
-
4100
- // Reference: src/vue/plugins/truSEO/Analysis/passiveVoice.js:47
4101
- /* Translators: 1 - Percentage of the sentences, 2 - Expected maximum percentage of sentences. */
4102
- __( '%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' ),
4103
 
4104
- // Reference: src/vue/plugins/truSEO/Analysis/sentenceLength.js:34
4105
- __( 'Sentence length is looking great!', 'all-in-one-seo-pack' ),
4106
 
4107
- // Reference: src/vue/plugins/truSEO/Analysis/sentenceLength.js:52
4108
- __( 'Sentences Length', 'all-in-one-seo-pack' ),
4109
 
4110
- // Reference: src/vue/plugins/truSEO/Analysis/sentenceLength.js:54
4111
- /* Translators: 1 - Number of the sentences, 2 - Number of words, 3 - Recommended maximum of words. */
4112
- __( '%1$s of the sentences contain more than %2$s words, which is more than the recommended maximum of %3$s. Try to shorten the sentences.', 'all-in-one-seo-pack' ),
4113
 
4114
  // Reference: src/vue/plugins/truSEO/Analysis/paragraphLength.js:23
4115
  __( 'At least one paragraph is long. Consider using short paragraphs.', 'all-in-one-seo-pack' ),
@@ -4120,7 +3907,16 @@ $generated_i18n_strings = array(
4120
  // Reference: src/vue/plugins/truSEO/Analysis/paragraphLength.js:31
4121
  __( 'You are using short paragraphs.', 'all-in-one-seo-pack' ),
4122
 
4123
- // Reference: src/vue/plugins/truSEO/Analysis/contentHasAssets.js:11
 
 
 
 
 
 
 
 
 
4124
  // Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:27
4125
  __( 'Please add some content first.', 'all-in-one-seo-pack' ),
4126
 
@@ -4196,6 +3992,141 @@ $generated_i18n_strings = array(
4196
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:83
4197
  __( 'Use your focus keyphrase more in your H2 and H3 subheadings', 'all-in-one-seo-pack' ),
4198
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4199
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInIntroduction.js:24
4200
  /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4201
  __( '%1$s in introduction', 'all-in-one-seo-pack' ),
@@ -4211,6 +4142,15 @@ $generated_i18n_strings = array(
4211
  /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4212
  __( 'Your %1$s does not appear in the first paragraph. Make sure the topic is clear immediately.', 'all-in-one-seo-pack' ),
4213
 
 
 
 
 
 
 
 
 
 
4214
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:22
4215
  __( 'Focus Keyphrase found in content.', 'all-in-one-seo-pack' ),
4216
 
@@ -4220,14 +4160,8 @@ $generated_i18n_strings = array(
4220
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:31
4221
  __( 'Focus Keyphrase not found in content.', 'all-in-one-seo-pack' ),
4222
 
4223
- // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:26
4224
- __( 'Focus Keyphrase used in the URL.', 'all-in-one-seo-pack' ),
4225
-
4226
- // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:34
4227
- __( 'Focus Keyphrase in URL', 'all-in-one-seo-pack' ),
4228
-
4229
- // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:35
4230
- __( 'Focus Keyphrase not found in the URL.', 'all-in-one-seo-pack' ),
4231
 
4232
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInDescription.js:21
4233
  /* Translators: 1 - Focus Keyphrase or Keyphrase. */
@@ -4241,6 +4175,10 @@ $generated_i18n_strings = array(
4241
  /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4242
  __( '%1$s not found in meta description.', 'all-in-one-seo-pack' ),
4243
 
 
 
 
 
4244
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseBeginningTitle.js:20
4245
  __( 'Focus Keyphrase used at the beginning of SEO title.', 'all-in-one-seo-pack' ),
4246
 
@@ -4259,21 +4197,19 @@ $generated_i18n_strings = array(
4259
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInTitle.js:31
4260
  __( 'Focus Keyphrase not found in SEO title.', 'all-in-one-seo-pack' ),
4261
 
4262
- // Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:25
4263
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4264
- __( '%1$s length', 'all-in-one-seo-pack' ),
4265
 
4266
- // Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:31
4267
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4268
- __( 'No %1$s was set. Set a %1$s in order to calculate your SEO score.', 'all-in-one-seo-pack' ),
4269
 
4270
- // Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:52
4271
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4272
- __( '%1$s is slightly long. Try to make it shorter.', 'all-in-one-seo-pack' ),
4273
 
4274
- // Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:62
4275
- /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4276
- __( '%1$s is too long. Try to make it shorter.', 'all-in-one-seo-pack' ),
4277
 
4278
  // Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:38
4279
  __( 'The content length is ok. Good job!', 'all-in-one-seo-pack' ),
@@ -4287,10 +4223,20 @@ $generated_i18n_strings = array(
4287
  // Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:73
4288
  __( 'The content is below the minimum of words. Add more content.', 'all-in-one-seo-pack' ),
4289
 
4290
- // Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:6
4291
- __( 'Focus keyphrase', 'all-in-one-seo-pack' ),
 
4292
 
4293
- // Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:8
4294
- __( 'Keyphrase', 'all-in-one-seo-pack' )
 
 
 
 
 
 
 
 
 
4295
  );
4296
  /* THIS IS THE END OF THE GENERATED FILE */
1
  <?php
2
  /* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
3
  $generated_i18n_strings = array(
4
+ // Reference: src/vue/pages/search-appearance/router/paths.js:19
5
+ __( 'Global Settings', 'all-in-one-seo-pack' ),
6
+
7
+ // Reference: src/vue/pages/search-appearance/router/paths.js:28
8
+ __( 'Content Types', 'all-in-one-seo-pack' ),
9
+
10
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:429
11
+ __( 'Taxonomies', 'all-in-one-seo-pack' ),
12
+
13
+ // Reference: src/vue/pages/search-appearance/router/paths.js:46
14
+ __( 'Media', 'all-in-one-seo-pack' ),
15
+
16
+ // Reference: src/vue/pages/search-appearance/router/paths.js:55
17
+ __( 'Archives', 'all-in-one-seo-pack' ),
18
+
19
+ // Reference: src/vue/pages/search-appearance/router/paths.js:64
20
+ __( 'Advanced', 'all-in-one-seo-pack' ),
21
+
22
+ // Reference: src/vue/pages/monsterinsights/router/paths.js:19
23
+ // Reference: src/vue/pages/monsterinsights/views/Main.vue:20
24
+ __( 'Analytics', 'all-in-one-seo-pack' ),
25
+
26
+ // Reference: src/vue/pages/about/router/paths.js:19
27
+ __( 'About Us', 'all-in-one-seo-pack' ),
28
+
29
+ // Reference: src/vue/pages/about/router/paths.js:28
30
+ __( 'Getting Started', 'all-in-one-seo-pack' ),
31
+
32
+ // Reference: src/vue/pages/about/router/paths.js:37
33
+ __( 'Lite vs. Pro', 'all-in-one-seo-pack' ),
34
+
35
+ // Reference: src/vue/pages/seo-analysis/router/paths.js:19
36
+ __( 'SEO Audit Checklist', 'all-in-one-seo-pack' ),
37
+
38
+ // Reference: src/vue/pages/seo-analysis/router/paths.js:28
39
+ __( 'Analyze Competitor Site', 'all-in-one-seo-pack' ),
40
+
41
+ // Reference: src/vue/pages/dashboard/router/paths.js:19
42
+ __( 'Dashboard', 'all-in-one-seo-pack' ),
43
+
44
  // Reference: src/vue/pages/local-seo/router/paths.js:19
45
  __( 'Locations', 'all-in-one-seo-pack' ),
46
 
47
+ // Reference: src/vue/pages/local-seo/router/paths.js:28
48
  // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:292
49
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:306
50
  __( 'Opening Hours', 'all-in-one-seo-pack' ),
51
 
52
+ // Reference: src/vue/pages/post-settings/registerScoreToggler.js:21
53
+ __( 'N/A', 'all-in-one-seo-pack' ),
54
+
55
  // Reference: src/vue/router/index.js:51
56
  __( 'Are you sure you want to leave? you have unsaved changes!', 'all-in-one-seo-pack' ),
57
 
58
+ // Reference: src/vue/pages/connect-pro/router/paths.js:20
 
 
 
59
  /* Translators: 1 - The plugin short name ("AIOSEO"). */
60
  __( 'Connect with %1$s', 'all-in-one-seo-pack' ),
61
 
62
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:19
63
+ __( 'Welcome', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
64
 
65
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:85
66
+ __( 'Import', 'all-in-one-seo-pack' ),
67
 
68
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:371
69
+ __( 'Category', 'all-in-one-seo-pack' ),
70
 
71
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:46
72
+ __( 'Additional Site Information', 'all-in-one-seo-pack' ),
73
 
74
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:55
75
+ __( 'Choose Features', 'all-in-one-seo-pack' ),
76
 
77
+ // Reference: src/vue/pages/search-appearance/views/Main.vue:30
78
+ __( 'Search Appearance', 'all-in-one-seo-pack' ),
79
 
80
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:73
81
+ __( 'Smart Recommendations', 'all-in-one-seo-pack' ),
82
 
83
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:58
84
+ __( 'License Key', 'all-in-one-seo-pack' ),
85
 
86
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:91
87
+ __( 'Success', 'all-in-one-seo-pack' ),
88
 
89
  // Reference: src/vue/pages/settings/views/Main.vue:29
90
  __( 'General Settings', 'all-in-one-seo-pack' ),
91
 
92
+ // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:118
93
  __( 'Webmaster Tools', 'all-in-one-seo-pack' ),
94
 
95
+ // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:119
96
  __( 'RSS Content', 'all-in-one-seo-pack' ),
97
 
98
+ // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:128
99
  __( 'Access Control', 'all-in-one-seo-pack' ),
100
 
101
+ // Reference: src/vue/pages/feature-manager/router/paths.js:19
102
+ __( 'Feature Manager', 'all-in-one-seo-pack' ),
103
 
104
+ // Reference: src/vue/pages/social-networks/router/paths.js:19
 
105
  __( 'Social Profiles', 'all-in-one-seo-pack' ),
106
 
107
  // Reference: src/vue/pages/post-settings/views/Social.vue:65
113
  // Reference: src/vue/pages/social-networks/views/Pinterest.vue:45
114
  __( 'Pinterest', 'all-in-one-seo-pack' ),
115
 
116
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:415
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  __( 'General Sitemap', 'all-in-one-seo-pack' ),
118
 
119
  // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:9
 
120
  __( 'Video Sitemap', 'all-in-one-seo-pack' ),
121
 
122
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:151
 
123
  __( 'News Sitemap', 'all-in-one-seo-pack' ),
124
 
125
  // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:124
126
  __( 'RSS Sitemap', 'all-in-one-seo-pack' ),
127
 
128
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:236
129
+ __( 'Robots.txt Editor', 'all-in-one-seo-pack' ),
130
 
131
+ // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:40
132
+ __( '.htaccess Editor', 'all-in-one-seo-pack' ),
133
 
134
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:89
135
+ __( 'Bad Bot Blocker', 'all-in-one-seo-pack' ),
136
 
137
+ // Reference: src/vue/pages/tools/router/paths.js:46
138
+ __( 'Import/Export', 'all-in-one-seo-pack' ),
139
 
140
+ // Reference: src/vue/pages/tools/router/paths.js:55
141
+ __( 'Database Tools', 'all-in-one-seo-pack' ),
142
 
143
+ // Reference: src/vue/pages/tools/router/paths.js:64
144
+ __( 'System Status', 'all-in-one-seo-pack' ),
 
145
 
146
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:440
147
+ __( 'Advanced Settings', 'all-in-one-seo-pack' ),
148
 
149
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:377
150
+ __( 'Global Robots Meta', 'all-in-one-seo-pack' ),
151
 
152
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:378
153
+ __( 'Noindex Empty Category and Tag Archives', 'all-in-one-seo-pack' ),
154
 
155
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:379
156
+ __( 'Remove Stopwords from Permalinks', 'all-in-one-seo-pack' ),
157
 
158
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:380
159
+ __( 'Remove Category Base Prefix', 'all-in-one-seo-pack' ),
160
 
161
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:383
162
+ __( 'Automatically Add Missing Image Alt / Title Tags', 'all-in-one-seo-pack' ),
 
163
 
164
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:122
165
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
166
+ __( 'This feature is only for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
167
 
168
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:386
169
+ __( 'Autogenerate Descriptions', 'all-in-one-seo-pack' ),
170
 
171
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:387
172
+ __( 'Use Content for Autogenerated Descriptions', 'all-in-one-seo-pack' ),
173
 
174
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:388
175
+ __( 'Run Shortcodes in Description', 'all-in-one-seo-pack' ),
176
 
177
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:389
178
+ __( 'No Pagination for Canonical URLs', 'all-in-one-seo-pack' ),
179
 
180
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:390
181
+ __( 'Use Meta Keywords', 'all-in-one-seo-pack' ),
182
 
183
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:391
184
+ __( 'This option allows you to toggle the use of Meta Keywords throughout the whole of the site.', 'all-in-one-seo-pack' ),
185
 
186
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:392
187
+ __( 'Use Categories for Meta Keywords', 'all-in-one-seo-pack' ),
188
 
189
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:393
190
+ __( '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' ),
191
 
192
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:394
193
+ __( 'Use Tags for Meta Keywords', 'all-in-one-seo-pack' ),
194
 
195
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:395
196
+ __( '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' ),
197
 
198
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:396
199
+ __( 'Dynamically Generate Meta Keywords', 'all-in-one-seo-pack' ),
200
 
201
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:397
202
+ __( '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' ),
203
 
204
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:398
205
+ __( 'Paged Format', 'all-in-one-seo-pack' ),
206
 
207
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:399
208
+ __( 'This string gets appended/prepended to titles and descriptions of paged index pages (like home or archive pages).', 'all-in-one-seo-pack' ),
209
 
210
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:400
211
+ __( 'Description Format', 'all-in-one-seo-pack' ),
212
 
213
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:441
214
+ __( 'Exclude Posts / Pages', 'all-in-one-seo-pack' ),
215
 
216
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:442
217
+ __( 'Exclude Terms', 'all-in-one-seo-pack' ),
218
 
219
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:403
220
+ __( 'Enable Sitelinks Search Box', 'all-in-one-seo-pack' ),
221
 
222
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:405
223
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
224
+ __( 'Choose whether %1$s should output the required schema markup that Google needs to generate a sitelinks search box.', 'all-in-one-seo-pack' ),
225
 
226
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:406
227
+ __( 'A Description tag is required in order to properly display your meta descriptions on your site.', 'all-in-one-seo-pack' ),
228
 
229
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:107
230
+ __( 'Robots Meta Settings', 'all-in-one-seo-pack' ),
231
 
232
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:108
233
+ __( 'Bulk Editing', 'all-in-one-seo-pack' ),
 
234
 
235
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:109
236
+ __( 'Read Only', 'all-in-one-seo-pack' ),
 
237
 
238
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:110
239
+ __( 'Other Options', 'all-in-one-seo-pack' ),
240
 
241
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:111
242
+ __( 'Show Date in Google Preview', 'all-in-one-seo-pack' ),
243
 
244
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:442
245
+ __( 'Keywords', 'all-in-one-seo-pack' ),
246
 
247
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:125
248
+ /* Translators: 1 - The type of page (Post, Page, Category, Tag, etc.). */
249
+ __( '%1$s Title', 'all-in-one-seo-pack' ),
 
250
 
251
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:129
252
+ /* Translators: 1 - The type of page (Post, Page, Category, Tag, etc.). */
253
+ __( 'Show %1$s Thumbnail in Google Custom Search', 'all-in-one-seo-pack' ),
 
254
 
255
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:133
256
+ /* Translators: 1 - The plugin name ("All in One SEO") */
257
+ __( 'Show %1$s Meta Box', 'all-in-one-seo-pack' ),
258
 
259
+ // Reference: src/vue/components/common/core/RobotsMeta.vue:106
260
+ __( 'None', 'all-in-one-seo-pack' ),
 
 
261
 
262
+ // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:55
263
+ __( 'Schema Type', 'all-in-one-seo-pack' ),
264
 
265
+ // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:56
266
+ __( 'Article Type', 'all-in-one-seo-pack' ),
267
 
268
+ // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:57
269
+ __( 'Article', 'all-in-one-seo-pack' ),
270
 
271
+ // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:58
272
+ __( 'Blog Post', 'all-in-one-seo-pack' ),
 
273
 
274
+ // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:59
275
+ __( 'News Article', 'all-in-one-seo-pack' ),
276
 
277
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:76
278
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
279
+ __( '%1$s %2$s gives you advanced customizations for the structured data markup on Posts, Pages, Categories, Tags, etc.', 'all-in-one-seo-pack' ),
280
 
281
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:77
282
+ __( 'Upgrade to Pro and Unlock Schema Markup', 'all-in-one-seo-pack' ),
283
 
284
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:78
285
+ __( 'Schema Markup is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
286
+
287
+ // Reference: src/vue/pages/posts-table/App.vue:218
288
+ __( 'Title:', 'all-in-one-seo-pack' ),
289
+
290
+ // Reference: src/vue/pages/posts-table/App.vue:219
291
+ __( 'Description:', 'all-in-one-seo-pack' ),
292
+
293
+ // Reference: src/vue/pages/posts-table/App.vue:222
294
+ __( 'Edit', 'all-in-one-seo-pack' ),
295
+
296
+ // Reference: src/vue/pages/posts-table/App.vue:223
297
+ __( 'Save', 'all-in-one-seo-pack' ),
298
+
299
+ // Reference: src/vue/pages/posts-table/App.vue:224
300
+ __( 'Cancel', 'all-in-one-seo-pack' ),
301
+
302
+ // Reference: src/vue/pages/posts-table/App.vue:225
303
+ __( 'Please wait...', 'all-in-one-seo-pack' ),
304
+
305
+ // Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:70
306
+ __( 'Custom Fields', 'all-in-one-seo-pack' ),
307
+
308
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:52
309
+ __( 'List of custom field names to include in the SEO Page Analysis. Add one per line.', 'all-in-one-seo-pack' ),
310
+
311
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:54
312
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
313
+ __( '%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' ),
314
+
315
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:55
316
+ __( 'Upgrade to Pro and Unlock Custom Fields', 'all-in-one-seo-pack' ),
317
+
318
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:56
319
+ __( 'Custom Fields are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
320
+
321
+ // Reference: src/vue/pages/posts-table/App.vue:220
322
+ __( 'Image Title:', 'all-in-one-seo-pack' ),
323
+
324
+ // Reference: src/vue/pages/posts-table/App.vue:221
325
+ __( 'Image Alt Tag:', 'all-in-one-seo-pack' ),
326
+
327
+ // Reference: src/vue/components/common/Cta.vue:236
328
+ /* Translators: 1 - "Pro". */
329
+ __( 'Upgrade to %1$s', 'all-in-one-seo-pack' ),
330
+
331
+ // Reference: src/vue/components/common/Cta.vue:238
332
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
333
+ __( 'This feature is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
334
+
335
+ // Reference: src/vue/components/common/Cta.vue:239
336
+ __( '%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' ),
337
+
338
+ // Reference: src/vue/components/common/Cta.vue:240
339
+ __( 'Learn more about all features', 'all-in-one-seo-pack' ),
340
+
341
+ // Reference: src/vue/components/common/Cta.vue:241
342
+ __( 'See all features', 'all-in-one-seo-pack' ),
343
+
344
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:260
345
+ __( 'Click here', 'all-in-one-seo-pack' ),
346
+
347
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:261
348
+ __( 'Install Monsterinsights', 'all-in-one-seo-pack' ),
349
+
350
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:178
351
+ __( 'Activate Monsterinsights', 'all-in-one-seo-pack' ),
352
+
353
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:180
354
+ __( 'MonsterInsights is Installed & Active', 'all-in-one-seo-pack' ),
355
+
356
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:181
357
+ __( 'ExactMetrics is Installed & Active', 'all-in-one-seo-pack' ),
358
+
359
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:182
360
+ __( 'Launch Setup Wizard', 'all-in-one-seo-pack' ),
361
+
362
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:184
363
+ __( 'ExactMetrics connects AIOSEO to Google Analytics, providing a powerful integration. ExactMetrics is a sister company of AIOSEO.', 'all-in-one-seo-pack' ),
364
+
365
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:188
366
+ __( 'Activate ExactMetrics', 'all-in-one-seo-pack' ),
367
+
368
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:189
369
+ __( 'ExactMetrics shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'all-in-one-seo-pack' ),
370
+
371
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:190
372
+ __( 'The Best Google Analytics Plugin for WordPress', 'all-in-one-seo-pack' ),
373
+
374
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:191
375
+ __( 'MonsterInsights connects AIOSEO to Google Analytics, providing a powerful integration. MonsterInsights is a sister company of AIOSEO.', 'all-in-one-seo-pack' ),
376
+
377
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:192
378
+ __( 'Quick & Easy Google Analytics Setup', 'all-in-one-seo-pack' ),
379
+
380
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:193
381
+ __( 'Google Analytics Dashboard + Real Time Stats', 'all-in-one-seo-pack' ),
382
+
383
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:194
384
+ __( 'Google Analytics Enhanced Ecommerce Tracking', 'all-in-one-seo-pack' ),
385
+
386
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:195
387
+ __( 'Universal Tracking for AMP and Instant Articles', 'all-in-one-seo-pack' ),
388
+
389
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:196
390
+ __( 'Install &', 'all-in-one-seo-pack' ),
391
+
392
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:197
393
+ __( 'Activate MonsterInsights', 'all-in-one-seo-pack' ),
394
+
395
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:198
396
+ __( 'MonsterInsights shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'all-in-one-seo-pack' ),
397
+
398
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:199
399
+ __( 'Setup ExactMetrics', 'all-in-one-seo-pack' ),
400
+
401
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:200
402
+ __( 'Setup MonsterInsights', 'all-in-one-seo-pack' ),
403
+
404
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:201
405
+ __( 'ExactMetrics has an intuitive setup wizard to guide you through the setup process.', 'all-in-one-seo-pack' ),
406
+
407
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:202
408
+ __( 'MonsterInsights has an intuitive setup wizard to guide you through the setup process.', 'all-in-one-seo-pack' ),
409
+
410
+ // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:144
411
+ __( 'Show in Search Results', 'all-in-one-seo-pack' ),
412
+
413
+ // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:145
414
+ __( 'Click on the tags below to insert variables into your title.', 'all-in-one-seo-pack' ),
415
+
416
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:150
417
+ __( 'Meta Description', 'all-in-one-seo-pack' ),
418
+
419
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:420
420
+ __( 'Click on the tags below to insert variables into your meta description.', 'all-in-one-seo-pack' ),
421
+
422
+ // Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:148
423
+ __( 'Selecting "No" will no-index this page.', 'all-in-one-seo-pack' ),
424
+
425
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:132
426
+ __( 'Set title attributes', 'all-in-one-seo-pack' ),
427
+
428
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:133
429
+ __( 'Set alt tag attributes', 'all-in-one-seo-pack' ),
430
+
431
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:134
432
+ __( 'Strip punctuation for titles', 'all-in-one-seo-pack' ),
433
 
434
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:135
435
+ __( 'Strip punctuation for alt tags', 'all-in-one-seo-pack' ),
436
+
437
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:136
438
  __( 'An error occurred while activating the addon. Please upload it manually or contact support for more information.', 'all-in-one-seo-pack' ),
439
 
440
+ // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:107
441
+ __( 'Web Page Type', 'all-in-one-seo-pack' ),
442
 
443
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:135
444
  __( 'Smart Schema', 'all-in-one-seo-pack' ),
445
 
446
  // Reference: src/vue/pages/local-seo/views/Main.vue:21
 
447
  __( 'Local SEO', 'all-in-one-seo-pack' ),
448
 
449
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:137
450
  __( 'Advanced support for e-commerce', 'all-in-one-seo-pack' ),
451
 
452
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:141
453
  __( 'Advanced Google Analytics tracking', 'all-in-one-seo-pack' ),
454
 
455
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:138
456
  __( 'Video SEO Module', 'all-in-one-seo-pack' ),
457
 
458
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:142
459
  __( 'Greater control over display settings', 'all-in-one-seo-pack' ),
460
 
461
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:145
462
  // Reference: src/vue/pages/setup-wizard/views/Success.vue:152
463
  __( 'SEO for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
464
 
465
  // Reference: src/vue/pages/dashboard/views/Main.vue:208
466
  __( 'Social meta for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
467
 
468
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:143
469
  __( 'Ad free (no banner adverts)', 'all-in-one-seo-pack' ),
470
 
471
  // Reference: src/vue/pages/dashboard/views/Main.vue:211
515
  __( 'Improve local SEO rankings with schema for business address, open hours, contact, and more.', 'all-in-one-seo-pack' ),
516
 
517
  // Reference: src/vue/pages/social-networks/views/Main.vue:24
 
518
  __( 'Social Networks', 'all-in-one-seo-pack' ),
519
 
520
  // Reference: src/vue/pages/dashboard/views/Main.vue:229
521
  __( 'Setup Open Graph for Facebook, Twitter, etc. to show the right content / thumbnail preview.', 'all-in-one-seo-pack' ),
522
 
523
+ // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:124
524
  __( 'Tools', 'all-in-one-seo-pack' ),
525
 
526
  // Reference: src/vue/pages/dashboard/views/Main.vue:231
527
  __( 'Fine-tune your site with our powerful tools including Robots.txt editor, import/export and more.', 'all-in-one-seo-pack' ),
528
 
529
+ // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:123
 
 
530
  __( 'Sitemaps', 'all-in-one-seo-pack' ),
531
 
532
  // Reference: src/vue/pages/dashboard/views/Main.vue:233
543
  // Reference: src/vue/components/common/core/Notifications.vue:95
544
  __( 'Dismiss All', 'all-in-one-seo-pack' ),
545
 
546
+ // Reference: src/vue/pages/settings/views/GeneralSettings.vue:60
547
  __( 'Relaunch Setup Wizard', 'all-in-one-seo-pack' ),
548
 
549
  // Reference: src/vue/pages/dashboard/views/Main.vue:247
550
  __( 'You have %1$s more notifications', 'all-in-one-seo-pack' ),
551
 
552
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:432
553
+ __( 'Twitter Card Settings', 'all-in-one-seo-pack' ),
 
554
 
555
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:434
556
  /* Translators: 1 - The plugin name ("All in One SEO"). */
557
+ __( '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' ),
 
 
 
 
 
 
558
 
559
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:435
560
+ __( 'Enable Twitter Card', 'all-in-one-seo-pack' ),
561
 
562
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:436
563
+ __( 'Default Card Type', 'all-in-one-seo-pack' ),
564
 
565
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:235
566
+ __( 'Summary', 'all-in-one-seo-pack' ),
567
 
568
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:236
569
+ __( 'Summary with Large Image', 'all-in-one-seo-pack' ),
570
 
571
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:439
572
  __( 'Default Post Image Source', 'all-in-one-seo-pack' ),
574
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:440
575
  __( 'Default Term Image Source', 'all-in-one-seo-pack' ),
576
 
577
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:242
578
  __( 'Width', 'all-in-one-seo-pack' ),
579
 
580
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:243
581
  __( 'Height', 'all-in-one-seo-pack' ),
582
 
583
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:443
586
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:444
587
  __( 'Term Custom Field Name', 'all-in-one-seo-pack' ),
588
 
589
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:445
590
+ __( 'Default Post Twitter Image', 'all-in-one-seo-pack' ),
591
 
592
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:446
593
+ __( 'Default Term Twitter Image', 'all-in-one-seo-pack' ),
594
 
595
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:248
596
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:434
597
+ __( 'Upload or Select Image', 'all-in-one-seo-pack' ),
598
 
599
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:249
600
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:435
601
+ __( 'Paste your image URL or select a new image', 'all-in-one-seo-pack' ),
602
 
603
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:224
604
+ __( 'Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and GIF formats only.', 'all-in-one-seo-pack' ),
605
 
606
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:225
607
+ __( 'Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and GIF formats only.', 'all-in-one-seo-pack' ),
 
608
 
609
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:451
610
+ __( 'Home Page Settings', 'all-in-one-seo-pack' ),
611
 
612
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:452
613
+ __( 'Home Page Image', 'all-in-one-seo-pack' ),
614
 
615
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:149
616
+ __( 'Home Page Title', 'all-in-one-seo-pack' ),
617
 
618
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:454
619
  __( 'Use the home page title', 'all-in-one-seo-pack' ),
620
 
 
 
 
621
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:455
622
  __( 'Click on the tags below to insert variables into your home page title.', 'all-in-one-seo-pack' ),
623
 
630
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:458
631
  __( 'Click on the tags below to insert variables into your description.', 'all-in-one-seo-pack' ),
632
 
633
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:251
634
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:437
635
+ __( 'Remove', 'all-in-one-seo-pack' ),
636
 
637
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:460
638
+ __( 'Show Twitter Author', 'all-in-one-seo-pack' ),
639
 
640
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:462
641
+ /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
642
+ __( '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' ),
643
 
644
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:463
645
+ __( 'Card Type', 'all-in-one-seo-pack' ),
646
 
647
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:464
648
+ __( 'Additional Data', 'all-in-one-seo-pack' ),
649
 
650
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:465
651
+ __( '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' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
652
 
653
  // Reference: src/vue/pages/social-networks/views/Twitter.vue:466
654
  __( 'Default Term Image Source is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
655
 
656
+ // Reference: src/vue/pages/social-networks/views/Pinterest.vue:46
657
+ __( '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' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
658
 
659
+ // Reference: src/vue/pages/social-networks/views/Pinterest.vue:47
660
+ __( 'Learn how to get your Pinterest Verification Code', 'all-in-one-seo-pack' ),
661
 
662
+ // Reference: src/vue/pages/social-networks/views/Pinterest.vue:48
663
+ __( 'If you have already confirmed your website with Pinterest, you can skip the step below.', 'all-in-one-seo-pack' ),
664
 
665
+ // Reference: src/vue/pages/social-networks/views/Pinterest.vue:49
666
+ __( 'Pinterest Verification Code', '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/mixins/VideoSitemap.js:11
673
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:418
674
  __( 'Enable Sitemap', 'all-in-one-seo-pack' ),
675
 
676
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:419
677
  __( 'Sitemap Settings', 'all-in-one-seo-pack' ),
678
 
679
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:420
 
680
  __( 'Enable Sitemap Indexes', 'all-in-one-seo-pack' ),
681
 
682
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:421
 
683
  __( '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' ),
684
 
685
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:422
686
  __( 'Links Per Sitemap', 'all-in-one-seo-pack' ),
687
 
 
688
  // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:13
689
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:423
690
  __( 'Noindexed content will not be displayed in your sitemap.', 'all-in-one-seo-pack' ),
691
 
 
692
  // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:14
693
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:424
694
  __( 'Do you get a blank sitemap or 404 error?', 'all-in-one-seo-pack' ),
695
 
696
  // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:425
697
  __( 'Open Sitemap', 'all-in-one-seo-pack' ),
698
 
699
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:426
700
  __( 'Allows you to specify the maximum number of posts in a sitemap (up to 50,000).', 'all-in-one-seo-pack' ),
701
 
702
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:427
703
  __( 'Automatically Ping Search Engines', 'all-in-one-seo-pack' ),
704
 
705
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:428
 
706
  __( 'Post Types', 'all-in-one-seo-pack' ),
707
 
708
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:430
709
  __( 'Date Archive Sitemap', 'all-in-one-seo-pack' ),
710
 
711
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:431
712
  __( 'Include Date Archives in your sitemap.', 'all-in-one-seo-pack' ),
713
 
714
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:432
715
  __( 'Author Sitemap', 'all-in-one-seo-pack' ),
716
 
717
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:433
718
  __( 'Include Author Archives in your sitemap.', 'all-in-one-seo-pack' ),
719
 
720
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:434
 
721
  __( 'Include All Post Types', 'all-in-one-seo-pack' ),
722
 
723
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:435
724
  __( 'Select which Post Types appear in your sitemap.', 'all-in-one-seo-pack' ),
725
 
726
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:436
 
727
  __( 'Include All Taxonomies', 'all-in-one-seo-pack' ),
728
 
729
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:437
730
  __( 'Select which Taxonomies appear in your sitemap.', 'all-in-one-seo-pack' ),
731
 
732
  // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:438
735
  // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:439
736
  __( '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' ),
737
 
738
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:443
 
 
 
 
 
 
739
  __( 'Any posts that are assigned to these terms will also be excluded from your sitemap.', 'all-in-one-seo-pack' ),
740
 
741
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:444
742
  __( 'Priority Score', 'all-in-one-seo-pack' ),
743
 
744
  // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:445
762
  // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:451
763
  __( 'Dynamically creates the XML Sitemap instead of using a static file.', 'all-in-one-seo-pack' ),
764
 
765
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:452
766
  __( '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' ),
767
 
768
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:453
769
  __( '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' ),
770
 
771
+ // Reference: src/vue/pages/connect/views/Main.vue:30
772
+ __( 'Connecting...', 'all-in-one-seo-pack' ),
773
 
774
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:90
775
+ __( 'Block Bad Bots using HTTP', 'all-in-one-seo-pack' ),
776
 
777
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:91
778
+ __( 'Block Referral Spam using HTTP', 'all-in-one-seo-pack' ),
779
 
780
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:92
781
+ __( 'Track Blocked Bots', 'all-in-one-seo-pack' ),
782
 
783
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:93
784
+ __( 'Use Custom Blocklists', 'all-in-one-seo-pack' ),
 
785
 
786
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:94
787
+ __( 'User Agent Blocklist', 'all-in-one-seo-pack' ),
788
 
789
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:95
790
+ __( 'Referer Blocklist', 'all-in-one-seo-pack' ),
791
 
792
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:96
793
+ __( 'Blocked Bots Log', 'all-in-one-seo-pack' ),
794
 
795
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:98
796
+ /* Translators: 1 - The location of the log file. */
797
+ __( 'The log for the blocked bots is located here: %1$s', 'all-in-one-seo-pack' ),
798
 
799
+ // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:42
800
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
801
+ __( 'Welcome to the %1$s Setup Wizard!', 'all-in-one-seo-pack' ),
802
 
803
+ // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:43
804
+ __( '%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' ),
805
 
806
+ // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:44
807
+ __( 'Let\'s Get Started', 'all-in-one-seo-pack' ),
808
 
809
+ // Reference: src/vue/pages/setup-wizard/views/Welcome.vue:45
810
+ __( 'Go back to the Dashboard', 'all-in-one-seo-pack' ),
811
 
812
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:141
813
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:148
814
+ __( 'Video and News Sitemaps', 'all-in-one-seo-pack' ),
815
 
816
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:142
817
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:149
818
+ __( 'Image SEO Optimization', 'all-in-one-seo-pack' ),
819
 
820
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:143
821
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:150
822
+ __( 'Local Business SEO', 'all-in-one-seo-pack' ),
823
 
824
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:144
825
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:151
826
+ __( 'Advanced WooCommerce', 'all-in-one-seo-pack' ),
827
 
828
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:146
829
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:153
830
+ __( 'And many more...', 'all-in-one-seo-pack' ),
831
 
832
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:147
833
+ __( 'Activate All Features', 'all-in-one-seo-pack' ),
834
 
835
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:148
836
+ __( 'Deactivate All Features', 'all-in-one-seo-pack' ),
837
 
838
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:149
839
+ __( 'Search for Features...', 'all-in-one-seo-pack' ),
840
 
841
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:151
842
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
843
+ __( 'Upgrade %1$s to Pro and Unlock all Features!', 'all-in-one-seo-pack' ),
844
 
845
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:152
846
+ __( 'Upgrade to Pro and Unlock All Features', 'all-in-one-seo-pack' ),
847
 
848
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:153
849
+ __( 'A valid license key is required in order to use our addons.', 'all-in-one-seo-pack' ),
850
 
851
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:154
852
+ __( 'Enter License Key', 'all-in-one-seo-pack' ),
853
 
854
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:155
855
+ __( 'Purchase License', 'all-in-one-seo-pack' ),
856
 
857
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:159
858
+ __( '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' ),
859
 
860
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:10
861
+ __( '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' ),
862
 
863
+ // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:10
864
+ __( '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' ),
 
865
 
866
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:171
867
+ __( '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' ),
868
 
869
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:423
870
+ __( 'Person or Organization', 'all-in-one-seo-pack' ),
871
 
872
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:427
873
+ __( 'Choose a Person', 'all-in-one-seo-pack' ),
 
874
 
875
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:424
876
+ __( 'Person', 'all-in-one-seo-pack' ),
 
877
 
878
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:425
879
+ __( 'Organization', 'all-in-one-seo-pack' ),
880
 
881
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:426
882
+ __( 'Choose whether the site represents a person or an organization.', 'all-in-one-seo-pack' ),
 
883
 
884
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:428
885
+ __( 'Name', 'all-in-one-seo-pack' ),
886
 
887
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:322
888
+ __( 'Organization Name', 'all-in-one-seo-pack' ),
889
 
890
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:429
891
+ __( 'Phone Number', 'all-in-one-seo-pack' ),
 
892
 
893
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:430
894
+ __( 'Choose a Contact Type', 'all-in-one-seo-pack' ),
 
895
 
896
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:431
897
+ __( 'Contact Type', 'all-in-one-seo-pack' ),
 
898
 
899
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:432
900
+ __( 'Select which team or department the phone number belongs to.', 'all-in-one-seo-pack' ),
901
 
902
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:433
903
+ __( 'Logo', 'all-in-one-seo-pack' ),
 
904
 
905
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:436
906
+ __( 'Minimum size: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or WEBP format.', 'all-in-one-seo-pack' ),
 
907
 
908
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:332
909
+ __( 'Default Social Share Image', 'all-in-one-seo-pack' ),
 
910
 
911
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:333
912
+ __( 'Your Social Profiles', 'all-in-one-seo-pack' ),
913
 
914
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:451
915
+ __( 'Manually Enter Person', 'all-in-one-seo-pack' ),
916
 
917
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:280
918
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:294
919
+ __( 'Opening Hours Settings', 'all-in-one-seo-pack' ),
920
 
921
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:50
922
+ __( 'Show Opening Hours', 'all-in-one-seo-pack' ),
923
 
924
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:282
925
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:296
926
+ __( 'Display Opening Hours', 'all-in-one-seo-pack' ),
927
 
928
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:283
929
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:297
930
+ __( 'Labels', 'all-in-one-seo-pack' ),
931
 
932
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:284
933
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:298
934
+ __( 'Closed label', 'all-in-one-seo-pack' ),
935
 
936
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:285
937
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:299
938
+ __( 'Text to display when \'Closed\' setting is checked', 'all-in-one-seo-pack' ),
939
 
940
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:286
941
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:300
942
+ __( 'Open 24h label', 'all-in-one-seo-pack' ),
943
 
944
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:287
945
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:301
946
+ __( 'Text to display when \'Open 24h\' setting is checked', 'all-in-one-seo-pack' ),
947
 
948
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:288
949
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:302
950
+ __( 'Open 24/7', 'all-in-one-seo-pack' ),
951
 
952
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:289
953
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:303
954
+ __( 'Use 24h format', 'all-in-one-seo-pack' ),
 
955
 
956
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:290
957
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:304
958
+ __( 'Timezone', 'all-in-one-seo-pack' ),
959
 
960
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:291
961
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:305
962
+ __( 'Select your timezone:', 'all-in-one-seo-pack' ),
963
 
964
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:293
965
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:307
966
+ __( 'Monday', 'all-in-one-seo-pack' ),
967
 
968
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:294
969
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:308
970
+ __( 'Tuesday', 'all-in-one-seo-pack' ),
971
 
972
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:295
973
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:309
974
+ __( 'Wednesday', 'all-in-one-seo-pack' ),
975
 
976
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:296
977
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:310
978
+ __( 'Thursday', 'all-in-one-seo-pack' ),
979
 
980
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:297
981
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:311
982
+ __( 'Friday', 'all-in-one-seo-pack' ),
983
 
984
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:298
985
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:312
986
+ __( 'Saturday', 'all-in-one-seo-pack' ),
987
 
988
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:299
989
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:313
990
+ __( 'Sunday', 'all-in-one-seo-pack' ),
991
 
992
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:300
993
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:314
994
+ __( 'Open 24h', 'all-in-one-seo-pack' ),
995
 
996
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:301
997
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:315
998
+ __( 'Closed', 'all-in-one-seo-pack' ),
999
 
1000
+ // Reference: src/vue/pages/social-networks/views/SocialProfiles.vue:26
1001
+ __( 'To let search engines know which profiles are associated with this site, enter them below:', 'all-in-one-seo-pack' ),
1002
 
1003
+ // Reference: src/vue/pages/local-seo/views/Locations.vue:31
1004
+ __( 'Locations Settings', 'all-in-one-seo-pack' ),
1005
 
1006
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:68
1007
+ __( 'WP Roles (Editor, Author)', 'all-in-one-seo-pack' ),
1008
 
1009
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:69
1010
+ __( 'SEO Manager Role', 'all-in-one-seo-pack' ),
1011
 
1012
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:70
1013
+ __( 'SEO Editor Role', 'all-in-one-seo-pack' ),
1014
 
1015
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:71
1016
+ __( 'Default settings that just work', 'all-in-one-seo-pack' ),
1017
 
1018
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:72
1019
+ __( 'Granular controls per role', 'all-in-one-seo-pack' ),
1020
 
1021
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:73
1022
+ __( 'Upgrade to Pro and Unlock Access Control', 'all-in-one-seo-pack' ),
1023
 
1024
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:74
1025
+ __( 'Access Control is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
1026
 
1027
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:51
1028
+ __( 'Select your timezone', 'all-in-one-seo-pack' ),
1029
 
1030
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:52
1031
+ __( 'Business Type', 'all-in-one-seo-pack' ),
1032
 
1033
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:53
1034
+ __( 'Business Contact Info', 'all-in-one-seo-pack' ),
1035
 
1036
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:54
1037
+ __( 'Payment Info', 'all-in-one-seo-pack' ),
1038
 
1039
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:55
1040
+ __( 'Business Image', 'all-in-one-seo-pack' ),
1041
 
1042
+ // Reference: src/vue/mixins/Wizard.js:6
1043
+ __( 'Skip this Step', 'all-in-one-seo-pack' ),
1044
 
1045
+ // Reference: src/vue/mixins/Wizard.js:7
1046
+ __( 'Go Back', 'all-in-one-seo-pack' ),
 
1047
 
1048
+ // Reference: src/vue/mixins/Wizard.js:8
1049
+ __( 'Save and Continue', 'all-in-one-seo-pack' ),
1050
 
1051
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:103
1052
+ __( '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' ),
1053
 
1054
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:104
1055
+ __( 'Multiple Locations', 'all-in-one-seo-pack' ),
 
1056
 
1057
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:105
1058
+ __( 'Display Location Info', 'all-in-one-seo-pack' ),
1059
 
1060
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:106
1061
+ __( 'Business Info', 'all-in-one-seo-pack' ),
1062
 
1063
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:107
1064
+ __( 'Business Name', 'all-in-one-seo-pack' ),
1065
 
1066
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:109
1067
+ __( 'URLs', 'all-in-one-seo-pack' ),
1068
 
1069
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:110
1070
+ __( 'Business Address', 'all-in-one-seo-pack' ),
1071
 
1072
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:112
1073
+ __( 'Business IDs', 'all-in-one-seo-pack' ),
1074
 
1075
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:114
1076
+ __( 'Area Served', 'all-in-one-seo-pack' ),
 
1077
 
1078
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
1079
+ __( 'Upgrade to Pro and Unlock Local SEO', 'all-in-one-seo-pack' ),
1080
 
1081
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:303
1082
+ __( 'Local SEO is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
1083
 
1084
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:138
1085
+ __( 'default', 'all-in-one-seo-pack' ),
1086
 
1087
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:125
1088
+ __( 'Animal Shelter', 'all-in-one-seo-pack' ),
1089
 
1090
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:126
1091
+ __( 'Archive Organization', 'all-in-one-seo-pack' ),
1092
 
1093
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:127
1094
+ __( 'Automotive Business', 'all-in-one-seo-pack' ),
1095
 
1096
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:128
1097
+ __( 'Childcare', 'all-in-one-seo-pack' ),
1098
 
1099
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:129
1100
+ __( 'Dentist', 'all-in-one-seo-pack' ),
1101
 
1102
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:130
1103
+ __( 'Dry Cleaning/Laundry', 'all-in-one-seo-pack' ),
1104
 
1105
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:131
1106
+ __( 'Emergency Service', 'all-in-one-seo-pack' ),
1107
 
1108
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:132
1109
+ __( 'Employment Agency', 'all-in-one-seo-pack' ),
1110
 
1111
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:133
1112
+ __( 'Entertainment Business', 'all-in-one-seo-pack' ),
1113
 
1114
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:134
1115
+ __( 'Financial Service', 'all-in-one-seo-pack' ),
1116
 
1117
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:135
1118
+ __( 'Food Establishment', 'all-in-one-seo-pack' ),
1119
 
1120
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:136
1121
+ __( 'Government Office', 'all-in-one-seo-pack' ),
1122
 
1123
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:137
1124
+ __( 'Health & Beauty Business', 'all-in-one-seo-pack' ),
1125
 
1126
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:138
1127
+ __( 'Home & Construction Business', 'all-in-one-seo-pack' ),
 
1128
 
1129
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:139
1130
+ __( 'Internet Cafe', 'all-in-one-seo-pack' ),
1131
 
1132
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:140
1133
+ __( 'Legal Service', 'all-in-one-seo-pack' ),
1134
 
1135
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:141
1136
+ __( 'Library', 'all-in-one-seo-pack' ),
1137
 
1138
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:142
1139
+ __( 'Lodging Business', 'all-in-one-seo-pack' ),
1140
 
1141
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:143
1142
+ __( 'Medical Business', 'all-in-one-seo-pack' ),
1143
 
1144
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:144
1145
+ __( 'Radio Station', 'all-in-one-seo-pack' ),
1146
 
1147
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:145
1148
+ __( 'Real Estate Agent', 'all-in-one-seo-pack' ),
1149
 
1150
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:146
1151
+ __( 'Recycling Center', 'all-in-one-seo-pack' ),
1152
+
1153
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:147
1154
+ __( 'Self Storage', 'all-in-one-seo-pack' ),
1155
+
1156
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:148
1157
+ __( 'Shopping Center', 'all-in-one-seo-pack' ),
1158
+
1159
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:149
1160
+ __( 'Sports Activity Location', 'all-in-one-seo-pack' ),
1161
+
1162
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:150
1163
+ __( 'Store', 'all-in-one-seo-pack' ),
1164
+
1165
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:151
1166
+ __( 'Television Station', 'all-in-one-seo-pack' ),
1167
+
1168
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:152
1169
+ __( 'Tourist Information Center', 'all-in-one-seo-pack' ),
1170
+
1171
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:153
1172
+ __( 'Travel Agency', 'all-in-one-seo-pack' ),
1173
+
1174
+ // Reference: src/vue/mixins/Image.js:119
1175
+ __( 'Choose Image', 'all-in-one-seo-pack' ),
1176
+
1177
+ // Reference: src/vue/mixins/Image.js:55
1178
+ __( 'Default Image (Set Below)', 'all-in-one-seo-pack' ),
1179
+
1180
+ // Reference: src/vue/mixins/Image.js:56
1181
+ __( 'Featured Image', 'all-in-one-seo-pack' ),
1182
+
1183
+ // Reference: src/vue/mixins/Image.js:57
1184
+ __( 'Attached Image', 'all-in-one-seo-pack' ),
1185
+
1186
+ // Reference: src/vue/mixins/Image.js:58
1187
+ __( 'First Image in Content', 'all-in-one-seo-pack' ),
1188
+
1189
+ // Reference: src/vue/mixins/Image.js:59
1190
+ __( 'Image from Custom Field', 'all-in-one-seo-pack' ),
1191
+
1192
+ // Reference: src/vue/mixins/Image.js:60
1193
+ __( 'Post Author Image', 'all-in-one-seo-pack' ),
1194
+
1195
+ // Reference: src/vue/mixins/Image.js:61
1196
+ __( 'First Available Image', 'all-in-one-seo-pack' ),
1197
+
1198
+ // Reference: src/vue/mixins/Image.js:68
1199
+ __( 'Default Image Source (Set in Social Networks)', 'all-in-one-seo-pack' ),
1200
+
1201
+ // Reference: src/vue/mixins/Image.js:71
1202
+ __( 'Custom Image', 'all-in-one-seo-pack' ),
1203
+
1204
+ // Reference: src/vue/components/lite/local-business/Name.vue:16
1205
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:120
1206
+ __( 'name', 'all-in-one-seo-pack' ),
1207
+
1208
+ // Reference: src/vue/components/lite/local-business/Name.vue:17
1209
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:121
1210
+ __( 'Your name or company name.', 'all-in-one-seo-pack' ),
1211
+
1212
+ // Reference: src/vue/components/lite/local-business/Urls.vue:32
1213
+ __( 'Website URL:', 'all-in-one-seo-pack' ),
1214
+
1215
+ // Reference: src/vue/components/lite/local-business/Urls.vue:33
1216
+ __( 'About Page URL:', 'all-in-one-seo-pack' ),
1217
+
1218
+ // Reference: src/vue/components/lite/local-business/Urls.vue:34
1219
+ __( 'Contact Page URL:', 'all-in-one-seo-pack' ),
1220
+
1221
+ // Reference: src/vue/mixins/SeoSiteScore.js:10
1222
+ __( 'to analyze a competitor site.', 'all-in-one-seo-pack' ),
1223
+
1224
+ // Reference: src/vue/mixins/SeoSiteScore.js:11
1225
+ __( 'A valid license key is required', 'all-in-one-seo-pack' ),
1226
+
1227
+ // Reference: src/vue/mixins/TruSeoScore.js:8
1228
+ __( 'We\'ve got some<br>work to do!', 'all-in-one-seo-pack' ),
1229
+
1230
+ // Reference: src/vue/mixins/TruSeoScore.js:9
1231
+ __( 'Needs<br>Improvement!', 'all-in-one-seo-pack' ),
1232
+
1233
+ // Reference: src/vue/mixins/TruSeoScore.js:10
1234
+ __( 'Very Good!', 'all-in-one-seo-pack' ),
1235
+
1236
+ // Reference: src/vue/mixins/TruSeoScore.js:11
1237
+ __( 'Excellent!', 'all-in-one-seo-pack' ),
1238
+
1239
+ // Reference: src/vue/mixins/SeoSiteScore.js:9
1240
+ __( 'to see your Site Score.', 'all-in-one-seo-pack' ),
1241
+
1242
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:63
1243
+ __( 'Critical Issues', 'all-in-one-seo-pack' ),
1244
+
1245
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:65
1246
+ __( 'Recommended Improvements', 'all-in-one-seo-pack' ),
1247
+
1248
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:66
1249
+ __( 'Good Results', 'all-in-one-seo-pack' ),
1250
+
1251
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:67
1252
+ __( 'Complete Site Audit Checklist', 'all-in-one-seo-pack' ),
1253
+
1254
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:30
1255
+ __( 'All Good!', 'all-in-one-seo-pack' ),
1256
+
1257
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:29
1258
+ __( 'Errors', 'all-in-one-seo-pack' ),
1259
+
1260
+ // Reference: src/vue/mixins/MaxCounts.js:6
1261
+ /* Translators: 1 - A number, 2 - A number. */
1262
+ __( '%1$s out of %2$s max recommended characters.', 'all-in-one-seo-pack' ),
1263
+
1264
+ // Reference: src/vue/mixins/License.js:11
1265
+ __( 'Your license has been disabled.', 'all-in-one-seo-pack' ),
1266
+
1267
+ // Reference: src/vue/mixins/License.js:15
1268
+ __( 'Your license key is invalid.', 'all-in-one-seo-pack' ),
1269
+
1270
+ // Reference: src/vue/mixins/License.js:4
1271
+ __( 'You have not yet added a license key.', 'all-in-one-seo-pack' ),
1272
+
1273
+ // Reference: src/vue/mixins/License.js:7
1274
+ __( 'Your license has expired.', 'all-in-one-seo-pack' ),
1275
+
1276
+ // Reference: src/vue/mixins/Notifications.js:6
1277
+ __( 'Notifications', 'all-in-one-seo-pack' ),
1278
+
1279
+ // Reference: src/vue/mixins/Notifications.js:7
1280
+ __( 'New Notifications', 'all-in-one-seo-pack' ),
1281
+
1282
+ // Reference: src/vue/mixins/Notifications.js:8
1283
+ __( 'Active Notifications', 'all-in-one-seo-pack' ),
1284
+
1285
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:14
1286
+ /* Translators: 1 - The plugin name ("All in One SEO") */
1287
+ __( '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' ),
1288
+
1289
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:15
1290
+ __( 'Access Control Settings', 'all-in-one-seo-pack' ),
1291
+
1292
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:16
1293
+ __( 'Administrator', 'all-in-one-seo-pack' ),
1294
+
1295
+ // Reference: src/vue/components/common/core/RobotsMeta.vue:100
1296
+ __( 'Use Default Settings', 'all-in-one-seo-pack' ),
1297
+
1298
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:18
1299
+ __( 'Editor', 'all-in-one-seo-pack' ),
1300
+
1301
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:19
1302
+ __( 'Author', 'all-in-one-seo-pack' ),
1303
+
1304
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:20
1305
+ __( 'SEO Manager', 'all-in-one-seo-pack' ),
1306
+
1307
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:21
1308
+ __( 'SEO Editor', 'all-in-one-seo-pack' ),
1309
+
1310
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:23
1311
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
1312
+ __( 'By default Admins have access to %1$sall SEO site settings%2$s', 'all-in-one-seo-pack' ),
1313
+
1314
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:25
1315
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
1316
+ __( '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' ),
1317
+
1318
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:27
1319
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
1320
+ __( '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' ),
1321
+
1322
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:29
1323
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
1324
+ __( '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' ),
1325
+
1326
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:31
1327
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
1328
+ __( 'By default SEO Editors have access to %1$sSEO settings for individual pages and posts.%2$s', 'all-in-one-seo-pack' ),
1329
+
1330
+ // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:67
1331
+ __( 'Complete SEO Checklist', 'all-in-one-seo-pack' ),
1332
+
1333
+ // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:68
1334
+ __( 'Refresh Results', 'all-in-one-seo-pack' ),
1335
+
1336
+ // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:80
1337
+ __( 'All Items', 'all-in-one-seo-pack' ),
1338
 
1339
  // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:109
1340
  __( 'Social Meta (Open Graph Markup)', 'all-in-one-seo-pack' ),
1372
  // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:156
1373
  __( 'Submit Your Latest News Stories to Google News (Business & Agency tier only)', 'all-in-one-seo-pack' ),
1374
 
1375
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:160
1376
+ __( 'Image SEO', 'all-in-one-seo-pack' ),
1377
+
1378
  // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:162
1379
  __( 'Not Available', 'all-in-one-seo-pack' ),
1380
 
1393
  // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:176
1394
  __( 'Posts, Pages, Categories, Tags + Breadcrumb Navigation', 'all-in-one-seo-pack' ),
1395
 
1396
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:180
1397
  __( 'Customer Support', 'all-in-one-seo-pack' ),
1398
 
1399
  // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:182
1413
  // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:76
1414
  __( 'Features:', 'all-in-one-seo-pack' ),
1415
 
1416
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:79
1417
  __( 'Upgrade to Pro to Unlock Powerful SEO Features', 'all-in-one-seo-pack' ),
1418
 
1419
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:81
1420
+ /* Translators: 1 - Plugin name ("All in One SEO"), 2 - Plugin short name ("AIOSEO"). */
1421
  __( '%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' ),
1422
 
1423
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:83
1424
  /* Translators: 1 - "Pro". */
1425
  __( 'Upgrade to %1$s Today', 'all-in-one-seo-pack' ),
1426
 
1430
  // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:98
1431
  __( 'Search Engine Optimization (SEO)', 'all-in-one-seo-pack' ),
1432
 
1433
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:678
1434
+ __( 'General Facebook Settings', 'all-in-one-seo-pack' ),
1435
 
1436
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:679
1437
+ __( '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' ),
1438
 
1439
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:680
1440
+ __( 'Enable Open Graph Markup', 'all-in-one-seo-pack' ),
1441
 
1442
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:687
1443
+ __( 'Default Post Facebook Image', 'all-in-one-seo-pack' ),
1444
 
1445
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:688
1446
+ __( 'Default Term Facebook Image', 'all-in-one-seo-pack' ),
1447
 
1448
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:691
1449
+ __( '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' ),
1450
 
1451
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:693
1452
+ __( 'The Title of the Page or Site you are Sharing', 'all-in-one-seo-pack' ),
1453
 
1454
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:695
1455
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
1456
+ __( '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' ),
1457
 
1458
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:696
1459
+ __( 'Image', 'all-in-one-seo-pack' ),
 
1460
 
1461
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:697
1462
+ __( 'Site Name', 'all-in-one-seo-pack' ),
1463
 
1464
+ // Reference: src/vue/pages/post-settings/views/General.vue:273
1465
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:40
1466
+ __( 'Title', 'all-in-one-seo-pack' ),
1467
+
1468
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:700
1469
+ __( 'Click on the tags below to insert variables into your site name.', 'all-in-one-seo-pack' ),
1470
+
1471
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:707
1472
+ __( 'Facebook Admin ID', 'all-in-one-seo-pack' ),
1473
+
1474
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:708
1475
+ __( 'Facebook App ID', 'all-in-one-seo-pack' ),
1476
+
1477
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:709
1478
+ __( 'Facebook Author URL', 'all-in-one-seo-pack' ),
1479
+
1480
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:710
1481
+ __( 'Enter your Facebook Admin ID here. You can enter multiple Facebook Admin IDs by separating them with a comma.', 'all-in-one-seo-pack' ),
1482
+
1483
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:711
1484
+ __( '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' ),
1485
+
1486
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:712
1487
+ __( 'Will be overriden if the Facebook author URL is present in the individual User Profile.', 'all-in-one-seo-pack' ),
1488
+
1489
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:713
1490
+ __( 'How to get your Facebook Admin ID', 'all-in-one-seo-pack' ),
1491
+
1492
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:714
1493
+ __( 'How to get your Facebook App ID', 'all-in-one-seo-pack' ),
1494
+
1495
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:715
1496
+ __( 'How to get your Facebook Author URL', 'all-in-one-seo-pack' ),
1497
+
1498
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:716
1499
+ __( 'Show Facebook Author', 'all-in-one-seo-pack' ),
1500
+
1501
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:717
1502
+ __( 'Default Post Type Object Types', 'all-in-one-seo-pack' ),
1503
+
1504
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:718
1505
+ __( 'Default Taxonomy Object Types', 'all-in-one-seo-pack' ),
1506
+
1507
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:719
1508
+ __( 'Default Taxonomy Object Types are only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
1509
+
1510
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:721
1511
+ __( 'Automatically Generate Article Tags', 'all-in-one-seo-pack' ),
1512
+
1513
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:722
1514
+ __( 'Use Keywords in Article Tags', 'all-in-one-seo-pack' ),
1515
+
1516
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:723
1517
+ __( 'Use Categories in Article Tags', 'all-in-one-seo-pack' ),
1518
+
1519
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:724
1520
+ __( 'Use Post Tags in Article Tags', 'all-in-one-seo-pack' ),
1521
+
1522
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:244
1523
+ __( 'Object Type', 'all-in-one-seo-pack' ),
1524
+
1525
+ // Reference: src/vue/pages/about/views/Main.vue:23
1526
+ __( 'About', 'all-in-one-seo-pack' ),
1527
+
1528
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:129
1529
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string. */
1530
+ __( 'Get %1$s %2$s and Unlock all the Powerful Features', 'all-in-one-seo-pack' ),
1531
+
1532
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:131
1533
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string. */
1534
+ __( 'Get %1$s %2$s and Unlock all the Powerful Features.', 'all-in-one-seo-pack' ),
1535
+
1536
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:140
1537
+ __( 'Social Meta for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
1538
+
1539
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:147
1540
  __( 'Video Tutorials', 'all-in-one-seo-pack' ),
1541
 
1542
  // Reference: src/vue/pages/about/views/GettingStarted.vue:148
1572
  // Reference: src/vue/pages/about/views/GettingStarted.vue:181
1573
  __( 'Optimizing your Content Headings', 'all-in-one-seo-pack' ),
1574
 
1575
+ // Reference: src/vue/pages/settings/views/Advanced.vue:269
1576
+ __( 'TruSEO Score & Content', 'all-in-one-seo-pack' ),
1577
 
1578
+ // Reference: src/vue/pages/settings/views/Advanced.vue:270
1579
+ __( 'Enable our TruSEO score to help you optimize your content for maximum traffic.', 'all-in-one-seo-pack' ),
1580
 
1581
+ // Reference: src/vue/pages/settings/views/Advanced.vue:272
1582
+ __( 'Post Type Columns', 'all-in-one-seo-pack' ),
1583
 
1584
+ // Reference: src/vue/pages/settings/views/Advanced.vue:275
1585
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
1586
+ __( 'Select which Post Types you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
1587
 
1588
+ // Reference: src/vue/pages/settings/views/Advanced.vue:276
1589
+ __( 'Usage Tracking', 'all-in-one-seo-pack' ),
1590
 
1591
+ // Reference: src/vue/pages/settings/views/Advanced.vue:277
1592
+ __( 'Admin Bar Menu', 'all-in-one-seo-pack' ),
1593
 
1594
+ // Reference: src/vue/pages/settings/views/Advanced.vue:279
1595
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
1596
+ __( 'This adds %1$s to the admin toolbar for easy access to your SEO settings.', 'all-in-one-seo-pack' ),
1597
 
1598
+ // Reference: src/vue/pages/settings/views/Advanced.vue:280
1599
+ __( 'Dashboard Widget', 'all-in-one-seo-pack' ),
1600
 
1601
+ // Reference: src/vue/pages/settings/views/Advanced.vue:281
1602
+ __( 'This displays an SEO News widget on the dashboard.', 'all-in-one-seo-pack' ),
 
1603
 
1604
+ // Reference: src/vue/pages/settings/views/Advanced.vue:282
1605
+ __( 'Announcements', 'all-in-one-seo-pack' ),
1606
 
1607
+ // Reference: src/vue/pages/settings/views/Advanced.vue:283
1608
+ __( 'This allows you to hide plugin announcements and update details.', 'all-in-one-seo-pack' ),
1609
 
1610
+ // Reference: src/vue/pages/settings/views/Advanced.vue:284
1611
+ __( 'Automatic Updates', 'all-in-one-seo-pack' ),
1612
 
1613
+ // Reference: src/vue/pages/settings/views/Advanced.vue:285
1614
+ __( 'All (recommended)', 'all-in-one-seo-pack' ),
1615
 
1616
+ // Reference: src/vue/pages/settings/views/Advanced.vue:286
1617
+ __( 'You are getting the latest features, bugfixes, and security updates as they are released.', 'all-in-one-seo-pack' ),
1618
 
1619
+ // Reference: src/vue/pages/settings/views/Advanced.vue:287
1620
+ __( 'Minor Only', 'all-in-one-seo-pack' ),
1621
 
1622
+ // Reference: src/vue/pages/settings/views/Advanced.vue:288
1623
+ __( 'You are getting bugfixes and security updates, but not major features.', 'all-in-one-seo-pack' ),
1624
 
1625
+ // Reference: src/vue/pages/settings/views/Advanced.vue:290
1626
+ __( 'You will need to manually update everything.', 'all-in-one-seo-pack' ),
1627
 
1628
+ // Reference: src/vue/pages/settings/views/Advanced.vue:291
1629
+ __( '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' ),
1630
 
1631
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:194
1632
+ __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'all-in-one-seo-pack' ),
1633
 
1634
+ // Reference: src/vue/pages/settings/views/Advanced.vue:295
1635
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
1636
+ __( 'This Admin Bar feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
1637
 
1638
+ // Reference: src/vue/pages/settings/views/Advanced.vue:297
1639
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
1640
+ __( 'The Dashboard Widget feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
1641
 
1642
+ // Reference: src/vue/pages/settings/views/Advanced.vue:298
1643
+ __( 'Taxonomy Columns', 'all-in-one-seo-pack' ),
1644
 
1645
+ // Reference: src/vue/pages/settings/views/Advanced.vue:301
1646
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
1647
+ __( 'Select which Taxonomies you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
1648
 
1649
+ // Reference: src/vue/pages/settings/views/Advanced.vue:304
1650
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
1651
+ __( 'Uninstall %1$s', 'all-in-one-seo-pack' ),
1652
 
1653
+ // Reference: src/vue/pages/settings/views/Advanced.vue:306
1654
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
1655
+ __( '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' ),
1656
 
1657
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:357
1658
+ __( 'Enable Breadcrumbs', 'all-in-one-seo-pack' ),
1659
 
1660
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:358
1661
+ __( 'Show Breadcrumbs on your Website', 'all-in-one-seo-pack' ),
1662
 
1663
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:359
1664
+ __( 'Shortcode', 'all-in-one-seo-pack' ),
 
1665
 
1666
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:360
1667
+ __( 'Gutenberg Block', 'all-in-one-seo-pack' ),
 
1668
 
1669
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:361
1670
+ __( 'PHP Code', 'all-in-one-seo-pack' ),
1671
+
1672
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:362
1673
+ __( 'Breadcrumb Settings', 'all-in-one-seo-pack' ),
1674
+
1675
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:363
1676
+ __( 'Separator', 'all-in-one-seo-pack' ),
1677
+
1678
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:364
1679
+ __( 'Homepage Link', 'all-in-one-seo-pack' ),
1680
+
1681
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:365
1682
+ __( 'Breadcrumb Prefix', 'all-in-one-seo-pack' ),
1683
+
1684
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:366
1685
+ __( 'Archive Format', 'all-in-one-seo-pack' ),
1686
+
1687
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:367
1688
+ __( 'Search Result Format', 'all-in-one-seo-pack' ),
1689
+
1690
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:368
1691
+ __( '404 Error Format', 'all-in-one-seo-pack' ),
1692
+
1693
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:369
1694
+ __( 'Current Item', 'all-in-one-seo-pack' ),
1695
+
1696
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:370
1697
+ __( 'Home', 'all-in-one-seo-pack' ),
1698
+
1699
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:372
1700
+ __( 'Subcategory', 'all-in-one-seo-pack' ),
1701
+
1702
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:373
1703
+ __( 'Article Title', 'all-in-one-seo-pack' ),
1704
+
1705
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:374
1706
+ __( 'Archives of', 'all-in-one-seo-pack' ),
1707
+
1708
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:375
1709
+ __( 'Search for', 'all-in-one-seo-pack' ),
1710
+
1711
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:376
1712
+ __( '404 Error: page not found', 'all-in-one-seo-pack' ),
1713
+
1714
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:377
1715
+ __( 'search key word goes here', 'all-in-one-seo-pack' ),
1716
+
1717
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:378
1718
+ __( 'Category Name', 'all-in-one-seo-pack' ),
1719
+
1720
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:379
1721
+ __( 'Breadcrumb Templates', 'all-in-one-seo-pack' ),
1722
 
1723
  // Reference: src/vue/pages/settings/views/GeneralSettings.vue:49
1724
  __( 'License', 'all-in-one-seo-pack' ),
1727
  __( 'Free', 'all-in-one-seo-pack' ),
1728
 
1729
  // Reference: src/vue/components/lite/core/UpgradeBar.vue:28
1730
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:52
1731
  /* Translators: 1 - "Pro". */
1732
  __( 'upgrading to %1$s', 'all-in-one-seo-pack' ),
1733
 
1734
  // Reference: src/vue/components/lite/settings/LicenseKey.vue:56
 
1735
  /* Translators: This refers to a discount ("As a valued user you receive 50%, automatically applied at checkout!"). */
1736
  __( 'off', 'all-in-one-seo-pack' ),
1737
 
1743
  __( 'Use our configuration wizard to properly set up %1$s with your WordPress website.', 'all-in-one-seo-pack' ),
1744
 
1745
  // Reference: src/vue/components/lite/settings/LicenseKey.vue:72
 
1746
  /* Translators: 1 - "upgrading to Pro". */
1747
  __( 'To unlock more features, consider %1$s.', 'all-in-one-seo-pack' ),
1748
 
1749
  // Reference: src/vue/components/lite/settings/LicenseKey.vue:76
 
1750
  /* Translators: 1 - "50% off". */
1751
  __( 'As a valued user you receive %1$s, automatically applied at checkout!', 'all-in-one-seo-pack' ),
1752
 
1753
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:179
1754
+ __( 'Setup Site Analyzer + Smart Recommendations', 'all-in-one-seo-pack' ),
 
1755
 
1756
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:180
1757
+ __( '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' ),
1758
 
1759
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:181
1760
+ __( 'Your Email Address', 'all-in-one-seo-pack' ),
1761
 
1762
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:182
1763
+ __( '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' ),
 
1764
 
1765
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:183
1766
+ __( 'Get Automatic WordPress Plugin Updates', 'all-in-one-seo-pack' ),
1767
 
1768
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:184
1769
+ __( 'Enable automatic updates', 'all-in-one-seo-pack' ),
 
1770
 
1771
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:185
1772
+ __( 'Help make %1$s better for everyone', 'all-in-one-seo-pack' ),
1773
 
1774
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:186
1775
+ __( 'Yes, count me in', 'all-in-one-seo-pack' ),
1776
 
1777
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:187
1778
+ __( 'Would you like to purchase and install the following features now?', 'all-in-one-seo-pack' ),
1779
 
1780
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:188
1781
+ __( 'An upgrade is required to unlock the following features.', 'all-in-one-seo-pack' ),
1782
 
1783
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:189
1784
+ __( 'You won\'t have access to this functionality until the extensions have been purchased and installed.', 'all-in-one-seo-pack' ),
1785
 
1786
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:190
1787
+ __( 'I\'ll do it later', 'all-in-one-seo-pack' ),
1788
 
1789
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:191
1790
+ __( 'Purchase and Install Now', 'all-in-one-seo-pack' ),
1791
 
1792
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:193
1793
+ /* Translators: 1 - Opening bold tag. 2 - Closing bold tag. 3 - Opening bold tag. 4 - Percent between 1-100. 5 - Closing bold tag. */
1794
+ __( '%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' ),
1795
 
1796
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:168
1797
+ __( 'Reset / Restore Settings', 'all-in-one-seo-pack' ),
1798
 
1799
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:169
1800
+ __( 'Select Settings', 'all-in-one-seo-pack' ),
1801
 
1802
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:170
1803
+ __( 'Select settings that you would like to reset:', 'all-in-one-seo-pack' ),
1804
 
1805
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:171
1806
+ __( 'Reset Selected Settings to Default', 'all-in-one-seo-pack' ),
1807
 
1808
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:172
1809
+ __( 'Your settings have been reset successfully!', 'all-in-one-seo-pack' ),
1810
 
1811
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:173
1812
+ __( 'Are you sure you want to reset the selected settings to default?', 'all-in-one-seo-pack' ),
1813
 
1814
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:175
1815
+ __( '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' ),
1816
 
1817
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:176
1818
+ __( 'Yes, I have a backup and want to reset the settings', 'all-in-one-seo-pack' ),
1819
 
1820
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:177
1821
+ __( 'No, I need to make a backup', 'all-in-one-seo-pack' ),
1822
 
1823
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:178
1824
+ __( 'Logs', 'all-in-one-seo-pack' ),
1825
 
1826
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:179
1827
+ __( 'Bad Bot Blocker Logs', 'all-in-one-seo-pack' ),
1828
 
1829
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:180
1830
+ __( 'Cleared', 'all-in-one-seo-pack' ),
1831
 
1832
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:181
1833
+ __( 'Clear Bad Bot Blocker Logs', 'all-in-one-seo-pack' ),
1834
 
1835
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:183
1836
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
1837
+ __( 'All %1$s Settings', 'all-in-one-seo-pack' ),
1838
 
1839
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:198
1840
+ __( 'Robots.txt', 'all-in-one-seo-pack' ),
1841
 
1842
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:134
1843
+ __( 'Congratulations, your site is now SEO ready!', 'all-in-one-seo-pack' ),
1844
 
1845
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:135
1846
+ __( 'Finish Setup and Go to the Dashboard', 'all-in-one-seo-pack' ),
1847
 
1848
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:136
1849
+ __( 'Here\'s what to do next:', 'all-in-one-seo-pack' ),
1850
 
1851
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:137
1852
+ __( 'Join our Community', 'all-in-one-seo-pack' ),
1853
 
1854
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:138
1855
+ __( 'Join on Facebook', 'all-in-one-seo-pack' ),
1856
 
1857
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:139
1858
+ __( 'Follow on Twitter', 'all-in-one-seo-pack' ),
1859
 
1860
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:140
1861
+ __( 'Read our Step By Step Guide to Improve your SEO Rankings', 'all-in-one-seo-pack' ),
1862
 
1863
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:141
1864
+ __( 'Watch our Guided Tour of %1$s', 'all-in-one-seo-pack' ),
1865
 
1866
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:142
1867
+ __( 'See Advanced Settings', 'all-in-one-seo-pack' ),
1868
 
1869
+ // Reference: src/vue/pages/setup-wizard/views/Success.vue:143
1870
+ __( 'Setup Webmaster Tools', 'all-in-one-seo-pack' ),
1871
 
1872
+ // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:41
1873
+ __( 'Edit .htaccess', 'all-in-one-seo-pack' ),
1874
 
1875
+ // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:43
1876
+ __( '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' ),
1877
 
1878
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:250
1879
+ __( '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' ),
1880
 
1881
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:251
1882
+ __( 'Google Snippet Preview', 'all-in-one-seo-pack' ),
1883
 
1884
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:252
1885
+ __( 'Edit Title and Description', 'all-in-one-seo-pack' ),
1886
 
1887
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:418
1888
+ __( 'Click on the tags below to insert variables into your site title.', 'all-in-one-seo-pack' ),
1889
 
1890
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:257
1891
+ __( 'Is the site under construction or live (ready to be indexed)?', 'all-in-one-seo-pack' ),
1892
 
1893
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:258
1894
+ __( 'Under Construction', 'all-in-one-seo-pack' ),
1895
 
1896
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:259
1897
+ __( 'Live Site', 'all-in-one-seo-pack' ),
1898
 
1899
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:262
1900
+ __( 'Do you have multiple authors?', 'all-in-one-seo-pack' ),
1901
 
1902
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:263
1903
+ __( 'Redirect attachment pages?', 'all-in-one-seo-pack' ),
1904
 
1905
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:115
1906
+ __( 'System Status Info', 'all-in-one-seo-pack' ),
 
1907
 
1908
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:116
1909
+ __( 'Download System Info File', 'all-in-one-seo-pack' ),
1910
 
1911
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:117
1912
+ __( 'Copy to Clipboard', 'all-in-one-seo-pack' ),
1913
 
1914
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:118
1915
+ __( 'Email Debug Information', 'all-in-one-seo-pack' ),
 
1916
 
1917
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:119
1918
+ __( 'Submit', 'all-in-one-seo-pack' ),
1919
 
1920
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:120
1921
+ __( 'WordPress', 'all-in-one-seo-pack' ),
1922
 
1923
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:121
1924
+ __( 'Server Info', 'all-in-one-seo-pack' ),
1925
 
1926
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:122
1927
+ __( 'Active Theme', 'all-in-one-seo-pack' ),
1928
 
1929
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:123
1930
+ __( 'Must-Use Plugins', 'all-in-one-seo-pack' ),
1931
 
1932
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:124
1933
+ __( 'Active Plugins', 'all-in-one-seo-pack' ),
1934
 
1935
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:125
1936
+ __( 'Inactive Plugins', 'all-in-one-seo-pack' ),
1937
 
1938
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:126
1939
+ __( 'Copied!', 'all-in-one-seo-pack' ),
1940
 
1941
+ // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:109
1942
+ __( 'Export Settings', 'all-in-one-seo-pack' ),
1943
 
1944
+ // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:110
1945
+ __( 'Export All Settings', 'all-in-one-seo-pack' ),
1946
 
1947
+ // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:111
1948
+ __( 'Export All Post Types', 'all-in-one-seo-pack' ),
1949
 
1950
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:102
1951
+ /* Translators: 1 - "Pro". */
1952
+ __( 'upgrade to %1$s', 'all-in-one-seo-pack' ),
1953
 
1954
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:60
1955
+ __( 'Paste your license key here', 'all-in-one-seo-pack' ),
 
1956
 
1957
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:61
1958
+ __( 'Connect', 'all-in-one-seo-pack' ),
 
1959
 
1960
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:80
1961
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
1962
+ __( 'You\'re using %1$s - no license needed. Enjoy!', 'all-in-one-seo-pack' ),
1963
 
1964
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:128
1965
+ __( 'To unlock the selected features, please enter your license key below.', 'all-in-one-seo-pack' ),
 
1966
 
1967
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:130
1968
+ /* Translators: 1 - "upgrading to Pro". */
1969
+ __( 'To unlock the selected features, please %1$s and enter your license key below.', 'all-in-one-seo-pack' ),
1970
 
1971
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:84
1972
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
1973
+ __( 'Already purchased? Simply enter your license key below to connect with %1$s!', 'all-in-one-seo-pack' ),
1974
 
1975
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:98
1976
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
1977
+ __( 'Enter your %1$s License Key', 'all-in-one-seo-pack' ),
1978
 
1979
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/metaboxAnalysisDetail.vue:32
1980
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:100
1981
+ __( 'Delete', 'all-in-one-seo-pack' ),
1982
 
1983
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:101
1984
+ __( 'Success! The backup was deleted.', 'all-in-one-seo-pack' ),
 
1985
 
1986
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:102
1987
+ __( 'Success! The backup was restored.', 'all-in-one-seo-pack' ),
1988
 
1989
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:146
1990
+ __( '%1$s at %2$s', 'all-in-one-seo-pack' ),
1991
 
1992
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:96
1993
+ __( 'Backup Settings', 'all-in-one-seo-pack' ),
1994
 
1995
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:97
1996
+ __( 'You have no saved backups.', 'all-in-one-seo-pack' ),
1997
 
1998
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:98
1999
+ __( 'Create Backup', 'all-in-one-seo-pack' ),
2000
 
2001
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:99
2002
+ __( 'Restore', 'all-in-one-seo-pack' ),
2003
 
2004
+ // Reference: src/vue/pages/settings/views/RssContent.vue:121
2005
+ __( 'Automatically add content to your site\'s RSS feed.', 'all-in-one-seo-pack' ),
2006
 
2007
+ // Reference: src/vue/pages/settings/views/RssContent.vue:122
2008
+ __( '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' ),
2009
 
2010
+ // Reference: src/vue/pages/settings/views/RssContent.vue:123
2011
+ __( 'Learn more', 'all-in-one-seo-pack' ),
 
2012
 
2013
+ // Reference: src/vue/pages/settings/views/RssContent.vue:124
2014
+ __( 'RSS Content Settings', 'all-in-one-seo-pack' ),
 
2015
 
2016
+ // Reference: src/vue/pages/settings/views/RssContent.vue:125
2017
+ __( 'Open Your RSS Feed', 'all-in-one-seo-pack' ),
2018
 
2019
+ // Reference: src/vue/pages/settings/views/RssContent.vue:126
2020
+ __( 'RSS Before Content', 'all-in-one-seo-pack' ),
 
2021
 
2022
+ // Reference: src/vue/pages/settings/views/RssContent.vue:127
2023
+ __( 'RSS After Content', 'all-in-one-seo-pack' ),
 
2024
 
2025
+ // Reference: src/vue/pages/settings/views/RssContent.vue:128
2026
+ __( 'Add content before each post in your site feed.', 'all-in-one-seo-pack' ),
2027
 
2028
+ // Reference: src/vue/pages/settings/views/RssContent.vue:129
2029
+ __( 'Add content after each post in your site feed.', 'all-in-one-seo-pack' ),
 
2030
 
2031
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:267
2032
+ __( 'Your user account role does not have access to edit this field. %2$s', 'all-in-one-seo-pack' ),
 
2033
 
2034
+ // Reference: src/vue/pages/setup-wizard/views/Features.vue:126
2035
+ __( 'The following plugins will be installed: %2$s', 'all-in-one-seo-pack' ),
2036
 
2037
+ // Reference: src/vue/pages/setup-wizard/views/Features.vue:130
2038
+ __( 'The following %1$s addons will be installed: %2$s', 'all-in-one-seo-pack' ),
 
2039
 
2040
+ // Reference: src/vue/pages/setup-wizard/views/Features.vue:134
2041
+ __( 'The following plugins and %1$s addons will be installed: %2$s', 'all-in-one-seo-pack' ),
 
2042
 
2043
+ // Reference: src/vue/pages/setup-wizard/views/Features.vue:82
2044
+ __( 'Which SEO features do you want to enable?', 'all-in-one-seo-pack' ),
2045
 
2046
+ // Reference: src/vue/pages/setup-wizard/views/Features.vue:86
2047
+ __( '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' ),
 
2048
 
2049
+ // Reference: src/vue/pages/tools/views/ImportExport.vue:36
2050
+ __( 'Export / Backup Settings', 'all-in-one-seo-pack' ),
 
2051
 
2052
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:124
2053
+ __( 'Import Settings From Other Plugins', 'all-in-one-seo-pack' ),
2054
 
2055
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:125
2056
+ __( 'Choose a plugin to import SEO data directly into %1$s.', 'all-in-one-seo-pack' ),
2057
 
2058
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:126
2059
+ __( 'Select a plugin...', 'all-in-one-seo-pack' ),
 
2060
 
2061
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:128
2062
+ __( 'All Settings', 'all-in-one-seo-pack' ),
 
2063
 
2064
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:129
2065
+ __( 'not installed', 'all-in-one-seo-pack' ),
2066
 
2067
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:143
2068
+ __( 'SEO Settings', 'all-in-one-seo-pack' ),
2069
 
2070
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:144
2071
+ __( 'Post Meta', 'all-in-one-seo-pack' ),
 
2072
 
2073
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:148
2074
+ __( 'Term Meta', 'all-in-one-seo-pack' ),
 
2075
 
2076
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:176
2077
+ /* Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO"). */
2078
+ __( '%1$s was successfully imported!', 'all-in-one-seo-pack' ),
2079
 
2080
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:180
2081
+ /* Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO"). */
2082
+ __( 'An error occurred while importing %1$s. Please try again.', 'all-in-one-seo-pack' ),
2083
 
2084
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:223
2085
+ /* Translators: 1 - The name of the plugin (e.g. "Yoast SEO"), 2 - The version of the plugin (e.g. "10.2.3"). */
2086
+ __( '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' ),
2087
 
2088
+ // Reference: src/vue/pages/setup-wizard/views/Import.vue:80
2089
+ __( 'Import data from your current plugins', 'all-in-one-seo-pack' ),
 
2090
 
2091
+ // Reference: src/vue/pages/setup-wizard/views/Import.vue:81
2092
+ __( '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' ),
2093
 
2094
+ // Reference: src/vue/pages/setup-wizard/views/Import.vue:82
2095
+ __( 'Import Data and Continue', 'all-in-one-seo-pack' ),
 
2096
 
2097
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:81
2098
+ __( 'Import / Restore %1$s Settings', 'all-in-one-seo-pack' ),
2099
 
2100
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:82
2101
+ __( 'Import from a JSON or INI file...', 'all-in-one-seo-pack' ),
 
2102
 
2103
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:83
2104
+ __( 'Choose a File', 'all-in-one-seo-pack' ),
2105
 
2106
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:84
2107
+ __( 'Imported settings will overwrite existing settings and will not be merged.', 'all-in-one-seo-pack' ),
 
2108
 
2109
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:86
2110
+ __( 'A JSON or INI file is required to import settings.', 'all-in-one-seo-pack' ),
2111
 
2112
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:87
2113
+ __( 'Success! Your settings have been imported.', 'all-in-one-seo-pack' ),
 
2114
 
2115
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:88
2116
+ __( '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' ),
2117
 
2118
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:238
2119
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
2120
+ __( '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' ),
2121
 
2122
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:239
2123
+ __( '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' ),
 
 
 
 
2124
 
2125
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:240
2126
+ __( 'Enable Custom Robots.txt', 'all-in-one-seo-pack' ),
2127
 
2128
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:241
2129
+ __( 'Duplicate or invalid entries have been detected! Please check your rules and try again.', 'all-in-one-seo-pack' ),
 
2130
 
2131
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:242
2132
+ __( 'User Agent', 'all-in-one-seo-pack' ),
2133
 
2134
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:243
2135
+ __( 'Rule', 'all-in-one-seo-pack' ),
 
2136
 
2137
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:244
2138
+ __( 'Directory Path', 'all-in-one-seo-pack' ),
2139
 
2140
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:245
2141
+ __( 'Allow', 'all-in-one-seo-pack' ),
2142
 
2143
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:246
2144
+ __( 'Disallow', 'all-in-one-seo-pack' ),
2145
 
2146
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:247
2147
+ __( 'Add Rule', 'all-in-one-seo-pack' ),
2148
 
2149
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:248
2150
+ __( 'Delete Rule', 'all-in-one-seo-pack' ),
2151
 
2152
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:249
2153
+ __( 'Robots.txt Preview:', 'all-in-one-seo-pack' ),
2154
 
2155
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:250
2156
+ __( 'Open Robots.txt', 'all-in-one-seo-pack' ),
2157
 
2158
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:252
2159
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
2160
+ __( '%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' ),
2161
 
2162
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:253
2163
+ __( 'Import and Delete', 'all-in-one-seo-pack' ),
2164
 
2165
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:285
2166
+ /* Translators: 1 - The url to the main site. */
2167
+ __( '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' ),
2168
 
2169
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:288
2170
+ __( 'It looks like you are missing the proper rewrite rules for the robots.txt file.', 'all-in-one-seo-pack' ),
 
2171
 
2172
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:292
2173
+ /* Translators: 1 - Opening link tag. 2 - Closing link tag. */
2174
+ __( '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' ),
2175
 
2176
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:294
2177
+ __( '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' ),
2178
 
2179
+ // Reference: src/vue/pages/about/views/AboutUs.vue:118
2180
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - Same as previous. */
2181
+ __( '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' ),
2182
 
2183
+ // Reference: src/vue/pages/about/views/AboutUs.vue:119
2184
+ __( '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' ),
2185
 
2186
+ // Reference: src/vue/pages/about/views/AboutUs.vue:120
2187
+ __( 'Our goal is to take the pain out of optimizing your website for search engines.', 'all-in-one-seo-pack' ),
2188
 
2189
+ // Reference: src/vue/pages/about/views/AboutUs.vue:122
2190
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - Company name ("Awesome Motive"). */
2191
+ __( '%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' ),
2192
 
2193
+ // Reference: src/vue/pages/about/views/AboutUs.vue:123
2194
+ __( 'Yup, we know a thing or two about building awesome products that customers love.', 'all-in-one-seo-pack' ),
2195
 
2196
+ // Reference: src/vue/pages/about/views/AboutUs.vue:125
2197
+ /* Translators: 1 - Company name ("Awesome Motive"). */
2198
+ __( 'The %1$s Team', 'all-in-one-seo-pack' ),
2199
 
2200
+ // Reference: src/vue/pages/about/views/AboutUs.vue:129
2201
+ __( 'Install Plugin', 'all-in-one-seo-pack' ),
2202
 
2203
+ // Reference: src/vue/pages/about/views/AboutUs.vue:130
2204
+ __( 'Activate', 'all-in-one-seo-pack' ),
2205
 
2206
+ // Reference: src/vue/components/common/core/FeatureCard.vue:124
2207
+ // Reference: src/vue/pages/about/views/AboutUs.vue:131
2208
+ __( 'Manage', 'all-in-one-seo-pack' ),
2209
 
2210
+ // Reference: src/vue/pages/about/views/AboutUs.vue:133
2211
+ __( 'Status:', 'all-in-one-seo-pack' ),
2212
 
2213
+ // Reference: src/vue/components/common/core/FeatureCard.vue:119
2214
+ // Reference: src/vue/pages/about/views/AboutUs.vue:135
2215
+ __( 'Activated', 'all-in-one-seo-pack' ),
2216
 
2217
+ // Reference: src/vue/components/common/core/FeatureCard.vue:120
2218
+ // Reference: src/vue/pages/about/views/AboutUs.vue:136
2219
+ __( 'Deactivated', 'all-in-one-seo-pack' ),
2220
 
2221
+ // Reference: src/vue/components/common/core/FeatureCard.vue:121
2222
+ // Reference: src/vue/pages/about/views/AboutUs.vue:137
2223
+ __( 'Not Installed', 'all-in-one-seo-pack' ),
2224
 
2225
+ // Reference: src/vue/pages/about/views/AboutUs.vue:144
2226
+ __( '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' ),
2227
 
2228
+ // Reference: src/vue/pages/about/views/AboutUs.vue:153
2229
+ __( 'WPForms allows you to create beautiful contact forms for your site in minutes, not hours!', 'all-in-one-seo-pack' ),
2230
 
2231
+ // Reference: src/vue/pages/about/views/AboutUs.vue:170
2232
+ __( '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' ),
2233
 
2234
+ // Reference: src/vue/pages/about/views/AboutUs.vue:187
2235
+ __( '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' ),
2236
 
2237
+ // Reference: src/vue/pages/about/views/AboutUs.vue:204
2238
+ __( 'Make sure your website\'s emails reach the inbox. Our goal is to make email deliverability easy and reliable. Trusted by over 1 million websites.', 'all-in-one-seo-pack' ),
2239
 
2240
+ // Reference: src/vue/pages/about/views/AboutUs.vue:221
2241
+ __( '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' ),
2242
 
2243
+ // Reference: src/vue/pages/about/views/AboutUs.vue:238
2244
+ __( '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' ),
2245
 
2246
+ // Reference: src/vue/pages/about/views/AboutUs.vue:247
2247
+ __( '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' ),
2248
 
2249
+ // Reference: src/vue/pages/about/views/AboutUs.vue:264
2250
+ __( 'Display completely customizable Facebook feeds of any public Facebook page or Group.', 'all-in-one-seo-pack' ),
2251
 
2252
+ // Reference: src/vue/pages/about/views/AboutUs.vue:281
2253
+ __( 'Display beautifully clean, customizable, and responsive Instagram feeds from multiple Instagram accounts.', 'all-in-one-seo-pack' ),
2254
 
2255
+ // Reference: src/vue/pages/about/views/AboutUs.vue:298
2256
+ __( 'Display completely customizable, responsive and search engine crawlable Twitter feeds on your website.', 'all-in-one-seo-pack' ),
2257
 
2258
+ // Reference: src/vue/pages/about/views/AboutUs.vue:315
2259
+ __( 'The Feeds for YouTube plugin allows you to display customizable YouTube feeds from any YouTube channel.', 'all-in-one-seo-pack' ),
2260
 
2261
+ // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:111
2262
+ __( 'Enter Competitor URL', 'all-in-one-seo-pack' ),
2263
 
2264
+ // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:112
2265
+ __( 'Perform in-depth SEO Analysis of your competitor\'s website.', 'all-in-one-seo-pack' ),
2266
 
2267
+ // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:113
2268
+ __( 'Analyze', 'all-in-one-seo-pack' ),
2269
 
2270
+ // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:114
2271
+ __( 'Please enter a valid URL.', 'all-in-one-seo-pack' ),
2272
 
2273
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:77
2274
+ __( 'The URL provided is invalid.', 'all-in-one-seo-pack' ),
2275
 
2276
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:79
2277
+ __( 'We were unable to parse the content for this site.', 'all-in-one-seo-pack' ),
2278
 
2279
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:82
2280
+ /* Translators: 1 - The plugin short name ('AIOSEO'). */
2281
+ __( 'Your site is not connected. Please connect to %1$s, then try again.', 'all-in-one-seo-pack' ),
2282
 
2283
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:256
2284
+ __( 'Miscellaneous Verification', 'all-in-one-seo-pack' ),
2285
 
2286
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:258
2287
+ /* Translators: 1 - "<head></head>". */
2288
+ __( 'The code above will be added between the %1$s tags on every page on your website.', 'all-in-one-seo-pack' ),
2289
 
2290
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:259
2291
+ __( 'Webmaster Tools Verification', 'all-in-one-seo-pack' ),
2292
 
2293
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:262
2294
+ __( 'Success!', 'all-in-one-seo-pack' ),
2295
 
2296
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:263
2297
+ __( 'Google Analytics is now handled by MonsterInsights.', 'all-in-one-seo-pack' ),
2298
 
2299
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:264
2300
+ __( 'Google Analytics is now handled by ExactMetrics.', 'all-in-one-seo-pack' ),
2301
 
2302
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:265
2303
+ __( 'Manage Google Analytics', 'all-in-one-seo-pack' ),
 
 
 
2304
 
2305
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:266
2306
+ __( 'Get Started', 'all-in-one-seo-pack' ),
 
 
 
2307
 
2308
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:276
2309
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2310
+ __( 'We recommend using the %1$sFree MonsterInsights%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
 
 
2311
 
2312
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:280
2313
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2314
+ __( 'We recommend using the %1$sFree ExactMetrics%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
 
2315
 
2316
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:314
2317
+ __( 'Google Verification Code', 'all-in-one-seo-pack' ),
2318
 
2319
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:316
2320
+ /* Translators: 1 - "Google Search Console". */
2321
+ __( 'Google Search Console', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2322
 
2323
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:316
2324
+ /* Translators: 1 - "Google Search Console". */
2325
+ __( 'Get your Google verification code in %1$s.', 'all-in-one-seo-pack' ),
2326
 
2327
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:327
2328
+ __( 'Bing Verification Code', 'all-in-one-seo-pack' ),
2329
 
2330
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:329
2331
+ /* Translators: 1 - "Bing Webmaster Tools". */
2332
+ __( 'Bing Webmaster Tools', 'all-in-one-seo-pack' ),
2333
 
2334
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:329
2335
+ /* Translators: 1 - "Bing Webmaster Tools". */
2336
+ __( 'Get your Bing verification code in %1$s.', 'all-in-one-seo-pack' ),
 
2337
 
2338
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:340
2339
+ __( 'Yandex Verification Code', 'all-in-one-seo-pack' ),
2340
 
2341
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:342
2342
+ /* Translators: 1 - "Yandex Webmaster Tools". */
2343
+ __( 'Yandex Webmaster Tools', 'all-in-one-seo-pack' ),
2344
 
2345
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:342
2346
+ /* Translators: 1 - "Yandex Webmaster Tools". */
2347
+ __( 'Get your Yandex verification code in %1$s.', 'all-in-one-seo-pack' ),
2348
 
2349
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:353
2350
+ __( 'Baidu Verification Code', 'all-in-one-seo-pack' ),
2351
 
2352
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:355
2353
+ /* Translators: 1 - "Baidu Webmaster Tools". */
2354
+ __( 'Baidu Webmaster Tools', 'all-in-one-seo-pack' ),
2355
 
2356
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:355
2357
+ /* Translators: 1 - "Baidu Webmaster Tools". */
2358
+ __( 'Get your Baidu verification code in %1$s.', 'all-in-one-seo-pack' ),
2359
 
2360
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:361
2361
+ __( 'Pinterest Site Verification', 'all-in-one-seo-pack' ),
2362
 
2363
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:368
2364
+ /* Translators: 1 - "Pinterest account". */
2365
+ __( 'Get your Pinterest verification code in your %1$s.', 'all-in-one-seo-pack' ),
2366
 
2367
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:368
2368
+ /* Translators: 1 - "Pinterest account". */
2369
+ __( 'Pinterest account', 'all-in-one-seo-pack' ),
2370
 
2371
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:399
2372
+ __( 'Google Analytics', 'all-in-one-seo-pack' ),
2373
 
2374
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:406
2375
+ __( 'Google Analytics ID', 'all-in-one-seo-pack' ),
 
2376
 
2377
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:408
2378
+ /* Translators: 1 - "Google Analytics account". */
2379
+ __( 'Get your Google Analytics ID in your %1$s.', 'all-in-one-seo-pack' ),
2380
 
2381
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:408
2382
+ /* Translators: 1 - "Google Analytics account". */
2383
+ __( 'Google Analytics account', 'all-in-one-seo-pack' ),
2384
 
2385
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:414
2386
+ __( 'Enable Advanced Analytics Options', 'all-in-one-seo-pack' ),
2387
 
2388
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:418
2389
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
2390
+ __( 'This enables Advanced Google Analytics options.%1$s%2$s', 'all-in-one-seo-pack' ),
2391
 
2392
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:423
2393
+ __( 'Tracking Domain', 'all-in-one-seo-pack' ),
2394
 
2395
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:426
2396
+ /* Translators: 1 - "http://", 2 - A link to our documentation, 3 - HTML line break tag. */
2397
+ __( 'Enter your domain name without the %1$s to set your cookie domain.%2$s%3$s', 'all-in-one-seo-pack' ),
2398
 
2399
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:431
2400
+ __( 'Track Multiple Domains', 'all-in-one-seo-pack' ),
2401
 
2402
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:439
2403
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
2404
+ __( 'Use this option to enable tracking of multiple or additional domains.%1$s%2$s', 'all-in-one-seo-pack' ),
2405
 
2406
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:444
2407
+ __( 'Additional Domains', 'all-in-one-seo-pack' ),
2408
 
2409
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:448
2410
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
2411
+ __( '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' ),
2412
 
2413
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:453
2414
+ __( 'Anonymize IP Addresses', 'all-in-one-seo-pack' ),
 
 
2415
 
2416
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:461
2417
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
2418
+ __( 'This enables support for IP Anonymization in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
 
2419
 
2420
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:466
2421
+ __( 'Display Advertiser Tracking', 'all-in-one-seo-pack' ),
 
 
 
2422
 
2423
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:474
2424
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
2425
+ __( 'This enables support for the Display Advertiser Features in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
2426
 
2427
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:479
2428
+ __( 'Exclude Users from Tracking', 'all-in-one-seo-pack' ),
2429
 
2430
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:490
2431
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
2432
+ __( 'Exclude logged-in users from Google Analytics tracking by role.%1$s%2$s', 'all-in-one-seo-pack' ),
2433
 
2434
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:495
2435
+ __( 'Enhanced Link Attribution', 'all-in-one-seo-pack' ),
2436
 
2437
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:503
2438
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
2439
+ __( 'This enables support for the Enhanced Link Attribution in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
2440
 
2441
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:508
2442
+ __( 'Track Outbound Links', 'all-in-one-seo-pack' ),
2443
 
2444
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:516
2445
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
2446
+ __( 'This enables tracking outbound links with Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
2447
 
2448
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:521
2449
+ __( 'Enhanced Ecommerce', 'all-in-one-seo-pack' ),
2450
 
2451
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:529
2452
+ /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
2453
+ __( 'This enables support for the Enhanced Ecommerce in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
2454
 
2455
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:534
2456
+ __( 'Track Outbound Forms', 'all-in-one-seo-pack' ),
2457
 
2458
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:548
2459
+ __( 'Track Events', 'all-in-one-seo-pack' ),
2460
 
2461
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:562
2462
+ __( 'Track URL Changes', 'all-in-one-seo-pack' ),
2463
 
2464
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:576
2465
+ __( 'Track Page Visibility', 'all-in-one-seo-pack' ),
2466
 
2467
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:590
2468
+ __( 'Track Media Queries', 'all-in-one-seo-pack' ),
2469
 
2470
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:604
2471
+ __( 'Track Elements Visibility', 'all-in-one-seo-pack' ),
2472
 
2473
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:618
2474
+ __( 'Track Page Scrolling', 'all-in-one-seo-pack' ),
2475
 
2476
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:632
2477
+ __( 'Track Facebook and Twitter', 'all-in-one-seo-pack' ),
2478
 
2479
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:646
2480
+ __( 'Ensure URL Consistency', 'all-in-one-seo-pack' ),
2481
 
2482
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:660
2483
+ __( 'Google Tag Manager Container ID', 'all-in-one-seo-pack' ),
2484
 
2485
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:664
2486
+ /* Translators: 1 - "Google Tag Manager account". */
2487
+ __( 'Get your Google Tag Manager ID in your %1$s.', 'all-in-one-seo-pack' ),
2488
 
2489
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:146
2490
+ __( 'Which category best describes your website?', 'all-in-one-seo-pack' ),
2491
 
2492
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:147
2493
+ __( 'Select a category to help us narrow down the SEO options that work best for you and your site.', 'all-in-one-seo-pack' ),
2494
 
2495
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:148
2496
+ __( 'Enter your answer', 'all-in-one-seo-pack' ),
2497
 
2498
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:153
2499
+ __( 'Blog', 'all-in-one-seo-pack' ),
2500
 
2501
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:154
2502
+ __( 'News Channel', 'all-in-one-seo-pack' ),
 
2503
 
2504
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:155
2505
+ __( 'Online Store', 'all-in-one-seo-pack' ),
2506
 
2507
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:156
2508
+ __( 'Small Offline Business', 'all-in-one-seo-pack' ),
2509
 
2510
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:157
2511
+ __( 'Corporation', 'all-in-one-seo-pack' ),
2512
 
2513
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:158
2514
+ __( 'Portfolio', 'all-in-one-seo-pack' ),
2515
 
2516
+ // Reference: src/vue/pages/setup-wizard/views/Category.vue:160
2517
+ __( 'Other:', 'all-in-one-seo-pack' ),
2518
 
2519
+ // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:16
2520
+ __( 'HTML Sitemap', 'all-in-one-seo-pack' ),
2521
 
2522
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:409
2523
+ __( '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' ),
2524
 
2525
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:125
2526
+ __( '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' ),
2527
 
2528
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:130
2529
+ __( 'Number of Posts', 'all-in-one-seo-pack' ),
2530
 
2531
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:133
2532
+ __( 'Open RSS Sitemap', 'all-in-one-seo-pack' ),
2533
 
2534
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:134
2535
+ __( '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' ),
2536
 
2537
+ // Reference: src/vue/components/common/wizard/CloseAndExit.vue:14
2538
+ __( 'Close and Exit Wizard Without Saving', 'all-in-one-seo-pack' ),
2539
 
2540
+ // Reference: src/vue/components/common/wizard/Steps.vue:15
2541
+ /* Translators: 1 - The current step count. 2 - The total step count. */
2542
+ __( 'Step %1$s of %2$s', 'all-in-one-seo-pack' ),
2543
 
2544
+ // Reference: src/vue/components/lite/core/UpgradeBar.vue:38
2545
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro". */
2546
+ __( 'You\'re using %1$s. To unlock more features, consider %2$s.', 'all-in-one-seo-pack' ),
2547
 
2548
+ // Reference: src/vue/components/lite/local-business/AreaServed.vue:16
2549
+ __( 'The geographic area where a service or offered item is provided.', 'all-in-one-seo-pack' ),
 
2550
 
2551
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:55
2552
+ __( 'Street address:', 'all-in-one-seo-pack' ),
2553
 
2554
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:56
2555
+ __( 'Street address line 2 (optional):', 'all-in-one-seo-pack' ),
 
2556
 
2557
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:57
2558
+ __( 'Zip code:', 'all-in-one-seo-pack' ),
2559
 
2560
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:58
2561
+ __( 'City:', 'all-in-one-seo-pack' ),
2562
 
2563
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:59
2564
+ __( 'State:', 'all-in-one-seo-pack' ),
2565
 
2566
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:60
2567
+ __( 'Country:', 'all-in-one-seo-pack' ),
2568
 
2569
+ // Reference: src/vue/components/lite/local-business/BusinessContact.vue:28
2570
+ __( 'Email address:', 'all-in-one-seo-pack' ),
2571
 
2572
+ // Reference: src/vue/components/lite/local-business/BusinessContact.vue:29
2573
+ __( 'Phone number:', 'all-in-one-seo-pack' ),
2574
 
2575
+ // Reference: src/vue/components/lite/local-business/BusinessContact.vue:30
2576
+ __( 'Fax number:', 'all-in-one-seo-pack' ),
2577
 
2578
+ // Reference: src/vue/components/lite/local-business/BusinessIds.vue:25
2579
+ __( 'VAT ID:', 'all-in-one-seo-pack' ),
2580
 
2581
+ // Reference: src/vue/components/lite/local-business/BusinessIds.vue:26
2582
+ __( 'Tax ID:', 'all-in-one-seo-pack' ),
2583
 
2584
+ // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:37
2585
+ __( 'Price Indicator:', 'all-in-one-seo-pack' ),
2586
 
2587
+ // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:38
2588
+ __( 'Accepted Currencies:', 'all-in-one-seo-pack' ),
2589
 
2590
+ // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:39
2591
+ __( 'Accepted Payment Methods:', 'all-in-one-seo-pack' ),
2592
 
2593
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:59
2594
+ __( 'Your license key provides access to updates and addons.', 'all-in-one-seo-pack' ),
 
2595
 
2596
  // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:12
2597
  __( 'Open News Sitemap', 'all-in-one-seo-pack' ),
2602
  // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:16
2603
  __( 'News Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
2604
 
2605
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:17
2606
+ __( 'This feature requires one of the following plans:', 'all-in-one-seo-pack' ),
2607
+
2608
  // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:8
2609
  __( 'Set Publication Name', 'all-in-one-seo-pack' ),
2610
 
 
2611
  // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:8
2612
  __( 'Exclude Pages/Posts', 'all-in-one-seo-pack' ),
2613
 
2623
  // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:7
2624
  __( 'Custom Field Support', 'all-in-one-seo-pack' ),
2625
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2626
  // Reference: src/vue/components/common/core/SiteScore.vue:45
2627
  __( 'Analyzing...', 'all-in-one-seo-pack' ),
2628
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2629
  // Reference: src/vue/components/common/core/RobotsMeta.vue:101
 
2630
  __( 'Robots meta:', 'all-in-one-seo-pack' ),
2631
 
2632
  // Reference: src/vue/components/common/core/RobotsMeta.vue:102
 
2633
  __( 'Max Snippet', 'all-in-one-seo-pack' ),
2634
 
2635
  // Reference: src/vue/components/common/core/RobotsMeta.vue:103
 
2636
  __( 'Max Video Preview', 'all-in-one-seo-pack' ),
2637
 
2638
  // Reference: src/vue/components/common/core/RobotsMeta.vue:104
 
2639
  __( 'Max Image Preview', 'all-in-one-seo-pack' ),
2640
 
2641
  // Reference: src/vue/components/common/core/RobotsMeta.vue:105
 
2642
  __( 'Standard', 'all-in-one-seo-pack' ),
2643
 
2644
  // Reference: src/vue/components/common/core/RobotsMeta.vue:107
 
2645
  __( 'Large', 'all-in-one-seo-pack' ),
2646
 
2647
  // Reference: src/vue/components/common/core/RobotsMeta.vue:87
 
2648
  __( 'No Index', 'all-in-one-seo-pack' ),
2649
 
2650
  // Reference: src/vue/components/common/core/RobotsMeta.vue:88
 
2651
  __( 'No Follow', 'all-in-one-seo-pack' ),
2652
 
2653
  // Reference: src/vue/components/common/core/RobotsMeta.vue:89
 
2654
  __( 'No Archive', 'all-in-one-seo-pack' ),
2655
 
2656
  // Reference: src/vue/components/common/core/RobotsMeta.vue:90
 
2657
  __( 'No Translate', 'all-in-one-seo-pack' ),
2658
 
2659
  // Reference: src/vue/components/common/core/RobotsMeta.vue:91
 
2660
  __( 'No Image Index', 'all-in-one-seo-pack' ),
2661
 
2662
  // Reference: src/vue/components/common/core/RobotsMeta.vue:92
 
2663
  __( 'No Snippet', 'all-in-one-seo-pack' ),
2664
 
2665
  // Reference: src/vue/components/common/core/RobotsMeta.vue:93
 
2666
  __( 'No ODP', 'all-in-one-seo-pack' ),
2667
 
2668
+ // Reference: src/vue/components/common/core/SettingsSeparator.vue:101
2669
+ __( 'Custom separator:', 'all-in-one-seo-pack' ),
2670
+
2671
+ // Reference: src/vue/components/common/core/SettingsSeparator.vue:102
2672
+ __( 'Show More', 'all-in-one-seo-pack' ),
2673
+
2674
+ // Reference: src/vue/components/common/core/SettingsSeparator.vue:103
2675
+ __( 'Show Less', 'all-in-one-seo-pack' ),
2676
+
2677
  // Reference: src/vue/components/common/core/RobotsMeta.vue:96
2678
  __( 'No Index Paginated', 'all-in-one-seo-pack' ),
2679
 
2680
  // Reference: src/vue/components/common/core/RobotsMeta.vue:97
2681
  __( 'No Follow Paginated', 'all-in-one-seo-pack' ),
2682
 
2683
+ // Reference: src/vue/components/common/core/AdditionalPages.vue:98
2684
+ __( 'Priority', 'all-in-one-seo-pack' ),
2685
+
2686
+ // Reference: src/vue/components/common/core/AdditionalPages.vue:99
2687
+ __( 'Frequency', 'all-in-one-seo-pack' ),
2688
+
2689
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:416
2690
+ __( 'Home Page', 'all-in-one-seo-pack' ),
2691
+
2692
+ // Reference: src/vue/components/common/core/PriorityScore.vue:67
2693
+ __( 'Archive Pages', 'all-in-one-seo-pack' ),
2694
+
2695
+ // Reference: src/vue/components/common/core/PriorityScore.vue:68
2696
+ __( 'Author Pages', 'all-in-one-seo-pack' ),
2697
+
2698
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:86
2699
+ __( 'Label:', 'all-in-one-seo-pack' ),
2700
+
2701
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:87
2702
+ __( 'Slug:', 'all-in-one-seo-pack' ),
2703
+
2704
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:88
2705
+ __( 'No post types available.', 'all-in-one-seo-pack' ),
2706
+
2707
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:89
2708
+ __( 'No taxonomies available.', 'all-in-one-seo-pack' ),
2709
+
2710
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:90
2711
+ __( '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' ),
2712
+
2713
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:91
2714
+ __( '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' ),
2715
+
2716
+ // Reference: src/vue/components/common/core/Notifications.vue:94
2717
+ __( 'Dismissed Notifications', 'all-in-one-seo-pack' ),
2718
+
2719
+ // Reference: src/vue/pages/post-settings/views/General.vue:272
2720
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:36
2721
+ __( 'Basic SEO', 'all-in-one-seo-pack' ),
2722
+
2723
  // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:107
2724
  __( 'Advanced SEO', 'all-in-one-seo-pack' ),
2725
 
2732
  // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:110
2733
  __( 'Keywords:', 'all-in-one-seo-pack' ),
2734
 
2735
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:57
2736
+ __( 'Your Overall Site Score', 'all-in-one-seo-pack' ),
2737
+
2738
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:59
2739
+ /* Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag. */
2740
+ __( 'A very good score is between %1$s60 and 80%2$s.', 'all-in-one-seo-pack' ),
2741
+
2742
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:61
2743
+ /* Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag. */
2744
+ __( 'For best results, you should strive for %1$s70 and above%2$s.', 'all-in-one-seo-pack' ),
2745
+
2746
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:62
2747
+ __( 'An error occurred while analyzing your site.', 'all-in-one-seo-pack' ),
2748
+
2749
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:64
2750
+ __( 'Warnings', 'all-in-one-seo-pack' ),
2751
 
2752
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:68
2753
+ __( 'Read the Ultimate WordPress SEO Guide', 'all-in-one-seo-pack' ),
2754
 
2755
+ // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:81
2756
+ __( 'Mobile Snapshot', 'all-in-one-seo-pack' ),
2757
 
2758
  // Reference: src/vue/components/common/core/SocialProfiles.vue:121
2759
  __( 'Your Facebook URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
2794
  // Reference: src/vue/components/common/core/SocialProfiles.vue:239
2795
  __( 'Your Username:', 'all-in-one-seo-pack' ),
2796
 
2797
+ // Reference: src/vue/components/common/core/MainTabs.vue:161
2798
+ __( 'Save Changes', 'all-in-one-seo-pack' ),
2799
+
2800
+ // Reference: src/vue/components/common/core/Notification.vue:100
2801
+ __( 'a minute ago', 'all-in-one-seo-pack' ),
2802
+
2803
+ // Reference: src/vue/components/common/core/Notification.vue:101
2804
+ __( 'minutes ago', 'all-in-one-seo-pack' ),
2805
+
2806
+ // Reference: src/vue/components/common/core/Notification.vue:102
2807
+ __( 'a day ago', 'all-in-one-seo-pack' ),
2808
+
2809
+ // Reference: src/vue/components/common/core/Notification.vue:103
2810
+ __( 'days ago', 'all-in-one-seo-pack' ),
2811
+
2812
+ // Reference: src/vue/components/common/core/Notification.vue:104
2813
+ __( 'a month ago', 'all-in-one-seo-pack' ),
2814
+
2815
+ // Reference: src/vue/components/common/core/Notification.vue:105
2816
+ __( 'months ago', 'all-in-one-seo-pack' ),
2817
+
2818
+ // Reference: src/vue/components/common/core/Notification.vue:106
2819
+ __( 'a year ago', 'all-in-one-seo-pack' ),
2820
+
2821
+ // Reference: src/vue/components/common/core/Notification.vue:107
2822
+ __( 'years ago', 'all-in-one-seo-pack' ),
2823
+
2824
+ // Reference: src/vue/components/common/core/Notification.vue:79
2825
+ __( 'Dismiss', 'all-in-one-seo-pack' ),
2826
+
2827
+ // Reference: src/vue/components/common/core/Notification.vue:99
2828
+ __( 'a few seconds ago', 'all-in-one-seo-pack' ),
2829
+
2830
+ // Reference: src/vue/components/common/core/NotificationCards.vue:58
2831
+ __( 'Great Scott! Where\'d they all go?', 'all-in-one-seo-pack' ),
2832
+
2833
+ // Reference: src/vue/components/common/core/NotificationCards.vue:59
2834
+ __( 'You have no new notifications.', 'all-in-one-seo-pack' ),
2835
+
2836
+ // Reference: src/vue/components/common/core/NotificationCards.vue:60
2837
+ __( 'See Dismissed Notifications', 'all-in-one-seo-pack' ),
2838
+
2839
  // Reference: src/vue/classes/SiteAnalysis.js:102
2840
  __( 'No keywords were found in the page title.', 'all-in-one-seo-pack' ),
2841
 
3347
  // Reference: src/vue/classes/SiteAnalysis.js:93
3348
  __( 'Edit Your Meta Description', 'all-in-one-seo-pack' ),
3349
 
3350
+ // Reference: src/vue/components/common/core/HtmlTagsEditor.vue:98
3351
+ __( 'Click on the tags below to insert variables into your template.', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3352
 
3353
+ // Reference: src/vue/components/common/core/HtmlTagsEditor.vue:99
3354
+ __( 'View all tags', 'all-in-one-seo-pack' ),
3355
 
3356
  // Reference: src/vue/components/common/core/Help.vue:126
3357
  __( 'Close', 'all-in-one-seo-pack' ),
3384
  // Reference: src/vue/components/common/core/Help.vue:136
3385
  __( 'Submit a Support Ticket', 'all-in-one-seo-pack' ),
3386
 
3387
+ // Reference: src/vue/components/common/core/FeatureCard.vue:122
3388
+ // Reference: src/vue/components/common/core/Help.vue:137
3389
+ __( 'Upgrade to Pro', 'all-in-one-seo-pack' ),
3390
 
3391
+ // Reference: src/vue/components/common/core/GettingStarted.vue:83
3392
+ __( 'How to Get Started', 'all-in-one-seo-pack' ),
3393
 
3394
+ // Reference: src/vue/components/common/core/GettingStarted.vue:85
3395
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
3396
+ __( 'Welcome to %1$s', 'all-in-one-seo-pack' ),
3397
+
3398
+ // Reference: src/vue/components/common/core/GettingStarted.vue:87
3399
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
3400
+ __( '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' ),
3401
+
3402
+ // Reference: src/vue/components/common/core/GettingStarted.vue:88
3403
+ __( 'Launch the Setup Wizard', 'all-in-one-seo-pack' ),
3404
+
3405
+ // Reference: src/vue/components/common/core/GettingStarted.vue:89
3406
+ __( 'Read the Setup Guide', 'all-in-one-seo-pack' ),
3407
+
3408
+ // Reference: src/vue/components/common/core/FeatureCard.vue:123
3409
+ __( 'Upgrade Your Plan', 'all-in-one-seo-pack' ),
3410
 
3411
  // Reference: src/vue/components/common/core/ExcludePosts.vue:100
3412
  __( 'No results found for that title. Try again!', 'all-in-one-seo-pack' ),
3426
  // Reference: src/vue/components/common/core/ExcludePosts.vue:99
3427
  __( 'Begin typing a title to search...', 'all-in-one-seo-pack' ),
3428
 
3429
+ // Reference: src/vue/components/common/core/CopyBlock.vue:48
3430
+ __( 'Click to Copy', 'all-in-one-seo-pack' ),
3431
+
3432
  // Reference: src/vue/components/common/core/AdditionalPages.vue:100
3433
  __( 'Last Modified', 'all-in-one-seo-pack' ),
3434
 
3436
  __( 'Add New', 'all-in-one-seo-pack' ),
3437
 
3438
  // Reference: src/vue/components/common/core/AdditionalPages.vue:103
 
3439
  __( 'always', 'all-in-one-seo-pack' ),
3440
 
3441
  // Reference: src/vue/components/common/core/AdditionalPages.vue:96
3451
  // Reference: src/vue/components/common/base/Editor.vue:123
3452
  __( 'Enter a custom field name...', 'all-in-one-seo-pack' ),
3453
 
3454
+ // Reference: src/vue/utils/tags.js:64
3455
+ __( 'Product Short Description', 'all-in-one-seo-pack' ),
3456
+
3457
+ // Reference: src/vue/utils/tags.js:65
3458
+ __( 'A short description for your product.', 'all-in-one-seo-pack' ),
3459
+
3460
+ // Reference: src/vue/utils/tags.js:66
3461
+ __( 'Sample short description for your product.', 'all-in-one-seo-pack' ),
3462
+
3463
+ // Reference: src/vue/utils/tags.js:82
3464
+ __( 'Archive', 'all-in-one-seo-pack' ),
3465
+
3466
+ // Reference: src/vue/utils/tags.js:83
3467
+ __( 'archive', 'all-in-one-seo-pack' ),
3468
+
3469
  // Reference: src/vue/plugins/constants.js:1041
3470
  __( 'Manually Enter Type', 'all-in-one-seo-pack' ),
3471
 
3717
  // Reference: src/vue/plugins/constants.js:38
3718
  __( 'Preview', 'all-in-one-seo-pack' ),
3719
 
3720
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:114
3721
+ __( 'Title Attribute Format', 'all-in-one-seo-pack' ),
3722
 
3723
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:115
3724
+ __( 'Strip Punctuation for Title Attributes', 'all-in-one-seo-pack' ),
3725
 
3726
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:116
3727
+ __( 'Click on the tags below to insert variables into your title attribute.', 'all-in-one-seo-pack' ),
3728
 
3729
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:117
3730
+ __( 'Alt Tag Attribute Format', 'all-in-one-seo-pack' ),
3731
 
3732
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:118
3733
+ __( 'Click on the tags below to insert variables into your alt tag attribute.', 'all-in-one-seo-pack' ),
3734
+
3735
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:119
3736
+ __( 'Strip Punctuation for Alt Attributes', 'all-in-one-seo-pack' ),
3737
+
3738
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:122
3739
+ __( 'Upgrade to Pro and Unlock Image SEO', 'all-in-one-seo-pack' ),
3740
+
3741
+ // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:123
3742
+ __( 'Image SEO is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
3743
+
3744
+ // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:90
3745
+ __( 'Upgrade to Pro and Unlock Custom Taxonomies', 'all-in-one-seo-pack' ),
3746
+
3747
+ // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:92
3748
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro". */
3749
+ __( '%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' ),
3750
+
3751
+ // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:93
3752
+ __( 'Custom Taxonomy Support is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
3753
+
3754
+ // Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:58
3755
+ __( 'Title & Description', 'all-in-one-seo-pack' ),
3756
+
3757
+ // Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:64
3758
+ __( 'Schema Markup', 'all-in-one-seo-pack' ),
3759
 
3760
  // Reference: src/vue/store/actions.js:146
3761
  __( 'We couldn\'t connect to the site, please try again later.', 'all-in-one-seo-pack' ),
3762
 
3763
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:412
3764
+ __( 'Title Separator', 'all-in-one-seo-pack' ),
3765
+
3766
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:413
3767
+ __( 'Separator Character', 'all-in-one-seo-pack' ),
3768
+
3769
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:415
3770
+ /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
3771
+ __( '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' ),
3772
+
3773
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:417
3774
+ __( 'Site Title', 'all-in-one-seo-pack' ),
3775
+
3776
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:421
3777
+ __( 'Knowledge Graph', 'all-in-one-seo-pack' ),
3778
+
3779
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:422
3780
+ __( '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' ),
3781
+
3782
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:439
3783
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag., 3 - "Pro", 4 - "Pro". */
3784
+ __( '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' ),
3785
+
3786
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:440
3787
+ __( 'Go to Local SEO Settings', 'all-in-one-seo-pack' ),
3788
+
3789
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:441
3790
+ __( 'Enable Schema Markup', 'all-in-one-seo-pack' ),
3791
+
3792
+ // Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:443
3793
+ __( 'Press enter to create a keyword', 'all-in-one-seo-pack' ),
3794
+
3795
+ // Reference: src/vue/pages/search-appearance/views/Media.vue:106
3796
+ __( 'Redirect Attachment URLs', 'all-in-one-seo-pack' ),
3797
+
3798
+ // Reference: src/vue/pages/search-appearance/views/Media.vue:107
3799
+ __( 'Attachment', 'all-in-one-seo-pack' ),
3800
+
3801
+ // Reference: src/vue/pages/search-appearance/views/Media.vue:108
3802
+ __( 'Attachment Parent', 'all-in-one-seo-pack' ),
3803
+
3804
+ // Reference: src/vue/pages/search-appearance/views/Media.vue:109
3805
+ __( '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' ),
3806
+
3807
  // Reference: src/vue/plugins/truSEO/Analysis/isExternalLink.js:22
3808
  __( 'Great! You are linking to external resources.', 'all-in-one-seo-pack' ),
3809
 
3813
  // Reference: src/vue/plugins/truSEO/Analysis/isExternalLink.js:31
3814
  __( 'No outbound links were found. Link out to external resources.', 'all-in-one-seo-pack' ),
3815
 
3816
+ // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:65
3817
+ /* Translators: 1 - Expand to the number of text sections not separated by subheadings, 2 - expands to the recommended number of words following a subheading. */
3818
+ __( '%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' ),
3819
+
3820
+ // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:74
3821
+ __( 'You are not using any subheadings, although your text is rather long. Try and add some subheadings.', 'all-in-one-seo-pack' ),
3822
+
3823
+ // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:84
3824
+ __( 'Great job!', 'all-in-one-seo-pack' ),
3825
+
3826
+ // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:92
3827
+ __( 'Subheading distribution', 'all-in-one-seo-pack' ),
3828
+
3829
+ // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:93
3830
+ __( 'You are not using any subheadings, but your text is short enough and probably doesn\'t need them.', 'all-in-one-seo-pack' ),
3831
+
3832
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:41
3833
  __( 'Good job!', 'all-in-one-seo-pack' ),
3834
 
3852
  // Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:98
3853
  __( ':-)', 'all-in-one-seo-pack' ),
3854
 
 
 
 
 
 
 
 
 
 
3855
  // Reference: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:23
3856
  /* Translators: 1 - Number of sentences. */
3857
  __( 'The text contains %1$d consecutive sentences starting with the same word. Try to mix things up!', 'all-in-one-seo-pack' ),
3862
  // Reference: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:32
3863
  __( 'There is enough variety in your sentences. That\'s great!', 'all-in-one-seo-pack' ),
3864
 
3865
+ // Reference: src/vue/plugins/truSEO/Analysis/passiveVoice.js:38
3866
+ __( 'You\'re using enough active voice. That\'s great!', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
3867
 
3868
+ // Reference: src/vue/plugins/truSEO/Analysis/passiveVoice.js:45
3869
+ __( 'Passive Voice', 'all-in-one-seo-pack' ),
3870
 
3871
+ // Reference: src/vue/plugins/truSEO/Analysis/passiveVoice.js:47
3872
+ /* Translators: 1 - Percentage of the sentences, 2 - Expected maximum percentage of sentences. */
3873
+ __( '%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' ),
3874
 
3875
  // Reference: src/vue/plugins/truSEO/Analysis/transitionWords.js:21
3876
  __( 'None of the sentences contain transition words. Use some', 'all-in-one-seo-pack' ),
3883
  __( 'Transition words', 'all-in-one-seo-pack' ),
3884
 
3885
  // Reference: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:56
 
3886
  // Reference: src/vue/plugins/truSEO/Analysis/transitionWords.js:41
3887
  __( 'Well done!', 'all-in-one-seo-pack' ),
3888
 
3889
+ // Reference: src/vue/pages/post-settings/views/Main.vue:55
3890
+ __( 'Preview Snippet Editor', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
3891
 
3892
+ // Reference: src/vue/plugins/truSEO/Analysis/isInternalLink.js:22
3893
+ __( 'You are linking to other resources on your website which is great.', 'all-in-one-seo-pack' ),
3894
 
3895
+ // Reference: src/vue/plugins/truSEO/Analysis/isInternalLink.js:30
3896
+ __( 'Internal links', 'all-in-one-seo-pack' ),
3897
 
3898
+ // Reference: src/vue/plugins/truSEO/Analysis/isInternalLink.js:31
3899
+ __( 'We couldn\'t find any internal links in your content. Add internal links in your content.', 'all-in-one-seo-pack' ),
 
3900
 
3901
  // Reference: src/vue/plugins/truSEO/Analysis/paragraphLength.js:23
3902
  __( 'At least one paragraph is long. Consider using short paragraphs.', 'all-in-one-seo-pack' ),
3907
  // Reference: src/vue/plugins/truSEO/Analysis/paragraphLength.js:31
3908
  __( 'You are using short paragraphs.', 'all-in-one-seo-pack' ),
3909
 
3910
+ // Reference: src/vue/plugins/truSEO/Analysis/sentenceLength.js:34
3911
+ __( 'Sentence length is looking great!', 'all-in-one-seo-pack' ),
3912
+
3913
+ // Reference: src/vue/plugins/truSEO/Analysis/sentenceLength.js:52
3914
+ __( 'Sentences Length', 'all-in-one-seo-pack' ),
3915
+
3916
+ // Reference: src/vue/plugins/truSEO/Analysis/sentenceLength.js:54
3917
+ /* Translators: 1 - Number of the sentences, 2 - Number of words, 3 - Recommended maximum of words. */
3918
+ __( '%1$s of the sentences contain more than %2$s words, which is more than the recommended maximum of %3$s. Try to shorten the sentences.', 'all-in-one-seo-pack' ),
3919
+
3920
  // Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:27
3921
  __( 'Please add some content first.', 'all-in-one-seo-pack' ),
3922
 
3992
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:83
3993
  __( 'Use your focus keyphrase more in your H2 and H3 subheadings', 'all-in-one-seo-pack' ),
3994
 
3995
+ // Reference: src/vue/pages/post-settings/views/Social.vue:60
3996
+ __( 'Social', 'all-in-one-seo-pack' ),
3997
+
3998
+ // Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:6
3999
+ __( 'Focus keyphrase', 'all-in-one-seo-pack' ),
4000
+
4001
+ // Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:8
4002
+ __( 'Keyphrase', 'all-in-one-seo-pack' ),
4003
+
4004
+ // Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:26
4005
+ __( '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' ),
4006
+
4007
+ // Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:27
4008
+ __( 'Preview & Edit', 'all-in-one-seo-pack' ),
4009
+
4010
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:238
4011
+ __( 'Facebook Preview', 'all-in-one-seo-pack' ),
4012
+
4013
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:239
4014
+ __( 'Image Source', 'all-in-one-seo-pack' ),
4015
+
4016
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:240
4017
+ __( 'Custom Field Name', 'all-in-one-seo-pack' ),
4018
+
4019
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:241
4020
+ __( 'Video URL', 'all-in-one-seo-pack' ),
4021
+
4022
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:245
4023
+ __( 'Facebook Image', 'all-in-one-seo-pack' ),
4024
+
4025
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:246
4026
+ __( 'Facebook Title', 'all-in-one-seo-pack' ),
4027
+
4028
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:247
4029
+ __( 'Facebook Description', 'all-in-one-seo-pack' ),
4030
+
4031
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:250
4032
+ __( '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' ),
4033
+
4034
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:252
4035
+ __( 'Click on tags below to insert variables into your site name.', 'all-in-one-seo-pack' ),
4036
+
4037
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:253
4038
+ // Reference: src/vue/pages/post-settings/views/General.vue:266
4039
+ __( 'Click on tags below to insert variables into your meta description.', 'all-in-one-seo-pack' ),
4040
+
4041
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:254
4042
+ __( 'Article Section', 'all-in-one-seo-pack' ),
4043
+
4044
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:255
4045
+ __( 'Article Tags', 'all-in-one-seo-pack' ),
4046
+
4047
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:256
4048
+ __( 'Press enter to create an article tag', 'all-in-one-seo-pack' ),
4049
+
4050
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:264
4051
+ __( 'Default', 'all-in-one-seo-pack' ),
4052
+
4053
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:264
4054
+ __( 'Default Object Type (Set in Social Networks)', 'all-in-one-seo-pack' ),
4055
+
4056
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:213
4057
+ __( 'Twitter Preview', 'all-in-one-seo-pack' ),
4058
+
4059
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:214
4060
+ __( 'Use Data from Facebook Tab', 'all-in-one-seo-pack' ),
4061
+
4062
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:217
4063
+ __( 'Twitter Image', 'all-in-one-seo-pack' ),
4064
+
4065
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:218
4066
+ __( 'Twitter Title', 'all-in-one-seo-pack' ),
4067
+
4068
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:219
4069
+ __( 'Twitter Description', 'all-in-one-seo-pack' ),
4070
+
4071
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:220
4072
+ __( 'Twitter Card Type', 'all-in-one-seo-pack' ),
4073
+
4074
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:234
4075
+ __( 'Default (Set under Social Networks)', 'all-in-one-seo-pack' ),
4076
+
4077
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:114
4078
+ __( 'Robots Setting', 'all-in-one-seo-pack' ),
4079
+
4080
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:115
4081
+ __( 'Use default settings', 'all-in-one-seo-pack' ),
4082
+
4083
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:116
4084
+ __( 'Canonical URL', 'all-in-one-seo-pack' ),
4085
+
4086
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:117
4087
+ __( 'Enter a URL to change the default Canonical URL', 'all-in-one-seo-pack' ),
4088
+
4089
+ // Reference: src/vue/pages/post-settings/views/General.vue:260
4090
+ __( 'General', 'all-in-one-seo-pack' ),
4091
+
4092
+ // Reference: src/vue/pages/post-settings/views/General.vue:261
4093
+ __( 'Snippet Preview', 'all-in-one-seo-pack' ),
4094
+
4095
+ // Reference: src/vue/pages/post-settings/views/General.vue:262
4096
+ __( 'Snippet Preview content here.', 'all-in-one-seo-pack' ),
4097
+
4098
+ // Reference: src/vue/pages/post-settings/views/General.vue:263
4099
+ __( 'Edit Snippet', 'all-in-one-seo-pack' ),
4100
+
4101
+ // Reference: src/vue/pages/post-settings/views/General.vue:264
4102
+ __( 'Click on tags below to insert variables into your title.', 'all-in-one-seo-pack' ),
4103
+
4104
+ // Reference: src/vue/pages/post-settings/views/General.vue:267
4105
+ __( 'Pillar Content', 'all-in-one-seo-pack' ),
4106
+
4107
+ // Reference: src/vue/pages/post-settings/views/General.vue:268
4108
+ __( 'Cornerstone content should be the most important and extensive articles on your site.', 'all-in-one-seo-pack' ),
4109
+
4110
+ // Reference: src/vue/pages/post-settings/views/General.vue:269
4111
+ __( 'Focus Keyphrase', 'all-in-one-seo-pack' ),
4112
+
4113
+ // Reference: src/vue/pages/post-settings/views/General.vue:270
4114
+ __( 'Additional Keyphrases', 'all-in-one-seo-pack' ),
4115
+
4116
+ // Reference: src/vue/pages/post-settings/views/General.vue:271
4117
+ __( 'Page Analysis', 'all-in-one-seo-pack' ),
4118
+
4119
+ // Reference: src/vue/pages/post-settings/views/General.vue:274
4120
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:44
4121
+ __( 'Readability', 'all-in-one-seo-pack' ),
4122
+
4123
+ // Reference: src/vue/pages/post-settings/views/General.vue:275
4124
+ __( 'Looking for meta keywords? Click on the advanced tab above to add/edit meta keywords.', 'all-in-one-seo-pack' ),
4125
+
4126
+ // Reference: src/vue/pages/post-settings/views/General.vue:284
4127
+ /* Translators: %s: The type of page (Post, Page, Category, Tag, etc.). */
4128
+ __( '%s Title', 'all-in-one-seo-pack' ),
4129
+
4130
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInIntroduction.js:24
4131
  /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4132
  __( '%1$s in introduction', 'all-in-one-seo-pack' ),
4142
  /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4143
  __( 'Your %1$s does not appear in the first paragraph. Make sure the topic is clear immediately.', 'all-in-one-seo-pack' ),
4144
 
4145
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:26
4146
+ __( 'Focus Keyphrase used in the URL.', 'all-in-one-seo-pack' ),
4147
+
4148
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:34
4149
+ __( 'Focus Keyphrase in URL', 'all-in-one-seo-pack' ),
4150
+
4151
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:35
4152
+ __( 'Focus Keyphrase not found in the URL.', 'all-in-one-seo-pack' ),
4153
+
4154
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:22
4155
  __( 'Focus Keyphrase found in content.', 'all-in-one-seo-pack' ),
4156
 
4160
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:31
4161
  __( 'Focus Keyphrase not found in content.', 'all-in-one-seo-pack' ),
4162
 
4163
+ // Reference: src/vue/pages/post-settings/views/ModalContent.vue:41
4164
+ __( 'Modal Content', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
4165
 
4166
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInDescription.js:21
4167
  /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4175
  /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4176
  __( '%1$s not found in meta description.', 'all-in-one-seo-pack' ),
4177
 
4178
+ // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:61
4179
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro", 3 - "Learn more link".. */
4180
+ __( 'This feature is only for licensed %1$s %2$s users. %3$s', 'all-in-one-seo-pack' ),
4181
+
4182
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseBeginningTitle.js:20
4183
  __( 'Focus Keyphrase used at the beginning of SEO title.', 'all-in-one-seo-pack' ),
4184
 
4197
  // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInTitle.js:31
4198
  __( 'Focus Keyphrase not found in SEO title.', 'all-in-one-seo-pack' ),
4199
 
4200
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:69
4201
+ __( 'Add Additional Keyphrases', 'all-in-one-seo-pack' ),
 
4202
 
4203
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:71
4204
+ /* Translators: 1 - "Pro" string, 2 - "Learn more link". */
4205
+ __( 'Upgrade to %1$s to add related keyphrases. %2$s', 'all-in-one-seo-pack' ),
4206
 
4207
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:60
4208
+ __( 'Add Focus Keyphrase', 'all-in-one-seo-pack' ),
 
4209
 
4210
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:62
4211
+ /* Translators: 1 - "Learn more link". */
4212
+ __( 'Not sure what keyphrases are used for? Check out our documentation for more information. %1$s', 'all-in-one-seo-pack' ),
4213
 
4214
  // Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:38
4215
  __( 'The content length is ok. Good job!', 'all-in-one-seo-pack' ),
4223
  // Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:73
4224
  __( 'The content is below the minimum of words. Add more content.', 'all-in-one-seo-pack' ),
4225
 
4226
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:25
4227
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4228
+ __( '%1$s length', 'all-in-one-seo-pack' ),
4229
 
4230
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:31
4231
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4232
+ __( 'No %1$s was set. Set a %1$s in order to calculate your SEO score.', 'all-in-one-seo-pack' ),
4233
+
4234
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:52
4235
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4236
+ __( '%1$s is slightly long. Try to make it shorter.', 'all-in-one-seo-pack' ),
4237
+
4238
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:62
4239
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
4240
+ __( '%1$s is too long. Try to make it shorter.', 'all-in-one-seo-pack' )
4241
  );
4242
  /* THIS IS THE END OF THE GENERATED FILE */
languages/aioseo-lite.pot CHANGED
@@ -3,97 +3,139 @@ msgstr ""
3
  "Content-Type: text/plain; charset=utf-8\n"
4
  "X-Generator: babel-plugin-makepot-aioseo\n"
5
 
6
- #: src/vue/pages/local-seo/router/paths.js:19
7
- msgid "Locations"
8
  msgstr ""
9
 
10
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:292
11
- msgid "Opening Hours"
12
  msgstr ""
13
 
14
- #: src/vue/router/index.js:51
15
- msgid "Are you sure you want to leave? you have unsaved changes!"
16
  msgstr ""
17
 
18
- #: src/vue/pages/feature-manager/views/Main.vue:20
19
- msgid "Feature Manager"
20
  msgstr ""
21
 
22
- # Translators: 1 - The plugin short name ("AIOSEO").
23
- #: src/vue/mixins/SeoSiteScore.js:18
24
- msgid "Connect with %1$s"
 
 
 
25
  msgstr ""
26
 
27
- #: src/vue/plugins/constants.js:1077
 
28
  msgid "Analytics"
29
  msgstr ""
30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  #: src/vue/pages/post-settings/registerScoreToggler.js:21
32
  msgid "N/A"
33
  msgstr ""
34
 
35
- #: src/vue/pages/dashboard/views/Main.vue:210
36
- msgid "Dashboard"
37
  msgstr ""
38
 
39
- #: src/vue/pages/tools/views/RobotsEditor.vue:236
40
- msgid "Robots.txt Editor"
 
41
  msgstr ""
42
 
43
- #: src/vue/pages/tools/views/HtaccessEditor.vue:40
44
- msgid ".htaccess Editor"
45
  msgstr ""
46
 
47
- #: src/vue/pages/tools/views/DatabaseTools.vue:202
48
- msgid "Bad Bot Blocker"
49
  msgstr ""
50
 
51
- #: src/vue/pages/tools/router/paths.js:46
52
- msgid "Import/Export"
53
  msgstr ""
54
 
55
- #: src/vue/pages/tools/router/paths.js:55
56
- msgid "Database Tools"
57
  msgstr ""
58
 
59
- #: src/vue/pages/tools/router/paths.js:64
60
- msgid "System Status"
61
  msgstr ""
62
 
63
- #: src/vue/pages/about/router/paths.js:19
64
- msgid "About Us"
65
  msgstr ""
66
 
67
- #: src/vue/pages/about/router/paths.js:28
68
- msgid "Getting Started"
69
  msgstr ""
70
 
71
- #: src/vue/pages/about/router/paths.js:37
72
- msgid "Lite vs. Pro"
 
 
 
 
73
  msgstr ""
74
 
75
  #: src/vue/pages/settings/views/Main.vue:29
76
  msgid "General Settings"
77
  msgstr ""
78
 
79
- #: src/vue/pages/tools/views/DatabaseTools.vue:192
80
  msgid "Webmaster Tools"
81
  msgstr ""
82
 
83
- #: src/vue/pages/tools/views/DatabaseTools.vue:193
84
  msgid "RSS Content"
85
  msgstr ""
86
 
87
- #: src/vue/pages/tools/views/DatabaseTools.vue:210
88
  msgid "Access Control"
89
  msgstr ""
90
 
91
- #: src/vue/pages/tools/views/DatabaseTools.vue:194
92
- msgid "Advanced"
93
  msgstr ""
94
 
95
- # Translators: This refers to social media profiles.
96
- #: src/vue/pages/social-networks/views/SocialProfiles.vue:25
97
  msgid "Social Profiles"
98
  msgstr ""
99
 
@@ -109,39 +151,15 @@ msgstr ""
109
  msgid "Pinterest"
110
  msgstr ""
111
 
112
- #: src/vue/pages/search-appearance/router/paths.js:19
113
- msgid "Global Settings"
114
- msgstr ""
115
-
116
- #: src/vue/pages/search-appearance/router/paths.js:28
117
- msgid "Content Types"
118
- msgstr ""
119
-
120
- #: src/vue/components/common/core/PriorityScore.vue:63
121
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:137
122
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:405
123
- msgid "Taxonomies"
124
- msgstr ""
125
-
126
- #: src/vue/pages/search-appearance/router/paths.js:46
127
- msgid "Media"
128
- msgstr ""
129
-
130
- #: src/vue/pages/search-appearance/router/paths.js:55
131
- msgid "Archives"
132
- msgstr ""
133
-
134
- #: src/vue/pages/sitemaps/router/paths.js:19
135
  msgid "General Sitemap"
136
  msgstr ""
137
 
138
  #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:9
139
- #: src/vue/plugins/constants.js:1115
140
  msgid "Video Sitemap"
141
  msgstr ""
142
 
143
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:7
144
- #: src/vue/plugins/constants.js:1126
145
  msgid "News Sitemap"
146
  msgstr ""
147
 
@@ -149,702 +167,788 @@ msgstr ""
149
  msgid "RSS Sitemap"
150
  msgstr ""
151
 
152
- #: src/vue/pages/setup-wizard/router/paths.js:19
153
- msgid "Welcome"
154
  msgstr ""
155
 
156
- #: src/vue/pages/setup-wizard/router/paths.js:28
157
- msgid "Import"
158
  msgstr ""
159
 
160
- #: src/vue/pages/setup-wizard/router/paths.js:37
161
- msgid "Category"
162
  msgstr ""
163
 
164
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:315
165
- msgid "Additional Site Information"
166
  msgstr ""
167
 
168
- #: src/vue/pages/setup-wizard/router/paths.js:55
169
- msgid "Choose Features"
170
  msgstr ""
171
 
172
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:249
173
- #: src/vue/pages/tools/views/DatabaseTools.vue:195
174
- msgid "Search Appearance"
175
  msgstr ""
176
 
177
- #: src/vue/pages/setup-wizard/router/paths.js:73
178
- msgid "Smart Recommendations"
179
  msgstr ""
180
 
181
- #: src/vue/pages/setup-wizard/router/paths.js:82
182
- msgid "License Key"
183
  msgstr ""
184
 
185
- #: src/vue/pages/setup-wizard/router/paths.js:91
186
- msgid "Success"
187
  msgstr ""
188
 
189
- #: src/vue/pages/seo-analysis/router/paths.js:19
190
- msgid "SEO Audit Checklist"
191
  msgstr ""
192
 
193
- #: src/vue/pages/seo-analysis/router/paths.js:28
194
- msgid "Analyze Competitor Site"
195
  msgstr ""
196
 
197
- #: src/vue/pages/local-seo/views/OpeningHours.vue:31
198
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:280
199
- msgid "Opening Hours Settings"
200
  msgstr ""
201
 
202
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:281
203
- msgid "Show Opening Hours"
 
204
  msgstr ""
205
 
206
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:282
207
- msgid "Display Opening Hours"
208
  msgstr ""
209
 
210
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:283
211
- msgid "Labels"
212
  msgstr ""
213
 
214
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:284
215
- msgid "Closed label"
216
  msgstr ""
217
 
218
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:285
219
- msgid "Text to display when 'Closed' setting is checked"
220
  msgstr ""
221
 
222
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:286
223
- msgid "Open 24h label"
224
  msgstr ""
225
 
226
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:287
227
- msgid "Text to display when 'Open 24h' setting is checked"
 
 
228
  msgstr ""
229
 
230
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:288
231
- msgid "Open 24/7"
232
  msgstr ""
233
 
234
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:289
235
- msgid "Use 24h format"
 
 
 
236
  msgstr ""
237
 
238
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:290
239
- msgid "Timezone"
240
  msgstr ""
241
 
242
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:291
243
- msgid "Select your timezone:"
 
 
 
244
  msgstr ""
245
 
246
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:293
247
- msgid "Monday"
248
  msgstr ""
249
 
250
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:294
251
- msgid "Tuesday"
 
 
 
 
 
252
  msgstr ""
253
 
254
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:295
255
- msgid "Wednesday"
256
  msgstr ""
257
 
258
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:296
259
- msgid "Thursday"
 
 
260
  msgstr ""
261
 
262
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:297
263
- msgid "Friday"
264
  msgstr ""
265
 
266
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:298
267
- msgid "Saturday"
268
  msgstr ""
269
 
270
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:299
271
- msgid "Sunday"
272
  msgstr ""
273
 
274
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:300
275
- msgid "Open 24h"
276
  msgstr ""
277
 
278
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:301
279
- msgid "Closed"
 
 
 
280
  msgstr ""
281
 
282
- #: src/vue/pages/local-seo/views/lite/Locations.vue:100
283
- msgid "Locations Settings"
 
 
284
  msgstr ""
285
 
286
- #: src/vue/pages/local-seo/views/lite/Locations.vue:106
287
- msgid "Business Info"
288
  msgstr ""
289
 
290
- #: src/vue/components/lite/local-business/Name.vue:16
291
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:120
292
- msgid "name"
293
- msgstr ""
294
-
295
- #: src/vue/components/lite/local-business/Name.vue:17
296
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:121
297
- msgid "Your name or company name."
298
  msgstr ""
299
 
300
- #: src/vue/pages/local-seo/views/lite/Locations.vue:108
301
- msgid "Business Type"
302
  msgstr ""
303
 
304
- #: src/vue/pages/local-seo/views/lite/Locations.vue:109
305
- msgid "URLs"
306
  msgstr ""
307
 
308
- #: src/vue/pages/local-seo/views/lite/Locations.vue:115
309
- msgid "Business Image"
310
  msgstr ""
311
 
312
- #: src/vue/pages/local-seo/views/lite/Locations.vue:116
313
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:328
314
- #: src/vue/pages/social-networks/views/Twitter.vue:447
315
- msgid "Upload or Select Image"
316
  msgstr ""
317
 
318
- #: src/vue/pages/local-seo/views/lite/Locations.vue:117
319
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:329
320
- #: src/vue/pages/social-networks/views/Twitter.vue:448
321
- msgid "Paste your image URL or select a new image"
322
  msgstr ""
323
 
324
- #: src/vue/pages/local-seo/views/lite/Locations.vue:118
325
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:330
326
- msgid ""
327
- "Minimum size: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or "
328
- "WEBP format."
329
  msgstr ""
330
 
331
- #: src/vue/pages/local-seo/views/lite/Locations.vue:119
332
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:331
333
- #: src/vue/pages/social-networks/views/Twitter.vue:459
334
- msgid "Remove"
335
  msgstr ""
336
 
337
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:129
338
- msgid "Website URL:"
339
  msgstr ""
340
 
341
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:130
342
- msgid "About Page URL:"
343
  msgstr ""
344
 
345
- #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:131
346
- msgid "Contact Page URL:"
347
  msgstr ""
348
 
349
- #: src/vue/components/common/core/PriorityScore.vue:77
350
- #: src/vue/pages/local-seo/views/lite/Locations.vue:124
351
- msgid "default"
352
  msgstr ""
353
 
354
- #: src/vue/pages/local-seo/views/lite/Locations.vue:125
355
- msgid "Animal Shelter"
356
  msgstr ""
357
 
358
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:304
359
- msgid "Select your timezone"
360
  msgstr ""
361
 
362
- #: src/vue/pages/local-seo/views/lite/Locations.vue:111
363
- msgid "Business Contact Info"
 
 
 
364
  msgstr ""
365
 
366
- #: src/vue/pages/local-seo/views/lite/Locations.vue:113
367
- msgid "Payment Info"
368
  msgstr ""
369
 
370
- #: src/vue/components/common/core/FeatureCard.vue:125
371
- #: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:141
372
- #: src/vue/pages/sitemaps/views/pro/VideoSitemapActivate.vue:122
373
- msgid ""
374
- "An error occurred while activating the addon. Please upload it manually or "
375
- "contact support for more information."
376
  msgstr ""
377
 
378
- #: src/vue/pages/connect-pro/views/Main.vue:45
379
- msgid "Connecting..."
380
  msgstr ""
381
 
382
- #: src/vue/pages/dashboard/views/Main.vue:201
383
- msgid "Smart Schema"
384
  msgstr ""
385
 
386
- #: src/vue/pages/local-seo/views/Main.vue:21
387
- #: src/vue/plugins/constants.js:1104
388
- msgid "Local SEO"
389
  msgstr ""
390
 
391
- #: src/vue/pages/dashboard/views/Main.vue:203
392
- msgid "Advanced support for e-commerce"
393
  msgstr ""
394
 
395
- #: src/vue/pages/dashboard/views/Main.vue:204
396
- msgid "Advanced Google Analytics tracking"
397
  msgstr ""
398
 
399
- #: src/vue/pages/dashboard/views/Main.vue:205
400
- msgid "Video SEO Module"
401
  msgstr ""
402
 
403
- #: src/vue/pages/dashboard/views/Main.vue:206
404
- msgid "Greater control over display settings"
405
  msgstr ""
406
 
407
- #: src/vue/pages/setup-wizard/views/Success.vue:152
408
- msgid "SEO for Categories, Tags and Custom Taxonomies"
 
 
409
  msgstr ""
410
 
411
- #: src/vue/pages/dashboard/views/Main.vue:208
412
- msgid "Social meta for Categories, Tags and Custom Taxonomies"
 
 
 
413
  msgstr ""
414
 
415
- #: src/vue/pages/dashboard/views/Main.vue:209
416
- msgid "Ad free (no banner adverts)"
417
  msgstr ""
418
 
419
- #: src/vue/pages/dashboard/views/Main.vue:211
420
- msgid "There are no new notifications at this moment."
421
  msgstr ""
422
 
423
- #: src/vue/pages/dashboard/views/Main.vue:212
424
- msgid "See all dismissed notifications."
425
  msgstr ""
426
 
427
- #: src/vue/pages/dashboard/views/Main.vue:213
428
- msgid "SEO Site Score"
429
  msgstr ""
430
 
431
- #: src/vue/pages/dashboard/views/Main.vue:214
432
- msgid "Support"
 
433
  msgstr ""
434
 
435
  # Translators: 1 - The plugin name ("All in One SEO").
436
- #: src/vue/pages/dashboard/views/Main.vue:216
437
- msgid "Read the %1$s user guide"
438
  msgstr ""
439
 
440
- #: src/vue/pages/dashboard/views/Main.vue:217
441
- msgid "Access our Premium Support"
 
 
442
  msgstr ""
443
 
444
- #: src/vue/pages/dashboard/views/Main.vue:218
445
- msgid "View the Changelog"
446
  msgstr ""
447
 
448
- #: src/vue/pages/dashboard/views/Main.vue:219
449
- msgid "Watch video tutorials"
450
  msgstr ""
451
 
452
- #: src/vue/pages/dashboard/views/Main.vue:220
453
- msgid "Getting started? Read the Beginners Guide"
454
  msgstr ""
455
 
456
- #: src/vue/pages/dashboard/views/Main.vue:221
457
- msgid "Quicklinks"
458
  msgstr ""
459
 
460
- #: src/vue/pages/dashboard/views/Main.vue:222
461
- msgid ""
462
- "You can use these quicklinks to quickly access our settings pages to adjust "
463
- "your site's SEO settings."
464
  msgstr ""
465
 
466
- #: src/vue/pages/dashboard/views/Main.vue:224
467
- msgid ""
468
- "Configure how your website content will look in Google, Bing and other "
469
- "search engines."
470
  msgstr ""
471
 
472
- #: src/vue/pages/seo-analysis/views/Main.vue:21
473
- msgid "SEO Analysis"
474
  msgstr ""
475
 
476
- #: src/vue/pages/dashboard/views/Main.vue:226
477
- msgid ""
478
- "Check how your site scores with our SEO analyzer and compare against your "
479
- "competitor's site."
480
  msgstr ""
481
 
482
- #: src/vue/pages/dashboard/views/Main.vue:227
483
  msgid ""
484
- "Improve local SEO rankings with schema for business address, open hours, "
485
- "contact, and more."
486
  msgstr ""
487
 
488
- #: src/vue/pages/social-networks/views/Main.vue:24
489
- #: src/vue/pages/tools/views/DatabaseTools.vue:196
490
- msgid "Social Networks"
491
  msgstr ""
492
 
493
- #: src/vue/pages/dashboard/views/Main.vue:229
494
  msgid ""
495
- "Setup Open Graph for Facebook, Twitter, etc. to show the right content / "
496
- "thumbnail preview."
497
  msgstr ""
498
 
499
- #: src/vue/pages/tools/views/Main.vue:29
500
- msgid "Tools"
501
  msgstr ""
502
 
503
- #: src/vue/pages/dashboard/views/Main.vue:231
504
  msgid ""
505
- "Fine-tune your site with our powerful tools including Robots.txt editor, "
506
- "import/export and more."
507
  msgstr ""
508
 
509
- #: src/vue/pages/sitemaps/views/Main.vue:26
510
- #: src/vue/pages/tools/views/DatabaseTools.vue:197
511
- #: src/vue/plugins/constants.js:1058
512
- msgid "Sitemaps"
513
  msgstr ""
514
 
515
- #: src/vue/pages/dashboard/views/Main.vue:233
516
- msgid "Manage all of your sitemap settings, including XML, Video, News and more."
517
  msgstr ""
518
 
519
- # Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro".
520
- #: src/vue/pages/dashboard/views/Main.vue:235
521
- msgid "Get more features in %1$s %2$s:"
522
  msgstr ""
523
 
524
- # Translators: 1 - "Pro", 2 - A percentage ("50%").
525
- #: src/vue/pages/dashboard/views/Main.vue:237
526
- msgid "Upgrade to %1$s and Save %2$s"
527
  msgstr ""
528
 
529
- #: src/vue/components/common/core/Notifications.vue:95
530
- msgid "Dismiss All"
531
  msgstr ""
532
 
533
- #: src/vue/pages/dashboard/views/Main.vue:239
534
- msgid "Relaunch Setup Wizard"
535
  msgstr ""
536
 
537
- #: src/vue/pages/dashboard/views/Main.vue:247
538
- msgid "You have %1$s more notifications"
 
 
539
  msgstr ""
540
 
541
- # Translators: 1 - "Pro".
542
- #: src/vue/components/common/Cta.vue:236
543
- msgid "Upgrade to %1$s"
544
  msgstr ""
545
 
546
- # Translators: 1 - The plugin name ("All in One SEO").
547
- #: src/vue/components/common/Cta.vue:238
548
- msgid "This feature is only available for licensed %1$s %2$s users."
549
  msgstr ""
550
 
551
- #: src/vue/components/common/Cta.vue:239
552
  msgid ""
553
- "%1$s %2$s comes with many additional features to help take your site's SEO "
554
- "to the next level!"
555
  msgstr ""
556
 
557
- #: src/vue/components/common/Cta.vue:240
558
- msgid "Learn more about all features"
 
 
559
  msgstr ""
560
 
561
- #: src/vue/components/common/Cta.vue:241
562
- msgid "See all features"
563
  msgstr ""
564
 
565
- #: src/vue/pages/social-networks/views/Facebook.vue:678
566
- msgid "General Facebook Settings"
567
  msgstr ""
568
 
569
- #: src/vue/pages/social-networks/views/Facebook.vue:679
570
- msgid ""
571
- "Enable this feature if you want Facebook and other social media to display "
572
- "a preview with images and a text excerpt when a link to your site is shared."
573
- msgstr ""
574
 
575
- #: src/vue/pages/social-networks/views/Facebook.vue:680
576
- msgid "Enable Open Graph Markup"
577
  msgstr ""
578
 
579
- #: src/vue/pages/social-networks/views/Twitter.vue:439
580
- msgid "Default Post Image Source"
581
  msgstr ""
582
 
583
- #: src/vue/pages/social-networks/views/Twitter.vue:440
584
- msgid "Default Term Image Source"
585
  msgstr ""
586
 
587
- #: src/vue/pages/social-networks/views/Twitter.vue:441
588
- msgid "Width"
589
  msgstr ""
590
 
591
- #: src/vue/pages/social-networks/views/Twitter.vue:442
592
- msgid "Height"
593
  msgstr ""
594
 
595
- #: src/vue/pages/social-networks/views/Twitter.vue:443
596
- msgid "Post Custom Field Name"
597
  msgstr ""
598
 
599
- #: src/vue/pages/social-networks/views/Twitter.vue:444
600
- msgid "Term Custom Field Name"
 
 
601
  msgstr ""
602
 
603
- #: src/vue/pages/social-networks/views/Facebook.vue:687
604
- msgid "Default Post Facebook Image"
605
  msgstr ""
606
 
607
- #: src/vue/pages/social-networks/views/Facebook.vue:688
608
- msgid "Default Term Facebook Image"
609
  msgstr ""
610
 
611
- #: src/vue/pages/social-networks/views/Facebook.vue:691
612
- msgid ""
613
- "Minimum size: 200px x 200px, ideal ratio 1.91:1, 8MB max. (eg: 1640px x "
614
- "856px or 3280px x 1712px for retina screens)"
615
  msgstr ""
616
 
617
- #: src/vue/pages/social-networks/views/Twitter.vue:451
618
- msgid "Home Page Settings"
619
  msgstr ""
620
 
621
- #: src/vue/pages/social-networks/views/Facebook.vue:693
622
- msgid "The Title of the Page or Site you are Sharing"
623
  msgstr ""
624
 
625
- # Translators: 1 - The plugin name ("All in One SEO").
626
- #: src/vue/pages/social-networks/views/Facebook.vue:695
627
- msgid ""
628
- "This is what your page configured with %1$s will look like when shared via "
629
- "Facebook. The site title and description will be automatically added."
630
  msgstr ""
631
 
632
- #: src/vue/pages/social-networks/views/Facebook.vue:696
633
- msgid "Image"
634
  msgstr ""
635
 
636
- #: src/vue/pages/social-networks/views/Facebook.vue:697
637
- msgid "Site Name"
 
638
  msgstr ""
639
 
640
- #: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:40
641
- msgid "Title"
642
  msgstr ""
643
 
644
- #: src/vue/pages/social-networks/views/Twitter.vue:454
645
- msgid "Use the home page title"
646
  msgstr ""
647
 
648
- #: src/vue/pages/social-networks/views/Facebook.vue:700
649
- msgid "Click on the tags below to insert variables into your site name."
650
  msgstr ""
651
 
652
- #: src/vue/pages/social-networks/views/Twitter.vue:455
653
- msgid "Click on the tags below to insert variables into your home page title."
654
  msgstr ""
655
 
656
- #: src/vue/pages/social-networks/views/Twitter.vue:456
657
- msgid "Description"
658
  msgstr ""
659
 
660
- #: src/vue/pages/social-networks/views/Twitter.vue:457
661
- msgid "Use the home page description"
662
  msgstr ""
663
 
664
- #: src/vue/pages/social-networks/views/Twitter.vue:458
665
- msgid "Click on the tags below to insert variables into your description."
 
666
  msgstr ""
667
 
668
- #: src/vue/pages/search-appearance/views/Advanced.vue:376
669
- msgid "Advanced Settings"
670
  msgstr ""
671
 
672
- #: src/vue/pages/social-networks/views/Facebook.vue:707
673
- msgid "Facebook Admin ID"
674
  msgstr ""
675
 
676
- #: src/vue/pages/social-networks/views/Facebook.vue:708
677
- msgid "Facebook App ID"
678
  msgstr ""
679
 
680
- #: src/vue/pages/social-networks/views/Facebook.vue:709
681
- msgid "Facebook Author URL"
682
  msgstr ""
683
 
684
- #: src/vue/pages/social-networks/views/Facebook.vue:710
685
- msgid ""
686
- "Enter your Facebook Admin ID here. You can enter multiple Facebook Admin "
687
- "IDs by separating them with a comma."
688
  msgstr ""
689
 
690
- #: src/vue/pages/social-networks/views/Facebook.vue:711
691
  msgid ""
692
- "The Facebook App ID of the site's app. In order to use Facebook Insights, "
693
- "you must add the App ID to your page. Insights lets you view analytics for "
694
- "traffic to your site from Facebook. Find the App ID in your App Dashboard."
695
  msgstr ""
696
 
697
- #: src/vue/pages/social-networks/views/Facebook.vue:712
698
  msgid ""
699
- "Will be overriden if the Facebook author URL is present in the individual "
700
- "User Profile."
701
  msgstr ""
702
 
703
- #: src/vue/pages/social-networks/views/Facebook.vue:713
704
- msgid "How to get your Facebook Admin ID"
705
  msgstr ""
706
 
707
- #: src/vue/pages/social-networks/views/Facebook.vue:714
708
- msgid "How to get your Facebook App ID"
 
 
709
  msgstr ""
710
 
711
- #: src/vue/pages/social-networks/views/Facebook.vue:715
712
- msgid "How to get your Facebook Author URL"
 
 
713
  msgstr ""
714
 
715
- #: src/vue/pages/social-networks/views/Facebook.vue:716
716
- msgid "Show Facebook Author"
717
  msgstr ""
718
 
719
- #: src/vue/pages/social-networks/views/Facebook.vue:717
720
- msgid "Default Post Type Object Types"
 
 
721
  msgstr ""
722
 
723
- #: src/vue/pages/social-networks/views/Facebook.vue:718
724
- msgid "Default Taxonomy Object Types"
725
  msgstr ""
726
 
727
- #: src/vue/pages/social-networks/views/Facebook.vue:719
728
  msgid ""
729
- "Default Taxonomy Object Types are only available for licensed %1$s users. "
730
- "%2$s"
731
  msgstr ""
732
 
733
- #: src/vue/pages/social-networks/views/Twitter.vue:466
734
- msgid "Default Term Image Source is only available for licensed %1$s users. %2$s"
735
  msgstr ""
736
 
737
- #: src/vue/pages/social-networks/views/Facebook.vue:721
738
- msgid "Automatically Generate Article Tags"
739
  msgstr ""
740
 
741
- #: src/vue/pages/social-networks/views/Facebook.vue:722
742
- msgid "Use Keywords in Article Tags"
 
743
  msgstr ""
744
 
745
- #: src/vue/pages/social-networks/views/Facebook.vue:723
746
- msgid "Use Categories in Article Tags"
 
747
  msgstr ""
748
 
749
- #: src/vue/pages/social-networks/views/Facebook.vue:724
750
- msgid "Use Post Tags in Article Tags"
751
  msgstr ""
752
 
753
- # Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag.
754
- #: src/vue/pages/social-networks/views/Twitter.vue:462
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid ""
756
- "The home page settings below have been disabled because you are using a "
757
- "static home page. You can %1$sedit your home page settings%2$s directly to "
758
- "change the title, meta and image."
759
  msgstr ""
760
 
761
- #: src/vue/pages/post-settings/views/Facebook.vue:244
762
- msgid "Object Type"
763
  msgstr ""
764
 
765
- #: src/vue/pages/setup-wizard/views/Success.vue:148
766
- msgid "Video and News Sitemaps"
767
  msgstr ""
768
 
769
- #: src/vue/pages/setup-wizard/views/Success.vue:149
770
- msgid "Image SEO Optimization"
771
  msgstr ""
772
 
773
- #: src/vue/pages/setup-wizard/views/Success.vue:150
774
- #: src/vue/pages/tools/views/DatabaseTools.vue:218
775
- msgid "Local Business SEO"
776
  msgstr ""
777
 
778
- #: src/vue/pages/setup-wizard/views/Success.vue:151
779
- msgid "Advanced WooCommerce"
780
  msgstr ""
781
 
782
- #: src/vue/pages/setup-wizard/views/Success.vue:153
783
- msgid "And many more..."
784
  msgstr ""
785
 
786
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:147
787
- msgid "Activate All Features"
788
  msgstr ""
789
 
790
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:148
791
- msgid "Deactivate All Features"
792
  msgstr ""
793
 
794
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:149
795
- msgid "Search for Features..."
796
  msgstr ""
797
 
798
- # Translators: 1 - The plugin name ("All in One SEO").
799
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:151
800
- msgid "Upgrade %1$s to Pro and Unlock all Features!"
801
  msgstr ""
802
 
803
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:152
804
- msgid "Upgrade to Pro and Unlock All Features"
805
  msgstr ""
806
 
807
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:153
808
- msgid "A valid license key is required in order to use our addons."
809
  msgstr ""
810
 
811
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:154
812
- msgid "Enter License Key"
 
813
  msgstr ""
814
 
815
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:155
816
- msgid "Purchase License"
 
817
  msgstr ""
818
 
819
- #: src/vue/pages/feature-manager/views/FeatureManager.vue:159
820
  msgid ""
821
- "Globally control the Title attribute and Alt text for images in your "
822
- "content. These attributes are essential for both accessibility and SEO."
823
  msgstr ""
824
 
825
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:10
826
  msgid ""
827
- "The Video Sitemap works in much the same way as the XML Sitemap module, it "
828
- "generates an XML Sitemap specifically for video content on your site. "
829
- "Search engines use this information to display rich snippet information in "
830
- "search results."
831
  msgstr ""
832
 
833
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
834
  msgid ""
835
- "Our Google News Sitemap lets you control which content you submit to Google "
836
- "News and only contains articles that were published in the last 48 hours. "
837
- "In order to submit a News Sitemap to Google, you must have added your site "
838
- "to Google’s Publisher Center and had it approved."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
839
  msgstr ""
840
 
841
- #: src/vue/pages/local-seo/views/lite/Locations.vue:102
842
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:279
843
  msgid ""
844
- "Local Business schema markup enables you to tell Google about your "
845
- "business, including your business name, address and phone number, opening "
846
- "hours and price range. This information may be displayed as a Knowledge "
847
- "Graph card or business carousel."
 
 
 
 
 
 
 
 
 
 
 
 
 
848
  msgstr ""
849
 
850
  # Translators: 1 - The plugin name ("All in One SEO").
@@ -857,42 +961,36 @@ msgid ""
857
  "find all of the content on your site."
858
  msgstr ""
859
 
860
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:261
861
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:11
862
  #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:11
863
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:126
864
  msgid "Enable Sitemap"
865
  msgstr ""
866
 
867
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:127
868
  msgid "Sitemap Settings"
869
  msgstr ""
870
 
871
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:128
872
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:400
873
  msgid "Enable Sitemap Indexes"
874
  msgstr ""
875
 
876
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:129
877
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:401
878
  msgid ""
879
  "Organize sitemap entries into distinct files in your sitemap. We recommend "
880
  "you enable this setting if your sitemap contains more than 1,000 URLs."
881
  msgstr ""
882
 
883
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:402
884
  msgid "Links Per Sitemap"
885
  msgstr ""
886
 
887
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:13
888
  #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:13
889
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:131
890
  msgid "Noindexed content will not be displayed in your sitemap."
891
  msgstr ""
892
 
893
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:14
894
  #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:14
895
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:132
896
  msgid "Do you get a blank sitemap or 404 error?"
897
  msgstr ""
898
 
@@ -900,52 +998,49 @@ msgstr ""
900
  msgid "Open Sitemap"
901
  msgstr ""
902
 
903
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:403
904
  msgid ""
905
  "Allows you to specify the maximum number of posts in a sitemap (up to "
906
  "50,000)."
907
  msgstr ""
908
 
909
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:135
910
  msgid "Automatically Ping Search Engines"
911
  msgstr ""
912
 
913
- #: src/vue/components/common/core/PriorityScore.vue:62
914
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:136
915
  msgid "Post Types"
916
  msgstr ""
917
 
918
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:138
919
  msgid "Date Archive Sitemap"
920
  msgstr ""
921
 
922
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:139
923
  msgid "Include Date Archives in your sitemap."
924
  msgstr ""
925
 
926
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:140
927
  msgid "Author Sitemap"
928
  msgstr ""
929
 
930
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:141
931
  msgid "Include Author Archives in your sitemap."
932
  msgstr ""
933
 
934
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:260
935
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:142
936
  msgid "Include All Post Types"
937
  msgstr ""
938
 
939
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:143
940
  msgid "Select which Post Types appear in your sitemap."
941
  msgstr ""
942
 
943
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:144
944
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:408
945
  msgid "Include All Taxonomies"
946
  msgstr ""
947
 
948
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:145
949
  msgid "Select which Taxonomies appear in your sitemap."
950
  msgstr ""
951
 
@@ -961,21 +1056,13 @@ msgid ""
961
  "information manually."
962
  msgstr ""
963
 
964
- #: src/vue/pages/search-appearance/views/Advanced.vue:401
965
- msgid "Exclude Posts / Pages"
966
- msgstr ""
967
-
968
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:414
969
- msgid "Exclude Terms"
970
- msgstr ""
971
-
972
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:415
973
  msgid ""
974
  "Any posts that are assigned to these terms will also be excluded from your "
975
  "sitemap."
976
  msgstr ""
977
 
978
- #: src/vue/pages/post-settings/views/Advanced.vue:118
979
  msgid "Priority Score"
980
  msgstr ""
981
 
@@ -1007,1180 +1094,1136 @@ msgstr ""
1007
  msgid "Dynamically creates the XML Sitemap instead of using a static file."
1008
  msgstr ""
1009
 
1010
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:436
1011
  msgid ""
1012
  "We recommend setting the amount of URLs per sitemap index to 1,000 or less. "
1013
  "The more links, the longer it will take for the sitemap to load."
1014
  msgstr ""
1015
 
1016
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:437
1017
  msgid ""
1018
  "Your static sitemap is currently being regenerated. This may take some time "
1019
  "based on the size of your site. This may also cause the sitemap content to "
1020
  "look outdated."
1021
  msgstr ""
1022
 
1023
- #: src/vue/pages/search-appearance/views/Media.vue:106
1024
- msgid "Redirect Attachment URLs"
1025
  msgstr ""
1026
 
1027
- #: src/vue/pages/search-appearance/views/Media.vue:107
1028
- msgid "Attachment"
1029
  msgstr ""
1030
 
1031
- #: src/vue/pages/search-appearance/views/Media.vue:108
1032
- msgid "Attachment Parent"
1033
  msgstr ""
1034
 
1035
- #: src/vue/pages/search-appearance/views/Media.vue:109
1036
- msgid ""
1037
- "We recommended redirecting attachment URL's back to the attachment since "
1038
- "the default WordPress attachment pages have little SEO value."
1039
  msgstr ""
1040
 
1041
- #: src/vue/pages/tools/views/DatabaseTools.vue:214
1042
- #: src/vue/plugins/constants.js:1093
1043
- msgid "Image SEO"
1044
  msgstr ""
1045
 
1046
- #: src/vue/pages/search-appearance/views/Media.vue:115
1047
- msgid "Title & Description"
1048
  msgstr ""
1049
 
1050
- #: src/vue/pages/search-appearance/views/Media.vue:121
1051
- msgid "Schema Markup"
1052
  msgstr ""
1053
 
1054
- #: src/vue/pages/search-appearance/views/Taxonomies.vue:90
1055
- msgid "Upgrade to Pro and Unlock Custom Taxonomies"
1056
  msgstr ""
1057
 
1058
- # Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro".
1059
- #: src/vue/pages/search-appearance/views/Taxonomies.vue:92
1060
- msgid ""
1061
- "%1$s %2$s lets you set the SEO title and description for custom taxonomies. "
1062
- "You can also control all of the robots meta and other options just like the "
1063
- "default category and tags taxonomies."
1064
  msgstr ""
1065
 
1066
- #: src/vue/pages/search-appearance/views/Taxonomies.vue:93
1067
- msgid "Custom Taxonomy Support is only available for licensed %1$s %2$s users."
 
1068
  msgstr ""
1069
 
1070
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:114
1071
- msgid "Title Attribute Format"
 
 
1072
  msgstr ""
1073
 
1074
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:115
1075
- msgid "Strip Punctuation for Title Attributes"
1076
  msgstr ""
1077
 
1078
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:116
1079
- msgid "Click on the tags below to insert variables into your title attribute."
1080
  msgstr ""
1081
 
1082
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:117
1083
- msgid "Alt Tag Attribute Format"
 
1084
  msgstr ""
1085
 
1086
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:118
1087
- msgid "Click on the tags below to insert variables into your alt tag attribute."
 
1088
  msgstr ""
1089
 
1090
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:119
1091
- msgid "Strip Punctuation for Alt Attributes"
 
1092
  msgstr ""
1093
 
1094
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:17
1095
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:17
1096
- msgid "This feature requires one of the following plans:"
1097
  msgstr ""
1098
 
1099
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:122
1100
- msgid "Upgrade to Pro and Unlock Image SEO"
 
1101
  msgstr ""
1102
 
1103
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:123
1104
- msgid "Image SEO is only available for licensed %1$s %2$s users."
1105
  msgstr ""
1106
 
1107
- #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:132
1108
- msgid "Set title attributes"
1109
  msgstr ""
1110
 
1111
- #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:133
1112
- msgid "Set alt tag attributes"
1113
  msgstr ""
1114
 
1115
- #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:134
1116
- msgid "Strip punctuation for titles"
 
1117
  msgstr ""
1118
 
1119
- #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:135
1120
- msgid "Strip punctuation for alt tags"
1121
  msgstr ""
1122
 
1123
- #: src/vue/pages/tools/views/partials/ExportSettings.vue:109
1124
- msgid "Export Settings"
1125
  msgstr ""
1126
 
1127
- #: src/vue/pages/tools/views/partials/ExportSettings.vue:110
1128
- msgid "Export All Settings"
1129
  msgstr ""
1130
 
1131
- #: src/vue/pages/tools/views/partials/ExportSettings.vue:111
1132
- msgid "Export All Post Types"
1133
  msgstr ""
1134
 
1135
- #: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:144
1136
- msgid "Show in Search Results"
 
 
1137
  msgstr ""
1138
 
1139
- #: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:145
1140
- msgid "Click on the tags below to insert variables into your title."
 
 
 
 
1141
  msgstr ""
1142
 
1143
- #: src/vue/pages/setup-wizard/views/Category.vue:150
1144
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:256
1145
- msgid "Meta Description"
 
 
 
1146
  msgstr ""
1147
 
1148
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:254
1149
- msgid "Click on the tags below to insert variables into your meta description."
 
 
 
 
1150
  msgstr ""
1151
 
1152
- #: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:148
1153
- msgid "Selecting \"No\" will no-index this page."
1154
  msgstr ""
1155
 
1156
- # Translators: 1 - The type of page (Post, Page, Category, Tag, etc.).
1157
- #: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:163
1158
- msgid "%1$s Title"
1159
  msgstr ""
1160
 
1161
- #: src/vue/pages/search-appearance/views/ContentTypes.vue:70
1162
- #: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:51
1163
- msgid "Custom Fields"
1164
  msgstr ""
1165
 
1166
- #: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:52
1167
- msgid ""
1168
- "List of custom field names to include in the SEO Page Analysis. Add one per "
1169
- "line."
1170
  msgstr ""
1171
 
1172
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
1173
- #: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:54
1174
- msgid ""
1175
- "%1$s %2$s gives you advanced customizations for our page analysis feature, "
1176
- "letting you add custom fields to analyze."
1177
- msgstr ""
1178
-
1179
- #: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:55
1180
- msgid "Upgrade to Pro and Unlock Custom Fields"
1181
  msgstr ""
1182
 
1183
- #: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:56
1184
- msgid "Custom Fields are only available for licensed %1$s %2$s users."
1185
  msgstr ""
1186
 
1187
- #: src/vue/components/common/core/RobotsMeta.vue:106
1188
- #: src/vue/components/common/core/SingleRobotsMeta.vue:168
1189
- msgid "None"
1190
  msgstr ""
1191
 
1192
- #: src/vue/pages/post-settings/views/lite/Schema.vue:55
1193
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:70
1194
- msgid "Schema Type"
1195
  msgstr ""
1196
 
1197
- #: src/vue/pages/post-settings/views/lite/Schema.vue:56
1198
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:71
1199
- msgid "Article Type"
1200
  msgstr ""
1201
 
1202
- #: src/vue/plugins/constants.js:1239
1203
- msgid "Article"
1204
  msgstr ""
1205
 
1206
- #: src/vue/pages/post-settings/views/lite/Schema.vue:58
1207
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:73
1208
- msgid "Blog Post"
1209
  msgstr ""
1210
 
1211
- #: src/vue/pages/post-settings/views/lite/Schema.vue:59
1212
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:74
1213
- msgid "News Article"
1214
  msgstr ""
1215
 
1216
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
1217
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:76
1218
  msgid ""
1219
- "%1$s %2$s gives you advanced customizations for the structured data markup "
1220
- "on Posts, Pages, Categories, Tags, etc."
1221
  msgstr ""
1222
 
1223
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:77
1224
- msgid "Upgrade to Pro and Unlock Schema Markup"
1225
  msgstr ""
1226
 
1227
- #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:78
1228
- msgid "Schema Markup is only available for licensed %1$s %2$s users."
1229
  msgstr ""
1230
 
1231
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:107
1232
- msgid "Web Page Type"
1233
  msgstr ""
1234
 
1235
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:107
1236
- msgid "Robots Meta Settings"
 
1237
  msgstr ""
1238
 
1239
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:108
1240
- msgid "Bulk Editing"
1241
  msgstr ""
1242
 
1243
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:109
1244
- msgid "Read Only"
 
1245
  msgstr ""
1246
 
1247
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:110
1248
- msgid "Other Options"
 
1249
  msgstr ""
1250
 
1251
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:111
1252
- msgid "Show Date in Google Preview"
 
1253
  msgstr ""
1254
 
1255
- #: src/vue/pages/post-settings/views/Advanced.vue:123
1256
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:442
1257
- msgid "Keywords"
1258
  msgstr ""
1259
 
1260
- # Translators: 1 - The type of page (Post, Page, Category, Tag, etc.).
1261
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:129
1262
- msgid "Show %1$s Thumbnail in Google Custom Search"
1263
  msgstr ""
1264
 
1265
- # Translators: 1 - The plugin name ("All in One SEO")
1266
- #: src/vue/pages/search-appearance/views/partials/Advanced.vue:133
1267
- msgid "Show %1$s Meta Box"
1268
  msgstr ""
1269
 
1270
- #: src/vue/components/common/core/AdditionalPages.vue:101
1271
- #: src/vue/components/common/core/Keyphrase.vue:44
1272
- #: src/vue/pages/tools/views/RobotsEditor.vue:254
1273
- msgid "Delete"
1274
  msgstr ""
1275
 
1276
- #: src/vue/pages/tools/views/partials/BackupSettings.vue:101
1277
- msgid "Success! The backup was deleted."
 
1278
  msgstr ""
1279
 
1280
- #: src/vue/pages/tools/views/partials/BackupSettings.vue:102
1281
- msgid "Success! The backup was restored."
 
1282
  msgstr ""
1283
 
1284
- #: src/vue/pages/tools/views/partials/BackupSettings.vue:146
1285
- msgid "%1$s at %2$s"
 
1286
  msgstr ""
1287
 
1288
- #: src/vue/pages/tools/views/partials/BackupSettings.vue:96
1289
- msgid "Backup Settings"
 
1290
  msgstr ""
1291
 
1292
- #: src/vue/pages/tools/views/partials/BackupSettings.vue:97
1293
- msgid "You have no saved backups."
 
1294
  msgstr ""
1295
 
1296
- #: src/vue/pages/tools/views/partials/BackupSettings.vue:98
1297
- msgid "Create Backup"
 
1298
  msgstr ""
1299
 
1300
- #: src/vue/pages/tools/views/partials/BackupSettings.vue:99
1301
- msgid "Restore"
 
1302
  msgstr ""
1303
 
1304
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:412
1305
- msgid "Title Separator"
 
1306
  msgstr ""
1307
 
1308
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:413
1309
- msgid "Separator Character"
 
1310
  msgstr ""
1311
 
1312
- # Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag.
1313
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:415
1314
- msgid ""
1315
- "The home page settings below have been disabled because you are using a "
1316
- "static home page. You can %1$sedit your home page settings%2$s directly to "
1317
- "change the title and description."
1318
  msgstr ""
1319
 
1320
- #: src/vue/components/common/core/PriorityScore.vue:66
1321
- msgid "Home Page"
 
1322
  msgstr ""
1323
 
1324
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:417
1325
- msgid "Site Title"
 
1326
  msgstr ""
1327
 
1328
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:253
1329
- msgid "Click on the tags below to insert variables into your site title."
 
 
1330
  msgstr ""
1331
 
1332
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:421
1333
- msgid "Knowledge Graph"
1334
  msgstr ""
1335
 
1336
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:422
1337
- msgid ""
1338
- "Google, Bing and other search engines use specific data from your schema "
1339
- "markup to output data in their Knowledge Panels. This data is known as the "
1340
- "Knowledge Graph. Use these settings to change how that data looks."
1341
  msgstr ""
1342
 
1343
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:316
1344
- msgid "Person or Organization"
1345
  msgstr ""
1346
 
1347
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:318
1348
- msgid "Person"
1349
  msgstr ""
1350
 
1351
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:319
1352
- msgid "Organization"
1353
  msgstr ""
1354
 
1355
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:320
1356
- msgid "Choose whether the site represents a person or an organization."
1357
  msgstr ""
1358
 
1359
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:317
1360
- msgid "Choose a Person"
1361
  msgstr ""
1362
 
1363
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:321
1364
- msgid "Name"
1365
  msgstr ""
1366
 
1367
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:323
1368
- msgid "Phone Number"
1369
  msgstr ""
1370
 
1371
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:324
1372
- msgid "Choose a Contact Type"
1373
  msgstr ""
1374
 
1375
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:325
1376
- msgid "Contact Type"
1377
  msgstr ""
1378
 
1379
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:326
1380
- msgid "Select which team or department the phone number belongs to."
1381
  msgstr ""
1382
 
1383
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:327
1384
- msgid "Logo"
1385
  msgstr ""
1386
 
1387
- # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag., 3 - "Pro", 4 - "Pro".
1388
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:439
1389
- msgid ""
1390
- "Go to %1$sLocal SEO Settings%2$s and set up your local business info like "
1391
- "location address, opening hours (%3$s), and Google Maps settings (%4$s)."
1392
  msgstr ""
1393
 
1394
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:440
1395
- msgid "Go to Local SEO Settings"
1396
  msgstr ""
1397
 
1398
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:441
1399
- msgid "Enable Schema Markup"
1400
  msgstr ""
1401
 
1402
- #: src/vue/pages/post-settings/views/Advanced.vue:124
1403
- #: src/vue/pages/search-appearance/views/GlobalSettings.vue:443
1404
- msgid "Press enter to create a keyword"
 
 
 
1405
  msgstr ""
1406
 
1407
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:342
1408
- msgid "Manually Enter Person"
1409
  msgstr ""
1410
 
1411
- #: src/vue/pages/search-appearance/views/Advanced.vue:377
1412
- msgid "Global Robots Meta"
1413
  msgstr ""
1414
 
1415
- #: src/vue/pages/search-appearance/views/Advanced.vue:378
1416
- msgid "Noindex Empty Category and Tag Archives"
1417
  msgstr ""
1418
 
1419
- #: src/vue/pages/search-appearance/views/Advanced.vue:379
1420
- msgid "Remove Stopwords from Permalinks"
1421
  msgstr ""
1422
 
1423
- #: src/vue/pages/search-appearance/views/Advanced.vue:380
1424
- msgid "Remove Category Base Prefix"
1425
  msgstr ""
1426
 
1427
- #: src/vue/pages/search-appearance/views/Advanced.vue:383
1428
- msgid "Automatically Add Missing Image Alt / Title Tags"
1429
  msgstr ""
1430
 
1431
- # Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more".
1432
- #: src/vue/pages/search-appearance/views/Advanced.vue:385
1433
- msgid "This feature is only for licensed %1$s users. %2$s"
1434
  msgstr ""
1435
 
1436
- #: src/vue/pages/search-appearance/views/Advanced.vue:386
1437
- msgid "Autogenerate Descriptions"
1438
  msgstr ""
1439
 
1440
- #: src/vue/pages/search-appearance/views/Advanced.vue:387
1441
- msgid "Use Content for Autogenerated Descriptions"
1442
  msgstr ""
1443
 
1444
- #: src/vue/pages/search-appearance/views/Advanced.vue:388
1445
- msgid "Run Shortcodes in Description"
1446
  msgstr ""
1447
 
1448
- #: src/vue/pages/search-appearance/views/Advanced.vue:389
1449
- msgid "No Pagination for Canonical URLs"
1450
  msgstr ""
1451
 
1452
- #: src/vue/pages/search-appearance/views/Advanced.vue:390
1453
- msgid "Use Meta Keywords"
1454
  msgstr ""
1455
 
1456
- #: src/vue/pages/search-appearance/views/Advanced.vue:391
1457
- msgid ""
1458
- "This option allows you to toggle the use of Meta Keywords throughout the "
1459
- "whole of the site."
1460
  msgstr ""
1461
 
1462
- #: src/vue/pages/search-appearance/views/Advanced.vue:392
1463
- msgid "Use Categories for Meta Keywords"
1464
  msgstr ""
1465
 
1466
- #: src/vue/pages/search-appearance/views/Advanced.vue:393
1467
- msgid ""
1468
- "Check this if you want your categories for a given post used as the Meta "
1469
- "Keywords for this post (in addition to any keywords you specify on the Edit "
1470
- "Post screen)."
1471
  msgstr ""
1472
 
1473
- #: src/vue/pages/search-appearance/views/Advanced.vue:394
1474
- msgid "Use Tags for Meta Keywords"
1475
  msgstr ""
1476
 
1477
- #: src/vue/pages/search-appearance/views/Advanced.vue:395
1478
- msgid ""
1479
- "Check this if you want your tags for a given post used as the Meta Keywords "
1480
- "for this post (in addition to any keywords you specify on the Edit Post "
1481
- "screen)."
1482
  msgstr ""
1483
 
1484
- #: src/vue/pages/search-appearance/views/Advanced.vue:396
1485
- msgid "Dynamically Generate Meta Keywords"
1486
  msgstr ""
1487
 
1488
- #: src/vue/pages/search-appearance/views/Advanced.vue:397
1489
- msgid ""
1490
- "Check this if you want your keywords on your Posts page (set in WordPress "
1491
- "under Settings, Reading, Front Page Displays) and your archive pages to be "
1492
- "dynamically generated from the keywords of the posts showing on that page. "
1493
- "If unchecked, it will use the keywords set in the edit page screen for the "
1494
- "posts page."
1495
  msgstr ""
1496
 
1497
- #: src/vue/pages/search-appearance/views/Advanced.vue:398
1498
- msgid "Paged Format"
1499
  msgstr ""
1500
 
1501
- #: src/vue/pages/search-appearance/views/Advanced.vue:399
1502
- msgid ""
1503
- "This string gets appended/prepended to titles and descriptions of paged "
1504
- "index pages (like home or archive pages)."
1505
  msgstr ""
1506
 
1507
- #: src/vue/pages/search-appearance/views/Advanced.vue:400
1508
- msgid "Description Format"
1509
  msgstr ""
1510
 
1511
- #: src/vue/pages/search-appearance/views/Advanced.vue:403
1512
- msgid "Enable Sitelinks Search Box"
1513
  msgstr ""
1514
 
1515
- # Translators: 1 - The plugin name ("All in One SEO").
1516
- #: src/vue/pages/search-appearance/views/Advanced.vue:405
1517
- msgid ""
1518
- "Choose whether %1$s should output the required schema markup that Google "
1519
- "needs to generate a sitelinks search box."
1520
  msgstr ""
1521
 
1522
- #: src/vue/pages/search-appearance/views/Advanced.vue:406
1523
- msgid ""
1524
- "A Description tag is required in order to properly display your meta "
1525
- "descriptions on your site."
1526
  msgstr ""
1527
 
1528
- #: src/vue/pages/settings/views/lite/AccessControl.vue:68
1529
- msgid "WP Roles (Editor, Author)"
1530
  msgstr ""
1531
 
1532
- #: src/vue/pages/settings/views/lite/AccessControl.vue:69
1533
- msgid "SEO Manager Role"
1534
  msgstr ""
1535
 
1536
- #: src/vue/pages/settings/views/lite/AccessControl.vue:70
1537
- msgid "SEO Editor Role"
1538
  msgstr ""
1539
 
1540
- #: src/vue/pages/settings/views/lite/AccessControl.vue:71
1541
- msgid "Default settings that just work"
1542
  msgstr ""
1543
 
1544
- #: src/vue/pages/settings/views/lite/AccessControl.vue:72
1545
- msgid "Granular controls per role"
1546
  msgstr ""
1547
 
1548
- #: src/vue/pages/settings/views/lite/AccessControl.vue:73
1549
- msgid "Upgrade to Pro and Unlock Access Control"
1550
  msgstr ""
1551
 
1552
- #: src/vue/pages/settings/views/lite/AccessControl.vue:74
1553
- msgid "Access Control is only available for licensed %1$s %2$s users."
1554
  msgstr ""
1555
 
1556
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:109
1557
- msgid "Social Meta (Open Graph Markup)"
1558
  msgstr ""
1559
 
1560
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:112
1561
- msgid "Posts, Pages and Custom Post Types Only"
1562
  msgstr ""
1563
 
1564
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:116
1565
- msgid "Posts, Pages, Custom Post Types + Categories, Tags and Custom Taxonomies"
1566
  msgstr ""
1567
 
1568
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:120
1569
- msgid "WooCommerce Integration"
1570
  msgstr ""
1571
 
1572
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:123
1573
- msgid "WooCommerce Products Only"
1574
  msgstr ""
1575
 
1576
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:127
1577
- msgid ""
1578
- "WooCommerce Products, Product Categories, Product Tags and Other Product "
1579
- "Attributes"
1580
  msgstr ""
1581
 
1582
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:131
1583
- msgid "XML Sitemap"
1584
  msgstr ""
1585
 
1586
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:134
1587
- msgid "Basic Control of Sitemap Priority & Frequency"
1588
  msgstr ""
1589
 
1590
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:138
1591
- msgid ""
1592
- "Granular Control of Sitemap Priority & Frequency for Each Post, Page, "
1593
- "Category, Tag, etc."
1594
  msgstr ""
1595
 
1596
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:142
1597
- msgid "Video XML Sitemap"
1598
  msgstr ""
1599
 
1600
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:147
1601
- msgid "Submit Your Videos to Search Engines"
1602
  msgstr ""
1603
 
1604
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:156
1605
- msgid "Submit Your Latest News Stories to Google News (Business & Agency tier only)"
1606
  msgstr ""
1607
 
1608
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:162
1609
- msgid "Not Available"
1610
  msgstr ""
1611
 
1612
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:165
1613
- msgid ""
1614
- "Control The Title & Alt Tag Attribute of Your Images (Business & Agency "
1615
- "tier only)"
1616
  msgstr ""
1617
 
1618
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:169
1619
- msgid "Schema Rich Snippets"
1620
  msgstr ""
1621
 
1622
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:172
1623
- msgid "Posts, Pages, Categories and Tags Only"
1624
  msgstr ""
1625
 
1626
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:175
1627
- msgid "Complete Support"
1628
  msgstr ""
1629
 
1630
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:176
1631
- msgid "Posts, Pages, Categories, Tags + Breadcrumb Navigation"
1632
  msgstr ""
1633
 
1634
- #: src/vue/plugins/constants.js:1042
1635
- msgid "Customer Support"
 
1636
  msgstr ""
1637
 
1638
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:182
1639
- msgid "Limited Support"
 
1640
  msgstr ""
1641
 
1642
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:185
1643
- msgid "Priority Support"
1644
  msgstr ""
1645
 
1646
- # Translators: 1 - The abbreviated plugin name ("AIOSEO").
1647
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:71
1648
- msgid "%1$s Lite vs. Pro"
1649
  msgstr ""
1650
 
1651
- # Translators: 1 - The plugin name ("All in One SEO").
1652
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:73
1653
- msgid ""
1654
- "Get the most out of %1$s by upgrading to Pro and unlocking all of the "
1655
- "powerful features."
1656
  msgstr ""
1657
 
1658
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:76
1659
- msgid "Features:"
1660
  msgstr ""
1661
 
1662
- #: src/vue/pages/setup-wizard/views/Success.vue:146
1663
- msgid "Upgrade to Pro to Unlock Powerful SEO Features"
1664
  msgstr ""
1665
 
1666
- #: src/vue/pages/setup-wizard/views/Success.vue:147
1667
- msgid ""
1668
- "%1$s is the best WordPress SEO plugin. Join over 2,000,000+ Professionals "
1669
- "who are already using %2$s to improve their website search rankings."
1670
  msgstr ""
1671
 
1672
- # Translators: 1 - "Pro".
1673
- #: src/vue/pages/setup-wizard/views/Success.vue:155
1674
- msgid "Upgrade to %1$s Today"
1675
  msgstr ""
1676
 
1677
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:86
1678
- msgid ""
1679
- "%1$sBonus:%2$s You can upgrade to the %3$s plan today and %4$ssave %5$s "
1680
- "off%6$s (discount auto-applied)."
1681
  msgstr ""
1682
 
1683
- #: src/vue/pages/about/views/lite/LiteVsPro.vue:98
1684
- msgid "Search Engine Optimization (SEO)"
1685
  msgstr ""
1686
 
1687
- #: src/vue/pages/tools/views/partials/ImportAioseo.vue:81
1688
- msgid "Import / Restore %1$s Settings"
1689
  msgstr ""
1690
 
1691
- #: src/vue/pages/tools/views/partials/ImportAioseo.vue:82
1692
- msgid "Import from a JSON or INI file..."
1693
  msgstr ""
1694
 
1695
- #: src/vue/pages/tools/views/partials/ImportAioseo.vue:83
1696
- msgid "Choose a File"
1697
  msgstr ""
1698
 
1699
- #: src/vue/pages/tools/views/partials/ImportAioseo.vue:84
1700
- msgid "Imported settings will overwrite existing settings and will not be merged."
1701
  msgstr ""
1702
 
1703
- #: src/vue/pages/tools/views/partials/ImportAioseo.vue:86
1704
- msgid "A JSON or INI file is required to import settings."
1705
  msgstr ""
1706
 
1707
- #: src/vue/pages/tools/views/partials/ImportAioseo.vue:87
1708
- msgid "Success! Your settings have been imported."
1709
  msgstr ""
1710
 
1711
- #: src/vue/pages/tools/views/partials/ImportAioseo.vue:88
1712
- msgid ""
1713
- "There was an error importing your settings. Please make sure you are "
1714
- "uploading the correct file or it is in the proper format."
1715
  msgstr ""
1716
 
1717
- # Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string.
1718
- #: src/vue/pages/about/views/GettingStarted.vue:129
1719
- msgid "Get %1$s %2$s and Unlock all the Powerful Features"
1720
  msgstr ""
1721
 
1722
- # Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string.
1723
- #: src/vue/pages/about/views/GettingStarted.vue:131
1724
- msgid "Get %1$s %2$s and Unlock all the Powerful Features."
1725
  msgstr ""
1726
 
1727
- #: src/vue/pages/about/views/GettingStarted.vue:140
1728
- msgid "Social Meta for Categories, Tags and Custom Taxonomies"
1729
- msgstr ""
1730
-
1731
- #: src/vue/pages/about/views/GettingStarted.vue:147
1732
- msgid "Video Tutorials"
1733
- msgstr ""
1734
-
1735
- #: src/vue/pages/about/views/GettingStarted.vue:148
1736
- msgid "View all video tutorials"
1737
  msgstr ""
1738
 
1739
- # Translators: 1 - The plugin short name ("AIOSEO").
1740
- #: src/vue/pages/about/views/GettingStarted.vue:153
1741
- msgid "%1$s Documentation"
1742
  msgstr ""
1743
 
1744
- #: src/vue/pages/about/views/GettingStarted.vue:154
1745
- msgid "See our full documentation"
1746
  msgstr ""
1747
 
1748
- #: src/vue/pages/about/views/GettingStarted.vue:160
1749
- msgid "Basic Guide to Google Analytics"
1750
  msgstr ""
1751
 
1752
- #: src/vue/pages/about/views/GettingStarted.vue:164
1753
- msgid "Basic Guide to Google Search Console"
1754
  msgstr ""
1755
 
1756
- #: src/vue/pages/about/views/GettingStarted.vue:168
1757
- msgid "Best Practices for Domains and URLs"
1758
  msgstr ""
1759
 
1760
- #: src/vue/pages/about/views/GettingStarted.vue:172
1761
- msgid "How to Control Search Results"
 
 
 
 
1762
  msgstr ""
1763
 
1764
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro", 3 - "Learn more link"..
1765
- #: src/vue/pages/post-settings/views/lite/Schema.vue:61
1766
- msgid "Pro"
1767
  msgstr ""
1768
 
1769
- # Translators: 1 - The plugin short name ("AIOSEO Pro"), 2 - "Pro" string.
1770
- #: src/vue/pages/about/views/GettingStarted.vue:177
1771
- msgid "Installing %1$s %2$s"
1772
  msgstr ""
1773
 
1774
- #: src/vue/pages/about/views/GettingStarted.vue:181
1775
- msgid "Optimizing your Content Headings"
1776
  msgstr ""
1777
 
1778
- #: src/vue/pages/about/views/Main.vue:23
1779
- msgid "About"
1780
  msgstr ""
1781
 
1782
- #: src/vue/pages/tools/views/BadBotBlocker.vue:90
1783
- msgid "Block Bad Bots using HTTP"
1784
  msgstr ""
1785
 
1786
- #: src/vue/pages/tools/views/BadBotBlocker.vue:91
1787
- msgid "Block Referral Spam using HTTP"
1788
  msgstr ""
1789
 
1790
- #: src/vue/pages/tools/views/BadBotBlocker.vue:92
1791
- msgid "Track Blocked Bots"
1792
  msgstr ""
1793
 
1794
- #: src/vue/pages/tools/views/BadBotBlocker.vue:93
1795
- msgid "Use Custom Blocklists"
 
1796
  msgstr ""
1797
 
1798
- #: src/vue/pages/tools/views/BadBotBlocker.vue:94
1799
- msgid "User Agent Blocklist"
 
 
 
 
1800
  msgstr ""
1801
 
1802
- #: src/vue/pages/tools/views/BadBotBlocker.vue:95
1803
- msgid "Referer Blocklist"
 
 
 
1804
  msgstr ""
1805
 
1806
- #: src/vue/pages/tools/views/BadBotBlocker.vue:96
1807
- msgid "Blocked Bots Log"
 
 
 
1808
  msgstr ""
1809
 
1810
- # Translators: 1 - The location of the log file.
1811
- #: src/vue/pages/tools/views/BadBotBlocker.vue:98
1812
- msgid "The log for the blocked bots is located here: %1$s"
 
 
1813
  msgstr ""
1814
 
1815
- #: src/vue/pages/settings/views/RssContent.vue:121
1816
- msgid "Automatically add content to your site's RSS feed."
1817
  msgstr ""
1818
 
1819
- #: src/vue/pages/settings/views/RssContent.vue:122
1820
- msgid ""
1821
- "This feature is used to automatically add content to your site's RSS feed. "
1822
- "More specifically, it allows you to add links back to your blog and your "
1823
- "blog posts so scrapers will automatically add these links too. This helps "
1824
- "search engines identify you as the original source of the content."
1825
  msgstr ""
1826
 
1827
- #: src/vue/pages/settings/views/RssContent.vue:123
1828
- msgid "Learn more"
1829
  msgstr ""
1830
 
1831
- #: src/vue/pages/settings/views/RssContent.vue:124
1832
- msgid "RSS Content Settings"
1833
  msgstr ""
1834
 
1835
- #: src/vue/pages/settings/views/RssContent.vue:125
1836
- msgid "Open Your RSS Feed"
1837
  msgstr ""
1838
 
1839
- #: src/vue/pages/settings/views/RssContent.vue:126
1840
- msgid "RSS Before Content"
1841
  msgstr ""
1842
 
1843
- #: src/vue/pages/settings/views/RssContent.vue:127
1844
- msgid "RSS After Content"
1845
  msgstr ""
1846
 
1847
- #: src/vue/pages/settings/views/RssContent.vue:128
1848
- msgid "Add content before each post in your site feed."
1849
  msgstr ""
1850
 
1851
- #: src/vue/pages/settings/views/RssContent.vue:129
1852
- msgid "Add content after each post in your site feed."
 
 
1853
  msgstr ""
1854
 
1855
- #: src/vue/pages/settings/views/RssContent.vue:130
1856
- msgid "Your user account role does not have access to edit this field. %2$s"
1857
  msgstr ""
1858
 
1859
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:124
1860
- msgid "Import Settings From Other Plugins"
1861
  msgstr ""
1862
 
1863
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:125
1864
- msgid "Choose a plugin to import SEO data directly into %1$s."
 
 
1865
  msgstr ""
1866
 
1867
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:126
1868
- msgid "Select a plugin..."
1869
  msgstr ""
1870
 
1871
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:128
1872
- msgid "All Settings"
1873
  msgstr ""
1874
 
1875
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:129
1876
- msgid "not installed"
1877
  msgstr ""
1878
 
1879
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:143
1880
- msgid "SEO Settings"
1881
  msgstr ""
1882
 
1883
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:144
1884
- msgid "Post Meta"
1885
  msgstr ""
1886
 
1887
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:148
1888
- msgid "Term Meta"
 
 
1889
  msgstr ""
1890
 
1891
- # Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO").
1892
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:176
1893
- msgid "%1$s was successfully imported!"
1894
  msgstr ""
1895
 
1896
- # Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO").
1897
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:180
1898
- msgid "An error occurred while importing %1$s. Please try again."
1899
  msgstr ""
1900
 
1901
- # Translators: 1 - The name of the plugin (e.g. "Yoast SEO"), 2 - The version of the plugin (e.g. "10.2.3").
1902
- #: src/vue/pages/tools/views/partials/ImportOthers.vue:223
1903
- msgid ""
1904
- "We do not support importing from the currently installed version of %1$s "
1905
- "(%2$s). Please upgrade to the latest version and try again."
1906
  msgstr ""
1907
 
1908
- #: src/vue/pages/settings/views/GeneralSettings.vue:49
1909
- msgid "License"
1910
  msgstr ""
1911
 
1912
- #: src/vue/components/lite/core/UpgradeBar.vue:25
1913
- msgid "Free"
1914
  msgstr ""
1915
 
1916
- # Translators: 1 - "Pro".
1917
- #: src/vue/components/lite/core/UpgradeBar.vue:28
1918
- msgid "upgrading to %1$s"
1919
  msgstr ""
1920
 
1921
- # Translators: This refers to a discount ("As a valued user you receive 50%, automatically applied at checkout!").
1922
- #: src/vue/components/lite/settings/LicenseKey.vue:56
1923
- #: src/vue/pages/settings/views/GeneralSettings.vue:57
1924
- msgid "off"
1925
  msgstr ""
1926
 
1927
- #: src/vue/pages/settings/views/GeneralSettings.vue:59
1928
- msgid "Setup Wizard"
 
1929
  msgstr ""
1930
 
1931
- # Translators: 1 - The plugin name ("All in One SEO")
1932
- #: src/vue/pages/settings/views/GeneralSettings.vue:62
1933
  msgid ""
1934
- "Use our configuration wizard to properly set up %1$s with your WordPress "
1935
- "website."
1936
  msgstr ""
1937
 
1938
- # Translators: 1 - "upgrading to Pro".
1939
- #: src/vue/components/lite/settings/LicenseKey.vue:72
1940
- #: src/vue/pages/settings/views/GeneralSettings.vue:73
1941
- msgid "To unlock more features, consider %1$s."
1942
  msgstr ""
1943
 
1944
- # Translators: 1 - "50% off".
1945
- #: src/vue/components/lite/settings/LicenseKey.vue:76
1946
- #: src/vue/pages/settings/views/GeneralSettings.vue:77
1947
- msgid "As a valued user you receive %1$s, automatically applied at checkout!"
1948
  msgstr ""
1949
 
1950
- # Translators: 1 - The plugin name ("All in One SEO"), 2 - Same as previous.
1951
- #: src/vue/pages/about/views/AboutUs.vue:118
1952
  msgid ""
1953
- "Welcome to %1$s, the original SEO plugin for WordPress. At %2$s, we build "
1954
- "software that helps you rank your website in search results and gain "
1955
- "organic traffic."
1956
  msgstr ""
1957
 
1958
- #: src/vue/pages/about/views/AboutUs.vue:119
1959
- msgid ""
1960
- "Over the years, we found that most other WordPress SEO plugins were "
1961
- "bloated, buggy, slow, and very hard to use. So we designed our plugin as an "
1962
- "easy and powerful tool."
1963
  msgstr ""
1964
 
1965
- #: src/vue/pages/about/views/AboutUs.vue:120
1966
  msgid ""
1967
- "Our goal is to take the pain out of optimizing your website for search "
1968
- "engines."
1969
  msgstr ""
1970
 
1971
- # Translators: 1 - The plugin name ("All in One SEO"), 2 - Company name ("Awesome Motive").
1972
- #: src/vue/pages/about/views/AboutUs.vue:122
1973
- msgid ""
1974
- "%1$s is brought to you by %2$s, the same team that’s behind the largest "
1975
- "WordPress resource site, WPBeginner, the most popular lead-generation "
1976
- "software, OptinMonster, the best WordPress analytics plugin, "
1977
- "MonsterInsights and many more."
1978
  msgstr ""
1979
 
1980
- #: src/vue/pages/about/views/AboutUs.vue:123
 
 
 
 
1981
  msgid ""
1982
- "Yup, we know a thing or two about building awesome products that customers "
1983
- "love."
1984
  msgstr ""
1985
 
1986
- # Translators: 1 - Company name ("Awesome Motive").
1987
- #: src/vue/pages/about/views/AboutUs.vue:125
1988
- msgid "The %1$s Team"
1989
  msgstr ""
1990
 
1991
- #: src/vue/pages/about/views/AboutUs.vue:129
1992
- msgid "Install Plugin"
1993
  msgstr ""
1994
 
1995
- #: src/vue/pages/about/views/AboutUs.vue:130
1996
- msgid "Activate"
1997
  msgstr ""
1998
 
1999
- #: src/vue/components/common/core/FeatureCard.vue:124
2000
- msgid "Manage"
 
 
2001
  msgstr ""
2002
 
2003
- #: src/vue/pages/about/views/AboutUs.vue:133
2004
- msgid "Status:"
2005
  msgstr ""
2006
 
2007
- #: src/vue/components/common/core/FeatureCard.vue:119
2008
- msgid "Activated"
 
 
 
2009
  msgstr ""
2010
 
2011
- #: src/vue/components/common/core/FeatureCard.vue:120
2012
- msgid "Deactivated"
2013
  msgstr ""
2014
 
2015
- #: src/vue/components/common/core/FeatureCard.vue:121
2016
- msgid "Not Installed"
2017
  msgstr ""
2018
 
2019
- #: src/vue/pages/about/views/AboutUs.vue:144
2020
- msgid ""
2021
- "Our high-converting optin forms like Exit-Intent® popups, Fullscreen "
2022
- "Welcome Mats, and Scroll boxes help you dramatically boost conversions and "
2023
- "get more email subscribers."
2024
  msgstr ""
2025
 
2026
- #: src/vue/pages/about/views/AboutUs.vue:153
2027
- msgid ""
2028
- "WPForms allows you to create beautiful contact forms for your site in "
2029
- "minutes, not hours!"
2030
  msgstr ""
2031
 
2032
- #: src/vue/pages/about/views/AboutUs.vue:170
2033
- msgid ""
2034
- "MonsterInsights makes it “effortless” to properly connect your WordPress "
2035
- "site with Google Analytics, so you can start making data-driven decisions "
2036
- "to grow your business."
2037
  msgstr ""
2038
 
2039
- #: src/vue/pages/about/views/AboutUs.vue:187
2040
- msgid ""
2041
- "The ExactMetrics Google Analytics for WordPress plugin helps you properly "
2042
- "setup all the powerful Google Analytics tracking features without writing "
2043
- "any code or hiring a developer."
2044
  msgstr ""
2045
 
2046
- #: src/vue/pages/about/views/AboutUs.vue:204
2047
- msgid ""
2048
- "Make sure your website's emails reach the inbox. Our goal is to make email "
2049
- "deliverability easy and reliable. Trusted by over 1 million websites."
2050
  msgstr ""
2051
 
2052
- #: src/vue/pages/about/views/AboutUs.vue:221
2053
  msgid ""
2054
- "Create a simple Coming Soon Page, Under Construction or Maintenance Mode "
2055
- "Page. Work on your site in private while visitors see a “Coming Soon” or "
2056
- "“Maintenance Mode” page."
2057
  msgstr ""
2058
 
2059
- #: src/vue/pages/about/views/AboutUs.vue:238
2060
  msgid ""
2061
- "TrustPulse uses FOMO (Fear of Missing Out) to boost your sales and "
2062
- "conversions with social proof notifications. Use it to boost sales on your "
2063
- "Woocommerce store, increase signups on your membership site, get more email "
2064
- "subscribers, and more."
2065
  msgstr ""
2066
 
2067
- #: src/vue/pages/about/views/AboutUs.vue:247
2068
  msgid ""
2069
- "Turn your visitors into brand ambassadors! Easily grow your email list, "
2070
- "website traffic, and social media followers with powerful viral giveaways & "
2071
- "contests."
2072
  msgstr ""
2073
 
2074
- #: src/vue/pages/about/views/AboutUs.vue:264
2075
- msgid ""
2076
- "Display completely customizable Facebook feeds of any public Facebook page "
2077
- "or Group."
2078
  msgstr ""
2079
 
2080
- #: src/vue/pages/about/views/AboutUs.vue:281
2081
- msgid ""
2082
- "Display beautifully clean, customizable, and responsive Instagram feeds "
2083
- "from multiple Instagram accounts."
2084
  msgstr ""
2085
 
2086
- #: src/vue/pages/about/views/AboutUs.vue:298
2087
- msgid ""
2088
- "Display completely customizable, responsive and search engine crawlable "
2089
- "Twitter feeds on your website."
2090
  msgstr ""
2091
 
2092
- #: src/vue/pages/about/views/AboutUs.vue:315
2093
- msgid ""
2094
- "The Feeds for YouTube plugin allows you to display customizable YouTube "
2095
- "feeds from any YouTube channel."
2096
  msgstr ""
2097
 
2098
- #: src/vue/pages/settings/views/Breadcrumbs.vue:357
2099
- msgid "Enable Breadcrumbs"
2100
  msgstr ""
2101
 
2102
- #: src/vue/pages/settings/views/Breadcrumbs.vue:358
2103
- msgid "Show Breadcrumbs on your Website"
2104
  msgstr ""
2105
 
2106
- #: src/vue/pages/settings/views/Breadcrumbs.vue:359
2107
- msgid "Shortcode"
 
 
2108
  msgstr ""
2109
 
2110
- #: src/vue/pages/settings/views/Breadcrumbs.vue:360
2111
- msgid "Gutenberg Block"
2112
  msgstr ""
2113
 
2114
- #: src/vue/pages/settings/views/Breadcrumbs.vue:361
2115
- msgid "PHP Code"
2116
  msgstr ""
2117
 
2118
- #: src/vue/pages/settings/views/Breadcrumbs.vue:362
2119
- msgid "Breadcrumb Settings"
2120
  msgstr ""
2121
 
2122
- #: src/vue/pages/settings/views/Breadcrumbs.vue:363
2123
- msgid "Separator"
2124
  msgstr ""
2125
 
2126
- #: src/vue/pages/settings/views/Breadcrumbs.vue:364
2127
- msgid "Homepage Link"
2128
  msgstr ""
2129
 
2130
- #: src/vue/pages/settings/views/Breadcrumbs.vue:365
2131
- msgid "Breadcrumb Prefix"
2132
  msgstr ""
2133
 
2134
- #: src/vue/pages/settings/views/Breadcrumbs.vue:366
2135
- msgid "Archive Format"
 
2136
  msgstr ""
2137
 
2138
- #: src/vue/pages/settings/views/Breadcrumbs.vue:367
2139
- msgid "Search Result Format"
 
2140
  msgstr ""
2141
 
2142
- #: src/vue/pages/settings/views/Breadcrumbs.vue:368
2143
- msgid "404 Error Format"
2144
  msgstr ""
2145
 
2146
- #: src/vue/pages/settings/views/Breadcrumbs.vue:369
2147
- msgid "Current Item"
2148
  msgstr ""
2149
 
2150
- #: src/vue/pages/settings/views/Breadcrumbs.vue:370
2151
- msgid "Home"
2152
  msgstr ""
2153
 
2154
- #: src/vue/pages/settings/views/Breadcrumbs.vue:372
2155
- msgid "Subcategory"
 
2156
  msgstr ""
2157
 
2158
- #: src/vue/pages/settings/views/Breadcrumbs.vue:373
2159
- msgid "Article Title"
2160
  msgstr ""
2161
 
2162
- #: src/vue/pages/settings/views/Breadcrumbs.vue:374
2163
- msgid "Archives of"
2164
  msgstr ""
2165
 
2166
- #: src/vue/pages/settings/views/Breadcrumbs.vue:375
2167
- msgid "Search for"
2168
  msgstr ""
2169
 
2170
- #: src/vue/pages/settings/views/Breadcrumbs.vue:376
2171
- msgid "404 Error: page not found"
2172
  msgstr ""
2173
 
2174
- #: src/vue/pages/settings/views/Breadcrumbs.vue:377
2175
- msgid "search key word goes here"
2176
  msgstr ""
2177
 
2178
- #: src/vue/pages/settings/views/Breadcrumbs.vue:378
2179
- msgid "Category Name"
 
2180
  msgstr ""
2181
 
2182
- #: src/vue/pages/settings/views/Breadcrumbs.vue:379
2183
- msgid "Breadcrumb Templates"
 
 
 
 
 
2184
  msgstr ""
2185
 
2186
  #: src/vue/pages/settings/views/Advanced.vue:269
@@ -2298,1213 +2341,1212 @@ msgid ""
2298
  "All settings and SEO data will be unrecoverable."
2299
  msgstr ""
2300
 
2301
- #: src/vue/pages/post-settings/views/Main.vue:55
2302
- msgid "Preview Snippet Editor"
2303
  msgstr ""
2304
 
2305
- #: src/vue/pages/settings/views/WebmasterTools.vue:256
2306
- msgid "Miscellaneous Verification"
2307
  msgstr ""
2308
 
2309
- # Translators: 1 - "<head></head>".
2310
- #: src/vue/pages/settings/views/WebmasterTools.vue:258
2311
- msgid ""
2312
- "The code above will be added between the %1$s tags on every page on your "
2313
- "website."
2314
  msgstr ""
2315
 
2316
- #: src/vue/pages/settings/views/WebmasterTools.vue:259
2317
- msgid "Webmaster Tools Verification"
2318
- msgstr ""
2319
-
2320
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:176
2321
- msgid "Click here"
2322
  msgstr ""
2323
 
2324
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:177
2325
- msgid "Install Monsterinsights"
2326
  msgstr ""
2327
 
2328
- #: src/vue/pages/settings/views/WebmasterTools.vue:262
2329
- msgid "Success!"
2330
  msgstr ""
2331
 
2332
- #: src/vue/pages/settings/views/WebmasterTools.vue:263
2333
- msgid "Google Analytics is now handled by MonsterInsights."
2334
  msgstr ""
2335
 
2336
- #: src/vue/pages/settings/views/WebmasterTools.vue:264
2337
- msgid "Google Analytics is now handled by ExactMetrics."
2338
  msgstr ""
2339
 
2340
- #: src/vue/pages/settings/views/WebmasterTools.vue:265
2341
- msgid "Manage Google Analytics"
2342
  msgstr ""
2343
 
2344
- #: src/vue/pages/settings/views/WebmasterTools.vue:266
2345
- msgid "Get Started"
2346
  msgstr ""
2347
 
2348
- # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
2349
- #: src/vue/pages/settings/views/WebmasterTools.vue:276
2350
- msgid ""
2351
- "We recommend using the %1$sFree MonsterInsights%2$s plugin to get the most "
2352
- "out of Google Analytics."
2353
  msgstr ""
2354
 
2355
- # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
2356
- #: src/vue/pages/settings/views/WebmasterTools.vue:280
2357
- msgid ""
2358
- "We recommend using the %1$sFree ExactMetrics%2$s plugin to get the most out "
2359
- "of Google Analytics."
2360
  msgstr ""
2361
 
2362
- #: src/vue/pages/settings/views/WebmasterTools.vue:314
2363
- msgid "Google Verification Code"
2364
  msgstr ""
2365
 
2366
- # Translators: 1 - "Google Search Console".
2367
- #: src/vue/pages/settings/views/WebmasterTools.vue:316
2368
- msgid "Google Search Console"
2369
  msgstr ""
2370
 
2371
- # Translators: 1 - "Google Search Console".
2372
- #: src/vue/pages/settings/views/WebmasterTools.vue:316
2373
- msgid "Get your Google verification code in %1$s."
2374
  msgstr ""
2375
 
2376
- #: src/vue/pages/settings/views/WebmasterTools.vue:327
2377
- msgid "Bing Verification Code"
2378
  msgstr ""
2379
 
2380
- # Translators: 1 - "Bing Webmaster Tools".
2381
- #: src/vue/pages/settings/views/WebmasterTools.vue:329
2382
- msgid "Bing Webmaster Tools"
2383
  msgstr ""
2384
 
2385
- # Translators: 1 - "Bing Webmaster Tools".
2386
- #: src/vue/pages/settings/views/WebmasterTools.vue:329
2387
- msgid "Get your Bing verification code in %1$s."
2388
  msgstr ""
2389
 
2390
- #: src/vue/pages/settings/views/WebmasterTools.vue:340
2391
- msgid "Yandex Verification Code"
2392
  msgstr ""
2393
 
2394
- # Translators: 1 - "Yandex Webmaster Tools".
2395
- #: src/vue/pages/settings/views/WebmasterTools.vue:342
2396
- msgid "Yandex Webmaster Tools"
2397
  msgstr ""
2398
 
2399
- # Translators: 1 - "Yandex Webmaster Tools".
2400
- #: src/vue/pages/settings/views/WebmasterTools.vue:342
2401
- msgid "Get your Yandex verification code in %1$s."
2402
  msgstr ""
2403
 
2404
- #: src/vue/pages/settings/views/WebmasterTools.vue:353
2405
- msgid "Baidu Verification Code"
2406
  msgstr ""
2407
 
2408
- # Translators: 1 - "Baidu Webmaster Tools".
2409
- #: src/vue/pages/settings/views/WebmasterTools.vue:355
2410
- msgid "Baidu Webmaster Tools"
2411
  msgstr ""
2412
 
2413
- # Translators: 1 - "Baidu Webmaster Tools".
2414
- #: src/vue/pages/settings/views/WebmasterTools.vue:355
2415
- msgid "Get your Baidu verification code in %1$s."
2416
  msgstr ""
2417
 
2418
- #: src/vue/pages/settings/views/WebmasterTools.vue:361
2419
- msgid "Pinterest Site Verification"
 
 
2420
  msgstr ""
2421
 
2422
- #: src/vue/pages/social-networks/views/Pinterest.vue:49
2423
- msgid "Pinterest Verification Code"
 
2424
  msgstr ""
2425
 
2426
- # Translators: 1 - "Pinterest account".
2427
- #: src/vue/pages/settings/views/WebmasterTools.vue:368
2428
- msgid "Get your Pinterest verification code in your %1$s."
2429
  msgstr ""
2430
 
2431
- # Translators: 1 - "Pinterest account".
2432
- #: src/vue/pages/settings/views/WebmasterTools.vue:368
2433
- msgid "Pinterest account"
 
 
2434
  msgstr ""
2435
 
2436
- #: src/vue/pages/settings/views/WebmasterTools.vue:399
2437
- msgid "Google Analytics"
 
2438
  msgstr ""
2439
 
2440
- #: src/vue/pages/settings/views/WebmasterTools.vue:406
2441
- msgid "Google Analytics ID"
 
2442
  msgstr ""
2443
 
2444
- # Translators: 1 - "Google Analytics account".
2445
- #: src/vue/pages/settings/views/WebmasterTools.vue:408
2446
- msgid "Get your Google Analytics ID in your %1$s."
2447
  msgstr ""
2448
 
2449
- # Translators: 1 - "Google Analytics account".
2450
- #: src/vue/pages/settings/views/WebmasterTools.vue:408
2451
- msgid "Google Analytics account"
 
2452
  msgstr ""
2453
 
2454
- #: src/vue/pages/settings/views/WebmasterTools.vue:414
2455
- msgid "Enable Advanced Analytics Options"
2456
  msgstr ""
2457
 
2458
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
2459
- #: src/vue/pages/settings/views/WebmasterTools.vue:418
2460
- msgid "This enables Advanced Google Analytics options.%1$s%2$s"
 
2461
  msgstr ""
2462
 
2463
- #: src/vue/pages/settings/views/WebmasterTools.vue:423
2464
- msgid "Tracking Domain"
2465
  msgstr ""
2466
 
2467
- # Translators: 1 - "http://", 2 - A link to our documentation, 3 - HTML line break tag.
2468
- #: src/vue/pages/settings/views/WebmasterTools.vue:426
2469
- msgid "Enter your domain name without the %1$s to set your cookie domain.%2$s%3$s"
2470
  msgstr ""
2471
 
2472
- #: src/vue/pages/settings/views/WebmasterTools.vue:431
2473
- msgid "Track Multiple Domains"
2474
  msgstr ""
2475
 
2476
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
2477
- #: src/vue/pages/settings/views/WebmasterTools.vue:439
2478
- msgid ""
2479
- "Use this option to enable tracking of multiple or additional "
2480
- "domains.%1$s%2$s"
2481
  msgstr ""
2482
 
2483
- #: src/vue/pages/settings/views/WebmasterTools.vue:444
2484
- msgid "Additional Domains"
2485
  msgstr ""
2486
 
2487
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
2488
- #: src/vue/pages/settings/views/WebmasterTools.vue:448
2489
- msgid ""
2490
- "Add a list of additional domains to track here. Enter one domain name per "
2491
- "line without the http://.%1$s%2$s"
2492
  msgstr ""
2493
 
2494
- #: src/vue/pages/settings/views/WebmasterTools.vue:453
2495
- msgid "Anonymize IP Addresses"
 
 
2496
  msgstr ""
2497
 
2498
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
2499
- #: src/vue/pages/settings/views/WebmasterTools.vue:461
2500
- msgid "This enables support for IP Anonymization in Google Analytics.%1$s%2$s"
2501
  msgstr ""
2502
 
2503
- #: src/vue/pages/settings/views/WebmasterTools.vue:466
2504
- msgid "Display Advertiser Tracking"
2505
  msgstr ""
2506
 
2507
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
2508
- #: src/vue/pages/settings/views/WebmasterTools.vue:474
2509
  msgid ""
2510
- "This enables support for the Display Advertiser Features in Google "
2511
- "Analytics.%1$s%2$s"
2512
  msgstr ""
2513
 
2514
- #: src/vue/pages/settings/views/WebmasterTools.vue:479
2515
- msgid "Exclude Users from Tracking"
2516
  msgstr ""
2517
 
2518
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
2519
- #: src/vue/pages/settings/views/WebmasterTools.vue:490
2520
- msgid "Exclude logged-in users from Google Analytics tracking by role.%1$s%2$s"
2521
  msgstr ""
2522
 
2523
- #: src/vue/pages/settings/views/WebmasterTools.vue:495
2524
- msgid "Enhanced Link Attribution"
2525
  msgstr ""
2526
 
2527
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
2528
- #: src/vue/pages/settings/views/WebmasterTools.vue:503
2529
- msgid ""
2530
- "This enables support for the Enhanced Link Attribution in Google "
2531
- "Analytics.%1$s%2$s"
2532
  msgstr ""
2533
 
2534
- #: src/vue/pages/settings/views/WebmasterTools.vue:508
2535
- msgid "Track Outbound Links"
2536
  msgstr ""
2537
 
2538
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
2539
- #: src/vue/pages/settings/views/WebmasterTools.vue:516
2540
- msgid "This enables tracking outbound links with Google Analytics.%1$s%2$s"
2541
  msgstr ""
2542
 
2543
- #: src/vue/pages/settings/views/WebmasterTools.vue:521
2544
- msgid "Enhanced Ecommerce"
 
 
2545
  msgstr ""
2546
 
2547
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
2548
- #: src/vue/pages/settings/views/WebmasterTools.vue:529
2549
- msgid "This enables support for the Enhanced Ecommerce in Google Analytics.%1$s%2$s"
2550
  msgstr ""
2551
 
2552
- #: src/vue/pages/settings/views/WebmasterTools.vue:534
2553
- msgid "Track Outbound Forms"
2554
  msgstr ""
2555
 
2556
- #: src/vue/pages/settings/views/WebmasterTools.vue:548
2557
- msgid "Track Events"
2558
  msgstr ""
2559
 
2560
- #: src/vue/pages/settings/views/WebmasterTools.vue:562
2561
- msgid "Track URL Changes"
2562
- msgstr ""
2563
-
2564
- #: src/vue/pages/settings/views/WebmasterTools.vue:576
2565
- msgid "Track Page Visibility"
2566
  msgstr ""
2567
 
2568
- #: src/vue/pages/settings/views/WebmasterTools.vue:590
2569
- msgid "Track Media Queries"
2570
  msgstr ""
2571
 
2572
- #: src/vue/pages/settings/views/WebmasterTools.vue:604
2573
- msgid "Track Elements Visibility"
2574
  msgstr ""
2575
 
2576
- #: src/vue/pages/settings/views/WebmasterTools.vue:618
2577
- msgid "Track Page Scrolling"
 
2578
  msgstr ""
2579
 
2580
- #: src/vue/pages/settings/views/WebmasterTools.vue:632
2581
- msgid "Track Facebook and Twitter"
2582
  msgstr ""
2583
 
2584
- #: src/vue/pages/settings/views/WebmasterTools.vue:646
2585
- msgid "Ensure URL Consistency"
2586
  msgstr ""
2587
 
2588
- #: src/vue/pages/settings/views/WebmasterTools.vue:660
2589
- msgid "Google Tag Manager Container ID"
2590
  msgstr ""
2591
 
2592
- # Translators: 1 - "Google Tag Manager account".
2593
- #: src/vue/pages/settings/views/WebmasterTools.vue:664
2594
- msgid "Get your Google Tag Manager ID in your %1$s."
2595
  msgstr ""
2596
 
2597
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:178
2598
- msgid "Activate Monsterinsights"
2599
  msgstr ""
2600
 
2601
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:180
2602
- msgid "MonsterInsights is Installed & Active"
2603
  msgstr ""
2604
 
2605
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:181
2606
- msgid "ExactMetrics is Installed & Active"
2607
  msgstr ""
2608
 
2609
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:182
2610
- msgid "Launch Setup Wizard"
2611
  msgstr ""
2612
 
2613
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:184
2614
- msgid ""
2615
- "ExactMetrics connects AIOSEO to Google Analytics, providing a powerful "
2616
- "integration. ExactMetrics is a sister company of AIOSEO."
2617
  msgstr ""
2618
 
2619
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:188
2620
- msgid "Activate ExactMetrics"
2621
  msgstr ""
2622
 
2623
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:189
2624
- msgid ""
2625
- "ExactMetrics shows you exactly which content gets the most visits, so you "
2626
- "can analyze and optimize it for higher conversions."
2627
  msgstr ""
2628
 
2629
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:190
2630
- msgid "The Best Google Analytics Plugin for WordPress"
2631
  msgstr ""
2632
 
2633
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:191
2634
  msgid ""
2635
- "MonsterInsights connects AIOSEO to Google Analytics, providing a powerful "
2636
- "integration. MonsterInsights is a sister company of AIOSEO."
 
 
 
 
 
2637
  msgstr ""
2638
 
2639
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:192
2640
- msgid "Quick & Easy Google Analytics Setup"
 
 
2641
  msgstr ""
2642
 
2643
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:193
2644
- msgid "Google Analytics Dashboard + Real Time Stats"
2645
  msgstr ""
2646
 
2647
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:194
2648
- msgid "Google Analytics Enhanced Ecommerce Tracking"
2649
  msgstr ""
2650
 
2651
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:195
2652
- msgid "Universal Tracking for AMP and Instant Articles"
2653
  msgstr ""
2654
 
2655
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:196
2656
- msgid "Install &"
2657
  msgstr ""
2658
 
2659
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:197
2660
- msgid "Activate MonsterInsights"
2661
  msgstr ""
2662
 
2663
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:198
2664
- msgid ""
2665
- "MonsterInsights shows you exactly which content gets the most visits, so "
2666
- "you can analyze and optimize it for higher conversions."
2667
  msgstr ""
2668
 
2669
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:199
2670
- msgid "Setup ExactMetrics"
2671
  msgstr ""
2672
 
2673
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:200
2674
- msgid "Setup MonsterInsights"
2675
  msgstr ""
2676
 
2677
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:201
2678
- msgid ""
2679
- "ExactMetrics has an intuitive setup wizard to guide you through the setup "
2680
- "process."
2681
  msgstr ""
2682
 
2683
- #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:202
2684
- msgid ""
2685
- "MonsterInsights has an intuitive setup wizard to guide you through the "
2686
- "setup process."
2687
  msgstr ""
2688
 
2689
- #: src/vue/mixins/Wizard.js:6
2690
- msgid "Skip this Step"
2691
  msgstr ""
2692
 
2693
- #: src/vue/mixins/Wizard.js:7
2694
- msgid "Go Back"
2695
  msgstr ""
2696
 
2697
- #: src/vue/mixins/Wizard.js:8
2698
- msgid "Save and Continue"
2699
  msgstr ""
2700
 
2701
- #: src/vue/mixins/SeoSiteScore.js:10
2702
- msgid "to analyze a competitor site."
2703
  msgstr ""
2704
 
2705
- #: src/vue/mixins/SeoSiteScore.js:11
2706
- msgid "A valid license key is required"
2707
  msgstr ""
2708
 
2709
- #: src/vue/mixins/SeoSiteScore.js:5
2710
- msgid "We've got some<br>work to do!"
2711
  msgstr ""
2712
 
2713
- #: src/vue/mixins/SeoSiteScore.js:6
2714
- msgid "Needs<br>Improvement!"
2715
  msgstr ""
2716
 
2717
- #: src/vue/mixins/SeoSiteScore.js:7
2718
- msgid "Very Good!"
2719
  msgstr ""
2720
 
2721
- #: src/vue/mixins/SeoSiteScore.js:8
2722
- msgid "Excellent!"
2723
  msgstr ""
2724
 
2725
- #: src/vue/mixins/SeoSiteScore.js:9
2726
- msgid "to see your Site Score."
2727
  msgstr ""
2728
 
2729
- #: src/vue/mixins/Image.js:119
2730
- msgid "Choose Image"
2731
  msgstr ""
2732
 
2733
- #: src/vue/mixins/Image.js:55
2734
- msgid "Default Image (Set Below)"
2735
  msgstr ""
2736
 
2737
- #: src/vue/mixins/Image.js:56
2738
- msgid "Featured Image"
2739
  msgstr ""
2740
 
2741
- #: src/vue/mixins/Image.js:57
2742
- msgid "Attached Image"
 
2743
  msgstr ""
2744
 
2745
- #: src/vue/mixins/Image.js:58
2746
- msgid "First Image in Content"
2747
  msgstr ""
2748
 
2749
- #: src/vue/mixins/Image.js:59
2750
- msgid "Image from Custom Field"
2751
  msgstr ""
2752
 
2753
- #: src/vue/mixins/Image.js:60
2754
- msgid "Post Author Image"
 
2755
  msgstr ""
2756
 
2757
- #: src/vue/mixins/Image.js:61
2758
- msgid "First Available Image"
2759
  msgstr ""
2760
 
2761
- #: src/vue/mixins/Image.js:68
2762
- msgid "Default Image Source (Set in Social Networks)"
 
 
 
2763
  msgstr ""
2764
 
2765
- #: src/vue/mixins/Image.js:71
2766
- msgid "Custom Image"
 
2767
  msgstr ""
2768
 
2769
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:63
2770
- #: src/vue/components/common/core/SiteScoreCompetitor.vue:75
2771
- #: src/vue/components/common/core/SiteScoreDashboard.vue:65
2772
- #: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:90
2773
- msgid "Critical Issues"
2774
  msgstr ""
2775
 
2776
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:65
2777
- #: src/vue/components/common/core/SiteScoreCompetitor.vue:77
2778
- #: src/vue/components/common/core/SiteScoreDashboard.vue:67
2779
- #: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:100
2780
- msgid "Recommended Improvements"
2781
  msgstr ""
2782
 
2783
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:66
2784
- #: src/vue/components/common/core/SiteScoreCompetitor.vue:78
2785
- #: src/vue/components/common/core/SiteScoreDashboard.vue:68
2786
- #: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:110
2787
- msgid "Good Results"
2788
  msgstr ""
2789
 
2790
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:67
2791
- #: src/vue/components/common/core/SiteScoreCompetitor.vue:79
2792
- #: src/vue/components/common/core/SiteScoreDashboard.vue:69
2793
- msgid "Complete Site Audit Checklist"
2794
  msgstr ""
2795
 
2796
- #: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:30
2797
- msgid "All Good!"
2798
  msgstr ""
2799
 
2800
- #: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:29
2801
- msgid "Errors"
2802
  msgstr ""
2803
 
2804
- #: src/vue/mixins/License.js:11
2805
- msgid "Your license has been disabled."
2806
  msgstr ""
2807
 
2808
- #: src/vue/mixins/License.js:15
2809
- msgid "Your license key is invalid."
2810
  msgstr ""
2811
 
2812
- #: src/vue/mixins/License.js:4
2813
- msgid "You have not yet added a license key."
2814
  msgstr ""
2815
 
2816
- #: src/vue/mixins/License.js:7
2817
- msgid "Your license has expired."
2818
  msgstr ""
2819
 
2820
- # Translators: 1 - A number, 2 - A number.
2821
- #: src/vue/mixins/MaxCounts.js:6
2822
- msgid "%1$s out of %2$s max recommended characters."
2823
- msgstr ""
2824
-
2825
- #: src/vue/mixins/Notifications.js:6
2826
- msgid "Notifications"
2827
  msgstr ""
2828
 
2829
- #: src/vue/mixins/Notifications.js:7
2830
- msgid "New Notifications"
2831
  msgstr ""
2832
 
2833
- #: src/vue/mixins/Notifications.js:8
2834
- msgid "Active Notifications"
2835
  msgstr ""
2836
 
2837
- # Translators: 1 - The plugin name ("All in One SEO")
2838
- #: src/vue/pages/settings/mixins/AccessControl.js:14
2839
- msgid ""
2840
- "By default, only users with an Administrator role have permission to manage "
2841
- "%1$s within your WordPress admin area. With Access Controls, though, you "
2842
- "can easily extend specific access permissions to other user roles."
2843
  msgstr ""
2844
 
2845
- #: src/vue/pages/settings/mixins/AccessControl.js:15
2846
- msgid "Access Control Settings"
2847
  msgstr ""
2848
 
2849
- #: src/vue/pages/settings/mixins/AccessControl.js:16
2850
- msgid "Administrator"
2851
  msgstr ""
2852
 
2853
- #: src/vue/components/common/core/RobotsMeta.vue:100
2854
- #: src/vue/components/common/core/SingleRobotsMeta.vue:162
2855
- msgid "Use Default Settings"
2856
  msgstr ""
2857
 
2858
- #: src/vue/pages/settings/mixins/AccessControl.js:18
2859
- msgid "Editor"
2860
  msgstr ""
2861
 
2862
- #: src/vue/plugins/constants.js:1204
2863
- msgid "Author"
2864
  msgstr ""
2865
 
2866
- #: src/vue/pages/settings/mixins/AccessControl.js:20
2867
- msgid "SEO Manager"
2868
  msgstr ""
2869
 
2870
- #: src/vue/pages/settings/mixins/AccessControl.js:21
2871
- msgid "SEO Editor"
2872
  msgstr ""
2873
 
2874
- # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
2875
- #: src/vue/pages/settings/mixins/AccessControl.js:23
2876
- msgid "By default Admins have access to %1$sall SEO site settings%2$s"
2877
  msgstr ""
2878
 
2879
- # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
2880
- #: src/vue/pages/settings/mixins/AccessControl.js:25
2881
- msgid ""
2882
- "By default Editors have access to %1$sSEO settings for General Settings, "
2883
- "Search Appearance and Social Networks, as well as all settings for "
2884
- "individual pages and posts.%2$s"
2885
  msgstr ""
2886
 
2887
- # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
2888
- #: src/vue/pages/settings/mixins/AccessControl.js:27
2889
  msgid ""
2890
- "By default Authors have access to %1$sSEO settings for individual pages and "
2891
- "posts that they already have permission to edit.%2$s"
2892
  msgstr ""
2893
 
2894
- # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
2895
- #: src/vue/pages/settings/mixins/AccessControl.js:29
2896
- msgid ""
2897
- "By default SEO Managers have access to %1$sSEO settings for General "
2898
- "Settings, Redirections, and individual pages and posts.%2$s"
2899
  msgstr ""
2900
 
2901
- # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
2902
- #: src/vue/pages/settings/mixins/AccessControl.js:31
2903
- msgid ""
2904
- "By default SEO Editors have access to %1$sSEO settings for individual pages "
2905
- "and posts.%2$s"
2906
  msgstr ""
2907
 
2908
- #: src/vue/pages/post-settings/views/ModalContent.vue:41
2909
- msgid "Modal Content"
2910
  msgstr ""
2911
 
2912
- #: src/vue/pages/post-settings/views/Advanced.vue:114
2913
- msgid "Robots Setting"
2914
  msgstr ""
2915
 
2916
- #: src/vue/pages/post-settings/views/Advanced.vue:115
2917
- msgid "Use default settings"
2918
  msgstr ""
2919
 
2920
- #: src/vue/pages/post-settings/views/Advanced.vue:116
2921
- msgid "Canonical URL"
2922
  msgstr ""
2923
 
2924
- #: src/vue/pages/post-settings/views/Advanced.vue:117
2925
- msgid "Enter a URL to change the default Canonical URL"
2926
  msgstr ""
2927
 
2928
- #: src/vue/components/common/core/AdditionalPages.vue:98
2929
- #: src/vue/components/common/core/PriorityScore.vue:64
2930
- msgid "Priority"
2931
  msgstr ""
2932
 
2933
- #: src/vue/components/common/core/AdditionalPages.vue:99
2934
- #: src/vue/components/common/core/PriorityScore.vue:65
2935
- msgid "Frequency"
2936
  msgstr ""
2937
 
2938
- #: src/vue/pages/post-settings/views/General.vue:260
2939
- msgid "General"
 
2940
  msgstr ""
2941
 
2942
- #: src/vue/pages/post-settings/views/General.vue:261
2943
- msgid "Snippet Preview"
 
2944
  msgstr ""
2945
 
2946
- #: src/vue/pages/post-settings/views/General.vue:262
2947
- msgid "Snippet Preview content here."
 
 
 
2948
  msgstr ""
2949
 
2950
- #: src/vue/pages/post-settings/views/General.vue:263
2951
- msgid "Edit Snippet"
2952
  msgstr ""
2953
 
2954
- #: src/vue/pages/post-settings/views/General.vue:264
2955
- msgid "Click on tags below to insert variables into your title."
 
 
2956
  msgstr ""
2957
 
2958
- #: src/vue/pages/post-settings/views/Facebook.vue:253
2959
- msgid "Click on tags below to insert variables into your meta description."
2960
  msgstr ""
2961
 
2962
- #: src/vue/pages/post-settings/views/General.vue:267
2963
- msgid "Pillar Content"
2964
  msgstr ""
2965
 
2966
- #: src/vue/pages/post-settings/views/General.vue:268
2967
- msgid ""
2968
- "Cornerstone content should be the most important and extensive articles on "
2969
- "your site."
2970
  msgstr ""
2971
 
2972
- #: src/vue/pages/post-settings/views/General.vue:269
2973
- msgid "Focus Keyphrase"
2974
  msgstr ""
2975
 
2976
- #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:68
2977
- msgid "Additional Keyphrases"
2978
  msgstr ""
2979
 
2980
- #: src/vue/pages/post-settings/views/General.vue:271
2981
- msgid "Page Analysis"
2982
  msgstr ""
2983
 
2984
- #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:106
2985
- msgid "Basic SEO"
2986
  msgstr ""
2987
 
2988
- #: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:44
2989
- msgid "Readability"
 
 
2990
  msgstr ""
2991
 
2992
- #: src/vue/pages/post-settings/views/General.vue:275
 
2993
  msgid ""
2994
- "Looking for meta keywords? Click on the advanced tab above to add/edit meta "
2995
- "keywords."
 
 
2996
  msgstr ""
2997
 
2998
- # Translators: %s: The type of page (Post, Page, Category, Tag, etc.).
2999
- #: src/vue/pages/post-settings/views/General.vue:284
3000
- msgid "%s Title"
 
 
3001
  msgstr ""
3002
 
3003
- #: src/vue/pages/post-settings/views/Social.vue:60
3004
- msgid "Social"
3005
  msgstr ""
3006
 
3007
- #: src/vue/components/lite/settings/LicenseKey.vue:59
3008
- msgid "Your license key provides access to updates and addons."
 
 
3009
  msgstr ""
3010
 
3011
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:103
3012
- msgid "Paste your license key here"
3013
  msgstr ""
3014
 
3015
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:104
3016
- msgid "Connect"
3017
  msgstr ""
3018
 
3019
- # Translators: 1 - The plugin name ("All in One SEO").
3020
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:121
3021
- msgid "You're using %1$s - no license needed. Enjoy!"
3022
  msgstr ""
3023
 
3024
- # Translators: 1 - The plugin name ("All in One SEO").
3025
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:134
3026
- msgid "Already purchased? Simply enter your license key below to connect with %1$s!"
3027
  msgstr ""
3028
 
3029
- #: src/vue/components/lite/local-business/AreaServed.vue:16
3030
- msgid "The geographic area where a service or offered item is provided."
3031
  msgstr ""
3032
 
3033
- #: src/vue/components/lite/local-business/BusinessAddress.vue:55
3034
- msgid "Street address:"
3035
  msgstr ""
3036
 
3037
- #: src/vue/components/lite/local-business/BusinessAddress.vue:56
3038
- msgid "Street address line 2 (optional):"
3039
  msgstr ""
3040
 
3041
- #: src/vue/components/lite/local-business/BusinessAddress.vue:57
3042
- msgid "Zip code:"
3043
  msgstr ""
3044
 
3045
- #: src/vue/components/lite/local-business/BusinessAddress.vue:58
3046
- msgid "City:"
3047
  msgstr ""
3048
 
3049
- #: src/vue/components/lite/local-business/BusinessAddress.vue:59
3050
- msgid "State:"
 
 
 
 
 
3051
  msgstr ""
3052
 
3053
- #: src/vue/components/lite/local-business/BusinessAddress.vue:60
3054
- msgid "Country:"
3055
  msgstr ""
3056
 
3057
- #: src/vue/components/lite/local-business/BusinessContact.vue:28
3058
- msgid "Email address:"
 
 
 
3059
  msgstr ""
3060
 
3061
- #: src/vue/components/lite/local-business/BusinessContact.vue:29
3062
- msgid "Phone number:"
3063
- msgstr ""
3064
-
3065
- #: src/vue/components/lite/local-business/BusinessContact.vue:30
3066
- msgid "Fax number:"
3067
  msgstr ""
3068
 
3069
- #: src/vue/components/lite/local-business/BusinessIds.vue:25
3070
- msgid "VAT ID:"
 
 
 
 
3071
  msgstr ""
3072
 
3073
- #: src/vue/components/lite/local-business/BusinessIds.vue:26
3074
- msgid "Tax ID:"
 
 
 
3075
  msgstr ""
3076
 
3077
- #: src/vue/components/lite/local-business/PaymentInfo.vue:37
3078
- msgid "Price Indicator:"
 
 
 
 
3079
  msgstr ""
3080
 
3081
- #: src/vue/components/lite/local-business/PaymentInfo.vue:38
3082
- msgid "Accepted Currencies:"
 
 
 
3083
  msgstr ""
3084
 
3085
- #: src/vue/components/lite/local-business/PaymentInfo.vue:39
3086
- msgid "Accepted Payment Methods:"
 
 
3087
  msgstr ""
3088
 
3089
- # Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro".
3090
- #: src/vue/components/lite/core/UpgradeBar.vue:38
3091
- msgid "You're using %1$s. To unlock more features, consider %2$s."
 
 
 
 
3092
  msgstr ""
3093
 
3094
- #: src/vue/pages/local-seo/views/lite/Locations.vue:103
3095
  msgid ""
3096
- "Local business information may be displayed when users search for "
3097
- "businesses on Google search or Google Maps. Google decides on a per search "
3098
- "basis whether to display this information or not and it’s completely "
3099
- "automated."
3100
  msgstr ""
3101
 
3102
- #: src/vue/pages/local-seo/views/lite/Locations.vue:104
3103
- msgid "Multiple Locations"
 
3104
  msgstr ""
3105
 
3106
- #: src/vue/pages/local-seo/views/lite/Locations.vue:105
3107
- msgid "Display Location Info"
3108
  msgstr ""
3109
 
3110
- #: src/vue/pages/local-seo/views/lite/Locations.vue:107
3111
- msgid "Business Name"
3112
  msgstr ""
3113
 
3114
- #: src/vue/pages/local-seo/views/lite/Locations.vue:110
3115
- msgid "Business Address"
 
3116
  msgstr ""
3117
 
3118
- #: src/vue/pages/local-seo/views/lite/Locations.vue:112
3119
- msgid "Business IDs"
3120
  msgstr ""
3121
 
3122
- #: src/vue/pages/local-seo/views/lite/Locations.vue:114
3123
- msgid "Area Served"
 
3124
  msgstr ""
3125
 
3126
- #: src/vue/pages/local-seo/views/lite/Locations.vue:126
3127
- msgid "Archive Organization"
 
3128
  msgstr ""
3129
 
3130
- #: src/vue/pages/local-seo/views/lite/Locations.vue:127
3131
- msgid "Automotive Business"
 
3132
  msgstr ""
3133
 
3134
- #: src/vue/pages/local-seo/views/lite/Locations.vue:128
3135
- msgid "Childcare"
 
 
 
3136
  msgstr ""
3137
 
3138
- #: src/vue/pages/local-seo/views/lite/Locations.vue:129
3139
- msgid "Dentist"
 
 
3140
  msgstr ""
3141
 
3142
- #: src/vue/pages/local-seo/views/lite/Locations.vue:130
3143
- msgid "Dry Cleaning/Laundry"
 
 
 
3144
  msgstr ""
3145
 
3146
- #: src/vue/pages/local-seo/views/lite/Locations.vue:131
3147
- msgid "Emergency Service"
 
 
 
3148
  msgstr ""
3149
 
3150
- #: src/vue/pages/local-seo/views/lite/Locations.vue:132
3151
- msgid "Employment Agency"
 
 
3152
  msgstr ""
3153
 
3154
- #: src/vue/pages/local-seo/views/lite/Locations.vue:133
3155
- msgid "Entertainment Business"
 
 
 
3156
  msgstr ""
3157
 
3158
- #: src/vue/pages/local-seo/views/lite/Locations.vue:134
3159
- msgid "Financial Service"
 
 
 
 
3160
  msgstr ""
3161
 
3162
- #: src/vue/pages/local-seo/views/lite/Locations.vue:135
3163
- msgid "Food Establishment"
 
 
 
3164
  msgstr ""
3165
 
3166
- #: src/vue/pages/local-seo/views/lite/Locations.vue:136
3167
- msgid "Government Office"
 
 
3168
  msgstr ""
3169
 
3170
- #: src/vue/pages/local-seo/views/lite/Locations.vue:137
3171
- msgid "Health & Beauty Business"
 
 
3172
  msgstr ""
3173
 
3174
- #: src/vue/pages/local-seo/views/lite/Locations.vue:138
3175
- msgid "Home & Construction Business"
 
 
3176
  msgstr ""
3177
 
3178
- #: src/vue/pages/local-seo/views/lite/Locations.vue:139
3179
- msgid "Internet Cafe"
 
 
3180
  msgstr ""
3181
 
3182
- #: src/vue/pages/local-seo/views/lite/Locations.vue:140
3183
- msgid "Legal Service"
3184
  msgstr ""
3185
 
3186
- #: src/vue/pages/local-seo/views/lite/Locations.vue:141
3187
- msgid "Library"
3188
  msgstr ""
3189
 
3190
- #: src/vue/pages/local-seo/views/lite/Locations.vue:142
3191
- msgid "Lodging Business"
3192
  msgstr ""
3193
 
3194
- #: src/vue/pages/local-seo/views/lite/Locations.vue:143
3195
- msgid "Medical Business"
3196
  msgstr ""
3197
 
3198
- #: src/vue/pages/local-seo/views/lite/Locations.vue:144
3199
- msgid "Radio Station"
3200
  msgstr ""
3201
 
3202
- #: src/vue/pages/local-seo/views/lite/Locations.vue:145
3203
- msgid "Real Estate Agent"
3204
  msgstr ""
3205
 
3206
- #: src/vue/pages/local-seo/views/lite/Locations.vue:146
3207
- msgid "Recycling Center"
 
3208
  msgstr ""
3209
 
3210
- #: src/vue/pages/local-seo/views/lite/Locations.vue:147
3211
- msgid "Self Storage"
3212
  msgstr ""
3213
 
3214
- #: src/vue/pages/local-seo/views/lite/Locations.vue:148
3215
- msgid "Shopping Center"
 
 
 
3216
  msgstr ""
3217
 
3218
- #: src/vue/pages/local-seo/views/lite/Locations.vue:149
3219
- msgid "Sports Activity Location"
3220
  msgstr ""
3221
 
3222
- #: src/vue/pages/local-seo/views/lite/Locations.vue:150
3223
- msgid "Store"
3224
  msgstr ""
3225
 
3226
- #: src/vue/pages/local-seo/views/lite/Locations.vue:151
3227
- msgid "Television Station"
3228
  msgstr ""
3229
 
3230
- #: src/vue/pages/local-seo/views/lite/Locations.vue:152
3231
- msgid "Tourist Information Center"
3232
  msgstr ""
3233
 
3234
- #: src/vue/pages/local-seo/views/lite/Locations.vue:153
3235
- msgid "Travel Agency"
3236
  msgstr ""
3237
 
3238
- # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro", 3 - "Learn more link"..
3239
- #: src/vue/pages/post-settings/views/lite/Schema.vue:61
3240
- msgid "This feature is only for licensed %1$s %2$s users. %3$s"
3241
  msgstr ""
3242
 
3243
- #: src/vue/pages/post-settings/views/SocialSideBar.vue:26
 
3244
  msgid ""
3245
- "Here you can view and edit the thumbnail, title and description that will "
3246
- "be displayed when your site is shared on social media. Click on the button "
3247
- "below to view and edit the preview."
3248
- msgstr ""
3249
-
3250
- #: src/vue/pages/post-settings/views/SocialSideBar.vue:27
3251
- msgid "Preview & Edit"
3252
- msgstr ""
3253
-
3254
- #: src/vue/pages/post-settings/views/Facebook.vue:238
3255
- msgid "Facebook Preview"
3256
- msgstr ""
3257
-
3258
- #: src/vue/pages/post-settings/views/Facebook.vue:239
3259
- msgid "Image Source"
3260
- msgstr ""
3261
-
3262
- #: src/vue/pages/post-settings/views/Facebook.vue:240
3263
- msgid "Custom Field Name"
3264
  msgstr ""
3265
 
3266
- #: src/vue/pages/post-settings/views/Facebook.vue:241
3267
- msgid "Video URL"
 
 
 
3268
  msgstr ""
3269
 
3270
- #: src/vue/pages/post-settings/views/Facebook.vue:245
3271
- msgid "Facebook Image"
3272
  msgstr ""
3273
 
3274
- #: src/vue/pages/post-settings/views/Facebook.vue:246
3275
- msgid "Facebook Title"
 
3276
  msgstr ""
3277
 
3278
- #: src/vue/pages/post-settings/views/Facebook.vue:247
3279
- msgid "Facebook Description"
 
3280
  msgstr ""
3281
 
3282
- #: src/vue/pages/post-settings/views/Facebook.vue:250
3283
- msgid ""
3284
- "Minimum size: 200px x 200px, ideal ratio 1.91:1, 5MB max. (eg: 1640px x "
3285
- "856px or 3280px x 1712px for retina screens)"
3286
  msgstr ""
3287
 
3288
- #: src/vue/pages/post-settings/views/Facebook.vue:252
3289
- msgid "Click on tags below to insert variables into your site name."
 
3290
  msgstr ""
3291
 
3292
- #: src/vue/pages/post-settings/views/Facebook.vue:254
3293
- msgid "Article Section"
 
3294
  msgstr ""
3295
 
3296
- #: src/vue/pages/post-settings/views/Facebook.vue:255
3297
- msgid "Article Tags"
3298
  msgstr ""
3299
 
3300
- #: src/vue/pages/post-settings/views/Facebook.vue:256
3301
- msgid "Press enter to create an article tag"
 
3302
  msgstr ""
3303
 
3304
- #: src/vue/pages/post-settings/views/Facebook.vue:264
3305
- msgid "Default"
 
3306
  msgstr ""
3307
 
3308
- #: src/vue/pages/post-settings/views/Facebook.vue:264
3309
- msgid "Default Object Type (Set in Social Networks)"
3310
  msgstr ""
3311
 
3312
- #: src/vue/pages/post-settings/views/Twitter.vue:213
3313
- msgid "Twitter Preview"
 
3314
  msgstr ""
3315
 
3316
- #: src/vue/pages/post-settings/views/Twitter.vue:214
3317
- msgid "Use Data from Facebook Tab"
 
3318
  msgstr ""
3319
 
3320
- #: src/vue/pages/post-settings/views/Twitter.vue:217
3321
- msgid "Twitter Image"
3322
  msgstr ""
3323
 
3324
- #: src/vue/pages/post-settings/views/Twitter.vue:218
3325
- msgid "Twitter Title"
 
3326
  msgstr ""
3327
 
3328
- #: src/vue/pages/post-settings/views/Twitter.vue:219
3329
- msgid "Twitter Description"
 
3330
  msgstr ""
3331
 
3332
- #: src/vue/pages/post-settings/views/Twitter.vue:220
3333
- msgid "Twitter Card Type"
3334
  msgstr ""
3335
 
3336
- #: src/vue/pages/social-networks/views/Twitter.vue:449
3337
- msgid ""
3338
- "Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and "
3339
- "GIF formats only."
3340
  msgstr ""
3341
 
3342
- #: src/vue/pages/social-networks/views/Twitter.vue:450
3343
- msgid ""
3344
- "Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and "
3345
- "GIF formats only."
3346
  msgstr ""
3347
 
3348
- #: src/vue/pages/post-settings/views/Twitter.vue:234
3349
- msgid "Default (Set under Social Networks)"
 
3350
  msgstr ""
3351
 
3352
- #: src/vue/pages/social-networks/views/Twitter.vue:437
3353
- msgid "Summary"
3354
  msgstr ""
3355
 
3356
- #: src/vue/pages/social-networks/views/Twitter.vue:438
3357
- msgid "Summary with Large Image"
 
3358
  msgstr ""
3359
 
3360
- #: src/vue/classes/SiteAnalysis.js:119
3361
- msgid "Title:"
3362
  msgstr ""
3363
 
3364
- #: src/vue/classes/SiteAnalysis.js:125
3365
- msgid "Description:"
 
3366
  msgstr ""
3367
 
3368
- #: src/vue/pages/posts-table/App.vue:222
3369
- msgid "Edit"
3370
  msgstr ""
3371
 
3372
- #: src/vue/pages/posts-table/App.vue:223
3373
- msgid "Save"
 
 
 
3374
  msgstr ""
3375
 
3376
- #: src/vue/pages/posts-table/App.vue:224
3377
- msgid "Cancel"
3378
  msgstr ""
3379
 
3380
- #: src/vue/pages/posts-table/App.vue:225
3381
- msgid "Please wait..."
 
 
 
3382
  msgstr ""
3383
 
3384
- #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:69
3385
- msgid "Add Additional Keyphrases"
3386
  msgstr ""
3387
 
3388
- # Translators: 1 - "Pro" string, 2 - "Learn more link".
3389
- #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:71
3390
- msgid "Upgrade to %1$s to add related keyphrases. %2$s"
3391
  msgstr ""
3392
 
3393
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:60
3394
- msgid "Add Focus Keyphrase"
3395
  msgstr ""
3396
 
3397
- # Translators: 1 - "Learn more link".
3398
- #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:62
3399
  msgid ""
3400
- "Not sure what keyphrases are used for? Check out our documentation for more "
3401
- "information. %1$s"
3402
- msgstr ""
3403
-
3404
- #: src/vue/pages/posts-table/App.vue:220
3405
- msgid "Image Title:"
3406
- msgstr ""
3407
-
3408
- #: src/vue/pages/posts-table/App.vue:221
3409
- msgid "Image Alt Tag:"
3410
- msgstr ""
3411
-
3412
- #: src/vue/pages/local-seo/views/lite/Locations.vue:120
3413
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
3414
- msgid "Upgrade to Pro and Unlock Local SEO"
3415
  msgstr ""
3416
 
3417
- #: src/vue/pages/local-seo/views/lite/Locations.vue:121
3418
- #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:303
3419
- msgid "Local SEO is only available for licensed %1$s %2$s users."
3420
  msgstr ""
3421
 
3422
- #: src/vue/pages/social-networks/views/Pinterest.vue:46
3423
- msgid ""
3424
- "Pinterest uses Open Graph metadata just like Facebook, so be sure to keep "
3425
- "Open Graph enabled on the Facebook tab checked if you want to optimize your "
3426
- "site for Pinterest."
3427
  msgstr ""
3428
 
3429
- #: src/vue/pages/social-networks/views/Pinterest.vue:47
3430
- msgid "Learn how to get your Pinterest Verification Code"
3431
  msgstr ""
3432
 
3433
- #: src/vue/pages/social-networks/views/Pinterest.vue:48
 
3434
  msgid ""
3435
- "If you have already confirmed your website with Pinterest, you can skip the "
3436
- "step below."
3437
  msgstr ""
3438
 
3439
- #: src/vue/components/common/wizard/CloseAndExit.vue:14
3440
- msgid "Close and Exit Wizard Without Saving"
3441
  msgstr ""
3442
 
3443
- # Translators: 1 - The current step count. 2 - The total step count.
3444
- #: src/vue/components/common/wizard/Steps.vue:15
3445
- msgid "Step %1$s of %2$s"
3446
  msgstr ""
3447
 
3448
- #: src/vue/pages/social-networks/views/SocialProfiles.vue:26
3449
- msgid ""
3450
- "To let search engines know which profiles are associated with this site, "
3451
- "enter them below:"
3452
  msgstr ""
3453
 
3454
- #: src/vue/pages/social-networks/views/Twitter.vue:432
3455
- msgid "Twitter Card Settings"
 
3456
  msgstr ""
3457
 
3458
- # Translators: 1 - The plugin name ("All in One SEO").
3459
- #: src/vue/pages/social-networks/views/Twitter.vue:434
3460
- msgid ""
3461
- "Enable this feature if you want Twitter to display a preview card with "
3462
- "images and a text excerpt when a link to your site is shared."
3463
  msgstr ""
3464
 
3465
- #: src/vue/pages/social-networks/views/Twitter.vue:435
3466
- msgid "Enable Twitter Card"
3467
  msgstr ""
3468
 
3469
- #: src/vue/pages/social-networks/views/Twitter.vue:436
3470
- msgid "Default Card Type"
3471
  msgstr ""
3472
 
3473
- #: src/vue/pages/social-networks/views/Twitter.vue:445
3474
- msgid "Default Post Twitter Image"
3475
  msgstr ""
3476
 
3477
- #: src/vue/pages/social-networks/views/Twitter.vue:446
3478
- msgid "Default Term Twitter Image"
3479
  msgstr ""
3480
 
3481
- #: src/vue/pages/social-networks/views/Twitter.vue:452
3482
- msgid "Home Page Image"
3483
  msgstr ""
3484
 
3485
- #: src/vue/pages/setup-wizard/views/Category.vue:149
3486
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:255
3487
- #: src/vue/pages/social-networks/views/Twitter.vue:453
3488
- msgid "Home Page Title"
3489
  msgstr ""
3490
 
3491
- #: src/vue/pages/social-networks/views/Twitter.vue:460
3492
- msgid "Show Twitter Author"
3493
  msgstr ""
3494
 
3495
- #: src/vue/pages/social-networks/views/Twitter.vue:463
3496
- msgid "Card Type"
3497
  msgstr ""
3498
 
3499
- #: src/vue/pages/social-networks/views/Twitter.vue:464
3500
- msgid "Additional Data"
3501
  msgstr ""
3502
 
3503
- #: src/vue/pages/social-networks/views/Twitter.vue:465
3504
- msgid ""
3505
- "Enable this option to show additional Twitter data on your posts and pages "
3506
- "(i.e., who the post was written by and how long it might take to read the "
3507
- "article)."
3508
  msgstr ""
3509
 
3510
  #: src/vue/pages/setup-wizard/views/Category.vue:146
@@ -3549,2469 +3591,2352 @@ msgstr ""
3549
  msgid "Other:"
3550
  msgstr ""
3551
 
3552
- #: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:67
3553
- msgid "Complete SEO Checklist"
3554
- msgstr ""
3555
-
3556
- #: src/vue/components/common/core/SiteScoreCompetitor.vue:80
3557
- #: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:68
3558
- msgid "Refresh Results"
3559
- msgstr ""
3560
-
3561
- #: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:80
3562
- msgid "All Items"
3563
- msgstr ""
3564
-
3565
- #: src/vue/pages/setup-wizard/views/Features.vue:126
3566
- msgid "The following plugins will be installed: %2$s"
3567
- msgstr ""
3568
-
3569
- #: src/vue/pages/setup-wizard/views/Features.vue:130
3570
- msgid "The following %1$s addons will be installed: %2$s"
3571
- msgstr ""
3572
-
3573
- #: src/vue/pages/setup-wizard/views/Features.vue:134
3574
- msgid "The following plugins and %1$s addons will be installed: %2$s"
3575
- msgstr ""
3576
-
3577
- #: src/vue/pages/setup-wizard/views/Features.vue:82
3578
- msgid "Which SEO features do you want to enable?"
3579
- msgstr ""
3580
-
3581
- #: src/vue/pages/setup-wizard/views/Features.vue:86
3582
- msgid ""
3583
- "We have already selected our recommended features based on your site "
3584
- "category, but you can use the following features to fine-tune your site."
3585
- msgstr ""
3586
-
3587
- #: src/vue/pages/setup-wizard/views/Import.vue:80
3588
- msgid "Import data from your current plugins"
3589
- msgstr ""
3590
-
3591
- #: src/vue/pages/setup-wizard/views/Import.vue:81
3592
- msgid ""
3593
- "We have detected other SEO plugins installed on your website. Select which "
3594
- "plugins you would like to import data to %1$s."
3595
- msgstr ""
3596
-
3597
- #: src/vue/pages/setup-wizard/views/Import.vue:82
3598
- msgid "Import Data and Continue"
3599
- msgstr ""
3600
-
3601
- # Translators: 1 - "Pro".
3602
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:102
3603
- msgid "upgrade to %1$s"
3604
- msgstr ""
3605
-
3606
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:128
3607
- msgid "To unlock the selected features, please enter your license key below."
3608
  msgstr ""
3609
 
3610
- # Translators: 1 - "upgrading to Pro".
3611
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:130
3612
  msgid ""
3613
- "To unlock the selected features, please %1$s and enter your license key "
3614
- "below."
3615
- msgstr ""
3616
-
3617
- # Translators: 1 - The plugin short name ("AIOSEO").
3618
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:98
3619
- msgid "Enter your %1$s License Key"
3620
  msgstr ""
3621
 
3622
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:250
3623
  msgid ""
3624
- "The way your site is displayed in search results is very important. Take "
3625
- "some time to look over these settings and tweak as needed."
3626
- msgstr ""
3627
-
3628
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:251
3629
- msgid "Google Snippet Preview"
3630
- msgstr ""
3631
-
3632
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:252
3633
- msgid "Edit Title and Description"
3634
- msgstr ""
3635
-
3636
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:257
3637
- msgid "Is the site under construction or live (ready to be indexed)?"
3638
- msgstr ""
3639
-
3640
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:258
3641
- msgid "Under Construction"
3642
- msgstr ""
3643
-
3644
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:259
3645
- msgid "Live Site"
3646
- msgstr ""
3647
-
3648
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:262
3649
- msgid "Do you have multiple authors?"
3650
  msgstr ""
3651
 
3652
- #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:263
3653
- msgid "Redirect attachment pages?"
3654
  msgstr ""
3655
 
3656
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:179
3657
- msgid "Setup Site Analyzer + Smart Recommendations"
3658
  msgstr ""
3659
 
3660
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:180
3661
  msgid ""
3662
- "Get helpful suggestions from %1$s on how to optimize your website content, "
3663
- "so you can rank higher in search results."
3664
- msgstr ""
3665
-
3666
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:181
3667
- msgid "Your Email Address"
3668
  msgstr ""
3669
 
3670
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:182
3671
- msgid ""
3672
- "Your email is needed so you can receive SEO recommendations. This email "
3673
- "will also be used to connect your site with our SEO API."
3674
  msgstr ""
3675
 
3676
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:183
3677
- msgid "Get Automatic WordPress Plugin Updates"
 
3678
  msgstr ""
3679
 
3680
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:184
3681
- msgid "Enable automatic updates"
 
3682
  msgstr ""
3683
 
3684
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:185
3685
- msgid "Help make %1$s better for everyone"
3686
  msgstr ""
3687
 
3688
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:186
3689
- msgid "Yes, count me in"
3690
  msgstr ""
3691
 
3692
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:187
3693
- msgid "Would you like to purchase and install the following features now?"
3694
  msgstr ""
3695
 
3696
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:188
3697
- msgid "An upgrade is required to unlock the following features."
3698
  msgstr ""
3699
 
3700
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:189
3701
- msgid ""
3702
- "You won't have access to this functionality until the extensions have been "
3703
- "purchased and installed."
3704
  msgstr ""
3705
 
3706
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:190
3707
- msgid "I'll do it later"
3708
  msgstr ""
3709
 
3710
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:191
3711
- msgid "Purchase and Install Now"
3712
  msgstr ""
3713
 
3714
- # Translators: 1 - Opening bold tag. 2 - Closing bold tag. 3 - Opening bold tag. 4 - Percent between 1-100. 5 - Closing bold tag.
3715
- #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:193
3716
- #: src/vue/pages/setup-wizard/views/Success.vue:145
3717
- msgid ""
3718
- "%1$sBonus:%2$s You can upgrade your plan today and %3$ssave %4$s off%5$s "
3719
- "(discount auto-applied)."
3720
  msgstr ""
3721
 
3722
- #: src/vue/pages/setup-wizard/views/Success.vue:134
3723
- msgid "Congratulations, your site is now SEO ready!"
3724
  msgstr ""
3725
 
3726
- #: src/vue/pages/setup-wizard/views/Success.vue:135
3727
- msgid "Finish Setup and Go to the Dashboard"
3728
  msgstr ""
3729
 
3730
- #: src/vue/pages/setup-wizard/views/Success.vue:136
3731
- msgid "Here's what to do next:"
3732
  msgstr ""
3733
 
3734
- #: src/vue/pages/setup-wizard/views/Success.vue:137
3735
- msgid "Join our Community"
3736
  msgstr ""
3737
 
3738
- #: src/vue/pages/setup-wizard/views/Success.vue:138
3739
- msgid "Join on Facebook"
3740
  msgstr ""
3741
 
3742
- #: src/vue/pages/setup-wizard/views/Success.vue:139
3743
- msgid "Follow on Twitter"
3744
  msgstr ""
3745
 
3746
- #: src/vue/pages/setup-wizard/views/Success.vue:140
3747
- msgid "Read our Step By Step Guide to Improve your SEO Rankings"
3748
  msgstr ""
3749
 
3750
- #: src/vue/pages/setup-wizard/views/Success.vue:141
3751
- msgid "Watch our Guided Tour of %1$s"
3752
  msgstr ""
3753
 
3754
- #: src/vue/pages/setup-wizard/views/Success.vue:142
3755
- msgid "See Advanced Settings"
3756
  msgstr ""
3757
 
3758
- #: src/vue/pages/setup-wizard/views/Success.vue:143
3759
- msgid "Setup Webmaster Tools"
3760
  msgstr ""
3761
 
3762
- # Translators: 1 - The plugin name ("All in One SEO").
3763
- #: src/vue/pages/setup-wizard/views/Welcome.vue:42
3764
- msgid "Welcome to the %1$s Setup Wizard!"
3765
  msgstr ""
3766
 
3767
- #: src/vue/pages/setup-wizard/views/Welcome.vue:43
3768
- msgid ""
3769
- "%1$s makes it easy to configure your site's SEO settings without the need "
3770
- "to hire an expert. And it takes less than 10 minutes too!"
3771
  msgstr ""
3772
 
3773
- #: src/vue/pages/setup-wizard/views/Welcome.vue:44
3774
- msgid "Let's Get Started"
3775
  msgstr ""
3776
 
3777
- #: src/vue/pages/setup-wizard/views/Welcome.vue:45
3778
- msgid "Go back to the Dashboard"
3779
  msgstr ""
3780
 
3781
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:322
3782
- msgid "Organization Name"
3783
  msgstr ""
3784
 
3785
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:332
3786
- msgid "Default Social Share Image"
3787
  msgstr ""
3788
 
3789
- #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:333
3790
- msgid "Your Social Profiles"
3791
  msgstr ""
3792
 
3793
- #: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:111
3794
- msgid "Enter Competitor URL"
3795
  msgstr ""
3796
 
3797
- #: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:112
3798
- msgid "Perform in-depth SEO Analysis of your competitor's website."
3799
  msgstr ""
3800
 
3801
- #: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:113
3802
- msgid "Analyze"
3803
  msgstr ""
3804
 
3805
- #: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:114
3806
- msgid "Please enter a valid URL."
3807
  msgstr ""
3808
 
3809
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:77
3810
- #: src/vue/components/common/core/SiteScoreDashboard.vue:78
3811
- #: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:131
3812
- msgid "The URL provided is invalid."
3813
  msgstr ""
3814
 
3815
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:79
3816
- #: src/vue/components/common/core/SiteScoreDashboard.vue:80
3817
- #: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:133
3818
- msgid "We were unable to parse the content for this site."
3819
  msgstr ""
3820
 
3821
- # Translators: 1 - The plugin short name ('AIOSEO').
3822
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:82
3823
- #: src/vue/components/common/core/SiteScoreDashboard.vue:83
3824
- #: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:136
3825
- msgid "Your site is not connected. Please connect to %1$s, then try again."
3826
  msgstr ""
3827
 
3828
- #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:409
3829
- msgid ""
3830
- "Select which Taxonomies appear in your sitemap. Categories and Tags are "
3831
- "excluded by default since these do not support video embedding."
3832
  msgstr ""
3833
 
3834
- #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:16
3835
- msgid "HTML Sitemap"
3836
  msgstr ""
3837
 
3838
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:125
3839
- msgid ""
3840
- "This option will generate a separate RSS Sitemap which can be submitted to "
3841
- "Google, Bing and any other search engines that support this type of "
3842
- "sitemap. The RSS Sitemap contains an RSS feed of the latest updates to your "
3843
- "site content. It is not a full sitemap of all your content."
3844
  msgstr ""
3845
 
3846
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:130
3847
- msgid "Number of Posts"
3848
  msgstr ""
3849
 
3850
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:133
3851
- msgid "Open RSS Sitemap"
3852
  msgstr ""
3853
 
3854
- #: src/vue/pages/sitemaps/views/RssSitemap.vue:134
3855
- msgid ""
3856
- "Allows you to specify the maximum number of posts for the RSS Sitemap. We "
3857
- "recommend an amount of 50 posts."
3858
  msgstr ""
3859
 
3860
- #: src/vue/pages/tools/views/DatabaseTools.vue:168
3861
- msgid "Reset / Restore Settings"
3862
  msgstr ""
3863
 
3864
- #: src/vue/pages/tools/views/DatabaseTools.vue:169
3865
- msgid "Select Settings"
3866
  msgstr ""
3867
 
3868
- #: src/vue/pages/tools/views/DatabaseTools.vue:170
3869
- msgid "Select settings that you would like to reset:"
3870
  msgstr ""
3871
 
3872
- #: src/vue/pages/tools/views/DatabaseTools.vue:171
3873
- msgid "Reset Selected Settings to Default"
3874
  msgstr ""
3875
 
3876
- #: src/vue/pages/tools/views/DatabaseTools.vue:172
3877
- msgid "Your settings have been reset successfully!"
3878
  msgstr ""
3879
 
3880
- #: src/vue/pages/tools/views/DatabaseTools.vue:173
3881
- msgid "Are you sure you want to reset the selected settings to default?"
3882
  msgstr ""
3883
 
3884
- #: src/vue/pages/tools/views/DatabaseTools.vue:175
3885
- msgid ""
3886
- "This action cannot be undone. Before taking this action, we recommend that "
3887
- "you make a %1$sfull website backup first%2$s."
3888
  msgstr ""
3889
 
3890
- #: src/vue/pages/tools/views/DatabaseTools.vue:176
3891
- msgid "Yes, I have a backup and want to reset the settings"
3892
  msgstr ""
3893
 
3894
- #: src/vue/pages/tools/views/DatabaseTools.vue:177
3895
- msgid "No, I need to make a backup"
3896
  msgstr ""
3897
 
3898
- #: src/vue/pages/tools/views/DatabaseTools.vue:178
3899
- msgid "Logs"
3900
  msgstr ""
3901
 
3902
- #: src/vue/pages/tools/views/DatabaseTools.vue:179
3903
- msgid "Bad Bot Blocker Logs"
3904
  msgstr ""
3905
 
3906
- #: src/vue/pages/tools/views/DatabaseTools.vue:180
3907
- msgid "Cleared"
3908
  msgstr ""
3909
 
3910
- #: src/vue/pages/tools/views/DatabaseTools.vue:181
3911
- msgid "Clear Bad Bot Blocker Logs"
3912
  msgstr ""
3913
 
3914
- # Translators: 1 - The plugin short name ("AIOSEO").
3915
- #: src/vue/pages/tools/views/DatabaseTools.vue:183
3916
- msgid "All %1$s Settings"
3917
  msgstr ""
3918
 
3919
- #: src/vue/pages/tools/views/DatabaseTools.vue:198
3920
- msgid "Robots.txt"
3921
  msgstr ""
3922
 
3923
- #: src/vue/pages/tools/views/HtaccessEditor.vue:41
3924
- msgid "Edit .htaccess"
3925
  msgstr ""
3926
 
3927
- #: src/vue/pages/tools/views/HtaccessEditor.vue:43
3928
  msgid ""
3929
- "This allows you to edit the .htaccess file for your site. All WordPress "
3930
- "sites on an Apache server have a .htaccess file and we have provided you "
3931
- "with a convenient way of editing it. Care should always be taken when "
3932
- "editing important files from within WordPress as an incorrect change could "
3933
- "cause WordPress to become inaccessible. %1$sBe sure to make a backup before "
3934
- "making changes and ensure that you have FTP access to your web server and "
3935
- "know how to access and edit files via FTP.%2$s"
3936
  msgstr ""
3937
 
3938
- #: src/vue/pages/tools/views/ImportExport.vue:36
3939
- msgid "Export / Backup Settings"
 
 
3940
  msgstr ""
3941
 
3942
- # Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO").
3943
- #: src/vue/pages/tools/views/RobotsEditor.vue:238
3944
- msgid ""
3945
- "The robots.txt editor in %1$s allows you to set up a robots.txt file for "
3946
- "your site that will override the default robots.txt file that WordPress "
3947
- "creates. By creating a robots.txt file with %2$s you have greater control "
3948
- "over the instructions you give web crawlers about your site."
3949
  msgstr ""
3950
 
3951
- #: src/vue/pages/tools/views/RobotsEditor.vue:239
3952
- msgid ""
3953
- "Just like WordPress, %1$s generates a dynamic file so there is no static "
3954
- "file to be found on your server. The content of the robots.txt file is "
3955
- "stored in your WordPress database."
3956
  msgstr ""
3957
 
3958
- #: src/vue/pages/tools/views/RobotsEditor.vue:240
3959
- msgid "Enable Custom Robots.txt"
3960
  msgstr ""
3961
 
3962
- #: src/vue/pages/tools/views/RobotsEditor.vue:241
3963
- msgid ""
3964
- "Duplicate or invalid entries have been detected! Please check your rules "
3965
- "and try again."
3966
  msgstr ""
3967
 
3968
- #: src/vue/pages/tools/views/RobotsEditor.vue:242
3969
- msgid "User Agent"
3970
  msgstr ""
3971
 
3972
- #: src/vue/pages/tools/views/RobotsEditor.vue:243
3973
- msgid "Rule"
3974
  msgstr ""
3975
 
3976
- #: src/vue/pages/tools/views/RobotsEditor.vue:244
3977
- msgid "Directory Path"
3978
  msgstr ""
3979
 
3980
- #: src/vue/pages/tools/views/RobotsEditor.vue:245
3981
- msgid "Allow"
 
3982
  msgstr ""
3983
 
3984
- #: src/vue/pages/tools/views/RobotsEditor.vue:246
3985
- msgid "Disallow"
 
3986
  msgstr ""
3987
 
3988
- #: src/vue/pages/tools/views/RobotsEditor.vue:247
3989
- msgid "Add Rule"
3990
  msgstr ""
3991
 
3992
- #: src/vue/pages/tools/views/RobotsEditor.vue:248
3993
- msgid "Delete Rule"
3994
  msgstr ""
3995
 
3996
- #: src/vue/pages/tools/views/RobotsEditor.vue:249
3997
- msgid "Robots.txt Preview:"
3998
  msgstr ""
3999
 
4000
- #: src/vue/pages/tools/views/RobotsEditor.vue:250
4001
- msgid "Open Robots.txt"
4002
  msgstr ""
4003
 
4004
- # Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO").
4005
- #: src/vue/pages/tools/views/RobotsEditor.vue:252
4006
- msgid ""
4007
- "%1$s has detected a physical robots.txt file in the root folder of your "
4008
- "WordPress installation. We recommend removing this file as it could cause "
4009
- "conflicts with WordPress' dynamically generated one. %2$s can import this "
4010
- "file and delete it, or you can simply delete it."
4011
  msgstr ""
4012
 
4013
- #: src/vue/pages/tools/views/RobotsEditor.vue:253
4014
- msgid "Import and Delete"
4015
  msgstr ""
4016
 
4017
- # Translators: 1 - The url to the main site.
4018
- #: src/vue/pages/tools/views/RobotsEditor.vue:285
4019
- msgid ""
4020
- "This site is running in a sub-directory of your main site located at %1$s. "
4021
- "Your robots.txt file should only appear in the root directory of that site."
4022
  msgstr ""
4023
 
4024
- #: src/vue/pages/tools/views/RobotsEditor.vue:288
4025
- msgid ""
4026
- "It looks like you are missing the proper rewrite rules for the robots.txt "
4027
- "file."
4028
  msgstr ""
4029
 
4030
- # Translators: 1 - Opening link tag. 2 - Closing link tag.
4031
- #: src/vue/pages/tools/views/RobotsEditor.vue:292
4032
- msgid ""
4033
- "It appears that your server is running on Apache, so the fix should be as "
4034
- "simple as checking the %1$scorrect .htaccess implementation on "
4035
- "wordpress.org%2$s."
4036
  msgstr ""
4037
 
4038
- #: src/vue/pages/tools/views/RobotsEditor.vue:294
4039
- msgid ""
4040
- "It appears that your server is running on nginx, so the fix will most "
4041
- "likely require adding the correct rewrite rules to our nginx configuration. "
4042
- "%1$sCheck our documentation for more information%2$s."
4043
  msgstr ""
4044
 
4045
- #: src/vue/pages/tools/views/SystemStatus.vue:115
4046
- msgid "System Status Info"
4047
  msgstr ""
4048
 
4049
- #: src/vue/pages/tools/views/SystemStatus.vue:116
4050
- msgid "Download System Info File"
4051
  msgstr ""
4052
 
4053
- #: src/vue/pages/tools/views/SystemStatus.vue:117
4054
- msgid "Copy to Clipboard"
4055
  msgstr ""
4056
 
4057
- #: src/vue/pages/tools/views/SystemStatus.vue:118
4058
- msgid "Email Debug Information"
4059
  msgstr ""
4060
 
4061
- #: src/vue/pages/tools/views/SystemStatus.vue:119
4062
- msgid "Submit"
4063
  msgstr ""
4064
 
4065
- #: src/vue/pages/tools/views/SystemStatus.vue:120
4066
- msgid "WordPress"
4067
  msgstr ""
4068
 
4069
- #: src/vue/pages/tools/views/SystemStatus.vue:121
4070
- msgid "Server Info"
4071
  msgstr ""
4072
 
4073
- #: src/vue/pages/tools/views/SystemStatus.vue:122
4074
- msgid "Active Theme"
4075
  msgstr ""
4076
 
4077
- #: src/vue/pages/tools/views/SystemStatus.vue:123
4078
- msgid "Must-Use Plugins"
4079
  msgstr ""
4080
 
4081
- #: src/vue/pages/tools/views/SystemStatus.vue:124
4082
- msgid "Active Plugins"
4083
  msgstr ""
4084
 
4085
- #: src/vue/pages/tools/views/SystemStatus.vue:125
4086
- msgid "Inactive Plugins"
4087
  msgstr ""
4088
 
4089
- #: src/vue/components/common/core/CopyBlock.vue:48
4090
- #: src/vue/pages/tools/views/SystemStatus.vue:126
4091
- msgid "Copied!"
4092
  msgstr ""
4093
 
4094
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:12
4095
- msgid "Open News Sitemap"
4096
  msgstr ""
4097
 
4098
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:15
4099
- msgid "Upgrade to Pro and Unlock News Sitemaps"
4100
  msgstr ""
4101
 
4102
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:16
4103
- msgid "News Sitemaps are only available for licensed %1$s %2$s users."
4104
  msgstr ""
4105
 
4106
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:8
4107
- msgid "Set Publication Name"
4108
  msgstr ""
4109
 
4110
- #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:9
4111
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:8
4112
- msgid "Exclude Pages/Posts"
4113
  msgstr ""
4114
 
4115
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:12
4116
- msgid "Open Video Sitemap"
4117
  msgstr ""
4118
 
4119
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:15
4120
- msgid "Upgrade to Pro and Unlock Video Sitemaps"
4121
  msgstr ""
4122
 
4123
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:16
4124
- msgid "Video Sitemaps are only available for licensed %1$s %2$s users."
4125
  msgstr ""
4126
 
4127
- #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:7
4128
- msgid "Custom Field Support"
4129
  msgstr ""
4130
 
4131
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:64
4132
- #: src/vue/components/common/core/SiteScoreCompetitor.vue:76
4133
- #: src/vue/components/common/core/SiteScoreDashboard.vue:66
4134
- msgid "Warnings"
4135
  msgstr ""
4136
 
4137
- #: src/vue/components/common/core/SiteScoreCompetitor.vue:81
4138
- msgid "Mobile Snapshot"
4139
  msgstr ""
4140
 
4141
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:57
4142
- msgid "Your Overall Site Score"
4143
  msgstr ""
4144
 
4145
- # Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag.
4146
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:59
4147
- msgid "A very good score is between %1$s60 and 80%2$s."
4148
  msgstr ""
4149
 
4150
- # Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag.
4151
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:61
4152
- msgid "For best results, you should strive for %1$s70 and above%2$s."
4153
  msgstr ""
4154
 
4155
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:62
4156
- #: src/vue/components/common/core/SiteScoreDashboard.vue:64
4157
- msgid "An error occurred while analyzing your site."
4158
  msgstr ""
4159
 
4160
- #: src/vue/components/common/core/SiteScoreAnalyze.vue:68
4161
- msgid "Read the Ultimate WordPress SEO Guide"
 
 
 
 
 
4162
  msgstr ""
4163
 
4164
- #: src/vue/components/common/core/SiteScore.vue:45
4165
- msgid "Analyzing..."
4166
  msgstr ""
4167
 
4168
- #: src/vue/components/common/core/NotificationCards.vue:58
4169
- msgid "Great Scott! Where'd they all go?"
4170
  msgstr ""
4171
 
4172
- #: src/vue/components/common/core/NotificationCards.vue:59
4173
- msgid "You have no new notifications."
 
4174
  msgstr ""
4175
 
4176
- #: src/vue/components/common/core/NotificationCards.vue:60
4177
- msgid "See Dismissed Notifications"
 
4178
  msgstr ""
4179
 
4180
- #: src/vue/components/common/core/Notifications.vue:94
4181
- msgid "Dismissed Notifications"
4182
  msgstr ""
4183
 
4184
- #: src/vue/components/common/core/PostTypeOptions.vue:86
4185
- msgid "Label:"
4186
  msgstr ""
4187
 
4188
- #: src/vue/components/common/core/PostTypeOptions.vue:87
4189
- msgid "Slug:"
 
 
4190
  msgstr ""
4191
 
4192
- #: src/vue/components/common/core/PostTypeOptions.vue:88
4193
- msgid "No post types available."
 
 
4194
  msgstr ""
4195
 
4196
- #: src/vue/components/common/core/PostTypeOptions.vue:89
4197
- msgid "No taxonomies available."
 
 
 
 
4198
  msgstr ""
4199
 
4200
- #: src/vue/components/common/core/PostTypeOptions.vue:90
4201
  msgid ""
4202
- "All post types are set to noindex or your site does not have any post types "
4203
- "registered that are supported by this feature."
4204
  msgstr ""
4205
 
4206
- #: src/vue/components/common/core/PostTypeOptions.vue:91
4207
  msgid ""
4208
- "All taxonomies are set to noindex or your site does not have any taxonomies "
4209
- "registered that are supported by this feature."
 
 
4210
  msgstr ""
4211
 
4212
- #: src/vue/components/common/core/PriorityScore.vue:67
4213
- msgid "Archive Pages"
4214
  msgstr ""
4215
 
4216
- #: src/vue/components/common/core/PriorityScore.vue:68
4217
- msgid "Author Pages"
4218
  msgstr ""
4219
 
4220
- #: src/vue/components/common/core/RobotsMeta.vue:101
4221
- #: src/vue/components/common/core/SingleRobotsMeta.vue:163
4222
- msgid "Robots meta:"
4223
  msgstr ""
4224
 
4225
- #: src/vue/components/common/core/RobotsMeta.vue:102
4226
- #: src/vue/components/common/core/SingleRobotsMeta.vue:164
4227
- msgid "Max Snippet"
 
 
 
 
 
 
4228
  msgstr ""
4229
 
4230
- #: src/vue/components/common/core/RobotsMeta.vue:103
4231
- #: src/vue/components/common/core/SingleRobotsMeta.vue:165
4232
- msgid "Max Video Preview"
 
 
4233
  msgstr ""
4234
 
4235
- #: src/vue/components/common/core/RobotsMeta.vue:104
4236
- #: src/vue/components/common/core/SingleRobotsMeta.vue:166
4237
- msgid "Max Image Preview"
 
 
 
4238
  msgstr ""
4239
 
4240
- #: src/vue/components/common/core/RobotsMeta.vue:105
4241
- #: src/vue/components/common/core/SingleRobotsMeta.vue:167
4242
- msgid "Standard"
 
4243
  msgstr ""
4244
 
4245
- #: src/vue/components/common/core/RobotsMeta.vue:107
4246
- #: src/vue/components/common/core/SingleRobotsMeta.vue:169
4247
- msgid "Large"
4248
  msgstr ""
4249
 
4250
- #: src/vue/components/common/core/RobotsMeta.vue:87
4251
- #: src/vue/components/common/core/SingleRobotsMeta.vue:170
4252
- msgid "No Index"
4253
  msgstr ""
4254
 
4255
- #: src/vue/components/common/core/RobotsMeta.vue:88
4256
- #: src/vue/components/common/core/SingleRobotsMeta.vue:171
4257
- msgid "No Follow"
4258
  msgstr ""
4259
 
4260
- #: src/vue/components/common/core/RobotsMeta.vue:89
4261
- #: src/vue/components/common/core/SingleRobotsMeta.vue:172
4262
- msgid "No Archive"
4263
  msgstr ""
4264
 
4265
- #: src/vue/components/common/core/RobotsMeta.vue:90
4266
- #: src/vue/components/common/core/SingleRobotsMeta.vue:173
4267
- msgid "No Translate"
 
4268
  msgstr ""
4269
 
4270
- #: src/vue/components/common/core/RobotsMeta.vue:91
4271
- #: src/vue/components/common/core/SingleRobotsMeta.vue:174
4272
- msgid "No Image Index"
4273
  msgstr ""
4274
 
4275
- #: src/vue/components/common/core/RobotsMeta.vue:92
4276
- #: src/vue/components/common/core/SingleRobotsMeta.vue:175
4277
- msgid "No Snippet"
4278
  msgstr ""
4279
 
4280
- #: src/vue/components/common/core/RobotsMeta.vue:93
4281
- #: src/vue/components/common/core/SingleRobotsMeta.vue:176
4282
- msgid "No ODP"
4283
  msgstr ""
4284
 
4285
- #: src/vue/components/common/core/RobotsMeta.vue:96
4286
- msgid "No Index Paginated"
4287
  msgstr ""
4288
 
4289
- #: src/vue/components/common/core/RobotsMeta.vue:97
4290
- msgid "No Follow Paginated"
4291
  msgstr ""
4292
 
4293
- #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:107
4294
- msgid "Advanced SEO"
4295
  msgstr ""
4296
 
4297
- #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:108
4298
- msgid "Performance"
4299
  msgstr ""
4300
 
4301
- #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:109
4302
- msgid "Security"
4303
  msgstr ""
4304
 
4305
- #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:110
4306
- msgid "Keywords:"
4307
  msgstr ""
4308
 
4309
- #: src/vue/components/common/core/SettingsSeparator.vue:101
4310
- msgid "Custom separator:"
 
 
 
4311
  msgstr ""
4312
 
4313
- #: src/vue/components/common/core/SettingsSeparator.vue:102
4314
- msgid "Show More"
 
 
 
 
 
4315
  msgstr ""
4316
 
4317
- #: src/vue/components/common/core/SettingsSeparator.vue:103
4318
- msgid "Show Less"
4319
  msgstr ""
4320
 
4321
- #: src/vue/components/common/core/SocialProfiles.vue:121
4322
- msgid "Your Facebook URL is invalid. Please check the format and try again."
4323
  msgstr ""
4324
 
4325
- #: src/vue/components/common/core/SocialProfiles.vue:132
4326
- msgid "Your Twitter URL is invalid. Please check the format and try again."
4327
  msgstr ""
4328
 
4329
- #: src/vue/components/common/core/SocialProfiles.vue:143
4330
- msgid "Your Instagram URL is invalid. Please check the format and try again."
4331
  msgstr ""
4332
 
4333
- #: src/vue/components/common/core/SocialProfiles.vue:154
4334
- msgid "Your Pinterest URL is invalid. Please check the format and try again."
 
 
 
4335
  msgstr ""
4336
 
4337
- #: src/vue/components/common/core/SocialProfiles.vue:165
4338
- msgid "Your YouTube URL is invalid. Please check the format and try again."
 
 
 
4339
  msgstr ""
4340
 
4341
- #: src/vue/components/common/core/SocialProfiles.vue:176
4342
- msgid "Your LinkedIn URL is invalid. Please check the format and try again."
4343
  msgstr ""
4344
 
4345
- #: src/vue/components/common/core/SocialProfiles.vue:187
4346
- msgid "Your Tumblr URL is invalid. Please check the format and try again."
4347
  msgstr ""
4348
 
4349
- #: src/vue/components/common/core/SocialProfiles.vue:198
4350
- msgid "Your Yelp URL is invalid. Please check the format and try again."
4351
  msgstr ""
4352
 
4353
- #: src/vue/components/common/core/SocialProfiles.vue:209
4354
- msgid "Your SoundCloud URL is invalid. Please check the format and try again."
4355
  msgstr ""
4356
 
4357
- #: src/vue/components/common/core/SocialProfiles.vue:220
4358
- msgid "Your Wikipedia URL is invalid. Please check the format and try again."
 
 
4359
  msgstr ""
4360
 
4361
- #: src/vue/components/common/core/SocialProfiles.vue:231
4362
- msgid "Your MySpace URL is invalid. Please check the format and try again."
 
 
4363
  msgstr ""
4364
 
4365
- #: src/vue/components/common/core/SocialProfiles.vue:238
4366
- msgid "Use the same username for multiple social networks"
4367
  msgstr ""
4368
 
4369
- #: src/vue/components/common/core/SocialProfiles.vue:239
4370
- msgid "Your Username:"
 
 
4371
  msgstr ""
4372
 
4373
- #: src/vue/classes/SiteAnalysis.js:102
4374
- msgid "No keywords were found in the page title."
 
 
4375
  msgstr ""
4376
 
4377
- #: src/vue/classes/SiteAnalysis.js:105
4378
- msgid "No keywords were found in your meta description."
 
 
 
 
4379
  msgstr ""
4380
 
4381
- #: src/vue/classes/SiteAnalysis.js:106
4382
- msgid "No keywords were found in the meta description."
 
 
 
 
4383
  msgstr ""
4384
 
4385
- #: src/vue/classes/SiteAnalysis.js:108
4386
- msgid "Both the page title and meta description are missing keywords."
4387
  msgstr ""
4388
 
4389
- #: src/vue/classes/SiteAnalysis.js:112
4390
- msgid "One or more keywords were found in the title and description of your page."
4391
  msgstr ""
4392
 
4393
- #: src/vue/classes/SiteAnalysis.js:113
4394
- msgid "One or more keywords were found in the title and description of the page."
4395
  msgstr ""
4396
 
4397
- #: src/vue/classes/SiteAnalysis.js:129
4398
  msgid ""
4399
- "You need to use titles and descriptions that are attractive to users and "
4400
- "contain your keywords. Use the keywords naturally - keyword stuffing is "
4401
- "usually detected and will result in a lower ranking. What's more, it's "
4402
- "pretty off-putting for potential readers, who are more likely to click on "
4403
- "an appealing link."
4404
  msgstr ""
4405
 
4406
- #: src/vue/classes/SiteAnalysis.js:130
4407
- msgid "Edit Your Page Title & Description"
 
 
4408
  msgstr ""
4409
 
4410
- #: src/vue/classes/SiteAnalysis.js:139
4411
- msgid "No H1 tag was found."
4412
  msgstr ""
4413
 
4414
- # Translators: 1 - The number of H1 tags found.
4415
- #: src/vue/classes/SiteAnalysis.js:142
4416
- msgid "For the best SEO results there should be exactly one H1 tag on each page."
4417
  msgstr ""
4418
 
4419
- # Translators: 1 - The number of H1 tags found.
4420
- #: src/vue/classes/SiteAnalysis.js:142
4421
- msgid "%1$d H1 tags were found."
4422
  msgstr ""
4423
 
4424
- #: src/vue/classes/SiteAnalysis.js:147
4425
- msgid "One H1 tag was found on your page."
 
4426
  msgstr ""
4427
 
4428
- #: src/vue/classes/SiteAnalysis.js:148
4429
- msgid "One H1 tag was found on the page."
 
 
 
4430
  msgstr ""
4431
 
4432
- #: src/vue/classes/SiteAnalysis.js:154
 
4433
  msgid ""
4434
- "WordPress sites usually insert the page or post title as an H1 tag "
4435
- "(although custom themes can change this behavior)."
4436
  msgstr ""
4437
 
4438
- #: src/vue/classes/SiteAnalysis.js:154
4439
- msgid ""
4440
- "Ensure your most important keywords appear in the H1 tag - don't force it, "
4441
- "use them in a natural way that makes sense to human readers."
 
 
4442
  msgstr ""
4443
 
4444
- #: src/vue/classes/SiteAnalysis.js:154
4445
- msgid ""
4446
- "Because your headline plays a large role in reader engagement, it's worth "
4447
- "spending extra time perfecting it. Many top copywriters spend hours getting "
4448
- "their headlines just right - sometimes they spend longer on the headline "
4449
- "than the rest of the article!"
4450
  msgstr ""
4451
 
4452
- #: src/vue/classes/SiteAnalysis.js:154
4453
- msgid ""
4454
- "A good headline stimulates reader interest and offers a compelling reason "
4455
- "to read your content. It promises a believable benefit."
4456
  msgstr ""
4457
 
4458
- #: src/vue/classes/SiteAnalysis.js:154
4459
  msgid ""
4460
- "You should write as if your readers are selfish people with short attention "
4461
- "spans (because that describes a large percentage of the world's "
4462
- "population). Readers visit websites for selfish reasons - they're not there "
4463
- "to make you happy."
4464
  msgstr ""
4465
 
4466
- #: src/vue/classes/SiteAnalysis.js:165
4467
- msgid "No H2 tags were found on your page."
 
 
 
4468
  msgstr ""
4469
 
4470
- #: src/vue/classes/SiteAnalysis.js:166
4471
- msgid "No H2 tags were found on the page."
4472
  msgstr ""
4473
 
4474
- #: src/vue/classes/SiteAnalysis.js:170
4475
- msgid "H2 tags were found on your page."
4476
  msgstr ""
4477
 
4478
- #: src/vue/classes/SiteAnalysis.js:171
4479
- msgid "H2 tags were found on the page."
4480
  msgstr ""
4481
 
4482
- #: src/vue/classes/SiteAnalysis.js:177
4483
- msgid ""
4484
- "Make sure you have a good balance of H2 tags to plain text in your content. "
4485
- "Break the content down into logical sections, and use headings to introduce "
4486
- "each new topic."
4487
  msgstr ""
4488
 
4489
- #: src/vue/classes/SiteAnalysis.js:177
 
4490
  msgid ""
4491
- "Also, try to include synonyms and relevant terminology in H2 tag text. "
4492
- "Search engines are pretty smart - they know which words usually occur "
4493
- "together in each niche."
4494
  msgstr ""
4495
 
4496
- #: src/vue/classes/SiteAnalysis.js:177
4497
- msgid ""
4498
- "It should be easy to include your main and supporting keywords in the H2 "
4499
- "tags - after all, these keywords describe your content! If it's hard to "
4500
- "work the keywords into your subheadings, it could be a sign that the "
4501
- "keywords aren't closely related to your content."
4502
  msgstr ""
4503
 
4504
- #: src/vue/classes/SiteAnalysis.js:177
4505
- msgid ""
4506
- "Don't try to force keywords into sub-headings if they feel unnatural. It "
4507
- "will send the wrong message to your readers, possibly driving them away."
4508
  msgstr ""
4509
 
4510
- #: src/vue/classes/SiteAnalysis.js:188
4511
- msgid "Some images on your page have no alt attribute."
4512
  msgstr ""
4513
 
4514
- #: src/vue/classes/SiteAnalysis.js:189
4515
- msgid "Some images on the page have no alt attribute."
 
4516
  msgstr ""
4517
 
4518
- #: src/vue/classes/SiteAnalysis.js:193
4519
- msgid "All images on your page have alt attributes."
4520
  msgstr ""
4521
 
4522
- #: src/vue/classes/SiteAnalysis.js:194
4523
- msgid "All images on the page have alt attributes."
4524
  msgstr ""
4525
 
4526
- #: src/vue/classes/SiteAnalysis.js:200
4527
  msgid ""
4528
- "Make sure every image has an alt tag, and add useful descriptions to each "
4529
- "image. Add your keywords or synonyms - but do it in a natural way."
 
4530
  msgstr ""
4531
 
4532
- #: src/vue/classes/SiteAnalysis.js:211
4533
- msgid "No internal links were found on your page."
 
 
 
4534
  msgstr ""
4535
 
4536
- #: src/vue/classes/SiteAnalysis.js:212
4537
- msgid "No internal links were found on the page."
4538
  msgstr ""
4539
 
4540
- #: src/vue/classes/SiteAnalysis.js:215
4541
- msgid "Too few internal links on your page."
4542
  msgstr ""
4543
 
4544
- #: src/vue/classes/SiteAnalysis.js:216
4545
- msgid "Too few internal links on the page."
 
4546
  msgstr ""
4547
 
4548
- #: src/vue/classes/SiteAnalysis.js:218
4549
- msgid "The ratio of internal links to external links is uneven."
 
 
4550
  msgstr ""
4551
 
4552
- #: src/vue/classes/SiteAnalysis.js:222
4553
- msgid "Your page has a correct number of internal and external links."
4554
  msgstr ""
4555
 
4556
- #: src/vue/classes/SiteAnalysis.js:223
4557
- msgid "The page has a correct number of internal and external links."
 
 
4558
  msgstr ""
4559
 
4560
- #: src/vue/classes/SiteAnalysis.js:228
4561
- msgid "Internal:"
4562
  msgstr ""
4563
 
4564
- #: src/vue/classes/SiteAnalysis.js:228
4565
- msgid "External:"
4566
  msgstr ""
4567
 
4568
- #: src/vue/classes/SiteAnalysis.js:229
4569
  msgid ""
4570
- "Add links to external resources that are useful for your readers. Make sure "
4571
- "you link to high-quality sites - Google penalizes pages that link to "
4572
- "\"spammy\" sites (ones that break the Google webmaster guidelines)."
4573
  msgstr ""
4574
 
4575
- #: src/vue/classes/SiteAnalysis.js:229
 
 
 
 
4576
  msgid ""
4577
- "Ideally, the links should be highly relevant to the subject you're writing "
4578
- "about. It's impossible to cover every aspect of a subject on a single page, "
4579
- "but your readers may be fascinated by some detail you barely touch on. If "
4580
- "you link to a resource where they can learn more, they'll be grateful. "
4581
- "What's more, you'll be rewarded with higher rankings!"
4582
  msgstr ""
4583
 
4584
- #: src/vue/classes/SiteAnalysis.js:240
4585
- msgid "No canonical link tag found on your page."
 
4586
  msgstr ""
4587
 
4588
- #: src/vue/classes/SiteAnalysis.js:241
4589
- msgid "No canonical link tag found on the page."
 
4590
  msgstr ""
4591
 
4592
- #: src/vue/classes/SiteAnalysis.js:245
4593
- msgid "Your page is using the canonical link tag."
4594
  msgstr ""
4595
 
4596
- #: src/vue/classes/SiteAnalysis.js:246
4597
- msgid "The page is using the canonical link tag."
4598
  msgstr ""
4599
 
4600
- #: src/vue/classes/SiteAnalysis.js:252
4601
- msgid ""
4602
- "Every page on your site should have a <link> tag with a 'rel=\"canonical\"' "
4603
- "attribute. The link tag should go inside the page's head tag, and it should "
4604
- "contain the page's \"correct\" URL."
4605
  msgstr ""
4606
 
4607
- #: src/vue/classes/SiteAnalysis.js:252
4608
- msgid ""
4609
- "If you've republished an article from another source (such as another site "
4610
- "or a different section of your own site) then you need to pick which URL is "
4611
- "the \"correct\" one and use that!"
4612
  msgstr ""
4613
 
4614
- #: src/vue/classes/SiteAnalysis.js:263
4615
- msgid "Your page contains a noindex header or meta tag."
4616
  msgstr ""
4617
 
4618
- #: src/vue/classes/SiteAnalysis.js:264
4619
- msgid "The page contains a noindex header or meta tag."
 
4620
  msgstr ""
4621
 
4622
- #: src/vue/classes/SiteAnalysis.js:268
4623
- msgid "Your page does not contain any noindex header or meta tag."
 
4624
  msgstr ""
4625
 
4626
- #: src/vue/classes/SiteAnalysis.js:269
4627
- msgid "The page does not contain any noindex header or meta tag."
4628
  msgstr ""
4629
 
4630
- #: src/vue/classes/SiteAnalysis.js:274
4631
- msgid ""
4632
- "Only ever use noindex meta tag or header on pages you want to keep out of "
4633
- "the reach of search engines!"
4634
  msgstr ""
4635
 
4636
- #: src/vue/classes/SiteAnalysis.js:285
4637
  msgid ""
4638
- "The www and non-www versions of your URL are not redirected to the same "
4639
- "site."
 
4640
  msgstr ""
4641
 
4642
- #: src/vue/classes/SiteAnalysis.js:286
4643
- msgid "The www and non-www versions of the URL are not redirected to the same site."
 
 
 
4644
  msgstr ""
4645
 
4646
- #: src/vue/classes/SiteAnalysis.js:290
4647
  msgid ""
4648
- "Both the www and non-www versions of your URL are redirected to the same "
4649
- "site."
 
 
4650
  msgstr ""
4651
 
4652
- #: src/vue/classes/SiteAnalysis.js:291
4653
  msgid ""
4654
- "Both the www and non-www versions of the URL are redirected to the same "
4655
- "site."
 
 
 
4656
  msgstr ""
4657
 
4658
- #: src/vue/classes/SiteAnalysis.js:296
4659
- msgid ""
4660
- "Decide whether you want your site's URLs to include a \"www\", or if you "
4661
- "prefer a plain domain name. There are marketing pros and cons for each "
4662
- "choice, but neither one is better or worse for SEO purposes - as long as "
4663
- "you're consistent."
4664
  msgstr ""
4665
 
4666
- #: src/vue/classes/SiteAnalysis.js:296
 
4667
  msgid ""
4668
- "You should use HTTP redirections (301 permanant redirects) to pass PageRank "
4669
- "from the \"wrong\" URLs to the standard (canonical) ones. That way, your "
4670
- "content will still benefit from backlinks if someone makes a mistake and "
4671
- "uses the wrong URL."
4672
  msgstr ""
4673
 
4674
- #: src/vue/classes/SiteAnalysis.js:30
4675
- msgid "We couldn't find an SEO Title."
 
 
 
4676
  msgstr ""
4677
 
4678
- #: src/vue/classes/SiteAnalysis.js:307
4679
- msgid "Your robots.txt file is missing or unavailable."
4680
  msgstr ""
4681
 
4682
- #: src/vue/classes/SiteAnalysis.js:308
4683
- msgid "The robots.txt file is missing or unavailable."
4684
  msgstr ""
4685
 
4686
- #: src/vue/classes/SiteAnalysis.js:327
4687
  msgid ""
4688
- "Your site has a robots.txt file which includes one or more \"disallow\" "
4689
- "directives."
 
 
4690
  msgstr ""
4691
 
4692
- #: src/vue/classes/SiteAnalysis.js:328
4693
  msgid ""
4694
- "The site has a robots.txt file which includes one or more \"disallow\" "
4695
- "directives."
 
 
 
4696
  msgstr ""
4697
 
4698
- #: src/vue/classes/SiteAnalysis.js:332
4699
- msgid "Your site has a robots.txt file."
4700
  msgstr ""
4701
 
4702
- #: src/vue/classes/SiteAnalysis.js:333
4703
- msgid "The site has a robots.txt file."
4704
  msgstr ""
4705
 
4706
- # Translators: 1 - The length of the SEO title as a number.
4707
- #: src/vue/classes/SiteAnalysis.js:34
4708
- msgid "Your SEO title is only %1$d characters long, which is too short."
4709
  msgstr ""
4710
 
4711
- # Translators: 1 - The Plugin short name ("AIOSEO").
4712
- #: src/vue/classes/SiteAnalysis.js:340
4713
- msgid "Make sure that you only block parts you don't want to be indexed."
4714
  msgstr ""
4715
 
4716
- # Translators: 1 - The Plugin short name ("AIOSEO").
4717
- #: src/vue/classes/SiteAnalysis.js:340
4718
  msgid ""
4719
- "You can manually create a robots.txt file and upload it to your site's web "
4720
- "root. A simpler option is to use a plugin for your CMS platform."
 
4721
  msgstr ""
4722
 
4723
- # Translators: 1 - The Plugin short name ("AIOSEO").
4724
- #: src/vue/classes/SiteAnalysis.js:340
4725
- msgid ""
4726
- "%1$s has a full suite of tools to manage the robots.txt file, along with "
4727
- "other related technologies, like XML Sitemaps."
4728
  msgstr ""
4729
 
4730
- #: src/vue/classes/SiteAnalysis.js:350
4731
- msgid "Some Open Graph meta tags are missing."
 
4732
  msgstr ""
4733
 
4734
- #: src/vue/classes/SiteAnalysis.js:352
4735
- msgid "Duplicate Open Graph meta tags were found."
4736
  msgstr ""
4737
 
4738
- #: src/vue/classes/SiteAnalysis.js:355
4739
- msgid "All the required Open Graph meta tags have been found."
4740
  msgstr ""
4741
 
4742
- # Translators: 1 - The length of the SEO title as a number.
4743
- #: src/vue/classes/SiteAnalysis.js:36
4744
- msgid "The SEO title is only %1$d characters long, which is too short."
 
4745
  msgstr ""
4746
 
4747
- #: src/vue/classes/SiteAnalysis.js:362
4748
  msgid ""
4749
- "Insert a customized Open Graph meta tag for each important page on your "
4750
- "site. The standard is very well documented - you can learn more from "
4751
- "Facebook's developer pages."
 
4752
  msgstr ""
4753
 
4754
- #: src/vue/classes/SiteAnalysis.js:362
4755
  msgid ""
4756
- "%1$s provides a simple but powerful interface to craft your Open Graph "
4757
- "data. You get immediate feedback with an interactive preview, and you don't "
4758
- "have to mess around with raw HTML markup."
4759
  msgstr ""
4760
 
4761
- #: src/vue/classes/SiteAnalysis.js:373
4762
- msgid "No Schema.org data was found on your page."
4763
  msgstr ""
4764
 
4765
- #: src/vue/classes/SiteAnalysis.js:374
4766
- msgid "No Schema.org data was found on the page."
4767
  msgstr ""
4768
 
4769
- #: src/vue/classes/SiteAnalysis.js:378
4770
- msgid "We found Schema.org data on your page."
4771
  msgstr ""
4772
 
4773
- #: src/vue/classes/SiteAnalysis.js:379
4774
- msgid "We found Schema.org data on the page."
4775
  msgstr ""
4776
 
4777
- # Translators: 1 - The Plugin short name ("AIOSEO").
4778
- #: src/vue/classes/SiteAnalysis.js:385
4779
- msgid ""
4780
- "%1$s makes it extremely easy to add highly relevant Schema.org markup to "
4781
- "your site. It has a simple graphical interface, so you don't have to get "
4782
- "your hands dirty with complex HTML markup."
4783
  msgstr ""
4784
 
4785
- #: src/vue/classes/SiteAnalysis.js:386
4786
- msgid "Edit Your Page"
 
 
4787
  msgstr ""
4788
 
4789
- #: src/vue/classes/SiteAnalysis.js:396
4790
- msgid "Your server is not using \"expires\" headers for your images."
 
 
 
4791
  msgstr ""
4792
 
4793
- #: src/vue/classes/SiteAnalysis.js:397
4794
- msgid "The server is not using \"expires\" headers for the images."
4795
  msgstr ""
4796
 
4797
- # Translators: 1 - The length of the SEO title as a number.
4798
- #: src/vue/classes/SiteAnalysis.js:40
4799
- msgid "Your SEO title is %1$d characters long, which is too long."
4800
  msgstr ""
4801
 
4802
- #: src/vue/classes/SiteAnalysis.js:401
4803
- msgid "Your server is using \"expires\" headers for your images."
4804
  msgstr ""
4805
 
4806
- #: src/vue/classes/SiteAnalysis.js:402
4807
- msgid "The server is using \"expires\" headers for the images."
4808
  msgstr ""
4809
 
4810
- #: src/vue/classes/SiteAnalysis.js:407
4811
  msgid ""
4812
- "If you use the Apache or NGINX web servers, you can edit the configuration "
4813
- "files to set the \"expires\" header for all image files. For Apache, you "
4814
- "can also use a \".htaccess\" file to change the settings for each folder."
4815
  msgstr ""
4816
 
4817
- #: src/vue/classes/SiteAnalysis.js:407
4818
- msgid ""
4819
- "Alternatively, you can use a CMS plugin to simplify the process - it's a "
4820
- "more user-friendly option. WordPress has a host of caching plugins, and "
4821
- "most of them give you options to control the caching headers."
4822
  msgstr ""
4823
 
4824
- #: src/vue/classes/SiteAnalysis.js:415
4825
- msgid "Some Javascript files don't seem to be minified."
4826
  msgstr ""
4827
 
4828
- #: src/vue/classes/SiteAnalysis.js:418
4829
- msgid "All Javascript files appear to be minified."
4830
  msgstr ""
4831
 
4832
- # Translators: 1 - The length of the SEO title as a number.
4833
- #: src/vue/classes/SiteAnalysis.js:42
4834
- msgid "The SEO title is %1$d characters long, which is too long."
4835
  msgstr ""
4836
 
4837
- #: src/vue/classes/SiteAnalysis.js:424
4838
  msgid ""
4839
- "JavaScript files appear in many places, including frameworks (like "
4840
- "Bootstrap), themes and templates, and third-party plugins."
 
4841
  msgstr ""
4842
 
4843
- #: src/vue/classes/SiteAnalysis.js:424
4844
- msgid "We recommend tracking down where the un-minified JavaScript files come from"
4845
  msgstr ""
4846
 
4847
- #: src/vue/classes/SiteAnalysis.js:424
4848
- msgid ""
4849
- "There are server-side tools (including WordPress plugins) to automatically "
4850
- "minify JavaScript files."
4851
  msgstr ""
4852
 
4853
- #: src/vue/classes/SiteAnalysis.js:432
4854
- msgid "Some CSS files don't seem to be minified."
 
4855
  msgstr ""
4856
 
4857
- #: src/vue/classes/SiteAnalysis.js:435
4858
- msgid "All CSS files appear to be minified."
 
4859
  msgstr ""
4860
 
4861
- #: src/vue/classes/SiteAnalysis.js:441
4862
- msgid ""
4863
- "CSS files appear in many places, including frameworks (like Bootstrap), "
4864
- "themes and templates, and third-party plugins."
4865
  msgstr ""
4866
 
4867
- #: src/vue/classes/SiteAnalysis.js:441
4868
- msgid "We recommend tracking down where the un-minified CSS files come from."
 
4869
  msgstr ""
4870
 
4871
- #: src/vue/classes/SiteAnalysis.js:441
 
 
 
 
 
 
 
 
 
 
4872
  msgid ""
4873
- "There are server-side tools (including WordPress plugins) to automatically "
4874
- "minify CSS files."
 
 
 
 
 
 
 
4875
  msgstr ""
4876
 
4877
- # Translators: 1 - The total number of page requests.
4878
- #: src/vue/classes/SiteAnalysis.js:450
4879
- msgid "Your page makes %1$d requests."
4880
  msgstr ""
4881
 
4882
- # Translators: 1 - The total number of page requests.
4883
- #: src/vue/classes/SiteAnalysis.js:452
4884
- msgid "The page makes %1$d requests."
4885
  msgstr ""
4886
 
4887
- #: src/vue/classes/SiteAnalysis.js:454
4888
- msgid "More than 20 requests can result in slow page loading."
4889
  msgstr ""
4890
 
4891
- #: src/vue/classes/SiteAnalysis.js:462
4892
- msgid "Images:"
4893
  msgstr ""
4894
 
4895
- #: src/vue/classes/SiteAnalysis.js:462
4896
- msgid "JavaScript:"
4897
  msgstr ""
4898
 
4899
- #: src/vue/classes/SiteAnalysis.js:462
4900
- msgid "CSS:"
4901
  msgstr ""
4902
 
4903
- #: src/vue/classes/SiteAnalysis.js:463
4904
- msgid "Try to replace embedded objects with HTML5 alternatives."
4905
  msgstr ""
4906
 
4907
- # Translators: 1 - The length of the SEO title as a number.
4908
- #: src/vue/classes/SiteAnalysis.js:47
4909
- msgid "Your SEO title is set and is %1$d characters long."
4910
  msgstr ""
4911
 
4912
- # Translators: 1 - The total number of page requests.
4913
- #: src/vue/classes/SiteAnalysis.js:471
4914
- msgid "The size of the HTML document is %1$d Kb."
4915
  msgstr ""
4916
 
4917
- #: src/vue/classes/SiteAnalysis.js:473
4918
- msgid "This is over our recommendation of 50 Kb."
4919
  msgstr ""
4920
 
4921
- #: src/vue/classes/SiteAnalysis.js:477
4922
- msgid "This is under the average of 33 Kb."
4923
  msgstr ""
4924
 
4925
- #: src/vue/classes/SiteAnalysis.js:485
4926
- msgid ""
4927
- "In order to reduce page size, remove any unnecessary tags from your markup. "
4928
- "This includes developer comments, which are invisible to your users - "
4929
- "search engines ignore the text in comments, too."
4930
  msgstr ""
4931
 
4932
- #: src/vue/classes/SiteAnalysis.js:485
4933
- msgid ""
4934
- "Sometimes inline CSS is a culprit. A little inline CSS can help your page "
4935
- "render faster. Too much will bloat the HTML file and increase the page "
4936
- "loading time."
4937
  msgstr ""
4938
 
4939
- #: src/vue/classes/SiteAnalysis.js:485
4940
- msgid ""
4941
- "You can reduce CSS repetition with HTML class and ID attributes. Often the "
4942
- "same rules will be repeated across many page elements, embedded in each "
4943
- "tag's \"style\" attribute. You can extract them into a single \"style\" tag "
4944
- "and use classes and ID's to target each element."
4945
  msgstr ""
4946
 
4947
- #: src/vue/classes/SiteAnalysis.js:485
4948
- msgid ""
4949
- "Removing white space can also have an impact on your HTML page's size. "
4950
- "White space characters like carriage returns and tabs are ignored by the "
4951
- "browser, but they make the markup easier for developers to read. So you "
4952
- "should always strip them from your templates or themes before you use them "
4953
- "in a production environment."
4954
  msgstr ""
4955
 
4956
- # Translators: 1 - The length of the SEO title as a number.
4957
- #: src/vue/classes/SiteAnalysis.js:49
4958
- msgid "The SEO title is set and is %1$d characters long."
4959
  msgstr ""
4960
 
4961
- # Translators: 1 - The total number of page requests.
4962
- #: src/vue/classes/SiteAnalysis.js:495
4963
  msgid ""
4964
- "The response time of your page is %1$f seconds. It is recommended to keep "
4965
- "it equal to or below 0.2 seconds."
 
 
4966
  msgstr ""
4967
 
4968
- # Translators: 1 - The total number of page requests.
4969
- #: src/vue/classes/SiteAnalysis.js:497
4970
- msgid ""
4971
- "The response time of the page is %1$f seconds. It is recommended to keep it "
4972
- "equal to or below 0.2 seconds."
4973
  msgstr ""
4974
 
4975
- #: src/vue/classes/SiteAnalysis.js:501
4976
- msgid "Your response time is under 0.2 seconds."
4977
  msgstr ""
4978
 
4979
- #: src/vue/classes/SiteAnalysis.js:502
4980
- msgid "The response time is under 0.2 seconds."
4981
  msgstr ""
4982
 
4983
- #: src/vue/classes/SiteAnalysis.js:507
4984
- msgid ""
4985
- "If you want to continue to improve your response time, the simplest and "
4986
- "fastest fix is to use a caching plugin. Caching plugins keep a cached "
4987
- "version of each page on your site. Instead of building the page from "
4988
- "scratch, the server will send the cached copy."
4989
  msgstr ""
4990
 
4991
- #: src/vue/classes/SiteAnalysis.js:507
4992
- msgid ""
4993
- "You can get an even greater boost in speed with a content delivery network "
4994
- "service. These services host a copy of your content on multiple servers "
4995
- "spread out across the globe. A user's request is handled by the edge server "
4996
- "that's closest to their physical location, so the content arrives "
4997
- "incredibly fast."
4998
  msgstr ""
4999
 
5000
- #: src/vue/classes/SiteAnalysis.js:516
5001
- msgid "Plugins from your website are publicly visible."
5002
  msgstr ""
5003
 
5004
- #: src/vue/classes/SiteAnalysis.js:517
5005
- msgid "Plugins from the website are publicly visible."
5006
  msgstr ""
5007
 
5008
- #: src/vue/classes/SiteAnalysis.js:521
5009
- msgid "You have no visible plugins!"
5010
  msgstr ""
5011
 
5012
- #: src/vue/classes/SiteAnalysis.js:522
5013
- msgid "There are no visible plugins."
5014
  msgstr ""
5015
 
5016
- #: src/vue/classes/SiteAnalysis.js:528
5017
- msgid ""
5018
- "It's a great idea to try and hide the plugins you have visible. From time "
5019
- "to time vulnerabilities are found in plugins and if your site is not "
5020
- "updated in a timely fashion, outdated plugins and themes can be exploited."
5021
  msgstr ""
5022
 
5023
- # Translators: 1 - The name of the theme.
5024
- #: src/vue/classes/SiteAnalysis.js:538
5025
- msgid "Anyone can see that you are using the %1$s theme."
5026
  msgstr ""
5027
 
5028
- # Translators: 1 - The name of the theme.
5029
- #: src/vue/classes/SiteAnalysis.js:540
5030
- msgid "Anyone can see that they are using the %1$s theme."
5031
  msgstr ""
5032
 
5033
- #: src/vue/classes/SiteAnalysis.js:544
5034
- msgid "Your theme is not visible!"
5035
  msgstr ""
5036
 
5037
- #: src/vue/classes/SiteAnalysis.js:545
5038
- msgid "The theme is not visible."
 
5039
  msgstr ""
5040
 
5041
- #: src/vue/classes/SiteAnalysis.js:55
5042
- msgid ""
5043
- "Ensure your page's title includes your target keywords, and design it to "
5044
- "encourage users to click."
5045
  msgstr ""
5046
 
5047
- #: src/vue/classes/SiteAnalysis.js:55
5048
- msgid ""
5049
- "Writing compelling titles is both a science and an art. There are automated "
5050
- "tools that can analyze your title against known metrics for readability and "
5051
- "click-worthiness. You also need to understand the psychology of your target "
5052
- "audience."
5053
  msgstr ""
5054
 
5055
- #: src/vue/classes/SiteAnalysis.js:550
5056
- msgid ""
5057
- "It's a great idea to try and hide the theme you have visible. From time to "
5058
- "time vulnerabilities are found in themes and if your site is not updated in "
5059
- "a timely fashion, outdated plugins and themes can be exploited."
5060
  msgstr ""
5061
 
5062
- #: src/vue/classes/SiteAnalysis.js:559
5063
- msgid "Directory Listing seems to be enabled on your server."
5064
  msgstr ""
5065
 
5066
- #: src/vue/classes/SiteAnalysis.js:56
5067
- msgid "Edit Your Page Title"
5068
  msgstr ""
5069
 
5070
- #: src/vue/classes/SiteAnalysis.js:560
5071
- msgid "Directory Listing seems to be enabled on the server."
5072
  msgstr ""
5073
 
5074
- #: src/vue/classes/SiteAnalysis.js:564
5075
- msgid "Directory Listing seems to be disabled on your server."
5076
  msgstr ""
5077
 
5078
- #: src/vue/classes/SiteAnalysis.js:565
5079
- msgid "Directory Listing seems to be disabled on the server."
5080
  msgstr ""
5081
 
5082
- #: src/vue/classes/SiteAnalysis.js:570
5083
- msgid ""
5084
- "Fortunately, every popular web server has options to prevent directory "
5085
- "listings. They'll show a \"403 forbidden\" message instead."
5086
  msgstr ""
5087
 
5088
- #: src/vue/classes/SiteAnalysis.js:570
5089
- msgid ""
5090
- "Alternatively, you can create an empty index.php file and save it in every "
5091
- "directory on your site. That's an approach that WordPress uses and it works "
5092
- "well."
5093
  msgstr ""
5094
 
5095
- #: src/vue/classes/SiteAnalysis.js:579
5096
- msgid "It looks like your site has been added to one of Google's malwares lists."
5097
  msgstr ""
5098
 
5099
- #: src/vue/classes/SiteAnalysis.js:580
5100
- msgid "It looks like this site has been added to one of Google's malwares lists."
5101
  msgstr ""
5102
 
5103
- #: src/vue/classes/SiteAnalysis.js:584
5104
- msgid "Google has not flagged your site for malware!"
5105
  msgstr ""
5106
 
5107
- #: src/vue/classes/SiteAnalysis.js:585
5108
- msgid "Google has not flagged this site for malware."
5109
  msgstr ""
5110
 
5111
- #: src/vue/classes/SiteAnalysis.js:590
5112
- msgid ""
5113
- "Google Safe browsing shows warnings and alerts to users if they visit a "
5114
- "suspicious website. If you are flagged by Google Safe Browsing, you should "
5115
- "take immediate steps to fix that."
5116
  msgstr ""
5117
 
5118
- #: src/vue/classes/SiteAnalysis.js:599
5119
- msgid "Your site is not using a secure transfer protocol (https)."
5120
  msgstr ""
5121
-
5122
- #: src/vue/classes/SiteAnalysis.js:600
5123
- msgid "The site is not using a secure transfer protocol (https)."
5124
  msgstr ""
5125
 
5126
- #: src/vue/classes/SiteAnalysis.js:604
5127
- msgid "Your site is using a secure transfer protocol (https)."
5128
  msgstr ""
5129
 
5130
- #: src/vue/classes/SiteAnalysis.js:605
5131
- msgid "The site is using a secure transfer protocol (https)."
5132
  msgstr ""
5133
 
5134
- #: src/vue/classes/SiteAnalysis.js:610
5135
  msgid ""
5136
- "If you aren't using an SSL certificate for your site that means you are "
5137
- "losing a lot of potential traffic. We recommend getting an SSL certificate "
5138
- "installed immediately."
5139
  msgstr ""
5140
 
5141
- #: src/vue/classes/SiteAnalysis.js:66
5142
- msgid "No meta description was found for your page."
5143
  msgstr ""
5144
 
5145
- #: src/vue/classes/SiteAnalysis.js:67
5146
- msgid "No meta description was found for the page."
5147
  msgstr ""
5148
 
5149
- # Translators: 1 - The length of the meta description as a number.
5150
- #: src/vue/classes/SiteAnalysis.js:71
5151
- msgid "Your meta description is only %1$d characters long, which is too short."
 
5152
  msgstr ""
5153
 
5154
- # Translators: 1 - The length of the meta description as a number.
5155
- #: src/vue/classes/SiteAnalysis.js:73
5156
- msgid "The meta description is only %1$d characters long, which is too short."
5157
  msgstr ""
5158
 
5159
- # Translators: 1 - The length of the meta description as a number.
5160
- #: src/vue/classes/SiteAnalysis.js:77
5161
- msgid "Your meta description is %1$d characters long, which is too long."
 
5162
  msgstr ""
5163
 
5164
- # Translators: 1 - The length of the meta description as a number.
5165
- #: src/vue/classes/SiteAnalysis.js:79
5166
- msgid "The meta description is %1$d characters long, which is too long."
 
5167
  msgstr ""
5168
 
5169
- # Translators: 1 - The length of the meta description as a number.
5170
- #: src/vue/classes/SiteAnalysis.js:84
5171
- msgid "Your meta description is set and is %1$d characters long."
5172
  msgstr ""
5173
 
5174
- # Translators: 1 - The length of the meta description as a number.
5175
- #: src/vue/classes/SiteAnalysis.js:86
5176
- msgid "The meta description is set and is %1$d characters long."
5177
  msgstr ""
5178
 
5179
- #: src/vue/classes/SiteAnalysis.js:92
5180
- msgid ""
5181
- "Write a meta description for your page. Use your target keywords (in a "
5182
- "natural way) and write with human readers in mind. Summarize the content - "
5183
- "describe the topics your article discusses."
5184
  msgstr ""
5185
 
5186
- #: src/vue/classes/SiteAnalysis.js:92
5187
- msgid ""
5188
- "The description should stimulate reader interest and get them to click on "
5189
- "the article. Think of it as a mini-advertisement for your content."
5190
  msgstr ""
5191
 
5192
- #: src/vue/classes/SiteAnalysis.js:93
5193
- msgid "Edit Your Meta Description"
5194
  msgstr ""
5195
 
5196
- #: src/vue/components/common/core/Main.vue:72
5197
- #: src/vue/components/common/core/MainTabs.vue:161
5198
- msgid "Save Changes"
5199
  msgstr ""
5200
 
5201
- #: src/vue/components/common/core/Notification.vue:100
5202
- msgid "a minute ago"
5203
  msgstr ""
5204
 
5205
- #: src/vue/components/common/core/Notification.vue:101
5206
- msgid "minutes ago"
5207
  msgstr ""
5208
 
5209
- #: src/vue/components/common/core/Notification.vue:102
5210
- msgid "a day ago"
5211
  msgstr ""
5212
 
5213
- #: src/vue/components/common/core/Notification.vue:103
5214
- msgid "days ago"
5215
  msgstr ""
5216
 
5217
- #: src/vue/components/common/core/Notification.vue:104
5218
- msgid "a month ago"
5219
  msgstr ""
5220
 
5221
- #: src/vue/components/common/core/Notification.vue:105
5222
- msgid "months ago"
5223
  msgstr ""
5224
 
5225
- #: src/vue/components/common/core/Notification.vue:106
5226
- msgid "a year ago"
5227
  msgstr ""
5228
 
5229
- #: src/vue/components/common/core/Notification.vue:107
5230
- msgid "years ago"
5231
  msgstr ""
5232
 
5233
- #: src/vue/components/common/core/Notification.vue:79
5234
- msgid "Dismiss"
5235
  msgstr ""
5236
 
5237
- #: src/vue/components/common/core/Notification.vue:99
5238
- msgid "a few seconds ago"
 
5239
  msgstr ""
5240
 
5241
- #: src/vue/components/common/core/FeatureCard.vue:122
5242
- #: src/vue/components/common/core/Help.vue:137
5243
- msgid "Upgrade to Pro"
5244
  msgstr ""
5245
 
5246
- #: src/vue/components/common/core/FeatureCard.vue:123
5247
- msgid "Upgrade Your Plan"
5248
  msgstr ""
5249
 
5250
- #: src/vue/components/common/core/GettingStarted.vue:83
5251
- msgid "How to Get Started"
5252
  msgstr ""
5253
 
5254
- # Translators: 1 - The plugin name ("All in One SEO").
5255
- #: src/vue/components/common/core/GettingStarted.vue:85
5256
- msgid "Welcome to %1$s"
5257
  msgstr ""
5258
 
5259
- # Translators: 1 - The plugin name ("All in One SEO").
5260
- #: src/vue/components/common/core/GettingStarted.vue:87
5261
- msgid ""
5262
- "Thank you for choosing the best WordPress SEO plugin. %1$s default settings "
5263
- "works great out of the box. We created the setup wizard to guide you "
5264
- "through some important configuration settings & custom-tailored SEO best "
5265
- "practices for your site to help you improve rankings."
5266
  msgstr ""
5267
 
5268
- #: src/vue/components/common/core/GettingStarted.vue:88
5269
- msgid "Launch the Setup Wizard"
5270
  msgstr ""
5271
 
5272
- #: src/vue/components/common/core/GettingStarted.vue:89
5273
- msgid "Read the Setup Guide"
5274
  msgstr ""
5275
 
5276
- #: src/vue/components/common/core/Help.vue:126
5277
- msgid "Close"
5278
  msgstr ""
5279
 
5280
- #: src/vue/components/common/core/Help.vue:127
5281
- msgid "Search"
5282
  msgstr ""
5283
 
5284
- #: src/vue/components/common/core/Help.vue:128
5285
- msgid "View All"
5286
  msgstr ""
5287
 
5288
- #: src/vue/components/common/core/Help.vue:129
5289
- msgid "Docs"
5290
  msgstr ""
5291
 
5292
- #: src/vue/components/common/core/Help.vue:130
5293
- msgid "View Documentation"
5294
  msgstr ""
5295
 
5296
- # Translators: 1 - The plugin short name ("AIOEO").
5297
- #: src/vue/components/common/core/Help.vue:132
5298
- msgid "Browse documentation, reference material, and tutorials for %1$s."
5299
  msgstr ""
5300
 
5301
- #: src/vue/components/common/core/Help.vue:133
5302
- msgid "View All Documentation"
5303
  msgstr ""
5304
 
5305
- #: src/vue/components/common/core/Help.vue:134
5306
- msgid "Get Support"
5307
  msgstr ""
5308
 
5309
- #: src/vue/components/common/core/Help.vue:135
5310
- msgid "Submit a ticket and our world class support team will be in touch soon."
5311
  msgstr ""
5312
 
5313
- #: src/vue/components/common/core/Help.vue:136
5314
- msgid "Submit a Support Ticket"
5315
  msgstr ""
5316
 
5317
- #: src/vue/components/common/core/HtmlTagsEditor.vue:98
5318
- msgid "Click on the tags below to insert variables into your template."
5319
  msgstr ""
5320
 
5321
- #: src/vue/components/common/core/HtmlTagsEditor.vue:99
5322
- msgid "View all tags"
5323
  msgstr ""
5324
 
5325
- #: src/vue/components/common/core/CopyBlock.vue:48
5326
- msgid "Click to Copy"
5327
  msgstr ""
5328
 
5329
- #: src/vue/components/common/core/ExcludePosts.vue:100
5330
- msgid "No results found for that title. Try again!"
5331
  msgstr ""
5332
 
5333
- #: src/vue/components/common/core/ExcludePosts.vue:101
5334
- msgid "Clear"
5335
  msgstr ""
5336
 
5337
- #: src/vue/components/common/core/ExcludePosts.vue:102
5338
- msgid "ID"
5339
  msgstr ""
5340
 
5341
- #: src/vue/components/common/core/ExcludePosts.vue:103
5342
- msgid "Type"
5343
  msgstr ""
5344
 
5345
- #: src/vue/components/common/core/ExcludePosts.vue:98
5346
- msgid "Type to search..."
5347
  msgstr ""
5348
 
5349
- #: src/vue/components/common/core/ExcludePosts.vue:99
5350
- msgid "Begin typing a title to search..."
5351
  msgstr ""
5352
 
5353
- #: src/vue/components/common/core/AdditionalPages.vue:100
5354
- msgid "Last Modified"
5355
  msgstr ""
5356
 
5357
- #: src/vue/components/common/core/AdditionalPages.vue:102
5358
- msgid "Add New"
5359
  msgstr ""
5360
 
5361
- #: src/vue/components/common/core/AdditionalPages.vue:103
5362
- #: src/vue/plugins/constants.js:19
5363
- msgid "always"
5364
  msgstr ""
5365
 
5366
- # Translators: 1 - An example URL (e.g. https://aioseo.com/example).
5367
- #: src/vue/components/common/core/AdditionalPages.vue:96
5368
- msgid "Enter a page URL, e.g. %1$s"
5369
  msgstr ""
5370
 
5371
- #: src/vue/components/common/core/AdditionalPages.vue:97
5372
- msgid "Page URL"
5373
  msgstr ""
5374
 
5375
- #: src/vue/components/common/base/Editor.vue:122
5376
- msgid "Search for an item..."
5377
  msgstr ""
5378
 
5379
- #: src/vue/components/common/base/Editor.vue:123
5380
- msgid "Enter a custom field name..."
5381
  msgstr ""
5382
 
5383
- #: src/vue/plugins/constants.js:1041
5384
- msgid "Manually Enter Type"
5385
  msgstr ""
5386
 
5387
- #: src/vue/plugins/constants.js:1043
5388
- msgid "Technical Support"
5389
  msgstr ""
5390
 
5391
- #: src/vue/plugins/constants.js:1044
5392
- msgid "Billing Support"
5393
  msgstr ""
5394
 
5395
- #: src/vue/plugins/constants.js:1045
5396
- msgid "Bill Payment"
5397
  msgstr ""
5398
 
5399
- #: src/vue/plugins/constants.js:1046
5400
- msgid "Sales"
5401
  msgstr ""
5402
 
5403
- #: src/vue/plugins/constants.js:1047
5404
- msgid "Reservations"
5405
  msgstr ""
5406
 
5407
- #: src/vue/plugins/constants.js:1048
5408
- msgid "Credit Card Support"
5409
  msgstr ""
5410
 
5411
- #: src/vue/plugins/constants.js:1049
5412
- msgid "Emergency"
5413
  msgstr ""
5414
 
5415
- #: src/vue/plugins/constants.js:1050
5416
- msgid "Bagage Tracking"
5417
  msgstr ""
5418
 
5419
- #: src/vue/plugins/constants.js:1051
5420
- msgid "Roadside Assistance"
5421
  msgstr ""
5422
 
5423
- #: src/vue/plugins/constants.js:1052
5424
- msgid "Package Tracking"
5425
  msgstr ""
5426
 
5427
- #: src/vue/plugins/constants.js:1059
5428
- msgid ""
5429
- "Sitemaps are a list of all your content that search engines use when they "
5430
- "crawl your site."
5431
  msgstr ""
5432
 
5433
- #: src/vue/plugins/constants.js:1069
5434
- msgid "Optimized Search Appearance"
5435
  msgstr ""
5436
 
5437
- #: src/vue/plugins/constants.js:1070
5438
- msgid "Get all the right tools to make sure your website shows up in Google Search."
5439
  msgstr ""
5440
 
5441
- #: src/vue/plugins/constants.js:1078
5442
- msgid ""
5443
- "Get the #1 analytics plugin to see how people find and use your website. "
5444
- "Simply put, see stats that matter."
5445
  msgstr ""
5446
 
5447
- #: src/vue/plugins/constants.js:1085
5448
- msgid "Breadcrumbs"
5449
  msgstr ""
5450
 
5451
- #: src/vue/plugins/constants.js:1094
5452
- msgid ""
5453
- "Globally control Title and Alt attributes for attachment pages and images "
5454
- "that are embedded in your content."
5455
  msgstr ""
5456
 
5457
- #: src/vue/plugins/constants.js:1105
5458
- msgid ""
5459
- "Tell Google about your business for display as a Knowledge Graph card or "
5460
- "business carousel."
5461
  msgstr ""
5462
 
5463
- #: src/vue/plugins/constants.js:1116
5464
- msgid "Generate an XML Sitemap specifically for video content on your site."
5465
  msgstr ""
5466
 
5467
- #: src/vue/plugins/constants.js:1127
5468
- msgid "Submit articles to Google News that were published in the last 48 hours."
5469
  msgstr ""
5470
 
5471
- #: src/vue/plugins/constants.js:1137
5472
- msgid "Smart Redirects + 404 Detection"
5473
  msgstr ""
5474
 
5475
- #: src/vue/plugins/constants.js:1145
5476
- msgid "Internal Link Building Assistant"
5477
  msgstr ""
5478
 
5479
- #: src/vue/plugins/constants.js:1153
5480
- msgid "Advanced Rich Snippets + Schema Markups"
5481
  msgstr ""
5482
 
5483
- #: src/vue/plugins/constants.js:1164
5484
- msgid "Activities"
5485
  msgstr ""
5486
 
5487
- #: src/vue/plugins/constants.js:1166
5488
- msgid "Activity"
5489
  msgstr ""
5490
 
5491
- #: src/vue/plugins/constants.js:1167
5492
- msgid "Sport"
 
 
 
 
5493
  msgstr ""
5494
 
5495
- #: src/vue/plugins/constants.js:1171
5496
- msgid "Businesses"
5497
  msgstr ""
5498
 
5499
- #: src/vue/plugins/constants.js:1173
5500
- msgid "Bar"
5501
  msgstr ""
5502
 
5503
- #: src/vue/plugins/constants.js:1174
5504
- msgid "Company"
5505
  msgstr ""
5506
 
5507
- #: src/vue/plugins/constants.js:1175
5508
- msgid "Cafe"
5509
  msgstr ""
5510
 
5511
- #: src/vue/plugins/constants.js:1176
5512
- msgid "Hotel"
5513
  msgstr ""
5514
 
5515
- #: src/vue/plugins/constants.js:1177
5516
- msgid "Restaurant"
5517
  msgstr ""
5518
 
5519
- #: src/vue/plugins/constants.js:1181
5520
- msgid "Groups"
 
 
 
 
5521
  msgstr ""
5522
 
5523
- # Translators: This refers to a charity/non-profit organization.
5524
- #: src/vue/plugins/constants.js:1184
5525
- msgid "Cause"
5526
  msgstr ""
5527
 
5528
- #: src/vue/plugins/constants.js:1185
5529
- msgid "Sports League"
5530
  msgstr ""
5531
 
5532
- #: src/vue/plugins/constants.js:1186
5533
- msgid "Sports Team"
 
 
 
5534
  msgstr ""
5535
 
5536
- #: src/vue/plugins/constants.js:1190
5537
- msgid "Organizations"
 
 
 
5538
  msgstr ""
5539
 
5540
- # Translators: This refers to a music group.
5541
- #: src/vue/plugins/constants.js:1193
5542
- msgid "Band"
5543
  msgstr ""
5544
 
5545
- #: src/vue/plugins/constants.js:1194
5546
- msgid "Non-Profit"
5547
  msgstr ""
5548
 
5549
- #: src/vue/plugins/constants.js:1195
5550
- msgid "School"
5551
  msgstr ""
5552
 
5553
- #: src/vue/plugins/constants.js:1196
5554
- msgid "University"
5555
  msgstr ""
5556
 
5557
- #: src/vue/plugins/constants.js:1200
5558
- msgid "People"
5559
  msgstr ""
5560
 
5561
- #: src/vue/plugins/constants.js:1202
5562
- msgid "Actor"
5563
  msgstr ""
5564
 
5565
- #: src/vue/plugins/constants.js:1203
5566
- msgid "Athlete"
 
 
5567
  msgstr ""
5568
 
5569
- #: src/vue/plugins/constants.js:1205
5570
- msgid "Director"
5571
  msgstr ""
5572
 
5573
- #: src/vue/plugins/constants.js:1206
5574
- msgid "Musician"
5575
  msgstr ""
5576
 
5577
- #: src/vue/plugins/constants.js:1207
5578
- msgid "Politician"
5579
  msgstr ""
5580
 
5581
- #: src/vue/plugins/constants.js:1208
5582
- msgid "Profile"
 
 
 
5583
  msgstr ""
5584
 
5585
- #: src/vue/plugins/constants.js:1209
5586
- msgid "Public Figure"
 
 
5587
  msgstr ""
5588
 
5589
- #: src/vue/plugins/constants.js:1213
5590
- msgid "Places"
5591
  msgstr ""
5592
 
5593
- #: src/vue/plugins/constants.js:1215
5594
- msgid "City"
5595
  msgstr ""
5596
 
5597
- #: src/vue/plugins/constants.js:1216
5598
- msgid "Country"
 
 
5599
  msgstr ""
5600
 
5601
- #: src/vue/plugins/constants.js:1217
5602
- msgid "Landmark"
5603
  msgstr ""
5604
 
5605
- #: src/vue/plugins/constants.js:1218
5606
- msgid "State/Province"
5607
  msgstr ""
5608
 
5609
- #: src/vue/plugins/constants.js:1222
5610
- msgid "Products & Entertainment"
 
5611
  msgstr ""
5612
 
5613
- #: src/vue/plugins/constants.js:1224
5614
- msgid "Album"
5615
  msgstr ""
5616
 
5617
- #: src/vue/plugins/constants.js:1225
5618
- msgid "Book"
 
5619
  msgstr ""
5620
 
5621
- #: src/vue/plugins/constants.js:1226
5622
- msgid "Drink"
5623
  msgstr ""
5624
 
5625
- #: src/vue/plugins/constants.js:1227
5626
- msgid "Food"
5627
  msgstr ""
5628
 
5629
- #: src/vue/plugins/constants.js:1228
5630
- msgid "Game"
 
 
 
5631
  msgstr ""
5632
 
5633
- #: src/vue/plugins/constants.js:1229
5634
- msgid "Movie"
5635
  msgstr ""
5636
 
5637
- #: src/vue/plugins/constants.js:1230
5638
- msgid "Product"
5639
  msgstr ""
5640
 
5641
- #: src/vue/plugins/constants.js:1231
5642
- msgid "Song"
5643
  msgstr ""
5644
 
5645
- #: src/vue/plugins/constants.js:1232
5646
- msgid "TV Show"
5647
  msgstr ""
5648
 
5649
- #: src/vue/plugins/constants.js:1233
5650
- msgid "Episode"
 
 
 
5651
  msgstr ""
5652
 
5653
- #: src/vue/plugins/constants.js:1237
5654
- msgid "Websites"
5655
  msgstr ""
5656
 
5657
- #: src/vue/plugins/constants.js:1240
5658
- msgid "Website"
 
 
 
5659
  msgstr ""
5660
 
5661
- #: src/vue/plugins/constants.js:20
5662
- msgid "hourly"
5663
  msgstr ""
5664
 
5665
- #: src/vue/plugins/constants.js:21
5666
- msgid "daily"
 
5667
  msgstr ""
5668
 
5669
- #: src/vue/plugins/constants.js:22
5670
- msgid "weekly"
5671
  msgstr ""
5672
 
5673
- #: src/vue/plugins/constants.js:23
5674
- msgid "monthly"
5675
  msgstr ""
5676
 
5677
- #: src/vue/plugins/constants.js:24
5678
- msgid "yearly"
5679
  msgstr ""
5680
 
5681
- #: src/vue/plugins/constants.js:25
5682
- msgid "never"
 
 
5683
  msgstr ""
5684
 
5685
- #: src/vue/plugins/constants.js:29
5686
- msgid "No"
5687
  msgstr ""
5688
 
5689
- #: src/vue/plugins/constants.js:30
5690
- msgid "Yes"
5691
  msgstr ""
5692
 
5693
- #: src/vue/plugins/constants.js:31
5694
- msgid "Off"
5695
  msgstr ""
5696
 
5697
- #: src/vue/plugins/constants.js:32
5698
- msgid "On"
5699
  msgstr ""
5700
 
5701
- #: src/vue/plugins/constants.js:33
5702
- msgid "Show"
5703
  msgstr ""
5704
 
5705
- #: src/vue/plugins/constants.js:34
5706
- msgid "Hide"
 
 
 
5707
  msgstr ""
5708
 
5709
- #: src/vue/plugins/constants.js:35
5710
- msgid "Learn More"
5711
  msgstr ""
5712
 
5713
- #: src/vue/plugins/constants.js:36
5714
- msgid "Disabled"
5715
  msgstr ""
5716
 
5717
- #: src/vue/plugins/constants.js:37
5718
- msgid "Enabled"
5719
  msgstr ""
5720
 
5721
- #: src/vue/plugins/constants.js:38
5722
- msgid "Preview"
5723
  msgstr ""
5724
 
5725
- #: src/vue/utils/tags.js:64
5726
- msgid "Product Short Description"
 
 
5727
  msgstr ""
5728
 
5729
- #: src/vue/utils/tags.js:65
5730
- msgid "A short description for your product."
5731
  msgstr ""
5732
 
5733
- #: src/vue/utils/tags.js:66
5734
- msgid "Sample short description for your product."
5735
  msgstr ""
5736
 
5737
- #: src/vue/utils/tags.js:82
5738
- msgid "Archive"
5739
  msgstr ""
5740
 
5741
- #: src/vue/utils/tags.js:83
5742
- msgid "archive"
5743
  msgstr ""
5744
 
5745
- #: src/vue/store/actions.js:146
5746
- msgid "We couldn't connect to the site, please try again later."
5747
  msgstr ""
5748
 
5749
- #: src/vue/plugins/truSEO/Analysis/isExternalLink.js:22
5750
- msgid "Great! You are linking to external resources."
5751
  msgstr ""
5752
 
5753
- #: src/vue/plugins/truSEO/Analysis/isExternalLink.js:30
5754
- msgid "External links"
5755
  msgstr ""
5756
 
5757
- #: src/vue/plugins/truSEO/Analysis/isExternalLink.js:31
5758
- msgid "No outbound links were found. Link out to external resources."
5759
  msgstr ""
5760
 
5761
- #: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:47
5762
- #: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:41
5763
- msgid "Good job!"
5764
  msgstr ""
5765
 
5766
- #: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:51
5767
- msgid "very easy"
5768
  msgstr ""
5769
 
5770
- # Translators: 1 - Flesch Reading Result Number, 2 - Read difficulty string.
5771
- #: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:79
5772
- msgid "The copy scores %1$s in the test, which is considered %2$s to read."
5773
  msgstr ""
5774
 
5775
- #: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:87
5776
- msgid "Flesch Reading Ease"
 
5777
  msgstr ""
5778
 
5779
- # Translators: 1 - Flesch Reading Result Number, 2 - Read difficulty string, 3 - Note string.
5780
- #: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:89
5781
- msgid "The copy scores %1$s in the test, which is considered %2$s to read. %3$s"
 
 
5782
  msgstr ""
5783
 
5784
- #: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:97
5785
- msgid "Flesch Reading Ease N/A"
5786
  msgstr ""
5787
 
5788
- #: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:98
5789
- msgid ":-)"
 
 
5790
  msgstr ""
5791
 
5792
- #: src/vue/plugins/truSEO/Analysis/isInternalLink.js:22
5793
- msgid "You are linking to other resources on your website which is great."
5794
  msgstr ""
5795
 
5796
- #: src/vue/plugins/truSEO/Analysis/isInternalLink.js:30
5797
- msgid "Internal links"
5798
  msgstr ""
5799
 
5800
- #: src/vue/plugins/truSEO/Analysis/isInternalLink.js:31
5801
- msgid ""
5802
- "We couldn't find any internal links in your content. Add internal links in "
5803
- "your content."
5804
  msgstr ""
5805
 
5806
- # Translators: 1 - Number of sentences.
5807
- #: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:23
5808
- msgid ""
5809
- "The text contains %1$d consecutive sentences starting with the same word. "
5810
- "Try to mix things up!"
5811
  msgstr ""
5812
 
5813
- #: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:31
5814
- msgid "Consecutive sentences"
5815
  msgstr ""
5816
 
5817
- #: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:32
5818
- msgid "There is enough variety in your sentences. That's great!"
5819
  msgstr ""
5820
 
5821
- # Translators: 1 - Expand to the number of text sections not separated by subheadings, 2 - expands to the recommended number of words following a subheading.
5822
- #: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:65
5823
- msgid ""
5824
- "%1$d section of your text is longer than %2$d words and is not separated by "
5825
- "any subheadings. Add subheadings to improve readability."
5826
  msgstr ""
5827
 
5828
- #: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:74
5829
  msgid ""
5830
- "You are not using any subheadings, although your text is rather long. Try "
5831
- "and add some subheadings."
5832
- msgstr ""
5833
-
5834
- #: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:84
5835
- msgid "Great job!"
5836
  msgstr ""
5837
 
5838
- #: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:92
5839
- msgid "Subheading distribution"
5840
  msgstr ""
5841
 
5842
- #: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:93
5843
- msgid ""
5844
- "You are not using any subheadings, but your text is short enough and "
5845
- "probably doesn't need them."
5846
  msgstr ""
5847
 
5848
- #: src/vue/plugins/truSEO/Analysis/transitionWords.js:21
5849
- msgid "None of the sentences contain transition words. Use some"
5850
  msgstr ""
5851
 
5852
- # Translators: 1 - Percentage of the sentences.
5853
- #: src/vue/plugins/truSEO/Analysis/transitionWords.js:32
5854
- msgid ""
5855
- "Only %1$s of the sentences contain transition words, which is not enough. "
5856
- "Use more of them"
5857
  msgstr ""
5858
 
5859
- #: src/vue/plugins/truSEO/Analysis/transitionWords.js:40
5860
- msgid "Transition words"
5861
  msgstr ""
5862
 
5863
- #: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:56
5864
- #: src/vue/plugins/truSEO/Analysis/titleLength.js:61
5865
- #: src/vue/plugins/truSEO/Analysis/transitionWords.js:41
5866
- msgid "Well done!"
5867
  msgstr ""
5868
 
5869
- #: src/vue/plugins/truSEO/Analysis/passiveVoice.js:38
5870
- msgid "You're using enough active voice. That's great!"
5871
  msgstr ""
5872
 
5873
- #: src/vue/plugins/truSEO/Analysis/passiveVoice.js:45
5874
- msgid "Passive Voice"
5875
  msgstr ""
5876
 
5877
- # Translators: 1 - Percentage of the sentences, 2 - Expected maximum percentage of sentences.
5878
- #: src/vue/plugins/truSEO/Analysis/passiveVoice.js:47
5879
  msgid ""
5880
- "%1$s of the sentences contain passive voice, which is more than the "
5881
- "recommended maximum of %2$s. Try to use their active counterparts"
5882
  msgstr ""
5883
 
5884
- #: src/vue/plugins/truSEO/Analysis/sentenceLength.js:34
5885
- msgid "Sentence length is looking great!"
5886
  msgstr ""
5887
 
5888
- #: src/vue/plugins/truSEO/Analysis/sentenceLength.js:52
5889
- msgid "Sentences Length"
 
5890
  msgstr ""
5891
 
5892
- # Translators: 1 - Number of the sentences, 2 - Number of words, 3 - Recommended maximum of words.
5893
- #: src/vue/plugins/truSEO/Analysis/sentenceLength.js:54
5894
- msgid ""
5895
- "%1$s of the sentences contain more than %2$s words, which is more than the "
5896
- "recommended maximum of %3$s. Try to shorten the sentences."
5897
  msgstr ""
5898
 
5899
- #: src/vue/plugins/truSEO/Analysis/paragraphLength.js:23
5900
- msgid "At least one paragraph is long. Consider using short paragraphs."
5901
  msgstr ""
5902
 
5903
- #: src/vue/plugins/truSEO/Analysis/paragraphLength.js:30
5904
- msgid "Paragraphs Length"
5905
  msgstr ""
5906
 
5907
- #: src/vue/plugins/truSEO/Analysis/paragraphLength.js:31
5908
- msgid "You are using short paragraphs."
5909
  msgstr ""
5910
 
5911
- #: src/vue/plugins/truSEO/Analysis/contentHasAssets.js:11
5912
- #: src/vue/plugins/truSEO/Analysis/lengthContent.js:27
5913
- msgid "Please add some content first."
5914
  msgstr ""
5915
 
5916
- #: src/vue/plugins/truSEO/Analysis/contentHasAssets.js:24
5917
- msgid "Your content contains images and/or video(s).."
5918
  msgstr ""
5919
 
5920
- #: src/vue/plugins/truSEO/Analysis/contentHasAssets.js:31
5921
- msgid "Images/Videos in content"
5922
  msgstr ""
5923
 
5924
- #: src/vue/plugins/truSEO/Analysis/contentHasAssets.js:32
5925
- msgid "You are not using rich media like images or videos."
5926
  msgstr ""
5927
 
5928
- #: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:26
5929
- msgid ""
5930
- "No meta description has been specified. Search engines will display copy "
5931
- "from the page instead. Make sure to write one!"
5932
  msgstr ""
5933
 
5934
- #: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:36
5935
- msgid "The meta description is too short."
5936
  msgstr ""
5937
 
5938
- #: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:45
5939
- msgid "Meta description length"
5940
  msgstr ""
5941
 
5942
- #: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:46
5943
- msgid "The meta description is over 160 characters."
5944
  msgstr ""
5945
 
5946
- #: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:55
5947
- msgid "Meta description Length"
5948
  msgstr ""
5949
 
5950
- #: src/vue/plugins/truSEO/Analysis/titleLength.js:21
5951
- msgid "Please add a title first."
5952
  msgstr ""
5953
 
5954
- #: src/vue/plugins/truSEO/Analysis/titleLength.js:31
5955
- msgid "No title has been specified. Make sure to write one!"
5956
  msgstr ""
5957
 
5958
- #: src/vue/plugins/truSEO/Analysis/titleLength.js:41
5959
- msgid "The title is too short."
5960
  msgstr ""
5961
 
5962
- #: src/vue/plugins/truSEO/Analysis/titleLength.js:50
5963
- msgid "SEO Title length"
5964
  msgstr ""
5965
 
5966
- #: src/vue/plugins/truSEO/Analysis/titleLength.js:51
5967
- msgid "The title is over 60 characters."
5968
  msgstr ""
5969
 
5970
- #: src/vue/plugins/truSEO/Analysis/titleLength.js:60
5971
- msgid "Title Length"
5972
  msgstr ""
5973
 
5974
- # Translators: 1 - Focus Keyphrase or Keyphrase.
5975
- #: src/vue/plugins/truSEO/Analysis/keyphraseInImageAlt.js:28
5976
- msgid "%1$s found in image alt attribute(s)."
5977
  msgstr ""
5978
 
5979
- # Translators: 1 - Focus Keyphrase or Keyphrase.
5980
- #: src/vue/plugins/truSEO/Analysis/keyphraseInImageAlt.js:37
5981
- msgid "%1$s in image alt attributes"
5982
  msgstr ""
5983
 
5984
- # Translators: 1 - Focus Keyphrase or Keyphrase.
5985
- #: src/vue/plugins/truSEO/Analysis/keyphraseInImageAlt.js:39
 
 
 
5986
  msgid ""
5987
- "%1$s not found in image alt attribute(s). Add an image with your %1$s as "
5988
- "alt text."
5989
  msgstr ""
5990
 
5991
- #: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:47
5992
- msgid "Use more focus keyphrases in your H2 and H3 subheadings!"
5993
  msgstr ""
5994
 
5995
- #: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:56
5996
- msgid ""
5997
- "More than 75% of your H2 and H3 subheadings reflect the topic of your copy. "
5998
- "That's too much. Don't over-optimize!"
5999
  msgstr ""
6000
 
6001
- #: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:65
6002
- msgid "Your H2 or H3 subheading reflects the topic of your copy. Good job!"
6003
  msgstr ""
6004
 
6005
- #: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:74
6006
- msgid "Your H2 and H3 subheadings reflects the topic of your copy. Good job!"
 
6007
  msgstr ""
6008
 
6009
- #: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:82
6010
- msgid "Focus Keyphrase in Subheadings"
 
 
6011
  msgstr ""
6012
 
6013
- #: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:83
6014
- msgid "Use your focus keyphrase more in your H2 and H3 subheadings"
 
6015
  msgstr ""
6016
 
6017
  # Translators: 1 - Focus Keyphrase or Keyphrase.
@@ -6035,6 +5960,18 @@ msgid ""
6035
  "clear immediately."
6036
  msgstr ""
6037
 
 
 
 
 
 
 
 
 
 
 
 
 
6038
  #: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:22
6039
  msgid "Focus Keyphrase found in content."
6040
  msgstr ""
@@ -6047,16 +5984,8 @@ msgstr ""
6047
  msgid "Focus Keyphrase not found in content."
6048
  msgstr ""
6049
 
6050
- #: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:26
6051
- msgid "Focus Keyphrase used in the URL."
6052
- msgstr ""
6053
-
6054
- #: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:34
6055
- msgid "Focus Keyphrase in URL"
6056
- msgstr ""
6057
-
6058
- #: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:35
6059
- msgid "Focus Keyphrase not found in the URL."
6060
  msgstr ""
6061
 
6062
  # Translators: 1 - Focus Keyphrase or Keyphrase.
@@ -6074,6 +6003,11 @@ msgstr ""
6074
  msgid "%1$s not found in meta description."
6075
  msgstr ""
6076
 
 
 
 
 
 
6077
  #: src/vue/plugins/truSEO/Analysis/keyphraseBeginningTitle.js:20
6078
  msgid "Focus Keyphrase used at the beginning of SEO title."
6079
  msgstr ""
@@ -6098,24 +6032,24 @@ msgstr ""
6098
  msgid "Focus Keyphrase not found in SEO title."
6099
  msgstr ""
6100
 
6101
- # Translators: 1 - Focus Keyphrase or Keyphrase.
6102
- #: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:25
6103
- msgid "%1$s length"
6104
  msgstr ""
6105
 
6106
- # Translators: 1 - Focus Keyphrase or Keyphrase.
6107
- #: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:31
6108
- msgid "No %1$s was set. Set a %1$s in order to calculate your SEO score."
6109
  msgstr ""
6110
 
6111
- # Translators: 1 - Focus Keyphrase or Keyphrase.
6112
- #: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:52
6113
- msgid "%1$s is slightly long. Try to make it shorter."
6114
  msgstr ""
6115
 
6116
- # Translators: 1 - Focus Keyphrase or Keyphrase.
6117
- #: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:62
6118
- msgid "%1$s is too long. Try to make it shorter."
 
 
6119
  msgstr ""
6120
 
6121
  #: src/vue/plugins/truSEO/Analysis/lengthContent.js:38
@@ -6134,10 +6068,22 @@ msgstr ""
6134
  msgid "The content is below the minimum of words. Add more content."
6135
  msgstr ""
6136
 
6137
- #: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:6
6138
- msgid "Focus keyphrase"
 
6139
  msgstr ""
6140
 
6141
- #: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:8
6142
- msgid "Keyphrase"
 
 
 
 
 
 
 
 
 
 
 
6143
  msgstr ""
3
  "Content-Type: text/plain; charset=utf-8\n"
4
  "X-Generator: babel-plugin-makepot-aioseo\n"
5
 
6
+ #: src/vue/pages/search-appearance/router/paths.js:19
7
+ msgid "Global Settings"
8
  msgstr ""
9
 
10
+ #: src/vue/pages/search-appearance/router/paths.js:28
11
+ msgid "Content Types"
12
  msgstr ""
13
 
14
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:429
15
+ msgid "Taxonomies"
16
  msgstr ""
17
 
18
+ #: src/vue/pages/search-appearance/router/paths.js:46
19
+ msgid "Media"
20
  msgstr ""
21
 
22
+ #: src/vue/pages/search-appearance/router/paths.js:55
23
+ msgid "Archives"
24
+ msgstr ""
25
+
26
+ #: src/vue/pages/search-appearance/router/paths.js:64
27
+ msgid "Advanced"
28
  msgstr ""
29
 
30
+ #: src/vue/pages/monsterinsights/router/paths.js:19
31
+ #: src/vue/pages/monsterinsights/views/Main.vue:20
32
  msgid "Analytics"
33
  msgstr ""
34
 
35
+ #: src/vue/pages/about/router/paths.js:19
36
+ msgid "About Us"
37
+ msgstr ""
38
+
39
+ #: src/vue/pages/about/router/paths.js:28
40
+ msgid "Getting Started"
41
+ msgstr ""
42
+
43
+ #: src/vue/pages/about/router/paths.js:37
44
+ msgid "Lite vs. Pro"
45
+ msgstr ""
46
+
47
+ #: src/vue/pages/seo-analysis/router/paths.js:19
48
+ msgid "SEO Audit Checklist"
49
+ msgstr ""
50
+
51
+ #: src/vue/pages/seo-analysis/router/paths.js:28
52
+ msgid "Analyze Competitor Site"
53
+ msgstr ""
54
+
55
+ #: src/vue/pages/dashboard/router/paths.js:19
56
+ msgid "Dashboard"
57
+ msgstr ""
58
+
59
+ #: src/vue/pages/local-seo/router/paths.js:19
60
+ msgid "Locations"
61
+ msgstr ""
62
+
63
+ #: src/vue/pages/local-seo/router/paths.js:28
64
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:292
65
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:306
66
+ msgid "Opening Hours"
67
+ msgstr ""
68
+
69
  #: src/vue/pages/post-settings/registerScoreToggler.js:21
70
  msgid "N/A"
71
  msgstr ""
72
 
73
+ #: src/vue/router/index.js:51
74
+ msgid "Are you sure you want to leave? you have unsaved changes!"
75
  msgstr ""
76
 
77
+ # Translators: 1 - The plugin short name ("AIOSEO").
78
+ #: src/vue/pages/connect-pro/router/paths.js:20
79
+ msgid "Connect with %1$s"
80
  msgstr ""
81
 
82
+ #: src/vue/pages/setup-wizard/router/paths.js:19
83
+ msgid "Welcome"
84
  msgstr ""
85
 
86
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:85
87
+ msgid "Import"
88
  msgstr ""
89
 
90
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:371
91
+ msgid "Category"
92
  msgstr ""
93
 
94
+ #: src/vue/pages/setup-wizard/router/paths.js:46
95
+ msgid "Additional Site Information"
96
  msgstr ""
97
 
98
+ #: src/vue/pages/setup-wizard/router/paths.js:55
99
+ msgid "Choose Features"
100
  msgstr ""
101
 
102
+ #: src/vue/pages/search-appearance/views/Main.vue:30
103
+ msgid "Search Appearance"
104
  msgstr ""
105
 
106
+ #: src/vue/pages/setup-wizard/router/paths.js:73
107
+ msgid "Smart Recommendations"
108
  msgstr ""
109
 
110
+ #: src/vue/components/lite/settings/LicenseKey.vue:58
111
+ msgid "License Key"
112
+ msgstr ""
113
+
114
+ #: src/vue/pages/setup-wizard/router/paths.js:91
115
+ msgid "Success"
116
  msgstr ""
117
 
118
  #: src/vue/pages/settings/views/Main.vue:29
119
  msgid "General Settings"
120
  msgstr ""
121
 
122
+ #: src/vue/pages/tools/views/partials/ExportSettings.vue:118
123
  msgid "Webmaster Tools"
124
  msgstr ""
125
 
126
+ #: src/vue/pages/tools/views/partials/ExportSettings.vue:119
127
  msgid "RSS Content"
128
  msgstr ""
129
 
130
+ #: src/vue/pages/tools/views/partials/ExportSettings.vue:128
131
  msgid "Access Control"
132
  msgstr ""
133
 
134
+ #: src/vue/pages/feature-manager/router/paths.js:19
135
+ msgid "Feature Manager"
136
  msgstr ""
137
 
138
+ #: src/vue/pages/social-networks/router/paths.js:19
 
139
  msgid "Social Profiles"
140
  msgstr ""
141
 
151
  msgid "Pinterest"
152
  msgstr ""
153
 
154
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:415
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
  msgid "General Sitemap"
156
  msgstr ""
157
 
158
  #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:9
 
159
  msgid "Video Sitemap"
160
  msgstr ""
161
 
162
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:151
 
163
  msgid "News Sitemap"
164
  msgstr ""
165
 
167
  msgid "RSS Sitemap"
168
  msgstr ""
169
 
170
+ #: src/vue/pages/tools/views/RobotsEditor.vue:236
171
+ msgid "Robots.txt Editor"
172
  msgstr ""
173
 
174
+ #: src/vue/pages/tools/views/HtaccessEditor.vue:40
175
+ msgid ".htaccess Editor"
176
  msgstr ""
177
 
178
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:89
179
+ msgid "Bad Bot Blocker"
180
  msgstr ""
181
 
182
+ #: src/vue/pages/tools/router/paths.js:46
183
+ msgid "Import/Export"
184
  msgstr ""
185
 
186
+ #: src/vue/pages/tools/router/paths.js:55
187
+ msgid "Database Tools"
188
  msgstr ""
189
 
190
+ #: src/vue/pages/tools/router/paths.js:64
191
+ msgid "System Status"
 
192
  msgstr ""
193
 
194
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:440
195
+ msgid "Advanced Settings"
196
  msgstr ""
197
 
198
+ #: src/vue/pages/search-appearance/views/Advanced.vue:377
199
+ msgid "Global Robots Meta"
200
  msgstr ""
201
 
202
+ #: src/vue/pages/search-appearance/views/Advanced.vue:378
203
+ msgid "Noindex Empty Category and Tag Archives"
204
  msgstr ""
205
 
206
+ #: src/vue/pages/search-appearance/views/Advanced.vue:379
207
+ msgid "Remove Stopwords from Permalinks"
208
  msgstr ""
209
 
210
+ #: src/vue/pages/search-appearance/views/Advanced.vue:380
211
+ msgid "Remove Category Base Prefix"
212
  msgstr ""
213
 
214
+ #: src/vue/pages/search-appearance/views/Advanced.vue:383
215
+ msgid "Automatically Add Missing Image Alt / Title Tags"
 
216
  msgstr ""
217
 
218
+ # Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more".
219
+ #: src/vue/pages/post-settings/views/Advanced.vue:122
220
+ msgid "This feature is only for licensed %1$s users. %2$s"
221
  msgstr ""
222
 
223
+ #: src/vue/pages/search-appearance/views/Advanced.vue:386
224
+ msgid "Autogenerate Descriptions"
225
  msgstr ""
226
 
227
+ #: src/vue/pages/search-appearance/views/Advanced.vue:387
228
+ msgid "Use Content for Autogenerated Descriptions"
229
  msgstr ""
230
 
231
+ #: src/vue/pages/search-appearance/views/Advanced.vue:388
232
+ msgid "Run Shortcodes in Description"
233
  msgstr ""
234
 
235
+ #: src/vue/pages/search-appearance/views/Advanced.vue:389
236
+ msgid "No Pagination for Canonical URLs"
237
  msgstr ""
238
 
239
+ #: src/vue/pages/search-appearance/views/Advanced.vue:390
240
+ msgid "Use Meta Keywords"
241
  msgstr ""
242
 
243
+ #: src/vue/pages/search-appearance/views/Advanced.vue:391
244
+ msgid ""
245
+ "This option allows you to toggle the use of Meta Keywords throughout the "
246
+ "whole of the site."
247
  msgstr ""
248
 
249
+ #: src/vue/pages/search-appearance/views/Advanced.vue:392
250
+ msgid "Use Categories for Meta Keywords"
251
  msgstr ""
252
 
253
+ #: src/vue/pages/search-appearance/views/Advanced.vue:393
254
+ msgid ""
255
+ "Check this if you want your categories for a given post used as the Meta "
256
+ "Keywords for this post (in addition to any keywords you specify on the Edit "
257
+ "Post screen)."
258
  msgstr ""
259
 
260
+ #: src/vue/pages/search-appearance/views/Advanced.vue:394
261
+ msgid "Use Tags for Meta Keywords"
262
  msgstr ""
263
 
264
+ #: src/vue/pages/search-appearance/views/Advanced.vue:395
265
+ msgid ""
266
+ "Check this if you want your tags for a given post used as the Meta Keywords "
267
+ "for this post (in addition to any keywords you specify on the Edit Post "
268
+ "screen)."
269
  msgstr ""
270
 
271
+ #: src/vue/pages/search-appearance/views/Advanced.vue:396
272
+ msgid "Dynamically Generate Meta Keywords"
273
  msgstr ""
274
 
275
+ #: src/vue/pages/search-appearance/views/Advanced.vue:397
276
+ msgid ""
277
+ "Check this if you want your keywords on your Posts page (set in WordPress "
278
+ "under Settings, Reading, Front Page Displays) and your archive pages to be "
279
+ "dynamically generated from the keywords of the posts showing on that page. "
280
+ "If unchecked, it will use the keywords set in the edit page screen for the "
281
+ "posts page."
282
  msgstr ""
283
 
284
+ #: src/vue/pages/search-appearance/views/Advanced.vue:398
285
+ msgid "Paged Format"
286
  msgstr ""
287
 
288
+ #: src/vue/pages/search-appearance/views/Advanced.vue:399
289
+ msgid ""
290
+ "This string gets appended/prepended to titles and descriptions of paged "
291
+ "index pages (like home or archive pages)."
292
  msgstr ""
293
 
294
+ #: src/vue/pages/search-appearance/views/Advanced.vue:400
295
+ msgid "Description Format"
296
  msgstr ""
297
 
298
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:441
299
+ msgid "Exclude Posts / Pages"
300
  msgstr ""
301
 
302
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:442
303
+ msgid "Exclude Terms"
304
  msgstr ""
305
 
306
+ #: src/vue/pages/search-appearance/views/Advanced.vue:403
307
+ msgid "Enable Sitelinks Search Box"
308
  msgstr ""
309
 
310
+ # Translators: 1 - The plugin name ("All in One SEO").
311
+ #: src/vue/pages/search-appearance/views/Advanced.vue:405
312
+ msgid ""
313
+ "Choose whether %1$s should output the required schema markup that Google "
314
+ "needs to generate a sitelinks search box."
315
  msgstr ""
316
 
317
+ #: src/vue/pages/search-appearance/views/Advanced.vue:406
318
+ msgid ""
319
+ "A Description tag is required in order to properly display your meta "
320
+ "descriptions on your site."
321
  msgstr ""
322
 
323
+ #: src/vue/pages/search-appearance/views/partials/Advanced.vue:107
324
+ msgid "Robots Meta Settings"
325
  msgstr ""
326
 
327
+ #: src/vue/pages/search-appearance/views/partials/Advanced.vue:108
328
+ msgid "Bulk Editing"
 
 
 
 
 
 
329
  msgstr ""
330
 
331
+ #: src/vue/pages/search-appearance/views/partials/Advanced.vue:109
332
+ msgid "Read Only"
333
  msgstr ""
334
 
335
+ #: src/vue/pages/search-appearance/views/partials/Advanced.vue:110
336
+ msgid "Other Options"
337
  msgstr ""
338
 
339
+ #: src/vue/pages/search-appearance/views/partials/Advanced.vue:111
340
+ msgid "Show Date in Google Preview"
341
  msgstr ""
342
 
343
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:442
344
+ msgid "Keywords"
 
 
345
  msgstr ""
346
 
347
+ # Translators: 1 - The type of page (Post, Page, Category, Tag, etc.).
348
+ #: src/vue/pages/search-appearance/views/partials/Advanced.vue:125
349
+ msgid "%1$s Title"
 
350
  msgstr ""
351
 
352
+ # Translators: 1 - The type of page (Post, Page, Category, Tag, etc.).
353
+ #: src/vue/pages/search-appearance/views/partials/Advanced.vue:129
354
+ msgid "Show %1$s Thumbnail in Google Custom Search"
 
 
355
  msgstr ""
356
 
357
+ # Translators: 1 - The plugin name ("All in One SEO")
358
+ #: src/vue/pages/search-appearance/views/partials/Advanced.vue:133
359
+ msgid "Show %1$s Meta Box"
 
360
  msgstr ""
361
 
362
+ #: src/vue/components/common/core/RobotsMeta.vue:106
363
+ msgid "None"
364
  msgstr ""
365
 
366
+ #: src/vue/pages/post-settings/views/lite/Schema.vue:55
367
+ msgid "Schema Type"
368
  msgstr ""
369
 
370
+ #: src/vue/pages/post-settings/views/lite/Schema.vue:56
371
+ msgid "Article Type"
372
  msgstr ""
373
 
374
+ #: src/vue/pages/post-settings/views/lite/Schema.vue:57
375
+ msgid "Article"
 
376
  msgstr ""
377
 
378
+ #: src/vue/pages/post-settings/views/lite/Schema.vue:58
379
+ msgid "Blog Post"
380
  msgstr ""
381
 
382
+ #: src/vue/pages/post-settings/views/lite/Schema.vue:59
383
+ msgid "News Article"
384
  msgstr ""
385
 
386
+ # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
387
+ #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:76
388
+ msgid ""
389
+ "%1$s %2$s gives you advanced customizations for the structured data markup "
390
+ "on Posts, Pages, Categories, Tags, etc."
391
  msgstr ""
392
 
393
+ #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:77
394
+ msgid "Upgrade to Pro and Unlock Schema Markup"
395
  msgstr ""
396
 
397
+ #: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:78
398
+ msgid "Schema Markup is only available for licensed %1$s %2$s users."
 
 
 
 
399
  msgstr ""
400
 
401
+ #: src/vue/pages/posts-table/App.vue:218
402
+ msgid "Title:"
403
  msgstr ""
404
 
405
+ #: src/vue/pages/posts-table/App.vue:219
406
+ msgid "Description:"
407
  msgstr ""
408
 
409
+ #: src/vue/pages/posts-table/App.vue:222
410
+ msgid "Edit"
 
411
  msgstr ""
412
 
413
+ #: src/vue/pages/posts-table/App.vue:223
414
+ msgid "Save"
415
  msgstr ""
416
 
417
+ #: src/vue/pages/posts-table/App.vue:224
418
+ msgid "Cancel"
419
  msgstr ""
420
 
421
+ #: src/vue/pages/posts-table/App.vue:225
422
+ msgid "Please wait..."
423
  msgstr ""
424
 
425
+ #: src/vue/pages/search-appearance/views/ContentTypes.vue:70
426
+ msgid "Custom Fields"
427
  msgstr ""
428
 
429
+ #: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:52
430
+ msgid ""
431
+ "List of custom field names to include in the SEO Page Analysis. Add one per "
432
+ "line."
433
  msgstr ""
434
 
435
+ # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
436
+ #: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:54
437
+ msgid ""
438
+ "%1$s %2$s gives you advanced customizations for our page analysis feature, "
439
+ "letting you add custom fields to analyze."
440
  msgstr ""
441
 
442
+ #: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:55
443
+ msgid "Upgrade to Pro and Unlock Custom Fields"
444
  msgstr ""
445
 
446
+ #: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:56
447
+ msgid "Custom Fields are only available for licensed %1$s %2$s users."
448
  msgstr ""
449
 
450
+ #: src/vue/pages/posts-table/App.vue:220
451
+ msgid "Image Title:"
452
  msgstr ""
453
 
454
+ #: src/vue/pages/posts-table/App.vue:221
455
+ msgid "Image Alt Tag:"
456
  msgstr ""
457
 
458
+ # Translators: 1 - "Pro".
459
+ #: src/vue/components/common/Cta.vue:236
460
+ msgid "Upgrade to %1$s"
461
  msgstr ""
462
 
463
  # Translators: 1 - The plugin name ("All in One SEO").
464
+ #: src/vue/components/common/Cta.vue:238
465
+ msgid "This feature is only available for licensed %1$s %2$s users."
466
  msgstr ""
467
 
468
+ #: src/vue/components/common/Cta.vue:239
469
+ msgid ""
470
+ "%1$s %2$s comes with many additional features to help take your site's SEO "
471
+ "to the next level!"
472
  msgstr ""
473
 
474
+ #: src/vue/components/common/Cta.vue:240
475
+ msgid "Learn more about all features"
476
  msgstr ""
477
 
478
+ #: src/vue/components/common/Cta.vue:241
479
+ msgid "See all features"
480
  msgstr ""
481
 
482
+ #: src/vue/pages/settings/views/WebmasterTools.vue:260
483
+ msgid "Click here"
484
  msgstr ""
485
 
486
+ #: src/vue/pages/settings/views/WebmasterTools.vue:261
487
+ msgid "Install Monsterinsights"
488
  msgstr ""
489
 
490
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:178
491
+ msgid "Activate Monsterinsights"
 
 
492
  msgstr ""
493
 
494
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:180
495
+ msgid "MonsterInsights is Installed & Active"
 
 
496
  msgstr ""
497
 
498
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:181
499
+ msgid "ExactMetrics is Installed & Active"
500
  msgstr ""
501
 
502
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:182
503
+ msgid "Launch Setup Wizard"
 
 
504
  msgstr ""
505
 
506
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:184
507
  msgid ""
508
+ "ExactMetrics connects AIOSEO to Google Analytics, providing a powerful "
509
+ "integration. ExactMetrics is a sister company of AIOSEO."
510
  msgstr ""
511
 
512
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:188
513
+ msgid "Activate ExactMetrics"
 
514
  msgstr ""
515
 
516
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:189
517
  msgid ""
518
+ "ExactMetrics shows you exactly which content gets the most visits, so you "
519
+ "can analyze and optimize it for higher conversions."
520
  msgstr ""
521
 
522
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:190
523
+ msgid "The Best Google Analytics Plugin for WordPress"
524
  msgstr ""
525
 
526
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:191
527
  msgid ""
528
+ "MonsterInsights connects AIOSEO to Google Analytics, providing a powerful "
529
+ "integration. MonsterInsights is a sister company of AIOSEO."
530
  msgstr ""
531
 
532
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:192
533
+ msgid "Quick & Easy Google Analytics Setup"
 
 
534
  msgstr ""
535
 
536
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:193
537
+ msgid "Google Analytics Dashboard + Real Time Stats"
538
  msgstr ""
539
 
540
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:194
541
+ msgid "Google Analytics Enhanced Ecommerce Tracking"
 
542
  msgstr ""
543
 
544
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:195
545
+ msgid "Universal Tracking for AMP and Instant Articles"
 
546
  msgstr ""
547
 
548
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:196
549
+ msgid "Install &"
550
  msgstr ""
551
 
552
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:197
553
+ msgid "Activate MonsterInsights"
554
  msgstr ""
555
 
556
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:198
557
+ msgid ""
558
+ "MonsterInsights shows you exactly which content gets the most visits, so "
559
+ "you can analyze and optimize it for higher conversions."
560
  msgstr ""
561
 
562
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:199
563
+ msgid "Setup ExactMetrics"
 
564
  msgstr ""
565
 
566
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:200
567
+ msgid "Setup MonsterInsights"
 
568
  msgstr ""
569
 
570
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:201
571
  msgid ""
572
+ "ExactMetrics has an intuitive setup wizard to guide you through the setup "
573
+ "process."
574
  msgstr ""
575
 
576
+ #: src/vue/pages/monsterinsights/views/Monsterinsights.vue:202
577
+ msgid ""
578
+ "MonsterInsights has an intuitive setup wizard to guide you through the "
579
+ "setup process."
580
  msgstr ""
581
 
582
+ #: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:144
583
+ msgid "Show in Search Results"
584
  msgstr ""
585
 
586
+ #: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:145
587
+ msgid "Click on the tags below to insert variables into your title."
588
  msgstr ""
589
 
590
+ #: src/vue/pages/setup-wizard/views/Category.vue:150
591
+ msgid "Meta Description"
592
+ msgstr ""
 
 
593
 
594
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:420
595
+ msgid "Click on the tags below to insert variables into your meta description."
596
  msgstr ""
597
 
598
+ #: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:148
599
+ msgid "Selecting \"No\" will no-index this page."
600
  msgstr ""
601
 
602
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:132
603
+ msgid "Set title attributes"
604
  msgstr ""
605
 
606
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:133
607
+ msgid "Set alt tag attributes"
608
  msgstr ""
609
 
610
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:134
611
+ msgid "Strip punctuation for titles"
612
  msgstr ""
613
 
614
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:135
615
+ msgid "Strip punctuation for alt tags"
616
  msgstr ""
617
 
618
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:136
619
+ msgid ""
620
+ "An error occurred while activating the addon. Please upload it manually or "
621
+ "contact support for more information."
622
  msgstr ""
623
 
624
+ #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:107
625
+ msgid "Web Page Type"
626
  msgstr ""
627
 
628
+ #: src/vue/pages/about/views/GettingStarted.vue:135
629
+ msgid "Smart Schema"
630
  msgstr ""
631
 
632
+ #: src/vue/pages/local-seo/views/Main.vue:21
633
+ msgid "Local SEO"
 
 
634
  msgstr ""
635
 
636
+ #: src/vue/pages/about/views/GettingStarted.vue:137
637
+ msgid "Advanced support for e-commerce"
638
  msgstr ""
639
 
640
+ #: src/vue/pages/about/views/GettingStarted.vue:141
641
+ msgid "Advanced Google Analytics tracking"
642
  msgstr ""
643
 
644
+ #: src/vue/pages/about/views/GettingStarted.vue:138
645
+ msgid "Video SEO Module"
 
 
 
646
  msgstr ""
647
 
648
+ #: src/vue/pages/about/views/GettingStarted.vue:142
649
+ msgid "Greater control over display settings"
650
  msgstr ""
651
 
652
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:145
653
+ #: src/vue/pages/setup-wizard/views/Success.vue:152
654
+ msgid "SEO for Categories, Tags and Custom Taxonomies"
655
  msgstr ""
656
 
657
+ #: src/vue/pages/dashboard/views/Main.vue:208
658
+ msgid "Social meta for Categories, Tags and Custom Taxonomies"
659
  msgstr ""
660
 
661
+ #: src/vue/pages/about/views/GettingStarted.vue:143
662
+ msgid "Ad free (no banner adverts)"
663
  msgstr ""
664
 
665
+ #: src/vue/pages/dashboard/views/Main.vue:211
666
+ msgid "There are no new notifications at this moment."
667
  msgstr ""
668
 
669
+ #: src/vue/pages/dashboard/views/Main.vue:212
670
+ msgid "See all dismissed notifications."
671
  msgstr ""
672
 
673
+ #: src/vue/pages/dashboard/views/Main.vue:213
674
+ msgid "SEO Site Score"
675
  msgstr ""
676
 
677
+ #: src/vue/pages/dashboard/views/Main.vue:214
678
+ msgid "Support"
679
  msgstr ""
680
 
681
+ # Translators: 1 - The plugin name ("All in One SEO").
682
+ #: src/vue/pages/dashboard/views/Main.vue:216
683
+ msgid "Read the %1$s user guide"
684
  msgstr ""
685
 
686
+ #: src/vue/pages/dashboard/views/Main.vue:217
687
+ msgid "Access our Premium Support"
688
  msgstr ""
689
 
690
+ #: src/vue/pages/dashboard/views/Main.vue:218
691
+ msgid "View the Changelog"
692
  msgstr ""
693
 
694
+ #: src/vue/pages/dashboard/views/Main.vue:219
695
+ msgid "Watch video tutorials"
696
  msgstr ""
697
 
698
+ #: src/vue/pages/dashboard/views/Main.vue:220
699
+ msgid "Getting started? Read the Beginners Guide"
700
  msgstr ""
701
 
702
+ #: src/vue/pages/dashboard/views/Main.vue:221
703
+ msgid "Quicklinks"
 
 
704
  msgstr ""
705
 
706
+ #: src/vue/pages/dashboard/views/Main.vue:222
707
  msgid ""
708
+ "You can use these quicklinks to quickly access our settings pages to adjust "
709
+ "your site's SEO settings."
 
710
  msgstr ""
711
 
712
+ #: src/vue/pages/dashboard/views/Main.vue:224
713
  msgid ""
714
+ "Configure how your website content will look in Google, Bing and other "
715
+ "search engines."
716
  msgstr ""
717
 
718
+ #: src/vue/pages/seo-analysis/views/Main.vue:21
719
+ msgid "SEO Analysis"
720
  msgstr ""
721
 
722
+ #: src/vue/pages/dashboard/views/Main.vue:226
723
+ msgid ""
724
+ "Check how your site scores with our SEO analyzer and compare against your "
725
+ "competitor's site."
726
  msgstr ""
727
 
728
+ #: src/vue/pages/dashboard/views/Main.vue:227
729
+ msgid ""
730
+ "Improve local SEO rankings with schema for business address, open hours, "
731
+ "contact, and more."
732
  msgstr ""
733
 
734
+ #: src/vue/pages/social-networks/views/Main.vue:24
735
+ msgid "Social Networks"
736
  msgstr ""
737
 
738
+ #: src/vue/pages/dashboard/views/Main.vue:229
739
+ msgid ""
740
+ "Setup Open Graph for Facebook, Twitter, etc. to show the right content / "
741
+ "thumbnail preview."
742
  msgstr ""
743
 
744
+ #: src/vue/pages/tools/views/partials/ExportSettings.vue:124
745
+ msgid "Tools"
746
  msgstr ""
747
 
748
+ #: src/vue/pages/dashboard/views/Main.vue:231
749
  msgid ""
750
+ "Fine-tune your site with our powerful tools including Robots.txt editor, "
751
+ "import/export and more."
752
  msgstr ""
753
 
754
+ #: src/vue/pages/tools/views/partials/ExportSettings.vue:123
755
+ msgid "Sitemaps"
756
  msgstr ""
757
 
758
+ #: src/vue/pages/dashboard/views/Main.vue:233
759
+ msgid "Manage all of your sitemap settings, including XML, Video, News and more."
760
  msgstr ""
761
 
762
+ # Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro".
763
+ #: src/vue/pages/dashboard/views/Main.vue:235
764
+ msgid "Get more features in %1$s %2$s:"
765
  msgstr ""
766
 
767
+ # Translators: 1 - "Pro", 2 - A percentage ("50%").
768
+ #: src/vue/pages/dashboard/views/Main.vue:237
769
+ msgid "Upgrade to %1$s and Save %2$s"
770
  msgstr ""
771
 
772
+ #: src/vue/components/common/core/Notifications.vue:95
773
+ msgid "Dismiss All"
774
  msgstr ""
775
 
776
+ #: src/vue/pages/settings/views/GeneralSettings.vue:60
777
+ msgid "Relaunch Setup Wizard"
778
+ msgstr ""
779
+
780
+ #: src/vue/pages/dashboard/views/Main.vue:247
781
+ msgid "You have %1$s more notifications"
782
+ msgstr ""
783
+
784
+ #: src/vue/pages/social-networks/views/Twitter.vue:432
785
+ msgid "Twitter Card Settings"
786
+ msgstr ""
787
+
788
+ # Translators: 1 - The plugin name ("All in One SEO").
789
+ #: src/vue/pages/social-networks/views/Twitter.vue:434
790
  msgid ""
791
+ "Enable this feature if you want Twitter to display a preview card with "
792
+ "images and a text excerpt when a link to your site is shared."
 
793
  msgstr ""
794
 
795
+ #: src/vue/pages/social-networks/views/Twitter.vue:435
796
+ msgid "Enable Twitter Card"
797
  msgstr ""
798
 
799
+ #: src/vue/pages/social-networks/views/Twitter.vue:436
800
+ msgid "Default Card Type"
801
  msgstr ""
802
 
803
+ #: src/vue/pages/post-settings/views/Twitter.vue:235
804
+ msgid "Summary"
805
  msgstr ""
806
 
807
+ #: src/vue/pages/post-settings/views/Twitter.vue:236
808
+ msgid "Summary with Large Image"
 
809
  msgstr ""
810
 
811
+ #: src/vue/pages/social-networks/views/Twitter.vue:439
812
+ msgid "Default Post Image Source"
813
  msgstr ""
814
 
815
+ #: src/vue/pages/social-networks/views/Twitter.vue:440
816
+ msgid "Default Term Image Source"
817
  msgstr ""
818
 
819
+ #: src/vue/pages/post-settings/views/Facebook.vue:242
820
+ msgid "Width"
821
  msgstr ""
822
 
823
+ #: src/vue/pages/post-settings/views/Facebook.vue:243
824
+ msgid "Height"
825
  msgstr ""
826
 
827
+ #: src/vue/pages/social-networks/views/Twitter.vue:443
828
+ msgid "Post Custom Field Name"
829
  msgstr ""
830
 
831
+ #: src/vue/pages/social-networks/views/Twitter.vue:444
832
+ msgid "Term Custom Field Name"
 
833
  msgstr ""
834
 
835
+ #: src/vue/pages/social-networks/views/Twitter.vue:445
836
+ msgid "Default Post Twitter Image"
837
  msgstr ""
838
 
839
+ #: src/vue/pages/social-networks/views/Twitter.vue:446
840
+ msgid "Default Term Twitter Image"
841
  msgstr ""
842
 
843
+ #: src/vue/pages/post-settings/views/Facebook.vue:248
844
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:434
845
+ msgid "Upload or Select Image"
846
  msgstr ""
847
 
848
+ #: src/vue/pages/post-settings/views/Facebook.vue:249
849
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:435
850
+ msgid "Paste your image URL or select a new image"
851
  msgstr ""
852
 
853
+ #: src/vue/pages/post-settings/views/Twitter.vue:224
854
  msgid ""
855
+ "Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and "
856
+ "GIF formats only."
857
  msgstr ""
858
 
859
+ #: src/vue/pages/post-settings/views/Twitter.vue:225
860
  msgid ""
861
+ "Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and "
862
+ "GIF formats only."
 
 
863
  msgstr ""
864
 
865
+ #: src/vue/pages/social-networks/views/Twitter.vue:451
866
+ msgid "Home Page Settings"
867
+ msgstr ""
868
+
869
+ #: src/vue/pages/social-networks/views/Twitter.vue:452
870
+ msgid "Home Page Image"
871
+ msgstr ""
872
+
873
+ #: src/vue/pages/setup-wizard/views/Category.vue:149
874
+ msgid "Home Page Title"
875
+ msgstr ""
876
+
877
+ #: src/vue/pages/social-networks/views/Twitter.vue:454
878
+ msgid "Use the home page title"
879
+ msgstr ""
880
+
881
+ #: src/vue/pages/social-networks/views/Twitter.vue:455
882
+ msgid "Click on the tags below to insert variables into your home page title."
883
+ msgstr ""
884
+
885
+ #: src/vue/pages/social-networks/views/Twitter.vue:456
886
+ msgid "Description"
887
+ msgstr ""
888
+
889
+ #: src/vue/pages/social-networks/views/Twitter.vue:457
890
+ msgid "Use the home page description"
891
+ msgstr ""
892
+
893
+ #: src/vue/pages/social-networks/views/Twitter.vue:458
894
+ msgid "Click on the tags below to insert variables into your description."
895
+ msgstr ""
896
+
897
+ #: src/vue/pages/post-settings/views/Facebook.vue:251
898
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:437
899
+ msgid "Remove"
900
+ msgstr ""
901
+
902
+ #: src/vue/pages/social-networks/views/Twitter.vue:460
903
+ msgid "Show Twitter Author"
904
+ msgstr ""
905
+
906
+ # Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag.
907
+ #: src/vue/pages/social-networks/views/Twitter.vue:462
908
  msgid ""
909
+ "The home page settings below have been disabled because you are using a "
910
+ "static home page. You can %1$sedit your home page settings%2$s directly to "
911
+ "change the title, meta and image."
912
+ msgstr ""
913
+
914
+ #: src/vue/pages/social-networks/views/Twitter.vue:463
915
+ msgid "Card Type"
916
+ msgstr ""
917
+
918
+ #: src/vue/pages/social-networks/views/Twitter.vue:464
919
+ msgid "Additional Data"
920
+ msgstr ""
921
+
922
+ #: src/vue/pages/social-networks/views/Twitter.vue:465
923
+ msgid ""
924
+ "Enable this option to show additional Twitter data on your posts and pages "
925
+ "(i.e., who the post was written by and how long it might take to read the "
926
+ "article)."
927
+ msgstr ""
928
+
929
+ #: src/vue/pages/social-networks/views/Twitter.vue:466
930
+ msgid "Default Term Image Source is only available for licensed %1$s users. %2$s"
931
  msgstr ""
932
 
933
+ #: src/vue/pages/social-networks/views/Pinterest.vue:46
 
934
  msgid ""
935
+ "Pinterest uses Open Graph metadata just like Facebook, so be sure to keep "
936
+ "Open Graph enabled on the Facebook tab checked if you want to optimize your "
937
+ "site for Pinterest."
938
+ msgstr ""
939
+
940
+ #: src/vue/pages/social-networks/views/Pinterest.vue:47
941
+ msgid "Learn how to get your Pinterest Verification Code"
942
+ msgstr ""
943
+
944
+ #: src/vue/pages/social-networks/views/Pinterest.vue:48
945
+ msgid ""
946
+ "If you have already confirmed your website with Pinterest, you can skip the "
947
+ "step below."
948
+ msgstr ""
949
+
950
+ #: src/vue/pages/social-networks/views/Pinterest.vue:49
951
+ msgid "Pinterest Verification Code"
952
  msgstr ""
953
 
954
  # Translators: 1 - The plugin name ("All in One SEO").
961
  "find all of the content on your site."
962
  msgstr ""
963
 
 
 
964
  #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:11
965
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:418
966
  msgid "Enable Sitemap"
967
  msgstr ""
968
 
969
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:419
970
  msgid "Sitemap Settings"
971
  msgstr ""
972
 
973
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:420
 
974
  msgid "Enable Sitemap Indexes"
975
  msgstr ""
976
 
977
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:421
 
978
  msgid ""
979
  "Organize sitemap entries into distinct files in your sitemap. We recommend "
980
  "you enable this setting if your sitemap contains more than 1,000 URLs."
981
  msgstr ""
982
 
983
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:422
984
  msgid "Links Per Sitemap"
985
  msgstr ""
986
 
 
987
  #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:13
988
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:423
989
  msgid "Noindexed content will not be displayed in your sitemap."
990
  msgstr ""
991
 
 
992
  #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:14
993
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:424
994
  msgid "Do you get a blank sitemap or 404 error?"
995
  msgstr ""
996
 
998
  msgid "Open Sitemap"
999
  msgstr ""
1000
 
1001
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:426
1002
  msgid ""
1003
  "Allows you to specify the maximum number of posts in a sitemap (up to "
1004
  "50,000)."
1005
  msgstr ""
1006
 
1007
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:427
1008
  msgid "Automatically Ping Search Engines"
1009
  msgstr ""
1010
 
1011
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:428
 
1012
  msgid "Post Types"
1013
  msgstr ""
1014
 
1015
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:430
1016
  msgid "Date Archive Sitemap"
1017
  msgstr ""
1018
 
1019
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:431
1020
  msgid "Include Date Archives in your sitemap."
1021
  msgstr ""
1022
 
1023
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:432
1024
  msgid "Author Sitemap"
1025
  msgstr ""
1026
 
1027
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:433
1028
  msgid "Include Author Archives in your sitemap."
1029
  msgstr ""
1030
 
1031
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:434
 
1032
  msgid "Include All Post Types"
1033
  msgstr ""
1034
 
1035
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:435
1036
  msgid "Select which Post Types appear in your sitemap."
1037
  msgstr ""
1038
 
1039
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:436
 
1040
  msgid "Include All Taxonomies"
1041
  msgstr ""
1042
 
1043
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:437
1044
  msgid "Select which Taxonomies appear in your sitemap."
1045
  msgstr ""
1046
 
1056
  "information manually."
1057
  msgstr ""
1058
 
1059
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:443
 
 
 
 
 
 
 
 
1060
  msgid ""
1061
  "Any posts that are assigned to these terms will also be excluded from your "
1062
  "sitemap."
1063
  msgstr ""
1064
 
1065
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:444
1066
  msgid "Priority Score"
1067
  msgstr ""
1068
 
1094
  msgid "Dynamically creates the XML Sitemap instead of using a static file."
1095
  msgstr ""
1096
 
1097
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:452
1098
  msgid ""
1099
  "We recommend setting the amount of URLs per sitemap index to 1,000 or less. "
1100
  "The more links, the longer it will take for the sitemap to load."
1101
  msgstr ""
1102
 
1103
+ #: src/vue/pages/sitemaps/views/GeneralSitemap.vue:453
1104
  msgid ""
1105
  "Your static sitemap is currently being regenerated. This may take some time "
1106
  "based on the size of your site. This may also cause the sitemap content to "
1107
  "look outdated."
1108
  msgstr ""
1109
 
1110
+ #: src/vue/pages/connect/views/Main.vue:30
1111
+ msgid "Connecting..."
1112
  msgstr ""
1113
 
1114
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:90
1115
+ msgid "Block Bad Bots using HTTP"
1116
  msgstr ""
1117
 
1118
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:91
1119
+ msgid "Block Referral Spam using HTTP"
1120
  msgstr ""
1121
 
1122
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:92
1123
+ msgid "Track Blocked Bots"
 
 
1124
  msgstr ""
1125
 
1126
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:93
1127
+ msgid "Use Custom Blocklists"
 
1128
  msgstr ""
1129
 
1130
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:94
1131
+ msgid "User Agent Blocklist"
1132
  msgstr ""
1133
 
1134
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:95
1135
+ msgid "Referer Blocklist"
1136
  msgstr ""
1137
 
1138
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:96
1139
+ msgid "Blocked Bots Log"
1140
  msgstr ""
1141
 
1142
+ # Translators: 1 - The location of the log file.
1143
+ #: src/vue/pages/tools/views/BadBotBlocker.vue:98
1144
+ msgid "The log for the blocked bots is located here: %1$s"
 
 
 
1145
  msgstr ""
1146
 
1147
+ # Translators: 1 - The plugin name ("All in One SEO").
1148
+ #: src/vue/pages/setup-wizard/views/Welcome.vue:42
1149
+ msgid "Welcome to the %1$s Setup Wizard!"
1150
  msgstr ""
1151
 
1152
+ #: src/vue/pages/setup-wizard/views/Welcome.vue:43
1153
+ msgid ""
1154
+ "%1$s makes it easy to configure your site's SEO settings without the need "
1155
+ "to hire an expert. And it takes less than 10 minutes too!"
1156
  msgstr ""
1157
 
1158
+ #: src/vue/pages/setup-wizard/views/Welcome.vue:44
1159
+ msgid "Let's Get Started"
1160
  msgstr ""
1161
 
1162
+ #: src/vue/pages/setup-wizard/views/Welcome.vue:45
1163
+ msgid "Go back to the Dashboard"
1164
  msgstr ""
1165
 
1166
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:141
1167
+ #: src/vue/pages/setup-wizard/views/Success.vue:148
1168
+ msgid "Video and News Sitemaps"
1169
  msgstr ""
1170
 
1171
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:142
1172
+ #: src/vue/pages/setup-wizard/views/Success.vue:149
1173
+ msgid "Image SEO Optimization"
1174
  msgstr ""
1175
 
1176
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:143
1177
+ #: src/vue/pages/setup-wizard/views/Success.vue:150
1178
+ msgid "Local Business SEO"
1179
  msgstr ""
1180
 
1181
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:144
1182
+ #: src/vue/pages/setup-wizard/views/Success.vue:151
1183
+ msgid "Advanced WooCommerce"
1184
  msgstr ""
1185
 
1186
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:146
1187
+ #: src/vue/pages/setup-wizard/views/Success.vue:153
1188
+ msgid "And many more..."
1189
  msgstr ""
1190
 
1191
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:147
1192
+ msgid "Activate All Features"
1193
  msgstr ""
1194
 
1195
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:148
1196
+ msgid "Deactivate All Features"
1197
  msgstr ""
1198
 
1199
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:149
1200
+ msgid "Search for Features..."
1201
  msgstr ""
1202
 
1203
+ # Translators: 1 - The plugin name ("All in One SEO").
1204
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:151
1205
+ msgid "Upgrade %1$s to Pro and Unlock all Features!"
1206
  msgstr ""
1207
 
1208
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:152
1209
+ msgid "Upgrade to Pro and Unlock All Features"
1210
  msgstr ""
1211
 
1212
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:153
1213
+ msgid "A valid license key is required in order to use our addons."
1214
  msgstr ""
1215
 
1216
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:154
1217
+ msgid "Enter License Key"
1218
  msgstr ""
1219
 
1220
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:155
1221
+ msgid "Purchase License"
1222
  msgstr ""
1223
 
1224
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:159
1225
+ msgid ""
1226
+ "Globally control the Title attribute and Alt text for images in your "
1227
+ "content. These attributes are essential for both accessibility and SEO."
1228
  msgstr ""
1229
 
1230
+ #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:10
1231
+ msgid ""
1232
+ "The Video Sitemap works in much the same way as the XML Sitemap module, it "
1233
+ "generates an XML Sitemap specifically for video content on your site. "
1234
+ "Search engines use this information to display rich snippet information in "
1235
+ "search results."
1236
  msgstr ""
1237
 
1238
+ #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:10
1239
+ msgid ""
1240
+ "Our Google News Sitemap lets you control which content you submit to Google "
1241
+ "News and only contains articles that were published in the last 48 hours. "
1242
+ "In order to submit a News Sitemap to Google, you must have added your site "
1243
+ "to Google’s Publisher Center and had it approved."
1244
  msgstr ""
1245
 
1246
+ #: src/vue/pages/feature-manager/views/FeatureManager.vue:171
1247
+ msgid ""
1248
+ "Local Business schema markup enables you to tell Google about your "
1249
+ "business, including your business name, address and phone number, opening "
1250
+ "hours and price range. This information may be displayed as a Knowledge "
1251
+ "Graph card or business carousel."
1252
  msgstr ""
1253
 
1254
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:423
1255
+ msgid "Person or Organization"
1256
  msgstr ""
1257
 
1258
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:427
1259
+ msgid "Choose a Person"
 
1260
  msgstr ""
1261
 
1262
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:424
1263
+ msgid "Person"
 
1264
  msgstr ""
1265
 
1266
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:425
1267
+ msgid "Organization"
 
 
1268
  msgstr ""
1269
 
1270
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:426
1271
+ msgid "Choose whether the site represents a person or an organization."
 
 
 
 
 
 
 
1272
  msgstr ""
1273
 
1274
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:428
1275
+ msgid "Name"
1276
  msgstr ""
1277
 
1278
+ #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:322
1279
+ msgid "Organization Name"
 
1280
  msgstr ""
1281
 
1282
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:429
1283
+ msgid "Phone Number"
 
1284
  msgstr ""
1285
 
1286
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:430
1287
+ msgid "Choose a Contact Type"
 
1288
  msgstr ""
1289
 
1290
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:431
1291
+ msgid "Contact Type"
1292
  msgstr ""
1293
 
1294
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:432
1295
+ msgid "Select which team or department the phone number belongs to."
 
1296
  msgstr ""
1297
 
1298
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:433
1299
+ msgid "Logo"
 
1300
  msgstr ""
1301
 
1302
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:436
 
1303
  msgid ""
1304
+ "Minimum size: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or "
1305
+ "WEBP format."
1306
  msgstr ""
1307
 
1308
+ #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:332
1309
+ msgid "Default Social Share Image"
1310
  msgstr ""
1311
 
1312
+ #: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:333
1313
+ msgid "Your Social Profiles"
1314
  msgstr ""
1315
 
1316
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:451
1317
+ msgid "Manually Enter Person"
1318
  msgstr ""
1319
 
1320
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:280
1321
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:294
1322
+ msgid "Opening Hours Settings"
1323
  msgstr ""
1324
 
1325
+ #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:50
1326
+ msgid "Show Opening Hours"
1327
  msgstr ""
1328
 
1329
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:282
1330
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:296
1331
+ msgid "Display Opening Hours"
1332
  msgstr ""
1333
 
1334
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:283
1335
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:297
1336
+ msgid "Labels"
1337
  msgstr ""
1338
 
1339
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:284
1340
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:298
1341
+ msgid "Closed label"
1342
  msgstr ""
1343
 
1344
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:285
1345
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:299
1346
+ msgid "Text to display when 'Closed' setting is checked"
1347
  msgstr ""
1348
 
1349
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:286
1350
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:300
1351
+ msgid "Open 24h label"
1352
  msgstr ""
1353
 
1354
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:287
1355
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:301
1356
+ msgid "Text to display when 'Open 24h' setting is checked"
1357
  msgstr ""
1358
 
1359
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:288
1360
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:302
1361
+ msgid "Open 24/7"
 
1362
  msgstr ""
1363
 
1364
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:289
1365
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:303
1366
+ msgid "Use 24h format"
1367
  msgstr ""
1368
 
1369
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:290
1370
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:304
1371
+ msgid "Timezone"
1372
  msgstr ""
1373
 
1374
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:291
1375
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:305
1376
+ msgid "Select your timezone:"
1377
  msgstr ""
1378
 
1379
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:293
1380
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:307
1381
+ msgid "Monday"
1382
  msgstr ""
1383
 
1384
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:294
1385
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:308
1386
+ msgid "Tuesday"
1387
  msgstr ""
1388
 
1389
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:295
1390
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:309
1391
+ msgid "Wednesday"
1392
  msgstr ""
1393
 
1394
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:296
1395
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:310
1396
+ msgid "Thursday"
1397
  msgstr ""
1398
 
1399
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:297
1400
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:311
1401
+ msgid "Friday"
1402
  msgstr ""
1403
 
1404
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:298
1405
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:312
1406
+ msgid "Saturday"
1407
  msgstr ""
1408
 
1409
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:299
1410
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:313
1411
+ msgid "Sunday"
 
 
 
1412
  msgstr ""
1413
 
1414
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:300
1415
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:314
1416
+ msgid "Open 24h"
1417
  msgstr ""
1418
 
1419
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:301
1420
+ #: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:315
1421
+ msgid "Closed"
1422
  msgstr ""
1423
 
1424
+ #: src/vue/pages/social-networks/views/SocialProfiles.vue:26
1425
+ msgid ""
1426
+ "To let search engines know which profiles are associated with this site, "
1427
+ "enter them below:"
1428
  msgstr ""
1429
 
1430
+ #: src/vue/pages/local-seo/views/Locations.vue:31
1431
+ msgid "Locations Settings"
1432
  msgstr ""
1433
 
1434
+ #: src/vue/pages/settings/views/lite/AccessControl.vue:68
1435
+ msgid "WP Roles (Editor, Author)"
 
 
 
1436
  msgstr ""
1437
 
1438
+ #: src/vue/pages/settings/views/lite/AccessControl.vue:69
1439
+ msgid "SEO Manager Role"
1440
  msgstr ""
1441
 
1442
+ #: src/vue/pages/settings/views/lite/AccessControl.vue:70
1443
+ msgid "SEO Editor Role"
1444
  msgstr ""
1445
 
1446
+ #: src/vue/pages/settings/views/lite/AccessControl.vue:71
1447
+ msgid "Default settings that just work"
1448
  msgstr ""
1449
 
1450
+ #: src/vue/pages/settings/views/lite/AccessControl.vue:72
1451
+ msgid "Granular controls per role"
1452
  msgstr ""
1453
 
1454
+ #: src/vue/pages/settings/views/lite/AccessControl.vue:73
1455
+ msgid "Upgrade to Pro and Unlock Access Control"
1456
  msgstr ""
1457
 
1458
+ #: src/vue/pages/settings/views/lite/AccessControl.vue:74
1459
+ msgid "Access Control is only available for licensed %1$s %2$s users."
1460
  msgstr ""
1461
 
1462
+ #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:51
1463
+ msgid "Select your timezone"
1464
  msgstr ""
1465
 
1466
+ #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:52
1467
+ msgid "Business Type"
1468
  msgstr ""
1469
 
1470
+ #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:53
1471
+ msgid "Business Contact Info"
1472
  msgstr ""
1473
 
1474
+ #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:54
1475
+ msgid "Payment Info"
1476
  msgstr ""
1477
 
1478
+ #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:55
1479
+ msgid "Business Image"
1480
  msgstr ""
1481
 
1482
+ #: src/vue/mixins/Wizard.js:6
1483
+ msgid "Skip this Step"
 
 
 
1484
  msgstr ""
1485
 
1486
+ #: src/vue/mixins/Wizard.js:7
1487
+ msgid "Go Back"
1488
  msgstr ""
1489
 
1490
+ #: src/vue/mixins/Wizard.js:8
1491
+ msgid "Save and Continue"
1492
  msgstr ""
1493
 
1494
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:103
1495
+ msgid ""
1496
+ "Local business information may be displayed when users search for "
1497
+ "businesses on Google search or Google Maps. Google decides on a per search "
1498
+ "basis whether to display this information or not and it’s completely "
1499
+ "automated."
1500
  msgstr ""
1501
 
1502
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:104
1503
+ msgid "Multiple Locations"
1504
  msgstr ""
1505
 
1506
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:105
1507
+ msgid "Display Location Info"
1508
  msgstr ""
1509
 
1510
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:106
1511
+ msgid "Business Info"
1512
  msgstr ""
1513
 
1514
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:107
1515
+ msgid "Business Name"
1516
  msgstr ""
1517
 
1518
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:109
1519
+ msgid "URLs"
1520
  msgstr ""
1521
 
1522
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:110
1523
+ msgid "Business Address"
1524
  msgstr ""
1525
 
1526
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:112
1527
+ msgid "Business IDs"
 
1528
  msgstr ""
1529
 
1530
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:114
1531
+ msgid "Area Served"
1532
  msgstr ""
1533
 
1534
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
1535
+ msgid "Upgrade to Pro and Unlock Local SEO"
1536
  msgstr ""
1537
 
1538
+ #: src/vue/pages/local-seo/views/lite/OpeningHours.vue:303
1539
+ msgid "Local SEO is only available for licensed %1$s %2$s users."
1540
  msgstr ""
1541
 
1542
+ #: src/vue/pages/post-settings/views/Advanced.vue:138
1543
+ msgid "default"
1544
  msgstr ""
1545
 
1546
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:125
1547
+ msgid "Animal Shelter"
1548
  msgstr ""
1549
 
1550
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:126
1551
+ msgid "Archive Organization"
 
 
1552
  msgstr ""
1553
 
1554
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:127
1555
+ msgid "Automotive Business"
1556
  msgstr ""
1557
 
1558
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:128
1559
+ msgid "Childcare"
 
 
 
1560
  msgstr ""
1561
 
1562
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:129
1563
+ msgid "Dentist"
1564
  msgstr ""
1565
 
1566
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:130
1567
+ msgid "Dry Cleaning/Laundry"
 
 
 
1568
  msgstr ""
1569
 
1570
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:131
1571
+ msgid "Emergency Service"
1572
  msgstr ""
1573
 
1574
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:132
1575
+ msgid "Employment Agency"
 
 
 
 
 
1576
  msgstr ""
1577
 
1578
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:133
1579
+ msgid "Entertainment Business"
1580
  msgstr ""
1581
 
1582
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:134
1583
+ msgid "Financial Service"
 
 
1584
  msgstr ""
1585
 
1586
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:135
1587
+ msgid "Food Establishment"
1588
  msgstr ""
1589
 
1590
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:136
1591
+ msgid "Government Office"
1592
  msgstr ""
1593
 
1594
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:137
1595
+ msgid "Health & Beauty Business"
 
 
 
1596
  msgstr ""
1597
 
1598
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:138
1599
+ msgid "Home & Construction Business"
 
 
1600
  msgstr ""
1601
 
1602
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:139
1603
+ msgid "Internet Cafe"
1604
  msgstr ""
1605
 
1606
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:140
1607
+ msgid "Legal Service"
1608
  msgstr ""
1609
 
1610
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:141
1611
+ msgid "Library"
1612
  msgstr ""
1613
 
1614
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:142
1615
+ msgid "Lodging Business"
1616
  msgstr ""
1617
 
1618
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:143
1619
+ msgid "Medical Business"
1620
  msgstr ""
1621
 
1622
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:144
1623
+ msgid "Radio Station"
1624
  msgstr ""
1625
 
1626
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:145
1627
+ msgid "Real Estate Agent"
1628
  msgstr ""
1629
 
1630
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:146
1631
+ msgid "Recycling Center"
1632
  msgstr ""
1633
 
1634
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:147
1635
+ msgid "Self Storage"
1636
  msgstr ""
1637
 
1638
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:148
1639
+ msgid "Shopping Center"
1640
  msgstr ""
1641
 
1642
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:149
1643
+ msgid "Sports Activity Location"
1644
  msgstr ""
1645
 
1646
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:150
1647
+ msgid "Store"
1648
  msgstr ""
1649
 
1650
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:151
1651
+ msgid "Television Station"
 
 
1652
  msgstr ""
1653
 
1654
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:152
1655
+ msgid "Tourist Information Center"
1656
  msgstr ""
1657
 
1658
+ #: src/vue/pages/local-seo/views/lite/Locations.vue:153
1659
+ msgid "Travel Agency"
1660
  msgstr ""
1661
 
1662
+ #: src/vue/mixins/Image.js:119
1663
+ msgid "Choose Image"
 
 
1664
  msgstr ""
1665
 
1666
+ #: src/vue/mixins/Image.js:55
1667
+ msgid "Default Image (Set Below)"
1668
  msgstr ""
1669
 
1670
+ #: src/vue/mixins/Image.js:56
1671
+ msgid "Featured Image"
1672
  msgstr ""
1673
 
1674
+ #: src/vue/mixins/Image.js:57
1675
+ msgid "Attached Image"
1676
  msgstr ""
1677
 
1678
+ #: src/vue/mixins/Image.js:58
1679
+ msgid "First Image in Content"
1680
  msgstr ""
1681
 
1682
+ #: src/vue/mixins/Image.js:59
1683
+ msgid "Image from Custom Field"
 
 
1684
  msgstr ""
1685
 
1686
+ #: src/vue/mixins/Image.js:60
1687
+ msgid "Post Author Image"
1688
  msgstr ""
1689
 
1690
+ #: src/vue/mixins/Image.js:61
1691
+ msgid "First Available Image"
1692
  msgstr ""
1693
 
1694
+ #: src/vue/mixins/Image.js:68
1695
+ msgid "Default Image Source (Set in Social Networks)"
1696
  msgstr ""
1697
 
1698
+ #: src/vue/mixins/Image.js:71
1699
+ msgid "Custom Image"
1700
  msgstr ""
1701
 
1702
+ #: src/vue/components/lite/local-business/Name.vue:16
1703
+ #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:120
1704
+ msgid "name"
1705
  msgstr ""
1706
 
1707
+ #: src/vue/components/lite/local-business/Name.vue:17
1708
+ #: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:121
1709
+ msgid "Your name or company name."
1710
  msgstr ""
1711
 
1712
+ #: src/vue/components/lite/local-business/Urls.vue:32
1713
+ msgid "Website URL:"
1714
  msgstr ""
1715
 
1716
+ #: src/vue/components/lite/local-business/Urls.vue:33
1717
+ msgid "About Page URL:"
 
1718
  msgstr ""
1719
 
1720
+ #: src/vue/components/lite/local-business/Urls.vue:34
1721
+ msgid "Contact Page URL:"
 
 
 
1722
  msgstr ""
1723
 
1724
+ #: src/vue/mixins/SeoSiteScore.js:10
1725
+ msgid "to analyze a competitor site."
1726
  msgstr ""
1727
 
1728
+ #: src/vue/mixins/SeoSiteScore.js:11
1729
+ msgid "A valid license key is required"
1730
  msgstr ""
1731
 
1732
+ #: src/vue/mixins/TruSeoScore.js:8
1733
+ msgid "We've got some<br>work to do!"
 
 
1734
  msgstr ""
1735
 
1736
+ #: src/vue/mixins/TruSeoScore.js:9
1737
+ msgid "Needs<br>Improvement!"
 
1738
  msgstr ""
1739
 
1740
+ #: src/vue/mixins/TruSeoScore.js:10
1741
+ msgid "Very Good!"
 
 
1742
  msgstr ""
1743
 
1744
+ #: src/vue/mixins/TruSeoScore.js:11
1745
+ msgid "Excellent!"
1746
  msgstr ""
1747
 
1748
+ #: src/vue/mixins/SeoSiteScore.js:9
1749
+ msgid "to see your Site Score."
1750
  msgstr ""
1751
 
1752
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:63
1753
+ msgid "Critical Issues"
1754
  msgstr ""
1755
 
1756
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:65
1757
+ msgid "Recommended Improvements"
1758
  msgstr ""
1759
 
1760
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:66
1761
+ msgid "Good Results"
1762
  msgstr ""
1763
 
1764
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:67
1765
+ msgid "Complete Site Audit Checklist"
1766
  msgstr ""
1767
 
1768
+ #: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:30
1769
+ msgid "All Good!"
1770
  msgstr ""
1771
 
1772
+ #: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:29
1773
+ msgid "Errors"
 
 
1774
  msgstr ""
1775
 
1776
+ # Translators: 1 - A number, 2 - A number.
1777
+ #: src/vue/mixins/MaxCounts.js:6
1778
+ msgid "%1$s out of %2$s max recommended characters."
1779
  msgstr ""
1780
 
1781
+ #: src/vue/mixins/License.js:11
1782
+ msgid "Your license has been disabled."
 
1783
  msgstr ""
1784
 
1785
+ #: src/vue/mixins/License.js:15
1786
+ msgid "Your license key is invalid."
 
 
 
 
 
 
 
 
1787
  msgstr ""
1788
 
1789
+ #: src/vue/mixins/License.js:4
1790
+ msgid "You have not yet added a license key."
 
1791
  msgstr ""
1792
 
1793
+ #: src/vue/mixins/License.js:7
1794
+ msgid "Your license has expired."
1795
  msgstr ""
1796
 
1797
+ #: src/vue/mixins/Notifications.js:6
1798
+ msgid "Notifications"
1799
  msgstr ""
1800
 
1801
+ #: src/vue/mixins/Notifications.js:7
1802
+ msgid "New Notifications"
1803
  msgstr ""
1804
 
1805
+ #: src/vue/mixins/Notifications.js:8
1806
+ msgid "Active Notifications"
1807
  msgstr ""
1808
 
1809
+ # Translators: 1 - The plugin name ("All in One SEO")
1810
+ #: src/vue/pages/settings/mixins/AccessControl.js:14
1811
+ msgid ""
1812
+ "By default, only users with an Administrator role have permission to manage "
1813
+ "%1$s within your WordPress admin area. With Access Controls, though, you "
1814
+ "can easily extend specific access permissions to other user roles."
1815
  msgstr ""
1816
 
1817
+ #: src/vue/pages/settings/mixins/AccessControl.js:15
1818
+ msgid "Access Control Settings"
 
1819
  msgstr ""
1820
 
1821
+ #: src/vue/pages/settings/mixins/AccessControl.js:16
1822
+ msgid "Administrator"
 
1823
  msgstr ""
1824
 
1825
+ #: src/vue/components/common/core/RobotsMeta.vue:100
1826
+ msgid "Use Default Settings"
1827
  msgstr ""
1828
 
1829
+ #: src/vue/pages/settings/mixins/AccessControl.js:18
1830
+ msgid "Editor"
1831
  msgstr ""
1832
 
1833
+ #: src/vue/pages/settings/mixins/AccessControl.js:19
1834
+ msgid "Author"
1835
  msgstr ""
1836
 
1837
+ #: src/vue/pages/settings/mixins/AccessControl.js:20
1838
+ msgid "SEO Manager"
1839
  msgstr ""
1840
 
1841
+ #: src/vue/pages/settings/mixins/AccessControl.js:21
1842
+ msgid "SEO Editor"
1843
  msgstr ""
1844
 
1845
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
1846
+ #: src/vue/pages/settings/mixins/AccessControl.js:23
1847
+ msgid "By default Admins have access to %1$sall SEO site settings%2$s"
1848
  msgstr ""
1849
 
1850
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
1851
+ #: src/vue/pages/settings/mixins/AccessControl.js:25
1852
+ msgid ""
1853
+ "By default Editors have access to %1$sSEO settings for General Settings, "
1854
+ "Search Appearance and Social Networks, as well as all settings for "
1855
+ "individual pages and posts.%2$s"
1856
  msgstr ""
1857
 
1858
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
1859
+ #: src/vue/pages/settings/mixins/AccessControl.js:27
1860
+ msgid ""
1861
+ "By default Authors have access to %1$sSEO settings for individual pages and "
1862
+ "posts that they already have permission to edit.%2$s"
1863
  msgstr ""
1864
 
1865
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
1866
+ #: src/vue/pages/settings/mixins/AccessControl.js:29
1867
+ msgid ""
1868
+ "By default SEO Managers have access to %1$sSEO settings for General "
1869
+ "Settings, Redirections, and individual pages and posts.%2$s"
1870
  msgstr ""
1871
 
1872
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
1873
+ #: src/vue/pages/settings/mixins/AccessControl.js:31
1874
+ msgid ""
1875
+ "By default SEO Editors have access to %1$sSEO settings for individual pages "
1876
+ "and posts.%2$s"
1877
  msgstr ""
1878
 
1879
+ #: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:67
1880
+ msgid "Complete SEO Checklist"
1881
  msgstr ""
1882
 
1883
+ #: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:68
1884
+ msgid "Refresh Results"
 
 
 
 
1885
  msgstr ""
1886
 
1887
+ #: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:80
1888
+ msgid "All Items"
1889
  msgstr ""
1890
 
1891
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:109
1892
+ msgid "Social Meta (Open Graph Markup)"
1893
  msgstr ""
1894
 
1895
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:112
1896
+ msgid "Posts, Pages and Custom Post Types Only"
1897
  msgstr ""
1898
 
1899
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:116
1900
+ msgid "Posts, Pages, Custom Post Types + Categories, Tags and Custom Taxonomies"
1901
  msgstr ""
1902
 
1903
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:120
1904
+ msgid "WooCommerce Integration"
1905
  msgstr ""
1906
 
1907
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:123
1908
+ msgid "WooCommerce Products Only"
1909
  msgstr ""
1910
 
1911
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:127
1912
+ msgid ""
1913
+ "WooCommerce Products, Product Categories, Product Tags and Other Product "
1914
+ "Attributes"
1915
  msgstr ""
1916
 
1917
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:131
1918
+ msgid "XML Sitemap"
1919
  msgstr ""
1920
 
1921
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:134
1922
+ msgid "Basic Control of Sitemap Priority & Frequency"
1923
  msgstr ""
1924
 
1925
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:138
1926
+ msgid ""
1927
+ "Granular Control of Sitemap Priority & Frequency for Each Post, Page, "
1928
+ "Category, Tag, etc."
1929
  msgstr ""
1930
 
1931
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:142
1932
+ msgid "Video XML Sitemap"
1933
  msgstr ""
1934
 
1935
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:147
1936
+ msgid "Submit Your Videos to Search Engines"
1937
  msgstr ""
1938
 
1939
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:156
1940
+ msgid "Submit Your Latest News Stories to Google News (Business & Agency tier only)"
1941
  msgstr ""
1942
 
1943
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:160
1944
+ msgid "Image SEO"
1945
  msgstr ""
1946
 
1947
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:162
1948
+ msgid "Not Available"
1949
  msgstr ""
1950
 
1951
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:165
1952
+ msgid ""
1953
+ "Control The Title & Alt Tag Attribute of Your Images (Business & Agency "
1954
+ "tier only)"
1955
  msgstr ""
1956
 
1957
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:169
1958
+ msgid "Schema Rich Snippets"
 
1959
  msgstr ""
1960
 
1961
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:172
1962
+ msgid "Posts, Pages, Categories and Tags Only"
 
1963
  msgstr ""
1964
 
1965
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:175
1966
+ msgid "Complete Support"
 
 
 
1967
  msgstr ""
1968
 
1969
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:176
1970
+ msgid "Posts, Pages, Categories, Tags + Breadcrumb Navigation"
1971
  msgstr ""
1972
 
1973
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:180
1974
+ msgid "Customer Support"
1975
  msgstr ""
1976
 
1977
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:182
1978
+ msgid "Limited Support"
 
1979
  msgstr ""
1980
 
1981
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:185
1982
+ msgid "Priority Support"
 
 
1983
  msgstr ""
1984
 
1985
+ # Translators: 1 - The abbreviated plugin name ("AIOSEO").
1986
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:71
1987
+ msgid "%1$s Lite vs. Pro"
1988
  msgstr ""
1989
 
1990
+ # Translators: 1 - The plugin name ("All in One SEO").
1991
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:73
1992
  msgid ""
1993
+ "Get the most out of %1$s by upgrading to Pro and unlocking all of the "
1994
+ "powerful features."
1995
  msgstr ""
1996
 
1997
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:76
1998
+ msgid "Features:"
 
 
1999
  msgstr ""
2000
 
2001
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:79
2002
+ msgid "Upgrade to Pro to Unlock Powerful SEO Features"
 
 
2003
  msgstr ""
2004
 
2005
+ # Translators: 1 - Plugin name ("All in One SEO"), 2 - Plugin short name ("AIOSEO").
2006
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:81
2007
  msgid ""
2008
+ "%1$s is the best WordPress SEO plugin. Join over 2,000,000+ Professionals "
2009
+ "who are already using %2$s to improve their website search rankings."
 
2010
  msgstr ""
2011
 
2012
+ # Translators: 1 - "Pro".
2013
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:83
2014
+ msgid "Upgrade to %1$s Today"
 
 
2015
  msgstr ""
2016
 
2017
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:86
2018
  msgid ""
2019
+ "%1$sBonus:%2$s You can upgrade to the %3$s plan today and %4$ssave %5$s "
2020
+ "off%6$s (discount auto-applied)."
2021
  msgstr ""
2022
 
2023
+ #: src/vue/pages/about/views/lite/LiteVsPro.vue:98
2024
+ msgid "Search Engine Optimization (SEO)"
 
 
 
 
 
2025
  msgstr ""
2026
 
2027
+ #: src/vue/pages/social-networks/views/Facebook.vue:678
2028
+ msgid "General Facebook Settings"
2029
+ msgstr ""
2030
+
2031
+ #: src/vue/pages/social-networks/views/Facebook.vue:679
2032
  msgid ""
2033
+ "Enable this feature if you want Facebook and other social media to display "
2034
+ "a preview with images and a text excerpt when a link to your site is shared."
2035
  msgstr ""
2036
 
2037
+ #: src/vue/pages/social-networks/views/Facebook.vue:680
2038
+ msgid "Enable Open Graph Markup"
 
2039
  msgstr ""
2040
 
2041
+ #: src/vue/pages/social-networks/views/Facebook.vue:687
2042
+ msgid "Default Post Facebook Image"
2043
  msgstr ""
2044
 
2045
+ #: src/vue/pages/social-networks/views/Facebook.vue:688
2046
+ msgid "Default Term Facebook Image"
2047
  msgstr ""
2048
 
2049
+ #: src/vue/pages/social-networks/views/Facebook.vue:691
2050
+ msgid ""
2051
+ "Minimum size: 200px x 200px, ideal ratio 1.91:1, 8MB max. (eg: 1640px x "
2052
+ "856px or 3280px x 1712px for retina screens)"
2053
  msgstr ""
2054
 
2055
+ #: src/vue/pages/social-networks/views/Facebook.vue:693
2056
+ msgid "The Title of the Page or Site you are Sharing"
2057
  msgstr ""
2058
 
2059
+ # Translators: 1 - The plugin name ("All in One SEO").
2060
+ #: src/vue/pages/social-networks/views/Facebook.vue:695
2061
+ msgid ""
2062
+ "This is what your page configured with %1$s will look like when shared via "
2063
+ "Facebook. The site title and description will be automatically added."
2064
  msgstr ""
2065
 
2066
+ #: src/vue/pages/social-networks/views/Facebook.vue:696
2067
+ msgid "Image"
2068
  msgstr ""
2069
 
2070
+ #: src/vue/pages/social-networks/views/Facebook.vue:697
2071
+ msgid "Site Name"
2072
  msgstr ""
2073
 
2074
+ #: src/vue/pages/post-settings/views/General.vue:273
2075
+ #: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:40
2076
+ msgid "Title"
 
 
2077
  msgstr ""
2078
 
2079
+ #: src/vue/pages/social-networks/views/Facebook.vue:700
2080
+ msgid "Click on the tags below to insert variables into your site name."
 
 
2081
  msgstr ""
2082
 
2083
+ #: src/vue/pages/social-networks/views/Facebook.vue:707
2084
+ msgid "Facebook Admin ID"
 
 
 
2085
  msgstr ""
2086
 
2087
+ #: src/vue/pages/social-networks/views/Facebook.vue:708
2088
+ msgid "Facebook App ID"
 
 
 
2089
  msgstr ""
2090
 
2091
+ #: src/vue/pages/social-networks/views/Facebook.vue:709
2092
+ msgid "Facebook Author URL"
 
 
2093
  msgstr ""
2094
 
2095
+ #: src/vue/pages/social-networks/views/Facebook.vue:710
2096
  msgid ""
2097
+ "Enter your Facebook Admin ID here. You can enter multiple Facebook Admin "
2098
+ "IDs by separating them with a comma."
 
2099
  msgstr ""
2100
 
2101
+ #: src/vue/pages/social-networks/views/Facebook.vue:711
2102
  msgid ""
2103
+ "The Facebook App ID of the site's app. In order to use Facebook Insights, "
2104
+ "you must add the App ID to your page. Insights lets you view analytics for "
2105
+ "traffic to your site from Facebook. Find the App ID in your App Dashboard."
 
2106
  msgstr ""
2107
 
2108
+ #: src/vue/pages/social-networks/views/Facebook.vue:712
2109
  msgid ""
2110
+ "Will be overriden if the Facebook author URL is present in the individual "
2111
+ "User Profile."
 
2112
  msgstr ""
2113
 
2114
+ #: src/vue/pages/social-networks/views/Facebook.vue:713
2115
+ msgid "How to get your Facebook Admin ID"
 
 
2116
  msgstr ""
2117
 
2118
+ #: src/vue/pages/social-networks/views/Facebook.vue:714
2119
+ msgid "How to get your Facebook App ID"
 
 
2120
  msgstr ""
2121
 
2122
+ #: src/vue/pages/social-networks/views/Facebook.vue:715
2123
+ msgid "How to get your Facebook Author URL"
 
 
2124
  msgstr ""
2125
 
2126
+ #: src/vue/pages/social-networks/views/Facebook.vue:716
2127
+ msgid "Show Facebook Author"
 
 
2128
  msgstr ""
2129
 
2130
+ #: src/vue/pages/social-networks/views/Facebook.vue:717
2131
+ msgid "Default Post Type Object Types"
2132
  msgstr ""
2133
 
2134
+ #: src/vue/pages/social-networks/views/Facebook.vue:718
2135
+ msgid "Default Taxonomy Object Types"
2136
  msgstr ""
2137
 
2138
+ #: src/vue/pages/social-networks/views/Facebook.vue:719
2139
+ msgid ""
2140
+ "Default Taxonomy Object Types are only available for licensed %1$s users. "
2141
+ "%2$s"
2142
  msgstr ""
2143
 
2144
+ #: src/vue/pages/social-networks/views/Facebook.vue:721
2145
+ msgid "Automatically Generate Article Tags"
2146
  msgstr ""
2147
 
2148
+ #: src/vue/pages/social-networks/views/Facebook.vue:722
2149
+ msgid "Use Keywords in Article Tags"
2150
  msgstr ""
2151
 
2152
+ #: src/vue/pages/social-networks/views/Facebook.vue:723
2153
+ msgid "Use Categories in Article Tags"
2154
  msgstr ""
2155
 
2156
+ #: src/vue/pages/social-networks/views/Facebook.vue:724
2157
+ msgid "Use Post Tags in Article Tags"
2158
  msgstr ""
2159
 
2160
+ #: src/vue/pages/post-settings/views/Facebook.vue:244
2161
+ msgid "Object Type"
2162
  msgstr ""
2163
 
2164
+ #: src/vue/pages/about/views/Main.vue:23
2165
+ msgid "About"
2166
  msgstr ""
2167
 
2168
+ # Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string.
2169
+ #: src/vue/pages/about/views/GettingStarted.vue:129
2170
+ msgid "Get %1$s %2$s and Unlock all the Powerful Features"
2171
  msgstr ""
2172
 
2173
+ # Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string.
2174
+ #: src/vue/pages/about/views/GettingStarted.vue:131
2175
+ msgid "Get %1$s %2$s and Unlock all the Powerful Features."
2176
  msgstr ""
2177
 
2178
+ #: src/vue/pages/about/views/GettingStarted.vue:140
2179
+ msgid "Social Meta for Categories, Tags and Custom Taxonomies"
2180
  msgstr ""
2181
 
2182
+ #: src/vue/pages/about/views/GettingStarted.vue:147
2183
+ msgid "Video Tutorials"
2184
  msgstr ""
2185
 
2186
+ #: src/vue/pages/about/views/GettingStarted.vue:148
2187
+ msgid "View all video tutorials"
2188
  msgstr ""
2189
 
2190
+ # Translators: 1 - The plugin short name ("AIOSEO").
2191
+ #: src/vue/pages/about/views/GettingStarted.vue:153
2192
+ msgid "%1$s Documentation"
2193
  msgstr ""
2194
 
2195
+ #: src/vue/pages/about/views/GettingStarted.vue:154
2196
+ msgid "See our full documentation"
2197
  msgstr ""
2198
 
2199
+ #: src/vue/pages/about/views/GettingStarted.vue:160
2200
+ msgid "Basic Guide to Google Analytics"
2201
  msgstr ""
2202
 
2203
+ #: src/vue/pages/about/views/GettingStarted.vue:164
2204
+ msgid "Basic Guide to Google Search Console"
2205
  msgstr ""
2206
 
2207
+ #: src/vue/pages/about/views/GettingStarted.vue:168
2208
+ msgid "Best Practices for Domains and URLs"
2209
  msgstr ""
2210
 
2211
+ #: src/vue/pages/about/views/GettingStarted.vue:172
2212
+ msgid "How to Control Search Results"
2213
  msgstr ""
2214
 
2215
+ # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro", 3 - "Learn more link"..
2216
+ #: src/vue/pages/post-settings/views/lite/Schema.vue:61
2217
+ msgid "Pro"
2218
  msgstr ""
2219
 
2220
+ # Translators: 1 - The plugin short name ("AIOSEO Pro"), 2 - "Pro" string.
2221
+ #: src/vue/pages/about/views/GettingStarted.vue:177
2222
+ msgid "Installing %1$s %2$s"
2223
+ msgstr ""
2224
+
2225
+ #: src/vue/pages/about/views/GettingStarted.vue:181
2226
+ msgid "Optimizing your Content Headings"
2227
  msgstr ""
2228
 
2229
  #: src/vue/pages/settings/views/Advanced.vue:269
2341
  "All settings and SEO data will be unrecoverable."
2342
  msgstr ""
2343
 
2344
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:357
2345
+ msgid "Enable Breadcrumbs"
2346
  msgstr ""
2347
 
2348
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:358
2349
+ msgid "Show Breadcrumbs on your Website"
2350
  msgstr ""
2351
 
2352
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:359
2353
+ msgid "Shortcode"
 
 
 
2354
  msgstr ""
2355
 
2356
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:360
2357
+ msgid "Gutenberg Block"
 
 
 
 
2358
  msgstr ""
2359
 
2360
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:361
2361
+ msgid "PHP Code"
2362
  msgstr ""
2363
 
2364
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:362
2365
+ msgid "Breadcrumb Settings"
2366
  msgstr ""
2367
 
2368
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:363
2369
+ msgid "Separator"
2370
  msgstr ""
2371
 
2372
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:364
2373
+ msgid "Homepage Link"
2374
  msgstr ""
2375
 
2376
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:365
2377
+ msgid "Breadcrumb Prefix"
2378
  msgstr ""
2379
 
2380
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:366
2381
+ msgid "Archive Format"
2382
  msgstr ""
2383
 
2384
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:367
2385
+ msgid "Search Result Format"
 
 
 
2386
  msgstr ""
2387
 
2388
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:368
2389
+ msgid "404 Error Format"
 
 
 
2390
  msgstr ""
2391
 
2392
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:369
2393
+ msgid "Current Item"
2394
  msgstr ""
2395
 
2396
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:370
2397
+ msgid "Home"
 
2398
  msgstr ""
2399
 
2400
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:372
2401
+ msgid "Subcategory"
 
2402
  msgstr ""
2403
 
2404
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:373
2405
+ msgid "Article Title"
2406
  msgstr ""
2407
 
2408
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:374
2409
+ msgid "Archives of"
 
2410
  msgstr ""
2411
 
2412
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:375
2413
+ msgid "Search for"
 
2414
  msgstr ""
2415
 
2416
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:376
2417
+ msgid "404 Error: page not found"
2418
  msgstr ""
2419
 
2420
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:377
2421
+ msgid "search key word goes here"
 
2422
  msgstr ""
2423
 
2424
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:378
2425
+ msgid "Category Name"
 
2426
  msgstr ""
2427
 
2428
+ #: src/vue/pages/settings/views/Breadcrumbs.vue:379
2429
+ msgid "Breadcrumb Templates"
2430
  msgstr ""
2431
 
2432
+ #: src/vue/pages/settings/views/GeneralSettings.vue:49
2433
+ msgid "License"
 
2434
  msgstr ""
2435
 
2436
+ #: src/vue/components/lite/core/UpgradeBar.vue:25
2437
+ msgid "Free"
 
2438
  msgstr ""
2439
 
2440
+ # Translators: 1 - "Pro".
2441
+ #: src/vue/components/lite/core/UpgradeBar.vue:28
2442
+ #: src/vue/components/lite/settings/LicenseKey.vue:52
2443
+ msgid "upgrading to %1$s"
2444
  msgstr ""
2445
 
2446
+ # Translators: This refers to a discount ("As a valued user you receive 50%, automatically applied at checkout!").
2447
+ #: src/vue/components/lite/settings/LicenseKey.vue:56
2448
+ msgid "off"
2449
  msgstr ""
2450
 
2451
+ #: src/vue/pages/settings/views/GeneralSettings.vue:59
2452
+ msgid "Setup Wizard"
 
2453
  msgstr ""
2454
 
2455
+ # Translators: 1 - The plugin name ("All in One SEO")
2456
+ #: src/vue/pages/settings/views/GeneralSettings.vue:62
2457
+ msgid ""
2458
+ "Use our configuration wizard to properly set up %1$s with your WordPress "
2459
+ "website."
2460
  msgstr ""
2461
 
2462
+ # Translators: 1 - "upgrading to Pro".
2463
+ #: src/vue/components/lite/settings/LicenseKey.vue:72
2464
+ msgid "To unlock more features, consider %1$s."
2465
  msgstr ""
2466
 
2467
+ # Translators: 1 - "50% off".
2468
+ #: src/vue/components/lite/settings/LicenseKey.vue:76
2469
+ msgid "As a valued user you receive %1$s, automatically applied at checkout!"
2470
  msgstr ""
2471
 
2472
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:179
2473
+ msgid "Setup Site Analyzer + Smart Recommendations"
 
2474
  msgstr ""
2475
 
2476
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:180
2477
+ msgid ""
2478
+ "Get helpful suggestions from %1$s on how to optimize your website content, "
2479
+ "so you can rank higher in search results."
2480
  msgstr ""
2481
 
2482
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:181
2483
+ msgid "Your Email Address"
2484
  msgstr ""
2485
 
2486
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:182
2487
+ msgid ""
2488
+ "Your email is needed so you can receive SEO recommendations. This email "
2489
+ "will also be used to connect your site with our SEO API."
2490
  msgstr ""
2491
 
2492
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:183
2493
+ msgid "Get Automatic WordPress Plugin Updates"
2494
  msgstr ""
2495
 
2496
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:184
2497
+ msgid "Enable automatic updates"
 
2498
  msgstr ""
2499
 
2500
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:185
2501
+ msgid "Help make %1$s better for everyone"
2502
  msgstr ""
2503
 
2504
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:186
2505
+ msgid "Yes, count me in"
 
 
 
2506
  msgstr ""
2507
 
2508
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:187
2509
+ msgid "Would you like to purchase and install the following features now?"
2510
  msgstr ""
2511
 
2512
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:188
2513
+ msgid "An upgrade is required to unlock the following features."
 
 
 
2514
  msgstr ""
2515
 
2516
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:189
2517
+ msgid ""
2518
+ "You won't have access to this functionality until the extensions have been "
2519
+ "purchased and installed."
2520
  msgstr ""
2521
 
2522
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:190
2523
+ msgid "I'll do it later"
 
2524
  msgstr ""
2525
 
2526
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:191
2527
+ msgid "Purchase and Install Now"
2528
  msgstr ""
2529
 
2530
+ # Translators: 1 - Opening bold tag. 2 - Closing bold tag. 3 - Opening bold tag. 4 - Percent between 1-100. 5 - Closing bold tag.
2531
+ #: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:193
2532
  msgid ""
2533
+ "%1$sBonus:%2$s You can upgrade your plan today and %3$ssave %4$s off%5$s "
2534
+ "(discount auto-applied)."
2535
  msgstr ""
2536
 
2537
+ #: src/vue/pages/tools/views/DatabaseTools.vue:168
2538
+ msgid "Reset / Restore Settings"
2539
  msgstr ""
2540
 
2541
+ #: src/vue/pages/tools/views/DatabaseTools.vue:169
2542
+ msgid "Select Settings"
 
2543
  msgstr ""
2544
 
2545
+ #: src/vue/pages/tools/views/DatabaseTools.vue:170
2546
+ msgid "Select settings that you would like to reset:"
2547
  msgstr ""
2548
 
2549
+ #: src/vue/pages/tools/views/DatabaseTools.vue:171
2550
+ msgid "Reset Selected Settings to Default"
 
 
 
2551
  msgstr ""
2552
 
2553
+ #: src/vue/pages/tools/views/DatabaseTools.vue:172
2554
+ msgid "Your settings have been reset successfully!"
2555
  msgstr ""
2556
 
2557
+ #: src/vue/pages/tools/views/DatabaseTools.vue:173
2558
+ msgid "Are you sure you want to reset the selected settings to default?"
 
2559
  msgstr ""
2560
 
2561
+ #: src/vue/pages/tools/views/DatabaseTools.vue:175
2562
+ msgid ""
2563
+ "This action cannot be undone. Before taking this action, we recommend that "
2564
+ "you make a %1$sfull website backup first%2$s."
2565
  msgstr ""
2566
 
2567
+ #: src/vue/pages/tools/views/DatabaseTools.vue:176
2568
+ msgid "Yes, I have a backup and want to reset the settings"
 
2569
  msgstr ""
2570
 
2571
+ #: src/vue/pages/tools/views/DatabaseTools.vue:177
2572
+ msgid "No, I need to make a backup"
2573
  msgstr ""
2574
 
2575
+ #: src/vue/pages/tools/views/DatabaseTools.vue:178
2576
+ msgid "Logs"
2577
  msgstr ""
2578
 
2579
+ #: src/vue/pages/tools/views/DatabaseTools.vue:179
2580
+ msgid "Bad Bot Blocker Logs"
 
 
 
 
2581
  msgstr ""
2582
 
2583
+ #: src/vue/pages/tools/views/DatabaseTools.vue:180
2584
+ msgid "Cleared"
2585
  msgstr ""
2586
 
2587
+ #: src/vue/pages/tools/views/DatabaseTools.vue:181
2588
+ msgid "Clear Bad Bot Blocker Logs"
2589
  msgstr ""
2590
 
2591
+ # Translators: 1 - The plugin short name ("AIOSEO").
2592
+ #: src/vue/pages/tools/views/DatabaseTools.vue:183
2593
+ msgid "All %1$s Settings"
2594
  msgstr ""
2595
 
2596
+ #: src/vue/pages/tools/views/DatabaseTools.vue:198
2597
+ msgid "Robots.txt"
2598
  msgstr ""
2599
 
2600
+ #: src/vue/pages/setup-wizard/views/Success.vue:134
2601
+ msgid "Congratulations, your site is now SEO ready!"
2602
  msgstr ""
2603
 
2604
+ #: src/vue/pages/setup-wizard/views/Success.vue:135
2605
+ msgid "Finish Setup and Go to the Dashboard"
2606
  msgstr ""
2607
 
2608
+ #: src/vue/pages/setup-wizard/views/Success.vue:136
2609
+ msgid "Here's what to do next:"
 
2610
  msgstr ""
2611
 
2612
+ #: src/vue/pages/setup-wizard/views/Success.vue:137
2613
+ msgid "Join our Community"
2614
  msgstr ""
2615
 
2616
+ #: src/vue/pages/setup-wizard/views/Success.vue:138
2617
+ msgid "Join on Facebook"
2618
  msgstr ""
2619
 
2620
+ #: src/vue/pages/setup-wizard/views/Success.vue:139
2621
+ msgid "Follow on Twitter"
2622
  msgstr ""
2623
 
2624
+ #: src/vue/pages/setup-wizard/views/Success.vue:140
2625
+ msgid "Read our Step By Step Guide to Improve your SEO Rankings"
2626
  msgstr ""
2627
 
2628
+ #: src/vue/pages/setup-wizard/views/Success.vue:141
2629
+ msgid "Watch our Guided Tour of %1$s"
 
 
2630
  msgstr ""
2631
 
2632
+ #: src/vue/pages/setup-wizard/views/Success.vue:142
2633
+ msgid "See Advanced Settings"
2634
  msgstr ""
2635
 
2636
+ #: src/vue/pages/setup-wizard/views/Success.vue:143
2637
+ msgid "Setup Webmaster Tools"
 
 
2638
  msgstr ""
2639
 
2640
+ #: src/vue/pages/tools/views/HtaccessEditor.vue:41
2641
+ msgid "Edit .htaccess"
2642
  msgstr ""
2643
 
2644
+ #: src/vue/pages/tools/views/HtaccessEditor.vue:43
2645
  msgid ""
2646
+ "This allows you to edit the .htaccess file for your site. All WordPress "
2647
+ "sites on an Apache server have a .htaccess file and we have provided you "
2648
+ "with a convenient way of editing it. Care should always be taken when "
2649
+ "editing important files from within WordPress as an incorrect change could "
2650
+ "cause WordPress to become inaccessible. %1$sBe sure to make a backup before "
2651
+ "making changes and ensure that you have FTP access to your web server and "
2652
+ "know how to access and edit files via FTP.%2$s"
2653
  msgstr ""
2654
 
2655
+ #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:250
2656
+ msgid ""
2657
+ "The way your site is displayed in search results is very important. Take "
2658
+ "some time to look over these settings and tweak as needed."
2659
  msgstr ""
2660
 
2661
+ #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:251
2662
+ msgid "Google Snippet Preview"
2663
  msgstr ""
2664
 
2665
+ #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:252
2666
+ msgid "Edit Title and Description"
2667
  msgstr ""
2668
 
2669
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:418
2670
+ msgid "Click on the tags below to insert variables into your site title."
2671
  msgstr ""
2672
 
2673
+ #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:257
2674
+ msgid "Is the site under construction or live (ready to be indexed)?"
2675
  msgstr ""
2676
 
2677
+ #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:258
2678
+ msgid "Under Construction"
2679
  msgstr ""
2680
 
2681
+ #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:259
2682
+ msgid "Live Site"
 
 
2683
  msgstr ""
2684
 
2685
+ #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:262
2686
+ msgid "Do you have multiple authors?"
2687
  msgstr ""
2688
 
2689
+ #: src/vue/pages/setup-wizard/views/SearchAppearance.vue:263
2690
+ msgid "Redirect attachment pages?"
2691
  msgstr ""
2692
 
2693
+ #: src/vue/pages/tools/views/SystemStatus.vue:115
2694
+ msgid "System Status Info"
 
 
2695
  msgstr ""
2696
 
2697
+ #: src/vue/pages/tools/views/SystemStatus.vue:116
2698
+ msgid "Download System Info File"
 
 
2699
  msgstr ""
2700
 
2701
+ #: src/vue/pages/tools/views/SystemStatus.vue:117
2702
+ msgid "Copy to Clipboard"
2703
  msgstr ""
2704
 
2705
+ #: src/vue/pages/tools/views/SystemStatus.vue:118
2706
+ msgid "Email Debug Information"
2707
  msgstr ""
2708
 
2709
+ #: src/vue/pages/tools/views/SystemStatus.vue:119
2710
+ msgid "Submit"
2711
  msgstr ""
2712
 
2713
+ #: src/vue/pages/tools/views/SystemStatus.vue:120
2714
+ msgid "WordPress"
2715
  msgstr ""
2716
 
2717
+ #: src/vue/pages/tools/views/SystemStatus.vue:121
2718
+ msgid "Server Info"
2719
  msgstr ""
2720
 
2721
+ #: src/vue/pages/tools/views/SystemStatus.vue:122
2722
+ msgid "Active Theme"
2723
  msgstr ""
2724
 
2725
+ #: src/vue/pages/tools/views/SystemStatus.vue:123
2726
+ msgid "Must-Use Plugins"
2727
  msgstr ""
2728
 
2729
+ #: src/vue/pages/tools/views/SystemStatus.vue:124
2730
+ msgid "Active Plugins"
2731
  msgstr ""
2732
 
2733
+ #: src/vue/pages/tools/views/SystemStatus.vue:125
2734
+ msgid "Inactive Plugins"
2735
  msgstr ""
2736
 
2737
+ #: src/vue/pages/tools/views/SystemStatus.vue:126
2738
+ msgid "Copied!"
2739
  msgstr ""
2740
 
2741
+ #: src/vue/pages/tools/views/partials/ExportSettings.vue:109
2742
+ msgid "Export Settings"
2743
  msgstr ""
2744
 
2745
+ #: src/vue/pages/tools/views/partials/ExportSettings.vue:110
2746
+ msgid "Export All Settings"
2747
  msgstr ""
2748
 
2749
+ #: src/vue/pages/tools/views/partials/ExportSettings.vue:111
2750
+ msgid "Export All Post Types"
2751
  msgstr ""
2752
 
2753
+ # Translators: 1 - "Pro".
2754
+ #: src/vue/pages/setup-wizard/views/LicenseKey.vue:102
2755
+ msgid "upgrade to %1$s"
2756
  msgstr ""
2757
 
2758
+ #: src/vue/components/lite/settings/LicenseKey.vue:60
2759
+ msgid "Paste your license key here"
2760
  msgstr ""
2761
 
2762
+ #: src/vue/components/lite/settings/LicenseKey.vue:61
2763
+ msgid "Connect"
2764
  msgstr ""
2765
 
2766
+ # Translators: 1 - The plugin name ("All in One SEO").
2767
+ #: src/vue/components/lite/settings/LicenseKey.vue:80
2768
+ msgid "You're using %1$s - no license needed. Enjoy!"
2769
  msgstr ""
2770
 
2771
+ #: src/vue/pages/setup-wizard/views/LicenseKey.vue:128
2772
+ msgid "To unlock the selected features, please enter your license key below."
2773
  msgstr ""
2774
 
2775
+ # Translators: 1 - "upgrading to Pro".
2776
+ #: src/vue/pages/setup-wizard/views/LicenseKey.vue:130
2777
+ msgid ""
2778
+ "To unlock the selected features, please %1$s and enter your license key "
2779
+ "below."
2780
  msgstr ""
2781
 
2782
+ # Translators: 1 - The plugin name ("All in One SEO").
2783
+ #: src/vue/components/lite/settings/LicenseKey.vue:84
2784
+ msgid "Already purchased? Simply enter your license key below to connect with %1$s!"
2785
  msgstr ""
2786
 
2787
+ # Translators: 1 - The plugin short name ("AIOSEO").
2788
+ #: src/vue/pages/setup-wizard/views/LicenseKey.vue:98
2789
+ msgid "Enter your %1$s License Key"
 
 
2790
  msgstr ""
2791
 
2792
+ #: src/vue/pages/post-settings/views/partialsGeneral/metaboxAnalysisDetail.vue:32
2793
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:100
2794
+ msgid "Delete"
 
 
2795
  msgstr ""
2796
 
2797
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:101
2798
+ msgid "Success! The backup was deleted."
 
 
 
2799
  msgstr ""
2800
 
2801
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:102
2802
+ msgid "Success! The backup was restored."
 
 
2803
  msgstr ""
2804
 
2805
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:146
2806
+ msgid "%1$s at %2$s"
2807
  msgstr ""
2808
 
2809
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:96
2810
+ msgid "Backup Settings"
2811
  msgstr ""
2812
 
2813
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:97
2814
+ msgid "You have no saved backups."
2815
  msgstr ""
2816
 
2817
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:98
2818
+ msgid "Create Backup"
2819
  msgstr ""
2820
 
2821
+ #: src/vue/pages/tools/views/partials/BackupSettings.vue:99
2822
+ msgid "Restore"
2823
  msgstr ""
2824
 
2825
+ #: src/vue/pages/settings/views/RssContent.vue:121
2826
+ msgid "Automatically add content to your site's RSS feed."
2827
  msgstr ""
2828
 
2829
+ #: src/vue/pages/settings/views/RssContent.vue:122
2830
+ msgid ""
2831
+ "This feature is used to automatically add content to your site's RSS feed. "
2832
+ "More specifically, it allows you to add links back to your blog and your "
2833
+ "blog posts so scrapers will automatically add these links too. This helps "
2834
+ "search engines identify you as the original source of the content."
 
2835
  msgstr ""
2836
 
2837
+ #: src/vue/pages/settings/views/RssContent.vue:123
2838
+ msgid "Learn more"
2839
  msgstr ""
2840
 
2841
+ #: src/vue/pages/settings/views/RssContent.vue:124
2842
+ msgid "RSS Content Settings"
2843
  msgstr ""
2844
 
2845
+ #: src/vue/pages/settings/views/RssContent.vue:125
2846
+ msgid "Open Your RSS Feed"
 
 
 
 
2847
  msgstr ""
2848
 
2849
+ #: src/vue/pages/settings/views/RssContent.vue:126
2850
+ msgid "RSS Before Content"
2851
  msgstr ""
2852
 
2853
+ #: src/vue/pages/settings/views/RssContent.vue:127
2854
+ msgid "RSS After Content"
2855
  msgstr ""
2856
 
2857
+ #: src/vue/pages/settings/views/RssContent.vue:128
2858
+ msgid "Add content before each post in your site feed."
 
2859
  msgstr ""
2860
 
2861
+ #: src/vue/pages/settings/views/RssContent.vue:129
2862
+ msgid "Add content after each post in your site feed."
2863
  msgstr ""
2864
 
2865
+ #: src/vue/pages/settings/views/WebmasterTools.vue:267
2866
+ msgid "Your user account role does not have access to edit this field. %2$s"
2867
  msgstr ""
2868
 
2869
+ #: src/vue/pages/setup-wizard/views/Features.vue:126
2870
+ msgid "The following plugins will be installed: %2$s"
2871
  msgstr ""
2872
 
2873
+ #: src/vue/pages/setup-wizard/views/Features.vue:130
2874
+ msgid "The following %1$s addons will be installed: %2$s"
2875
  msgstr ""
2876
 
2877
+ #: src/vue/pages/setup-wizard/views/Features.vue:134
2878
+ msgid "The following plugins and %1$s addons will be installed: %2$s"
 
2879
  msgstr ""
2880
 
2881
+ #: src/vue/pages/setup-wizard/views/Features.vue:82
2882
+ msgid "Which SEO features do you want to enable?"
 
 
 
 
2883
  msgstr ""
2884
 
2885
+ #: src/vue/pages/setup-wizard/views/Features.vue:86
 
2886
  msgid ""
2887
+ "We have already selected our recommended features based on your site "
2888
+ "category, but you can use the following features to fine-tune your site."
2889
  msgstr ""
2890
 
2891
+ #: src/vue/pages/tools/views/ImportExport.vue:36
2892
+ msgid "Export / Backup Settings"
 
 
 
2893
  msgstr ""
2894
 
2895
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:124
2896
+ msgid "Import Settings From Other Plugins"
 
 
 
2897
  msgstr ""
2898
 
2899
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:125
2900
+ msgid "Choose a plugin to import SEO data directly into %1$s."
2901
  msgstr ""
2902
 
2903
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:126
2904
+ msgid "Select a plugin..."
2905
  msgstr ""
2906
 
2907
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:128
2908
+ msgid "All Settings"
2909
  msgstr ""
2910
 
2911
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:129
2912
+ msgid "not installed"
2913
  msgstr ""
2914
 
2915
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:143
2916
+ msgid "SEO Settings"
2917
  msgstr ""
2918
 
2919
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:144
2920
+ msgid "Post Meta"
 
2921
  msgstr ""
2922
 
2923
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:148
2924
+ msgid "Term Meta"
 
2925
  msgstr ""
2926
 
2927
+ # Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO").
2928
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:176
2929
+ msgid "%1$s was successfully imported!"
2930
  msgstr ""
2931
 
2932
+ # Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO").
2933
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:180
2934
+ msgid "An error occurred while importing %1$s. Please try again."
2935
  msgstr ""
2936
 
2937
+ # Translators: 1 - The name of the plugin (e.g. "Yoast SEO"), 2 - The version of the plugin (e.g. "10.2.3").
2938
+ #: src/vue/pages/tools/views/partials/ImportOthers.vue:223
2939
+ msgid ""
2940
+ "We do not support importing from the currently installed version of %1$s "
2941
+ "(%2$s). Please upgrade to the latest version and try again."
2942
  msgstr ""
2943
 
2944
+ #: src/vue/pages/setup-wizard/views/Import.vue:80
2945
+ msgid "Import data from your current plugins"
2946
  msgstr ""
2947
 
2948
+ #: src/vue/pages/setup-wizard/views/Import.vue:81
2949
+ msgid ""
2950
+ "We have detected other SEO plugins installed on your website. Select which "
2951
+ "plugins you would like to import data to %1$s."
2952
  msgstr ""
2953
 
2954
+ #: src/vue/pages/setup-wizard/views/Import.vue:82
2955
+ msgid "Import Data and Continue"
2956
  msgstr ""
2957
 
2958
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:81
2959
+ msgid "Import / Restore %1$s Settings"
2960
  msgstr ""
2961
 
2962
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:82
2963
+ msgid "Import from a JSON or INI file..."
 
 
2964
  msgstr ""
2965
 
2966
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:83
2967
+ msgid "Choose a File"
2968
  msgstr ""
2969
 
2970
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:84
2971
+ msgid "Imported settings will overwrite existing settings and will not be merged."
2972
  msgstr ""
2973
 
2974
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:86
2975
+ msgid "A JSON or INI file is required to import settings."
2976
  msgstr ""
2977
 
2978
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:87
2979
+ msgid "Success! Your settings have been imported."
2980
  msgstr ""
2981
 
2982
+ #: src/vue/pages/tools/views/partials/ImportAioseo.vue:88
2983
+ msgid ""
2984
+ "There was an error importing your settings. Please make sure you are "
2985
+ "uploading the correct file or it is in the proper format."
2986
  msgstr ""
2987
 
2988
+ # Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO").
2989
+ #: src/vue/pages/tools/views/RobotsEditor.vue:238
2990
  msgid ""
2991
+ "The robots.txt editor in %1$s allows you to set up a robots.txt file for "
2992
+ "your site that will override the default robots.txt file that WordPress "
2993
+ "creates. By creating a robots.txt file with %2$s you have greater control "
2994
+ "over the instructions you give web crawlers about your site."
2995
  msgstr ""
2996
 
2997
+ #: src/vue/pages/tools/views/RobotsEditor.vue:239
2998
+ msgid ""
2999
+ "Just like WordPress, %1$s generates a dynamic file so there is no static "
3000
+ "file to be found on your server. The content of the robots.txt file is "
3001
+ "stored in your WordPress database."
3002
  msgstr ""
3003
 
3004
+ #: src/vue/pages/tools/views/RobotsEditor.vue:240
3005
+ msgid "Enable Custom Robots.txt"
3006
  msgstr ""
3007
 
3008
+ #: src/vue/pages/tools/views/RobotsEditor.vue:241
3009
+ msgid ""
3010
+ "Duplicate or invalid entries have been detected! Please check your rules "
3011
+ "and try again."
3012
  msgstr ""
3013
 
3014
+ #: src/vue/pages/tools/views/RobotsEditor.vue:242
3015
+ msgid "User Agent"
3016
  msgstr ""
3017
 
3018
+ #: src/vue/pages/tools/views/RobotsEditor.vue:243
3019
+ msgid "Rule"
3020
  msgstr ""
3021
 
3022
+ #: src/vue/pages/tools/views/RobotsEditor.vue:244
3023
+ msgid "Directory Path"
 
3024
  msgstr ""
3025
 
3026
+ #: src/vue/pages/tools/views/RobotsEditor.vue:245
3027
+ msgid "Allow"
 
3028
  msgstr ""
3029
 
3030
+ #: src/vue/pages/tools/views/RobotsEditor.vue:246
3031
+ msgid "Disallow"
3032
  msgstr ""
3033
 
3034
+ #: src/vue/pages/tools/views/RobotsEditor.vue:247
3035
+ msgid "Add Rule"
3036
  msgstr ""
3037
 
3038
+ #: src/vue/pages/tools/views/RobotsEditor.vue:248
3039
+ msgid "Delete Rule"
3040
  msgstr ""
3041
 
3042
+ #: src/vue/pages/tools/views/RobotsEditor.vue:249
3043
+ msgid "Robots.txt Preview:"
3044
  msgstr ""
3045
 
3046
+ #: src/vue/pages/tools/views/RobotsEditor.vue:250
3047
+ msgid "Open Robots.txt"
3048
  msgstr ""
3049
 
3050
+ # Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO").
3051
+ #: src/vue/pages/tools/views/RobotsEditor.vue:252
3052
+ msgid ""
3053
+ "%1$s has detected a physical robots.txt file in the root folder of your "
3054
+ "WordPress installation. We recommend removing this file as it could cause "
3055
+ "conflicts with WordPress' dynamically generated one. %2$s can import this "
3056
+ "file and delete it, or you can simply delete it."
3057
  msgstr ""
3058
 
3059
+ #: src/vue/pages/tools/views/RobotsEditor.vue:253
3060
+ msgid "Import and Delete"
3061
  msgstr ""
3062
 
3063
+ # Translators: 1 - The url to the main site.
3064
+ #: src/vue/pages/tools/views/RobotsEditor.vue:285
3065
+ msgid ""
3066
+ "This site is running in a sub-directory of your main site located at %1$s. "
3067
+ "Your robots.txt file should only appear in the root directory of that site."
3068
  msgstr ""
3069
 
3070
+ #: src/vue/pages/tools/views/RobotsEditor.vue:288
3071
+ msgid ""
3072
+ "It looks like you are missing the proper rewrite rules for the robots.txt "
3073
+ "file."
 
 
3074
  msgstr ""
3075
 
3076
+ # Translators: 1 - Opening link tag. 2 - Closing link tag.
3077
+ #: src/vue/pages/tools/views/RobotsEditor.vue:292
3078
+ msgid ""
3079
+ "It appears that your server is running on Apache, so the fix should be as "
3080
+ "simple as checking the %1$scorrect .htaccess implementation on "
3081
+ "wordpress.org%2$s."
3082
  msgstr ""
3083
 
3084
+ #: src/vue/pages/tools/views/RobotsEditor.vue:294
3085
+ msgid ""
3086
+ "It appears that your server is running on nginx, so the fix will most "
3087
+ "likely require adding the correct rewrite rules to our nginx configuration. "
3088
+ "%1$sCheck our documentation for more information%2$s."
3089
  msgstr ""
3090
 
3091
+ # Translators: 1 - The plugin name ("All in One SEO"), 2 - Same as previous.
3092
+ #: src/vue/pages/about/views/AboutUs.vue:118
3093
+ msgid ""
3094
+ "Welcome to %1$s, the original SEO plugin for WordPress. At %2$s, we build "
3095
+ "software that helps you rank your website in search results and gain "
3096
+ "organic traffic."
3097
  msgstr ""
3098
 
3099
+ #: src/vue/pages/about/views/AboutUs.vue:119
3100
+ msgid ""
3101
+ "Over the years, we found that most other WordPress SEO plugins were "
3102
+ "bloated, buggy, slow, and very hard to use. So we designed our plugin as an "
3103
+ "easy and powerful tool."
3104
  msgstr ""
3105
 
3106
+ #: src/vue/pages/about/views/AboutUs.vue:120
3107
+ msgid ""
3108
+ "Our goal is to take the pain out of optimizing your website for search "
3109
+ "engines."
3110
  msgstr ""
3111
 
3112
+ # Translators: 1 - The plugin name ("All in One SEO"), 2 - Company name ("Awesome Motive").
3113
+ #: src/vue/pages/about/views/AboutUs.vue:122
3114
+ msgid ""
3115
+ "%1$s is brought to you by %2$s, the same team that’s behind the largest "
3116
+ "WordPress resource site, WPBeginner, the most popular lead-generation "
3117
+ "software, OptinMonster, the best WordPress analytics plugin, "
3118
+ "MonsterInsights and many more."
3119
  msgstr ""
3120
 
3121
+ #: src/vue/pages/about/views/AboutUs.vue:123
3122
  msgid ""
3123
+ "Yup, we know a thing or two about building awesome products that customers "
3124
+ "love."
 
 
3125
  msgstr ""
3126
 
3127
+ # Translators: 1 - Company name ("Awesome Motive").
3128
+ #: src/vue/pages/about/views/AboutUs.vue:125
3129
+ msgid "The %1$s Team"
3130
  msgstr ""
3131
 
3132
+ #: src/vue/pages/about/views/AboutUs.vue:129
3133
+ msgid "Install Plugin"
3134
  msgstr ""
3135
 
3136
+ #: src/vue/pages/about/views/AboutUs.vue:130
3137
+ msgid "Activate"
3138
  msgstr ""
3139
 
3140
+ #: src/vue/components/common/core/FeatureCard.vue:124
3141
+ #: src/vue/pages/about/views/AboutUs.vue:131
3142
+ msgid "Manage"
3143
  msgstr ""
3144
 
3145
+ #: src/vue/pages/about/views/AboutUs.vue:133
3146
+ msgid "Status:"
3147
  msgstr ""
3148
 
3149
+ #: src/vue/components/common/core/FeatureCard.vue:119
3150
+ #: src/vue/pages/about/views/AboutUs.vue:135
3151
+ msgid "Activated"
3152
  msgstr ""
3153
 
3154
+ #: src/vue/components/common/core/FeatureCard.vue:120
3155
+ #: src/vue/pages/about/views/AboutUs.vue:136
3156
+ msgid "Deactivated"
3157
  msgstr ""
3158
 
3159
+ #: src/vue/components/common/core/FeatureCard.vue:121
3160
+ #: src/vue/pages/about/views/AboutUs.vue:137
3161
+ msgid "Not Installed"
3162
  msgstr ""
3163
 
3164
+ #: src/vue/pages/about/views/AboutUs.vue:144
3165
+ msgid ""
3166
+ "Our high-converting optin forms like Exit-Intent® popups, Fullscreen "
3167
+ "Welcome Mats, and Scroll boxes help you dramatically boost conversions and "
3168
+ "get more email subscribers."
3169
  msgstr ""
3170
 
3171
+ #: src/vue/pages/about/views/AboutUs.vue:153
3172
+ msgid ""
3173
+ "WPForms allows you to create beautiful contact forms for your site in "
3174
+ "minutes, not hours!"
3175
  msgstr ""
3176
 
3177
+ #: src/vue/pages/about/views/AboutUs.vue:170
3178
+ msgid ""
3179
+ "MonsterInsights makes it “effortless” to properly connect your WordPress "
3180
+ "site with Google Analytics, so you can start making data-driven decisions "
3181
+ "to grow your business."
3182
  msgstr ""
3183
 
3184
+ #: src/vue/pages/about/views/AboutUs.vue:187
3185
+ msgid ""
3186
+ "The ExactMetrics Google Analytics for WordPress plugin helps you properly "
3187
+ "setup all the powerful Google Analytics tracking features without writing "
3188
+ "any code or hiring a developer."
3189
  msgstr ""
3190
 
3191
+ #: src/vue/pages/about/views/AboutUs.vue:204
3192
+ msgid ""
3193
+ "Make sure your website's emails reach the inbox. Our goal is to make email "
3194
+ "deliverability easy and reliable. Trusted by over 1 million websites."
3195
  msgstr ""
3196
 
3197
+ #: src/vue/pages/about/views/AboutUs.vue:221
3198
+ msgid ""
3199
+ "Create a simple Coming Soon Page, Under Construction or Maintenance Mode "
3200
+ "Page. Work on your site in private while visitors see a “Coming Soon” or "
3201
+ "“Maintenance Mode” page."
3202
  msgstr ""
3203
 
3204
+ #: src/vue/pages/about/views/AboutUs.vue:238
3205
+ msgid ""
3206
+ "TrustPulse uses FOMO (Fear of Missing Out) to boost your sales and "
3207
+ "conversions with social proof notifications. Use it to boost sales on your "
3208
+ "Woocommerce store, increase signups on your membership site, get more email "
3209
+ "subscribers, and more."
3210
  msgstr ""
3211
 
3212
+ #: src/vue/pages/about/views/AboutUs.vue:247
3213
+ msgid ""
3214
+ "Turn your visitors into brand ambassadors! Easily grow your email list, "
3215
+ "website traffic, and social media followers with powerful viral giveaways & "
3216
+ "contests."
3217
  msgstr ""
3218
 
3219
+ #: src/vue/pages/about/views/AboutUs.vue:264
3220
+ msgid ""
3221
+ "Display completely customizable Facebook feeds of any public Facebook page "
3222
+ "or Group."
3223
  msgstr ""
3224
 
3225
+ #: src/vue/pages/about/views/AboutUs.vue:281
3226
+ msgid ""
3227
+ "Display beautifully clean, customizable, and responsive Instagram feeds "
3228
+ "from multiple Instagram accounts."
3229
  msgstr ""
3230
 
3231
+ #: src/vue/pages/about/views/AboutUs.vue:298
3232
+ msgid ""
3233
+ "Display completely customizable, responsive and search engine crawlable "
3234
+ "Twitter feeds on your website."
3235
  msgstr ""
3236
 
3237
+ #: src/vue/pages/about/views/AboutUs.vue:315
3238
+ msgid ""
3239
+ "The Feeds for YouTube plugin allows you to display customizable YouTube "
3240
+ "feeds from any YouTube channel."
3241
  msgstr ""
3242
 
3243
+ #: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:111
3244
+ msgid "Enter Competitor URL"
3245
  msgstr ""
3246
 
3247
+ #: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:112
3248
+ msgid "Perform in-depth SEO Analysis of your competitor's website."
3249
  msgstr ""
3250
 
3251
+ #: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:113
3252
+ msgid "Analyze"
3253
  msgstr ""
3254
 
3255
+ #: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:114
3256
+ msgid "Please enter a valid URL."
3257
  msgstr ""
3258
 
3259
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:77
3260
+ msgid "The URL provided is invalid."
3261
  msgstr ""
3262
 
3263
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:79
3264
+ msgid "We were unable to parse the content for this site."
3265
  msgstr ""
3266
 
3267
+ # Translators: 1 - The plugin short name ('AIOSEO').
3268
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:82
3269
+ msgid "Your site is not connected. Please connect to %1$s, then try again."
3270
  msgstr ""
3271
 
3272
+ #: src/vue/pages/settings/views/WebmasterTools.vue:256
3273
+ msgid "Miscellaneous Verification"
3274
  msgstr ""
3275
 
3276
+ # Translators: 1 - "<head></head>".
3277
+ #: src/vue/pages/settings/views/WebmasterTools.vue:258
3278
+ msgid ""
3279
+ "The code above will be added between the %1$s tags on every page on your "
3280
+ "website."
3281
  msgstr ""
3282
 
3283
+ #: src/vue/pages/settings/views/WebmasterTools.vue:259
3284
+ msgid "Webmaster Tools Verification"
3285
  msgstr ""
3286
 
3287
+ #: src/vue/pages/settings/views/WebmasterTools.vue:262
3288
+ msgid "Success!"
3289
  msgstr ""
3290
 
3291
+ #: src/vue/pages/settings/views/WebmasterTools.vue:263
3292
+ msgid "Google Analytics is now handled by MonsterInsights."
3293
  msgstr ""
3294
 
3295
+ #: src/vue/pages/settings/views/WebmasterTools.vue:264
3296
+ msgid "Google Analytics is now handled by ExactMetrics."
3297
  msgstr ""
3298
 
3299
+ #: src/vue/pages/settings/views/WebmasterTools.vue:265
3300
+ msgid "Manage Google Analytics"
3301
  msgstr ""
3302
 
3303
+ #: src/vue/pages/settings/views/WebmasterTools.vue:266
3304
+ msgid "Get Started"
 
3305
  msgstr ""
3306
 
3307
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
3308
+ #: src/vue/pages/settings/views/WebmasterTools.vue:276
3309
  msgid ""
3310
+ "We recommend using the %1$sFree MonsterInsights%2$s plugin to get the most "
3311
+ "out of Google Analytics."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3312
  msgstr ""
3313
 
3314
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
3315
+ #: src/vue/pages/settings/views/WebmasterTools.vue:280
3316
+ msgid ""
3317
+ "We recommend using the %1$sFree ExactMetrics%2$s plugin to get the most out "
3318
+ "of Google Analytics."
3319
  msgstr ""
3320
 
3321
+ #: src/vue/pages/settings/views/WebmasterTools.vue:314
3322
+ msgid "Google Verification Code"
3323
  msgstr ""
3324
 
3325
+ # Translators: 1 - "Google Search Console".
3326
+ #: src/vue/pages/settings/views/WebmasterTools.vue:316
3327
+ msgid "Google Search Console"
3328
  msgstr ""
3329
 
3330
+ # Translators: 1 - "Google Search Console".
3331
+ #: src/vue/pages/settings/views/WebmasterTools.vue:316
3332
+ msgid "Get your Google verification code in %1$s."
3333
  msgstr ""
3334
 
3335
+ #: src/vue/pages/settings/views/WebmasterTools.vue:327
3336
+ msgid "Bing Verification Code"
 
 
3337
  msgstr ""
3338
 
3339
+ # Translators: 1 - "Bing Webmaster Tools".
3340
+ #: src/vue/pages/settings/views/WebmasterTools.vue:329
3341
+ msgid "Bing Webmaster Tools"
3342
  msgstr ""
3343
 
3344
+ # Translators: 1 - "Bing Webmaster Tools".
3345
+ #: src/vue/pages/settings/views/WebmasterTools.vue:329
3346
+ msgid "Get your Bing verification code in %1$s."
3347
  msgstr ""
3348
 
3349
+ #: src/vue/pages/settings/views/WebmasterTools.vue:340
3350
+ msgid "Yandex Verification Code"
3351
  msgstr ""
3352
 
3353
+ # Translators: 1 - "Yandex Webmaster Tools".
3354
+ #: src/vue/pages/settings/views/WebmasterTools.vue:342
3355
+ msgid "Yandex Webmaster Tools"
3356
  msgstr ""
3357
 
3358
+ # Translators: 1 - "Yandex Webmaster Tools".
3359
+ #: src/vue/pages/settings/views/WebmasterTools.vue:342
3360
+ msgid "Get your Yandex verification code in %1$s."
3361
  msgstr ""
3362
 
3363
+ #: src/vue/pages/settings/views/WebmasterTools.vue:353
3364
+ msgid "Baidu Verification Code"
3365
  msgstr ""
3366
 
3367
+ # Translators: 1 - "Baidu Webmaster Tools".
3368
+ #: src/vue/pages/settings/views/WebmasterTools.vue:355
3369
+ msgid "Baidu Webmaster Tools"
3370
  msgstr ""
3371
 
3372
+ # Translators: 1 - "Baidu Webmaster Tools".
3373
+ #: src/vue/pages/settings/views/WebmasterTools.vue:355
3374
+ msgid "Get your Baidu verification code in %1$s."
3375
  msgstr ""
3376
 
3377
+ #: src/vue/pages/settings/views/WebmasterTools.vue:361
3378
+ msgid "Pinterest Site Verification"
3379
  msgstr ""
3380
 
3381
+ # Translators: 1 - "Pinterest account".
3382
+ #: src/vue/pages/settings/views/WebmasterTools.vue:368
3383
+ msgid "Get your Pinterest verification code in your %1$s."
3384
  msgstr ""
3385
 
3386
+ # Translators: 1 - "Pinterest account".
3387
+ #: src/vue/pages/settings/views/WebmasterTools.vue:368
3388
+ msgid "Pinterest account"
3389
  msgstr ""
3390
 
3391
+ #: src/vue/pages/settings/views/WebmasterTools.vue:399
3392
+ msgid "Google Analytics"
3393
  msgstr ""
3394
 
3395
+ #: src/vue/pages/settings/views/WebmasterTools.vue:406
3396
+ msgid "Google Analytics ID"
 
 
3397
  msgstr ""
3398
 
3399
+ # Translators: 1 - "Google Analytics account".
3400
+ #: src/vue/pages/settings/views/WebmasterTools.vue:408
3401
+ msgid "Get your Google Analytics ID in your %1$s."
 
3402
  msgstr ""
3403
 
3404
+ # Translators: 1 - "Google Analytics account".
3405
+ #: src/vue/pages/settings/views/WebmasterTools.vue:408
3406
+ msgid "Google Analytics account"
3407
  msgstr ""
3408
 
3409
+ #: src/vue/pages/settings/views/WebmasterTools.vue:414
3410
+ msgid "Enable Advanced Analytics Options"
3411
  msgstr ""
3412
 
3413
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
3414
+ #: src/vue/pages/settings/views/WebmasterTools.vue:418
3415
+ msgid "This enables Advanced Google Analytics options.%1$s%2$s"
3416
  msgstr ""
3417
 
3418
+ #: src/vue/pages/settings/views/WebmasterTools.vue:423
3419
+ msgid "Tracking Domain"
3420
  msgstr ""
3421
 
3422
+ # Translators: 1 - "http://", 2 - A link to our documentation, 3 - HTML line break tag.
3423
+ #: src/vue/pages/settings/views/WebmasterTools.vue:426
3424
+ msgid "Enter your domain name without the %1$s to set your cookie domain.%2$s%3$s"
3425
  msgstr ""
3426
 
3427
+ #: src/vue/pages/settings/views/WebmasterTools.vue:431
3428
+ msgid "Track Multiple Domains"
3429
  msgstr ""
3430
 
3431
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
3432
+ #: src/vue/pages/settings/views/WebmasterTools.vue:439
3433
+ msgid ""
3434
+ "Use this option to enable tracking of multiple or additional "
3435
+ "domains.%1$s%2$s"
3436
  msgstr ""
3437
 
3438
+ #: src/vue/pages/settings/views/WebmasterTools.vue:444
3439
+ msgid "Additional Domains"
3440
  msgstr ""
3441
 
3442
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
3443
+ #: src/vue/pages/settings/views/WebmasterTools.vue:448
3444
+ msgid ""
3445
+ "Add a list of additional domains to track here. Enter one domain name per "
3446
+ "line without the http://.%1$s%2$s"
3447
  msgstr ""
3448
 
3449
+ #: src/vue/pages/settings/views/WebmasterTools.vue:453
3450
+ msgid "Anonymize IP Addresses"
3451
  msgstr ""
3452
 
3453
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
3454
+ #: src/vue/pages/settings/views/WebmasterTools.vue:461
3455
+ msgid "This enables support for IP Anonymization in Google Analytics.%1$s%2$s"
3456
  msgstr ""
3457
 
3458
+ #: src/vue/pages/settings/views/WebmasterTools.vue:466
3459
+ msgid "Display Advertiser Tracking"
3460
  msgstr ""
3461
 
3462
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
3463
+ #: src/vue/pages/settings/views/WebmasterTools.vue:474
3464
  msgid ""
3465
+ "This enables support for the Display Advertiser Features in Google "
3466
+ "Analytics.%1$s%2$s"
 
 
 
 
 
 
 
 
 
 
 
 
 
3467
  msgstr ""
3468
 
3469
+ #: src/vue/pages/settings/views/WebmasterTools.vue:479
3470
+ msgid "Exclude Users from Tracking"
 
3471
  msgstr ""
3472
 
3473
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
3474
+ #: src/vue/pages/settings/views/WebmasterTools.vue:490
3475
+ msgid "Exclude logged-in users from Google Analytics tracking by role.%1$s%2$s"
 
 
3476
  msgstr ""
3477
 
3478
+ #: src/vue/pages/settings/views/WebmasterTools.vue:495
3479
+ msgid "Enhanced Link Attribution"
3480
  msgstr ""
3481
 
3482
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
3483
+ #: src/vue/pages/settings/views/WebmasterTools.vue:503
3484
  msgid ""
3485
+ "This enables support for the Enhanced Link Attribution in Google "
3486
+ "Analytics.%1$s%2$s"
3487
  msgstr ""
3488
 
3489
+ #: src/vue/pages/settings/views/WebmasterTools.vue:508
3490
+ msgid "Track Outbound Links"
3491
  msgstr ""
3492
 
3493
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
3494
+ #: src/vue/pages/settings/views/WebmasterTools.vue:516
3495
+ msgid "This enables tracking outbound links with Google Analytics.%1$s%2$s"
3496
  msgstr ""
3497
 
3498
+ #: src/vue/pages/settings/views/WebmasterTools.vue:521
3499
+ msgid "Enhanced Ecommerce"
 
 
3500
  msgstr ""
3501
 
3502
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
3503
+ #: src/vue/pages/settings/views/WebmasterTools.vue:529
3504
+ msgid "This enables support for the Enhanced Ecommerce in Google Analytics.%1$s%2$s"
3505
  msgstr ""
3506
 
3507
+ #: src/vue/pages/settings/views/WebmasterTools.vue:534
3508
+ msgid "Track Outbound Forms"
 
 
 
3509
  msgstr ""
3510
 
3511
+ #: src/vue/pages/settings/views/WebmasterTools.vue:548
3512
+ msgid "Track Events"
3513
  msgstr ""
3514
 
3515
+ #: src/vue/pages/settings/views/WebmasterTools.vue:562
3516
+ msgid "Track URL Changes"
3517
  msgstr ""
3518
 
3519
+ #: src/vue/pages/settings/views/WebmasterTools.vue:576
3520
+ msgid "Track Page Visibility"
3521
  msgstr ""
3522
 
3523
+ #: src/vue/pages/settings/views/WebmasterTools.vue:590
3524
+ msgid "Track Media Queries"
3525
  msgstr ""
3526
 
3527
+ #: src/vue/pages/settings/views/WebmasterTools.vue:604
3528
+ msgid "Track Elements Visibility"
3529
  msgstr ""
3530
 
3531
+ #: src/vue/pages/settings/views/WebmasterTools.vue:618
3532
+ msgid "Track Page Scrolling"
 
 
3533
  msgstr ""
3534
 
3535
+ #: src/vue/pages/settings/views/WebmasterTools.vue:632
3536
+ msgid "Track Facebook and Twitter"
3537
  msgstr ""
3538
 
3539
+ #: src/vue/pages/settings/views/WebmasterTools.vue:646
3540
+ msgid "Ensure URL Consistency"
3541
  msgstr ""
3542
 
3543
+ #: src/vue/pages/settings/views/WebmasterTools.vue:660
3544
+ msgid "Google Tag Manager Container ID"
3545
  msgstr ""
3546
 
3547
+ # Translators: 1 - "Google Tag Manager account".
3548
+ #: src/vue/pages/settings/views/WebmasterTools.vue:664
3549
+ msgid "Get your Google Tag Manager ID in your %1$s."
 
 
3550
  msgstr ""
3551
 
3552
  #: src/vue/pages/setup-wizard/views/Category.vue:146
3591
  msgid "Other:"
3592
  msgstr ""
3593
 
3594
+ #: src/vue/pages/sitemaps/views/HtmlSitemap.vue:16
3595
+ msgid "HTML Sitemap"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3596
  msgstr ""
3597
 
3598
+ #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:409
 
3599
  msgid ""
3600
+ "Select which Taxonomies appear in your sitemap. Categories and Tags are "
3601
+ "excluded by default since these do not support video embedding."
 
 
 
 
 
3602
  msgstr ""
3603
 
3604
+ #: src/vue/pages/sitemaps/views/RssSitemap.vue:125
3605
  msgid ""
3606
+ "This option will generate a separate RSS Sitemap which can be submitted to "
3607
+ "Google, Bing and any other search engines that support this type of "
3608
+ "sitemap. The RSS Sitemap contains an RSS feed of the latest updates to your "
3609
+ "site content. It is not a full sitemap of all your content."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3610
  msgstr ""
3611
 
3612
+ #: src/vue/pages/sitemaps/views/RssSitemap.vue:130
3613
+ msgid "Number of Posts"
3614
  msgstr ""
3615
 
3616
+ #: src/vue/pages/sitemaps/views/RssSitemap.vue:133
3617
+ msgid "Open RSS Sitemap"
3618
  msgstr ""
3619
 
3620
+ #: src/vue/pages/sitemaps/views/RssSitemap.vue:134
3621
  msgid ""
3622
+ "Allows you to specify the maximum number of posts for the RSS Sitemap. We "
3623
+ "recommend an amount of 50 posts."
 
 
 
 
3624
  msgstr ""
3625
 
3626
+ #: src/vue/components/common/wizard/CloseAndExit.vue:14
3627
+ msgid "Close and Exit Wizard Without Saving"
 
 
3628
  msgstr ""
3629
 
3630
+ # Translators: 1 - The current step count. 2 - The total step count.
3631
+ #: src/vue/components/common/wizard/Steps.vue:15
3632
+ msgid "Step %1$s of %2$s"
3633
  msgstr ""
3634
 
3635
+ # Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro".
3636
+ #: src/vue/components/lite/core/UpgradeBar.vue:38
3637
+ msgid "You're using %1$s. To unlock more features, consider %2$s."
3638
  msgstr ""
3639
 
3640
+ #: src/vue/components/lite/local-business/AreaServed.vue:16
3641
+ msgid "The geographic area where a service or offered item is provided."
3642
  msgstr ""
3643
 
3644
+ #: src/vue/components/lite/local-business/BusinessAddress.vue:55
3645
+ msgid "Street address:"
3646
  msgstr ""
3647
 
3648
+ #: src/vue/components/lite/local-business/BusinessAddress.vue:56
3649
+ msgid "Street address line 2 (optional):"
3650
  msgstr ""
3651
 
3652
+ #: src/vue/components/lite/local-business/BusinessAddress.vue:57
3653
+ msgid "Zip code:"
3654
  msgstr ""
3655
 
3656
+ #: src/vue/components/lite/local-business/BusinessAddress.vue:58
3657
+ msgid "City:"
 
 
3658
  msgstr ""
3659
 
3660
+ #: src/vue/components/lite/local-business/BusinessAddress.vue:59
3661
+ msgid "State:"
3662
  msgstr ""
3663
 
3664
+ #: src/vue/components/lite/local-business/BusinessAddress.vue:60
3665
+ msgid "Country:"
3666
  msgstr ""
3667
 
3668
+ #: src/vue/components/lite/local-business/BusinessContact.vue:28
3669
+ msgid "Email address:"
 
 
 
 
3670
  msgstr ""
3671
 
3672
+ #: src/vue/components/lite/local-business/BusinessContact.vue:29
3673
+ msgid "Phone number:"
3674
  msgstr ""
3675
 
3676
+ #: src/vue/components/lite/local-business/BusinessContact.vue:30
3677
+ msgid "Fax number:"
3678
  msgstr ""
3679
 
3680
+ #: src/vue/components/lite/local-business/BusinessIds.vue:25
3681
+ msgid "VAT ID:"
3682
  msgstr ""
3683
 
3684
+ #: src/vue/components/lite/local-business/BusinessIds.vue:26
3685
+ msgid "Tax ID:"
3686
  msgstr ""
3687
 
3688
+ #: src/vue/components/lite/local-business/PaymentInfo.vue:37
3689
+ msgid "Price Indicator:"
3690
  msgstr ""
3691
 
3692
+ #: src/vue/components/lite/local-business/PaymentInfo.vue:38
3693
+ msgid "Accepted Currencies:"
3694
  msgstr ""
3695
 
3696
+ #: src/vue/components/lite/local-business/PaymentInfo.vue:39
3697
+ msgid "Accepted Payment Methods:"
3698
  msgstr ""
3699
 
3700
+ #: src/vue/components/lite/settings/LicenseKey.vue:59
3701
+ msgid "Your license key provides access to updates and addons."
3702
  msgstr ""
3703
 
3704
+ #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:12
3705
+ msgid "Open News Sitemap"
3706
  msgstr ""
3707
 
3708
+ #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:15
3709
+ msgid "Upgrade to Pro and Unlock News Sitemaps"
3710
  msgstr ""
3711
 
3712
+ #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:16
3713
+ msgid "News Sitemaps are only available for licensed %1$s %2$s users."
 
3714
  msgstr ""
3715
 
3716
+ #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:17
3717
+ msgid "This feature requires one of the following plans:"
 
 
3718
  msgstr ""
3719
 
3720
+ #: src/vue/pages/sitemaps/mixins/NewsSitemap.js:8
3721
+ msgid "Set Publication Name"
3722
  msgstr ""
3723
 
3724
+ #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:8
3725
+ msgid "Exclude Pages/Posts"
3726
  msgstr ""
3727
 
3728
+ #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:12
3729
+ msgid "Open Video Sitemap"
3730
  msgstr ""
3731
 
3732
+ #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:15
3733
+ msgid "Upgrade to Pro and Unlock Video Sitemaps"
3734
  msgstr ""
3735
 
3736
+ #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:16
3737
+ msgid "Video Sitemaps are only available for licensed %1$s %2$s users."
3738
  msgstr ""
3739
 
3740
+ #: src/vue/pages/sitemaps/mixins/VideoSitemap.js:7
3741
+ msgid "Custom Field Support"
3742
  msgstr ""
3743
 
3744
+ #: src/vue/components/common/core/SiteScore.vue:45
3745
+ msgid "Analyzing..."
3746
  msgstr ""
3747
 
3748
+ #: src/vue/components/common/core/RobotsMeta.vue:101
3749
+ msgid "Robots meta:"
3750
  msgstr ""
3751
 
3752
+ #: src/vue/components/common/core/RobotsMeta.vue:102
3753
+ msgid "Max Snippet"
3754
  msgstr ""
3755
 
3756
+ #: src/vue/components/common/core/RobotsMeta.vue:103
3757
+ msgid "Max Video Preview"
 
 
3758
  msgstr ""
3759
 
3760
+ #: src/vue/components/common/core/RobotsMeta.vue:104
3761
+ msgid "Max Image Preview"
 
 
3762
  msgstr ""
3763
 
3764
+ #: src/vue/components/common/core/RobotsMeta.vue:105
3765
+ msgid "Standard"
 
 
 
3766
  msgstr ""
3767
 
3768
+ #: src/vue/components/common/core/RobotsMeta.vue:107
3769
+ msgid "Large"
 
 
3770
  msgstr ""
3771
 
3772
+ #: src/vue/components/common/core/RobotsMeta.vue:87
3773
+ msgid "No Index"
3774
  msgstr ""
3775
 
3776
+ #: src/vue/components/common/core/RobotsMeta.vue:88
3777
+ msgid "No Follow"
 
 
 
 
3778
  msgstr ""
3779
 
3780
+ #: src/vue/components/common/core/RobotsMeta.vue:89
3781
+ msgid "No Archive"
3782
  msgstr ""
3783
 
3784
+ #: src/vue/components/common/core/RobotsMeta.vue:90
3785
+ msgid "No Translate"
3786
  msgstr ""
3787
 
3788
+ #: src/vue/components/common/core/RobotsMeta.vue:91
3789
+ msgid "No Image Index"
 
 
3790
  msgstr ""
3791
 
3792
+ #: src/vue/components/common/core/RobotsMeta.vue:92
3793
+ msgid "No Snippet"
3794
  msgstr ""
3795
 
3796
+ #: src/vue/components/common/core/RobotsMeta.vue:93
3797
+ msgid "No ODP"
3798
  msgstr ""
3799
 
3800
+ #: src/vue/components/common/core/SettingsSeparator.vue:101
3801
+ msgid "Custom separator:"
3802
  msgstr ""
3803
 
3804
+ #: src/vue/components/common/core/SettingsSeparator.vue:102
3805
+ msgid "Show More"
3806
  msgstr ""
3807
 
3808
+ #: src/vue/components/common/core/SettingsSeparator.vue:103
3809
+ msgid "Show Less"
3810
  msgstr ""
3811
 
3812
+ #: src/vue/components/common/core/RobotsMeta.vue:96
3813
+ msgid "No Index Paginated"
3814
  msgstr ""
3815
 
3816
+ #: src/vue/components/common/core/RobotsMeta.vue:97
3817
+ msgid "No Follow Paginated"
 
 
3818
  msgstr ""
3819
 
3820
+ #: src/vue/components/common/core/AdditionalPages.vue:98
3821
+ msgid "Priority"
3822
  msgstr ""
3823
 
3824
+ #: src/vue/components/common/core/AdditionalPages.vue:99
3825
+ msgid "Frequency"
3826
  msgstr ""
3827
 
3828
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:416
3829
+ msgid "Home Page"
3830
  msgstr ""
3831
 
3832
+ #: src/vue/components/common/core/PriorityScore.vue:67
3833
+ msgid "Archive Pages"
3834
  msgstr ""
3835
 
3836
+ #: src/vue/components/common/core/PriorityScore.vue:68
3837
+ msgid "Author Pages"
3838
  msgstr ""
3839
 
3840
+ #: src/vue/components/common/core/PostTypeOptions.vue:86
3841
+ msgid "Label:"
3842
  msgstr ""
3843
 
3844
+ #: src/vue/components/common/core/PostTypeOptions.vue:87
3845
+ msgid "Slug:"
 
3846
  msgstr ""
3847
 
3848
+ #: src/vue/components/common/core/PostTypeOptions.vue:88
3849
+ msgid "No post types available."
3850
  msgstr ""
3851
 
3852
+ #: src/vue/components/common/core/PostTypeOptions.vue:89
3853
+ msgid "No taxonomies available."
3854
  msgstr ""
3855
 
3856
+ #: src/vue/components/common/core/PostTypeOptions.vue:90
3857
  msgid ""
3858
+ "All post types are set to noindex or your site does not have any post types "
3859
+ "registered that are supported by this feature."
 
 
 
 
 
3860
  msgstr ""
3861
 
3862
+ #: src/vue/components/common/core/PostTypeOptions.vue:91
3863
+ msgid ""
3864
+ "All taxonomies are set to noindex or your site does not have any taxonomies "
3865
+ "registered that are supported by this feature."
3866
  msgstr ""
3867
 
3868
+ #: src/vue/components/common/core/Notifications.vue:94
3869
+ msgid "Dismissed Notifications"
 
 
 
 
 
3870
  msgstr ""
3871
 
3872
+ #: src/vue/pages/post-settings/views/General.vue:272
3873
+ #: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:36
3874
+ msgid "Basic SEO"
 
 
3875
  msgstr ""
3876
 
3877
+ #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:107
3878
+ msgid "Advanced SEO"
3879
  msgstr ""
3880
 
3881
+ #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:108
3882
+ msgid "Performance"
 
 
3883
  msgstr ""
3884
 
3885
+ #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:109
3886
+ msgid "Security"
3887
  msgstr ""
3888
 
3889
+ #: src/vue/components/common/core/SeoSiteAnalysisResults.vue:110
3890
+ msgid "Keywords:"
3891
  msgstr ""
3892
 
3893
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:57
3894
+ msgid "Your Overall Site Score"
3895
  msgstr ""
3896
 
3897
+ # Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag.
3898
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:59
3899
+ msgid "A very good score is between %1$s60 and 80%2$s."
3900
  msgstr ""
3901
 
3902
+ # Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag.
3903
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:61
3904
+ msgid "For best results, you should strive for %1$s70 and above%2$s."
3905
  msgstr ""
3906
 
3907
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:62
3908
+ msgid "An error occurred while analyzing your site."
3909
  msgstr ""
3910
 
3911
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:64
3912
+ msgid "Warnings"
3913
  msgstr ""
3914
 
3915
+ #: src/vue/components/common/core/SiteScoreAnalyze.vue:68
3916
+ msgid "Read the Ultimate WordPress SEO Guide"
3917
  msgstr ""
3918
 
3919
+ #: src/vue/components/common/core/SiteScoreCompetitor.vue:81
3920
+ msgid "Mobile Snapshot"
3921
  msgstr ""
3922
 
3923
+ #: src/vue/components/common/core/SocialProfiles.vue:121
3924
+ msgid "Your Facebook URL is invalid. Please check the format and try again."
 
 
 
 
 
3925
  msgstr ""
3926
 
3927
+ #: src/vue/components/common/core/SocialProfiles.vue:132
3928
+ msgid "Your Twitter URL is invalid. Please check the format and try again."
3929
  msgstr ""
3930
 
3931
+ #: src/vue/components/common/core/SocialProfiles.vue:143
3932
+ msgid "Your Instagram URL is invalid. Please check the format and try again."
 
 
 
3933
  msgstr ""
3934
 
3935
+ #: src/vue/components/common/core/SocialProfiles.vue:154
3936
+ msgid "Your Pinterest URL is invalid. Please check the format and try again."
 
 
3937
  msgstr ""
3938
 
3939
+ #: src/vue/components/common/core/SocialProfiles.vue:165
3940
+ msgid "Your YouTube URL is invalid. Please check the format and try again."
 
 
 
 
3941
  msgstr ""
3942
 
3943
+ #: src/vue/components/common/core/SocialProfiles.vue:176
3944
+ msgid "Your LinkedIn URL is invalid. Please check the format and try again."
 
 
 
3945
  msgstr ""
3946
 
3947
+ #: src/vue/components/common/core/SocialProfiles.vue:187
3948
+ msgid "Your Tumblr URL is invalid. Please check the format and try again."
3949
  msgstr ""
3950
 
3951
+ #: src/vue/components/common/core/SocialProfiles.vue:198
3952
+ msgid "Your Yelp URL is invalid. Please check the format and try again."
3953
  msgstr ""
3954
 
3955
+ #: src/vue/components/common/core/SocialProfiles.vue:209
3956
+ msgid "Your SoundCloud URL is invalid. Please check the format and try again."
3957
  msgstr ""
3958
 
3959
+ #: src/vue/components/common/core/SocialProfiles.vue:220
3960
+ msgid "Your Wikipedia URL is invalid. Please check the format and try again."
3961
  msgstr ""
3962
 
3963
+ #: src/vue/components/common/core/SocialProfiles.vue:231
3964
+ msgid "Your MySpace URL is invalid. Please check the format and try again."
3965
  msgstr ""
3966
 
3967
+ #: src/vue/components/common/core/SocialProfiles.vue:238
3968
+ msgid "Use the same username for multiple social networks"
3969
  msgstr ""
3970
 
3971
+ #: src/vue/components/common/core/SocialProfiles.vue:239
3972
+ msgid "Your Username:"
3973
  msgstr ""
3974
 
3975
+ #: src/vue/components/common/core/MainTabs.vue:161
3976
+ msgid "Save Changes"
3977
  msgstr ""
3978
 
3979
+ #: src/vue/components/common/core/Notification.vue:100
3980
+ msgid "a minute ago"
3981
  msgstr ""
3982
 
3983
+ #: src/vue/components/common/core/Notification.vue:101
3984
+ msgid "minutes ago"
3985
  msgstr ""
3986
 
3987
+ #: src/vue/components/common/core/Notification.vue:102
3988
+ msgid "a day ago"
3989
  msgstr ""
3990
 
3991
+ #: src/vue/components/common/core/Notification.vue:103
3992
+ msgid "days ago"
 
3993
  msgstr ""
3994
 
3995
+ #: src/vue/components/common/core/Notification.vue:104
3996
+ msgid "a month ago"
3997
  msgstr ""
3998
 
3999
+ #: src/vue/components/common/core/Notification.vue:105
4000
+ msgid "months ago"
4001
  msgstr ""
4002
 
4003
+ #: src/vue/components/common/core/Notification.vue:106
4004
+ msgid "a year ago"
4005
  msgstr ""
4006
 
4007
+ #: src/vue/components/common/core/Notification.vue:107
4008
+ msgid "years ago"
4009
  msgstr ""
4010
 
4011
+ #: src/vue/components/common/core/Notification.vue:79
4012
+ msgid "Dismiss"
 
4013
  msgstr ""
4014
 
4015
+ #: src/vue/components/common/core/Notification.vue:99
4016
+ msgid "a few seconds ago"
4017
  msgstr ""
4018
 
4019
+ #: src/vue/components/common/core/NotificationCards.vue:58
4020
+ msgid "Great Scott! Where'd they all go?"
4021
  msgstr ""
4022
 
4023
+ #: src/vue/components/common/core/NotificationCards.vue:59
4024
+ msgid "You have no new notifications."
4025
  msgstr ""
4026
 
4027
+ #: src/vue/components/common/core/NotificationCards.vue:60
4028
+ msgid "See Dismissed Notifications"
4029
  msgstr ""
4030
 
4031
+ #: src/vue/classes/SiteAnalysis.js:102
4032
+ msgid "No keywords were found in the page title."
 
 
4033
  msgstr ""
4034
 
4035
+ #: src/vue/classes/SiteAnalysis.js:105
4036
+ msgid "No keywords were found in your meta description."
4037
  msgstr ""
4038
 
4039
+ #: src/vue/classes/SiteAnalysis.js:106
4040
+ msgid "No keywords were found in the meta description."
4041
  msgstr ""
4042
 
4043
+ #: src/vue/classes/SiteAnalysis.js:108
4044
+ msgid "Both the page title and meta description are missing keywords."
 
4045
  msgstr ""
4046
 
4047
+ #: src/vue/classes/SiteAnalysis.js:112
4048
+ msgid "One or more keywords were found in the title and description of your page."
 
4049
  msgstr ""
4050
 
4051
+ #: src/vue/classes/SiteAnalysis.js:113
4052
+ msgid "One or more keywords were found in the title and description of the page."
 
4053
  msgstr ""
4054
 
4055
+ #: src/vue/classes/SiteAnalysis.js:129
4056
+ msgid ""
4057
+ "You need to use titles and descriptions that are attractive to users and "
4058
+ "contain your keywords. Use the keywords naturally - keyword stuffing is "
4059
+ "usually detected and will result in a lower ranking. What's more, it's "
4060
+ "pretty off-putting for potential readers, who are more likely to click on "
4061
+ "an appealing link."
4062
  msgstr ""
4063
 
4064
+ #: src/vue/classes/SiteAnalysis.js:130
4065
+ msgid "Edit Your Page Title & Description"
4066
  msgstr ""
4067
 
4068
+ #: src/vue/classes/SiteAnalysis.js:139
4069
+ msgid "No H1 tag was found."
4070
  msgstr ""
4071
 
4072
+ # Translators: 1 - The number of H1 tags found.
4073
+ #: src/vue/classes/SiteAnalysis.js:142
4074
+ msgid "For the best SEO results there should be exactly one H1 tag on each page."
4075
  msgstr ""
4076
 
4077
+ # Translators: 1 - The number of H1 tags found.
4078
+ #: src/vue/classes/SiteAnalysis.js:142
4079
+ msgid "%1$d H1 tags were found."
4080
  msgstr ""
4081
 
4082
+ #: src/vue/classes/SiteAnalysis.js:147
4083
+ msgid "One H1 tag was found on your page."
4084
  msgstr ""
4085
 
4086
+ #: src/vue/classes/SiteAnalysis.js:148
4087
+ msgid "One H1 tag was found on the page."
4088
  msgstr ""
4089
 
4090
+ #: src/vue/classes/SiteAnalysis.js:154
4091
+ msgid ""
4092
+ "WordPress sites usually insert the page or post title as an H1 tag "
4093
+ "(although custom themes can change this behavior)."
4094
  msgstr ""
4095
 
4096
+ #: src/vue/classes/SiteAnalysis.js:154
4097
+ msgid ""
4098
+ "Ensure your most important keywords appear in the H1 tag - don't force it, "
4099
+ "use them in a natural way that makes sense to human readers."
4100
  msgstr ""
4101
 
4102
+ #: src/vue/classes/SiteAnalysis.js:154
4103
+ msgid ""
4104
+ "Because your headline plays a large role in reader engagement, it's worth "
4105
+ "spending extra time perfecting it. Many top copywriters spend hours getting "
4106
+ "their headlines just right - sometimes they spend longer on the headline "
4107
+ "than the rest of the article!"
4108
  msgstr ""
4109
 
4110
+ #: src/vue/classes/SiteAnalysis.js:154
4111
  msgid ""
4112
+ "A good headline stimulates reader interest and offers a compelling reason "
4113
+ "to read your content. It promises a believable benefit."
4114
  msgstr ""
4115
 
4116
+ #: src/vue/classes/SiteAnalysis.js:154
4117
  msgid ""
4118
+ "You should write as if your readers are selfish people with short attention "
4119
+ "spans (because that describes a large percentage of the world's "
4120
+ "population). Readers visit websites for selfish reasons - they're not there "
4121
+ "to make you happy."
4122
  msgstr ""
4123
 
4124
+ #: src/vue/classes/SiteAnalysis.js:165
4125
+ msgid "No H2 tags were found on your page."
4126
  msgstr ""
4127
 
4128
+ #: src/vue/classes/SiteAnalysis.js:166
4129
+ msgid "No H2 tags were found on the page."
4130
  msgstr ""
4131
 
4132
+ #: src/vue/classes/SiteAnalysis.js:170
4133
+ msgid "H2 tags were found on your page."
 
4134
  msgstr ""
4135
 
4136
+ #: src/vue/classes/SiteAnalysis.js:171
4137
+ msgid "H2 tags were found on the page."
4138
+ msgstr ""
4139
+
4140
+ #: src/vue/classes/SiteAnalysis.js:177
4141
+ msgid ""
4142
+ "Make sure you have a good balance of H2 tags to plain text in your content. "
4143
+ "Break the content down into logical sections, and use headings to introduce "
4144
+ "each new topic."
4145
  msgstr ""
4146
 
4147
+ #: src/vue/classes/SiteAnalysis.js:177
4148
+ msgid ""
4149
+ "Also, try to include synonyms and relevant terminology in H2 tag text. "
4150
+ "Search engines are pretty smart - they know which words usually occur "
4151
+ "together in each niche."
4152
  msgstr ""
4153
 
4154
+ #: src/vue/classes/SiteAnalysis.js:177
4155
+ msgid ""
4156
+ "It should be easy to include your main and supporting keywords in the H2 "
4157
+ "tags - after all, these keywords describe your content! If it's hard to "
4158
+ "work the keywords into your subheadings, it could be a sign that the "
4159
+ "keywords aren't closely related to your content."
4160
  msgstr ""
4161
 
4162
+ #: src/vue/classes/SiteAnalysis.js:177
4163
+ msgid ""
4164
+ "Don't try to force keywords into sub-headings if they feel unnatural. It "
4165
+ "will send the wrong message to your readers, possibly driving them away."
4166
  msgstr ""
4167
 
4168
+ #: src/vue/classes/SiteAnalysis.js:188
4169
+ msgid "Some images on your page have no alt attribute."
 
4170
  msgstr ""
4171
 
4172
+ #: src/vue/classes/SiteAnalysis.js:189
4173
+ msgid "Some images on the page have no alt attribute."
 
4174
  msgstr ""
4175
 
4176
+ #: src/vue/classes/SiteAnalysis.js:193
4177
+ msgid "All images on your page have alt attributes."
 
4178
  msgstr ""
4179
 
4180
+ #: src/vue/classes/SiteAnalysis.js:194
4181
+ msgid "All images on the page have alt attributes."
 
4182
  msgstr ""
4183
 
4184
+ #: src/vue/classes/SiteAnalysis.js:200
4185
+ msgid ""
4186
+ "Make sure every image has an alt tag, and add useful descriptions to each "
4187
+ "image. Add your keywords or synonyms - but do it in a natural way."
4188
  msgstr ""
4189
 
4190
+ #: src/vue/classes/SiteAnalysis.js:211
4191
+ msgid "No internal links were found on your page."
 
4192
  msgstr ""
4193
 
4194
+ #: src/vue/classes/SiteAnalysis.js:212
4195
+ msgid "No internal links were found on the page."
 
4196
  msgstr ""
4197
 
4198
+ #: src/vue/classes/SiteAnalysis.js:215
4199
+ msgid "Too few internal links on your page."
 
4200
  msgstr ""
4201
 
4202
+ #: src/vue/classes/SiteAnalysis.js:216
4203
+ msgid "Too few internal links on the page."
4204
  msgstr ""
4205
 
4206
+ #: src/vue/classes/SiteAnalysis.js:218
4207
+ msgid "The ratio of internal links to external links is uneven."
4208
  msgstr ""
4209
 
4210
+ #: src/vue/classes/SiteAnalysis.js:222
4211
+ msgid "Your page has a correct number of internal and external links."
4212
  msgstr ""
4213
 
4214
+ #: src/vue/classes/SiteAnalysis.js:223
4215
+ msgid "The page has a correct number of internal and external links."
4216
  msgstr ""
4217
 
4218
+ #: src/vue/classes/SiteAnalysis.js:228
4219
+ msgid "Internal:"
4220
  msgstr ""
4221
 
4222
+ #: src/vue/classes/SiteAnalysis.js:228
4223
+ msgid "External:"
4224
  msgstr ""
4225
 
4226
+ #: src/vue/classes/SiteAnalysis.js:229
4227
+ msgid ""
4228
+ "Add links to external resources that are useful for your readers. Make sure "
4229
+ "you link to high-quality sites - Google penalizes pages that link to "
4230
+ "\"spammy\" sites (ones that break the Google webmaster guidelines)."
4231
  msgstr ""
4232
 
4233
+ #: src/vue/classes/SiteAnalysis.js:229
4234
+ msgid ""
4235
+ "Ideally, the links should be highly relevant to the subject you're writing "
4236
+ "about. It's impossible to cover every aspect of a subject on a single page, "
4237
+ "but your readers may be fascinated by some detail you barely touch on. If "
4238
+ "you link to a resource where they can learn more, they'll be grateful. "
4239
+ "What's more, you'll be rewarded with higher rankings!"
4240
  msgstr ""
4241
 
4242
+ #: src/vue/classes/SiteAnalysis.js:240
4243
+ msgid "No canonical link tag found on your page."
4244
  msgstr ""
4245
 
4246
+ #: src/vue/classes/SiteAnalysis.js:241
4247
+ msgid "No canonical link tag found on the page."
4248
  msgstr ""
4249
 
4250
+ #: src/vue/classes/SiteAnalysis.js:245
4251
+ msgid "Your page is using the canonical link tag."
4252
  msgstr ""
4253
 
4254
+ #: src/vue/classes/SiteAnalysis.js:246
4255
+ msgid "The page is using the canonical link tag."
4256
  msgstr ""
4257
 
4258
+ #: src/vue/classes/SiteAnalysis.js:252
4259
+ msgid ""
4260
+ "Every page on your site should have a <link> tag with a 'rel=\"canonical\"' "
4261
+ "attribute. The link tag should go inside the page's head tag, and it should "
4262
+ "contain the page's \"correct\" URL."
4263
  msgstr ""
4264
 
4265
+ #: src/vue/classes/SiteAnalysis.js:252
4266
+ msgid ""
4267
+ "If you've republished an article from another source (such as another site "
4268
+ "or a different section of your own site) then you need to pick which URL is "
4269
+ "the \"correct\" one and use that!"
4270
  msgstr ""
4271
 
4272
+ #: src/vue/classes/SiteAnalysis.js:263
4273
+ msgid "Your page contains a noindex header or meta tag."
4274
  msgstr ""
4275
 
4276
+ #: src/vue/classes/SiteAnalysis.js:264
4277
+ msgid "The page contains a noindex header or meta tag."
4278
  msgstr ""
4279
 
4280
+ #: src/vue/classes/SiteAnalysis.js:268
4281
+ msgid "Your page does not contain any noindex header or meta tag."
4282
  msgstr ""
4283
 
4284
+ #: src/vue/classes/SiteAnalysis.js:269
4285
+ msgid "The page does not contain any noindex header or meta tag."
4286
  msgstr ""
4287
 
4288
+ #: src/vue/classes/SiteAnalysis.js:274
4289
+ msgid ""
4290
+ "Only ever use noindex meta tag or header on pages you want to keep out of "
4291
+ "the reach of search engines!"
4292
  msgstr ""
4293
 
4294
+ #: src/vue/classes/SiteAnalysis.js:285
4295
+ msgid ""
4296
+ "The www and non-www versions of your URL are not redirected to the same "
4297
+ "site."
4298
  msgstr ""
4299
 
4300
+ #: src/vue/classes/SiteAnalysis.js:286
4301
+ msgid "The www and non-www versions of the URL are not redirected to the same site."
4302
  msgstr ""
4303
 
4304
+ #: src/vue/classes/SiteAnalysis.js:290
4305
+ msgid ""
4306
+ "Both the www and non-www versions of your URL are redirected to the same "
4307
+ "site."
4308
  msgstr ""
4309
 
4310
+ #: src/vue/classes/SiteAnalysis.js:291
4311
+ msgid ""
4312
+ "Both the www and non-www versions of the URL are redirected to the same "
4313
+ "site."
4314
  msgstr ""
4315
 
4316
+ #: src/vue/classes/SiteAnalysis.js:296
4317
+ msgid ""
4318
+ "Decide whether you want your site's URLs to include a \"www\", or if you "
4319
+ "prefer a plain domain name. There are marketing pros and cons for each "
4320
+ "choice, but neither one is better or worse for SEO purposes - as long as "
4321
+ "you're consistent."
4322
  msgstr ""
4323
 
4324
+ #: src/vue/classes/SiteAnalysis.js:296
4325
+ msgid ""
4326
+ "You should use HTTP redirections (301 permanant redirects) to pass PageRank "
4327
+ "from the \"wrong\" URLs to the standard (canonical) ones. That way, your "
4328
+ "content will still benefit from backlinks if someone makes a mistake and "
4329
+ "uses the wrong URL."
4330
  msgstr ""
4331
 
4332
+ #: src/vue/classes/SiteAnalysis.js:30
4333
+ msgid "We couldn't find an SEO Title."
4334
  msgstr ""
4335
 
4336
+ #: src/vue/classes/SiteAnalysis.js:307
4337
+ msgid "Your robots.txt file is missing or unavailable."
4338
  msgstr ""
4339
 
4340
+ #: src/vue/classes/SiteAnalysis.js:308
4341
+ msgid "The robots.txt file is missing or unavailable."
4342
  msgstr ""
4343
 
4344
+ #: src/vue/classes/SiteAnalysis.js:327
4345
  msgid ""
4346
+ "Your site has a robots.txt file which includes one or more \"disallow\" "
4347
+ "directives."
 
 
 
4348
  msgstr ""
4349
 
4350
+ #: src/vue/classes/SiteAnalysis.js:328
4351
+ msgid ""
4352
+ "The site has a robots.txt file which includes one or more \"disallow\" "
4353
+ "directives."
4354
  msgstr ""
4355
 
4356
+ #: src/vue/classes/SiteAnalysis.js:332
4357
+ msgid "Your site has a robots.txt file."
4358
  msgstr ""
4359
 
4360
+ #: src/vue/classes/SiteAnalysis.js:333
4361
+ msgid "The site has a robots.txt file."
 
4362
  msgstr ""
4363
 
4364
+ # Translators: 1 - The length of the SEO title as a number.
4365
+ #: src/vue/classes/SiteAnalysis.js:34
4366
+ msgid "Your SEO title is only %1$d characters long, which is too short."
4367
  msgstr ""
4368
 
4369
+ # Translators: 1 - The Plugin short name ("AIOSEO").
4370
+ #: src/vue/classes/SiteAnalysis.js:340
4371
+ msgid "Make sure that you only block parts you don't want to be indexed."
4372
  msgstr ""
4373
 
4374
+ # Translators: 1 - The Plugin short name ("AIOSEO").
4375
+ #: src/vue/classes/SiteAnalysis.js:340
4376
+ msgid ""
4377
+ "You can manually create a robots.txt file and upload it to your site's web "
4378
+ "root. A simpler option is to use a plugin for your CMS platform."
4379
  msgstr ""
4380
 
4381
+ # Translators: 1 - The Plugin short name ("AIOSEO").
4382
+ #: src/vue/classes/SiteAnalysis.js:340
4383
  msgid ""
4384
+ "%1$s has a full suite of tools to manage the robots.txt file, along with "
4385
+ "other related technologies, like XML Sitemaps."
4386
  msgstr ""
4387
 
4388
+ #: src/vue/classes/SiteAnalysis.js:350
4389
+ msgid "Some Open Graph meta tags are missing."
4390
+ msgstr ""
4391
+
4392
+ #: src/vue/classes/SiteAnalysis.js:352
4393
+ msgid "Duplicate Open Graph meta tags were found."
4394
  msgstr ""
4395
 
4396
+ #: src/vue/classes/SiteAnalysis.js:355
4397
+ msgid "All the required Open Graph meta tags have been found."
 
 
 
 
4398
  msgstr ""
4399
 
4400
+ # Translators: 1 - The length of the SEO title as a number.
4401
+ #: src/vue/classes/SiteAnalysis.js:36
4402
+ msgid "The SEO title is only %1$d characters long, which is too short."
 
4403
  msgstr ""
4404
 
4405
+ #: src/vue/classes/SiteAnalysis.js:362
4406
  msgid ""
4407
+ "Insert a customized Open Graph meta tag for each important page on your "
4408
+ "site. The standard is very well documented - you can learn more from "
4409
+ "Facebook's developer pages."
 
4410
  msgstr ""
4411
 
4412
+ #: src/vue/classes/SiteAnalysis.js:362
4413
+ msgid ""
4414
+ "%1$s provides a simple but powerful interface to craft your Open Graph "
4415
+ "data. You get immediate feedback with an interactive preview, and you don't "
4416
+ "have to mess around with raw HTML markup."
4417
  msgstr ""
4418
 
4419
+ #: src/vue/classes/SiteAnalysis.js:373
4420
+ msgid "No Schema.org data was found on your page."
4421
  msgstr ""
4422
 
4423
+ #: src/vue/classes/SiteAnalysis.js:374
4424
+ msgid "No Schema.org data was found on the page."
4425
  msgstr ""
4426
 
4427
+ #: src/vue/classes/SiteAnalysis.js:378
4428
+ msgid "We found Schema.org data on your page."
4429
  msgstr ""
4430
 
4431
+ #: src/vue/classes/SiteAnalysis.js:379
4432
+ msgid "We found Schema.org data on the page."
 
 
 
4433
  msgstr ""
4434
 
4435
+ # Translators: 1 - The Plugin short name ("AIOSEO").
4436
+ #: src/vue/classes/SiteAnalysis.js:385
4437
  msgid ""
4438
+ "%1$s makes it extremely easy to add highly relevant Schema.org markup to "
4439
+ "your site. It has a simple graphical interface, so you don't have to get "
4440
+ "your hands dirty with complex HTML markup."
4441
  msgstr ""
4442
 
4443
+ #: src/vue/classes/SiteAnalysis.js:386
4444
+ msgid "Edit Your Page"
 
 
 
 
4445
  msgstr ""
4446
 
4447
+ #: src/vue/classes/SiteAnalysis.js:396
4448
+ msgid "Your server is not using \"expires\" headers for your images."
 
 
4449
  msgstr ""
4450
 
4451
+ #: src/vue/classes/SiteAnalysis.js:397
4452
+ msgid "The server is not using \"expires\" headers for the images."
4453
  msgstr ""
4454
 
4455
+ # Translators: 1 - The length of the SEO title as a number.
4456
+ #: src/vue/classes/SiteAnalysis.js:40
4457
+ msgid "Your SEO title is %1$d characters long, which is too long."
4458
  msgstr ""
4459
 
4460
+ #: src/vue/classes/SiteAnalysis.js:401
4461
+ msgid "Your server is using \"expires\" headers for your images."
4462
  msgstr ""
4463
 
4464
+ #: src/vue/classes/SiteAnalysis.js:402
4465
+ msgid "The server is using \"expires\" headers for the images."
4466
  msgstr ""
4467
 
4468
+ #: src/vue/classes/SiteAnalysis.js:407
4469
  msgid ""
4470
+ "If you use the Apache or NGINX web servers, you can edit the configuration "
4471
+ "files to set the \"expires\" header for all image files. For Apache, you "
4472
+ "can also use a \".htaccess\" file to change the settings for each folder."
4473
  msgstr ""
4474
 
4475
+ #: src/vue/classes/SiteAnalysis.js:407
4476
+ msgid ""
4477
+ "Alternatively, you can use a CMS plugin to simplify the process - it's a "
4478
+ "more user-friendly option. WordPress has a host of caching plugins, and "
4479
+ "most of them give you options to control the caching headers."
4480
  msgstr ""
4481
 
4482
+ #: src/vue/classes/SiteAnalysis.js:415
4483
+ msgid "Some Javascript files don't seem to be minified."
4484
  msgstr ""
4485
 
4486
+ #: src/vue/classes/SiteAnalysis.js:418
4487
+ msgid "All Javascript files appear to be minified."
4488
  msgstr ""
4489
 
4490
+ # Translators: 1 - The length of the SEO title as a number.
4491
+ #: src/vue/classes/SiteAnalysis.js:42
4492
+ msgid "The SEO title is %1$d characters long, which is too long."
4493
  msgstr ""
4494
 
4495
+ #: src/vue/classes/SiteAnalysis.js:424
4496
+ msgid ""
4497
+ "JavaScript files appear in many places, including frameworks (like "
4498
+ "Bootstrap), themes and templates, and third-party plugins."
4499
  msgstr ""
4500
 
4501
+ #: src/vue/classes/SiteAnalysis.js:424
4502
+ msgid "We recommend tracking down where the un-minified JavaScript files come from"
4503
  msgstr ""
4504
 
4505
+ #: src/vue/classes/SiteAnalysis.js:424
4506
+ msgid ""
4507
+ "There are server-side tools (including WordPress plugins) to automatically "
4508
+ "minify JavaScript files."
4509
  msgstr ""
4510
 
4511
+ #: src/vue/classes/SiteAnalysis.js:432
4512
+ msgid "Some CSS files don't seem to be minified."
4513
  msgstr ""
4514
 
4515
+ #: src/vue/classes/SiteAnalysis.js:435
4516
+ msgid "All CSS files appear to be minified."
4517
  msgstr ""
4518
 
4519
+ #: src/vue/classes/SiteAnalysis.js:441
4520
  msgid ""
4521
+ "CSS files appear in many places, including frameworks (like Bootstrap), "
4522
+ "themes and templates, and third-party plugins."
 
4523
  msgstr ""
4524
 
4525
+ #: src/vue/classes/SiteAnalysis.js:441
4526
+ msgid "We recommend tracking down where the un-minified CSS files come from."
4527
+ msgstr ""
4528
+
4529
+ #: src/vue/classes/SiteAnalysis.js:441
4530
  msgid ""
4531
+ "There are server-side tools (including WordPress plugins) to automatically "
4532
+ "minify CSS files."
 
 
 
4533
  msgstr ""
4534
 
4535
+ # Translators: 1 - The total number of page requests.
4536
+ #: src/vue/classes/SiteAnalysis.js:450
4537
+ msgid "Your page makes %1$d requests."
4538
  msgstr ""
4539
 
4540
+ # Translators: 1 - The total number of page requests.
4541
+ #: src/vue/classes/SiteAnalysis.js:452
4542
+ msgid "The page makes %1$d requests."
4543
  msgstr ""
4544
 
4545
+ #: src/vue/classes/SiteAnalysis.js:454
4546
+ msgid "More than 20 requests can result in slow page loading."
4547
  msgstr ""
4548
 
4549
+ #: src/vue/classes/SiteAnalysis.js:462
4550
+ msgid "Images:"
4551
  msgstr ""
4552
 
4553
+ #: src/vue/classes/SiteAnalysis.js:462
4554
+ msgid "JavaScript:"
 
 
 
4555
  msgstr ""
4556
 
4557
+ #: src/vue/classes/SiteAnalysis.js:462
4558
+ msgid "CSS:"
 
 
 
4559
  msgstr ""
4560
 
4561
+ #: src/vue/classes/SiteAnalysis.js:463
4562
+ msgid "Try to replace embedded objects with HTML5 alternatives."
4563
  msgstr ""
4564
 
4565
+ # Translators: 1 - The length of the SEO title as a number.
4566
+ #: src/vue/classes/SiteAnalysis.js:47
4567
+ msgid "Your SEO title is set and is %1$d characters long."
4568
  msgstr ""
4569
 
4570
+ # Translators: 1 - The total number of page requests.
4571
+ #: src/vue/classes/SiteAnalysis.js:471
4572
+ msgid "The size of the HTML document is %1$d Kb."
4573
  msgstr ""
4574
 
4575
+ #: src/vue/classes/SiteAnalysis.js:473
4576
+ msgid "This is over our recommendation of 50 Kb."
4577
  msgstr ""
4578
 
4579
+ #: src/vue/classes/SiteAnalysis.js:477
4580
+ msgid "This is under the average of 33 Kb."
 
 
4581
  msgstr ""
4582
 
4583
+ #: src/vue/classes/SiteAnalysis.js:485
4584
  msgid ""
4585
+ "In order to reduce page size, remove any unnecessary tags from your markup. "
4586
+ "This includes developer comments, which are invisible to your users - "
4587
+ "search engines ignore the text in comments, too."
4588
  msgstr ""
4589
 
4590
+ #: src/vue/classes/SiteAnalysis.js:485
4591
+ msgid ""
4592
+ "Sometimes inline CSS is a culprit. A little inline CSS can help your page "
4593
+ "render faster. Too much will bloat the HTML file and increase the page "
4594
+ "loading time."
4595
  msgstr ""
4596
 
4597
+ #: src/vue/classes/SiteAnalysis.js:485
4598
  msgid ""
4599
+ "You can reduce CSS repetition with HTML class and ID attributes. Often the "
4600
+ "same rules will be repeated across many page elements, embedded in each "
4601
+ "tag's \"style\" attribute. You can extract them into a single \"style\" tag "
4602
+ "and use classes and ID's to target each element."
4603
  msgstr ""
4604
 
4605
+ #: src/vue/classes/SiteAnalysis.js:485
4606
  msgid ""
4607
+ "Removing white space can also have an impact on your HTML page's size. "
4608
+ "White space characters like carriage returns and tabs are ignored by the "
4609
+ "browser, but they make the markup easier for developers to read. So you "
4610
+ "should always strip them from your templates or themes before you use them "
4611
+ "in a production environment."
4612
  msgstr ""
4613
 
4614
+ # Translators: 1 - The length of the SEO title as a number.
4615
+ #: src/vue/classes/SiteAnalysis.js:49
4616
+ msgid "The SEO title is set and is %1$d characters long."
 
 
 
4617
  msgstr ""
4618
 
4619
+ # Translators: 1 - The total number of page requests.
4620
+ #: src/vue/classes/SiteAnalysis.js:495
4621
  msgid ""
4622
+ "The response time of your page is %1$f seconds. It is recommended to keep "
4623
+ "it equal to or below 0.2 seconds."
 
 
4624
  msgstr ""
4625
 
4626
+ # Translators: 1 - The total number of page requests.
4627
+ #: src/vue/classes/SiteAnalysis.js:497
4628
+ msgid ""
4629
+ "The response time of the page is %1$f seconds. It is recommended to keep it "
4630
+ "equal to or below 0.2 seconds."
4631
  msgstr ""
4632
 
4633
+ #: src/vue/classes/SiteAnalysis.js:501
4634
+ msgid "Your response time is under 0.2 seconds."
4635
  msgstr ""
4636
 
4637
+ #: src/vue/classes/SiteAnalysis.js:502
4638
+ msgid "The response time is under 0.2 seconds."
4639
  msgstr ""
4640
 
4641
+ #: src/vue/classes/SiteAnalysis.js:507
4642
  msgid ""
4643
+ "If you want to continue to improve your response time, the simplest and "
4644
+ "fastest fix is to use a caching plugin. Caching plugins keep a cached "
4645
+ "version of each page on your site. Instead of building the page from "
4646
+ "scratch, the server will send the cached copy."
4647
  msgstr ""
4648
 
4649
+ #: src/vue/classes/SiteAnalysis.js:507
4650
  msgid ""
4651
+ "You can get an even greater boost in speed with a content delivery network "
4652
+ "service. These services host a copy of your content on multiple servers "
4653
+ "spread out across the globe. A user's request is handled by the edge server "
4654
+ "that's closest to their physical location, so the content arrives "
4655
+ "incredibly fast."
4656
  msgstr ""
4657
 
4658
+ #: src/vue/classes/SiteAnalysis.js:516
4659
+ msgid "Plugins from your website are publicly visible."
4660
  msgstr ""
4661
 
4662
+ #: src/vue/classes/SiteAnalysis.js:517
4663
+ msgid "Plugins from the website are publicly visible."
4664
  msgstr ""
4665
 
4666
+ #: src/vue/classes/SiteAnalysis.js:521
4667
+ msgid "You have no visible plugins!"
 
4668
  msgstr ""
4669
 
4670
+ #: src/vue/classes/SiteAnalysis.js:522
4671
+ msgid "There are no visible plugins."
 
4672
  msgstr ""
4673
 
4674
+ #: src/vue/classes/SiteAnalysis.js:528
 
4675
  msgid ""
4676
+ "It's a great idea to try and hide the plugins you have visible. From time "
4677
+ "to time vulnerabilities are found in plugins and if your site is not "
4678
+ "updated in a timely fashion, outdated plugins and themes can be exploited."
4679
  msgstr ""
4680
 
4681
+ # Translators: 1 - The name of the theme.
4682
+ #: src/vue/classes/SiteAnalysis.js:538
4683
+ msgid "Anyone can see that you are using the %1$s theme."
 
 
4684
  msgstr ""
4685
 
4686
+ # Translators: 1 - The name of the theme.
4687
+ #: src/vue/classes/SiteAnalysis.js:540
4688
+ msgid "Anyone can see that they are using the %1$s theme."
4689
  msgstr ""
4690
 
4691
+ #: src/vue/classes/SiteAnalysis.js:544
4692
+ msgid "Your theme is not visible!"
4693
  msgstr ""
4694
 
4695
+ #: src/vue/classes/SiteAnalysis.js:545
4696
+ msgid "The theme is not visible."
4697
  msgstr ""
4698
 
4699
+ #: src/vue/classes/SiteAnalysis.js:55
4700
+ msgid ""
4701
+ "Ensure your page's title includes your target keywords, and design it to "
4702
+ "encourage users to click."
4703
  msgstr ""
4704
 
4705
+ #: src/vue/classes/SiteAnalysis.js:55
4706
  msgid ""
4707
+ "Writing compelling titles is both a science and an art. There are automated "
4708
+ "tools that can analyze your title against known metrics for readability and "
4709
+ "click-worthiness. You also need to understand the psychology of your target "
4710
+ "audience."
4711
  msgstr ""
4712
 
4713
+ #: src/vue/classes/SiteAnalysis.js:550
4714
  msgid ""
4715
+ "It's a great idea to try and hide the theme you have visible. From time to "
4716
+ "time vulnerabilities are found in themes and if your site is not updated in "
4717
+ "a timely fashion, outdated plugins and themes can be exploited."
4718
  msgstr ""
4719
 
4720
+ #: src/vue/classes/SiteAnalysis.js:559
4721
+ msgid "Directory Listing seems to be enabled on your server."
4722
  msgstr ""
4723
 
4724
+ #: src/vue/classes/SiteAnalysis.js:56
4725
+ msgid "Edit Your Page Title"
4726
  msgstr ""
4727
 
4728
+ #: src/vue/classes/SiteAnalysis.js:560
4729
+ msgid "Directory Listing seems to be enabled on the server."
4730
  msgstr ""
4731
 
4732
+ #: src/vue/classes/SiteAnalysis.js:564
4733
+ msgid "Directory Listing seems to be disabled on your server."
4734
  msgstr ""
4735
 
4736
+ #: src/vue/classes/SiteAnalysis.js:565
4737
+ msgid "Directory Listing seems to be disabled on the server."
 
 
 
 
4738
  msgstr ""
4739
 
4740
+ #: src/vue/classes/SiteAnalysis.js:570
4741
+ msgid ""
4742
+ "Fortunately, every popular web server has options to prevent directory "
4743
+ "listings. They'll show a \"403 forbidden\" message instead."
4744
  msgstr ""
4745
 
4746
+ #: src/vue/classes/SiteAnalysis.js:570
4747
+ msgid ""
4748
+ "Alternatively, you can create an empty index.php file and save it in every "
4749
+ "directory on your site. That's an approach that WordPress uses and it works "
4750
+ "well."
4751
  msgstr ""
4752
 
4753
+ #: src/vue/classes/SiteAnalysis.js:579
4754
+ msgid "It looks like your site has been added to one of Google's malwares lists."
4755
  msgstr ""
4756
 
4757
+ #: src/vue/classes/SiteAnalysis.js:580
4758
+ msgid "It looks like this site has been added to one of Google's malwares lists."
 
4759
  msgstr ""
4760
 
4761
+ #: src/vue/classes/SiteAnalysis.js:584
4762
+ msgid "Google has not flagged your site for malware!"
4763
  msgstr ""
4764
 
4765
+ #: src/vue/classes/SiteAnalysis.js:585
4766
+ msgid "Google has not flagged this site for malware."
4767
  msgstr ""
4768
 
4769
+ #: src/vue/classes/SiteAnalysis.js:590
4770
  msgid ""
4771
+ "Google Safe browsing shows warnings and alerts to users if they visit a "
4772
+ "suspicious website. If you are flagged by Google Safe Browsing, you should "
4773
+ "take immediate steps to fix that."
4774
  msgstr ""
4775
 
4776
+ #: src/vue/classes/SiteAnalysis.js:599
4777
+ msgid "Your site is not using a secure transfer protocol (https)."
 
 
 
4778
  msgstr ""
4779
 
4780
+ #: src/vue/classes/SiteAnalysis.js:600
4781
+ msgid "The site is not using a secure transfer protocol (https)."
4782
  msgstr ""
4783
 
4784
+ #: src/vue/classes/SiteAnalysis.js:604
4785
+ msgid "Your site is using a secure transfer protocol (https)."
4786
  msgstr ""
4787
 
4788
+ #: src/vue/classes/SiteAnalysis.js:605
4789
+ msgid "The site is using a secure transfer protocol (https)."
 
4790
  msgstr ""
4791
 
4792
+ #: src/vue/classes/SiteAnalysis.js:610
4793
  msgid ""
4794
+ "If you aren't using an SSL certificate for your site that means you are "
4795
+ "losing a lot of potential traffic. We recommend getting an SSL certificate "
4796
+ "installed immediately."
4797
  msgstr ""
4798
 
4799
+ #: src/vue/classes/SiteAnalysis.js:66
4800
+ msgid "No meta description was found for your page."
4801
  msgstr ""
4802
 
4803
+ #: src/vue/classes/SiteAnalysis.js:67
4804
+ msgid "No meta description was found for the page."
 
 
4805
  msgstr ""
4806
 
4807
+ # Translators: 1 - The length of the meta description as a number.
4808
+ #: src/vue/classes/SiteAnalysis.js:71
4809
+ msgid "Your meta description is only %1$d characters long, which is too short."
4810
  msgstr ""
4811
 
4812
+ # Translators: 1 - The length of the meta description as a number.
4813
+ #: src/vue/classes/SiteAnalysis.js:73
4814
+ msgid "The meta description is only %1$d characters long, which is too short."
4815
  msgstr ""
4816
 
4817
+ # Translators: 1 - The length of the meta description as a number.
4818
+ #: src/vue/classes/SiteAnalysis.js:77
4819
+ msgid "Your meta description is %1$d characters long, which is too long."
 
4820
  msgstr ""
4821
 
4822
+ # Translators: 1 - The length of the meta description as a number.
4823
+ #: src/vue/classes/SiteAnalysis.js:79
4824
+ msgid "The meta description is %1$d characters long, which is too long."
4825
  msgstr ""
4826
 
4827
+ # Translators: 1 - The length of the meta description as a number.
4828
+ #: src/vue/classes/SiteAnalysis.js:84
4829
+ msgid "Your meta description is set and is %1$d characters long."
4830
+ msgstr ""
4831
+
4832
+ # Translators: 1 - The length of the meta description as a number.
4833
+ #: src/vue/classes/SiteAnalysis.js:86
4834
+ msgid "The meta description is set and is %1$d characters long."
4835
+ msgstr ""
4836
+
4837
+ #: src/vue/classes/SiteAnalysis.js:92
4838
  msgid ""
4839
+ "Write a meta description for your page. Use your target keywords (in a "
4840
+ "natural way) and write with human readers in mind. Summarize the content - "
4841
+ "describe the topics your article discusses."
4842
+ msgstr ""
4843
+
4844
+ #: src/vue/classes/SiteAnalysis.js:92
4845
+ msgid ""
4846
+ "The description should stimulate reader interest and get them to click on "
4847
+ "the article. Think of it as a mini-advertisement for your content."
4848
  msgstr ""
4849
 
4850
+ #: src/vue/classes/SiteAnalysis.js:93
4851
+ msgid "Edit Your Meta Description"
 
4852
  msgstr ""
4853
 
4854
+ #: src/vue/components/common/core/HtmlTagsEditor.vue:98
4855
+ msgid "Click on the tags below to insert variables into your template."
 
4856
  msgstr ""
4857
 
4858
+ #: src/vue/components/common/core/HtmlTagsEditor.vue:99
4859
+ msgid "View all tags"
4860
  msgstr ""
4861
 
4862
+ #: src/vue/components/common/core/Help.vue:126
4863
+ msgid "Close"
4864
  msgstr ""
4865
 
4866
+ #: src/vue/components/common/core/Help.vue:127
4867
+ msgid "Search"
4868
  msgstr ""
4869
 
4870
+ #: src/vue/components/common/core/Help.vue:128
4871
+ msgid "View All"
4872
  msgstr ""
4873
 
4874
+ #: src/vue/components/common/core/Help.vue:129
4875
+ msgid "Docs"
4876
  msgstr ""
4877
 
4878
+ #: src/vue/components/common/core/Help.vue:130
4879
+ msgid "View Documentation"
 
4880
  msgstr ""
4881
 
4882
+ # Translators: 1 - The plugin short name ("AIOEO").
4883
+ #: src/vue/components/common/core/Help.vue:132
4884
+ msgid "Browse documentation, reference material, and tutorials for %1$s."
4885
  msgstr ""
4886
 
4887
+ #: src/vue/components/common/core/Help.vue:133
4888
+ msgid "View All Documentation"
4889
  msgstr ""
4890
 
4891
+ #: src/vue/components/common/core/Help.vue:134
4892
+ msgid "Get Support"
4893
  msgstr ""
4894
 
4895
+ #: src/vue/components/common/core/Help.vue:135
4896
+ msgid "Submit a ticket and our world class support team will be in touch soon."
 
 
 
4897
  msgstr ""
4898
 
4899
+ #: src/vue/components/common/core/Help.vue:136
4900
+ msgid "Submit a Support Ticket"
 
 
 
4901
  msgstr ""
4902
 
4903
+ #: src/vue/components/common/core/FeatureCard.vue:122
4904
+ #: src/vue/components/common/core/Help.vue:137
4905
+ msgid "Upgrade to Pro"
 
 
 
4906
  msgstr ""
4907
 
4908
+ #: src/vue/components/common/core/GettingStarted.vue:83
4909
+ msgid "How to Get Started"
 
 
 
 
 
4910
  msgstr ""
4911
 
4912
+ # Translators: 1 - The plugin name ("All in One SEO").
4913
+ #: src/vue/components/common/core/GettingStarted.vue:85
4914
+ msgid "Welcome to %1$s"
4915
  msgstr ""
4916
 
4917
+ # Translators: 1 - The plugin name ("All in One SEO").
4918
+ #: src/vue/components/common/core/GettingStarted.vue:87
4919
  msgid ""
4920
+ "Thank you for choosing the best WordPress SEO plugin. %1$s default settings "
4921
+ "works great out of the box. We created the setup wizard to guide you "
4922
+ "through some important configuration settings & custom-tailored SEO best "
4923
+ "practices for your site to help you improve rankings."
4924
  msgstr ""
4925
 
4926
+ #: src/vue/components/common/core/GettingStarted.vue:88
4927
+ msgid "Launch the Setup Wizard"
 
 
 
4928
  msgstr ""
4929
 
4930
+ #: src/vue/components/common/core/GettingStarted.vue:89
4931
+ msgid "Read the Setup Guide"
4932
  msgstr ""
4933
 
4934
+ #: src/vue/components/common/core/FeatureCard.vue:123
4935
+ msgid "Upgrade Your Plan"
4936
  msgstr ""
4937
 
4938
+ #: src/vue/components/common/core/ExcludePosts.vue:100
4939
+ msgid "No results found for that title. Try again!"
 
 
 
 
4940
  msgstr ""
4941
 
4942
+ #: src/vue/components/common/core/ExcludePosts.vue:101
4943
+ msgid "Clear"
 
 
 
 
 
4944
  msgstr ""
4945
 
4946
+ #: src/vue/components/common/core/ExcludePosts.vue:102
4947
+ msgid "ID"
4948
  msgstr ""
4949
 
4950
+ #: src/vue/components/common/core/ExcludePosts.vue:103
4951
+ msgid "Type"
4952
  msgstr ""
4953
 
4954
+ #: src/vue/components/common/core/ExcludePosts.vue:98
4955
+ msgid "Type to search..."
4956
  msgstr ""
4957
 
4958
+ #: src/vue/components/common/core/ExcludePosts.vue:99
4959
+ msgid "Begin typing a title to search..."
4960
  msgstr ""
4961
 
4962
+ #: src/vue/components/common/core/CopyBlock.vue:48
4963
+ msgid "Click to Copy"
 
 
 
4964
  msgstr ""
4965
 
4966
+ #: src/vue/components/common/core/AdditionalPages.vue:100
4967
+ msgid "Last Modified"
 
4968
  msgstr ""
4969
 
4970
+ #: src/vue/components/common/core/AdditionalPages.vue:102
4971
+ msgid "Add New"
 
4972
  msgstr ""
4973
 
4974
+ #: src/vue/components/common/core/AdditionalPages.vue:103
4975
+ msgid "always"
4976
  msgstr ""
4977
 
4978
+ # Translators: 1 - An example URL (e.g. https://aioseo.com/example).
4979
+ #: src/vue/components/common/core/AdditionalPages.vue:96
4980
+ msgid "Enter a page URL, e.g. %1$s"
4981
  msgstr ""
4982
 
4983
+ #: src/vue/components/common/core/AdditionalPages.vue:97
4984
+ msgid "Page URL"
 
 
4985
  msgstr ""
4986
 
4987
+ #: src/vue/components/common/base/Editor.vue:122
4988
+ msgid "Search for an item..."
 
 
 
 
4989
  msgstr ""
4990
 
4991
+ #: src/vue/components/common/base/Editor.vue:123
4992
+ msgid "Enter a custom field name..."
 
 
 
4993
  msgstr ""
4994
 
4995
+ #: src/vue/utils/tags.js:64
4996
+ msgid "Product Short Description"
4997
  msgstr ""
4998
 
4999
+ #: src/vue/utils/tags.js:65
5000
+ msgid "A short description for your product."
5001
  msgstr ""
5002
 
5003
+ #: src/vue/utils/tags.js:66
5004
+ msgid "Sample short description for your product."
5005
  msgstr ""
5006
 
5007
+ #: src/vue/utils/tags.js:82
5008
+ msgid "Archive"
5009
  msgstr ""
5010
 
5011
+ #: src/vue/utils/tags.js:83
5012
+ msgid "archive"
5013
  msgstr ""
5014
 
5015
+ #: src/vue/plugins/constants.js:1041
5016
+ msgid "Manually Enter Type"
 
 
5017
  msgstr ""
5018
 
5019
+ #: src/vue/plugins/constants.js:1043
5020
+ msgid "Technical Support"
 
 
 
5021
  msgstr ""
5022
 
5023
+ #: src/vue/plugins/constants.js:1044
5024
+ msgid "Billing Support"
5025
  msgstr ""
5026
 
5027
+ #: src/vue/plugins/constants.js:1045
5028
+ msgid "Bill Payment"
5029
  msgstr ""
5030
 
5031
+ #: src/vue/plugins/constants.js:1046
5032
+ msgid "Sales"
5033
  msgstr ""
5034
 
5035
+ #: src/vue/plugins/constants.js:1047
5036
+ msgid "Reservations"
5037
  msgstr ""
5038
 
5039
+ #: src/vue/plugins/constants.js:1048
5040
+ msgid "Credit Card Support"
 
 
 
5041
  msgstr ""
5042
 
5043
+ #: src/vue/plugins/constants.js:1049
5044
+ msgid "Emergency"
5045
  msgstr ""
5046
+
5047
+ #: src/vue/plugins/constants.js:1050
5048
+ msgid "Bagage Tracking"
5049
  msgstr ""
5050
 
5051
+ #: src/vue/plugins/constants.js:1051
5052
+ msgid "Roadside Assistance"
5053
  msgstr ""
5054
 
5055
+ #: src/vue/plugins/constants.js:1052
5056
+ msgid "Package Tracking"
5057
  msgstr ""
5058
 
5059
+ #: src/vue/plugins/constants.js:1059
5060
  msgid ""
5061
+ "Sitemaps are a list of all your content that search engines use when they "
5062
+ "crawl your site."
 
5063
  msgstr ""
5064
 
5065
+ #: src/vue/plugins/constants.js:1069
5066
+ msgid "Optimized Search Appearance"
5067
  msgstr ""
5068
 
5069
+ #: src/vue/plugins/constants.js:1070
5070
+ msgid "Get all the right tools to make sure your website shows up in Google Search."
5071
  msgstr ""
5072
 
5073
+ #: src/vue/plugins/constants.js:1078
5074
+ msgid ""
5075
+ "Get the #1 analytics plugin to see how people find and use your website. "
5076
+ "Simply put, see stats that matter."
5077
  msgstr ""
5078
 
5079
+ #: src/vue/plugins/constants.js:1085
5080
+ msgid "Breadcrumbs"
 
5081
  msgstr ""
5082
 
5083
+ #: src/vue/plugins/constants.js:1094
5084
+ msgid ""
5085
+ "Globally control Title and Alt attributes for attachment pages and images "
5086
+ "that are embedded in your content."
5087
  msgstr ""
5088
 
5089
+ #: src/vue/plugins/constants.js:1105
5090
+ msgid ""
5091
+ "Tell Google about your business for display as a Knowledge Graph card or "
5092
+ "business carousel."
5093
  msgstr ""
5094
 
5095
+ #: src/vue/plugins/constants.js:1116
5096
+ msgid "Generate an XML Sitemap specifically for video content on your site."
 
5097
  msgstr ""
5098
 
5099
+ #: src/vue/plugins/constants.js:1127
5100
+ msgid "Submit articles to Google News that were published in the last 48 hours."
 
5101
  msgstr ""
5102
 
5103
+ #: src/vue/plugins/constants.js:1137
5104
+ msgid "Smart Redirects + 404 Detection"
 
 
 
5105
  msgstr ""
5106
 
5107
+ #: src/vue/plugins/constants.js:1145
5108
+ msgid "Internal Link Building Assistant"
 
 
5109
  msgstr ""
5110
 
5111
+ #: src/vue/plugins/constants.js:1153
5112
+ msgid "Advanced Rich Snippets + Schema Markups"
5113
  msgstr ""
5114
 
5115
+ #: src/vue/plugins/constants.js:1164
5116
+ msgid "Activities"
 
5117
  msgstr ""
5118
 
5119
+ #: src/vue/plugins/constants.js:1166
5120
+ msgid "Activity"
5121
  msgstr ""
5122
 
5123
+ #: src/vue/plugins/constants.js:1167
5124
+ msgid "Sport"
5125
  msgstr ""
5126
 
5127
+ #: src/vue/plugins/constants.js:1171
5128
+ msgid "Businesses"
5129
  msgstr ""
5130
 
5131
+ #: src/vue/plugins/constants.js:1173
5132
+ msgid "Bar"
5133
  msgstr ""
5134
 
5135
+ #: src/vue/plugins/constants.js:1174
5136
+ msgid "Company"
5137
  msgstr ""
5138
 
5139
+ #: src/vue/plugins/constants.js:1175
5140
+ msgid "Cafe"
5141
  msgstr ""
5142
 
5143
+ #: src/vue/plugins/constants.js:1176
5144
+ msgid "Hotel"
5145
  msgstr ""
5146
 
5147
+ #: src/vue/plugins/constants.js:1177
5148
+ msgid "Restaurant"
5149
  msgstr ""
5150
 
5151
+ #: src/vue/plugins/constants.js:1181
5152
+ msgid "Groups"
5153
  msgstr ""
5154
 
5155
+ # Translators: This refers to a charity/non-profit organization.
5156
+ #: src/vue/plugins/constants.js:1184
5157
+ msgid "Cause"
5158
  msgstr ""
5159
 
5160
+ #: src/vue/plugins/constants.js:1185
5161
+ msgid "Sports League"
 
5162
  msgstr ""
5163
 
5164
+ #: src/vue/plugins/constants.js:1186
5165
+ msgid "Sports Team"
5166
  msgstr ""
5167
 
5168
+ #: src/vue/plugins/constants.js:1190
5169
+ msgid "Organizations"
5170
  msgstr ""
5171
 
5172
+ # Translators: This refers to a music group.
5173
+ #: src/vue/plugins/constants.js:1193
5174
+ msgid "Band"
5175
  msgstr ""
5176
 
5177
+ #: src/vue/plugins/constants.js:1194
5178
+ msgid "Non-Profit"
 
 
 
 
 
5179
  msgstr ""
5180
 
5181
+ #: src/vue/plugins/constants.js:1195
5182
+ msgid "School"
5183
  msgstr ""
5184
 
5185
+ #: src/vue/plugins/constants.js:1196
5186
+ msgid "University"
5187
  msgstr ""
5188
 
5189
+ #: src/vue/plugins/constants.js:1200
5190
+ msgid "People"
5191
  msgstr ""
5192
 
5193
+ #: src/vue/plugins/constants.js:1202
5194
+ msgid "Actor"
5195
  msgstr ""
5196
 
5197
+ #: src/vue/plugins/constants.js:1203
5198
+ msgid "Athlete"
5199
  msgstr ""
5200
 
5201
+ #: src/vue/plugins/constants.js:1205
5202
+ msgid "Director"
5203
  msgstr ""
5204
 
5205
+ #: src/vue/plugins/constants.js:1206
5206
+ msgid "Musician"
5207
  msgstr ""
5208
 
5209
+ #: src/vue/plugins/constants.js:1207
5210
+ msgid "Politician"
 
5211
  msgstr ""
5212
 
5213
+ #: src/vue/plugins/constants.js:1208
5214
+ msgid "Profile"
5215
  msgstr ""
5216
 
5217
+ #: src/vue/plugins/constants.js:1209
5218
+ msgid "Public Figure"
5219
  msgstr ""
5220
 
5221
+ #: src/vue/plugins/constants.js:1213
5222
+ msgid "Places"
5223
  msgstr ""
5224
 
5225
+ #: src/vue/plugins/constants.js:1215
5226
+ msgid "City"
5227
  msgstr ""
5228
 
5229
+ #: src/vue/plugins/constants.js:1216
5230
+ msgid "Country"
5231
  msgstr ""
5232
 
5233
+ #: src/vue/plugins/constants.js:1217
5234
+ msgid "Landmark"
5235
  msgstr ""
5236
 
5237
+ #: src/vue/plugins/constants.js:1218
5238
+ msgid "State/Province"
5239
  msgstr ""
5240
 
5241
+ #: src/vue/plugins/constants.js:1222
5242
+ msgid "Products & Entertainment"
5243
  msgstr ""
5244
 
5245
+ #: src/vue/plugins/constants.js:1224
5246
+ msgid "Album"
5247
  msgstr ""
5248
 
5249
+ #: src/vue/plugins/constants.js:1225
5250
+ msgid "Book"
5251
  msgstr ""
5252
 
5253
+ #: src/vue/plugins/constants.js:1226
5254
+ msgid "Drink"
5255
  msgstr ""
5256
 
5257
+ #: src/vue/plugins/constants.js:1227
5258
+ msgid "Food"
5259
  msgstr ""
5260
 
5261
+ #: src/vue/plugins/constants.js:1228
5262
+ msgid "Game"
5263
  msgstr ""
5264
 
5265
+ #: src/vue/plugins/constants.js:1229
5266
+ msgid "Movie"
5267
  msgstr ""
5268
 
5269
+ #: src/vue/plugins/constants.js:1230
5270
+ msgid "Product"
5271
  msgstr ""
5272
 
5273
+ #: src/vue/plugins/constants.js:1231
5274
+ msgid "Song"
 
5275
  msgstr ""
5276
 
5277
+ #: src/vue/plugins/constants.js:1232
5278
+ msgid "TV Show"
 
5279
  msgstr ""
5280
 
5281
+ #: src/vue/plugins/constants.js:1233
5282
+ msgid "Episode"
5283
  msgstr ""
5284
 
5285
+ #: src/vue/plugins/constants.js:1237
5286
+ msgid "Websites"
5287
  msgstr ""
5288
 
5289
+ #: src/vue/plugins/constants.js:1240
5290
+ msgid "Website"
5291
  msgstr ""
5292
 
5293
+ #: src/vue/plugins/constants.js:20
5294
+ msgid "hourly"
5295
  msgstr ""
5296
 
5297
+ #: src/vue/plugins/constants.js:21
5298
+ msgid "daily"
5299
  msgstr ""
5300
 
5301
+ #: src/vue/plugins/constants.js:22
5302
+ msgid "weekly"
5303
  msgstr ""
5304
 
5305
+ #: src/vue/plugins/constants.js:23
5306
+ msgid "monthly"
5307
  msgstr ""
5308
 
5309
+ #: src/vue/plugins/constants.js:24
5310
+ msgid "yearly"
5311
  msgstr ""
5312
 
5313
+ #: src/vue/plugins/constants.js:25
5314
+ msgid "never"
5315
  msgstr ""
5316
 
5317
+ #: src/vue/plugins/constants.js:29
5318
+ msgid "No"
5319
  msgstr ""
5320
 
5321
+ #: src/vue/plugins/constants.js:30
5322
+ msgid "Yes"
5323
  msgstr ""
5324
 
5325
+ #: src/vue/plugins/constants.js:31
5326
+ msgid "Off"
5327
  msgstr ""
5328
 
5329
+ #: src/vue/plugins/constants.js:32
5330
+ msgid "On"
5331
  msgstr ""
5332
 
5333
+ #: src/vue/plugins/constants.js:33
5334
+ msgid "Show"
5335
  msgstr ""
5336
 
5337
+ #: src/vue/plugins/constants.js:34
5338
+ msgid "Hide"
 
 
5339
  msgstr ""
5340
 
5341
+ #: src/vue/plugins/constants.js:35
5342
+ msgid "Learn More"
5343
  msgstr ""
5344
 
5345
+ #: src/vue/plugins/constants.js:36
5346
+ msgid "Disabled"
5347
  msgstr ""
5348
 
5349
+ #: src/vue/plugins/constants.js:37
5350
+ msgid "Enabled"
 
 
5351
  msgstr ""
5352
 
5353
+ #: src/vue/plugins/constants.js:38
5354
+ msgid "Preview"
5355
  msgstr ""
5356
 
5357
+ #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:114
5358
+ msgid "Title Attribute Format"
 
 
5359
  msgstr ""
5360
 
5361
+ #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:115
5362
+ msgid "Strip Punctuation for Title Attributes"
 
 
5363
  msgstr ""
5364
 
5365
+ #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:116
5366
+ msgid "Click on the tags below to insert variables into your title attribute."
5367
  msgstr ""
5368
 
5369
+ #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:117
5370
+ msgid "Alt Tag Attribute Format"
5371
  msgstr ""
5372
 
5373
+ #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:118
5374
+ msgid "Click on the tags below to insert variables into your alt tag attribute."
5375
  msgstr ""
5376
 
5377
+ #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:119
5378
+ msgid "Strip Punctuation for Alt Attributes"
5379
  msgstr ""
5380
 
5381
+ #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:122
5382
+ msgid "Upgrade to Pro and Unlock Image SEO"
5383
  msgstr ""
5384
 
5385
+ #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:123
5386
+ msgid "Image SEO is only available for licensed %1$s %2$s users."
5387
  msgstr ""
5388
 
5389
+ #: src/vue/pages/search-appearance/views/Taxonomies.vue:90
5390
+ msgid "Upgrade to Pro and Unlock Custom Taxonomies"
5391
  msgstr ""
5392
 
5393
+ # Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro".
5394
+ #: src/vue/pages/search-appearance/views/Taxonomies.vue:92
5395
+ msgid ""
5396
+ "%1$s %2$s lets you set the SEO title and description for custom taxonomies. "
5397
+ "You can also control all of the robots meta and other options just like the "
5398
+ "default category and tags taxonomies."
5399
  msgstr ""
5400
 
5401
+ #: src/vue/pages/search-appearance/views/Taxonomies.vue:93
5402
+ msgid "Custom Taxonomy Support is only available for licensed %1$s %2$s users."
5403
  msgstr ""
5404
 
5405
+ #: src/vue/pages/search-appearance/views/ContentTypes.vue:58
5406
+ msgid "Title & Description"
5407
  msgstr ""
5408
 
5409
+ #: src/vue/pages/search-appearance/views/ContentTypes.vue:64
5410
+ msgid "Schema Markup"
5411
  msgstr ""
5412
 
5413
+ #: src/vue/store/actions.js:146
5414
+ msgid "We couldn't connect to the site, please try again later."
5415
  msgstr ""
5416
 
5417
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:412
5418
+ msgid "Title Separator"
5419
  msgstr ""
5420
 
5421
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:413
5422
+ msgid "Separator Character"
5423
  msgstr ""
5424
 
5425
+ # Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag.
5426
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:415
5427
+ msgid ""
5428
+ "The home page settings below have been disabled because you are using a "
5429
+ "static home page. You can %1$sedit your home page settings%2$s directly to "
5430
+ "change the title and description."
5431
  msgstr ""
5432
 
5433
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:417
5434
+ msgid "Site Title"
 
5435
  msgstr ""
5436
 
5437
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:421
5438
+ msgid "Knowledge Graph"
5439
  msgstr ""
5440
 
5441
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:422
5442
+ msgid ""
5443
+ "Google, Bing and other search engines use specific data from your schema "
5444
+ "markup to output data in their Knowledge Panels. This data is known as the "
5445
+ "Knowledge Graph. Use these settings to change how that data looks."
5446
  msgstr ""
5447
 
5448
+ # Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag., 3 - "Pro", 4 - "Pro".
5449
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:439
5450
+ msgid ""
5451
+ "Go to %1$sLocal SEO Settings%2$s and set up your local business info like "
5452
+ "location address, opening hours (%3$s), and Google Maps settings (%4$s)."
5453
  msgstr ""
5454
 
5455
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:440
5456
+ msgid "Go to Local SEO Settings"
 
5457
  msgstr ""
5458
 
5459
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:441
5460
+ msgid "Enable Schema Markup"
5461
  msgstr ""
5462
 
5463
+ #: src/vue/pages/search-appearance/views/GlobalSettings.vue:443
5464
+ msgid "Press enter to create a keyword"
5465
  msgstr ""
5466
 
5467
+ #: src/vue/pages/search-appearance/views/Media.vue:106
5468
+ msgid "Redirect Attachment URLs"
5469
  msgstr ""
5470
 
5471
+ #: src/vue/pages/search-appearance/views/Media.vue:107
5472
+ msgid "Attachment"
5473
  msgstr ""
5474
 
5475
+ #: src/vue/pages/search-appearance/views/Media.vue:108
5476
+ msgid "Attachment Parent"
5477
  msgstr ""
5478
 
5479
+ #: src/vue/pages/search-appearance/views/Media.vue:109
5480
+ msgid ""
5481
+ "We recommended redirecting attachment URL's back to the attachment since "
5482
+ "the default WordPress attachment pages have little SEO value."
5483
  msgstr ""
5484
 
5485
+ #: src/vue/plugins/truSEO/Analysis/isExternalLink.js:22
5486
+ msgid "Great! You are linking to external resources."
5487
  msgstr ""
5488
 
5489
+ #: src/vue/plugins/truSEO/Analysis/isExternalLink.js:30
5490
+ msgid "External links"
5491
  msgstr ""
5492
 
5493
+ #: src/vue/plugins/truSEO/Analysis/isExternalLink.js:31
5494
+ msgid "No outbound links were found. Link out to external resources."
5495
  msgstr ""
5496
 
5497
+ # Translators: 1 - Expand to the number of text sections not separated by subheadings, 2 - expands to the recommended number of words following a subheading.
5498
+ #: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:65
5499
+ msgid ""
5500
+ "%1$d section of your text is longer than %2$d words and is not separated by "
5501
+ "any subheadings. Add subheadings to improve readability."
5502
  msgstr ""
5503
 
5504
+ #: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:74
5505
+ msgid ""
5506
+ "You are not using any subheadings, although your text is rather long. Try "
5507
+ "and add some subheadings."
5508
  msgstr ""
5509
 
5510
+ #: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:84
5511
+ msgid "Great job!"
5512
  msgstr ""
5513
 
5514
+ #: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:92
5515
+ msgid "Subheading distribution"
5516
  msgstr ""
5517
 
5518
+ #: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:93
5519
+ msgid ""
5520
+ "You are not using any subheadings, but your text is short enough and "
5521
+ "probably doesn't need them."
5522
  msgstr ""
5523
 
5524
+ #: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:41
5525
+ msgid "Good job!"
5526
  msgstr ""
5527
 
5528
+ #: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:51
5529
+ msgid "very easy"
5530
  msgstr ""
5531
 
5532
+ # Translators: 1 - Flesch Reading Result Number, 2 - Read difficulty string.
5533
+ #: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:79
5534
+ msgid "The copy scores %1$s in the test, which is considered %2$s to read."
5535
  msgstr ""
5536
 
5537
+ #: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:87
5538
+ msgid "Flesch Reading Ease"
5539
  msgstr ""
5540
 
5541
+ # Translators: 1 - Flesch Reading Result Number, 2 - Read difficulty string, 3 - Note string.
5542
+ #: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:89
5543
+ msgid "The copy scores %1$s in the test, which is considered %2$s to read. %3$s"
5544
  msgstr ""
5545
 
5546
+ #: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:97
5547
+ msgid "Flesch Reading Ease N/A"
5548
  msgstr ""
5549
 
5550
+ #: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:98
5551
+ msgid ":-)"
5552
  msgstr ""
5553
 
5554
+ # Translators: 1 - Number of sentences.
5555
+ #: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:23
5556
+ msgid ""
5557
+ "The text contains %1$d consecutive sentences starting with the same word. "
5558
+ "Try to mix things up!"
5559
  msgstr ""
5560
 
5561
+ #: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:31
5562
+ msgid "Consecutive sentences"
5563
  msgstr ""
5564
 
5565
+ #: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:32
5566
+ msgid "There is enough variety in your sentences. That's great!"
5567
  msgstr ""
5568
 
5569
+ #: src/vue/plugins/truSEO/Analysis/passiveVoice.js:38
5570
+ msgid "You're using enough active voice. That's great!"
5571
  msgstr ""
5572
 
5573
+ #: src/vue/plugins/truSEO/Analysis/passiveVoice.js:45
5574
+ msgid "Passive Voice"
5575
  msgstr ""
5576
 
5577
+ # Translators: 1 - Percentage of the sentences, 2 - Expected maximum percentage of sentences.
5578
+ #: src/vue/plugins/truSEO/Analysis/passiveVoice.js:47
5579
+ msgid ""
5580
+ "%1$s of the sentences contain passive voice, which is more than the "
5581
+ "recommended maximum of %2$s. Try to use their active counterparts"
5582
  msgstr ""
5583
 
5584
+ #: src/vue/plugins/truSEO/Analysis/transitionWords.js:21
5585
+ msgid "None of the sentences contain transition words. Use some"
5586
  msgstr ""
5587
 
5588
+ # Translators: 1 - Percentage of the sentences.
5589
+ #: src/vue/plugins/truSEO/Analysis/transitionWords.js:32
5590
+ msgid ""
5591
+ "Only %1$s of the sentences contain transition words, which is not enough. "
5592
+ "Use more of them"
5593
  msgstr ""
5594
 
5595
+ #: src/vue/plugins/truSEO/Analysis/transitionWords.js:40
5596
+ msgid "Transition words"
5597
  msgstr ""
5598
 
5599
+ #: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:56
5600
+ #: src/vue/plugins/truSEO/Analysis/transitionWords.js:41
5601
+ msgid "Well done!"
5602
  msgstr ""
5603
 
5604
+ #: src/vue/pages/post-settings/views/Main.vue:55
5605
+ msgid "Preview Snippet Editor"
5606
  msgstr ""
5607
 
5608
+ #: src/vue/plugins/truSEO/Analysis/isInternalLink.js:22
5609
+ msgid "You are linking to other resources on your website which is great."
5610
  msgstr ""
5611
 
5612
+ #: src/vue/plugins/truSEO/Analysis/isInternalLink.js:30
5613
+ msgid "Internal links"
5614
  msgstr ""
5615
 
5616
+ #: src/vue/plugins/truSEO/Analysis/isInternalLink.js:31
5617
+ msgid ""
5618
+ "We couldn't find any internal links in your content. Add internal links in "
5619
+ "your content."
5620
  msgstr ""
5621
 
5622
+ #: src/vue/plugins/truSEO/Analysis/paragraphLength.js:23
5623
+ msgid "At least one paragraph is long. Consider using short paragraphs."
5624
  msgstr ""
5625
 
5626
+ #: src/vue/plugins/truSEO/Analysis/paragraphLength.js:30
5627
+ msgid "Paragraphs Length"
5628
  msgstr ""
5629
 
5630
+ #: src/vue/plugins/truSEO/Analysis/paragraphLength.js:31
5631
+ msgid "You are using short paragraphs."
5632
  msgstr ""
5633
 
5634
+ #: src/vue/plugins/truSEO/Analysis/sentenceLength.js:34
5635
+ msgid "Sentence length is looking great!"
5636
  msgstr ""
5637
 
5638
+ #: src/vue/plugins/truSEO/Analysis/sentenceLength.js:52
5639
+ msgid "Sentences Length"
5640
  msgstr ""
5641
 
5642
+ # Translators: 1 - Number of the sentences, 2 - Number of words, 3 - Recommended maximum of words.
5643
+ #: src/vue/plugins/truSEO/Analysis/sentenceLength.js:54
5644
+ msgid ""
5645
+ "%1$s of the sentences contain more than %2$s words, which is more than the "
5646
+ "recommended maximum of %3$s. Try to shorten the sentences."
5647
  msgstr ""
5648
 
5649
+ #: src/vue/plugins/truSEO/Analysis/lengthContent.js:27
5650
+ msgid "Please add some content first."
5651
  msgstr ""
5652
 
5653
+ #: src/vue/plugins/truSEO/Analysis/contentHasAssets.js:24
5654
+ msgid "Your content contains images and/or video(s).."
5655
  msgstr ""
5656
 
5657
+ #: src/vue/plugins/truSEO/Analysis/contentHasAssets.js:31
5658
+ msgid "Images/Videos in content"
5659
  msgstr ""
5660
 
5661
+ #: src/vue/plugins/truSEO/Analysis/contentHasAssets.js:32
5662
+ msgid "You are not using rich media like images or videos."
5663
  msgstr ""
5664
 
5665
+ #: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:26
5666
+ msgid ""
5667
+ "No meta description has been specified. Search engines will display copy "
5668
+ "from the page instead. Make sure to write one!"
5669
  msgstr ""
5670
 
5671
+ #: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:36
5672
+ msgid "The meta description is too short."
5673
  msgstr ""
5674
 
5675
+ #: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:45
5676
+ msgid "Meta description length"
5677
  msgstr ""
5678
 
5679
+ #: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:46
5680
+ msgid "The meta description is over 160 characters."
5681
  msgstr ""
5682
 
5683
+ #: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:55
5684
+ msgid "Meta description Length"
5685
  msgstr ""
5686
 
5687
+ #: src/vue/plugins/truSEO/Analysis/titleLength.js:21
5688
+ msgid "Please add a title first."
5689
  msgstr ""
5690
 
5691
+ #: src/vue/plugins/truSEO/Analysis/titleLength.js:31
5692
+ msgid "No title has been specified. Make sure to write one!"
5693
  msgstr ""
5694
 
5695
+ #: src/vue/plugins/truSEO/Analysis/titleLength.js:41
5696
+ msgid "The title is too short."
5697
  msgstr ""
5698
 
5699
+ #: src/vue/plugins/truSEO/Analysis/titleLength.js:50
5700
+ msgid "SEO Title length"
5701
  msgstr ""
5702
 
5703
+ #: src/vue/plugins/truSEO/Analysis/titleLength.js:51
5704
+ msgid "The title is over 60 characters."
 
5705
  msgstr ""
5706
 
5707
+ #: src/vue/plugins/truSEO/Analysis/titleLength.js:60
5708
+ msgid "Title Length"
5709
  msgstr ""
5710
 
5711
+ # Translators: 1 - Focus Keyphrase or Keyphrase.
5712
+ #: src/vue/plugins/truSEO/Analysis/keyphraseInImageAlt.js:28
5713
+ msgid "%1$s found in image alt attribute(s)."
5714
  msgstr ""
5715
 
5716
+ # Translators: 1 - Focus Keyphrase or Keyphrase.
5717
+ #: src/vue/plugins/truSEO/Analysis/keyphraseInImageAlt.js:37
5718
+ msgid "%1$s in image alt attributes"
5719
  msgstr ""
5720
 
5721
+ # Translators: 1 - Focus Keyphrase or Keyphrase.
5722
+ #: src/vue/plugins/truSEO/Analysis/keyphraseInImageAlt.js:39
5723
+ msgid ""
5724
+ "%1$s not found in image alt attribute(s). Add an image with your %1$s as "
5725
+ "alt text."
5726
  msgstr ""
5727
 
5728
+ #: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:47
5729
+ msgid "Use more focus keyphrases in your H2 and H3 subheadings!"
5730
  msgstr ""
5731
 
5732
+ #: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:56
5733
+ msgid ""
5734
+ "More than 75% of your H2 and H3 subheadings reflect the topic of your copy. "
5735
+ "That's too much. Don't over-optimize!"
5736
  msgstr ""
5737
 
5738
+ #: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:65
5739
+ msgid "Your H2 or H3 subheading reflects the topic of your copy. Good job!"
5740
  msgstr ""
5741
 
5742
+ #: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:74
5743
+ msgid "Your H2 and H3 subheadings reflects the topic of your copy. Good job!"
5744
  msgstr ""
5745
 
5746
+ #: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:82
5747
+ msgid "Focus Keyphrase in Subheadings"
 
 
5748
  msgstr ""
5749
 
5750
+ #: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:83
5751
+ msgid "Use your focus keyphrase more in your H2 and H3 subheadings"
 
 
 
5752
  msgstr ""
5753
 
5754
+ #: src/vue/pages/post-settings/views/Social.vue:60
5755
+ msgid "Social"
5756
  msgstr ""
5757
 
5758
+ #: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:6
5759
+ msgid "Focus keyphrase"
5760
  msgstr ""
5761
 
5762
+ #: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:8
5763
+ msgid "Keyphrase"
 
 
 
5764
  msgstr ""
5765
 
5766
+ #: src/vue/pages/post-settings/views/SocialSideBar.vue:26
5767
  msgid ""
5768
+ "Here you can view and edit the thumbnail, title and description that will "
5769
+ "be displayed when your site is shared on social media. Click on the button "
5770
+ "below to view and edit the preview."
 
 
 
5771
  msgstr ""
5772
 
5773
+ #: src/vue/pages/post-settings/views/SocialSideBar.vue:27
5774
+ msgid "Preview & Edit"
5775
  msgstr ""
5776
 
5777
+ #: src/vue/pages/post-settings/views/Facebook.vue:238
5778
+ msgid "Facebook Preview"
 
 
5779
  msgstr ""
5780
 
5781
+ #: src/vue/pages/post-settings/views/Facebook.vue:239
5782
+ msgid "Image Source"
5783
  msgstr ""
5784
 
5785
+ #: src/vue/pages/post-settings/views/Facebook.vue:240
5786
+ msgid "Custom Field Name"
 
 
 
5787
  msgstr ""
5788
 
5789
+ #: src/vue/pages/post-settings/views/Facebook.vue:241
5790
+ msgid "Video URL"
5791
  msgstr ""
5792
 
5793
+ #: src/vue/pages/post-settings/views/Facebook.vue:245
5794
+ msgid "Facebook Image"
 
 
5795
  msgstr ""
5796
 
5797
+ #: src/vue/pages/post-settings/views/Facebook.vue:246
5798
+ msgid "Facebook Title"
5799
  msgstr ""
5800
 
5801
+ #: src/vue/pages/post-settings/views/Facebook.vue:247
5802
+ msgid "Facebook Description"
5803
  msgstr ""
5804
 
5805
+ #: src/vue/pages/post-settings/views/Facebook.vue:250
 
5806
  msgid ""
5807
+ "Minimum size: 200px x 200px, ideal ratio 1.91:1, 5MB max. (eg: 1640px x "
5808
+ "856px or 3280px x 1712px for retina screens)"
5809
  msgstr ""
5810
 
5811
+ #: src/vue/pages/post-settings/views/Facebook.vue:252
5812
+ msgid "Click on tags below to insert variables into your site name."
5813
  msgstr ""
5814
 
5815
+ #: src/vue/pages/post-settings/views/Facebook.vue:253
5816
+ #: src/vue/pages/post-settings/views/General.vue:266
5817
+ msgid "Click on tags below to insert variables into your meta description."
5818
  msgstr ""
5819
 
5820
+ #: src/vue/pages/post-settings/views/Facebook.vue:254
5821
+ msgid "Article Section"
 
 
 
5822
  msgstr ""
5823
 
5824
+ #: src/vue/pages/post-settings/views/Facebook.vue:255
5825
+ msgid "Article Tags"
5826
  msgstr ""
5827
 
5828
+ #: src/vue/pages/post-settings/views/Facebook.vue:256
5829
+ msgid "Press enter to create an article tag"
5830
  msgstr ""
5831
 
5832
+ #: src/vue/pages/post-settings/views/Facebook.vue:264
5833
+ msgid "Default"
5834
  msgstr ""
5835
 
5836
+ #: src/vue/pages/post-settings/views/Facebook.vue:264
5837
+ msgid "Default Object Type (Set in Social Networks)"
 
5838
  msgstr ""
5839
 
5840
+ #: src/vue/pages/post-settings/views/Twitter.vue:213
5841
+ msgid "Twitter Preview"
5842
  msgstr ""
5843
 
5844
+ #: src/vue/pages/post-settings/views/Twitter.vue:214
5845
+ msgid "Use Data from Facebook Tab"
5846
  msgstr ""
5847
 
5848
+ #: src/vue/pages/post-settings/views/Twitter.vue:217
5849
+ msgid "Twitter Image"
5850
  msgstr ""
5851
 
5852
+ #: src/vue/pages/post-settings/views/Twitter.vue:218
5853
+ msgid "Twitter Title"
 
 
5854
  msgstr ""
5855
 
5856
+ #: src/vue/pages/post-settings/views/Twitter.vue:219
5857
+ msgid "Twitter Description"
5858
  msgstr ""
5859
 
5860
+ #: src/vue/pages/post-settings/views/Twitter.vue:220
5861
+ msgid "Twitter Card Type"
5862
  msgstr ""
5863
 
5864
+ #: src/vue/pages/post-settings/views/Twitter.vue:234
5865
+ msgid "Default (Set under Social Networks)"
5866
  msgstr ""
5867
 
5868
+ #: src/vue/pages/post-settings/views/Advanced.vue:114
5869
+ msgid "Robots Setting"
5870
  msgstr ""
5871
 
5872
+ #: src/vue/pages/post-settings/views/Advanced.vue:115
5873
+ msgid "Use default settings"
5874
  msgstr ""
5875
 
5876
+ #: src/vue/pages/post-settings/views/Advanced.vue:116
5877
+ msgid "Canonical URL"
5878
  msgstr ""
5879
 
5880
+ #: src/vue/pages/post-settings/views/Advanced.vue:117
5881
+ msgid "Enter a URL to change the default Canonical URL"
5882
  msgstr ""
5883
 
5884
+ #: src/vue/pages/post-settings/views/General.vue:260
5885
+ msgid "General"
5886
  msgstr ""
5887
 
5888
+ #: src/vue/pages/post-settings/views/General.vue:261
5889
+ msgid "Snippet Preview"
5890
  msgstr ""
5891
 
5892
+ #: src/vue/pages/post-settings/views/General.vue:262
5893
+ msgid "Snippet Preview content here."
5894
  msgstr ""
5895
 
5896
+ #: src/vue/pages/post-settings/views/General.vue:263
5897
+ msgid "Edit Snippet"
 
5898
  msgstr ""
5899
 
5900
+ #: src/vue/pages/post-settings/views/General.vue:264
5901
+ msgid "Click on tags below to insert variables into your title."
 
5902
  msgstr ""
5903
 
5904
+ #: src/vue/pages/post-settings/views/General.vue:267
5905
+ msgid "Pillar Content"
5906
+ msgstr ""
5907
+
5908
+ #: src/vue/pages/post-settings/views/General.vue:268
5909
  msgid ""
5910
+ "Cornerstone content should be the most important and extensive articles on "
5911
+ "your site."
5912
  msgstr ""
5913
 
5914
+ #: src/vue/pages/post-settings/views/General.vue:269
5915
+ msgid "Focus Keyphrase"
5916
  msgstr ""
5917
 
5918
+ #: src/vue/pages/post-settings/views/General.vue:270
5919
+ msgid "Additional Keyphrases"
 
 
5920
  msgstr ""
5921
 
5922
+ #: src/vue/pages/post-settings/views/General.vue:271
5923
+ msgid "Page Analysis"
5924
  msgstr ""
5925
 
5926
+ #: src/vue/pages/post-settings/views/General.vue:274
5927
+ #: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:44
5928
+ msgid "Readability"
5929
  msgstr ""
5930
 
5931
+ #: src/vue/pages/post-settings/views/General.vue:275
5932
+ msgid ""
5933
+ "Looking for meta keywords? Click on the advanced tab above to add/edit meta "
5934
+ "keywords."
5935
  msgstr ""
5936
 
5937
+ # Translators: %s: The type of page (Post, Page, Category, Tag, etc.).
5938
+ #: src/vue/pages/post-settings/views/General.vue:284
5939
+ msgid "%s Title"
5940
  msgstr ""
5941
 
5942
  # Translators: 1 - Focus Keyphrase or Keyphrase.
5960
  "clear immediately."
5961
  msgstr ""
5962
 
5963
+ #: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:26
5964
+ msgid "Focus Keyphrase used in the URL."
5965
+ msgstr ""
5966
+
5967
+ #: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:34
5968
+ msgid "Focus Keyphrase in URL"
5969
+ msgstr ""
5970
+
5971
+ #: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:35
5972
+ msgid "Focus Keyphrase not found in the URL."
5973
+ msgstr ""
5974
+
5975
  #: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:22
5976
  msgid "Focus Keyphrase found in content."
5977
  msgstr ""
5984
  msgid "Focus Keyphrase not found in content."
5985
  msgstr ""
5986
 
5987
+ #: src/vue/pages/post-settings/views/ModalContent.vue:41
5988
+ msgid "Modal Content"
 
 
 
 
 
 
 
 
5989
  msgstr ""
5990
 
5991
  # Translators: 1 - Focus Keyphrase or Keyphrase.
6003
  msgid "%1$s not found in meta description."
6004
  msgstr ""
6005
 
6006
+ # Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro", 3 - "Learn more link"..
6007
+ #: src/vue/pages/post-settings/views/lite/Schema.vue:61
6008
+ msgid "This feature is only for licensed %1$s %2$s users. %3$s"
6009
+ msgstr ""
6010
+
6011
  #: src/vue/plugins/truSEO/Analysis/keyphraseBeginningTitle.js:20
6012
  msgid "Focus Keyphrase used at the beginning of SEO title."
6013
  msgstr ""
6032
  msgid "Focus Keyphrase not found in SEO title."
6033
  msgstr ""
6034
 
6035
+ #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:69
6036
+ msgid "Add Additional Keyphrases"
 
6037
  msgstr ""
6038
 
6039
+ # Translators: 1 - "Pro" string, 2 - "Learn more link".
6040
+ #: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:71
6041
+ msgid "Upgrade to %1$s to add related keyphrases. %2$s"
6042
  msgstr ""
6043
 
6044
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:60
6045
+ msgid "Add Focus Keyphrase"
 
6046
  msgstr ""
6047
 
6048
+ # Translators: 1 - "Learn more link".
6049
+ #: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:62
6050
+ msgid ""
6051
+ "Not sure what keyphrases are used for? Check out our documentation for more "
6052
+ "information. %1$s"
6053
  msgstr ""
6054
 
6055
  #: src/vue/plugins/truSEO/Analysis/lengthContent.js:38
6068
  msgid "The content is below the minimum of words. Add more content."
6069
  msgstr ""
6070
 
6071
+ # Translators: 1 - Focus Keyphrase or Keyphrase.
6072
+ #: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:25
6073
+ msgid "%1$s length"
6074
  msgstr ""
6075
 
6076
+ # Translators: 1 - Focus Keyphrase or Keyphrase.
6077
+ #: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:31
6078
+ msgid "No %1$s was set. Set a %1$s in order to calculate your SEO score."
6079
+ msgstr ""
6080
+
6081
+ # Translators: 1 - Focus Keyphrase or Keyphrase.
6082
+ #: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:52
6083
+ msgid "%1$s is slightly long. Try to make it shorter."
6084
+ msgstr ""
6085
+
6086
+ # Translators: 1 - Focus Keyphrase or Keyphrase.
6087
+ #: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:62
6088
+ msgid "%1$s is too long. Try to make it shorter."
6089
  msgstr ""
languages/aioseo-pro.php CHANGED
@@ -1,44 +1,211 @@
1
  <?php
2
  /* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
3
  $generated_i18n_strings = array(
4
- // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:46
5
- __( 'Enable Local SEO on your Site', 'aioseo-pro' ),
6
 
7
- // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:47
8
- __( 'The Local SEO module is a premium feature that enables businesses to tell Google about their business, including their business name, address and phone number, opening hours and price range. This information may be displayed as a Knowledge Graph card or business carousel in the search engine sidebar.', 'aioseo-pro' ),
9
 
10
- // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:48
11
- __( 'Activate Local SEO', 'aioseo-pro' ),
12
 
13
- // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:49
14
- __( 'Learn more about Local SEO', 'aioseo-pro' ),
15
 
16
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:86
17
- __( 'None', 'aioseo-pro' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:109
 
 
 
20
  __( 'Article', 'aioseo-pro' ),
21
 
22
- // Reference: src/vue/pages/post-settings/views/pro/Schema.vue:121
23
- __( 'About Us Page', 'aioseo-pro' ),
24
 
25
- // Reference: src/vue/pages/post-settings/views/pro/Schema.vue:122
26
- __( 'Contact Page', 'aioseo-pro' ),
27
 
28
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:96
 
 
 
29
  __( 'Web Page', 'aioseo-pro' ),
30
 
31
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:99
 
 
 
 
 
 
32
  __( 'Item Page', 'aioseo-pro' ),
33
 
34
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:100
35
- __( 'FAQ Page', 'aioseo-pro' ),
36
 
37
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:101
38
- __( 'QA Page', 'aioseo-pro' ),
39
 
40
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:102
41
- __( 'Real Estate Listing', 'aioseo-pro' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
  // Reference: src/vue/components/pro/core/AccessControlOptions.vue:83
44
  __( 'General SEO Settings:', 'aioseo-pro' ),
@@ -79,9 +246,6 @@ $generated_i18n_strings = array(
79
  // Reference: src/vue/components/pro/core/AccessControlOptions.vue:95
80
  __( 'Page Analysis', 'aioseo-pro' ),
81
 
82
- // Reference: src/vue/components/pro/core/AccessControlOptions.vue:96
83
- __( 'Advanced Settings', 'aioseo-pro' ),
84
-
85
  // Reference: src/vue/components/pro/core/AccessControlOptions.vue:97
86
  __( 'Schema Settings', 'aioseo-pro' ),
87
 
@@ -125,34 +289,26 @@ $generated_i18n_strings = array(
125
  /* Translators: 1 - The type of license (Individual, Business, Agency), 2 - The expiration date of the license. */
126
  __( 'Your license level is %1$s %2$s', 'aioseo-pro' ),
127
 
128
- // Reference: src/vue/components/pro/settings/LicenseKey.vue:156
129
  // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:165
130
  __( 'An unknown error occurred, please try again later.', 'aioseo-pro' ),
131
 
132
- // Reference: src/vue/components/pro/settings/LicenseKey.vue:162
133
  // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:171
134
  __( 'The license key provided is invalid. Please use a different key to continue receiving automatic updates.', 'aioseo-pro' ),
135
 
136
- // Reference: src/vue/components/pro/settings/LicenseKey.vue:164
137
  // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:173
138
  __( 'The license key provided is disabled. Please use a different key to continue receiving automatic updates.', 'aioseo-pro' ),
139
 
140
- // Reference: src/vue/components/pro/settings/LicenseKey.vue:168
141
  // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:177
142
  __( 'This license key has reached the maximum number of activations. Please deactivate it from another site or purchase a new license to continue receiving automatic updates.', 'aioseo-pro' ),
143
 
144
- // Reference: src/vue/components/pro/settings/LicenseKey.vue:170
145
  // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:179
146
  __( 'There was an error connecting to the licensing API. Please try again later.', 'aioseo-pro' ),
147
 
148
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemapActivate.vue:119
149
- __( 'Enable Video Sitemap on your Site', 'aioseo-pro' ),
150
-
151
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemapActivate.vue:120
152
- __( 'Activate Video Sitemap', 'aioseo-pro' ),
153
 
154
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemapActivate.vue:121
155
- __( 'Learn more about Video Sitemaps', 'aioseo-pro' ),
156
 
157
  // Reference: src/vue/pages/settings/views/WebmasterTools.vue:543
158
  /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
@@ -192,176 +348,6 @@ $generated_i18n_strings = array(
192
 
193
  // Reference: src/vue/pages/settings/views/WebmasterTools.vue:664
194
  /* Translators: 1 - "Google Tag Manager account". */
195
- __( 'Google Tag Manager account', 'aioseo-pro' ),
196
-
197
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:126
198
- __( 'Enable Google News Sitemap on your Site', 'aioseo-pro' ),
199
-
200
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:127
201
- __( 'Activate News Sitemap', 'aioseo-pro' ),
202
-
203
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:128
204
- __( 'Learn more about News Sitemaps', 'aioseo-pro' ),
205
-
206
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemap.vue:139
207
- __( 'News Sitemap Settings', 'aioseo-pro' ),
208
-
209
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemap.vue:140
210
- __( 'Publication Name', 'aioseo-pro' ),
211
-
212
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemap.vue:141
213
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:404
214
- __( 'Post Types', 'aioseo-pro' ),
215
-
216
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemap.vue:142
217
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:406
218
- __( 'Include All Post Types', 'aioseo-pro' ),
219
-
220
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemap.vue:143
221
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:407
222
- __( 'Select which Post Types appear in your sitemap.', 'aioseo-pro' ),
223
-
224
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemap.vue:145
225
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:413
226
- __( 'Exclude Posts / Pages', 'aioseo-pro' ),
227
-
228
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemap.vue:146
229
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:416
230
- __( 'Priority Score', 'aioseo-pro' ),
231
-
232
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemap.vue:147
233
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:417
234
- __( 'Type to search...', 'aioseo-pro' ),
235
-
236
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemap.vue:148
237
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:418
238
- __( 'Begin typing a title or ID to search for a page or post.', 'aioseo-pro' ),
239
-
240
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemap.vue:149
241
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:419
242
- __( 'No pages or posts found with that title or ID. Try again!', 'aioseo-pro' ),
243
-
244
- // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemap.vue:150
245
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:420
246
- __( 'Clear', 'aioseo-pro' ),
247
-
248
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:397
249
- __( 'Additional Pages', 'aioseo-pro' ),
250
-
251
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:398
252
- __( '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.', 'aioseo-pro' ),
253
-
254
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:399
255
- __( 'Video Sitemap Settings', 'aioseo-pro' ),
256
-
257
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:410
258
- __( 'Include Custom Fields', 'aioseo-pro' ),
259
-
260
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:411
261
- __( 'Enable this option to look for videos in custom fields as well.', 'aioseo-pro' ),
262
-
263
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:421
264
- __( 'Dynamically Generate', 'aioseo-pro' ),
265
-
266
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:422
267
- __( 'Dynamically creates the Video Sitemap instead of using a static file.', 'aioseo-pro' ),
268
-
269
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:423
270
- __( 'Video Embed Settings', 'aioseo-pro' ),
271
-
272
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:424
273
- __( 'This section allows you to manage your video embeds, such as features for Facebook or making them responsive to automatically fit your content width.', 'aioseo-pro' ),
274
-
275
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:425
276
- __( 'Embed', 'aioseo-pro' ),
277
-
278
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:426
279
- __( 'Allow videos to be played directly on other websites, such as Facebook or Twitter.', 'aioseo-pro' ),
280
-
281
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:428
282
- /* Translators: 1 - "FitVids.js". */
283
- __( 'Try to make videos responsive using %1$s?', 'aioseo-pro' ),
284
-
285
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:429
286
- __( 'Content Width', 'aioseo-pro' ),
287
-
288
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:430
289
- __( 'This defaults to your theme\'s content width, but if it\'s empty, setting a value here will make sure videos are embedded with the right width.', 'aioseo-pro' ),
290
-
291
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:431
292
- __( 'Wistia Domain', 'aioseo-pro' ),
293
-
294
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:432
295
- __( 'If you use Wistia in combination with a custom domain, set this to the domain name you use for your Wistia videos. Don\'t include https: or slashes as they are not needed.', 'aioseo-pro' ),
296
-
297
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:433
298
- __( 'Embedly API Key', 'aioseo-pro' ),
299
-
300
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:435
301
- /* Translators: 1 - "embed.ly", 2 - "embed.ly". */
302
- __( 'By default, we try to provide enriched information about your videos. A lot of video services are supported by default. For those services which aren\'t supported, we can try to retrieve enriched video information using %1$s. If you want to use this option, you\'ll need to sign up for a (free) %2$s account and provide the API key you receive.', 'aioseo-pro' ),
303
-
304
- // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:447
305
- __( 'default', 'aioseo-pro' ),
306
-
307
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:123
308
- __( 'Title Attribute Format', 'aioseo-pro' ),
309
-
310
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:124
311
- __( 'Strip Punctuation for Title Attributes', 'aioseo-pro' ),
312
-
313
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:125
314
- __( 'Click on the tags below to insert variables into your title attribute.', 'aioseo-pro' ),
315
-
316
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:126
317
- __( 'Alt Tag Attribute Format', 'aioseo-pro' ),
318
-
319
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:127
320
- __( 'Click on the tags below to insert variables into your alt tag attribute.', 'aioseo-pro' ),
321
-
322
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:128
323
- __( 'Strip Punctuation for Alt Attributes', 'aioseo-pro' ),
324
-
325
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:122
326
- __( 'Enable Advanced SEO for Images on your Site', 'aioseo-pro' ),
327
-
328
- // Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:121
329
- __( 'The Image SEO module is a premium feature that enables you to globally control the Title Attribute and Alt Text for attachment pages and images that are embedded in your content. These can be set based on a specified format, similar to the Title Format settings in the Global Settings menu.', 'aioseo-pro' ),
330
-
331
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:130
332
- __( 'Activate Image SEO', 'aioseo-pro' ),
333
-
334
- // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:131
335
- __( 'Learn more about Image SEO', 'aioseo-pro' ),
336
-
337
- // Reference: src/vue/pages/search-appearance/views/partials/pro/CustomFields.vue:43
338
- __( 'Custom Fields', 'aioseo-pro' ),
339
-
340
- // Reference: src/vue/pages/search-appearance/views/partials/pro/CustomFields.vue:44
341
- __( 'List of custom field names to include in the SEO Page Analysis. Add one per line.', 'aioseo-pro' ),
342
-
343
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:106
344
- __( 'Schema Type', 'aioseo-pro' ),
345
-
346
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:108
347
- __( 'Article Type', 'aioseo-pro' ),
348
-
349
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:110
350
- __( 'Blog Post', 'aioseo-pro' ),
351
-
352
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:111
353
- __( 'News Article', 'aioseo-pro' ),
354
-
355
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:97
356
- __( 'Collection Page', 'aioseo-pro' ),
357
-
358
- // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:98
359
- __( 'Profile Page', 'aioseo-pro' ),
360
-
361
- // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:104
362
- __( 'Advanced', 'aioseo-pro' ),
363
-
364
- // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:98
365
- __( 'Title & Description', 'aioseo-pro' )
366
  );
367
  /* THIS IS THE END OF THE GENERATED FILE */
1
  <?php
2
  /* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
3
  $generated_i18n_strings = array(
4
+ // Reference: src/vue/pages/search-appearance/views/partials/pro/CustomFields.vue:43
5
+ __( 'Custom Fields', 'aioseo-pro' ),
6
 
7
+ // Reference: src/vue/pages/search-appearance/views/partials/pro/CustomFields.vue:44
8
+ __( 'List of custom field names to include in the SEO Page Analysis. Add one per line.', 'aioseo-pro' ),
9
 
10
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:129
11
+ __( 'The Image SEO module is a premium feature that enables you to globally control the Title Attribute and Alt Text for attachment pages and images that are embedded in your content. These can be set based on a specified format, similar to the Title Format settings in the Global Settings menu.', 'aioseo-pro' ),
12
 
13
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:123
14
+ __( 'Title Attribute Format', 'aioseo-pro' ),
15
 
16
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:124
17
+ __( 'Strip Punctuation for Title Attributes', 'aioseo-pro' ),
18
+
19
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:125
20
+ __( 'Click on the tags below to insert variables into your title attribute.', 'aioseo-pro' ),
21
+
22
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:126
23
+ __( 'Alt Tag Attribute Format', 'aioseo-pro' ),
24
+
25
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:127
26
+ __( 'Click on the tags below to insert variables into your alt tag attribute.', 'aioseo-pro' ),
27
+
28
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:128
29
+ __( 'Strip Punctuation for Alt Attributes', 'aioseo-pro' ),
30
+
31
+ // Reference: src/vue/pages/post-settings/views/pro/Schema.vue:129
32
+ __( 'FAQ Page', 'aioseo-pro' ),
33
+
34
+ // Reference: src/vue/pages/post-settings/views/pro/Schema.vue:130
35
+ __( 'QA Page', 'aioseo-pro' ),
36
+
37
+ // Reference: src/vue/pages/post-settings/views/pro/Schema.vue:131
38
+ __( 'Real Estate Listing', 'aioseo-pro' ),
39
+
40
+ // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:106
41
+ __( 'Schema Type', 'aioseo-pro' ),
42
 
43
+ // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:108
44
+ __( 'Article Type', 'aioseo-pro' ),
45
+
46
+ // Reference: src/vue/pages/post-settings/views/pro/Schema.vue:103
47
  __( 'Article', 'aioseo-pro' ),
48
 
49
+ // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:110
50
+ __( 'Blog Post', 'aioseo-pro' ),
51
 
52
+ // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:111
53
+ __( 'News Article', 'aioseo-pro' ),
54
 
55
+ // Reference: src/vue/pages/post-settings/views/pro/Schema.vue:101
56
+ __( 'None', 'aioseo-pro' ),
57
+
58
+ // Reference: src/vue/pages/post-settings/views/pro/Schema.vue:127
59
  __( 'Web Page', 'aioseo-pro' ),
60
 
61
+ // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:97
62
+ __( 'Collection Page', 'aioseo-pro' ),
63
+
64
+ // Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:98
65
+ __( 'Profile Page', 'aioseo-pro' ),
66
+
67
+ // Reference: src/vue/pages/post-settings/views/pro/Schema.vue:128
68
  __( 'Item Page', 'aioseo-pro' ),
69
 
70
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:122
71
+ __( 'Enable Advanced SEO for Images on your Site', 'aioseo-pro' ),
72
 
73
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:130
74
+ __( 'Activate Image SEO', 'aioseo-pro' ),
75
 
76
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:131
77
+ __( 'Learn more about Image SEO', 'aioseo-pro' ),
78
+
79
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:129
80
+ __( 'News Sitemap Settings', 'aioseo-pro' ),
81
+
82
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:130
83
+ __( 'Publication Name', 'aioseo-pro' ),
84
+
85
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:131
86
+ __( 'Post Types', 'aioseo-pro' ),
87
+
88
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:132
89
+ __( 'Include All Post Types', 'aioseo-pro' ),
90
+
91
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:133
92
+ __( 'Select which Post Types appear in your sitemap.', 'aioseo-pro' ),
93
+
94
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:134
95
+ __( 'Advanced Settings', 'aioseo-pro' ),
96
+
97
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:135
98
+ __( 'Exclude Posts / Pages', 'aioseo-pro' ),
99
+
100
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:136
101
+ __( 'Priority Score', 'aioseo-pro' ),
102
+
103
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:137
104
+ __( 'Type to search...', 'aioseo-pro' ),
105
+
106
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:138
107
+ __( 'Begin typing a title or ID to search for a page or post.', 'aioseo-pro' ),
108
+
109
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:139
110
+ __( 'No pages or posts found with that title or ID. Try again!', 'aioseo-pro' ),
111
+
112
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:140
113
+ __( 'Clear', 'aioseo-pro' ),
114
+
115
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemapActivate.vue:119
116
+ __( 'Enable Video Sitemap on your Site', 'aioseo-pro' ),
117
+
118
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemapActivate.vue:120
119
+ __( 'Activate Video Sitemap', 'aioseo-pro' ),
120
+
121
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemapActivate.vue:121
122
+ __( 'Learn more about Video Sitemaps', 'aioseo-pro' ),
123
+
124
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:126
125
+ __( 'Enable Google News Sitemap on your Site', 'aioseo-pro' ),
126
+
127
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:127
128
+ __( 'Activate News Sitemap', 'aioseo-pro' ),
129
+
130
+ // Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:128
131
+ __( 'Learn more about News Sitemaps', 'aioseo-pro' ),
132
+
133
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:397
134
+ __( 'Additional Pages', 'aioseo-pro' ),
135
+
136
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:398
137
+ __( '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.', 'aioseo-pro' ),
138
+
139
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:399
140
+ __( 'Video Sitemap Settings', 'aioseo-pro' ),
141
+
142
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:410
143
+ __( 'Include Custom Fields', 'aioseo-pro' ),
144
+
145
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:411
146
+ __( 'Enable this option to look for videos in custom fields as well.', 'aioseo-pro' ),
147
+
148
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:421
149
+ __( 'Dynamically Generate', 'aioseo-pro' ),
150
+
151
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:422
152
+ __( 'Dynamically creates the Video Sitemap instead of using a static file.', 'aioseo-pro' ),
153
+
154
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:423
155
+ __( 'Video Embed Settings', 'aioseo-pro' ),
156
+
157
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:424
158
+ __( 'This section allows you to manage your video embeds, such as features for Facebook or making them responsive to automatically fit your content width.', 'aioseo-pro' ),
159
+
160
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:425
161
+ __( 'Embed', 'aioseo-pro' ),
162
+
163
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:426
164
+ __( 'Allow videos to be played directly on other websites, such as Facebook or Twitter.', 'aioseo-pro' ),
165
+
166
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:428
167
+ /* Translators: 1 - "FitVids.js". */
168
+ __( 'Try to make videos responsive using %1$s?', 'aioseo-pro' ),
169
+
170
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:429
171
+ __( 'Content Width', 'aioseo-pro' ),
172
+
173
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:430
174
+ __( 'This defaults to your theme\'s content width, but if it\'s empty, setting a value here will make sure videos are embedded with the right width.', 'aioseo-pro' ),
175
+
176
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:431
177
+ __( 'Wistia Domain', 'aioseo-pro' ),
178
+
179
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:432
180
+ __( 'If you use Wistia in combination with a custom domain, set this to the domain name you use for your Wistia videos. Don\'t include https: or slashes as they are not needed.', 'aioseo-pro' ),
181
+
182
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:433
183
+ __( 'Embedly API Key', 'aioseo-pro' ),
184
+
185
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:435
186
+ /* Translators: 1 - "embed.ly", 2 - "embed.ly". */
187
+ __( 'By default, we try to provide enriched information about your videos. A lot of video services are supported by default. For those services which aren\'t supported, we can try to retrieve enriched video information using %1$s. If you want to use this option, you\'ll need to sign up for a (free) %2$s account and provide the API key you receive.', 'aioseo-pro' ),
188
+
189
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:447
190
+ __( 'default', 'aioseo-pro' ),
191
+
192
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:46
193
+ __( 'Enable Local SEO on your Site', 'aioseo-pro' ),
194
+
195
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:47
196
+ __( 'The Local SEO module is a premium feature that enables businesses to tell Google about their business, including their business name, address and phone number, opening hours and price range. This information may be displayed as a Knowledge Graph card or business carousel in the search engine sidebar.', 'aioseo-pro' ),
197
+
198
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:48
199
+ __( 'Activate Local SEO', 'aioseo-pro' ),
200
+
201
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:49
202
+ __( 'Learn more about Local SEO', 'aioseo-pro' ),
203
+
204
+ // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:104
205
+ __( 'Advanced', 'aioseo-pro' ),
206
+
207
+ // Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:98
208
+ __( 'Title & Description', 'aioseo-pro' ),
209
 
210
  // Reference: src/vue/components/pro/core/AccessControlOptions.vue:83
211
  __( 'General SEO Settings:', 'aioseo-pro' ),
246
  // Reference: src/vue/components/pro/core/AccessControlOptions.vue:95
247
  __( 'Page Analysis', 'aioseo-pro' ),
248
 
 
 
 
249
  // Reference: src/vue/components/pro/core/AccessControlOptions.vue:97
250
  __( 'Schema Settings', 'aioseo-pro' ),
251
 
289
  /* Translators: 1 - The type of license (Individual, Business, Agency), 2 - The expiration date of the license. */
290
  __( 'Your license level is %1$s %2$s', 'aioseo-pro' ),
291
 
 
292
  // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:165
293
  __( 'An unknown error occurred, please try again later.', 'aioseo-pro' ),
294
 
 
295
  // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:171
296
  __( 'The license key provided is invalid. Please use a different key to continue receiving automatic updates.', 'aioseo-pro' ),
297
 
 
298
  // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:173
299
  __( 'The license key provided is disabled. Please use a different key to continue receiving automatic updates.', 'aioseo-pro' ),
300
 
 
301
  // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:177
302
  __( 'This license key has reached the maximum number of activations. Please deactivate it from another site or purchase a new license to continue receiving automatic updates.', 'aioseo-pro' ),
303
 
 
304
  // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:179
305
  __( 'There was an error connecting to the licensing API. Please try again later.', 'aioseo-pro' ),
306
 
307
+ // Reference: src/vue/pages/post-settings/views/pro/Schema.vue:121
308
+ __( 'About Us Page', 'aioseo-pro' ),
 
 
 
309
 
310
+ // Reference: src/vue/pages/post-settings/views/pro/Schema.vue:122
311
+ __( 'Contact Page', 'aioseo-pro' ),
312
 
313
  // Reference: src/vue/pages/settings/views/WebmasterTools.vue:543
314
  /* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
348
 
349
  // Reference: src/vue/pages/settings/views/WebmasterTools.vue:664
350
  /* Translators: 1 - "Google Tag Manager account". */
351
+ __( 'Google Tag Manager account', 'aioseo-pro' )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
352
  );
353
  /* THIS IS THE END OF THE GENERATED FILE */
languages/aioseo-pro.pot CHANGED
@@ -3,6 +3,112 @@ msgstr ""
3
  "Content-Type: text/plain; charset=utf-8\n"
4
  "X-Generator: babel-plugin-makepot-aioseo\n"
5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  #: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:129
7
  msgid "News Sitemap Settings"
8
  msgstr ""
@@ -51,18 +157,6 @@ msgstr ""
51
  msgid "Clear"
52
  msgstr ""
53
 
54
- #: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:126
55
- msgid "Enable Google News Sitemap on your Site"
56
- msgstr ""
57
-
58
- #: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:127
59
- msgid "Activate News Sitemap"
60
- msgstr ""
61
-
62
- #: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:128
63
- msgid "Learn more about News Sitemaps"
64
- msgstr ""
65
-
66
  #: src/vue/pages/sitemaps/views/pro/VideoSitemapActivate.vue:119
67
  msgid "Enable Video Sitemap on your Site"
68
  msgstr ""
@@ -75,6 +169,18 @@ msgstr ""
75
  msgid "Learn more about Video Sitemaps"
76
  msgstr ""
77
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:397
79
  msgid "Additional Pages"
80
  msgstr ""
@@ -171,38 +277,6 @@ msgstr ""
171
  msgid "default"
172
  msgstr ""
173
 
174
- #: src/vue/components/pro/settings/LicenseKey.vue:156
175
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:165
176
- msgid "An unknown error occurred, please try again later."
177
- msgstr ""
178
-
179
- #: src/vue/components/pro/settings/LicenseKey.vue:162
180
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:171
181
- msgid ""
182
- "The license key provided is invalid. Please use a different key to continue "
183
- "receiving automatic updates."
184
- msgstr ""
185
-
186
- #: src/vue/components/pro/settings/LicenseKey.vue:164
187
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:173
188
- msgid ""
189
- "The license key provided is disabled. Please use a different key to "
190
- "continue receiving automatic updates."
191
- msgstr ""
192
-
193
- #: src/vue/components/pro/settings/LicenseKey.vue:168
194
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:177
195
- msgid ""
196
- "This license key has reached the maximum number of activations. Please "
197
- "deactivate it from another site or purchase a new license to continue "
198
- "receiving automatic updates."
199
- msgstr ""
200
-
201
- #: src/vue/components/pro/settings/LicenseKey.vue:170
202
- #: src/vue/pages/setup-wizard/views/LicenseKey.vue:179
203
- msgid "There was an error connecting to the licensing API. Please try again later."
204
- msgstr ""
205
-
206
  #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:46
207
  msgid "Enable Local SEO on your Site"
208
  msgstr ""
@@ -224,107 +298,72 @@ msgstr ""
224
  msgid "Learn more about Local SEO"
225
  msgstr ""
226
 
227
- #: src/vue/pages/post-settings/views/pro/Schema.vue:101
228
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:86
229
- msgid "None"
230
- msgstr ""
231
-
232
- #: src/vue/pages/post-settings/views/pro/Schema.vue:103
233
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:109
234
- msgid "Article"
235
- msgstr ""
236
-
237
- #: src/vue/pages/post-settings/views/pro/Schema.vue:121
238
- msgid "About Us Page"
239
  msgstr ""
240
 
241
- #: src/vue/pages/post-settings/views/pro/Schema.vue:122
242
- msgid "Contact Page"
243
  msgstr ""
244
 
245
- #: src/vue/pages/post-settings/views/pro/Schema.vue:127
246
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:96
247
- msgid "Web Page"
248
  msgstr ""
249
 
250
- #: src/vue/pages/post-settings/views/pro/Schema.vue:128
251
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:99
252
- msgid "Item Page"
253
  msgstr ""
254
 
255
- #: src/vue/pages/post-settings/views/pro/Schema.vue:129
256
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:100
257
- msgid "FAQ Page"
258
  msgstr ""
259
 
260
- #: src/vue/pages/post-settings/views/pro/Schema.vue:130
261
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:101
262
- msgid "QA Page"
263
  msgstr ""
264
 
265
- #: src/vue/pages/post-settings/views/pro/Schema.vue:131
266
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:102
267
- msgid "Real Estate Listing"
268
  msgstr ""
269
 
270
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
271
- #: src/vue/pages/settings/views/WebmasterTools.vue:543
272
- msgid "This enables tracking outbound forms with Google Analytics.%1$s%2$s"
273
  msgstr ""
274
 
275
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
276
- #: src/vue/pages/settings/views/WebmasterTools.vue:557
277
- msgid "This enables tracking events with Google Analytics.%1$s%2$s"
278
  msgstr ""
279
 
280
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
281
- #: src/vue/pages/settings/views/WebmasterTools.vue:571
282
- msgid ""
283
- "This enables tracking URL changes for single pages with Google "
284
- "Analytics.%1$s%2$s"
285
  msgstr ""
286
 
287
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
288
- #: src/vue/pages/settings/views/WebmasterTools.vue:585
289
- msgid ""
290
- "This enables tracking how long pages are in visible state with Google "
291
- "Analytics.%1$s%2$s"
292
  msgstr ""
293
 
294
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
295
- #: src/vue/pages/settings/views/WebmasterTools.vue:599
296
- msgid "This enables tracking media queries with Google Analytics.%1$s%2$s"
297
  msgstr ""
298
 
299
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
300
- #: src/vue/pages/settings/views/WebmasterTools.vue:613
301
- msgid ""
302
- "This enables tracking when elements are visible within the viewport with "
303
- "Google Analytics.%1$s%2$s"
304
  msgstr ""
305
 
306
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
307
- #: src/vue/pages/settings/views/WebmasterTools.vue:627
308
- msgid ""
309
- "This enables tracking how far down a user scrolls a page with Google "
310
- "Analytics.%1$s%2$s"
311
  msgstr ""
312
 
313
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
314
- #: src/vue/pages/settings/views/WebmasterTools.vue:641
315
- msgid ""
316
- "This enables tracking interactions with the official Facebook and Twitter "
317
- "widgets with Google Analytics.%1$s%2$s"
318
  msgstr ""
319
 
320
- # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
321
- #: src/vue/pages/settings/views/WebmasterTools.vue:655
322
- msgid "This ensures consistency in URL paths reported to Google Analytics.%1$s%2$s"
323
  msgstr ""
324
 
325
- # Translators: 1 - "Google Tag Manager account".
326
- #: src/vue/pages/settings/views/WebmasterTools.vue:664
327
- msgid "Google Tag Manager account"
328
  msgstr ""
329
 
330
  #: src/vue/components/pro/settings/LicenseKey.vue:103
@@ -377,148 +416,97 @@ msgstr ""
377
  msgid "Your license level is %1$s %2$s"
378
  msgstr ""
379
 
380
- #: src/vue/components/pro/core/AccessControlOptions.vue:83
381
- msgid "General SEO Settings:"
382
- msgstr ""
383
-
384
- #: src/vue/components/pro/core/AccessControlOptions.vue:84
385
- msgid "Post SEO Settings:"
386
- msgstr ""
387
-
388
- #: src/vue/components/pro/core/AccessControlOptions.vue:85
389
- msgid "Use Default Settings"
390
- msgstr ""
391
-
392
- #: src/vue/components/pro/core/AccessControlOptions.vue:86
393
- msgid "General Settings"
394
- msgstr ""
395
-
396
- #: src/vue/components/pro/core/AccessControlOptions.vue:87
397
- msgid "Search Appearance Settings"
398
- msgstr ""
399
-
400
- #: src/vue/components/pro/core/AccessControlOptions.vue:88
401
- msgid "Social Networks Settings"
402
- msgstr ""
403
-
404
- #: src/vue/components/pro/core/AccessControlOptions.vue:89
405
- msgid "Sitemap Settings"
406
- msgstr ""
407
-
408
- #: src/vue/components/pro/core/AccessControlOptions.vue:90
409
- msgid "Internal Links"
410
- msgstr ""
411
-
412
- #: src/vue/components/pro/core/AccessControlOptions.vue:91
413
- msgid "Redirects"
414
- msgstr ""
415
-
416
- #: src/vue/components/pro/core/AccessControlOptions.vue:92
417
- msgid "SEO Analysis"
418
- msgstr ""
419
-
420
- #: src/vue/components/pro/core/AccessControlOptions.vue:93
421
- msgid "Tools"
422
- msgstr ""
423
-
424
- #: src/vue/components/pro/core/AccessControlOptions.vue:94
425
- msgid "Feature Manager Settings"
426
- msgstr ""
427
-
428
- #: src/vue/components/pro/core/AccessControlOptions.vue:95
429
- msgid "Page Analysis"
430
- msgstr ""
431
-
432
- #: src/vue/components/pro/core/AccessControlOptions.vue:97
433
- msgid "Schema Settings"
434
  msgstr ""
435
 
436
- #: src/vue/components/pro/core/AccessControlOptions.vue:98
437
- msgid "Social Settings"
 
 
438
  msgstr ""
439
 
440
- #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:122
441
- msgid "Enable Advanced SEO for Images on your Site"
 
 
442
  msgstr ""
443
 
444
- #: src/vue/pages/search-appearance/views/pro/ImageSeo.vue:87
445
- msgid "Title Attribute Format"
 
 
 
446
  msgstr ""
447
 
448
- #: src/vue/pages/search-appearance/views/pro/ImageSeo.vue:88
449
- msgid "Strip Punctuation for Title Attributes"
450
  msgstr ""
451
 
452
- #: src/vue/pages/search-appearance/views/pro/ImageSeo.vue:89
453
- msgid "Click on the tags below to insert variables into your title attribute."
454
  msgstr ""
455
 
456
- #: src/vue/pages/search-appearance/views/pro/ImageSeo.vue:90
457
- msgid "Alt Tag Attribute Format"
458
  msgstr ""
459
 
460
- #: src/vue/pages/search-appearance/views/pro/ImageSeo.vue:91
461
- msgid "Click on the tags below to insert variables into your alt tag attribute."
 
462
  msgstr ""
463
 
464
- #: src/vue/pages/search-appearance/views/pro/ImageSeo.vue:92
465
- msgid "Strip Punctuation for Alt Attributes"
 
466
  msgstr ""
467
 
468
- #: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:121
 
469
  msgid ""
470
- "The Image SEO module is a premium feature that enables you to globally "
471
- "control the Title Attribute and Alt Text for attachment pages and images "
472
- "that are embedded in your content. These can be set based on a specified "
473
- "format, similar to the Title Format settings in the Global Settings menu."
474
- msgstr ""
475
-
476
- #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:130
477
- msgid "Activate Image SEO"
478
- msgstr ""
479
-
480
- #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:131
481
- msgid "Learn more about Image SEO"
482
- msgstr ""
483
-
484
- #: src/vue/pages/search-appearance/views/partials/pro/CustomFields.vue:43
485
- msgid "Custom Fields"
486
  msgstr ""
487
 
488
- #: src/vue/pages/search-appearance/views/partials/pro/CustomFields.vue:44
 
489
  msgid ""
490
- "List of custom field names to include in the SEO Page Analysis. Add one per "
491
- "line."
492
- msgstr ""
493
-
494
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:106
495
- msgid "Schema Type"
496
- msgstr ""
497
-
498
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:108
499
- msgid "Article Type"
500
  msgstr ""
501
 
502
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:110
503
- msgid "Blog Post"
 
504
  msgstr ""
505
 
506
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:111
507
- msgid "News Article"
 
 
 
508
  msgstr ""
509
 
510
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:97
511
- msgid "Collection Page"
 
 
 
512
  msgstr ""
513
 
514
- #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:98
515
- msgid "Profile Page"
 
 
 
516
  msgstr ""
517
 
518
- #: src/vue/pages/search-appearance/views/Taxonomies.vue:104
519
- msgid "Advanced"
 
520
  msgstr ""
521
 
522
- #: src/vue/pages/search-appearance/views/Taxonomies.vue:98
523
- msgid "Title & Description"
 
524
  msgstr ""
3
  "Content-Type: text/plain; charset=utf-8\n"
4
  "X-Generator: babel-plugin-makepot-aioseo\n"
5
 
6
+ #: src/vue/pages/search-appearance/views/partials/pro/CustomFields.vue:43
7
+ msgid "Custom Fields"
8
+ msgstr ""
9
+
10
+ #: src/vue/pages/search-appearance/views/partials/pro/CustomFields.vue:44
11
+ msgid ""
12
+ "List of custom field names to include in the SEO Page Analysis. Add one per "
13
+ "line."
14
+ msgstr ""
15
+
16
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:129
17
+ msgid ""
18
+ "The Image SEO module is a premium feature that enables you to globally "
19
+ "control the Title Attribute and Alt Text for attachment pages and images "
20
+ "that are embedded in your content. These can be set based on a specified "
21
+ "format, similar to the Title Format settings in the Global Settings menu."
22
+ msgstr ""
23
+
24
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:123
25
+ msgid "Title Attribute Format"
26
+ msgstr ""
27
+
28
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:124
29
+ msgid "Strip Punctuation for Title Attributes"
30
+ msgstr ""
31
+
32
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:125
33
+ msgid "Click on the tags below to insert variables into your title attribute."
34
+ msgstr ""
35
+
36
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:126
37
+ msgid "Alt Tag Attribute Format"
38
+ msgstr ""
39
+
40
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:127
41
+ msgid "Click on the tags below to insert variables into your alt tag attribute."
42
+ msgstr ""
43
+
44
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:128
45
+ msgid "Strip Punctuation for Alt Attributes"
46
+ msgstr ""
47
+
48
+ #: src/vue/pages/post-settings/views/pro/Schema.vue:129
49
+ msgid "FAQ Page"
50
+ msgstr ""
51
+
52
+ #: src/vue/pages/post-settings/views/pro/Schema.vue:130
53
+ msgid "QA Page"
54
+ msgstr ""
55
+
56
+ #: src/vue/pages/post-settings/views/pro/Schema.vue:131
57
+ msgid "Real Estate Listing"
58
+ msgstr ""
59
+
60
+ #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:106
61
+ msgid "Schema Type"
62
+ msgstr ""
63
+
64
+ #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:108
65
+ msgid "Article Type"
66
+ msgstr ""
67
+
68
+ #: src/vue/pages/post-settings/views/pro/Schema.vue:103
69
+ msgid "Article"
70
+ msgstr ""
71
+
72
+ #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:110
73
+ msgid "Blog Post"
74
+ msgstr ""
75
+
76
+ #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:111
77
+ msgid "News Article"
78
+ msgstr ""
79
+
80
+ #: src/vue/pages/post-settings/views/pro/Schema.vue:101
81
+ msgid "None"
82
+ msgstr ""
83
+
84
+ #: src/vue/pages/post-settings/views/pro/Schema.vue:127
85
+ msgid "Web Page"
86
+ msgstr ""
87
+
88
+ #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:97
89
+ msgid "Collection Page"
90
+ msgstr ""
91
+
92
+ #: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:98
93
+ msgid "Profile Page"
94
+ msgstr ""
95
+
96
+ #: src/vue/pages/post-settings/views/pro/Schema.vue:128
97
+ msgid "Item Page"
98
+ msgstr ""
99
+
100
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:122
101
+ msgid "Enable Advanced SEO for Images on your Site"
102
+ msgstr ""
103
+
104
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:130
105
+ msgid "Activate Image SEO"
106
+ msgstr ""
107
+
108
+ #: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:131
109
+ msgid "Learn more about Image SEO"
110
+ msgstr ""
111
+
112
  #: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:129
113
  msgid "News Sitemap Settings"
114
  msgstr ""
157
  msgid "Clear"
158
  msgstr ""
159
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  #: src/vue/pages/sitemaps/views/pro/VideoSitemapActivate.vue:119
161
  msgid "Enable Video Sitemap on your Site"
162
  msgstr ""
169
  msgid "Learn more about Video Sitemaps"
170
  msgstr ""
171
 
172
+ #: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:126
173
+ msgid "Enable Google News Sitemap on your Site"
174
+ msgstr ""
175
+
176
+ #: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:127
177
+ msgid "Activate News Sitemap"
178
+ msgstr ""
179
+
180
+ #: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:128
181
+ msgid "Learn more about News Sitemaps"
182
+ msgstr ""
183
+
184
  #: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:397
185
  msgid "Additional Pages"
186
  msgstr ""
277
  msgid "default"
278
  msgstr ""
279
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280
  #: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:46
281
  msgid "Enable Local SEO on your Site"
282
  msgstr ""
298
  msgid "Learn more about Local SEO"
299
  msgstr ""
300
 
301
+ #: src/vue/pages/search-appearance/views/Taxonomies.vue:104
302
+ msgid "Advanced"
 
 
 
 
 
 
 
 
 
 
303
  msgstr ""
304
 
305
+ #: src/vue/pages/search-appearance/views/Taxonomies.vue:98
306
+ msgid "Title & Description"
307
  msgstr ""
308
 
309
+ #: src/vue/components/pro/core/AccessControlOptions.vue:83
310
+ msgid "General SEO Settings:"
 
311
  msgstr ""
312
 
313
+ #: src/vue/components/pro/core/AccessControlOptions.vue:84
314
+ msgid "Post SEO Settings:"
 
315
  msgstr ""
316
 
317
+ #: src/vue/components/pro/core/AccessControlOptions.vue:85
318
+ msgid "Use Default Settings"
 
319
  msgstr ""
320
 
321
+ #: src/vue/components/pro/core/AccessControlOptions.vue:86
322
+ msgid "General Settings"
 
323
  msgstr ""
324
 
325
+ #: src/vue/components/pro/core/AccessControlOptions.vue:87
326
+ msgid "Search Appearance Settings"
 
327
  msgstr ""
328
 
329
+ #: src/vue/components/pro/core/AccessControlOptions.vue:88
330
+ msgid "Social Networks Settings"
 
331
  msgstr ""
332
 
333
+ #: src/vue/components/pro/core/AccessControlOptions.vue:89
334
+ msgid "Sitemap Settings"
 
335
  msgstr ""
336
 
337
+ #: src/vue/components/pro/core/AccessControlOptions.vue:90
338
+ msgid "Internal Links"
 
 
 
339
  msgstr ""
340
 
341
+ #: src/vue/components/pro/core/AccessControlOptions.vue:91
342
+ msgid "Redirects"
 
 
 
343
  msgstr ""
344
 
345
+ #: src/vue/components/pro/core/AccessControlOptions.vue:92
346
+ msgid "SEO Analysis"
 
347
  msgstr ""
348
 
349
+ #: src/vue/components/pro/core/AccessControlOptions.vue:93
350
+ msgid "Tools"
 
 
 
351
  msgstr ""
352
 
353
+ #: src/vue/components/pro/core/AccessControlOptions.vue:94
354
+ msgid "Feature Manager Settings"
 
 
 
355
  msgstr ""
356
 
357
+ #: src/vue/components/pro/core/AccessControlOptions.vue:95
358
+ msgid "Page Analysis"
 
 
 
359
  msgstr ""
360
 
361
+ #: src/vue/components/pro/core/AccessControlOptions.vue:97
362
+ msgid "Schema Settings"
 
363
  msgstr ""
364
 
365
+ #: src/vue/components/pro/core/AccessControlOptions.vue:98
366
+ msgid "Social Settings"
 
367
  msgstr ""
368
 
369
  #: src/vue/components/pro/settings/LicenseKey.vue:103
416
  msgid "Your license level is %1$s %2$s"
417
  msgstr ""
418
 
419
+ #: src/vue/pages/setup-wizard/views/LicenseKey.vue:165
420
+ msgid "An unknown error occurred, please try again later."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
421
  msgstr ""
422
 
423
+ #: src/vue/pages/setup-wizard/views/LicenseKey.vue:171
424
+ msgid ""
425
+ "The license key provided is invalid. Please use a different key to continue "
426
+ "receiving automatic updates."
427
  msgstr ""
428
 
429
+ #: src/vue/pages/setup-wizard/views/LicenseKey.vue:173
430
+ msgid ""
431
+ "The license key provided is disabled. Please use a different key to "
432
+ "continue receiving automatic updates."
433
  msgstr ""
434
 
435
+ #: src/vue/pages/setup-wizard/views/LicenseKey.vue:177
436
+ msgid ""
437
+ "This license key has reached the maximum number of activations. Please "
438
+ "deactivate it from another site or purchase a new license to continue "
439
+ "receiving automatic updates."
440
  msgstr ""
441
 
442
+ #: src/vue/pages/setup-wizard/views/LicenseKey.vue:179
443
+ msgid "There was an error connecting to the licensing API. Please try again later."
444
  msgstr ""
445
 
446
+ #: src/vue/pages/post-settings/views/pro/Schema.vue:121
447
+ msgid "About Us Page"
448
  msgstr ""
449
 
450
+ #: src/vue/pages/post-settings/views/pro/Schema.vue:122
451
+ msgid "Contact Page"
452
  msgstr ""
453
 
454
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
455
+ #: src/vue/pages/settings/views/WebmasterTools.vue:543
456
+ msgid "This enables tracking outbound forms with Google Analytics.%1$s%2$s"
457
  msgstr ""
458
 
459
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
460
+ #: src/vue/pages/settings/views/WebmasterTools.vue:557
461
+ msgid "This enables tracking events with Google Analytics.%1$s%2$s"
462
  msgstr ""
463
 
464
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
465
+ #: src/vue/pages/settings/views/WebmasterTools.vue:571
466
  msgid ""
467
+ "This enables tracking URL changes for single pages with Google "
468
+ "Analytics.%1$s%2$s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
469
  msgstr ""
470
 
471
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
472
+ #: src/vue/pages/settings/views/WebmasterTools.vue:585
473
  msgid ""
474
+ "This enables tracking how long pages are in visible state with Google "
475
+ "Analytics.%1$s%2$s"
 
 
 
 
 
 
 
 
476
  msgstr ""
477
 
478
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
479
+ #: src/vue/pages/settings/views/WebmasterTools.vue:599
480
+ msgid "This enables tracking media queries with Google Analytics.%1$s%2$s"
481
  msgstr ""
482
 
483
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
484
+ #: src/vue/pages/settings/views/WebmasterTools.vue:613
485
+ msgid ""
486
+ "This enables tracking when elements are visible within the viewport with "
487
+ "Google Analytics.%1$s%2$s"
488
  msgstr ""
489
 
490
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
491
+ #: src/vue/pages/settings/views/WebmasterTools.vue:627
492
+ msgid ""
493
+ "This enables tracking how far down a user scrolls a page with Google "
494
+ "Analytics.%1$s%2$s"
495
  msgstr ""
496
 
497
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
498
+ #: src/vue/pages/settings/views/WebmasterTools.vue:641
499
+ msgid ""
500
+ "This enables tracking interactions with the official Facebook and Twitter "
501
+ "widgets with Google Analytics.%1$s%2$s"
502
  msgstr ""
503
 
504
+ # Translators: 1 - A link to our documentation, 2 - HTML line break tag.
505
+ #: src/vue/pages/settings/views/WebmasterTools.vue:655
506
+ msgid "This ensures consistency in URL paths reported to Google Analytics.%1$s%2$s"
507
  msgstr ""
508
 
509
+ # Translators: 1 - "Google Tag Manager account".
510
+ #: src/vue/pages/settings/views/WebmasterTools.vue:664
511
+ msgid "Google Tag Manager account"
512
  msgstr ""
languages/pro-aioseo.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the All in One SEO Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: All in One SEO Pro 4.0.8\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/all-in-one-seo-pack-pro\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2020-12-21T19:16:32+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: aioseo-pro\n"
@@ -160,461 +160,461 @@ msgid "Error message: %1$s"
160
  msgstr ""
161
 
162
  #: languages/aioseo-pro.php:5
163
- msgid "Enable Local SEO on your Site"
164
  msgstr ""
165
 
166
  #: languages/aioseo-pro.php:8
167
- msgid "The Local SEO module is a premium feature that enables businesses to tell Google about their business, including their business name, address and phone number, opening hours and price range. This information may be displayed as a Knowledge Graph card or business carousel in the search engine sidebar."
168
  msgstr ""
169
 
170
  #: languages/aioseo-pro.php:11
171
- msgid "Activate Local SEO"
172
  msgstr ""
173
 
174
  #: languages/aioseo-pro.php:14
175
- msgid "Learn more about Local SEO"
176
  msgstr ""
177
 
178
  #: languages/aioseo-pro.php:17
179
- msgid "None"
180
  msgstr ""
181
 
182
  #: languages/aioseo-pro.php:20
183
- msgid "Article"
184
  msgstr ""
185
 
186
  #: languages/aioseo-pro.php:23
187
- msgid "About Us Page"
188
  msgstr ""
189
 
190
  #: languages/aioseo-pro.php:26
191
- msgid "Contact Page"
192
  msgstr ""
193
 
194
  #: languages/aioseo-pro.php:29
195
- msgid "Web Page"
196
  msgstr ""
197
 
198
  #: languages/aioseo-pro.php:32
199
- msgid "Item Page"
200
  msgstr ""
201
 
202
  #: languages/aioseo-pro.php:35
203
- msgid "FAQ Page"
204
  msgstr ""
205
 
206
  #: languages/aioseo-pro.php:38
207
- msgid "QA Page"
208
  msgstr ""
209
 
210
  #: languages/aioseo-pro.php:41
211
- msgid "Real Estate Listing"
212
  msgstr ""
213
 
214
  #: languages/aioseo-pro.php:44
215
- msgid "General SEO Settings:"
216
  msgstr ""
217
 
218
  #: languages/aioseo-pro.php:47
219
- msgid "Post SEO Settings:"
220
  msgstr ""
221
 
222
  #: languages/aioseo-pro.php:50
223
- msgid "Use Default Settings"
224
  msgstr ""
225
 
226
  #: languages/aioseo-pro.php:53
227
- msgid "General Settings"
228
  msgstr ""
229
 
230
  #: languages/aioseo-pro.php:56
231
- msgid "Search Appearance Settings"
232
  msgstr ""
233
 
234
  #: languages/aioseo-pro.php:59
235
- msgid "Social Networks Settings"
236
  msgstr ""
237
 
238
  #: languages/aioseo-pro.php:62
239
- msgid "Sitemap Settings"
240
  msgstr ""
241
 
242
  #: languages/aioseo-pro.php:65
243
- msgid "Internal Links"
244
  msgstr ""
245
 
246
  #: languages/aioseo-pro.php:68
247
- msgid "Redirects"
248
  msgstr ""
249
 
250
  #: languages/aioseo-pro.php:71
251
- msgid "SEO Analysis"
252
  msgstr ""
253
 
254
  #: languages/aioseo-pro.php:74
255
- msgid "Tools"
256
  msgstr ""
257
 
258
  #: languages/aioseo-pro.php:77
259
- msgid "Feature Manager Settings"
260
  msgstr ""
261
 
262
  #: languages/aioseo-pro.php:80
263
- msgid "Page Analysis"
264
  msgstr ""
265
 
266
  #: languages/aioseo-pro.php:83
267
- msgid "Advanced Settings"
268
  msgstr ""
269
 
270
  #: languages/aioseo-pro.php:86
271
- msgid "Schema Settings"
272
  msgstr ""
273
 
274
  #: languages/aioseo-pro.php:89
275
- msgid "Social Settings"
276
  msgstr ""
277
 
278
  #: languages/aioseo-pro.php:92
279
- msgid "Pro"
280
  msgstr ""
281
 
282
  #: languages/aioseo-pro.php:95
283
- msgid "License Key"
284
  msgstr ""
285
 
286
  #: languages/aioseo-pro.php:98
287
- msgid "Your license key provides access to updates and addons."
288
  msgstr ""
289
 
290
  #: languages/aioseo-pro.php:101
291
- msgid "Paste your license key here"
292
  msgstr ""
293
 
294
  #: languages/aioseo-pro.php:104
295
- msgid "Connect"
296
  msgstr ""
297
 
298
  #: languages/aioseo-pro.php:107
299
- msgid "Deactivate this license key"
300
  msgstr ""
301
 
302
  #: languages/aioseo-pro.php:110
303
- msgid "A valid license key is required in order to enable Pro features and continue to receive automatic updates."
304
  msgstr ""
305
 
306
- #. Translators: 1 - The plugin name ("All in One SEO").
307
- #: languages/aioseo-pro.php:114
308
- msgid "Enter your license key below to activate %1$s!"
309
  msgstr ""
310
 
311
- #. Translators: 1 - The type of license (Individual, Business, Agency).
312
- #: languages/aioseo-pro.php:118
313
- msgid "Your %1$s plan is active!"
 
 
 
314
  msgstr ""
315
 
316
- #. Translators: 1 - The expiration date of the license.
317
  #: languages/aioseo-pro.php:122
318
- msgid "(expires: %1$s)"
319
  msgstr ""
320
 
321
- #. Translators: 1 - The type of license (Individual, Business, Agency), 2 - The expiration date of the license.
322
- #: languages/aioseo-pro.php:126
323
- msgid "Your license level is %1$s %2$s"
324
  msgstr ""
325
 
326
- #: languages/aioseo-pro.php:130
327
- msgid "An unknown error occurred, please try again later."
 
 
 
 
328
  msgstr ""
329
 
330
  #: languages/aioseo-pro.php:134
331
- msgid "The license key provided is invalid. Please use a different key to continue receiving automatic updates."
332
  msgstr ""
333
 
334
- #: languages/aioseo-pro.php:138
335
- msgid "The license key provided is disabled. Please use a different key to continue receiving automatic updates."
336
  msgstr ""
337
 
338
- #: languages/aioseo-pro.php:142
339
- msgid "This license key has reached the maximum number of activations. Please deactivate it from another site or purchase a new license to continue receiving automatic updates."
 
 
 
 
340
  msgstr ""
341
 
342
  #: languages/aioseo-pro.php:146
343
- msgid "There was an error connecting to the licensing API. Please try again later."
344
  msgstr ""
345
 
346
  #: languages/aioseo-pro.php:149
347
- msgid "Enable Video Sitemap on your Site"
348
  msgstr ""
349
 
350
  #: languages/aioseo-pro.php:152
351
- msgid "Activate Video Sitemap"
352
  msgstr ""
353
 
354
  #: languages/aioseo-pro.php:155
355
- msgid "Learn more about Video Sitemaps"
356
  msgstr ""
357
 
358
- #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
359
- #: languages/aioseo-pro.php:159
360
- msgid "This enables tracking outbound forms with Google Analytics.%1$s%2$s"
361
  msgstr ""
362
 
363
- #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
364
- #: languages/aioseo-pro.php:163
365
- msgid "This enables tracking events with Google Analytics.%1$s%2$s"
366
  msgstr ""
367
 
368
- #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
369
- #: languages/aioseo-pro.php:167
370
- msgid "This enables tracking URL changes for single pages with Google Analytics.%1$s%2$s"
 
 
 
 
371
  msgstr ""
372
 
373
- #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
374
  #: languages/aioseo-pro.php:171
375
- msgid "This enables tracking how long pages are in visible state with Google Analytics.%1$s%2$s"
376
  msgstr ""
377
 
378
- #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
379
- #: languages/aioseo-pro.php:175
380
- msgid "This enables tracking media queries with Google Analytics.%1$s%2$s"
381
  msgstr ""
382
 
383
- #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
384
- #: languages/aioseo-pro.php:179
385
- msgid "This enables tracking when elements are visible within the viewport with Google Analytics.%1$s%2$s"
 
 
 
386
  msgstr ""
387
 
388
- #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
389
  #: languages/aioseo-pro.php:183
390
- msgid "This enables tracking how far down a user scrolls a page with Google Analytics.%1$s%2$s"
391
  msgstr ""
392
 
393
- #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
394
  #: languages/aioseo-pro.php:187
395
- msgid "This enables tracking interactions with the official Facebook and Twitter widgets with Google Analytics.%1$s%2$s"
396
  msgstr ""
397
 
398
- #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
399
- #: languages/aioseo-pro.php:191
400
- msgid "This ensures consistency in URL paths reported to Google Analytics.%1$s%2$s"
401
  msgstr ""
402
 
403
- #. Translators: 1 - "Google Tag Manager account".
404
- #: languages/aioseo-pro.php:195
405
- msgid "Google Tag Manager account"
406
  msgstr ""
407
 
408
- #: languages/aioseo-pro.php:198
409
- msgid "Enable Google News Sitemap on your Site"
410
  msgstr ""
411
 
412
- #: languages/aioseo-pro.php:201
413
- msgid "Activate News Sitemap"
414
  msgstr ""
415
 
416
- #: languages/aioseo-pro.php:204
417
- msgid "Learn more about News Sitemaps"
418
  msgstr ""
419
 
420
- #: languages/aioseo-pro.php:207
421
- msgid "News Sitemap Settings"
422
  msgstr ""
423
 
424
- #: languages/aioseo-pro.php:210
425
- msgid "Publication Name"
 
 
 
 
426
  msgstr ""
427
 
428
  #: languages/aioseo-pro.php:214
429
- msgid "Post Types"
430
  msgstr ""
431
 
432
- #: languages/aioseo-pro.php:218
433
- msgid "Include All Post Types"
434
  msgstr ""
435
 
436
- #: languages/aioseo-pro.php:222
437
- msgid "Select which Post Types appear in your sitemap."
 
 
 
 
438
  msgstr ""
439
 
440
  #: languages/aioseo-pro.php:226
441
- msgid "Exclude Posts / Pages"
442
  msgstr ""
443
 
444
- #: languages/aioseo-pro.php:230
445
- msgid "Priority Score"
446
  msgstr ""
447
 
448
- #: languages/aioseo-pro.php:234
449
- msgid "Type to search..."
 
 
 
 
450
  msgstr ""
451
 
452
  #: languages/aioseo-pro.php:238
453
- msgid "Begin typing a title or ID to search for a page or post."
454
  msgstr ""
455
 
456
- #: languages/aioseo-pro.php:242
457
- msgid "No pages or posts found with that title or ID. Try again!"
458
  msgstr ""
459
 
460
- #: languages/aioseo-pro.php:246
461
- msgid "Clear"
462
  msgstr ""
463
 
464
- #: languages/aioseo-pro.php:249
465
- msgid "Additional Pages"
466
  msgstr ""
467
 
468
- #: languages/aioseo-pro.php:252
469
- msgid "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."
470
  msgstr ""
471
 
472
- #: languages/aioseo-pro.php:255
473
- msgid "Video Sitemap Settings"
474
  msgstr ""
475
 
476
- #: languages/aioseo-pro.php:258
477
- msgid "Include Custom Fields"
478
  msgstr ""
479
 
480
- #: languages/aioseo-pro.php:261
481
- msgid "Enable this option to look for videos in custom fields as well."
482
  msgstr ""
483
 
484
- #: languages/aioseo-pro.php:264
485
- msgid "Dynamically Generate"
486
  msgstr ""
487
 
488
- #: languages/aioseo-pro.php:267
489
- msgid "Dynamically creates the Video Sitemap instead of using a static file."
490
  msgstr ""
491
 
492
- #: languages/aioseo-pro.php:270
493
- msgid "Video Embed Settings"
494
  msgstr ""
495
 
496
- #: languages/aioseo-pro.php:273
497
- msgid "This section allows you to manage your video embeds, such as features for Facebook or making them responsive to automatically fit your content width."
498
  msgstr ""
499
 
500
- #: languages/aioseo-pro.php:276
501
- msgid "Embed"
502
  msgstr ""
503
 
504
- #: languages/aioseo-pro.php:279
505
- msgid "Allow videos to be played directly on other websites, such as Facebook or Twitter."
 
506
  msgstr ""
507
 
508
- #. Translators: 1 - "FitVids.js".
509
- #: languages/aioseo-pro.php:283
510
- msgid "Try to make videos responsive using %1$s?"
511
  msgstr ""
512
 
 
513
  #: languages/aioseo-pro.php:286
514
- msgid "Content Width"
515
  msgstr ""
516
 
517
- #: languages/aioseo-pro.php:289
518
- msgid "This defaults to your theme's content width, but if it's empty, setting a value here will make sure videos are embedded with the right width."
 
519
  msgstr ""
520
 
521
- #: languages/aioseo-pro.php:292
522
- msgid "Wistia Domain"
523
  msgstr ""
524
 
525
- #: languages/aioseo-pro.php:295
526
- msgid "If you use Wistia in combination with a custom domain, set this to the domain name you use for your Wistia videos. Don't include https: or slashes as they are not needed."
527
  msgstr ""
528
 
529
- #: languages/aioseo-pro.php:298
530
- msgid "Embedly API Key"
531
  msgstr ""
532
 
533
- #. Translators: 1 - "embed.ly", 2 - "embed.ly".
534
  #: languages/aioseo-pro.php:302
535
- msgid "By default, we try to provide enriched information about your videos. A lot of video services are supported by default. For those services which aren't supported, we can try to retrieve enriched video information using %1$s. If you want to use this option, you'll need to sign up for a (free) %2$s account and provide the API key you receive."
536
  msgstr ""
537
 
538
  #: languages/aioseo-pro.php:305
539
- msgid "default"
540
  msgstr ""
541
 
542
  #: languages/aioseo-pro.php:308
543
- msgid "Title Attribute Format"
544
  msgstr ""
545
 
546
  #: languages/aioseo-pro.php:311
547
- msgid "Strip Punctuation for Title Attributes"
548
- msgstr ""
549
-
550
- #: languages/aioseo-pro.php:314
551
- msgid "Click on the tags below to insert variables into your title attribute."
552
  msgstr ""
553
 
554
- #: languages/aioseo-pro.php:317
555
- msgid "Alt Tag Attribute Format"
 
556
  msgstr ""
557
 
558
- #: languages/aioseo-pro.php:320
559
- msgid "Click on the tags below to insert variables into your alt tag attribute."
 
560
  msgstr ""
561
 
 
562
  #: languages/aioseo-pro.php:323
563
- msgid "Strip Punctuation for Alt Attributes"
564
- msgstr ""
565
-
566
- #: languages/aioseo-pro.php:326
567
- msgid "Enable Advanced SEO for Images on your Site"
568
  msgstr ""
569
 
570
- #: languages/aioseo-pro.php:329
571
- msgid "The Image SEO module is a premium feature that enables you to globally control the Title Attribute and Alt Text for attachment pages and images that are embedded in your content. These can be set based on a specified format, similar to the Title Format settings in the Global Settings menu."
 
572
  msgstr ""
573
 
574
- #: languages/aioseo-pro.php:332
575
- msgid "Activate Image SEO"
 
576
  msgstr ""
577
 
 
578
  #: languages/aioseo-pro.php:335
579
- msgid "Learn more about Image SEO"
580
- msgstr ""
581
-
582
- #: languages/aioseo-pro.php:338
583
- msgid "Custom Fields"
584
  msgstr ""
585
 
586
- #: languages/aioseo-pro.php:341
587
- msgid "List of custom field names to include in the SEO Page Analysis. Add one per line."
 
588
  msgstr ""
589
 
590
- #: languages/aioseo-pro.php:344
591
- msgid "Schema Type"
 
592
  msgstr ""
593
 
 
594
  #: languages/aioseo-pro.php:347
595
- msgid "Article Type"
596
- msgstr ""
597
-
598
- #: languages/aioseo-pro.php:350
599
- msgid "Blog Post"
600
- msgstr ""
601
-
602
- #: languages/aioseo-pro.php:353
603
- msgid "News Article"
604
- msgstr ""
605
-
606
- #: languages/aioseo-pro.php:356
607
- msgid "Collection Page"
608
- msgstr ""
609
-
610
- #: languages/aioseo-pro.php:359
611
- msgid "Profile Page"
612
- msgstr ""
613
-
614
- #: languages/aioseo-pro.php:362
615
- msgid "Advanced"
616
  msgstr ""
617
 
618
- #: languages/aioseo-pro.php:365
619
- msgid "Title & Description"
 
620
  msgstr ""
2
  # This file is distributed under the same license as the All in One SEO Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: All in One SEO Pro 4.0.9\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/all-in-one-seo-pack-pro\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2020-12-22T18:13:40+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: aioseo-pro\n"
160
  msgstr ""
161
 
162
  #: languages/aioseo-pro.php:5
163
+ msgid "Custom Fields"
164
  msgstr ""
165
 
166
  #: languages/aioseo-pro.php:8
167
+ msgid "List of custom field names to include in the SEO Page Analysis. Add one per line."
168
  msgstr ""
169
 
170
  #: languages/aioseo-pro.php:11
171
+ msgid "The Image SEO module is a premium feature that enables you to globally control the Title Attribute and Alt Text for attachment pages and images that are embedded in your content. These can be set based on a specified format, similar to the Title Format settings in the Global Settings menu."
172
  msgstr ""
173
 
174
  #: languages/aioseo-pro.php:14
175
+ msgid "Title Attribute Format"
176
  msgstr ""
177
 
178
  #: languages/aioseo-pro.php:17
179
+ msgid "Strip Punctuation for Title Attributes"
180
  msgstr ""
181
 
182
  #: languages/aioseo-pro.php:20
183
+ msgid "Click on the tags below to insert variables into your title attribute."
184
  msgstr ""
185
 
186
  #: languages/aioseo-pro.php:23
187
+ msgid "Alt Tag Attribute Format"
188
  msgstr ""
189
 
190
  #: languages/aioseo-pro.php:26
191
+ msgid "Click on the tags below to insert variables into your alt tag attribute."
192
  msgstr ""
193
 
194
  #: languages/aioseo-pro.php:29
195
+ msgid "Strip Punctuation for Alt Attributes"
196
  msgstr ""
197
 
198
  #: languages/aioseo-pro.php:32
199
+ msgid "FAQ Page"
200
  msgstr ""
201
 
202
  #: languages/aioseo-pro.php:35
203
+ msgid "QA Page"
204
  msgstr ""
205
 
206
  #: languages/aioseo-pro.php:38
207
+ msgid "Real Estate Listing"
208
  msgstr ""
209
 
210
  #: languages/aioseo-pro.php:41
211
+ msgid "Schema Type"
212
  msgstr ""
213
 
214
  #: languages/aioseo-pro.php:44
215
+ msgid "Article Type"
216
  msgstr ""
217
 
218
  #: languages/aioseo-pro.php:47
219
+ msgid "Article"
220
  msgstr ""
221
 
222
  #: languages/aioseo-pro.php:50
223
+ msgid "Blog Post"
224
  msgstr ""
225
 
226
  #: languages/aioseo-pro.php:53
227
+ msgid "News Article"
228
  msgstr ""
229
 
230
  #: languages/aioseo-pro.php:56
231
+ msgid "None"
232
  msgstr ""
233
 
234
  #: languages/aioseo-pro.php:59
235
+ msgid "Web Page"
236
  msgstr ""
237
 
238
  #: languages/aioseo-pro.php:62
239
+ msgid "Collection Page"
240
  msgstr ""
241
 
242
  #: languages/aioseo-pro.php:65
243
+ msgid "Profile Page"
244
  msgstr ""
245
 
246
  #: languages/aioseo-pro.php:68
247
+ msgid "Item Page"
248
  msgstr ""
249
 
250
  #: languages/aioseo-pro.php:71
251
+ msgid "Enable Advanced SEO for Images on your Site"
252
  msgstr ""
253
 
254
  #: languages/aioseo-pro.php:74
255
+ msgid "Activate Image SEO"
256
  msgstr ""
257
 
258
  #: languages/aioseo-pro.php:77
259
+ msgid "Learn more about Image SEO"
260
  msgstr ""
261
 
262
  #: languages/aioseo-pro.php:80
263
+ msgid "News Sitemap Settings"
264
  msgstr ""
265
 
266
  #: languages/aioseo-pro.php:83
267
+ msgid "Publication Name"
268
  msgstr ""
269
 
270
  #: languages/aioseo-pro.php:86
271
+ msgid "Post Types"
272
  msgstr ""
273
 
274
  #: languages/aioseo-pro.php:89
275
+ msgid "Include All Post Types"
276
  msgstr ""
277
 
278
  #: languages/aioseo-pro.php:92
279
+ msgid "Select which Post Types appear in your sitemap."
280
  msgstr ""
281
 
282
  #: languages/aioseo-pro.php:95
283
+ msgid "Advanced Settings"
284
  msgstr ""
285
 
286
  #: languages/aioseo-pro.php:98
287
+ msgid "Exclude Posts / Pages"
288
  msgstr ""
289
 
290
  #: languages/aioseo-pro.php:101
291
+ msgid "Priority Score"
292
  msgstr ""
293
 
294
  #: languages/aioseo-pro.php:104
295
+ msgid "Type to search..."
296
  msgstr ""
297
 
298
  #: languages/aioseo-pro.php:107
299
+ msgid "Begin typing a title or ID to search for a page or post."
300
  msgstr ""
301
 
302
  #: languages/aioseo-pro.php:110
303
+ msgid "No pages or posts found with that title or ID. Try again!"
304
  msgstr ""
305
 
306
+ #: languages/aioseo-pro.php:113
307
+ msgid "Clear"
 
308
  msgstr ""
309
 
310
+ #: languages/aioseo-pro.php:116
311
+ msgid "Enable Video Sitemap on your Site"
312
+ msgstr ""
313
+
314
+ #: languages/aioseo-pro.php:119
315
+ msgid "Activate Video Sitemap"
316
  msgstr ""
317
 
 
318
  #: languages/aioseo-pro.php:122
319
+ msgid "Learn more about Video Sitemaps"
320
  msgstr ""
321
 
322
+ #: languages/aioseo-pro.php:125
323
+ msgid "Enable Google News Sitemap on your Site"
 
324
  msgstr ""
325
 
326
+ #: languages/aioseo-pro.php:128
327
+ msgid "Activate News Sitemap"
328
+ msgstr ""
329
+
330
+ #: languages/aioseo-pro.php:131
331
+ msgid "Learn more about News Sitemaps"
332
  msgstr ""
333
 
334
  #: languages/aioseo-pro.php:134
335
+ msgid "Additional Pages"
336
  msgstr ""
337
 
338
+ #: languages/aioseo-pro.php:137
339
+ msgid "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."
340
  msgstr ""
341
 
342
+ #: languages/aioseo-pro.php:140
343
+ msgid "Video Sitemap Settings"
344
+ msgstr ""
345
+
346
+ #: languages/aioseo-pro.php:143
347
+ msgid "Include Custom Fields"
348
  msgstr ""
349
 
350
  #: languages/aioseo-pro.php:146
351
+ msgid "Enable this option to look for videos in custom fields as well."
352
  msgstr ""
353
 
354
  #: languages/aioseo-pro.php:149
355
+ msgid "Dynamically Generate"
356
  msgstr ""
357
 
358
  #: languages/aioseo-pro.php:152
359
+ msgid "Dynamically creates the Video Sitemap instead of using a static file."
360
  msgstr ""
361
 
362
  #: languages/aioseo-pro.php:155
363
+ msgid "Video Embed Settings"
364
  msgstr ""
365
 
366
+ #: languages/aioseo-pro.php:158
367
+ msgid "This section allows you to manage your video embeds, such as features for Facebook or making them responsive to automatically fit your content width."
 
368
  msgstr ""
369
 
370
+ #: languages/aioseo-pro.php:161
371
+ msgid "Embed"
 
372
  msgstr ""
373
 
374
+ #: languages/aioseo-pro.php:164
375
+ msgid "Allow videos to be played directly on other websites, such as Facebook or Twitter."
376
+ msgstr ""
377
+
378
+ #. Translators: 1 - "FitVids.js".
379
+ #: languages/aioseo-pro.php:168
380
+ msgid "Try to make videos responsive using %1$s?"
381
  msgstr ""
382
 
 
383
  #: languages/aioseo-pro.php:171
384
+ msgid "Content Width"
385
  msgstr ""
386
 
387
+ #: languages/aioseo-pro.php:174
388
+ msgid "This defaults to your theme's content width, but if it's empty, setting a value here will make sure videos are embedded with the right width."
 
389
  msgstr ""
390
 
391
+ #: languages/aioseo-pro.php:177
392
+ msgid "Wistia Domain"
393
+ msgstr ""
394
+
395
+ #: languages/aioseo-pro.php:180
396
+ msgid "If you use Wistia in combination with a custom domain, set this to the domain name you use for your Wistia videos. Don't include https: or slashes as they are not needed."
397
  msgstr ""
398
 
 
399
  #: languages/aioseo-pro.php:183
400
+ msgid "Embedly API Key"
401
  msgstr ""
402
 
403
+ #. Translators: 1 - "embed.ly", 2 - "embed.ly".
404
  #: languages/aioseo-pro.php:187
405
+ msgid "By default, we try to provide enriched information about your videos. A lot of video services are supported by default. For those services which aren't supported, we can try to retrieve enriched video information using %1$s. If you want to use this option, you'll need to sign up for a (free) %2$s account and provide the API key you receive."
406
  msgstr ""
407
 
408
+ #: languages/aioseo-pro.php:190
409
+ msgid "default"
 
410
  msgstr ""
411
 
412
+ #: languages/aioseo-pro.php:193
413
+ msgid "Enable Local SEO on your Site"
 
414
  msgstr ""
415
 
416
+ #: languages/aioseo-pro.php:196
417
+ msgid "The Local SEO module is a premium feature that enables businesses to tell Google about their business, including their business name, address and phone number, opening hours and price range. This information may be displayed as a Knowledge Graph card or business carousel in the search engine sidebar."
418
  msgstr ""
419
 
420
+ #: languages/aioseo-pro.php:199
421
+ msgid "Activate Local SEO"
422
  msgstr ""
423
 
424
+ #: languages/aioseo-pro.php:202
425
+ msgid "Learn more about Local SEO"
426
  msgstr ""
427
 
428
+ #: languages/aioseo-pro.php:205
429
+ msgid "Advanced"
430
  msgstr ""
431
 
432
+ #: languages/aioseo-pro.php:208
433
+ msgid "Title & Description"
434
+ msgstr ""
435
+
436
+ #: languages/aioseo-pro.php:211
437
+ msgid "General SEO Settings:"
438
  msgstr ""
439
 
440
  #: languages/aioseo-pro.php:214
441
+ msgid "Post SEO Settings:"
442
  msgstr ""
443
 
444
+ #: languages/aioseo-pro.php:217
445
+ msgid "Use Default Settings"
446
  msgstr ""
447
 
448
+ #: languages/aioseo-pro.php:220
449
+ msgid "General Settings"
450
+ msgstr ""
451
+
452
+ #: languages/aioseo-pro.php:223
453
+ msgid "Search Appearance Settings"
454
  msgstr ""
455
 
456
  #: languages/aioseo-pro.php:226
457
+ msgid "Social Networks Settings"
458
  msgstr ""
459
 
460
+ #: languages/aioseo-pro.php:229
461
+ msgid "Sitemap Settings"
462
  msgstr ""
463
 
464
+ #: languages/aioseo-pro.php:232
465
+ msgid "Internal Links"
466
+ msgstr ""
467
+
468
+ #: languages/aioseo-pro.php:235
469
+ msgid "Redirects"
470
  msgstr ""
471
 
472
  #: languages/aioseo-pro.php:238
473
+ msgid "SEO Analysis"
474
  msgstr ""
475
 
476
+ #: languages/aioseo-pro.php:241
477
+ msgid "Tools"
478
  msgstr ""
479
 
480
+ #: languages/aioseo-pro.php:244
481
+ msgid "Feature Manager Settings"
482
  msgstr ""
483
 
484
+ #: languages/aioseo-pro.php:247
485
+ msgid "Page Analysis"
486
  msgstr ""
487
 
488
+ #: languages/aioseo-pro.php:250
489
+ msgid "Schema Settings"
490
  msgstr ""
491
 
492
+ #: languages/aioseo-pro.php:253
493
+ msgid "Social Settings"
494
  msgstr ""
495
 
496
+ #: languages/aioseo-pro.php:256
497
+ msgid "Pro"
498
  msgstr ""
499
 
500
+ #: languages/aioseo-pro.php:259
501
+ msgid "License Key"
502
  msgstr ""
503
 
504
+ #: languages/aioseo-pro.php:262
505
+ msgid "Your license key provides access to updates and addons."
506
  msgstr ""
507
 
508
+ #: languages/aioseo-pro.php:265
509
+ msgid "Paste your license key here"
510
  msgstr ""
511
 
512
+ #: languages/aioseo-pro.php:268
513
+ msgid "Connect"
514
  msgstr ""
515
 
516
+ #: languages/aioseo-pro.php:271
517
+ msgid "Deactivate this license key"
518
  msgstr ""
519
 
520
+ #: languages/aioseo-pro.php:274
521
+ msgid "A valid license key is required in order to enable Pro features and continue to receive automatic updates."
522
  msgstr ""
523
 
524
+ #. Translators: 1 - The plugin name ("All in One SEO").
525
+ #: languages/aioseo-pro.php:278
526
+ msgid "Enter your license key below to activate %1$s!"
527
  msgstr ""
528
 
529
+ #. Translators: 1 - The type of license (Individual, Business, Agency).
530
+ #: languages/aioseo-pro.php:282
531
+ msgid "Your %1$s plan is active!"
532
  msgstr ""
533
 
534
+ #. Translators: 1 - The expiration date of the license.
535
  #: languages/aioseo-pro.php:286
536
+ msgid "(expires: %1$s)"
537
  msgstr ""
538
 
539
+ #. Translators: 1 - The type of license (Individual, Business, Agency), 2 - The expiration date of the license.
540
+ #: languages/aioseo-pro.php:290
541
+ msgid "Your license level is %1$s %2$s"
542
  msgstr ""
543
 
544
+ #: languages/aioseo-pro.php:293
545
+ msgid "An unknown error occurred, please try again later."
546
  msgstr ""
547
 
548
+ #: languages/aioseo-pro.php:296
549
+ msgid "The license key provided is invalid. Please use a different key to continue receiving automatic updates."
550
  msgstr ""
551
 
552
+ #: languages/aioseo-pro.php:299
553
+ msgid "The license key provided is disabled. Please use a different key to continue receiving automatic updates."
554
  msgstr ""
555
 
 
556
  #: languages/aioseo-pro.php:302
557
+ msgid "This license key has reached the maximum number of activations. Please deactivate it from another site or purchase a new license to continue receiving automatic updates."
558
  msgstr ""
559
 
560
  #: languages/aioseo-pro.php:305
561
+ msgid "There was an error connecting to the licensing API. Please try again later."
562
  msgstr ""
563
 
564
  #: languages/aioseo-pro.php:308
565
+ msgid "About Us Page"
566
  msgstr ""
567
 
568
  #: languages/aioseo-pro.php:311
569
+ msgid "Contact Page"
 
 
 
 
570
  msgstr ""
571
 
572
+ #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
573
+ #: languages/aioseo-pro.php:315
574
+ msgid "This enables tracking outbound forms with Google Analytics.%1$s%2$s"
575
  msgstr ""
576
 
577
+ #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
578
+ #: languages/aioseo-pro.php:319
579
+ msgid "This enables tracking events with Google Analytics.%1$s%2$s"
580
  msgstr ""
581
 
582
+ #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
583
  #: languages/aioseo-pro.php:323
584
+ msgid "This enables tracking URL changes for single pages with Google Analytics.%1$s%2$s"
 
 
 
 
585
  msgstr ""
586
 
587
+ #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
588
+ #: languages/aioseo-pro.php:327
589
+ msgid "This enables tracking how long pages are in visible state with Google Analytics.%1$s%2$s"
590
  msgstr ""
591
 
592
+ #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
593
+ #: languages/aioseo-pro.php:331
594
+ msgid "This enables tracking media queries with Google Analytics.%1$s%2$s"
595
  msgstr ""
596
 
597
+ #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
598
  #: languages/aioseo-pro.php:335
599
+ msgid "This enables tracking when elements are visible within the viewport with Google Analytics.%1$s%2$s"
 
 
 
 
600
  msgstr ""
601
 
602
+ #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
603
+ #: languages/aioseo-pro.php:339
604
+ msgid "This enables tracking how far down a user scrolls a page with Google Analytics.%1$s%2$s"
605
  msgstr ""
606
 
607
+ #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
608
+ #: languages/aioseo-pro.php:343
609
+ msgid "This enables tracking interactions with the official Facebook and Twitter widgets with Google Analytics.%1$s%2$s"
610
  msgstr ""
611
 
612
+ #. Translators: 1 - A link to our documentation, 2 - HTML line break tag.
613
  #: languages/aioseo-pro.php:347
614
+ msgid "This ensures consistency in URL paths reported to Google Analytics.%1$s%2$s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
615
  msgstr ""
616
 
617
+ #. Translators: 1 - "Google Tag Manager account".
618
+ #: languages/aioseo-pro.php:351
619
+ msgid "Google Tag Manager account"
620
  msgstr ""
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: semperplugins, smub, benjaminprojas
3
  Tags: SEO, Google Search Console, XML Sitemap, meta description, schema, meta title, rich snippets, woocommerce seo, local seo, open graph, google news sitemap, video sitemap, robots.txt, seo audit, content analysis
4
  Requires at least: 4.9
5
  Tested up to: 5.6
6
- Stable tag: 4.0.8
7
  License: GPLv2 or later
8
  Requires PHP: 5.4
9
 
@@ -236,6 +236,6 @@ AIOSEO is the original WordPress SEO plugin, and it's trusted by over 2 million
236
 
237
  == Upgrade Notice ==
238
 
239
- = 4.0.8 =
240
 
241
  This update adds major improvements and bugfixes.
3
  Tags: SEO, Google Search Console, XML Sitemap, meta description, schema, meta title, rich snippets, woocommerce seo, local seo, open graph, google news sitemap, video sitemap, robots.txt, seo audit, content analysis
4
  Requires at least: 4.9
5
  Tested up to: 5.6
6
+ Stable tag: 4.0.9
7
  License: GPLv2 or later
8
  Requires PHP: 5.4
9
 
236
 
237
  == Upgrade Notice ==
238
 
239
+ = 4.0.9 =
240
 
241
  This update adds major improvements and bugfixes.
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit2420f44fccb438387d520bf57ed74af8::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit9eef5e20e4440db039c00e8ebed839e7::getLoader();
vendor/composer/InstalledVersions.php CHANGED
@@ -29,7 +29,7 @@ private static $installed = array (
29
  'aliases' =>
30
  array (
31
  ),
32
- 'reference' => '18ae322d36cd82b9cfeabfdede3b900de3438cfb',
33
  'name' => 'awesomemotive/all-in-one-seo-pack-pro',
34
  ),
35
  'versions' =>
@@ -41,7 +41,7 @@ private static $installed = array (
41
  'aliases' =>
42
  array (
43
  ),
44
- 'reference' => '18ae322d36cd82b9cfeabfdede3b900de3438cfb',
45
  ),
46
  'monolog/monolog' =>
47
  array (
29
  'aliases' =>
30
  array (
31
  ),
32
+ 'reference' => 'a2f3aa647078143d60dab608329d06dca3339939',
33
  'name' => 'awesomemotive/all-in-one-seo-pack-pro',
34
  ),
35
  'versions' =>
41
  'aliases' =>
42
  array (
43
  ),
44
+ 'reference' => 'a2f3aa647078143d60dab608329d06dca3339939',
45
  ),
46
  'monolog/monolog' =>
47
  array (
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit2420f44fccb438387d520bf57ed74af8
6
  {
7
  private static $loader;
8
 
@@ -24,15 +24,15 @@ class ComposerAutoloaderInit2420f44fccb438387d520bf57ed74af8
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
- spl_autoload_register(array('ComposerAutoloaderInit2420f44fccb438387d520bf57ed74af8', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
29
- spl_autoload_unregister(array('ComposerAutoloaderInit2420f44fccb438387d520bf57ed74af8', 'loadClassLoader'));
30
 
31
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
32
  if ($useStaticLoader) {
33
  require __DIR__ . '/autoload_static.php';
34
 
35
- call_user_func(\Composer\Autoload\ComposerStaticInit2420f44fccb438387d520bf57ed74af8::getInitializer($loader));
36
  } else {
37
  $map = require __DIR__ . '/autoload_namespaces.php';
38
  foreach ($map as $namespace => $path) {
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit9eef5e20e4440db039c00e8ebed839e7
6
  {
7
  private static $loader;
8
 
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
+ spl_autoload_register(array('ComposerAutoloaderInit9eef5e20e4440db039c00e8ebed839e7', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
29
+ spl_autoload_unregister(array('ComposerAutoloaderInit9eef5e20e4440db039c00e8ebed839e7', 'loadClassLoader'));
30
 
31
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
32
  if ($useStaticLoader) {
33
  require __DIR__ . '/autoload_static.php';
34
 
35
+ call_user_func(\Composer\Autoload\ComposerStaticInit9eef5e20e4440db039c00e8ebed839e7::getInitializer($loader));
36
  } else {
37
  $map = require __DIR__ . '/autoload_namespaces.php';
38
  foreach ($map as $namespace => $path) {
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit2420f44fccb438387d520bf57ed74af8
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'P' =>
@@ -151,9 +151,9 @@ class ComposerStaticInit2420f44fccb438387d520bf57ed74af8
151
  public static function getInitializer(ClassLoader $loader)
152
  {
153
  return \Closure::bind(function () use ($loader) {
154
- $loader->prefixLengthsPsr4 = ComposerStaticInit2420f44fccb438387d520bf57ed74af8::$prefixLengthsPsr4;
155
- $loader->prefixDirsPsr4 = ComposerStaticInit2420f44fccb438387d520bf57ed74af8::$prefixDirsPsr4;
156
- $loader->classMap = ComposerStaticInit2420f44fccb438387d520bf57ed74af8::$classMap;
157
 
158
  }, null, ClassLoader::class);
159
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit9eef5e20e4440db039c00e8ebed839e7
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'P' =>
151
  public static function getInitializer(ClassLoader $loader)
152
  {
153
  return \Closure::bind(function () use ($loader) {
154
+ $loader->prefixLengthsPsr4 = ComposerStaticInit9eef5e20e4440db039c00e8ebed839e7::$prefixLengthsPsr4;
155
+ $loader->prefixDirsPsr4 = ComposerStaticInit9eef5e20e4440db039c00e8ebed839e7::$prefixDirsPsr4;
156
+ $loader->classMap = ComposerStaticInit9eef5e20e4440db039c00e8ebed839e7::$classMap;
157
 
158
  }, null, ClassLoader::class);
159
  }
vendor/composer/installed.php CHANGED
@@ -6,7 +6,7 @@
6
  'aliases' =>
7
  array (
8
  ),
9
- 'reference' => '18ae322d36cd82b9cfeabfdede3b900de3438cfb',
10
  'name' => 'awesomemotive/all-in-one-seo-pack-pro',
11
  ),
12
  'versions' =>
@@ -18,7 +18,7 @@
18
  'aliases' =>
19
  array (
20
  ),
21
- 'reference' => '18ae322d36cd82b9cfeabfdede3b900de3438cfb',
22
  ),
23
  'monolog/monolog' =>
24
  array (
6
  'aliases' =>
7
  array (
8
  ),
9
+ 'reference' => 'a2f3aa647078143d60dab608329d06dca3339939',
10
  'name' => 'awesomemotive/all-in-one-seo-pack-pro',
11
  ),
12
  'versions' =>
18
  'aliases' =>
19
  array (
20
  ),
21
+ 'reference' => 'a2f3aa647078143d60dab608329d06dca3339939',
22
  ),
23
  'monolog/monolog' =>
24
  array (