All in One SEO Pack - Version 4.0.10

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.10
Comparing to
See all releases

Code changes from version 4.0.9 to 4.0.10

Files changed (46) hide show
  1. all_in_one_seo_pack.php +1 -1
  2. app/Common/Admin/Admin.php +5 -0
  3. app/Common/Admin/LocalBusinessSeo.php +4 -4
  4. app/Common/Admin/Notices/Notices.php +14 -7
  5. app/Common/Admin/PostSettings.php +16 -3
  6. app/Common/Api/Notifications.php +1 -1
  7. app/Common/Api/Settings.php +1 -1
  8. app/Common/Api/Sitemaps.php +1 -1
  9. app/Common/Migration/Meta.php +1 -1
  10. app/Common/Migration/Sitemap.php +1 -1
  11. app/Common/Schema/Breadcrumb.php +7 -6
  12. app/Common/Schema/Graphs/WebPage.php +1 -1
  13. app/Common/Sitemap/File.php +3 -3
  14. app/Common/Sitemap/Ping.php +1 -1
  15. app/Common/Sitemap/Rewrite.php +2 -2
  16. app/Common/Tools/BadBotBlocker.php +7 -7
  17. app/Common/Tools/Htaccess.php +5 -5
  18. app/Common/Tools/RobotsTxt.php +35 -7
  19. app/Common/Utils/ActionScheduler.php +50 -0
  20. app/Common/Utils/Filter.php +8 -2
  21. app/Common/Utils/Helpers.php +29 -6
  22. app/Common/Utils/Options.php +20 -8
  23. dist/Lite/assets/css/aioseo-admin-bar.css +1 -1
  24. dist/Lite/assets/css/aioseo-admin-bar.css.gz +0 -0
  25. dist/Lite/assets/css/chunk-common.css +1 -1
  26. dist/Lite/assets/css/chunk-common.rtl.css +1 -1
  27. dist/Lite/assets/css/search-appearance-ContentTypes-vue.css +1 -1
  28. dist/Lite/assets/css/search-appearance-ContentTypes-vue.rtl.css +1 -1
  29. dist/Lite/assets/css/search-appearance-Media-vue.css +1 -1
  30. dist/Lite/assets/css/search-appearance-Media-vue.rtl.css +1 -1
  31. dist/Lite/assets/css/search-appearance-partials-Schema-vue.css +1 -1
  32. dist/Lite/assets/css/search-appearance-partials-Schema-vue.rtl.css +1 -1
  33. dist/Lite/assets/css/search-appearance-partials-lite-Schema-vue.css +1 -1
  34. dist/Lite/assets/css/search-appearance-partials-lite-Schema-vue.rtl.css +1 -1
  35. dist/Lite/assets/js/aioseo-admin-bar.js +1 -1
  36. dist/Lite/assets/js/aioseo-admin-bar.js.gz +0 -0
  37. dist/Lite/assets/js/plugins.js +1 -1
  38. dist/Lite/assets/js/plugins.js.gz +0 -0
  39. dist/Lite/assets/js/post-settings.js +1 -1
  40. dist/Lite/assets/js/search-appearance-ContentTypes-vue.js +1 -1
  41. dist/Lite/assets/js/search-appearance-Main-vue.js +1 -1
  42. dist/Lite/assets/js/search-appearance-Media-vue.js +1 -1
  43. dist/Lite/assets/js/search-appearance-Taxonomies-vue.js +1 -1
  44. dist/Lite/assets/js/search-appearance-partials-Schema-vue.js +1 -1
  45. dist/Lite/assets/js/search-appearance-partials-lite-Schema-vue.js +1 -1
  46. languages/aioseo-lite.php +1820 -1889
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.9
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.10
9
  * Text Domain: all-in-one-seo-pack
10
  * Domain Path: /i18n/
11
  *
app/Common/Admin/Admin.php CHANGED
@@ -462,6 +462,11 @@ class Admin {
462
 
463
  $parent = is_admin() ? 'aioseo-main' : 'aioseo-settings-main';
464
  foreach ( $this->pages as $id => $page ) {
 
 
 
 
 
465
  $this->adminBarMenuItems[] = [
466
  'id' => $id,
467
  'parent' => $parent,
462
 
463
  $parent = is_admin() ? 'aioseo-main' : 'aioseo-settings-main';
464
  foreach ( $this->pages as $id => $page ) {
465
+ // Remove the analytics menu.
466
+ if ( 'aioseo-monsterinsights' === $id ) {
467
+ continue;
468
+ }
469
+
470
  $this->adminBarMenuItems[] = [
471
  'id' => $id,
472
  'parent' => $parent,
app/Common/Admin/LocalBusinessSeo.php CHANGED
@@ -39,11 +39,11 @@ class LocalBusinessSeo {
39
  * @return void
40
  */
41
  public function enqueueLocalBusinessSeoScripts() {
42
- $screen = get_current_screen();
43
  if (
44
- 'edit-tags' === $screen->base ||
45
- 'term' === $screen->base ||
46
- 'post' === $screen->base
 
47
  ) {
48
  aioseo()->helpers->enqueueScript(
49
  'aioseo-localbusinessseo-settings-metabox',
39
  * @return void
40
  */
41
  public function enqueueLocalBusinessSeoScripts() {
 
42
  if (
43
+ aioseo()->helpers->isScreenBase( 'event-espresso' ) ||
44
+ aioseo()->helpers->isScreenBase( 'post' ) ||
45
+ aioseo()->helpers->isScreenBase( 'term' ) ||
46
+ aioseo()->helpers->isScreenBase( 'edit-tags' )
47
  ) {
48
  aioseo()->helpers->enqueueScript(
49
  'aioseo-localbusinessseo-settings-metabox',
app/Common/Admin/Notices/Notices.php CHANGED
@@ -149,7 +149,6 @@ class Notices {
149
  * @return array An array of notifications.
150
  */
151
  private function fetch() {
152
- error_log( $this->getUrl() . '?' . time() );
153
  $response = wp_remote_get( $this->getUrl() . '?' . time() );
154
 
155
  if ( is_wp_error( $response ) ) {
@@ -543,10 +542,18 @@ class Notices {
543
  return;
544
  }
545
 
 
 
 
 
 
 
546
  $content = sprintf(
547
- // Translators: 1 - The plugin short name ("AIOSEO").
548
- __( 'Warning: %1$s has detected the use of filters that have been deprecated on your site. These filters may be in use by another plugin or your theme. If that is the case, these filters most likely will not work with this plugin. Please check for an update immediately or contact our support for more information.', 'all-in-one-seo-pack' ), // phpcs:ignore Generic.Files.LineLength.MaxExceeded
549
- AIOSEO_PLUGIN_SHORT_NAME
 
 
550
  ) . '<ul>';
551
 
552
  foreach ( $filters as $filter ) {
@@ -556,7 +563,7 @@ class Notices {
556
  $content .= '</ul>';
557
 
558
  // Update an existing notice.
559
- $notification = Models\Notification::getNotificationByName( 'deprecated-filters' );
560
  if ( $notification->exists() ) {
561
  $notification->content = $content;
562
  $notification->save();
@@ -566,10 +573,10 @@ class Notices {
566
  // Create a new one if it doesn't exist.
567
  Models\Notification::addNotification( [
568
  'slug' => uniqid(),
569
- 'notification_name' => 'deprecated-filters',
570
  'title' => __( 'Deprecated Filters Detected', 'all-in-one-seo-pack' ),
571
  'content' => $content,
572
- 'type' => 'error',
573
  'level' => [ 'all' ],
574
  'button1_label' => __( 'Remind Me Later', 'all-in-one-seo-pack' ),
575
  'button1_action' => 'http://action#notification/deprecated-filters-reminder',
149
  * @return array An array of notifications.
150
  */
151
  private function fetch() {
 
152
  $response = wp_remote_get( $this->getUrl() . '?' . time() );
153
 
154
  if ( is_wp_error( $response ) ) {
542
  return;
543
  }
544
 
545
+ // We've updated our notification so let's remove the old one if it exists.
546
+ $notification = Models\Notification::getNotificationByName( 'deprecated-filters' );
547
+ if ( $notification->exists() ) {
548
+ Models\Notification::deleteNotificationByName( 'deprecated-filters' );
549
+ }
550
+
551
  $content = sprintf(
552
+ // Translators: 1 - The plugin short name ("AIOSEO"), 2 - Opening link tag, 3 - Closing link tag.
553
+ __( 'Warning: %1$s has detected the use of filters that have been deprecated on your site. These filters may be in use by another plugin or your theme. If that is the case, these filters most likely will not work with this plugin. Please make sure you have updated all your plugins. If you have manually added these filters, please %2$scheck out our documentation%3$s for the updated filters to use.', 'all-in-one-seo-pack' ), // phpcs:ignore Generic.Files.LineLength.MaxExceeded
554
+ AIOSEO_PLUGIN_SHORT_NAME,
555
+ '<a target="_blank" href="' . aioseo()->helpers->utmUrl( AIOSEO_MARKETING_URL . 'docs/aioseo-filter-hooks/', 'deprecated-filters-notice' ) . '">',
556
+ '</a>'
557
  ) . '<ul>';
558
 
559
  foreach ( $filters as $filter ) {
563
  $content .= '</ul>';
564
 
565
  // Update an existing notice.
566
+ $notification = Models\Notification::getNotificationByName( 'deprecated-filters-v2' );
567
  if ( $notification->exists() ) {
568
  $notification->content = $content;
569
  $notification->save();
573
  // Create a new one if it doesn't exist.
574
  Models\Notification::addNotification( [
575
  'slug' => uniqid(),
576
+ 'notification_name' => 'deprecated-filters-v2',
577
  'title' => __( 'Deprecated Filters Detected', 'all-in-one-seo-pack' ),
578
  'content' => $content,
579
+ 'type' => 'warning',
580
  'level' => [ 'all' ],
581
  'button1_label' => __( 'Remind Me Later', 'all-in-one-seo-pack' ),
582
  'button1_action' => 'http://action#notification/deprecated-filters-reminder',
app/Common/Admin/PostSettings.php CHANGED
@@ -42,8 +42,20 @@ class PostSettings {
42
  * @return void
43
  */
44
  public function enqueuePostSettingsAssets() {
45
- $screen = get_current_screen();
46
- if ( 'post' === $screen->base || 'term' === $screen->base || 'edit-tags' === $screen->base ) {
 
 
 
 
 
 
 
 
 
 
 
 
47
  aioseo()->helpers->enqueueScript(
48
  'aioseo-post-settings-metabox',
49
  'js/post-settings.js'
@@ -51,7 +63,7 @@ class PostSettings {
51
  wp_localize_script(
52
  'aioseo-post-settings-metabox',
53
  'aioseo',
54
- aioseo()->helpers->getVueData()
55
  );
56
 
57
  $rtl = is_rtl() ? '.rtl' : '';
@@ -61,6 +73,7 @@ class PostSettings {
61
  );
62
  }
63
 
 
64
  if ( 'attachment' === $screen->id ) {
65
  wp_enqueue_media();
66
  }
42
  * @return void
43
  */
44
  public function enqueuePostSettingsAssets() {
45
+ if (
46
+ aioseo()->helpers->isScreenBase( 'event-espresso' ) ||
47
+ aioseo()->helpers->isScreenBase( 'post' ) ||
48
+ aioseo()->helpers->isScreenBase( 'term' ) ||
49
+ aioseo()->helpers->isScreenBase( 'edit-tags' )
50
+ ) {
51
+ $page = null;
52
+ if (
53
+ aioseo()->helpers->isScreenBase( 'event-espresso' ) ||
54
+ aioseo()->helpers->isScreenBase( 'post' )
55
+ ) {
56
+ $page = 'post';
57
+ }
58
+
59
  aioseo()->helpers->enqueueScript(
60
  'aioseo-post-settings-metabox',
61
  'js/post-settings.js'
63
  wp_localize_script(
64
  'aioseo-post-settings-metabox',
65
  'aioseo',
66
+ aioseo()->helpers->getVueData( $page )
67
  );
68
 
69
  $rtl = is_rtl() ? '.rtl' : '';
73
  );
74
  }
75
 
76
+ $screen = get_current_screen();
77
  if ( 'attachment' === $screen->id ) {
78
  wp_enqueue_media();
79
  }
app/Common/Api/Notifications.php CHANGED
@@ -126,7 +126,7 @@ class Notifications {
126
  * @return \WP_REST_Response The response.
127
  */
128
  public static function deprecatedFiltersReminder() {
129
- return self::reminder( 'deprecated-filters' );
130
  }
131
 
132
  /**
126
  * @return \WP_REST_Response The response.
127
  */
128
  public static function deprecatedFiltersReminder() {
129
+ return self::reminder( 'deprecated-filters-v2' );
130
  }
131
 
132
  /**
app/Common/Api/Settings.php CHANGED
@@ -201,7 +201,7 @@ class Settings {
201
  public static function importSettings( $request ) {
202
  $file = $request->get_file_params()['file'];
203
  $wpfs = aioseo()->helpers->wpfs();
204
- $contents = $wpfs->get_contents( $file['tmp_name'] );
205
  if ( ! empty( $file['type'] ) && 'application/json' === $file['type'] ) {
206
  // Since this could be any file, we need to pretend like every variable here is missing.
207
  $contents = json_decode( $contents, true );
201
  public static function importSettings( $request ) {
202
  $file = $request->get_file_params()['file'];
203
  $wpfs = aioseo()->helpers->wpfs();
204
+ $contents = @$wpfs->get_contents( $file['tmp_name'] );
205
  if ( ! empty( $file['type'] ) && 'application/json' === $file['type'] ) {
206
  // Since this could be any file, we need to pretend like every variable here is missing.
207
  $contents = json_decode( $contents, true );
app/Common/Api/Sitemaps.php CHANGED
@@ -56,7 +56,7 @@ class Sitemaps {
56
  }
57
 
58
  foreach ( $detectedFiles as $file ) {
59
- $wpfs->delete( $file, false, 'f' );
60
  }
61
 
62
  Models\Notification::deleteNotificationByName( 'sitemap-static-files' );
56
  }
57
 
58
  foreach ( $detectedFiles as $file ) {
59
+ @$wpfs->delete( $file, false, 'f' );
60
  }
61
 
62
  Models\Notification::deleteNotificationByName( 'sitemap-static-files' );
app/Common/Migration/Meta.php CHANGED
@@ -33,7 +33,7 @@ class Meta {
33
  return;
34
  }
35
 
36
- as_schedule_single_action( time(), 'aioseo_migrate_post_meta', [], 'aioseo', [], 'aioseo' );
37
  } catch ( \Exception $e ) {
38
  // Do nothing.
39
  }
33
  return;
34
  }
35
 
36
+ as_schedule_single_action( time(), 'aioseo_migrate_post_meta', [], 'aioseo' );
37
  } catch ( \Exception $e ) {
38
  // Do nothing.
39
  }
app/Common/Migration/Sitemap.php CHANGED
@@ -395,7 +395,7 @@ class Sitemap {
395
  $wpfs = aioseo()->helpers->wpfs();
396
  if ( count( $detectedFiles ) && is_object( $wpfs ) ) {
397
  foreach ( $detectedFiles as $file ) {
398
- $wpfs->delete( $file, false, 'f' );
399
  }
400
  }
401
 
395
  $wpfs = aioseo()->helpers->wpfs();
396
  if ( count( $detectedFiles ) && is_object( $wpfs ) ) {
397
  foreach ( $detectedFiles as $file ) {
398
+ @$wpfs->delete( $file, false, 'f' );
399
  }
400
  }
401
 
app/Common/Schema/Breadcrumb.php CHANGED
@@ -49,7 +49,7 @@ class Breadcrumb {
49
  array_unshift(
50
  $breadcrumbs,
51
  [
52
- 'name' => aioseo()->meta->title->getTitle( $post ),
53
  'description' => aioseo()->meta->description->getDescription( $post ),
54
  'url' => get_permalink( $post ),
55
  'type' => aioseo()->helpers->isWooCommerceShopPage() || is_home() ? 'CollectionPage' : $this->getPostGraph()
@@ -85,7 +85,7 @@ class Breadcrumb {
85
 
86
  if ( count( $tags ) !== count( $objects ) ) {
87
  return [
88
- 'name' => aioseo()->meta->title->getTitle( $post ),
89
  'description' => aioseo()->meta->description->getDescription( $post ),
90
  'url' => $permalink,
91
  'type' => $this->getPostGraph()
@@ -115,7 +115,7 @@ class Breadcrumb {
115
  $wp_query->is_category = true;
116
 
117
  $breadcrumb = [
118
- 'name' => aioseo()->meta->title->getTitle(),
119
  'description' => aioseo()->meta->description->getDescription(),
120
  'url' => $url[0],
121
  'type' => 'CollectionPage'
@@ -135,7 +135,7 @@ class Breadcrumb {
135
  case '%postid%':
136
  case '%postname%':
137
  $breadcrumb = [
138
- 'name' => aioseo()->meta->title->getTitle( $post ),
139
  'description' => aioseo()->meta->description->getDescription( $post ),
140
  'url' => $url[0],
141
  'type' => $this->getPostGraph()
@@ -176,7 +176,7 @@ class Breadcrumb {
176
  array_unshift(
177
  $breadcrumbs,
178
  [
179
- 'name' => aioseo()->meta->title->getTitle(),
180
  'description' => aioseo()->meta->description->getDescription(),
181
  'url' => get_term_link( $term, $term->taxonomy ),
182
  'type' => 'CollectionPage'
@@ -280,7 +280,8 @@ class Breadcrumb {
280
 
281
  // The homepage needs to be root item of all trails.
282
  $homepage = [
283
- 'name' => aioseo()->meta->title->getHomePageTitle(),
 
284
  'description' => aioseo()->meta->description->getHomePageDescription(),
285
  'url' => trailingslashit( home_url() ),
286
  'type' => 'posts' === get_option( 'show_on_front' ) ? 'CollectionPage' : 'WebPage'
49
  array_unshift(
50
  $breadcrumbs,
51
  [
52
+ 'name' => $post->post_title,
53
  'description' => aioseo()->meta->description->getDescription( $post ),
54
  'url' => get_permalink( $post ),
55
  'type' => aioseo()->helpers->isWooCommerceShopPage() || is_home() ? 'CollectionPage' : $this->getPostGraph()
85
 
86
  if ( count( $tags ) !== count( $objects ) ) {
87
  return [
88
+ 'name' => $post->post_title,
89
  'description' => aioseo()->meta->description->getDescription( $post ),
90
  'url' => $permalink,
91
  'type' => $this->getPostGraph()
115
  $wp_query->is_category = true;
116
 
117
  $breadcrumb = [
118
+ 'name' => $term->name,
119
  'description' => aioseo()->meta->description->getDescription(),
120
  'url' => $url[0],
121
  'type' => 'CollectionPage'
135
  case '%postid%':
136
  case '%postname%':
137
  $breadcrumb = [
138
+ 'name' => $post->post_title,
139
  'description' => aioseo()->meta->description->getDescription( $post ),
140
  'url' => $url[0],
141
  'type' => $this->getPostGraph()
176
  array_unshift(
177
  $breadcrumbs,
178
  [
179
+ 'name' => $term->name,
180
  'description' => aioseo()->meta->description->getDescription(),
181
  'url' => get_term_link( $term, $term->taxonomy ),
182
  'type' => 'CollectionPage'
280
 
281
  // The homepage needs to be root item of all trails.
282
  $homepage = [
283
+ // Translators: This refers to the homepage of the site.
284
+ 'name' => apply_filters( 'aioseo_schema_breadcrumbs_home', __( 'Home', 'all-in-one-seo-pack' ) ),
285
  'description' => aioseo()->meta->description->getHomePageDescription(),
286
  'url' => trailingslashit( home_url() ),
287
  'type' => 'posts' === get_option( 'show_on_front' ) ? 'CollectionPage' : 'WebPage'
app/Common/Schema/Graphs/WebPage.php CHANGED
@@ -32,7 +32,7 @@ class WebPage extends Graph {
32
  '@type' => $this->type,
33
  '@id' => aioseo()->schema->context['url'] . '#' . strtolower( $this->type ),
34
  'url' => aioseo()->schema->context['url'],
35
- 'name' => aioseo()->schema->context['name'],
36
  'description' => aioseo()->schema->context['description'],
37
  'inLanguage' => get_bloginfo( 'language' ),
38
  'isPartOf' => [ '@id' => $homeUrl . '#website' ],
32
  '@type' => $this->type,
33
  '@id' => aioseo()->schema->context['url'] . '#' . strtolower( $this->type ),
34
  'url' => aioseo()->schema->context['url'],
35
+ 'name' => aioseo()->meta->title->getTitle(),
36
  'description' => aioseo()->schema->context['description'],
37
  'inLanguage' => get_bloginfo( 'language' ),
38
  'isPartOf' => [ '@id' => $homeUrl . '#website' ],
app/Common/Sitemap/File.php CHANGED
@@ -209,9 +209,9 @@ class File {
209
  $file = ABSPATH . sanitize_file_name( $filename );
210
  $wpfs = aioseo()->helpers->wpfs();
211
  if ( $wpfs ) {
212
- $fileExists = $wpfs->exists( $file );
213
- if ( ! $fileExists || $wpfs->is_writable( $file ) ) {
214
- $wpfs->put_contents( $file, $content );
215
  }
216
  }
217
  }
209
  $file = ABSPATH . sanitize_file_name( $filename );
210
  $wpfs = aioseo()->helpers->wpfs();
211
  if ( $wpfs ) {
212
+ $fileExists = @$wpfs->exists( $file );
213
+ if ( ! $fileExists || @$wpfs->is_writable( $file ) ) {
214
+ @$wpfs->put_contents( $file, $content );
215
  }
216
  }
217
  }
app/Common/Sitemap/Ping.php CHANGED
@@ -66,7 +66,7 @@ class Ping {
66
  if ( ! as_next_scheduled_action( 'aioseo_sitemap_ping_recurring' ) ) {
67
 
68
  $interval = apply_filters( 'aioseo_sitemap_ping_recurring', DAY_IN_SECONDS );
69
- as_schedule_recurring_action( strtotime( 'tomorrow' ), $interval, 'aioseo_sitemap_ping_recurring' );
70
  }
71
  } catch ( \Exception $e ) {
72
  // Do nothing.
66
  if ( ! as_next_scheduled_action( 'aioseo_sitemap_ping_recurring' ) ) {
67
 
68
  $interval = apply_filters( 'aioseo_sitemap_ping_recurring', DAY_IN_SECONDS );
69
+ as_schedule_recurring_action( strtotime( 'tomorrow' ), $interval, 'aioseo_sitemap_ping_recurring', [], 'aioseo' );
70
  }
71
  } catch ( \Exception $e ) {
72
  // Do nothing.
app/Common/Sitemap/Rewrite.php CHANGED
@@ -41,8 +41,8 @@ class Rewrite {
41
  }
42
 
43
  $rules += [
44
- '(.+)-sitemap.xml' => 'index.php?aiosp_sitemap_path=$matches[1]',
45
- '(.+)-sitemap(\d+).xml' => 'index.php?aiosp_sitemap_path=$matches[1]&aiosp_sitemap_page=$matches[2]'
46
  ];
47
 
48
  if ( aioseo()->options->sitemap->rss->enable ) {
41
  }
42
 
43
  $rules += [
44
+ '^(?!wp\-sitemap\.).+-sitemap\.xml' => 'index.php?aiosp_sitemap_path=$matches[1]',
45
+ '^(?!wp\-sitemap\.).+-sitemap(\d+)\.xml' => 'index.php?aiosp_sitemap_path=$matches[1]&aiosp_sitemap_page=$matches[2]'
46
  ];
47
 
48
  if ( aioseo()->options->sitemap->rss->enable ) {
app/Common/Tools/BadBotBlocker.php CHANGED
@@ -204,11 +204,11 @@ class BadBotBlocker {
204
  if ( wp_mkdir_p( $logDirectory ) ) {
205
  $wpfs = aioseo()->helpers->wpfs();
206
  $filePath = $logDirectory . 'aioseo-bad-bot-blocker.log';
207
- if ( ! $wpfs->exists( $filePath ) ) {
208
- $wpfs->touch( $filePath );
209
  }
210
 
211
- if ( $wpfs->exists( $filePath ) ) {
212
  $this->log = new Logger( 'aioseo-bad-bot-blocker' );
213
  $this->log->pushHandler( new StreamHandler( $filePath ) );
214
  }
@@ -252,8 +252,8 @@ class BadBotBlocker {
252
  $logDirectory = $uploadDirectory['basedir'] . '/aioseo-logs/';
253
  $filePath = $logDirectory . 'aioseo-bad-bot-blocker.log';
254
  $wpfs = aioseo()->helpers->wpfs();
255
- if ( $wpfs->exists( $filePath ) ) {
256
- return $wpfs->size( $filePath );
257
  }
258
 
259
  return 0;
@@ -271,8 +271,8 @@ class BadBotBlocker {
271
  $logDirectory = $uploadDirectory['basedir'] . '/aioseo-logs/';
272
  $filePath = $logDirectory . 'aioseo-bad-bot-blocker.log';
273
  $wpfs = aioseo()->helpers->wpfs();
274
- if ( $wpfs->exists( $filePath ) ) {
275
- $wpfs->put_contents( $filePath, '' );
276
  }
277
 
278
  return $this->getLogSize( $filePath );
204
  if ( wp_mkdir_p( $logDirectory ) ) {
205
  $wpfs = aioseo()->helpers->wpfs();
206
  $filePath = $logDirectory . 'aioseo-bad-bot-blocker.log';
207
+ if ( ! @$wpfs->exists( $filePath ) ) {
208
+ @$wpfs->touch( $filePath );
209
  }
210
 
211
+ if ( @$wpfs->exists( $filePath ) ) {
212
  $this->log = new Logger( 'aioseo-bad-bot-blocker' );
213
  $this->log->pushHandler( new StreamHandler( $filePath ) );
214
  }
252
  $logDirectory = $uploadDirectory['basedir'] . '/aioseo-logs/';
253
  $filePath = $logDirectory . 'aioseo-bad-bot-blocker.log';
254
  $wpfs = aioseo()->helpers->wpfs();
255
+ if ( @$wpfs->exists( $filePath ) ) {
256
+ return @$wpfs->size( $filePath );
257
  }
258
 
259
  return 0;
271
  $logDirectory = $uploadDirectory['basedir'] . '/aioseo-logs/';
272
  $filePath = $logDirectory . 'aioseo-bad-bot-blocker.log';
273
  $wpfs = aioseo()->helpers->wpfs();
274
+ if ( @$wpfs->exists( $filePath ) ) {
275
+ @$wpfs->put_contents( $filePath, '' );
276
  }
277
 
278
  return $this->getLogSize( $filePath );
app/Common/Tools/Htaccess.php CHANGED
@@ -29,11 +29,11 @@ class Htaccess {
29
  */
30
  public function getContents() {
31
  $wpfs = aioseo()->helpers->wpfs();
32
- if ( ! $wpfs->exists( $this->path ) ) {
33
  return false;
34
  }
35
 
36
- return $wpfs->get_contents( $this->path );
37
  }
38
 
39
  /**
@@ -46,9 +46,9 @@ class Htaccess {
46
  */
47
  public function saveContents( $contents ) {
48
  $wpfs = aioseo()->helpers->wpfs();
49
- $fileExists = $wpfs->exists( $this->path );
50
- if ( ! $fileExists || $wpfs->is_writable( $this->path ) ) {
51
- $success = $wpfs->put_contents( $this->path, $contents );
52
  if ( false === $success ) {
53
  return false;
54
  }
29
  */
30
  public function getContents() {
31
  $wpfs = aioseo()->helpers->wpfs();
32
+ if ( ! @$wpfs->exists( $this->path ) ) {
33
  return false;
34
  }
35
 
36
+ return @$wpfs->get_contents( $this->path );
37
  }
38
 
39
  /**
46
  */
47
  public function saveContents( $contents ) {
48
  $wpfs = aioseo()->helpers->wpfs();
49
+ $fileExists = @$wpfs->exists( $this->path );
50
+ if ( ! $fileExists || @$wpfs->is_writable( $this->path ) ) {
51
+ $success = @$wpfs->put_contents( $this->path, $contents );
52
  if ( false === $success ) {
53
  return false;
54
  }
app/Common/Tools/RobotsTxt.php CHANGED
@@ -12,6 +12,10 @@ class RobotsTxt {
12
  public function __construct() {
13
  add_filter( 'robots_txt', [ $this, 'buildRules' ], 10000, 2 );
14
 
 
 
 
 
15
  $this->checkForPhysicalFiles();
16
  }
17
 
@@ -29,8 +33,9 @@ class RobotsTxt {
29
  return $original;
30
  }
31
 
32
- $sitemapUrls = implode( "\r\n", aioseo()->sitemap->helpers->getSitemapUrls() );
33
- $originalRules = $this->extractRules( explode( "\n", $original ) );
 
34
  $networkRules = [];
35
  if ( is_multisite() ) {
36
  switch_to_blog( aioseo()->helpers->getNetworkId() );
@@ -275,6 +280,29 @@ class RobotsTxt {
275
  return $rules;
276
  }
277
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278
  /**
279
  * Sanitize the path on import.
280
  *
@@ -347,11 +375,11 @@ class RobotsTxt {
347
  public function importPhysicalRobotsTxt( $network = false ) {
348
  $wpfs = aioseo()->helpers->wpfs();
349
  $file = trailingslashit( $wpfs->abspath() ) . 'robots.txt';
350
- if ( ! $wpfs->is_readable( $file ) ) {
351
  return false;
352
  }
353
 
354
- $lines = $wpfs->get_contents_array( $file );
355
  if ( ! $lines ) {
356
  return true;
357
  }
@@ -412,7 +440,7 @@ class RobotsTxt {
412
  if ( 'direct' === $accessType ) {
413
  $file = trailingslashit( $wpfs->abspath() ) . 'robots.txt';
414
 
415
- return $wpfs->exists( $file );
416
  }
417
 
418
  return false;
@@ -428,7 +456,7 @@ class RobotsTxt {
428
  public function deletePhysicalRobotsTxt() {
429
  $wpfs = aioseo()->helpers->wpfs();
430
  $file = trailingslashit( $wpfs->abspath() ) . 'robots.txt';
431
- return $wpfs->delete( $file );
432
  }
433
 
434
  /**
@@ -439,7 +467,7 @@ class RobotsTxt {
439
  * @return array An array of robots.txt rules (excluding our own).
440
  */
441
  public function getDefaultRules() {
442
- // First, we need to remove our filter, so that id doesn't run unintentionally.
443
  remove_filter( 'robots_txt', [ $this, 'buildRules' ], 10000 );
444
 
445
  ob_start();
12
  public function __construct() {
13
  add_filter( 'robots_txt', [ $this, 'buildRules' ], 10000, 2 );
14
 
15
+ // If our tables do not exist, create them now.
16
+ if ( ! aioseo()->db->tableExists( 'aioseo_notifications' ) ) {
17
+ aioseo()->updates->addInitialCustomTablesForV4();
18
+ }
19
  $this->checkForPhysicalFiles();
20
  }
21
 
33
  return $original;
34
  }
35
 
36
+ $original = explode( "\n", $original );
37
+ $sitemapUrls = implode( "\r\n", array_merge( aioseo()->sitemap->helpers->getSitemapUrls(), $this->extractSitemapUrls( $original ) ) );
38
+ $originalRules = $this->extractRules( $original );
39
  $networkRules = [];
40
  if ( is_multisite() ) {
41
  switch_to_blog( aioseo()->helpers->getNetworkId() );
280
  return $rules;
281
  }
282
 
283
+ /**
284
+ * Extract sitemap URLs from a string.
285
+ *
286
+ * @since 4.0.10
287
+ *
288
+ * @param array $lines The lines to extract from.
289
+ * @return array An array of sitemap URLs.
290
+ */
291
+ public function extractSitemapUrls( $lines ) {
292
+ $sitemapUrls = [];
293
+ foreach ( $lines as $line ) {
294
+ if ( empty( $line ) ) {
295
+ continue;
296
+ }
297
+
298
+ $array = array_map( 'trim', explode( 'sitemap:', strtolower( $line ) ) );
299
+ if ( ! empty( $array[1] ) ) {
300
+ $sitemapUrls[] = trim( $line );
301
+ }
302
+ }
303
+ return $sitemapUrls;
304
+ }
305
+
306
  /**
307
  * Sanitize the path on import.
308
  *
375
  public function importPhysicalRobotsTxt( $network = false ) {
376
  $wpfs = aioseo()->helpers->wpfs();
377
  $file = trailingslashit( $wpfs->abspath() ) . 'robots.txt';
378
+ if ( ! @$wpfs->is_readable( $file ) ) {
379
  return false;
380
  }
381
 
382
+ $lines = @$wpfs->get_contents_array( $file );
383
  if ( ! $lines ) {
384
  return true;
385
  }
440
  if ( 'direct' === $accessType ) {
441
  $file = trailingslashit( $wpfs->abspath() ) . 'robots.txt';
442
 
443
+ return @$wpfs->exists( $file );
444
  }
445
 
446
  return false;
456
  public function deletePhysicalRobotsTxt() {
457
  $wpfs = aioseo()->helpers->wpfs();
458
  $file = trailingslashit( $wpfs->abspath() ) . 'robots.txt';
459
+ return @$wpfs->delete( $file );
460
  }
461
 
462
  /**
467
  * @return array An array of robots.txt rules (excluding our own).
468
  */
469
  public function getDefaultRules() {
470
+ // First, we need to remove our filter, so that it doesn't run unintentionally.
471
  remove_filter( 'robots_txt', [ $this, 'buildRules' ], 10000 );
472
 
473
  ob_start();
app/Common/Utils/ActionScheduler.php CHANGED
@@ -41,5 +41,55 @@ class ActionScheduler extends \ActionScheduler_ListTable {
41
  }
42
  }
43
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  }
45
  }
41
  }
42
  }
43
  }
44
+
45
+ add_action( 'init', [ $this, 'cleanup' ] );
46
+ }
47
+
48
+ /**
49
+ * Begins the task of cleaning up the action scheduler items
50
+ * by setting an action to do it.
51
+ *
52
+ * @since 4.0.10
53
+ *
54
+ * @return void
55
+ */
56
+ public function cleanup() {
57
+ try {
58
+ // Register the action handler.
59
+ add_action( 'aioseo_cleanup_action_scheduler', [ $this, 'processCleanup' ] );
60
+
61
+ if ( ! as_next_scheduled_action( 'aioseo_cleanup_action_scheduler' ) ) {
62
+ as_schedule_recurring_action( strtotime( '+24 hours' ), DAY_IN_SECONDS, 'aioseo_cleanup_action_scheduler', [], 'aioseo' );
63
+
64
+ // Run the task immediately using an async action.
65
+ as_enqueue_async_action( 'aioseo_cleanup_action_scheduler', [], 'aioseo' );
66
+ }
67
+ } catch ( \Exception $e ) {
68
+ // Do nothing.
69
+ }
70
+ }
71
+
72
+ /**
73
+ * Actually runs the cleanup command.
74
+ *
75
+ * @since 4.0.10
76
+ *
77
+ * @return void
78
+ */
79
+ public function processCleanup() {
80
+ if (
81
+ ! aioseo()->db->tableExists( 'actionscheduler_actions' ) ||
82
+ ! aioseo()->db->tableExists( 'actionscheduler_groups' )
83
+ ) {
84
+ return;
85
+ }
86
+
87
+ $prefix = aioseo()->db->db->prefix;
88
+ aioseo()->db->execute(
89
+ "DELETE aa FROM {$prefix}actionscheduler_actions as aa
90
+ JOIN {$prefix}actionscheduler_groups as ag on `ag`.`group_id` = `aa`.`group_id`
91
+ WHERE `ag`.`slug` = 'aioseo'
92
+ AND `aa`.`status` IN ('complete', 'failed');"
93
+ );
94
  }
95
  }
app/Common/Utils/Filter.php CHANGED
@@ -151,13 +151,19 @@ class Filter {
151
  }
152
  }
153
 
154
- $notification = Models\Notification::getNotificationByName( 'deprecated-filters' );
155
  if ( empty( $inUse ) ) {
 
 
 
 
 
 
 
156
  if ( ! $notification->exists() ) {
157
  return;
158
  }
159
 
160
- Models\Notification::deleteNotificationByName( 'deprecated-filters' );
161
  return;
162
  }
163
 
151
  }
152
  }
153
 
 
154
  if ( empty( $inUse ) ) {
155
+ // We've updated our notification so let's remove the old one if it exists.
156
+ $notification = Models\Notification::getNotificationByName( 'deprecated-filters' );
157
+ if ( $notification->exists() ) {
158
+ Models\Notification::deleteNotificationByName( 'deprecated-filters' );
159
+ }
160
+
161
+ $notification = Models\Notification::getNotificationByName( 'deprecated-filters-v2' );
162
  if ( ! $notification->exists() ) {
163
  return;
164
  }
165
 
166
+ Models\Notification::deleteNotificationByName( 'deprecated-filters-v2' );
167
  return;
168
  }
169
 
app/Common/Utils/Helpers.php CHANGED
@@ -571,7 +571,7 @@ class Helpers {
571
  restore_current_blog();
572
  }
573
 
574
- if ( 'post' === $screen->base ) {
575
  $postId = get_the_ID();
576
  $post = Models\Post::getPost( $postId );
577
 
@@ -708,7 +708,7 @@ class Helpers {
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() )
@@ -1276,10 +1276,6 @@ class Helpers {
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
 
@@ -2059,4 +2055,31 @@ class Helpers {
2059
  }
2060
  return $screen->base === $screenName;
2061
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2062
  }
571
  restore_current_blog();
572
  }
573
 
574
+ if ( 'post' === $page ) {
575
  $postId = get_the_ID();
576
  $post = Models\Post::getPost( $postId );
577
 
708
  'defaultRules' => $page ? aioseo()->robotsTxt->getDefaultRules() : [],
709
  'hasPhysicalRobots' => aioseo()->robotsTxt->hasPhysicalRobotsTxt(),
710
  'rewriteExists' => aioseo()->robotsTxt->rewriteRulesExist(),
711
+ 'sitemapUrls' => array_merge( aioseo()->sitemap->helpers->getSitemapUrls(), $this->extractSitemapUrlsFromRobotsTxt() )
712
  ];
713
  $data['data']['logSizes'] = [
714
  'badBotBlockerLog' => $this->convertFileSize( aioseo()->badBotBlocker->getLogSize() )
1276
  * @return WP_Filesystem The filesystem object.
1277
  */
1278
  public function wpfs( $args = [] ) {
 
 
 
 
1279
  require_once( ABSPATH . 'wp-admin/includes/file.php' );
1280
  WP_Filesystem( $args );
1281
 
2055
  }
2056
  return $screen->base === $screenName;
2057
  }
2058
+
2059
+ /**
2060
+ * Extracts existing sitemap URLs from the robots.txt file.
2061
+ *
2062
+ * We need this in case users have existing sitemap directives added to their robots.txt file.
2063
+ *
2064
+ * @since 4.0.10
2065
+ *
2066
+ * @return array An array with robots.txt sitemap directives.
2067
+ */
2068
+ private function extractSitemapUrlsFromRobotsTxt() {
2069
+ // First, we need to remove our filter, so that it doesn't run unintentionally.
2070
+ remove_filter( 'robots_txt', [ aioseo()->robotsTxt, 'buildRules' ], 10000 );
2071
+ $robotsTxt = apply_filters( 'robots_txt', '', true );
2072
+ add_filter( 'robots_txt', [ aioseo()->robotsTxt, 'buildRules' ], 10000, 2 );
2073
+
2074
+ if ( ! $robotsTxt ) {
2075
+ return [];
2076
+ }
2077
+
2078
+ $lines = explode( "\n", $robotsTxt );
2079
+ if ( ! is_array( $lines ) || ! count( $lines ) ) {
2080
+ return [];
2081
+ }
2082
+
2083
+ return aioseo()->robotsTxt->extractSitemapUrls( explode( "\n", $robotsTxt ) );
2084
+ }
2085
  }
app/Common/Utils/Options.php CHANGED
@@ -756,14 +756,15 @@ TEMPLATE
756
  */
757
  public function sanitizeAndSave( $options ) {
758
  $sitemapOptions = ! empty( $options['sitemap'] ) && ! empty( $options['sitemap']['general'] ) ? $options['sitemap']['general'] : null;
759
- $deprecatedOldOptions = aioseo()->options->sitemap->general->all();
760
  $deprecatedSitemapOptions = ! empty( $options['deprecated'] ) &&
761
  ! empty( $options['deprecated']['sitemap'] ) &&
762
  ! empty( $options['deprecated']['sitemap']['general'] )
763
  ? $options['deprecated']['sitemap']['general']
764
  : null;
765
- $oldPhoneOption = aioseo()->options->searchAppearance->global->schema->phone;
766
- $phoneNumberOptions = ! empty( $options['searchAppearance'] ) &&
 
767
  ! empty( $options['searchAppearance']['global'] ) &&
768
  ! empty( $options['searchAppearance']['global']['schema'] ) &&
769
  isset( $options['searchAppearance']['global']['schema']['phone'] )
@@ -930,12 +931,23 @@ TEMPLATE
930
  // If sitemap settings were changed, static files need to be regenerated.
931
  if (
932
  ! empty( $deprecatedSitemapOptions ) &&
933
- ! empty( $sitemapOptions ) &&
934
- aioseo()->helpers->arraysDifferent( $deprecatedOldOptions, $deprecatedSitemapOptions ) &&
935
- $sitemapOptions['advancedSettings']['enable'] &&
936
- ! $deprecatedSitemapOptions['advancedSettings']['dynamic']
937
  ) {
938
- aioseo()->sitemap->scheduleRegeneration();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
939
  }
940
  }
941
 
756
  */
757
  public function sanitizeAndSave( $options ) {
758
  $sitemapOptions = ! empty( $options['sitemap'] ) && ! empty( $options['sitemap']['general'] ) ? $options['sitemap']['general'] : null;
759
+ $oldSitemapOptions = aioseo()->options->sitemap->general->all();
760
  $deprecatedSitemapOptions = ! empty( $options['deprecated'] ) &&
761
  ! empty( $options['deprecated']['sitemap'] ) &&
762
  ! empty( $options['deprecated']['sitemap']['general'] )
763
  ? $options['deprecated']['sitemap']['general']
764
  : null;
765
+ $oldDeprecatedSitemapOptions = aioseo()->options->deprecated->sitemap->general->all();
766
+ $oldPhoneOption = aioseo()->options->searchAppearance->global->schema->phone;
767
+ $phoneNumberOptions = ! empty( $options['searchAppearance'] ) &&
768
  ! empty( $options['searchAppearance']['global'] ) &&
769
  ! empty( $options['searchAppearance']['global']['schema'] ) &&
770
  isset( $options['searchAppearance']['global']['schema']['phone'] )
931
  // If sitemap settings were changed, static files need to be regenerated.
932
  if (
933
  ! empty( $deprecatedSitemapOptions ) &&
934
+ ! empty( $sitemapOptions )
 
 
 
935
  ) {
936
+ if (
937
+ (
938
+ aioseo()->helpers->arraysDifferent( $oldSitemapOptions, $sitemapOptions ) ||
939
+ aioseo()->helpers->arraysDifferent( $oldDeprecatedSitemapOptions, $deprecatedSitemapOptions )
940
+ ) &&
941
+ $sitemapOptions['advancedSettings']['enable'] &&
942
+ ! $deprecatedSitemapOptions['advancedSettings']['dynamic']
943
+ ) {
944
+ aioseo()->sitemap->scheduleRegeneration();
945
+ }
946
+
947
+ // Flushing the rewrite rules if the settings have changed.
948
+ if ( $sitemapOptions['enable'] !== $oldSitemapOptions['enable'] ) {
949
+ // @TODO: Figure out a way to flush permalinks here, once the settings have been changed.
950
+ }
951
  }
952
  }
953
 
dist/Lite/assets/css/aioseo-admin-bar.css CHANGED
@@ -1,3 +1,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
 
1
+ /*! ! built on Saturday, December 26th 2020, 2:46:57 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/css/chunk-common.css CHANGED
@@ -1 +1 @@
1
- .aioseo-app .aioseo-cta{margin-top:30px;background:#fff;width:100%;padding:40px;box-shadow:0 2px 5px rgba(0,0,0,.05);border:1px solid #e8e8eb}.aioseo-app .aioseo-cta.floating{margin-top:0;position:absolute;max-width:850px;left:50%;top:50%;transform:translateX(-50%) translateY(-50%);box-shadow:0 5px 20px rgba(0,0,0,.1);border-radius:3px}.aioseo-app .aioseo-cta .header-text{line-height:1.4;font-weight:600;font-size:24px;text-align:center;color:#141b38}.aioseo-app .aioseo-cta .header-text span.large{line-height:1.4;font-size:32px}.aioseo-app .aioseo-cta .description{margin:30px 0 50px;width:100%;max-width:600px;text-align:center;font-size:16px;color:#141b38;line-height:1.4}.aioseo-app .aioseo-cta .description .aioseo-alert{margin-bottom:30px;text-align:left}.aioseo-app .aioseo-cta .feature-list{color:#141b38;font-size:16px;width:100%;max-width:500px;margin-bottom:50px}.aioseo-app .aioseo-cta .feature-list .aioseo-col{display:flex;align-items:flex-start}.aioseo-app .aioseo-cta .feature-list .aioseo-col svg.aioseo-circle-check{color:#00aa63;width:18px;min-width:18px;min-height:18px;margin-right:10px}.aioseo-app .aioseo-cta a.learn-more{margin-top:20px;color:#8c8f9a;font-size:14px}.aioseo-app .aioseo-cta .type-1{display:flex;flex-direction:column;align-items:center}.aioseo-app .aioseo-cta .type-2{margin:30px 0 30px 50px;display:flex}.aioseo-app .aioseo-cta .type-2 .description,.aioseo-app .aioseo-cta .type-2 .header-text{text-align:left}.aioseo-app .aioseo-cta .type-2 .description,.aioseo-app .aioseo-cta .type-2 .feature-list{margin:30px 0}.aioseo-app .aioseo-cta .type-2>div{margin-right:20px;flex:0 0 50%}.aioseo-app .aioseo-cta .type-2 .featured-image{max-height:540px;border:1px solid #e8e8eb;flex:1;overflow:hidden;margin-right:-41px;margin-bottom:-71px;border-radius:5px 0 0}.aioseo-app .aioseo-cta .type-2 .featured-image img{max-height:600px}@media only screen and (max-width:912px){.aioseo-app .aioseo-cta .type-2{flex-direction:column;align-items:center}.aioseo-app .aioseo-cta .type-2 .description,.aioseo-app .aioseo-cta .type-2 .header-text{text-align:center}.aioseo-app .aioseo-cta .type-2>div{text-align:center;margin-right:0;margin-bottom:30px;flex:1 0 100%;width:100%}.aioseo-app .aioseo-cta .type-2 .featured-image{margin:0 -10px -41px;border-radius:5px 5px 0 0;max-height:300px}}.aioseo-app .aioseo-cta .type-3 .sub-header{line-height:1.4;font-size:16px;font-weight:600;color:#005ae0;margin-bottom:5px}.aioseo-app .aioseo-cta .type-3 .header-text{text-align:left}.aioseo-app .aioseo-cta .type-3 .feature-list{margin:30px 0}.aioseo-app .aioseo-cta .type-3 .feature-list .aioseo-col svg.aioseo-circle-check{color:#00aa63;width:21px;min-width:21px;min-height:21px;margin-right:5px}.aioseo-app .aioseo-cta .type-3 .aioseo-button{margin-right:12px}.aioseo-box-toggle .aioseo-row .aioseo-col{max-width:calc(200px + 1em)}@media only screen and (max-width:48em){.aioseo-box-toggle .aioseo-row .aioseo-col{max-width:100%}}.aioseo-box-toggle input{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.aioseo-box-toggle input:checked+label{background-color:#fff;box-shadow:0 5px 10px rgba(0,90,224,.1);border:2px solid #005ae0;font-weight:600}.aioseo-box-toggle label{background-color:#f9f9fa;color:#141b38;font-size:16px;line-height:1;display:flex;align-items:center;justify-content:center;flex-direction:column;border:1px solid #f9f9fa;transition:all .1s ease-in-out;border-radius:3px;height:165px;position:relative}.aioseo-box-toggle label p{position:absolute;bottom:15px;margin:0}.aioseo-box-toggle label:hover{cursor:pointer}.aioseo-button{flex-shrink:0;line-height:1;display:inline-flex;align-items:center;justify-content:center;font-size:16px;font-weight:600;padding:0 24px;border-radius:4px;-webkit-appearance:none;cursor:pointer;height:48px;transition:background-color .2s ease;position:relative;overflow:hidden;text-decoration:none;color:#141b38;white-space:nowrap}.aioseo-button.small{height:30px;font-size:14px;padding:0 12px}.aioseo-button.small .loading-spinner{width:25px;height:25px}.aioseo-button.medium{height:40px;font-size:14px;padding:0 18px}.aioseo-button.medium .loading-spinner{width:35px;height:35px}.aioseo-button.xl{height:66px;border-radius:4px;font-size:18px;padding:0 48px}.aioseo-button.gray{border:1px solid #dcdde1;background-color:#f3f4f5}.aioseo-button.gray:hover{background-color:#fff;color:#141b38}.aioseo-button.gray:active{background-color:#f3f4f5}.aioseo-button.green{border:none;background-color:#00aa63;color:#fff}.aioseo-button.green:hover{background-color:#07c575}.aioseo-button.green:active{background-color:#15955f}.aioseo-button.blue{border:none;background-color:#005ae0;color:#fff}.aioseo-button.blue:hover{background-color:#1a82ea}.aioseo-button.blue:active{background-color:#004f9d}.aioseo-button.black{border:none;background-color:#434960;color:#fff}.aioseo-button.black:hover{background-color:#2c324c}.aioseo-button.black:active{background-color:#141b38}.aioseo-button.loading.blue{background-color:#004f9d;color:#004f9d}.aioseo-button.loading.blue:hover{background-color:#004f9d}.aioseo-button.loading.green{background-color:#15955f;color:#15955f}.aioseo-button.loading.green:hover{background-color:#15955f}.aioseo-button.loading.gray{background-color:#f3f4f5;color:#f3f4f5}.aioseo-button.loading.gray:hover{background-color:#f3f4f5}.aioseo-button.loading.black{background-color:#141b38;color:#141b38}.aioseo-button.loading.black:hover{background-color:#141b38}.aioseo-button:disabled{color:#8c8f9a;background-color:#f3f4f5;cursor:default}.aioseo-button:disabled.gray:hover{color:#8c8f9a}.aioseo-button:disabled:hover{background-color:#f3f4f5}.aioseo-checkbox{display:inline-flex;align-items:center}.aioseo-checkbox.disabled,.aioseo-checkbox.disabled .form-checkbox .fancy-checkbox,.aioseo-checkbox.no-clicks,.aioseo-checkbox.no-clicks .form-checkbox .fancy-checkbox{cursor:default}.aioseo-checkbox .form-checkbox-wrapper{margin-right:10px;display:flex}.aioseo-checkbox.medium .form-checkbox{width:20px;height:20px}.aioseo-checkbox.medium .form-checkbox .fancy-checkbox svg{width:12px;height:12px}.aioseo-checkbox.medium .form-checkbox span:before{height:18px;width:18px;line-height:20px}.aioseo-checkbox.round .form-checkbox span,.aioseo-checkbox.round .form-checkbox span:before{border-radius:50%}.aioseo-checkbox .form-checkbox{position:relative;display:inline-block;width:28px;height:28px;color:#fff;vertical-align:bottom;text-align:center}.aioseo-checkbox .form-checkbox input{display:none}.aioseo-checkbox .form-checkbox input:checked+.fancy-checkbox.blue{background:#005ae0}.aioseo-checkbox .form-checkbox input:checked+.fancy-checkbox.green{background:#00aa63}.aioseo-checkbox .form-checkbox input:checked+.fancy-checkbox:before{background:transparent}.aioseo-checkbox .form-checkbox input:disabled+.fancy-checkbox{background:#e8e8eb!important;border:1px solid #d0d1d7;cursor:default}.aioseo-checkbox .form-checkbox input:disabled+.fancy-checkbox svg{color:#8c8f9a}.aioseo-checkbox .form-checkbox input:not(:checked):disabled+.fancy-checkbox:before{left:0;bottom:0;background:#e8e8eb}.aioseo-checkbox .form-checkbox .fancy-checkbox svg{color:#fff;width:16px;height:16px}.aioseo-checkbox .form-checkbox span{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#d0d1d7;transition:.2s;border-radius:3px;display:flex;align-items:center;justify-content:center}.aioseo-checkbox .form-checkbox span:before{position:absolute;content:"";height:26px;width:26px;left:1px;bottom:1px;background-color:#fff;transition:.2s;font-size:18px;line-height:28px;border-radius:2px}.aioseo-date-picker.vue-daterange-picker{width:100%}.aioseo-date-picker.vue-daterange-picker .form-control{display:flex;align-items:center;color:#141b38;font-size:16px;height:48px;border-radius:3px;border:1px solid #d0d1d7;position:relative}.aioseo-date-picker.vue-daterange-picker .form-control svg.aioseo-circle-close{position:absolute;right:10px;color:#434960;width:15px;height:15px}.aioseo-date-picker.vue-daterange-picker.small .form-control{height:30px}.aioseo-date-picker.vue-daterange-picker.medium .form-control{height:40px}body[class*=all-in-one-seo_page] .daterangepicker .yearselect{width:75px}.aioseo-editor{position:relative}.aioseo-editor .aioseo-editor-description .ql-editor{min-height:100px}.aioseo-editor .aioseo-editor-line-numbers .ql-editor{padding:15px 15px 15px 45px}.aioseo-editor .aioseo-editor-single .ql-editor{padding:8px 10px}.aioseo-editor .aioseo-editor-single.aioseo-editor-line-numbers .ql-editor{padding:8px 10px 8px 45px}.aioseo-editor .aioseo-editor-monospace .ql-editor{font-family:monospace}.aioseo-editor .aioseo-line-numbers{background:#f7f6f7;position:absolute;text-align:right;top:1px;width:29px;left:1px;border-radius:3px 0 0 3px;padding:15px 9px 0 0;display:flex;height:calc(100% - 2px);flex-direction:column;overflow:hidden}.aioseo-editor .aioseo-line-numbers div{min-height:25px;color:#8c8f9a;font-size:12px;line-height:1.9}.aioseo-editor .ql-disabled{pointer-events:none;background-color:#f9f9fa}.aioseo-editor .ql-editor{padding:15px;border-radius:3px;font-size:16px;color:#141b38;border:1px solid #d0d1d7}.aioseo-editor .ql-editor:focus{border:1px solid #005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-editor .ql-editor .mention .ql-mention-denotation-char{display:none}.aioseo-editor .ql-editor .mention .aioseo-tag{height:25px;margin:0 1px;color:#434960;font-weight:600;font-size:14px;padding:3px 25px 3px 10px;background-color:#f3f4f5;border-radius:3px;cursor:pointer;position:relative;display:inline-flex;align-items:center}.aioseo-editor .ql-editor .mention .aioseo-tag .tag-toggle{display:inline-flex;align-items:center;background-color:#e8e8eb;position:absolute;top:0;right:0;bottom:0;border-radius:0 3px 3px 0}.aioseo-editor .ql-editor .mention .aioseo-tag .tag-toggle svg.aioseo-caret{width:18px;height:18px;transition:transform .3s}.aioseo-editor .ql-editor .mention .aioseo-tag .tag-toggle svg.aioseo-caret.rotated{transform:rotate(180deg)}.aioseo-editor .ql-mention-list-container{color:#141b38;background-color:#fff;max-width:250px;width:100%;margin-top:3px;border:1px solid #d0d1d7;border-radius:3px;box-shadow:0 3px 15px rgba(0,0,0,.1);z-index:9001}.aioseo-editor .ql-mention-list-container .aioseo-tag-custom,.aioseo-editor .ql-mention-list-container .aioseo-tag-search{padding:12px;border-bottom:1px solid #e8e8eb}.aioseo-editor .ql-mention-list-container .aioseo-tag-custom{display:none}.aioseo-editor .ql-mention-list-container .ql-mention-list{list-style:none;margin:0;padding:0;max-height:210px;overflow:auto}.aioseo-editor .ql-mention-list-container .ql-mention-list li{color:#141b38;margin:0;background-color:transparent;border-bottom:1px solid #e8e8eb;padding:15px;cursor:pointer;font-size:14px}.aioseo-editor .ql-mention-list-container .ql-mention-list li:last-child{border-bottom:0}.aioseo-editor .ql-mention-list-container .ql-mention-list li.selected,.aioseo-editor .ql-mention-list-container .ql-mention-list li:hover{color:#005ae0;background-color:#f2f7fd}.aioseo-editor .ql-mention-list-container .ql-mention-list li.selected .aioseo-tag-description,.aioseo-editor .ql-mention-list-container .ql-mention-list li:hover .aioseo-tag-description{color:initial}.aioseo-editor .ql-mention-list-container .ql-mention-list li .aioseo-tag-item{display:flex}.aioseo-editor .ql-mention-list-container .ql-mention-list li .aioseo-tag-item>div:first-child{margin-right:10px}.aioseo-editor .ql-mention-list-container .ql-mention-list li .aioseo-tag-item .aioseo-tag-title{font-weight:600}.aioseo-editor .ql-mention-list-container .ql-mention-list li svg.aioseo-plus{width:10px;height:10px;color:#005ae0}.aioseo-editor .ql-mention-list-container .ql-mention-list li.aioseo-tag-no-match{cursor:default;padding:12px;font-size:16px;font-weight:600}.aioseo-editor .ql-mention-list-container .ql-mention-list li.aioseo-tag-no-match.highlight,.aioseo-editor .ql-mention-list-container .ql-mention-list li.aioseo-tag-no-match:hover{color:initial;background-color:transparent}.aioseo-editor .ql-toolbar{display:none}.aioseo-editor .ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.aioseo-editor .ql-snow .ql-hidden{display:none}.aioseo-editor .ql-container.ql-snow{border:none}.aioseo-editor .ql-container p{font-size:16px;margin:0;line-height:25px}.aioseo-highlight-toggle{border:1px solid #e8e8eb;border-radius:3px;min-height:48px;display:flex;align-items:center;padding:5px 10px;cursor:pointer}.aioseo-highlight-toggle>*{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.aioseo-highlight-toggle.active{border-color:#005ae0;box-shadow:0 5px 10px rgba(0,90,224,.1)}.aioseo-highlight-toggle.medium{min-height:40px}.aioseo-highlight-toggle .icon{display:flex;align-items:center;margin-right:5px}.aioseo-input{position:relative;width:100%}.aioseo-input.file,.aioseo-input.file input[type=file]{position:absolute;top:0;right:0;left:0;bottom:0;margin:0;padding:0}.aioseo-input.file input[type=file]{cursor:pointer;opacity:0}.aioseo-input.file input[type=file]::-webkit-file-upload-button{visibility:hidden}.aioseo-input.file input[type=file]:focus{box-shadow:none}.aioseo-input input{height:48px;width:100%;background-color:#fff;border:1px solid #d0d1d7;border-radius:3px;padding:15px;font-size:18px;position:relative;overflow:hidden}.aioseo-input input:disabled{background:#f9f9fa}.aioseo-input input:focus{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-input input::-moz-placeholder{color:#8c8f9a}.aioseo-input input:-ms-input-placeholder{color:#8c8f9a}.aioseo-input input::placeholder{color:#8c8f9a}.aioseo-input input.prepend{padding-left:50px}.aioseo-input input.append{padding-right:50px}.aioseo-input input.small{height:30px;padding:10px;font-size:14px}.aioseo-input input.small.prepend{padding-left:30px}.aioseo-input input.small.append{padding-right:30px}.aioseo-input input.medium{height:40px;padding:12px;font-size:16px}.aioseo-input input.medium.prepend{padding-left:35px}.aioseo-input input.medium.append{padding-right:35px}.aioseo-input.aioseo-active input{border-color:#00aa63}.aioseo-input.aioseo-active .append-icon,.aioseo-input.aioseo-active .prepend-icon{color:#00aa63}.aioseo-input.aioseo-error input{border-color:#df2a4a}.aioseo-input.aioseo-error .append-icon,.aioseo-input.aioseo-error .prepend-icon{color:#df2a4a}.aioseo-input .prepend-icon{position:absolute;top:0;left:10px;width:30px;height:100%;color:#d0d1d7;display:flex;align-items:center;z-index:1}.aioseo-input .prepend-icon svg{width:30px;height:30px}.aioseo-input .prepend-icon.small{width:20px}.aioseo-input .prepend-icon.small svg{width:10px;height:10px}.aioseo-input .prepend-icon.medium{width:15px}.aioseo-input .prepend-icon.medium svg{width:15px;height:15px}.aioseo-input .append-icon{position:absolute;top:0;right:10px;width:30px;height:100%;color:#d0d1d7;display:flex;align-items:center;z-index:1}.aioseo-input .append-icon svg{width:30px;height:30px}.aioseo-input .append-icon.small{width:10px;height:10px}.aioseo-input .append-icon.medium{width:15px;height:15px}.aioseo-phone-number{max-width:600px}.aioseo-phone-number label{display:none}.aioseo-phone-number .maz-input__input{height:40px;min-height:40px;padding-top:0!important;border:1px solid #d0d1d7}.aioseo-phone-number .maz-input__input:focus{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-phone-number .country-selector{flex:0 0 140px;width:140px;min-width:140px;max-width:140px}.aioseo-phone-number .country-selector:hover{z-index:1}.aioseo-phone-number .country-selector>div.maz-base-component.maz-input.has-value.has-1-right-icon.maz-input--primary>input{padding-left:50px!important}.aioseo-phone-number .country-selector .maz-input.is-focused{border-color:#005ae0}.aioseo-phone-number .country-selector .maz-select__options-list__item.selected.keyboard-selected{background-color:#005ae0}.aioseo-phone-number .maz-phone-number-input__country-flag{left:20px;bottom:12px}.aioseo-phone-number .maz-select__options-list input{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-phone-number .maz-input__input{border-radius:3px}.aioseo-phone-number .input-phone-number,.aioseo-phone-number .input-phone-number:focus{z-index:2}.aioseo-phone-number.invalidNumber div.maz-flex-1>div>input{border-color:red}.aioseo-phone-number.invalidNumber div.maz-flex-1>div>input:focus{border-color:#df2a4a;box-shadow:0 0 0 1px #df2a4a}.aioseo-phone-number.validNumber div.maz-flex-1>div>input:focus{border-color:#00aa63;box-shadow:0 0 0 1px #00aa63}.aioseo-radio{display:inline-flex;align-items:center}.aioseo-radio .form-radio-wrapper{margin-right:10px;display:flex}.aioseo-radio.medium .form-radio{width:20px;height:20px}.aioseo-radio.medium .form-radio .fancy-radio svg{width:12px;height:12px}.aioseo-radio.medium.type-1 .form-radio span:before{height:18px;width:18px;line-height:20px}.aioseo-radio.medium.type-2 .form-radio span:before{height:16px;width:16px;line-height:20px}.aioseo-radio.medium.type-2 .form-radio span:after{height:6px;width:6px;left:6px;bottom:6px}.aioseo-radio .form-radio{position:relative;display:inline-block;width:28px;height:28px;color:#fff;vertical-align:bottom;text-align:center}.aioseo-radio .form-radio input{opacity:0}.aioseo-radio .form-radio input:checked+.fancy-radio{background:#005ae0;border-color:#005ae0}.aioseo-radio .form-radio input:checked+.fancy-radio:before{background:transparent}.aioseo-radio .form-radio input:checked+.fancy-radio:after{display:block}.aioseo-radio .form-radio input:disabled+.fancy-radio{cursor:default}.aioseo-radio .form-radio input:focus+.fancy-radio{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-radio .form-radio .fancy-radio{border-radius:50%}.aioseo-radio .form-radio .fancy-radio svg{color:#fff;width:16px;height:16px}.aioseo-radio .form-radio span{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;transition:.2s;border-radius:50%;display:flex;align-items:center;justify-content:center}.aioseo-radio .form-radio span:before{position:absolute;content:"";height:26px;width:26px;left:1px;bottom:1px;transition:.2s;font-size:18px;line-height:28px;border-radius:50%}.aioseo-radio.type-1 .form-radio span,.aioseo-radio.type-1 .form-radio span:before{background-color:#f3f4f5}.aioseo-radio.type-2 .form-radio span{border:1px solid #d0d1d7;background-color:#fff}.aioseo-radio.type-2 .form-radio span:before{background-color:#fff}.aioseo-radio.type-2 .form-radio span:after{display:none;position:absolute;content:"";height:10px;width:10px;left:8px;bottom:8px;background-color:#fff;transition:.2s;border-radius:50%}.aioseo-radio.disabled{cursor:default}.aioseo-radio.disabled.type-2 .form-radio input:checked+.fancy-radio{background-color:#e8e8eb;border-color:#d0d1d7}.aioseo-radio.disabled.type-2 .form-radio span,.aioseo-radio.disabled.type-2 .form-radio span:before{background-color:#e8e8eb}.aioseo-radio.disabled.type-2 .form-radio span:after{background-color:#8c8f9a}.aioseo-radio-toggle{display:flex;align-items:center;height:40px}.aioseo-radio-toggle div{height:100%}.aioseo-radio-toggle.inline{display:inline-flex}.aioseo-radio-toggle div:first-child{overflow:hidden;border-radius:3px 0 0 3px}.aioseo-radio-toggle div:first-child label{border-radius:3px 0 0 3px}.aioseo-radio-toggle div:last-child{overflow:hidden;border-radius:0 3px 3px 0}.aioseo-radio-toggle div:last-child label{border-radius:0 3px 3px 0}.aioseo-radio-toggle input{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.aioseo-radio-toggle input:checked+label{background-color:#005ae0;color:#fff}.aioseo-radio-toggle input:checked+label.dark{background-color:#434960;color:#fff}.aioseo-radio-toggle label{height:100%;background-color:#e8e8eb;color:#141b38;font-size:14px;line-height:1;display:flex;align-items:center;justify-content:center;flex-direction:column;transition:all .1s ease-in-out;position:relative;padding:11px 20px;font-weight:600}.aioseo-radio-toggle label.disabled{cursor:default;pointer-events:none;opacity:.5}.aioseo-radio-toggle label:hover{background-color:#dadadf;cursor:pointer}.aioseo-radio-toggle label p{position:absolute;bottom:15px;margin:0}.aioseo-radio-toggle.circle label{background:#fff;color:#8c8f9a}.aioseo-radio-toggle.circle input+label{border-radius:50%;width:36px;height:36px;padding:8px}.aioseo-radio-toggle.circle input:checked+label{background:#e8e8eb;color:#2c324c}.aioseo-select{height:48px}.aioseo-select.multiselect--disabled .multiselect__select{background:none}.aioseo-select .multiselect__select{display:flex;align-items:center;justify-content:center;min-height:46px}.aioseo-select .multiselect__select:before{display:none}.aioseo-select .multiselect__select svg.aioseo-caret{color:#141b38;width:18px;height:18px;transform:rotate(180deg);transition:transform .3s}.aioseo-select .multiselect__tags{height:100%;border:1px solid #d0d1d7;border-radius:3px;display:flex;justify-content:center;flex-direction:column;padding:16px 40px 16px 16px}.aioseo-select .multiselect__tags .multiselect__spinner{height:calc(100% - 2px);border:2px solid transparent}.aioseo-select .multiselect__tags .multiselect__spinner:after,.aioseo-select .multiselect__tags .multiselect__spinner:before{border-top-color:#434960}.aioseo-select .multiselect__tags .multiselect__single{display:inline-flex;margin:0;padding:0;color:#141b38;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.aioseo-select .multiselect__tags .multiselect__placeholder{color:#8c8f9a;font-size:16px;line-height:20px;margin:0;padding:0}.aioseo-select .multiselect__tags .multiselect__input{padding:0;margin:0 10px 0 0;border-radius:0;border:none;color:#141b38;min-height:auto;line-height:20px}.aioseo-select .multiselect__tags .multiselect__input:focus{outline:0;box-shadow:none;border:none}.aioseo-select .multiselect__tags .multiselect__input::-moz-placeholder{color:#8c8f9a}.aioseo-select .multiselect__tags .multiselect__input:-ms-input-placeholder{color:#8c8f9a}.aioseo-select .multiselect__tags .multiselect__input::placeholder{color:#8c8f9a}.aioseo-select .multiselect__tags .multiselect__tags-wrap{display:flex;align-items:center;flex-wrap:wrap}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag{padding:0;display:inline-flex;align-items:center;font-size:14px;font-weight:600;color:#434960;margin:0 3px 0 0;height:24px;background-color:#f3f4f5;flex-shrink:0}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-value{padding:0 5px 0 10px}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove{padding:0 10px;height:100%;cursor:pointer;background-color:#f3f4f5;display:flex;align-items:center}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove:hover{background-color:#434960;color:#fff}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove:hover svg.aioseo-close{color:#fff}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove svg.aioseo-close{color:#434960;width:10px;height:10px}.aioseo-select.multiselect--active .multiselect__tags-wrap{margin-bottom:7px}.aioseo-select.small{height:30px}.aioseo-select.small .multiselect__tags{padding:10px 40px 10px 10px}.aioseo-select.small .multiselect__select{min-height:28px}.aioseo-select.medium{height:40px}.aioseo-select.medium .multiselect__tags{padding:7px 40px 7px 7px}.aioseo-select.medium .multiselect__select{min-height:38px}.aioseo-select.multiple{min-height:48px;height:auto}.aioseo-select.multiple.small{min-height:30px}.aioseo-select.multiple.medium{min-height:40px}.aioseo-select .multiselect__content-wrapper{border:1px solid #d0d1d7;border-top:none;border-bottom-left-radius:3px;border-bottom-right-radius:3px;z-index:50;-webkit-overflow-scrolling:touch}.aioseo-select .multiselect__content-wrapper li.multiselect__element{margin:0;border-bottom:1px solid #e8e8eb}.aioseo-select .multiselect__content-wrapper li.multiselect__element.last{border-bottom:none}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option{color:#141b38;font-weight:700;font-size:16px}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--highlight{background-color:#f2f7fd}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--highlight:after{background-color:#005ae0;color:#fff}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--selected{background-color:#f2f7fd}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--disabled{font-weight:400;background-color:#fff!important;color:#8c8f9a}.aioseo-textarea-autosize{width:100%;background-color:#fff;border:1px solid #d0d1d7;border-radius:4px;font-size:16px;padding:12px}.aioseo-toggle{display:inline-flex}.aioseo-toggle:active,.aioseo-toggle:focus{outline:2px solid transparent}.aioseo-toggle.disabled{pointer-events:none}.aioseo-toggle.disabled .toggle-content{opacity:.5}.aioseo-toggle .toggle-content{position:relative;display:inline-block;width:36px;height:20px;margin-right:10px}.aioseo-toggle .toggle-content input{display:none}.aioseo-toggle .toggle-content input:checked+.toggle-switch{border:1px solid #005ae0;background-color:#005ae0}.aioseo-toggle .toggle-content input:checked+.toggle-switch:focus{outline:2px solid transparent}.aioseo-toggle .toggle-content input:checked+.toggle-switch:before{background-color:#fff;transform:translateX(15px)}.aioseo-toggle .toggle-content input:focus+.toggle-switch{box-shadow:0 0 1px #005ae0;outline:2px solid transparent}.aioseo-toggle .toggle-content .toggle-switch{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#fff;border:1px solid #d0d1d7;border-radius:15px;transition:.2s}.aioseo-toggle .toggle-content .toggle-switch:before{position:absolute;content:"";height:14px;width:14px;left:3px;bottom:2px;background-color:#d0d1d7;border-radius:50%;transition:.2s}.aioseo-add-template-tag{border-radius:3px;padding:5px 10px;color:#141b38;font-size:14px;border:1px solid #e8e8eb;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-weight:600}.aioseo-add-template-tag:hover{background-color:#f3f4f5}.aioseo-add-template-tag svg.aioseo-plus{width:10px;height:10px;color:#005ae0}.aioseo-additional-pages .additional-pages-table{border:1px solid #d0d1d7;border-radius:3px;margin-bottom:20px}.aioseo-additional-pages .additional-pages-table .page-priority{max-width:110px}.aioseo-additional-pages .additional-pages-table .page-frequency{max-width:166px}.aioseo-additional-pages .additional-pages-table .page-last-modified{max-width:155px}.aioseo-additional-pages .additional-pages-table .page-actions{max-width:20px}.aioseo-additional-pages .additional-pages-table .page-actions .aioseo-tooltip{display:inline-block;margin:0}.aioseo-additional-pages .additional-pages-table .pages-header{height:50px;display:flex;font-size:14px;padding:0 30px;align-items:center;border-bottom:1px solid #d0d1d7}.aioseo-additional-pages .additional-pages-table .pages-header>div{flex:1 0 auto}.aioseo-additional-pages .additional-pages-table .pages-rows{font-size:14px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row{background-color:#fff;height:70px;display:flex;align-items:center;padding:0 30px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row:last-of-type{border-radius:0 0 3px 3px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row.even{background-color:#f9f9fa}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row>div{flex:1 0 auto;padding-right:30px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row>div:last-child{padding-right:0}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row .page-actions svg.aioseo-trash{width:20px;height:20px;color:#8c8f9a;cursor:pointer;transition:color .1s ease}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row .page-actions svg.aioseo-trash:hover{color:#df2a4a}.aioseo-additional-pages svg.aioseo-circle-plus{width:14px;height:14px;margin-right:10px}.aioseo-alert{position:relative;border-radius:3px;padding:24px;font-size:16px}.aioseo-alert .aioseo-alert-close{cursor:pointer;position:absolute;top:-9px;right:-9px;width:18px;height:18px;border-radius:50%;padding:5px;display:inline-flex;justify-content:center;align-content:center}.aioseo-alert .aioseo-alert-close svg{width:100%;height:100%}.aioseo-alert.blue{border:1px solid #005ae0;background-color:#f2f7fd}.aioseo-alert.blue .aioseo-alert-close{background-color:#005ae0;color:#fff}.aioseo-alert.green{border:1px solid #00aa63;background-color:#f2fdf8}.aioseo-alert.green .aioseo-alert-close{background-color:#00aa63;color:#fff}.aioseo-alert.red{border:1px solid #df2a4a;background-color:#fbe9ec}.aioseo-alert.red .aioseo-alert-close{background-color:#df2a4a;color:#fff}.aioseo-alert.yellow{border:1px solid #f18200;background-color:#fcfae8}.aioseo-alert.yellow .aioseo-alert-close{background-color:#f18200;color:#fff}.aioseo-alert.no-border{border-width:0}.aioseo-alert.text-center{text-align:center}.aioseo-analyze-competitor-site-score{border:1px solid #00aa63;border-radius:3px;color:#00aa63;font-size:14px;padding:0 8px;height:24px;display:inline-flex;align-items:center;justify-content:center;margin-right:14px}.aioseo-analyze-competitor-site-score.red{color:#df2a4a;border-color:#df2a4a}.aioseo-analyze-competitor-site-score.orange{color:#f18200;border-color:#f18200}.aioseo-animated-dannie{display:flex;align-content:center;align-items:center;justify-content:center}.aioseo-animated-dannie svg{max-width:250px}.aioseo-blur{filter:blur(3px);pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.aioseo-card{color:#141b38;background-color:#fff;border:1px solid #e8e8eb;box-shadow:0 2px 5px rgba(0,0,0,.05);margin:30px 0}@media only screen and (max-width:782px){.aioseo-card{margin:20px 0}}.aioseo-card svg.aioseo-circle-question-mark{width:17px;height:17px;color:#8c8f99;transition:background-color .2s ease}.aioseo-card svg.aioseo-circle-question-mark:hover{color:#5a5c65}.aioseo-card .header{display:flex;align-items:center;height:70px;padding:0 30px;font-weight:600;font-size:18px;border-bottom:1px solid #e8e8eb}.aioseo-card .header .header-icon svg{width:24px;height:24px;margin-right:16px}.aioseo-card .header .text{flex:1 0 auto;display:flex;align-items:center}.aioseo-card .header .text svg.aioseo-circle-question-mark{cursor:pointer;width:17px;height:17px}.aioseo-card .header .text .aioseo-pro-badge{margin-left:10px}.aioseo-card .header .text .card-score{display:flex;flex:1;align-items:center;justify-content:flex-end;padding-right:18px;font-size:13px}.aioseo-card .header .text .card-score.green{color:#00aa63}.aioseo-card .header .text .card-score.orange{color:#f18200}.aioseo-card .header .text .card-score.red{color:#df2a4a}.aioseo-card .header .text .card-score svg{margin-right:7px}.aioseo-card .header svg.aioseo-caret{width:24px;height:24px;cursor:pointer;transition:transform .3s}.aioseo-card .header svg.aioseo-caret.rotated{transform:rotate(180deg)}.aioseo-card .content{padding:30px;position:relative}.aioseo-card div.aioseo-settings-row:last-child{margin-bottom:0;border-bottom:none;padding-bottom:0}.aioseo-copy-block{display:flex}.aioseo-copy-block .message{background-color:#fff;min-height:56px;display:flex;align-items:center;border:1px solid #dcdde1;border-radius:3px 0 0 3px;padding:10px 24px;font-weight:600}.aioseo-copy-block .copy-tooltip{display:flex}.aioseo-copy-block .copy{background-color:#fff;min-height:56px;display:flex;align-items:center;border:1px solid #dcdde1;border-left-width:0;border-radius:0 3px 3px 0;padding:10px 16px;font-weight:600;cursor:pointer}.aioseo-copy-block .copy:hover svg.aioseo-copy{color:#a7a7a7}.aioseo-copy-block .copy svg.aioseo-copy{width:20px;height:20px;color:#dadada}.aioseo-copy-block .copy svg.aioseo-circle-check-solid{width:20px;height:20px;color:#00aa63}.aioseo-exclude-posts{display:flex}.aioseo-exclude-posts .aioseo-select{max-width:600px;display:inline-block;margin-right:10px}.aioseo-exclude-posts .aioseo-select .multiselect__option{display:flex}.aioseo-exclude-posts .aioseo-select .multiselect__option--highlight .option-title{color:#005ae0}.aioseo-exclude-posts .option{flex:1 0 auto}.aioseo-exclude-posts .option .option-title{font-size:16px;color:#141b38}.aioseo-exclude-posts .option .option-title .search-term{font-weight:600}.aioseo-exclude-posts .option .option-details{display:flex;align-items:center;font-size:14px;color:#8c8f9a}.aioseo-exclude-posts .option .option-details span{margin-right:15px}.aioseo-exclude-posts .option-permalink{display:flex;align-items:center}.aioseo-exclude-posts .option-permalink svg.aioseo-external{width:15px;height:15px;color:#434960}.aioseo-exclude-posts .multiselect-toggle{padding:10px 13px;width:40px;position:absolute;height:36px;right:2px;top:2px;text-align:center;z-index:1}.aioseo-exclude-posts .multiselect-toggle svg.aioseo-add-plus{width:14px;height:14px;color:#000}.aioseo-facebook-preview{background-color:#f0f2f5;padding:30px;display:flex;align-items:center;justify-content:center}.aioseo-facebook-preview .facebook-post{width:100%;max-width:525px;border-radius:10px;box-shadow:0 2px 5px rgba(0,0,0,.1);background-color:#fff}.aioseo-facebook-preview .facebook-post .facebook-header{height:65px;padding:0 18px;display:flex;align-items:center}.aioseo-facebook-preview .facebook-post .facebook-header .profile-photo{overflow:hidden;width:40px;height:40px;border:1px solid #e8e8eb;border-radius:50%}.aioseo-facebook-preview .facebook-post .facebook-header .profile-photo img{height:100%;width:100%}.aioseo-facebook-preview .facebook-post .facebook-header .poster{margin-left:10px;flex:1 0 auto}.aioseo-facebook-preview .facebook-post .facebook-header .poster .poster-name{font-size:15px;color:#050505;font-weight:500}.aioseo-facebook-preview .facebook-post .facebook-header .poster .poster-date{color:#65676b;font-size:13px}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis{display:inline-flex;align-items:center}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis div{background-color:#5e666f;width:4px;height:4px;border-radius:50%;margin:0 2px}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis div:first-child{margin-left:0}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis div:last-child{margin-right:0}.aioseo-facebook-preview .facebook-post .facebook-content{display:flex;flex-direction:column}.aioseo-facebook-preview .facebook-post .facebook-content img{width:100%;height:auto}.aioseo-facebook-preview .facebook-post .facebook-content.vertical{flex-direction:row}.aioseo-facebook-preview .facebook-post .facebook-content.vertical img{max-width:158px;max-height:158px;width:auto;height:auto}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description{flex:1;background-color:#f2f3f5;padding:9px 13px;color:#606770}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description .site-domain{font-size:13px;text-transform:uppercase;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description .site-title{color:#1d2129;font-size:17px;font-weight:600;margin:5px 0}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description .site-description{font-size:14px}.aioseo-facebook-preview .facebook-post .facebook-footer{height:24px}.aioseo-feature-card{height:100%;border:1px solid #e8e8eb;background:#fff;box-shadow:0 2px 5px rgba(0,0,0,.05);color:#141b38;display:flex;flex-direction:column}.aioseo-feature-card .feature-card-body{padding:30px 30px 20px;flex:1}.aioseo-feature-card .feature-card-body.static{padding:30px}.aioseo-feature-card .feature-card-body .feature-card-header{display:flex;align-items:center;font-size:18px;font-weight:600;margin-bottom:16px}.aioseo-feature-card .feature-card-body .feature-card-header img,.aioseo-feature-card .feature-card-body .feature-card-header svg{width:28px;height:28px;margin-right:10px}.aioseo-feature-card .feature-card-body .feature-card-description{color:#434960;font-size:15px}.aioseo-feature-card .feature-card-body .feature-card-description .learn-more{margin-top:10px}.aioseo-feature-card .feature-card-footer{padding:15px}.aioseo-feature-card .feature-card-footer:not(.upgrade-required){border:2px solid #fff;background-color:#f9f9fa;padding:12px;min-height:43px}.aioseo-feature-card .feature-card-footer .feature-card-install-activate{display:flex;align-items:center;justify-content:flex-end;height:30px;position:relative}.aioseo-feature-card .feature-card-footer .feature-card-install-activate .aioseo-loading-spinner{position:absolute;left:0}.aioseo-feature-card .feature-card-footer .feature-card-install-activate .status{font-weight:600;font-size:14px}.aioseo-feature-card .feature-card-footer .feature-card-install-activate .aioseo-toggle .toggle-content{margin-right:0;margin-left:10px}.aioseo-feature-card .feature-card-footer .feature-card-upgrade-cta{display:flex;align-items:center;justify-content:flex-end}.aioseo-feature-card .feature-card-footer.installed .feature-card-install-activate .status{color:#8c8f9a}.aioseo-setup-wizard-container{margin-top:30px;margin-bottom:50px;padding:30px;color:#fff;position:relative;background-color:#005ae0}@media only screen and (max-width:782px){.aioseo-setup-wizard-container{margin-top:20px}}.aioseo-setup-wizard-container p{color:#fff}.aioseo-setup-wizard-container .getting-started-wrapper{display:flex}.aioseo-setup-wizard-container .getting-started-wrapper .video{flex:0 0 533px;margin:20px 20px 0}.aioseo-setup-wizard-container .getting-started-wrapper .video .wrapper{padding-bottom:56.25%;margin-bottom:-60px;position:relative;height:0}.aioseo-setup-wizard-container .getting-started-wrapper .video .wrapper iframe{width:100%;height:100%;position:absolute;top:0;left:0}@media only screen and (max-width:1350px){.aioseo-setup-wizard-container .getting-started-wrapper .video{flex:0 0 593px;margin:20px;align-self:center}.aioseo-setup-wizard-container .getting-started-wrapper .video .wrapper{margin-bottom:0}.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions .aioseo-col{flex-basis:100%;max-width:100%;justify-content:center}}@media only screen and (max-width:1300px){.aioseo-setup-wizard-container .getting-started-wrapper{flex-direction:row;flex-wrap:wrap}.aioseo-setup-wizard-container .getting-started-wrapper .video{margin:20px 0 -60px}.aioseo-setup-wizard-container .getting-started-wrapper .text,.aioseo-setup-wizard-container .getting-started-wrapper .video{flex-basis:100%;width:100%}.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions{justify-content:center}.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions .aioseo-col{flex-basis:inherit;max-width:inherit;justify-content:center}}@media only screen and (max-width:782px){.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions .aioseo-col{flex-basis:100%;max-width:100%;justify-content:center}}.aioseo-setup-wizard-container .aioseo-row{position:relative;z-index:1}.aioseo-setup-wizard-container .wizard-actions .aioseo-col{display:flex;align-items:center}.aioseo-setup-wizard-container .wizard-actions .aioseo-button svg{width:16px;height:16px;margin-right:10px}.aioseo-setup-wizard-container .setup-wizard-bg{width:100%;height:100%;overflow:hidden;z-index:0;position:absolute;top:0;left:0}.aioseo-setup-wizard-container .setup-wizard-bg svg.aioseo-setup-wizard-bg,.aioseo-setup-wizard-container .setup-wizard-bg svg.aioseo-setup-wizard-bg rect{width:auto;height:100%}.aioseo-setup-wizard-container .close-wizard{color:#fff;width:20px;height:20px;position:absolute;right:20px;top:20px;z-index:1;display:flex;align-items:center;justify-content:center}.aioseo-setup-wizard-container .close-wizard:hover{color:#ccc}.aioseo-setup-wizard-container .close-wizard svg.aioseo-close{width:12px;height:12px;cursor:pointer;color:#fff}.aioseo-setup-wizard-container .close-wizard svg.aioseo-close:hover{color:#dadada}.aioseo-setup-wizard-container p.how-to-get-started{margin:0}.aioseo-setup-wizard-container p.welcome-text{line-height:1.6}.aioseo-setup-wizard-container h2{color:#fff;line-height:1.4}.aioseo-setup-wizard-container a{color:#fff}.aioseo-setup-wizard-container svg.aioseo-book{width:20px;height:20px;margin:0 10px 0 0}.aioseo-setup-wizard-container .getting-started-video{padding-right:20px;margin-bottom:-60px;position:relative;height:0;padding-bottom:56.25%}.aioseo-setup-wizard-container .getting-started-video iframe{width:100%;height:100%;position:absolute;top:0;left:0}.aioseo-google-search-preview{padding:32px 30px;border:1px solid #e8e8eb}.aioseo-google-search-preview .domain{font-size:14px;line-height:1.3;color:#3c4043;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aioseo-google-search-preview .site-title{font-size:20px;line-height:1.3;color:#1a0dab;margin:3px 0}.aioseo-google-search-preview .meta-description{max-width:600px;font-size:14px;line-height:1.4;color:#52565a}.edit-post-sidebar .domain{font-size:13px}.edit-post-sidebar .site-title{font-size:16px}.edit-post-sidebar .meta-description{font-size:12px}.aioseo-modal-content .domain,.aioseo-modal-content .meta-description{font-size:14px}.aioseo-modal-content .site-title{font-size:20px}html:not([data-scroll="0"]) .aioseo-header{box-shadow:0 2px 5px rgba(0,0,0,.05);transition:box-shadow .6s}.aioseo-header{position:fixed;z-index:1051;top:0;right:0;left:0;background-color:#fff;height:72px;color:#141b38}.aioseo-header .mascot{width:35px;height:auto;margin-right:10px}.aioseo-header .aioseo-header-content{padding:0;display:flex;height:72px;align-items:center}.aioseo-header .aioseo-header-content svg.aioseo-logo{height:26px;margin-right:10px}.aioseo-header .aioseo-header-content .spacer{display:inline-flex;width:26.25px;height:0;border:1px solid #d0d1d7;transform:rotate(-72.26deg)}.aioseo-header .aioseo-header-content .page-name{display:inline-flex;margin-left:10px;font-size:18px;font-weight:400;flex:1 0 auto}.aioseo-header .aioseo-header-content .header-actions{display:flex}.aioseo-header .aioseo-header-content .header-actions .round{position:relative;background-color:#f3f4f5;border-radius:50%;width:40px;height:40px;display:flex;align-items:center;justify-content:center;margin-left:10px;cursor:pointer;transition:background-color .2s ease}.aioseo-header .aioseo-header-content .header-actions .round svg{width:20px;height:20px}.aioseo-header .aioseo-header-content .header-actions .round:hover{background-color:#e5e7e9}.aioseo-header .aioseo-header-content .header-actions .number{position:absolute;background-color:#df2a4a;width:16px;height:16px;font-weight:600;font-size:10px;color:#fff;top:-8px;left:50%;transform:translateX(-50%);margin:0;-webkit-animation:bounce 2s 5;animation:bounce 2s 5}.aioseo-header .aioseo-header-content .header-actions .number:hover{background-color:#df2a4a}@-webkit-keyframes bounce{0%,25%,50%,75%,to{transform:translateX(-50%) translateY(0)}40%{transform:translateX(-50%) translateY(-8px)}60%{transform:translateX(-50%) translateY(-4px)}}@keyframes bounce{0%,25%,50%,75%,to{transform:translateX(-50%) translateY(0)}40%{transform:translateX(-50%) translateY(-8px)}60%{transform:translateX(-50%) translateY(-4px)}}body.modal-open{overflow:hidden}.aioseo-help{display:block;position:fixed;top:0;bottom:0;left:0;right:0;height:100%;width:100vw;background-color:#fff;color:#8c8f9a;opacity:0;max-height:100vh;overflow-y:auto;transition:opacity .3s ease-in 0s;z-index:-999}.aioseo-help.visible{opacity:1;z-index:100000}.aioseo-help .aioseo-help-header{background:#fff;width:100%;height:60px;position:fixed;z-index:1;top:0;left:0}.aioseo-help .aioseo-help-docs{margin-bottom:25px;display:none}.aioseo-help .aioseo-help-docs li{padding:0 0 14px 4px;margin:0}.aioseo-help .aioseo-help-docs .aioseo-help-docs-viewall{margin:10px 0 0}.aioseo-help .aioseo-help-docs .aioseo-help-additional-docs{display:none}.aioseo-help .aioseo-help-docs .aioseo-help-additional-docs.opened{display:block}.aioseo-help .aioseo-help-docs .icon .aioseo-description{width:20px;margin-top:0;position:relative;top:5px;left:-5px;color:#8c8f9a}.aioseo-help .help-content{background-color:#fff;width:100%;max-width:740px;margin:0 auto 50px;padding:0 20px;box-sizing:border-box;z-index:1}.aioseo-help .help-content .aioseo-help-category{border-top:1px solid #e8e8eb;margin:0}.aioseo-help .help-content .aioseo-help-category:last-child{border-bottom:1px solid #e8e8eb}.aioseo-help .help-content .aioseo-help-category header{display:block;position:relative;cursor:pointer;width:100%;height:68px}.aioseo-help .help-content .aioseo-help-category header .title{display:block;font-size:16px;color:#8c8f9a;font-weight:600;padding:23px 11px 23px 30px}.aioseo-help .help-content .aioseo-help-category .folder-open{position:absolute;top:24px;width:20px;height:20px;color:#8c8f9a}.aioseo-help .help-content .aioseo-help-category .dashicons-arrow-right-alt2{position:absolute;top:20px;right:0;transition:transform .3s ease-out}.aioseo-help .help-content .aioseo-help-category.opened .aioseo-help-docs{display:block}.aioseo-help .help-content .aioseo-help-category.opened .dashicons-arrow-right-alt2{transform:rotate(90deg)}.aioseo-help .help-content #aioseo-help-search{position:relative;background-color:#fff;text-align:center;top:0;padding:74px 0 50px}.aioseo-help .help-content #aioseo-help-result .aioseo-help-docs{display:block}.aioseo-help .help-content #aioseo-help-footer{display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:center;margin:50px 0 0}@media screen and (max-width:750px){.aioseo-help .help-content #aioseo-help-footer{display:block}}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block{box-sizing:border-box;max-width:325px;border:1px solid #8c8f9a;border-radius:6px;text-align:center}@media screen and (max-width:750px){.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block{max-width:100%}}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block:first-child{margin-right:20px}@media screen and (max-width:750px){.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block:first-child{margin:0 0 20px}}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a{display:block;padding:25px;text-decoration:none;color:#8c8f9a}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a h3{color:#8c8f9a}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a span{font-size:16px;color:#005ae0;text-decoration:underline}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a:hover span{text-decoration:none}.aioseo-help .help-content #aioseo-help-footer .aioseo-description,.aioseo-help .help-content #aioseo-help-footer .aioseo-support{width:48px;margin-top:0;color:#8c8f9a}#aioseo-help-logo{position:fixed;width:132px;height:26px;top:20px;left:20px;z-index:2}#aioseo-help-close{position:fixed;width:20px;height:20px;top:30px;right:30px;cursor:pointer;opacity:.7;transition:all .05s;z-index:2}@media screen and (max-width:750px){#aioseo-help-close{top:20px;right:20px}}.aioseo-html-tags-editor .add-tags{display:flex;align-items:center;margin:20px 0}.aioseo-html-tags-editor .add-tags div{margin-right:10px}.aioseo-html-tags-editor .add-tags a{font-size:14px}.aioseo-html-tags-editor .add-tags a.no-underline{padding-left:10px}.aioseo-loading-spinner{width:35px;height:35px;position:absolute}.aioseo-loading-spinner .double-bounce1,.aioseo-loading-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#fff;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 1.3s ease-in-out infinite;animation:sk-bounce 1.3s ease-in-out infinite}.aioseo-loading-spinner.dark .double-bounce1,.aioseo-loading-spinner.dark .double-bounce2{background-color:#8c8f9a}.aioseo-loading-spinner .double-bounce2{-webkit-animation-delay:-.65s;animation-delay:-.65s}@-webkit-keyframes sk-bounce{0%,to{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,to{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}body.vue-build{margin:0}body.vue-build .aioseo-app{min-height:calc(100vh - 88px)}body.vue-build .aioseo-app .aioseo-main{padding-bottom:30px}body.aioseo-setup-wizard{margin:0;padding:0}body.aioseo-setup-wizard .aioseo-app{min-height:100vh;width:100%}body[class*=page_aioseo] .aioseo-header,body[class*=page_aioseo] .aioseo-notifications .overlay{left:160px}body[class*=page_aioseo].folded .aioseo-header,body[class*=page_aioseo].folded .aioseo-notifications .overlay{left:36px}body[class*=page_aioseo] #wpcontent{padding:0;background-color:#f3f4f5}body[class*=page_aioseo] .update-nag{display:none}body[class*=page_aioseo].admin-bar .aioseo-app{min-height:calc(100vh - 185px)}body[class*=page_aioseo].admin-bar.aioseo-has-bar .aioseo-app{min-height:calc(100vh - 225px)}body[class*=page_aioseo].admin-bar .aioseo-header,body[class*=page_aioseo].admin-bar .aioseo-notifications .notification-menu,body[class*=page_aioseo].admin-bar .aioseo-notifications .overlay{top:32px}body[class*=page_aioseo] .aioseo-app{min-height:calc(100vh - 153px)}body[class*=page_aioseo].aioseo-has-bar .aioseo-app{min-height:calc(100vh - 193px)}body[class*=page_aioseo].aioseo-has-bar .aioseo-header{height:112px}@media screen and (max-width:782px){body[class*=page_aioseo].aioseo-has-bar .aioseo-header{height:132px}}@media screen and (max-width:960px){body[class*=page_aioseo].auto-fold .aioseo-header,body[class*=page_aioseo].auto-fold .aioseo-notifications .overlay{left:36px}}@media screen and (max-width:782px){body[class*=page_aioseo] #wpbody-content{padding-bottom:20px}body[class*=page_aioseo].admin-bar .aioseo-app{min-height:calc(100vh - 199px)}body[class*=page_aioseo].admin-bar .aioseo-header,body[class*=page_aioseo].admin-bar .aioseo-notifications .notification-menu,body[class*=page_aioseo].admin-bar .aioseo-notifications .overlay{top:46px}body[class*=page_aioseo] .aioseo-header,body[class*=page_aioseo] .aioseo-notifications .overlay,body[class*=page_aioseo].auto-fold .aioseo-header,body[class*=page_aioseo].auto-fold .aioseo-notifications .overlay{left:0}}@media screen and (max-width:600px){body[class*=page_aioseo].admin-bar .aioseo-header,body[class*=page_aioseo].admin-bar .aioseo-notifications .menu,body[class*=page_aioseo].admin-bar .aioseo-notifications .overlay{position:absolute;top:46px}}body.aioseo-has-bar .aioseo-app .aioseo-main>.aioseo-container{margin-top:128px}@media screen and (max-width:782px){body.aioseo-has-bar .aioseo-app .aioseo-main>.aioseo-container{margin-top:148px}}.aioseo-app{box-sizing:border-box;background-color:#f3f4f5}.aioseo-app .route-fade-enter-active,.aioseo-app .route-fade-leave-active{transition:all .2s}.aioseo-app .route-fade-enter,.aioseo-app .route-fade-leave-active{opacity:0}.aioseo-app .route-fade-enter{transform:translateX(30px)}.aioseo-app .route-fade-leave-active{transform:translateX(-30px)}.aioseo-app *,.aioseo-app :after,.aioseo-app :before{box-sizing:inherit}.aioseo-app * :not(.aioseo-button):not(.aioseo-input),.aioseo-app :after :not(.aioseo-button):not(.aioseo-input),.aioseo-app :before :not(.aioseo-button):not(.aioseo-input){line-height:1.4}.aioseo-app p{font-size:16px}.aioseo-app a:not(.aioseo-button){color:#005ae0}.aioseo-app a:not(.aioseo-button).text-white{color:#fff}.aioseo-app a:not(.aioseo-button).no-underline,.aioseo-app a:not(.aioseo-button):hover{text-decoration:none}.aioseo-app h2{font-size:32px;margin:0}.aioseo-app .aioseo-main{height:100%}.aioseo-app .aioseo-main>.aioseo-container{margin-top:88px}.aioseo-app .aioseo-main .save-changes{display:flex;justify-content:flex-end}.aioseo-app .d-flex{display:flex}.aioseo-app .aioseo-section-description{font-size:16px;color:#141b38;line-height:1.8;padding-bottom:30px}.aioseo-app .aioseo-description-text{font-size:14px;line-height:1.8;color:#141b38}.aioseo-app .aioseo-description-text.aioseo-error{color:#df2a4a}.aioseo-app .aioseo-description{font-size:14px;line-height:1.8;margin:8px 0 0;color:#141b38}.aioseo-app .aioseo-description.no-margin{margin:0}.aioseo-app .aioseo-description.aioseo-error{color:#df2a4a}.aioseo-app .max-recommended-count{color:#434960;text-align:right;margin-top:10px;font-size:14px}.aioseo-app .max-recommended-count strong.error{color:#df2a4a}.aioseo-app .popper{text-align:left;font-size:12px;padding:20px;background-color:#fff;border:none;border-radius:3px;box-shadow:0 3px 4.8px 0 rgba(32,71,102,.27);z-index:9999;max-width:350px;line-height:1.4}.aioseo-app .popper.action{padding:8px 12px;background-color:#141b38;color:#fff}.aioseo-app .popper.action .popper__arrow{border-top-color:#141b38}.aioseo-app .popper[x-placement^=bottom]{box-shadow:0 -2px 4.8px 0 rgba(32,71,102,.27)}.aioseo-app .popper .aioseo-description{margin:0}.aioseo-app .aioseo-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#00aa63}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#00aa63}to{background-color:#fff}}.aioseo-seo-site-score .aioseo-blur{display:flex;align-items:center}.aioseo-seo-site-score .aioseo-seo-site-score-cta{position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%);background-color:#fff;padding:24px 30px;border:1px solid #e8e8eb;box-shadow:0 2px 10px rgba(0,90,224,.2);color:#141b38;font-size:16px;font-weight:600;width:82%;max-width:500px;text-align:center}.aioseo-app .aioseo-upgrade-bar{height:40px;background-color:#00aa63;display:flex;align-items:center;justify-content:center;color:#fff;font-size:13px;padding:0 14px 0 40px}.aioseo-app .aioseo-upgrade-bar .upgrade-text{display:flex;align-items:center;flex:1;justify-content:center}.aioseo-app .aioseo-upgrade-bar strong{font-weight:600}.aioseo-app .aioseo-upgrade-bar svg.aioseo-logo-gear{width:20px;height:20px;min-width:20px;margin-right:14px}.aioseo-app .aioseo-upgrade-bar svg.aioseo-close{cursor:pointer;width:12px;height:12px}.aioseo-app .aioseo-upgrade-bar a{color:#fff;text-decoration:underline}.aioseo-app .aioseo-upgrade-bar a:hover{text-decoration:none}@media screen and (max-width:782px){.aioseo-app .aioseo-upgrade-bar{padding:0 10px;height:60px}}.field-description[data-v-2bfc1de2]{display:inline-block;margin-top:10px;font-size:14px}.aioseo-address-wrapper[data-v-403ef8f7]{display:flex;max-width:500px}.field-description[data-v-403ef8f7]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-403ef8f7]{margin-top:8px}.field-description[data-v-a0a894b8]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-a0a894b8]{margin-top:8px}.field-description[data-v-4fb4e044]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-4fb4e044]{margin-top:8px}.field-description[data-v-85733554]{display:inline-block;margin-top:10px;font-size:14px}.field-description[data-v-080c623c]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-080c623c]{margin-top:8px}.field-description[data-v-78337de7]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-78337de7]{margin-top:8px}.aioseo-general-settings .more-tooltip-text strong{color:#00aa63}.aioseo-general-settings .license-cta-box{border-radius:3px;background-color:#f2f7fd;padding:20px;max-width:630px;margin:10px 0 30px}.aioseo-general-settings .license-cta-box a{color:#00aa63}.aioseo-general-settings .license-cta-box div{font-weight:600}.aioseo-general-settings .license-cta-box span{font-size:14px;font-style:italic}.aioseo-general-settings .license-key{margin-top:10px;display:flex;max-width:560px}.aioseo-general-settings .license-key .aioseo-input{margin-right:10px}.aioseo-app .aioseo-tabs.internal{margin-bottom:0}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation{margin-top:5px}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation .md-button{height:60px}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple{padding:0 25px}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple .md-ripple-wave{display:none}.aioseo-app .aioseo-tabs.skinny .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple{padding:0 16px}.aioseo-app .md-tabs{display:flex;flex-direction:column}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation{margin-top:2px;background:transparent;display:flex;position:relative;justify-content:flex-start}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation.md-elevation-0{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button{color:#141b38;max-width:264px;min-width:72px;height:60px;margin:0;border-radius:0;font-size:15px;font-weight:500;padding:0;display:inline-block;position:relative;overflow:hidden;outline:none;background:transparent;border:0;transition:.4s cubic-bezier(.4,0,.2,1);font-family:inherit;line-height:normal;text-decoration:none;vertical-align:top;white-space:nowrap}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:before{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;opacity:0;transition:.4s cubic-bezier(.4,0,.2,1);will-change:background-color,opacity;content:" "}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple{padding:0 18px;display:flex;justify-content:center;align-items:center;width:100%;height:100%;position:relative;z-index:5;overflow:hidden;-webkit-mask-image:radial-gradient(circle,#fff 100%,#000 0);mask-image:radial-gradient(circle,#fff 100%,#000 0)}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple .md-button-content{position:static;z-index:2}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:not([disabled]){cursor:pointer}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:not([disabled]):active:before,.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:not([disabled]):hover:before{background-color:currentColor;opacity:.12}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button.md-active{color:#005ae0}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button.md-active:focus{outline:none;box-shadow:none}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-tabs-indicator{height:2px;background-color:#005ae0;bottom:-2px;position:absolute;left:0;transform:translateZ(0);will-change:left,right}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-tabs-indicator.md-tabs-indicator-left{transition:left .3s cubic-bezier(.4,0,.2,1),right .35s cubic-bezier(.4,0,.2,1)}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-tabs-indicator.md-tabs-indicator-right{transition:right .3s cubic-bezier(.4,0,.2,1),left .35s cubic-bezier(.4,0,.2,.1)}.aioseo-app .aioseo-tabs{display:flex;border-bottom:2px solid #e8e8eb;position:relative;margin-bottom:38px}.aioseo-app .aioseo-tabs .save-changes{position:absolute;right:0;bottom:10px}.aioseo-app .aioseo-tabs .tab-score{display:inline-flex;align-items:center;justify-content:flex-end;font-size:11px;font-weight:700;padding-left:12px}.aioseo-app .aioseo-tabs .tab-score.green{color:#00aa63}.aioseo-app .aioseo-tabs .tab-score.orange{color:#f18200}.aioseo-app .aioseo-tabs .tab-score.red{color:#df2a4a}.aioseo-app .aioseo-tabs .tab-score svg{display:inline;margin-right:7px}.aioseo-app .aioseo-mobile-tabs{position:relative;height:40px;margin-top:20px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.aioseo-app .aioseo-mobile-tabs .active-tab{color:#005ae0;padding-left:18px;min-height:100%;display:flex;align-items:center;cursor:pointer}.aioseo-app .aioseo-mobile-tabs .active-tab div{position:relative}.aioseo-app .aioseo-mobile-tabs .active-tab div span{height:2px;background-color:#005ae0;bottom:-7px;position:absolute;left:-18px;right:-18px;z-index:10}.aioseo-app .aioseo-mobile-tabs .active-tab svg.aioseo-caret{width:24px;height:24px;position:relative;top:6px;cursor:pointer;transition:transform .3s}.aioseo-app .aioseo-mobile-tabs .active-tab svg.aioseo-caret.rotated{transform:rotate(180deg)}.aioseo-app .aioseo-mobile-tabs .tab-dropdown{border:1px solid #e8e8eb;border-top:none}.aioseo-app .aioseo-mobile-tabs .tab-links{background:#fff;position:relative;z-index:3;padding:8px;width:100%;max-width:300px}@media screen and (max-width:782px){.aioseo-app .aioseo-mobile-tabs .tab-links{max-width:100%}}.aioseo-app .aioseo-mobile-tabs .tab-links a{padding:10px;display:block;color:#141b38;text-decoration:none}.aioseo-app .aioseo-mobile-tabs .tab-links a:hover{color:#005ae0}.md-tooltip{background-color:#141b38!important;color:#fff!important;border-radius:2px;padding:6px 12px;font-size:14px}.md-tooltip:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border:5px solid transparent;border-top-color:#141b38}.modal-mask{position:fixed;z-index:9998;top:0;left:0;width:100%;height:100%;background-color:rgba(20,27,56,.3);display:table;transition:opacity .3s ease}@media screen and (max-width:520px){.modal-mask{display:block;top:46px}}.modal-mask .modal-wrapper{display:table-cell;vertical-align:middle}@media screen and (max-width:520px){.modal-mask .modal-wrapper{display:block;height:100%}}.modal-mask .modal-wrapper .modal-container{width:100%;max-width:750px;max-height:90vh;overflow-y:hidden;overflow-x:hidden;margin:0 auto;background-color:#fff;box-shadow:0 10px 30px rgba(0,0,0,.15);transition:all .3s ease}@media screen and (max-width:520px){.modal-mask .modal-wrapper .modal-container{width:100%;max-width:100%;max-height:calc(100vh - 46px);height:100%}}.modal-mask .modal-wrapper .modal-container .modal-header{position:-webkit-sticky;position:sticky;top:0;z-index:15;padding:20px 0 0 40px;height:60px;font-size:20px;font-weight:700;line-height:1.4;border-bottom:1px solid #e8e8eb;background-color:#fff}@media screen and (max-width:520px){.modal-mask .modal-wrapper .modal-container .modal-header{padding:15px 0 0 20px}}.modal-mask .modal-wrapper .modal-container .modal-header button.close{position:absolute;right:11px;top:11px;width:24px;height:24px;background-color:#fff;border:none;display:flex;align-items:center}.modal-mask .modal-wrapper .modal-container .modal-header button.close svg.aioseo-close{cursor:pointer;width:14px;height:14px}.modal-mask .modal-wrapper .modal-container .modal-body .aioseo-post-general,.modal-mask .modal-wrapper .modal-container .modal-body .aioseo-post-social{height:calc(90vh - 120px);max-height:600px;overflow-y:auto;overflow-x:hidden}@media screen and (max-width:520px){.modal-mask .modal-wrapper .modal-container .aioseo-modal-content,.modal-mask .modal-wrapper .modal-container .aioseo-modal-content>.component-wrapper,.modal-mask .modal-wrapper .modal-container .modal-body,.modal-mask .modal-wrapper .modal-container .modal-body>div{height:100%}.modal-mask .modal-wrapper .modal-container .aioseo-modal-content>.component-wrapper{display:flex;align-items:flex-end}.modal-mask .modal-wrapper .modal-container .aioseo-post-general,.modal-mask .modal-wrapper .modal-container .aioseo-post-social{height:100%!important;max-height:100%!important;padding:20px!important}.modal-mask .modal-wrapper .modal-container .aioseo-post-general .mobile-radio-buttons,.modal-mask .modal-wrapper .modal-container .aioseo-post-social .mobile-radio-buttons{margin-bottom:0}.modal-mask .modal-wrapper .modal-container .aioseo-add-template-tag{display:none}.modal-mask .modal-wrapper .modal-container .tab-facebook .aioseo-settings-row:last-of-type,.modal-mask .modal-wrapper .modal-container .tab-twitter .aioseo-settings-row:last-of-type{margin-bottom:64px!important;padding-bottom:32px!important}}.modal-enter,.modal-leave-active{opacity:0}.modal-enter .modal-container,.modal-leave-active .modal-container{transform:scale(1.1)}.aioseo-notification{margin-bottom:20px}.aioseo-notification>div{display:flex;align-items:flex-start;padding-bottom:10px;border-bottom:1px solid #e8e8eb}.aioseo-notification>div .icon{margin-right:20px}.aioseo-notification>div .icon svg{width:20px;height:20px;color:#00aa63}.aioseo-notification>div .icon svg.warning{color:#f18200}.aioseo-notification>div .icon svg.info{color:#005ae0}.aioseo-notification>div .icon svg.success{color:#00aa63}.aioseo-notification>div .icon svg.error{color:#df2a4a}.aioseo-notification>div .body{margin-right:20px;flex:1}.aioseo-notification>div .body .title{font-size:16px;font-weight:600;color:#141b38;margin-bottom:7px;display:flex;align-items:center}.aioseo-notification>div .body .title div:first-child{flex:1;margin-right:5px;line-height:1.4}.aioseo-notification>div .body .title .date{font-weight:400;color:#8c8f9a;font-size:12px}.aioseo-notification>div .body .notification-content{margin-bottom:10px;max-width:400px}.aioseo-notification>div .body .actions{flex-wrap:wrap;display:flex;align-items:center}.aioseo-notification>div .body .actions>*{margin-bottom:10px}.aioseo-notification>div .body .actions .aioseo-button{margin-right:20px}.aioseo-notification>div .body .actions .dismiss{color:#8c8f9a;font-size:14px}.aioseo-notification-cards .aioseo-notification:last-child>div{border-bottom:none;margin-bottom:none}.aioseo-notification-cards .no-notifications{display:flex;align-items:center;flex-direction:column;padding-top:100px;font-size:16px;color:#8c8f9a}.aioseo-notification-cards .no-notifications img{width:30%;height:auto}.aioseo-notification-cards .no-notifications .great-scott{margin:20px 0 10px;font-size:24px;font-weight:600;color:#434960}.aioseo-notification-cards .no-notifications .no-new-notifications{margin-bottom:10px}body.aioseo-show-notifications .aioseo-main{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.aioseo-notifications a.dismiss{color:#8c8f9a;font-size:14px}.aioseo-notifications .notification-menu{height:100%;width:100%;max-width:570px;position:fixed;z-index:1053;top:0;right:0;bottom:0;background-color:#fff;overflow-x:hidden;transition:.5s}.aioseo-notifications .notification-menu .notification-header{height:70px;display:flex;align-items:center;padding:0 30px;color:#fff;background-color:#005ae0}.aioseo-notifications .notification-menu .notification-header .new-notifications{font-size:18px;font-weight:600}.aioseo-notifications .notification-menu .notification-header .dismissed-notifications{margin-left:25px;flex:1 1 auto}.aioseo-notifications .notification-menu .notification-header .dismissed-notifications a{font-size:14px;color:#fff}.aioseo-notifications .notification-menu .notification-header svg.aioseo-close{width:14px;height:14px;cursor:pointer}.aioseo-notifications .notification-menu .notification-header svg.aioseo-close:hover{color:#ccc}.aioseo-notifications .notification-menu .notification-cards{padding:30px;height:calc(100% - 192px);overflow:auto}.aioseo-notifications .notification-menu .notification-footer{height:90px;padding:30px;display:flex;align-items:center}.aioseo-notifications .notification-menu .notification-footer div.pagination{flex:1;display:flex;align-items:center}.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number{font-size:13px;color:#141b38;background:#e8e8eb;height:30px;width:30px;display:flex;align-items:center;justify-content:center;border-radius:2px;margin-right:4px;cursor:pointer}.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number:last-child{margin-right:0}.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number.active,.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number:hover{color:#fff;background-color:#005ae0}.aioseo-notifications .overlay{position:fixed;z-index:1052;top:0;right:0;bottom:0;left:160px;background-color:#141b38;opacity:.5;transition:.5s}.aioseo-notifications .notifications-fade-enter-active,.aioseo-notifications .notifications-fade-leave-active{transition:opacity .5s}.aioseo-notifications .notifications-fade-enter,.aioseo-notifications .notifications-fade-leave-to{opacity:0}.aioseo-notifications .notifications-slide-enter-active,.aioseo-notifications .notifications-slide-leave-active{transition:all .5s ease-in-out}.aioseo-notifications .notifications-slide-enter,.aioseo-notifications .notifications-slide-leave-to{right:-570px}.aioseo-post-type-options-toggle{margin-top:20px}.aioseo-priority-score{max-width:350px}.aioseo-priority-score .header-row{font-size:14px}.aioseo-pro-badge{height:24px;border-radius:3px;background:#e8e8eb;color:#434960;font-size:14px;font-weight:600;display:inline-flex;padding:0 8px;align-items:center}.aioseo-score-settings{display:flex;align-items:center;padding-bottom:14px}.aioseo-score-settings svg{margin-right:7px}.aioseo-score-settings span{margin-right:12px}.aioseo-score-button{display:inline-block;padding:5px 8px;font-size:14px;font-weight:700;color:#a1a1a1;border:1px solid #a1a1a1;border-radius:3px}.aioseo-score-button.score-none,.aioseo-score-button.score-red{border-color:#df2a4a;color:#df2a4a!important}.aioseo-score-button.score-orange{border-color:#f18200;color:#f18200!important}.aioseo-score-button.score-green{border-color:#00aa63;color:#00aa63!important}.aioseo-score-button.classic-editor{background:#fff!important;display:inline-block!important;height:auto!important}.aioseo-score-button.classic-editor span{margin-right:0}.aioseo-seo-site-analysis-result{border:1px solid #dcdde1;margin-top:10px}.aioseo-seo-site-analysis-result .result-header{height:66px;padding:0 20px;display:flex;align-items:center}.aioseo-seo-site-analysis-result .result-header .result-icon{display:flex;align-items:center;margin-right:16px}.aioseo-seo-site-analysis-result .result-header .result-icon svg{width:24px;height:24px;color:#8c8f9a}.aioseo-seo-site-analysis-result .result-header .result-icon svg.passed{color:#00aa63}.aioseo-seo-site-analysis-result .result-header .result-icon svg.error{color:#df2a4a}.aioseo-seo-site-analysis-result .result-header .result-icon svg.warning{color:#005ae0}.aioseo-seo-site-analysis-result .result-header .result-content{font-size:16px;font-weight:600;flex:1}.aioseo-seo-site-analysis-result .result-header .result-toggle{width:30px;height:26px;border:1px solid #dcdde1;border-radius:3px;display:flex;align-items:center;justify-content:center;cursor:pointer}.aioseo-seo-site-analysis-result .result-header .result-toggle.active,.aioseo-seo-site-analysis-result .result-header .result-toggle:hover{background-color:#434960}.aioseo-seo-site-analysis-result .result-header .result-toggle.active svg,.aioseo-seo-site-analysis-result .result-header .result-toggle:hover svg{color:#fff}.aioseo-seo-site-analysis-result .result-header .result-toggle.active svg{transform:rotate(0deg)}.aioseo-seo-site-analysis-result .result-header .result-toggle svg{width:100%;max-width:20px;height:auto;color:#8c8f9a;transform:rotate(-90deg);transition:transform .3s}.aioseo-seo-site-analysis-result .result-body{padding:0 60px 24px}.aioseo-seo-site-analysis-result .result-body .result-message{color:#434960;font-size:16px}.aioseo-seo-site-analysis-result .result-body .result-code-alt pre,.aioseo-seo-site-analysis-result .result-body .result-code pre{background:#f3f4f5;border-radius:3px;max-width:100%;padding:10px;overflow:auto}.aioseo-seo-site-analysis-result .result-body .result-code-alt pre code,.aioseo-seo-site-analysis-result .result-body .result-code pre code{padding:0;background:transparent}.aioseo-seo-site-analysis-result .result-body .result-code pre{white-space:pre-wrap}.aioseo-seo-site-analysis-result .result-body .result-action{margin-top:20px}.aioseo-seo-site-analysis-results .group-header{font-size:16px;font-weight:600}.aioseo-seo-site-analysis-results .group-header:not(:first-child){margin-top:30px}.aioseo-seo-site-analysis-results .group-keywords{display:flex;margin-top:5px;flex-wrap:wrap;align-items:center}.aioseo-seo-site-analysis-results .group-keywords .keyword{font-size:14px;color:#434960;font-weight:600;background:#f3f4f5;padding:9px 10px;border-radius:3px;margin:0 10px 5px 0}.aioseo-seo-site-analysis-results .group-keywords .keyword:first-child{font-size:20px}.aioseo-settings-row{margin-bottom:22px;padding-bottom:16px;border-bottom:1px solid #e8e8eb}.aioseo-settings-row.no-margin{margin-bottom:0}.aioseo-settings-row.small-padding{padding-bottom:5px}.aioseo-settings-row.medium-margin{margin-bottom:15px}.aioseo-settings-row.no-border{border:none}.aioseo-settings-row.no-side-margin{margin-left:0!important;margin-right:0!important}.aioseo-settings-row .settings-name{color:#141b38}.aioseo-settings-row .settings-name .name{font-weight:600;font-size:16px;display:flex;align-items:center}.aioseo-settings-row .settings-name .name.small-margin{margin-bottom:5px}.aioseo-settings-row .settings-name .name.align{line-height:40px}.aioseo-settings-row .settings-name .name.align-small{line-height:30px}.aioseo-settings-row .settings-name .name .aioseo-pro-badge{margin-left:10px}.aioseo-settings-row .settings-name .aioseo-description{margin-top:20px}.aioseo-settings-row .settings-content{font-size:16px}.aioseo-settings-row p.description{font-size:14px}.aioseo-separators{margin-top:-.5rem}.aioseo-separators .aioseo-col .separator{background-color:#f3f4f5;display:flex;align-items:center;justify-content:center;min-height:51px;font-weight:600;font-size:25px;border:1px solid #dcdde1;border-radius:3px;cursor:pointer}.aioseo-separators .aioseo-col .separator:hover{background-color:#e5e7e9}.aioseo-separators .aioseo-col .separator.active{background-color:#005ae0;border-color:#005ae0;color:#fff}.aioseo-separators .aioseo-col .separator.active:hover{background-color:#005ae0}.aioseo-separators .aioseo-col .show-more{height:100%;display:flex;align-items:center}.aioseo-separators .aioseo-col .show-more a{color:#8c8f9a}.aioseo-separators .aioseo-col .custom-separator{margin:20px 0;display:flex;align-items:center}.aioseo-separators .aioseo-col .custom-separator .aioseo-input{margin-left:10px;max-width:100px}.aioseo-sidebar-card .header{height:46px}.aioseo-sidebar-card .header:hover{cursor:pointer}.aioseo-sidebar-card .content{padding-bottom:8px!important}.aioseo-sidebar-card ul{margin-bottom:0}.aioseo-sidebar-card ul li{margin-bottom:16px;padding-left:25px}.aioseo-sidebar-card ul .description{margin:0}.aioseo-robots-meta .global-robots-settings{margin:0;padding-top:24px}.aioseo-robots-meta .global-robots-settings>.settings{padding:8px 0 16px}.aioseo-robots-meta .global-robots-settings-options{display:flex}.aioseo-robots-meta .global-robots-settings-options .max-snippet{margin-right:30px}.aioseo-robots-meta .global-robots-settings-options .max-snippet .aioseo-input{max-width:90px}.aioseo-robots-meta .global-robots-settings-options .max-video-preview{margin-right:30px}.aioseo-robots-meta .global-robots-settings-options .max-video-preview .aioseo-input{max-width:90px}.aioseo-robots-meta .global-robots-settings-options .max-image-preview .aioseo-select{min-width:155px}.aioseo-robots-meta .global-robots-settings-options>span{display:inline-block;margin-bottom:4px}@media screen and (max-width:782px){.aioseo-robots-meta .global-robots-settings-options{display:block}.aioseo-robots-meta .global-robots-settings-options .max-snippet,.aioseo-robots-meta .global-robots-settings-options .max-video-preview{margin-right:0;margin-bottom:20px}.aioseo-robots-meta .global-robots-settings-options>div .aioseo-input,.aioseo-robots-meta .global-robots-settings-options>div .aioseo-select{min-width:100%}}.edit-post-sidebar .global-robots-settings{padding-top:12px}.edit-post-sidebar .global-robots-settings>.settings{padding:4px 0 12px}.edit-post-sidebar .global-robots-settings>.settings label{font-size:16px}.edit-post-sidebar .global-robots-settings .robots-meta-title{padding-top:4px;display:inline-block}.edit-post-sidebar .global-robots-settings-options{flex-wrap:wrap}.edit-post-sidebar .max-snippet{margin-right:30px!important}.edit-post-sidebar .max-video-preview{margin-right:0!important}.edit-post-sidebar .max-image-preview{margin-top:20px!important}.aioseo-score-amount-wrapper{position:absolute;left:0;top:0;right:0;bottom:0;display:flex;align-items:center;justify-content:center;flex-direction:column;color:#141b38;margin:20px}.aioseo-score-amount-wrapper .aioseo-score-amount .score{font-size:64px;font-weight:600}.aioseo-score-amount-wrapper .aioseo-score-amount .total{font-size:18px;color:#8c8f9a;padding-left:3px}.aioseo-score-amount-wrapper .score-description{max-width:80%;text-align:center;font-size:17px;font-weight:600;line-height:1.1}.aioseo-score-amount-wrapper .score-analyzing{margin-top:20px;font-size:30px}.aioseo-site-score-analyze{position:relative;display:flex;align-items:center;justify-content:center;flex:1}.aioseo-site-score-analyze .analyze-errors{text-align:center;margin-bottom:1em}.aioseo-site-score-analyze .aioseo-seo-site-score-score{position:relative;min-width:175px;max-width:217px;margin-right:5em}.aioseo-site-score-analyze .aioseo-seo-site-score-score svg{width:100%;height:auto}.aioseo-site-score-analyze .aioseo-seo-site-score-description h2{line-height:1.4}.aioseo-site-score-analyze .aioseo-seo-site-score-description svg.aioseo-book{width:20px;height:20px;margin:0 10px 0 0;color:#005ae0}.aioseo-site-score-analyze .aioseo-seo-site-score-description>div{font-size:16px;color:#141b38;margin-bottom:10px}.aioseo-site-score-analyze .aioseo-seo-site-score-description .links{margin-top:30px;font-size:14px;font-weight:600}.aioseo-site-score-analyze .aioseo-seo-site-score-description .links .no-underline{padding-left:5px}.aioseo-site-score-competitor{position:relative;display:flex;align-items:center;justify-content:center;flex-direction:column}.aioseo-site-score-competitor .aioseo-seo-site-score-score{position:relative;min-width:175px;max-width:217px;margin-right:1em}.aioseo-site-score-competitor .aioseo-seo-site-score-score svg{width:100%;height:auto}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations{margin:20px 0}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links){display:flex;align-items:center;font-size:14px;color:#141b38;font-weight:600;margin-bottom:10px}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round{position:relative;border-radius:50%;width:24px;min-width:24px;max-width:24px;height:24px;display:flex;align-items:center;justify-content:center;margin-right:10px;font-size:12px;color:#fff;font-weight:600}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.red{background-color:#df2a4a}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.blue{background-color:#005ae0}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.orange{background-color:#f18200}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.green{background-color:#00aa63}.aioseo-site-score-competitor .refresh-results .aioseo-refresh{width:14px;height:14px;margin-right:10px}.aioseo-site-score-competitor .mobile-snapshot{margin-top:60px;max-width:250px}.aioseo-site-score-competitor .mobile-snapshot div{font-weight:600;font-size:16px;margin-bottom:10px}.aioseo-site-score-competitor .mobile-snapshot img{width:100%;height:auto}.aioseo-site-score-dashboard{position:relative;display:flex;align-items:center;justify-content:center}.aioseo-site-score-dashboard .analyze-errors{text-align:center;margin-bottom:1em}.aioseo-site-score-dashboard .aioseo-seo-site-score-score{position:relative;min-width:175px;max-width:217px;margin-right:1em}.aioseo-site-score-dashboard .aioseo-seo-site-score-score svg{width:100%;height:auto}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links){display:flex;align-items:center;font-size:14px;color:#141b38;font-weight:600;margin-bottom:10px}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round{position:relative;border-radius:50%;width:24px;min-width:24px;max-width:24px;height:24px;display:flex;align-items:center;justify-content:center;margin-right:10px;font-size:12px;color:#fff;font-weight:600}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.red{background-color:#df2a4a}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.blue{background-color:#005ae0}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.orange{background-color:#f18200}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.green{background-color:#00aa63}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations .links{margin-top:30px;font-size:14px;font-weight:600}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations .links .no-underline{padding-left:5px}.aioseo-social-profiles .same-username .use-same{padding:30px;background:#f9f9fa}.aioseo-social-profiles .same-username .use-same .aioseo-checkbox{font-size:16px}.aioseo-social-profiles .aioseo-social-profile-list,.aioseo-social-profiles .same-username .use-same .aioseo-settings-row,.aioseo-social-profiles .same-username .use-same .profiles{margin-top:20px}.aioseo-social-profiles .aioseo-social-profile-list .social-profile{margin-bottom:0;padding-bottom:0;border-bottom:none}.aioseo-social-profiles .aioseo-social-profile-list .social-profile .profile-error{margin-top:10px}.aioseo-social-profiles .aioseo-social-profile-list .social-profile .name{margin-bottom:0}.aioseo-social-profiles .aioseo-social-profile-list .social-profile img{height:16px;width:auto;margin-right:10px}.aioseo-tooltip{margin-left:14px;display:inline-flex}.aioseo-tooltip,.aioseo-twitter-preview{align-items:center;justify-content:center}.aioseo-twitter-preview{background-color:#f0f2f5;padding:30px;display:flex}.aioseo-twitter-preview .twitter-post{width:100%;max-width:500px;border-radius:5px;border:1px solid #e1e8ed;background-color:#fff}.aioseo-twitter-preview .twitter-post .twitter-header{height:65px;padding:0 18px;display:flex;align-items:center}.aioseo-twitter-preview .twitter-post .twitter-header .profile-photo{overflow:hidden;width:40px;height:40px;border:1px solid #e8e8eb;border-radius:50%}.aioseo-twitter-preview .twitter-post .twitter-header .profile-photo img{height:100%;width:100%}.aioseo-twitter-preview .twitter-post .twitter-header .poster{margin-left:10px;flex:1 0 auto}.aioseo-twitter-preview .twitter-post .twitter-header .poster .poster-name{font-size:15px;color:#1c2022;font-weight:600}.aioseo-twitter-preview .twitter-post .twitter-header .poster .poster-username{color:#697882;font-weight:500;font-size:13px}.aioseo-twitter-preview .twitter-post .twitter-container{padding:0 20px 20px}.aioseo-twitter-preview .twitter-post .twitter-container.summary .twitter-content{flex-direction:row}.aioseo-twitter-preview .twitter-post .twitter-container.summary .twitter-content .twitter-image-preview{display:flex;align-items:center;justify-content:center;background-color:#e1e8ed;min-width:125px;min-height:125px;background-size:cover;background-repeat:no-repeat;background-position:50%}.aioseo-twitter-preview .twitter-post .twitter-container.summary .twitter-content .twitter-image-preview svg.aioseo-book{width:50px;height:50px;color:#8999a5}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content{border-radius:10px;overflow:hidden;display:flex;flex-direction:column;border:1px solid #e1e8ed}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content img{width:100%;height:auto}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description{padding:18px;color:#1c2022}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description .site-domain{font-size:14px;color:#8899a6;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description .site-title{font-size:15px;font-weight:600}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description .site-description{font-size:14px;margin:5px 0}.aioseo-col .reverse{flex-direction:column-reverse}.aioseo-col.col-xs,.aioseo-col.col-xs-1,.aioseo-col.col-xs-2,.aioseo-col.col-xs-3,.aioseo-col.col-xs-4,.aioseo-col.col-xs-5,.aioseo-col.col-xs-6,.aioseo-col.col-xs-7,.aioseo-col.col-xs-8,.aioseo-col.col-xs-9,.aioseo-col.col-xs-10,.aioseo-col.col-xs-11,.aioseo-col.col-xs-12,.aioseo-col.col-xs-offset-0,.aioseo-col.col-xs-offset-1,.aioseo-col.col-xs-offset-2,.aioseo-col.col-xs-offset-3,.aioseo-col.col-xs-offset-4,.aioseo-col.col-xs-offset-5,.aioseo-col.col-xs-offset-6,.aioseo-col.col-xs-offset-7,.aioseo-col.col-xs-offset-8,.aioseo-col.col-xs-offset-9,.aioseo-col.col-xs-offset-10,.aioseo-col.col-xs-offset-11,.aioseo-col.col-xs-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-xs{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-xs-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-xs-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-xs-3{flex-basis:25%;max-width:25%}.aioseo-col.col-xs-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-xs-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-xs-6{flex-basis:50%;max-width:50%}.aioseo-col.col-xs-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-xs-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-xs-9{flex-basis:75%;max-width:75%}.aioseo-col.col-xs-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-xs-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-xs-12{flex-basis:100%;max-width:100%}.aioseo-col.col-xs-offset-0{margin-left:0}.aioseo-col.col-xs-offset-1{margin-left:8.33333333%}.aioseo-col.col-xs-offset-2{margin-left:16.66666667%}.aioseo-col.col-xs-offset-3{margin-left:25%}.aioseo-col.col-xs-offset-4{margin-left:33.33333333%}.aioseo-col.col-xs-offset-5{margin-left:41.66666667%}.aioseo-col.col-xs-offset-6{margin-left:50%}.aioseo-col.col-xs-offset-7{margin-left:58.33333333%}.aioseo-col.col-xs-offset-8{margin-left:66.66666667%}.aioseo-col.col-xs-offset-9{margin-left:75%}.aioseo-col.col-xs-offset-10{margin-left:83.33333333%}.aioseo-col.col-xs-offset-11{margin-left:91.66666667%}.aioseo-col.first-xs{order:-1}.aioseo-col.last-xs{order:1}.aioseo-col.text-xs-left{text-align:left!important;justify-content:flex-start}.aioseo-col.text-xs-center{text-align:center!important;justify-content:center}.aioseo-col.text-xs-right{text-align:right!important;justify-content:flex-end}@media only screen and (min-width:782px){.aioseo-col.col-sm,.aioseo-col.col-sm-1,.aioseo-col.col-sm-2,.aioseo-col.col-sm-3,.aioseo-col.col-sm-4,.aioseo-col.col-sm-5,.aioseo-col.col-sm-6,.aioseo-col.col-sm-7,.aioseo-col.col-sm-8,.aioseo-col.col-sm-9,.aioseo-col.col-sm-10,.aioseo-col.col-sm-11,.aioseo-col.col-sm-12,.aioseo-col.col-sm-offset-0,.aioseo-col.col-sm-offset-1,.aioseo-col.col-sm-offset-2,.aioseo-col.col-sm-offset-3,.aioseo-col.col-sm-offset-4,.aioseo-col.col-sm-offset-5,.aioseo-col.col-sm-offset-6,.aioseo-col.col-sm-offset-7,.aioseo-col.col-sm-offset-8,.aioseo-col.col-sm-offset-9,.aioseo-col.col-sm-offset-10,.aioseo-col.col-sm-offset-11,.aioseo-col.col-sm-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-sm{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-sm-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-sm-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-sm-3{flex-basis:25%;max-width:25%}.aioseo-col.col-sm-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-sm-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-sm-6{flex-basis:50%;max-width:50%}.aioseo-col.col-sm-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-sm-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-sm-9{flex-basis:75%;max-width:75%}.aioseo-col.col-sm-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-sm-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-sm-12{flex-basis:100%;max-width:100%}.aioseo-col.col-sm-offset-0{margin-left:0}.aioseo-col.col-sm-offset-1{margin-left:8.33333333%}.aioseo-col.col-sm-offset-2{margin-left:16.66666667%}.aioseo-col.col-sm-offset-3{margin-left:25%}.aioseo-col.col-sm-offset-4{margin-left:33.33333333%}.aioseo-col.col-sm-offset-5{margin-left:41.66666667%}.aioseo-col.col-sm-offset-6{margin-left:50%}.aioseo-col.col-sm-offset-7{margin-left:58.33333333%}.aioseo-col.col-sm-offset-8{margin-left:66.66666667%}.aioseo-col.col-sm-offset-9{margin-left:75%}.aioseo-col.col-sm-offset-10{margin-left:83.33333333%}.aioseo-col.col-sm-offset-11{margin-left:91.66666667%}.aioseo-col.first-sm{order:-1}.aioseo-col.last-sm{order:1}.aioseo-col.text-sm-left{text-align:left!important;justify-content:flex-start}.aioseo-col.text-sm-center{text-align:center!important;justify-content:center}.aioseo-col.text-sm-right{text-align:right!important;justify-content:flex-end}}@media only screen and (min-width:912px){.aioseo-col.col-md,.aioseo-col.col-md-1,.aioseo-col.col-md-2,.aioseo-col.col-md-3,.aioseo-col.col-md-4,.aioseo-col.col-md-5,.aioseo-col.col-md-6,.aioseo-col.col-md-7,.aioseo-col.col-md-8,.aioseo-col.col-md-9,.aioseo-col.col-md-10,.aioseo-col.col-md-11,.aioseo-col.col-md-12,.aioseo-col.col-md-offset-0,.aioseo-col.col-md-offset-1,.aioseo-col.col-md-offset-2,.aioseo-col.col-md-offset-3,.aioseo-col.col-md-offset-4,.aioseo-col.col-md-offset-5,.aioseo-col.col-md-offset-6,.aioseo-col.col-md-offset-7,.aioseo-col.col-md-offset-8,.aioseo-col.col-md-offset-9,.aioseo-col.col-md-offset-10,.aioseo-col.col-md-offset-11,.aioseo-col.col-md-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-md{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-md-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-md-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-md-3{flex-basis:25%;max-width:25%}.aioseo-col.col-md-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-md-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-md-6{flex-basis:50%;max-width:50%}.aioseo-col.col-md-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-md-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-md-9{flex-basis:75%;max-width:75%}.aioseo-col.col-md-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-md-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-md-12{flex-basis:100%;max-width:100%}.aioseo-col.col-md-offset-0{margin-left:0}.aioseo-col.col-md-offset-1{margin-left:8.33333333%}.aioseo-col.col-md-offset-2{margin-left:16.66666667%}.aioseo-col.col-md-offset-3{margin-left:25%}.aioseo-col.col-md-offset-4{margin-left:33.33333333%}.aioseo-col.col-md-offset-5{margin-left:41.66666667%}.aioseo-col.col-md-offset-6{margin-left:50%}.aioseo-col.col-md-offset-7{margin-left:58.33333333%}.aioseo-col.col-md-offset-8{margin-left:66.66666667%}.aioseo-col.col-md-offset-9{margin-left:75%}.aioseo-col.col-md-offset-10{margin-left:83.33333333%}.aioseo-col.col-md-offset-11{margin-left:91.66666667%}.aioseo-col.first-md{order:-1}.aioseo-col.last-md{order:1}.aioseo-col.text-md-left{text-align:left!important;justify-content:flex-start}.aioseo-col.text-md-center{text-align:center!important;justify-content:center}.aioseo-col.text-md-right{text-align:right!important;justify-content:flex-end}}@media only screen and (min-width:1042px){.aioseo-col.col-lg,.aioseo-col.col-lg-1,.aioseo-col.col-lg-2,.aioseo-col.col-lg-3,.aioseo-col.col-lg-4,.aioseo-col.col-lg-5,.aioseo-col.col-lg-6,.aioseo-col.col-lg-7,.aioseo-col.col-lg-8,.aioseo-col.col-lg-9,.aioseo-col.col-lg-10,.aioseo-col.col-lg-11,.aioseo-col.col-lg-12,.aioseo-col.col-lg-offset-0,.aioseo-col.col-lg-offset-1,.aioseo-col.col-lg-offset-2,.aioseo-col.col-lg-offset-3,.aioseo-col.col-lg-offset-4,.aioseo-col.col-lg-offset-5,.aioseo-col.col-lg-offset-6,.aioseo-col.col-lg-offset-7,.aioseo-col.col-lg-offset-8,.aioseo-col.col-lg-offset-9,.aioseo-col.col-lg-offset-10,.aioseo-col.col-lg-offset-11,.aioseo-col.col-lg-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-lg{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-lg-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-lg-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-lg-3{flex-basis:25%;max-width:25%}.aioseo-col.col-lg-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-lg-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-lg-6{flex-basis:50%;max-width:50%}.aioseo-col.col-lg-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-lg-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-lg-9{flex-basis:75%;max-width:75%}.aioseo-col.col-lg-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-lg-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-lg-12{flex-basis:100%;max-width:100%}.aioseo-col.col-lg-offset-0{margin-left:0}.aioseo-col.col-lg-offset-1{margin-left:8.33333333%}.aioseo-col.col-lg-offset-2{margin-left:16.66666667%}.aioseo-col.col-lg-offset-3{margin-left:25%}.aioseo-col.col-lg-offset-4{margin-left:33.33333333%}.aioseo-col.col-lg-offset-5{margin-left:41.66666667%}.aioseo-col.col-lg-offset-6{margin-left:50%}.aioseo-col.col-lg-offset-7{margin-left:58.33333333%}.aioseo-col.col-lg-offset-8{margin-left:66.66666667%}.aioseo-col.col-lg-offset-9{margin-left:75%}.aioseo-col.col-lg-offset-10{margin-left:83.33333333%}.aioseo-col.col-lg-offset-11{margin-left:91.66666667%}.aioseo-col.first-lg{order:-1}.aioseo-col.last-lg{order:1}.aioseo-col.text-lg-left{text-align:left!important;justify-content:flex-start}.aioseo-col.text-lg-center{text-align:center!important;justify-content:center}.aioseo-col.text-lg-right{text-align:right!important;justify-content:flex-end}}.aioseo-container,.aioseo-container-fluid{margin-right:auto;margin-left:auto}.aioseo-container{padding:0 20px}.aioseo-container-fluid.hero,.aioseo-container.hero{min-height:100vh;display:flex;justify-content:center;align-items:center}.aioseo-container-fluid{padding-right:2rem;padding-left:2rem}@media only screen and (min-width:782px){.aioseo-container{padding:0 30px}}@media only screen and (min-width:1042px){.aioseo-container{max-width:80rem}.aioseo-container.full-width{max-width:100%}.aioseo-container.small{max-width:810px}}.aioseo-masonry{-moz-column-count:0;column-count:0;-moz-column-gap:20px;column-gap:20px;counter-reset:brick-counter}.aioseo-masonry>*{box-sizing:border-box;-moz-column-break-inside:avoid;break-inside:avoid;counter-increment:brick-counter;margin-bottom:20px}@media only screen and (min-width:782px){.aioseo-masonry{-moz-column-count:1;column-count:1}}@media only screen and (min-width:912px){.aioseo-masonry{-moz-column-count:2;column-count:2}}@media only screen and (min-width:1042px){.aioseo-masonry{-moz-column-count:3;column-count:3}}.aioseo-row{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:row;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem}.aioseo-row.reverse{flex-direction:row-reverse}.aioseo-row.start-xs{justify-content:flex-start;text-align:start}.aioseo-row.center-xs{justify-content:center;text-align:center}.aioseo-row.end-xs{justify-content:flex-end;text-align:end}.aioseo-row.top-xs{align-items:flex-start}.aioseo-row.middle-xs{align-items:center}.aioseo-row.bottom-xs{align-items:flex-end}.aioseo-row.around-xs{justify-content:space-around}.aioseo-row.between-xs{justify-content:space-between}@media only screen and (min-width:782px){.aioseo-row.start-sm{justify-content:flex-start;text-align:start}.aioseo-row.center-sm{justify-content:center;text-align:center}.aioseo-row.end-sm{justify-content:flex-end;text-align:end}.aioseo-row.top-sm{align-items:flex-start}.aioseo-row.middle-sm{align-items:center}.aioseo-row.bottom-sm{align-items:flex-end}.aioseo-row.around-sm{justify-content:space-around}.aioseo-row.between-sm{justify-content:space-between}}@media only screen and (min-width:912px){.aioseo-row.start-md{justify-content:flex-start;text-align:start}.aioseo-row.center-md{justify-content:center;text-align:center}.aioseo-row.end-md{justify-content:flex-end;text-align:end}.aioseo-row.top-md{align-items:flex-start}.aioseo-row.middle-md{align-items:center}.aioseo-row.bottom-md{align-items:flex-end}.aioseo-row.around-md{justify-content:space-around}.aioseo-row.between-md{justify-content:space-between}}@media only screen and (min-width:1042px){.aioseo-row.start-lg{justify-content:flex-start;text-align:start}.aioseo-row.center-lg{justify-content:center;text-align:center}.aioseo-row.end-lg{justify-content:flex-end;text-align:end}.aioseo-row.top-lg{align-items:flex-start}.aioseo-row.middle-lg{align-items:center}.aioseo-row.bottom-lg{align-items:flex-end}.aioseo-row.around-lg{justify-content:space-around}.aioseo-row.between-lg{justify-content:space-between}}.aioseo-seo-site-score__circle{animation:aioseo-seo-site-score-fill 1s reverse;transform:rotate(-180deg);transform-origin:center;stroke:#00aa63}.aioseo-seo-site-score__circle.fast{-webkit-animation-duration:.5s;animation-duration:.5s;stroke:#df2a4a}.aioseo-seo-site-score__circle.medium{-webkit-animation-duration:.75s;animation-duration:.75s;stroke:#f18200}.aioseo-seo-site-score__background{stroke:#e8e8eb}@-webkit-keyframes aioseo-seo-site-score-fill{to{stroke-dasharray:0 100}}@keyframes aioseo-seo-site-score-fill{to{stroke-dasharray:0 100}}.aioseo-seo-site-score-svg-loading{-webkit-animation:aioseo-seo-site-score-svg-animation 2s linear infinite;animation:aioseo-seo-site-score-svg-animation 2s linear infinite}.aioseo-seo-site-score-loading__circle{-webkit-animation:aioseo-seo-site-score-fill-loading 2s ease-in-out infinite both;animation:aioseo-seo-site-score-fill-loading 2s ease-in-out infinite both;transform:rotate(-180deg);transform-origin:center;stroke:#005ae0}@-webkit-keyframes aioseo-seo-site-score-svg-animation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes aioseo-seo-site-score-svg-animation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@-webkit-keyframes aioseo-seo-site-score-fill-loading{0%,25%{stroke-dashoffset:90;transform:rotate(0)}50%,75%{stroke-dashoffset:10;transform:rotate(45deg)}to{stroke-dashoffset:90;transform:rotate(1turn)}}@keyframes aioseo-seo-site-score-fill-loading{0%,25%{stroke-dashoffset:90;transform:rotate(0)}50%,75%{stroke-dashoffset:10;transform:rotate(45deg)}to{stroke-dashoffset:90;transform:rotate(1turn)}}.aioseo-table-column{display:flex;flex-direction:column;flex-basis:100%;flex:1;padding:5px;justify-content:center}.aioseo-table-row{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.aioseo-wizard-body{background-color:#fff;max-width:900px;box-shadow:0 2px 5px rgba(0,0,0,.05)}.aioseo-wizard-body .body-content{padding:80px 140px}@media screen and (max-width:782px){.aioseo-wizard-body .body-content{padding:40px}}.aioseo-wizard-body .body-content .header{line-height:1.4}.aioseo-wizard-body .body-footer{border-top:1px solid #e8e8eb;padding:30px;display:flex;align-items:center}.aioseo-wizard-body .body-footer>*{margin-right:10px}.aioseo-wizard-body .body-footer>:last-child{margin-right:0}.aioseo-wizard-body .body-footer .spacer{flex:1 0 auto}.aioseo-wizard-close-and-exit{margin-top:96px;text-align:center;font-size:14px}.aioseo-wizard-close-and-exit a{color:#8c8f9a!important}.aioseo-wizard-container{margin:40px auto;max-width:900px}@media screen and (max-width:782px){.aioseo-wizard-container{margin:0 20px}}.aioseo-wizard-header{display:flex;align-items:center;justify-content:center;flex-direction:column}.aioseo-wizard-header svg.aioseo-logo{width:100%;max-width:140px;height:auto;margin:60px 10px 40px 0}.aioseo-wizard-progress{display:flex;align-items:center;justify-content:center}@media screen and (max-width:782px){.aioseo-wizard-progress{display:none}}.aioseo-wizard-progress .circle{background-color:#dcdde1;width:16px;height:16px;border-radius:50%}.aioseo-wizard-progress .circle.active{background-color:#005ae0}.aioseo-wizard-progress .spacer{width:59px;border:1px solid #dcdde1;margin:0 12px}.aioseo-wizard-progress .spacer.active{border-color:#005ae0}.aioseo-wizard-steps{color:#8c8f9a;font-size:14px;margin-bottom:20px}
1
+ .aioseo-app .aioseo-cta{margin-top:30px;background:#fff;width:100%;padding:40px;box-shadow:0 2px 5px rgba(0,0,0,.05);border:1px solid #e8e8eb}.aioseo-app .aioseo-cta.floating{margin-top:0;position:absolute;max-width:850px;left:50%;top:50%;transform:translateX(-50%) translateY(-50%);box-shadow:0 5px 20px rgba(0,0,0,.1);border-radius:3px}.aioseo-app .aioseo-cta .header-text{line-height:1.4;font-weight:600;font-size:24px;text-align:center;color:#141b38}.aioseo-app .aioseo-cta .header-text span.large{line-height:1.4;font-size:32px}.aioseo-app .aioseo-cta .description{margin:30px 0 50px;width:100%;max-width:600px;text-align:center;font-size:16px;color:#141b38;line-height:1.4}.aioseo-app .aioseo-cta .description .aioseo-alert{margin-bottom:30px;text-align:left}.aioseo-app .aioseo-cta .feature-list{color:#141b38;font-size:16px;width:100%;max-width:500px;margin-bottom:50px}.aioseo-app .aioseo-cta .feature-list .aioseo-col{display:flex;align-items:flex-start}.aioseo-app .aioseo-cta .feature-list .aioseo-col svg.aioseo-circle-check{color:#00aa63;width:18px;min-width:18px;min-height:18px;margin-right:10px}.aioseo-app .aioseo-cta a.learn-more{margin-top:20px;color:#8c8f9a;font-size:14px}.aioseo-app .aioseo-cta .type-1{display:flex;flex-direction:column;align-items:center}.aioseo-app .aioseo-cta .type-2{margin:30px 0 30px 50px;display:flex}.aioseo-app .aioseo-cta .type-2 .description,.aioseo-app .aioseo-cta .type-2 .header-text{text-align:left}.aioseo-app .aioseo-cta .type-2 .description,.aioseo-app .aioseo-cta .type-2 .feature-list{margin:30px 0}.aioseo-app .aioseo-cta .type-2>div{margin-right:20px;flex:0 0 50%}.aioseo-app .aioseo-cta .type-2 .featured-image{max-height:540px;border:1px solid #e8e8eb;flex:1;overflow:hidden;margin-right:-41px;margin-bottom:-71px;border-radius:5px 0 0}.aioseo-app .aioseo-cta .type-2 .featured-image img{max-height:600px}@media only screen and (max-width:912px){.aioseo-app .aioseo-cta .type-2{flex-direction:column;align-items:center}.aioseo-app .aioseo-cta .type-2 .description,.aioseo-app .aioseo-cta .type-2 .header-text{text-align:center}.aioseo-app .aioseo-cta .type-2>div{text-align:center;margin-right:0;margin-bottom:30px;flex:1 0 100%;width:100%}.aioseo-app .aioseo-cta .type-2 .featured-image{margin:0 -10px -41px;border-radius:5px 5px 0 0;max-height:300px}}.aioseo-app .aioseo-cta .type-3 .sub-header{line-height:1.4;font-size:16px;font-weight:600;color:#005ae0;margin-bottom:5px}.aioseo-app .aioseo-cta .type-3 .header-text{text-align:left}.aioseo-app .aioseo-cta .type-3 .feature-list{margin:30px 0}.aioseo-app .aioseo-cta .type-3 .feature-list .aioseo-col svg.aioseo-circle-check{color:#00aa63;width:21px;min-width:21px;min-height:21px;margin-right:5px}.aioseo-app .aioseo-cta .type-3 .aioseo-button{margin-right:12px}.aioseo-box-toggle .aioseo-row .aioseo-col{max-width:calc(200px + 1em)}@media only screen and (max-width:48em){.aioseo-box-toggle .aioseo-row .aioseo-col{max-width:100%}}.aioseo-box-toggle input{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.aioseo-box-toggle input:checked+label{background-color:#fff;box-shadow:0 5px 10px rgba(0,90,224,.1);border:2px solid #005ae0;font-weight:600}.aioseo-box-toggle label{background-color:#f9f9fa;color:#141b38;font-size:16px;line-height:1;display:flex;align-items:center;justify-content:center;flex-direction:column;border:1px solid #f9f9fa;transition:all .1s ease-in-out;border-radius:3px;height:165px;position:relative}.aioseo-box-toggle label p{position:absolute;bottom:15px;margin:0}.aioseo-box-toggle label:hover{cursor:pointer}.aioseo-button{flex-shrink:0;line-height:1;display:inline-flex;align-items:center;justify-content:center;font-size:16px;font-weight:600;padding:0 24px;border-radius:4px;-webkit-appearance:none;cursor:pointer;height:48px;transition:background-color .2s ease;position:relative;overflow:hidden;text-decoration:none;color:#141b38;white-space:nowrap}.aioseo-button.small{height:30px;font-size:14px;padding:0 12px}.aioseo-button.small .loading-spinner{width:25px;height:25px}.aioseo-button.medium{height:40px;font-size:14px;padding:0 18px}.aioseo-button.medium .loading-spinner{width:35px;height:35px}.aioseo-button.xl{height:66px;border-radius:4px;font-size:18px;padding:0 48px}.aioseo-button.gray{border:1px solid #dcdde1;background-color:#f3f4f5}.aioseo-button.gray:hover{background-color:#fff;color:#141b38}.aioseo-button.gray:active{background-color:#f3f4f5}.aioseo-button.green{border:none;background-color:#00aa63;color:#fff}.aioseo-button.green:hover{background-color:#07c575}.aioseo-button.green:active{background-color:#15955f}.aioseo-button.blue{border:none;background-color:#005ae0;color:#fff}.aioseo-button.blue:hover{background-color:#1a82ea}.aioseo-button.blue:active{background-color:#004f9d}.aioseo-button.black{border:none;background-color:#434960;color:#fff}.aioseo-button.black:hover{background-color:#2c324c}.aioseo-button.black:active{background-color:#141b38}.aioseo-button.loading.blue{background-color:#004f9d;color:#004f9d}.aioseo-button.loading.blue:hover{background-color:#004f9d}.aioseo-button.loading.green{background-color:#15955f;color:#15955f}.aioseo-button.loading.green:hover{background-color:#15955f}.aioseo-button.loading.gray{background-color:#f3f4f5;color:#f3f4f5}.aioseo-button.loading.gray:hover{background-color:#f3f4f5}.aioseo-button.loading.black{background-color:#141b38;color:#141b38}.aioseo-button.loading.black:hover{background-color:#141b38}.aioseo-button:disabled{color:#8c8f9a;background-color:#f3f4f5;cursor:default}.aioseo-button:disabled.gray:hover{color:#8c8f9a}.aioseo-button:disabled:hover{background-color:#f3f4f5}.aioseo-checkbox{display:inline-flex;align-items:center}.aioseo-checkbox.disabled,.aioseo-checkbox.disabled .form-checkbox .fancy-checkbox,.aioseo-checkbox.no-clicks,.aioseo-checkbox.no-clicks .form-checkbox .fancy-checkbox{cursor:default}.aioseo-checkbox .form-checkbox-wrapper{margin-right:10px;display:flex}.aioseo-checkbox.medium .form-checkbox{width:20px;height:20px}.aioseo-checkbox.medium .form-checkbox .fancy-checkbox svg{width:12px;height:12px}.aioseo-checkbox.medium .form-checkbox span:before{height:18px;width:18px;line-height:20px}.aioseo-checkbox.round .form-checkbox span,.aioseo-checkbox.round .form-checkbox span:before{border-radius:50%}.aioseo-checkbox .form-checkbox{position:relative;display:inline-block;width:28px;height:28px;color:#fff;vertical-align:bottom;text-align:center}.aioseo-checkbox .form-checkbox input{display:none}.aioseo-checkbox .form-checkbox input:checked+.fancy-checkbox.blue{background:#005ae0}.aioseo-checkbox .form-checkbox input:checked+.fancy-checkbox.green{background:#00aa63}.aioseo-checkbox .form-checkbox input:checked+.fancy-checkbox:before{background:transparent}.aioseo-checkbox .form-checkbox input:disabled+.fancy-checkbox{background:#e8e8eb!important;border:1px solid #d0d1d7;cursor:default}.aioseo-checkbox .form-checkbox input:disabled+.fancy-checkbox svg{color:#8c8f9a}.aioseo-checkbox .form-checkbox input:not(:checked):disabled+.fancy-checkbox:before{left:0;bottom:0;background:#e8e8eb}.aioseo-checkbox .form-checkbox .fancy-checkbox svg{color:#fff;width:16px;height:16px}.aioseo-checkbox .form-checkbox span{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#d0d1d7;transition:.2s;border-radius:3px;display:flex;align-items:center;justify-content:center}.aioseo-checkbox .form-checkbox span:before{position:absolute;content:"";height:26px;width:26px;left:1px;bottom:1px;background-color:#fff;transition:.2s;font-size:18px;line-height:28px;border-radius:2px}.aioseo-date-picker.vue-daterange-picker{width:100%}.aioseo-date-picker.vue-daterange-picker .form-control{display:flex;align-items:center;color:#141b38;font-size:16px;height:48px;border-radius:3px;border:1px solid #d0d1d7;position:relative}.aioseo-date-picker.vue-daterange-picker .form-control svg.aioseo-circle-close{position:absolute;right:10px;color:#434960;width:15px;height:15px}.aioseo-date-picker.vue-daterange-picker.small .form-control{height:30px}.aioseo-date-picker.vue-daterange-picker.medium .form-control{height:40px}body[class*=all-in-one-seo_page] .daterangepicker .yearselect{width:75px}.aioseo-editor{position:relative}.aioseo-editor .aioseo-editor-description .ql-editor{min-height:100px}.aioseo-editor .aioseo-editor-line-numbers .ql-editor{padding:15px 15px 15px 45px}.aioseo-editor .aioseo-editor-single .ql-editor{padding:8px 10px}.aioseo-editor .aioseo-editor-single.aioseo-editor-line-numbers .ql-editor{padding:8px 10px 8px 45px}.aioseo-editor .aioseo-editor-monospace .ql-editor{font-family:monospace}.aioseo-editor .aioseo-line-numbers{background:#f7f6f7;position:absolute;text-align:right;top:1px;width:29px;left:1px;border-radius:3px 0 0 3px;padding:15px 9px 0 0;display:flex;height:calc(100% - 2px);flex-direction:column;overflow:hidden}.aioseo-editor .aioseo-line-numbers div{min-height:25px;color:#8c8f9a;font-size:12px;line-height:1.9}.aioseo-editor .ql-disabled{pointer-events:none;background-color:#f9f9fa}.aioseo-editor .ql-editor{padding:15px;border-radius:3px;font-size:16px;color:#141b38;border:1px solid #d0d1d7}.aioseo-editor .ql-editor:focus{border:1px solid #005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-editor .ql-editor .mention .ql-mention-denotation-char{display:none}.aioseo-editor .ql-editor .mention .aioseo-tag{height:25px;margin:0 1px;color:#434960;font-weight:600;font-size:14px;padding:3px 25px 3px 10px;background-color:#f3f4f5;border-radius:3px;cursor:pointer;position:relative;display:inline-flex;align-items:center}.aioseo-editor .ql-editor .mention .aioseo-tag .tag-toggle{display:inline-flex;align-items:center;background-color:#e8e8eb;position:absolute;top:0;right:0;bottom:0;border-radius:0 3px 3px 0}.aioseo-editor .ql-editor .mention .aioseo-tag .tag-toggle svg.aioseo-caret{width:18px;height:18px;transition:transform .3s}.aioseo-editor .ql-editor .mention .aioseo-tag .tag-toggle svg.aioseo-caret.rotated{transform:rotate(180deg)}.aioseo-editor .ql-mention-list-container{color:#141b38;background-color:#fff;max-width:250px;width:100%;margin-top:3px;border:1px solid #d0d1d7;border-radius:3px;box-shadow:0 3px 15px rgba(0,0,0,.1);z-index:9001}.aioseo-editor .ql-mention-list-container .aioseo-tag-custom,.aioseo-editor .ql-mention-list-container .aioseo-tag-search{padding:12px;border-bottom:1px solid #e8e8eb}.aioseo-editor .ql-mention-list-container .aioseo-tag-custom{display:none}.aioseo-editor .ql-mention-list-container .ql-mention-list{list-style:none;margin:0;padding:0;max-height:210px;overflow:auto}.aioseo-editor .ql-mention-list-container .ql-mention-list li{color:#141b38;margin:0;background-color:transparent;border-bottom:1px solid #e8e8eb;padding:15px;cursor:pointer;font-size:14px}.aioseo-editor .ql-mention-list-container .ql-mention-list li:last-child{border-bottom:0}.aioseo-editor .ql-mention-list-container .ql-mention-list li.selected,.aioseo-editor .ql-mention-list-container .ql-mention-list li:hover{color:#005ae0;background-color:#f2f7fd}.aioseo-editor .ql-mention-list-container .ql-mention-list li.selected .aioseo-tag-description,.aioseo-editor .ql-mention-list-container .ql-mention-list li:hover .aioseo-tag-description{color:initial}.aioseo-editor .ql-mention-list-container .ql-mention-list li .aioseo-tag-item{display:flex}.aioseo-editor .ql-mention-list-container .ql-mention-list li .aioseo-tag-item>div:first-child{margin-right:10px}.aioseo-editor .ql-mention-list-container .ql-mention-list li .aioseo-tag-item .aioseo-tag-title{font-weight:600}.aioseo-editor .ql-mention-list-container .ql-mention-list li svg.aioseo-plus{width:10px;height:10px;color:#005ae0}.aioseo-editor .ql-mention-list-container .ql-mention-list li.aioseo-tag-no-match{cursor:default;padding:12px;font-size:16px;font-weight:600}.aioseo-editor .ql-mention-list-container .ql-mention-list li.aioseo-tag-no-match.highlight,.aioseo-editor .ql-mention-list-container .ql-mention-list li.aioseo-tag-no-match:hover{color:initial;background-color:transparent}.aioseo-editor .ql-toolbar{display:none}.aioseo-editor .ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.aioseo-editor .ql-snow .ql-hidden{display:none}.aioseo-editor .ql-container.ql-snow{border:none}.aioseo-editor .ql-container p{font-size:16px;margin:0;line-height:25px}.aioseo-highlight-toggle{border:1px solid #e8e8eb;border-radius:3px;min-height:48px;display:flex;align-items:center;padding:5px 10px;cursor:pointer}.aioseo-highlight-toggle>*{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.aioseo-highlight-toggle.active{border-color:#005ae0;box-shadow:0 5px 10px rgba(0,90,224,.1)}.aioseo-highlight-toggle.medium{min-height:40px}.aioseo-highlight-toggle .icon{display:flex;align-items:center;margin-right:5px}.aioseo-input{position:relative;width:100%}.aioseo-input.file,.aioseo-input.file input[type=file]{position:absolute;top:0;right:0;left:0;bottom:0;margin:0;padding:0}.aioseo-input.file input[type=file]{cursor:pointer;opacity:0}.aioseo-input.file input[type=file]::-webkit-file-upload-button{visibility:hidden}.aioseo-input.file input[type=file]:focus{box-shadow:none}.aioseo-input input{height:48px;width:100%;background-color:#fff;border:1px solid #d0d1d7;border-radius:3px;padding:15px;font-size:18px;position:relative;overflow:hidden}.aioseo-input input:disabled{background:#f9f9fa}.aioseo-input input:focus{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-input input::-moz-placeholder{color:#8c8f9a}.aioseo-input input:-ms-input-placeholder{color:#8c8f9a}.aioseo-input input::placeholder{color:#8c8f9a}.aioseo-input input.prepend{padding-left:50px}.aioseo-input input.append{padding-right:50px}.aioseo-input input.small{height:30px;padding:10px;font-size:14px}.aioseo-input input.small.prepend{padding-left:30px}.aioseo-input input.small.append{padding-right:30px}.aioseo-input input.medium{height:40px;padding:12px;font-size:16px}.aioseo-input input.medium.prepend{padding-left:35px}.aioseo-input input.medium.append{padding-right:35px}.aioseo-input.aioseo-active input{border-color:#00aa63}.aioseo-input.aioseo-active .append-icon,.aioseo-input.aioseo-active .prepend-icon{color:#00aa63}.aioseo-input.aioseo-error input{border-color:#df2a4a}.aioseo-input.aioseo-error .append-icon,.aioseo-input.aioseo-error .prepend-icon{color:#df2a4a}.aioseo-input .prepend-icon{position:absolute;top:0;left:10px;width:30px;height:100%;color:#d0d1d7;display:flex;align-items:center;z-index:1}.aioseo-input .prepend-icon svg{width:30px;height:30px}.aioseo-input .prepend-icon.small{width:20px}.aioseo-input .prepend-icon.small svg{width:10px;height:10px}.aioseo-input .prepend-icon.medium{width:15px}.aioseo-input .prepend-icon.medium svg{width:15px;height:15px}.aioseo-input .append-icon{position:absolute;top:0;right:10px;width:30px;height:100%;color:#d0d1d7;display:flex;align-items:center;z-index:1}.aioseo-input .append-icon svg{width:30px;height:30px}.aioseo-input .append-icon.small{width:10px;height:10px}.aioseo-input .append-icon.medium{width:15px;height:15px}.aioseo-phone-number{max-width:600px}.aioseo-phone-number label{display:none}.aioseo-phone-number .maz-input__input{height:40px;min-height:40px;padding-top:0!important;border:1px solid #d0d1d7}.aioseo-phone-number .maz-input__input:focus{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-phone-number .country-selector{flex:0 0 140px;width:140px;min-width:140px;max-width:140px}.aioseo-phone-number .country-selector:hover{z-index:1}.aioseo-phone-number .country-selector>div.maz-base-component.maz-input.has-value.has-1-right-icon.maz-input--primary>input{padding-left:50px!important}.aioseo-phone-number .country-selector .maz-input.is-focused{border-color:#005ae0}.aioseo-phone-number .country-selector .maz-select__options-list__item.selected.keyboard-selected{background-color:#005ae0}.aioseo-phone-number .maz-phone-number-input__country-flag{left:20px;bottom:12px}.aioseo-phone-number .maz-select__options-list input{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-phone-number .maz-input__input{border-radius:3px}.aioseo-phone-number .input-phone-number,.aioseo-phone-number .input-phone-number:focus{z-index:2}.aioseo-phone-number.invalidNumber div.maz-flex-1>div>input{border-color:red}.aioseo-phone-number.invalidNumber div.maz-flex-1>div>input:focus{border-color:#df2a4a;box-shadow:0 0 0 1px #df2a4a}.aioseo-phone-number.validNumber div.maz-flex-1>div>input:focus{border-color:#00aa63;box-shadow:0 0 0 1px #00aa63}.aioseo-radio{display:inline-flex;align-items:center}.aioseo-radio .form-radio-wrapper{margin-right:10px;display:flex}.aioseo-radio.medium .form-radio{width:20px;height:20px}.aioseo-radio.medium .form-radio .fancy-radio svg{width:12px;height:12px}.aioseo-radio.medium.type-1 .form-radio span:before{height:18px;width:18px;line-height:20px}.aioseo-radio.medium.type-2 .form-radio span:before{height:16px;width:16px;line-height:20px}.aioseo-radio.medium.type-2 .form-radio span:after{height:6px;width:6px;left:6px;bottom:6px}.aioseo-radio .form-radio{position:relative;display:inline-block;width:28px;height:28px;color:#fff;vertical-align:bottom;text-align:center}.aioseo-radio .form-radio input{opacity:0}.aioseo-radio .form-radio input:checked+.fancy-radio{background:#005ae0;border-color:#005ae0}.aioseo-radio .form-radio input:checked+.fancy-radio:before{background:transparent}.aioseo-radio .form-radio input:checked+.fancy-radio:after{display:block}.aioseo-radio .form-radio input:disabled+.fancy-radio{cursor:default}.aioseo-radio .form-radio input:focus+.fancy-radio{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-radio .form-radio .fancy-radio{border-radius:50%}.aioseo-radio .form-radio .fancy-radio svg{color:#fff;width:16px;height:16px}.aioseo-radio .form-radio span{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;transition:.2s;border-radius:50%;display:flex;align-items:center;justify-content:center}.aioseo-radio .form-radio span:before{position:absolute;content:"";height:26px;width:26px;left:1px;bottom:1px;transition:.2s;font-size:18px;line-height:28px;border-radius:50%}.aioseo-radio.type-1 .form-radio span,.aioseo-radio.type-1 .form-radio span:before{background-color:#f3f4f5}.aioseo-radio.type-2 .form-radio span{border:1px solid #d0d1d7;background-color:#fff}.aioseo-radio.type-2 .form-radio span:before{background-color:#fff}.aioseo-radio.type-2 .form-radio span:after{display:none;position:absolute;content:"";height:10px;width:10px;left:8px;bottom:8px;background-color:#fff;transition:.2s;border-radius:50%}.aioseo-radio.disabled{cursor:default}.aioseo-radio.disabled.type-2 .form-radio input:checked+.fancy-radio{background-color:#e8e8eb;border-color:#d0d1d7}.aioseo-radio.disabled.type-2 .form-radio span,.aioseo-radio.disabled.type-2 .form-radio span:before{background-color:#e8e8eb}.aioseo-radio.disabled.type-2 .form-radio span:after{background-color:#8c8f9a}.aioseo-radio-toggle{display:flex;align-items:center;height:40px}.aioseo-radio-toggle div{height:100%}.aioseo-radio-toggle.inline{display:inline-flex}.aioseo-radio-toggle div:first-child{overflow:hidden;border-radius:3px 0 0 3px}.aioseo-radio-toggle div:first-child label{border-radius:3px 0 0 3px}.aioseo-radio-toggle div:last-child{overflow:hidden;border-radius:0 3px 3px 0}.aioseo-radio-toggle div:last-child label{border-radius:0 3px 3px 0}.aioseo-radio-toggle input{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.aioseo-radio-toggle input:checked+label{background-color:#005ae0;color:#fff}.aioseo-radio-toggle input:checked+label.dark{background-color:#434960;color:#fff}.aioseo-radio-toggle label{height:100%;background-color:#e8e8eb;color:#141b38;font-size:14px;line-height:1;display:flex;align-items:center;justify-content:center;flex-direction:column;transition:all .1s ease-in-out;position:relative;padding:11px 20px;font-weight:600}.aioseo-radio-toggle label.disabled{cursor:default;pointer-events:none;opacity:.5}.aioseo-radio-toggle label:hover{background-color:#dadadf;cursor:pointer}.aioseo-radio-toggle label p{position:absolute;bottom:15px;margin:0}.aioseo-radio-toggle.circle label{background:#fff;color:#8c8f9a}.aioseo-radio-toggle.circle input+label{border-radius:50%;width:36px;height:36px;padding:8px}.aioseo-radio-toggle.circle input:checked+label{background:#e8e8eb;color:#2c324c}.aioseo-select{height:48px}.aioseo-select.multiselect--disabled .multiselect__select{background:none}.aioseo-select .multiselect__select{display:flex;align-items:center;justify-content:center;min-height:46px}.aioseo-select .multiselect__select:before{display:none}.aioseo-select .multiselect__select svg.aioseo-caret{color:#141b38;width:18px;height:18px;transform:rotate(180deg);transition:transform .3s}.aioseo-select .multiselect__tags{height:100%;border:1px solid #d0d1d7;border-radius:3px;display:flex;justify-content:center;flex-direction:column;padding:16px 40px 16px 16px}.aioseo-select .multiselect__tags .multiselect__spinner{height:calc(100% - 2px);border:2px solid transparent}.aioseo-select .multiselect__tags .multiselect__spinner:after,.aioseo-select .multiselect__tags .multiselect__spinner:before{border-top-color:#434960}.aioseo-select .multiselect__tags .multiselect__single{display:inline-flex;margin:0;padding:0;color:#141b38;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.aioseo-select .multiselect__tags .multiselect__placeholder{color:#8c8f9a;font-size:16px;line-height:20px;margin:0;padding:0}.aioseo-select .multiselect__tags .multiselect__input{padding:0;margin:0 10px 0 0;border-radius:0;border:none;color:#141b38;min-height:auto;line-height:20px}.aioseo-select .multiselect__tags .multiselect__input:focus{outline:0;box-shadow:none;border:none}.aioseo-select .multiselect__tags .multiselect__input::-moz-placeholder{color:#8c8f9a}.aioseo-select .multiselect__tags .multiselect__input:-ms-input-placeholder{color:#8c8f9a}.aioseo-select .multiselect__tags .multiselect__input::placeholder{color:#8c8f9a}.aioseo-select .multiselect__tags .multiselect__tags-wrap{display:flex;align-items:center;flex-wrap:wrap}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag{padding:0;display:inline-flex;align-items:center;font-size:14px;font-weight:600;color:#434960;margin:0 3px 0 0;height:24px;background-color:#f3f4f5;flex-shrink:0}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-value{padding:0 5px 0 10px}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove{padding:0 10px;height:100%;cursor:pointer;background-color:#f3f4f5;display:flex;align-items:center}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove:hover{background-color:#434960;color:#fff}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove:hover svg.aioseo-close{color:#fff}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove svg.aioseo-close{color:#434960;width:10px;height:10px}.aioseo-select.multiselect--active .multiselect__tags-wrap{margin-bottom:7px}.aioseo-select.small{height:30px}.aioseo-select.small .multiselect__tags{padding:10px 40px 10px 10px}.aioseo-select.small .multiselect__select{min-height:28px}.aioseo-select.medium{height:40px}.aioseo-select.medium .multiselect__tags{padding:7px 40px 7px 7px}.aioseo-select.medium .multiselect__select{min-height:38px}.aioseo-select.multiple{min-height:48px;height:auto}.aioseo-select.multiple.small{min-height:30px}.aioseo-select.multiple.medium{min-height:40px}.aioseo-select .multiselect__content-wrapper{border:1px solid #d0d1d7;border-top:none;border-bottom-left-radius:3px;border-bottom-right-radius:3px;z-index:50;-webkit-overflow-scrolling:touch}.aioseo-select .multiselect__content-wrapper li.multiselect__element{margin:0;border-bottom:1px solid #e8e8eb}.aioseo-select .multiselect__content-wrapper li.multiselect__element.last{border-bottom:none}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option{color:#141b38;font-weight:700;font-size:16px}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--highlight{background-color:#f2f7fd}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--highlight:after{background-color:#005ae0;color:#fff}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--selected{background-color:#f2f7fd}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--disabled{font-weight:400;background-color:#fff!important;color:#8c8f9a}.aioseo-textarea-autosize{width:100%;background-color:#fff;border:1px solid #d0d1d7;border-radius:4px;font-size:16px;padding:12px}.aioseo-toggle{display:inline-flex}.aioseo-toggle:active,.aioseo-toggle:focus{outline:2px solid transparent}.aioseo-toggle.disabled{pointer-events:none}.aioseo-toggle.disabled .toggle-content{opacity:.5}.aioseo-toggle .toggle-content{position:relative;display:inline-block;width:36px;height:20px;margin-right:10px}.aioseo-toggle .toggle-content input{display:none}.aioseo-toggle .toggle-content input:checked+.toggle-switch{border:1px solid #005ae0;background-color:#005ae0}.aioseo-toggle .toggle-content input:checked+.toggle-switch:focus{outline:2px solid transparent}.aioseo-toggle .toggle-content input:checked+.toggle-switch:before{background-color:#fff;transform:translateX(15px)}.aioseo-toggle .toggle-content input:focus+.toggle-switch{box-shadow:0 0 1px #005ae0;outline:2px solid transparent}.aioseo-toggle .toggle-content .toggle-switch{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#fff;border:1px solid #d0d1d7;border-radius:15px;transition:.2s}.aioseo-toggle .toggle-content .toggle-switch:before{position:absolute;content:"";height:14px;width:14px;left:3px;bottom:2px;background-color:#d0d1d7;border-radius:50%;transition:.2s}.aioseo-add-template-tag{border-radius:3px;padding:5px 10px;color:#141b38;font-size:14px;border:1px solid #e8e8eb;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-weight:600}.aioseo-add-template-tag:hover{background-color:#f3f4f5}.aioseo-add-template-tag svg.aioseo-plus{width:10px;height:10px;color:#005ae0}.aioseo-additional-pages .additional-pages-table{border:1px solid #d0d1d7;border-radius:3px;margin-bottom:20px}.aioseo-additional-pages .additional-pages-table .page-priority{max-width:110px}.aioseo-additional-pages .additional-pages-table .page-frequency{max-width:166px}.aioseo-additional-pages .additional-pages-table .page-last-modified{max-width:155px}.aioseo-additional-pages .additional-pages-table .page-actions{max-width:20px}.aioseo-additional-pages .additional-pages-table .page-actions .aioseo-tooltip{display:inline-block;margin:0}.aioseo-additional-pages .additional-pages-table .pages-header{height:50px;display:flex;font-size:14px;padding:0 30px;align-items:center;border-bottom:1px solid #d0d1d7}.aioseo-additional-pages .additional-pages-table .pages-header>div{flex:1 0 auto}.aioseo-additional-pages .additional-pages-table .pages-rows{font-size:14px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row{background-color:#fff;height:70px;display:flex;align-items:center;padding:0 30px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row:last-of-type{border-radius:0 0 3px 3px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row.even{background-color:#f9f9fa}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row>div{flex:1 0 auto;padding-right:30px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row>div:last-child{padding-right:0}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row .page-actions svg.aioseo-trash{width:20px;height:20px;color:#8c8f9a;cursor:pointer;transition:color .1s ease}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row .page-actions svg.aioseo-trash:hover{color:#df2a4a}.aioseo-additional-pages svg.aioseo-circle-plus{width:14px;height:14px;margin-right:10px}.aioseo-alert{position:relative;border-radius:3px;padding:24px;font-size:16px;color:#141b38}.aioseo-alert .aioseo-alert-close{cursor:pointer;position:absolute;top:-9px;right:-9px;width:18px;height:18px;border-radius:50%;padding:5px;display:inline-flex;justify-content:center;align-content:center}.aioseo-alert .aioseo-alert-close svg{width:100%;height:100%}.aioseo-alert.blue{border:1px solid #005ae0;background-color:#f2f7fd}.aioseo-alert.blue .aioseo-alert-close{background-color:#005ae0;color:#fff}.aioseo-alert.green{border:1px solid #00aa63;background-color:#f2fdf8}.aioseo-alert.green .aioseo-alert-close{background-color:#00aa63;color:#fff}.aioseo-alert.red{border:1px solid #df2a4a;background-color:#fbe9ec}.aioseo-alert.red .aioseo-alert-close{background-color:#df2a4a;color:#fff}.aioseo-alert.yellow{border:1px solid #f18200;background-color:#fcfae8}.aioseo-alert.yellow .aioseo-alert-close{background-color:#f18200;color:#fff}.aioseo-alert.no-border{border-width:0}.aioseo-alert.text-center{text-align:center}.aioseo-analyze-competitor-site-score{border:1px solid #00aa63;border-radius:3px;color:#00aa63;font-size:14px;padding:0 8px;height:24px;display:inline-flex;align-items:center;justify-content:center;margin-right:14px}.aioseo-analyze-competitor-site-score.red{color:#df2a4a;border-color:#df2a4a}.aioseo-analyze-competitor-site-score.orange{color:#f18200;border-color:#f18200}.aioseo-animated-dannie{display:flex;align-content:center;align-items:center;justify-content:center}.aioseo-animated-dannie svg{max-width:250px}.aioseo-blur{filter:blur(3px);pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.aioseo-card{color:#141b38;background-color:#fff;border:1px solid #e8e8eb;box-shadow:0 2px 5px rgba(0,0,0,.05);margin:30px 0}@media only screen and (max-width:782px){.aioseo-card{margin:20px 0}}.aioseo-card svg.aioseo-circle-question-mark{width:17px;height:17px;color:#8c8f99;transition:background-color .2s ease}.aioseo-card svg.aioseo-circle-question-mark:hover{color:#5a5c65}.aioseo-card .header{display:flex;align-items:center;height:70px;padding:0 30px;font-weight:600;font-size:18px;border-bottom:1px solid #e8e8eb}.aioseo-card .header .header-icon svg{width:24px;height:24px;margin-right:16px}.aioseo-card .header .text{flex:1 0 auto;display:flex;align-items:center}.aioseo-card .header .text svg.aioseo-circle-question-mark{cursor:pointer;width:17px;height:17px}.aioseo-card .header .text .aioseo-pro-badge{margin-left:10px}.aioseo-card .header .text .card-score{display:flex;flex:1;align-items:center;justify-content:flex-end;padding-right:18px;font-size:13px}.aioseo-card .header .text .card-score.green{color:#00aa63}.aioseo-card .header .text .card-score.orange{color:#f18200}.aioseo-card .header .text .card-score.red{color:#df2a4a}.aioseo-card .header .text .card-score svg{margin-right:7px}.aioseo-card .header svg.aioseo-caret{width:24px;height:24px;cursor:pointer;transition:transform .3s}.aioseo-card .header svg.aioseo-caret.rotated{transform:rotate(180deg)}.aioseo-card .content{padding:30px;position:relative}.aioseo-card div.aioseo-settings-row:last-child{margin-bottom:0;border-bottom:none;padding-bottom:0}.aioseo-copy-block{display:flex}.aioseo-copy-block .message{background-color:#fff;min-height:56px;display:flex;align-items:center;border:1px solid #dcdde1;border-radius:3px 0 0 3px;padding:10px 24px;font-weight:600}.aioseo-copy-block .copy-tooltip{display:flex}.aioseo-copy-block .copy{background-color:#fff;min-height:56px;display:flex;align-items:center;border:1px solid #dcdde1;border-left-width:0;border-radius:0 3px 3px 0;padding:10px 16px;font-weight:600;cursor:pointer}.aioseo-copy-block .copy:hover svg.aioseo-copy{color:#a7a7a7}.aioseo-copy-block .copy svg.aioseo-copy{width:20px;height:20px;color:#dadada}.aioseo-copy-block .copy svg.aioseo-circle-check-solid{width:20px;height:20px;color:#00aa63}.aioseo-exclude-posts{display:flex}.aioseo-exclude-posts .aioseo-select{max-width:600px;display:inline-block;margin-right:10px}.aioseo-exclude-posts .aioseo-select .multiselect__option{display:flex}.aioseo-exclude-posts .aioseo-select .multiselect__option--highlight .option-title{color:#005ae0}.aioseo-exclude-posts .option{flex:1 0 auto}.aioseo-exclude-posts .option .option-title{font-size:16px;color:#141b38}.aioseo-exclude-posts .option .option-title .search-term{font-weight:600}.aioseo-exclude-posts .option .option-details{display:flex;align-items:center;font-size:14px;color:#8c8f9a}.aioseo-exclude-posts .option .option-details span{margin-right:15px}.aioseo-exclude-posts .option-permalink{display:flex;align-items:center}.aioseo-exclude-posts .option-permalink svg.aioseo-external{width:15px;height:15px;color:#434960}.aioseo-exclude-posts .multiselect-toggle{padding:10px 13px;width:40px;position:absolute;height:36px;right:2px;top:2px;text-align:center;z-index:1}.aioseo-exclude-posts .multiselect-toggle svg.aioseo-add-plus{width:14px;height:14px;color:#000}.aioseo-facebook-preview{background-color:#f0f2f5;padding:30px;display:flex;align-items:center;justify-content:center}.aioseo-facebook-preview .facebook-post{width:100%;max-width:525px;border-radius:10px;box-shadow:0 2px 5px rgba(0,0,0,.1);background-color:#fff}.aioseo-facebook-preview .facebook-post .facebook-header{height:65px;padding:0 18px;display:flex;align-items:center}.aioseo-facebook-preview .facebook-post .facebook-header .profile-photo{overflow:hidden;width:40px;height:40px;border:1px solid #e8e8eb;border-radius:50%}.aioseo-facebook-preview .facebook-post .facebook-header .profile-photo img{height:100%;width:100%}.aioseo-facebook-preview .facebook-post .facebook-header .poster{margin-left:10px;flex:1 0 auto}.aioseo-facebook-preview .facebook-post .facebook-header .poster .poster-name{font-size:15px;color:#050505;font-weight:500}.aioseo-facebook-preview .facebook-post .facebook-header .poster .poster-date{color:#65676b;font-size:13px}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis{display:inline-flex;align-items:center}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis div{background-color:#5e666f;width:4px;height:4px;border-radius:50%;margin:0 2px}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis div:first-child{margin-left:0}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis div:last-child{margin-right:0}.aioseo-facebook-preview .facebook-post .facebook-content{display:flex;flex-direction:column}.aioseo-facebook-preview .facebook-post .facebook-content img{width:100%;height:auto}.aioseo-facebook-preview .facebook-post .facebook-content.vertical{flex-direction:row}.aioseo-facebook-preview .facebook-post .facebook-content.vertical img{max-width:158px;max-height:158px;width:auto;height:auto}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description{flex:1;background-color:#f2f3f5;padding:9px 13px;color:#606770}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description .site-domain{font-size:13px;text-transform:uppercase;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description .site-title{color:#1d2129;font-size:17px;font-weight:600;margin:5px 0}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description .site-description{font-size:14px}.aioseo-facebook-preview .facebook-post .facebook-footer{height:24px}.aioseo-feature-card{height:100%;border:1px solid #e8e8eb;background:#fff;box-shadow:0 2px 5px rgba(0,0,0,.05);color:#141b38;display:flex;flex-direction:column}.aioseo-feature-card .feature-card-body{padding:30px 30px 20px;flex:1}.aioseo-feature-card .feature-card-body.static{padding:30px}.aioseo-feature-card .feature-card-body .feature-card-header{display:flex;align-items:center;font-size:18px;font-weight:600;margin-bottom:16px}.aioseo-feature-card .feature-card-body .feature-card-header img,.aioseo-feature-card .feature-card-body .feature-card-header svg{width:28px;height:28px;margin-right:10px}.aioseo-feature-card .feature-card-body .feature-card-description{color:#434960;font-size:15px}.aioseo-feature-card .feature-card-body .feature-card-description .learn-more{margin-top:10px}.aioseo-feature-card .feature-card-footer{padding:15px}.aioseo-feature-card .feature-card-footer:not(.upgrade-required){border:2px solid #fff;background-color:#f9f9fa;padding:12px;min-height:43px}.aioseo-feature-card .feature-card-footer .feature-card-install-activate{display:flex;align-items:center;justify-content:flex-end;height:30px;position:relative}.aioseo-feature-card .feature-card-footer .feature-card-install-activate .aioseo-loading-spinner{position:absolute;left:0}.aioseo-feature-card .feature-card-footer .feature-card-install-activate .status{font-weight:600;font-size:14px}.aioseo-feature-card .feature-card-footer .feature-card-install-activate .aioseo-toggle .toggle-content{margin-right:0;margin-left:10px}.aioseo-feature-card .feature-card-footer .feature-card-upgrade-cta{display:flex;align-items:center;justify-content:flex-end}.aioseo-feature-card .feature-card-footer.installed .feature-card-install-activate .status{color:#8c8f9a}.aioseo-setup-wizard-container{margin-top:30px;margin-bottom:50px;padding:30px;color:#fff;position:relative;background-color:#005ae0}@media only screen and (max-width:782px){.aioseo-setup-wizard-container{margin-top:20px}}.aioseo-setup-wizard-container p{color:#fff}.aioseo-setup-wizard-container .getting-started-wrapper{display:flex}.aioseo-setup-wizard-container .getting-started-wrapper .video{flex:0 0 533px;margin:20px 20px 0}.aioseo-setup-wizard-container .getting-started-wrapper .video .wrapper{padding-bottom:56.25%;margin-bottom:-60px;position:relative;height:0}.aioseo-setup-wizard-container .getting-started-wrapper .video .wrapper iframe{width:100%;height:100%;position:absolute;top:0;left:0}@media only screen and (max-width:1350px){.aioseo-setup-wizard-container .getting-started-wrapper .video{flex:0 0 593px;margin:20px;align-self:center}.aioseo-setup-wizard-container .getting-started-wrapper .video .wrapper{margin-bottom:0}.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions .aioseo-col{flex-basis:100%;max-width:100%;justify-content:center}}@media only screen and (max-width:1300px){.aioseo-setup-wizard-container .getting-started-wrapper{flex-direction:row;flex-wrap:wrap}.aioseo-setup-wizard-container .getting-started-wrapper .video{margin:20px 0 -60px}.aioseo-setup-wizard-container .getting-started-wrapper .text,.aioseo-setup-wizard-container .getting-started-wrapper .video{flex-basis:100%;width:100%}.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions{justify-content:center}.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions .aioseo-col{flex-basis:inherit;max-width:inherit;justify-content:center}}@media only screen and (max-width:782px){.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions .aioseo-col{flex-basis:100%;max-width:100%;justify-content:center}}.aioseo-setup-wizard-container .aioseo-row{position:relative;z-index:1}.aioseo-setup-wizard-container .wizard-actions .aioseo-col{display:flex;align-items:center}.aioseo-setup-wizard-container .wizard-actions .aioseo-button svg{width:16px;height:16px;margin-right:10px}.aioseo-setup-wizard-container .setup-wizard-bg{width:100%;height:100%;overflow:hidden;z-index:0;position:absolute;top:0;left:0}.aioseo-setup-wizard-container .setup-wizard-bg svg.aioseo-setup-wizard-bg,.aioseo-setup-wizard-container .setup-wizard-bg svg.aioseo-setup-wizard-bg rect{width:auto;height:100%}.aioseo-setup-wizard-container .close-wizard{color:#fff;width:20px;height:20px;position:absolute;right:20px;top:20px;z-index:1;display:flex;align-items:center;justify-content:center}.aioseo-setup-wizard-container .close-wizard:hover{color:#ccc}.aioseo-setup-wizard-container .close-wizard svg.aioseo-close{width:12px;height:12px;cursor:pointer;color:#fff}.aioseo-setup-wizard-container .close-wizard svg.aioseo-close:hover{color:#dadada}.aioseo-setup-wizard-container p.how-to-get-started{margin:0}.aioseo-setup-wizard-container p.welcome-text{line-height:1.6}.aioseo-setup-wizard-container h2{color:#fff;line-height:1.4}.aioseo-setup-wizard-container a{color:#fff}.aioseo-setup-wizard-container svg.aioseo-book{width:20px;height:20px;margin:0 10px 0 0}.aioseo-setup-wizard-container .getting-started-video{padding-right:20px;margin-bottom:-60px;position:relative;height:0;padding-bottom:56.25%}.aioseo-setup-wizard-container .getting-started-video iframe{width:100%;height:100%;position:absolute;top:0;left:0}.aioseo-google-search-preview{padding:32px 30px;border:1px solid #e8e8eb}.aioseo-google-search-preview .domain{font-size:14px;line-height:1.3;color:#3c4043;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aioseo-google-search-preview .site-title{font-size:20px;line-height:1.3;color:#1a0dab;margin:3px 0}.aioseo-google-search-preview .meta-description{max-width:600px;font-size:14px;line-height:1.4;color:#52565a}.edit-post-sidebar .domain{font-size:13px}.edit-post-sidebar .site-title{font-size:16px}.edit-post-sidebar .meta-description{font-size:12px}.aioseo-modal-content .domain,.aioseo-modal-content .meta-description{font-size:14px}.aioseo-modal-content .site-title{font-size:20px}html:not([data-scroll="0"]) .aioseo-header{box-shadow:0 2px 5px rgba(0,0,0,.05);transition:box-shadow .6s}.aioseo-header{position:fixed;z-index:1051;top:0;right:0;left:0;background-color:#fff;height:72px;color:#141b38}.aioseo-header .mascot{width:35px;height:auto;margin-right:10px}.aioseo-header .aioseo-header-content{padding:0;display:flex;height:72px;align-items:center}.aioseo-header .aioseo-header-content svg.aioseo-logo{height:26px;margin-right:10px}.aioseo-header .aioseo-header-content .spacer{display:inline-flex;width:26.25px;height:0;border:1px solid #d0d1d7;transform:rotate(-72.26deg)}.aioseo-header .aioseo-header-content .page-name{display:inline-flex;margin-left:10px;font-size:18px;font-weight:400;flex:1 0 auto}.aioseo-header .aioseo-header-content .header-actions{display:flex}.aioseo-header .aioseo-header-content .header-actions .round{position:relative;background-color:#f3f4f5;border-radius:50%;width:40px;height:40px;display:flex;align-items:center;justify-content:center;margin-left:10px;cursor:pointer;transition:background-color .2s ease}.aioseo-header .aioseo-header-content .header-actions .round svg{width:20px;height:20px}.aioseo-header .aioseo-header-content .header-actions .round:hover{background-color:#e5e7e9}.aioseo-header .aioseo-header-content .header-actions .number{position:absolute;background-color:#df2a4a;width:16px;height:16px;font-weight:600;font-size:10px;color:#fff;top:-8px;left:50%;transform:translateX(-50%);margin:0;-webkit-animation:bounce 2s 5;animation:bounce 2s 5}.aioseo-header .aioseo-header-content .header-actions .number:hover{background-color:#df2a4a}@-webkit-keyframes bounce{0%,25%,50%,75%,to{transform:translateX(-50%) translateY(0)}40%{transform:translateX(-50%) translateY(-8px)}60%{transform:translateX(-50%) translateY(-4px)}}@keyframes bounce{0%,25%,50%,75%,to{transform:translateX(-50%) translateY(0)}40%{transform:translateX(-50%) translateY(-8px)}60%{transform:translateX(-50%) translateY(-4px)}}body.modal-open{overflow:hidden}.aioseo-help{display:block;position:fixed;top:0;bottom:0;left:0;right:0;height:100%;width:100vw;background-color:#fff;color:#8c8f9a;opacity:0;max-height:100vh;overflow-y:auto;transition:opacity .3s ease-in 0s;z-index:-999}.aioseo-help.visible{opacity:1;z-index:100000}.aioseo-help .aioseo-help-header{background:#fff;width:100%;height:60px;position:fixed;z-index:1;top:0;left:0}.aioseo-help .aioseo-help-docs{margin-bottom:25px;display:none}.aioseo-help .aioseo-help-docs li{padding:0 0 14px 4px;margin:0}.aioseo-help .aioseo-help-docs .aioseo-help-docs-viewall{margin:10px 0 0}.aioseo-help .aioseo-help-docs .aioseo-help-additional-docs{display:none}.aioseo-help .aioseo-help-docs .aioseo-help-additional-docs.opened{display:block}.aioseo-help .aioseo-help-docs .icon .aioseo-description{width:20px;margin-top:0;position:relative;top:5px;left:-5px;color:#8c8f9a}.aioseo-help .help-content{background-color:#fff;width:100%;max-width:740px;margin:0 auto 50px;padding:0 20px;box-sizing:border-box;z-index:1}.aioseo-help .help-content .aioseo-help-category{border-top:1px solid #e8e8eb;margin:0}.aioseo-help .help-content .aioseo-help-category:last-child{border-bottom:1px solid #e8e8eb}.aioseo-help .help-content .aioseo-help-category header{display:block;position:relative;cursor:pointer;width:100%;height:68px}.aioseo-help .help-content .aioseo-help-category header .title{display:block;font-size:16px;color:#8c8f9a;font-weight:600;padding:23px 11px 23px 30px}.aioseo-help .help-content .aioseo-help-category .folder-open{position:absolute;top:24px;width:20px;height:20px;color:#8c8f9a}.aioseo-help .help-content .aioseo-help-category .dashicons-arrow-right-alt2{position:absolute;top:20px;right:0;transition:transform .3s ease-out}.aioseo-help .help-content .aioseo-help-category.opened .aioseo-help-docs{display:block}.aioseo-help .help-content .aioseo-help-category.opened .dashicons-arrow-right-alt2{transform:rotate(90deg)}.aioseo-help .help-content #aioseo-help-search{position:relative;background-color:#fff;text-align:center;top:0;padding:74px 0 50px}.aioseo-help .help-content #aioseo-help-result .aioseo-help-docs{display:block}.aioseo-help .help-content #aioseo-help-footer{display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:center;margin:50px 0 0}@media screen and (max-width:750px){.aioseo-help .help-content #aioseo-help-footer{display:block}}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block{box-sizing:border-box;max-width:325px;border:1px solid #8c8f9a;border-radius:6px;text-align:center}@media screen and (max-width:750px){.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block{max-width:100%}}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block:first-child{margin-right:20px}@media screen and (max-width:750px){.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block:first-child{margin:0 0 20px}}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a{display:block;padding:25px;text-decoration:none;color:#8c8f9a}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a h3{color:#8c8f9a}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a span{font-size:16px;color:#005ae0;text-decoration:underline}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a:hover span{text-decoration:none}.aioseo-help .help-content #aioseo-help-footer .aioseo-description,.aioseo-help .help-content #aioseo-help-footer .aioseo-support{width:48px;margin-top:0;color:#8c8f9a}#aioseo-help-logo{position:fixed;width:132px;height:26px;top:20px;left:20px;z-index:2}#aioseo-help-close{position:fixed;width:20px;height:20px;top:30px;right:30px;cursor:pointer;opacity:.7;transition:all .05s;z-index:2}@media screen and (max-width:750px){#aioseo-help-close{top:20px;right:20px}}.aioseo-html-tags-editor .add-tags{display:flex;align-items:center;margin:20px 0}.aioseo-html-tags-editor .add-tags div{margin-right:10px}.aioseo-html-tags-editor .add-tags a{font-size:14px}.aioseo-html-tags-editor .add-tags a.no-underline{padding-left:10px}.aioseo-loading-spinner{width:35px;height:35px;position:absolute}.aioseo-loading-spinner .double-bounce1,.aioseo-loading-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#fff;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 1.3s ease-in-out infinite;animation:sk-bounce 1.3s ease-in-out infinite}.aioseo-loading-spinner.dark .double-bounce1,.aioseo-loading-spinner.dark .double-bounce2{background-color:#8c8f9a}.aioseo-loading-spinner .double-bounce2{-webkit-animation-delay:-.65s;animation-delay:-.65s}@-webkit-keyframes sk-bounce{0%,to{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,to{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}body.vue-build{margin:0}body.vue-build .aioseo-app{min-height:calc(100vh - 88px)}body.vue-build .aioseo-app .aioseo-main{padding-bottom:30px}body.aioseo-setup-wizard{margin:0;padding:0}body.aioseo-setup-wizard .aioseo-app{min-height:100vh;width:100%}body[class*=page_aioseo] .aioseo-header,body[class*=page_aioseo] .aioseo-notifications .overlay{left:160px}body[class*=page_aioseo].folded .aioseo-header,body[class*=page_aioseo].folded .aioseo-notifications .overlay{left:36px}body[class*=page_aioseo] #wpcontent{padding:0;background-color:#f3f4f5}body[class*=page_aioseo] .update-nag{display:none}body[class*=page_aioseo].admin-bar .aioseo-app{min-height:calc(100vh - 185px)}body[class*=page_aioseo].admin-bar.aioseo-has-bar .aioseo-app{min-height:calc(100vh - 225px)}body[class*=page_aioseo].admin-bar .aioseo-header,body[class*=page_aioseo].admin-bar .aioseo-notifications .notification-menu,body[class*=page_aioseo].admin-bar .aioseo-notifications .overlay{top:32px}body[class*=page_aioseo] .aioseo-app{min-height:calc(100vh - 153px)}body[class*=page_aioseo].aioseo-has-bar .aioseo-app{min-height:calc(100vh - 193px)}body[class*=page_aioseo].aioseo-has-bar .aioseo-header{height:112px}@media screen and (max-width:782px){body[class*=page_aioseo].aioseo-has-bar .aioseo-header{height:132px}}@media screen and (max-width:960px){body[class*=page_aioseo].auto-fold .aioseo-header,body[class*=page_aioseo].auto-fold .aioseo-notifications .overlay{left:36px}}@media screen and (max-width:782px){body[class*=page_aioseo] #wpbody-content{padding-bottom:20px}body[class*=page_aioseo].admin-bar .aioseo-app{min-height:calc(100vh - 199px)}body[class*=page_aioseo].admin-bar .aioseo-header,body[class*=page_aioseo].admin-bar .aioseo-notifications .notification-menu,body[class*=page_aioseo].admin-bar .aioseo-notifications .overlay{top:46px}body[class*=page_aioseo] .aioseo-header,body[class*=page_aioseo] .aioseo-notifications .overlay,body[class*=page_aioseo].auto-fold .aioseo-header,body[class*=page_aioseo].auto-fold .aioseo-notifications .overlay{left:0}}@media screen and (max-width:600px){body[class*=page_aioseo].admin-bar .aioseo-header,body[class*=page_aioseo].admin-bar .aioseo-notifications .menu,body[class*=page_aioseo].admin-bar .aioseo-notifications .overlay{position:absolute;top:46px}}body.aioseo-has-bar .aioseo-app .aioseo-main>.aioseo-container{margin-top:128px}@media screen and (max-width:782px){body.aioseo-has-bar .aioseo-app .aioseo-main>.aioseo-container{margin-top:148px}}.aioseo-app{box-sizing:border-box;background-color:#f3f4f5}.aioseo-app .route-fade-enter-active,.aioseo-app .route-fade-leave-active{transition:all .2s}.aioseo-app .route-fade-enter,.aioseo-app .route-fade-leave-active{opacity:0}.aioseo-app .route-fade-enter{transform:translateX(30px)}.aioseo-app .route-fade-leave-active{transform:translateX(-30px)}.aioseo-app *,.aioseo-app :after,.aioseo-app :before{box-sizing:inherit}.aioseo-app * :not(.aioseo-button):not(.aioseo-input),.aioseo-app :after :not(.aioseo-button):not(.aioseo-input),.aioseo-app :before :not(.aioseo-button):not(.aioseo-input){line-height:1.4}.aioseo-app p{font-size:16px}.aioseo-app a:not(.aioseo-button){color:#005ae0}.aioseo-app a:not(.aioseo-button).text-white{color:#fff}.aioseo-app a:not(.aioseo-button).no-underline,.aioseo-app a:not(.aioseo-button):hover{text-decoration:none}.aioseo-app h2{font-size:32px;margin:0}.aioseo-app .aioseo-main{height:100%}.aioseo-app .aioseo-main>.aioseo-container{margin-top:88px}.aioseo-app .aioseo-main .save-changes{display:flex;justify-content:flex-end}.aioseo-app .d-flex{display:flex}.aioseo-app .aioseo-section-description{font-size:16px;color:#141b38;line-height:1.8;padding-bottom:30px}.aioseo-app .aioseo-description-text{font-size:14px;line-height:1.8;color:#141b38}.aioseo-app .aioseo-description-text.aioseo-error{color:#df2a4a}.aioseo-app .aioseo-description{font-size:14px;line-height:1.8;margin:8px 0 0;color:#141b38}.aioseo-app .aioseo-description.no-margin{margin:0}.aioseo-app .aioseo-description.aioseo-error{color:#df2a4a}.aioseo-app .max-recommended-count{color:#434960;text-align:right;margin-top:10px;font-size:14px}.aioseo-app .max-recommended-count strong.error{color:#df2a4a}.aioseo-app .popper{text-align:left;font-size:12px;padding:20px;background-color:#fff;border:none;border-radius:3px;box-shadow:0 3px 4.8px 0 rgba(32,71,102,.27);z-index:9999;max-width:350px;line-height:1.4}.aioseo-app .popper.action{padding:8px 12px;background-color:#141b38;color:#fff}.aioseo-app .popper.action .popper__arrow{border-top-color:#141b38}.aioseo-app .popper[x-placement^=bottom]{box-shadow:0 -2px 4.8px 0 rgba(32,71,102,.27)}.aioseo-app .popper .aioseo-description{margin:0}.aioseo-app .aioseo-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#00aa63}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#00aa63}to{background-color:#fff}}.aioseo-seo-site-score .aioseo-blur{display:flex;align-items:center}.aioseo-seo-site-score .aioseo-seo-site-score-cta{position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%);background-color:#fff;padding:24px 30px;border:1px solid #e8e8eb;box-shadow:0 2px 10px rgba(0,90,224,.2);color:#141b38;font-size:16px;font-weight:600;width:82%;max-width:500px;text-align:center}.aioseo-app .aioseo-upgrade-bar{height:40px;background-color:#00aa63;display:flex;align-items:center;justify-content:center;color:#fff;font-size:13px;padding:0 14px 0 40px}.aioseo-app .aioseo-upgrade-bar .upgrade-text{display:flex;align-items:center;flex:1;justify-content:center}.aioseo-app .aioseo-upgrade-bar strong{font-weight:600}.aioseo-app .aioseo-upgrade-bar svg.aioseo-logo-gear{width:20px;height:20px;min-width:20px;margin-right:14px}.aioseo-app .aioseo-upgrade-bar svg.aioseo-close{cursor:pointer;width:12px;height:12px}.aioseo-app .aioseo-upgrade-bar a{color:#fff;text-decoration:underline}.aioseo-app .aioseo-upgrade-bar a:hover{text-decoration:none}@media screen and (max-width:782px){.aioseo-app .aioseo-upgrade-bar{padding:0 10px;height:60px}}.field-description[data-v-2bfc1de2]{display:inline-block;margin-top:10px;font-size:14px}.aioseo-address-wrapper[data-v-403ef8f7]{display:flex;max-width:500px}.field-description[data-v-403ef8f7]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-403ef8f7]{margin-top:8px}.field-description[data-v-a0a894b8]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-a0a894b8]{margin-top:8px}.field-description[data-v-4fb4e044]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-4fb4e044]{margin-top:8px}.field-description[data-v-85733554]{display:inline-block;margin-top:10px;font-size:14px}.field-description[data-v-080c623c]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-080c623c]{margin-top:8px}.field-description[data-v-78337de7]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-78337de7]{margin-top:8px}.aioseo-general-settings .more-tooltip-text strong{color:#00aa63}.aioseo-general-settings .license-cta-box{border-radius:3px;background-color:#f2f7fd;padding:20px;max-width:630px;margin:10px 0 30px}.aioseo-general-settings .license-cta-box a{color:#00aa63}.aioseo-general-settings .license-cta-box div{font-weight:600}.aioseo-general-settings .license-cta-box span{font-size:14px;font-style:italic}.aioseo-general-settings .license-key{margin-top:10px;display:flex;max-width:560px}.aioseo-general-settings .license-key .aioseo-input{margin-right:10px}.aioseo-app .aioseo-tabs.internal{margin-bottom:0}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation{margin-top:5px}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation .md-button{height:60px}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple{padding:0 25px}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple .md-ripple-wave{display:none}.aioseo-app .aioseo-tabs.skinny .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple{padding:0 16px}.aioseo-app .md-tabs{display:flex;flex-direction:column}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation{margin-top:2px;background:transparent;display:flex;position:relative;justify-content:flex-start}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation.md-elevation-0{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button{color:#141b38;max-width:264px;min-width:72px;height:60px;margin:0;border-radius:0;font-size:15px;font-weight:500;padding:0;display:inline-block;position:relative;overflow:hidden;outline:none;background:transparent;border:0;transition:.4s cubic-bezier(.4,0,.2,1);font-family:inherit;line-height:normal;text-decoration:none;vertical-align:top;white-space:nowrap}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:before{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;opacity:0;transition:.4s cubic-bezier(.4,0,.2,1);will-change:background-color,opacity;content:" "}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple{padding:0 18px;display:flex;justify-content:center;align-items:center;width:100%;height:100%;position:relative;z-index:5;overflow:hidden;-webkit-mask-image:radial-gradient(circle,#fff 100%,#000 0);mask-image:radial-gradient(circle,#fff 100%,#000 0)}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple .md-button-content{position:static;z-index:2}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:not([disabled]){cursor:pointer}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:not([disabled]):active:before,.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:not([disabled]):hover:before{background-color:currentColor;opacity:.12}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button.md-active{color:#005ae0}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button.md-active:focus{outline:none;box-shadow:none}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-tabs-indicator{height:2px;background-color:#005ae0;bottom:-2px;position:absolute;left:0;transform:translateZ(0);will-change:left,right}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-tabs-indicator.md-tabs-indicator-left{transition:left .3s cubic-bezier(.4,0,.2,1),right .35s cubic-bezier(.4,0,.2,1)}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-tabs-indicator.md-tabs-indicator-right{transition:right .3s cubic-bezier(.4,0,.2,1),left .35s cubic-bezier(.4,0,.2,.1)}.aioseo-app .aioseo-tabs{display:flex;border-bottom:2px solid #e8e8eb;position:relative;margin-bottom:38px}.aioseo-app .aioseo-tabs .save-changes{position:absolute;right:0;bottom:10px}.aioseo-app .aioseo-tabs .tab-score{display:inline-flex;align-items:center;justify-content:flex-end;font-size:11px;font-weight:700;padding-left:12px}.aioseo-app .aioseo-tabs .tab-score.green{color:#00aa63}.aioseo-app .aioseo-tabs .tab-score.orange{color:#f18200}.aioseo-app .aioseo-tabs .tab-score.red{color:#df2a4a}.aioseo-app .aioseo-tabs .tab-score svg{display:inline;margin-right:7px}.aioseo-app .aioseo-mobile-tabs{position:relative;height:40px;margin-top:20px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.aioseo-app .aioseo-mobile-tabs .active-tab{color:#005ae0;padding-left:18px;min-height:100%;display:flex;align-items:center;cursor:pointer}.aioseo-app .aioseo-mobile-tabs .active-tab div{position:relative}.aioseo-app .aioseo-mobile-tabs .active-tab div span{height:2px;background-color:#005ae0;bottom:-7px;position:absolute;left:-18px;right:-18px;z-index:10}.aioseo-app .aioseo-mobile-tabs .active-tab svg.aioseo-caret{width:24px;height:24px;position:relative;top:6px;cursor:pointer;transition:transform .3s}.aioseo-app .aioseo-mobile-tabs .active-tab svg.aioseo-caret.rotated{transform:rotate(180deg)}.aioseo-app .aioseo-mobile-tabs .tab-dropdown{border:1px solid #e8e8eb;border-top:none}.aioseo-app .aioseo-mobile-tabs .tab-links{background:#fff;position:relative;z-index:3;padding:8px;width:100%;max-width:300px}@media screen and (max-width:782px){.aioseo-app .aioseo-mobile-tabs .tab-links{max-width:100%}}.aioseo-app .aioseo-mobile-tabs .tab-links a{padding:10px;display:block;color:#141b38;text-decoration:none}.aioseo-app .aioseo-mobile-tabs .tab-links a:hover{color:#005ae0}.md-tooltip{background-color:#141b38!important;color:#fff!important;border-radius:2px;padding:6px 12px;font-size:14px}.md-tooltip:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border:5px solid transparent;border-top-color:#141b38}.modal-mask{position:fixed;z-index:9998;top:0;left:0;width:100%;height:100%;background-color:rgba(20,27,56,.3);display:table;transition:opacity .3s ease}@media screen and (max-width:520px){.modal-mask{display:block;top:46px}}.modal-mask .modal-wrapper{display:table-cell;vertical-align:middle}@media screen and (max-width:520px){.modal-mask .modal-wrapper{display:block;height:100%}}.modal-mask .modal-wrapper .modal-container{width:100%;max-width:750px;max-height:90vh;overflow-y:hidden;overflow-x:hidden;margin:0 auto;background-color:#fff;box-shadow:0 10px 30px rgba(0,0,0,.15);transition:all .3s ease}@media screen and (max-width:520px){.modal-mask .modal-wrapper .modal-container{width:100%;max-width:100%;max-height:calc(100vh - 46px);height:100%}}.modal-mask .modal-wrapper .modal-container .modal-header{position:-webkit-sticky;position:sticky;top:0;z-index:15;padding:20px 0 0 40px;height:60px;font-size:20px;font-weight:700;line-height:1.4;border-bottom:1px solid #e8e8eb;background-color:#fff}@media screen and (max-width:520px){.modal-mask .modal-wrapper .modal-container .modal-header{padding:15px 0 0 20px}}.modal-mask .modal-wrapper .modal-container .modal-header button.close{position:absolute;right:11px;top:11px;width:24px;height:24px;background-color:#fff;border:none;display:flex;align-items:center}.modal-mask .modal-wrapper .modal-container .modal-header button.close svg.aioseo-close{cursor:pointer;width:14px;height:14px}.modal-mask .modal-wrapper .modal-container .modal-body .aioseo-post-general,.modal-mask .modal-wrapper .modal-container .modal-body .aioseo-post-social{height:calc(90vh - 120px);max-height:600px;overflow-y:auto;overflow-x:hidden}@media screen and (max-width:520px){.modal-mask .modal-wrapper .modal-container .aioseo-modal-content,.modal-mask .modal-wrapper .modal-container .aioseo-modal-content>.component-wrapper,.modal-mask .modal-wrapper .modal-container .modal-body,.modal-mask .modal-wrapper .modal-container .modal-body>div{height:100%}.modal-mask .modal-wrapper .modal-container .aioseo-modal-content>.component-wrapper{display:flex;align-items:flex-end}.modal-mask .modal-wrapper .modal-container .aioseo-post-general,.modal-mask .modal-wrapper .modal-container .aioseo-post-social{height:100%!important;max-height:100%!important;padding:20px!important}.modal-mask .modal-wrapper .modal-container .aioseo-post-general .mobile-radio-buttons,.modal-mask .modal-wrapper .modal-container .aioseo-post-social .mobile-radio-buttons{margin-bottom:0}.modal-mask .modal-wrapper .modal-container .aioseo-add-template-tag{display:none}.modal-mask .modal-wrapper .modal-container .tab-facebook .aioseo-settings-row:last-of-type,.modal-mask .modal-wrapper .modal-container .tab-twitter .aioseo-settings-row:last-of-type{margin-bottom:64px!important;padding-bottom:32px!important}}.modal-enter,.modal-leave-active{opacity:0}.modal-enter .modal-container,.modal-leave-active .modal-container{transform:scale(1.1)}.aioseo-notification{margin-bottom:20px}.aioseo-notification>div{display:flex;align-items:flex-start;padding-bottom:10px;border-bottom:1px solid #e8e8eb}.aioseo-notification>div .icon{margin-right:20px}.aioseo-notification>div .icon svg{width:20px;height:20px;color:#00aa63}.aioseo-notification>div .icon svg.warning{color:#f18200}.aioseo-notification>div .icon svg.info{color:#005ae0}.aioseo-notification>div .icon svg.success{color:#00aa63}.aioseo-notification>div .icon svg.error{color:#df2a4a}.aioseo-notification>div .body{margin-right:20px;flex:1}.aioseo-notification>div .body .title{font-size:16px;font-weight:600;color:#141b38;margin-bottom:7px;display:flex;align-items:center}.aioseo-notification>div .body .title div:first-child{flex:1;margin-right:5px;line-height:1.4}.aioseo-notification>div .body .title .date{font-weight:400;color:#8c8f9a;font-size:12px}.aioseo-notification>div .body .notification-content{margin-bottom:10px;max-width:400px}.aioseo-notification>div .body .actions{flex-wrap:wrap;display:flex;align-items:center}.aioseo-notification>div .body .actions>*{margin-bottom:10px}.aioseo-notification>div .body .actions .aioseo-button{margin-right:20px}.aioseo-notification>div .body .actions .dismiss{color:#8c8f9a;font-size:14px}.aioseo-notification-cards .aioseo-notification:last-child>div{border-bottom:none;margin-bottom:none}.aioseo-notification-cards .no-notifications{display:flex;align-items:center;flex-direction:column;padding-top:100px;font-size:16px;color:#8c8f9a}.aioseo-notification-cards .no-notifications img{width:30%;height:auto}.aioseo-notification-cards .no-notifications .great-scott{margin:20px 0 10px;font-size:24px;font-weight:600;color:#434960}.aioseo-notification-cards .no-notifications .no-new-notifications{margin-bottom:10px}body.aioseo-show-notifications .aioseo-main{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.aioseo-notifications a.dismiss{color:#8c8f9a;font-size:14px}.aioseo-notifications .notification-menu{height:100%;width:100%;max-width:570px;position:fixed;z-index:1053;top:0;right:0;bottom:0;background-color:#fff;overflow-x:hidden;transition:.5s}.aioseo-notifications .notification-menu .notification-header{height:70px;display:flex;align-items:center;padding:0 30px;color:#fff;background-color:#005ae0}.aioseo-notifications .notification-menu .notification-header .new-notifications{font-size:18px;font-weight:600}.aioseo-notifications .notification-menu .notification-header .dismissed-notifications{margin-left:25px;flex:1 1 auto}.aioseo-notifications .notification-menu .notification-header .dismissed-notifications a{font-size:14px;color:#fff}.aioseo-notifications .notification-menu .notification-header svg.aioseo-close{width:14px;height:14px;cursor:pointer}.aioseo-notifications .notification-menu .notification-header svg.aioseo-close:hover{color:#ccc}.aioseo-notifications .notification-menu .notification-cards{padding:30px;height:calc(100% - 192px);overflow:auto}.aioseo-notifications .notification-menu .notification-footer{height:90px;padding:30px;display:flex;align-items:center}.aioseo-notifications .notification-menu .notification-footer div.pagination{flex:1;display:flex;align-items:center}.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number{font-size:13px;color:#141b38;background:#e8e8eb;height:30px;width:30px;display:flex;align-items:center;justify-content:center;border-radius:2px;margin-right:4px;cursor:pointer}.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number:last-child{margin-right:0}.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number.active,.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number:hover{color:#fff;background-color:#005ae0}.aioseo-notifications .overlay{position:fixed;z-index:1052;top:0;right:0;bottom:0;left:160px;background-color:#141b38;opacity:.5;transition:.5s}.aioseo-notifications .notifications-fade-enter-active,.aioseo-notifications .notifications-fade-leave-active{transition:opacity .5s}.aioseo-notifications .notifications-fade-enter,.aioseo-notifications .notifications-fade-leave-to{opacity:0}.aioseo-notifications .notifications-slide-enter-active,.aioseo-notifications .notifications-slide-leave-active{transition:all .5s ease-in-out}.aioseo-notifications .notifications-slide-enter,.aioseo-notifications .notifications-slide-leave-to{right:-570px}.aioseo-post-type-options-toggle{margin-top:20px}.aioseo-priority-score{max-width:350px}.aioseo-priority-score .header-row{font-size:14px}.aioseo-pro-badge{height:24px;border-radius:3px;background:#e8e8eb;color:#434960;font-size:14px;font-weight:600;display:inline-flex;padding:0 8px;align-items:center}.aioseo-score-settings{display:flex;align-items:center;padding-bottom:14px}.aioseo-score-settings svg{margin-right:7px}.aioseo-score-settings span{margin-right:12px}.aioseo-score-button{display:inline-block;padding:5px 8px;font-size:14px;font-weight:700;color:#a1a1a1;border:1px solid #a1a1a1;border-radius:3px}.aioseo-score-button.score-none,.aioseo-score-button.score-red{border-color:#df2a4a;color:#df2a4a!important}.aioseo-score-button.score-orange{border-color:#f18200;color:#f18200!important}.aioseo-score-button.score-green{border-color:#00aa63;color:#00aa63!important}.aioseo-score-button.classic-editor{background:#fff!important;display:inline-block!important;height:auto!important}.aioseo-score-button.classic-editor span{margin-right:0}.aioseo-seo-site-analysis-result{border:1px solid #dcdde1;margin-top:10px}.aioseo-seo-site-analysis-result .result-header{height:66px;padding:0 20px;display:flex;align-items:center}.aioseo-seo-site-analysis-result .result-header .result-icon{display:flex;align-items:center;margin-right:16px}.aioseo-seo-site-analysis-result .result-header .result-icon svg{width:24px;height:24px;color:#8c8f9a}.aioseo-seo-site-analysis-result .result-header .result-icon svg.passed{color:#00aa63}.aioseo-seo-site-analysis-result .result-header .result-icon svg.error{color:#df2a4a}.aioseo-seo-site-analysis-result .result-header .result-icon svg.warning{color:#005ae0}.aioseo-seo-site-analysis-result .result-header .result-content{font-size:16px;font-weight:600;flex:1}.aioseo-seo-site-analysis-result .result-header .result-toggle{width:30px;height:26px;border:1px solid #dcdde1;border-radius:3px;display:flex;align-items:center;justify-content:center;cursor:pointer}.aioseo-seo-site-analysis-result .result-header .result-toggle.active,.aioseo-seo-site-analysis-result .result-header .result-toggle:hover{background-color:#434960}.aioseo-seo-site-analysis-result .result-header .result-toggle.active svg,.aioseo-seo-site-analysis-result .result-header .result-toggle:hover svg{color:#fff}.aioseo-seo-site-analysis-result .result-header .result-toggle.active svg{transform:rotate(0deg)}.aioseo-seo-site-analysis-result .result-header .result-toggle svg{width:100%;max-width:20px;height:auto;color:#8c8f9a;transform:rotate(-90deg);transition:transform .3s}.aioseo-seo-site-analysis-result .result-body{padding:0 60px 24px}.aioseo-seo-site-analysis-result .result-body .result-message{color:#434960;font-size:16px}.aioseo-seo-site-analysis-result .result-body .result-code-alt pre,.aioseo-seo-site-analysis-result .result-body .result-code pre{background:#f3f4f5;border-radius:3px;max-width:100%;padding:10px;overflow:auto}.aioseo-seo-site-analysis-result .result-body .result-code-alt pre code,.aioseo-seo-site-analysis-result .result-body .result-code pre code{padding:0;background:transparent}.aioseo-seo-site-analysis-result .result-body .result-code pre{white-space:pre-wrap}.aioseo-seo-site-analysis-result .result-body .result-action{margin-top:20px}.aioseo-seo-site-analysis-results .group-header{font-size:16px;font-weight:600}.aioseo-seo-site-analysis-results .group-header:not(:first-child){margin-top:30px}.aioseo-seo-site-analysis-results .group-keywords{display:flex;margin-top:5px;flex-wrap:wrap;align-items:center}.aioseo-seo-site-analysis-results .group-keywords .keyword{font-size:14px;color:#434960;font-weight:600;background:#f3f4f5;padding:9px 10px;border-radius:3px;margin:0 10px 5px 0}.aioseo-seo-site-analysis-results .group-keywords .keyword:first-child{font-size:20px}.aioseo-settings-row{margin-bottom:22px;padding-bottom:16px;border-bottom:1px solid #e8e8eb}.aioseo-settings-row.no-margin{margin-bottom:0}.aioseo-settings-row.small-padding{padding-bottom:5px}.aioseo-settings-row.medium-margin{margin-bottom:15px}.aioseo-settings-row.no-border{border:none}.aioseo-settings-row.no-side-margin{margin-left:0!important;margin-right:0!important}.aioseo-settings-row .settings-name{color:#141b38}.aioseo-settings-row .settings-name .name{font-weight:600;font-size:16px;display:flex;align-items:center}.aioseo-settings-row .settings-name .name.small-margin{margin-bottom:5px}.aioseo-settings-row .settings-name .name.align{line-height:40px}.aioseo-settings-row .settings-name .name.align-small{line-height:30px}.aioseo-settings-row .settings-name .name .aioseo-pro-badge{margin-left:10px}.aioseo-settings-row .settings-name .aioseo-description{margin-top:20px}.aioseo-settings-row .settings-content{font-size:16px}.aioseo-settings-row p.description{font-size:14px}.aioseo-separators{margin-top:-.5rem}.aioseo-separators .aioseo-col .separator{background-color:#f3f4f5;display:flex;align-items:center;justify-content:center;min-height:51px;font-weight:600;font-size:25px;border:1px solid #dcdde1;border-radius:3px;cursor:pointer}.aioseo-separators .aioseo-col .separator:hover{background-color:#e5e7e9}.aioseo-separators .aioseo-col .separator.active{background-color:#005ae0;border-color:#005ae0;color:#fff}.aioseo-separators .aioseo-col .separator.active:hover{background-color:#005ae0}.aioseo-separators .aioseo-col .show-more{height:100%;display:flex;align-items:center}.aioseo-separators .aioseo-col .show-more a{color:#8c8f9a}.aioseo-separators .aioseo-col .custom-separator{margin:20px 0;display:flex;align-items:center}.aioseo-separators .aioseo-col .custom-separator .aioseo-input{margin-left:10px;max-width:100px}.aioseo-sidebar-card .header{height:46px}.aioseo-sidebar-card .header:hover{cursor:pointer}.aioseo-sidebar-card .content{padding-bottom:8px!important}.aioseo-sidebar-card ul{margin-bottom:0}.aioseo-sidebar-card ul li{margin-bottom:16px;padding-left:25px}.aioseo-sidebar-card ul .description{margin:0}.aioseo-robots-meta .global-robots-settings{margin:0;padding-top:24px}.aioseo-robots-meta .global-robots-settings>.settings{padding:8px 0 16px}.aioseo-robots-meta .global-robots-settings-options{display:flex}.aioseo-robots-meta .global-robots-settings-options .max-snippet{margin-right:30px}.aioseo-robots-meta .global-robots-settings-options .max-snippet .aioseo-input{max-width:90px}.aioseo-robots-meta .global-robots-settings-options .max-video-preview{margin-right:30px}.aioseo-robots-meta .global-robots-settings-options .max-video-preview .aioseo-input{max-width:90px}.aioseo-robots-meta .global-robots-settings-options .max-image-preview .aioseo-select{min-width:155px}.aioseo-robots-meta .global-robots-settings-options>span{display:inline-block;margin-bottom:4px}@media screen and (max-width:782px){.aioseo-robots-meta .global-robots-settings-options{display:block}.aioseo-robots-meta .global-robots-settings-options .max-snippet,.aioseo-robots-meta .global-robots-settings-options .max-video-preview{margin-right:0;margin-bottom:20px}.aioseo-robots-meta .global-robots-settings-options>div .aioseo-input,.aioseo-robots-meta .global-robots-settings-options>div .aioseo-select{min-width:100%}}.edit-post-sidebar .global-robots-settings{padding-top:12px}.edit-post-sidebar .global-robots-settings>.settings{padding:4px 0 12px}.edit-post-sidebar .global-robots-settings>.settings label{font-size:16px}.edit-post-sidebar .global-robots-settings .robots-meta-title{padding-top:4px;display:inline-block}.edit-post-sidebar .global-robots-settings-options{flex-wrap:wrap}.edit-post-sidebar .max-snippet{margin-right:30px!important}.edit-post-sidebar .max-video-preview{margin-right:0!important}.edit-post-sidebar .max-image-preview{margin-top:20px!important}.aioseo-score-amount-wrapper{position:absolute;left:0;top:0;right:0;bottom:0;display:flex;align-items:center;justify-content:center;flex-direction:column;color:#141b38;margin:20px}.aioseo-score-amount-wrapper .aioseo-score-amount .score{font-size:64px;font-weight:600}.aioseo-score-amount-wrapper .aioseo-score-amount .total{font-size:18px;color:#8c8f9a;padding-left:3px}.aioseo-score-amount-wrapper .score-description{max-width:80%;text-align:center;font-size:17px;font-weight:600;line-height:1.1}.aioseo-score-amount-wrapper .score-analyzing{margin-top:20px;font-size:30px}.aioseo-site-score-analyze{position:relative;display:flex;align-items:center;justify-content:center;flex:1}.aioseo-site-score-analyze .analyze-errors{text-align:center;margin-bottom:1em}.aioseo-site-score-analyze .aioseo-seo-site-score-score{position:relative;min-width:175px;max-width:217px;margin-right:5em}.aioseo-site-score-analyze .aioseo-seo-site-score-score svg{width:100%;height:auto}.aioseo-site-score-analyze .aioseo-seo-site-score-description h2{line-height:1.4}.aioseo-site-score-analyze .aioseo-seo-site-score-description svg.aioseo-book{width:20px;height:20px;margin:0 10px 0 0;color:#005ae0}.aioseo-site-score-analyze .aioseo-seo-site-score-description>div{font-size:16px;color:#141b38;margin-bottom:10px}.aioseo-site-score-analyze .aioseo-seo-site-score-description .links{margin-top:30px;font-size:14px;font-weight:600}.aioseo-site-score-analyze .aioseo-seo-site-score-description .links .no-underline{padding-left:5px}.aioseo-site-score-competitor{position:relative;display:flex;align-items:center;justify-content:center;flex-direction:column}.aioseo-site-score-competitor .aioseo-seo-site-score-score{position:relative;min-width:175px;max-width:217px;margin-right:1em}.aioseo-site-score-competitor .aioseo-seo-site-score-score svg{width:100%;height:auto}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations{margin:20px 0}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links){display:flex;align-items:center;font-size:14px;color:#141b38;font-weight:600;margin-bottom:10px}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round{position:relative;border-radius:50%;width:24px;min-width:24px;max-width:24px;height:24px;display:flex;align-items:center;justify-content:center;margin-right:10px;font-size:12px;color:#fff;font-weight:600}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.red{background-color:#df2a4a}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.blue{background-color:#005ae0}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.orange{background-color:#f18200}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.green{background-color:#00aa63}.aioseo-site-score-competitor .refresh-results .aioseo-refresh{width:14px;height:14px;margin-right:10px}.aioseo-site-score-competitor .mobile-snapshot{margin-top:60px;max-width:250px}.aioseo-site-score-competitor .mobile-snapshot div{font-weight:600;font-size:16px;margin-bottom:10px}.aioseo-site-score-competitor .mobile-snapshot img{width:100%;height:auto}.aioseo-site-score-dashboard{position:relative;display:flex;align-items:center;justify-content:center}.aioseo-site-score-dashboard .analyze-errors{text-align:center;margin-bottom:1em}.aioseo-site-score-dashboard .aioseo-seo-site-score-score{position:relative;min-width:175px;max-width:217px;margin-right:1em}.aioseo-site-score-dashboard .aioseo-seo-site-score-score svg{width:100%;height:auto}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links){display:flex;align-items:center;font-size:14px;color:#141b38;font-weight:600;margin-bottom:10px}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round{position:relative;border-radius:50%;width:24px;min-width:24px;max-width:24px;height:24px;display:flex;align-items:center;justify-content:center;margin-right:10px;font-size:12px;color:#fff;font-weight:600}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.red{background-color:#df2a4a}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.blue{background-color:#005ae0}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.orange{background-color:#f18200}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.green{background-color:#00aa63}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations .links{margin-top:30px;font-size:14px;font-weight:600}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations .links .no-underline{padding-left:5px}.aioseo-social-profiles .same-username .use-same{padding:30px;background:#f9f9fa}.aioseo-social-profiles .same-username .use-same .aioseo-checkbox{font-size:16px}.aioseo-social-profiles .aioseo-social-profile-list,.aioseo-social-profiles .same-username .use-same .aioseo-settings-row,.aioseo-social-profiles .same-username .use-same .profiles{margin-top:20px}.aioseo-social-profiles .aioseo-social-profile-list .social-profile{margin-bottom:0;padding-bottom:0;border-bottom:none}.aioseo-social-profiles .aioseo-social-profile-list .social-profile .profile-error{margin-top:10px}.aioseo-social-profiles .aioseo-social-profile-list .social-profile .name{margin-bottom:0}.aioseo-social-profiles .aioseo-social-profile-list .social-profile img{height:16px;width:auto;margin-right:10px}.aioseo-tooltip{margin-left:14px;display:inline-flex}.aioseo-tooltip,.aioseo-twitter-preview{align-items:center;justify-content:center}.aioseo-twitter-preview{background-color:#f0f2f5;padding:30px;display:flex}.aioseo-twitter-preview .twitter-post{width:100%;max-width:500px;border-radius:5px;border:1px solid #e1e8ed;background-color:#fff}.aioseo-twitter-preview .twitter-post .twitter-header{height:65px;padding:0 18px;display:flex;align-items:center}.aioseo-twitter-preview .twitter-post .twitter-header .profile-photo{overflow:hidden;width:40px;height:40px;border:1px solid #e8e8eb;border-radius:50%}.aioseo-twitter-preview .twitter-post .twitter-header .profile-photo img{height:100%;width:100%}.aioseo-twitter-preview .twitter-post .twitter-header .poster{margin-left:10px;flex:1 0 auto}.aioseo-twitter-preview .twitter-post .twitter-header .poster .poster-name{font-size:15px;color:#1c2022;font-weight:600}.aioseo-twitter-preview .twitter-post .twitter-header .poster .poster-username{color:#697882;font-weight:500;font-size:13px}.aioseo-twitter-preview .twitter-post .twitter-container{padding:0 20px 20px}.aioseo-twitter-preview .twitter-post .twitter-container.summary .twitter-content{flex-direction:row}.aioseo-twitter-preview .twitter-post .twitter-container.summary .twitter-content .twitter-image-preview{display:flex;align-items:center;justify-content:center;background-color:#e1e8ed;min-width:125px;min-height:125px;background-size:cover;background-repeat:no-repeat;background-position:50%}.aioseo-twitter-preview .twitter-post .twitter-container.summary .twitter-content .twitter-image-preview svg.aioseo-book{width:50px;height:50px;color:#8999a5}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content{border-radius:10px;overflow:hidden;display:flex;flex-direction:column;border:1px solid #e1e8ed}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content img{width:100%;height:auto}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description{padding:18px;color:#1c2022}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description .site-domain{font-size:14px;color:#8899a6;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description .site-title{font-size:15px;font-weight:600}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description .site-description{font-size:14px;margin:5px 0}.aioseo-col .reverse{flex-direction:column-reverse}.aioseo-col.col-xs,.aioseo-col.col-xs-1,.aioseo-col.col-xs-2,.aioseo-col.col-xs-3,.aioseo-col.col-xs-4,.aioseo-col.col-xs-5,.aioseo-col.col-xs-6,.aioseo-col.col-xs-7,.aioseo-col.col-xs-8,.aioseo-col.col-xs-9,.aioseo-col.col-xs-10,.aioseo-col.col-xs-11,.aioseo-col.col-xs-12,.aioseo-col.col-xs-offset-0,.aioseo-col.col-xs-offset-1,.aioseo-col.col-xs-offset-2,.aioseo-col.col-xs-offset-3,.aioseo-col.col-xs-offset-4,.aioseo-col.col-xs-offset-5,.aioseo-col.col-xs-offset-6,.aioseo-col.col-xs-offset-7,.aioseo-col.col-xs-offset-8,.aioseo-col.col-xs-offset-9,.aioseo-col.col-xs-offset-10,.aioseo-col.col-xs-offset-11,.aioseo-col.col-xs-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-xs{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-xs-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-xs-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-xs-3{flex-basis:25%;max-width:25%}.aioseo-col.col-xs-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-xs-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-xs-6{flex-basis:50%;max-width:50%}.aioseo-col.col-xs-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-xs-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-xs-9{flex-basis:75%;max-width:75%}.aioseo-col.col-xs-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-xs-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-xs-12{flex-basis:100%;max-width:100%}.aioseo-col.col-xs-offset-0{margin-left:0}.aioseo-col.col-xs-offset-1{margin-left:8.33333333%}.aioseo-col.col-xs-offset-2{margin-left:16.66666667%}.aioseo-col.col-xs-offset-3{margin-left:25%}.aioseo-col.col-xs-offset-4{margin-left:33.33333333%}.aioseo-col.col-xs-offset-5{margin-left:41.66666667%}.aioseo-col.col-xs-offset-6{margin-left:50%}.aioseo-col.col-xs-offset-7{margin-left:58.33333333%}.aioseo-col.col-xs-offset-8{margin-left:66.66666667%}.aioseo-col.col-xs-offset-9{margin-left:75%}.aioseo-col.col-xs-offset-10{margin-left:83.33333333%}.aioseo-col.col-xs-offset-11{margin-left:91.66666667%}.aioseo-col.first-xs{order:-1}.aioseo-col.last-xs{order:1}.aioseo-col.text-xs-left{text-align:left!important;justify-content:flex-start}.aioseo-col.text-xs-center{text-align:center!important;justify-content:center}.aioseo-col.text-xs-right{text-align:right!important;justify-content:flex-end}@media only screen and (min-width:782px){.aioseo-col.col-sm,.aioseo-col.col-sm-1,.aioseo-col.col-sm-2,.aioseo-col.col-sm-3,.aioseo-col.col-sm-4,.aioseo-col.col-sm-5,.aioseo-col.col-sm-6,.aioseo-col.col-sm-7,.aioseo-col.col-sm-8,.aioseo-col.col-sm-9,.aioseo-col.col-sm-10,.aioseo-col.col-sm-11,.aioseo-col.col-sm-12,.aioseo-col.col-sm-offset-0,.aioseo-col.col-sm-offset-1,.aioseo-col.col-sm-offset-2,.aioseo-col.col-sm-offset-3,.aioseo-col.col-sm-offset-4,.aioseo-col.col-sm-offset-5,.aioseo-col.col-sm-offset-6,.aioseo-col.col-sm-offset-7,.aioseo-col.col-sm-offset-8,.aioseo-col.col-sm-offset-9,.aioseo-col.col-sm-offset-10,.aioseo-col.col-sm-offset-11,.aioseo-col.col-sm-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-sm{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-sm-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-sm-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-sm-3{flex-basis:25%;max-width:25%}.aioseo-col.col-sm-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-sm-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-sm-6{flex-basis:50%;max-width:50%}.aioseo-col.col-sm-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-sm-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-sm-9{flex-basis:75%;max-width:75%}.aioseo-col.col-sm-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-sm-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-sm-12{flex-basis:100%;max-width:100%}.aioseo-col.col-sm-offset-0{margin-left:0}.aioseo-col.col-sm-offset-1{margin-left:8.33333333%}.aioseo-col.col-sm-offset-2{margin-left:16.66666667%}.aioseo-col.col-sm-offset-3{margin-left:25%}.aioseo-col.col-sm-offset-4{margin-left:33.33333333%}.aioseo-col.col-sm-offset-5{margin-left:41.66666667%}.aioseo-col.col-sm-offset-6{margin-left:50%}.aioseo-col.col-sm-offset-7{margin-left:58.33333333%}.aioseo-col.col-sm-offset-8{margin-left:66.66666667%}.aioseo-col.col-sm-offset-9{margin-left:75%}.aioseo-col.col-sm-offset-10{margin-left:83.33333333%}.aioseo-col.col-sm-offset-11{margin-left:91.66666667%}.aioseo-col.first-sm{order:-1}.aioseo-col.last-sm{order:1}.aioseo-col.text-sm-left{text-align:left!important;justify-content:flex-start}.aioseo-col.text-sm-center{text-align:center!important;justify-content:center}.aioseo-col.text-sm-right{text-align:right!important;justify-content:flex-end}}@media only screen and (min-width:912px){.aioseo-col.col-md,.aioseo-col.col-md-1,.aioseo-col.col-md-2,.aioseo-col.col-md-3,.aioseo-col.col-md-4,.aioseo-col.col-md-5,.aioseo-col.col-md-6,.aioseo-col.col-md-7,.aioseo-col.col-md-8,.aioseo-col.col-md-9,.aioseo-col.col-md-10,.aioseo-col.col-md-11,.aioseo-col.col-md-12,.aioseo-col.col-md-offset-0,.aioseo-col.col-md-offset-1,.aioseo-col.col-md-offset-2,.aioseo-col.col-md-offset-3,.aioseo-col.col-md-offset-4,.aioseo-col.col-md-offset-5,.aioseo-col.col-md-offset-6,.aioseo-col.col-md-offset-7,.aioseo-col.col-md-offset-8,.aioseo-col.col-md-offset-9,.aioseo-col.col-md-offset-10,.aioseo-col.col-md-offset-11,.aioseo-col.col-md-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-md{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-md-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-md-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-md-3{flex-basis:25%;max-width:25%}.aioseo-col.col-md-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-md-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-md-6{flex-basis:50%;max-width:50%}.aioseo-col.col-md-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-md-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-md-9{flex-basis:75%;max-width:75%}.aioseo-col.col-md-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-md-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-md-12{flex-basis:100%;max-width:100%}.aioseo-col.col-md-offset-0{margin-left:0}.aioseo-col.col-md-offset-1{margin-left:8.33333333%}.aioseo-col.col-md-offset-2{margin-left:16.66666667%}.aioseo-col.col-md-offset-3{margin-left:25%}.aioseo-col.col-md-offset-4{margin-left:33.33333333%}.aioseo-col.col-md-offset-5{margin-left:41.66666667%}.aioseo-col.col-md-offset-6{margin-left:50%}.aioseo-col.col-md-offset-7{margin-left:58.33333333%}.aioseo-col.col-md-offset-8{margin-left:66.66666667%}.aioseo-col.col-md-offset-9{margin-left:75%}.aioseo-col.col-md-offset-10{margin-left:83.33333333%}.aioseo-col.col-md-offset-11{margin-left:91.66666667%}.aioseo-col.first-md{order:-1}.aioseo-col.last-md{order:1}.aioseo-col.text-md-left{text-align:left!important;justify-content:flex-start}.aioseo-col.text-md-center{text-align:center!important;justify-content:center}.aioseo-col.text-md-right{text-align:right!important;justify-content:flex-end}}@media only screen and (min-width:1042px){.aioseo-col.col-lg,.aioseo-col.col-lg-1,.aioseo-col.col-lg-2,.aioseo-col.col-lg-3,.aioseo-col.col-lg-4,.aioseo-col.col-lg-5,.aioseo-col.col-lg-6,.aioseo-col.col-lg-7,.aioseo-col.col-lg-8,.aioseo-col.col-lg-9,.aioseo-col.col-lg-10,.aioseo-col.col-lg-11,.aioseo-col.col-lg-12,.aioseo-col.col-lg-offset-0,.aioseo-col.col-lg-offset-1,.aioseo-col.col-lg-offset-2,.aioseo-col.col-lg-offset-3,.aioseo-col.col-lg-offset-4,.aioseo-col.col-lg-offset-5,.aioseo-col.col-lg-offset-6,.aioseo-col.col-lg-offset-7,.aioseo-col.col-lg-offset-8,.aioseo-col.col-lg-offset-9,.aioseo-col.col-lg-offset-10,.aioseo-col.col-lg-offset-11,.aioseo-col.col-lg-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-lg{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-lg-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-lg-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-lg-3{flex-basis:25%;max-width:25%}.aioseo-col.col-lg-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-lg-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-lg-6{flex-basis:50%;max-width:50%}.aioseo-col.col-lg-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-lg-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-lg-9{flex-basis:75%;max-width:75%}.aioseo-col.col-lg-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-lg-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-lg-12{flex-basis:100%;max-width:100%}.aioseo-col.col-lg-offset-0{margin-left:0}.aioseo-col.col-lg-offset-1{margin-left:8.33333333%}.aioseo-col.col-lg-offset-2{margin-left:16.66666667%}.aioseo-col.col-lg-offset-3{margin-left:25%}.aioseo-col.col-lg-offset-4{margin-left:33.33333333%}.aioseo-col.col-lg-offset-5{margin-left:41.66666667%}.aioseo-col.col-lg-offset-6{margin-left:50%}.aioseo-col.col-lg-offset-7{margin-left:58.33333333%}.aioseo-col.col-lg-offset-8{margin-left:66.66666667%}.aioseo-col.col-lg-offset-9{margin-left:75%}.aioseo-col.col-lg-offset-10{margin-left:83.33333333%}.aioseo-col.col-lg-offset-11{margin-left:91.66666667%}.aioseo-col.first-lg{order:-1}.aioseo-col.last-lg{order:1}.aioseo-col.text-lg-left{text-align:left!important;justify-content:flex-start}.aioseo-col.text-lg-center{text-align:center!important;justify-content:center}.aioseo-col.text-lg-right{text-align:right!important;justify-content:flex-end}}.aioseo-container,.aioseo-container-fluid{margin-right:auto;margin-left:auto}.aioseo-container{padding:0 20px}.aioseo-container-fluid.hero,.aioseo-container.hero{min-height:100vh;display:flex;justify-content:center;align-items:center}.aioseo-container-fluid{padding-right:2rem;padding-left:2rem}@media only screen and (min-width:782px){.aioseo-container{padding:0 30px}}@media only screen and (min-width:1042px){.aioseo-container{max-width:80rem}.aioseo-container.full-width{max-width:100%}.aioseo-container.small{max-width:810px}}.aioseo-masonry{-moz-column-count:0;column-count:0;-moz-column-gap:20px;column-gap:20px;counter-reset:brick-counter}.aioseo-masonry>*{box-sizing:border-box;-moz-column-break-inside:avoid;break-inside:avoid;counter-increment:brick-counter;margin-bottom:20px}@media only screen and (min-width:782px){.aioseo-masonry{-moz-column-count:1;column-count:1}}@media only screen and (min-width:912px){.aioseo-masonry{-moz-column-count:2;column-count:2}}@media only screen and (min-width:1042px){.aioseo-masonry{-moz-column-count:3;column-count:3}}.aioseo-row{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:row;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem}.aioseo-row.reverse{flex-direction:row-reverse}.aioseo-row.start-xs{justify-content:flex-start;text-align:start}.aioseo-row.center-xs{justify-content:center;text-align:center}.aioseo-row.end-xs{justify-content:flex-end;text-align:end}.aioseo-row.top-xs{align-items:flex-start}.aioseo-row.middle-xs{align-items:center}.aioseo-row.bottom-xs{align-items:flex-end}.aioseo-row.around-xs{justify-content:space-around}.aioseo-row.between-xs{justify-content:space-between}@media only screen and (min-width:782px){.aioseo-row.start-sm{justify-content:flex-start;text-align:start}.aioseo-row.center-sm{justify-content:center;text-align:center}.aioseo-row.end-sm{justify-content:flex-end;text-align:end}.aioseo-row.top-sm{align-items:flex-start}.aioseo-row.middle-sm{align-items:center}.aioseo-row.bottom-sm{align-items:flex-end}.aioseo-row.around-sm{justify-content:space-around}.aioseo-row.between-sm{justify-content:space-between}}@media only screen and (min-width:912px){.aioseo-row.start-md{justify-content:flex-start;text-align:start}.aioseo-row.center-md{justify-content:center;text-align:center}.aioseo-row.end-md{justify-content:flex-end;text-align:end}.aioseo-row.top-md{align-items:flex-start}.aioseo-row.middle-md{align-items:center}.aioseo-row.bottom-md{align-items:flex-end}.aioseo-row.around-md{justify-content:space-around}.aioseo-row.between-md{justify-content:space-between}}@media only screen and (min-width:1042px){.aioseo-row.start-lg{justify-content:flex-start;text-align:start}.aioseo-row.center-lg{justify-content:center;text-align:center}.aioseo-row.end-lg{justify-content:flex-end;text-align:end}.aioseo-row.top-lg{align-items:flex-start}.aioseo-row.middle-lg{align-items:center}.aioseo-row.bottom-lg{align-items:flex-end}.aioseo-row.around-lg{justify-content:space-around}.aioseo-row.between-lg{justify-content:space-between}}.aioseo-seo-site-score__circle{animation:aioseo-seo-site-score-fill 1s reverse;transform:rotate(-180deg);transform-origin:center;stroke:#00aa63}.aioseo-seo-site-score__circle.fast{-webkit-animation-duration:.5s;animation-duration:.5s;stroke:#df2a4a}.aioseo-seo-site-score__circle.medium{-webkit-animation-duration:.75s;animation-duration:.75s;stroke:#f18200}.aioseo-seo-site-score__background{stroke:#e8e8eb}@-webkit-keyframes aioseo-seo-site-score-fill{to{stroke-dasharray:0 100}}@keyframes aioseo-seo-site-score-fill{to{stroke-dasharray:0 100}}.aioseo-seo-site-score-svg-loading{-webkit-animation:aioseo-seo-site-score-svg-animation 2s linear infinite;animation:aioseo-seo-site-score-svg-animation 2s linear infinite}.aioseo-seo-site-score-loading__circle{-webkit-animation:aioseo-seo-site-score-fill-loading 2s ease-in-out infinite both;animation:aioseo-seo-site-score-fill-loading 2s ease-in-out infinite both;transform:rotate(-180deg);transform-origin:center;stroke:#005ae0}@-webkit-keyframes aioseo-seo-site-score-svg-animation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes aioseo-seo-site-score-svg-animation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@-webkit-keyframes aioseo-seo-site-score-fill-loading{0%,25%{stroke-dashoffset:90;transform:rotate(0)}50%,75%{stroke-dashoffset:10;transform:rotate(45deg)}to{stroke-dashoffset:90;transform:rotate(1turn)}}@keyframes aioseo-seo-site-score-fill-loading{0%,25%{stroke-dashoffset:90;transform:rotate(0)}50%,75%{stroke-dashoffset:10;transform:rotate(45deg)}to{stroke-dashoffset:90;transform:rotate(1turn)}}.aioseo-table-column{display:flex;flex-direction:column;flex-basis:100%;flex:1;padding:5px;justify-content:center}.aioseo-table-row{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.aioseo-wizard-body{background-color:#fff;max-width:900px;box-shadow:0 2px 5px rgba(0,0,0,.05)}.aioseo-wizard-body .body-content{padding:80px 140px}@media screen and (max-width:782px){.aioseo-wizard-body .body-content{padding:40px}}.aioseo-wizard-body .body-content .header{line-height:1.4}.aioseo-wizard-body .body-footer{border-top:1px solid #e8e8eb;padding:30px;display:flex;align-items:center}.aioseo-wizard-body .body-footer>*{margin-right:10px}.aioseo-wizard-body .body-footer>:last-child{margin-right:0}.aioseo-wizard-body .body-footer .spacer{flex:1 0 auto}.aioseo-wizard-close-and-exit{margin-top:96px;text-align:center;font-size:14px}.aioseo-wizard-close-and-exit a{color:#8c8f9a!important}.aioseo-wizard-container{margin:40px auto;max-width:900px}@media screen and (max-width:782px){.aioseo-wizard-container{margin:0 20px}}.aioseo-wizard-header{display:flex;align-items:center;justify-content:center;flex-direction:column}.aioseo-wizard-header svg.aioseo-logo{width:100%;max-width:140px;height:auto;margin:60px 10px 40px 0}.aioseo-wizard-progress{display:flex;align-items:center;justify-content:center}@media screen and (max-width:782px){.aioseo-wizard-progress{display:none}}.aioseo-wizard-progress .circle{background-color:#dcdde1;width:16px;height:16px;border-radius:50%}.aioseo-wizard-progress .circle.active{background-color:#005ae0}.aioseo-wizard-progress .spacer{width:59px;border:1px solid #dcdde1;margin:0 12px}.aioseo-wizard-progress .spacer.active{border-color:#005ae0}.aioseo-wizard-steps{color:#8c8f9a;font-size:14px;margin-bottom:20px}
dist/Lite/assets/css/chunk-common.rtl.css CHANGED
@@ -1 +1 @@
1
- .aioseo-app .aioseo-cta{margin-top:30px;background:#fff;width:100%;padding:40px;box-shadow:0 2px 5px rgba(0,0,0,.05);border:1px solid #e8e8eb}.aioseo-app .aioseo-cta.floating{margin-top:0;position:absolute;max-width:850px;right:50%;top:50%;transform:translateX(50%) translateY(-50%);box-shadow:0 5px 20px rgba(0,0,0,.1);border-radius:3px}.aioseo-app .aioseo-cta .header-text{line-height:1.4;font-weight:600;font-size:24px;text-align:center;color:#141b38}.aioseo-app .aioseo-cta .header-text span.large{line-height:1.4;font-size:32px}.aioseo-app .aioseo-cta .description{margin:30px 0 50px;width:100%;max-width:600px;text-align:center;font-size:16px;color:#141b38;line-height:1.4}.aioseo-app .aioseo-cta .description .aioseo-alert{margin-bottom:30px;text-align:right}.aioseo-app .aioseo-cta .feature-list{color:#141b38;font-size:16px;width:100%;max-width:500px;margin-bottom:50px}.aioseo-app .aioseo-cta .feature-list .aioseo-col{display:flex;align-items:flex-start}.aioseo-app .aioseo-cta .feature-list .aioseo-col svg.aioseo-circle-check{color:#00aa63;width:18px;min-width:18px;min-height:18px;margin-left:10px}.aioseo-app .aioseo-cta a.learn-more{margin-top:20px;color:#8c8f9a;font-size:14px}.aioseo-app .aioseo-cta .type-1{display:flex;flex-direction:column;align-items:center}.aioseo-app .aioseo-cta .type-2{margin:30px 50px 30px 0;display:flex}.aioseo-app .aioseo-cta .type-2 .description,.aioseo-app .aioseo-cta .type-2 .header-text{text-align:right}.aioseo-app .aioseo-cta .type-2 .description,.aioseo-app .aioseo-cta .type-2 .feature-list{margin:30px 0}.aioseo-app .aioseo-cta .type-2>div{margin-left:20px;flex:0 0 50%}.aioseo-app .aioseo-cta .type-2 .featured-image{max-height:540px;border:1px solid #e8e8eb;flex:1;overflow:hidden;margin-left:-41px;margin-bottom:-71px;border-radius:0 5px 0 0}.aioseo-app .aioseo-cta .type-2 .featured-image img{max-height:600px}@media only screen and (max-width:912px){.aioseo-app .aioseo-cta .type-2{flex-direction:column;align-items:center}.aioseo-app .aioseo-cta .type-2 .description,.aioseo-app .aioseo-cta .type-2 .header-text{text-align:center}.aioseo-app .aioseo-cta .type-2>div{text-align:center;margin-left:0;margin-bottom:30px;flex:1 0 100%;width:100%}.aioseo-app .aioseo-cta .type-2 .featured-image{margin:0 -10px -41px;border-radius:5px 5px 0 0;max-height:300px}}.aioseo-app .aioseo-cta .type-3 .sub-header{line-height:1.4;font-size:16px;font-weight:600;color:#005ae0;margin-bottom:5px}.aioseo-app .aioseo-cta .type-3 .header-text{text-align:right}.aioseo-app .aioseo-cta .type-3 .feature-list{margin:30px 0}.aioseo-app .aioseo-cta .type-3 .feature-list .aioseo-col svg.aioseo-circle-check{color:#00aa63;width:21px;min-width:21px;min-height:21px;margin-left:5px}.aioseo-app .aioseo-cta .type-3 .aioseo-button{margin-left:12px}.aioseo-box-toggle .aioseo-row .aioseo-col{max-width:calc(200px + 1em)}@media only screen and (max-width:48em){.aioseo-box-toggle .aioseo-row .aioseo-col{max-width:100%}}.aioseo-box-toggle input{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.aioseo-box-toggle input:checked+label{background-color:#fff;box-shadow:0 5px 10px rgba(0,90,224,.1);border:2px solid #005ae0;font-weight:600}.aioseo-box-toggle label{background-color:#f9f9fa;color:#141b38;font-size:16px;line-height:1;display:flex;align-items:center;justify-content:center;flex-direction:column;border:1px solid #f9f9fa;transition:all .1s ease-in-out;border-radius:3px;height:165px;position:relative}.aioseo-box-toggle label p{position:absolute;bottom:15px;margin:0}.aioseo-box-toggle label:hover{cursor:pointer}.aioseo-button{flex-shrink:0;line-height:1;display:inline-flex;align-items:center;justify-content:center;font-size:16px;font-weight:600;padding:0 24px;border-radius:4px;-webkit-appearance:none;cursor:pointer;height:48px;transition:background-color .2s ease;position:relative;overflow:hidden;text-decoration:none;color:#141b38;white-space:nowrap}.aioseo-button.small{height:30px;font-size:14px;padding:0 12px}.aioseo-button.small .loading-spinner{width:25px;height:25px}.aioseo-button.medium{height:40px;font-size:14px;padding:0 18px}.aioseo-button.medium .loading-spinner{width:35px;height:35px}.aioseo-button.xl{height:66px;border-radius:4px;font-size:18px;padding:0 48px}.aioseo-button.gray{border:1px solid #dcdde1;background-color:#f3f4f5}.aioseo-button.gray:hover{background-color:#fff;color:#141b38}.aioseo-button.gray:active{background-color:#f3f4f5}.aioseo-button.green{border:none;background-color:#00aa63;color:#fff}.aioseo-button.green:hover{background-color:#07c575}.aioseo-button.green:active{background-color:#15955f}.aioseo-button.blue{border:none;background-color:#005ae0;color:#fff}.aioseo-button.blue:hover{background-color:#1a82ea}.aioseo-button.blue:active{background-color:#004f9d}.aioseo-button.black{border:none;background-color:#434960;color:#fff}.aioseo-button.black:hover{background-color:#2c324c}.aioseo-button.black:active{background-color:#141b38}.aioseo-button.loading.blue{background-color:#004f9d;color:#004f9d}.aioseo-button.loading.blue:hover{background-color:#004f9d}.aioseo-button.loading.green{background-color:#15955f;color:#15955f}.aioseo-button.loading.green:hover{background-color:#15955f}.aioseo-button.loading.gray{background-color:#f3f4f5;color:#f3f4f5}.aioseo-button.loading.gray:hover{background-color:#f3f4f5}.aioseo-button.loading.black{background-color:#141b38;color:#141b38}.aioseo-button.loading.black:hover{background-color:#141b38}.aioseo-button:disabled{color:#8c8f9a;background-color:#f3f4f5;cursor:default}.aioseo-button:disabled.gray:hover{color:#8c8f9a}.aioseo-button:disabled:hover{background-color:#f3f4f5}.aioseo-checkbox{display:inline-flex;align-items:center}.aioseo-checkbox.disabled,.aioseo-checkbox.disabled .form-checkbox .fancy-checkbox,.aioseo-checkbox.no-clicks,.aioseo-checkbox.no-clicks .form-checkbox .fancy-checkbox{cursor:default}.aioseo-checkbox .form-checkbox-wrapper{margin-left:10px;display:flex}.aioseo-checkbox.medium .form-checkbox{width:20px;height:20px}.aioseo-checkbox.medium .form-checkbox .fancy-checkbox svg{width:12px;height:12px}.aioseo-checkbox.medium .form-checkbox span:before{height:18px;width:18px;line-height:20px}.aioseo-checkbox.round .form-checkbox span,.aioseo-checkbox.round .form-checkbox span:before{border-radius:50%}.aioseo-checkbox .form-checkbox{position:relative;display:inline-block;width:28px;height:28px;color:#fff;vertical-align:bottom;text-align:center}.aioseo-checkbox .form-checkbox input{display:none}.aioseo-checkbox .form-checkbox input:checked+.fancy-checkbox.blue{background:#005ae0}.aioseo-checkbox .form-checkbox input:checked+.fancy-checkbox.green{background:#00aa63}.aioseo-checkbox .form-checkbox input:checked+.fancy-checkbox:before{background:transparent}.aioseo-checkbox .form-checkbox input:disabled+.fancy-checkbox{background:#e8e8eb!important;border:1px solid #d0d1d7;cursor:default}.aioseo-checkbox .form-checkbox input:disabled+.fancy-checkbox svg{color:#8c8f9a}.aioseo-checkbox .form-checkbox input:not(:checked):disabled+.fancy-checkbox:before{right:0;bottom:0;background:#e8e8eb}.aioseo-checkbox .form-checkbox .fancy-checkbox svg{color:#fff;width:16px;height:16px}.aioseo-checkbox .form-checkbox span{position:absolute;cursor:pointer;top:0;right:0;left:0;bottom:0;background-color:#d0d1d7;transition:.2s;border-radius:3px;display:flex;align-items:center;justify-content:center}.aioseo-checkbox .form-checkbox span:before{position:absolute;content:"";height:26px;width:26px;right:1px;bottom:1px;background-color:#fff;transition:.2s;font-size:18px;line-height:28px;border-radius:2px}.aioseo-date-picker.vue-daterange-picker{width:100%}.aioseo-date-picker.vue-daterange-picker .form-control{display:flex;align-items:center;color:#141b38;font-size:16px;height:48px;border-radius:3px;border:1px solid #d0d1d7;position:relative}.aioseo-date-picker.vue-daterange-picker .form-control svg.aioseo-circle-close{position:absolute;left:10px;color:#434960;width:15px;height:15px}.aioseo-date-picker.vue-daterange-picker.small .form-control{height:30px}.aioseo-date-picker.vue-daterange-picker.medium .form-control{height:40px}body[class*=all-in-one-seo_page] .daterangepicker .yearselect{width:75px}.aioseo-editor{position:relative}.aioseo-editor .aioseo-editor-description .ql-editor{min-height:100px}.aioseo-editor .aioseo-editor-line-numbers .ql-editor{padding:15px 45px 15px 15px}.aioseo-editor .aioseo-editor-single .ql-editor{padding:8px 10px}.aioseo-editor .aioseo-editor-single.aioseo-editor-line-numbers .ql-editor{padding:8px 45px 8px 10px}.aioseo-editor .aioseo-editor-monospace .ql-editor{font-family:monospace}.aioseo-editor .aioseo-line-numbers{background:#f7f6f7;position:absolute;text-align:left;top:1px;width:29px;right:1px;border-radius:0 3px 3px 0;padding:15px 0 0 9px;display:flex;height:calc(100% - 2px);flex-direction:column;overflow:hidden}.aioseo-editor .aioseo-line-numbers div{min-height:25px;color:#8c8f9a;font-size:12px;line-height:1.9}.aioseo-editor .ql-disabled{pointer-events:none;background-color:#f9f9fa}.aioseo-editor .ql-editor{padding:15px;border-radius:3px;font-size:16px;color:#141b38;border:1px solid #d0d1d7}.aioseo-editor .ql-editor:focus{border:1px solid #005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-editor .ql-editor .mention .ql-mention-denotation-char{display:none}.aioseo-editor .ql-editor .mention .aioseo-tag{height:25px;margin:0 1px;color:#434960;font-weight:600;font-size:14px;padding:3px 10px 3px 25px;background-color:#f3f4f5;border-radius:3px;cursor:pointer;position:relative;display:inline-flex;align-items:center}.aioseo-editor .ql-editor .mention .aioseo-tag .tag-toggle{display:inline-flex;align-items:center;background-color:#e8e8eb;position:absolute;top:0;left:0;bottom:0;border-radius:3px 0 0 3px}.aioseo-editor .ql-editor .mention .aioseo-tag .tag-toggle svg.aioseo-caret{width:18px;height:18px;transition:transform .3s}.aioseo-editor .ql-editor .mention .aioseo-tag .tag-toggle svg.aioseo-caret.rotated{transform:rotate(-180deg)}.aioseo-editor .ql-mention-list-container{color:#141b38;background-color:#fff;max-width:250px;width:100%;margin-top:3px;border:1px solid #d0d1d7;border-radius:3px;box-shadow:0 3px 15px rgba(0,0,0,.1);z-index:9001}.aioseo-editor .ql-mention-list-container .aioseo-tag-custom,.aioseo-editor .ql-mention-list-container .aioseo-tag-search{padding:12px;border-bottom:1px solid #e8e8eb}.aioseo-editor .ql-mention-list-container .aioseo-tag-custom{display:none}.aioseo-editor .ql-mention-list-container .ql-mention-list{list-style:none;margin:0;padding:0;max-height:210px;overflow:auto}.aioseo-editor .ql-mention-list-container .ql-mention-list li{color:#141b38;margin:0;background-color:transparent;border-bottom:1px solid #e8e8eb;padding:15px;cursor:pointer;font-size:14px}.aioseo-editor .ql-mention-list-container .ql-mention-list li:last-child{border-bottom:0}.aioseo-editor .ql-mention-list-container .ql-mention-list li.selected,.aioseo-editor .ql-mention-list-container .ql-mention-list li:hover{color:#005ae0;background-color:#f2f7fd}.aioseo-editor .ql-mention-list-container .ql-mention-list li.selected .aioseo-tag-description,.aioseo-editor .ql-mention-list-container .ql-mention-list li:hover .aioseo-tag-description{color:initial}.aioseo-editor .ql-mention-list-container .ql-mention-list li .aioseo-tag-item{display:flex}.aioseo-editor .ql-mention-list-container .ql-mention-list li .aioseo-tag-item>div:first-child{margin-left:10px}.aioseo-editor .ql-mention-list-container .ql-mention-list li .aioseo-tag-item .aioseo-tag-title{font-weight:600}.aioseo-editor .ql-mention-list-container .ql-mention-list li svg.aioseo-plus{width:10px;height:10px;color:#005ae0}.aioseo-editor .ql-mention-list-container .ql-mention-list li.aioseo-tag-no-match{cursor:default;padding:12px;font-size:16px;font-weight:600}.aioseo-editor .ql-mention-list-container .ql-mention-list li.aioseo-tag-no-match.highlight,.aioseo-editor .ql-mention-list-container .ql-mention-list li.aioseo-tag-no-match:hover{color:initial;background-color:transparent}.aioseo-editor .ql-toolbar{display:none}.aioseo-editor .ql-clipboard{right:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.aioseo-editor .ql-snow .ql-hidden{display:none}.aioseo-editor .ql-container.ql-snow{border:none}.aioseo-editor .ql-container p{font-size:16px;margin:0;line-height:25px}.aioseo-highlight-toggle{border:1px solid #e8e8eb;border-radius:3px;min-height:48px;display:flex;align-items:center;padding:5px 10px;cursor:pointer}.aioseo-highlight-toggle>*{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.aioseo-highlight-toggle.active{border-color:#005ae0;box-shadow:0 5px 10px rgba(0,90,224,.1)}.aioseo-highlight-toggle.medium{min-height:40px}.aioseo-highlight-toggle .icon{display:flex;align-items:center;margin-left:5px}.aioseo-input{position:relative;width:100%}.aioseo-input.file,.aioseo-input.file input[type=file]{position:absolute;top:0;left:0;right:0;bottom:0;margin:0;padding:0}.aioseo-input.file input[type=file]{cursor:pointer;opacity:0}.aioseo-input.file input[type=file]::-webkit-file-upload-button{visibility:hidden}.aioseo-input.file input[type=file]:focus{box-shadow:none}.aioseo-input input{height:48px;width:100%;background-color:#fff;border:1px solid #d0d1d7;border-radius:3px;padding:15px;font-size:18px;position:relative;overflow:hidden}.aioseo-input input:disabled{background:#f9f9fa}.aioseo-input input:focus{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-input input::-moz-placeholder{color:#8c8f9a}.aioseo-input input:-ms-input-placeholder{color:#8c8f9a}.aioseo-input input::placeholder{color:#8c8f9a}.aioseo-input input.prepend{padding-right:50px}.aioseo-input input.append{padding-left:50px}.aioseo-input input.small{height:30px;padding:10px;font-size:14px}.aioseo-input input.small.prepend{padding-right:30px}.aioseo-input input.small.append{padding-left:30px}.aioseo-input input.medium{height:40px;padding:12px;font-size:16px}.aioseo-input input.medium.prepend{padding-right:35px}.aioseo-input input.medium.append{padding-left:35px}.aioseo-input.aioseo-active input{border-color:#00aa63}.aioseo-input.aioseo-active .append-icon,.aioseo-input.aioseo-active .prepend-icon{color:#00aa63}.aioseo-input.aioseo-error input{border-color:#df2a4a}.aioseo-input.aioseo-error .append-icon,.aioseo-input.aioseo-error .prepend-icon{color:#df2a4a}.aioseo-input .prepend-icon{position:absolute;top:0;right:10px;width:30px;height:100%;color:#d0d1d7;display:flex;align-items:center;z-index:1}.aioseo-input .prepend-icon svg{width:30px;height:30px}.aioseo-input .prepend-icon.small{width:20px}.aioseo-input .prepend-icon.small svg{width:10px;height:10px}.aioseo-input .prepend-icon.medium{width:15px}.aioseo-input .prepend-icon.medium svg{width:15px;height:15px}.aioseo-input .append-icon{position:absolute;top:0;left:10px;width:30px;height:100%;color:#d0d1d7;display:flex;align-items:center;z-index:1}.aioseo-input .append-icon svg{width:30px;height:30px}.aioseo-input .append-icon.small{width:10px;height:10px}.aioseo-input .append-icon.medium{width:15px;height:15px}.aioseo-phone-number{max-width:600px}.aioseo-phone-number label{display:none}.aioseo-phone-number .maz-input__input{height:40px;min-height:40px;padding-top:0!important;border:1px solid #d0d1d7}.aioseo-phone-number .maz-input__input:focus{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-phone-number .country-selector{flex:0 0 140px;width:140px;min-width:140px;max-width:140px}.aioseo-phone-number .country-selector:hover{z-index:1}.aioseo-phone-number .country-selector>div.maz-base-component.maz-input.has-value.has-1-right-icon.maz-input--primary>input{padding-right:50px!important}.aioseo-phone-number .country-selector .maz-input.is-focused{border-color:#005ae0}.aioseo-phone-number .country-selector .maz-select__options-list__item.selected.keyboard-selected{background-color:#005ae0}.aioseo-phone-number .maz-phone-number-input__country-flag{right:20px;bottom:12px}.aioseo-phone-number .maz-select__options-list input{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-phone-number .maz-input__input{border-radius:3px}.aioseo-phone-number .input-phone-number,.aioseo-phone-number .input-phone-number:focus{z-index:2}.aioseo-phone-number.invalidNumber div.maz-flex-1>div>input{border-color:red}.aioseo-phone-number.invalidNumber div.maz-flex-1>div>input:focus{border-color:#df2a4a;box-shadow:0 0 0 1px #df2a4a}.aioseo-phone-number.validNumber div.maz-flex-1>div>input:focus{border-color:#00aa63;box-shadow:0 0 0 1px #00aa63}.aioseo-radio{display:inline-flex;align-items:center}.aioseo-radio .form-radio-wrapper{margin-left:10px;display:flex}.aioseo-radio.medium .form-radio{width:20px;height:20px}.aioseo-radio.medium .form-radio .fancy-radio svg{width:12px;height:12px}.aioseo-radio.medium.type-1 .form-radio span:before{height:18px;width:18px;line-height:20px}.aioseo-radio.medium.type-2 .form-radio span:before{height:16px;width:16px;line-height:20px}.aioseo-radio.medium.type-2 .form-radio span:after{height:6px;width:6px;right:6px;bottom:6px}.aioseo-radio .form-radio{position:relative;display:inline-block;width:28px;height:28px;color:#fff;vertical-align:bottom;text-align:center}.aioseo-radio .form-radio input{opacity:0}.aioseo-radio .form-radio input:checked+.fancy-radio{background:#005ae0;border-color:#005ae0}.aioseo-radio .form-radio input:checked+.fancy-radio:before{background:transparent}.aioseo-radio .form-radio input:checked+.fancy-radio:after{display:block}.aioseo-radio .form-radio input:disabled+.fancy-radio{cursor:default}.aioseo-radio .form-radio input:focus+.fancy-radio{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-radio .form-radio .fancy-radio{border-radius:50%}.aioseo-radio .form-radio .fancy-radio svg{color:#fff;width:16px;height:16px}.aioseo-radio .form-radio span{position:absolute;cursor:pointer;top:0;right:0;left:0;bottom:0;transition:.2s;border-radius:50%;display:flex;align-items:center;justify-content:center}.aioseo-radio .form-radio span:before{position:absolute;content:"";height:26px;width:26px;right:1px;bottom:1px;transition:.2s;font-size:18px;line-height:28px;border-radius:50%}.aioseo-radio.type-1 .form-radio span,.aioseo-radio.type-1 .form-radio span:before{background-color:#f3f4f5}.aioseo-radio.type-2 .form-radio span{border:1px solid #d0d1d7;background-color:#fff}.aioseo-radio.type-2 .form-radio span:before{background-color:#fff}.aioseo-radio.type-2 .form-radio span:after{display:none;position:absolute;content:"";height:10px;width:10px;right:8px;bottom:8px;background-color:#fff;transition:.2s;border-radius:50%}.aioseo-radio.disabled{cursor:default}.aioseo-radio.disabled.type-2 .form-radio input:checked+.fancy-radio{background-color:#e8e8eb;border-color:#d0d1d7}.aioseo-radio.disabled.type-2 .form-radio span,.aioseo-radio.disabled.type-2 .form-radio span:before{background-color:#e8e8eb}.aioseo-radio.disabled.type-2 .form-radio span:after{background-color:#8c8f9a}.aioseo-radio-toggle{display:flex;align-items:center;height:40px}.aioseo-radio-toggle div{height:100%}.aioseo-radio-toggle.inline{display:inline-flex}.aioseo-radio-toggle div:first-child{overflow:hidden;border-radius:0 3px 3px 0}.aioseo-radio-toggle div:first-child label{border-radius:0 3px 3px 0}.aioseo-radio-toggle div:last-child{overflow:hidden;border-radius:3px 0 0 3px}.aioseo-radio-toggle div:last-child label{border-radius:3px 0 0 3px}.aioseo-radio-toggle input{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.aioseo-radio-toggle input:checked+label{background-color:#005ae0;color:#fff}.aioseo-radio-toggle input:checked+label.dark{background-color:#434960;color:#fff}.aioseo-radio-toggle label{height:100%;background-color:#e8e8eb;color:#141b38;font-size:14px;line-height:1;display:flex;align-items:center;justify-content:center;flex-direction:column;transition:all .1s ease-in-out;position:relative;padding:11px 20px;font-weight:600}.aioseo-radio-toggle label.disabled{cursor:default;pointer-events:none;opacity:.5}.aioseo-radio-toggle label:hover{background-color:#dadadf;cursor:pointer}.aioseo-radio-toggle label p{position:absolute;bottom:15px;margin:0}.aioseo-radio-toggle.circle label{background:#fff;color:#8c8f9a}.aioseo-radio-toggle.circle input+label{border-radius:50%;width:36px;height:36px;padding:8px}.aioseo-radio-toggle.circle input:checked+label{background:#e8e8eb;color:#2c324c}.aioseo-select{height:48px}.aioseo-select.multiselect--disabled .multiselect__select{background:none}.aioseo-select .multiselect__select{display:flex;align-items:center;justify-content:center;min-height:46px}.aioseo-select .multiselect__select:before{display:none}.aioseo-select .multiselect__select svg.aioseo-caret{color:#141b38;width:18px;height:18px;transform:rotate(-180deg);transition:transform .3s}.aioseo-select .multiselect__tags{height:100%;border:1px solid #d0d1d7;border-radius:3px;display:flex;justify-content:center;flex-direction:column;padding:16px 16px 16px 40px}.aioseo-select .multiselect__tags .multiselect__spinner{height:calc(100% - 2px);border:2px solid transparent}.aioseo-select .multiselect__tags .multiselect__spinner:after,.aioseo-select .multiselect__tags .multiselect__spinner:before{border-top-color:#434960}.aioseo-select .multiselect__tags .multiselect__single{display:inline-flex;margin:0;padding:0;color:#141b38;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.aioseo-select .multiselect__tags .multiselect__placeholder{color:#8c8f9a;font-size:16px;line-height:20px;margin:0;padding:0}.aioseo-select .multiselect__tags .multiselect__input{padding:0;margin:0 0 0 10px;border-radius:0;border:none;color:#141b38;min-height:auto;line-height:20px}.aioseo-select .multiselect__tags .multiselect__input:focus{outline:0;box-shadow:none;border:none}.aioseo-select .multiselect__tags .multiselect__input::-moz-placeholder{color:#8c8f9a}.aioseo-select .multiselect__tags .multiselect__input:-ms-input-placeholder{color:#8c8f9a}.aioseo-select .multiselect__tags .multiselect__input::placeholder{color:#8c8f9a}.aioseo-select .multiselect__tags .multiselect__tags-wrap{display:flex;align-items:center;flex-wrap:wrap}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag{padding:0;display:inline-flex;align-items:center;font-size:14px;font-weight:600;color:#434960;margin:0 0 0 3px;height:24px;background-color:#f3f4f5;flex-shrink:0}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-value{padding:0 10px 0 5px}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove{padding:0 10px;height:100%;cursor:pointer;background-color:#f3f4f5;display:flex;align-items:center}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove:hover{background-color:#434960;color:#fff}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove:hover svg.aioseo-close{color:#fff}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove svg.aioseo-close{color:#434960;width:10px;height:10px}.aioseo-select.multiselect--active .multiselect__tags-wrap{margin-bottom:7px}.aioseo-select.small{height:30px}.aioseo-select.small .multiselect__tags{padding:10px 10px 10px 40px}.aioseo-select.small .multiselect__select{min-height:28px}.aioseo-select.medium{height:40px}.aioseo-select.medium .multiselect__tags{padding:7px 7px 7px 40px}.aioseo-select.medium .multiselect__select{min-height:38px}.aioseo-select.multiple{min-height:48px;height:auto}.aioseo-select.multiple.small{min-height:30px}.aioseo-select.multiple.medium{min-height:40px}.aioseo-select .multiselect__content-wrapper{border:1px solid #d0d1d7;border-top:none;border-bottom-right-radius:3px;border-bottom-left-radius:3px;z-index:50;-webkit-overflow-scrolling:touch}.aioseo-select .multiselect__content-wrapper li.multiselect__element{margin:0;border-bottom:1px solid #e8e8eb}.aioseo-select .multiselect__content-wrapper li.multiselect__element.last{border-bottom:none}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option{color:#141b38;font-weight:700;font-size:16px}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--highlight{background-color:#f2f7fd}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--highlight:after{background-color:#005ae0;color:#fff}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--selected{background-color:#f2f7fd}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--disabled{font-weight:400;background-color:#fff!important;color:#8c8f9a}.aioseo-textarea-autosize{width:100%;background-color:#fff;border:1px solid #d0d1d7;border-radius:4px;font-size:16px;padding:12px}.aioseo-toggle{display:inline-flex}.aioseo-toggle:active,.aioseo-toggle:focus{outline:2px solid transparent}.aioseo-toggle.disabled{pointer-events:none}.aioseo-toggle.disabled .toggle-content{opacity:.5}.aioseo-toggle .toggle-content{position:relative;display:inline-block;width:36px;height:20px;margin-left:10px}.aioseo-toggle .toggle-content input{display:none}.aioseo-toggle .toggle-content input:checked+.toggle-switch{border:1px solid #005ae0;background-color:#005ae0}.aioseo-toggle .toggle-content input:checked+.toggle-switch:focus{outline:2px solid transparent}.aioseo-toggle .toggle-content input:checked+.toggle-switch:before{background-color:#fff;transform:translateX(-15px)}.aioseo-toggle .toggle-content input:focus+.toggle-switch{box-shadow:0 0 1px #005ae0;outline:2px solid transparent}.aioseo-toggle .toggle-content .toggle-switch{position:absolute;cursor:pointer;top:0;right:0;left:0;bottom:0;background-color:#fff;border:1px solid #d0d1d7;border-radius:15px;transition:.2s}.aioseo-toggle .toggle-content .toggle-switch:before{position:absolute;content:"";height:14px;width:14px;right:3px;bottom:2px;background-color:#d0d1d7;border-radius:50%;transition:.2s}.aioseo-add-template-tag{border-radius:3px;padding:5px 10px;color:#141b38;font-size:14px;border:1px solid #e8e8eb;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-weight:600}.aioseo-add-template-tag:hover{background-color:#f3f4f5}.aioseo-add-template-tag svg.aioseo-plus{width:10px;height:10px;color:#005ae0}.aioseo-additional-pages .additional-pages-table{border:1px solid #d0d1d7;border-radius:3px;margin-bottom:20px}.aioseo-additional-pages .additional-pages-table .page-priority{max-width:110px}.aioseo-additional-pages .additional-pages-table .page-frequency{max-width:166px}.aioseo-additional-pages .additional-pages-table .page-last-modified{max-width:155px}.aioseo-additional-pages .additional-pages-table .page-actions{max-width:20px}.aioseo-additional-pages .additional-pages-table .page-actions .aioseo-tooltip{display:inline-block;margin:0}.aioseo-additional-pages .additional-pages-table .pages-header{height:50px;display:flex;font-size:14px;padding:0 30px;align-items:center;border-bottom:1px solid #d0d1d7}.aioseo-additional-pages .additional-pages-table .pages-header>div{flex:1 0 auto}.aioseo-additional-pages .additional-pages-table .pages-rows{font-size:14px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row{background-color:#fff;height:70px;display:flex;align-items:center;padding:0 30px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row:last-of-type{border-radius:0 0 3px 3px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row.even{background-color:#f9f9fa}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row>div{flex:1 0 auto;padding-left:30px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row>div:last-child{padding-left:0}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row .page-actions svg.aioseo-trash{width:20px;height:20px;color:#8c8f9a;cursor:pointer;transition:color .1s ease}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row .page-actions svg.aioseo-trash:hover{color:#df2a4a}.aioseo-additional-pages svg.aioseo-circle-plus{width:14px;height:14px;margin-left:10px}.aioseo-alert{position:relative;border-radius:3px;padding:24px;font-size:16px}.aioseo-alert .aioseo-alert-close{cursor:pointer;position:absolute;top:-9px;left:-9px;width:18px;height:18px;border-radius:50%;padding:5px;display:inline-flex;justify-content:center;align-content:center}.aioseo-alert .aioseo-alert-close svg{width:100%;height:100%}.aioseo-alert.blue{border:1px solid #005ae0;background-color:#f2f7fd}.aioseo-alert.blue .aioseo-alert-close{background-color:#005ae0;color:#fff}.aioseo-alert.green{border:1px solid #00aa63;background-color:#f2fdf8}.aioseo-alert.green .aioseo-alert-close{background-color:#00aa63;color:#fff}.aioseo-alert.red{border:1px solid #df2a4a;background-color:#fbe9ec}.aioseo-alert.red .aioseo-alert-close{background-color:#df2a4a;color:#fff}.aioseo-alert.yellow{border:1px solid #f18200;background-color:#fcfae8}.aioseo-alert.yellow .aioseo-alert-close{background-color:#f18200;color:#fff}.aioseo-alert.no-border{border-width:0}.aioseo-alert.text-center{text-align:center}.aioseo-analyze-competitor-site-score{border:1px solid #00aa63;border-radius:3px;color:#00aa63;font-size:14px;padding:0 8px;height:24px;display:inline-flex;align-items:center;justify-content:center;margin-left:14px}.aioseo-analyze-competitor-site-score.red{color:#df2a4a;border-color:#df2a4a}.aioseo-analyze-competitor-site-score.orange{color:#f18200;border-color:#f18200}.aioseo-animated-dannie{display:flex;align-content:center;align-items:center;justify-content:center}.aioseo-animated-dannie svg{max-width:250px}.aioseo-blur{filter:blur(3px);pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.aioseo-card{color:#141b38;background-color:#fff;border:1px solid #e8e8eb;box-shadow:0 2px 5px rgba(0,0,0,.05);margin:30px 0}@media only screen and (max-width:782px){.aioseo-card{margin:20px 0}}.aioseo-card svg.aioseo-circle-question-mark{width:17px;height:17px;color:#8c8f99;transition:background-color .2s ease}.aioseo-card svg.aioseo-circle-question-mark:hover{color:#5a5c65}.aioseo-card .header{display:flex;align-items:center;height:70px;padding:0 30px;font-weight:600;font-size:18px;border-bottom:1px solid #e8e8eb}.aioseo-card .header .header-icon svg{width:24px;height:24px;margin-left:16px}.aioseo-card .header .text{flex:1 0 auto;display:flex;align-items:center}.aioseo-card .header .text svg.aioseo-circle-question-mark{cursor:pointer;width:17px;height:17px}.aioseo-card .header .text .aioseo-pro-badge{margin-right:10px}.aioseo-card .header .text .card-score{display:flex;flex:1;align-items:center;justify-content:flex-end;padding-left:18px;font-size:13px}.aioseo-card .header .text .card-score.green{color:#00aa63}.aioseo-card .header .text .card-score.orange{color:#f18200}.aioseo-card .header .text .card-score.red{color:#df2a4a}.aioseo-card .header .text .card-score svg{margin-left:7px}.aioseo-card .header svg.aioseo-caret{width:24px;height:24px;cursor:pointer;transition:transform .3s}.aioseo-card .header svg.aioseo-caret.rotated{transform:rotate(-180deg)}.aioseo-card .content{padding:30px;position:relative}.aioseo-card div.aioseo-settings-row:last-child{margin-bottom:0;border-bottom:none;padding-bottom:0}.aioseo-copy-block{display:flex}.aioseo-copy-block .message{background-color:#fff;min-height:56px;display:flex;align-items:center;border:1px solid #dcdde1;border-radius:0 3px 3px 0;padding:10px 24px;font-weight:600}.aioseo-copy-block .copy-tooltip{display:flex}.aioseo-copy-block .copy{background-color:#fff;min-height:56px;display:flex;align-items:center;border:1px solid #dcdde1;border-right-width:0;border-radius:3px 0 0 3px;padding:10px 16px;font-weight:600;cursor:pointer}.aioseo-copy-block .copy:hover svg.aioseo-copy{color:#a7a7a7}.aioseo-copy-block .copy svg.aioseo-copy{width:20px;height:20px;color:#dadada}.aioseo-copy-block .copy svg.aioseo-circle-check-solid{width:20px;height:20px;color:#00aa63}.aioseo-exclude-posts{display:flex}.aioseo-exclude-posts .aioseo-select{max-width:600px;display:inline-block;margin-left:10px}.aioseo-exclude-posts .aioseo-select .multiselect__option{display:flex}.aioseo-exclude-posts .aioseo-select .multiselect__option--highlight .option-title{color:#005ae0}.aioseo-exclude-posts .option{flex:1 0 auto}.aioseo-exclude-posts .option .option-title{font-size:16px;color:#141b38}.aioseo-exclude-posts .option .option-title .search-term{font-weight:600}.aioseo-exclude-posts .option .option-details{display:flex;align-items:center;font-size:14px;color:#8c8f9a}.aioseo-exclude-posts .option .option-details span{margin-left:15px}.aioseo-exclude-posts .option-permalink{display:flex;align-items:center}.aioseo-exclude-posts .option-permalink svg.aioseo-external{width:15px;height:15px;color:#434960}.aioseo-exclude-posts .multiselect-toggle{padding:10px 13px;width:40px;position:absolute;height:36px;left:2px;top:2px;text-align:center;z-index:1}.aioseo-exclude-posts .multiselect-toggle svg.aioseo-add-plus{width:14px;height:14px;color:#000}.aioseo-facebook-preview{background-color:#f0f2f5;padding:30px;display:flex;align-items:center;justify-content:center}.aioseo-facebook-preview .facebook-post{width:100%;max-width:525px;border-radius:10px;box-shadow:0 2px 5px rgba(0,0,0,.1);background-color:#fff}.aioseo-facebook-preview .facebook-post .facebook-header{height:65px;padding:0 18px;display:flex;align-items:center}.aioseo-facebook-preview .facebook-post .facebook-header .profile-photo{overflow:hidden;width:40px;height:40px;border:1px solid #e8e8eb;border-radius:50%}.aioseo-facebook-preview .facebook-post .facebook-header .profile-photo img{height:100%;width:100%}.aioseo-facebook-preview .facebook-post .facebook-header .poster{margin-right:10px;flex:1 0 auto}.aioseo-facebook-preview .facebook-post .facebook-header .poster .poster-name{font-size:15px;color:#050505;font-weight:500}.aioseo-facebook-preview .facebook-post .facebook-header .poster .poster-date{color:#65676b;font-size:13px}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis{display:inline-flex;align-items:center}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis div{background-color:#5e666f;width:4px;height:4px;border-radius:50%;margin:0 2px}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis div:first-child{margin-right:0}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis div:last-child{margin-left:0}.aioseo-facebook-preview .facebook-post .facebook-content{display:flex;flex-direction:column}.aioseo-facebook-preview .facebook-post .facebook-content img{width:100%;height:auto}.aioseo-facebook-preview .facebook-post .facebook-content.vertical{flex-direction:row}.aioseo-facebook-preview .facebook-post .facebook-content.vertical img{max-width:158px;max-height:158px;width:auto;height:auto}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description{flex:1;background-color:#f2f3f5;padding:9px 13px;color:#606770}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description .site-domain{font-size:13px;text-transform:uppercase;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description .site-title{color:#1d2129;font-size:17px;font-weight:600;margin:5px 0}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description .site-description{font-size:14px}.aioseo-facebook-preview .facebook-post .facebook-footer{height:24px}.aioseo-feature-card{height:100%;border:1px solid #e8e8eb;background:#fff;box-shadow:0 2px 5px rgba(0,0,0,.05);color:#141b38;display:flex;flex-direction:column}.aioseo-feature-card .feature-card-body{padding:30px 30px 20px;flex:1}.aioseo-feature-card .feature-card-body.static{padding:30px}.aioseo-feature-card .feature-card-body .feature-card-header{display:flex;align-items:center;font-size:18px;font-weight:600;margin-bottom:16px}.aioseo-feature-card .feature-card-body .feature-card-header img,.aioseo-feature-card .feature-card-body .feature-card-header svg{width:28px;height:28px;margin-left:10px}.aioseo-feature-card .feature-card-body .feature-card-description{color:#434960;font-size:15px}.aioseo-feature-card .feature-card-body .feature-card-description .learn-more{margin-top:10px}.aioseo-feature-card .feature-card-footer{padding:15px}.aioseo-feature-card .feature-card-footer:not(.upgrade-required){border:2px solid #fff;background-color:#f9f9fa;padding:12px;min-height:43px}.aioseo-feature-card .feature-card-footer .feature-card-install-activate{display:flex;align-items:center;justify-content:flex-end;height:30px;position:relative}.aioseo-feature-card .feature-card-footer .feature-card-install-activate .aioseo-loading-spinner{position:absolute;right:0}.aioseo-feature-card .feature-card-footer .feature-card-install-activate .status{font-weight:600;font-size:14px}.aioseo-feature-card .feature-card-footer .feature-card-install-activate .aioseo-toggle .toggle-content{margin-left:0;margin-right:10px}.aioseo-feature-card .feature-card-footer .feature-card-upgrade-cta{display:flex;align-items:center;justify-content:flex-end}.aioseo-feature-card .feature-card-footer.installed .feature-card-install-activate .status{color:#8c8f9a}.aioseo-setup-wizard-container{margin-top:30px;margin-bottom:50px;padding:30px;color:#fff;position:relative;background-color:#005ae0}@media only screen and (max-width:782px){.aioseo-setup-wizard-container{margin-top:20px}}.aioseo-setup-wizard-container p{color:#fff}.aioseo-setup-wizard-container .getting-started-wrapper{display:flex}.aioseo-setup-wizard-container .getting-started-wrapper .video{flex:0 0 533px;margin:20px 20px 0}.aioseo-setup-wizard-container .getting-started-wrapper .video .wrapper{padding-bottom:56.25%;margin-bottom:-60px;position:relative;height:0}.aioseo-setup-wizard-container .getting-started-wrapper .video .wrapper iframe{width:100%;height:100%;position:absolute;top:0;right:0}@media only screen and (max-width:1350px){.aioseo-setup-wizard-container .getting-started-wrapper .video{flex:0 0 593px;margin:20px;align-self:center}.aioseo-setup-wizard-container .getting-started-wrapper .video .wrapper{margin-bottom:0}.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions .aioseo-col{flex-basis:100%;max-width:100%;justify-content:center}}@media only screen and (max-width:1300px){.aioseo-setup-wizard-container .getting-started-wrapper{flex-direction:row;flex-wrap:wrap}.aioseo-setup-wizard-container .getting-started-wrapper .video{margin:20px 0 -60px}.aioseo-setup-wizard-container .getting-started-wrapper .text,.aioseo-setup-wizard-container .getting-started-wrapper .video{flex-basis:100%;width:100%}.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions{justify-content:center}.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions .aioseo-col{flex-basis:inherit;max-width:inherit;justify-content:center}}@media only screen and (max-width:782px){.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions .aioseo-col{flex-basis:100%;max-width:100%;justify-content:center}}.aioseo-setup-wizard-container .aioseo-row{position:relative;z-index:1}.aioseo-setup-wizard-container .wizard-actions .aioseo-col{display:flex;align-items:center}.aioseo-setup-wizard-container .wizard-actions .aioseo-button svg{width:16px;height:16px;margin-left:10px}.aioseo-setup-wizard-container .setup-wizard-bg{width:100%;height:100%;overflow:hidden;z-index:0;position:absolute;top:0;right:0}.aioseo-setup-wizard-container .setup-wizard-bg svg.aioseo-setup-wizard-bg,.aioseo-setup-wizard-container .setup-wizard-bg svg.aioseo-setup-wizard-bg rect{width:auto;height:100%}.aioseo-setup-wizard-container .close-wizard{color:#fff;width:20px;height:20px;position:absolute;left:20px;top:20px;z-index:1;display:flex;align-items:center;justify-content:center}.aioseo-setup-wizard-container .close-wizard:hover{color:#ccc}.aioseo-setup-wizard-container .close-wizard svg.aioseo-close{width:12px;height:12px;cursor:pointer;color:#fff}.aioseo-setup-wizard-container .close-wizard svg.aioseo-close:hover{color:#dadada}.aioseo-setup-wizard-container p.how-to-get-started{margin:0}.aioseo-setup-wizard-container p.welcome-text{line-height:1.6}.aioseo-setup-wizard-container h2{color:#fff;line-height:1.4}.aioseo-setup-wizard-container a{color:#fff}.aioseo-setup-wizard-container svg.aioseo-book{width:20px;height:20px;margin:0 0 0 10px}.aioseo-setup-wizard-container .getting-started-video{padding-left:20px;margin-bottom:-60px;position:relative;height:0;padding-bottom:56.25%}.aioseo-setup-wizard-container .getting-started-video iframe{width:100%;height:100%;position:absolute;top:0;right:0}.aioseo-google-search-preview{padding:32px 30px;border:1px solid #e8e8eb}.aioseo-google-search-preview .domain{font-size:14px;line-height:1.3;color:#3c4043;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aioseo-google-search-preview .site-title{font-size:20px;line-height:1.3;color:#1a0dab;margin:3px 0}.aioseo-google-search-preview .meta-description{max-width:600px;font-size:14px;line-height:1.4;color:#52565a}.edit-post-sidebar .domain{font-size:13px}.edit-post-sidebar .site-title{font-size:16px}.edit-post-sidebar .meta-description{font-size:12px}.aioseo-modal-content .domain,.aioseo-modal-content .meta-description{font-size:14px}.aioseo-modal-content .site-title{font-size:20px}html:not([data-scroll="0"]) .aioseo-header{box-shadow:0 2px 5px rgba(0,0,0,.05);transition:box-shadow .6s}.aioseo-header{position:fixed;z-index:1051;top:0;left:0;right:0;background-color:#fff;height:72px;color:#141b38}.aioseo-header .mascot{width:35px;height:auto;margin-left:10px}.aioseo-header .aioseo-header-content{padding:0;display:flex;height:72px;align-items:center}.aioseo-header .aioseo-header-content svg.aioseo-logo{height:26px;margin-left:10px}.aioseo-header .aioseo-header-content .spacer{display:inline-flex;width:26.25px;height:0;border:1px solid #d0d1d7;transform:rotate(72.26deg)}.aioseo-header .aioseo-header-content .page-name{display:inline-flex;margin-right:10px;font-size:18px;font-weight:400;flex:1 0 auto}.aioseo-header .aioseo-header-content .header-actions{display:flex}.aioseo-header .aioseo-header-content .header-actions .round{position:relative;background-color:#f3f4f5;border-radius:50%;width:40px;height:40px;display:flex;align-items:center;justify-content:center;margin-right:10px;cursor:pointer;transition:background-color .2s ease}.aioseo-header .aioseo-header-content .header-actions .round svg{width:20px;height:20px}.aioseo-header .aioseo-header-content .header-actions .round:hover{background-color:#e5e7e9}.aioseo-header .aioseo-header-content .header-actions .number{position:absolute;background-color:#df2a4a;width:16px;height:16px;font-weight:600;font-size:10px;color:#fff;top:-8px;right:50%;transform:translateX(50%);margin:0;-webkit-animation:bounce 2s 5;animation:bounce 2s 5}.aioseo-header .aioseo-header-content .header-actions .number:hover{background-color:#df2a4a}@-webkit-keyframes bounce{0%,25%,50%,75%,to{transform:translateX(50%) translateY(0)}40%{transform:translateX(50%) translateY(-8px)}60%{transform:translateX(50%) translateY(-4px)}}@keyframes bounce{0%,25%,50%,75%,to{transform:translateX(50%) translateY(0)}40%{transform:translateX(50%) translateY(-8px)}60%{transform:translateX(50%) translateY(-4px)}}body.modal-open{overflow:hidden}.aioseo-help{display:block;position:fixed;top:0;bottom:0;right:0;left:0;height:100%;width:100vw;background-color:#fff;color:#8c8f9a;opacity:0;max-height:100vh;overflow-y:auto;transition:opacity .3s ease-in 0s;z-index:-999}.aioseo-help.visible{opacity:1;z-index:100000}.aioseo-help .aioseo-help-header{background:#fff;width:100%;height:60px;position:fixed;z-index:1;top:0;right:0}.aioseo-help .aioseo-help-docs{margin-bottom:25px;display:none}.aioseo-help .aioseo-help-docs li{padding:0 4px 14px 0;margin:0}.aioseo-help .aioseo-help-docs .aioseo-help-docs-viewall{margin:10px 0 0}.aioseo-help .aioseo-help-docs .aioseo-help-additional-docs{display:none}.aioseo-help .aioseo-help-docs .aioseo-help-additional-docs.opened{display:block}.aioseo-help .aioseo-help-docs .icon .aioseo-description{width:20px;margin-top:0;position:relative;top:5px;right:-5px;color:#8c8f9a}.aioseo-help .help-content{background-color:#fff;width:100%;max-width:740px;margin:0 auto 50px;padding:0 20px;box-sizing:border-box;z-index:1}.aioseo-help .help-content .aioseo-help-category{border-top:1px solid #e8e8eb;margin:0}.aioseo-help .help-content .aioseo-help-category:last-child{border-bottom:1px solid #e8e8eb}.aioseo-help .help-content .aioseo-help-category header{display:block;position:relative;cursor:pointer;width:100%;height:68px}.aioseo-help .help-content .aioseo-help-category header .title{display:block;font-size:16px;color:#8c8f9a;font-weight:600;padding:23px 30px 23px 11px}.aioseo-help .help-content .aioseo-help-category .folder-open{position:absolute;top:24px;width:20px;height:20px;color:#8c8f9a}.aioseo-help .help-content .aioseo-help-category .dashicons-arrow-right-alt2{position:absolute;top:20px;left:0;transition:transform .3s ease-out}.aioseo-help .help-content .aioseo-help-category.opened .aioseo-help-docs{display:block}.aioseo-help .help-content .aioseo-help-category.opened .dashicons-arrow-right-alt2{transform:rotate(-90deg)}.aioseo-help .help-content #aioseo-help-search{position:relative;background-color:#fff;text-align:center;top:0;padding:74px 0 50px}.aioseo-help .help-content #aioseo-help-result .aioseo-help-docs{display:block}.aioseo-help .help-content #aioseo-help-footer{display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:center;margin:50px 0 0}@media screen and (max-width:750px){.aioseo-help .help-content #aioseo-help-footer{display:block}}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block{box-sizing:border-box;max-width:325px;border:1px solid #8c8f9a;border-radius:6px;text-align:center}@media screen and (max-width:750px){.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block{max-width:100%}}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block:first-child{margin-left:20px}@media screen and (max-width:750px){.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block:first-child{margin:0 0 20px}}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a{display:block;padding:25px;text-decoration:none;color:#8c8f9a}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a h3{color:#8c8f9a}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a span{font-size:16px;color:#005ae0;text-decoration:underline}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a:hover span{text-decoration:none}.aioseo-help .help-content #aioseo-help-footer .aioseo-description,.aioseo-help .help-content #aioseo-help-footer .aioseo-support{width:48px;margin-top:0;color:#8c8f9a}#aioseo-help-logo{position:fixed;width:132px;height:26px;top:20px;right:20px;z-index:2}#aioseo-help-close{position:fixed;width:20px;height:20px;top:30px;left:30px;cursor:pointer;opacity:.7;transition:all .05s;z-index:2}@media screen and (max-width:750px){#aioseo-help-close{top:20px;left:20px}}.aioseo-html-tags-editor .add-tags{display:flex;align-items:center;margin:20px 0}.aioseo-html-tags-editor .add-tags div{margin-left:10px}.aioseo-html-tags-editor .add-tags a{font-size:14px}.aioseo-html-tags-editor .add-tags a.no-underline{padding-right:10px}.aioseo-loading-spinner{width:35px;height:35px;position:absolute}.aioseo-loading-spinner .double-bounce1,.aioseo-loading-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#fff;opacity:.6;position:absolute;top:0;right:0;-webkit-animation:sk-bounce 1.3s ease-in-out infinite;animation:sk-bounce 1.3s ease-in-out infinite}.aioseo-loading-spinner.dark .double-bounce1,.aioseo-loading-spinner.dark .double-bounce2{background-color:#8c8f9a}.aioseo-loading-spinner .double-bounce2{-webkit-animation-delay:-.65s;animation-delay:-.65s}@-webkit-keyframes sk-bounce{0%,to{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,to{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}body.vue-build{margin:0}body.vue-build .aioseo-app{min-height:calc(100vh - 88px)}body.vue-build .aioseo-app .aioseo-main{padding-bottom:30px}body.aioseo-setup-wizard{margin:0;padding:0}body.aioseo-setup-wizard .aioseo-app{min-height:100vh;width:100%}body[class*=page_aioseo] .aioseo-header,body[class*=page_aioseo] .aioseo-notifications .overlay{right:160px}body[class*=page_aioseo].folded .aioseo-header,body[class*=page_aioseo].folded .aioseo-notifications .overlay{right:36px}body[class*=page_aioseo] #wpcontent{padding:0;background-color:#f3f4f5}body[class*=page_aioseo] .update-nag{display:none}body[class*=page_aioseo].admin-bar .aioseo-app{min-height:calc(100vh - 185px)}body[class*=page_aioseo].admin-bar.aioseo-has-bar .aioseo-app{min-height:calc(100vh - 225px)}body[class*=page_aioseo].admin-bar .aioseo-header,body[class*=page_aioseo].admin-bar .aioseo-notifications .notification-menu,body[class*=page_aioseo].admin-bar .aioseo-notifications .overlay{top:32px}body[class*=page_aioseo] .aioseo-app{min-height:calc(100vh - 153px)}body[class*=page_aioseo].aioseo-has-bar .aioseo-app{min-height:calc(100vh - 193px)}body[class*=page_aioseo].aioseo-has-bar .aioseo-header{height:112px}@media screen and (max-width:782px){body[class*=page_aioseo].aioseo-has-bar .aioseo-header{height:132px}}@media screen and (max-width:960px){body[class*=page_aioseo].auto-fold .aioseo-header,body[class*=page_aioseo].auto-fold .aioseo-notifications .overlay{right:36px}}@media screen and (max-width:782px){body[class*=page_aioseo] #wpbody-content{padding-bottom:20px}body[class*=page_aioseo].admin-bar .aioseo-app{min-height:calc(100vh - 199px)}body[class*=page_aioseo].admin-bar .aioseo-header,body[class*=page_aioseo].admin-bar .aioseo-notifications .notification-menu,body[class*=page_aioseo].admin-bar .aioseo-notifications .overlay{top:46px}body[class*=page_aioseo] .aioseo-header,body[class*=page_aioseo] .aioseo-notifications .overlay,body[class*=page_aioseo].auto-fold .aioseo-header,body[class*=page_aioseo].auto-fold .aioseo-notifications .overlay{right:0}}@media screen and (max-width:600px){body[class*=page_aioseo].admin-bar .aioseo-header,body[class*=page_aioseo].admin-bar .aioseo-notifications .menu,body[class*=page_aioseo].admin-bar .aioseo-notifications .overlay{position:absolute;top:46px}}body.aioseo-has-bar .aioseo-app .aioseo-main>.aioseo-container{margin-top:128px}@media screen and (max-width:782px){body.aioseo-has-bar .aioseo-app .aioseo-main>.aioseo-container{margin-top:148px}}.aioseo-app{box-sizing:border-box;background-color:#f3f4f5}.aioseo-app .route-fade-enter-active,.aioseo-app .route-fade-leave-active{transition:all .2s}.aioseo-app .route-fade-enter,.aioseo-app .route-fade-leave-active{opacity:0}.aioseo-app .route-fade-enter{transform:translateX(-30px)}.aioseo-app .route-fade-leave-active{transform:translateX(30px)}.aioseo-app *,.aioseo-app :after,.aioseo-app :before{box-sizing:inherit}.aioseo-app * :not(.aioseo-button):not(.aioseo-input),.aioseo-app :after :not(.aioseo-button):not(.aioseo-input),.aioseo-app :before :not(.aioseo-button):not(.aioseo-input){line-height:1.4}.aioseo-app p{font-size:16px}.aioseo-app a:not(.aioseo-button){color:#005ae0}.aioseo-app a:not(.aioseo-button).text-white{color:#fff}.aioseo-app a:not(.aioseo-button).no-underline,.aioseo-app a:not(.aioseo-button):hover{text-decoration:none}.aioseo-app h2{font-size:32px;margin:0}.aioseo-app .aioseo-main{height:100%}.aioseo-app .aioseo-main>.aioseo-container{margin-top:88px}.aioseo-app .aioseo-main .save-changes{display:flex;justify-content:flex-end}.aioseo-app .d-flex{display:flex}.aioseo-app .aioseo-section-description{font-size:16px;color:#141b38;line-height:1.8;padding-bottom:30px}.aioseo-app .aioseo-description-text{font-size:14px;line-height:1.8;color:#141b38}.aioseo-app .aioseo-description-text.aioseo-error{color:#df2a4a}.aioseo-app .aioseo-description{font-size:14px;line-height:1.8;margin:8px 0 0;color:#141b38}.aioseo-app .aioseo-description.no-margin{margin:0}.aioseo-app .aioseo-description.aioseo-error{color:#df2a4a}.aioseo-app .max-recommended-count{color:#434960;text-align:left;margin-top:10px;font-size:14px}.aioseo-app .max-recommended-count strong.error{color:#df2a4a}.aioseo-app .popper{text-align:right;font-size:12px;padding:20px;background-color:#fff;border:none;border-radius:3px;box-shadow:0 3px 4.8px 0 rgba(32,71,102,.27);z-index:9999;max-width:350px;line-height:1.4}.aioseo-app .popper.action{padding:8px 12px;background-color:#141b38;color:#fff}.aioseo-app .popper.action .popper__arrow{border-top-color:#141b38}.aioseo-app .popper[x-placement^=bottom]{box-shadow:0 -2px 4.8px 0 rgba(32,71,102,.27)}.aioseo-app .popper .aioseo-description{margin:0}.aioseo-app .aioseo-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#00aa63}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#00aa63}to{background-color:#fff}}.aioseo-seo-site-score .aioseo-blur{display:flex;align-items:center}.aioseo-seo-site-score .aioseo-seo-site-score-cta{position:absolute;right:50%;top:50%;transform:translateX(50%) translateY(-50%);background-color:#fff;padding:24px 30px;border:1px solid #e8e8eb;box-shadow:0 2px 10px rgba(0,90,224,.2);color:#141b38;font-size:16px;font-weight:600;width:82%;max-width:500px;text-align:center}.aioseo-app .aioseo-upgrade-bar{height:40px;background-color:#00aa63;display:flex;align-items:center;justify-content:center;color:#fff;font-size:13px;padding:0 40px 0 14px}.aioseo-app .aioseo-upgrade-bar .upgrade-text{display:flex;align-items:center;flex:1;justify-content:center}.aioseo-app .aioseo-upgrade-bar strong{font-weight:600}.aioseo-app .aioseo-upgrade-bar svg.aioseo-logo-gear{width:20px;height:20px;min-width:20px;margin-left:14px}.aioseo-app .aioseo-upgrade-bar svg.aioseo-close{cursor:pointer;width:12px;height:12px}.aioseo-app .aioseo-upgrade-bar a{color:#fff;text-decoration:underline}.aioseo-app .aioseo-upgrade-bar a:hover{text-decoration:none}@media screen and (max-width:782px){.aioseo-app .aioseo-upgrade-bar{padding:0 10px;height:60px}}.field-description[data-v-2bfc1de2]{display:inline-block;margin-top:10px;font-size:14px}.aioseo-address-wrapper[data-v-403ef8f7]{display:flex;max-width:500px}.field-description[data-v-403ef8f7]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-403ef8f7]{margin-top:8px}.field-description[data-v-a0a894b8]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-a0a894b8]{margin-top:8px}.field-description[data-v-4fb4e044]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-4fb4e044]{margin-top:8px}.field-description[data-v-85733554]{display:inline-block;margin-top:10px;font-size:14px}.field-description[data-v-080c623c]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-080c623c]{margin-top:8px}.field-description[data-v-78337de7]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-78337de7]{margin-top:8px}.aioseo-general-settings .more-tooltip-text strong{color:#00aa63}.aioseo-general-settings .license-cta-box{border-radius:3px;background-color:#f2f7fd;padding:20px;max-width:630px;margin:10px 0 30px}.aioseo-general-settings .license-cta-box a{color:#00aa63}.aioseo-general-settings .license-cta-box div{font-weight:600}.aioseo-general-settings .license-cta-box span{font-size:14px;font-style:italic}.aioseo-general-settings .license-key{margin-top:10px;display:flex;max-width:560px}.aioseo-general-settings .license-key .aioseo-input{margin-left:10px}.aioseo-app .aioseo-tabs.internal{margin-bottom:0}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation{margin-top:5px}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation .md-button{height:60px}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple{padding:0 25px}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple .md-ripple-wave{display:none}.aioseo-app .aioseo-tabs.skinny .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple{padding:0 16px}.aioseo-app .md-tabs{display:flex;flex-direction:column}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation{margin-top:2px;background:transparent;display:flex;position:relative;justify-content:flex-start}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation.md-elevation-0{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button{color:#141b38;max-width:264px;min-width:72px;height:60px;margin:0;border-radius:0;font-size:15px;font-weight:500;padding:0;display:inline-block;position:relative;overflow:hidden;outline:none;background:transparent;border:0;transition:.4s cubic-bezier(.4,0,.2,1);font-family:inherit;line-height:normal;text-decoration:none;vertical-align:top;white-space:nowrap}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:before{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;opacity:0;transition:.4s cubic-bezier(.4,0,.2,1);will-change:background-color,opacity;content:" "}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple{padding:0 18px;display:flex;justify-content:center;align-items:center;width:100%;height:100%;position:relative;z-index:5;overflow:hidden;-webkit-mask-image:radial-gradient(circle,#fff 100%,#000 0);mask-image:radial-gradient(circle,#fff 100%,#000 0)}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple .md-button-content{position:static;z-index:2}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:not([disabled]){cursor:pointer}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:not([disabled]):active:before,.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:not([disabled]):hover:before{background-color:currentColor;opacity:.12}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button.md-active{color:#005ae0}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button.md-active:focus{outline:none;box-shadow:none}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-tabs-indicator{height:2px;background-color:#005ae0;bottom:-2px;position:absolute;right:0;transform:translateZ(0);will-change:left,right}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-tabs-indicator.md-tabs-indicator-left{transition:right .3s cubic-bezier(.4,0,.2,1),left .35s cubic-bezier(.4,0,.2,1)}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-tabs-indicator.md-tabs-indicator-right{transition:left .3s cubic-bezier(.4,0,.2,1),right .35s cubic-bezier(.4,0,.2,.1)}.aioseo-app .aioseo-tabs{display:flex;border-bottom:2px solid #e8e8eb;position:relative;margin-bottom:38px}.aioseo-app .aioseo-tabs .save-changes{position:absolute;left:0;bottom:10px}.aioseo-app .aioseo-tabs .tab-score{display:inline-flex;align-items:center;justify-content:flex-end;font-size:11px;font-weight:700;padding-right:12px}.aioseo-app .aioseo-tabs .tab-score.green{color:#00aa63}.aioseo-app .aioseo-tabs .tab-score.orange{color:#f18200}.aioseo-app .aioseo-tabs .tab-score.red{color:#df2a4a}.aioseo-app .aioseo-tabs .tab-score svg{display:inline;margin-left:7px}.aioseo-app .aioseo-mobile-tabs{position:relative;height:40px;margin-top:20px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.aioseo-app .aioseo-mobile-tabs .active-tab{color:#005ae0;padding-right:18px;min-height:100%;display:flex;align-items:center;cursor:pointer}.aioseo-app .aioseo-mobile-tabs .active-tab div{position:relative}.aioseo-app .aioseo-mobile-tabs .active-tab div span{height:2px;background-color:#005ae0;bottom:-7px;position:absolute;right:-18px;left:-18px;z-index:10}.aioseo-app .aioseo-mobile-tabs .active-tab svg.aioseo-caret{width:24px;height:24px;position:relative;top:6px;cursor:pointer;transition:transform .3s}.aioseo-app .aioseo-mobile-tabs .active-tab svg.aioseo-caret.rotated{transform:rotate(-180deg)}.aioseo-app .aioseo-mobile-tabs .tab-dropdown{border:1px solid #e8e8eb;border-top:none}.aioseo-app .aioseo-mobile-tabs .tab-links{background:#fff;position:relative;z-index:3;padding:8px;width:100%;max-width:300px}@media screen and (max-width:782px){.aioseo-app .aioseo-mobile-tabs .tab-links{max-width:100%}}.aioseo-app .aioseo-mobile-tabs .tab-links a{padding:10px;display:block;color:#141b38;text-decoration:none}.aioseo-app .aioseo-mobile-tabs .tab-links a:hover{color:#005ae0}.md-tooltip{background-color:#141b38!important;color:#fff!important;border-radius:2px;padding:6px 12px;font-size:14px}.md-tooltip:after{content:"";position:absolute;top:100%;right:50%;margin-right:-5px;border:5px solid transparent;border-top-color:#141b38}.modal-mask{position:fixed;z-index:9998;top:0;right:0;width:100%;height:100%;background-color:rgba(20,27,56,.3);display:table;transition:opacity .3s ease}@media screen and (max-width:520px){.modal-mask{display:block;top:46px}}.modal-mask .modal-wrapper{display:table-cell;vertical-align:middle}@media screen and (max-width:520px){.modal-mask .modal-wrapper{display:block;height:100%}}.modal-mask .modal-wrapper .modal-container{width:100%;max-width:750px;max-height:90vh;overflow-y:hidden;overflow-x:hidden;margin:0 auto;background-color:#fff;box-shadow:0 10px 30px rgba(0,0,0,.15);transition:all .3s ease}@media screen and (max-width:520px){.modal-mask .modal-wrapper .modal-container{width:100%;max-width:100%;max-height:calc(100vh - 46px);height:100%}}.modal-mask .modal-wrapper .modal-container .modal-header{position:-webkit-sticky;position:sticky;top:0;z-index:15;padding:20px 40px 0 0;height:60px;font-size:20px;font-weight:700;line-height:1.4;border-bottom:1px solid #e8e8eb;background-color:#fff}@media screen and (max-width:520px){.modal-mask .modal-wrapper .modal-container .modal-header{padding:15px 20px 0 0}}.modal-mask .modal-wrapper .modal-container .modal-header button.close{position:absolute;left:11px;top:11px;width:24px;height:24px;background-color:#fff;border:none;display:flex;align-items:center}.modal-mask .modal-wrapper .modal-container .modal-header button.close svg.aioseo-close{cursor:pointer;width:14px;height:14px}.modal-mask .modal-wrapper .modal-container .modal-body .aioseo-post-general,.modal-mask .modal-wrapper .modal-container .modal-body .aioseo-post-social{height:calc(90vh - 120px);max-height:600px;overflow-y:auto;overflow-x:hidden}@media screen and (max-width:520px){.modal-mask .modal-wrapper .modal-container .aioseo-modal-content,.modal-mask .modal-wrapper .modal-container .aioseo-modal-content>.component-wrapper,.modal-mask .modal-wrapper .modal-container .modal-body,.modal-mask .modal-wrapper .modal-container .modal-body>div{height:100%}.modal-mask .modal-wrapper .modal-container .aioseo-modal-content>.component-wrapper{display:flex;align-items:flex-end}.modal-mask .modal-wrapper .modal-container .aioseo-post-general,.modal-mask .modal-wrapper .modal-container .aioseo-post-social{height:100%!important;max-height:100%!important;padding:20px!important}.modal-mask .modal-wrapper .modal-container .aioseo-post-general .mobile-radio-buttons,.modal-mask .modal-wrapper .modal-container .aioseo-post-social .mobile-radio-buttons{margin-bottom:0}.modal-mask .modal-wrapper .modal-container .aioseo-add-template-tag{display:none}.modal-mask .modal-wrapper .modal-container .tab-facebook .aioseo-settings-row:last-of-type,.modal-mask .modal-wrapper .modal-container .tab-twitter .aioseo-settings-row:last-of-type{margin-bottom:64px!important;padding-bottom:32px!important}}.modal-enter,.modal-leave-active{opacity:0}.modal-enter .modal-container,.modal-leave-active .modal-container{transform:scale(1.1)}.aioseo-notification{margin-bottom:20px}.aioseo-notification>div{display:flex;align-items:flex-start;padding-bottom:10px;border-bottom:1px solid #e8e8eb}.aioseo-notification>div .icon{margin-left:20px}.aioseo-notification>div .icon svg{width:20px;height:20px;color:#00aa63}.aioseo-notification>div .icon svg.warning{color:#f18200}.aioseo-notification>div .icon svg.info{color:#005ae0}.aioseo-notification>div .icon svg.success{color:#00aa63}.aioseo-notification>div .icon svg.error{color:#df2a4a}.aioseo-notification>div .body{margin-left:20px;flex:1}.aioseo-notification>div .body .title{font-size:16px;font-weight:600;color:#141b38;margin-bottom:7px;display:flex;align-items:center}.aioseo-notification>div .body .title div:first-child{flex:1;margin-left:5px;line-height:1.4}.aioseo-notification>div .body .title .date{font-weight:400;color:#8c8f9a;font-size:12px}.aioseo-notification>div .body .notification-content{margin-bottom:10px;max-width:400px}.aioseo-notification>div .body .actions{flex-wrap:wrap;display:flex;align-items:center}.aioseo-notification>div .body .actions>*{margin-bottom:10px}.aioseo-notification>div .body .actions .aioseo-button{margin-left:20px}.aioseo-notification>div .body .actions .dismiss{color:#8c8f9a;font-size:14px}.aioseo-notification-cards .aioseo-notification:last-child>div{border-bottom:none;margin-bottom:none}.aioseo-notification-cards .no-notifications{display:flex;align-items:center;flex-direction:column;padding-top:100px;font-size:16px;color:#8c8f9a}.aioseo-notification-cards .no-notifications img{width:30%;height:auto}.aioseo-notification-cards .no-notifications .great-scott{margin:20px 0 10px;font-size:24px;font-weight:600;color:#434960}.aioseo-notification-cards .no-notifications .no-new-notifications{margin-bottom:10px}body.aioseo-show-notifications .aioseo-main{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.aioseo-notifications a.dismiss{color:#8c8f9a;font-size:14px}.aioseo-notifications .notification-menu{height:100%;width:100%;max-width:570px;position:fixed;z-index:1053;top:0;left:0;bottom:0;background-color:#fff;overflow-x:hidden;transition:.5s}.aioseo-notifications .notification-menu .notification-header{height:70px;display:flex;align-items:center;padding:0 30px;color:#fff;background-color:#005ae0}.aioseo-notifications .notification-menu .notification-header .new-notifications{font-size:18px;font-weight:600}.aioseo-notifications .notification-menu .notification-header .dismissed-notifications{margin-right:25px;flex:1 1 auto}.aioseo-notifications .notification-menu .notification-header .dismissed-notifications a{font-size:14px;color:#fff}.aioseo-notifications .notification-menu .notification-header svg.aioseo-close{width:14px;height:14px;cursor:pointer}.aioseo-notifications .notification-menu .notification-header svg.aioseo-close:hover{color:#ccc}.aioseo-notifications .notification-menu .notification-cards{padding:30px;height:calc(100% - 192px);overflow:auto}.aioseo-notifications .notification-menu .notification-footer{height:90px;padding:30px;display:flex;align-items:center}.aioseo-notifications .notification-menu .notification-footer div.pagination{flex:1;display:flex;align-items:center}.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number{font-size:13px;color:#141b38;background:#e8e8eb;height:30px;width:30px;display:flex;align-items:center;justify-content:center;border-radius:2px;margin-left:4px;cursor:pointer}.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number:last-child{margin-left:0}.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number.active,.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number:hover{color:#fff;background-color:#005ae0}.aioseo-notifications .overlay{position:fixed;z-index:1052;top:0;left:0;bottom:0;right:160px;background-color:#141b38;opacity:.5;transition:.5s}.aioseo-notifications .notifications-fade-enter-active,.aioseo-notifications .notifications-fade-leave-active{transition:opacity .5s}.aioseo-notifications .notifications-fade-enter,.aioseo-notifications .notifications-fade-leave-to{opacity:0}.aioseo-notifications .notifications-slide-enter-active,.aioseo-notifications .notifications-slide-leave-active{transition:all .5s ease-in-out}.aioseo-notifications .notifications-slide-enter,.aioseo-notifications .notifications-slide-leave-to{left:-570px}.aioseo-post-type-options-toggle{margin-top:20px}.aioseo-priority-score{max-width:350px}.aioseo-priority-score .header-row{font-size:14px}.aioseo-pro-badge{height:24px;border-radius:3px;background:#e8e8eb;color:#434960;font-size:14px;font-weight:600;display:inline-flex;padding:0 8px;align-items:center}.aioseo-score-settings{display:flex;align-items:center;padding-bottom:14px}.aioseo-score-settings svg{margin-left:7px}.aioseo-score-settings span{margin-left:12px}.aioseo-score-button{display:inline-block;padding:5px 8px;font-size:14px;font-weight:700;color:#a1a1a1;border:1px solid #a1a1a1;border-radius:3px}.aioseo-score-button.score-none,.aioseo-score-button.score-red{border-color:#df2a4a;color:#df2a4a!important}.aioseo-score-button.score-orange{border-color:#f18200;color:#f18200!important}.aioseo-score-button.score-green{border-color:#00aa63;color:#00aa63!important}.aioseo-score-button.classic-editor{background:#fff!important;display:inline-block!important;height:auto!important}.aioseo-score-button.classic-editor span{margin-left:0}.aioseo-seo-site-analysis-result{border:1px solid #dcdde1;margin-top:10px}.aioseo-seo-site-analysis-result .result-header{height:66px;padding:0 20px;display:flex;align-items:center}.aioseo-seo-site-analysis-result .result-header .result-icon{display:flex;align-items:center;margin-left:16px}.aioseo-seo-site-analysis-result .result-header .result-icon svg{width:24px;height:24px;color:#8c8f9a}.aioseo-seo-site-analysis-result .result-header .result-icon svg.passed{color:#00aa63}.aioseo-seo-site-analysis-result .result-header .result-icon svg.error{color:#df2a4a}.aioseo-seo-site-analysis-result .result-header .result-icon svg.warning{color:#005ae0}.aioseo-seo-site-analysis-result .result-header .result-content{font-size:16px;font-weight:600;flex:1}.aioseo-seo-site-analysis-result .result-header .result-toggle{width:30px;height:26px;border:1px solid #dcdde1;border-radius:3px;display:flex;align-items:center;justify-content:center;cursor:pointer}.aioseo-seo-site-analysis-result .result-header .result-toggle.active,.aioseo-seo-site-analysis-result .result-header .result-toggle:hover{background-color:#434960}.aioseo-seo-site-analysis-result .result-header .result-toggle.active svg,.aioseo-seo-site-analysis-result .result-header .result-toggle:hover svg{color:#fff}.aioseo-seo-site-analysis-result .result-header .result-toggle.active svg{transform:rotate(0deg)}.aioseo-seo-site-analysis-result .result-header .result-toggle svg{width:100%;max-width:20px;height:auto;color:#8c8f9a;transform:rotate(90deg);transition:transform .3s}.aioseo-seo-site-analysis-result .result-body{padding:0 60px 24px}.aioseo-seo-site-analysis-result .result-body .result-message{color:#434960;font-size:16px}.aioseo-seo-site-analysis-result .result-body .result-code-alt pre,.aioseo-seo-site-analysis-result .result-body .result-code pre{background:#f3f4f5;border-radius:3px;max-width:100%;padding:10px;overflow:auto}.aioseo-seo-site-analysis-result .result-body .result-code-alt pre code,.aioseo-seo-site-analysis-result .result-body .result-code pre code{padding:0;background:transparent}.aioseo-seo-site-analysis-result .result-body .result-code pre{white-space:pre-wrap}.aioseo-seo-site-analysis-result .result-body .result-action{margin-top:20px}.aioseo-seo-site-analysis-results .group-header{font-size:16px;font-weight:600}.aioseo-seo-site-analysis-results .group-header:not(:first-child){margin-top:30px}.aioseo-seo-site-analysis-results .group-keywords{display:flex;margin-top:5px;flex-wrap:wrap;align-items:center}.aioseo-seo-site-analysis-results .group-keywords .keyword{font-size:14px;color:#434960;font-weight:600;background:#f3f4f5;padding:9px 10px;border-radius:3px;margin:0 0 5px 10px}.aioseo-seo-site-analysis-results .group-keywords .keyword:first-child{font-size:20px}.aioseo-settings-row{margin-bottom:22px;padding-bottom:16px;border-bottom:1px solid #e8e8eb}.aioseo-settings-row.no-margin{margin-bottom:0}.aioseo-settings-row.small-padding{padding-bottom:5px}.aioseo-settings-row.medium-margin{margin-bottom:15px}.aioseo-settings-row.no-border{border:none}.aioseo-settings-row.no-side-margin{margin-right:0!important;margin-left:0!important}.aioseo-settings-row .settings-name{color:#141b38}.aioseo-settings-row .settings-name .name{font-weight:600;font-size:16px;display:flex;align-items:center}.aioseo-settings-row .settings-name .name.small-margin{margin-bottom:5px}.aioseo-settings-row .settings-name .name.align{line-height:40px}.aioseo-settings-row .settings-name .name.align-small{line-height:30px}.aioseo-settings-row .settings-name .name .aioseo-pro-badge{margin-right:10px}.aioseo-settings-row .settings-name .aioseo-description{margin-top:20px}.aioseo-settings-row .settings-content{font-size:16px}.aioseo-settings-row p.description{font-size:14px}.aioseo-separators{margin-top:-.5rem}.aioseo-separators .aioseo-col .separator{background-color:#f3f4f5;display:flex;align-items:center;justify-content:center;min-height:51px;font-weight:600;font-size:25px;border:1px solid #dcdde1;border-radius:3px;cursor:pointer}.aioseo-separators .aioseo-col .separator:hover{background-color:#e5e7e9}.aioseo-separators .aioseo-col .separator.active{background-color:#005ae0;border-color:#005ae0;color:#fff}.aioseo-separators .aioseo-col .separator.active:hover{background-color:#005ae0}.aioseo-separators .aioseo-col .show-more{height:100%;display:flex;align-items:center}.aioseo-separators .aioseo-col .show-more a{color:#8c8f9a}.aioseo-separators .aioseo-col .custom-separator{margin:20px 0;display:flex;align-items:center}.aioseo-separators .aioseo-col .custom-separator .aioseo-input{margin-right:10px;max-width:100px}.aioseo-sidebar-card .header{height:46px}.aioseo-sidebar-card .header:hover{cursor:pointer}.aioseo-sidebar-card .content{padding-bottom:8px!important}.aioseo-sidebar-card ul{margin-bottom:0}.aioseo-sidebar-card ul li{margin-bottom:16px;padding-right:25px}.aioseo-sidebar-card ul .description{margin:0}.aioseo-robots-meta .global-robots-settings{margin:0;padding-top:24px}.aioseo-robots-meta .global-robots-settings>.settings{padding:8px 0 16px}.aioseo-robots-meta .global-robots-settings-options{display:flex}.aioseo-robots-meta .global-robots-settings-options .max-snippet{margin-left:30px}.aioseo-robots-meta .global-robots-settings-options .max-snippet .aioseo-input{max-width:90px}.aioseo-robots-meta .global-robots-settings-options .max-video-preview{margin-left:30px}.aioseo-robots-meta .global-robots-settings-options .max-video-preview .aioseo-input{max-width:90px}.aioseo-robots-meta .global-robots-settings-options .max-image-preview .aioseo-select{min-width:155px}.aioseo-robots-meta .global-robots-settings-options>span{display:inline-block;margin-bottom:4px}@media screen and (max-width:782px){.aioseo-robots-meta .global-robots-settings-options{display:block}.aioseo-robots-meta .global-robots-settings-options .max-snippet,.aioseo-robots-meta .global-robots-settings-options .max-video-preview{margin-left:0;margin-bottom:20px}.aioseo-robots-meta .global-robots-settings-options>div .aioseo-input,.aioseo-robots-meta .global-robots-settings-options>div .aioseo-select{min-width:100%}}.edit-post-sidebar .global-robots-settings{padding-top:12px}.edit-post-sidebar .global-robots-settings>.settings{padding:4px 0 12px}.edit-post-sidebar .global-robots-settings>.settings label{font-size:16px}.edit-post-sidebar .global-robots-settings .robots-meta-title{padding-top:4px;display:inline-block}.edit-post-sidebar .global-robots-settings-options{flex-wrap:wrap}.edit-post-sidebar .max-snippet{margin-left:30px!important}.edit-post-sidebar .max-video-preview{margin-left:0!important}.edit-post-sidebar .max-image-preview{margin-top:20px!important}.aioseo-score-amount-wrapper{position:absolute;right:0;top:0;left:0;bottom:0;display:flex;align-items:center;justify-content:center;flex-direction:column;color:#141b38;margin:20px}.aioseo-score-amount-wrapper .aioseo-score-amount .score{font-size:64px;font-weight:600}.aioseo-score-amount-wrapper .aioseo-score-amount .total{font-size:18px;color:#8c8f9a;padding-right:3px}.aioseo-score-amount-wrapper .score-description{max-width:80%;text-align:center;font-size:17px;font-weight:600;line-height:1.1}.aioseo-score-amount-wrapper .score-analyzing{margin-top:20px;font-size:30px}.aioseo-site-score-analyze{position:relative;display:flex;align-items:center;justify-content:center;flex:1}.aioseo-site-score-analyze .analyze-errors{text-align:center;margin-bottom:1em}.aioseo-site-score-analyze .aioseo-seo-site-score-score{position:relative;min-width:175px;max-width:217px;margin-left:5em}.aioseo-site-score-analyze .aioseo-seo-site-score-score svg{width:100%;height:auto}.aioseo-site-score-analyze .aioseo-seo-site-score-description h2{line-height:1.4}.aioseo-site-score-analyze .aioseo-seo-site-score-description svg.aioseo-book{width:20px;height:20px;margin:0 0 0 10px;color:#005ae0}.aioseo-site-score-analyze .aioseo-seo-site-score-description>div{font-size:16px;color:#141b38;margin-bottom:10px}.aioseo-site-score-analyze .aioseo-seo-site-score-description .links{margin-top:30px;font-size:14px;font-weight:600}.aioseo-site-score-analyze .aioseo-seo-site-score-description .links .no-underline{padding-right:5px}.aioseo-site-score-competitor{position:relative;display:flex;align-items:center;justify-content:center;flex-direction:column}.aioseo-site-score-competitor .aioseo-seo-site-score-score{position:relative;min-width:175px;max-width:217px;margin-left:1em}.aioseo-site-score-competitor .aioseo-seo-site-score-score svg{width:100%;height:auto}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations{margin:20px 0}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links){display:flex;align-items:center;font-size:14px;color:#141b38;font-weight:600;margin-bottom:10px}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round{position:relative;border-radius:50%;width:24px;min-width:24px;max-width:24px;height:24px;display:flex;align-items:center;justify-content:center;margin-left:10px;font-size:12px;color:#fff;font-weight:600}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.red{background-color:#df2a4a}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.blue{background-color:#005ae0}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.orange{background-color:#f18200}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.green{background-color:#00aa63}.aioseo-site-score-competitor .refresh-results .aioseo-refresh{width:14px;height:14px;margin-left:10px}.aioseo-site-score-competitor .mobile-snapshot{margin-top:60px;max-width:250px}.aioseo-site-score-competitor .mobile-snapshot div{font-weight:600;font-size:16px;margin-bottom:10px}.aioseo-site-score-competitor .mobile-snapshot img{width:100%;height:auto}.aioseo-site-score-dashboard{position:relative;display:flex;align-items:center;justify-content:center}.aioseo-site-score-dashboard .analyze-errors{text-align:center;margin-bottom:1em}.aioseo-site-score-dashboard .aioseo-seo-site-score-score{position:relative;min-width:175px;max-width:217px;margin-left:1em}.aioseo-site-score-dashboard .aioseo-seo-site-score-score svg{width:100%;height:auto}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links){display:flex;align-items:center;font-size:14px;color:#141b38;font-weight:600;margin-bottom:10px}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round{position:relative;border-radius:50%;width:24px;min-width:24px;max-width:24px;height:24px;display:flex;align-items:center;justify-content:center;margin-left:10px;font-size:12px;color:#fff;font-weight:600}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.red{background-color:#df2a4a}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.blue{background-color:#005ae0}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.orange{background-color:#f18200}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.green{background-color:#00aa63}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations .links{margin-top:30px;font-size:14px;font-weight:600}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations .links .no-underline{padding-right:5px}.aioseo-social-profiles .same-username .use-same{padding:30px;background:#f9f9fa}.aioseo-social-profiles .same-username .use-same .aioseo-checkbox{font-size:16px}.aioseo-social-profiles .aioseo-social-profile-list,.aioseo-social-profiles .same-username .use-same .aioseo-settings-row,.aioseo-social-profiles .same-username .use-same .profiles{margin-top:20px}.aioseo-social-profiles .aioseo-social-profile-list .social-profile{margin-bottom:0;padding-bottom:0;border-bottom:none}.aioseo-social-profiles .aioseo-social-profile-list .social-profile .profile-error{margin-top:10px}.aioseo-social-profiles .aioseo-social-profile-list .social-profile .name{margin-bottom:0}.aioseo-social-profiles .aioseo-social-profile-list .social-profile img{height:16px;width:auto;margin-left:10px}.aioseo-tooltip{margin-right:14px;display:inline-flex}.aioseo-tooltip,.aioseo-twitter-preview{align-items:center;justify-content:center}.aioseo-twitter-preview{background-color:#f0f2f5;padding:30px;display:flex}.aioseo-twitter-preview .twitter-post{width:100%;max-width:500px;border-radius:5px;border:1px solid #e1e8ed;background-color:#fff}.aioseo-twitter-preview .twitter-post .twitter-header{height:65px;padding:0 18px;display:flex;align-items:center}.aioseo-twitter-preview .twitter-post .twitter-header .profile-photo{overflow:hidden;width:40px;height:40px;border:1px solid #e8e8eb;border-radius:50%}.aioseo-twitter-preview .twitter-post .twitter-header .profile-photo img{height:100%;width:100%}.aioseo-twitter-preview .twitter-post .twitter-header .poster{margin-right:10px;flex:1 0 auto}.aioseo-twitter-preview .twitter-post .twitter-header .poster .poster-name{font-size:15px;color:#1c2022;font-weight:600}.aioseo-twitter-preview .twitter-post .twitter-header .poster .poster-username{color:#697882;font-weight:500;font-size:13px}.aioseo-twitter-preview .twitter-post .twitter-container{padding:0 20px 20px}.aioseo-twitter-preview .twitter-post .twitter-container.summary .twitter-content{flex-direction:row}.aioseo-twitter-preview .twitter-post .twitter-container.summary .twitter-content .twitter-image-preview{display:flex;align-items:center;justify-content:center;background-color:#e1e8ed;min-width:125px;min-height:125px;background-size:cover;background-repeat:no-repeat;background-position:50%}.aioseo-twitter-preview .twitter-post .twitter-container.summary .twitter-content .twitter-image-preview svg.aioseo-book{width:50px;height:50px;color:#8999a5}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content{border-radius:10px;overflow:hidden;display:flex;flex-direction:column;border:1px solid #e1e8ed}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content img{width:100%;height:auto}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description{padding:18px;color:#1c2022}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description .site-domain{font-size:14px;color:#8899a6;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description .site-title{font-size:15px;font-weight:600}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description .site-description{font-size:14px;margin:5px 0}.aioseo-col .reverse{flex-direction:column-reverse}.aioseo-col.col-xs,.aioseo-col.col-xs-1,.aioseo-col.col-xs-2,.aioseo-col.col-xs-3,.aioseo-col.col-xs-4,.aioseo-col.col-xs-5,.aioseo-col.col-xs-6,.aioseo-col.col-xs-7,.aioseo-col.col-xs-8,.aioseo-col.col-xs-9,.aioseo-col.col-xs-10,.aioseo-col.col-xs-11,.aioseo-col.col-xs-12,.aioseo-col.col-xs-offset-0,.aioseo-col.col-xs-offset-1,.aioseo-col.col-xs-offset-2,.aioseo-col.col-xs-offset-3,.aioseo-col.col-xs-offset-4,.aioseo-col.col-xs-offset-5,.aioseo-col.col-xs-offset-6,.aioseo-col.col-xs-offset-7,.aioseo-col.col-xs-offset-8,.aioseo-col.col-xs-offset-9,.aioseo-col.col-xs-offset-10,.aioseo-col.col-xs-offset-11,.aioseo-col.col-xs-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-xs{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-xs-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-xs-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-xs-3{flex-basis:25%;max-width:25%}.aioseo-col.col-xs-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-xs-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-xs-6{flex-basis:50%;max-width:50%}.aioseo-col.col-xs-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-xs-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-xs-9{flex-basis:75%;max-width:75%}.aioseo-col.col-xs-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-xs-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-xs-12{flex-basis:100%;max-width:100%}.aioseo-col.col-xs-offset-0{margin-right:0}.aioseo-col.col-xs-offset-1{margin-right:8.33333333%}.aioseo-col.col-xs-offset-2{margin-right:16.66666667%}.aioseo-col.col-xs-offset-3{margin-right:25%}.aioseo-col.col-xs-offset-4{margin-right:33.33333333%}.aioseo-col.col-xs-offset-5{margin-right:41.66666667%}.aioseo-col.col-xs-offset-6{margin-right:50%}.aioseo-col.col-xs-offset-7{margin-right:58.33333333%}.aioseo-col.col-xs-offset-8{margin-right:66.66666667%}.aioseo-col.col-xs-offset-9{margin-right:75%}.aioseo-col.col-xs-offset-10{margin-right:83.33333333%}.aioseo-col.col-xs-offset-11{margin-right:91.66666667%}.aioseo-col.first-xs{order:-1}.aioseo-col.last-xs{order:1}.aioseo-col.text-xs-left{text-align:right!important;justify-content:flex-start}.aioseo-col.text-xs-center{text-align:center!important;justify-content:center}.aioseo-col.text-xs-right{text-align:left!important;justify-content:flex-end}@media only screen and (min-width:782px){.aioseo-col.col-sm,.aioseo-col.col-sm-1,.aioseo-col.col-sm-2,.aioseo-col.col-sm-3,.aioseo-col.col-sm-4,.aioseo-col.col-sm-5,.aioseo-col.col-sm-6,.aioseo-col.col-sm-7,.aioseo-col.col-sm-8,.aioseo-col.col-sm-9,.aioseo-col.col-sm-10,.aioseo-col.col-sm-11,.aioseo-col.col-sm-12,.aioseo-col.col-sm-offset-0,.aioseo-col.col-sm-offset-1,.aioseo-col.col-sm-offset-2,.aioseo-col.col-sm-offset-3,.aioseo-col.col-sm-offset-4,.aioseo-col.col-sm-offset-5,.aioseo-col.col-sm-offset-6,.aioseo-col.col-sm-offset-7,.aioseo-col.col-sm-offset-8,.aioseo-col.col-sm-offset-9,.aioseo-col.col-sm-offset-10,.aioseo-col.col-sm-offset-11,.aioseo-col.col-sm-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-sm{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-sm-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-sm-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-sm-3{flex-basis:25%;max-width:25%}.aioseo-col.col-sm-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-sm-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-sm-6{flex-basis:50%;max-width:50%}.aioseo-col.col-sm-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-sm-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-sm-9{flex-basis:75%;max-width:75%}.aioseo-col.col-sm-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-sm-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-sm-12{flex-basis:100%;max-width:100%}.aioseo-col.col-sm-offset-0{margin-right:0}.aioseo-col.col-sm-offset-1{margin-right:8.33333333%}.aioseo-col.col-sm-offset-2{margin-right:16.66666667%}.aioseo-col.col-sm-offset-3{margin-right:25%}.aioseo-col.col-sm-offset-4{margin-right:33.33333333%}.aioseo-col.col-sm-offset-5{margin-right:41.66666667%}.aioseo-col.col-sm-offset-6{margin-right:50%}.aioseo-col.col-sm-offset-7{margin-right:58.33333333%}.aioseo-col.col-sm-offset-8{margin-right:66.66666667%}.aioseo-col.col-sm-offset-9{margin-right:75%}.aioseo-col.col-sm-offset-10{margin-right:83.33333333%}.aioseo-col.col-sm-offset-11{margin-right:91.66666667%}.aioseo-col.first-sm{order:-1}.aioseo-col.last-sm{order:1}.aioseo-col.text-sm-left{text-align:right!important;justify-content:flex-start}.aioseo-col.text-sm-center{text-align:center!important;justify-content:center}.aioseo-col.text-sm-right{text-align:left!important;justify-content:flex-end}}@media only screen and (min-width:912px){.aioseo-col.col-md,.aioseo-col.col-md-1,.aioseo-col.col-md-2,.aioseo-col.col-md-3,.aioseo-col.col-md-4,.aioseo-col.col-md-5,.aioseo-col.col-md-6,.aioseo-col.col-md-7,.aioseo-col.col-md-8,.aioseo-col.col-md-9,.aioseo-col.col-md-10,.aioseo-col.col-md-11,.aioseo-col.col-md-12,.aioseo-col.col-md-offset-0,.aioseo-col.col-md-offset-1,.aioseo-col.col-md-offset-2,.aioseo-col.col-md-offset-3,.aioseo-col.col-md-offset-4,.aioseo-col.col-md-offset-5,.aioseo-col.col-md-offset-6,.aioseo-col.col-md-offset-7,.aioseo-col.col-md-offset-8,.aioseo-col.col-md-offset-9,.aioseo-col.col-md-offset-10,.aioseo-col.col-md-offset-11,.aioseo-col.col-md-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-md{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-md-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-md-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-md-3{flex-basis:25%;max-width:25%}.aioseo-col.col-md-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-md-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-md-6{flex-basis:50%;max-width:50%}.aioseo-col.col-md-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-md-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-md-9{flex-basis:75%;max-width:75%}.aioseo-col.col-md-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-md-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-md-12{flex-basis:100%;max-width:100%}.aioseo-col.col-md-offset-0{margin-right:0}.aioseo-col.col-md-offset-1{margin-right:8.33333333%}.aioseo-col.col-md-offset-2{margin-right:16.66666667%}.aioseo-col.col-md-offset-3{margin-right:25%}.aioseo-col.col-md-offset-4{margin-right:33.33333333%}.aioseo-col.col-md-offset-5{margin-right:41.66666667%}.aioseo-col.col-md-offset-6{margin-right:50%}.aioseo-col.col-md-offset-7{margin-right:58.33333333%}.aioseo-col.col-md-offset-8{margin-right:66.66666667%}.aioseo-col.col-md-offset-9{margin-right:75%}.aioseo-col.col-md-offset-10{margin-right:83.33333333%}.aioseo-col.col-md-offset-11{margin-right:91.66666667%}.aioseo-col.first-md{order:-1}.aioseo-col.last-md{order:1}.aioseo-col.text-md-left{text-align:right!important;justify-content:flex-start}.aioseo-col.text-md-center{text-align:center!important;justify-content:center}.aioseo-col.text-md-right{text-align:left!important;justify-content:flex-end}}@media only screen and (min-width:1042px){.aioseo-col.col-lg,.aioseo-col.col-lg-1,.aioseo-col.col-lg-2,.aioseo-col.col-lg-3,.aioseo-col.col-lg-4,.aioseo-col.col-lg-5,.aioseo-col.col-lg-6,.aioseo-col.col-lg-7,.aioseo-col.col-lg-8,.aioseo-col.col-lg-9,.aioseo-col.col-lg-10,.aioseo-col.col-lg-11,.aioseo-col.col-lg-12,.aioseo-col.col-lg-offset-0,.aioseo-col.col-lg-offset-1,.aioseo-col.col-lg-offset-2,.aioseo-col.col-lg-offset-3,.aioseo-col.col-lg-offset-4,.aioseo-col.col-lg-offset-5,.aioseo-col.col-lg-offset-6,.aioseo-col.col-lg-offset-7,.aioseo-col.col-lg-offset-8,.aioseo-col.col-lg-offset-9,.aioseo-col.col-lg-offset-10,.aioseo-col.col-lg-offset-11,.aioseo-col.col-lg-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-lg{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-lg-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-lg-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-lg-3{flex-basis:25%;max-width:25%}.aioseo-col.col-lg-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-lg-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-lg-6{flex-basis:50%;max-width:50%}.aioseo-col.col-lg-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-lg-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-lg-9{flex-basis:75%;max-width:75%}.aioseo-col.col-lg-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-lg-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-lg-12{flex-basis:100%;max-width:100%}.aioseo-col.col-lg-offset-0{margin-right:0}.aioseo-col.col-lg-offset-1{margin-right:8.33333333%}.aioseo-col.col-lg-offset-2{margin-right:16.66666667%}.aioseo-col.col-lg-offset-3{margin-right:25%}.aioseo-col.col-lg-offset-4{margin-right:33.33333333%}.aioseo-col.col-lg-offset-5{margin-right:41.66666667%}.aioseo-col.col-lg-offset-6{margin-right:50%}.aioseo-col.col-lg-offset-7{margin-right:58.33333333%}.aioseo-col.col-lg-offset-8{margin-right:66.66666667%}.aioseo-col.col-lg-offset-9{margin-right:75%}.aioseo-col.col-lg-offset-10{margin-right:83.33333333%}.aioseo-col.col-lg-offset-11{margin-right:91.66666667%}.aioseo-col.first-lg{order:-1}.aioseo-col.last-lg{order:1}.aioseo-col.text-lg-left{text-align:right!important;justify-content:flex-start}.aioseo-col.text-lg-center{text-align:center!important;justify-content:center}.aioseo-col.text-lg-right{text-align:left!important;justify-content:flex-end}}.aioseo-container,.aioseo-container-fluid{margin-left:auto;margin-right:auto}.aioseo-container{padding:0 20px}.aioseo-container-fluid.hero,.aioseo-container.hero{min-height:100vh;display:flex;justify-content:center;align-items:center}.aioseo-container-fluid{padding-left:2rem;padding-right:2rem}@media only screen and (min-width:782px){.aioseo-container{padding:0 30px}}@media only screen and (min-width:1042px){.aioseo-container{max-width:80rem}.aioseo-container.full-width{max-width:100%}.aioseo-container.small{max-width:810px}}.aioseo-masonry{-moz-column-count:0;column-count:0;-moz-column-gap:20px;column-gap:20px;counter-reset:brick-counter}.aioseo-masonry>*{box-sizing:border-box;-moz-column-break-inside:avoid;break-inside:avoid;counter-increment:brick-counter;margin-bottom:20px}@media only screen and (min-width:782px){.aioseo-masonry{-moz-column-count:1;column-count:1}}@media only screen and (min-width:912px){.aioseo-masonry{-moz-column-count:2;column-count:2}}@media only screen and (min-width:1042px){.aioseo-masonry{-moz-column-count:3;column-count:3}}.aioseo-row{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:row;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.aioseo-row.reverse{flex-direction:row-reverse}.aioseo-row.start-xs{justify-content:flex-start;text-align:start}.aioseo-row.center-xs{justify-content:center;text-align:center}.aioseo-row.end-xs{justify-content:flex-end;text-align:end}.aioseo-row.top-xs{align-items:flex-start}.aioseo-row.middle-xs{align-items:center}.aioseo-row.bottom-xs{align-items:flex-end}.aioseo-row.around-xs{justify-content:space-around}.aioseo-row.between-xs{justify-content:space-between}@media only screen and (min-width:782px){.aioseo-row.start-sm{justify-content:flex-start;text-align:start}.aioseo-row.center-sm{justify-content:center;text-align:center}.aioseo-row.end-sm{justify-content:flex-end;text-align:end}.aioseo-row.top-sm{align-items:flex-start}.aioseo-row.middle-sm{align-items:center}.aioseo-row.bottom-sm{align-items:flex-end}.aioseo-row.around-sm{justify-content:space-around}.aioseo-row.between-sm{justify-content:space-between}}@media only screen and (min-width:912px){.aioseo-row.start-md{justify-content:flex-start;text-align:start}.aioseo-row.center-md{justify-content:center;text-align:center}.aioseo-row.end-md{justify-content:flex-end;text-align:end}.aioseo-row.top-md{align-items:flex-start}.aioseo-row.middle-md{align-items:center}.aioseo-row.bottom-md{align-items:flex-end}.aioseo-row.around-md{justify-content:space-around}.aioseo-row.between-md{justify-content:space-between}}@media only screen and (min-width:1042px){.aioseo-row.start-lg{justify-content:flex-start;text-align:start}.aioseo-row.center-lg{justify-content:center;text-align:center}.aioseo-row.end-lg{justify-content:flex-end;text-align:end}.aioseo-row.top-lg{align-items:flex-start}.aioseo-row.middle-lg{align-items:center}.aioseo-row.bottom-lg{align-items:flex-end}.aioseo-row.around-lg{justify-content:space-around}.aioseo-row.between-lg{justify-content:space-between}}.aioseo-seo-site-score__circle{animation:aioseo-seo-site-score-fill 1s reverse;transform:rotate(180deg);transform-origin:center;stroke:#00aa63}.aioseo-seo-site-score__circle.fast{-webkit-animation-duration:.5s;animation-duration:.5s;stroke:#df2a4a}.aioseo-seo-site-score__circle.medium{-webkit-animation-duration:.75s;animation-duration:.75s;stroke:#f18200}.aioseo-seo-site-score__background{stroke:#e8e8eb}@-webkit-keyframes aioseo-seo-site-score-fill{to{stroke-dasharray:0 100}}@keyframes aioseo-seo-site-score-fill{to{stroke-dasharray:0 100}}.aioseo-seo-site-score-svg-loading{-webkit-animation:aioseo-seo-site-score-svg-animation 2s linear infinite;animation:aioseo-seo-site-score-svg-animation 2s linear infinite}.aioseo-seo-site-score-loading__circle{-webkit-animation:aioseo-seo-site-score-fill-loading 2s ease-in-out infinite both;animation:aioseo-seo-site-score-fill-loading 2s ease-in-out infinite both;transform:rotate(180deg);transform-origin:center;stroke:#005ae0}@-webkit-keyframes aioseo-seo-site-score-svg-animation{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}@keyframes aioseo-seo-site-score-svg-animation{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}@-webkit-keyframes aioseo-seo-site-score-fill-loading{0%,25%{stroke-dashoffset:90;transform:rotate(0)}50%,75%{stroke-dashoffset:10;transform:rotate(-45deg)}to{stroke-dashoffset:90;transform:rotate(-1turn)}}@keyframes aioseo-seo-site-score-fill-loading{0%,25%{stroke-dashoffset:90;transform:rotate(0)}50%,75%{stroke-dashoffset:10;transform:rotate(-45deg)}to{stroke-dashoffset:90;transform:rotate(-1turn)}}.aioseo-table-column{display:flex;flex-direction:column;flex-basis:100%;flex:1;padding:5px;justify-content:center}.aioseo-table-row{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.aioseo-wizard-body{background-color:#fff;max-width:900px;box-shadow:0 2px 5px rgba(0,0,0,.05)}.aioseo-wizard-body .body-content{padding:80px 140px}@media screen and (max-width:782px){.aioseo-wizard-body .body-content{padding:40px}}.aioseo-wizard-body .body-content .header{line-height:1.4}.aioseo-wizard-body .body-footer{border-top:1px solid #e8e8eb;padding:30px;display:flex;align-items:center}.aioseo-wizard-body .body-footer>*{margin-left:10px}.aioseo-wizard-body .body-footer>:last-child{margin-left:0}.aioseo-wizard-body .body-footer .spacer{flex:1 0 auto}.aioseo-wizard-close-and-exit{margin-top:96px;text-align:center;font-size:14px}.aioseo-wizard-close-and-exit a{color:#8c8f9a!important}.aioseo-wizard-container{margin:40px auto;max-width:900px}@media screen and (max-width:782px){.aioseo-wizard-container{margin:0 20px}}.aioseo-wizard-header{display:flex;align-items:center;justify-content:center;flex-direction:column}.aioseo-wizard-header svg.aioseo-logo{width:100%;max-width:140px;height:auto;margin:60px 0 40px 10px}.aioseo-wizard-progress{display:flex;align-items:center;justify-content:center}@media screen and (max-width:782px){.aioseo-wizard-progress{display:none}}.aioseo-wizard-progress .circle{background-color:#dcdde1;width:16px;height:16px;border-radius:50%}.aioseo-wizard-progress .circle.active{background-color:#005ae0}.aioseo-wizard-progress .spacer{width:59px;border:1px solid #dcdde1;margin:0 12px}.aioseo-wizard-progress .spacer.active{border-color:#005ae0}.aioseo-wizard-steps{color:#8c8f9a;font-size:14px;margin-bottom:20px}
1
+ .aioseo-app .aioseo-cta{margin-top:30px;background:#fff;width:100%;padding:40px;box-shadow:0 2px 5px rgba(0,0,0,.05);border:1px solid #e8e8eb}.aioseo-app .aioseo-cta.floating{margin-top:0;position:absolute;max-width:850px;right:50%;top:50%;transform:translateX(50%) translateY(-50%);box-shadow:0 5px 20px rgba(0,0,0,.1);border-radius:3px}.aioseo-app .aioseo-cta .header-text{line-height:1.4;font-weight:600;font-size:24px;text-align:center;color:#141b38}.aioseo-app .aioseo-cta .header-text span.large{line-height:1.4;font-size:32px}.aioseo-app .aioseo-cta .description{margin:30px 0 50px;width:100%;max-width:600px;text-align:center;font-size:16px;color:#141b38;line-height:1.4}.aioseo-app .aioseo-cta .description .aioseo-alert{margin-bottom:30px;text-align:right}.aioseo-app .aioseo-cta .feature-list{color:#141b38;font-size:16px;width:100%;max-width:500px;margin-bottom:50px}.aioseo-app .aioseo-cta .feature-list .aioseo-col{display:flex;align-items:flex-start}.aioseo-app .aioseo-cta .feature-list .aioseo-col svg.aioseo-circle-check{color:#00aa63;width:18px;min-width:18px;min-height:18px;margin-left:10px}.aioseo-app .aioseo-cta a.learn-more{margin-top:20px;color:#8c8f9a;font-size:14px}.aioseo-app .aioseo-cta .type-1{display:flex;flex-direction:column;align-items:center}.aioseo-app .aioseo-cta .type-2{margin:30px 50px 30px 0;display:flex}.aioseo-app .aioseo-cta .type-2 .description,.aioseo-app .aioseo-cta .type-2 .header-text{text-align:right}.aioseo-app .aioseo-cta .type-2 .description,.aioseo-app .aioseo-cta .type-2 .feature-list{margin:30px 0}.aioseo-app .aioseo-cta .type-2>div{margin-left:20px;flex:0 0 50%}.aioseo-app .aioseo-cta .type-2 .featured-image{max-height:540px;border:1px solid #e8e8eb;flex:1;overflow:hidden;margin-left:-41px;margin-bottom:-71px;border-radius:0 5px 0 0}.aioseo-app .aioseo-cta .type-2 .featured-image img{max-height:600px}@media only screen and (max-width:912px){.aioseo-app .aioseo-cta .type-2{flex-direction:column;align-items:center}.aioseo-app .aioseo-cta .type-2 .description,.aioseo-app .aioseo-cta .type-2 .header-text{text-align:center}.aioseo-app .aioseo-cta .type-2>div{text-align:center;margin-left:0;margin-bottom:30px;flex:1 0 100%;width:100%}.aioseo-app .aioseo-cta .type-2 .featured-image{margin:0 -10px -41px;border-radius:5px 5px 0 0;max-height:300px}}.aioseo-app .aioseo-cta .type-3 .sub-header{line-height:1.4;font-size:16px;font-weight:600;color:#005ae0;margin-bottom:5px}.aioseo-app .aioseo-cta .type-3 .header-text{text-align:right}.aioseo-app .aioseo-cta .type-3 .feature-list{margin:30px 0}.aioseo-app .aioseo-cta .type-3 .feature-list .aioseo-col svg.aioseo-circle-check{color:#00aa63;width:21px;min-width:21px;min-height:21px;margin-left:5px}.aioseo-app .aioseo-cta .type-3 .aioseo-button{margin-left:12px}.aioseo-box-toggle .aioseo-row .aioseo-col{max-width:calc(200px + 1em)}@media only screen and (max-width:48em){.aioseo-box-toggle .aioseo-row .aioseo-col{max-width:100%}}.aioseo-box-toggle input{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.aioseo-box-toggle input:checked+label{background-color:#fff;box-shadow:0 5px 10px rgba(0,90,224,.1);border:2px solid #005ae0;font-weight:600}.aioseo-box-toggle label{background-color:#f9f9fa;color:#141b38;font-size:16px;line-height:1;display:flex;align-items:center;justify-content:center;flex-direction:column;border:1px solid #f9f9fa;transition:all .1s ease-in-out;border-radius:3px;height:165px;position:relative}.aioseo-box-toggle label p{position:absolute;bottom:15px;margin:0}.aioseo-box-toggle label:hover{cursor:pointer}.aioseo-button{flex-shrink:0;line-height:1;display:inline-flex;align-items:center;justify-content:center;font-size:16px;font-weight:600;padding:0 24px;border-radius:4px;-webkit-appearance:none;cursor:pointer;height:48px;transition:background-color .2s ease;position:relative;overflow:hidden;text-decoration:none;color:#141b38;white-space:nowrap}.aioseo-button.small{height:30px;font-size:14px;padding:0 12px}.aioseo-button.small .loading-spinner{width:25px;height:25px}.aioseo-button.medium{height:40px;font-size:14px;padding:0 18px}.aioseo-button.medium .loading-spinner{width:35px;height:35px}.aioseo-button.xl{height:66px;border-radius:4px;font-size:18px;padding:0 48px}.aioseo-button.gray{border:1px solid #dcdde1;background-color:#f3f4f5}.aioseo-button.gray:hover{background-color:#fff;color:#141b38}.aioseo-button.gray:active{background-color:#f3f4f5}.aioseo-button.green{border:none;background-color:#00aa63;color:#fff}.aioseo-button.green:hover{background-color:#07c575}.aioseo-button.green:active{background-color:#15955f}.aioseo-button.blue{border:none;background-color:#005ae0;color:#fff}.aioseo-button.blue:hover{background-color:#1a82ea}.aioseo-button.blue:active{background-color:#004f9d}.aioseo-button.black{border:none;background-color:#434960;color:#fff}.aioseo-button.black:hover{background-color:#2c324c}.aioseo-button.black:active{background-color:#141b38}.aioseo-button.loading.blue{background-color:#004f9d;color:#004f9d}.aioseo-button.loading.blue:hover{background-color:#004f9d}.aioseo-button.loading.green{background-color:#15955f;color:#15955f}.aioseo-button.loading.green:hover{background-color:#15955f}.aioseo-button.loading.gray{background-color:#f3f4f5;color:#f3f4f5}.aioseo-button.loading.gray:hover{background-color:#f3f4f5}.aioseo-button.loading.black{background-color:#141b38;color:#141b38}.aioseo-button.loading.black:hover{background-color:#141b38}.aioseo-button:disabled{color:#8c8f9a;background-color:#f3f4f5;cursor:default}.aioseo-button:disabled.gray:hover{color:#8c8f9a}.aioseo-button:disabled:hover{background-color:#f3f4f5}.aioseo-checkbox{display:inline-flex;align-items:center}.aioseo-checkbox.disabled,.aioseo-checkbox.disabled .form-checkbox .fancy-checkbox,.aioseo-checkbox.no-clicks,.aioseo-checkbox.no-clicks .form-checkbox .fancy-checkbox{cursor:default}.aioseo-checkbox .form-checkbox-wrapper{margin-left:10px;display:flex}.aioseo-checkbox.medium .form-checkbox{width:20px;height:20px}.aioseo-checkbox.medium .form-checkbox .fancy-checkbox svg{width:12px;height:12px}.aioseo-checkbox.medium .form-checkbox span:before{height:18px;width:18px;line-height:20px}.aioseo-checkbox.round .form-checkbox span,.aioseo-checkbox.round .form-checkbox span:before{border-radius:50%}.aioseo-checkbox .form-checkbox{position:relative;display:inline-block;width:28px;height:28px;color:#fff;vertical-align:bottom;text-align:center}.aioseo-checkbox .form-checkbox input{display:none}.aioseo-checkbox .form-checkbox input:checked+.fancy-checkbox.blue{background:#005ae0}.aioseo-checkbox .form-checkbox input:checked+.fancy-checkbox.green{background:#00aa63}.aioseo-checkbox .form-checkbox input:checked+.fancy-checkbox:before{background:transparent}.aioseo-checkbox .form-checkbox input:disabled+.fancy-checkbox{background:#e8e8eb!important;border:1px solid #d0d1d7;cursor:default}.aioseo-checkbox .form-checkbox input:disabled+.fancy-checkbox svg{color:#8c8f9a}.aioseo-checkbox .form-checkbox input:not(:checked):disabled+.fancy-checkbox:before{right:0;bottom:0;background:#e8e8eb}.aioseo-checkbox .form-checkbox .fancy-checkbox svg{color:#fff;width:16px;height:16px}.aioseo-checkbox .form-checkbox span{position:absolute;cursor:pointer;top:0;right:0;left:0;bottom:0;background-color:#d0d1d7;transition:.2s;border-radius:3px;display:flex;align-items:center;justify-content:center}.aioseo-checkbox .form-checkbox span:before{position:absolute;content:"";height:26px;width:26px;right:1px;bottom:1px;background-color:#fff;transition:.2s;font-size:18px;line-height:28px;border-radius:2px}.aioseo-date-picker.vue-daterange-picker{width:100%}.aioseo-date-picker.vue-daterange-picker .form-control{display:flex;align-items:center;color:#141b38;font-size:16px;height:48px;border-radius:3px;border:1px solid #d0d1d7;position:relative}.aioseo-date-picker.vue-daterange-picker .form-control svg.aioseo-circle-close{position:absolute;left:10px;color:#434960;width:15px;height:15px}.aioseo-date-picker.vue-daterange-picker.small .form-control{height:30px}.aioseo-date-picker.vue-daterange-picker.medium .form-control{height:40px}body[class*=all-in-one-seo_page] .daterangepicker .yearselect{width:75px}.aioseo-editor{position:relative}.aioseo-editor .aioseo-editor-description .ql-editor{min-height:100px}.aioseo-editor .aioseo-editor-line-numbers .ql-editor{padding:15px 45px 15px 15px}.aioseo-editor .aioseo-editor-single .ql-editor{padding:8px 10px}.aioseo-editor .aioseo-editor-single.aioseo-editor-line-numbers .ql-editor{padding:8px 45px 8px 10px}.aioseo-editor .aioseo-editor-monospace .ql-editor{font-family:monospace}.aioseo-editor .aioseo-line-numbers{background:#f7f6f7;position:absolute;text-align:left;top:1px;width:29px;right:1px;border-radius:0 3px 3px 0;padding:15px 0 0 9px;display:flex;height:calc(100% - 2px);flex-direction:column;overflow:hidden}.aioseo-editor .aioseo-line-numbers div{min-height:25px;color:#8c8f9a;font-size:12px;line-height:1.9}.aioseo-editor .ql-disabled{pointer-events:none;background-color:#f9f9fa}.aioseo-editor .ql-editor{padding:15px;border-radius:3px;font-size:16px;color:#141b38;border:1px solid #d0d1d7}.aioseo-editor .ql-editor:focus{border:1px solid #005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-editor .ql-editor .mention .ql-mention-denotation-char{display:none}.aioseo-editor .ql-editor .mention .aioseo-tag{height:25px;margin:0 1px;color:#434960;font-weight:600;font-size:14px;padding:3px 10px 3px 25px;background-color:#f3f4f5;border-radius:3px;cursor:pointer;position:relative;display:inline-flex;align-items:center}.aioseo-editor .ql-editor .mention .aioseo-tag .tag-toggle{display:inline-flex;align-items:center;background-color:#e8e8eb;position:absolute;top:0;left:0;bottom:0;border-radius:3px 0 0 3px}.aioseo-editor .ql-editor .mention .aioseo-tag .tag-toggle svg.aioseo-caret{width:18px;height:18px;transition:transform .3s}.aioseo-editor .ql-editor .mention .aioseo-tag .tag-toggle svg.aioseo-caret.rotated{transform:rotate(-180deg)}.aioseo-editor .ql-mention-list-container{color:#141b38;background-color:#fff;max-width:250px;width:100%;margin-top:3px;border:1px solid #d0d1d7;border-radius:3px;box-shadow:0 3px 15px rgba(0,0,0,.1);z-index:9001}.aioseo-editor .ql-mention-list-container .aioseo-tag-custom,.aioseo-editor .ql-mention-list-container .aioseo-tag-search{padding:12px;border-bottom:1px solid #e8e8eb}.aioseo-editor .ql-mention-list-container .aioseo-tag-custom{display:none}.aioseo-editor .ql-mention-list-container .ql-mention-list{list-style:none;margin:0;padding:0;max-height:210px;overflow:auto}.aioseo-editor .ql-mention-list-container .ql-mention-list li{color:#141b38;margin:0;background-color:transparent;border-bottom:1px solid #e8e8eb;padding:15px;cursor:pointer;font-size:14px}.aioseo-editor .ql-mention-list-container .ql-mention-list li:last-child{border-bottom:0}.aioseo-editor .ql-mention-list-container .ql-mention-list li.selected,.aioseo-editor .ql-mention-list-container .ql-mention-list li:hover{color:#005ae0;background-color:#f2f7fd}.aioseo-editor .ql-mention-list-container .ql-mention-list li.selected .aioseo-tag-description,.aioseo-editor .ql-mention-list-container .ql-mention-list li:hover .aioseo-tag-description{color:initial}.aioseo-editor .ql-mention-list-container .ql-mention-list li .aioseo-tag-item{display:flex}.aioseo-editor .ql-mention-list-container .ql-mention-list li .aioseo-tag-item>div:first-child{margin-left:10px}.aioseo-editor .ql-mention-list-container .ql-mention-list li .aioseo-tag-item .aioseo-tag-title{font-weight:600}.aioseo-editor .ql-mention-list-container .ql-mention-list li svg.aioseo-plus{width:10px;height:10px;color:#005ae0}.aioseo-editor .ql-mention-list-container .ql-mention-list li.aioseo-tag-no-match{cursor:default;padding:12px;font-size:16px;font-weight:600}.aioseo-editor .ql-mention-list-container .ql-mention-list li.aioseo-tag-no-match.highlight,.aioseo-editor .ql-mention-list-container .ql-mention-list li.aioseo-tag-no-match:hover{color:initial;background-color:transparent}.aioseo-editor .ql-toolbar{display:none}.aioseo-editor .ql-clipboard{right:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.aioseo-editor .ql-snow .ql-hidden{display:none}.aioseo-editor .ql-container.ql-snow{border:none}.aioseo-editor .ql-container p{font-size:16px;margin:0;line-height:25px}.aioseo-highlight-toggle{border:1px solid #e8e8eb;border-radius:3px;min-height:48px;display:flex;align-items:center;padding:5px 10px;cursor:pointer}.aioseo-highlight-toggle>*{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.aioseo-highlight-toggle.active{border-color:#005ae0;box-shadow:0 5px 10px rgba(0,90,224,.1)}.aioseo-highlight-toggle.medium{min-height:40px}.aioseo-highlight-toggle .icon{display:flex;align-items:center;margin-left:5px}.aioseo-input{position:relative;width:100%}.aioseo-input.file,.aioseo-input.file input[type=file]{position:absolute;top:0;left:0;right:0;bottom:0;margin:0;padding:0}.aioseo-input.file input[type=file]{cursor:pointer;opacity:0}.aioseo-input.file input[type=file]::-webkit-file-upload-button{visibility:hidden}.aioseo-input.file input[type=file]:focus{box-shadow:none}.aioseo-input input{height:48px;width:100%;background-color:#fff;border:1px solid #d0d1d7;border-radius:3px;padding:15px;font-size:18px;position:relative;overflow:hidden}.aioseo-input input:disabled{background:#f9f9fa}.aioseo-input input:focus{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-input input::-moz-placeholder{color:#8c8f9a}.aioseo-input input:-ms-input-placeholder{color:#8c8f9a}.aioseo-input input::placeholder{color:#8c8f9a}.aioseo-input input.prepend{padding-right:50px}.aioseo-input input.append{padding-left:50px}.aioseo-input input.small{height:30px;padding:10px;font-size:14px}.aioseo-input input.small.prepend{padding-right:30px}.aioseo-input input.small.append{padding-left:30px}.aioseo-input input.medium{height:40px;padding:12px;font-size:16px}.aioseo-input input.medium.prepend{padding-right:35px}.aioseo-input input.medium.append{padding-left:35px}.aioseo-input.aioseo-active input{border-color:#00aa63}.aioseo-input.aioseo-active .append-icon,.aioseo-input.aioseo-active .prepend-icon{color:#00aa63}.aioseo-input.aioseo-error input{border-color:#df2a4a}.aioseo-input.aioseo-error .append-icon,.aioseo-input.aioseo-error .prepend-icon{color:#df2a4a}.aioseo-input .prepend-icon{position:absolute;top:0;right:10px;width:30px;height:100%;color:#d0d1d7;display:flex;align-items:center;z-index:1}.aioseo-input .prepend-icon svg{width:30px;height:30px}.aioseo-input .prepend-icon.small{width:20px}.aioseo-input .prepend-icon.small svg{width:10px;height:10px}.aioseo-input .prepend-icon.medium{width:15px}.aioseo-input .prepend-icon.medium svg{width:15px;height:15px}.aioseo-input .append-icon{position:absolute;top:0;left:10px;width:30px;height:100%;color:#d0d1d7;display:flex;align-items:center;z-index:1}.aioseo-input .append-icon svg{width:30px;height:30px}.aioseo-input .append-icon.small{width:10px;height:10px}.aioseo-input .append-icon.medium{width:15px;height:15px}.aioseo-phone-number{max-width:600px}.aioseo-phone-number label{display:none}.aioseo-phone-number .maz-input__input{height:40px;min-height:40px;padding-top:0!important;border:1px solid #d0d1d7}.aioseo-phone-number .maz-input__input:focus{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-phone-number .country-selector{flex:0 0 140px;width:140px;min-width:140px;max-width:140px}.aioseo-phone-number .country-selector:hover{z-index:1}.aioseo-phone-number .country-selector>div.maz-base-component.maz-input.has-value.has-1-right-icon.maz-input--primary>input{padding-right:50px!important}.aioseo-phone-number .country-selector .maz-input.is-focused{border-color:#005ae0}.aioseo-phone-number .country-selector .maz-select__options-list__item.selected.keyboard-selected{background-color:#005ae0}.aioseo-phone-number .maz-phone-number-input__country-flag{right:20px;bottom:12px}.aioseo-phone-number .maz-select__options-list input{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-phone-number .maz-input__input{border-radius:3px}.aioseo-phone-number .input-phone-number,.aioseo-phone-number .input-phone-number:focus{z-index:2}.aioseo-phone-number.invalidNumber div.maz-flex-1>div>input{border-color:red}.aioseo-phone-number.invalidNumber div.maz-flex-1>div>input:focus{border-color:#df2a4a;box-shadow:0 0 0 1px #df2a4a}.aioseo-phone-number.validNumber div.maz-flex-1>div>input:focus{border-color:#00aa63;box-shadow:0 0 0 1px #00aa63}.aioseo-radio{display:inline-flex;align-items:center}.aioseo-radio .form-radio-wrapper{margin-left:10px;display:flex}.aioseo-radio.medium .form-radio{width:20px;height:20px}.aioseo-radio.medium .form-radio .fancy-radio svg{width:12px;height:12px}.aioseo-radio.medium.type-1 .form-radio span:before{height:18px;width:18px;line-height:20px}.aioseo-radio.medium.type-2 .form-radio span:before{height:16px;width:16px;line-height:20px}.aioseo-radio.medium.type-2 .form-radio span:after{height:6px;width:6px;right:6px;bottom:6px}.aioseo-radio .form-radio{position:relative;display:inline-block;width:28px;height:28px;color:#fff;vertical-align:bottom;text-align:center}.aioseo-radio .form-radio input{opacity:0}.aioseo-radio .form-radio input:checked+.fancy-radio{background:#005ae0;border-color:#005ae0}.aioseo-radio .form-radio input:checked+.fancy-radio:before{background:transparent}.aioseo-radio .form-radio input:checked+.fancy-radio:after{display:block}.aioseo-radio .form-radio input:disabled+.fancy-radio{cursor:default}.aioseo-radio .form-radio input:focus+.fancy-radio{border-color:#005ae0;box-shadow:0 0 0 1px #005ae0}.aioseo-radio .form-radio .fancy-radio{border-radius:50%}.aioseo-radio .form-radio .fancy-radio svg{color:#fff;width:16px;height:16px}.aioseo-radio .form-radio span{position:absolute;cursor:pointer;top:0;right:0;left:0;bottom:0;transition:.2s;border-radius:50%;display:flex;align-items:center;justify-content:center}.aioseo-radio .form-radio span:before{position:absolute;content:"";height:26px;width:26px;right:1px;bottom:1px;transition:.2s;font-size:18px;line-height:28px;border-radius:50%}.aioseo-radio.type-1 .form-radio span,.aioseo-radio.type-1 .form-radio span:before{background-color:#f3f4f5}.aioseo-radio.type-2 .form-radio span{border:1px solid #d0d1d7;background-color:#fff}.aioseo-radio.type-2 .form-radio span:before{background-color:#fff}.aioseo-radio.type-2 .form-radio span:after{display:none;position:absolute;content:"";height:10px;width:10px;right:8px;bottom:8px;background-color:#fff;transition:.2s;border-radius:50%}.aioseo-radio.disabled{cursor:default}.aioseo-radio.disabled.type-2 .form-radio input:checked+.fancy-radio{background-color:#e8e8eb;border-color:#d0d1d7}.aioseo-radio.disabled.type-2 .form-radio span,.aioseo-radio.disabled.type-2 .form-radio span:before{background-color:#e8e8eb}.aioseo-radio.disabled.type-2 .form-radio span:after{background-color:#8c8f9a}.aioseo-radio-toggle{display:flex;align-items:center;height:40px}.aioseo-radio-toggle div{height:100%}.aioseo-radio-toggle.inline{display:inline-flex}.aioseo-radio-toggle div:first-child{overflow:hidden;border-radius:0 3px 3px 0}.aioseo-radio-toggle div:first-child label{border-radius:0 3px 3px 0}.aioseo-radio-toggle div:last-child{overflow:hidden;border-radius:3px 0 0 3px}.aioseo-radio-toggle div:last-child label{border-radius:3px 0 0 3px}.aioseo-radio-toggle input{position:absolute!important;clip:rect(0,0,0,0);height:1px;width:1px;border:0;overflow:hidden}.aioseo-radio-toggle input:checked+label{background-color:#005ae0;color:#fff}.aioseo-radio-toggle input:checked+label.dark{background-color:#434960;color:#fff}.aioseo-radio-toggle label{height:100%;background-color:#e8e8eb;color:#141b38;font-size:14px;line-height:1;display:flex;align-items:center;justify-content:center;flex-direction:column;transition:all .1s ease-in-out;position:relative;padding:11px 20px;font-weight:600}.aioseo-radio-toggle label.disabled{cursor:default;pointer-events:none;opacity:.5}.aioseo-radio-toggle label:hover{background-color:#dadadf;cursor:pointer}.aioseo-radio-toggle label p{position:absolute;bottom:15px;margin:0}.aioseo-radio-toggle.circle label{background:#fff;color:#8c8f9a}.aioseo-radio-toggle.circle input+label{border-radius:50%;width:36px;height:36px;padding:8px}.aioseo-radio-toggle.circle input:checked+label{background:#e8e8eb;color:#2c324c}.aioseo-select{height:48px}.aioseo-select.multiselect--disabled .multiselect__select{background:none}.aioseo-select .multiselect__select{display:flex;align-items:center;justify-content:center;min-height:46px}.aioseo-select .multiselect__select:before{display:none}.aioseo-select .multiselect__select svg.aioseo-caret{color:#141b38;width:18px;height:18px;transform:rotate(-180deg);transition:transform .3s}.aioseo-select .multiselect__tags{height:100%;border:1px solid #d0d1d7;border-radius:3px;display:flex;justify-content:center;flex-direction:column;padding:16px 16px 16px 40px}.aioseo-select .multiselect__tags .multiselect__spinner{height:calc(100% - 2px);border:2px solid transparent}.aioseo-select .multiselect__tags .multiselect__spinner:after,.aioseo-select .multiselect__tags .multiselect__spinner:before{border-top-color:#434960}.aioseo-select .multiselect__tags .multiselect__single{display:inline-flex;margin:0;padding:0;color:#141b38;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.aioseo-select .multiselect__tags .multiselect__placeholder{color:#8c8f9a;font-size:16px;line-height:20px;margin:0;padding:0}.aioseo-select .multiselect__tags .multiselect__input{padding:0;margin:0 0 0 10px;border-radius:0;border:none;color:#141b38;min-height:auto;line-height:20px}.aioseo-select .multiselect__tags .multiselect__input:focus{outline:0;box-shadow:none;border:none}.aioseo-select .multiselect__tags .multiselect__input::-moz-placeholder{color:#8c8f9a}.aioseo-select .multiselect__tags .multiselect__input:-ms-input-placeholder{color:#8c8f9a}.aioseo-select .multiselect__tags .multiselect__input::placeholder{color:#8c8f9a}.aioseo-select .multiselect__tags .multiselect__tags-wrap{display:flex;align-items:center;flex-wrap:wrap}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag{padding:0;display:inline-flex;align-items:center;font-size:14px;font-weight:600;color:#434960;margin:0 0 0 3px;height:24px;background-color:#f3f4f5;flex-shrink:0}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-value{padding:0 10px 0 5px}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove{padding:0 10px;height:100%;cursor:pointer;background-color:#f3f4f5;display:flex;align-items:center}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove:hover{background-color:#434960;color:#fff}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove:hover svg.aioseo-close{color:#fff}.aioseo-select .multiselect__tags .multiselect__tags-wrap .multiselect__tag .multiselect__tag-remove svg.aioseo-close{color:#434960;width:10px;height:10px}.aioseo-select.multiselect--active .multiselect__tags-wrap{margin-bottom:7px}.aioseo-select.small{height:30px}.aioseo-select.small .multiselect__tags{padding:10px 10px 10px 40px}.aioseo-select.small .multiselect__select{min-height:28px}.aioseo-select.medium{height:40px}.aioseo-select.medium .multiselect__tags{padding:7px 7px 7px 40px}.aioseo-select.medium .multiselect__select{min-height:38px}.aioseo-select.multiple{min-height:48px;height:auto}.aioseo-select.multiple.small{min-height:30px}.aioseo-select.multiple.medium{min-height:40px}.aioseo-select .multiselect__content-wrapper{border:1px solid #d0d1d7;border-top:none;border-bottom-right-radius:3px;border-bottom-left-radius:3px;z-index:50;-webkit-overflow-scrolling:touch}.aioseo-select .multiselect__content-wrapper li.multiselect__element{margin:0;border-bottom:1px solid #e8e8eb}.aioseo-select .multiselect__content-wrapper li.multiselect__element.last{border-bottom:none}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option{color:#141b38;font-weight:700;font-size:16px}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--highlight{background-color:#f2f7fd}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--highlight:after{background-color:#005ae0;color:#fff}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--selected{background-color:#f2f7fd}.aioseo-select .multiselect__content-wrapper li.multiselect__element .multiselect__option--disabled{font-weight:400;background-color:#fff!important;color:#8c8f9a}.aioseo-textarea-autosize{width:100%;background-color:#fff;border:1px solid #d0d1d7;border-radius:4px;font-size:16px;padding:12px}.aioseo-toggle{display:inline-flex}.aioseo-toggle:active,.aioseo-toggle:focus{outline:2px solid transparent}.aioseo-toggle.disabled{pointer-events:none}.aioseo-toggle.disabled .toggle-content{opacity:.5}.aioseo-toggle .toggle-content{position:relative;display:inline-block;width:36px;height:20px;margin-left:10px}.aioseo-toggle .toggle-content input{display:none}.aioseo-toggle .toggle-content input:checked+.toggle-switch{border:1px solid #005ae0;background-color:#005ae0}.aioseo-toggle .toggle-content input:checked+.toggle-switch:focus{outline:2px solid transparent}.aioseo-toggle .toggle-content input:checked+.toggle-switch:before{background-color:#fff;transform:translateX(-15px)}.aioseo-toggle .toggle-content input:focus+.toggle-switch{box-shadow:0 0 1px #005ae0;outline:2px solid transparent}.aioseo-toggle .toggle-content .toggle-switch{position:absolute;cursor:pointer;top:0;right:0;left:0;bottom:0;background-color:#fff;border:1px solid #d0d1d7;border-radius:15px;transition:.2s}.aioseo-toggle .toggle-content .toggle-switch:before{position:absolute;content:"";height:14px;width:14px;right:3px;bottom:2px;background-color:#d0d1d7;border-radius:50%;transition:.2s}.aioseo-add-template-tag{border-radius:3px;padding:5px 10px;color:#141b38;font-size:14px;border:1px solid #e8e8eb;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-weight:600}.aioseo-add-template-tag:hover{background-color:#f3f4f5}.aioseo-add-template-tag svg.aioseo-plus{width:10px;height:10px;color:#005ae0}.aioseo-additional-pages .additional-pages-table{border:1px solid #d0d1d7;border-radius:3px;margin-bottom:20px}.aioseo-additional-pages .additional-pages-table .page-priority{max-width:110px}.aioseo-additional-pages .additional-pages-table .page-frequency{max-width:166px}.aioseo-additional-pages .additional-pages-table .page-last-modified{max-width:155px}.aioseo-additional-pages .additional-pages-table .page-actions{max-width:20px}.aioseo-additional-pages .additional-pages-table .page-actions .aioseo-tooltip{display:inline-block;margin:0}.aioseo-additional-pages .additional-pages-table .pages-header{height:50px;display:flex;font-size:14px;padding:0 30px;align-items:center;border-bottom:1px solid #d0d1d7}.aioseo-additional-pages .additional-pages-table .pages-header>div{flex:1 0 auto}.aioseo-additional-pages .additional-pages-table .pages-rows{font-size:14px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row{background-color:#fff;height:70px;display:flex;align-items:center;padding:0 30px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row:last-of-type{border-radius:0 0 3px 3px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row.even{background-color:#f9f9fa}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row>div{flex:1 0 auto;padding-left:30px}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row>div:last-child{padding-left:0}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row .page-actions svg.aioseo-trash{width:20px;height:20px;color:#8c8f9a;cursor:pointer;transition:color .1s ease}.aioseo-additional-pages .additional-pages-table .pages-rows .page-row .page-actions svg.aioseo-trash:hover{color:#df2a4a}.aioseo-additional-pages svg.aioseo-circle-plus{width:14px;height:14px;margin-left:10px}.aioseo-alert{position:relative;border-radius:3px;padding:24px;font-size:16px;color:#141b38}.aioseo-alert .aioseo-alert-close{cursor:pointer;position:absolute;top:-9px;left:-9px;width:18px;height:18px;border-radius:50%;padding:5px;display:inline-flex;justify-content:center;align-content:center}.aioseo-alert .aioseo-alert-close svg{width:100%;height:100%}.aioseo-alert.blue{border:1px solid #005ae0;background-color:#f2f7fd}.aioseo-alert.blue .aioseo-alert-close{background-color:#005ae0;color:#fff}.aioseo-alert.green{border:1px solid #00aa63;background-color:#f2fdf8}.aioseo-alert.green .aioseo-alert-close{background-color:#00aa63;color:#fff}.aioseo-alert.red{border:1px solid #df2a4a;background-color:#fbe9ec}.aioseo-alert.red .aioseo-alert-close{background-color:#df2a4a;color:#fff}.aioseo-alert.yellow{border:1px solid #f18200;background-color:#fcfae8}.aioseo-alert.yellow .aioseo-alert-close{background-color:#f18200;color:#fff}.aioseo-alert.no-border{border-width:0}.aioseo-alert.text-center{text-align:center}.aioseo-analyze-competitor-site-score{border:1px solid #00aa63;border-radius:3px;color:#00aa63;font-size:14px;padding:0 8px;height:24px;display:inline-flex;align-items:center;justify-content:center;margin-left:14px}.aioseo-analyze-competitor-site-score.red{color:#df2a4a;border-color:#df2a4a}.aioseo-analyze-competitor-site-score.orange{color:#f18200;border-color:#f18200}.aioseo-animated-dannie{display:flex;align-content:center;align-items:center;justify-content:center}.aioseo-animated-dannie svg{max-width:250px}.aioseo-blur{filter:blur(3px);pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.aioseo-card{color:#141b38;background-color:#fff;border:1px solid #e8e8eb;box-shadow:0 2px 5px rgba(0,0,0,.05);margin:30px 0}@media only screen and (max-width:782px){.aioseo-card{margin:20px 0}}.aioseo-card svg.aioseo-circle-question-mark{width:17px;height:17px;color:#8c8f99;transition:background-color .2s ease}.aioseo-card svg.aioseo-circle-question-mark:hover{color:#5a5c65}.aioseo-card .header{display:flex;align-items:center;height:70px;padding:0 30px;font-weight:600;font-size:18px;border-bottom:1px solid #e8e8eb}.aioseo-card .header .header-icon svg{width:24px;height:24px;margin-left:16px}.aioseo-card .header .text{flex:1 0 auto;display:flex;align-items:center}.aioseo-card .header .text svg.aioseo-circle-question-mark{cursor:pointer;width:17px;height:17px}.aioseo-card .header .text .aioseo-pro-badge{margin-right:10px}.aioseo-card .header .text .card-score{display:flex;flex:1;align-items:center;justify-content:flex-end;padding-left:18px;font-size:13px}.aioseo-card .header .text .card-score.green{color:#00aa63}.aioseo-card .header .text .card-score.orange{color:#f18200}.aioseo-card .header .text .card-score.red{color:#df2a4a}.aioseo-card .header .text .card-score svg{margin-left:7px}.aioseo-card .header svg.aioseo-caret{width:24px;height:24px;cursor:pointer;transition:transform .3s}.aioseo-card .header svg.aioseo-caret.rotated{transform:rotate(-180deg)}.aioseo-card .content{padding:30px;position:relative}.aioseo-card div.aioseo-settings-row:last-child{margin-bottom:0;border-bottom:none;padding-bottom:0}.aioseo-copy-block{display:flex}.aioseo-copy-block .message{background-color:#fff;min-height:56px;display:flex;align-items:center;border:1px solid #dcdde1;border-radius:0 3px 3px 0;padding:10px 24px;font-weight:600}.aioseo-copy-block .copy-tooltip{display:flex}.aioseo-copy-block .copy{background-color:#fff;min-height:56px;display:flex;align-items:center;border:1px solid #dcdde1;border-right-width:0;border-radius:3px 0 0 3px;padding:10px 16px;font-weight:600;cursor:pointer}.aioseo-copy-block .copy:hover svg.aioseo-copy{color:#a7a7a7}.aioseo-copy-block .copy svg.aioseo-copy{width:20px;height:20px;color:#dadada}.aioseo-copy-block .copy svg.aioseo-circle-check-solid{width:20px;height:20px;color:#00aa63}.aioseo-exclude-posts{display:flex}.aioseo-exclude-posts .aioseo-select{max-width:600px;display:inline-block;margin-left:10px}.aioseo-exclude-posts .aioseo-select .multiselect__option{display:flex}.aioseo-exclude-posts .aioseo-select .multiselect__option--highlight .option-title{color:#005ae0}.aioseo-exclude-posts .option{flex:1 0 auto}.aioseo-exclude-posts .option .option-title{font-size:16px;color:#141b38}.aioseo-exclude-posts .option .option-title .search-term{font-weight:600}.aioseo-exclude-posts .option .option-details{display:flex;align-items:center;font-size:14px;color:#8c8f9a}.aioseo-exclude-posts .option .option-details span{margin-left:15px}.aioseo-exclude-posts .option-permalink{display:flex;align-items:center}.aioseo-exclude-posts .option-permalink svg.aioseo-external{width:15px;height:15px;color:#434960}.aioseo-exclude-posts .multiselect-toggle{padding:10px 13px;width:40px;position:absolute;height:36px;left:2px;top:2px;text-align:center;z-index:1}.aioseo-exclude-posts .multiselect-toggle svg.aioseo-add-plus{width:14px;height:14px;color:#000}.aioseo-facebook-preview{background-color:#f0f2f5;padding:30px;display:flex;align-items:center;justify-content:center}.aioseo-facebook-preview .facebook-post{width:100%;max-width:525px;border-radius:10px;box-shadow:0 2px 5px rgba(0,0,0,.1);background-color:#fff}.aioseo-facebook-preview .facebook-post .facebook-header{height:65px;padding:0 18px;display:flex;align-items:center}.aioseo-facebook-preview .facebook-post .facebook-header .profile-photo{overflow:hidden;width:40px;height:40px;border:1px solid #e8e8eb;border-radius:50%}.aioseo-facebook-preview .facebook-post .facebook-header .profile-photo img{height:100%;width:100%}.aioseo-facebook-preview .facebook-post .facebook-header .poster{margin-right:10px;flex:1 0 auto}.aioseo-facebook-preview .facebook-post .facebook-header .poster .poster-name{font-size:15px;color:#050505;font-weight:500}.aioseo-facebook-preview .facebook-post .facebook-header .poster .poster-date{color:#65676b;font-size:13px}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis{display:inline-flex;align-items:center}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis div{background-color:#5e666f;width:4px;height:4px;border-radius:50%;margin:0 2px}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis div:first-child{margin-right:0}.aioseo-facebook-preview .facebook-post .facebook-header .ellipsis div:last-child{margin-left:0}.aioseo-facebook-preview .facebook-post .facebook-content{display:flex;flex-direction:column}.aioseo-facebook-preview .facebook-post .facebook-content img{width:100%;height:auto}.aioseo-facebook-preview .facebook-post .facebook-content.vertical{flex-direction:row}.aioseo-facebook-preview .facebook-post .facebook-content.vertical img{max-width:158px;max-height:158px;width:auto;height:auto}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description{flex:1;background-color:#f2f3f5;padding:9px 13px;color:#606770}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description .site-domain{font-size:13px;text-transform:uppercase;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description .site-title{color:#1d2129;font-size:17px;font-weight:600;margin:5px 0}.aioseo-facebook-preview .facebook-post .facebook-content .facebook-site-description .site-description{font-size:14px}.aioseo-facebook-preview .facebook-post .facebook-footer{height:24px}.aioseo-feature-card{height:100%;border:1px solid #e8e8eb;background:#fff;box-shadow:0 2px 5px rgba(0,0,0,.05);color:#141b38;display:flex;flex-direction:column}.aioseo-feature-card .feature-card-body{padding:30px 30px 20px;flex:1}.aioseo-feature-card .feature-card-body.static{padding:30px}.aioseo-feature-card .feature-card-body .feature-card-header{display:flex;align-items:center;font-size:18px;font-weight:600;margin-bottom:16px}.aioseo-feature-card .feature-card-body .feature-card-header img,.aioseo-feature-card .feature-card-body .feature-card-header svg{width:28px;height:28px;margin-left:10px}.aioseo-feature-card .feature-card-body .feature-card-description{color:#434960;font-size:15px}.aioseo-feature-card .feature-card-body .feature-card-description .learn-more{margin-top:10px}.aioseo-feature-card .feature-card-footer{padding:15px}.aioseo-feature-card .feature-card-footer:not(.upgrade-required){border:2px solid #fff;background-color:#f9f9fa;padding:12px;min-height:43px}.aioseo-feature-card .feature-card-footer .feature-card-install-activate{display:flex;align-items:center;justify-content:flex-end;height:30px;position:relative}.aioseo-feature-card .feature-card-footer .feature-card-install-activate .aioseo-loading-spinner{position:absolute;right:0}.aioseo-feature-card .feature-card-footer .feature-card-install-activate .status{font-weight:600;font-size:14px}.aioseo-feature-card .feature-card-footer .feature-card-install-activate .aioseo-toggle .toggle-content{margin-left:0;margin-right:10px}.aioseo-feature-card .feature-card-footer .feature-card-upgrade-cta{display:flex;align-items:center;justify-content:flex-end}.aioseo-feature-card .feature-card-footer.installed .feature-card-install-activate .status{color:#8c8f9a}.aioseo-setup-wizard-container{margin-top:30px;margin-bottom:50px;padding:30px;color:#fff;position:relative;background-color:#005ae0}@media only screen and (max-width:782px){.aioseo-setup-wizard-container{margin-top:20px}}.aioseo-setup-wizard-container p{color:#fff}.aioseo-setup-wizard-container .getting-started-wrapper{display:flex}.aioseo-setup-wizard-container .getting-started-wrapper .video{flex:0 0 533px;margin:20px 20px 0}.aioseo-setup-wizard-container .getting-started-wrapper .video .wrapper{padding-bottom:56.25%;margin-bottom:-60px;position:relative;height:0}.aioseo-setup-wizard-container .getting-started-wrapper .video .wrapper iframe{width:100%;height:100%;position:absolute;top:0;right:0}@media only screen and (max-width:1350px){.aioseo-setup-wizard-container .getting-started-wrapper .video{flex:0 0 593px;margin:20px;align-self:center}.aioseo-setup-wizard-container .getting-started-wrapper .video .wrapper{margin-bottom:0}.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions .aioseo-col{flex-basis:100%;max-width:100%;justify-content:center}}@media only screen and (max-width:1300px){.aioseo-setup-wizard-container .getting-started-wrapper{flex-direction:row;flex-wrap:wrap}.aioseo-setup-wizard-container .getting-started-wrapper .video{margin:20px 0 -60px}.aioseo-setup-wizard-container .getting-started-wrapper .text,.aioseo-setup-wizard-container .getting-started-wrapper .video{flex-basis:100%;width:100%}.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions{justify-content:center}.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions .aioseo-col{flex-basis:inherit;max-width:inherit;justify-content:center}}@media only screen and (max-width:782px){.aioseo-setup-wizard-container .getting-started-wrapper .wizard-actions .aioseo-col{flex-basis:100%;max-width:100%;justify-content:center}}.aioseo-setup-wizard-container .aioseo-row{position:relative;z-index:1}.aioseo-setup-wizard-container .wizard-actions .aioseo-col{display:flex;align-items:center}.aioseo-setup-wizard-container .wizard-actions .aioseo-button svg{width:16px;height:16px;margin-left:10px}.aioseo-setup-wizard-container .setup-wizard-bg{width:100%;height:100%;overflow:hidden;z-index:0;position:absolute;top:0;right:0}.aioseo-setup-wizard-container .setup-wizard-bg svg.aioseo-setup-wizard-bg,.aioseo-setup-wizard-container .setup-wizard-bg svg.aioseo-setup-wizard-bg rect{width:auto;height:100%}.aioseo-setup-wizard-container .close-wizard{color:#fff;width:20px;height:20px;position:absolute;left:20px;top:20px;z-index:1;display:flex;align-items:center;justify-content:center}.aioseo-setup-wizard-container .close-wizard:hover{color:#ccc}.aioseo-setup-wizard-container .close-wizard svg.aioseo-close{width:12px;height:12px;cursor:pointer;color:#fff}.aioseo-setup-wizard-container .close-wizard svg.aioseo-close:hover{color:#dadada}.aioseo-setup-wizard-container p.how-to-get-started{margin:0}.aioseo-setup-wizard-container p.welcome-text{line-height:1.6}.aioseo-setup-wizard-container h2{color:#fff;line-height:1.4}.aioseo-setup-wizard-container a{color:#fff}.aioseo-setup-wizard-container svg.aioseo-book{width:20px;height:20px;margin:0 0 0 10px}.aioseo-setup-wizard-container .getting-started-video{padding-left:20px;margin-bottom:-60px;position:relative;height:0;padding-bottom:56.25%}.aioseo-setup-wizard-container .getting-started-video iframe{width:100%;height:100%;position:absolute;top:0;right:0}.aioseo-google-search-preview{padding:32px 30px;border:1px solid #e8e8eb}.aioseo-google-search-preview .domain{font-size:14px;line-height:1.3;color:#3c4043;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aioseo-google-search-preview .site-title{font-size:20px;line-height:1.3;color:#1a0dab;margin:3px 0}.aioseo-google-search-preview .meta-description{max-width:600px;font-size:14px;line-height:1.4;color:#52565a}.edit-post-sidebar .domain{font-size:13px}.edit-post-sidebar .site-title{font-size:16px}.edit-post-sidebar .meta-description{font-size:12px}.aioseo-modal-content .domain,.aioseo-modal-content .meta-description{font-size:14px}.aioseo-modal-content .site-title{font-size:20px}html:not([data-scroll="0"]) .aioseo-header{box-shadow:0 2px 5px rgba(0,0,0,.05);transition:box-shadow .6s}.aioseo-header{position:fixed;z-index:1051;top:0;left:0;right:0;background-color:#fff;height:72px;color:#141b38}.aioseo-header .mascot{width:35px;height:auto;margin-left:10px}.aioseo-header .aioseo-header-content{padding:0;display:flex;height:72px;align-items:center}.aioseo-header .aioseo-header-content svg.aioseo-logo{height:26px;margin-left:10px}.aioseo-header .aioseo-header-content .spacer{display:inline-flex;width:26.25px;height:0;border:1px solid #d0d1d7;transform:rotate(72.26deg)}.aioseo-header .aioseo-header-content .page-name{display:inline-flex;margin-right:10px;font-size:18px;font-weight:400;flex:1 0 auto}.aioseo-header .aioseo-header-content .header-actions{display:flex}.aioseo-header .aioseo-header-content .header-actions .round{position:relative;background-color:#f3f4f5;border-radius:50%;width:40px;height:40px;display:flex;align-items:center;justify-content:center;margin-right:10px;cursor:pointer;transition:background-color .2s ease}.aioseo-header .aioseo-header-content .header-actions .round svg{width:20px;height:20px}.aioseo-header .aioseo-header-content .header-actions .round:hover{background-color:#e5e7e9}.aioseo-header .aioseo-header-content .header-actions .number{position:absolute;background-color:#df2a4a;width:16px;height:16px;font-weight:600;font-size:10px;color:#fff;top:-8px;right:50%;transform:translateX(50%);margin:0;-webkit-animation:bounce 2s 5;animation:bounce 2s 5}.aioseo-header .aioseo-header-content .header-actions .number:hover{background-color:#df2a4a}@-webkit-keyframes bounce{0%,25%,50%,75%,to{transform:translateX(50%) translateY(0)}40%{transform:translateX(50%) translateY(-8px)}60%{transform:translateX(50%) translateY(-4px)}}@keyframes bounce{0%,25%,50%,75%,to{transform:translateX(50%) translateY(0)}40%{transform:translateX(50%) translateY(-8px)}60%{transform:translateX(50%) translateY(-4px)}}body.modal-open{overflow:hidden}.aioseo-help{display:block;position:fixed;top:0;bottom:0;right:0;left:0;height:100%;width:100vw;background-color:#fff;color:#8c8f9a;opacity:0;max-height:100vh;overflow-y:auto;transition:opacity .3s ease-in 0s;z-index:-999}.aioseo-help.visible{opacity:1;z-index:100000}.aioseo-help .aioseo-help-header{background:#fff;width:100%;height:60px;position:fixed;z-index:1;top:0;right:0}.aioseo-help .aioseo-help-docs{margin-bottom:25px;display:none}.aioseo-help .aioseo-help-docs li{padding:0 4px 14px 0;margin:0}.aioseo-help .aioseo-help-docs .aioseo-help-docs-viewall{margin:10px 0 0}.aioseo-help .aioseo-help-docs .aioseo-help-additional-docs{display:none}.aioseo-help .aioseo-help-docs .aioseo-help-additional-docs.opened{display:block}.aioseo-help .aioseo-help-docs .icon .aioseo-description{width:20px;margin-top:0;position:relative;top:5px;right:-5px;color:#8c8f9a}.aioseo-help .help-content{background-color:#fff;width:100%;max-width:740px;margin:0 auto 50px;padding:0 20px;box-sizing:border-box;z-index:1}.aioseo-help .help-content .aioseo-help-category{border-top:1px solid #e8e8eb;margin:0}.aioseo-help .help-content .aioseo-help-category:last-child{border-bottom:1px solid #e8e8eb}.aioseo-help .help-content .aioseo-help-category header{display:block;position:relative;cursor:pointer;width:100%;height:68px}.aioseo-help .help-content .aioseo-help-category header .title{display:block;font-size:16px;color:#8c8f9a;font-weight:600;padding:23px 30px 23px 11px}.aioseo-help .help-content .aioseo-help-category .folder-open{position:absolute;top:24px;width:20px;height:20px;color:#8c8f9a}.aioseo-help .help-content .aioseo-help-category .dashicons-arrow-right-alt2{position:absolute;top:20px;left:0;transition:transform .3s ease-out}.aioseo-help .help-content .aioseo-help-category.opened .aioseo-help-docs{display:block}.aioseo-help .help-content .aioseo-help-category.opened .dashicons-arrow-right-alt2{transform:rotate(-90deg)}.aioseo-help .help-content #aioseo-help-search{position:relative;background-color:#fff;text-align:center;top:0;padding:74px 0 50px}.aioseo-help .help-content #aioseo-help-result .aioseo-help-docs{display:block}.aioseo-help .help-content #aioseo-help-footer{display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:center;margin:50px 0 0}@media screen and (max-width:750px){.aioseo-help .help-content #aioseo-help-footer{display:block}}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block{box-sizing:border-box;max-width:325px;border:1px solid #8c8f9a;border-radius:6px;text-align:center}@media screen and (max-width:750px){.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block{max-width:100%}}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block:first-child{margin-left:20px}@media screen and (max-width:750px){.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block:first-child{margin:0 0 20px}}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a{display:block;padding:25px;text-decoration:none;color:#8c8f9a}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a h3{color:#8c8f9a}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a span{font-size:16px;color:#005ae0;text-decoration:underline}.aioseo-help .help-content #aioseo-help-footer .aioseo-help-footer-block a:hover span{text-decoration:none}.aioseo-help .help-content #aioseo-help-footer .aioseo-description,.aioseo-help .help-content #aioseo-help-footer .aioseo-support{width:48px;margin-top:0;color:#8c8f9a}#aioseo-help-logo{position:fixed;width:132px;height:26px;top:20px;right:20px;z-index:2}#aioseo-help-close{position:fixed;width:20px;height:20px;top:30px;left:30px;cursor:pointer;opacity:.7;transition:all .05s;z-index:2}@media screen and (max-width:750px){#aioseo-help-close{top:20px;left:20px}}.aioseo-html-tags-editor .add-tags{display:flex;align-items:center;margin:20px 0}.aioseo-html-tags-editor .add-tags div{margin-left:10px}.aioseo-html-tags-editor .add-tags a{font-size:14px}.aioseo-html-tags-editor .add-tags a.no-underline{padding-right:10px}.aioseo-loading-spinner{width:35px;height:35px;position:absolute}.aioseo-loading-spinner .double-bounce1,.aioseo-loading-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#fff;opacity:.6;position:absolute;top:0;right:0;-webkit-animation:sk-bounce 1.3s ease-in-out infinite;animation:sk-bounce 1.3s ease-in-out infinite}.aioseo-loading-spinner.dark .double-bounce1,.aioseo-loading-spinner.dark .double-bounce2{background-color:#8c8f9a}.aioseo-loading-spinner .double-bounce2{-webkit-animation-delay:-.65s;animation-delay:-.65s}@-webkit-keyframes sk-bounce{0%,to{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,to{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}body.vue-build{margin:0}body.vue-build .aioseo-app{min-height:calc(100vh - 88px)}body.vue-build .aioseo-app .aioseo-main{padding-bottom:30px}body.aioseo-setup-wizard{margin:0;padding:0}body.aioseo-setup-wizard .aioseo-app{min-height:100vh;width:100%}body[class*=page_aioseo] .aioseo-header,body[class*=page_aioseo] .aioseo-notifications .overlay{right:160px}body[class*=page_aioseo].folded .aioseo-header,body[class*=page_aioseo].folded .aioseo-notifications .overlay{right:36px}body[class*=page_aioseo] #wpcontent{padding:0;background-color:#f3f4f5}body[class*=page_aioseo] .update-nag{display:none}body[class*=page_aioseo].admin-bar .aioseo-app{min-height:calc(100vh - 185px)}body[class*=page_aioseo].admin-bar.aioseo-has-bar .aioseo-app{min-height:calc(100vh - 225px)}body[class*=page_aioseo].admin-bar .aioseo-header,body[class*=page_aioseo].admin-bar .aioseo-notifications .notification-menu,body[class*=page_aioseo].admin-bar .aioseo-notifications .overlay{top:32px}body[class*=page_aioseo] .aioseo-app{min-height:calc(100vh - 153px)}body[class*=page_aioseo].aioseo-has-bar .aioseo-app{min-height:calc(100vh - 193px)}body[class*=page_aioseo].aioseo-has-bar .aioseo-header{height:112px}@media screen and (max-width:782px){body[class*=page_aioseo].aioseo-has-bar .aioseo-header{height:132px}}@media screen and (max-width:960px){body[class*=page_aioseo].auto-fold .aioseo-header,body[class*=page_aioseo].auto-fold .aioseo-notifications .overlay{right:36px}}@media screen and (max-width:782px){body[class*=page_aioseo] #wpbody-content{padding-bottom:20px}body[class*=page_aioseo].admin-bar .aioseo-app{min-height:calc(100vh - 199px)}body[class*=page_aioseo].admin-bar .aioseo-header,body[class*=page_aioseo].admin-bar .aioseo-notifications .notification-menu,body[class*=page_aioseo].admin-bar .aioseo-notifications .overlay{top:46px}body[class*=page_aioseo] .aioseo-header,body[class*=page_aioseo] .aioseo-notifications .overlay,body[class*=page_aioseo].auto-fold .aioseo-header,body[class*=page_aioseo].auto-fold .aioseo-notifications .overlay{right:0}}@media screen and (max-width:600px){body[class*=page_aioseo].admin-bar .aioseo-header,body[class*=page_aioseo].admin-bar .aioseo-notifications .menu,body[class*=page_aioseo].admin-bar .aioseo-notifications .overlay{position:absolute;top:46px}}body.aioseo-has-bar .aioseo-app .aioseo-main>.aioseo-container{margin-top:128px}@media screen and (max-width:782px){body.aioseo-has-bar .aioseo-app .aioseo-main>.aioseo-container{margin-top:148px}}.aioseo-app{box-sizing:border-box;background-color:#f3f4f5}.aioseo-app .route-fade-enter-active,.aioseo-app .route-fade-leave-active{transition:all .2s}.aioseo-app .route-fade-enter,.aioseo-app .route-fade-leave-active{opacity:0}.aioseo-app .route-fade-enter{transform:translateX(-30px)}.aioseo-app .route-fade-leave-active{transform:translateX(30px)}.aioseo-app *,.aioseo-app :after,.aioseo-app :before{box-sizing:inherit}.aioseo-app * :not(.aioseo-button):not(.aioseo-input),.aioseo-app :after :not(.aioseo-button):not(.aioseo-input),.aioseo-app :before :not(.aioseo-button):not(.aioseo-input){line-height:1.4}.aioseo-app p{font-size:16px}.aioseo-app a:not(.aioseo-button){color:#005ae0}.aioseo-app a:not(.aioseo-button).text-white{color:#fff}.aioseo-app a:not(.aioseo-button).no-underline,.aioseo-app a:not(.aioseo-button):hover{text-decoration:none}.aioseo-app h2{font-size:32px;margin:0}.aioseo-app .aioseo-main{height:100%}.aioseo-app .aioseo-main>.aioseo-container{margin-top:88px}.aioseo-app .aioseo-main .save-changes{display:flex;justify-content:flex-end}.aioseo-app .d-flex{display:flex}.aioseo-app .aioseo-section-description{font-size:16px;color:#141b38;line-height:1.8;padding-bottom:30px}.aioseo-app .aioseo-description-text{font-size:14px;line-height:1.8;color:#141b38}.aioseo-app .aioseo-description-text.aioseo-error{color:#df2a4a}.aioseo-app .aioseo-description{font-size:14px;line-height:1.8;margin:8px 0 0;color:#141b38}.aioseo-app .aioseo-description.no-margin{margin:0}.aioseo-app .aioseo-description.aioseo-error{color:#df2a4a}.aioseo-app .max-recommended-count{color:#434960;text-align:left;margin-top:10px;font-size:14px}.aioseo-app .max-recommended-count strong.error{color:#df2a4a}.aioseo-app .popper{text-align:right;font-size:12px;padding:20px;background-color:#fff;border:none;border-radius:3px;box-shadow:0 3px 4.8px 0 rgba(32,71,102,.27);z-index:9999;max-width:350px;line-height:1.4}.aioseo-app .popper.action{padding:8px 12px;background-color:#141b38;color:#fff}.aioseo-app .popper.action .popper__arrow{border-top-color:#141b38}.aioseo-app .popper[x-placement^=bottom]{box-shadow:0 -2px 4.8px 0 rgba(32,71,102,.27)}.aioseo-app .popper .aioseo-description{margin:0}.aioseo-app .aioseo-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#00aa63}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#00aa63}to{background-color:#fff}}.aioseo-seo-site-score .aioseo-blur{display:flex;align-items:center}.aioseo-seo-site-score .aioseo-seo-site-score-cta{position:absolute;right:50%;top:50%;transform:translateX(50%) translateY(-50%);background-color:#fff;padding:24px 30px;border:1px solid #e8e8eb;box-shadow:0 2px 10px rgba(0,90,224,.2);color:#141b38;font-size:16px;font-weight:600;width:82%;max-width:500px;text-align:center}.aioseo-app .aioseo-upgrade-bar{height:40px;background-color:#00aa63;display:flex;align-items:center;justify-content:center;color:#fff;font-size:13px;padding:0 40px 0 14px}.aioseo-app .aioseo-upgrade-bar .upgrade-text{display:flex;align-items:center;flex:1;justify-content:center}.aioseo-app .aioseo-upgrade-bar strong{font-weight:600}.aioseo-app .aioseo-upgrade-bar svg.aioseo-logo-gear{width:20px;height:20px;min-width:20px;margin-left:14px}.aioseo-app .aioseo-upgrade-bar svg.aioseo-close{cursor:pointer;width:12px;height:12px}.aioseo-app .aioseo-upgrade-bar a{color:#fff;text-decoration:underline}.aioseo-app .aioseo-upgrade-bar a:hover{text-decoration:none}@media screen and (max-width:782px){.aioseo-app .aioseo-upgrade-bar{padding:0 10px;height:60px}}.field-description[data-v-2bfc1de2]{display:inline-block;margin-top:10px;font-size:14px}.aioseo-address-wrapper[data-v-403ef8f7]{display:flex;max-width:500px}.field-description[data-v-403ef8f7]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-403ef8f7]{margin-top:8px}.field-description[data-v-a0a894b8]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-a0a894b8]{margin-top:8px}.field-description[data-v-4fb4e044]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-4fb4e044]{margin-top:8px}.field-description[data-v-85733554]{display:inline-block;margin-top:10px;font-size:14px}.field-description[data-v-080c623c]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-080c623c]{margin-top:8px}.field-description[data-v-78337de7]{display:inline-block;margin-bottom:10px;font-size:14px}.mt-8[data-v-78337de7]{margin-top:8px}.aioseo-general-settings .more-tooltip-text strong{color:#00aa63}.aioseo-general-settings .license-cta-box{border-radius:3px;background-color:#f2f7fd;padding:20px;max-width:630px;margin:10px 0 30px}.aioseo-general-settings .license-cta-box a{color:#00aa63}.aioseo-general-settings .license-cta-box div{font-weight:600}.aioseo-general-settings .license-cta-box span{font-size:14px;font-style:italic}.aioseo-general-settings .license-key{margin-top:10px;display:flex;max-width:560px}.aioseo-general-settings .license-key .aioseo-input{margin-left:10px}.aioseo-app .aioseo-tabs.internal{margin-bottom:0}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation{margin-top:5px}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation .md-button{height:60px}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple{padding:0 25px}.aioseo-app .aioseo-tabs.internal .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple .md-ripple-wave{display:none}.aioseo-app .aioseo-tabs.skinny .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple{padding:0 16px}.aioseo-app .md-tabs{display:flex;flex-direction:column}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation{margin-top:2px;background:transparent;display:flex;position:relative;justify-content:flex-start}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation.md-elevation-0{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button{color:#141b38;max-width:264px;min-width:72px;height:60px;margin:0;border-radius:0;font-size:15px;font-weight:500;padding:0;display:inline-block;position:relative;overflow:hidden;outline:none;background:transparent;border:0;transition:.4s cubic-bezier(.4,0,.2,1);font-family:inherit;line-height:normal;text-decoration:none;vertical-align:top;white-space:nowrap}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:before{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;opacity:0;transition:.4s cubic-bezier(.4,0,.2,1);will-change:background-color,opacity;content:" "}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple{padding:0 18px;display:flex;justify-content:center;align-items:center;width:100%;height:100%;position:relative;z-index:5;overflow:hidden;-webkit-mask-image:radial-gradient(circle,#fff 100%,#000 0);mask-image:radial-gradient(circle,#fff 100%,#000 0)}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button .md-ripple .md-button-content{position:static;z-index:2}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:not([disabled]){cursor:pointer}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:not([disabled]):active:before,.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button:not([disabled]):hover:before{background-color:currentColor;opacity:.12}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button.md-active{color:#005ae0}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-button.md-active:focus{outline:none;box-shadow:none}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-tabs-indicator{height:2px;background-color:#005ae0;bottom:-2px;position:absolute;right:0;transform:translateZ(0);will-change:left,right}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-tabs-indicator.md-tabs-indicator-left{transition:right .3s cubic-bezier(.4,0,.2,1),left .35s cubic-bezier(.4,0,.2,1)}.aioseo-app .md-tabs.md-theme-default .md-tabs-navigation .md-tabs-indicator.md-tabs-indicator-right{transition:left .3s cubic-bezier(.4,0,.2,1),right .35s cubic-bezier(.4,0,.2,.1)}.aioseo-app .aioseo-tabs{display:flex;border-bottom:2px solid #e8e8eb;position:relative;margin-bottom:38px}.aioseo-app .aioseo-tabs .save-changes{position:absolute;left:0;bottom:10px}.aioseo-app .aioseo-tabs .tab-score{display:inline-flex;align-items:center;justify-content:flex-end;font-size:11px;font-weight:700;padding-right:12px}.aioseo-app .aioseo-tabs .tab-score.green{color:#00aa63}.aioseo-app .aioseo-tabs .tab-score.orange{color:#f18200}.aioseo-app .aioseo-tabs .tab-score.red{color:#df2a4a}.aioseo-app .aioseo-tabs .tab-score svg{display:inline;margin-left:7px}.aioseo-app .aioseo-mobile-tabs{position:relative;height:40px;margin-top:20px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.aioseo-app .aioseo-mobile-tabs .active-tab{color:#005ae0;padding-right:18px;min-height:100%;display:flex;align-items:center;cursor:pointer}.aioseo-app .aioseo-mobile-tabs .active-tab div{position:relative}.aioseo-app .aioseo-mobile-tabs .active-tab div span{height:2px;background-color:#005ae0;bottom:-7px;position:absolute;right:-18px;left:-18px;z-index:10}.aioseo-app .aioseo-mobile-tabs .active-tab svg.aioseo-caret{width:24px;height:24px;position:relative;top:6px;cursor:pointer;transition:transform .3s}.aioseo-app .aioseo-mobile-tabs .active-tab svg.aioseo-caret.rotated{transform:rotate(-180deg)}.aioseo-app .aioseo-mobile-tabs .tab-dropdown{border:1px solid #e8e8eb;border-top:none}.aioseo-app .aioseo-mobile-tabs .tab-links{background:#fff;position:relative;z-index:3;padding:8px;width:100%;max-width:300px}@media screen and (max-width:782px){.aioseo-app .aioseo-mobile-tabs .tab-links{max-width:100%}}.aioseo-app .aioseo-mobile-tabs .tab-links a{padding:10px;display:block;color:#141b38;text-decoration:none}.aioseo-app .aioseo-mobile-tabs .tab-links a:hover{color:#005ae0}.md-tooltip{background-color:#141b38!important;color:#fff!important;border-radius:2px;padding:6px 12px;font-size:14px}.md-tooltip:after{content:"";position:absolute;top:100%;right:50%;margin-right:-5px;border:5px solid transparent;border-top-color:#141b38}.modal-mask{position:fixed;z-index:9998;top:0;right:0;width:100%;height:100%;background-color:rgba(20,27,56,.3);display:table;transition:opacity .3s ease}@media screen and (max-width:520px){.modal-mask{display:block;top:46px}}.modal-mask .modal-wrapper{display:table-cell;vertical-align:middle}@media screen and (max-width:520px){.modal-mask .modal-wrapper{display:block;height:100%}}.modal-mask .modal-wrapper .modal-container{width:100%;max-width:750px;max-height:90vh;overflow-y:hidden;overflow-x:hidden;margin:0 auto;background-color:#fff;box-shadow:0 10px 30px rgba(0,0,0,.15);transition:all .3s ease}@media screen and (max-width:520px){.modal-mask .modal-wrapper .modal-container{width:100%;max-width:100%;max-height:calc(100vh - 46px);height:100%}}.modal-mask .modal-wrapper .modal-container .modal-header{position:-webkit-sticky;position:sticky;top:0;z-index:15;padding:20px 40px 0 0;height:60px;font-size:20px;font-weight:700;line-height:1.4;border-bottom:1px solid #e8e8eb;background-color:#fff}@media screen and (max-width:520px){.modal-mask .modal-wrapper .modal-container .modal-header{padding:15px 20px 0 0}}.modal-mask .modal-wrapper .modal-container .modal-header button.close{position:absolute;left:11px;top:11px;width:24px;height:24px;background-color:#fff;border:none;display:flex;align-items:center}.modal-mask .modal-wrapper .modal-container .modal-header button.close svg.aioseo-close{cursor:pointer;width:14px;height:14px}.modal-mask .modal-wrapper .modal-container .modal-body .aioseo-post-general,.modal-mask .modal-wrapper .modal-container .modal-body .aioseo-post-social{height:calc(90vh - 120px);max-height:600px;overflow-y:auto;overflow-x:hidden}@media screen and (max-width:520px){.modal-mask .modal-wrapper .modal-container .aioseo-modal-content,.modal-mask .modal-wrapper .modal-container .aioseo-modal-content>.component-wrapper,.modal-mask .modal-wrapper .modal-container .modal-body,.modal-mask .modal-wrapper .modal-container .modal-body>div{height:100%}.modal-mask .modal-wrapper .modal-container .aioseo-modal-content>.component-wrapper{display:flex;align-items:flex-end}.modal-mask .modal-wrapper .modal-container .aioseo-post-general,.modal-mask .modal-wrapper .modal-container .aioseo-post-social{height:100%!important;max-height:100%!important;padding:20px!important}.modal-mask .modal-wrapper .modal-container .aioseo-post-general .mobile-radio-buttons,.modal-mask .modal-wrapper .modal-container .aioseo-post-social .mobile-radio-buttons{margin-bottom:0}.modal-mask .modal-wrapper .modal-container .aioseo-add-template-tag{display:none}.modal-mask .modal-wrapper .modal-container .tab-facebook .aioseo-settings-row:last-of-type,.modal-mask .modal-wrapper .modal-container .tab-twitter .aioseo-settings-row:last-of-type{margin-bottom:64px!important;padding-bottom:32px!important}}.modal-enter,.modal-leave-active{opacity:0}.modal-enter .modal-container,.modal-leave-active .modal-container{transform:scale(1.1)}.aioseo-notification{margin-bottom:20px}.aioseo-notification>div{display:flex;align-items:flex-start;padding-bottom:10px;border-bottom:1px solid #e8e8eb}.aioseo-notification>div .icon{margin-left:20px}.aioseo-notification>div .icon svg{width:20px;height:20px;color:#00aa63}.aioseo-notification>div .icon svg.warning{color:#f18200}.aioseo-notification>div .icon svg.info{color:#005ae0}.aioseo-notification>div .icon svg.success{color:#00aa63}.aioseo-notification>div .icon svg.error{color:#df2a4a}.aioseo-notification>div .body{margin-left:20px;flex:1}.aioseo-notification>div .body .title{font-size:16px;font-weight:600;color:#141b38;margin-bottom:7px;display:flex;align-items:center}.aioseo-notification>div .body .title div:first-child{flex:1;margin-left:5px;line-height:1.4}.aioseo-notification>div .body .title .date{font-weight:400;color:#8c8f9a;font-size:12px}.aioseo-notification>div .body .notification-content{margin-bottom:10px;max-width:400px}.aioseo-notification>div .body .actions{flex-wrap:wrap;display:flex;align-items:center}.aioseo-notification>div .body .actions>*{margin-bottom:10px}.aioseo-notification>div .body .actions .aioseo-button{margin-left:20px}.aioseo-notification>div .body .actions .dismiss{color:#8c8f9a;font-size:14px}.aioseo-notification-cards .aioseo-notification:last-child>div{border-bottom:none;margin-bottom:none}.aioseo-notification-cards .no-notifications{display:flex;align-items:center;flex-direction:column;padding-top:100px;font-size:16px;color:#8c8f9a}.aioseo-notification-cards .no-notifications img{width:30%;height:auto}.aioseo-notification-cards .no-notifications .great-scott{margin:20px 0 10px;font-size:24px;font-weight:600;color:#434960}.aioseo-notification-cards .no-notifications .no-new-notifications{margin-bottom:10px}body.aioseo-show-notifications .aioseo-main{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.aioseo-notifications a.dismiss{color:#8c8f9a;font-size:14px}.aioseo-notifications .notification-menu{height:100%;width:100%;max-width:570px;position:fixed;z-index:1053;top:0;left:0;bottom:0;background-color:#fff;overflow-x:hidden;transition:.5s}.aioseo-notifications .notification-menu .notification-header{height:70px;display:flex;align-items:center;padding:0 30px;color:#fff;background-color:#005ae0}.aioseo-notifications .notification-menu .notification-header .new-notifications{font-size:18px;font-weight:600}.aioseo-notifications .notification-menu .notification-header .dismissed-notifications{margin-right:25px;flex:1 1 auto}.aioseo-notifications .notification-menu .notification-header .dismissed-notifications a{font-size:14px;color:#fff}.aioseo-notifications .notification-menu .notification-header svg.aioseo-close{width:14px;height:14px;cursor:pointer}.aioseo-notifications .notification-menu .notification-header svg.aioseo-close:hover{color:#ccc}.aioseo-notifications .notification-menu .notification-cards{padding:30px;height:calc(100% - 192px);overflow:auto}.aioseo-notifications .notification-menu .notification-footer{height:90px;padding:30px;display:flex;align-items:center}.aioseo-notifications .notification-menu .notification-footer div.pagination{flex:1;display:flex;align-items:center}.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number{font-size:13px;color:#141b38;background:#e8e8eb;height:30px;width:30px;display:flex;align-items:center;justify-content:center;border-radius:2px;margin-left:4px;cursor:pointer}.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number:last-child{margin-left:0}.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number.active,.aioseo-notifications .notification-menu .notification-footer div.pagination .page-number:hover{color:#fff;background-color:#005ae0}.aioseo-notifications .overlay{position:fixed;z-index:1052;top:0;left:0;bottom:0;right:160px;background-color:#141b38;opacity:.5;transition:.5s}.aioseo-notifications .notifications-fade-enter-active,.aioseo-notifications .notifications-fade-leave-active{transition:opacity .5s}.aioseo-notifications .notifications-fade-enter,.aioseo-notifications .notifications-fade-leave-to{opacity:0}.aioseo-notifications .notifications-slide-enter-active,.aioseo-notifications .notifications-slide-leave-active{transition:all .5s ease-in-out}.aioseo-notifications .notifications-slide-enter,.aioseo-notifications .notifications-slide-leave-to{left:-570px}.aioseo-post-type-options-toggle{margin-top:20px}.aioseo-priority-score{max-width:350px}.aioseo-priority-score .header-row{font-size:14px}.aioseo-pro-badge{height:24px;border-radius:3px;background:#e8e8eb;color:#434960;font-size:14px;font-weight:600;display:inline-flex;padding:0 8px;align-items:center}.aioseo-score-settings{display:flex;align-items:center;padding-bottom:14px}.aioseo-score-settings svg{margin-left:7px}.aioseo-score-settings span{margin-left:12px}.aioseo-score-button{display:inline-block;padding:5px 8px;font-size:14px;font-weight:700;color:#a1a1a1;border:1px solid #a1a1a1;border-radius:3px}.aioseo-score-button.score-none,.aioseo-score-button.score-red{border-color:#df2a4a;color:#df2a4a!important}.aioseo-score-button.score-orange{border-color:#f18200;color:#f18200!important}.aioseo-score-button.score-green{border-color:#00aa63;color:#00aa63!important}.aioseo-score-button.classic-editor{background:#fff!important;display:inline-block!important;height:auto!important}.aioseo-score-button.classic-editor span{margin-left:0}.aioseo-seo-site-analysis-result{border:1px solid #dcdde1;margin-top:10px}.aioseo-seo-site-analysis-result .result-header{height:66px;padding:0 20px;display:flex;align-items:center}.aioseo-seo-site-analysis-result .result-header .result-icon{display:flex;align-items:center;margin-left:16px}.aioseo-seo-site-analysis-result .result-header .result-icon svg{width:24px;height:24px;color:#8c8f9a}.aioseo-seo-site-analysis-result .result-header .result-icon svg.passed{color:#00aa63}.aioseo-seo-site-analysis-result .result-header .result-icon svg.error{color:#df2a4a}.aioseo-seo-site-analysis-result .result-header .result-icon svg.warning{color:#005ae0}.aioseo-seo-site-analysis-result .result-header .result-content{font-size:16px;font-weight:600;flex:1}.aioseo-seo-site-analysis-result .result-header .result-toggle{width:30px;height:26px;border:1px solid #dcdde1;border-radius:3px;display:flex;align-items:center;justify-content:center;cursor:pointer}.aioseo-seo-site-analysis-result .result-header .result-toggle.active,.aioseo-seo-site-analysis-result .result-header .result-toggle:hover{background-color:#434960}.aioseo-seo-site-analysis-result .result-header .result-toggle.active svg,.aioseo-seo-site-analysis-result .result-header .result-toggle:hover svg{color:#fff}.aioseo-seo-site-analysis-result .result-header .result-toggle.active svg{transform:rotate(0deg)}.aioseo-seo-site-analysis-result .result-header .result-toggle svg{width:100%;max-width:20px;height:auto;color:#8c8f9a;transform:rotate(90deg);transition:transform .3s}.aioseo-seo-site-analysis-result .result-body{padding:0 60px 24px}.aioseo-seo-site-analysis-result .result-body .result-message{color:#434960;font-size:16px}.aioseo-seo-site-analysis-result .result-body .result-code-alt pre,.aioseo-seo-site-analysis-result .result-body .result-code pre{background:#f3f4f5;border-radius:3px;max-width:100%;padding:10px;overflow:auto}.aioseo-seo-site-analysis-result .result-body .result-code-alt pre code,.aioseo-seo-site-analysis-result .result-body .result-code pre code{padding:0;background:transparent}.aioseo-seo-site-analysis-result .result-body .result-code pre{white-space:pre-wrap}.aioseo-seo-site-analysis-result .result-body .result-action{margin-top:20px}.aioseo-seo-site-analysis-results .group-header{font-size:16px;font-weight:600}.aioseo-seo-site-analysis-results .group-header:not(:first-child){margin-top:30px}.aioseo-seo-site-analysis-results .group-keywords{display:flex;margin-top:5px;flex-wrap:wrap;align-items:center}.aioseo-seo-site-analysis-results .group-keywords .keyword{font-size:14px;color:#434960;font-weight:600;background:#f3f4f5;padding:9px 10px;border-radius:3px;margin:0 0 5px 10px}.aioseo-seo-site-analysis-results .group-keywords .keyword:first-child{font-size:20px}.aioseo-settings-row{margin-bottom:22px;padding-bottom:16px;border-bottom:1px solid #e8e8eb}.aioseo-settings-row.no-margin{margin-bottom:0}.aioseo-settings-row.small-padding{padding-bottom:5px}.aioseo-settings-row.medium-margin{margin-bottom:15px}.aioseo-settings-row.no-border{border:none}.aioseo-settings-row.no-side-margin{margin-right:0!important;margin-left:0!important}.aioseo-settings-row .settings-name{color:#141b38}.aioseo-settings-row .settings-name .name{font-weight:600;font-size:16px;display:flex;align-items:center}.aioseo-settings-row .settings-name .name.small-margin{margin-bottom:5px}.aioseo-settings-row .settings-name .name.align{line-height:40px}.aioseo-settings-row .settings-name .name.align-small{line-height:30px}.aioseo-settings-row .settings-name .name .aioseo-pro-badge{margin-right:10px}.aioseo-settings-row .settings-name .aioseo-description{margin-top:20px}.aioseo-settings-row .settings-content{font-size:16px}.aioseo-settings-row p.description{font-size:14px}.aioseo-separators{margin-top:-.5rem}.aioseo-separators .aioseo-col .separator{background-color:#f3f4f5;display:flex;align-items:center;justify-content:center;min-height:51px;font-weight:600;font-size:25px;border:1px solid #dcdde1;border-radius:3px;cursor:pointer}.aioseo-separators .aioseo-col .separator:hover{background-color:#e5e7e9}.aioseo-separators .aioseo-col .separator.active{background-color:#005ae0;border-color:#005ae0;color:#fff}.aioseo-separators .aioseo-col .separator.active:hover{background-color:#005ae0}.aioseo-separators .aioseo-col .show-more{height:100%;display:flex;align-items:center}.aioseo-separators .aioseo-col .show-more a{color:#8c8f9a}.aioseo-separators .aioseo-col .custom-separator{margin:20px 0;display:flex;align-items:center}.aioseo-separators .aioseo-col .custom-separator .aioseo-input{margin-right:10px;max-width:100px}.aioseo-sidebar-card .header{height:46px}.aioseo-sidebar-card .header:hover{cursor:pointer}.aioseo-sidebar-card .content{padding-bottom:8px!important}.aioseo-sidebar-card ul{margin-bottom:0}.aioseo-sidebar-card ul li{margin-bottom:16px;padding-right:25px}.aioseo-sidebar-card ul .description{margin:0}.aioseo-robots-meta .global-robots-settings{margin:0;padding-top:24px}.aioseo-robots-meta .global-robots-settings>.settings{padding:8px 0 16px}.aioseo-robots-meta .global-robots-settings-options{display:flex}.aioseo-robots-meta .global-robots-settings-options .max-snippet{margin-left:30px}.aioseo-robots-meta .global-robots-settings-options .max-snippet .aioseo-input{max-width:90px}.aioseo-robots-meta .global-robots-settings-options .max-video-preview{margin-left:30px}.aioseo-robots-meta .global-robots-settings-options .max-video-preview .aioseo-input{max-width:90px}.aioseo-robots-meta .global-robots-settings-options .max-image-preview .aioseo-select{min-width:155px}.aioseo-robots-meta .global-robots-settings-options>span{display:inline-block;margin-bottom:4px}@media screen and (max-width:782px){.aioseo-robots-meta .global-robots-settings-options{display:block}.aioseo-robots-meta .global-robots-settings-options .max-snippet,.aioseo-robots-meta .global-robots-settings-options .max-video-preview{margin-left:0;margin-bottom:20px}.aioseo-robots-meta .global-robots-settings-options>div .aioseo-input,.aioseo-robots-meta .global-robots-settings-options>div .aioseo-select{min-width:100%}}.edit-post-sidebar .global-robots-settings{padding-top:12px}.edit-post-sidebar .global-robots-settings>.settings{padding:4px 0 12px}.edit-post-sidebar .global-robots-settings>.settings label{font-size:16px}.edit-post-sidebar .global-robots-settings .robots-meta-title{padding-top:4px;display:inline-block}.edit-post-sidebar .global-robots-settings-options{flex-wrap:wrap}.edit-post-sidebar .max-snippet{margin-left:30px!important}.edit-post-sidebar .max-video-preview{margin-left:0!important}.edit-post-sidebar .max-image-preview{margin-top:20px!important}.aioseo-score-amount-wrapper{position:absolute;right:0;top:0;left:0;bottom:0;display:flex;align-items:center;justify-content:center;flex-direction:column;color:#141b38;margin:20px}.aioseo-score-amount-wrapper .aioseo-score-amount .score{font-size:64px;font-weight:600}.aioseo-score-amount-wrapper .aioseo-score-amount .total{font-size:18px;color:#8c8f9a;padding-right:3px}.aioseo-score-amount-wrapper .score-description{max-width:80%;text-align:center;font-size:17px;font-weight:600;line-height:1.1}.aioseo-score-amount-wrapper .score-analyzing{margin-top:20px;font-size:30px}.aioseo-site-score-analyze{position:relative;display:flex;align-items:center;justify-content:center;flex:1}.aioseo-site-score-analyze .analyze-errors{text-align:center;margin-bottom:1em}.aioseo-site-score-analyze .aioseo-seo-site-score-score{position:relative;min-width:175px;max-width:217px;margin-left:5em}.aioseo-site-score-analyze .aioseo-seo-site-score-score svg{width:100%;height:auto}.aioseo-site-score-analyze .aioseo-seo-site-score-description h2{line-height:1.4}.aioseo-site-score-analyze .aioseo-seo-site-score-description svg.aioseo-book{width:20px;height:20px;margin:0 0 0 10px;color:#005ae0}.aioseo-site-score-analyze .aioseo-seo-site-score-description>div{font-size:16px;color:#141b38;margin-bottom:10px}.aioseo-site-score-analyze .aioseo-seo-site-score-description .links{margin-top:30px;font-size:14px;font-weight:600}.aioseo-site-score-analyze .aioseo-seo-site-score-description .links .no-underline{padding-right:5px}.aioseo-site-score-competitor{position:relative;display:flex;align-items:center;justify-content:center;flex-direction:column}.aioseo-site-score-competitor .aioseo-seo-site-score-score{position:relative;min-width:175px;max-width:217px;margin-left:1em}.aioseo-site-score-competitor .aioseo-seo-site-score-score svg{width:100%;height:auto}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations{margin:20px 0}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links){display:flex;align-items:center;font-size:14px;color:#141b38;font-weight:600;margin-bottom:10px}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round{position:relative;border-radius:50%;width:24px;min-width:24px;max-width:24px;height:24px;display:flex;align-items:center;justify-content:center;margin-left:10px;font-size:12px;color:#fff;font-weight:600}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.red{background-color:#df2a4a}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.blue{background-color:#005ae0}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.orange{background-color:#f18200}.aioseo-site-score-competitor .aioseo-seo-site-score-recommendations>div:not(.links) .round.green{background-color:#00aa63}.aioseo-site-score-competitor .refresh-results .aioseo-refresh{width:14px;height:14px;margin-left:10px}.aioseo-site-score-competitor .mobile-snapshot{margin-top:60px;max-width:250px}.aioseo-site-score-competitor .mobile-snapshot div{font-weight:600;font-size:16px;margin-bottom:10px}.aioseo-site-score-competitor .mobile-snapshot img{width:100%;height:auto}.aioseo-site-score-dashboard{position:relative;display:flex;align-items:center;justify-content:center}.aioseo-site-score-dashboard .analyze-errors{text-align:center;margin-bottom:1em}.aioseo-site-score-dashboard .aioseo-seo-site-score-score{position:relative;min-width:175px;max-width:217px;margin-left:1em}.aioseo-site-score-dashboard .aioseo-seo-site-score-score svg{width:100%;height:auto}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links){display:flex;align-items:center;font-size:14px;color:#141b38;font-weight:600;margin-bottom:10px}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round{position:relative;border-radius:50%;width:24px;min-width:24px;max-width:24px;height:24px;display:flex;align-items:center;justify-content:center;margin-left:10px;font-size:12px;color:#fff;font-weight:600}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.red{background-color:#df2a4a}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.blue{background-color:#005ae0}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.orange{background-color:#f18200}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations>div:not(.links) .round.green{background-color:#00aa63}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations .links{margin-top:30px;font-size:14px;font-weight:600}.aioseo-site-score-dashboard .aioseo-seo-site-score-recommendations .links .no-underline{padding-right:5px}.aioseo-social-profiles .same-username .use-same{padding:30px;background:#f9f9fa}.aioseo-social-profiles .same-username .use-same .aioseo-checkbox{font-size:16px}.aioseo-social-profiles .aioseo-social-profile-list,.aioseo-social-profiles .same-username .use-same .aioseo-settings-row,.aioseo-social-profiles .same-username .use-same .profiles{margin-top:20px}.aioseo-social-profiles .aioseo-social-profile-list .social-profile{margin-bottom:0;padding-bottom:0;border-bottom:none}.aioseo-social-profiles .aioseo-social-profile-list .social-profile .profile-error{margin-top:10px}.aioseo-social-profiles .aioseo-social-profile-list .social-profile .name{margin-bottom:0}.aioseo-social-profiles .aioseo-social-profile-list .social-profile img{height:16px;width:auto;margin-left:10px}.aioseo-tooltip{margin-right:14px;display:inline-flex}.aioseo-tooltip,.aioseo-twitter-preview{align-items:center;justify-content:center}.aioseo-twitter-preview{background-color:#f0f2f5;padding:30px;display:flex}.aioseo-twitter-preview .twitter-post{width:100%;max-width:500px;border-radius:5px;border:1px solid #e1e8ed;background-color:#fff}.aioseo-twitter-preview .twitter-post .twitter-header{height:65px;padding:0 18px;display:flex;align-items:center}.aioseo-twitter-preview .twitter-post .twitter-header .profile-photo{overflow:hidden;width:40px;height:40px;border:1px solid #e8e8eb;border-radius:50%}.aioseo-twitter-preview .twitter-post .twitter-header .profile-photo img{height:100%;width:100%}.aioseo-twitter-preview .twitter-post .twitter-header .poster{margin-right:10px;flex:1 0 auto}.aioseo-twitter-preview .twitter-post .twitter-header .poster .poster-name{font-size:15px;color:#1c2022;font-weight:600}.aioseo-twitter-preview .twitter-post .twitter-header .poster .poster-username{color:#697882;font-weight:500;font-size:13px}.aioseo-twitter-preview .twitter-post .twitter-container{padding:0 20px 20px}.aioseo-twitter-preview .twitter-post .twitter-container.summary .twitter-content{flex-direction:row}.aioseo-twitter-preview .twitter-post .twitter-container.summary .twitter-content .twitter-image-preview{display:flex;align-items:center;justify-content:center;background-color:#e1e8ed;min-width:125px;min-height:125px;background-size:cover;background-repeat:no-repeat;background-position:50%}.aioseo-twitter-preview .twitter-post .twitter-container.summary .twitter-content .twitter-image-preview svg.aioseo-book{width:50px;height:50px;color:#8999a5}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content{border-radius:10px;overflow:hidden;display:flex;flex-direction:column;border:1px solid #e1e8ed}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content img{width:100%;height:auto}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description{padding:18px;color:#1c2022}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description .site-domain{font-size:14px;color:#8899a6;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description .site-title{font-size:15px;font-weight:600}.aioseo-twitter-preview .twitter-post .twitter-container .twitter-content .twitter-site-description .site-description{font-size:14px;margin:5px 0}.aioseo-col .reverse{flex-direction:column-reverse}.aioseo-col.col-xs,.aioseo-col.col-xs-1,.aioseo-col.col-xs-2,.aioseo-col.col-xs-3,.aioseo-col.col-xs-4,.aioseo-col.col-xs-5,.aioseo-col.col-xs-6,.aioseo-col.col-xs-7,.aioseo-col.col-xs-8,.aioseo-col.col-xs-9,.aioseo-col.col-xs-10,.aioseo-col.col-xs-11,.aioseo-col.col-xs-12,.aioseo-col.col-xs-offset-0,.aioseo-col.col-xs-offset-1,.aioseo-col.col-xs-offset-2,.aioseo-col.col-xs-offset-3,.aioseo-col.col-xs-offset-4,.aioseo-col.col-xs-offset-5,.aioseo-col.col-xs-offset-6,.aioseo-col.col-xs-offset-7,.aioseo-col.col-xs-offset-8,.aioseo-col.col-xs-offset-9,.aioseo-col.col-xs-offset-10,.aioseo-col.col-xs-offset-11,.aioseo-col.col-xs-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-xs{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-xs-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-xs-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-xs-3{flex-basis:25%;max-width:25%}.aioseo-col.col-xs-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-xs-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-xs-6{flex-basis:50%;max-width:50%}.aioseo-col.col-xs-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-xs-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-xs-9{flex-basis:75%;max-width:75%}.aioseo-col.col-xs-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-xs-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-xs-12{flex-basis:100%;max-width:100%}.aioseo-col.col-xs-offset-0{margin-right:0}.aioseo-col.col-xs-offset-1{margin-right:8.33333333%}.aioseo-col.col-xs-offset-2{margin-right:16.66666667%}.aioseo-col.col-xs-offset-3{margin-right:25%}.aioseo-col.col-xs-offset-4{margin-right:33.33333333%}.aioseo-col.col-xs-offset-5{margin-right:41.66666667%}.aioseo-col.col-xs-offset-6{margin-right:50%}.aioseo-col.col-xs-offset-7{margin-right:58.33333333%}.aioseo-col.col-xs-offset-8{margin-right:66.66666667%}.aioseo-col.col-xs-offset-9{margin-right:75%}.aioseo-col.col-xs-offset-10{margin-right:83.33333333%}.aioseo-col.col-xs-offset-11{margin-right:91.66666667%}.aioseo-col.first-xs{order:-1}.aioseo-col.last-xs{order:1}.aioseo-col.text-xs-left{text-align:right!important;justify-content:flex-start}.aioseo-col.text-xs-center{text-align:center!important;justify-content:center}.aioseo-col.text-xs-right{text-align:left!important;justify-content:flex-end}@media only screen and (min-width:782px){.aioseo-col.col-sm,.aioseo-col.col-sm-1,.aioseo-col.col-sm-2,.aioseo-col.col-sm-3,.aioseo-col.col-sm-4,.aioseo-col.col-sm-5,.aioseo-col.col-sm-6,.aioseo-col.col-sm-7,.aioseo-col.col-sm-8,.aioseo-col.col-sm-9,.aioseo-col.col-sm-10,.aioseo-col.col-sm-11,.aioseo-col.col-sm-12,.aioseo-col.col-sm-offset-0,.aioseo-col.col-sm-offset-1,.aioseo-col.col-sm-offset-2,.aioseo-col.col-sm-offset-3,.aioseo-col.col-sm-offset-4,.aioseo-col.col-sm-offset-5,.aioseo-col.col-sm-offset-6,.aioseo-col.col-sm-offset-7,.aioseo-col.col-sm-offset-8,.aioseo-col.col-sm-offset-9,.aioseo-col.col-sm-offset-10,.aioseo-col.col-sm-offset-11,.aioseo-col.col-sm-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-sm{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-sm-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-sm-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-sm-3{flex-basis:25%;max-width:25%}.aioseo-col.col-sm-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-sm-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-sm-6{flex-basis:50%;max-width:50%}.aioseo-col.col-sm-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-sm-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-sm-9{flex-basis:75%;max-width:75%}.aioseo-col.col-sm-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-sm-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-sm-12{flex-basis:100%;max-width:100%}.aioseo-col.col-sm-offset-0{margin-right:0}.aioseo-col.col-sm-offset-1{margin-right:8.33333333%}.aioseo-col.col-sm-offset-2{margin-right:16.66666667%}.aioseo-col.col-sm-offset-3{margin-right:25%}.aioseo-col.col-sm-offset-4{margin-right:33.33333333%}.aioseo-col.col-sm-offset-5{margin-right:41.66666667%}.aioseo-col.col-sm-offset-6{margin-right:50%}.aioseo-col.col-sm-offset-7{margin-right:58.33333333%}.aioseo-col.col-sm-offset-8{margin-right:66.66666667%}.aioseo-col.col-sm-offset-9{margin-right:75%}.aioseo-col.col-sm-offset-10{margin-right:83.33333333%}.aioseo-col.col-sm-offset-11{margin-right:91.66666667%}.aioseo-col.first-sm{order:-1}.aioseo-col.last-sm{order:1}.aioseo-col.text-sm-left{text-align:right!important;justify-content:flex-start}.aioseo-col.text-sm-center{text-align:center!important;justify-content:center}.aioseo-col.text-sm-right{text-align:left!important;justify-content:flex-end}}@media only screen and (min-width:912px){.aioseo-col.col-md,.aioseo-col.col-md-1,.aioseo-col.col-md-2,.aioseo-col.col-md-3,.aioseo-col.col-md-4,.aioseo-col.col-md-5,.aioseo-col.col-md-6,.aioseo-col.col-md-7,.aioseo-col.col-md-8,.aioseo-col.col-md-9,.aioseo-col.col-md-10,.aioseo-col.col-md-11,.aioseo-col.col-md-12,.aioseo-col.col-md-offset-0,.aioseo-col.col-md-offset-1,.aioseo-col.col-md-offset-2,.aioseo-col.col-md-offset-3,.aioseo-col.col-md-offset-4,.aioseo-col.col-md-offset-5,.aioseo-col.col-md-offset-6,.aioseo-col.col-md-offset-7,.aioseo-col.col-md-offset-8,.aioseo-col.col-md-offset-9,.aioseo-col.col-md-offset-10,.aioseo-col.col-md-offset-11,.aioseo-col.col-md-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-md{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-md-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-md-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-md-3{flex-basis:25%;max-width:25%}.aioseo-col.col-md-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-md-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-md-6{flex-basis:50%;max-width:50%}.aioseo-col.col-md-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-md-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-md-9{flex-basis:75%;max-width:75%}.aioseo-col.col-md-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-md-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-md-12{flex-basis:100%;max-width:100%}.aioseo-col.col-md-offset-0{margin-right:0}.aioseo-col.col-md-offset-1{margin-right:8.33333333%}.aioseo-col.col-md-offset-2{margin-right:16.66666667%}.aioseo-col.col-md-offset-3{margin-right:25%}.aioseo-col.col-md-offset-4{margin-right:33.33333333%}.aioseo-col.col-md-offset-5{margin-right:41.66666667%}.aioseo-col.col-md-offset-6{margin-right:50%}.aioseo-col.col-md-offset-7{margin-right:58.33333333%}.aioseo-col.col-md-offset-8{margin-right:66.66666667%}.aioseo-col.col-md-offset-9{margin-right:75%}.aioseo-col.col-md-offset-10{margin-right:83.33333333%}.aioseo-col.col-md-offset-11{margin-right:91.66666667%}.aioseo-col.first-md{order:-1}.aioseo-col.last-md{order:1}.aioseo-col.text-md-left{text-align:right!important;justify-content:flex-start}.aioseo-col.text-md-center{text-align:center!important;justify-content:center}.aioseo-col.text-md-right{text-align:left!important;justify-content:flex-end}}@media only screen and (min-width:1042px){.aioseo-col.col-lg,.aioseo-col.col-lg-1,.aioseo-col.col-lg-2,.aioseo-col.col-lg-3,.aioseo-col.col-lg-4,.aioseo-col.col-lg-5,.aioseo-col.col-lg-6,.aioseo-col.col-lg-7,.aioseo-col.col-lg-8,.aioseo-col.col-lg-9,.aioseo-col.col-lg-10,.aioseo-col.col-lg-11,.aioseo-col.col-lg-12,.aioseo-col.col-lg-offset-0,.aioseo-col.col-lg-offset-1,.aioseo-col.col-lg-offset-2,.aioseo-col.col-lg-offset-3,.aioseo-col.col-lg-offset-4,.aioseo-col.col-lg-offset-5,.aioseo-col.col-lg-offset-6,.aioseo-col.col-lg-offset-7,.aioseo-col.col-lg-offset-8,.aioseo-col.col-lg-offset-9,.aioseo-col.col-lg-offset-10,.aioseo-col.col-lg-offset-11,.aioseo-col.col-lg-offset-12{box-sizing:border-box;flex:0 0 auto;padding:.5rem}.aioseo-col.col-lg{flex-grow:1;flex-basis:0;max-width:100%}.aioseo-col.col-lg-1{flex-basis:8.33333333%;max-width:8.33333333%}.aioseo-col.col-lg-2{flex-basis:16.66666667%;max-width:16.66666667%}.aioseo-col.col-lg-3{flex-basis:25%;max-width:25%}.aioseo-col.col-lg-4{flex-basis:33.33333333%;max-width:33.33333333%}.aioseo-col.col-lg-5{flex-basis:41.66666667%;max-width:41.66666667%}.aioseo-col.col-lg-6{flex-basis:50%;max-width:50%}.aioseo-col.col-lg-7{flex-basis:58.33333333%;max-width:58.33333333%}.aioseo-col.col-lg-8{flex-basis:66.66666667%;max-width:66.66666667%}.aioseo-col.col-lg-9{flex-basis:75%;max-width:75%}.aioseo-col.col-lg-10{flex-basis:83.33333333%;max-width:83.33333333%}.aioseo-col.col-lg-11{flex-basis:91.66666667%;max-width:91.66666667%}.aioseo-col.col-lg-12{flex-basis:100%;max-width:100%}.aioseo-col.col-lg-offset-0{margin-right:0}.aioseo-col.col-lg-offset-1{margin-right:8.33333333%}.aioseo-col.col-lg-offset-2{margin-right:16.66666667%}.aioseo-col.col-lg-offset-3{margin-right:25%}.aioseo-col.col-lg-offset-4{margin-right:33.33333333%}.aioseo-col.col-lg-offset-5{margin-right:41.66666667%}.aioseo-col.col-lg-offset-6{margin-right:50%}.aioseo-col.col-lg-offset-7{margin-right:58.33333333%}.aioseo-col.col-lg-offset-8{margin-right:66.66666667%}.aioseo-col.col-lg-offset-9{margin-right:75%}.aioseo-col.col-lg-offset-10{margin-right:83.33333333%}.aioseo-col.col-lg-offset-11{margin-right:91.66666667%}.aioseo-col.first-lg{order:-1}.aioseo-col.last-lg{order:1}.aioseo-col.text-lg-left{text-align:right!important;justify-content:flex-start}.aioseo-col.text-lg-center{text-align:center!important;justify-content:center}.aioseo-col.text-lg-right{text-align:left!important;justify-content:flex-end}}.aioseo-container,.aioseo-container-fluid{margin-left:auto;margin-right:auto}.aioseo-container{padding:0 20px}.aioseo-container-fluid.hero,.aioseo-container.hero{min-height:100vh;display:flex;justify-content:center;align-items:center}.aioseo-container-fluid{padding-left:2rem;padding-right:2rem}@media only screen and (min-width:782px){.aioseo-container{padding:0 30px}}@media only screen and (min-width:1042px){.aioseo-container{max-width:80rem}.aioseo-container.full-width{max-width:100%}.aioseo-container.small{max-width:810px}}.aioseo-masonry{-moz-column-count:0;column-count:0;-moz-column-gap:20px;column-gap:20px;counter-reset:brick-counter}.aioseo-masonry>*{box-sizing:border-box;-moz-column-break-inside:avoid;break-inside:avoid;counter-increment:brick-counter;margin-bottom:20px}@media only screen and (min-width:782px){.aioseo-masonry{-moz-column-count:1;column-count:1}}@media only screen and (min-width:912px){.aioseo-masonry{-moz-column-count:2;column-count:2}}@media only screen and (min-width:1042px){.aioseo-masonry{-moz-column-count:3;column-count:3}}.aioseo-row{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:row;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.aioseo-row.reverse{flex-direction:row-reverse}.aioseo-row.start-xs{justify-content:flex-start;text-align:start}.aioseo-row.center-xs{justify-content:center;text-align:center}.aioseo-row.end-xs{justify-content:flex-end;text-align:end}.aioseo-row.top-xs{align-items:flex-start}.aioseo-row.middle-xs{align-items:center}.aioseo-row.bottom-xs{align-items:flex-end}.aioseo-row.around-xs{justify-content:space-around}.aioseo-row.between-xs{justify-content:space-between}@media only screen and (min-width:782px){.aioseo-row.start-sm{justify-content:flex-start;text-align:start}.aioseo-row.center-sm{justify-content:center;text-align:center}.aioseo-row.end-sm{justify-content:flex-end;text-align:end}.aioseo-row.top-sm{align-items:flex-start}.aioseo-row.middle-sm{align-items:center}.aioseo-row.bottom-sm{align-items:flex-end}.aioseo-row.around-sm{justify-content:space-around}.aioseo-row.between-sm{justify-content:space-between}}@media only screen and (min-width:912px){.aioseo-row.start-md{justify-content:flex-start;text-align:start}.aioseo-row.center-md{justify-content:center;text-align:center}.aioseo-row.end-md{justify-content:flex-end;text-align:end}.aioseo-row.top-md{align-items:flex-start}.aioseo-row.middle-md{align-items:center}.aioseo-row.bottom-md{align-items:flex-end}.aioseo-row.around-md{justify-content:space-around}.aioseo-row.between-md{justify-content:space-between}}@media only screen and (min-width:1042px){.aioseo-row.start-lg{justify-content:flex-start;text-align:start}.aioseo-row.center-lg{justify-content:center;text-align:center}.aioseo-row.end-lg{justify-content:flex-end;text-align:end}.aioseo-row.top-lg{align-items:flex-start}.aioseo-row.middle-lg{align-items:center}.aioseo-row.bottom-lg{align-items:flex-end}.aioseo-row.around-lg{justify-content:space-around}.aioseo-row.between-lg{justify-content:space-between}}.aioseo-seo-site-score__circle{animation:aioseo-seo-site-score-fill 1s reverse;transform:rotate(180deg);transform-origin:center;stroke:#00aa63}.aioseo-seo-site-score__circle.fast{-webkit-animation-duration:.5s;animation-duration:.5s;stroke:#df2a4a}.aioseo-seo-site-score__circle.medium{-webkit-animation-duration:.75s;animation-duration:.75s;stroke:#f18200}.aioseo-seo-site-score__background{stroke:#e8e8eb}@-webkit-keyframes aioseo-seo-site-score-fill{to{stroke-dasharray:0 100}}@keyframes aioseo-seo-site-score-fill{to{stroke-dasharray:0 100}}.aioseo-seo-site-score-svg-loading{-webkit-animation:aioseo-seo-site-score-svg-animation 2s linear infinite;animation:aioseo-seo-site-score-svg-animation 2s linear infinite}.aioseo-seo-site-score-loading__circle{-webkit-animation:aioseo-seo-site-score-fill-loading 2s ease-in-out infinite both;animation:aioseo-seo-site-score-fill-loading 2s ease-in-out infinite both;transform:rotate(180deg);transform-origin:center;stroke:#005ae0}@-webkit-keyframes aioseo-seo-site-score-svg-animation{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}@keyframes aioseo-seo-site-score-svg-animation{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}@-webkit-keyframes aioseo-seo-site-score-fill-loading{0%,25%{stroke-dashoffset:90;transform:rotate(0)}50%,75%{stroke-dashoffset:10;transform:rotate(-45deg)}to{stroke-dashoffset:90;transform:rotate(-1turn)}}@keyframes aioseo-seo-site-score-fill-loading{0%,25%{stroke-dashoffset:90;transform:rotate(0)}50%,75%{stroke-dashoffset:10;transform:rotate(-45deg)}to{stroke-dashoffset:90;transform:rotate(-1turn)}}.aioseo-table-column{display:flex;flex-direction:column;flex-basis:100%;flex:1;padding:5px;justify-content:center}.aioseo-table-row{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.aioseo-wizard-body{background-color:#fff;max-width:900px;box-shadow:0 2px 5px rgba(0,0,0,.05)}.aioseo-wizard-body .body-content{padding:80px 140px}@media screen and (max-width:782px){.aioseo-wizard-body .body-content{padding:40px}}.aioseo-wizard-body .body-content .header{line-height:1.4}.aioseo-wizard-body .body-footer{border-top:1px solid #e8e8eb;padding:30px;display:flex;align-items:center}.aioseo-wizard-body .body-footer>*{margin-left:10px}.aioseo-wizard-body .body-footer>:last-child{margin-left:0}.aioseo-wizard-body .body-footer .spacer{flex:1 0 auto}.aioseo-wizard-close-and-exit{margin-top:96px;text-align:center;font-size:14px}.aioseo-wizard-close-and-exit a{color:#8c8f9a!important}.aioseo-wizard-container{margin:40px auto;max-width:900px}@media screen and (max-width:782px){.aioseo-wizard-container{margin:0 20px}}.aioseo-wizard-header{display:flex;align-items:center;justify-content:center;flex-direction:column}.aioseo-wizard-header svg.aioseo-logo{width:100%;max-width:140px;height:auto;margin:60px 0 40px 10px}.aioseo-wizard-progress{display:flex;align-items:center;justify-content:center}@media screen and (max-width:782px){.aioseo-wizard-progress{display:none}}.aioseo-wizard-progress .circle{background-color:#dcdde1;width:16px;height:16px;border-radius:50%}.aioseo-wizard-progress .circle.active{background-color:#005ae0}.aioseo-wizard-progress .spacer{width:59px;border:1px solid #dcdde1;margin:0 12px}.aioseo-wizard-progress .spacer.active{border-color:#005ae0}.aioseo-wizard-steps{color:#8c8f9a;font-size:14px;margin-bottom:20px}
dist/Lite/assets/css/search-appearance-ContentTypes-vue.css CHANGED
@@ -1 +1 @@
1
- .aioseo-sa-ct-advanced .other-options{margin-top:10px}.aioseo-sa-ct-advanced .other-options:first-child{margin-top:0}.aioseo-sa-ct-custom-fields,.aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}.aioseo-search-appearance-content-types .icon{display:flex;align-items:center;margin-right:16px}
1
+ .aioseo-sa-ct-advanced .other-options{margin-top:10px}.aioseo-sa-ct-advanced .other-options:first-child{margin-top:0}.aioseo-sa-ct-custom-fields,.aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .aioseo-cta .header-text{width:100%;max-width:600px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}.aioseo-search-appearance-content-types .icon{display:flex;align-items:center;margin-right:16px}
dist/Lite/assets/css/search-appearance-ContentTypes-vue.rtl.css CHANGED
@@ -1 +1 @@
1
- .aioseo-sa-ct-advanced .other-options{margin-top:10px}.aioseo-sa-ct-advanced .other-options:first-child{margin-top:0}.aioseo-sa-ct-custom-fields,.aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}.aioseo-search-appearance-content-types .icon{display:flex;align-items:center;margin-left:16px}
1
+ .aioseo-sa-ct-advanced .other-options{margin-top:10px}.aioseo-sa-ct-advanced .other-options:first-child{margin-top:0}.aioseo-sa-ct-custom-fields,.aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .aioseo-cta .header-text{width:100%;max-width:600px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}.aioseo-search-appearance-content-types .icon{display:flex;align-items:center;margin-left:16px}
dist/Lite/assets/css/search-appearance-Media-vue.css CHANGED
@@ -1 +1 @@
1
- .aioseo-sa-ct-advanced .other-options{margin-top:10px}.aioseo-sa-ct-advanced .other-options:first-child{margin-top:0}.aioseo-sa-ct-custom-fields,.aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}.aioseo-search-appearance-content-types .icon{display:flex;align-items:center;margin-right:16px}
1
+ .aioseo-sa-ct-advanced .other-options{margin-top:10px}.aioseo-sa-ct-advanced .other-options:first-child{margin-top:0}.aioseo-sa-ct-custom-fields,.aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .aioseo-cta .header-text{width:100%;max-width:600px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}.aioseo-search-appearance-content-types .icon{display:flex;align-items:center;margin-right:16px}
dist/Lite/assets/css/search-appearance-Media-vue.rtl.css CHANGED
@@ -1 +1 @@
1
- .aioseo-sa-ct-advanced .other-options{margin-top:10px}.aioseo-sa-ct-advanced .other-options:first-child{margin-top:0}.aioseo-sa-ct-custom-fields,.aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}.aioseo-search-appearance-content-types .icon{display:flex;align-items:center;margin-left:16px}
1
+ .aioseo-sa-ct-advanced .other-options{margin-top:10px}.aioseo-sa-ct-advanced .other-options:first-child{margin-top:0}.aioseo-sa-ct-custom-fields,.aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .aioseo-cta .header-text{width:100%;max-width:600px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}.aioseo-search-appearance-content-types .icon{display:flex;align-items:center;margin-left:16px}
dist/Lite/assets/css/search-appearance-partials-Schema-vue.css CHANGED
@@ -1 +1 @@
1
- .aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}
1
+ .aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .aioseo-cta .header-text{width:100%;max-width:600px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}
dist/Lite/assets/css/search-appearance-partials-Schema-vue.rtl.css CHANGED
@@ -1 +1 @@
1
- .aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}
1
+ .aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .aioseo-cta .header-text{width:100%;max-width:600px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}
dist/Lite/assets/css/search-appearance-partials-lite-Schema-vue.css CHANGED
@@ -1 +1 @@
1
- .aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}
1
+ .aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .aioseo-cta .header-text{width:100%;max-width:600px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}
dist/Lite/assets/css/search-appearance-partials-lite-Schema-vue.rtl.css CHANGED
@@ -1 +1 @@
1
- .aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}
1
+ .aioseo-sa-ct-schema-lite{min-height:350px}.aioseo-sa-ct-schema-lite .aioseo-cta .header-text{width:100%;max-width:600px}.aioseo-sa-ct-schema-lite .schema-type{max-width:250px}
dist/Lite/assets/js/aioseo-admin-bar.js CHANGED
@@ -1,2 +1,2 @@
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)}});
1
+ /*! ! built on Saturday, December 26th 2020, 2:46:57 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 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}}]);
1
+ /*! ! built on Saturday, December 26th 2020, 2:46:57 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").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){}});
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}))}},I=A,D=(s("8c79"),Object(f["a"])(I,$,k,!1,null,null,null)),L=D.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")},K=function(){var t=window.tinyMCE.get("content");return N()?t.getContent({format:"raw"}):document.querySelector("#content")?document.querySelector("#content").value:""},z=s("cf27"),U={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():K(),a=n?o.getPermalink():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:"";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"])({},z["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():K(),n=s?e.getPermalink():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:"";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"])({},z["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():K(),r=i?o.getPermalink():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:"";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"])({},z["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()}}},B=U,F=(s("e2aa"),Object(f["a"])(B,M,q,!1,null,null,null)),R=F.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)},W=[],H=(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():K(),r=i?n.getPermalink():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:"";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"])({},z["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():K(),u=r?o.getPermalink():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:"";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"])({},z["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=H,J=Object(f["a"])(V,G,W,!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,It={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)}})},Dt=It,Lt=(s("8dbd"),Object(f["a"])(Dt,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=[],Kt={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})}})},zt=Kt,Ut=(s("483d"),Object(f["a"])(zt,qt,Nt,!1,null,null,null)),Bt=Ut.exports,Ft={components:{Advanced:P,General:tt,Schema:pt,Social:Mt,ModalContent:Bt},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=Ft,Gt=(s("549f"),Object(f["a"])(Rt,l,u,!1,null,null,null)),Wt=Gt.exports,Ht=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":Wt},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(K()+Zt()),i.on("keyup",(function(){t.updatePostContent(K()+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"])({},z["a"].state.currentPost),s=K()+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(decodeURI(o.slug)),this.updatePermalink(decodeURI(this.currentPost.permalink));var n=o.title,i=o.excerpt,a=o.content+Zt(),r=o.slug,c="",l=e.getEditedPostContent()+Zt(),u=!1;window.wp.data.subscribe((function(){Object(m["a"])((function(){var o=e.getEditedPostAttribute("title");n!==o&&(n=o,t.updatePostTitle(o));var u=e.getEditedPostAttribute("content")+Zt();a!==u&&(a=u,t.updatePostContent(u));var d=e.getEditedPostAttribute("excerpt");i!==d&&(i=d,t.updatePostExcerpt(d));var p=e.getEditedPostAttribute("slug");t.permalinkSlug||t.updatePermalinkSlug(p),r!==p&&(r=p,t.updatePermalink(t.currentPost.permalink.replace("/".concat(t.permalinkSlug),"/".concat(p.replace(/ /gi,"-").replace(/[^a-z0-9-]/gi,"").toLowerCase()))));var m=s.getEntityRecords("taxonomy","category"),g=e.getEditedPostAttribute("categories");if(g&&g.length&&m){var h=m.find((function(t){return t.id===g[0]}));h&&c!==h.name&&(c=h.name,t.updateTaxonomyTitle(h.name));var _=m.filter((function(t){return g.includes(t.id)})).map((function(t){return t.name})).join(", ");t.updateCategories(_)}else""!==c&&(c="",t.updateTaxonomyTitle(c));if(t.options.advanced.truSeo){var y=e.getEditedPostContent()+Zt();""!==l&&l!==y&&t.runPageAnalysis({postId:t.currentPost.id,postData:t.currentPost,content:y,slug:e.getPermalink()}),l=y}}),2e3),setInterval((function(){u&&(u=!1)}),3e3);var o=e.isSavingPost(),d=e.isAutosavingPost();if(o&&!d&&!u){if(u=!0,t.$store.commit("isDirty",!1),t.options.advanced.truSeo){var p=e.getEditedPostContent()+Zt();t.runPageAnalysis({postId:t.currentPost.id,useSavedData:!0,postData:t.currentPost,content:p,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(Ht["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(K()+Zt()),!t.isAnalyzing){var e=Object(c["a"])({},z["a"].state.currentPost),s=K()+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:z["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:z["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(!z["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){}});
dist/Lite/assets/js/search-appearance-ContentTypes-vue.js CHANGED
@@ -1 +1 @@
1
- (window["aioseopjsonp"]=window["aioseopjsonp"]||[]).push([["search-appearance-ContentTypes-vue","search-appearance-partials-Advanced-vue","search-appearance-partials-CustomFields-vue","search-appearance-partials-Schema-vue","search-appearance-partials-TitleDescription-vue","search-appearance-partials-lite-CustomFields-vue","search-appearance-partials-lite-Schema-vue"],{"0844":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-advanced"},[s("core-settings-row",{attrs:{name:t.strings.robotsSetting},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-robots-meta",{attrs:{options:t.options.advanced.robotsMeta,mainOptions:t.options}})]},proxy:!0}])}),t.showBulk?s("core-settings-row",{attrs:{name:t.strings.bulkEditing,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:t.object.name+"BulkEditing",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:"disabled"},{label:t.$constants.GLOBAL_STRINGS.enabled,value:"enabled"},{label:t.strings.readOnly,value:"read-only"}]},model:{value:t.options.advanced.bulkEditing,callback:function(e){t.$set(t.options.advanced,"bulkEditing",e)},expression:"options.advanced.bulkEditing"}})]},proxy:!0}],null,!1,3216224115)}):t._e(),t.noMetaBox||t.isUnlicensed&&"taxonomies"===t.type?t._e():s("core-settings-row",{attrs:{name:t.strings.otherOptions},scopedSlots:t._u([{key:"content",fn:function(){return[s("div",{staticClass:"other-options"},[s("base-toggle",{model:{value:t.options.advanced.showMetaBox,callback:function(e){t.$set(t.options.advanced,"showMetaBox",e)},expression:"options.advanced.showMetaBox"}},[t._v(" "+t._s(t.showMetaBox)+" ")])],1)]},proxy:!0}],null,!1,430458522)}),t.mainOptions.searchAppearance.advanced.useKeywords&&t.includeKeywords?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.options.advanced.keywords)||[],value:t.getJsonValue(t.options.advanced.keywords)||[],"tag-placeholder":t.strings.tagPlaceholder},on:{input:function(e){return t.options.advanced.keywords=t.setJsonValue(e)}}})]},proxy:!0}],null,!1,4182382651)}):t._e()],1)},o=[],i=s("5530"),a=s("2f62"),r=s("9c0e"),c={mixins:[r["d"],r["f"]],props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean,noMetaBox:Boolean,includeKeywords:Boolean},data:function(){return{titleCount:0,descriptionCount:0,strings:{robotsSetting:this.$t.__("Robots Meta Settings",this.$td),bulkEditing:this.$t.__("Bulk Editing",this.$td),readOnly:this.$t.__("Read Only",this.$td),otherOptions:this.$t.__("Other Options",this.$td),showDateInGooglePreview:this.$t.__("Show Date in Google Preview",this.$td),keywords:this.$t.__("Keywords",this.$td)}}},computed:Object(i["a"])(Object(i["a"])(Object(i["a"])({},Object(a["e"])({mainOptions:"options"})),Object(a["c"])(["isUnlicensed"])),{},{title:function(){return this.$t.sprintf(this.$t.__("%1$s Title",this.$td),this.object.singular)},showPostThumbnailInSearch:function(){return this.$t.sprintf(this.$t.__("Show %1$s Thumbnail in Google Custom Search",this.$td),this.object.singular)},showMetaBox:function(){return this.$t.sprintf(this.$t.__("Show %1$s Meta Box",this.$td),"AIOSEO")}})},l=c,u=(s("3d63"),s("2877")),d=Object(u["a"])(l,n,o,!1,null,null,null);e["default"]=d.exports},"0ee8":function(t,e,s){},"164d":function(t,e,s){},"372a":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-search-appearance-content-types"},t._l(t.postTypes,(function(e,n){return s("core-card",{key:n,attrs:{slug:e.name+"SA"},scopedSlots:t._u([{key:"header",fn:function(){return[s("div",{staticClass:"icon dashicons",class:""+(e.icon||"dashicons-admin-post")}),s("div",{domProps:{innerHTML:t._s(e.label)}})]},proxy:!0},{key:"tabs",fn:function(){return[s("core-main-tabs",{attrs:{tabs:t.tabs,showSaveButton:!1,active:t.settings.internalTabs[e.name+"SA"],internal:""},on:{changed:function(s){return t.processChangeTab(e.name,s)}}})]},proxy:!0}],null,!0)},[s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(t.settings.internalTabs[e.name+"SA"],{tag:"component",attrs:{object:e,separator:t.options.searchAppearance.global.separator,options:t.options.searchAppearance.dynamic.postTypes[e.name],type:"postTypes"}})],1)],1)})),1)},o=[],i=(s("4de4"),s("b0c0"),s("5530")),a=s("2f62"),r=s("0844"),c=s("3a4e"),l=s("5be7"),u=s("587e"),d={components:{Advanced:r["default"],CustomFields:c["default"],Schema:l["default"],TitleDescription:u["default"]},data:function(){return{internalDebounce:null,tabs:[{slug:"title-description",name:this.$t.__("Title & Description",this.$td),access:"aioseo_manage_seo",pro:!1},{slug:"schema",name:this.$t.__("Schema Markup",this.$td),access:"aioseo_manage_seo",pro:!0},{slug:"custom-fields",name:this.$t.__("Custom Fields",this.$td),access:"aioseo_manage_seo",pro:!0},{slug:"advanced",name:this.$t.__("Advanced",this.$td),access:"aioseo_manage_seo",pro:!1}]}},computed:Object(i["a"])(Object(i["a"])({},Object(a["e"])(["options","settings"])),{},{postTypes:function(){return this.$aioseo.postData.postTypes.filter((function(t){return"attachment"!==t.name}))}}),methods:Object(i["a"])(Object(i["a"])({},Object(a["b"])(["changeTab"])),{},{processChangeTab:function(t,e){var s=this;this.internalDebounce||(this.internalDebounce=!0,this.changeTab({slug:"".concat(t,"SA"),value:e}),setTimeout((function(){s.internalDebounce=!1}),50))}})},p=d,h=(s("a45d"),s("2877")),g=Object(h["a"])(p,n,o,!1,null,null,null);e["default"]=g.exports},"3a4e":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-custom-fields-view"},[t.isUnlicensed?t._e():s("custom-fields",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}),t.isUnlicensed?s("custom-fields-lite",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}):t._e()],1)},o=[],i=s("5530"),a=s("2f62"),r=s("9e7b"),c={components:{CustomFields:r["default"],CustomFieldsLite:r["default"]},props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean},computed:Object(i["a"])({},Object(a["c"])(["isUnlicensed"]))},l=c,u=s("2877"),d=Object(u["a"])(l,n,o,!1,null,null,null);e["default"]=d.exports},"3d63":function(t,e,s){"use strict";var n=s("7a06"),o=s.n(n);o.a},"4edb":function(t,e,s){"use strict";var n=s("164d"),o=s.n(n);o.a},"587e":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-title-description"},[s("core-settings-row",{attrs:{name:t.strings.showInSearchResults,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("base-radio-toggle",{attrs:{name:t.object.name+"ShowInSearch",options:[{label:t.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.yes,value:!0}]},model:{value:t.options.show,callback:function(e){t.$set(t.options,"show",e)},expression:"options.show"}}):t._e(),t.edit?t._e():s("base-radio-toggle",{attrs:{value:!0,name:t.object.name+"ShowInSearch",options:[{label:t.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.yes,value:!0}]}}),s("div",{staticClass:"aioseo-description"},[t._v(" "+t._s(t.strings.noIndexDescription)+" ")])]},proxy:!0}])}),t.edit&&t.options.show?s("core-settings-row",{attrs:{name:t.$constants.GLOBAL_STRINGS.preview},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-google-search-preview",{attrs:{title:t.options.title,separator:t.separator,description:t.options.metaDescription}})]},proxy:!0}],null,!1,3395425131)}):t._e(),t.options.show?s("core-settings-row",{attrs:{name:t.title},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":t.object.name+"Title","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"title")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddTitle)+" ")]},proxy:!0}],null,!1,3106947238),model:{value:t.options.title,callback:function(e){t.$set(t.options,"title",e)},expression:"options.title"}}):t._e(),t.edit?t._e():s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":t.object.name+"Title","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"title")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddTitle)+" ")]},proxy:!0}],null,!1,3106947238)})]},proxy:!0}],null,!1,198146199)}):t._e(),t.options.show?s("core-settings-row",{attrs:{name:t.strings.metaDescription},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("core-html-tags-editor",{attrs:{"line-numbers":!1,description:"","tags-context":t.object.name+"Description","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"description")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddDescription)+" ")]},proxy:!0}],null,!1,1726597184),model:{value:t.options.metaDescription,callback:function(e){t.$set(t.options,"metaDescription",e)},expression:"options.metaDescription"}}):t._e(),t.edit?t._e():s("core-html-tags-editor",{attrs:{"line-numbers":!1,"tags-context":t.object.name+"Description","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"description")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddDescription)+" ")]},proxy:!0}],null,!1,1726597184)})]},proxy:!0}],null,!1,2372372956)}):t._e()],1)},o=[],i=s("9c0e"),a={mixins:[i["f"]],props:{type:{type:String,required:!0},object:{type:Object,required:!0},separator:{type:String,required:!0},options:{type:Object,required:!0},edit:{type:Boolean,default:function(){return!0}}},data:function(){return{titleCount:0,descriptionCount:0,strings:{showInSearchResults:this.$t.__("Show in Search Results",this.$td),clickToAddTitle:this.$t.__("Click on the tags below to insert variables into your title.",this.$td),metaDescription:this.$t.__("Meta Description",this.$td),clickToAddDescription:this.$t.__("Click on the tags below to insert variables into your meta description.",this.$td),noIndexDescription:this.$t.__('Selecting "No" will no-index this page.',this.$td)}}},watch:{show:function(t){this.options.advanced.robotsMeta.noindex=!t,t||(this.options.advanced.robotsMeta.default=!1)}},computed:{title:function(){return this.$t.sprintf(this.$t.__("%1$s Title",this.$td),this.object.singular)},show:function(){return this.options.show}},methods:{}},r=a,c=s("2877"),l=Object(c["a"])(r,n,o,!1,null,null,null);e["default"]=l.exports},"5be7":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-schema-view"},[t.isUnlicensed?t._e():s("schema",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}),t.isUnlicensed?s("schema-lite",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}):t._e()],1)},o=[],i=s("5530"),a=s("2f62"),r=s("9d33"),c={components:{Schema:r["default"],SchemaLite:r["default"]},props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean},computed:Object(i["a"])({},Object(a["c"])(["isUnlicensed"]))},l=c,u=s("2877"),d=Object(u["a"])(l,n,o,!1,null,null,null);e["default"]=d.exports},"7a06":function(t,e,s){},"7c50":function(t,e,s){"use strict";var n=s("0ee8"),o=s.n(n);o.a},9267:function(t,e,s){},"9d33":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-schema-lite"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.schemaType,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{staticClass:"schema-type",attrs:{size:"medium",options:t.schemaTypes,value:t.getSchemaTypeOption("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:{name:t.object.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}])})],1),s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("schema-markup","schema-markup-upsell",t.object.name+"-post-type"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("schema-markup",t.object.name,"home")},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}])})],1)},o=[],i=(s("7db0"),{props:{type:{type:String,required:!0},object:{type:Object,required:!0}},data:function(){return{schemaTypes:[{value:"none",label:this.$t.__("None",this.$td)},{value:"Article",label:this.$t.__("Article",this.$td)}],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),ctaDescription:this.$t.sprintf(this.$t.__("%1$s %2$s gives you advanced customizations for the structured data markup on Posts, Pages, Categories, Tags, etc.",this.$td),"AIOSEO","Pro"),ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Schema Markup",this.$td),ctaHeader:this.$t.sprintf(this.$t.__("Schema Markup is only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")}}},methods:{getSchemaTypeOption:function(t){return this.schemaTypes.find((function(e){return e.value===t}))}}}),a=i,r=(s("4edb"),s("2877")),c=Object(r["a"])(a,n,o,!1,null,null,null);e["default"]=c.exports},"9e7b":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-custom-fields"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.customFields,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-textarea",{attrs:{"min-height":200}}),s("div",{staticClass:"aioseo-description"},[t._v(" "+t._s(t.strings.customFieldsDescription)+" ")])]},proxy:!0}])})],1),s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("custom-fields","custom-fields-upsell",t.object.name+"-post-type"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("custom-fields",t.object.name,"home")},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}])})],1)},o=[],i=(s("7db0"),s("5530")),a=s("2f62"),r={props:{type:{type:String,required:!0},object:{type:Object,required:!0}},data:function(){return{strings:{customFields:this.$t.__("Custom Fields",this.$td),customFieldsDescription:this.$t.__("List of custom field names to include in the SEO Page Analysis. Add one per line.",this.$td),ctaDescription:this.$t.sprintf(this.$t.__("%1$s %2$s gives you advanced customizations for our page analysis feature, letting you add custom fields to analyze.",this.$td),"AIOSEO","Pro"),ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Custom Fields",this.$td),ctaHeader:this.$t.sprintf(this.$t.__("Custom Fields are only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")}}},computed:Object(i["a"])({},Object(a["e"])(["options"])),methods:{getSchemaTypeOption:function(t){return this.schemaTypes.find((function(e){return e.value===t}))}}},c=r,l=(s("7c50"),s("2877")),u=Object(l["a"])(c,n,o,!1,null,null,null);e["default"]=u.exports},a45d:function(t,e,s){"use strict";var n=s("9267"),o=s.n(n);o.a}}]);
1
+ (window["aioseopjsonp"]=window["aioseopjsonp"]||[]).push([["search-appearance-ContentTypes-vue","search-appearance-partials-Advanced-vue","search-appearance-partials-CustomFields-vue","search-appearance-partials-Schema-vue","search-appearance-partials-TitleDescription-vue","search-appearance-partials-lite-CustomFields-vue","search-appearance-partials-lite-Schema-vue"],{"0844":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-advanced"},[s("core-settings-row",{attrs:{name:t.strings.robotsSetting},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-robots-meta",{attrs:{options:t.options.advanced.robotsMeta,mainOptions:t.options}})]},proxy:!0}])}),t.showBulk?s("core-settings-row",{attrs:{name:t.strings.bulkEditing,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:t.object.name+"BulkEditing",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:"disabled"},{label:t.$constants.GLOBAL_STRINGS.enabled,value:"enabled"},{label:t.strings.readOnly,value:"read-only"}]},model:{value:t.options.advanced.bulkEditing,callback:function(e){t.$set(t.options.advanced,"bulkEditing",e)},expression:"options.advanced.bulkEditing"}})]},proxy:!0}],null,!1,3216224115)}):t._e(),t.noMetaBox||t.isUnlicensed&&"taxonomies"===t.type?t._e():s("core-settings-row",{attrs:{name:t.strings.otherOptions},scopedSlots:t._u([{key:"content",fn:function(){return[s("div",{staticClass:"other-options"},[s("base-toggle",{model:{value:t.options.advanced.showMetaBox,callback:function(e){t.$set(t.options.advanced,"showMetaBox",e)},expression:"options.advanced.showMetaBox"}},[t._v(" "+t._s(t.showMetaBox)+" ")])],1)]},proxy:!0}],null,!1,430458522)}),t.mainOptions.searchAppearance.advanced.useKeywords&&t.includeKeywords?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.options.advanced.keywords)||[],value:t.getJsonValue(t.options.advanced.keywords)||[],"tag-placeholder":t.strings.tagPlaceholder},on:{input:function(e){return t.options.advanced.keywords=t.setJsonValue(e)}}})]},proxy:!0}],null,!1,4182382651)}):t._e()],1)},o=[],i=s("5530"),a=s("2f62"),r=s("9c0e"),c={mixins:[r["d"],r["f"]],props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean,noMetaBox:Boolean,includeKeywords:Boolean},data:function(){return{titleCount:0,descriptionCount:0,strings:{robotsSetting:this.$t.__("Robots Meta Settings",this.$td),bulkEditing:this.$t.__("Bulk Editing",this.$td),readOnly:this.$t.__("Read Only",this.$td),otherOptions:this.$t.__("Other Options",this.$td),showDateInGooglePreview:this.$t.__("Show Date in Google Preview",this.$td),keywords:this.$t.__("Keywords",this.$td)}}},computed:Object(i["a"])(Object(i["a"])(Object(i["a"])({},Object(a["e"])({mainOptions:"options"})),Object(a["c"])(["isUnlicensed"])),{},{title:function(){return this.$t.sprintf(this.$t.__("%1$s Title",this.$td),this.object.singular)},showPostThumbnailInSearch:function(){return this.$t.sprintf(this.$t.__("Show %1$s Thumbnail in Google Custom Search",this.$td),this.object.singular)},showMetaBox:function(){return this.$t.sprintf(this.$t.__("Show %1$s Meta Box",this.$td),"AIOSEO")}})},l=c,u=(s("3d63"),s("2877")),d=Object(u["a"])(l,n,o,!1,null,null,null);e["default"]=d.exports},"0ee8":function(t,e,s){},"164d":function(t,e,s){},"372a":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-search-appearance-content-types"},t._l(t.postTypes,(function(e,n){return s("core-card",{key:n,attrs:{slug:e.name+"SA"},scopedSlots:t._u([{key:"header",fn:function(){return[s("div",{staticClass:"icon dashicons",class:""+(e.icon||"dashicons-admin-post")}),s("div",{domProps:{innerHTML:t._s(e.label)}})]},proxy:!0},{key:"tabs",fn:function(){return[s("core-main-tabs",{attrs:{tabs:t.tabs,showSaveButton:!1,active:t.settings.internalTabs[e.name+"SA"],internal:""},on:{changed:function(s){return t.processChangeTab(e.name,s)}}})]},proxy:!0}],null,!0)},[s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(t.settings.internalTabs[e.name+"SA"],{tag:"component",attrs:{object:e,separator:t.options.searchAppearance.global.separator,options:t.options.searchAppearance.dynamic.postTypes[e.name],type:"postTypes"}})],1)],1)})),1)},o=[],i=(s("4de4"),s("b0c0"),s("5530")),a=s("2f62"),r=s("0844"),c=s("3a4e"),l=s("5be7"),u=s("587e"),d={components:{Advanced:r["default"],CustomFields:c["default"],Schema:l["default"],TitleDescription:u["default"]},data:function(){return{internalDebounce:null,tabs:[{slug:"title-description",name:this.$t.__("Title & Description",this.$td),access:"aioseo_manage_seo",pro:!1},{slug:"schema",name:this.$t.__("Schema Markup",this.$td),access:"aioseo_manage_seo",pro:!0},{slug:"custom-fields",name:this.$t.__("Custom Fields",this.$td),access:"aioseo_manage_seo",pro:!0},{slug:"advanced",name:this.$t.__("Advanced",this.$td),access:"aioseo_manage_seo",pro:!1}]}},computed:Object(i["a"])(Object(i["a"])({},Object(a["e"])(["options","settings"])),{},{postTypes:function(){return this.$aioseo.postData.postTypes.filter((function(t){return"attachment"!==t.name}))}}),methods:Object(i["a"])(Object(i["a"])({},Object(a["b"])(["changeTab"])),{},{processChangeTab:function(t,e){var s=this;this.internalDebounce||(this.internalDebounce=!0,this.changeTab({slug:"".concat(t,"SA"),value:e}),setTimeout((function(){s.internalDebounce=!1}),50))}})},p=d,h=(s("a45d"),s("2877")),m=Object(h["a"])(p,n,o,!1,null,null,null);e["default"]=m.exports},"3a4e":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-custom-fields-view"},[t.isUnlicensed?t._e():s("custom-fields",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}),t.isUnlicensed?s("custom-fields-lite",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}):t._e()],1)},o=[],i=s("5530"),a=s("2f62"),r=s("9e7b"),c={components:{CustomFields:r["default"],CustomFieldsLite:r["default"]},props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean},computed:Object(i["a"])({},Object(a["c"])(["isUnlicensed"]))},l=c,u=s("2877"),d=Object(u["a"])(l,n,o,!1,null,null,null);e["default"]=d.exports},"3d63":function(t,e,s){"use strict";var n=s("7a06"),o=s.n(n);o.a},"4edb":function(t,e,s){"use strict";var n=s("164d"),o=s.n(n);o.a},"587e":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-title-description"},[s("core-settings-row",{attrs:{name:t.strings.showInSearchResults,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("base-radio-toggle",{attrs:{name:t.object.name+"ShowInSearch",options:[{label:t.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.yes,value:!0}]},model:{value:t.options.show,callback:function(e){t.$set(t.options,"show",e)},expression:"options.show"}}):t._e(),t.edit?t._e():s("base-radio-toggle",{attrs:{value:!0,name:t.object.name+"ShowInSearch",options:[{label:t.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.yes,value:!0}]}}),s("div",{staticClass:"aioseo-description"},[t._v(" "+t._s(t.strings.noIndexDescription)+" ")])]},proxy:!0}])}),t.edit&&t.options.show?s("core-settings-row",{attrs:{name:t.$constants.GLOBAL_STRINGS.preview},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-google-search-preview",{attrs:{title:t.options.title,separator:t.separator,description:t.options.metaDescription}})]},proxy:!0}],null,!1,3395425131)}):t._e(),t.options.show?s("core-settings-row",{attrs:{name:t.title},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":t.object.name+"Title","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"title")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddTitle)+" ")]},proxy:!0}],null,!1,3106947238),model:{value:t.options.title,callback:function(e){t.$set(t.options,"title",e)},expression:"options.title"}}):t._e(),t.edit?t._e():s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":t.object.name+"Title","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"title")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddTitle)+" ")]},proxy:!0}],null,!1,3106947238)})]},proxy:!0}],null,!1,198146199)}):t._e(),t.options.show?s("core-settings-row",{attrs:{name:t.strings.metaDescription},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("core-html-tags-editor",{attrs:{"line-numbers":!1,description:"","tags-context":t.object.name+"Description","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"description")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddDescription)+" ")]},proxy:!0}],null,!1,1726597184),model:{value:t.options.metaDescription,callback:function(e){t.$set(t.options,"metaDescription",e)},expression:"options.metaDescription"}}):t._e(),t.edit?t._e():s("core-html-tags-editor",{attrs:{"line-numbers":!1,"tags-context":t.object.name+"Description","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"description")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddDescription)+" ")]},proxy:!0}],null,!1,1726597184)})]},proxy:!0}],null,!1,2372372956)}):t._e()],1)},o=[],i=s("9c0e"),a={mixins:[i["f"]],props:{type:{type:String,required:!0},object:{type:Object,required:!0},separator:{type:String,required:!0},options:{type:Object,required:!0},edit:{type:Boolean,default:function(){return!0}}},data:function(){return{titleCount:0,descriptionCount:0,strings:{showInSearchResults:this.$t.__("Show in Search Results",this.$td),clickToAddTitle:this.$t.__("Click on the tags below to insert variables into your title.",this.$td),metaDescription:this.$t.__("Meta Description",this.$td),clickToAddDescription:this.$t.__("Click on the tags below to insert variables into your meta description.",this.$td),noIndexDescription:this.$t.__('Selecting "No" will no-index this page.',this.$td)}}},watch:{show:function(t){this.options.advanced.robotsMeta.noindex=!t,t||(this.options.advanced.robotsMeta.default=!1)}},computed:{title:function(){return this.$t.sprintf(this.$t.__("%1$s Title",this.$td),this.object.singular)},show:function(){return this.options.show}},methods:{}},r=a,c=s("2877"),l=Object(c["a"])(r,n,o,!1,null,null,null);e["default"]=l.exports},"5be7":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-schema-view"},[t.isUnlicensed?t._e():s("schema",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}),t.isUnlicensed?s("schema-lite",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}):t._e()],1)},o=[],i=s("5530"),a=s("2f62"),r=s("9d33"),c={components:{Schema:r["default"],SchemaLite:r["default"]},props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean},computed:Object(i["a"])({},Object(a["c"])(["isUnlicensed"]))},l=c,u=s("2877"),d=Object(u["a"])(l,n,o,!1,null,null,null);e["default"]=d.exports},"7a06":function(t,e,s){},"7c50":function(t,e,s){"use strict";var n=s("0ee8"),o=s.n(n);o.a},9267:function(t,e,s){},"9d33":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-schema-lite"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.schemaType,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{staticClass:"schema-type",attrs:{size:"medium",options:t.schemaTypes,value:t.getSchemaTypeOption("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:{name:t.object.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}])})],1),s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("schema-markup","schema-markup-upsell",t.object.name+"-post-type"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("schema-markup",t.object.name,"home")},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}])})],1)},o=[],i=(s("7db0"),{props:{type:{type:String,required:!0},object:{type:Object,required:!0}},data:function(){return{schemaTypes:[{value:"none",label:this.$t.__("None",this.$td)},{value:"Article",label:this.$t.__("Article",this.$td)}],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),ctaDescription:this.$t.sprintf(this.$t.__("%1$s %2$s allows you to customize the structured data markup on Posts, Pages, Categories, Tags, etc.",this.$td),"AIOSEO","Pro"),ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Advanced Schema Markup",this.$td),ctaHeader:this.$t.sprintf(this.$t.__("Advanced Schema Markup is only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")}}},methods:{getSchemaTypeOption:function(t){return this.schemaTypes.find((function(e){return e.value===t}))}}}),a=i,r=(s("4edb"),s("2877")),c=Object(r["a"])(a,n,o,!1,null,null,null);e["default"]=c.exports},"9e7b":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-custom-fields"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.customFields,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-textarea",{attrs:{"min-height":200}}),s("div",{staticClass:"aioseo-description"},[t._v(" "+t._s(t.strings.customFieldsDescription)+" ")])]},proxy:!0}])})],1),s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("custom-fields","custom-fields-upsell",t.object.name+"-post-type"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("custom-fields",t.object.name,"home")},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}])})],1)},o=[],i=(s("7db0"),s("5530")),a=s("2f62"),r={props:{type:{type:String,required:!0},object:{type:Object,required:!0}},data:function(){return{strings:{customFields:this.$t.__("Custom Fields",this.$td),customFieldsDescription:this.$t.__("List of custom field names to include in the SEO Page Analysis. Add one per line.",this.$td),ctaDescription:this.$t.sprintf(this.$t.__("%1$s %2$s gives you advanced customizations for our page analysis feature, letting you add custom fields to analyze.",this.$td),"AIOSEO","Pro"),ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Custom Fields",this.$td),ctaHeader:this.$t.sprintf(this.$t.__("Custom Fields are only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")}}},computed:Object(i["a"])({},Object(a["e"])(["options"])),methods:{getSchemaTypeOption:function(t){return this.schemaTypes.find((function(e){return e.value===t}))}}},c=r,l=(s("7c50"),s("2877")),u=Object(l["a"])(c,n,o,!1,null,null,null);e["default"]=u.exports},a45d:function(t,e,s){"use strict";var n=s("9267"),o=s.n(n);o.a}}]);
dist/Lite/assets/js/search-appearance-Main-vue.js CHANGED
@@ -1 +1 @@
1
- (window["aioseopjsonp"]=window["aioseopjsonp"]||[]).push([["search-appearance-Main-vue","search-appearance-Advanced-vue","search-appearance-GlobalSettings-vue"],{"219a":function(e,t,s){"use strict";s.r(t);var a=function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("div",{staticClass:"aioseo-search-appearance-taxonomies"},e._l(e.taxonomies,(function(t,a){return s("core-card",{key:a,attrs:{slug:t.name+"SA"},scopedSlots:e._u([{key:"header",fn:function(){return[s("div",{staticClass:"icon dashicons",class:""+(t.icon||"dashicons-admin-post")}),s("div",[e._v(" "+e._s(t.label)+" ")])]},proxy:!0},e.isCustomTaxonomy(t)&&e.isUnlicensed?null:{key:"tabs",fn:function(){return[s("core-main-tabs",{attrs:{tabs:e.tabs,showSaveButton:!1,active:e.settings.internalTabs[t.name+"SA"],internal:""},on:{changed:function(s){return e.processChangeTab(t.name,s)}}})]},proxy:!0}],null,!0)},[e.isCustomTaxonomy(t)&&e.isUnlicensed?s("core-blur",[s("title-description",{attrs:{object:t,separator:e.options.searchAppearance.global.separator,options:{show:!0},type:"taxonomies","show-bulk":!1,edit:!1}})],1):e._e(),e.isCustomTaxonomy(t)&&e.isUnlicensed?s("cta",{attrs:{"cta-link":e.$links.getPricingUrl("custom-taxonomies","custom-taxonomies-upsell"),"button-text":e.strings.ctaButtonText,"learn-more-link":e.$links.getUpsellUrl("custom-taxonomies",null,"home")},scopedSlots:e._u([{key:"header-text",fn:function(){return[e._v(" "+e._s(e.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[e._v(" "+e._s(e.strings.ctaDescription)+" ")]},proxy:!0}],null,!0)}):e._e(),e.isCustomTaxonomy(t)&&e.isUnlicensed?e._e():s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(e.settings.internalTabs[t.name+"SA"],{tag:"component",attrs:{object:t,separator:e.options.searchAppearance.global.separator,options:e.options.searchAppearance.dynamic.taxonomies[t.name],type:"taxonomies","show-bulk":!1}})],1)],1)})),1)},n=[],o=(s("b0c0"),s("5530")),i=s("2f62"),r=s("0844"),c=s("587e"),l={components:{Advanced:r["default"],TitleDescription:c["default"]},data:function(){return{internalDebounce:null,strings:{ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Custom Taxonomies",this.$td),ctaDescription:this.$t.sprintf(this.$t.__("%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.",this.$td),"AIOSEO","Pro"),ctaHeader:this.$t.sprintf(this.$t.__("Custom Taxonomy Support is only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")},tabs:[{slug:"title-description",name:this.$t.__("Title & Description",this.$tdPro),access:"aioseo_manage_seo",pro:!1},{slug:"advanced",name:this.$t.__("Advanced",this.$tdPro),access:"aioseo_manage_seo",pro:!1}]}},computed:Object(o["a"])(Object(o["a"])(Object(o["a"])({},Object(i["c"])(["isUnlicensed"])),Object(i["e"])(["options","settings"])),{},{taxonomies:function(){return this.$aioseo.postData.taxonomies}}),methods:Object(o["a"])(Object(o["a"])({},Object(i["b"])(["changeTab"])),{},{isCustomTaxonomy:function(e){return"category"!==e.name&&"post_tag"!==e.name},processChangeTab:function(e,t){var s=this;this.internalDebounce||(this.internalDebounce=!0,this.changeTab({slug:"".concat(e,"SA"),value:t}),setTimeout((function(){s.internalDebounce=!1}),50))}})},p=l,d=(s("c74c"),s("2877")),u=Object(d["a"])(p,a,n,!1,null,null,null);t["default"]=u.exports},"2b19b":function(e,t,s){"use strict";s.r(t);var a=function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("core-main",{attrs:{"page-name":e.strings.pageName}},[s(e.$route.name,{tag:"component"})],1)},n=[],o=s("e6cd"),i=s("372a"),r=s("2b0d"),c=s("219a"),l=s("5b69"),p=s("89b4"),d={components:{Advanced:p["default"],Archives:l["default"],ContentTypes:i["default"],GlobalSettings:o["default"],Media:r["default"],Taxonomies:c["default"]},data:function(){return{strings:{pageName:this.$t.__("Search Appearance",this.$td)}}}},u=d,h=s("2877"),g=Object(h["a"])(u,a,n,!1,null,null,null);t["default"]=g.exports},"2eee":function(e,t,s){"use strict";var a=s("5d1c"),n=s.n(a);n.a},"372a":function(e,t,s){"use strict";s.r(t);var a=function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("div",{staticClass:"aioseo-search-appearance-content-types"},e._l(e.postTypes,(function(t,a){return s("core-card",{key:a,attrs:{slug:t.name+"SA"},scopedSlots:e._u([{key:"header",fn:function(){return[s("div",{staticClass:"icon dashicons",class:""+(t.icon||"dashicons-admin-post")}),s("div",{domProps:{innerHTML:e._s(t.label)}})]},proxy:!0},{key:"tabs",fn:function(){return[s("core-main-tabs",{attrs:{tabs:e.tabs,showSaveButton:!1,active:e.settings.internalTabs[t.name+"SA"],internal:""},on:{changed:function(s){return e.processChangeTab(t.name,s)}}})]},proxy:!0}],null,!0)},[s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(e.settings.internalTabs[t.name+"SA"],{tag:"component",attrs:{object:t,separator:e.options.searchAppearance.global.separator,options:e.options.searchAppearance.dynamic.postTypes[t.name],type:"postTypes"}})],1)],1)})),1)},n=[],o=(s("4de4"),s("b0c0"),s("5530")),i=s("2f62"),r=s("0844"),c=s("3a4e"),l=s("5be7"),p=s("587e"),d={components:{Advanced:r["default"],CustomFields:c["default"],Schema:l["default"],TitleDescription:p["default"]},data:function(){return{internalDebounce:null,tabs:[{slug:"title-description",name:this.$t.__("Title & Description",this.$td),access:"aioseo_manage_seo",pro:!1},{slug:"schema",name:this.$t.__("Schema Markup",this.$td),access:"aioseo_manage_seo",pro:!0},{slug:"custom-fields",name:this.$t.__("Custom Fields",this.$td),access:"aioseo_manage_seo",pro:!0},{slug:"advanced",name:this.$t.__("Advanced",this.$td),access:"aioseo_manage_seo",pro:!1}]}},computed:Object(o["a"])(Object(o["a"])({},Object(i["e"])(["options","settings"])),{},{postTypes:function(){return this.$aioseo.postData.postTypes.filter((function(e){return"attachment"!==e.name}))}}),methods:Object(o["a"])(Object(o["a"])({},Object(i["b"])(["changeTab"])),{},{processChangeTab:function(e,t){var s=this;this.internalDebounce||(this.internalDebounce=!0,this.changeTab({slug:"".concat(e,"SA"),value:t}),setTimeout((function(){s.internalDebounce=!1}),50))}})},u=d,h=(s("a45d"),s("2877")),g=Object(h["a"])(u,a,n,!1,null,null,null);t["default"]=g.exports},"3a4e":function(e,t,s){"use strict";s.r(t);var a=function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("div",{staticClass:"aioseo-sa-ct-custom-fields-view"},[e.isUnlicensed?e._e():s("custom-fields",{attrs:{type:e.type,object:e.object,options:e.options,"show-bulk":e.showBulk}}),e.isUnlicensed?s("custom-fields-lite",{attrs:{type:e.type,object:e.object,options:e.options,"show-bulk":e.showBulk}}):e._e()],1)},n=[],o=s("5530"),i=s("2f62"),r=s("9e7b"),c={components:{CustomFields:r["default"],CustomFieldsLite:r["default"]},props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean},computed:Object(o["a"])({},Object(i["c"])(["isUnlicensed"]))},l=c,p=s("2877"),d=Object(p["a"])(l,a,n,!1,null,null,null);t["default"]=d.exports},4540:function(e,t,s){"use strict";var a=s("c395"),n=s.n(a);n.a},"58e8":function(e,t,s){},"5b69":function(e,t,s){"use strict";s.r(t);var a=function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("div",{staticClass:"aioseo-search-appearance-archives"},e._l(e.getArchives,(function(t,a){return s("core-card",{key:a,attrs:{slug:t.name+"Archives"},scopedSlots:e._u([{key:"header",fn:function(){return[s("div",{staticClass:"icon dashicons",class:""+(t.icon||"dashicons-admin-post")}),s("div",[e._v(" "+e._s(t.label)+" ")])]},proxy:!0},{key:"tabs",fn:function(){return[s("core-main-tabs",{attrs:{tabs:e.tabs,showSaveButton:!1,active:e.settings.internalTabs[t.name+"Archives"],internal:""},on:{changed:function(s){return e.processChangeTab(t.name,s)}}})]},proxy:!0}],null,!0)},[s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(e.settings.internalTabs[t.name+"Archives"],{tag:"component",attrs:{object:t,separator:e.options.searchAppearance.global.separator,options:e.getOptions(t),type:"archives","show-bulk":!1,"no-meta-box":"","include-keywords":""}})],1)],1)})),1)},n=[],o=(s("99af"),s("d81d"),s("b0c0"),s("ac1f"),s("5319"),s("5530")),i=s("2f62"),r=s("0844"),c=s("587e"),l={components:{Advanced:r["default"],TitleDescription:c["default"]},data:function(){return{internalDebounce:null,tabs:[{slug:"title-description",name:this.$t.__("Title & Description",this.$td),access:"aioseo_manage_seo",pro:!1},{slug:"advanced",name:this.$t.__("Advanced",this.$td),access:"aioseo_manage_seo",pro:!1}],archives:[{label:"Author Archives",name:"author",singular:"Author",icon:"dashicons-admin-users"},{label:"Date Archives",name:"date",singular:"Date",icon:"dashicons-calendar-alt"},{label:"Search Page",name:"search",singular:"Search Page",icon:"dashicons-search"}]}},computed:Object(o["a"])(Object(o["a"])({},Object(i["e"])(["options","settings"])),{},{getArchives:function(){return this.archives.concat(this.$aioseo.postData.archives.map((function(e){return{label:"".concat(e.label," Archives"),name:"".concat(e.name,"Archive"),icon:"dashicons-category",singular:e.singular,dynamic:!0}})))}}),methods:Object(o["a"])(Object(o["a"])({},Object(i["b"])(["changeTab"])),{},{processChangeTab:function(e,t){var s=this;this.internalDebounce||(this.internalDebounce=!0,this.changeTab({slug:"".concat(e,"Archives"),value:t}),setTimeout((function(){s.internalDebounce=!1}),50))},getOptions:function(e){return e.dynamic?this.options.searchAppearance.dynamic.archives[e.name.replace("Archive","")]:this.options.searchAppearance.archives[e.name]}})},p=l,d=(s("2eee"),s("2877")),u=Object(d["a"])(p,a,n,!1,null,null,null);t["default"]=u.exports},"5d1c":function(e,t,s){},"89b4":function(e,t,s){"use strict";s.r(t);var a=function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("div",{staticClass:"aioseo-search-appearance-advanced"},[s("core-card",{attrs:{slug:"searchAdvanced","header-text":e.strings.advanced}},[s("core-settings-row",{attrs:{name:e.strings.globalRobotsMeta},scopedSlots:e._u([{key:"content",fn:function(){return[s("core-robots-meta",{attrs:{options:e.options.searchAppearance.advanced.globalRobotsMeta,global:""}})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:e.strings.sitelinks},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:e.strings.sitelinks,options:[{label:e.$constants.GLOBAL_STRINGS.off,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.on,value:!0}]},model:{value:e.options.searchAppearance.advanced.sitelinks,callback:function(t){e.$set(e.options.searchAppearance.advanced,"sitelinks",t)},expression:"options.searchAppearance.advanced.sitelinks"}}),s("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.sitelinksDescription)+" ")])]},proxy:!0}])}),e.internalOptions.internal.deprecatedOptions.includes("autogenerateDescriptions")?s("core-settings-row",{attrs:{name:e.strings.autogenerateDescriptions,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:"autogenerateDescriptions",options:[{label:e.$constants.GLOBAL_STRINGS.off,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.on,value:!0}]},model:{value:e.options.deprecated.searchAppearance.advanced.autogenerateDescriptions,callback:function(t){e.$set(e.options.deprecated.searchAppearance.advanced,"autogenerateDescriptions",t)},expression:"options.deprecated.searchAppearance.advanced.autogenerateDescriptions"}})]},proxy:!0}],null,!1,3425659337)}):e._e(),!e.internalOptions.internal.deprecatedOptions.includes("useContentForAutogeneratedDescriptions")||e.internalOptions.internal.deprecatedOptions.includes("autogenerateDescriptions")&&!e.options.deprecated.searchAppearance.advanced.autogenerateDescriptions?e._e():s("core-settings-row",{attrs:{name:e.strings.useContentForAutogeneratedDescriptions,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:"useContentForAutogeneratedDescriptions",options:[{label:e.$constants.GLOBAL_STRINGS.off,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.on,value:!0}]},model:{value:e.options.deprecated.searchAppearance.advanced.useContentForAutogeneratedDescriptions,callback:function(t){e.$set(e.options.deprecated.searchAppearance.advanced,"useContentForAutogeneratedDescriptions",t)},expression:"options.deprecated.searchAppearance.advanced.useContentForAutogeneratedDescriptions"}})]},proxy:!0}],null,!1,1103360809)}),!e.internalOptions.internal.deprecatedOptions.includes("runShortcodesInDescription")||e.internalOptions.internal.deprecatedOptions.includes("autogenerateDescriptions")&&!e.options.deprecated.searchAppearance.advanced.autogenerateDescriptions?e._e():s("core-settings-row",{attrs:{name:e.strings.runShortcodesInDescription,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:"runShortcodesInDescription",options:[{label:e.$constants.GLOBAL_STRINGS.off,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.on,value:!0}]},model:{value:e.options.deprecated.searchAppearance.advanced.runShortcodesInDescription,callback:function(t){e.$set(e.options.deprecated.searchAppearance.advanced,"runShortcodesInDescription",t)},expression:"options.deprecated.searchAppearance.advanced.runShortcodesInDescription"}})]},proxy:!0}],null,!1,2120810537)}),s("core-settings-row",{attrs:{name:e.strings.noPaginationForCanonical,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:"noPaginationForCanonical",options:[{label:e.$constants.GLOBAL_STRINGS.off,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.on,value:!0}]},model:{value:e.options.searchAppearance.advanced.noPaginationForCanonical,callback:function(t){e.$set(e.options.searchAppearance.advanced,"noPaginationForCanonical",t)},expression:"options.searchAppearance.advanced.noPaginationForCanonical"}})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:e.strings.useKeywords,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:"useKeywords",options:[{label:e.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.yes,value:!0}]},model:{value:e.options.searchAppearance.advanced.useKeywords,callback:function(t){e.$set(e.options.searchAppearance.advanced,"useKeywords",t)},expression:"options.searchAppearance.advanced.useKeywords"}}),s("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.useKeywordsDescription)+" ")])]},proxy:!0}])}),e.options.searchAppearance.advanced.useKeywords?s("core-settings-row",{attrs:{name:e.strings.useCategoriesForMetaKeywords,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:"useCategoriesForMetaKeywords",options:[{label:e.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.yes,value:!0}]},model:{value:e.options.searchAppearance.advanced.useCategoriesForMetaKeywords,callback:function(t){e.$set(e.options.searchAppearance.advanced,"useCategoriesForMetaKeywords",t)},expression:"options.searchAppearance.advanced.useCategoriesForMetaKeywords"}}),s("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.useCategoriesDescription)+" ")])]},proxy:!0}],null,!1,1182210491)}):e._e(),e.options.searchAppearance.advanced.useKeywords?s("core-settings-row",{attrs:{name:e.strings.useTagsForMetaKeywords,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:"useTagsForMetaKeywords",options:[{label:e.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.yes,value:!0}]},model:{value:e.options.searchAppearance.advanced.useTagsForMetaKeywords,callback:function(t){e.$set(e.options.searchAppearance.advanced,"useTagsForMetaKeywords",t)},expression:"options.searchAppearance.advanced.useTagsForMetaKeywords"}}),s("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.useTagsDescription)+" ")])]},proxy:!0}],null,!1,980507244)}):e._e(),e.options.searchAppearance.advanced.useKeywords?s("core-settings-row",{attrs:{name:e.strings.dynamicallyGenerateKeywords,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:"dynamicallyGenerateKeywords",options:[{label:e.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.yes,value:!0}]},model:{value:e.options.searchAppearance.advanced.dynamicallyGenerateKeywords,callback:function(t){e.$set(e.options.searchAppearance.advanced,"dynamicallyGenerateKeywords",t)},expression:"options.searchAppearance.advanced.dynamicallyGenerateKeywords"}}),s("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.dynamicallyGenerateDescription)+" ")])]},proxy:!0}],null,!1,3269411336)}):e._e(),e.internalOptions.internal.deprecatedOptions.includes("descriptionFormat")?s("core-settings-row",{attrs:{id:"description-format",name:e.strings.descriptionFormat,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{staticClass:"description-format",attrs:{"line-numbers":!1,single:"","show-tags-description":!1,"tags-context":"descriptionFormat","default-tags":["description","site_title","tagline"],"show-all-tags-link":!0},scopedSlots:e._u([{key:"tags-description",fn:function(){return[e._v(" "+e._s(e.emptyString)+" ")]},proxy:!0}],null,!1,115256282),model:{value:e.options.deprecated.searchAppearance.global.descriptionFormat,callback:function(t){e.$set(e.options.deprecated.searchAppearance.global,"descriptionFormat",t)},expression:"options.deprecated.searchAppearance.global.descriptionFormat"}}),e.options.deprecated.searchAppearance.global.descriptionFormat.includes("#description")?e._e():s("core-alert",{staticClass:"description-notice",attrs:{type:"red"}},[e._v(" "+e._s(e.strings.descriptionTagRequired)+" ")])]},proxy:!0}],null,!1,3789774672)}):e._e(),s("core-settings-row",{attrs:{name:e.strings.pagedFormat,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{staticClass:"paged-format",attrs:{"line-numbers":!1,single:"","tags-context":"pagedFormat","default-tags":["page_number"],"show-all-tags-link":!1},scopedSlots:e._u([{key:"tags-description",fn:function(){return[e._v(" "+e._s(e.emptyString)+" ")]},proxy:!0}]),model:{value:e.options.searchAppearance.advanced.pagedFormat,callback:function(t){e.$set(e.options.searchAppearance.advanced,"pagedFormat",t)},expression:"options.searchAppearance.advanced.pagedFormat"}}),s("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.pagedFormatDescription)+" ")])]},proxy:!0}])}),e.internalOptions.internal.deprecatedOptions.includes("excludePosts")?s("core-settings-row",{staticClass:"aioseo-exclude-pages-posts",attrs:{name:e.strings.excludePostsPages,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[s("core-exclude-posts",{attrs:{options:e.options.deprecated.searchAppearance.advanced,type:"posts"}})]},proxy:!0}],null,!1,4134150415)}):e._e(),e.internalOptions.internal.deprecatedOptions.includes("excludeTerms")?s("core-settings-row",{staticClass:"aioseo-exclude-terms",attrs:{name:e.strings.excludeTerms,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[s("core-exclude-posts",{attrs:{options:e.options.deprecated.searchAppearance.advanced,type:"terms"}})]},proxy:!0}],null,!1,1691116537)}):e._e()],1)],1)},n=[],o=s("5530"),i=s("2f62"),r={data:function(){return{emptyString:"",strings:{advanced:this.$t.__("Advanced Settings",this.$td),globalRobotsMeta:this.$t.__("Global Robots Meta",this.$td),noIndexEmptyCat:this.$t.__("Noindex Empty Category and Tag Archives",this.$td),removeStopWords:this.$t.__("Remove Stopwords from Permalinks",this.$td),removeCatBase:this.$t.__("Remove Category Base Prefix",this.$td),removeCatBaseUpsell: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("search-appearance-advanced",this.$constants.GLOBAL_STRINGS.learnMore,"remove-category-base-prefix",!0)),autoAddImageAltTags:this.$t.__("Automatically Add Missing Image Alt / Title Tags",this.$td),autoAddImageAltTagsUpsell: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("search-appearance-advanced",this.$constants.GLOBAL_STRINGS.learnMore,"automatically-add-missing-image-tags",!0)),autogenerateDescriptions:this.$t.__("Autogenerate Descriptions",this.$td),useContentForAutogeneratedDescriptions:this.$t.__("Use Content for Autogenerated Descriptions",this.$td),runShortcodesInDescription:this.$t.__("Run Shortcodes in Description",this.$td),noPaginationForCanonical:this.$t.__("No Pagination for Canonical URLs",this.$td),useKeywords:this.$t.__("Use Meta Keywords",this.$td),useKeywordsDescription:this.$t.__("This option allows you to toggle the use of Meta Keywords throughout the whole of the site.",this.$td),useCategoriesForMetaKeywords:this.$t.__("Use Categories for Meta Keywords",this.$td),useCategoriesDescription:this.$t.__("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).",this.$td),useTagsForMetaKeywords:this.$t.__("Use Tags for Meta Keywords",this.$td),useTagsDescription:this.$t.__("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).",this.$td),dynamicallyGenerateKeywords:this.$t.__("Dynamically Generate Meta Keywords",this.$td),dynamicallyGenerateDescription:this.$t.__("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.",this.$td),pagedFormat:this.$t.__("Paged Format",this.$td),pagedFormatDescription:this.$t.__("This string gets appended/prepended to titles and descriptions of paged index pages (like home or archive pages).",this.$td),descriptionFormat:this.$t.__("Description Format",this.$td),excludePostsPages:this.$t.__("Exclude Posts / Pages",this.$td),excludeTerms:this.$t.__("Exclude Terms",this.$td),sitelinks:this.$t.__("Enable Sitelinks Search Box",this.$td),sitelinksDescription:this.$t.sprintf(this.$t.__("Choose whether %1$s should output the required schema markup that Google needs to generate a sitelinks search box.",this.$td),"AIOSEO"),descriptionTagRequired:this.$t.__("A Description tag is required in order to properly display your meta descriptions on your site.",this.$td)}}},computed:Object(o["a"])(Object(o["a"])(Object(o["a"])({},Object(i["c"])(["settings","isUnlicensed"])),Object(i["e"])(["options","internalOptions"])),{},{removeCatBase:{get:function(){return!!this.$isPro&&this.options.searchAppearance.advanced.removeCatBase},set:function(e){this.options.searchAppearance.advanced.removeCatBase=e}},autoAddImageAltTags:{get:function(){return!this.isUnlicensed&&this.options.searchAppearance.advanced.autoAddImageAltTags},set:function(e){this.options.searchAppearance.advanced.autoAddImageAltTags=e}}})},c=r,l=(s("f7fe"),s("2877")),p=Object(l["a"])(c,a,n,!1,null,null,null);t["default"]=p.exports},"8b8c":function(e,t,s){},9267:function(e,t,s){},a45d:function(e,t,s){"use strict";var a=s("9267"),n=s.n(a);n.a},c395:function(e,t,s){},c74c:function(e,t,s){"use strict";var a=s("58e8"),n=s.n(a);n.a},e6cd:function(e,t,s){"use strict";s.r(t);var a=function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("div",{staticClass:"aioseo-search-appearance-global"},[s("core-card",{attrs:{slug:"searchTitleSeparator","header-text":e.strings.titleSeparator}},[s("core-settings-row",{attrs:{name:e.$constants.GLOBAL_STRINGS.preview},scopedSlots:e._u([{key:"content",fn:function(){return[s("core-google-search-preview",{attrs:{title:"#site_title #separator_sa #tagline",separator:e.options.searchAppearance.global.separator,description:"#tagline"}})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:e.strings.separatorCharacter},scopedSlots:e._u([{key:"content",fn:function(){return[s("core-settings-separator",{attrs:{"options-separator":e.options.searchAppearance.global.separator,"show-more-slug":"searchShowMoreSeparators"},on:{change:function(t){return e.options.searchAppearance.global.separator=t}}})]},proxy:!0}])})],1),s("core-card",{attrs:{slug:"searchHomePage","header-text":e.strings.homePage,id:"home-page-settings"}},[e.$aioseo.data.staticHomePage?s("div",{staticClass:"aioseo-settings-row aioseo-section-description"},[s("span",{domProps:{innerHTML:e._s(e.strings.homePageDisabledDescription)}}),e._v(" "),s("span",{domProps:{innerHTML:e._s(e.$links.getDocLink(e.$constants.GLOBAL_STRINGS.learnMore,"staticHomePage",!0))}})]):e._e(),s("core-settings-row",{attrs:{name:e.$constants.GLOBAL_STRINGS.preview},scopedSlots:e._u([{key:"content",fn:function(){return[e.$aioseo.data.staticHomePage?s("core-google-search-preview",{attrs:{title:e.$aioseo.data.staticHomePageTitle||"#site_title",separator:e.options.searchAppearance.global.separator,description:e.$aioseo.data.staticHomePageDescription||"#tagline"}}):e._e(),e.$aioseo.data.staticHomePage?e._e():s("core-google-search-preview",{attrs:{title:e.options.searchAppearance.global.siteTitle||"#site_title",separator:e.options.searchAppearance.global.separator,description:e.options.searchAppearance.global.metaDescription||"#tagline"}})]},proxy:!0}])}),e.$aioseo.data.staticHomePage?e._e():s("core-settings-row",{attrs:{name:e.strings.siteTitle},scopedSlots:e._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":"homePage","default-tags":["site_title","separator_sa","tagline"]},on:{counter:function(t){return e.updateCount(t,"titleCount")}},scopedSlots:e._u([{key:"tags-description",fn:function(){return[e._v(" "+e._s(e.strings.clickToAddSiteTitle)+" ")]},proxy:!0}],null,!1,3952728333),model:{value:e.options.searchAppearance.global.siteTitle,callback:function(t){e.$set(e.options.searchAppearance.global,"siteTitle",t)},expression:"options.searchAppearance.global.siteTitle"}}),s("div",{staticClass:"max-recommended-count",domProps:{innerHTML:e._s(e.maxRecommendedCount(e.titleCount,60))}})]},proxy:!0}],null,!1,2375399622)}),e.$aioseo.data.staticHomePage?e._e():s("core-settings-row",{attrs:{name:e.strings.metaDescription},scopedSlots:e._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{attrs:{"line-numbers":!1,description:"","tags-context":"homePage","default-tags":["site_title","separator_sa","tagline"]},on:{counter:function(t){return e.updateCount(t,"descriptionCount")}},scopedSlots:e._u([{key:"tags-description",fn:function(){return[e._v(" "+e._s(e.strings.clickToAddSiteDescription)+" ")]},proxy:!0}],null,!1,67309675),model:{value:e.options.searchAppearance.global.metaDescription,callback:function(t){e.$set(e.options.searchAppearance.global,"metaDescription",t)},expression:"options.searchAppearance.global.metaDescription"}}),s("div",{staticClass:"max-recommended-count",domProps:{innerHTML:e._s(e.maxRecommendedCount(e.descriptionCount,160))}})]},proxy:!0}],null,!1,3174983313)}),e.options.searchAppearance.advanced.useKeywords&&!e.$aioseo.data.staticHomePage?s("core-settings-row",{attrs:{name:e.strings.keywords,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-select",{attrs:{multiple:"",taggable:"",options:e.getJsonValue(e.options.searchAppearance.global.keywords,[])||[],value:e.getJsonValue(e.options.searchAppearance.global.keywords,[])||[],"tag-placeholder":e.strings.tagPlaceholder},on:{input:function(t){return e.options.searchAppearance.global.keywords=e.setJsonValue(t)}}})]},proxy:!0}],null,!1,3821969712)}):e._e()],1),s("core-card",{attrs:{slug:"searchSchema","header-text":e.strings.knowledgeGraph},scopedSlots:e._u([{key:"tooltip",fn:function(){return[e._v(" "+e._s(e.strings.knowledgeGraphDescription)+" ")]},proxy:!0}])},[e.internalOptions.internal.deprecatedOptions.includes("enableSchemaMarkup")?s("core-settings-row",{attrs:{name:e.strings.enableSchemaMarkup,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:"enableSchemaMarkup",options:[{label:e.$constants.GLOBAL_STRINGS.off,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.on,value:!0}]},model:{value:e.options.deprecated.searchAppearance.global.schema.enableSchemaMarkup,callback:function(t){e.$set(e.options.deprecated.searchAppearance.global.schema,"enableSchemaMarkup",t)},expression:"options.deprecated.searchAppearance.global.schema.enableSchemaMarkup"}})]},proxy:!0}],null,!1,1842733059)}):e._e(),s("core-settings-row",{attrs:{id:"schema-graph-site-represents",name:e.strings.personOrOrganization},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:"siteRepresents",options:[{label:e.strings.person,value:"person"},{label:e.strings.organization,value:"organization"}]},model:{value:e.options.searchAppearance.global.schema.siteRepresents,callback:function(t){e.$set(e.options.searchAppearance.global.schema,"siteRepresents",t)},expression:"options.searchAppearance.global.schema.siteRepresents"}}),s("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.personOrOrganizationDescription)+" ")])]},proxy:!0}])}),"person"===e.options.searchAppearance.global.schema.siteRepresents?s("core-settings-row",{attrs:{name:e.strings.choosePerson},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-select",{staticClass:"person-chooser",attrs:{options:e.users,value:e.getPersonOptions(e.options.searchAppearance.global.schema.person)},on:{input:function(t){return e.options.searchAppearance.global.schema.person=t.value}},scopedSlots:e._u([{key:"singleLabel",fn:function(t){var a=t.option;return[s("div",{staticClass:"person-label"},[a.gravatar?s("div",{staticClass:"person-avatar"},[s("img",{attrs:{src:a.gravatar}})]):e._e(),s("div",{staticClass:"person-name"},[e._v(" "+e._s(a.label)+" ")])])]}},{key:"option",fn:function(t){var a=t.option;return[s("div",{staticClass:"person-label"},[a.gravatar?s("div",{staticClass:"person-avatar"},[s("img",{attrs:{src:a.gravatar}})]):e._e(),s("div",{staticClass:"person-name"},[e._v(" "+e._s(a.label)+" ")])])]}}],null,!1,1262403990)})]},proxy:!0}],null,!1,2940220138)}):e._e(),"organization"===e.options.searchAppearance.global.schema.siteRepresents?s("core-settings-row",{staticClass:"schema-graph-name",attrs:{name:e.strings.name},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-input",{attrs:{size:"medium"},model:{value:e.options.searchAppearance.global.schema.organizationName,callback:function(t){e.$set(e.options.searchAppearance.global.schema,"organizationName",t)},expression:"options.searchAppearance.global.schema.organizationName"}})]},proxy:!0}],null,!1,2889505989)}):e._e(),"organization"!==e.options.searchAppearance.global.schema.siteRepresents&&"manual"===e.options.searchAppearance.global.schema.person?s("core-settings-row",{staticClass:"schema-graph-name",attrs:{name:e.strings.name},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-input",{attrs:{size:"medium"},model:{value:e.options.searchAppearance.global.schema.personName,callback:function(t){e.$set(e.options.searchAppearance.global.schema,"personName",t)},expression:"options.searchAppearance.global.schema.personName"}})]},proxy:!0}],null,!1,3790833419)}):e._e(),"organization"===e.options.searchAppearance.global.schema.siteRepresents?s("core-settings-row",{staticClass:"schema-graph-phone",attrs:{id:"schema-graph-phone",name:e.strings.phone},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-phone",{model:{value:e.options.searchAppearance.global.schema.phone,callback:function(t){e.$set(e.options.searchAppearance.global.schema,"phone",t)},expression:"options.searchAppearance.global.schema.phone"}})]},proxy:!0}],null,!1,2261799709)}):e._e(),"organization"===e.options.searchAppearance.global.schema.siteRepresents?s("core-settings-row",{staticClass:"schema-graph-contact-type",attrs:{name:e.strings.contactType},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-select",{attrs:{size:"small",options:e.$constants.CONTACT_TYPES,placeholder:e.strings.chooseContactType,value:e.getContactTypeOptions(e.options.searchAppearance.global.schema.contactType)},on:{input:function(t){return e.options.searchAppearance.global.schema.contactType=t.value}}}),s("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.contactTypeDescription)+" ")])]},proxy:!0}],null,!1,2725774414)}):e._e(),"organization"===e.options.searchAppearance.global.schema.siteRepresents&&"manual"===e.options.searchAppearance.global.schema.contactType?s("core-settings-row",{staticClass:"schema-graph-contact-type-manual",attrs:{name:e.strings.contactType},scopedSlots:e._u([{key:"content",fn:function(){return[s("base-input",{attrs:{size:"medium"},model:{value:e.options.searchAppearance.global.schema.contactTypeManual,callback:function(t){e.$set(e.options.searchAppearance.global.schema,"contactTypeManual",t)},expression:"options.searchAppearance.global.schema.contactTypeManual"}})]},proxy:!0}],null,!1,3975038011)}):e._e(),"organization"===e.options.searchAppearance.global.schema.siteRepresents?s("core-settings-row",{staticClass:"schema-graph-image",attrs:{name:e.strings.logo},scopedSlots:e._u([{key:"content",fn:function(){return[s("div",{staticClass:"image-upload"},[s("base-input",{attrs:{size:"medium",placeholder:e.strings.pasteYourImageUrl},model:{value:e.options.searchAppearance.global.schema.organizationLogo,callback:function(t){e.$set(e.options.searchAppearance.global.schema,"organizationLogo",t)},expression:"options.searchAppearance.global.schema.organizationLogo"}}),s("base-button",{staticClass:"insert-image",attrs:{size:"medium",type:"black"},on:{click:function(t){return e.openUploadModal("logo",["options","searchAppearance","global","schema","organizationLogo"])}}},[s("svg-circle-plus"),e._v(" "+e._s(e.strings.uploadOrSelectImage)+" ")],1),s("base-button",{staticClass:"remove-image",attrs:{size:"medium",type:"gray"},on:{click:function(t){e.options.searchAppearance.global.schema.organizationLogo=null}}},[e._v(" "+e._s(e.strings.remove)+" ")])],1),s("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.minimumSize)+" ")]),e.canShowImage(e.options.searchAppearance.global.schema.organizationLogo)?s("img",{attrs:{src:e.options.searchAppearance.global.schema.organizationLogo}}):e._e()]},proxy:!0}],null,!1,875742457)}):e._e(),"organization"!==e.options.searchAppearance.global.schema.siteRepresents&&"manual"===e.options.searchAppearance.global.schema.person?s("core-settings-row",{staticClass:"schema-graph-image",attrs:{name:e.strings.logo},scopedSlots:e._u([{key:"content",fn:function(){return[s("div",{staticClass:"image-upload"},[s("base-input",{attrs:{size:"medium",placeholder:e.strings.pasteYourImageUrl},model:{value:e.options.searchAppearance.global.schema.personLogo,callback:function(t){e.$set(e.options.searchAppearance.global.schema,"personLogo",t)},expression:"options.searchAppearance.global.schema.personLogo"}}),s("base-button",{staticClass:"insert-image",attrs:{size:"medium",type:"black"},on:{click:function(t){return e.openUploadModal("logo",["options","searchAppearance","global","schema","personLogo"])}}},[s("svg-circle-plus"),e._v(" "+e._s(e.strings.uploadOrSelectImage)+" ")],1),s("base-button",{staticClass:"remove-image",attrs:{size:"medium",type:"gray"},on:{click:function(t){e.options.searchAppearance.global.schema.personLogo=null}}},[e._v(" "+e._s(e.strings.remove)+" ")])],1),s("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.minimumSize)+" ")]),e.canShowImage(e.options.searchAppearance.global.schema.personLogo)?s("img",{attrs:{src:e.options.searchAppearance.global.schema.personLogo}}):e._e()]},proxy:!0}],null,!1,3935028215)}):e._e(),s("div",{staticClass:"aioseo-settings-row local-seo"},[s("svg-local-seo"),s("div",{staticClass:"local-seo-text"},[s("div",{domProps:{innerHTML:e._s(e.strings.goToLocalSeo)}}),s("base-button",{attrs:{size:"medium",type:"blue",tag:"a",href:e.$aioseo.urls.aio.localSeo}},[e._v(" "+e._s(e.strings.goToLocalSeoSettings)+" ")])],1)],1)],1)],1)},n=[],o=(s("99af"),s("7db0"),s("d81d"),s("d3b7"),s("25f0"),s("5530")),i=s("9c0e"),r=s("2f62"),c={mixins:[i["a"],i["d"],i["f"],i["o"]],data:function(){return{titleCount:0,descriptionCount:0,strings:{titleSeparator:this.$t.__("Title Separator",this.$td),separatorCharacter:this.$t.__("Separator Character",this.$td),homePageDisabledDescription:this.$t.sprintf(this.$t.__("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.",this.$td),'<a href="'.concat(this.$aioseo.urls.staticHomePage,'">'),"</a>"),homePage:this.$t.__("Home Page",this.$td),siteTitle:this.$t.__("Site Title",this.$td),clickToAddSiteTitle:this.$t.__("Click on the tags below to insert variables into your site title.",this.$td),metaDescription:this.$t.__("Meta Description",this.$td),clickToAddSiteDescription:this.$t.__("Click on the tags below to insert variables into your meta description.",this.$td),knowledgeGraph:this.$t.__("Knowledge Graph",this.$td),knowledgeGraphDescription:this.$t.__("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.",this.$td),personOrOrganization:this.$t.__("Person or Organization",this.$td),person:this.$t.__("Person",this.$td),organization:this.$t.__("Organization",this.$td),personOrOrganizationDescription:this.$t.__("Choose whether the site represents a person or an organization.",this.$td),choosePerson:this.$t.__("Choose a Person",this.$td),name:this.$t.__("Name",this.$td),phone:this.$t.__("Phone Number",this.$td),chooseContactType:this.$t.__("Choose a Contact Type",this.$td),contactType:this.$t.__("Contact Type",this.$td),contactTypeDescription:this.$t.__("Select which team or department the phone number belongs to.",this.$td),logo:this.$t.__("Logo",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: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or WEBP format.",this.$td),remove:this.$t.__("Remove",this.$td),goToLocalSeo:this.$t.sprintf(this.$t.__("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).",this.$td),"<strong>","</strong>","Pro","Pro"),goToLocalSeoSettings:this.$t.__("Go to Local SEO Settings",this.$td),enableSchemaMarkup:this.$t.__("Enable Schema Markup",this.$td),keywords:this.$t.__("Keywords",this.$td),tagPlaceholder:this.$t.__("Press enter to create a keyword",this.$td)}}},computed:Object(o["a"])(Object(o["a"])({},Object(r["e"])(["options","internalOptions"])),{},{users:function(){return[{label:this.$t.__("Manually Enter Person",this.$td),value:"manual"}].concat(this.$aioseo.users.map((function(e){return{label:"".concat(e.displayName," (").concat(e.email,")"),gravatar:e.gravatar,value:e.id}})))}}),methods:{getPersonOptions:function(e){return this.users.find((function(t){return e&&t.value.toString()===e.toString()}))},getContactTypeOptions:function(e){return this.$constants.CONTACT_TYPES.find((function(t){return t.value===e}))}}},l=c,p=(s("4540"),s("2877")),d=Object(p["a"])(l,a,n,!1,null,null,null);t["default"]=d.exports},f7fe:function(e,t,s){"use strict";var a=s("8b8c"),n=s.n(a);n.a}}]);
1
+ (window["aioseopjsonp"]=window["aioseopjsonp"]||[]).push([["search-appearance-Main-vue","search-appearance-Advanced-vue","search-appearance-GlobalSettings-vue"],{"219a":function(e,t,a){"use strict";a.r(t);var s=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"aioseo-search-appearance-taxonomies"},e._l(e.taxonomies,(function(t,s){return a("core-card",{key:s,attrs:{slug:t.name+"SA"},scopedSlots:e._u([{key:"header",fn:function(){return[a("div",{staticClass:"icon dashicons",class:""+(t.icon||"dashicons-admin-post")}),a("div",[e._v(" "+e._s(t.label)+" ")])]},proxy:!0},{key:"tabs",fn:function(){return[a("core-main-tabs",{attrs:{tabs:e.tabs,showSaveButton:!1,active:e.settings.internalTabs[t.name+"SA"],internal:""},on:{changed:function(a){return e.processChangeTab(t.name,a)}}})]},proxy:!0}],null,!0)},[a("transition",{attrs:{name:"route-fade",mode:"out-in"}},[a(e.settings.internalTabs[t.name+"SA"],{tag:"component",attrs:{object:t,separator:e.options.searchAppearance.global.separator,options:e.options.searchAppearance.dynamic.taxonomies[t.name],type:"taxonomies","show-bulk":!1}})],1)],1)})),1)},n=[],o=a("5530"),i=a("2f62"),r=a("0844"),c=a("587e"),l={components:{Advanced:r["default"],TitleDescription:c["default"]},data:function(){return{internalDebounce:null,strings:{ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Custom Taxonomies",this.$td),ctaDescription:this.$t.sprintf(this.$t.__("%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.",this.$td),"AIOSEO","Pro"),ctaHeader:this.$t.sprintf(this.$t.__("Custom Taxonomy Support is only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")},tabs:[{slug:"title-description",name:this.$t.__("Title & Description",this.$tdPro),access:"aioseo_manage_seo",pro:!1},{slug:"advanced",name:this.$t.__("Advanced",this.$tdPro),access:"aioseo_manage_seo",pro:!1}]}},computed:Object(o["a"])(Object(o["a"])(Object(o["a"])({},Object(i["c"])(["isUnlicensed"])),Object(i["e"])(["options","settings"])),{},{taxonomies:function(){return this.$aioseo.postData.taxonomies}}),methods:Object(o["a"])(Object(o["a"])({},Object(i["b"])(["changeTab"])),{},{processChangeTab:function(e,t){var a=this;this.internalDebounce||(this.internalDebounce=!0,this.changeTab({slug:"".concat(e,"SA"),value:t}),setTimeout((function(){a.internalDebounce=!1}),50))}})},p=l,d=(a("c74c"),a("2877")),u=Object(d["a"])(p,s,n,!1,null,null,null);t["default"]=u.exports},"2b19b":function(e,t,a){"use strict";a.r(t);var s=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("core-main",{attrs:{"page-name":e.strings.pageName}},[a(e.$route.name,{tag:"component"})],1)},n=[],o=a("e6cd"),i=a("372a"),r=a("2b0d"),c=a("219a"),l=a("5b69"),p=a("89b4"),d={components:{Advanced:p["default"],Archives:l["default"],ContentTypes:i["default"],GlobalSettings:o["default"],Media:r["default"],Taxonomies:c["default"]},data:function(){return{strings:{pageName:this.$t.__("Search Appearance",this.$td)}}}},u=d,h=a("2877"),g=Object(h["a"])(u,s,n,!1,null,null,null);t["default"]=g.exports},"2eee":function(e,t,a){"use strict";var s=a("5d1c"),n=a.n(s);n.a},"372a":function(e,t,a){"use strict";a.r(t);var s=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"aioseo-search-appearance-content-types"},e._l(e.postTypes,(function(t,s){return a("core-card",{key:s,attrs:{slug:t.name+"SA"},scopedSlots:e._u([{key:"header",fn:function(){return[a("div",{staticClass:"icon dashicons",class:""+(t.icon||"dashicons-admin-post")}),a("div",{domProps:{innerHTML:e._s(t.label)}})]},proxy:!0},{key:"tabs",fn:function(){return[a("core-main-tabs",{attrs:{tabs:e.tabs,showSaveButton:!1,active:e.settings.internalTabs[t.name+"SA"],internal:""},on:{changed:function(a){return e.processChangeTab(t.name,a)}}})]},proxy:!0}],null,!0)},[a("transition",{attrs:{name:"route-fade",mode:"out-in"}},[a(e.settings.internalTabs[t.name+"SA"],{tag:"component",attrs:{object:t,separator:e.options.searchAppearance.global.separator,options:e.options.searchAppearance.dynamic.postTypes[t.name],type:"postTypes"}})],1)],1)})),1)},n=[],o=(a("4de4"),a("b0c0"),a("5530")),i=a("2f62"),r=a("0844"),c=a("3a4e"),l=a("5be7"),p=a("587e"),d={components:{Advanced:r["default"],CustomFields:c["default"],Schema:l["default"],TitleDescription:p["default"]},data:function(){return{internalDebounce:null,tabs:[{slug:"title-description",name:this.$t.__("Title & Description",this.$td),access:"aioseo_manage_seo",pro:!1},{slug:"schema",name:this.$t.__("Schema Markup",this.$td),access:"aioseo_manage_seo",pro:!0},{slug:"custom-fields",name:this.$t.__("Custom Fields",this.$td),access:"aioseo_manage_seo",pro:!0},{slug:"advanced",name:this.$t.__("Advanced",this.$td),access:"aioseo_manage_seo",pro:!1}]}},computed:Object(o["a"])(Object(o["a"])({},Object(i["e"])(["options","settings"])),{},{postTypes:function(){return this.$aioseo.postData.postTypes.filter((function(e){return"attachment"!==e.name}))}}),methods:Object(o["a"])(Object(o["a"])({},Object(i["b"])(["changeTab"])),{},{processChangeTab:function(e,t){var a=this;this.internalDebounce||(this.internalDebounce=!0,this.changeTab({slug:"".concat(e,"SA"),value:t}),setTimeout((function(){a.internalDebounce=!1}),50))}})},u=d,h=(a("a45d"),a("2877")),g=Object(h["a"])(u,s,n,!1,null,null,null);t["default"]=g.exports},"3a4e":function(e,t,a){"use strict";a.r(t);var s=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"aioseo-sa-ct-custom-fields-view"},[e.isUnlicensed?e._e():a("custom-fields",{attrs:{type:e.type,object:e.object,options:e.options,"show-bulk":e.showBulk}}),e.isUnlicensed?a("custom-fields-lite",{attrs:{type:e.type,object:e.object,options:e.options,"show-bulk":e.showBulk}}):e._e()],1)},n=[],o=a("5530"),i=a("2f62"),r=a("9e7b"),c={components:{CustomFields:r["default"],CustomFieldsLite:r["default"]},props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean},computed:Object(o["a"])({},Object(i["c"])(["isUnlicensed"]))},l=c,p=a("2877"),d=Object(p["a"])(l,s,n,!1,null,null,null);t["default"]=d.exports},4540:function(e,t,a){"use strict";var s=a("c395"),n=a.n(s);n.a},"58e8":function(e,t,a){},"5b69":function(e,t,a){"use strict";a.r(t);var s=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"aioseo-search-appearance-archives"},e._l(e.getArchives,(function(t,s){return a("core-card",{key:s,attrs:{slug:t.name+"Archives"},scopedSlots:e._u([{key:"header",fn:function(){return[a("div",{staticClass:"icon dashicons",class:""+(t.icon||"dashicons-admin-post")}),a("div",[e._v(" "+e._s(t.label)+" ")])]},proxy:!0},{key:"tabs",fn:function(){return[a("core-main-tabs",{attrs:{tabs:e.tabs,showSaveButton:!1,active:e.settings.internalTabs[t.name+"Archives"],internal:""},on:{changed:function(a){return e.processChangeTab(t.name,a)}}})]},proxy:!0}],null,!0)},[a("transition",{attrs:{name:"route-fade",mode:"out-in"}},[a(e.settings.internalTabs[t.name+"Archives"],{tag:"component",attrs:{object:t,separator:e.options.searchAppearance.global.separator,options:e.getOptions(t),type:"archives","show-bulk":!1,"no-meta-box":"","include-keywords":""}})],1)],1)})),1)},n=[],o=(a("99af"),a("d81d"),a("b0c0"),a("ac1f"),a("5319"),a("5530")),i=a("2f62"),r=a("0844"),c=a("587e"),l={components:{Advanced:r["default"],TitleDescription:c["default"]},data:function(){return{internalDebounce:null,tabs:[{slug:"title-description",name:this.$t.__("Title & Description",this.$td),access:"aioseo_manage_seo",pro:!1},{slug:"advanced",name:this.$t.__("Advanced",this.$td),access:"aioseo_manage_seo",pro:!1}],archives:[{label:"Author Archives",name:"author",singular:"Author",icon:"dashicons-admin-users"},{label:"Date Archives",name:"date",singular:"Date",icon:"dashicons-calendar-alt"},{label:"Search Page",name:"search",singular:"Search Page",icon:"dashicons-search"}]}},computed:Object(o["a"])(Object(o["a"])({},Object(i["e"])(["options","settings"])),{},{getArchives:function(){return this.archives.concat(this.$aioseo.postData.archives.map((function(e){return{label:"".concat(e.label," Archives"),name:"".concat(e.name,"Archive"),icon:"dashicons-category",singular:e.singular,dynamic:!0}})))}}),methods:Object(o["a"])(Object(o["a"])({},Object(i["b"])(["changeTab"])),{},{processChangeTab:function(e,t){var a=this;this.internalDebounce||(this.internalDebounce=!0,this.changeTab({slug:"".concat(e,"Archives"),value:t}),setTimeout((function(){a.internalDebounce=!1}),50))},getOptions:function(e){return e.dynamic?this.options.searchAppearance.dynamic.archives[e.name.replace("Archive","")]:this.options.searchAppearance.archives[e.name]}})},p=l,d=(a("2eee"),a("2877")),u=Object(d["a"])(p,s,n,!1,null,null,null);t["default"]=u.exports},"5d1c":function(e,t,a){},"89b4":function(e,t,a){"use strict";a.r(t);var s=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"aioseo-search-appearance-advanced"},[a("core-card",{attrs:{slug:"searchAdvanced","header-text":e.strings.advanced}},[a("core-settings-row",{attrs:{name:e.strings.globalRobotsMeta},scopedSlots:e._u([{key:"content",fn:function(){return[a("core-robots-meta",{attrs:{options:e.options.searchAppearance.advanced.globalRobotsMeta,global:""}})]},proxy:!0}])}),a("core-settings-row",{attrs:{name:e.strings.sitelinks},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-radio-toggle",{attrs:{name:e.strings.sitelinks,options:[{label:e.$constants.GLOBAL_STRINGS.off,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.on,value:!0}]},model:{value:e.options.searchAppearance.advanced.sitelinks,callback:function(t){e.$set(e.options.searchAppearance.advanced,"sitelinks",t)},expression:"options.searchAppearance.advanced.sitelinks"}}),a("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.sitelinksDescription)+" ")])]},proxy:!0}])}),e.internalOptions.internal.deprecatedOptions.includes("autogenerateDescriptions")?a("core-settings-row",{attrs:{name:e.strings.autogenerateDescriptions,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-radio-toggle",{attrs:{name:"autogenerateDescriptions",options:[{label:e.$constants.GLOBAL_STRINGS.off,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.on,value:!0}]},model:{value:e.options.deprecated.searchAppearance.advanced.autogenerateDescriptions,callback:function(t){e.$set(e.options.deprecated.searchAppearance.advanced,"autogenerateDescriptions",t)},expression:"options.deprecated.searchAppearance.advanced.autogenerateDescriptions"}})]},proxy:!0}],null,!1,3425659337)}):e._e(),!e.internalOptions.internal.deprecatedOptions.includes("useContentForAutogeneratedDescriptions")||e.internalOptions.internal.deprecatedOptions.includes("autogenerateDescriptions")&&!e.options.deprecated.searchAppearance.advanced.autogenerateDescriptions?e._e():a("core-settings-row",{attrs:{name:e.strings.useContentForAutogeneratedDescriptions,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-radio-toggle",{attrs:{name:"useContentForAutogeneratedDescriptions",options:[{label:e.$constants.GLOBAL_STRINGS.off,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.on,value:!0}]},model:{value:e.options.deprecated.searchAppearance.advanced.useContentForAutogeneratedDescriptions,callback:function(t){e.$set(e.options.deprecated.searchAppearance.advanced,"useContentForAutogeneratedDescriptions",t)},expression:"options.deprecated.searchAppearance.advanced.useContentForAutogeneratedDescriptions"}})]},proxy:!0}],null,!1,1103360809)}),!e.internalOptions.internal.deprecatedOptions.includes("runShortcodesInDescription")||e.internalOptions.internal.deprecatedOptions.includes("autogenerateDescriptions")&&!e.options.deprecated.searchAppearance.advanced.autogenerateDescriptions?e._e():a("core-settings-row",{attrs:{name:e.strings.runShortcodesInDescription,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-radio-toggle",{attrs:{name:"runShortcodesInDescription",options:[{label:e.$constants.GLOBAL_STRINGS.off,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.on,value:!0}]},model:{value:e.options.deprecated.searchAppearance.advanced.runShortcodesInDescription,callback:function(t){e.$set(e.options.deprecated.searchAppearance.advanced,"runShortcodesInDescription",t)},expression:"options.deprecated.searchAppearance.advanced.runShortcodesInDescription"}})]},proxy:!0}],null,!1,2120810537)}),a("core-settings-row",{attrs:{name:e.strings.noPaginationForCanonical,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-radio-toggle",{attrs:{name:"noPaginationForCanonical",options:[{label:e.$constants.GLOBAL_STRINGS.off,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.on,value:!0}]},model:{value:e.options.searchAppearance.advanced.noPaginationForCanonical,callback:function(t){e.$set(e.options.searchAppearance.advanced,"noPaginationForCanonical",t)},expression:"options.searchAppearance.advanced.noPaginationForCanonical"}})]},proxy:!0}])}),a("core-settings-row",{attrs:{name:e.strings.useKeywords,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-radio-toggle",{attrs:{name:"useKeywords",options:[{label:e.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.yes,value:!0}]},model:{value:e.options.searchAppearance.advanced.useKeywords,callback:function(t){e.$set(e.options.searchAppearance.advanced,"useKeywords",t)},expression:"options.searchAppearance.advanced.useKeywords"}}),a("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.useKeywordsDescription)+" ")])]},proxy:!0}])}),e.options.searchAppearance.advanced.useKeywords?a("core-settings-row",{attrs:{name:e.strings.useCategoriesForMetaKeywords,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-radio-toggle",{attrs:{name:"useCategoriesForMetaKeywords",options:[{label:e.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.yes,value:!0}]},model:{value:e.options.searchAppearance.advanced.useCategoriesForMetaKeywords,callback:function(t){e.$set(e.options.searchAppearance.advanced,"useCategoriesForMetaKeywords",t)},expression:"options.searchAppearance.advanced.useCategoriesForMetaKeywords"}}),a("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.useCategoriesDescription)+" ")])]},proxy:!0}],null,!1,1182210491)}):e._e(),e.options.searchAppearance.advanced.useKeywords?a("core-settings-row",{attrs:{name:e.strings.useTagsForMetaKeywords,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-radio-toggle",{attrs:{name:"useTagsForMetaKeywords",options:[{label:e.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.yes,value:!0}]},model:{value:e.options.searchAppearance.advanced.useTagsForMetaKeywords,callback:function(t){e.$set(e.options.searchAppearance.advanced,"useTagsForMetaKeywords",t)},expression:"options.searchAppearance.advanced.useTagsForMetaKeywords"}}),a("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.useTagsDescription)+" ")])]},proxy:!0}],null,!1,980507244)}):e._e(),e.options.searchAppearance.advanced.useKeywords?a("core-settings-row",{attrs:{name:e.strings.dynamicallyGenerateKeywords,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-radio-toggle",{attrs:{name:"dynamicallyGenerateKeywords",options:[{label:e.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.yes,value:!0}]},model:{value:e.options.searchAppearance.advanced.dynamicallyGenerateKeywords,callback:function(t){e.$set(e.options.searchAppearance.advanced,"dynamicallyGenerateKeywords",t)},expression:"options.searchAppearance.advanced.dynamicallyGenerateKeywords"}}),a("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.dynamicallyGenerateDescription)+" ")])]},proxy:!0}],null,!1,3269411336)}):e._e(),e.internalOptions.internal.deprecatedOptions.includes("descriptionFormat")?a("core-settings-row",{attrs:{id:"description-format",name:e.strings.descriptionFormat,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[a("core-html-tags-editor",{staticClass:"description-format",attrs:{"line-numbers":!1,single:"","show-tags-description":!1,"tags-context":"descriptionFormat","default-tags":["description","site_title","tagline"],"show-all-tags-link":!0},scopedSlots:e._u([{key:"tags-description",fn:function(){return[e._v(" "+e._s(e.emptyString)+" ")]},proxy:!0}],null,!1,115256282),model:{value:e.options.deprecated.searchAppearance.global.descriptionFormat,callback:function(t){e.$set(e.options.deprecated.searchAppearance.global,"descriptionFormat",t)},expression:"options.deprecated.searchAppearance.global.descriptionFormat"}}),e.options.deprecated.searchAppearance.global.descriptionFormat.includes("#description")?e._e():a("core-alert",{staticClass:"description-notice",attrs:{type:"red"}},[e._v(" "+e._s(e.strings.descriptionTagRequired)+" ")])]},proxy:!0}],null,!1,3789774672)}):e._e(),a("core-settings-row",{attrs:{name:e.strings.pagedFormat,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[a("core-html-tags-editor",{staticClass:"paged-format",attrs:{"line-numbers":!1,single:"","tags-context":"pagedFormat","default-tags":["page_number"],"show-all-tags-link":!1},scopedSlots:e._u([{key:"tags-description",fn:function(){return[e._v(" "+e._s(e.emptyString)+" ")]},proxy:!0}]),model:{value:e.options.searchAppearance.advanced.pagedFormat,callback:function(t){e.$set(e.options.searchAppearance.advanced,"pagedFormat",t)},expression:"options.searchAppearance.advanced.pagedFormat"}}),a("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.pagedFormatDescription)+" ")])]},proxy:!0}])}),e.internalOptions.internal.deprecatedOptions.includes("excludePosts")?a("core-settings-row",{staticClass:"aioseo-exclude-pages-posts",attrs:{name:e.strings.excludePostsPages,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[a("core-exclude-posts",{attrs:{options:e.options.deprecated.searchAppearance.advanced,type:"posts"}})]},proxy:!0}],null,!1,4134150415)}):e._e(),e.internalOptions.internal.deprecatedOptions.includes("excludeTerms")?a("core-settings-row",{staticClass:"aioseo-exclude-terms",attrs:{name:e.strings.excludeTerms,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[a("core-exclude-posts",{attrs:{options:e.options.deprecated.searchAppearance.advanced,type:"terms"}})]},proxy:!0}],null,!1,1691116537)}):e._e()],1)],1)},n=[],o=a("5530"),i=a("2f62"),r={data:function(){return{emptyString:"",strings:{advanced:this.$t.__("Advanced Settings",this.$td),globalRobotsMeta:this.$t.__("Global Robots Meta",this.$td),noIndexEmptyCat:this.$t.__("Noindex Empty Category and Tag Archives",this.$td),removeStopWords:this.$t.__("Remove Stopwords from Permalinks",this.$td),removeCatBase:this.$t.__("Remove Category Base Prefix",this.$td),removeCatBaseUpsell: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("search-appearance-advanced",this.$constants.GLOBAL_STRINGS.learnMore,"remove-category-base-prefix",!0)),autoAddImageAltTags:this.$t.__("Automatically Add Missing Image Alt / Title Tags",this.$td),autoAddImageAltTagsUpsell: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("search-appearance-advanced",this.$constants.GLOBAL_STRINGS.learnMore,"automatically-add-missing-image-tags",!0)),autogenerateDescriptions:this.$t.__("Autogenerate Descriptions",this.$td),useContentForAutogeneratedDescriptions:this.$t.__("Use Content for Autogenerated Descriptions",this.$td),runShortcodesInDescription:this.$t.__("Run Shortcodes in Description",this.$td),noPaginationForCanonical:this.$t.__("No Pagination for Canonical URLs",this.$td),useKeywords:this.$t.__("Use Meta Keywords",this.$td),useKeywordsDescription:this.$t.__("This option allows you to toggle the use of Meta Keywords throughout the whole of the site.",this.$td),useCategoriesForMetaKeywords:this.$t.__("Use Categories for Meta Keywords",this.$td),useCategoriesDescription:this.$t.__("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).",this.$td),useTagsForMetaKeywords:this.$t.__("Use Tags for Meta Keywords",this.$td),useTagsDescription:this.$t.__("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).",this.$td),dynamicallyGenerateKeywords:this.$t.__("Dynamically Generate Meta Keywords",this.$td),dynamicallyGenerateDescription:this.$t.__("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.",this.$td),pagedFormat:this.$t.__("Paged Format",this.$td),pagedFormatDescription:this.$t.__("This string gets appended/prepended to titles and descriptions of paged index pages (like home or archive pages).",this.$td),descriptionFormat:this.$t.__("Description Format",this.$td),excludePostsPages:this.$t.__("Exclude Posts / Pages",this.$td),excludeTerms:this.$t.__("Exclude Terms",this.$td),sitelinks:this.$t.__("Enable Sitelinks Search Box",this.$td),sitelinksDescription:this.$t.sprintf(this.$t.__("Choose whether %1$s should output the required schema markup that Google needs to generate a sitelinks search box.",this.$td),"AIOSEO"),descriptionTagRequired:this.$t.__("A Description tag is required in order to properly display your meta descriptions on your site.",this.$td)}}},computed:Object(o["a"])(Object(o["a"])(Object(o["a"])({},Object(i["c"])(["settings","isUnlicensed"])),Object(i["e"])(["options","internalOptions"])),{},{removeCatBase:{get:function(){return!!this.$isPro&&this.options.searchAppearance.advanced.removeCatBase},set:function(e){this.options.searchAppearance.advanced.removeCatBase=e}},autoAddImageAltTags:{get:function(){return!this.isUnlicensed&&this.options.searchAppearance.advanced.autoAddImageAltTags},set:function(e){this.options.searchAppearance.advanced.autoAddImageAltTags=e}}})},c=r,l=(a("f7fe"),a("2877")),p=Object(l["a"])(c,s,n,!1,null,null,null);t["default"]=p.exports},"8b8c":function(e,t,a){},9267:function(e,t,a){},a45d:function(e,t,a){"use strict";var s=a("9267"),n=a.n(s);n.a},c395:function(e,t,a){},c74c:function(e,t,a){"use strict";var s=a("58e8"),n=a.n(s);n.a},e6cd:function(e,t,a){"use strict";a.r(t);var s=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"aioseo-search-appearance-global"},[a("core-card",{attrs:{slug:"searchTitleSeparator","header-text":e.strings.titleSeparator}},[a("core-settings-row",{attrs:{name:e.$constants.GLOBAL_STRINGS.preview},scopedSlots:e._u([{key:"content",fn:function(){return[a("core-google-search-preview",{attrs:{title:"#site_title #separator_sa #tagline",separator:e.options.searchAppearance.global.separator,description:"#tagline"}})]},proxy:!0}])}),a("core-settings-row",{attrs:{name:e.strings.separatorCharacter},scopedSlots:e._u([{key:"content",fn:function(){return[a("core-settings-separator",{attrs:{"options-separator":e.options.searchAppearance.global.separator,"show-more-slug":"searchShowMoreSeparators"},on:{change:function(t){return e.options.searchAppearance.global.separator=t}}})]},proxy:!0}])})],1),a("core-card",{attrs:{slug:"searchHomePage","header-text":e.strings.homePage,id:"home-page-settings"}},[e.$aioseo.data.staticHomePage?a("div",{staticClass:"aioseo-settings-row aioseo-section-description"},[a("span",{domProps:{innerHTML:e._s(e.strings.homePageDisabledDescription)}}),e._v(" "),a("span",{domProps:{innerHTML:e._s(e.$links.getDocLink(e.$constants.GLOBAL_STRINGS.learnMore,"staticHomePage",!0))}})]):e._e(),a("core-settings-row",{attrs:{name:e.$constants.GLOBAL_STRINGS.preview},scopedSlots:e._u([{key:"content",fn:function(){return[e.$aioseo.data.staticHomePage?a("core-google-search-preview",{attrs:{title:e.$aioseo.data.staticHomePageTitle||"#site_title",separator:e.options.searchAppearance.global.separator,description:e.$aioseo.data.staticHomePageDescription||"#tagline"}}):e._e(),e.$aioseo.data.staticHomePage?e._e():a("core-google-search-preview",{attrs:{title:e.options.searchAppearance.global.siteTitle||"#site_title",separator:e.options.searchAppearance.global.separator,description:e.options.searchAppearance.global.metaDescription||"#tagline"}})]},proxy:!0}])}),e.$aioseo.data.staticHomePage?e._e():a("core-settings-row",{attrs:{name:e.strings.siteTitle},scopedSlots:e._u([{key:"content",fn:function(){return[a("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":"homePage","default-tags":["site_title","separator_sa","tagline"]},on:{counter:function(t){return e.updateCount(t,"titleCount")}},scopedSlots:e._u([{key:"tags-description",fn:function(){return[e._v(" "+e._s(e.strings.clickToAddSiteTitle)+" ")]},proxy:!0}],null,!1,3952728333),model:{value:e.options.searchAppearance.global.siteTitle,callback:function(t){e.$set(e.options.searchAppearance.global,"siteTitle",t)},expression:"options.searchAppearance.global.siteTitle"}}),a("div",{staticClass:"max-recommended-count",domProps:{innerHTML:e._s(e.maxRecommendedCount(e.titleCount,60))}})]},proxy:!0}],null,!1,2375399622)}),e.$aioseo.data.staticHomePage?e._e():a("core-settings-row",{attrs:{name:e.strings.metaDescription},scopedSlots:e._u([{key:"content",fn:function(){return[a("core-html-tags-editor",{attrs:{"line-numbers":!1,description:"","tags-context":"homePage","default-tags":["site_title","separator_sa","tagline"]},on:{counter:function(t){return e.updateCount(t,"descriptionCount")}},scopedSlots:e._u([{key:"tags-description",fn:function(){return[e._v(" "+e._s(e.strings.clickToAddSiteDescription)+" ")]},proxy:!0}],null,!1,67309675),model:{value:e.options.searchAppearance.global.metaDescription,callback:function(t){e.$set(e.options.searchAppearance.global,"metaDescription",t)},expression:"options.searchAppearance.global.metaDescription"}}),a("div",{staticClass:"max-recommended-count",domProps:{innerHTML:e._s(e.maxRecommendedCount(e.descriptionCount,160))}})]},proxy:!0}],null,!1,3174983313)}),e.options.searchAppearance.advanced.useKeywords&&!e.$aioseo.data.staticHomePage?a("core-settings-row",{attrs:{name:e.strings.keywords,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-select",{attrs:{multiple:"",taggable:"",options:e.getJsonValue(e.options.searchAppearance.global.keywords,[])||[],value:e.getJsonValue(e.options.searchAppearance.global.keywords,[])||[],"tag-placeholder":e.strings.tagPlaceholder},on:{input:function(t){return e.options.searchAppearance.global.keywords=e.setJsonValue(t)}}})]},proxy:!0}],null,!1,3821969712)}):e._e()],1),a("core-card",{attrs:{slug:"searchSchema","header-text":e.strings.knowledgeGraph},scopedSlots:e._u([{key:"tooltip",fn:function(){return[e._v(" "+e._s(e.strings.knowledgeGraphDescription)+" ")]},proxy:!0}])},[e.internalOptions.internal.deprecatedOptions.includes("enableSchemaMarkup")?a("core-settings-row",{attrs:{name:e.strings.enableSchemaMarkup,align:""},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-radio-toggle",{attrs:{name:"enableSchemaMarkup",options:[{label:e.$constants.GLOBAL_STRINGS.off,value:!1,activeClass:"dark"},{label:e.$constants.GLOBAL_STRINGS.on,value:!0}]},model:{value:e.options.deprecated.searchAppearance.global.schema.enableSchemaMarkup,callback:function(t){e.$set(e.options.deprecated.searchAppearance.global.schema,"enableSchemaMarkup",t)},expression:"options.deprecated.searchAppearance.global.schema.enableSchemaMarkup"}})]},proxy:!0}],null,!1,1842733059)}):e._e(),a("core-settings-row",{attrs:{id:"schema-graph-site-represents",name:e.strings.personOrOrganization},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-radio-toggle",{attrs:{name:"siteRepresents",options:[{label:e.strings.person,value:"person"},{label:e.strings.organization,value:"organization"}]},model:{value:e.options.searchAppearance.global.schema.siteRepresents,callback:function(t){e.$set(e.options.searchAppearance.global.schema,"siteRepresents",t)},expression:"options.searchAppearance.global.schema.siteRepresents"}}),a("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.personOrOrganizationDescription)+" ")])]},proxy:!0}])}),"person"===e.options.searchAppearance.global.schema.siteRepresents?a("core-settings-row",{attrs:{name:e.strings.choosePerson},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-select",{staticClass:"person-chooser",attrs:{options:e.users,value:e.getPersonOptions(e.options.searchAppearance.global.schema.person)},on:{input:function(t){return e.options.searchAppearance.global.schema.person=t.value}},scopedSlots:e._u([{key:"singleLabel",fn:function(t){var s=t.option;return[a("div",{staticClass:"person-label"},[s.gravatar?a("div",{staticClass:"person-avatar"},[a("img",{attrs:{src:s.gravatar}})]):e._e(),a("div",{staticClass:"person-name"},[e._v(" "+e._s(s.label)+" ")])])]}},{key:"option",fn:function(t){var s=t.option;return[a("div",{staticClass:"person-label"},[s.gravatar?a("div",{staticClass:"person-avatar"},[a("img",{attrs:{src:s.gravatar}})]):e._e(),a("div",{staticClass:"person-name"},[e._v(" "+e._s(s.label)+" ")])])]}}],null,!1,1262403990)})]},proxy:!0}],null,!1,2940220138)}):e._e(),"organization"===e.options.searchAppearance.global.schema.siteRepresents?a("core-settings-row",{staticClass:"schema-graph-name",attrs:{name:e.strings.name},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-input",{attrs:{size:"medium"},model:{value:e.options.searchAppearance.global.schema.organizationName,callback:function(t){e.$set(e.options.searchAppearance.global.schema,"organizationName",t)},expression:"options.searchAppearance.global.schema.organizationName"}})]},proxy:!0}],null,!1,2889505989)}):e._e(),"organization"!==e.options.searchAppearance.global.schema.siteRepresents&&"manual"===e.options.searchAppearance.global.schema.person?a("core-settings-row",{staticClass:"schema-graph-name",attrs:{name:e.strings.name},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-input",{attrs:{size:"medium"},model:{value:e.options.searchAppearance.global.schema.personName,callback:function(t){e.$set(e.options.searchAppearance.global.schema,"personName",t)},expression:"options.searchAppearance.global.schema.personName"}})]},proxy:!0}],null,!1,3790833419)}):e._e(),"organization"===e.options.searchAppearance.global.schema.siteRepresents?a("core-settings-row",{staticClass:"schema-graph-phone",attrs:{id:"schema-graph-phone",name:e.strings.phone},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-phone",{model:{value:e.options.searchAppearance.global.schema.phone,callback:function(t){e.$set(e.options.searchAppearance.global.schema,"phone",t)},expression:"options.searchAppearance.global.schema.phone"}})]},proxy:!0}],null,!1,2261799709)}):e._e(),"organization"===e.options.searchAppearance.global.schema.siteRepresents?a("core-settings-row",{staticClass:"schema-graph-contact-type",attrs:{name:e.strings.contactType},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-select",{attrs:{size:"small",options:e.$constants.CONTACT_TYPES,placeholder:e.strings.chooseContactType,value:e.getContactTypeOptions(e.options.searchAppearance.global.schema.contactType)},on:{input:function(t){return e.options.searchAppearance.global.schema.contactType=t.value}}}),a("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.contactTypeDescription)+" ")])]},proxy:!0}],null,!1,2725774414)}):e._e(),"organization"===e.options.searchAppearance.global.schema.siteRepresents&&"manual"===e.options.searchAppearance.global.schema.contactType?a("core-settings-row",{staticClass:"schema-graph-contact-type-manual",attrs:{name:e.strings.contactType},scopedSlots:e._u([{key:"content",fn:function(){return[a("base-input",{attrs:{size:"medium"},model:{value:e.options.searchAppearance.global.schema.contactTypeManual,callback:function(t){e.$set(e.options.searchAppearance.global.schema,"contactTypeManual",t)},expression:"options.searchAppearance.global.schema.contactTypeManual"}})]},proxy:!0}],null,!1,3975038011)}):e._e(),"organization"===e.options.searchAppearance.global.schema.siteRepresents?a("core-settings-row",{staticClass:"schema-graph-image",attrs:{name:e.strings.logo},scopedSlots:e._u([{key:"content",fn:function(){return[a("div",{staticClass:"image-upload"},[a("base-input",{attrs:{size:"medium",placeholder:e.strings.pasteYourImageUrl},model:{value:e.options.searchAppearance.global.schema.organizationLogo,callback:function(t){e.$set(e.options.searchAppearance.global.schema,"organizationLogo",t)},expression:"options.searchAppearance.global.schema.organizationLogo"}}),a("base-button",{staticClass:"insert-image",attrs:{size:"medium",type:"black"},on:{click:function(t){return e.openUploadModal("logo",["options","searchAppearance","global","schema","organizationLogo"])}}},[a("svg-circle-plus"),e._v(" "+e._s(e.strings.uploadOrSelectImage)+" ")],1),a("base-button",{staticClass:"remove-image",attrs:{size:"medium",type:"gray"},on:{click:function(t){e.options.searchAppearance.global.schema.organizationLogo=null}}},[e._v(" "+e._s(e.strings.remove)+" ")])],1),a("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.minimumSize)+" ")]),e.canShowImage(e.options.searchAppearance.global.schema.organizationLogo)?a("img",{attrs:{src:e.options.searchAppearance.global.schema.organizationLogo}}):e._e()]},proxy:!0}],null,!1,875742457)}):e._e(),"organization"!==e.options.searchAppearance.global.schema.siteRepresents&&"manual"===e.options.searchAppearance.global.schema.person?a("core-settings-row",{staticClass:"schema-graph-image",attrs:{name:e.strings.logo},scopedSlots:e._u([{key:"content",fn:function(){return[a("div",{staticClass:"image-upload"},[a("base-input",{attrs:{size:"medium",placeholder:e.strings.pasteYourImageUrl},model:{value:e.options.searchAppearance.global.schema.personLogo,callback:function(t){e.$set(e.options.searchAppearance.global.schema,"personLogo",t)},expression:"options.searchAppearance.global.schema.personLogo"}}),a("base-button",{staticClass:"insert-image",attrs:{size:"medium",type:"black"},on:{click:function(t){return e.openUploadModal("logo",["options","searchAppearance","global","schema","personLogo"])}}},[a("svg-circle-plus"),e._v(" "+e._s(e.strings.uploadOrSelectImage)+" ")],1),a("base-button",{staticClass:"remove-image",attrs:{size:"medium",type:"gray"},on:{click:function(t){e.options.searchAppearance.global.schema.personLogo=null}}},[e._v(" "+e._s(e.strings.remove)+" ")])],1),a("div",{staticClass:"aioseo-description"},[e._v(" "+e._s(e.strings.minimumSize)+" ")]),e.canShowImage(e.options.searchAppearance.global.schema.personLogo)?a("img",{attrs:{src:e.options.searchAppearance.global.schema.personLogo}}):e._e()]},proxy:!0}],null,!1,3935028215)}):e._e(),a("div",{staticClass:"aioseo-settings-row local-seo"},[a("svg-local-seo"),a("div",{staticClass:"local-seo-text"},[a("div",{domProps:{innerHTML:e._s(e.strings.goToLocalSeo)}}),a("base-button",{attrs:{size:"medium",type:"blue",tag:"a",href:e.$aioseo.urls.aio.localSeo}},[e._v(" "+e._s(e.strings.goToLocalSeoSettings)+" ")])],1)],1)],1)],1)},n=[],o=(a("99af"),a("7db0"),a("d81d"),a("d3b7"),a("25f0"),a("5530")),i=a("9c0e"),r=a("2f62"),c={mixins:[i["a"],i["d"],i["f"],i["o"]],data:function(){return{titleCount:0,descriptionCount:0,strings:{titleSeparator:this.$t.__("Title Separator",this.$td),separatorCharacter:this.$t.__("Separator Character",this.$td),homePageDisabledDescription:this.$t.sprintf(this.$t.__("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.",this.$td),'<a href="'.concat(this.$aioseo.urls.staticHomePage,'">'),"</a>"),homePage:this.$t.__("Home Page",this.$td),siteTitle:this.$t.__("Site Title",this.$td),clickToAddSiteTitle:this.$t.__("Click on the tags below to insert variables into your site title.",this.$td),metaDescription:this.$t.__("Meta Description",this.$td),clickToAddSiteDescription:this.$t.__("Click on the tags below to insert variables into your meta description.",this.$td),knowledgeGraph:this.$t.__("Knowledge Graph",this.$td),knowledgeGraphDescription:this.$t.__("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.",this.$td),personOrOrganization:this.$t.__("Person or Organization",this.$td),person:this.$t.__("Person",this.$td),organization:this.$t.__("Organization",this.$td),personOrOrganizationDescription:this.$t.__("Choose whether the site represents a person or an organization.",this.$td),choosePerson:this.$t.__("Choose a Person",this.$td),name:this.$t.__("Name",this.$td),phone:this.$t.__("Phone Number",this.$td),chooseContactType:this.$t.__("Choose a Contact Type",this.$td),contactType:this.$t.__("Contact Type",this.$td),contactTypeDescription:this.$t.__("Select which team or department the phone number belongs to.",this.$td),logo:this.$t.__("Logo",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: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or WEBP format.",this.$td),remove:this.$t.__("Remove",this.$td),goToLocalSeo:this.$t.sprintf(this.$t.__("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).",this.$td),"<strong>","</strong>","Pro","Pro"),goToLocalSeoSettings:this.$t.__("Go to Local SEO Settings",this.$td),enableSchemaMarkup:this.$t.__("Enable Schema Markup",this.$td),keywords:this.$t.__("Keywords",this.$td),tagPlaceholder:this.$t.__("Press enter to create a keyword",this.$td)}}},computed:Object(o["a"])(Object(o["a"])({},Object(r["e"])(["options","internalOptions"])),{},{users:function(){return[{label:this.$t.__("Manually Enter Person",this.$td),value:"manual"}].concat(this.$aioseo.users.map((function(e){return{label:"".concat(e.displayName," (").concat(e.email,")"),gravatar:e.gravatar,value:e.id}})))}}),methods:{getPersonOptions:function(e){return this.users.find((function(t){return e&&t.value.toString()===e.toString()}))},getContactTypeOptions:function(e){return this.$constants.CONTACT_TYPES.find((function(t){return t.value===e}))}}},l=c,p=(a("4540"),a("2877")),d=Object(p["a"])(l,s,n,!1,null,null,null);t["default"]=d.exports},f7fe:function(e,t,a){"use strict";var s=a("8b8c"),n=a.n(s);n.a}}]);
dist/Lite/assets/js/search-appearance-Media-vue.js CHANGED
@@ -1 +1 @@
1
- (window["aioseopjsonp"]=window["aioseopjsonp"]||[]).push([["search-appearance-Media-vue","search-appearance-lite-ImageSeo-vue","search-appearance-partials-Advanced-vue","search-appearance-partials-Schema-vue","search-appearance-partials-TitleDescription-vue","search-appearance-partials-lite-CustomFields-vue","search-appearance-partials-lite-Schema-vue","search-appearance-pro-ImageSeoActivate-vue"],{"0844":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-advanced"},[s("core-settings-row",{attrs:{name:t.strings.robotsSetting},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-robots-meta",{attrs:{options:t.options.advanced.robotsMeta,mainOptions:t.options}})]},proxy:!0}])}),t.showBulk?s("core-settings-row",{attrs:{name:t.strings.bulkEditing,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:t.object.name+"BulkEditing",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:"disabled"},{label:t.$constants.GLOBAL_STRINGS.enabled,value:"enabled"},{label:t.strings.readOnly,value:"read-only"}]},model:{value:t.options.advanced.bulkEditing,callback:function(e){t.$set(t.options.advanced,"bulkEditing",e)},expression:"options.advanced.bulkEditing"}})]},proxy:!0}],null,!1,3216224115)}):t._e(),t.noMetaBox||t.isUnlicensed&&"taxonomies"===t.type?t._e():s("core-settings-row",{attrs:{name:t.strings.otherOptions},scopedSlots:t._u([{key:"content",fn:function(){return[s("div",{staticClass:"other-options"},[s("base-toggle",{model:{value:t.options.advanced.showMetaBox,callback:function(e){t.$set(t.options.advanced,"showMetaBox",e)},expression:"options.advanced.showMetaBox"}},[t._v(" "+t._s(t.showMetaBox)+" ")])],1)]},proxy:!0}],null,!1,430458522)}),t.mainOptions.searchAppearance.advanced.useKeywords&&t.includeKeywords?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.options.advanced.keywords)||[],value:t.getJsonValue(t.options.advanced.keywords)||[],"tag-placeholder":t.strings.tagPlaceholder},on:{input:function(e){return t.options.advanced.keywords=t.setJsonValue(e)}}})]},proxy:!0}],null,!1,4182382651)}):t._e()],1)},n=[],a=s("5530"),o=s("2f62"),r=s("9c0e"),c={mixins:[r["d"],r["f"]],props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean,noMetaBox:Boolean,includeKeywords:Boolean},data:function(){return{titleCount:0,descriptionCount:0,strings:{robotsSetting:this.$t.__("Robots Meta Settings",this.$td),bulkEditing:this.$t.__("Bulk Editing",this.$td),readOnly:this.$t.__("Read Only",this.$td),otherOptions:this.$t.__("Other Options",this.$td),showDateInGooglePreview:this.$t.__("Show Date in Google Preview",this.$td),keywords:this.$t.__("Keywords",this.$td)}}},computed:Object(a["a"])(Object(a["a"])(Object(a["a"])({},Object(o["e"])({mainOptions:"options"})),Object(o["c"])(["isUnlicensed"])),{},{title:function(){return this.$t.sprintf(this.$t.__("%1$s Title",this.$td),this.object.singular)},showPostThumbnailInSearch:function(){return this.$t.sprintf(this.$t.__("Show %1$s Thumbnail in Google Custom Search",this.$td),this.object.singular)},showMetaBox:function(){return this.$t.sprintf(this.$t.__("Show %1$s Meta Box",this.$td),"AIOSEO")}})},l=c,u=(s("3d63"),s("2877")),d=Object(u["a"])(l,i,n,!1,null,null,null);e["default"]=d.exports},"0ee8":function(t,e,s){},"164d":function(t,e,s){},"2b0d":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-search-appearance-content-types"},[s("core-card",{attrs:{slug:t.postType.name+"SA"},scopedSlots:t._u([{key:"header",fn:function(){return[s("div",{staticClass:"icon dashicons",class:""+(t.postType.icon||"dashicons-admin-post")}),s("div",{domProps:{innerHTML:t._s(t.postType.label)}})]},proxy:!0},{key:"before-tabs",fn:function(){return[s("core-settings-row",{attrs:{name:t.strings.redirectAttachmentUrls,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:"redirectAttachmentUrls",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:"disabled",activeClass:"dark"},{label:t.strings.attachment,value:"attachment"},{label:t.strings.attachmentParent,value:"attachment_parent"}]},model:{value:t.options.searchAppearance.dynamic.postTypes.attachment.redirectAttachmentUrls,callback:function(e){t.$set(t.options.searchAppearance.dynamic.postTypes.attachment,"redirectAttachmentUrls",e)},expression:"options.searchAppearance.dynamic.postTypes.attachment.redirectAttachmentUrls"}}),s("div",{staticClass:"aioseo-description"},[t._v(" "+t._s(t.strings.attachmentUrlsDescription)+" ")])]},proxy:!0}])})]},proxy:!0},"disabled"===t.options.searchAppearance.dynamic.postTypes.attachment.redirectAttachmentUrls?{key:"tabs",fn:function(){return[s("core-main-tabs",{attrs:{tabs:t.tabs,showSaveButton:!1,active:t.settings.internalTabs[t.postType.name+"SA"],internal:""},on:{changed:function(e){return t.processChangeTab(t.postType.name,e)}}})]},proxy:!0}:null],null,!0)},["disabled"===t.options.searchAppearance.dynamic.postTypes.attachment.redirectAttachmentUrls?s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(t.settings.internalTabs[t.postType.name+"SA"],{tag:"component",attrs:{object:t.postType,separator:t.options.searchAppearance.global.separator,options:t.options.searchAppearance.dynamic.postTypes[t.postType.name],type:"postTypes"}})],1):t._e()],1),s("core-card",{attrs:{slug:"imageSeo","header-text":t.strings.imageSeo}},[t.isUnlicensed||!t.imageSeoIsActive||t.imageSeoUpgrade?t._e():s("image-seo"),t.isUnlicensed||t.imageSeoIsActive||!t.imageSeoCanActivate||t.imageSeoUpgrade?t._e():s("image-seo-activate"),t.isUnlicensed||t.imageSeoUpgrade?s("image-seo-lite"):t._e()],1)],1)},n=[],a=(s("4de4"),s("7db0"),s("b0c0"),s("5530")),o=s("2f62"),r=s("0844"),c=s("9e7b"),l=s("5be7"),u=s("587e"),d=s("ab06"),p=s("398d"),g={components:{Advanced:r["default"],CustomFields:c["default"],Schema:l["default"],TitleDescription:u["default"],ImageSeo:d["default"],ImageSeoActivate:p["default"],ImageSeoLite:d["default"]},data:function(){return{internalDebounce:!1,strings:{redirectAttachmentUrls:this.$t.__("Redirect Attachment URLs",this.$td),attachment:this.$t.__("Attachment",this.$td),attachmentParent:this.$t.__("Attachment Parent",this.$td),attachmentUrlsDescription:this.$t.__("We recommended redirecting attachment URL's back to the attachment since the default WordPress attachment pages have little SEO value.",this.$td),imageSeo:this.$t.__("Image SEO",this.$td)},tabs:[{slug:"title-description",name:this.$t.__("Title & Description",this.$td),access:"aioseo_manage_seo",pro:!1},{slug:"Schema",name:this.$t.__("Schema Markup",this.$td),access:"aioseo_manage_seo",pro:!0},{slug:"advanced",name:this.$t.__("Advanced",this.$td),access:"aioseo_manage_seo",pro:!1}]}},computed:Object(a["a"])(Object(a["a"])(Object(a["a"])({},Object(o["c"])(["isUnlicensed"])),Object(o["e"])(["options","settings","addons"])),{},{postType:function(){return this.$aioseo.postData.postTypes.filter((function(t){return"attachment"===t.name}))[0]},imageSeoIsActive:function(){var t=this.addons.find((function(t){return"aioseo-image-seo"===t.sku}));return t&&t.isActive},imageSeoUpgrade:function(){var t=this.addons.find((function(t){return"aioseo-image-seo"===t.sku}));return!t||t.requiresUpgrade},imageSeoCanActivate:function(){var t=this.addons.find((function(t){return"aioseo-image-seo"===t.sku}));return t&&!t.isActive}}),methods:Object(a["a"])(Object(a["a"])({},Object(o["b"])(["changeTab"])),{},{processChangeTab:function(t,e){var s=this;this.internalDebounce||(this.internalDebounce=!0,this.changeTab({slug:"".concat(t,"SA"),value:e}),setTimeout((function(){s.internalDebounce=!1}),50))}})},h=g,m=(s("6d2e"),s("2877")),_=Object(m["a"])(h,i,n,!1,null,null,null);e["default"]=_.exports},"398d":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-image-seo"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.titleAttributeFormat},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","default-tags":["image_title","separator_sa","site_title","alt_tag"]},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddVariablesTitleTag)+" ")]},proxy:!0}])})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.stripPunctuationTitleAttribute,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{value:!1,name:"stripTitlePunctuation",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.enabled,value:!0}]}})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.altTagAttributeFormat},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","default-tags":["image_title","separator_sa","site_title","alt_tag"]},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddVariablesAltTag)+" ")]},proxy:!0}])})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.stripPunctuationForAltAttribute,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{value:!1,name:"stripAltPunctuation",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.enabled,value:!0}]}})]},proxy:!0}])})],1),s("cta",{attrs:{"cta-link":t.$aioseo.urls.aio.featureManager+"&aioseo-activate=aioseo-image-seo","same-tab":"","cta-button-action":"","cta-button-loading":t.activationLoading,"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getDocUrl("imageSeo"),"feature-list":[t.strings.setTitleAttributes,t.strings.setAltTagAttributes,t.strings.stripPunctuationTitles,t.strings.stripPunctuationAltTags]},on:{"cta-button-click":t.activateAddon},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.imageSeoHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t.failed?s("core-alert",{attrs:{type:"red"}},[t._v(" "+t._s(t.strings.activateError)+" ")]):t._e(),t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0},{key:"learn-more-text",fn:function(){return[t._v(" "+t._s(t.strings.learnMoreText)+" ")]},proxy:!0}])})],1)},n=[],a=(s("7db0"),s("5530")),o=s("2f62"),r={data:function(){return{failed:!1,activationLoading:!1,strings:{imageSeoHeader:this.$t.__("Enable Advanced SEO for Images on your Site",this.$tdPro),titleAttributeFormat:this.$t.__("Title Attribute Format",this.$tdPro),stripPunctuationTitleAttribute:this.$t.__("Strip Punctuation for Title Attributes",this.$tdPro),clickToAddVariablesTitleTag:this.$t.__("Click on the tags below to insert variables into your title attribute.",this.$tdPro),altTagAttributeFormat:this.$t.__("Alt Tag Attribute Format",this.$tdPro),clickToAddVariablesAltTag:this.$t.__("Click on the tags below to insert variables into your alt tag attribute.",this.$tdPro),stripPunctuationForAltAttribute:this.$t.__("Strip Punctuation for Alt Attributes",this.$tdPro),ctaDescription:this.$t.__("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.",this.$tdPro),ctaButtonText:this.$t.__("Activate Image SEO",this.$tdPro),learnMoreText:this.$t.__("Learn more about Image SEO",this.$tdPro),setTitleAttributes:this.$t.__("Set title attributes",this.$td),setAltTagAttributes:this.$t.__("Set alt tag attributes",this.$td),stripPunctuationTitles:this.$t.__("Strip punctuation for titles",this.$td),stripPunctuationAltTags:this.$t.__("Strip punctuation for alt tags",this.$td),activateError:this.$t.__("An error occurred while activating the addon. Please upload it manually or contact support for more information.",this.$td)}}},computed:Object(a["a"])({},Object(o["e"])(["addons","tags"])),methods:Object(a["a"])(Object(a["a"])(Object(a["a"])({},Object(o["b"])(["installPlugins","getTags"])),Object(o["d"])(["updateAddon"])),{},{activateAddon:function(){var t=this;this.failed=!1,this.activationLoading=!0;var e=this.addons.find((function(t){return"aioseo-image-seo"===t.sku}));this.installPlugins([{plugin:e.basename}]).then((function(s){if(s.body.failed.length)return t.activationLoading=!1,void(t.failed=!0);t.getTags().then((function(){t.activationLoading=!1,e.isActive=!0,t.updateAddon(e)}))})).catch((function(){t.activationLoading=!1}))}})},c=r,l=s("2877"),u=Object(l["a"])(c,i,n,!1,null,null,null);e["default"]=u.exports},"3d63":function(t,e,s){"use strict";var i=s("7a06"),n=s.n(i);n.a},"4edb":function(t,e,s){"use strict";var i=s("164d"),n=s.n(i);n.a},"587e":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-title-description"},[s("core-settings-row",{attrs:{name:t.strings.showInSearchResults,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("base-radio-toggle",{attrs:{name:t.object.name+"ShowInSearch",options:[{label:t.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.yes,value:!0}]},model:{value:t.options.show,callback:function(e){t.$set(t.options,"show",e)},expression:"options.show"}}):t._e(),t.edit?t._e():s("base-radio-toggle",{attrs:{value:!0,name:t.object.name+"ShowInSearch",options:[{label:t.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.yes,value:!0}]}}),s("div",{staticClass:"aioseo-description"},[t._v(" "+t._s(t.strings.noIndexDescription)+" ")])]},proxy:!0}])}),t.edit&&t.options.show?s("core-settings-row",{attrs:{name:t.$constants.GLOBAL_STRINGS.preview},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-google-search-preview",{attrs:{title:t.options.title,separator:t.separator,description:t.options.metaDescription}})]},proxy:!0}],null,!1,3395425131)}):t._e(),t.options.show?s("core-settings-row",{attrs:{name:t.title},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":t.object.name+"Title","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"title")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddTitle)+" ")]},proxy:!0}],null,!1,3106947238),model:{value:t.options.title,callback:function(e){t.$set(t.options,"title",e)},expression:"options.title"}}):t._e(),t.edit?t._e():s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":t.object.name+"Title","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"title")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddTitle)+" ")]},proxy:!0}],null,!1,3106947238)})]},proxy:!0}],null,!1,198146199)}):t._e(),t.options.show?s("core-settings-row",{attrs:{name:t.strings.metaDescription},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("core-html-tags-editor",{attrs:{"line-numbers":!1,description:"","tags-context":t.object.name+"Description","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"description")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddDescription)+" ")]},proxy:!0}],null,!1,1726597184),model:{value:t.options.metaDescription,callback:function(e){t.$set(t.options,"metaDescription",e)},expression:"options.metaDescription"}}):t._e(),t.edit?t._e():s("core-html-tags-editor",{attrs:{"line-numbers":!1,"tags-context":t.object.name+"Description","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"description")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddDescription)+" ")]},proxy:!0}],null,!1,1726597184)})]},proxy:!0}],null,!1,2372372956)}):t._e()],1)},n=[],a=s("9c0e"),o={mixins:[a["f"]],props:{type:{type:String,required:!0},object:{type:Object,required:!0},separator:{type:String,required:!0},options:{type:Object,required:!0},edit:{type:Boolean,default:function(){return!0}}},data:function(){return{titleCount:0,descriptionCount:0,strings:{showInSearchResults:this.$t.__("Show in Search Results",this.$td),clickToAddTitle:this.$t.__("Click on the tags below to insert variables into your title.",this.$td),metaDescription:this.$t.__("Meta Description",this.$td),clickToAddDescription:this.$t.__("Click on the tags below to insert variables into your meta description.",this.$td),noIndexDescription:this.$t.__('Selecting "No" will no-index this page.',this.$td)}}},watch:{show:function(t){this.options.advanced.robotsMeta.noindex=!t,t||(this.options.advanced.robotsMeta.default=!1)}},computed:{title:function(){return this.$t.sprintf(this.$t.__("%1$s Title",this.$td),this.object.singular)},show:function(){return this.options.show}},methods:{}},r=o,c=s("2877"),l=Object(c["a"])(r,i,n,!1,null,null,null);e["default"]=l.exports},"5be7":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-schema-view"},[t.isUnlicensed?t._e():s("schema",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}),t.isUnlicensed?s("schema-lite",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}):t._e()],1)},n=[],a=s("5530"),o=s("2f62"),r=s("9d33"),c={components:{Schema:r["default"],SchemaLite:r["default"]},props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean},computed:Object(a["a"])({},Object(o["c"])(["isUnlicensed"]))},l=c,u=s("2877"),d=Object(u["a"])(l,i,n,!1,null,null,null);e["default"]=d.exports},"6d2e":function(t,e,s){"use strict";var i=s("be6d"),n=s.n(i);n.a},"7a06":function(t,e,s){},"7c50":function(t,e,s){"use strict";var i=s("0ee8"),n=s.n(i);n.a},"9d33":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-schema-lite"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.schemaType,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{staticClass:"schema-type",attrs:{size:"medium",options:t.schemaTypes,value:t.getSchemaTypeOption("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:{name:t.object.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}])})],1),s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("schema-markup","schema-markup-upsell",t.object.name+"-post-type"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("schema-markup",t.object.name,"home")},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}])})],1)},n=[],a=(s("7db0"),{props:{type:{type:String,required:!0},object:{type:Object,required:!0}},data:function(){return{schemaTypes:[{value:"none",label:this.$t.__("None",this.$td)},{value:"Article",label:this.$t.__("Article",this.$td)}],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),ctaDescription:this.$t.sprintf(this.$t.__("%1$s %2$s gives you advanced customizations for the structured data markup on Posts, Pages, Categories, Tags, etc.",this.$td),"AIOSEO","Pro"),ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Schema Markup",this.$td),ctaHeader:this.$t.sprintf(this.$t.__("Schema Markup is only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")}}},methods:{getSchemaTypeOption:function(t){return this.schemaTypes.find((function(e){return e.value===t}))}}}),o=a,r=(s("4edb"),s("2877")),c=Object(r["a"])(o,i,n,!1,null,null,null);e["default"]=c.exports},"9e7b":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-custom-fields"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.customFields,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-textarea",{attrs:{"min-height":200}}),s("div",{staticClass:"aioseo-description"},[t._v(" "+t._s(t.strings.customFieldsDescription)+" ")])]},proxy:!0}])})],1),s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("custom-fields","custom-fields-upsell",t.object.name+"-post-type"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("custom-fields",t.object.name,"home")},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}])})],1)},n=[],a=(s("7db0"),s("5530")),o=s("2f62"),r={props:{type:{type:String,required:!0},object:{type:Object,required:!0}},data:function(){return{strings:{customFields:this.$t.__("Custom Fields",this.$td),customFieldsDescription:this.$t.__("List of custom field names to include in the SEO Page Analysis. Add one per line.",this.$td),ctaDescription:this.$t.sprintf(this.$t.__("%1$s %2$s gives you advanced customizations for our page analysis feature, letting you add custom fields to analyze.",this.$td),"AIOSEO","Pro"),ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Custom Fields",this.$td),ctaHeader:this.$t.sprintf(this.$t.__("Custom Fields are only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")}}},computed:Object(a["a"])({},Object(o["e"])(["options"])),methods:{getSchemaTypeOption:function(t){return this.schemaTypes.find((function(e){return e.value===t}))}}},c=r,l=(s("7c50"),s("2877")),u=Object(l["a"])(c,i,n,!1,null,null,null);e["default"]=u.exports},ab06:function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-image-seo"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.titleAttributeFormat},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","default-tags":["image_title","separator_sa","site_title","alt_tag"]},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddVariablesTitleTag)+" ")]},proxy:!0}])})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.stripPunctuationTitleAttribute,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{value:!1,name:"stripTitlePunctuation",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.enabled,value:!0}]}})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.altTagAttributeFormat},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","default-tags":["image_title","separator_sa","site_title","alt_tag"]},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddVariablesAltTag)+" ")]},proxy:!0}])})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.stripPunctuationForAltAttribute,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{value:!1,name:"stripAltPunctuation",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.enabled,value:!0}]}})]},proxy:!0}])})],1),s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("image-seo","image-seo-upsell"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("image-seo",null,"home"),"feature-list":[t.strings.setTitleAttributes,t.strings.setAltTagAttributes,t.strings.stripPunctuationTitles,t.strings.stripPunctuationAltTags]},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t.imageSeoUpgrade&&t.imageSeoPlans?s("core-alert",{attrs:{type:"red"}},[t._v(" "+t._s(t.strings.thisFeatureRequires)+" "),s("strong",[t._v(t._s(t.imageSeoPlans))])]):t._e(),t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}])})],1)},n=[],a=(s("7db0"),s("a15b"),s("d81d"),s("5530")),o=s("8103"),r=s.n(o),c=s("2f62"),l={data:function(){return{strings:{titleAttributeFormat:this.$t.__("Title Attribute Format",this.$td),stripPunctuationTitleAttribute:this.$t.__("Strip Punctuation for Title Attributes",this.$td),clickToAddVariablesTitleTag:this.$t.__("Click on the tags below to insert variables into your title attribute.",this.$td),altTagAttributeFormat:this.$t.__("Alt Tag Attribute Format",this.$td),clickToAddVariablesAltTag:this.$t.__("Click on the tags below to insert variables into your alt tag attribute.",this.$td),stripPunctuationForAltAttribute:this.$t.__("Strip Punctuation for Alt Attributes",this.$td),thisFeatureRequires:this.$t.__("This feature requires one of the following plans:",this.$td),ctaDescription:this.$t.__("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.",this.$tdPro),ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Image SEO",this.$td),ctaHeader:this.$t.sprintf(this.$t.__("Image SEO is only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro"),setTitleAttributes:this.$t.__("Set title attributes",this.$td),setAltTagAttributes:this.$t.__("Set alt tag attributes",this.$td),stripPunctuationTitles:this.$t.__("Strip punctuation for titles",this.$td),stripPunctuationAltTags:this.$t.__("Strip punctuation for alt tags",this.$td)}}},computed:Object(a["a"])(Object(a["a"])({},Object(c["e"])(["addons"])),{},{imageSeoUpgrade:function(){var t=this.addons.find((function(t){return"aioseo-image-seo"===t.sku}));return!t||t.requiresUpgrade},imageSeoPlans:function(){var t=this.addons.find((function(t){return"aioseo-image-seo"===t.sku}));return t?t.currentLevels.map((function(t){return r()(t)})).join(", "):null}})},u=l,d=s("2877"),p=Object(d["a"])(u,i,n,!1,null,null,null);e["default"]=p.exports},be6d:function(t,e,s){}}]);
1
+ (window["aioseopjsonp"]=window["aioseopjsonp"]||[]).push([["search-appearance-Media-vue","search-appearance-lite-ImageSeo-vue","search-appearance-partials-Advanced-vue","search-appearance-partials-Schema-vue","search-appearance-partials-TitleDescription-vue","search-appearance-partials-lite-CustomFields-vue","search-appearance-partials-lite-Schema-vue","search-appearance-pro-ImageSeoActivate-vue"],{"0844":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-advanced"},[s("core-settings-row",{attrs:{name:t.strings.robotsSetting},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-robots-meta",{attrs:{options:t.options.advanced.robotsMeta,mainOptions:t.options}})]},proxy:!0}])}),t.showBulk?s("core-settings-row",{attrs:{name:t.strings.bulkEditing,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:t.object.name+"BulkEditing",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:"disabled"},{label:t.$constants.GLOBAL_STRINGS.enabled,value:"enabled"},{label:t.strings.readOnly,value:"read-only"}]},model:{value:t.options.advanced.bulkEditing,callback:function(e){t.$set(t.options.advanced,"bulkEditing",e)},expression:"options.advanced.bulkEditing"}})]},proxy:!0}],null,!1,3216224115)}):t._e(),t.noMetaBox||t.isUnlicensed&&"taxonomies"===t.type?t._e():s("core-settings-row",{attrs:{name:t.strings.otherOptions},scopedSlots:t._u([{key:"content",fn:function(){return[s("div",{staticClass:"other-options"},[s("base-toggle",{model:{value:t.options.advanced.showMetaBox,callback:function(e){t.$set(t.options.advanced,"showMetaBox",e)},expression:"options.advanced.showMetaBox"}},[t._v(" "+t._s(t.showMetaBox)+" ")])],1)]},proxy:!0}],null,!1,430458522)}),t.mainOptions.searchAppearance.advanced.useKeywords&&t.includeKeywords?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.options.advanced.keywords)||[],value:t.getJsonValue(t.options.advanced.keywords)||[],"tag-placeholder":t.strings.tagPlaceholder},on:{input:function(e){return t.options.advanced.keywords=t.setJsonValue(e)}}})]},proxy:!0}],null,!1,4182382651)}):t._e()],1)},n=[],a=s("5530"),o=s("2f62"),r=s("9c0e"),c={mixins:[r["d"],r["f"]],props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean,noMetaBox:Boolean,includeKeywords:Boolean},data:function(){return{titleCount:0,descriptionCount:0,strings:{robotsSetting:this.$t.__("Robots Meta Settings",this.$td),bulkEditing:this.$t.__("Bulk Editing",this.$td),readOnly:this.$t.__("Read Only",this.$td),otherOptions:this.$t.__("Other Options",this.$td),showDateInGooglePreview:this.$t.__("Show Date in Google Preview",this.$td),keywords:this.$t.__("Keywords",this.$td)}}},computed:Object(a["a"])(Object(a["a"])(Object(a["a"])({},Object(o["e"])({mainOptions:"options"})),Object(o["c"])(["isUnlicensed"])),{},{title:function(){return this.$t.sprintf(this.$t.__("%1$s Title",this.$td),this.object.singular)},showPostThumbnailInSearch:function(){return this.$t.sprintf(this.$t.__("Show %1$s Thumbnail in Google Custom Search",this.$td),this.object.singular)},showMetaBox:function(){return this.$t.sprintf(this.$t.__("Show %1$s Meta Box",this.$td),"AIOSEO")}})},l=c,u=(s("3d63"),s("2877")),d=Object(u["a"])(l,i,n,!1,null,null,null);e["default"]=d.exports},"0ee8":function(t,e,s){},"164d":function(t,e,s){},"2b0d":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-search-appearance-content-types"},[s("core-card",{attrs:{slug:t.postType.name+"SA"},scopedSlots:t._u([{key:"header",fn:function(){return[s("div",{staticClass:"icon dashicons",class:""+(t.postType.icon||"dashicons-admin-post")}),s("div",{domProps:{innerHTML:t._s(t.postType.label)}})]},proxy:!0},{key:"before-tabs",fn:function(){return[s("core-settings-row",{attrs:{name:t.strings.redirectAttachmentUrls,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:"redirectAttachmentUrls",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:"disabled",activeClass:"dark"},{label:t.strings.attachment,value:"attachment"},{label:t.strings.attachmentParent,value:"attachment_parent"}]},model:{value:t.options.searchAppearance.dynamic.postTypes.attachment.redirectAttachmentUrls,callback:function(e){t.$set(t.options.searchAppearance.dynamic.postTypes.attachment,"redirectAttachmentUrls",e)},expression:"options.searchAppearance.dynamic.postTypes.attachment.redirectAttachmentUrls"}}),s("div",{staticClass:"aioseo-description"},[t._v(" "+t._s(t.strings.attachmentUrlsDescription)+" ")])]},proxy:!0}])})]},proxy:!0},"disabled"===t.options.searchAppearance.dynamic.postTypes.attachment.redirectAttachmentUrls?{key:"tabs",fn:function(){return[s("core-main-tabs",{attrs:{tabs:t.tabs,showSaveButton:!1,active:t.settings.internalTabs[t.postType.name+"SA"],internal:""},on:{changed:function(e){return t.processChangeTab(t.postType.name,e)}}})]},proxy:!0}:null],null,!0)},["disabled"===t.options.searchAppearance.dynamic.postTypes.attachment.redirectAttachmentUrls?s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(t.settings.internalTabs[t.postType.name+"SA"],{tag:"component",attrs:{object:t.postType,separator:t.options.searchAppearance.global.separator,options:t.options.searchAppearance.dynamic.postTypes[t.postType.name],type:"postTypes"}})],1):t._e()],1),s("core-card",{attrs:{slug:"imageSeo","header-text":t.strings.imageSeo}},[t.isUnlicensed||!t.imageSeoIsActive||t.imageSeoUpgrade?t._e():s("image-seo"),t.isUnlicensed||t.imageSeoIsActive||!t.imageSeoCanActivate||t.imageSeoUpgrade?t._e():s("image-seo-activate"),t.isUnlicensed||t.imageSeoUpgrade?s("image-seo-lite"):t._e()],1)],1)},n=[],a=(s("4de4"),s("7db0"),s("b0c0"),s("5530")),o=s("2f62"),r=s("0844"),c=s("9e7b"),l=s("5be7"),u=s("587e"),d=s("ab06"),p=s("398d"),g={components:{Advanced:r["default"],CustomFields:c["default"],Schema:l["default"],TitleDescription:u["default"],ImageSeo:d["default"],ImageSeoActivate:p["default"],ImageSeoLite:d["default"]},data:function(){return{internalDebounce:!1,strings:{redirectAttachmentUrls:this.$t.__("Redirect Attachment URLs",this.$td),attachment:this.$t.__("Attachment",this.$td),attachmentParent:this.$t.__("Attachment Parent",this.$td),attachmentUrlsDescription:this.$t.__("We recommended redirecting attachment URL's back to the attachment since the default WordPress attachment pages have little SEO value.",this.$td),imageSeo:this.$t.__("Image SEO",this.$td)},tabs:[{slug:"title-description",name:this.$t.__("Title & Description",this.$td),access:"aioseo_manage_seo",pro:!1},{slug:"Schema",name:this.$t.__("Schema Markup",this.$td),access:"aioseo_manage_seo",pro:!0},{slug:"advanced",name:this.$t.__("Advanced",this.$td),access:"aioseo_manage_seo",pro:!1}]}},computed:Object(a["a"])(Object(a["a"])(Object(a["a"])({},Object(o["c"])(["isUnlicensed"])),Object(o["e"])(["options","settings","addons"])),{},{postType:function(){return this.$aioseo.postData.postTypes.filter((function(t){return"attachment"===t.name}))[0]},imageSeoIsActive:function(){var t=this.addons.find((function(t){return"aioseo-image-seo"===t.sku}));return t&&t.isActive},imageSeoUpgrade:function(){var t=this.addons.find((function(t){return"aioseo-image-seo"===t.sku}));return!t||t.requiresUpgrade},imageSeoCanActivate:function(){var t=this.addons.find((function(t){return"aioseo-image-seo"===t.sku}));return t&&!t.isActive}}),methods:Object(a["a"])(Object(a["a"])({},Object(o["b"])(["changeTab"])),{},{processChangeTab:function(t,e){var s=this;this.internalDebounce||(this.internalDebounce=!0,this.changeTab({slug:"".concat(t,"SA"),value:e}),setTimeout((function(){s.internalDebounce=!1}),50))}})},h=g,m=(s("6d2e"),s("2877")),_=Object(m["a"])(h,i,n,!1,null,null,null);e["default"]=_.exports},"398d":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-image-seo"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.titleAttributeFormat},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","default-tags":["image_title","separator_sa","site_title","alt_tag"]},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddVariablesTitleTag)+" ")]},proxy:!0}])})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.stripPunctuationTitleAttribute,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{value:!1,name:"stripTitlePunctuation",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.enabled,value:!0}]}})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.altTagAttributeFormat},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","default-tags":["image_title","separator_sa","site_title","alt_tag"]},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddVariablesAltTag)+" ")]},proxy:!0}])})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.stripPunctuationForAltAttribute,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{value:!1,name:"stripAltPunctuation",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.enabled,value:!0}]}})]},proxy:!0}])})],1),s("cta",{attrs:{"cta-link":t.$aioseo.urls.aio.featureManager+"&aioseo-activate=aioseo-image-seo","same-tab":"","cta-button-action":"","cta-button-loading":t.activationLoading,"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getDocUrl("imageSeo"),"feature-list":[t.strings.setTitleAttributes,t.strings.setAltTagAttributes,t.strings.stripPunctuationTitles,t.strings.stripPunctuationAltTags]},on:{"cta-button-click":t.activateAddon},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.imageSeoHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t.failed?s("core-alert",{attrs:{type:"red"}},[t._v(" "+t._s(t.strings.activateError)+" ")]):t._e(),t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0},{key:"learn-more-text",fn:function(){return[t._v(" "+t._s(t.strings.learnMoreText)+" ")]},proxy:!0}])})],1)},n=[],a=(s("7db0"),s("5530")),o=s("2f62"),r={data:function(){return{failed:!1,activationLoading:!1,strings:{imageSeoHeader:this.$t.__("Enable Advanced SEO for Images on your Site",this.$tdPro),titleAttributeFormat:this.$t.__("Title Attribute Format",this.$tdPro),stripPunctuationTitleAttribute:this.$t.__("Strip Punctuation for Title Attributes",this.$tdPro),clickToAddVariablesTitleTag:this.$t.__("Click on the tags below to insert variables into your title attribute.",this.$tdPro),altTagAttributeFormat:this.$t.__("Alt Tag Attribute Format",this.$tdPro),clickToAddVariablesAltTag:this.$t.__("Click on the tags below to insert variables into your alt tag attribute.",this.$tdPro),stripPunctuationForAltAttribute:this.$t.__("Strip Punctuation for Alt Attributes",this.$tdPro),ctaDescription:this.$t.__("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.",this.$tdPro),ctaButtonText:this.$t.__("Activate Image SEO",this.$tdPro),learnMoreText:this.$t.__("Learn more about Image SEO",this.$tdPro),setTitleAttributes:this.$t.__("Set title attributes",this.$td),setAltTagAttributes:this.$t.__("Set alt tag attributes",this.$td),stripPunctuationTitles:this.$t.__("Strip punctuation for titles",this.$td),stripPunctuationAltTags:this.$t.__("Strip punctuation for alt tags",this.$td),activateError:this.$t.__("An error occurred while activating the addon. Please upload it manually or contact support for more information.",this.$td)}}},computed:Object(a["a"])({},Object(o["e"])(["addons","tags"])),methods:Object(a["a"])(Object(a["a"])(Object(a["a"])({},Object(o["b"])(["installPlugins","getTags"])),Object(o["d"])(["updateAddon"])),{},{activateAddon:function(){var t=this;this.failed=!1,this.activationLoading=!0;var e=this.addons.find((function(t){return"aioseo-image-seo"===t.sku}));this.installPlugins([{plugin:e.basename}]).then((function(s){if(s.body.failed.length)return t.activationLoading=!1,void(t.failed=!0);t.getTags().then((function(){t.activationLoading=!1,e.isActive=!0,t.updateAddon(e)}))})).catch((function(){t.activationLoading=!1}))}})},c=r,l=s("2877"),u=Object(l["a"])(c,i,n,!1,null,null,null);e["default"]=u.exports},"3d63":function(t,e,s){"use strict";var i=s("7a06"),n=s.n(i);n.a},"4edb":function(t,e,s){"use strict";var i=s("164d"),n=s.n(i);n.a},"587e":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-title-description"},[s("core-settings-row",{attrs:{name:t.strings.showInSearchResults,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("base-radio-toggle",{attrs:{name:t.object.name+"ShowInSearch",options:[{label:t.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.yes,value:!0}]},model:{value:t.options.show,callback:function(e){t.$set(t.options,"show",e)},expression:"options.show"}}):t._e(),t.edit?t._e():s("base-radio-toggle",{attrs:{value:!0,name:t.object.name+"ShowInSearch",options:[{label:t.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.yes,value:!0}]}}),s("div",{staticClass:"aioseo-description"},[t._v(" "+t._s(t.strings.noIndexDescription)+" ")])]},proxy:!0}])}),t.edit&&t.options.show?s("core-settings-row",{attrs:{name:t.$constants.GLOBAL_STRINGS.preview},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-google-search-preview",{attrs:{title:t.options.title,separator:t.separator,description:t.options.metaDescription}})]},proxy:!0}],null,!1,3395425131)}):t._e(),t.options.show?s("core-settings-row",{attrs:{name:t.title},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":t.object.name+"Title","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"title")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddTitle)+" ")]},proxy:!0}],null,!1,3106947238),model:{value:t.options.title,callback:function(e){t.$set(t.options,"title",e)},expression:"options.title"}}):t._e(),t.edit?t._e():s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":t.object.name+"Title","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"title")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddTitle)+" ")]},proxy:!0}],null,!1,3106947238)})]},proxy:!0}],null,!1,198146199)}):t._e(),t.options.show?s("core-settings-row",{attrs:{name:t.strings.metaDescription},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("core-html-tags-editor",{attrs:{"line-numbers":!1,description:"","tags-context":t.object.name+"Description","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"description")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddDescription)+" ")]},proxy:!0}],null,!1,1726597184),model:{value:t.options.metaDescription,callback:function(e){t.$set(t.options,"metaDescription",e)},expression:"options.metaDescription"}}):t._e(),t.edit?t._e():s("core-html-tags-editor",{attrs:{"line-numbers":!1,"tags-context":t.object.name+"Description","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"description")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddDescription)+" ")]},proxy:!0}],null,!1,1726597184)})]},proxy:!0}],null,!1,2372372956)}):t._e()],1)},n=[],a=s("9c0e"),o={mixins:[a["f"]],props:{type:{type:String,required:!0},object:{type:Object,required:!0},separator:{type:String,required:!0},options:{type:Object,required:!0},edit:{type:Boolean,default:function(){return!0}}},data:function(){return{titleCount:0,descriptionCount:0,strings:{showInSearchResults:this.$t.__("Show in Search Results",this.$td),clickToAddTitle:this.$t.__("Click on the tags below to insert variables into your title.",this.$td),metaDescription:this.$t.__("Meta Description",this.$td),clickToAddDescription:this.$t.__("Click on the tags below to insert variables into your meta description.",this.$td),noIndexDescription:this.$t.__('Selecting "No" will no-index this page.',this.$td)}}},watch:{show:function(t){this.options.advanced.robotsMeta.noindex=!t,t||(this.options.advanced.robotsMeta.default=!1)}},computed:{title:function(){return this.$t.sprintf(this.$t.__("%1$s Title",this.$td),this.object.singular)},show:function(){return this.options.show}},methods:{}},r=o,c=s("2877"),l=Object(c["a"])(r,i,n,!1,null,null,null);e["default"]=l.exports},"5be7":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-schema-view"},[t.isUnlicensed?t._e():s("schema",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}),t.isUnlicensed?s("schema-lite",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}):t._e()],1)},n=[],a=s("5530"),o=s("2f62"),r=s("9d33"),c={components:{Schema:r["default"],SchemaLite:r["default"]},props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean},computed:Object(a["a"])({},Object(o["c"])(["isUnlicensed"]))},l=c,u=s("2877"),d=Object(u["a"])(l,i,n,!1,null,null,null);e["default"]=d.exports},"6d2e":function(t,e,s){"use strict";var i=s("be6d"),n=s.n(i);n.a},"7a06":function(t,e,s){},"7c50":function(t,e,s){"use strict";var i=s("0ee8"),n=s.n(i);n.a},"9d33":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-schema-lite"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.schemaType,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{staticClass:"schema-type",attrs:{size:"medium",options:t.schemaTypes,value:t.getSchemaTypeOption("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:{name:t.object.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}])})],1),s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("schema-markup","schema-markup-upsell",t.object.name+"-post-type"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("schema-markup",t.object.name,"home")},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}])})],1)},n=[],a=(s("7db0"),{props:{type:{type:String,required:!0},object:{type:Object,required:!0}},data:function(){return{schemaTypes:[{value:"none",label:this.$t.__("None",this.$td)},{value:"Article",label:this.$t.__("Article",this.$td)}],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),ctaDescription:this.$t.sprintf(this.$t.__("%1$s %2$s allows you to customize the structured data markup on Posts, Pages, Categories, Tags, etc.",this.$td),"AIOSEO","Pro"),ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Advanced Schema Markup",this.$td),ctaHeader:this.$t.sprintf(this.$t.__("Advanced Schema Markup is only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")}}},methods:{getSchemaTypeOption:function(t){return this.schemaTypes.find((function(e){return e.value===t}))}}}),o=a,r=(s("4edb"),s("2877")),c=Object(r["a"])(o,i,n,!1,null,null,null);e["default"]=c.exports},"9e7b":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-custom-fields"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.customFields,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-textarea",{attrs:{"min-height":200}}),s("div",{staticClass:"aioseo-description"},[t._v(" "+t._s(t.strings.customFieldsDescription)+" ")])]},proxy:!0}])})],1),s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("custom-fields","custom-fields-upsell",t.object.name+"-post-type"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("custom-fields",t.object.name,"home")},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}])})],1)},n=[],a=(s("7db0"),s("5530")),o=s("2f62"),r={props:{type:{type:String,required:!0},object:{type:Object,required:!0}},data:function(){return{strings:{customFields:this.$t.__("Custom Fields",this.$td),customFieldsDescription:this.$t.__("List of custom field names to include in the SEO Page Analysis. Add one per line.",this.$td),ctaDescription:this.$t.sprintf(this.$t.__("%1$s %2$s gives you advanced customizations for our page analysis feature, letting you add custom fields to analyze.",this.$td),"AIOSEO","Pro"),ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Custom Fields",this.$td),ctaHeader:this.$t.sprintf(this.$t.__("Custom Fields are only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")}}},computed:Object(a["a"])({},Object(o["e"])(["options"])),methods:{getSchemaTypeOption:function(t){return this.schemaTypes.find((function(e){return e.value===t}))}}},c=r,l=(s("7c50"),s("2877")),u=Object(l["a"])(c,i,n,!1,null,null,null);e["default"]=u.exports},ab06:function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-image-seo"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.titleAttributeFormat},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","default-tags":["image_title","separator_sa","site_title","alt_tag"]},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddVariablesTitleTag)+" ")]},proxy:!0}])})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.stripPunctuationTitleAttribute,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{value:!1,name:"stripTitlePunctuation",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.enabled,value:!0}]}})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.altTagAttributeFormat},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","default-tags":["image_title","separator_sa","site_title","alt_tag"]},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddVariablesAltTag)+" ")]},proxy:!0}])})]},proxy:!0}])}),s("core-settings-row",{attrs:{name:t.strings.stripPunctuationForAltAttribute,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{value:!1,name:"stripAltPunctuation",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.enabled,value:!0}]}})]},proxy:!0}])})],1),s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("image-seo","image-seo-upsell"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("image-seo",null,"home"),"feature-list":[t.strings.setTitleAttributes,t.strings.setAltTagAttributes,t.strings.stripPunctuationTitles,t.strings.stripPunctuationAltTags]},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t.imageSeoUpgrade&&t.imageSeoPlans?s("core-alert",{attrs:{type:"red"}},[t._v(" "+t._s(t.strings.thisFeatureRequires)+" "),s("strong",[t._v(t._s(t.imageSeoPlans))])]):t._e(),t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}])})],1)},n=[],a=(s("7db0"),s("a15b"),s("d81d"),s("5530")),o=s("8103"),r=s.n(o),c=s("2f62"),l={data:function(){return{strings:{titleAttributeFormat:this.$t.__("Title Attribute Format",this.$td),stripPunctuationTitleAttribute:this.$t.__("Strip Punctuation for Title Attributes",this.$td),clickToAddVariablesTitleTag:this.$t.__("Click on the tags below to insert variables into your title attribute.",this.$td),altTagAttributeFormat:this.$t.__("Alt Tag Attribute Format",this.$td),clickToAddVariablesAltTag:this.$t.__("Click on the tags below to insert variables into your alt tag attribute.",this.$td),stripPunctuationForAltAttribute:this.$t.__("Strip Punctuation for Alt Attributes",this.$td),thisFeatureRequires:this.$t.__("This feature requires one of the following plans:",this.$td),ctaDescription:this.$t.__("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.",this.$tdPro),ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Image SEO",this.$td),ctaHeader:this.$t.sprintf(this.$t.__("Image SEO is only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro"),setTitleAttributes:this.$t.__("Set title attributes",this.$td),setAltTagAttributes:this.$t.__("Set alt tag attributes",this.$td),stripPunctuationTitles:this.$t.__("Strip punctuation for titles",this.$td),stripPunctuationAltTags:this.$t.__("Strip punctuation for alt tags",this.$td)}}},computed:Object(a["a"])(Object(a["a"])({},Object(c["e"])(["addons"])),{},{imageSeoUpgrade:function(){var t=this.addons.find((function(t){return"aioseo-image-seo"===t.sku}));return!t||t.requiresUpgrade},imageSeoPlans:function(){var t=this.addons.find((function(t){return"aioseo-image-seo"===t.sku}));return t?t.currentLevels.map((function(t){return r()(t)})).join(", "):null}})},u=l,d=s("2877"),p=Object(d["a"])(u,i,n,!1,null,null,null);e["default"]=p.exports},be6d:function(t,e,s){}}]);
dist/Lite/assets/js/search-appearance-Taxonomies-vue.js CHANGED
@@ -1 +1 @@
1
- (window["aioseopjsonp"]=window["aioseopjsonp"]||[]).push([["search-appearance-Taxonomies-vue","search-appearance-partials-Advanced-vue","search-appearance-partials-TitleDescription-vue"],{"0844":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-advanced"},[s("core-settings-row",{attrs:{name:t.strings.robotsSetting},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-robots-meta",{attrs:{options:t.options.advanced.robotsMeta,mainOptions:t.options}})]},proxy:!0}])}),t.showBulk?s("core-settings-row",{attrs:{name:t.strings.bulkEditing,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:t.object.name+"BulkEditing",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:"disabled"},{label:t.$constants.GLOBAL_STRINGS.enabled,value:"enabled"},{label:t.strings.readOnly,value:"read-only"}]},model:{value:t.options.advanced.bulkEditing,callback:function(e){t.$set(t.options.advanced,"bulkEditing",e)},expression:"options.advanced.bulkEditing"}})]},proxy:!0}],null,!1,3216224115)}):t._e(),t.noMetaBox||t.isUnlicensed&&"taxonomies"===t.type?t._e():s("core-settings-row",{attrs:{name:t.strings.otherOptions},scopedSlots:t._u([{key:"content",fn:function(){return[s("div",{staticClass:"other-options"},[s("base-toggle",{model:{value:t.options.advanced.showMetaBox,callback:function(e){t.$set(t.options.advanced,"showMetaBox",e)},expression:"options.advanced.showMetaBox"}},[t._v(" "+t._s(t.showMetaBox)+" ")])],1)]},proxy:!0}],null,!1,430458522)}),t.mainOptions.searchAppearance.advanced.useKeywords&&t.includeKeywords?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.options.advanced.keywords)||[],value:t.getJsonValue(t.options.advanced.keywords)||[],"tag-placeholder":t.strings.tagPlaceholder},on:{input:function(e){return t.options.advanced.keywords=t.setJsonValue(e)}}})]},proxy:!0}],null,!1,4182382651)}):t._e()],1)},o=[],i=s("5530"),a=s("2f62"),r=s("9c0e"),c={mixins:[r["d"],r["f"]],props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean,noMetaBox:Boolean,includeKeywords:Boolean},data:function(){return{titleCount:0,descriptionCount:0,strings:{robotsSetting:this.$t.__("Robots Meta Settings",this.$td),bulkEditing:this.$t.__("Bulk Editing",this.$td),readOnly:this.$t.__("Read Only",this.$td),otherOptions:this.$t.__("Other Options",this.$td),showDateInGooglePreview:this.$t.__("Show Date in Google Preview",this.$td),keywords:this.$t.__("Keywords",this.$td)}}},computed:Object(i["a"])(Object(i["a"])(Object(i["a"])({},Object(a["e"])({mainOptions:"options"})),Object(a["c"])(["isUnlicensed"])),{},{title:function(){return this.$t.sprintf(this.$t.__("%1$s Title",this.$td),this.object.singular)},showPostThumbnailInSearch:function(){return this.$t.sprintf(this.$t.__("Show %1$s Thumbnail in Google Custom Search",this.$td),this.object.singular)},showMetaBox:function(){return this.$t.sprintf(this.$t.__("Show %1$s Meta Box",this.$td),"AIOSEO")}})},l=c,u=(s("3d63"),s("2877")),d=Object(u["a"])(l,n,o,!1,null,null,null);e["default"]=d.exports},"219a":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-search-appearance-taxonomies"},t._l(t.taxonomies,(function(e,n){return s("core-card",{key:n,attrs:{slug:e.name+"SA"},scopedSlots:t._u([{key:"header",fn:function(){return[s("div",{staticClass:"icon dashicons",class:""+(e.icon||"dashicons-admin-post")}),s("div",[t._v(" "+t._s(e.label)+" ")])]},proxy:!0},t.isCustomTaxonomy(e)&&t.isUnlicensed?null:{key:"tabs",fn:function(){return[s("core-main-tabs",{attrs:{tabs:t.tabs,showSaveButton:!1,active:t.settings.internalTabs[e.name+"SA"],internal:""},on:{changed:function(s){return t.processChangeTab(e.name,s)}}})]},proxy:!0}],null,!0)},[t.isCustomTaxonomy(e)&&t.isUnlicensed?s("core-blur",[s("title-description",{attrs:{object:e,separator:t.options.searchAppearance.global.separator,options:{show:!0},type:"taxonomies","show-bulk":!1,edit:!1}})],1):t._e(),t.isCustomTaxonomy(e)&&t.isUnlicensed?s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("custom-taxonomies","custom-taxonomies-upsell"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("custom-taxonomies",null,"home")},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}],null,!0)}):t._e(),t.isCustomTaxonomy(e)&&t.isUnlicensed?t._e():s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(t.settings.internalTabs[e.name+"SA"],{tag:"component",attrs:{object:e,separator:t.options.searchAppearance.global.separator,options:t.options.searchAppearance.dynamic.taxonomies[e.name],type:"taxonomies","show-bulk":!1}})],1)],1)})),1)},o=[],i=(s("b0c0"),s("5530")),a=s("2f62"),r=s("0844"),c=s("587e"),l={components:{Advanced:r["default"],TitleDescription:c["default"]},data:function(){return{internalDebounce:null,strings:{ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Custom Taxonomies",this.$td),ctaDescription:this.$t.sprintf(this.$t.__("%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.",this.$td),"AIOSEO","Pro"),ctaHeader:this.$t.sprintf(this.$t.__("Custom Taxonomy Support is only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")},tabs:[{slug:"title-description",name:this.$t.__("Title & Description",this.$tdPro),access:"aioseo_manage_seo",pro:!1},{slug:"advanced",name:this.$t.__("Advanced",this.$tdPro),access:"aioseo_manage_seo",pro:!1}]}},computed:Object(i["a"])(Object(i["a"])(Object(i["a"])({},Object(a["c"])(["isUnlicensed"])),Object(a["e"])(["options","settings"])),{},{taxonomies:function(){return this.$aioseo.postData.taxonomies}}),methods:Object(i["a"])(Object(i["a"])({},Object(a["b"])(["changeTab"])),{},{isCustomTaxonomy:function(t){return"category"!==t.name&&"post_tag"!==t.name},processChangeTab:function(t,e){var s=this;this.internalDebounce||(this.internalDebounce=!0,this.changeTab({slug:"".concat(t,"SA"),value:e}),setTimeout((function(){s.internalDebounce=!1}),50))}})},u=l,d=(s("c74c"),s("2877")),p=Object(d["a"])(u,n,o,!1,null,null,null);e["default"]=p.exports},"3d63":function(t,e,s){"use strict";var n=s("7a06"),o=s.n(n);o.a},"587e":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-title-description"},[s("core-settings-row",{attrs:{name:t.strings.showInSearchResults,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("base-radio-toggle",{attrs:{name:t.object.name+"ShowInSearch",options:[{label:t.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.yes,value:!0}]},model:{value:t.options.show,callback:function(e){t.$set(t.options,"show",e)},expression:"options.show"}}):t._e(),t.edit?t._e():s("base-radio-toggle",{attrs:{value:!0,name:t.object.name+"ShowInSearch",options:[{label:t.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.yes,value:!0}]}}),s("div",{staticClass:"aioseo-description"},[t._v(" "+t._s(t.strings.noIndexDescription)+" ")])]},proxy:!0}])}),t.edit&&t.options.show?s("core-settings-row",{attrs:{name:t.$constants.GLOBAL_STRINGS.preview},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-google-search-preview",{attrs:{title:t.options.title,separator:t.separator,description:t.options.metaDescription}})]},proxy:!0}],null,!1,3395425131)}):t._e(),t.options.show?s("core-settings-row",{attrs:{name:t.title},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":t.object.name+"Title","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"title")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddTitle)+" ")]},proxy:!0}],null,!1,3106947238),model:{value:t.options.title,callback:function(e){t.$set(t.options,"title",e)},expression:"options.title"}}):t._e(),t.edit?t._e():s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":t.object.name+"Title","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"title")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddTitle)+" ")]},proxy:!0}],null,!1,3106947238)})]},proxy:!0}],null,!1,198146199)}):t._e(),t.options.show?s("core-settings-row",{attrs:{name:t.strings.metaDescription},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("core-html-tags-editor",{attrs:{"line-numbers":!1,description:"","tags-context":t.object.name+"Description","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"description")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddDescription)+" ")]},proxy:!0}],null,!1,1726597184),model:{value:t.options.metaDescription,callback:function(e){t.$set(t.options,"metaDescription",e)},expression:"options.metaDescription"}}):t._e(),t.edit?t._e():s("core-html-tags-editor",{attrs:{"line-numbers":!1,"tags-context":t.object.name+"Description","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"description")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddDescription)+" ")]},proxy:!0}],null,!1,1726597184)})]},proxy:!0}],null,!1,2372372956)}):t._e()],1)},o=[],i=s("9c0e"),a={mixins:[i["f"]],props:{type:{type:String,required:!0},object:{type:Object,required:!0},separator:{type:String,required:!0},options:{type:Object,required:!0},edit:{type:Boolean,default:function(){return!0}}},data:function(){return{titleCount:0,descriptionCount:0,strings:{showInSearchResults:this.$t.__("Show in Search Results",this.$td),clickToAddTitle:this.$t.__("Click on the tags below to insert variables into your title.",this.$td),metaDescription:this.$t.__("Meta Description",this.$td),clickToAddDescription:this.$t.__("Click on the tags below to insert variables into your meta description.",this.$td),noIndexDescription:this.$t.__('Selecting "No" will no-index this page.',this.$td)}}},watch:{show:function(t){this.options.advanced.robotsMeta.noindex=!t,t||(this.options.advanced.robotsMeta.default=!1)}},computed:{title:function(){return this.$t.sprintf(this.$t.__("%1$s Title",this.$td),this.object.singular)},show:function(){return this.options.show}},methods:{}},r=a,c=s("2877"),l=Object(c["a"])(r,n,o,!1,null,null,null);e["default"]=l.exports},"58e8":function(t,e,s){},"7a06":function(t,e,s){},c74c:function(t,e,s){"use strict";var n=s("58e8"),o=s.n(n);o.a}}]);
1
+ (window["aioseopjsonp"]=window["aioseopjsonp"]||[]).push([["search-appearance-Taxonomies-vue","search-appearance-partials-Advanced-vue","search-appearance-partials-TitleDescription-vue"],{"0844":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-advanced"},[s("core-settings-row",{attrs:{name:t.strings.robotsSetting},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-robots-meta",{attrs:{options:t.options.advanced.robotsMeta,mainOptions:t.options}})]},proxy:!0}])}),t.showBulk?s("core-settings-row",{attrs:{name:t.strings.bulkEditing,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-radio-toggle",{attrs:{name:t.object.name+"BulkEditing",options:[{label:t.$constants.GLOBAL_STRINGS.disabled,value:"disabled"},{label:t.$constants.GLOBAL_STRINGS.enabled,value:"enabled"},{label:t.strings.readOnly,value:"read-only"}]},model:{value:t.options.advanced.bulkEditing,callback:function(e){t.$set(t.options.advanced,"bulkEditing",e)},expression:"options.advanced.bulkEditing"}})]},proxy:!0}],null,!1,3216224115)}):t._e(),t.noMetaBox||t.isUnlicensed&&"taxonomies"===t.type?t._e():s("core-settings-row",{attrs:{name:t.strings.otherOptions},scopedSlots:t._u([{key:"content",fn:function(){return[s("div",{staticClass:"other-options"},[s("base-toggle",{model:{value:t.options.advanced.showMetaBox,callback:function(e){t.$set(t.options.advanced,"showMetaBox",e)},expression:"options.advanced.showMetaBox"}},[t._v(" "+t._s(t.showMetaBox)+" ")])],1)]},proxy:!0}],null,!1,430458522)}),t.mainOptions.searchAppearance.advanced.useKeywords&&t.includeKeywords?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.options.advanced.keywords)||[],value:t.getJsonValue(t.options.advanced.keywords)||[],"tag-placeholder":t.strings.tagPlaceholder},on:{input:function(e){return t.options.advanced.keywords=t.setJsonValue(e)}}})]},proxy:!0}],null,!1,4182382651)}):t._e()],1)},o=[],i=s("5530"),a=s("2f62"),r=s("9c0e"),c={mixins:[r["d"],r["f"]],props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean,noMetaBox:Boolean,includeKeywords:Boolean},data:function(){return{titleCount:0,descriptionCount:0,strings:{robotsSetting:this.$t.__("Robots Meta Settings",this.$td),bulkEditing:this.$t.__("Bulk Editing",this.$td),readOnly:this.$t.__("Read Only",this.$td),otherOptions:this.$t.__("Other Options",this.$td),showDateInGooglePreview:this.$t.__("Show Date in Google Preview",this.$td),keywords:this.$t.__("Keywords",this.$td)}}},computed:Object(i["a"])(Object(i["a"])(Object(i["a"])({},Object(a["e"])({mainOptions:"options"})),Object(a["c"])(["isUnlicensed"])),{},{title:function(){return this.$t.sprintf(this.$t.__("%1$s Title",this.$td),this.object.singular)},showPostThumbnailInSearch:function(){return this.$t.sprintf(this.$t.__("Show %1$s Thumbnail in Google Custom Search",this.$td),this.object.singular)},showMetaBox:function(){return this.$t.sprintf(this.$t.__("Show %1$s Meta Box",this.$td),"AIOSEO")}})},l=c,u=(s("3d63"),s("2877")),d=Object(u["a"])(l,n,o,!1,null,null,null);e["default"]=d.exports},"219a":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-search-appearance-taxonomies"},t._l(t.taxonomies,(function(e,n){return s("core-card",{key:n,attrs:{slug:e.name+"SA"},scopedSlots:t._u([{key:"header",fn:function(){return[s("div",{staticClass:"icon dashicons",class:""+(e.icon||"dashicons-admin-post")}),s("div",[t._v(" "+t._s(e.label)+" ")])]},proxy:!0},{key:"tabs",fn:function(){return[s("core-main-tabs",{attrs:{tabs:t.tabs,showSaveButton:!1,active:t.settings.internalTabs[e.name+"SA"],internal:""},on:{changed:function(s){return t.processChangeTab(e.name,s)}}})]},proxy:!0}],null,!0)},[s("transition",{attrs:{name:"route-fade",mode:"out-in"}},[s(t.settings.internalTabs[e.name+"SA"],{tag:"component",attrs:{object:e,separator:t.options.searchAppearance.global.separator,options:t.options.searchAppearance.dynamic.taxonomies[e.name],type:"taxonomies","show-bulk":!1}})],1)],1)})),1)},o=[],i=s("5530"),a=s("2f62"),r=s("0844"),c=s("587e"),l={components:{Advanced:r["default"],TitleDescription:c["default"]},data:function(){return{internalDebounce:null,strings:{ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Custom Taxonomies",this.$td),ctaDescription:this.$t.sprintf(this.$t.__("%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.",this.$td),"AIOSEO","Pro"),ctaHeader:this.$t.sprintf(this.$t.__("Custom Taxonomy Support is only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")},tabs:[{slug:"title-description",name:this.$t.__("Title & Description",this.$tdPro),access:"aioseo_manage_seo",pro:!1},{slug:"advanced",name:this.$t.__("Advanced",this.$tdPro),access:"aioseo_manage_seo",pro:!1}]}},computed:Object(i["a"])(Object(i["a"])(Object(i["a"])({},Object(a["c"])(["isUnlicensed"])),Object(a["e"])(["options","settings"])),{},{taxonomies:function(){return this.$aioseo.postData.taxonomies}}),methods:Object(i["a"])(Object(i["a"])({},Object(a["b"])(["changeTab"])),{},{processChangeTab:function(t,e){var s=this;this.internalDebounce||(this.internalDebounce=!0,this.changeTab({slug:"".concat(t,"SA"),value:e}),setTimeout((function(){s.internalDebounce=!1}),50))}})},u=l,d=(s("c74c"),s("2877")),p=Object(d["a"])(u,n,o,!1,null,null,null);e["default"]=p.exports},"3d63":function(t,e,s){"use strict";var n=s("7a06"),o=s.n(n);o.a},"587e":function(t,e,s){"use strict";s.r(e);var n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-title-description"},[s("core-settings-row",{attrs:{name:t.strings.showInSearchResults,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("base-radio-toggle",{attrs:{name:t.object.name+"ShowInSearch",options:[{label:t.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.yes,value:!0}]},model:{value:t.options.show,callback:function(e){t.$set(t.options,"show",e)},expression:"options.show"}}):t._e(),t.edit?t._e():s("base-radio-toggle",{attrs:{value:!0,name:t.object.name+"ShowInSearch",options:[{label:t.$constants.GLOBAL_STRINGS.no,value:!1,activeClass:"dark"},{label:t.$constants.GLOBAL_STRINGS.yes,value:!0}]}}),s("div",{staticClass:"aioseo-description"},[t._v(" "+t._s(t.strings.noIndexDescription)+" ")])]},proxy:!0}])}),t.edit&&t.options.show?s("core-settings-row",{attrs:{name:t.$constants.GLOBAL_STRINGS.preview},scopedSlots:t._u([{key:"content",fn:function(){return[s("core-google-search-preview",{attrs:{title:t.options.title,separator:t.separator,description:t.options.metaDescription}})]},proxy:!0}],null,!1,3395425131)}):t._e(),t.options.show?s("core-settings-row",{attrs:{name:t.title},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":t.object.name+"Title","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"title")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddTitle)+" ")]},proxy:!0}],null,!1,3106947238),model:{value:t.options.title,callback:function(e){t.$set(t.options,"title",e)},expression:"options.title"}}):t._e(),t.edit?t._e():s("core-html-tags-editor",{attrs:{"line-numbers":!1,single:"","tags-context":t.object.name+"Title","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"title")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddTitle)+" ")]},proxy:!0}],null,!1,3106947238)})]},proxy:!0}],null,!1,198146199)}):t._e(),t.options.show?s("core-settings-row",{attrs:{name:t.strings.metaDescription},scopedSlots:t._u([{key:"content",fn:function(){return[t.edit?s("core-html-tags-editor",{attrs:{"line-numbers":!1,description:"","tags-context":t.object.name+"Description","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"description")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddDescription)+" ")]},proxy:!0}],null,!1,1726597184),model:{value:t.options.metaDescription,callback:function(e){t.$set(t.options,"metaDescription",e)},expression:"options.metaDescription"}}):t._e(),t.edit?t._e():s("core-html-tags-editor",{attrs:{"line-numbers":!1,"tags-context":t.object.name+"Description","default-tags":t.$tags.getDefaultTags(t.type,t.object.name,"description")},scopedSlots:t._u([{key:"tags-description",fn:function(){return[t._v(" "+t._s(t.strings.clickToAddDescription)+" ")]},proxy:!0}],null,!1,1726597184)})]},proxy:!0}],null,!1,2372372956)}):t._e()],1)},o=[],i=s("9c0e"),a={mixins:[i["f"]],props:{type:{type:String,required:!0},object:{type:Object,required:!0},separator:{type:String,required:!0},options:{type:Object,required:!0},edit:{type:Boolean,default:function(){return!0}}},data:function(){return{titleCount:0,descriptionCount:0,strings:{showInSearchResults:this.$t.__("Show in Search Results",this.$td),clickToAddTitle:this.$t.__("Click on the tags below to insert variables into your title.",this.$td),metaDescription:this.$t.__("Meta Description",this.$td),clickToAddDescription:this.$t.__("Click on the tags below to insert variables into your meta description.",this.$td),noIndexDescription:this.$t.__('Selecting "No" will no-index this page.',this.$td)}}},watch:{show:function(t){this.options.advanced.robotsMeta.noindex=!t,t||(this.options.advanced.robotsMeta.default=!1)}},computed:{title:function(){return this.$t.sprintf(this.$t.__("%1$s Title",this.$td),this.object.singular)},show:function(){return this.options.show}},methods:{}},r=a,c=s("2877"),l=Object(c["a"])(r,n,o,!1,null,null,null);e["default"]=l.exports},"58e8":function(t,e,s){},"7a06":function(t,e,s){},c74c:function(t,e,s){"use strict";var n=s("58e8"),o=s.n(n);o.a}}]);
dist/Lite/assets/js/search-appearance-partials-Schema-vue.js CHANGED
@@ -1 +1 @@
1
- (window["aioseopjsonp"]=window["aioseopjsonp"]||[]).push([["search-appearance-partials-Schema-vue","search-appearance-partials-lite-Schema-vue"],{"164d":function(t,e,s){},"4edb":function(t,e,s){"use strict";var i=s("164d"),a=s.n(i);a.a},"5be7":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-schema-view"},[t.isUnlicensed?t._e():s("schema",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}),t.isUnlicensed?s("schema-lite",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}):t._e()],1)},a=[],n=s("5530"),r=s("2f62"),o=s("9d33"),c={components:{Schema:o["default"],SchemaLite:o["default"]},props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean},computed:Object(n["a"])({},Object(r["c"])(["isUnlicensed"]))},l=c,u=s("2877"),p=Object(u["a"])(l,i,a,!1,null,null,null);e["default"]=p.exports},"9d33":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-schema-lite"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.schemaType,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{staticClass:"schema-type",attrs:{size:"medium",options:t.schemaTypes,value:t.getSchemaTypeOption("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:{name:t.object.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}])})],1),s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("schema-markup","schema-markup-upsell",t.object.name+"-post-type"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("schema-markup",t.object.name,"home")},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}])})],1)},a=[],n=(s("7db0"),{props:{type:{type:String,required:!0},object:{type:Object,required:!0}},data:function(){return{schemaTypes:[{value:"none",label:this.$t.__("None",this.$td)},{value:"Article",label:this.$t.__("Article",this.$td)}],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),ctaDescription:this.$t.sprintf(this.$t.__("%1$s %2$s gives you advanced customizations for the structured data markup on Posts, Pages, Categories, Tags, etc.",this.$td),"AIOSEO","Pro"),ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Schema Markup",this.$td),ctaHeader:this.$t.sprintf(this.$t.__("Schema Markup is only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")}}},methods:{getSchemaTypeOption:function(t){return this.schemaTypes.find((function(e){return e.value===t}))}}}),r=n,o=(s("4edb"),s("2877")),c=Object(o["a"])(r,i,a,!1,null,null,null);e["default"]=c.exports}}]);
1
+ (window["aioseopjsonp"]=window["aioseopjsonp"]||[]).push([["search-appearance-partials-Schema-vue","search-appearance-partials-lite-Schema-vue"],{"164d":function(t,e,s){},"4edb":function(t,e,s){"use strict";var i=s("164d"),a=s.n(i);a.a},"5be7":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-schema-view"},[t.isUnlicensed?t._e():s("schema",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}),t.isUnlicensed?s("schema-lite",{attrs:{type:t.type,object:t.object,options:t.options,"show-bulk":t.showBulk}}):t._e()],1)},a=[],n=s("5530"),r=s("2f62"),o=s("9d33"),c={components:{Schema:o["default"],SchemaLite:o["default"]},props:{type:{type:String,required:!0},object:{type:Object,required:!0},options:{type:Object,required:!0},showBulk:Boolean},computed:Object(n["a"])({},Object(r["c"])(["isUnlicensed"]))},l=c,u=s("2877"),p=Object(u["a"])(l,i,a,!1,null,null,null);e["default"]=p.exports},"9d33":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-schema-lite"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.schemaType,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{staticClass:"schema-type",attrs:{size:"medium",options:t.schemaTypes,value:t.getSchemaTypeOption("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:{name:t.object.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}])})],1),s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("schema-markup","schema-markup-upsell",t.object.name+"-post-type"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("schema-markup",t.object.name,"home")},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}])})],1)},a=[],n=(s("7db0"),{props:{type:{type:String,required:!0},object:{type:Object,required:!0}},data:function(){return{schemaTypes:[{value:"none",label:this.$t.__("None",this.$td)},{value:"Article",label:this.$t.__("Article",this.$td)}],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),ctaDescription:this.$t.sprintf(this.$t.__("%1$s %2$s allows you to customize the structured data markup on Posts, Pages, Categories, Tags, etc.",this.$td),"AIOSEO","Pro"),ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Advanced Schema Markup",this.$td),ctaHeader:this.$t.sprintf(this.$t.__("Advanced Schema Markup is only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")}}},methods:{getSchemaTypeOption:function(t){return this.schemaTypes.find((function(e){return e.value===t}))}}}),r=n,o=(s("4edb"),s("2877")),c=Object(o["a"])(r,i,a,!1,null,null,null);e["default"]=c.exports}}]);
dist/Lite/assets/js/search-appearance-partials-lite-Schema-vue.js CHANGED
@@ -1 +1 @@
1
- (window["aioseopjsonp"]=window["aioseopjsonp"]||[]).push([["search-appearance-partials-lite-Schema-vue"],{"164d":function(t,e,s){},"4edb":function(t,e,s){"use strict";var i=s("164d"),a=s.n(i);a.a},"9d33":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-schema-lite"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.schemaType,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{staticClass:"schema-type",attrs:{size:"medium",options:t.schemaTypes,value:t.getSchemaTypeOption("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:{name:t.object.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}])})],1),s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("schema-markup","schema-markup-upsell",t.object.name+"-post-type"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("schema-markup",t.object.name,"home")},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}])})],1)},a=[],r=(s("7db0"),{props:{type:{type:String,required:!0},object:{type:Object,required:!0}},data:function(){return{schemaTypes:[{value:"none",label:this.$t.__("None",this.$td)},{value:"Article",label:this.$t.__("Article",this.$td)}],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),ctaDescription:this.$t.sprintf(this.$t.__("%1$s %2$s gives you advanced customizations for the structured data markup on Posts, Pages, Categories, Tags, etc.",this.$td),"AIOSEO","Pro"),ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Schema Markup",this.$td),ctaHeader:this.$t.sprintf(this.$t.__("Schema Markup is only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")}}},methods:{getSchemaTypeOption:function(t){return this.schemaTypes.find((function(e){return e.value===t}))}}}),n=r,o=(s("4edb"),s("2877")),c=Object(o["a"])(n,i,a,!1,null,null,null);e["default"]=c.exports}}]);
1
+ (window["aioseopjsonp"]=window["aioseopjsonp"]||[]).push([["search-appearance-partials-lite-Schema-vue"],{"164d":function(t,e,s){},"4edb":function(t,e,s){"use strict";var i=s("164d"),a=s.n(i);a.a},"9d33":function(t,e,s){"use strict";s.r(e);var i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"aioseo-sa-ct-schema-lite"},[s("core-blur",[s("core-settings-row",{attrs:{name:t.strings.schemaType,align:""},scopedSlots:t._u([{key:"content",fn:function(){return[s("base-select",{staticClass:"schema-type",attrs:{size:"medium",options:t.schemaTypes,value:t.getSchemaTypeOption("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:{name:t.object.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}])})],1),s("cta",{attrs:{"cta-link":t.$links.getPricingUrl("schema-markup","schema-markup-upsell",t.object.name+"-post-type"),"button-text":t.strings.ctaButtonText,"learn-more-link":t.$links.getUpsellUrl("schema-markup",t.object.name,"home")},scopedSlots:t._u([{key:"header-text",fn:function(){return[t._v(" "+t._s(t.strings.ctaHeader)+" ")]},proxy:!0},{key:"description",fn:function(){return[t._v(" "+t._s(t.strings.ctaDescription)+" ")]},proxy:!0}])})],1)},a=[],n=(s("7db0"),{props:{type:{type:String,required:!0},object:{type:Object,required:!0}},data:function(){return{schemaTypes:[{value:"none",label:this.$t.__("None",this.$td)},{value:"Article",label:this.$t.__("Article",this.$td)}],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),ctaDescription:this.$t.sprintf(this.$t.__("%1$s %2$s allows you to customize the structured data markup on Posts, Pages, Categories, Tags, etc.",this.$td),"AIOSEO","Pro"),ctaButtonText:this.$t.__("Upgrade to Pro and Unlock Advanced Schema Markup",this.$td),ctaHeader:this.$t.sprintf(this.$t.__("Advanced Schema Markup is only available for licensed %1$s %2$s users.",this.$td),"AIOSEO","Pro")}}},methods:{getSchemaTypeOption:function(t){return this.schemaTypes.find((function(e){return e.value===t}))}}}),r=n,o=(s("4edb"),s("2877")),c=Object(o["a"])(r,i,a,!1,null,null,null);e["default"]=c.exports}}]);
languages/aioseo-lite.php CHANGED
@@ -1,36 +1,36 @@
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' ),
@@ -38,92 +38,29 @@ $generated_i18n_strings = array(
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
 
108
  __( 'Facebook', 'all-in-one-seo-pack' ),
109
 
110
  // Reference: src/vue/pages/post-settings/views/Social.vue:69
 
111
  __( 'Twitter', 'all-in-one-seo-pack' ),
112
 
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' ),
@@ -131,7 +68,7 @@ $generated_i18n_strings = array(
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
@@ -143,146 +80,8 @@ $generated_i18n_strings = array(
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' ),
@@ -302,22 +101,6 @@ $generated_i18n_strings = array(
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
 
@@ -332,7 +115,9 @@ $generated_i18n_strings = array(
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
@@ -341,492 +126,478 @@ $generated_i18n_strings = array(
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
472
- __( 'There are no new notifications at this moment.', 'all-in-one-seo-pack' ),
473
 
474
- // Reference: src/vue/pages/dashboard/views/Main.vue:212
475
- __( 'See all dismissed notifications.', 'all-in-one-seo-pack' ),
476
 
477
- // Reference: src/vue/pages/dashboard/views/Main.vue:213
478
- __( 'SEO Site Score', 'all-in-one-seo-pack' ),
479
 
480
- // Reference: src/vue/pages/dashboard/views/Main.vue:214
481
- __( 'Support', 'all-in-one-seo-pack' ),
482
 
483
- // Reference: src/vue/pages/dashboard/views/Main.vue:216
484
- /* Translators: 1 - The plugin name ("All in One SEO"). */
485
- __( 'Read the %1$s user guide', 'all-in-one-seo-pack' ),
486
 
487
- // Reference: src/vue/pages/dashboard/views/Main.vue:217
488
- __( 'Access our Premium Support', 'all-in-one-seo-pack' ),
489
 
490
- // Reference: src/vue/pages/dashboard/views/Main.vue:218
491
- __( 'View the Changelog', 'all-in-one-seo-pack' ),
492
 
493
- // Reference: src/vue/pages/dashboard/views/Main.vue:219
494
- __( 'Watch video tutorials', 'all-in-one-seo-pack' ),
495
 
496
- // Reference: src/vue/pages/dashboard/views/Main.vue:220
497
- __( 'Getting started? Read the Beginners Guide', 'all-in-one-seo-pack' ),
 
498
 
499
- // Reference: src/vue/pages/dashboard/views/Main.vue:221
500
- __( 'Quicklinks', 'all-in-one-seo-pack' ),
501
 
502
- // Reference: src/vue/pages/dashboard/views/Main.vue:222
503
- __( 'You can use these quicklinks to quickly access our settings pages to adjust your site\'s SEO settings.', 'all-in-one-seo-pack' ),
504
 
505
- // Reference: src/vue/pages/dashboard/views/Main.vue:224
506
- __( 'Configure how your website content will look in Google, Bing and other search engines.', 'all-in-one-seo-pack' ),
507
 
508
- // Reference: src/vue/pages/seo-analysis/views/Main.vue:21
509
- __( 'SEO Analysis', 'all-in-one-seo-pack' ),
510
 
511
- // Reference: src/vue/pages/dashboard/views/Main.vue:226
512
- __( 'Check how your site scores with our SEO analyzer and compare against your competitor\'s site.', 'all-in-one-seo-pack' ),
513
 
514
- // Reference: src/vue/pages/dashboard/views/Main.vue:227
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
533
- __( 'Manage all of your sitemap settings, including XML, Video, News and more.', 'all-in-one-seo-pack' ),
534
 
535
- // Reference: src/vue/pages/dashboard/views/Main.vue:235
536
- /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro". */
537
- __( 'Get more features in %1$s %2$s:', 'all-in-one-seo-pack' ),
538
 
539
- // Reference: src/vue/pages/dashboard/views/Main.vue:237
540
- /* Translators: 1 - "Pro", 2 - A percentage ("50%"). */
541
- __( 'Upgrade to %1$s and Save %2$s', 'all-in-one-seo-pack' ),
542
 
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' ),
573
 
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
584
- __( 'Post Custom Field Name', 'all-in-one-seo-pack' ),
585
 
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
 
624
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:456
625
- __( 'Description', 'all-in-one-seo-pack' ),
626
 
627
- // Reference: src/vue/pages/social-networks/views/Twitter.vue:457
628
- __( 'Use the home page description', 'all-in-one-seo-pack' ),
629
 
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
733
- __( 'Additional Pages', 'all-in-one-seo-pack' ),
734
 
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
745
- __( 'Grouped', 'all-in-one-seo-pack' ),
746
 
747
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:446
748
- __( 'Post Type Priority Score', 'all-in-one-seo-pack' ),
749
 
750
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:447
751
- __( 'Taxonomy Priority Score', 'all-in-one-seo-pack' ),
752
 
753
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:448
754
- __( 'Exclude Images', 'all-in-one-seo-pack' ),
755
 
756
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:449
757
- __( 'Exclude Images from your sitemap.', 'all-in-one-seo-pack' ),
758
 
759
- // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:450
760
- __( 'Dynamically Generate', 'all-in-one-seo-pack' ),
761
 
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
@@ -857,319 +628,236 @@ $generated_i18n_strings = array(
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' ),
@@ -1201,52 +889,39 @@ $generated_i18n_strings = array(
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' ),
@@ -1257,541 +932,800 @@ $generated_i18n_strings = array(
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' ),
1341
 
1342
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:112
1343
- __( 'Posts, Pages and Custom Post Types Only', 'all-in-one-seo-pack' ),
1344
 
1345
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:116
1346
- __( 'Posts, Pages, Custom Post Types + Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
1347
 
1348
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:120
1349
- __( 'WooCommerce Integration', 'all-in-one-seo-pack' ),
1350
 
1351
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:123
1352
- __( 'WooCommerce Products Only', 'all-in-one-seo-pack' ),
1353
 
1354
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:127
1355
- __( 'WooCommerce Products, Product Categories, Product Tags and Other Product Attributes', 'all-in-one-seo-pack' ),
1356
 
1357
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:131
1358
- __( 'XML Sitemap', 'all-in-one-seo-pack' ),
1359
 
1360
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:134
1361
- __( 'Basic Control of Sitemap Priority & Frequency', 'all-in-one-seo-pack' ),
1362
 
1363
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:138
1364
- __( 'Granular Control of Sitemap Priority & Frequency for Each Post, Page, Category, Tag, etc.', 'all-in-one-seo-pack' ),
 
1365
 
1366
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:142
1367
- __( 'Video XML Sitemap', 'all-in-one-seo-pack' ),
1368
 
1369
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:147
1370
- __( 'Submit Your Videos to Search Engines', 'all-in-one-seo-pack' ),
 
1371
 
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
 
1381
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:165
1382
- __( 'Control The Title & Alt Tag Attribute of Your Images (Business & Agency tier only)', 'all-in-one-seo-pack' ),
1383
 
1384
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:169
1385
- __( 'Schema Rich Snippets', 'all-in-one-seo-pack' ),
1386
 
1387
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:172
1388
- __( 'Posts, Pages, Categories and Tags Only', 'all-in-one-seo-pack' ),
 
1389
 
1390
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:175
1391
- __( 'Complete Support', 'all-in-one-seo-pack' ),
 
1392
 
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
1400
- __( 'Limited Support', 'all-in-one-seo-pack' ),
 
1401
 
1402
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:185
1403
- __( 'Priority Support', 'all-in-one-seo-pack' ),
 
1404
 
1405
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:71
1406
- /* Translators: 1 - The abbreviated plugin name ("AIOSEO"). */
1407
- __( '%1$s Lite vs. Pro', 'all-in-one-seo-pack' ),
1408
 
1409
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:73
1410
- /* Translators: 1 - The plugin name ("All in One SEO"). */
1411
- __( 'Get the most out of %1$s by upgrading to Pro and unlocking all of the powerful features.', 'all-in-one-seo-pack' ),
1412
 
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
 
1427
- // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:86
1428
- __( '%1$sBonus:%2$s You can upgrade to the %3$s plan today and %4$ssave %5$s off%6$s (discount auto-applied).', 'all-in-one-seo-pack' ),
 
1429
 
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
1543
- __( 'View all video tutorials', 'all-in-one-seo-pack' ),
1544
 
1545
- // Reference: src/vue/pages/about/views/GettingStarted.vue:153
1546
- /* Translators: 1 - The plugin short name ("AIOSEO"). */
1547
- __( '%1$s Documentation', 'all-in-one-seo-pack' ),
1548
 
1549
- // Reference: src/vue/pages/about/views/GettingStarted.vue:154
1550
- __( 'See our full documentation', 'all-in-one-seo-pack' ),
1551
 
1552
- // Reference: src/vue/pages/about/views/GettingStarted.vue:160
1553
- __( 'Basic Guide to Google Analytics', 'all-in-one-seo-pack' ),
1554
 
1555
- // Reference: src/vue/pages/about/views/GettingStarted.vue:164
1556
- __( 'Basic Guide to Google Search Console', 'all-in-one-seo-pack' ),
1557
 
1558
- // Reference: src/vue/pages/about/views/GettingStarted.vue:168
1559
- __( 'Best Practices for Domains and URLs', 'all-in-one-seo-pack' ),
1560
 
1561
- // Reference: src/vue/pages/about/views/GettingStarted.vue:172
1562
- __( 'How to Control Search Results', 'all-in-one-seo-pack' ),
1563
 
1564
- // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:61
1565
- /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro", 3 - "Learn more link".. */
1566
- __( 'Pro', 'all-in-one-seo-pack' ),
1567
 
1568
- // Reference: src/vue/pages/about/views/GettingStarted.vue:177
1569
- /* Translators: 1 - The plugin short name ("AIOSEO Pro"), 2 - "Pro" string. */
1570
- __( 'Installing %1$s %2$s', 'all-in-one-seo-pack' ),
1571
 
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' ),
1725
 
1726
- // Reference: src/vue/components/lite/core/UpgradeBar.vue:25
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
 
1738
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:59
1739
- __( 'Setup Wizard', 'all-in-one-seo-pack' ),
1740
 
1741
- // Reference: src/vue/pages/settings/views/GeneralSettings.vue:62
1742
- /* Translators: 1 - The plugin name ("All in One SEO") */
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' ),
@@ -1832,174 +1766,150 @@ $generated_i18n_strings = array(
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' ),
@@ -2031,254 +1941,290 @@ $generated_i18n_strings = array(
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' ),
@@ -2290,6 +2236,12 @@ $generated_i18n_strings = array(
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
 
@@ -2360,6 +2312,9 @@ $generated_i18n_strings = array(
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' ),
@@ -2486,185 +2441,122 @@ $generated_i18n_strings = array(
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' ),
2598
-
2599
- // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:15
2600
- __( 'Upgrade to Pro and Unlock News Sitemaps', 'all-in-one-seo-pack' ),
2601
-
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
-
2614
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:12
2615
- __( 'Open Video Sitemap', 'all-in-one-seo-pack' ),
2616
-
2617
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:15
2618
- __( 'Upgrade to Pro and Unlock Video Sitemaps', 'all-in-one-seo-pack' ),
2619
 
2620
- // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:16
2621
- __( 'Video Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
2622
 
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
 
@@ -2674,63 +2566,53 @@ $generated_i18n_strings = array(
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
 
2726
- // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:108
2727
- __( 'Performance', 'all-in-one-seo-pack' ),
2728
 
2729
- // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:109
2730
- __( 'Security', 'all-in-one-seo-pack' ),
2731
 
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' ),
@@ -2752,6 +2634,30 @@ $generated_i18n_strings = array(
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
 
@@ -2794,8 +2700,14 @@ $generated_i18n_strings = array(
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' ),
@@ -2827,14 +2739,23 @@ $generated_i18n_strings = array(
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' ),
@@ -3347,11 +3268,29 @@ $generated_i18n_strings = array(
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' ),
@@ -3385,7 +3324,6 @@ $generated_i18n_strings = array(
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
@@ -3405,9 +3343,66 @@ $generated_i18n_strings = array(
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' ),
3413
 
@@ -3426,18 +3421,12 @@ $generated_i18n_strings = array(
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
 
3435
  // Reference: src/vue/components/common/core/AdditionalPages.vue:102
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
3442
  /* Translators: 1 - An example URL (e.g. https://aioseo.com/example). */
3443
  __( 'Enter a page URL, e.g. %1$s', 'all-in-one-seo-pack' ),
@@ -3451,314 +3440,258 @@ $generated_i18n_strings = array(
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
-
3472
- // Reference: src/vue/plugins/constants.js:1043
3473
- __( 'Technical Support', 'all-in-one-seo-pack' ),
3474
-
3475
- // Reference: src/vue/plugins/constants.js:1044
3476
- __( 'Billing Support', 'all-in-one-seo-pack' ),
3477
-
3478
- // Reference: src/vue/plugins/constants.js:1045
3479
- __( 'Bill Payment', 'all-in-one-seo-pack' ),
3480
-
3481
- // Reference: src/vue/plugins/constants.js:1046
3482
- __( 'Sales', 'all-in-one-seo-pack' ),
3483
-
3484
- // Reference: src/vue/plugins/constants.js:1047
3485
- __( 'Reservations', 'all-in-one-seo-pack' ),
3486
-
3487
- // Reference: src/vue/plugins/constants.js:1048
3488
- __( 'Credit Card Support', 'all-in-one-seo-pack' ),
3489
-
3490
- // Reference: src/vue/plugins/constants.js:1049
3491
- __( 'Emergency', 'all-in-one-seo-pack' ),
3492
-
3493
- // Reference: src/vue/plugins/constants.js:1050
3494
- __( 'Bagage Tracking', 'all-in-one-seo-pack' ),
3495
-
3496
- // Reference: src/vue/plugins/constants.js:1051
3497
- __( 'Roadside Assistance', 'all-in-one-seo-pack' ),
3498
-
3499
- // Reference: src/vue/plugins/constants.js:1052
3500
- __( 'Package Tracking', 'all-in-one-seo-pack' ),
3501
-
3502
- // Reference: src/vue/plugins/constants.js:1059
3503
- __( 'Sitemaps are a list of all your content that search engines use when they crawl your site.', 'all-in-one-seo-pack' ),
3504
-
3505
- // Reference: src/vue/plugins/constants.js:1069
3506
- __( 'Optimized Search Appearance', 'all-in-one-seo-pack' ),
3507
-
3508
- // Reference: src/vue/plugins/constants.js:1070
3509
- __( 'Get all the right tools to make sure your website shows up in Google Search.', 'all-in-one-seo-pack' ),
3510
-
3511
- // Reference: src/vue/plugins/constants.js:1078
3512
- __( 'Get the #1 analytics plugin to see how people find and use your website. Simply put, see stats that matter.', 'all-in-one-seo-pack' ),
3513
-
3514
- // Reference: src/vue/plugins/constants.js:1085
3515
- __( 'Breadcrumbs', 'all-in-one-seo-pack' ),
3516
 
3517
- // Reference: src/vue/plugins/constants.js:1094
3518
- __( 'Globally control Title and Alt attributes for attachment pages and images that are embedded in your content.', 'all-in-one-seo-pack' ),
3519
 
3520
- // Reference: src/vue/plugins/constants.js:1105
3521
- __( 'Tell Google about your business for display as a Knowledge Graph card or business carousel.', 'all-in-one-seo-pack' ),
3522
 
3523
- // Reference: src/vue/plugins/constants.js:1116
3524
- __( 'Generate an XML Sitemap specifically for video content on your site.', 'all-in-one-seo-pack' ),
3525
 
3526
- // Reference: src/vue/plugins/constants.js:1127
3527
- __( 'Submit articles to Google News that were published in the last 48 hours.', 'all-in-one-seo-pack' ),
3528
 
3529
- // Reference: src/vue/plugins/constants.js:1137
3530
- __( 'Smart Redirects + 404 Detection', 'all-in-one-seo-pack' ),
3531
 
3532
- // Reference: src/vue/plugins/constants.js:1145
3533
- __( 'Internal Link Building Assistant', 'all-in-one-seo-pack' ),
3534
 
3535
- // Reference: src/vue/plugins/constants.js:1153
3536
- __( 'Advanced Rich Snippets + Schema Markups', 'all-in-one-seo-pack' ),
3537
 
3538
- // Reference: src/vue/plugins/constants.js:1164
3539
- __( 'Activities', 'all-in-one-seo-pack' ),
 
3540
 
3541
- // Reference: src/vue/plugins/constants.js:1166
3542
- __( 'Activity', 'all-in-one-seo-pack' ),
3543
 
3544
- // Reference: src/vue/plugins/constants.js:1167
3545
- __( 'Sport', 'all-in-one-seo-pack' ),
3546
 
3547
- // Reference: src/vue/plugins/constants.js:1171
3548
- __( 'Businesses', 'all-in-one-seo-pack' ),
3549
 
3550
- // Reference: src/vue/plugins/constants.js:1173
3551
- __( 'Bar', 'all-in-one-seo-pack' ),
3552
 
3553
- // Reference: src/vue/plugins/constants.js:1174
3554
- __( 'Company', 'all-in-one-seo-pack' ),
3555
 
3556
- // Reference: src/vue/plugins/constants.js:1175
3557
- __( 'Cafe', 'all-in-one-seo-pack' ),
3558
 
3559
- // Reference: src/vue/plugins/constants.js:1176
3560
- __( 'Hotel', 'all-in-one-seo-pack' ),
3561
 
3562
- // Reference: src/vue/plugins/constants.js:1177
3563
- __( 'Restaurant', 'all-in-one-seo-pack' ),
3564
 
3565
- // Reference: src/vue/plugins/constants.js:1181
3566
- __( 'Groups', 'all-in-one-seo-pack' ),
3567
 
3568
- // Reference: src/vue/plugins/constants.js:1184
3569
- /* Translators: This refers to a charity/non-profit organization. */
3570
- __( 'Cause', 'all-in-one-seo-pack' ),
3571
 
3572
- // Reference: src/vue/plugins/constants.js:1185
3573
- __( 'Sports League', 'all-in-one-seo-pack' ),
3574
 
3575
- // Reference: src/vue/plugins/constants.js:1186
3576
- __( 'Sports Team', 'all-in-one-seo-pack' ),
3577
 
3578
- // Reference: src/vue/plugins/constants.js:1190
3579
- __( 'Organizations', 'all-in-one-seo-pack' ),
3580
 
3581
- // Reference: src/vue/plugins/constants.js:1193
3582
- /* Translators: This refers to a music group. */
3583
- __( 'Band', 'all-in-one-seo-pack' ),
3584
 
3585
- // Reference: src/vue/plugins/constants.js:1194
3586
- __( 'Non-Profit', 'all-in-one-seo-pack' ),
3587
 
3588
- // Reference: src/vue/plugins/constants.js:1195
3589
- __( 'School', 'all-in-one-seo-pack' ),
3590
 
3591
- // Reference: src/vue/plugins/constants.js:1196
3592
- __( 'University', 'all-in-one-seo-pack' ),
3593
 
3594
- // Reference: src/vue/plugins/constants.js:1200
3595
- __( 'People', 'all-in-one-seo-pack' ),
3596
 
3597
- // Reference: src/vue/plugins/constants.js:1202
3598
- __( 'Actor', 'all-in-one-seo-pack' ),
3599
 
3600
- // Reference: src/vue/plugins/constants.js:1203
3601
- __( 'Athlete', 'all-in-one-seo-pack' ),
3602
 
3603
- // Reference: src/vue/plugins/constants.js:1205
3604
- __( 'Director', 'all-in-one-seo-pack' ),
3605
 
3606
- // Reference: src/vue/plugins/constants.js:1206
3607
- __( 'Musician', 'all-in-one-seo-pack' ),
3608
 
3609
- // Reference: src/vue/plugins/constants.js:1207
3610
- __( 'Politician', 'all-in-one-seo-pack' ),
3611
 
3612
- // Reference: src/vue/plugins/constants.js:1208
3613
- __( 'Profile', 'all-in-one-seo-pack' ),
3614
 
3615
- // Reference: src/vue/plugins/constants.js:1209
3616
- __( 'Public Figure', 'all-in-one-seo-pack' ),
3617
 
3618
- // Reference: src/vue/plugins/constants.js:1213
3619
- __( 'Places', 'all-in-one-seo-pack' ),
3620
 
3621
- // Reference: src/vue/plugins/constants.js:1215
3622
- __( 'City', 'all-in-one-seo-pack' ),
3623
 
3624
- // Reference: src/vue/plugins/constants.js:1216
3625
- __( 'Country', 'all-in-one-seo-pack' ),
3626
 
3627
- // Reference: src/vue/plugins/constants.js:1217
3628
- __( 'Landmark', 'all-in-one-seo-pack' ),
3629
 
3630
- // Reference: src/vue/plugins/constants.js:1218
3631
- __( 'State/Province', 'all-in-one-seo-pack' ),
3632
 
3633
- // Reference: src/vue/plugins/constants.js:1222
3634
- __( 'Products & Entertainment', 'all-in-one-seo-pack' ),
3635
 
3636
- // Reference: src/vue/plugins/constants.js:1224
3637
- __( 'Album', 'all-in-one-seo-pack' ),
3638
 
3639
- // Reference: src/vue/plugins/constants.js:1225
3640
- __( 'Book', 'all-in-one-seo-pack' ),
3641
 
3642
- // Reference: src/vue/plugins/constants.js:1226
3643
- __( 'Drink', 'all-in-one-seo-pack' ),
3644
 
3645
- // Reference: src/vue/plugins/constants.js:1227
3646
- __( 'Food', 'all-in-one-seo-pack' ),
3647
 
3648
- // Reference: src/vue/plugins/constants.js:1228
3649
- __( 'Game', 'all-in-one-seo-pack' ),
3650
 
3651
- // Reference: src/vue/plugins/constants.js:1229
3652
- __( 'Movie', 'all-in-one-seo-pack' ),
3653
 
3654
- // Reference: src/vue/plugins/constants.js:1230
3655
- __( 'Product', 'all-in-one-seo-pack' ),
3656
 
3657
- // Reference: src/vue/plugins/constants.js:1231
3658
- __( 'Song', 'all-in-one-seo-pack' ),
3659
 
3660
- // Reference: src/vue/plugins/constants.js:1232
3661
- __( 'TV Show', 'all-in-one-seo-pack' ),
3662
 
3663
- // Reference: src/vue/plugins/constants.js:1233
3664
- __( 'Episode', 'all-in-one-seo-pack' ),
3665
 
3666
- // Reference: src/vue/plugins/constants.js:1237
3667
- __( 'Websites', 'all-in-one-seo-pack' ),
3668
 
3669
- // Reference: src/vue/plugins/constants.js:1240
3670
- __( 'Website', 'all-in-one-seo-pack' ),
3671
 
3672
- // Reference: src/vue/plugins/constants.js:20
3673
- __( 'hourly', 'all-in-one-seo-pack' ),
3674
 
3675
- // Reference: src/vue/plugins/constants.js:21
3676
- __( 'daily', 'all-in-one-seo-pack' ),
3677
 
3678
- // Reference: src/vue/plugins/constants.js:22
3679
- __( 'weekly', 'all-in-one-seo-pack' ),
 
3680
 
3681
- // Reference: src/vue/plugins/constants.js:23
3682
- __( 'monthly', 'all-in-one-seo-pack' ),
 
3683
 
3684
- // Reference: src/vue/plugins/constants.js:24
3685
- __( 'yearly', 'all-in-one-seo-pack' ),
3686
 
3687
- // Reference: src/vue/plugins/constants.js:25
3688
- __( 'never', 'all-in-one-seo-pack' ),
3689
 
3690
- // Reference: src/vue/plugins/constants.js:29
3691
- __( 'No', 'all-in-one-seo-pack' ),
 
3692
 
3693
- // Reference: src/vue/plugins/constants.js:30
3694
- __( 'Yes', 'all-in-one-seo-pack' ),
 
 
3695
 
3696
- // Reference: src/vue/plugins/constants.js:31
3697
- __( 'Off', 'all-in-one-seo-pack' ),
3698
 
3699
- // Reference: src/vue/plugins/constants.js:32
3700
- __( 'On', 'all-in-one-seo-pack' )
1
  <?php
2
  /* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
3
  $generated_i18n_strings = array(
4
+ // Reference: src/vue/pages/sitemaps/router/paths.js:19
5
+ __( 'General Sitemap', 'all-in-one-seo-pack' ),
 
 
 
6
 
7
+ // Reference: src/vue/pages/sitemaps/router/paths.js:28
8
+ __( 'Video Sitemap', 'all-in-one-seo-pack' ),
9
 
10
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:151
11
+ __( 'News Sitemap', 'all-in-one-seo-pack' ),
12
 
13
+ // Reference: src/vue/pages/sitemaps/router/paths.js:48
14
+ __( 'RSS Sitemap', 'all-in-one-seo-pack' ),
15
 
16
+ // Reference: src/vue/pages/settings/router/paths.js:19
17
+ __( 'General Settings', 'all-in-one-seo-pack' ),
18
 
19
+ // Reference: src/vue/pages/settings/router/paths.js:28
20
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:192
21
+ __( 'Webmaster Tools', 'all-in-one-seo-pack' ),
22
 
23
+ // Reference: src/vue/pages/settings/router/paths.js:47
24
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:193
25
+ __( 'RSS Content', 'all-in-one-seo-pack' ),
26
 
27
+ // Reference: src/vue/pages/settings/router/paths.js:57
28
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:210
29
+ __( 'Access Control', 'all-in-one-seo-pack' ),
30
 
31
+ // Reference: src/vue/pages/settings/router/paths.js:66
32
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:194
33
+ __( 'Advanced', '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' ),
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/social-networks/views/SocialProfiles.vue:25
42
+ /* Translators: This refers to social media profiles. */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  __( 'Social Profiles', 'all-in-one-seo-pack' ),
44
 
45
  // Reference: src/vue/pages/post-settings/views/Social.vue:65
46
+ // Reference: src/vue/pages/social-networks/router/paths.js:28
47
  __( 'Facebook', 'all-in-one-seo-pack' ),
48
 
49
  // Reference: src/vue/pages/post-settings/views/Social.vue:69
50
+ // Reference: src/vue/pages/social-networks/router/paths.js:37
51
  __( 'Twitter', 'all-in-one-seo-pack' ),
52
 
53
  // Reference: src/vue/pages/social-networks/views/Pinterest.vue:45
54
  __( 'Pinterest', 'all-in-one-seo-pack' ),
55
 
56
+ // Reference: src/vue/pages/local-seo/router/paths.js:19
57
+ __( 'Locations', 'all-in-one-seo-pack' ),
 
 
 
58
 
59
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:306
60
+ __( 'Opening Hours', 'all-in-one-seo-pack' ),
61
 
62
+ // Reference: src/vue/pages/feature-manager/views/Main.vue:20
63
+ __( 'Feature Manager', 'all-in-one-seo-pack' ),
64
 
65
  // Reference: src/vue/pages/tools/views/RobotsEditor.vue:236
66
  __( 'Robots.txt Editor', 'all-in-one-seo-pack' ),
68
  // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:40
69
  __( '.htaccess Editor', 'all-in-one-seo-pack' ),
70
 
71
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:202
72
  __( 'Bad Bot Blocker', 'all-in-one-seo-pack' ),
73
 
74
  // Reference: src/vue/pages/tools/router/paths.js:46
80
  // Reference: src/vue/pages/tools/router/paths.js:64
81
  __( 'System Status', 'all-in-one-seo-pack' ),
82
 
83
+ // Reference: src/vue/pages/post-settings/registerScoreToggler.js:21
84
+ __( 'N/A', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
 
86
  // Reference: src/vue/pages/posts-table/App.vue:218
87
  __( 'Title:', 'all-in-one-seo-pack' ),
101
  // Reference: src/vue/pages/posts-table/App.vue:225
102
  __( 'Please wait...', 'all-in-one-seo-pack' ),
103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  // Reference: src/vue/pages/posts-table/App.vue:220
105
  __( 'Image Title:', 'all-in-one-seo-pack' ),
106
 
115
  /* Translators: 1 - The plugin name ("All in One SEO"). */
116
  __( 'This feature is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
117
 
118
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:224
119
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:182
120
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 "Pro". */
121
  __( '%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' ),
122
 
123
  // Reference: src/vue/components/common/Cta.vue:240
126
  // Reference: src/vue/components/common/Cta.vue:241
127
  __( 'See all features', 'all-in-one-seo-pack' ),
128
 
129
+ // Reference: src/vue/router/index.js:51
130
+ __( 'Are you sure you want to leave? you have unsaved changes!', 'all-in-one-seo-pack' ),
 
 
 
131
 
132
+ // Reference: src/vue/utils/tags.js:64
133
+ __( 'Product Short Description', 'all-in-one-seo-pack' ),
134
 
135
+ // Reference: src/vue/utils/tags.js:65
136
+ __( 'A short description for your product.', 'all-in-one-seo-pack' ),
137
 
138
+ // Reference: src/vue/utils/tags.js:66
139
+ __( 'Sample short description for your product.', 'all-in-one-seo-pack' ),
140
 
141
+ // Reference: src/vue/utils/tags.js:82
142
+ __( 'Archive', 'all-in-one-seo-pack' ),
143
 
144
+ // Reference: src/vue/utils/tags.js:83
145
+ __( 'archive', 'all-in-one-seo-pack' ),
146
 
147
+ // Reference: src/vue/store/actions.js:146
148
+ __( 'We couldn\'t connect to the site, please try again later.', 'all-in-one-seo-pack' ),
149
 
150
+ // Reference: src/vue/plugins/constants.js:1041
151
+ __( 'Manually Enter Type', 'all-in-one-seo-pack' ),
152
 
153
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:180
154
+ __( 'Customer Support', 'all-in-one-seo-pack' ),
155
 
156
+ // Reference: src/vue/plugins/constants.js:1043
157
+ __( 'Technical Support', 'all-in-one-seo-pack' ),
158
 
159
+ // Reference: src/vue/plugins/constants.js:1044
160
+ __( 'Billing Support', 'all-in-one-seo-pack' ),
161
 
162
+ // Reference: src/vue/plugins/constants.js:1045
163
+ __( 'Bill Payment', 'all-in-one-seo-pack' ),
164
 
165
+ // Reference: src/vue/plugins/constants.js:1046
166
+ __( 'Sales', 'all-in-one-seo-pack' ),
167
 
168
+ // Reference: src/vue/plugins/constants.js:1047
169
+ __( 'Reservations', 'all-in-one-seo-pack' ),
170
 
171
+ // Reference: src/vue/plugins/constants.js:1048
172
+ __( 'Credit Card Support', 'all-in-one-seo-pack' ),
173
 
174
+ // Reference: src/vue/plugins/constants.js:1049
175
+ __( 'Emergency', 'all-in-one-seo-pack' ),
176
 
177
+ // Reference: src/vue/plugins/constants.js:1050
178
+ __( 'Bagage Tracking', 'all-in-one-seo-pack' ),
179
 
180
+ // Reference: src/vue/plugins/constants.js:1051
181
+ __( 'Roadside Assistance', 'all-in-one-seo-pack' ),
182
 
183
+ // Reference: src/vue/plugins/constants.js:1052
184
+ __( 'Package Tracking', 'all-in-one-seo-pack' ),
185
 
186
+ // Reference: src/vue/pages/dashboard/views/Main.vue:232
187
+ // Reference: src/vue/pages/sitemaps/views/Main.vue:26
188
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:197
189
+ __( 'Sitemaps', 'all-in-one-seo-pack' ),
190
 
191
+ // Reference: src/vue/plugins/constants.js:1059
192
+ __( 'Sitemaps are a list of all your content that search engines use when they crawl your site.', 'all-in-one-seo-pack' ),
193
 
194
+ // Reference: src/vue/plugins/constants.js:1069
195
+ __( 'Optimized Search Appearance', 'all-in-one-seo-pack' ),
196
 
197
+ // Reference: src/vue/plugins/constants.js:1070
198
+ __( 'Get all the right tools to make sure your website shows up in Google Search.', 'all-in-one-seo-pack' ),
199
 
200
+ // Reference: src/vue/pages/monsterinsights/views/Main.vue:20
201
+ __( 'Analytics', 'all-in-one-seo-pack' ),
202
 
203
+ // Reference: src/vue/plugins/constants.js:1078
204
+ __( 'Get the #1 analytics plugin to see how people find and use your website. Simply put, see stats that matter.', 'all-in-one-seo-pack' ),
205
 
206
+ // Reference: src/vue/plugins/constants.js:1085
207
+ __( 'Breadcrumbs', 'all-in-one-seo-pack' ),
208
 
209
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:160
210
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:214
211
+ __( 'Image SEO', 'all-in-one-seo-pack' ),
212
 
213
+ // Reference: src/vue/plugins/constants.js:1094
214
+ __( 'Globally control Title and Alt attributes for attachment pages and images that are embedded in your content.', 'all-in-one-seo-pack' ),
215
 
216
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:136
217
+ // Reference: src/vue/pages/dashboard/views/Main.vue:202
218
+ __( 'Local SEO', 'all-in-one-seo-pack' ),
219
 
220
+ // Reference: src/vue/plugins/constants.js:1105
221
+ __( 'Tell Google about your business for display as a Knowledge Graph card or business carousel.', 'all-in-one-seo-pack' ),
222
 
223
+ // Reference: src/vue/plugins/constants.js:1116
224
+ __( 'Generate an XML Sitemap specifically for video content on your site.', 'all-in-one-seo-pack' ),
225
 
226
+ // Reference: src/vue/plugins/constants.js:1127
227
+ __( 'Submit articles to Google News that were published in the last 48 hours.', 'all-in-one-seo-pack' ),
228
 
229
+ // Reference: src/vue/plugins/constants.js:1137
230
+ __( 'Smart Redirects + 404 Detection', 'all-in-one-seo-pack' ),
231
 
232
+ // Reference: src/vue/plugins/constants.js:1145
233
+ __( 'Internal Link Building Assistant', 'all-in-one-seo-pack' ),
234
 
235
+ // Reference: src/vue/plugins/constants.js:1153
236
+ __( 'Advanced Rich Snippets + Schema Markups', 'all-in-one-seo-pack' ),
237
 
238
+ // Reference: src/vue/plugins/constants.js:1164
239
+ __( 'Activities', 'all-in-one-seo-pack' ),
240
 
241
+ // Reference: src/vue/plugins/constants.js:1166
242
+ __( 'Activity', 'all-in-one-seo-pack' ),
243
 
244
+ // Reference: src/vue/plugins/constants.js:1167
245
+ __( 'Sport', 'all-in-one-seo-pack' ),
246
 
247
+ // Reference: src/vue/plugins/constants.js:1171
248
+ __( 'Businesses', 'all-in-one-seo-pack' ),
 
249
 
250
+ // Reference: src/vue/plugins/constants.js:1173
251
+ __( 'Bar', 'all-in-one-seo-pack' ),
252
 
253
+ // Reference: src/vue/plugins/constants.js:1174
254
+ __( 'Company', 'all-in-one-seo-pack' ),
255
 
256
+ // Reference: src/vue/plugins/constants.js:1175
257
+ __( 'Cafe', 'all-in-one-seo-pack' ),
258
 
259
+ // Reference: src/vue/plugins/constants.js:1176
260
+ __( 'Hotel', 'all-in-one-seo-pack' ),
261
 
262
+ // Reference: src/vue/plugins/constants.js:1177
263
+ __( 'Restaurant', 'all-in-one-seo-pack' ),
264
 
265
+ // Reference: src/vue/plugins/constants.js:1181
266
+ __( 'Groups', 'all-in-one-seo-pack' ),
267
 
268
+ // Reference: src/vue/plugins/constants.js:1184
269
+ /* Translators: This refers to a charity/non-profit organization. */
270
+ __( 'Cause', 'all-in-one-seo-pack' ),
271
 
272
+ // Reference: src/vue/plugins/constants.js:1185
273
+ __( 'Sports League', 'all-in-one-seo-pack' ),
274
 
275
+ // Reference: src/vue/plugins/constants.js:1186
276
+ __( 'Sports Team', 'all-in-one-seo-pack' ),
277
 
278
+ // Reference: src/vue/plugins/constants.js:1190
279
+ __( 'Organizations', 'all-in-one-seo-pack' ),
280
 
281
+ // Reference: src/vue/plugins/constants.js:1193
282
+ /* Translators: This refers to a music group. */
283
+ __( 'Band', 'all-in-one-seo-pack' ),
284
 
285
+ // Reference: src/vue/plugins/constants.js:1194
286
+ __( 'Non-Profit', 'all-in-one-seo-pack' ),
287
 
288
+ // Reference: src/vue/plugins/constants.js:1195
289
+ __( 'School', 'all-in-one-seo-pack' ),
290
 
291
+ // Reference: src/vue/plugins/constants.js:1196
292
+ __( 'University', 'all-in-one-seo-pack' ),
293
 
294
+ // Reference: src/vue/plugins/constants.js:1200
295
+ __( 'People', 'all-in-one-seo-pack' ),
296
 
297
+ // Reference: src/vue/plugins/constants.js:1202
298
+ __( 'Actor', 'all-in-one-seo-pack' ),
299
 
300
+ // Reference: src/vue/plugins/constants.js:1203
301
+ __( 'Athlete', 'all-in-one-seo-pack' ),
302
 
303
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:19
304
+ __( 'Author', 'all-in-one-seo-pack' ),
305
 
306
+ // Reference: src/vue/plugins/constants.js:1205
307
+ __( 'Director', 'all-in-one-seo-pack' ),
308
 
309
+ // Reference: src/vue/plugins/constants.js:1206
310
+ __( 'Musician', 'all-in-one-seo-pack' ),
311
 
312
+ // Reference: src/vue/plugins/constants.js:1207
313
+ __( 'Politician', 'all-in-one-seo-pack' ),
314
 
315
+ // Reference: src/vue/plugins/constants.js:1208
316
+ __( 'Profile', 'all-in-one-seo-pack' ),
317
 
318
+ // Reference: src/vue/plugins/constants.js:1209
319
+ __( 'Public Figure', 'all-in-one-seo-pack' ),
320
 
321
+ // Reference: src/vue/plugins/constants.js:1213
322
+ __( 'Places', 'all-in-one-seo-pack' ),
 
323
 
324
+ // Reference: src/vue/plugins/constants.js:1215
325
+ __( 'City', 'all-in-one-seo-pack' ),
 
326
 
327
+ // Reference: src/vue/plugins/constants.js:1216
328
+ __( 'Country', 'all-in-one-seo-pack' ),
329
 
330
+ // Reference: src/vue/plugins/constants.js:1217
331
+ __( 'Landmark', 'all-in-one-seo-pack' ),
332
 
333
+ // Reference: src/vue/plugins/constants.js:1218
334
+ __( 'State/Province', 'all-in-one-seo-pack' ),
335
 
336
+ // Reference: src/vue/plugins/constants.js:1222
337
+ __( 'Products & Entertainment', 'all-in-one-seo-pack' ),
338
 
339
+ // Reference: src/vue/plugins/constants.js:1224
340
+ __( 'Album', 'all-in-one-seo-pack' ),
 
341
 
342
+ // Reference: src/vue/plugins/constants.js:1225
343
+ __( 'Book', 'all-in-one-seo-pack' ),
344
 
345
+ // Reference: src/vue/plugins/constants.js:1226
346
+ __( 'Drink', 'all-in-one-seo-pack' ),
347
 
348
+ // Reference: src/vue/plugins/constants.js:1227
349
+ __( 'Food', 'all-in-one-seo-pack' ),
350
 
351
+ // Reference: src/vue/plugins/constants.js:1228
352
+ __( 'Game', 'all-in-one-seo-pack' ),
353
 
354
+ // Reference: src/vue/plugins/constants.js:1229
355
+ __( 'Movie', 'all-in-one-seo-pack' ),
356
 
357
+ // Reference: src/vue/plugins/constants.js:1230
358
+ __( 'Product', 'all-in-one-seo-pack' ),
359
 
360
+ // Reference: src/vue/plugins/constants.js:1231
361
+ __( 'Song', 'all-in-one-seo-pack' ),
362
 
363
+ // Reference: src/vue/plugins/constants.js:1232
364
+ __( 'TV Show', 'all-in-one-seo-pack' ),
365
 
366
+ // Reference: src/vue/plugins/constants.js:1233
367
+ __( 'Episode', 'all-in-one-seo-pack' ),
368
 
369
+ // Reference: src/vue/plugins/constants.js:1237
370
+ __( 'Websites', 'all-in-one-seo-pack' ),
371
 
372
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:72
373
+ __( 'Article', 'all-in-one-seo-pack' ),
374
 
375
+ // Reference: src/vue/plugins/constants.js:1240
376
+ __( 'Website', 'all-in-one-seo-pack' ),
377
 
378
+ // Reference: src/vue/components/common/core/AdditionalPages.vue:103
379
+ __( 'always', 'all-in-one-seo-pack' ),
 
380
 
381
+ // Reference: src/vue/plugins/constants.js:20
382
+ __( 'hourly', 'all-in-one-seo-pack' ),
 
383
 
384
+ // Reference: src/vue/plugins/constants.js:21
385
+ __( 'daily', 'all-in-one-seo-pack' ),
386
 
387
+ // Reference: src/vue/plugins/constants.js:22
388
+ __( 'weekly', 'all-in-one-seo-pack' ),
389
 
390
+ // Reference: src/vue/plugins/constants.js:23
391
+ __( 'monthly', 'all-in-one-seo-pack' ),
392
 
393
+ // Reference: src/vue/plugins/constants.js:24
394
+ __( 'yearly', 'all-in-one-seo-pack' ),
395
 
396
+ // Reference: src/vue/plugins/constants.js:25
397
+ __( 'never', 'all-in-one-seo-pack' ),
398
 
399
+ // Reference: src/vue/plugins/constants.js:29
400
+ __( 'No', 'all-in-one-seo-pack' ),
401
 
402
+ // Reference: src/vue/plugins/constants.js:30
403
+ __( 'Yes', 'all-in-one-seo-pack' ),
404
 
405
+ // Reference: src/vue/plugins/constants.js:31
406
+ __( 'Off', 'all-in-one-seo-pack' ),
407
 
408
+ // Reference: src/vue/plugins/constants.js:32
409
+ __( 'On', 'all-in-one-seo-pack' ),
410
 
411
+ // Reference: src/vue/plugins/constants.js:33
412
+ __( 'Show', 'all-in-one-seo-pack' ),
413
 
414
+ // Reference: src/vue/plugins/constants.js:34
415
+ __( 'Hide', 'all-in-one-seo-pack' ),
 
416
 
417
+ // Reference: src/vue/plugins/constants.js:35
418
+ __( 'Learn More', 'all-in-one-seo-pack' ),
419
 
420
+ // Reference: src/vue/plugins/constants.js:36
421
+ __( 'Disabled', 'all-in-one-seo-pack' ),
 
422
 
423
+ // Reference: src/vue/plugins/constants.js:37
424
+ __( 'Enabled', 'all-in-one-seo-pack' ),
425
 
426
+ // Reference: src/vue/plugins/constants.js:38
427
+ __( 'Preview', 'all-in-one-seo-pack' ),
428
 
429
+ // Reference: src/vue/pages/dashboard/views/Main.vue:225
430
+ // Reference: src/vue/pages/settings/views/Advanced.vue:271
431
+ __( 'SEO Analysis', 'all-in-one-seo-pack' ),
432
 
433
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:678
434
+ __( 'General Facebook Settings', 'all-in-one-seo-pack' ),
435
 
436
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:679
437
+ __( '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' ),
438
 
439
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:680
440
+ __( 'Enable Open Graph Markup', 'all-in-one-seo-pack' ),
441
 
442
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:681
443
+ __( 'Default Post Image Source', 'all-in-one-seo-pack' ),
444
 
445
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:682
446
+ __( 'Default Term Image Source', 'all-in-one-seo-pack' ),
447
 
448
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:683
449
+ __( 'Width', 'all-in-one-seo-pack' ),
 
450
 
451
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:684
452
+ __( 'Height', 'all-in-one-seo-pack' ),
 
453
 
454
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:685
455
+ __( 'Post Custom Field Name', 'all-in-one-seo-pack' ),
456
 
457
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:686
458
+ __( 'Term Custom Field Name', 'all-in-one-seo-pack' ),
459
 
460
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:687
461
+ __( 'Default Post Facebook Image', 'all-in-one-seo-pack' ),
462
 
463
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:688
464
+ __( 'Default Term Facebook Image', 'all-in-one-seo-pack' ),
465
 
466
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:328
467
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:689
468
+ __( 'Upload or Select Image', 'all-in-one-seo-pack' ),
469
 
470
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:329
471
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:690
472
+ __( 'Paste your image URL or select a new image', 'all-in-one-seo-pack' ),
473
 
474
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:691
475
+ __( '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' ),
476
 
477
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:692
478
+ __( 'Home Page Settings', 'all-in-one-seo-pack' ),
479
 
480
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:693
481
+ __( 'The Title of the Page or Site you are Sharing', 'all-in-one-seo-pack' ),
482
 
483
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:695
484
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
485
+ __( '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' ),
486
 
487
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:696
488
+ __( 'Image', 'all-in-one-seo-pack' ),
489
 
490
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:697
491
+ __( 'Site Name', 'all-in-one-seo-pack' ),
492
 
493
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:698
494
+ __( 'Title', 'all-in-one-seo-pack' ),
495
 
496
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:699
497
+ __( 'Use the home page title', 'all-in-one-seo-pack' ),
498
 
499
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:700
500
+ __( 'Click on the tags below to insert variables into your site name.', 'all-in-one-seo-pack' ),
501
 
502
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:701
503
+ __( 'Click on the tags below to insert variables into your home page title.', 'all-in-one-seo-pack' ),
504
 
505
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:702
506
+ __( 'Description', 'all-in-one-seo-pack' ),
507
 
508
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:703
509
+ __( 'Use the home page description', 'all-in-one-seo-pack' ),
510
 
511
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:704
512
+ __( 'Click on the tags below to insert variables into your description.', 'all-in-one-seo-pack' ),
513
 
514
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:331
515
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:705
516
+ __( 'Remove', 'all-in-one-seo-pack' ),
517
 
518
+ // Reference: src/vue/pages/settings/views/Advanced.vue:268
519
+ __( 'Advanced Settings', 'all-in-one-seo-pack' ),
520
 
521
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:707
522
+ __( 'Facebook Admin ID', 'all-in-one-seo-pack' ),
523
 
524
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:708
525
+ __( 'Facebook App ID', 'all-in-one-seo-pack' ),
526
 
527
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:709
528
+ __( 'Facebook Author URL', 'all-in-one-seo-pack' ),
529
 
530
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:710
531
+ __( 'Enter your Facebook Admin ID here. You can enter multiple Facebook Admin IDs by separating them with a comma.', 'all-in-one-seo-pack' ),
532
 
533
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:711
534
+ __( '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' ),
535
 
536
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:712
537
+ __( 'Will be overriden if the Facebook author URL is present in the individual User Profile.', 'all-in-one-seo-pack' ),
538
 
539
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:713
540
+ __( 'How to get your Facebook Admin ID', 'all-in-one-seo-pack' ),
541
 
542
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:714
543
+ __( 'How to get your Facebook App ID', 'all-in-one-seo-pack' ),
544
 
545
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:715
546
+ __( 'How to get your Facebook Author URL', 'all-in-one-seo-pack' ),
547
 
548
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:716
549
+ __( 'Show Facebook Author', 'all-in-one-seo-pack' ),
550
 
551
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:717
552
+ __( 'Default Post Type Object Types', 'all-in-one-seo-pack' ),
553
 
554
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:718
555
+ __( 'Default Taxonomy Object Types', 'all-in-one-seo-pack' ),
556
 
557
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:719
558
+ __( 'Default Taxonomy Object Types are only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
559
 
560
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:720
561
+ __( 'Default Term Image Source is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
562
 
563
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:721
564
+ __( 'Automatically Generate Article Tags', 'all-in-one-seo-pack' ),
565
 
566
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:722
567
+ __( 'Use Keywords in Article Tags', 'all-in-one-seo-pack' ),
568
 
569
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:723
570
+ __( 'Use Categories in Article Tags', 'all-in-one-seo-pack' ),
571
 
572
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:724
573
+ __( 'Use Post Tags in Article Tags', 'all-in-one-seo-pack' ),
574
 
575
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:726
576
+ /* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
577
+ __( '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' ),
578
 
579
+ // Reference: src/vue/pages/social-networks/views/Facebook.vue:727
580
+ __( 'Object Type', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
581
 
582
  // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:141
 
583
  __( 'Video and News Sitemaps', 'all-in-one-seo-pack' ),
584
 
585
  // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:142
 
586
  __( 'Image SEO Optimization', 'all-in-one-seo-pack' ),
587
 
588
  // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:143
589
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:218
590
  __( 'Local Business SEO', 'all-in-one-seo-pack' ),
591
 
592
  // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:144
 
593
  __( 'Advanced WooCommerce', 'all-in-one-seo-pack' ),
594
 
595
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:139
596
+ // Reference: src/vue/pages/dashboard/views/Main.vue:207
597
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:145
598
+ __( 'SEO for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
599
+
600
  // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:146
 
601
  __( 'And many more...', 'all-in-one-seo-pack' ),
602
 
603
  // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:147
628
  // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:159
629
  __( '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' ),
630
 
631
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:163
632
  __( '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' ),
633
 
634
+ // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:167
635
  __( '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' ),
636
 
637
  // Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:171
638
  __( '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' ),
639
 
640
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:65
641
+ __( 'Recommended Improvements', 'all-in-one-seo-pack' ),
642
 
643
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:66
644
+ __( 'Good Results', 'all-in-one-seo-pack' ),
645
 
646
+ // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:67
647
+ __( 'Complete SEO Checklist', 'all-in-one-seo-pack' ),
648
 
649
+ // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:80
650
+ __( 'Refresh Results', 'all-in-one-seo-pack' ),
651
 
652
+ // Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:80
653
+ __( 'All Items', 'all-in-one-seo-pack' ),
654
 
655
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:63
656
+ __( 'Critical Issues', 'all-in-one-seo-pack' ),
657
 
658
+ // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:111
659
+ __( 'Enter Competitor URL', 'all-in-one-seo-pack' ),
660
 
661
+ // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:112
662
+ __( 'Perform in-depth SEO Analysis of your competitor\'s website.', 'all-in-one-seo-pack' ),
663
 
664
+ // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:113
665
+ __( 'Analyze', 'all-in-one-seo-pack' ),
666
 
667
+ // Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:114
668
+ __( 'Please enter a valid URL.', 'all-in-one-seo-pack' ),
669
 
670
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:77
671
+ __( 'The URL provided is invalid.', 'all-in-one-seo-pack' ),
672
 
673
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:79
674
+ __( 'We were unable to parse the content for this site.', 'all-in-one-seo-pack' ),
675
 
676
+ // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:82
677
+ /* Translators: 1 - The plugin short name ('AIOSEO'). */
678
+ __( 'Your site is not connected. Please connect to %1$s, then try again.', 'all-in-one-seo-pack' ),
679
 
680
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:100
681
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:194
682
+ __( 'Locations Settings', 'all-in-one-seo-pack' ),
683
 
684
+ // Reference: src/vue/components/common/core/FeatureCard.vue:125
685
+ // Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:136
686
+ __( 'An error occurred while activating the addon. Please upload it manually or contact support for more information.', 'all-in-one-seo-pack' ),
687
 
688
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:417
689
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
690
+ __( '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' ),
691
 
692
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:261
693
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:11
694
+ __( 'Enable Sitemap', 'all-in-one-seo-pack' ),
695
 
696
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:419
697
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:127
698
+ __( 'Sitemap Settings', 'all-in-one-seo-pack' ),
699
 
700
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:400
701
+ __( 'Enable Sitemap Indexes', 'all-in-one-seo-pack' ),
 
702
 
703
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:401
704
+ __( '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' ),
 
705
 
706
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:402
707
+ __( 'Links Per Sitemap', 'all-in-one-seo-pack' ),
 
708
 
709
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:13
710
+ __( 'Noindexed content will not be displayed in your sitemap.', 'all-in-one-seo-pack' ),
 
711
 
712
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:14
713
+ __( 'Do you get a blank sitemap or 404 error?', 'all-in-one-seo-pack' ),
 
714
 
715
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:425
716
+ __( 'Open Sitemap', 'all-in-one-seo-pack' ),
 
717
 
718
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:403
719
+ __( 'Allows you to specify the maximum number of posts in a sitemap (up to 50,000).', 'all-in-one-seo-pack' ),
 
720
 
721
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:427
722
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:135
723
+ __( 'Automatically Ping Search Engines', 'all-in-one-seo-pack' ),
724
 
725
+ // Reference: src/vue/components/common/core/PriorityScore.vue:62
726
+ __( 'Post Types', 'all-in-one-seo-pack' ),
 
727
 
728
+ // Reference: src/vue/components/common/core/PriorityScore.vue:63
729
+ __( 'Taxonomies', 'all-in-one-seo-pack' ),
 
730
 
731
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:430
732
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:138
733
+ __( 'Date Archive Sitemap', 'all-in-one-seo-pack' ),
734
 
735
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:431
736
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:139
737
+ __( 'Include Date Archives in your sitemap.', 'all-in-one-seo-pack' ),
738
 
739
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:432
740
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:140
741
+ __( 'Author Sitemap', 'all-in-one-seo-pack' ),
742
 
743
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:433
744
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:141
745
+ __( 'Include Author Archives in your sitemap.', 'all-in-one-seo-pack' ),
746
 
747
+ // Reference: src/vue/pages/settings/views/Advanced.vue:273
748
+ __( 'Include All Post Types', 'all-in-one-seo-pack' ),
 
749
 
750
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:435
751
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:143
752
+ __( 'Select which Post Types appear in your sitemap.', 'all-in-one-seo-pack' ),
753
 
754
+ // Reference: src/vue/pages/settings/views/Advanced.vue:299
755
+ __( 'Include All Taxonomies', 'all-in-one-seo-pack' ),
 
756
 
757
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:437
758
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:145
759
+ __( 'Select which Taxonomies appear in your sitemap.', 'all-in-one-seo-pack' ),
760
 
761
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:438
762
+ __( 'Additional Pages', 'all-in-one-seo-pack' ),
 
763
 
764
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:439
765
+ __( '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' ),
766
 
767
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:401
768
+ __( 'Exclude Posts / Pages', 'all-in-one-seo-pack' ),
769
 
770
+ // Reference: src/vue/pages/search-appearance/views/Advanced.vue:402
771
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:414
772
+ __( 'Exclude Terms', 'all-in-one-seo-pack' ),
773
 
774
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:415
775
+ __( 'Any posts that are assigned to these terms will also be excluded from your sitemap.', 'all-in-one-seo-pack' ),
776
 
777
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:118
778
+ __( 'Priority Score', 'all-in-one-seo-pack' ),
779
 
780
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:445
781
+ __( 'Grouped', 'all-in-one-seo-pack' ),
782
 
783
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:446
784
+ __( 'Post Type Priority Score', 'all-in-one-seo-pack' ),
785
 
786
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:447
787
+ __( 'Taxonomy Priority Score', 'all-in-one-seo-pack' ),
788
 
789
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:448
790
+ __( 'Exclude Images', 'all-in-one-seo-pack' ),
791
 
792
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:449
793
+ __( 'Exclude Images from your sitemap.', 'all-in-one-seo-pack' ),
794
 
795
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:450
796
+ __( 'Dynamically Generate', 'all-in-one-seo-pack' ),
797
 
798
+ // Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:451
799
+ __( 'Dynamically creates the XML Sitemap instead of using a static file.', 'all-in-one-seo-pack' ),
800
 
801
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:436
802
+ __( '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' ),
803
 
804
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:437
805
+ __( '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' ),
806
 
807
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:90
808
+ __( 'Block Bad Bots using HTTP', 'all-in-one-seo-pack' ),
809
 
810
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:91
811
+ __( 'Block Referral Spam using HTTP', 'all-in-one-seo-pack' ),
812
 
813
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:92
814
+ __( 'Track Blocked Bots', 'all-in-one-seo-pack' ),
815
 
816
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:93
817
+ __( 'Use Custom Blocklists', 'all-in-one-seo-pack' ),
818
 
819
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:94
820
+ __( 'User Agent Blocklist', 'all-in-one-seo-pack' ),
821
 
822
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:95
823
+ __( 'Referer Blocklist', 'all-in-one-seo-pack' ),
824
 
825
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:96
826
+ __( 'Blocked Bots Log', 'all-in-one-seo-pack' ),
827
 
828
+ // Reference: src/vue/pages/tools/views/BadBotBlocker.vue:98
829
+ /* Translators: 1 - The location of the log file. */
830
+ __( 'The log for the blocked bots is located here: %1$s', 'all-in-one-seo-pack' ),
831
 
832
+ // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:41
833
+ __( 'Edit .htaccess', 'all-in-one-seo-pack' ),
834
 
835
+ // Reference: src/vue/pages/tools/views/HtaccessEditor.vue:43
836
+ __( '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' ),
837
 
838
+ // Reference: src/vue/components/common/core/AdditionalPages.vue:101
839
+ __( 'Delete', 'all-in-one-seo-pack' ),
840
 
841
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:101
842
+ __( 'Success! The backup was deleted.', 'all-in-one-seo-pack' ),
843
 
844
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:102
845
+ __( 'Success! The backup was restored.', 'all-in-one-seo-pack' ),
846
 
847
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:146
848
+ __( '%1$s at %2$s', 'all-in-one-seo-pack' ),
849
 
850
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:96
851
+ __( 'Backup Settings', 'all-in-one-seo-pack' ),
852
 
853
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:97
854
+ __( 'You have no saved backups.', 'all-in-one-seo-pack' ),
855
 
856
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:98
857
+ __( 'Create Backup', 'all-in-one-seo-pack' ),
858
 
859
+ // Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:99
860
+ __( 'Restore', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
861
 
862
  // Reference: src/vue/mixins/Image.js:119
863
  __( 'Choose Image', 'all-in-one-seo-pack' ),
889
  // Reference: src/vue/mixins/Image.js:71
890
  __( 'Custom Image', 'all-in-one-seo-pack' ),
891
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
892
  // Reference: src/vue/mixins/SeoSiteScore.js:10
893
  __( 'to analyze a competitor site.', 'all-in-one-seo-pack' ),
894
 
895
  // Reference: src/vue/mixins/SeoSiteScore.js:11
896
  __( 'A valid license key is required', 'all-in-one-seo-pack' ),
897
 
898
+ // Reference: src/vue/pages/connect/router/paths.js:20
899
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
900
+ __( 'Connect with %1$s', 'all-in-one-seo-pack' ),
901
+
902
+ // Reference: src/vue/mixins/SeoSiteScore.js:5
903
  __( 'We\'ve got some<br>work to do!', 'all-in-one-seo-pack' ),
904
 
905
+ // Reference: src/vue/mixins/SeoSiteScore.js:6
906
  __( 'Needs<br>Improvement!', 'all-in-one-seo-pack' ),
907
 
908
+ // Reference: src/vue/mixins/SeoSiteScore.js:7
909
  __( 'Very Good!', 'all-in-one-seo-pack' ),
910
 
911
+ // Reference: src/vue/mixins/SeoSiteScore.js:8
912
  __( 'Excellent!', 'all-in-one-seo-pack' ),
913
 
914
  // Reference: src/vue/mixins/SeoSiteScore.js:9
915
  __( 'to see your Site Score.', 'all-in-one-seo-pack' ),
916
 
917
+ // Reference: src/vue/mixins/Wizard.js:6
918
+ __( 'Skip this Step', 'all-in-one-seo-pack' ),
919
 
920
+ // Reference: src/vue/mixins/Wizard.js:7
921
+ __( 'Go Back', 'all-in-one-seo-pack' ),
922
 
923
+ // Reference: src/vue/mixins/Wizard.js:8
924
+ __( 'Save and Continue', 'all-in-one-seo-pack' ),
925
 
926
  // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:67
927
  __( 'Complete Site Audit Checklist', 'all-in-one-seo-pack' ),
932
  // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:29
933
  __( 'Errors', 'all-in-one-seo-pack' ),
934
 
935
+ // Reference: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:23
936
+ /* Translators: 1 - Number of sentences. */
937
+ __( 'The text contains %1$d consecutive sentences starting with the same word. Try to mix things up!', 'all-in-one-seo-pack' ),
938
 
939
+ // Reference: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:31
940
+ __( 'Consecutive sentences', 'all-in-one-seo-pack' ),
941
 
942
+ // Reference: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:32
943
+ __( 'There is enough variety in your sentences. That\'s great!', 'all-in-one-seo-pack' ),
944
 
945
+ // Reference: src/vue/plugins/truSEO/Analysis/isInternalLink.js:22
946
+ __( 'You are linking to other resources on your website which is great.', 'all-in-one-seo-pack' ),
947
 
948
+ // Reference: src/vue/plugins/truSEO/Analysis/isInternalLink.js:30
949
+ __( 'Internal links', 'all-in-one-seo-pack' ),
950
 
951
+ // Reference: src/vue/plugins/truSEO/Analysis/isInternalLink.js:31
952
+ __( 'We couldn\'t find any internal links in your content. Add internal links in your content.', 'all-in-one-seo-pack' ),
953
 
954
+ // Reference: src/vue/plugins/truSEO/Analysis/paragraphLength.js:23
955
+ __( 'At least one paragraph is long. Consider using short paragraphs.', 'all-in-one-seo-pack' ),
956
 
957
+ // Reference: src/vue/plugins/truSEO/Analysis/paragraphLength.js:30
958
+ __( 'Paragraphs Length', 'all-in-one-seo-pack' ),
959
 
960
+ // Reference: src/vue/plugins/truSEO/Analysis/paragraphLength.js:31
961
+ __( 'You are using short paragraphs.', 'all-in-one-seo-pack' ),
 
962
 
963
+ // Reference: src/vue/plugins/truSEO/Analysis/passiveVoice.js:38
964
+ __( 'You\'re using enough active voice. That\'s great!', 'all-in-one-seo-pack' ),
965
 
966
+ // Reference: src/vue/plugins/truSEO/Analysis/passiveVoice.js:45
967
+ __( 'Passive Voice', 'all-in-one-seo-pack' ),
968
 
969
+ // Reference: src/vue/plugins/truSEO/Analysis/passiveVoice.js:47
970
+ /* Translators: 1 - Percentage of the sentences, 2 - Expected maximum percentage of sentences. */
971
+ __( '%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' ),
972
 
973
+ // Reference: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:26
974
+ __( 'No meta description has been specified. Search engines will display copy from the page instead. Make sure to write one!', 'all-in-one-seo-pack' ),
975
 
976
+ // Reference: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:36
977
+ __( 'The meta description is too short.', 'all-in-one-seo-pack' ),
978
 
979
+ // Reference: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:45
980
+ __( 'Meta description length', 'all-in-one-seo-pack' ),
981
 
982
+ // Reference: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:46
983
+ __( 'The meta description is over 160 characters.', 'all-in-one-seo-pack' ),
984
 
985
+ // Reference: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:55
986
+ __( 'Meta description Length', 'all-in-one-seo-pack' ),
 
987
 
988
+ // Reference: src/vue/plugins/truSEO/Analysis/titleLength.js:61
989
+ __( 'Well done!', 'all-in-one-seo-pack' ),
 
990
 
991
+ // Reference: src/vue/plugins/truSEO/Analysis/isExternalLink.js:22
992
+ __( 'Great! You are linking to external resources.', 'all-in-one-seo-pack' ),
 
993
 
994
+ // Reference: src/vue/plugins/truSEO/Analysis/isExternalLink.js:30
995
+ __( 'External links', 'all-in-one-seo-pack' ),
 
996
 
997
+ // Reference: src/vue/plugins/truSEO/Analysis/isExternalLink.js:31
998
+ __( 'No outbound links were found. Link out to external resources.', 'all-in-one-seo-pack' ),
 
999
 
1000
+ // Reference: src/vue/plugins/truSEO/Analysis/transitionWords.js:21
1001
+ __( 'None of the sentences contain transition words. Use some', 'all-in-one-seo-pack' ),
1002
 
1003
+ // Reference: src/vue/plugins/truSEO/Analysis/transitionWords.js:32
1004
+ /* Translators: 1 - Percentage of the sentences. */
1005
+ __( 'Only %1$s of the sentences contain transition words, which is not enough. Use more of them', 'all-in-one-seo-pack' ),
1006
 
1007
+ // Reference: src/vue/plugins/truSEO/Analysis/transitionWords.js:40
1008
+ __( 'Transition words', 'all-in-one-seo-pack' ),
1009
 
1010
+ // Reference: src/vue/plugins/truSEO/Analysis/titleLength.js:21
1011
+ __( 'Please add a title first.', 'all-in-one-seo-pack' ),
1012
 
1013
+ // Reference: src/vue/plugins/truSEO/Analysis/titleLength.js:31
1014
+ __( 'No title has been specified. Make sure to write one!', 'all-in-one-seo-pack' ),
1015
 
1016
+ // Reference: src/vue/plugins/truSEO/Analysis/titleLength.js:41
1017
+ __( 'The title is too short.', 'all-in-one-seo-pack' ),
1018
 
1019
+ // Reference: src/vue/plugins/truSEO/Analysis/titleLength.js:50
1020
+ __( 'SEO Title length', 'all-in-one-seo-pack' ),
1021
 
1022
+ // Reference: src/vue/plugins/truSEO/Analysis/titleLength.js:51
1023
+ __( 'The title is over 60 characters.', 'all-in-one-seo-pack' ),
1024
 
1025
+ // Reference: src/vue/plugins/truSEO/Analysis/titleLength.js:60
1026
+ __( 'Title Length', 'all-in-one-seo-pack' ),
1027
 
1028
+ // Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:47
1029
+ __( 'Good job!', 'all-in-one-seo-pack' ),
1030
 
1031
+ // Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:51
1032
+ __( 'very easy', 'all-in-one-seo-pack' ),
1033
 
1034
+ // Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:79
1035
+ /* Translators: 1 - Flesch Reading Result Number, 2 - Read difficulty string. */
1036
+ __( 'The copy scores %1$s in the test, which is considered %2$s to read.', 'all-in-one-seo-pack' ),
1037
 
1038
+ // Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:87
1039
+ __( 'Flesch Reading Ease', 'all-in-one-seo-pack' ),
1040
 
1041
+ // Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:89
1042
+ /* Translators: 1 - Flesch Reading Result Number, 2 - Read difficulty string, 3 - Note string. */
1043
+ __( 'The copy scores %1$s in the test, which is considered %2$s to read. %3$s', 'all-in-one-seo-pack' ),
1044
 
1045
+ // Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:97
1046
+ __( 'Flesch Reading Ease N/A', 'all-in-one-seo-pack' ),
1047
 
1048
+ // Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:98
1049
+ __( ':-)', 'all-in-one-seo-pack' ),
1050
 
1051
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:22
1052
+ __( 'Focus Keyphrase found in content.', 'all-in-one-seo-pack' ),
1053
 
1054
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:30
1055
+ __( 'Focus Keyphrase in content', 'all-in-one-seo-pack' ),
1056
 
1057
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:31
1058
+ __( 'Focus Keyphrase not found in content.', 'all-in-one-seo-pack' ),
1059
 
1060
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInImageAlt.js:28
1061
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
1062
+ __( '%1$s found in image alt attribute(s).', 'all-in-one-seo-pack' ),
1063
 
1064
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInImageAlt.js:37
1065
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
1066
+ __( '%1$s in image alt attributes', 'all-in-one-seo-pack' ),
1067
 
1068
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInImageAlt.js:39
1069
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
1070
+ __( '%1$s not found in image alt attribute(s). Add an image with your %1$s as alt text.', 'all-in-one-seo-pack' ),
1071
 
1072
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInDescription.js:21
1073
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
1074
+ __( '%1$s in meta description', 'all-in-one-seo-pack' ),
1075
 
1076
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInDescription.js:27
1077
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
1078
+ __( '%1$s found in meta description.', 'all-in-one-seo-pack' ),
1079
 
1080
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInDescription.js:37
1081
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
1082
+ __( '%1$s not found in meta description.', 'all-in-one-seo-pack' ),
1083
 
1084
+ // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:65
1085
+ /* Translators: 1 - Expand to the number of text sections not separated by subheadings, 2 - expands to the recommended number of words following a subheading. */
1086
+ __( '%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' ),
1087
 
1088
+ // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:74
1089
+ __( 'You are not using any subheadings, although your text is rather long. Try and add some subheadings.', 'all-in-one-seo-pack' ),
 
1090
 
1091
+ // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:84
1092
+ __( 'Great job!', 'all-in-one-seo-pack' ),
1093
 
1094
+ // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:92
1095
+ __( 'Subheading distribution', 'all-in-one-seo-pack' ),
1096
+
1097
+ // Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:93
1098
+ __( 'You are not using any subheadings, but your text is short enough and probably doesn\'t need them.', 'all-in-one-seo-pack' ),
1099
+
1100
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInTitle.js:22
1101
+ __( 'Focus Keyphrase found in SEO title.', 'all-in-one-seo-pack' ),
1102
+
1103
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInTitle.js:30
1104
+ __( 'Focus Keyphrase in SEO title', 'all-in-one-seo-pack' ),
1105
+
1106
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInTitle.js:31
1107
+ __( 'Focus Keyphrase not found in SEO title.', 'all-in-one-seo-pack' ),
1108
+
1109
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:26
1110
+ __( 'Focus Keyphrase used in the URL.', 'all-in-one-seo-pack' ),
1111
+
1112
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:34
1113
+ __( 'Focus Keyphrase in URL', 'all-in-one-seo-pack' ),
1114
+
1115
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:35
1116
+ __( 'Focus Keyphrase not found in the URL.', 'all-in-one-seo-pack' ),
1117
+
1118
+ // Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:27
1119
+ __( 'Please add some content first.', 'all-in-one-seo-pack' ),
1120
+
1121
+ // Reference: src/vue/plugins/truSEO/Analysis/contentHasAssets.js:24
1122
+ __( 'Your content contains images and/or video(s)..', 'all-in-one-seo-pack' ),
1123
+
1124
+ // Reference: src/vue/plugins/truSEO/Analysis/contentHasAssets.js:31
1125
+ __( 'Images/Videos in content', 'all-in-one-seo-pack' ),
1126
+
1127
+ // Reference: src/vue/plugins/truSEO/Analysis/contentHasAssets.js:32
1128
+ __( 'You are not using rich media like images or videos.', 'all-in-one-seo-pack' ),
1129
+
1130
+ // Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:38
1131
+ __( 'The content length is ok. Good job!', 'all-in-one-seo-pack' ),
1132
+
1133
+ // Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:54
1134
+ __( 'This is far below the recommended minimum of words.', 'all-in-one-seo-pack' ),
1135
+
1136
+ // Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:72
1137
+ __( 'Content Length', 'all-in-one-seo-pack' ),
1138
+
1139
+ // Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:73
1140
+ __( 'The content is below the minimum of words. Add more content.', 'all-in-one-seo-pack' ),
1141
+
1142
+ // Reference: src/vue/plugins/truSEO/Analysis/sentenceLength.js:34
1143
+ __( 'Sentence length is looking great!', 'all-in-one-seo-pack' ),
1144
+
1145
+ // Reference: src/vue/plugins/truSEO/Analysis/sentenceLength.js:52
1146
+ __( 'Sentences Length', 'all-in-one-seo-pack' ),
1147
+
1148
+ // Reference: src/vue/plugins/truSEO/Analysis/sentenceLength.js:54
1149
+ /* Translators: 1 - Number of the sentences, 2 - Number of words, 3 - Recommended maximum of words. */
1150
+ __( '%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' ),
1151
+
1152
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:25
1153
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
1154
+ __( '%1$s length', 'all-in-one-seo-pack' ),
1155
+
1156
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:31
1157
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
1158
+ __( 'No %1$s was set. Set a %1$s in order to calculate your SEO score.', 'all-in-one-seo-pack' ),
1159
+
1160
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:52
1161
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
1162
+ __( '%1$s is slightly long. Try to make it shorter.', 'all-in-one-seo-pack' ),
1163
+
1164
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:62
1165
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
1166
+ __( '%1$s is too long. Try to make it shorter.', 'all-in-one-seo-pack' ),
1167
+
1168
+ // Reference: src/vue/pages/post-settings/views/Main.vue:55
1169
+ __( 'Preview Snippet Editor', 'all-in-one-seo-pack' ),
1170
+
1171
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInIntroduction.js:24
1172
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
1173
+ __( '%1$s in introduction', 'all-in-one-seo-pack' ),
1174
+
1175
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInIntroduction.js:29
1176
+ __( 'No content added yet.', 'all-in-one-seo-pack' ),
1177
+
1178
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInIntroduction.js:44
1179
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
1180
+ __( 'Your %1$s appears in the first paragraph. Well done!', 'all-in-one-seo-pack' ),
1181
+
1182
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInIntroduction.js:54
1183
+ /* Translators: 1 - Focus Keyphrase or Keyphrase. */
1184
+ __( 'Your %1$s does not appear in the first paragraph. Make sure the topic is clear immediately.', 'all-in-one-seo-pack' ),
1185
+
1186
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseBeginningTitle.js:20
1187
+ __( 'Focus Keyphrase used at the beginning of SEO title.', 'all-in-one-seo-pack' ),
1188
+
1189
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseBeginningTitle.js:28
1190
+ __( 'Focus Keyphrase at the beginning of SEO Title', 'all-in-one-seo-pack' ),
1191
+
1192
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseBeginningTitle.js:29
1193
+ __( 'Focus Keyphrase doesn\'t appear at the beginning of SEO title.', 'all-in-one-seo-pack' ),
1194
+
1195
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:103
1196
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:197
1197
+ __( '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' ),
1198
+
1199
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:104
1200
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:198
1201
+ __( 'Multiple Locations', 'all-in-one-seo-pack' ),
1202
+
1203
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:105
1204
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:199
1205
+ __( 'Display Location Info', 'all-in-one-seo-pack' ),
1206
+
1207
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:119
1208
+ __( 'Business Info', 'all-in-one-seo-pack' ),
1209
+
1210
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:107
1211
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:201
1212
+ __( 'Business Name', 'all-in-one-seo-pack' ),
1213
+
1214
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:52
1215
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:122
1216
+ __( 'Business Type', 'all-in-one-seo-pack' ),
1217
+
1218
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:123
1219
+ __( 'URLs', 'all-in-one-seo-pack' ),
1220
+
1221
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:110
1222
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:204
1223
+ __( 'Business Address', 'all-in-one-seo-pack' ),
1224
+
1225
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:53
1226
+ __( 'Business Contact Info', 'all-in-one-seo-pack' ),
1227
+
1228
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:112
1229
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:206
1230
+ __( 'Business IDs', 'all-in-one-seo-pack' ),
1231
+
1232
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:54
1233
+ __( 'Payment Info', 'all-in-one-seo-pack' ),
1234
+
1235
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:114
1236
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:208
1237
+ __( 'Area Served', 'all-in-one-seo-pack' ),
1238
+
1239
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:55
1240
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:124
1241
+ __( 'Business Image', 'all-in-one-seo-pack' ),
1242
+
1243
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:330
1244
+ __( 'Minimum size: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or WEBP format.', 'all-in-one-seo-pack' ),
1245
+
1246
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:120
1247
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
1248
+ __( 'Upgrade to Pro and Unlock Local SEO', 'all-in-one-seo-pack' ),
1249
+
1250
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:121
1251
+ // Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:303
1252
+ __( 'Local SEO is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
1253
+
1254
+ // Reference: src/vue/components/common/core/PriorityScore.vue:77
1255
+ __( 'default', 'all-in-one-seo-pack' ),
1256
+
1257
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:135
1258
+ __( 'Animal Shelter', 'all-in-one-seo-pack' ),
1259
+
1260
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:126
1261
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:218
1262
+ __( 'Archive Organization', 'all-in-one-seo-pack' ),
1263
+
1264
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:127
1265
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:219
1266
+ __( 'Automotive Business', 'all-in-one-seo-pack' ),
1267
+
1268
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:128
1269
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:220
1270
+ __( 'Childcare', 'all-in-one-seo-pack' ),
1271
+
1272
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:129
1273
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:221
1274
+ __( 'Dentist', 'all-in-one-seo-pack' ),
1275
+
1276
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:130
1277
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:222
1278
+ __( 'Dry Cleaning/Laundry', 'all-in-one-seo-pack' ),
1279
+
1280
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:131
1281
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:223
1282
+ __( 'Emergency Service', 'all-in-one-seo-pack' ),
1283
+
1284
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:132
1285
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:224
1286
+ __( 'Employment Agency', 'all-in-one-seo-pack' ),
1287
+
1288
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:133
1289
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:225
1290
+ __( 'Entertainment Business', 'all-in-one-seo-pack' ),
1291
+
1292
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:134
1293
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:226
1294
+ __( 'Financial Service', 'all-in-one-seo-pack' ),
1295
+
1296
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:135
1297
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:227
1298
+ __( 'Food Establishment', 'all-in-one-seo-pack' ),
1299
+
1300
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:136
1301
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:228
1302
+ __( 'Government Office', 'all-in-one-seo-pack' ),
1303
+
1304
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:137
1305
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:229
1306
+ __( 'Health & Beauty Business', 'all-in-one-seo-pack' ),
1307
+
1308
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:138
1309
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:230
1310
+ __( 'Home & Construction Business', 'all-in-one-seo-pack' ),
1311
+
1312
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:139
1313
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:231
1314
+ __( 'Internet Cafe', 'all-in-one-seo-pack' ),
1315
+
1316
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:140
1317
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:232
1318
+ __( 'Legal Service', 'all-in-one-seo-pack' ),
1319
+
1320
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:141
1321
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:233
1322
+ __( 'Library', 'all-in-one-seo-pack' ),
1323
+
1324
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:142
1325
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:234
1326
+ __( 'Lodging Business', 'all-in-one-seo-pack' ),
1327
+
1328
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:143
1329
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:235
1330
+ __( 'Medical Business', 'all-in-one-seo-pack' ),
1331
+
1332
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:144
1333
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:236
1334
+ __( 'Radio Station', 'all-in-one-seo-pack' ),
1335
+
1336
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:145
1337
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:237
1338
+ __( 'Real Estate Agent', 'all-in-one-seo-pack' ),
1339
+
1340
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:146
1341
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:238
1342
+ __( 'Recycling Center', 'all-in-one-seo-pack' ),
1343
+
1344
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:147
1345
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:239
1346
+ __( 'Self Storage', 'all-in-one-seo-pack' ),
1347
+
1348
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:148
1349
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:240
1350
+ __( 'Shopping Center', 'all-in-one-seo-pack' ),
1351
+
1352
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:149
1353
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:241
1354
+ __( 'Sports Activity Location', 'all-in-one-seo-pack' ),
1355
 
1356
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:150
1357
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:242
1358
+ __( 'Store', 'all-in-one-seo-pack' ),
1359
 
1360
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:151
1361
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:243
1362
+ __( 'Television Station', 'all-in-one-seo-pack' ),
1363
 
1364
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:152
1365
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:244
1366
+ __( 'Tourist Information Center', 'all-in-one-seo-pack' ),
1367
 
1368
+ // Reference: src/vue/pages/local-seo/views/lite/Locations.vue:153
1369
+ // Reference: src/vue/pages/local-seo/views/pro/LocationsPro.vue:245
1370
+ __( 'Travel Agency', 'all-in-one-seo-pack' ),
1371
 
1372
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:12
1373
+ __( 'Open Video Sitemap', 'all-in-one-seo-pack' ),
1374
 
1375
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:15
1376
+ __( 'Upgrade to Pro and Unlock Video Sitemaps', 'all-in-one-seo-pack' ),
1377
 
1378
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:16
1379
+ __( 'Video Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
1380
 
1381
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:17
1382
+ __( 'This feature requires one of the following plans:', 'all-in-one-seo-pack' ),
1383
 
1384
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:7
1385
+ __( 'Custom Field Support', 'all-in-one-seo-pack' ),
1386
 
1387
+ // Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:8
1388
+ __( 'Exclude Pages/Posts', 'all-in-one-seo-pack' ),
1389
 
1390
+ // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:12
1391
+ __( 'Open News Sitemap', 'all-in-one-seo-pack' ),
1392
 
1393
+ // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:15
1394
+ __( 'Upgrade to Pro and Unlock News Sitemaps', 'all-in-one-seo-pack' ),
 
1395
 
1396
+ // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:16
1397
+ __( 'News Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
1398
 
1399
+ // Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:8
1400
+ __( 'Set Publication Name', 'all-in-one-seo-pack' ),
1401
 
1402
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:47
1403
+ __( 'Use more focus keyphrases in your H2 and H3 subheadings!', 'all-in-one-seo-pack' ),
 
1404
 
1405
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:56
1406
+ __( 'More than 75% of your H2 and H3 subheadings reflect the topic of your copy. That\'s too much. Don\'t over-optimize!', 'all-in-one-seo-pack' ),
1407
 
1408
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:65
1409
+ __( 'Your H2 or H3 subheading reflects the topic of your copy. Good job!', 'all-in-one-seo-pack' ),
1410
 
1411
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:74
1412
+ __( 'Your H2 and H3 subheadings reflects the topic of your copy. Good job!', 'all-in-one-seo-pack' ),
1413
 
1414
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:82
1415
+ __( 'Focus Keyphrase in Subheadings', 'all-in-one-seo-pack' ),
1416
 
1417
+ // Reference: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:83
1418
+ __( 'Use your focus keyphrase more in your H2 and H3 subheadings', 'all-in-one-seo-pack' ),
1419
 
1420
+ // Reference: src/vue/mixins/Notifications.js:6
1421
+ __( 'Notifications', 'all-in-one-seo-pack' ),
1422
 
1423
+ // Reference: src/vue/mixins/Notifications.js:7
1424
+ __( 'New Notifications', 'all-in-one-seo-pack' ),
1425
 
1426
+ // Reference: src/vue/mixins/Notifications.js:8
1427
+ __( 'Active Notifications', 'all-in-one-seo-pack' ),
1428
 
1429
+ // Reference: src/vue/mixins/License.js:11
1430
+ __( 'Your license has been disabled.', 'all-in-one-seo-pack' ),
1431
 
1432
+ // Reference: src/vue/mixins/License.js:15
1433
+ __( 'Your license key is invalid.', 'all-in-one-seo-pack' ),
1434
 
1435
+ // Reference: src/vue/mixins/License.js:4
1436
+ __( 'You have not yet added a license key.', 'all-in-one-seo-pack' ),
1437
 
1438
+ // Reference: src/vue/mixins/License.js:7
1439
+ __( 'Your license has expired.', 'all-in-one-seo-pack' ),
1440
 
1441
+ // Reference: src/vue/mixins/MaxCounts.js:6
1442
+ /* Translators: 1 - A number, 2 - A number. */
1443
+ __( '%1$s out of %2$s max recommended characters.', 'all-in-one-seo-pack' ),
1444
 
1445
+ // Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:6
1446
+ __( 'Focus keyphrase', 'all-in-one-seo-pack' ),
1447
 
1448
+ // Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:8
1449
+ __( 'Keyphrase', 'all-in-one-seo-pack' ),
1450
 
1451
+ // Reference: src/vue/pages/post-settings/views/Social.vue:60
1452
+ __( 'Social', 'all-in-one-seo-pack' ),
1453
 
1454
+ // Reference: src/vue/pages/post-settings/views/General.vue:260
1455
+ __( 'General', 'all-in-one-seo-pack' ),
1456
 
1457
+ // Reference: src/vue/pages/post-settings/views/General.vue:261
1458
+ __( 'Snippet Preview', 'all-in-one-seo-pack' ),
1459
 
1460
+ // Reference: src/vue/pages/post-settings/views/General.vue:262
1461
+ __( 'Snippet Preview content here.', 'all-in-one-seo-pack' ),
1462
 
1463
+ // Reference: src/vue/pages/post-settings/views/General.vue:263
1464
+ __( 'Edit Snippet', 'all-in-one-seo-pack' ),
1465
 
1466
+ // Reference: src/vue/pages/post-settings/views/General.vue:264
1467
+ __( 'Click on tags below to insert variables into your title.', 'all-in-one-seo-pack' ),
 
1468
 
1469
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:256
1470
+ __( 'Meta Description', 'all-in-one-seo-pack' ),
 
1471
 
1472
+ // Reference: src/vue/pages/post-settings/views/General.vue:266
1473
+ __( 'Click on tags below to insert variables into your meta description.', 'all-in-one-seo-pack' ),
1474
 
1475
+ // Reference: src/vue/pages/post-settings/views/General.vue:267
1476
+ __( 'Pillar Content', 'all-in-one-seo-pack' ),
1477
 
1478
+ // Reference: src/vue/pages/post-settings/views/General.vue:268
1479
+ __( 'Cornerstone content should be the most important and extensive articles on your site.', 'all-in-one-seo-pack' ),
1480
 
1481
+ // Reference: src/vue/pages/post-settings/views/General.vue:269
1482
+ __( 'Focus Keyphrase', 'all-in-one-seo-pack' ),
 
1483
 
1484
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:68
1485
+ __( 'Additional Keyphrases', 'all-in-one-seo-pack' ),
1486
 
1487
+ // Reference: src/vue/pages/post-settings/views/General.vue:271
1488
+ __( 'Page Analysis', 'all-in-one-seo-pack' ),
1489
 
1490
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:36
1491
+ __( 'Basic SEO', 'all-in-one-seo-pack' ),
1492
 
1493
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:44
1494
+ __( 'Readability', 'all-in-one-seo-pack' ),
1495
 
1496
+ // Reference: src/vue/pages/post-settings/views/General.vue:275
1497
+ __( 'Looking for meta keywords? Click on the advanced tab above to add/edit meta keywords.', 'all-in-one-seo-pack' ),
1498
 
1499
+ // Reference: src/vue/pages/post-settings/views/General.vue:284
1500
+ /* Translators: %s: The type of page (Post, Page, Category, Tag, etc.). */
1501
+ __( '%s Title', 'all-in-one-seo-pack' ),
1502
 
1503
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:114
1504
+ __( 'Robots Setting', 'all-in-one-seo-pack' ),
 
1505
 
1506
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:115
1507
+ __( 'Use default settings', 'all-in-one-seo-pack' ),
1508
 
1509
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:116
1510
+ __( 'Canonical URL', 'all-in-one-seo-pack' ),
1511
 
1512
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:117
1513
+ __( 'Enter a URL to change the default Canonical URL', 'all-in-one-seo-pack' ),
1514
 
1515
+ // Reference: src/vue/components/common/core/PriorityScore.vue:64
1516
+ __( 'Priority', 'all-in-one-seo-pack' ),
1517
 
1518
+ // Reference: src/vue/components/common/core/PriorityScore.vue:65
1519
+ __( 'Frequency', 'all-in-one-seo-pack' ),
 
1520
 
1521
+ // Reference: src/vue/pages/settings/views/Advanced.vue:302
1522
+ __( 'This feature is only for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
1523
 
1524
+ // Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:112
1525
+ __( 'Keywords', 'all-in-one-seo-pack' ),
1526
 
1527
+ // Reference: src/vue/pages/post-settings/views/Advanced.vue:124
1528
+ __( 'Press enter to create a keyword', 'all-in-one-seo-pack' ),
 
1529
 
1530
+ // Reference: src/vue/pages/post-settings/views/ModalContent.vue:41
1531
+ __( 'Modal Content', 'all-in-one-seo-pack' ),
1532
 
1533
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:70
1534
+ __( 'Schema Type', 'all-in-one-seo-pack' ),
1535
 
1536
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:71
1537
+ __( 'Article Type', 'all-in-one-seo-pack' ),
1538
 
1539
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:73
1540
+ __( 'Blog Post', 'all-in-one-seo-pack' ),
1541
 
1542
+ // Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:74
1543
+ __( 'News Article', 'all-in-one-seo-pack' ),
1544
 
1545
+ // Reference: src/vue/pages/post-settings/views/lite/Schema.vue:61
1546
+ /* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro", 3 - "Learn more link".. */
1547
+ __( 'This feature is only for licensed %1$s %2$s users. %3$s', 'all-in-one-seo-pack' ),
1548
 
1549
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:177
1550
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:71
1551
+ /* Translators: 1 - "Pro" string, 2 - "Learn more link". */
1552
+ __( 'Pro', 'all-in-one-seo-pack' ),
1553
+
1554
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:238
1555
+ __( 'Facebook Preview', 'all-in-one-seo-pack' ),
1556
 
1557
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:215
1558
+ __( 'Image Source', 'all-in-one-seo-pack' ),
1559
 
1560
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:216
1561
+ __( 'Custom Field Name', 'all-in-one-seo-pack' ),
1562
 
1563
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:241
1564
+ __( 'Video URL', 'all-in-one-seo-pack' ),
1565
 
1566
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:245
1567
+ __( 'Facebook Image', 'all-in-one-seo-pack' ),
1568
 
1569
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:246
1570
+ __( 'Facebook Title', 'all-in-one-seo-pack' ),
1571
 
1572
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:247
1573
+ __( 'Facebook Description', 'all-in-one-seo-pack' ),
 
1574
 
1575
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:250
1576
+ __( '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' ),
 
1577
 
1578
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:252
1579
+ __( 'Click on tags below to insert variables into your site name.', 'all-in-one-seo-pack' ),
1580
 
1581
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:254
1582
+ __( 'Article Section', 'all-in-one-seo-pack' ),
 
1583
 
1584
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:255
1585
+ __( 'Article Tags', 'all-in-one-seo-pack' ),
 
1586
 
1587
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:256
1588
+ __( 'Press enter to create an article tag', 'all-in-one-seo-pack' ),
 
1589
 
1590
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:264
1591
+ __( 'Default', 'all-in-one-seo-pack' ),
1592
 
1593
+ // Reference: src/vue/pages/post-settings/views/Facebook.vue:264
1594
+ __( 'Default Object Type (Set in Social Networks)', 'all-in-one-seo-pack' ),
1595
 
1596
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:213
1597
+ __( 'Twitter Preview', 'all-in-one-seo-pack' ),
1598
 
1599
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:214
1600
+ __( 'Use Data from Facebook Tab', 'all-in-one-seo-pack' ),
1601
 
1602
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:217
1603
+ __( 'Twitter Image', 'all-in-one-seo-pack' ),
1604
 
1605
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:218
1606
+ __( 'Twitter Title', 'all-in-one-seo-pack' ),
1607
 
1608
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:219
1609
+ __( 'Twitter Description', 'all-in-one-seo-pack' ),
1610
 
1611
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:220
1612
+ __( 'Twitter Card Type', 'all-in-one-seo-pack' ),
1613
 
1614
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:449
1615
+ __( 'Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and GIF formats only.', 'all-in-one-seo-pack' ),
1616
 
1617
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:450
1618
+ __( 'Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and GIF formats only.', 'all-in-one-seo-pack' ),
1619
 
1620
+ // Reference: src/vue/pages/post-settings/views/Twitter.vue:234
1621
+ __( 'Default (Set under Social Networks)', 'all-in-one-seo-pack' ),
1622
 
1623
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:437
1624
+ __( 'Summary', 'all-in-one-seo-pack' ),
1625
 
1626
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:438
1627
+ __( 'Summary with Large Image', 'all-in-one-seo-pack' ),
1628
 
1629
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:60
1630
+ __( 'Add Focus Keyphrase', 'all-in-one-seo-pack' ),
1631
 
1632
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:62
1633
+ /* Translators: 1 - "Learn more link". */
1634
+ __( 'Not sure what keyphrases are used for? Check out our documentation for more information. %1$s', 'all-in-one-seo-pack' ),
1635
 
1636
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:69
1637
+ __( 'Add Additional Keyphrases', 'all-in-one-seo-pack' ),
1638
 
1639
+ // Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:71
1640
+ /* Translators: 1 - "Pro" string, 2 - "Learn more link". */
1641
+ __( 'Upgrade to %1$s to add related keyphrases. %2$s', 'all-in-one-seo-pack' ),
1642
 
1643
+ // Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:26
1644
+ __( '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' ),
1645
 
1646
+ // Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:27
1647
+ __( 'Preview & Edit', 'all-in-one-seo-pack' ),
1648
 
1649
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:81
1650
+ __( 'Import / Restore %1$s Settings', 'all-in-one-seo-pack' ),
1651
 
1652
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:82
1653
+ __( 'Import from a JSON or INI file...', 'all-in-one-seo-pack' ),
1654
 
1655
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:83
1656
+ __( 'Choose a File', 'all-in-one-seo-pack' ),
1657
 
1658
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:84
1659
+ __( 'Imported settings will overwrite existing settings and will not be merged.', 'all-in-one-seo-pack' ),
1660
 
1661
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:85
1662
+ __( 'Import', 'all-in-one-seo-pack' ),
1663
 
1664
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:86
1665
+ __( 'A JSON or INI file is required to import settings.', 'all-in-one-seo-pack' ),
 
 
1666
 
1667
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:87
1668
+ __( 'Success! Your settings have been imported.', 'all-in-one-seo-pack' ),
 
1669
 
1670
+ // Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:88
1671
+ __( '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' ),
1672
 
1673
+ // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:109
1674
+ __( 'Export Settings', 'all-in-one-seo-pack' ),
 
1675
 
1676
+ // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:110
1677
+ __( 'Export All Settings', 'all-in-one-seo-pack' ),
 
1678
 
1679
+ // Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:111
1680
+ __( 'Export All Post Types', 'all-in-one-seo-pack' ),
 
1681
 
1682
+ // Reference: src/vue/pages/dashboard/views/Main.vue:223
1683
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:195
1684
+ __( 'Search Appearance', 'all-in-one-seo-pack' ),
1685
 
1686
+ // Reference: src/vue/pages/dashboard/views/Main.vue:228
1687
+ // Reference: src/vue/pages/social-networks/views/Main.vue:24
1688
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:196
1689
+ __( 'Social Networks', 'all-in-one-seo-pack' ),
1690
 
1691
+ // Reference: src/vue/pages/dashboard/views/Main.vue:230
1692
+ __( 'Tools', 'all-in-one-seo-pack' ),
1693
 
1694
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:124
1695
+ __( 'Import Settings From Other Plugins', 'all-in-one-seo-pack' ),
1696
 
1697
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:125
1698
+ __( 'Choose a plugin to import SEO data directly into %1$s.', 'all-in-one-seo-pack' ),
1699
 
1700
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:126
1701
+ __( 'Select a plugin...', 'all-in-one-seo-pack' ),
1702
 
1703
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:128
1704
+ __( 'All Settings', 'all-in-one-seo-pack' ),
1705
 
1706
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:129
1707
+ __( 'not installed', 'all-in-one-seo-pack' ),
1708
 
1709
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:143
1710
+ __( 'SEO Settings', 'all-in-one-seo-pack' ),
1711
 
1712
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:144
1713
+ __( 'Post Meta', 'all-in-one-seo-pack' ),
1714
 
1715
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:148
1716
+ __( 'Term Meta', 'all-in-one-seo-pack' ),
1717
 
1718
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:176
1719
+ /* Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO"). */
1720
+ __( '%1$s was successfully imported!', 'all-in-one-seo-pack' ),
1721
 
1722
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:180
1723
+ /* Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO"). */
1724
+ __( 'An error occurred while importing %1$s. Please try again.', 'all-in-one-seo-pack' ),
1725
 
1726
+ // Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:223
1727
+ /* Translators: 1 - The name of the plugin (e.g. "Yoast SEO"), 2 - The version of the plugin (e.g. "10.2.3"). */
1728
+ __( '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' ),
1729
 
1730
  // Reference: src/vue/pages/tools/views/DatabaseTools.vue:168
1731
  __( 'Reset / Restore Settings', 'all-in-one-seo-pack' ),
1766
  // Reference: src/vue/pages/tools/views/DatabaseTools.vue:181
1767
  __( 'Clear Bad Bot Blocker Logs', 'all-in-one-seo-pack' ),
1768
 
1769
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:183
1770
+ /* Translators: 1 - The plugin short name ("AIOSEO"). */
1771
+ __( 'All %1$s Settings', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1772
 
1773
+ // Reference: src/vue/pages/tools/views/DatabaseTools.vue:198
1774
+ __( 'Robots.txt', 'all-in-one-seo-pack' ),
1775
 
1776
+ // Reference: src/vue/components/common/wizard/CloseAndExit.vue:14
1777
+ __( 'Close and Exit Wizard Without Saving', 'all-in-one-seo-pack' ),
1778
 
1779
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:238
1780
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
1781
+ __( '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' ),
1782
 
1783
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:239
1784
+ __( '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' ),
1785
 
1786
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:240
1787
+ __( 'Enable Custom Robots.txt', 'all-in-one-seo-pack' ),
1788
 
1789
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:241
1790
+ __( 'Duplicate or invalid entries have been detected! Please check your rules and try again.', 'all-in-one-seo-pack' ),
1791
 
1792
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:242
1793
+ __( 'User Agent', 'all-in-one-seo-pack' ),
1794
 
1795
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:243
1796
+ __( 'Rule', 'all-in-one-seo-pack' ),
1797
 
1798
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:244
1799
+ __( 'Directory Path', 'all-in-one-seo-pack' ),
1800
 
1801
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:245
1802
+ __( 'Allow', 'all-in-one-seo-pack' ),
1803
 
1804
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:246
1805
+ __( 'Disallow', 'all-in-one-seo-pack' ),
1806
 
1807
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:247
1808
+ __( 'Add Rule', 'all-in-one-seo-pack' ),
1809
 
1810
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:248
1811
+ __( 'Delete Rule', 'all-in-one-seo-pack' ),
1812
 
1813
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:249
1814
+ __( 'Robots.txt Preview:', 'all-in-one-seo-pack' ),
1815
 
1816
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:250
1817
+ __( 'Open Robots.txt', 'all-in-one-seo-pack' ),
1818
 
1819
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:252
1820
+ /* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
1821
+ __( '%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' ),
1822
 
1823
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:253
1824
+ __( 'Import and Delete', 'all-in-one-seo-pack' ),
1825
 
1826
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:285
1827
+ /* Translators: 1 - The url to the main site. */
1828
+ __( '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' ),
1829
 
1830
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:288
1831
+ __( 'It looks like you are missing the proper rewrite rules for the robots.txt file.', 'all-in-one-seo-pack' ),
1832
 
1833
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:292
1834
+ /* Translators: 1 - Opening link tag. 2 - Closing link tag. */
1835
+ __( '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' ),
1836
 
1837
+ // Reference: src/vue/pages/tools/views/RobotsEditor.vue:294
1838
+ __( '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' ),
1839
 
1840
+ // Reference: src/vue/pages/tools/views/ImportExport.vue:36
1841
+ __( 'Export / Backup Settings', 'all-in-one-seo-pack' ),
1842
 
1843
+ // Reference: src/vue/components/common/wizard/Steps.vue:15
1844
+ /* Translators: 1 - The current step count. 2 - The total step count. */
1845
+ __( 'Step %1$s of %2$s', 'all-in-one-seo-pack' ),
1846
 
1847
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:31
1848
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:294
1849
+ __( 'Opening Hours Settings', 'all-in-one-seo-pack' ),
1850
 
1851
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:295
1852
+ __( 'Show Opening Hours', 'all-in-one-seo-pack' ),
1853
 
1854
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:296
1855
+ __( 'Display Opening Hours', 'all-in-one-seo-pack' ),
1856
 
1857
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:297
1858
+ __( 'Labels', 'all-in-one-seo-pack' ),
1859
 
1860
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:298
1861
+ __( 'Closed label', 'all-in-one-seo-pack' ),
1862
 
1863
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:299
1864
+ __( 'Text to display when \'Closed\' setting is checked', 'all-in-one-seo-pack' ),
1865
 
1866
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:300
1867
+ __( 'Open 24h label', 'all-in-one-seo-pack' ),
 
1868
 
1869
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:301
1870
+ __( 'Text to display when \'Open 24h\' setting is checked', 'all-in-one-seo-pack' ),
1871
 
1872
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:302
1873
+ __( 'Open 24/7', 'all-in-one-seo-pack' ),
1874
 
1875
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:303
1876
+ __( 'Use 24h format', 'all-in-one-seo-pack' ),
 
1877
 
1878
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:304
1879
+ __( 'Timezone', 'all-in-one-seo-pack' ),
1880
 
1881
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:305
1882
+ __( 'Select your timezone:', 'all-in-one-seo-pack' ),
 
1883
 
1884
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:307
1885
+ __( 'Monday', 'all-in-one-seo-pack' ),
 
1886
 
1887
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:308
1888
+ __( 'Tuesday', 'all-in-one-seo-pack' ),
 
1889
 
1890
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:309
1891
+ __( 'Wednesday', 'all-in-one-seo-pack' ),
 
1892
 
1893
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:310
1894
+ __( 'Thursday', 'all-in-one-seo-pack' ),
1895
 
1896
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:311
1897
+ __( 'Friday', 'all-in-one-seo-pack' ),
1898
 
1899
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:312
1900
+ __( 'Saturday', 'all-in-one-seo-pack' ),
1901
 
1902
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:313
1903
+ __( 'Sunday', 'all-in-one-seo-pack' ),
1904
 
1905
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:314
1906
+ __( 'Open 24h', 'all-in-one-seo-pack' ),
1907
 
1908
+ // Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:315
1909
+ __( 'Closed', 'all-in-one-seo-pack' ),
1910
 
1911
+ // Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:409
1912
+ __( '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' ),
1913
 
1914
  // Reference: src/vue/pages/settings/views/RssContent.vue:121
1915
  __( 'Automatically add content to your site\'s RSS feed.', 'all-in-one-seo-pack' ),
1941
  // Reference: src/vue/pages/settings/views/WebmasterTools.vue:267
1942
  __( 'Your user account role does not have access to edit this field. %2$s', 'all-in-one-seo-pack' ),
1943
 
1944
+ // Reference: src/vue/pages/settings/views/Advanced.vue:269
1945
+ __( 'TruSEO Score & Content', 'all-in-one-seo-pack' ),
1946
 
1947
+ // Reference: src/vue/pages/settings/views/Advanced.vue:270
1948
+ __( 'Enable our TruSEO score to help you optimize your content for maximum traffic.', 'all-in-one-seo-pack' ),
1949
 
1950
+ // Reference: src/vue/pages/settings/views/Advanced.vue:272
1951
+ __( 'Post Type Columns', 'all-in-one-seo-pack' ),
1952
 
1953
+ // Reference: src/vue/pages/settings/views/Advanced.vue:275
1954
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
1955
+ __( 'Select which Post Types you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
1956
 
1957
+ // Reference: src/vue/pages/settings/views/Advanced.vue:276
1958
+ __( 'Usage Tracking', 'all-in-one-seo-pack' ),
1959
 
1960
+ // Reference: src/vue/pages/settings/views/Advanced.vue:277
1961
+ __( 'Admin Bar Menu', 'all-in-one-seo-pack' ),
1962
 
1963
+ // Reference: src/vue/pages/settings/views/Advanced.vue:279
1964
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
1965
+ __( 'This adds %1$s to the admin toolbar for easy access to your SEO settings.', 'all-in-one-seo-pack' ),
1966
 
1967
+ // Reference: src/vue/pages/settings/views/Advanced.vue:280
1968
+ __( 'Dashboard Widget', 'all-in-one-seo-pack' ),
1969
 
1970
+ // Reference: src/vue/pages/settings/views/Advanced.vue:281
1971
+ __( 'This displays an SEO News widget on the dashboard.', 'all-in-one-seo-pack' ),
1972
 
1973
+ // Reference: src/vue/pages/settings/views/Advanced.vue:282
1974
+ __( 'Announcements', 'all-in-one-seo-pack' ),
1975
+
1976
+ // Reference: src/vue/pages/settings/views/Advanced.vue:283
1977
+ __( 'This allows you to hide plugin announcements and update details.', 'all-in-one-seo-pack' ),
1978
+
1979
+ // Reference: src/vue/pages/settings/views/Advanced.vue:284
1980
+ __( 'Automatic Updates', 'all-in-one-seo-pack' ),
1981
+
1982
+ // Reference: src/vue/pages/settings/views/Advanced.vue:285
1983
+ __( 'All (recommended)', 'all-in-one-seo-pack' ),
1984
+
1985
+ // Reference: src/vue/pages/settings/views/Advanced.vue:286
1986
+ __( 'You are getting the latest features, bugfixes, and security updates as they are released.', 'all-in-one-seo-pack' ),
1987
+
1988
+ // Reference: src/vue/pages/settings/views/Advanced.vue:287
1989
+ __( 'Minor Only', 'all-in-one-seo-pack' ),
1990
+
1991
+ // Reference: src/vue/pages/settings/views/Advanced.vue:288
1992
+ __( 'You are getting bugfixes and security updates, but not major features.', 'all-in-one-seo-pack' ),
1993
+
1994
+ // Reference: src/vue/pages/settings/views/Advanced.vue:289
1995
+ __( 'None', 'all-in-one-seo-pack' ),
1996
+
1997
+ // Reference: src/vue/pages/settings/views/Advanced.vue:290
1998
+ __( 'You will need to manually update everything.', 'all-in-one-seo-pack' ),
1999
+
2000
+ // Reference: src/vue/pages/settings/views/Advanced.vue:291
2001
+ __( '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' ),
2002
+
2003
+ // Reference: src/vue/pages/settings/views/Advanced.vue:293
2004
+ // Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:194
2005
+ __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'all-in-one-seo-pack' ),
2006
 
2007
+ // Reference: src/vue/pages/settings/views/Advanced.vue:295
2008
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
2009
+ __( 'This Admin Bar feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
2010
 
2011
+ // Reference: src/vue/pages/settings/views/Advanced.vue:297
2012
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
2013
+ __( 'The Dashboard Widget feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
2014
 
2015
+ // Reference: src/vue/pages/settings/views/Advanced.vue:298
2016
+ __( 'Taxonomy Columns', 'all-in-one-seo-pack' ),
2017
 
2018
+ // Reference: src/vue/pages/settings/views/Advanced.vue:301
2019
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
2020
+ __( 'Select which Taxonomies you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
2021
 
2022
+ // Reference: src/vue/pages/settings/views/Advanced.vue:304
2023
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
2024
+ __( 'Uninstall %1$s', 'all-in-one-seo-pack' ),
2025
 
2026
+ // Reference: src/vue/pages/settings/views/Advanced.vue:306
2027
+ /* Translators: 1 - Plugin Short Name ("AIOSEO"). */
2028
+ __( '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' ),
2029
 
2030
+ // Reference: src/vue/pages/social-networks/views/SocialProfiles.vue:26
2031
+ __( 'To let search engines know which profiles are associated with this site, enter them below:', 'all-in-one-seo-pack' ),
 
2032
 
2033
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:432
2034
+ __( 'Twitter Card Settings', 'all-in-one-seo-pack' ),
2035
 
2036
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:434
2037
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
2038
+ __( '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' ),
2039
 
2040
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:435
2041
+ __( 'Enable Twitter Card', 'all-in-one-seo-pack' ),
2042
 
2043
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:436
2044
+ __( 'Default Card Type', 'all-in-one-seo-pack' ),
2045
 
2046
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:445
2047
+ __( 'Default Post Twitter Image', 'all-in-one-seo-pack' ),
2048
 
2049
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:446
2050
+ __( 'Default Term Twitter Image', 'all-in-one-seo-pack' ),
2051
 
2052
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:452
2053
+ __( 'Home Page Image', 'all-in-one-seo-pack' ),
2054
 
2055
+ // Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:255
2056
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:453
2057
+ __( 'Home Page Title', 'all-in-one-seo-pack' ),
2058
 
2059
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:460
2060
+ __( 'Show Twitter Author', 'all-in-one-seo-pack' ),
2061
 
2062
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:463
2063
+ __( 'Card Type', 'all-in-one-seo-pack' ),
2064
 
2065
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:464
2066
+ __( 'Additional Data', 'all-in-one-seo-pack' ),
 
2067
 
2068
+ // Reference: src/vue/pages/social-networks/views/Twitter.vue:465
2069
+ __( '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' ),
2070
 
2071
+ // Reference: src/vue/pages/settings/views/GeneralSettings.vue:49
2072
+ __( 'License', 'all-in-one-seo-pack' ),
2073
 
2074
+ // Reference: src/vue/components/lite/core/UpgradeBar.vue:25
2075
+ __( 'Free', 'all-in-one-seo-pack' ),
2076
 
2077
+ // Reference: src/vue/components/lite/core/UpgradeBar.vue:28
2078
+ /* Translators: 1 - "Pro". */
2079
+ __( 'upgrading to %1$s', 'all-in-one-seo-pack' ),
2080
 
2081
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:56
2082
+ // Reference: src/vue/pages/settings/views/GeneralSettings.vue:57
2083
+ /* Translators: This refers to a discount ("As a valued user you receive 50%, automatically applied at checkout!"). */
2084
+ __( 'off', 'all-in-one-seo-pack' ),
2085
 
2086
+ // Reference: src/vue/pages/settings/views/GeneralSettings.vue:59
2087
+ __( 'Setup Wizard', 'all-in-one-seo-pack' ),
2088
 
2089
+ // Reference: src/vue/pages/dashboard/views/Main.vue:239
2090
+ __( 'Relaunch Setup Wizard', 'all-in-one-seo-pack' ),
2091
 
2092
+ // Reference: src/vue/pages/settings/views/GeneralSettings.vue:62
2093
+ /* Translators: 1 - The plugin name ("All in One SEO") */
2094
+ __( 'Use our configuration wizard to properly set up %1$s with your WordPress website.', 'all-in-one-seo-pack' ),
2095
 
2096
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:72
2097
+ // Reference: src/vue/pages/settings/views/GeneralSettings.vue:73
2098
+ /* Translators: 1 - "upgrading to Pro". */
2099
+ __( 'To unlock more features, consider %1$s.', 'all-in-one-seo-pack' ),
2100
 
2101
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:76
2102
+ // Reference: src/vue/pages/settings/views/GeneralSettings.vue:77
2103
+ /* Translators: 1 - "50% off". */
2104
+ __( 'As a valued user you receive %1$s, automatically applied at checkout!', 'all-in-one-seo-pack' ),
2105
 
2106
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:125
2107
+ __( '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' ),
2108
 
2109
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:130
2110
+ __( 'Number of Posts', 'all-in-one-seo-pack' ),
2111
 
2112
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:133
2113
+ __( 'Open RSS Sitemap', 'all-in-one-seo-pack' ),
 
2114
 
2115
+ // Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:134
2116
+ __( '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' ),
2117
 
2118
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:357
2119
+ __( 'Enable Breadcrumbs', 'all-in-one-seo-pack' ),
 
2120
 
2121
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:358
2122
+ __( 'Show Breadcrumbs on your Website', 'all-in-one-seo-pack' ),
2123
 
2124
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:359
2125
+ __( 'Shortcode', 'all-in-one-seo-pack' ),
 
2126
 
2127
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:360
2128
+ __( 'Gutenberg Block', 'all-in-one-seo-pack' ),
2129
 
2130
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:361
2131
+ __( 'PHP Code', 'all-in-one-seo-pack' ),
 
2132
 
2133
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:362
2134
+ __( 'Breadcrumb Settings', 'all-in-one-seo-pack' ),
2135
 
2136
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:363
2137
+ __( 'Separator', 'all-in-one-seo-pack' ),
2138
 
2139
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:364
2140
+ __( 'Homepage Link', 'all-in-one-seo-pack' ),
 
2141
 
2142
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:365
2143
+ __( 'Breadcrumb Prefix', 'all-in-one-seo-pack' ),
2144
 
2145
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:366
2146
+ __( 'Archive Format', 'all-in-one-seo-pack' ),
 
2147
 
2148
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:367
2149
+ __( 'Search Result Format', 'all-in-one-seo-pack' ),
2150
 
2151
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:368
2152
+ __( '404 Error Format', 'all-in-one-seo-pack' ),
2153
 
2154
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:369
2155
+ __( 'Current Item', 'all-in-one-seo-pack' ),
 
2156
 
2157
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:370
2158
+ __( 'Home', 'all-in-one-seo-pack' ),
2159
 
2160
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:371
2161
+ __( 'Category', 'all-in-one-seo-pack' ),
 
2162
 
2163
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:372
2164
+ __( 'Subcategory', 'all-in-one-seo-pack' ),
 
2165
 
2166
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:373
2167
+ __( 'Article Title', 'all-in-one-seo-pack' ),
 
2168
 
2169
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:374
2170
+ __( 'Archives of', 'all-in-one-seo-pack' ),
2171
 
2172
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:375
2173
+ __( 'Search for', 'all-in-one-seo-pack' ),
2174
 
2175
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:376
2176
+ __( '404 Error: page not found', 'all-in-one-seo-pack' ),
2177
 
2178
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:377
2179
+ __( 'search key word goes here', 'all-in-one-seo-pack' ),
2180
 
2181
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:378
2182
+ __( 'Category Name', 'all-in-one-seo-pack' ),
2183
 
2184
+ // Reference: src/vue/pages/settings/views/Breadcrumbs.vue:379
2185
+ __( 'Breadcrumb Templates', 'all-in-one-seo-pack' ),
2186
 
2187
+ // Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:16
2188
+ __( 'HTML Sitemap', 'all-in-one-seo-pack' ),
2189
 
2190
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:68
2191
+ __( 'WP Roles (Editor, Author)', 'all-in-one-seo-pack' ),
2192
 
2193
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:69
2194
+ __( 'SEO Manager Role', 'all-in-one-seo-pack' ),
2195
 
2196
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:70
2197
+ __( 'SEO Editor Role', 'all-in-one-seo-pack' ),
2198
+
2199
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:71
2200
+ __( 'Default settings that just work', 'all-in-one-seo-pack' ),
2201
 
2202
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:72
2203
+ __( 'Granular controls per role', 'all-in-one-seo-pack' ),
2204
 
2205
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:73
2206
+ __( 'Upgrade to Pro and Unlock Access Control', 'all-in-one-seo-pack' ),
2207
 
2208
+ // Reference: src/vue/pages/settings/views/lite/AccessControl.vue:74
2209
+ __( 'Access Control is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
2210
 
2211
+ // Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:51
2212
+ __( 'Select your timezone', 'all-in-one-seo-pack' ),
2213
 
2214
+ // Reference: src/vue/components/lite/local-business/Name.vue:16
2215
+ __( 'name', 'all-in-one-seo-pack' ),
2216
 
2217
+ // Reference: src/vue/components/lite/local-business/Name.vue:17
2218
+ __( 'Your name or company name.', 'all-in-one-seo-pack' ),
2219
 
2220
+ // Reference: src/vue/components/lite/local-business/Urls.vue:32
2221
+ __( 'Website URL:', 'all-in-one-seo-pack' ),
2222
 
2223
+ // Reference: src/vue/components/lite/local-business/Urls.vue:33
2224
+ __( 'About Page URL:', 'all-in-one-seo-pack' ),
2225
 
2226
+ // Reference: src/vue/components/lite/local-business/Urls.vue:34
2227
+ __( 'Contact Page URL:', 'all-in-one-seo-pack' ),
 
2228
 
2229
  // Reference: src/vue/pages/settings/views/WebmasterTools.vue:256
2230
  __( 'Miscellaneous Verification', 'all-in-one-seo-pack' ),
2236
  // Reference: src/vue/pages/settings/views/WebmasterTools.vue:259
2237
  __( 'Webmaster Tools Verification', 'all-in-one-seo-pack' ),
2238
 
2239
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:176
2240
+ __( 'Click here', 'all-in-one-seo-pack' ),
2241
+
2242
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:177
2243
+ __( 'Install Monsterinsights', 'all-in-one-seo-pack' ),
2244
+
2245
  // Reference: src/vue/pages/settings/views/WebmasterTools.vue:262
2246
  __( 'Success!', 'all-in-one-seo-pack' ),
2247
 
2312
  // Reference: src/vue/pages/settings/views/WebmasterTools.vue:361
2313
  __( 'Pinterest Site Verification', 'all-in-one-seo-pack' ),
2314
 
2315
+ // Reference: src/vue/pages/settings/views/WebmasterTools.vue:366
2316
+ __( 'Pinterest Verification Code', 'all-in-one-seo-pack' ),
2317
+
2318
  // Reference: src/vue/pages/settings/views/WebmasterTools.vue:368
2319
  /* Translators: 1 - "Pinterest account". */
2320
  __( 'Get your Pinterest verification code in your %1$s.', 'all-in-one-seo-pack' ),
2441
  /* Translators: 1 - "Google Tag Manager account". */
2442
  __( 'Get your Google Tag Manager ID in your %1$s.', 'all-in-one-seo-pack' ),
2443
 
2444
+ // Reference: src/vue/pages/social-networks/views/Pinterest.vue:46
2445
+ __( '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' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2446
 
2447
+ // Reference: src/vue/pages/social-networks/views/Pinterest.vue:47
2448
+ __( 'Learn how to get your Pinterest Verification Code', 'all-in-one-seo-pack' ),
2449
 
2450
+ // Reference: src/vue/pages/social-networks/views/Pinterest.vue:48
2451
+ __( 'If you have already confirmed your website with Pinterest, you can skip the step below.', 'all-in-one-seo-pack' ),
2452
 
2453
+ // Reference: src/vue/components/common/core/RobotsMeta.vue:100
2454
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:162
2455
+ __( 'Use Default Settings', 'all-in-one-seo-pack' ),
2456
 
2457
  // Reference: src/vue/components/common/core/RobotsMeta.vue:101
2458
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:163
2459
  __( 'Robots meta:', 'all-in-one-seo-pack' ),
2460
 
2461
  // Reference: src/vue/components/common/core/RobotsMeta.vue:102
2462
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:164
2463
  __( 'Max Snippet', 'all-in-one-seo-pack' ),
2464
 
2465
  // Reference: src/vue/components/common/core/RobotsMeta.vue:103
2466
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:165
2467
  __( 'Max Video Preview', 'all-in-one-seo-pack' ),
2468
 
2469
  // Reference: src/vue/components/common/core/RobotsMeta.vue:104
2470
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:166
2471
  __( 'Max Image Preview', 'all-in-one-seo-pack' ),
2472
 
2473
  // Reference: src/vue/components/common/core/RobotsMeta.vue:105
2474
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:167
2475
  __( 'Standard', 'all-in-one-seo-pack' ),
2476
 
2477
  // Reference: src/vue/components/common/core/RobotsMeta.vue:107
2478
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:169
2479
  __( 'Large', 'all-in-one-seo-pack' ),
2480
 
2481
  // Reference: src/vue/components/common/core/RobotsMeta.vue:87
2482
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:170
2483
  __( 'No Index', 'all-in-one-seo-pack' ),
2484
 
2485
  // Reference: src/vue/components/common/core/RobotsMeta.vue:88
2486
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:171
2487
  __( 'No Follow', 'all-in-one-seo-pack' ),
2488
 
2489
  // Reference: src/vue/components/common/core/RobotsMeta.vue:89
2490
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:172
2491
  __( 'No Archive', 'all-in-one-seo-pack' ),
2492
 
2493
  // Reference: src/vue/components/common/core/RobotsMeta.vue:90
2494
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:173
2495
  __( 'No Translate', 'all-in-one-seo-pack' ),
2496
 
2497
  // Reference: src/vue/components/common/core/RobotsMeta.vue:91
2498
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:174
2499
  __( 'No Image Index', 'all-in-one-seo-pack' ),
2500
 
2501
  // Reference: src/vue/components/common/core/RobotsMeta.vue:92
2502
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:175
2503
  __( 'No Snippet', 'all-in-one-seo-pack' ),
2504
 
2505
  // Reference: src/vue/components/common/core/RobotsMeta.vue:93
2506
+ // Reference: src/vue/components/common/core/SingleRobotsMeta.vue:176
2507
  __( 'No ODP', 'all-in-one-seo-pack' ),
2508
 
2509
+ // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:107
2510
+ __( 'Advanced SEO', 'all-in-one-seo-pack' ),
2511
+
2512
+ // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:108
2513
+ __( 'Performance', 'all-in-one-seo-pack' ),
2514
+
2515
+ // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:109
2516
+ __( 'Security', 'all-in-one-seo-pack' ),
2517
+
2518
+ // Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:110
2519
+ __( 'Keywords:', 'all-in-one-seo-pack' ),
2520
+
2521
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:14
2522
+ /* Translators: 1 - The plugin name ("All in One SEO") */
2523
+ __( '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' ),
2524
+
2525
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:15
2526
+ __( 'Access Control Settings', 'all-in-one-seo-pack' ),
2527
+
2528
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:16
2529
+ __( 'Administrator', 'all-in-one-seo-pack' ),
2530
+
2531
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:18
2532
+ __( 'Editor', 'all-in-one-seo-pack' ),
2533
+
2534
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:20
2535
+ __( 'SEO Manager', 'all-in-one-seo-pack' ),
2536
+
2537
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:21
2538
+ __( 'SEO Editor', 'all-in-one-seo-pack' ),
2539
+
2540
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:23
2541
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2542
+ __( 'By default Admins have access to %1$sall SEO site settings%2$s', 'all-in-one-seo-pack' ),
2543
+
2544
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:25
2545
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2546
+ __( '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' ),
2547
+
2548
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:27
2549
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2550
+ __( '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' ),
2551
+
2552
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:29
2553
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2554
+ __( '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' ),
2555
+
2556
+ // Reference: src/vue/pages/settings/mixins/AccessControl.js:31
2557
+ /* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
2558
+ __( 'By default SEO Editors have access to %1$sSEO settings for individual pages and posts.%2$s', 'all-in-one-seo-pack' ),
2559
+
2560
  // Reference: src/vue/components/common/core/SettingsSeparator.vue:101
2561
  __( 'Custom separator:', 'all-in-one-seo-pack' ),
2562
 
2566
  // Reference: src/vue/components/common/core/SettingsSeparator.vue:103
2567
  __( 'Show Less', 'all-in-one-seo-pack' ),
2568
 
2569
+ // Reference: src/vue/components/common/core/SiteScore.vue:45
2570
+ __( 'Analyzing...', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
2571
 
2572
+ // Reference: src/vue/components/lite/local-business/AreaServed.vue:16
2573
+ __( 'The geographic area where a service or offered item is provided.', 'all-in-one-seo-pack' ),
2574
 
2575
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:55
2576
+ __( 'Street address:', 'all-in-one-seo-pack' ),
2577
 
2578
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:56
2579
+ __( 'Street address line 2 (optional):', 'all-in-one-seo-pack' ),
2580
 
2581
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:57
2582
+ __( 'Zip code:', 'all-in-one-seo-pack' ),
2583
 
2584
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:58
2585
+ __( 'City:', 'all-in-one-seo-pack' ),
2586
 
2587
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:59
2588
+ __( 'State:', 'all-in-one-seo-pack' ),
2589
 
2590
+ // Reference: src/vue/components/lite/local-business/BusinessAddress.vue:60
2591
+ __( 'Country:', 'all-in-one-seo-pack' ),
2592
 
2593
+ // Reference: src/vue/components/lite/local-business/BusinessIds.vue:25
2594
+ __( 'VAT ID:', 'all-in-one-seo-pack' ),
2595
 
2596
+ // Reference: src/vue/components/lite/local-business/BusinessIds.vue:26
2597
+ __( 'Tax ID:', 'all-in-one-seo-pack' ),
2598
 
2599
+ // Reference: src/vue/components/lite/local-business/BusinessContact.vue:28
2600
+ __( 'Email address:', 'all-in-one-seo-pack' ),
2601
 
2602
+ // Reference: src/vue/components/lite/local-business/BusinessContact.vue:29
2603
+ __( 'Phone number:', 'all-in-one-seo-pack' ),
 
2604
 
2605
+ // Reference: src/vue/components/lite/local-business/BusinessContact.vue:30
2606
+ __( 'Fax number:', 'all-in-one-seo-pack' ),
2607
 
2608
+ // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:37
2609
+ __( 'Price Indicator:', 'all-in-one-seo-pack' ),
2610
 
2611
+ // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:38
2612
+ __( 'Accepted Currencies:', 'all-in-one-seo-pack' ),
2613
 
2614
+ // Reference: src/vue/components/lite/local-business/PaymentInfo.vue:39
2615
+ __( 'Accepted Payment Methods:', 'all-in-one-seo-pack' ),
2616
 
2617
  // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:57
2618
  __( 'Your Overall Site Score', 'all-in-one-seo-pack' ),
2634
  // Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:68
2635
  __( 'Read the Ultimate WordPress SEO Guide', 'all-in-one-seo-pack' ),
2636
 
2637
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:82
2638
+ __( 'License Key', 'all-in-one-seo-pack' ),
2639
+
2640
+ // Reference: src/vue/components/lite/settings/LicenseKey.vue:59
2641
+ __( 'Your license key provides access to updates and addons.', 'all-in-one-seo-pack' ),
2642
+
2643
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:103
2644
+ __( 'Paste your license key here', 'all-in-one-seo-pack' ),
2645
+
2646
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:104
2647
+ __( 'Connect', 'all-in-one-seo-pack' ),
2648
+
2649
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:121
2650
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
2651
+ __( 'You\'re using %1$s - no license needed. Enjoy!', 'all-in-one-seo-pack' ),
2652
+
2653
+ // Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:134
2654
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
2655
+ __( 'Already purchased? Simply enter your license key below to connect with %1$s!', 'all-in-one-seo-pack' ),
2656
+
2657
+ // Reference: src/vue/components/lite/core/UpgradeBar.vue:38
2658
+ /* Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro". */
2659
+ __( 'You\'re using %1$s. To unlock more features, consider %2$s.', 'all-in-one-seo-pack' ),
2660
+
2661
  // Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:81
2662
  __( 'Mobile Snapshot', 'all-in-one-seo-pack' ),
2663
 
2700
  // Reference: src/vue/components/common/core/SocialProfiles.vue:239
2701
  __( 'Your Username:', 'all-in-one-seo-pack' ),
2702
 
2703
+ // Reference: src/vue/components/common/core/NotificationCards.vue:58
2704
+ __( 'Great Scott! Where\'d they all go?', 'all-in-one-seo-pack' ),
2705
+
2706
+ // Reference: src/vue/components/common/core/NotificationCards.vue:59
2707
+ __( 'You have no new notifications.', 'all-in-one-seo-pack' ),
2708
+
2709
+ // Reference: src/vue/components/common/core/NotificationCards.vue:60
2710
+ __( 'See Dismissed Notifications', 'all-in-one-seo-pack' ),
2711
 
2712
  // Reference: src/vue/components/common/core/Notification.vue:100
2713
  __( 'a minute ago', 'all-in-one-seo-pack' ),
2739
  // Reference: src/vue/components/common/core/Notification.vue:99
2740
  __( 'a few seconds ago', 'all-in-one-seo-pack' ),
2741
 
2742
+ // Reference: src/vue/components/common/core/PriorityScore.vue:66
2743
+ __( 'Home Page', 'all-in-one-seo-pack' ),
2744
 
2745
+ // Reference: src/vue/components/common/core/PriorityScore.vue:67
2746
+ __( 'Archive Pages', 'all-in-one-seo-pack' ),
2747
 
2748
+ // Reference: src/vue/components/common/core/PriorityScore.vue:68
2749
+ __( 'Author Pages', 'all-in-one-seo-pack' ),
2750
+
2751
+ // Reference: src/vue/components/common/core/Notifications.vue:94
2752
+ __( 'Dismissed Notifications', 'all-in-one-seo-pack' ),
2753
+
2754
+ // Reference: src/vue/pages/dashboard/views/Main.vue:238
2755
+ __( 'Dismiss All', 'all-in-one-seo-pack' ),
2756
+
2757
+ // Reference: src/vue/components/common/core/Main.vue:72
2758
+ __( 'Save Changes', 'all-in-one-seo-pack' ),
2759
 
2760
  // Reference: src/vue/classes/SiteAnalysis.js:102
2761
  __( 'No keywords were found in the page title.', 'all-in-one-seo-pack' ),
3268
  // Reference: src/vue/classes/SiteAnalysis.js:93
3269
  __( 'Edit Your Meta Description', 'all-in-one-seo-pack' ),
3270
 
3271
+ // Reference: src/vue/components/common/core/RobotsMeta.vue:96
3272
+ __( 'No Index Paginated', 'all-in-one-seo-pack' ),
3273
 
3274
+ // Reference: src/vue/components/common/core/RobotsMeta.vue:97
3275
+ __( 'No Follow Paginated', 'all-in-one-seo-pack' ),
3276
+
3277
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:86
3278
+ __( 'Label:', 'all-in-one-seo-pack' ),
3279
+
3280
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:87
3281
+ __( 'Slug:', 'all-in-one-seo-pack' ),
3282
+
3283
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:88
3284
+ __( 'No post types available.', 'all-in-one-seo-pack' ),
3285
+
3286
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:89
3287
+ __( 'No taxonomies available.', 'all-in-one-seo-pack' ),
3288
+
3289
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:90
3290
+ __( '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' ),
3291
+
3292
+ // Reference: src/vue/components/common/core/PostTypeOptions.vue:91
3293
+ __( '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' ),
3294
 
3295
  // Reference: src/vue/components/common/core/Help.vue:126
3296
  __( 'Close', 'all-in-one-seo-pack' ),
3324
  __( 'Submit a Support Ticket', 'all-in-one-seo-pack' ),
3325
 
3326
  // Reference: src/vue/components/common/core/FeatureCard.vue:122
 
3327
  __( 'Upgrade to Pro', 'all-in-one-seo-pack' ),
3328
 
3329
  // Reference: src/vue/components/common/core/GettingStarted.vue:83
3343
  // Reference: src/vue/components/common/core/GettingStarted.vue:89
3344
  __( 'Read the Setup Guide', 'all-in-one-seo-pack' ),
3345
 
3346
+ // Reference: src/vue/components/common/core/FeatureCard.vue:119
3347
+ __( 'Activated', 'all-in-one-seo-pack' ),
3348
+
3349
+ // Reference: src/vue/components/common/core/FeatureCard.vue:120
3350
+ __( 'Deactivated', 'all-in-one-seo-pack' ),
3351
+
3352
+ // Reference: src/vue/components/common/core/FeatureCard.vue:121
3353
+ __( 'Not Installed', 'all-in-one-seo-pack' ),
3354
+
3355
  // Reference: src/vue/components/common/core/FeatureCard.vue:123
3356
  __( 'Upgrade Your Plan', 'all-in-one-seo-pack' ),
3357
 
3358
+ // Reference: src/vue/components/common/core/FeatureCard.vue:124
3359
+ __( 'Manage', 'all-in-one-seo-pack' ),
3360
+
3361
+ // Reference: src/vue/components/common/core/HtmlTagsEditor.vue:98
3362
+ __( 'Click on the tags below to insert variables into your template.', 'all-in-one-seo-pack' ),
3363
+
3364
+ // Reference: src/vue/components/common/core/HtmlTagsEditor.vue:99
3365
+ __( 'View all tags', 'all-in-one-seo-pack' ),
3366
+
3367
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:115
3368
+ __( 'System Status Info', 'all-in-one-seo-pack' ),
3369
+
3370
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:116
3371
+ __( 'Download System Info File', 'all-in-one-seo-pack' ),
3372
+
3373
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:117
3374
+ __( 'Copy to Clipboard', 'all-in-one-seo-pack' ),
3375
+
3376
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:118
3377
+ __( 'Email Debug Information', 'all-in-one-seo-pack' ),
3378
+
3379
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:119
3380
+ __( 'Submit', 'all-in-one-seo-pack' ),
3381
+
3382
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:120
3383
+ __( 'WordPress', 'all-in-one-seo-pack' ),
3384
+
3385
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:121
3386
+ __( 'Server Info', 'all-in-one-seo-pack' ),
3387
+
3388
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:122
3389
+ __( 'Active Theme', 'all-in-one-seo-pack' ),
3390
+
3391
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:123
3392
+ __( 'Must-Use Plugins', 'all-in-one-seo-pack' ),
3393
+
3394
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:124
3395
+ __( 'Active Plugins', 'all-in-one-seo-pack' ),
3396
+
3397
+ // Reference: src/vue/pages/tools/views/SystemStatus.vue:125
3398
+ __( 'Inactive Plugins', 'all-in-one-seo-pack' ),
3399
+
3400
+ // Reference: src/vue/components/common/core/CopyBlock.vue:48
3401
+ __( 'Copied!', 'all-in-one-seo-pack' ),
3402
+
3403
+ // Reference: src/vue/components/common/core/CopyBlock.vue:48
3404
+ __( 'Click to Copy', 'all-in-one-seo-pack' ),
3405
+
3406
  // Reference: src/vue/components/common/core/ExcludePosts.vue:100
3407
  __( 'No results found for that title. Try again!', 'all-in-one-seo-pack' ),
3408
 
3421
  // Reference: src/vue/components/common/core/ExcludePosts.vue:99
3422
  __( 'Begin typing a title to search...', 'all-in-one-seo-pack' ),
3423
 
 
 
 
3424
  // Reference: src/vue/components/common/core/AdditionalPages.vue:100
3425
  __( 'Last Modified', 'all-in-one-seo-pack' ),
3426
 
3427
  // Reference: src/vue/components/common/core/AdditionalPages.vue:102
3428
  __( 'Add New', 'all-in-one-seo-pack' ),
3429
 
 
 
 
3430
  // Reference: src/vue/components/common/core/AdditionalPages.vue:96
3431
  /* Translators: 1 - An example URL (e.g. https://aioseo.com/example). */
3432
  __( 'Enter a page URL, e.g. %1$s', 'all-in-one-seo-pack' ),
3440
  // Reference: src/vue/components/common/base/Editor.vue:123
3441
  __( 'Enter a custom field name...', 'all-in-one-seo-pack' ),
3442
 
3443
+ // Reference: src/vue/pages/search-appearance/router/paths.js:19
3444
+ __( 'Global Settings', 'all-in-one-seo-pack' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3445
 
3446
+ // Reference: src/vue/pages/search-appearance/router/paths.js:28
3447
+ __( 'Content Types', 'all-in-one-seo-pack' ),
3448
 
3449
+ // Reference: src/vue/pages/search-appearance/router/paths.js:46
3450
+ __( 'Media', 'all-in-one-seo-pack' ),
3451
 
3452
+ // Reference: src/vue/pages/search-appearance/router/paths.js:55
3453
+ __( 'Archives', 'all-in-one-seo-pack' ),
3454
 
3455
+ // Reference: src/vue/pages/about/router/paths.js:19
3456
+ __( 'About Us', 'all-in-one-seo-pack' ),
3457
 
3458
+ // Reference: src/vue/pages/about/router/paths.js:28
3459
+ __( 'Getting Started', 'all-in-one-seo-pack' ),
3460
 
3461
+ // Reference: src/vue/pages/about/router/paths.js:37
3462
+ __( 'Lite vs. Pro', 'all-in-one-seo-pack' ),
3463
 
3464
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:19
3465
+ __( 'Welcome', 'all-in-one-seo-pack' ),
3466
 
3467
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:46
3468
+ // Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:315
3469
+ __( 'Additional Site Information', 'all-in-one-seo-pack' ),
3470
 
3471
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:55
3472
+ __( 'Choose Features', 'all-in-one-seo-pack' ),
3473
 
3474
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:73
3475
+ __( 'Smart Recommendations', 'all-in-one-seo-pack' ),
3476
 
3477
+ // Reference: src/vue/pages/setup-wizard/router/paths.js:91
3478
+ __( 'Success', 'all-in-one-seo-pack' ),
3479
 
3480
+ // Reference: src/vue/pages/dashboard/views/Main.vue:210
3481
+ __( 'Dashboard', 'all-in-one-seo-pack' ),
3482
 
3483
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:178
3484
+ __( 'Activate Monsterinsights', 'all-in-one-seo-pack' ),
3485
 
3486
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:180
3487
+ __( 'MonsterInsights is Installed & Active', 'all-in-one-seo-pack' ),
3488
 
3489
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:181
3490
+ __( 'ExactMetrics is Installed & Active', 'all-in-one-seo-pack' ),
3491
 
3492
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:182
3493
+ __( 'Launch Setup Wizard', 'all-in-one-seo-pack' ),
3494
 
3495
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:184
3496
+ __( 'ExactMetrics connects AIOSEO to Google Analytics, providing a powerful integration. ExactMetrics is a sister company of AIOSEO.', 'all-in-one-seo-pack' ),
3497
 
3498
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:188
3499
+ __( 'Activate ExactMetrics', 'all-in-one-seo-pack' ),
 
3500
 
3501
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:189
3502
+ __( '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' ),
3503
 
3504
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:190
3505
+ __( 'The Best Google Analytics Plugin for WordPress', 'all-in-one-seo-pack' ),
3506
 
3507
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:191
3508
+ __( 'MonsterInsights connects AIOSEO to Google Analytics, providing a powerful integration. MonsterInsights is a sister company of AIOSEO.', 'all-in-one-seo-pack' ),
3509
 
3510
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:192
3511
+ __( 'Quick & Easy Google Analytics Setup', 'all-in-one-seo-pack' ),
 
3512
 
3513
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:193
3514
+ __( 'Google Analytics Dashboard + Real Time Stats', 'all-in-one-seo-pack' ),
3515
 
3516
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:194
3517
+ __( 'Google Analytics Enhanced Ecommerce Tracking', 'all-in-one-seo-pack' ),
3518
 
3519
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:195
3520
+ __( 'Universal Tracking for AMP and Instant Articles', 'all-in-one-seo-pack' ),
3521
 
3522
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:196
3523
+ __( 'Install &', 'all-in-one-seo-pack' ),
3524
 
3525
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:197
3526
+ __( 'Activate MonsterInsights', 'all-in-one-seo-pack' ),
3527
 
3528
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:198
3529
+ __( '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' ),
3530
 
3531
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:199
3532
+ __( 'Setup ExactMetrics', 'all-in-one-seo-pack' ),
3533
 
3534
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:200
3535
+ __( 'Setup MonsterInsights', 'all-in-one-seo-pack' ),
3536
 
3537
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:201
3538
+ __( 'ExactMetrics has an intuitive setup wizard to guide you through the setup process.', 'all-in-one-seo-pack' ),
3539
 
3540
+ // Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:202
3541
+ __( 'MonsterInsights has an intuitive setup wizard to guide you through the setup process.', 'all-in-one-seo-pack' ),
3542
 
3543
+ // Reference: src/vue/pages/about/views/Main.vue:23
3544
+ __( 'About', 'all-in-one-seo-pack' ),
3545
 
3546
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:109
3547
+ __( 'Social Meta (Open Graph Markup)', 'all-in-one-seo-pack' ),
3548
 
3549
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:112
3550
+ __( 'Posts, Pages and Custom Post Types Only', 'all-in-one-seo-pack' ),
3551
 
3552
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:116
3553
+ __( 'Posts, Pages, Custom Post Types + Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
3554
 
3555
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:120
3556
+ __( 'WooCommerce Integration', 'all-in-one-seo-pack' ),
3557
 
3558
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:123
3559
+ __( 'WooCommerce Products Only', 'all-in-one-seo-pack' ),
3560
 
3561
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:127
3562
+ __( 'WooCommerce Products, Product Categories, Product Tags and Other Product Attributes', 'all-in-one-seo-pack' ),
3563
 
3564
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:131
3565
+ __( 'XML Sitemap', 'all-in-one-seo-pack' ),
3566
 
3567
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:134
3568
+ __( 'Basic Control of Sitemap Priority & Frequency', 'all-in-one-seo-pack' ),
3569
 
3570
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:138
3571
+ __( 'Granular Control of Sitemap Priority & Frequency for Each Post, Page, Category, Tag, etc.', 'all-in-one-seo-pack' ),
3572
 
3573
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:142
3574
+ __( 'Video XML Sitemap', 'all-in-one-seo-pack' ),
3575
 
3576
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:147
3577
+ __( 'Submit Your Videos to Search Engines', 'all-in-one-seo-pack' ),
3578
 
3579
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:156
3580
+ __( 'Submit Your Latest News Stories to Google News (Business & Agency tier only)', 'all-in-one-seo-pack' ),
3581
 
3582
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:162
3583
+ __( 'Not Available', 'all-in-one-seo-pack' ),
3584
 
3585
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:165
3586
+ __( 'Control The Title & Alt Tag Attribute of Your Images (Business & Agency tier only)', 'all-in-one-seo-pack' ),
3587
 
3588
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:169
3589
+ __( 'Schema Rich Snippets', 'all-in-one-seo-pack' ),
3590
 
3591
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:172
3592
+ __( 'Posts, Pages, Categories and Tags Only', 'all-in-one-seo-pack' ),
3593
 
3594
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:175
3595
+ __( 'Complete Support', 'all-in-one-seo-pack' ),
3596
 
3597
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:176
3598
+ __( 'Posts, Pages, Categories, Tags + Breadcrumb Navigation', 'all-in-one-seo-pack' ),
3599
 
3600
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:182
3601
+ __( 'Limited Support', 'all-in-one-seo-pack' ),
3602
 
3603
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:185
3604
+ __( 'Priority Support', 'all-in-one-seo-pack' ),
3605
 
3606
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:71
3607
+ /* Translators: 1 - The abbreviated plugin name ("AIOSEO"). */
3608
+ __( '%1$s Lite vs. Pro', 'all-in-one-seo-pack' ),
3609
 
3610
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:73
3611
+ /* Translators: 1 - The plugin name ("All in One SEO"). */
3612
+ __( 'Get the most out of %1$s by upgrading to Pro and unlocking all of the powerful features.', 'all-in-one-seo-pack' ),
3613
 
3614
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:76
3615
+ __( 'Features:', 'all-in-one-seo-pack' ),
3616
 
3617
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:79
3618
+ __( 'Upgrade to Pro to Unlock Powerful SEO Features', 'all-in-one-seo-pack' ),
3619
 
3620
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:81
3621
+ /* Translators: 1 - Plugin name ("All in One SEO"), 2 - Plugin short name ("AIOSEO"). */
3622
+ __( '%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' ),
3623
 
3624
+ // Reference: src/vue/pages/about/views/GettingStarted.vue:133
3625
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:83
3626
+ /* Translators: 1 - "Pro". */
3627
+ __( 'Upgrade to %1$s Today', 'all-in-one-seo-pack' ),
3628
 
3629
+ // Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:86
3630
+ __( '%1$sBonus:%2$s You can upgrade to the %3$s plan today and %4$ssave %5$s off%6$s (discount auto-applied).', 'all-in-one-seo-pack' ),
3631