Version Description
This update adds major improvements and bugfixes.
Download this release
Release Info
Developer | benjaminprojas |
Plugin | All in One SEO Pack |
Version | 4.0.8 |
Comparing to | |
See all releases |
Code changes from version 4.0.7 to 4.0.8
- all_in_one_seo_pack.php +1 -1
- app/Common/Admin/AutoUpdates.php +2 -2
- app/Common/Admin/PostSettings.php +1 -1
- app/Common/Utils/Helpers.php +12 -0
- app/Common/Utils/Options.php +1 -1
- app/Common/Utils/Tags.php +1 -1
- dist/Lite/assets/css/aioseo-admin-bar.css +1 -1
- dist/Lite/assets/css/aioseo-admin-bar.css.gz +0 -0
- dist/Lite/assets/css/chunk-common.css +1 -1
- dist/Lite/assets/css/chunk-common.rtl.css +1 -1
- dist/Lite/assets/js/aioseo-admin-bar.js +1 -1
- dist/Lite/assets/js/aioseo-admin-bar.js.gz +0 -0
- dist/Lite/assets/js/plugins.js +1 -1
- dist/Lite/assets/js/plugins.js.gz +0 -0
- languages/aioseo-lite.php +2792 -2714
- languages/aioseo-lite.pot +2427 -2316
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 |
* 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.8
|
9 |
* Text Domain: all-in-one-seo-pack
|
10 |
* Domain Path: /i18n/
|
11 |
*
|
app/Common/Admin/AutoUpdates.php
CHANGED
@@ -57,8 +57,8 @@ class AutoUpdates {
|
|
57 |
public function automaticUpdates( $update, $item ) {
|
58 |
$item = (array) $item;
|
59 |
$pluginInfo = get_site_transient( 'update_plugins' );
|
60 |
-
$response = $pluginInfo->response;
|
61 |
-
$noUpdate = $pluginInfo->no_update;
|
62 |
$plugin = isset( $item['plugin'] ) && isset( $response[ $item['plugin'] ] )
|
63 |
? (array) $response[ $item['plugin'] ]
|
64 |
: (
|
57 |
public function automaticUpdates( $update, $item ) {
|
58 |
$item = (array) $item;
|
59 |
$pluginInfo = get_site_transient( 'update_plugins' );
|
60 |
+
$response = ! empty( $pluginInfo->response ) ? $pluginInfo->response : [];
|
61 |
+
$noUpdate = ! empty( $pluginInfo->no_update ) ? $pluginInfo->no_update : [];
|
62 |
$plugin = isset( $item['plugin'] ) && isset( $response[ $item['plugin'] ] )
|
63 |
? (array) $response[ $item['plugin'] ]
|
64 |
: (
|
app/Common/Admin/PostSettings.php
CHANGED
@@ -104,7 +104,7 @@ class PostSettings {
|
|
104 |
[ $this, 'postSettingsMetabox' ],
|
105 |
[ $postType ],
|
106 |
'normal',
|
107 |
-
'high'
|
108 |
);
|
109 |
}
|
110 |
}
|
104 |
[ $this, 'postSettingsMetabox' ],
|
105 |
[ $postType ],
|
106 |
'normal',
|
107 |
+
apply_filters( 'aioseo_post_metabox_priority', 'high' )
|
108 |
);
|
109 |
}
|
110 |
}
|
app/Common/Utils/Helpers.php
CHANGED
@@ -1946,6 +1946,18 @@ class Helpers {
|
|
1946 |
return preg_quote( $string, '/' );
|
1947 |
}
|
1948 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1949 |
/**
|
1950 |
* Returns the content with shortcodes replaced.
|
1951 |
*
|
1946 |
return preg_quote( $string, '/' );
|
1947 |
}
|
1948 |
|
1949 |
+
/**
|
1950 |
+
* Escapes special regex characters inside the replacement string.
|
1951 |
+
*
|
1952 |
+
* @since 4.0.7
|
1953 |
+
*
|
1954 |
+
* @param string $string The string.
|
1955 |
+
* @return string The escaped string.
|
1956 |
+
*/
|
1957 |
+
public function escapeRegexReplacement( $string ) {
|
1958 |
+
return str_replace( '$', '\$', $string );
|
1959 |
+
}
|
1960 |
+
|
1961 |
/**
|
1962 |
* Returns the content with shortcodes replaced.
|
1963 |
*
|
app/Common/Utils/Options.php
CHANGED
@@ -67,7 +67,7 @@ TEMPLATE
|
|
67 |
'seoAnalysis' => [ 'type' => 'boolean', 'default' => true ],
|
68 |
'dashboardWidget' => [ 'type' => 'boolean', 'default' => true ],
|
69 |
'announcements' => [ 'type' => 'boolean', 'default' => true ],
|
70 |
-
'autoUpdates' => [ 'type' => 'string', 'default' => '
|
71 |
'postTypes' => [
|
72 |
'all' => [ 'type' => 'boolean', 'default' => true ],
|
73 |
'included' => [ 'type' => 'array', 'default' => [ 'post', 'page', 'product' ] ],
|
67 |
'seoAnalysis' => [ 'type' => 'boolean', 'default' => true ],
|
68 |
'dashboardWidget' => [ 'type' => 'boolean', 'default' => true ],
|
69 |
'announcements' => [ 'type' => 'boolean', 'default' => true ],
|
70 |
+
'autoUpdates' => [ 'type' => 'string', 'default' => 'none' ],
|
71 |
'postTypes' => [
|
72 |
'all' => [ 'type' => 'boolean', 'default' => true ],
|
73 |
'included' => [ 'type' => 'array', 'default' => [ 'post', 'page', 'product' ] ],
|
app/Common/Utils/Tags.php
CHANGED
@@ -755,7 +755,7 @@ class Tags {
|
|
755 |
$pattern = "/$tagId(?![a-zA-Z0-9_])/im";
|
756 |
if ( preg_match( $pattern, $string ) ) {
|
757 |
$tagValue = $this->getTagValue( $tag, $id );
|
758 |
-
$string = preg_replace( $pattern, '%|%' . aioseo()->helpers->
|
759 |
}
|
760 |
}
|
761 |
|
755 |
$pattern = "/$tagId(?![a-zA-Z0-9_])/im";
|
756 |
if ( preg_match( $pattern, $string ) ) {
|
757 |
$tagValue = $this->getTagValue( $tag, $id );
|
758 |
+
$string = preg_replace( $pattern, '%|%' . aioseo()->helpers->escapeRegexReplacement( $tagValue ), $string );
|
759 |
}
|
760 |
}
|
761 |
|
dist/Lite/assets/css/aioseo-admin-bar.css
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
/*! ! built on Monday, December 21st 2020,
|
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 Monday, December 21st 2020, 2:25:29 pm */
|
2 |
#wpadminbar #wp-admin-bar-aioseo-main .aioseo-logo.svg{float:left;width:26px;height:30px;background-repeat:no-repeat;background-position:0 6px;background-size:20px;background-image:url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iI2ZmZiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0iYWlvc2VvLWdlYXIiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOS45ODU0MiAxOS45NzA4QzE1LjUwMDIgMTkuOTcwOCAxOS45NzA4IDE1LjUwMDIgMTkuOTcwOCA5Ljk4NTQyQzE5Ljk3MDggNC40NzA2MyAxNS41MDAyIDAgOS45ODU0MiAwQzQuNDcwNjMgMCAwIDQuNDcwNjMgMCA5Ljk4NTQyQzAgMTUuNTAwMiA0LjQ3MDYzIDE5Ljk3MDggOS45ODU0MiAxOS45NzA4Wk04LjM5NTQxIDMuNjU0NjRDOC4yNjAxNiAzLjQ0ODUgOC4wMDk2IDMuMzUyMTEgNy43Nzk4NSAzLjQzMzI3QzcuNTE4MTYgMy41MjU3MiA3LjI2MjE4IDMuNjM0NDUgNy4wMTM0OSAzLjc1ODhDNi43OTUxOSAzLjg2Nzk2IDYuNjg1NjYgNC4xMTczMSA2LjczMzcyIDQuMzYwNDlMNi45MDQ5MyA1LjIyNjk0QzYuOTQ5IDUuNDQ5OTYgNi44NTggNS42NzYzIDYuNjg1MjIgNS44MjAwOUM2LjQxMjE2IDYuMDQ3MzQgNi4xNjAwNyA2LjMwNDI2IDUuOTM0MjEgNi41ODg2NEM1Ljc5MzgzIDYuNzY1MzkgNS41NzIzMyA2Ljg1OTA3IDUuMzUzNjEgNi44MTQ4OUw0LjUwNDI0IDYuNjQzM0M0LjI2NTY0IDYuNTk1MSA0LjAyMTU3IDYuNzA3ODggMy45MTU0NCA2LjkzMTIxQzMuODU1NDkgNy4wNTczOCAzLjc5ODg5IDcuMTg2MiAzLjc0NTgzIDcuMzE3NThDMy42OTI3NiA3LjQ0ODk2IDMuNjQzOTcgNy41ODEwNSAzLjU5OTM4IDcuNzEzNjlDMy41MjA0OCA3Ljk0ODQ3IDMuNjE1NzkgOC4yMDM5OCAzLjgxODM5IDguMzQxMzNMNC41Mzk1OCA4LjgzMDI3QzQuNzI1MjkgOC45NTYxNyA0LjgxNzc4IDkuMTgxOSA0Ljc5NTM0IDkuNDA4MjZDNC43NTkyNSA5Ljc3MjQ0IDQuNzYwNzIgMTAuMTM2IDQuNzk3NTYgMTAuNDkzNkM0LjgyMDg3IDEwLjcxOTggNC43MjkxNSAxMC45NDU5IDQuNTQzODggMTEuMDcyNEwzLjgyNDA4IDExLjU2NDJDMy42MjIwNSAxMS43MDIyIDMuNTI3NTkgMTEuOTU3OSAzLjYwNzEzIDEyLjE5MjNDMy42OTc3NCAxMi40NTkzIDMuODA0MyAxMi43MjA1IDMuOTI2MTUgMTIuOTc0M0M0LjAzMzEzIDEzLjE5NzEgNC4yNzc0OSAxMy4zMDg4IDQuNTE1ODEgMTMuMjU5OEw1LjM2NDk1IDEzLjA4NTFDNS41ODM1IDEzLjA0MDEgNS44MDUzMyAxMy4xMzMgNS45NDYyMyAxMy4zMDkzQzYuMTY4OTMgMTMuNTg3OSA2LjQyMDcxIDEzLjg0NTEgNi42OTk0IDE0LjA3NTZDNi44NzI2MSAxNC4yMTg4IDYuOTY0NDIgMTQuNDQ0OCA2LjkyMTEyIDE0LjY2OEw2Ljc1Mjk2IDE1LjUzNDhDNi43MDU3MiAxNS43NzgyIDYuODE2MjUgMTYuMDI3MyA3LjAzNTExIDE2LjEzNTZDNy4xNTg3NiAxNi4xOTY3IDcuMjg1IDE2LjI1NDUgNy40MTM3NSAxNi4zMDg2QzcuNTQyNTEgMTYuMzYyOCA3LjY3MTk2IDE2LjQxMjYgNy44MDE5NSAxNi40NTgxQzguMTgyMjQgMTYuNTkxMiA4LjcxNDQ5IDE2LjExNDcgOS4xMDggMTUuNzYyNUM5LjMwMjA1IDE1LjU4ODggOS40MjE3NCAxNS4zNDMgOS40MjMwMSAxNS4wNzk4QzkuNDIzMDEgMTUuMDc4NCA5LjQyMzAyIDE1LjA3NyA5LjQyMzAyIDE1LjA3NTZMOS40MjMwMSAxMy42MjYzQzkuNDIzMDEgMTMuNjEwOSA5LjQyMzYgMTMuNTk1NyA5LjQyNDc2IDEzLjU4MDZDOC4yNjI0OCAxMy4yOTcxIDcuMzk4MzggMTIuMjMwMSA3LjM5ODM4IDEwLjk1NzJWOS40MTgyM0M3LjM5ODM4IDkuMzAxMjUgNy40OTEzMSA5LjIwNjQyIDcuNjA1OTYgOS4yMDY0Mkg4LjMyNTg0VjcuNjkyMkM4LjMyNTg0IDcuNDgzMTIgOC40OTE5MyA3LjMxMzY0IDguNjk2ODMgNy4zMTM2NEM4LjkwMTcxIDcuMzEzNjQgOS4wNjc4MSA3LjQ4MzEyIDkuMDY3ODEgNy42OTIyVjkuMjA2NDJIMTEuMDE1NVY3LjY5MjJDMTEuMDE1NSA3LjQ4MzEyIDExLjE4MTYgNy4zMTM2NCAxMS4zODY1IDcuMzEzNjRDMTEuNTkxNCA3LjMxMzY0IDExLjc1NzUgNy40ODMxMiAxMS43NTc1IDcuNjkyMlY5LjIwNjQySDEyLjQ3NzNDMTIuNTkyIDkuMjA2NDIgMTIuNjg0OSA5LjMwMTI1IDEyLjY4NDkgOS40MTgyM1YxMC45NTcyQzEyLjY4NDkgMTIuMjcwNCAxMS43NjUzIDEzLjM2NDMgMTAuNTQ3NCAxMy42MDUxQzEwLjU0NzcgMTMuNjEyMSAxMC41NDc4IDEzLjYxOTIgMTAuNTQ3OCAxMy42MjYzTDEwLjU0NzggMTUuMDY5NEMxMC41NDc4IDE1LjMzNzcgMTAuNjcxMSAxNS41ODc5IDEwLjg3MSAxNS43NjIyQzExLjI3MTUgMTYuMTExNSAxMS44MTI5IDE2LjU4MzcgMTIuMTkxIDE2LjQ1MDJDMTIuNDUyNyAxNi4zNTc3IDEyLjcwODYgMTYuMjQ5IDEyLjk1NzMgMTYuMTI0NkMxMy4xNzU2IDE2LjAxNTUgMTMuMjg1MiAxNS43NjYxIDEzLjIzNzEgMTUuNTIyOUwxMy4wNjU5IDE0LjY1NjVDMTMuMDIxOCAxNC40MzM0IDEzLjExMjggMTQuMjA3MSAxMy4yODU2IDE0LjA2MzNDMTMuNTU4NyAxMy44MzYxIDEzLjgxMDcgMTMuNTc5MiAxNC4wMzY2IDEzLjI5NDhDMTQuMTc3IDEzLjExOCAxNC4zOTg1IDEzLjAyNDQgMTQuNjE3MiAxMy4wNjg1TDE1LjQ2NjYgMTMuMjQwMUMxNS43MDUyIDEzLjI4ODMgMTUuOTQ5MyAxMy4xNzU2IDE2LjA1NTQgMTIuOTUyMkMxNi4xMTUzIDEyLjgyNjEgMTYuMTcxOSAxMi42OTcyIDE2LjIyNSAxMi41NjU5QzE2LjI3ODEgMTIuNDM0NSAxNi4zMjY5IDEyLjMwMjQgMTYuMzcxNCAxMi4xNjk4QzE2LjQ1MDMgMTEuOTM1IDE2LjM1NSAxMS42Nzk1IDE2LjE1MjQgMTEuNTQyMUwxNS40MzEyIDExLjA1MzJDMTUuMjQ1NSAxMC45MjczIDE1LjE1MyAxMC43MDE1IDE1LjE3NTUgMTAuNDc1MkMxNS4yMTE2IDEwLjExMSAxNS4yMTAxIDkuNzQ3NDQgMTUuMTczMyA5LjM4OTg2QzE1LjE0OTkgOS4xNjM2MSAxNS4yNDE3IDguOTM3NTcgMTUuNDI2OSA4LjgxMUwxNi4xNDY3IDguMzE5MjdDMTYuMzQ4OCA4LjE4MTI2IDE2LjQ0MzIgNy45MjU1OCAxNi4zNjM3IDcuNjkxMTVDMTYuMjczMSA3LjQyNDExIDE2LjE2NjUgNy4xNjI5MiAxNi4wNDQ3IDYuOTA5MTVDMTUuOTM3NyA2LjY4NjM4IDE1LjY5MzMgNi41NzQ2MiAxNS40NTUgNi42MjM2NkwxNC42MDU5IDYuNzk4MzdDMTQuMzg3MyA2Ljg0MzM0IDE0LjE2NTUgNi43NTA0OCAxNC4wMjQ2IDYuNTc0MThDMTMuODAxOSA2LjI5NTU0IDEzLjU1MDEgNi4wMzgzMiAxMy4yNzE0IDUuODA3ODRDMTMuMDk4MiA1LjY2NDYgMTMuMDA2NCA1LjQzODU4IDEzLjA0OTcgNS4yMTU0TDEzLjIxNzkgNC4zNDg2OEMxMy4yNjUxIDQuMTA1MjEgMTMuMTU0NiAzLjg1NjE2IDEyLjkzNTcgMy43NDc4N0MxMi44MTIxIDMuNjg2NjkgMTIuNjg1OCAzLjYyODk1IDEyLjU1NzEgMy41NzQ4QzEyLjQyODMgMy41MjA2NSAxMi4yOTg5IDMuNDcwODYgMTIuMTY4OSAzLjQyNTM3QzExLjkzODggMy4zNDQ4NSAxMS42ODg0IDMuNDQyMTEgMTEuNTUzOCAzLjY0ODg0TDExLjA3NDYgNC4zODQ3NUMxMC45NTEzIDQuNTc0MjUgMTAuNzMgNC42Njg2MiAxMC41MDgyIDQuNjQ1NzNDMTAuMTUxMyA0LjYwODkgOS43OTUwMiA0LjYxMDM5IDkuNDQ0NTkgNC42NDc5OUM5LjIyMjg2IDQuNjcxNzcgOS4wMDEzNCA0LjU3ODE4IDguODc3MzEgNC4zODkxM0w4LjM5NTQxIDMuNjU0NjRaIiBmaWxsPSIjZmZmIiAvPjwvc3ZnPg==") !important}#wpadminbar #wp-admin-bar-aioseo-pro-upgrade a{background-color:#1DA867;padding-bottom:5px}#wpadminbar #wp-admin-bar-aioseo-pro-upgrade a span{font-weight:600}#wpadminbar #wp-admin-bar-aioseo-pro-license a{background-color:#DF2A4A;padding-bottom:5px}#wpadminbar #wp-admin-bar-aioseo-pro-license a span{font-weight:600}#wpadminbar .aioseo-menu-notification-counter{display:inline-flex;vertical-align:top;box-sizing:border-box;margin:7px 0 0 5px;padding:0;min-width:18px;height:18px;border-radius:9px;background-color:#ca4a1f;color:#fff;font-size:11px;line-height:1.6;text-align:center;justify-content:center}#wpadminbar .aioseo-menu-notification-counter span{line-height:1;font-size:11px}#wpadminbar .aioseo-menu-notification-indicator{float:right;margin:10px 0 0;width:8px;height:8px;border-radius:50%;background-color:#ca4a1f;line-height:1.6;animation:aioseo-menu-notification-indicator-pulse 1.5s infinite}@keyframes aioseo-menu-notification-indicator-pulse{0%{box-shadow:0 0 0 0px rgba(202,74,31,0.5)}100%{box-shadow:0 0 0 10px rgba(202,74,31,0)}}@media screen and (max-width: 782px){#wpadminbar #wp-admin-bar-aioseo-main{display:block;position:static}#wpadminbar #wp-admin-bar-aioseo-main .ab-item .text{display:none}#wpadminbar #wp-admin-bar-aioseo-main .aioseo-logo.svg{width:52px;height:46px;background-position:50% 8px;background-size:30px}}
|
3 |
|
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%}.form-checkbox{position:relative;display:inline-block;width:28px;height:28px;color:#fff;vertical-align:bottom;text-align:center}.form-checkbox input{display:none}.form-checkbox input:checked+.fancy-checkbox.blue{background:#005ae0}.form-checkbox input:checked+.fancy-checkbox.green{background:#00aa63}.form-checkbox input:checked+.fancy-checkbox:before{background:transparent}.form-checkbox input:disabled+.fancy-checkbox{background:#e8e8eb!important;border:1px solid #d0d1d7;cursor:default}.form-checkbox input:disabled+.fancy-checkbox svg{color:#8c8f9a}.form-checkbox input:not(:checked):disabled+.fancy-checkbox:before{left:0;bottom:0;background:#e8e8eb}.form-checkbox .fancy-checkbox svg{color:#fff;width:16px;height:16px}.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}.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}.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%}.form-checkbox{position:relative;display:inline-block;width:28px;height:28px;color:#fff;vertical-align:bottom;text-align:center}.form-checkbox input{display:none}.form-checkbox input:checked+.fancy-checkbox.blue{background:#005ae0}.form-checkbox input:checked+.fancy-checkbox.green{background:#00aa63}.form-checkbox input:checked+.fancy-checkbox:before{background:transparent}.form-checkbox input:disabled+.fancy-checkbox{background:#e8e8eb!important;border:1px solid #d0d1d7;cursor:default}.form-checkbox input:disabled+.fancy-checkbox svg{color:#8c8f9a}.form-checkbox input:not(:checked):disabled+.fancy-checkbox:before{right:0;bottom:0;background:#e8e8eb}.form-checkbox .fancy-checkbox svg{color:#fff;width:16px;height:16px}.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}.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}.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/js/aioseo-admin-bar.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
/*! ! built on Monday, December 21st 2020,
|
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 Monday, December 21st 2020, 2:25:29 pm */
|
2 |
!function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=60)}({60:function(e,t,r){"use strict";r.r(t)}});
|
dist/Lite/assets/js/aioseo-admin-bar.js.gz
CHANGED
Binary file
|
dist/Lite/assets/js/plugins.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
/*! ! built on Monday, December 21st 2020,
|
2 |
!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 Monday, December 21st 2020, 2:25:29 pm */
|
2 |
!function(t){var n={};function r(e){if(n[e])return n[e].exports;var o=n[e]={i:e,l:!1,exports:{}};return t[e].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=t,r.c=n,r.d=function(t,n,e){r.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:e})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,n){if(1&n&&(t=r(t)),8&n)return t;if(4&n&&"object"==typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(r.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&n&&"string"!=typeof t)for(var o in t)r.d(e,o,function(n){return t[n]}.bind(null,o));return e},r.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(n,"a",n),n},r.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},r.p="",r(r.s=26)}([function(t,n,r){(function(n){function r(t){return t&&t.Math==Math&&t}t.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n&&n)||Function("return this")()}).call(this,r(29))},function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,n){var r={}.hasOwnProperty;t.exports=function(t,n){return r.call(t,n)}},function(t,n,r){r=r(1),t.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},function(t,n){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,n,r){var e=r(3),o=r(15),i=r(9);t.exports=e?function(t,n,r){return o.f(t,n,i(1,r))}:function(t,n,r){return t[n]=r,t}},function(t,n,r){var e=r(10),o=r(12);t.exports=function(t){return e(o(t))}},function(t,n,r){var e=r(0),o=r(5);t.exports=function(t,n){try{o(e,t,n)}catch(r){e[t]=n}return n}},function(t,n,r){var e=r(3),o=r(30),i=r(9),u=r(6),c=r(13),f=r(2),a=r(14),s=Object.getOwnPropertyDescriptor;n.f=e?s:function(t,n){if(t=u(t),n=c(n,!0),a)try{return s(t,n)}catch(t){}if(f(t,n))return i(!o.f.call(t,n),t[n])}},function(t,n){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},function(t,n,r){var e=r(1),o=r(11),i="".split;t.exports=e((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,n){var r={}.toString;t.exports=function(t){return r.call(t).slice(8,-1)}},function(t,n){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,n,r){var e=r(4);t.exports=function(t,n){if(!e(t))return t;var r,o;if(n&&"function"==typeof(r=t.toString)&&!e(o=r.call(t)))return o;if("function"==typeof(r=t.valueOf)&&!e(o=r.call(t)))return o;if(!n&&"function"==typeof(r=t.toString)&&!e(o=r.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,n,r){var e=r(3),o=r(1),i=r(31);t.exports=!e&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},function(t,n,r){var e=r(3),o=r(14),i=r(16),u=r(13),c=Object.defineProperty;n.f=e?c:function(t,n,r){if(i(t),n=u(n,!0),i(r),o)try{return c(t,n,r)}catch(t){}if("get"in r||"set"in r)throw TypeError("Accessors not supported");return"value"in r&&(t[n]=r.value),t}},function(t,n,r){var e=r(4);t.exports=function(t){if(!e(t))throw TypeError(String(t)+" is not an object");return t}},function(t,n,r){r=r(18);var e=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(t){return e.call(t)}),t.exports=r.inspectSource},function(t,n,r){var e=r(0),o=r(7);r=e[r="__core-js_shared__"]||o(r,{});t.exports=r},function(t,n,r){var e=r(36),o=r(18);(t.exports=function(t,n){return o[t]||(o[t]=void 0!==n?n:{})})("versions",[]).push({version:"3.6.5",mode:e?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},function(t,n){var r=0,e=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++r+e).toString(36)}},function(t,n){t.exports={}},function(t,n,r){var e=r(23),o=Math.min;t.exports=function(t){return 0<t?o(e(t),9007199254740991):0}},function(t,n){var r=Math.ceil,e=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(0<t?e:r)(t)}},function(t,n,r){"use strict";var e=r(48).forEach,o=r(56);r=r(57),o=o("forEach"),r=r("forEach");t.exports=o&&r?[].forEach:function(t,n){return e(this,t,1<arguments.length?n:void 0)}},function(t,n,r){r=r(1),t.exports=!!Object.getOwnPropertySymbols&&!r((function(){return!String(Symbol())}))},function(t,n,r){r(27),r(58),new(function(){"use strict";function t(){this.selector=document.querySelector('tr[data-plugin="'+window.aioseoPlugins.basename+'"]'),this.init()}return t.prototype.init=function(){var t;this.selector&&(this.selector.classList.add("aioseo-plugin-row"),(t=this.selector.querySelectorAll("span.proupgrade a, span.docs a, span.support a")).length&&t.forEach((function(t){t.setAttribute("target","_blank")})),(t=this.selector.querySelectorAll(".column-description .active a")).length&&t.forEach((function(t){t.setAttribute("target","_blank")})))},t}())},function(t,n,r){"use strict";var e=r(28);r=r(24);e({target:"Array",proto:!0,forced:[].forEach!=r},{forEach:r})},function(t,n,r){var e=r(0),o=r(8).f,i=r(5),u=r(32),c=r(7),f=r(37),a=r(47);t.exports=function(t,n){var r,s,l,p=t.target,y=t.global,v=t.stat,h=y?e:v?e[p]||c(p,{}):(e[p]||{}).prototype;if(h)for(r in n){if(s=n[r],l=t.noTargetGet?(l=o(h,r))&&l.value:h[r],!a(y?r:p+(v?".":"#")+r,t.forced)&&void 0!==l){if(typeof s==typeof l)continue;f(s,l)}(t.sham||l&&l.sham)&&i(s,"sham",!0),u(h,r,s,t)}}},function(t,n){var r=function(){return this}();try{r=r||new Function("return this")()}catch(t){"object"==typeof window&&(r=window)}t.exports=r},function(t,n,r){"use strict";var e={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!e.call({1:2},1);n.f=i?function(t){return!!(t=o(this,t))&&t.enumerable}:e},function(t,n,r){var e=r(0),o=(r=r(4),e.document),i=r(o)&&r(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},function(t,n,r){var e=r(0),o=r(5),i=r(2),u=r(7),c=r(17),f=(r=r(33)).get,a=r.enforce,s=String(String).split("String");(t.exports=function(t,n,r,c){var f=!!c&&!!c.unsafe,l=!!c&&!!c.enumerable;c=!!c&&!!c.noTargetGet;"function"==typeof r&&("string"!=typeof n||i(r,"name")||o(r,"name",n),a(r).source=s.join("string"==typeof n?n:"")),t!==e?(f?!c&&t[n]&&(l=!0):delete t[n],l?t[n]=r:o(t,n,r)):l?t[n]=r:u(n,r)})(Function.prototype,"toString",(function(){return"function"==typeof this&&f(this).source||c(this)}))},function(t,n,r){var e,o,i,u,c,f,a,s,l=r(34),p=r(0),y=r(4),v=r(5),h=r(2),g=r(35);r=r(21),p=p.WeakMap;a=l?(e=new p,o=e.get,i=e.has,u=e.set,c=function(t,n){return u.call(e,t,n),n},f=function(t){return o.call(e,t)||{}},function(t){return i.call(e,t)}):(r[s=g("state")]=!0,c=function(t,n){return v(t,s,n),n},f=function(t){return h(t,s)?t[s]:{}},function(t){return h(t,s)}),t.exports={set:c,get:f,has:a,enforce:function(t){return a(t)?f(t):c(t,{})},getterFor:function(t){return function(n){var r;if(!y(n)||(r=f(n)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return r}}}},function(t,n,r){var e=r(0);r=r(17),e=e.WeakMap;t.exports="function"==typeof e&&/native code/.test(r(e))},function(t,n,r){var e=r(19),o=r(20),i=e("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,n){t.exports=!1},function(t,n,r){var e=r(2),o=r(38),i=r(8),u=r(15);t.exports=function(t,n){for(var r=o(n),c=u.f,f=i.f,a=0;a<r.length;a++){var s=r[a];e(t,s)||c(t,s,f(n,s))}}},function(t,n,r){var e=r(39),o=r(41),i=r(46),u=r(16);t.exports=e("Reflect","ownKeys")||function(t){var n=o.f(u(t)),r=i.f;return r?n.concat(r(t)):n}},function(t,n,r){function e(t){return"function"==typeof t?t:void 0}var o=r(40),i=r(0);t.exports=function(t,n){return arguments.length<2?e(o[t])||e(i[t]):o[t]&&o[t][n]||i[t]&&i[t][n]}},function(t,n,r){r=r(0),t.exports=r},function(t,n,r){var e=r(42),o=r(45).concat("length","prototype");n.f=Object.getOwnPropertyNames||function(t){return e(t,o)}},function(t,n,r){var e=r(2),o=r(6),i=r(43).indexOf,u=r(21);t.exports=function(t,n){var r,c=o(t),f=0,a=[];for(r in c)!e(u,r)&&e(c,r)&&a.push(r);for(;n.length>f;)e(c,r=n[f++])&&(~i(a,r)||a.push(r));return a}},function(t,n,r){var e=r(6),o=r(22),i=r(44);r=function(t){return function(n,r,u){var c,f=e(n),a=o(f.length),s=i(u,a);if(t&&r!=r){for(;s<a;)if((c=f[s++])!=c)return!0}else for(;s<a;s++)if((t||s in f)&&f[s]===r)return t||s||0;return!t&&-1}};t.exports={includes:r(!0),indexOf:r(!1)}},function(t,n,r){var e=r(23),o=Math.max,i=Math.min;t.exports=function(t,n){return(t=e(t))<0?o(t+n,0):i(t,n)}},function(t,n){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,n){n.f=Object.getOwnPropertySymbols},function(t,n,r){var e=r(1),o=/#|\.prototype\./,i=(r=function(t,n){return(t=u[i(t)])==f||t!=c&&("function"==typeof n?e(n):!!n)}).normalize=function(t){return String(t).replace(o,".").toLowerCase()},u=r.data={},c=r.NATIVE="N",f=r.POLYFILL="P";t.exports=r},function(t,n,r){var e=r(49),o=r(10),i=r(51),u=r(22),c=r(52),f=[].push;r=function(t){var n=1==t,r=2==t,a=3==t,s=4==t,l=6==t,p=5==t||l;return function(y,v,h,g){for(var d,b,x=i(y),S=o(x),m=e(v,h,3),w=u(S.length),O=0,L=(g=g||c,n?g(y,w):r?g(y,0):void 0);O<w;O++)if((p||O in S)&&(b=m(d=S[O],O,x),t))if(n)L[O]=b;else if(b)switch(t){case 3:return!0;case 5:return d;case 6:return O;case 2:f.call(L,d)}else if(s)return!1;return l?-1:a||s?s:L}};t.exports={forEach:r(0),map:r(1),filter:r(2),some:r(3),every:r(4),find:r(5),findIndex:r(6)}},function(t,n,r){var e=r(50);t.exports=function(t,n,r){if(e(t),void 0===n)return t;switch(r){case 0:return function(){return t.call(n)};case 1:return function(r){return t.call(n,r)};case 2:return function(r,e){return t.call(n,r,e)};case 3:return function(r,e,o){return t.call(n,r,e,o)}}return function(){return t.apply(n,arguments)}}},function(t,n){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},function(t,n,r){var e=r(12);t.exports=function(t){return Object(e(t))}},function(t,n,r){var e=r(4),o=r(53),i=r(54)("species");t.exports=function(t,n){var r;return o(t)&&("function"==typeof(r=t.constructor)&&(r===Array||o(r.prototype))||e(r)&&null===(r=r[i]))&&(r=void 0),new(void 0===r?Array:r)(0===n?0:n)}},function(t,n,r){var e=r(11);t.exports=Array.isArray||function(t){return"Array"==e(t)}},function(t,n,r){var e=r(0),o=r(19),i=r(2),u=r(20),c=r(25),f=(r=r(55),o("wks")),a=e.Symbol,s=r?a:a&&a.withoutSetter||u;t.exports=function(t){return i(f,t)||(c&&i(a,t)?f[t]=a[t]:f[t]=s("Symbol."+t)),f[t]}},function(t,n,r){r=r(25),t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,n,r){"use strict";var e=r(1);t.exports=function(t,n){var r=[][t];return!!r&&e((function(){r.call(null,n||function(){throw 1},1)}))}},function(t,n,r){function e(t){throw t}var o=r(3),i=r(1),u=r(2),c=Object.defineProperty,f={};t.exports=function(t,n){if(u(f,t))return f[t];var r=[][t],a=!!u(n=n||{},"ACCESSORS")&&n.ACCESSORS,s=u(n,0)?n[0]:e,l=u(n,1)?n[1]:void 0;return f[t]=!!r&&!i((function(){if(a&&!o)return!0;var t={length:-1};a?c(t,1,{enumerable:!0,get:e}):t[1]=1,r.call(t,s,l)}))}},function(t,n,r){var e,o=r(0),i=r(59),u=r(24),c=r(5);for(e in i){var f=o[e],a=f&&f.prototype;if(a&&a.forEach!==u)try{c(a,"forEach",u)}catch(t){a.forEach=u}}},function(t,n){t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}}]);
|
dist/Lite/assets/js/plugins.js.gz
CHANGED
Binary file
|
languages/aioseo-lite.php
CHANGED
@@ -1,66 +1,11 @@
|
|
1 |
<?php
|
2 |
/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
|
3 |
$generated_i18n_strings = array(
|
4 |
-
// Reference: src/vue/pages/
|
5 |
-
__( '
|
6 |
-
|
7 |
-
// Reference: src/vue/pages/settings/router/paths.js:28
|
8 |
-
__( 'Webmaster Tools', 'all-in-one-seo-pack' ),
|
9 |
-
|
10 |
-
// Reference: src/vue/pages/settings/router/paths.js:47
|
11 |
-
__( 'RSS Content', 'all-in-one-seo-pack' ),
|
12 |
-
|
13 |
-
// Reference: src/vue/pages/settings/router/paths.js:57
|
14 |
-
__( 'Access Control', 'all-in-one-seo-pack' ),
|
15 |
-
|
16 |
-
// Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:76
|
17 |
-
__( 'Advanced', 'all-in-one-seo-pack' ),
|
18 |
-
|
19 |
-
// Reference: src/vue/pages/about/router/paths.js:19
|
20 |
-
__( 'About Us', 'all-in-one-seo-pack' ),
|
21 |
-
|
22 |
-
// Reference: src/vue/pages/about/router/paths.js:28
|
23 |
-
__( 'Getting Started', 'all-in-one-seo-pack' ),
|
24 |
-
|
25 |
-
// Reference: src/vue/pages/about/router/paths.js:37
|
26 |
-
__( 'Lite vs. Pro', 'all-in-one-seo-pack' ),
|
27 |
-
|
28 |
-
// Reference: src/vue/pages/post-settings/registerScoreToggler.js:21
|
29 |
-
__( 'N/A', 'all-in-one-seo-pack' ),
|
30 |
-
|
31 |
-
// Reference: src/vue/pages/connect-pro/router/paths.js:20
|
32 |
-
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
33 |
-
__( 'Connect with %1$s', 'all-in-one-seo-pack' ),
|
34 |
-
|
35 |
-
// Reference: src/vue/pages/monsterinsights/router/paths.js:19
|
36 |
-
__( 'Analytics', 'all-in-one-seo-pack' ),
|
37 |
-
|
38 |
-
// Reference: src/vue/pages/setup-wizard/router/paths.js:19
|
39 |
-
__( 'Welcome', 'all-in-one-seo-pack' ),
|
40 |
-
|
41 |
-
// Reference: src/vue/pages/setup-wizard/router/paths.js:28
|
42 |
-
__( 'Import', 'all-in-one-seo-pack' ),
|
43 |
-
|
44 |
-
// Reference: src/vue/pages/setup-wizard/router/paths.js:37
|
45 |
-
__( 'Category', 'all-in-one-seo-pack' ),
|
46 |
-
|
47 |
-
// Reference: src/vue/pages/setup-wizard/router/paths.js:46
|
48 |
-
__( 'Additional Site Information', 'all-in-one-seo-pack' ),
|
49 |
-
|
50 |
-
// Reference: src/vue/pages/setup-wizard/router/paths.js:55
|
51 |
-
__( 'Choose Features', 'all-in-one-seo-pack' ),
|
52 |
-
|
53 |
-
// Reference: src/vue/pages/setup-wizard/router/paths.js:64
|
54 |
-
__( 'Search Appearance', 'all-in-one-seo-pack' ),
|
55 |
-
|
56 |
-
// Reference: src/vue/pages/setup-wizard/router/paths.js:73
|
57 |
-
__( 'Smart Recommendations', 'all-in-one-seo-pack' ),
|
58 |
-
|
59 |
-
// Reference: src/vue/pages/setup-wizard/router/paths.js:82
|
60 |
-
__( 'License Key', 'all-in-one-seo-pack' ),
|
61 |
|
62 |
-
// Reference: src/vue/pages/
|
63 |
-
__( '
|
64 |
|
65 |
// Reference: src/vue/router/index.js:51
|
66 |
__( 'Are you sure you want to leave? you have unsaved changes!', 'all-in-one-seo-pack' ),
|
@@ -68,40 +13,26 @@ $generated_i18n_strings = array(
|
|
68 |
// Reference: src/vue/pages/feature-manager/views/Main.vue:20
|
69 |
__( 'Feature Manager', 'all-in-one-seo-pack' ),
|
70 |
|
71 |
-
// Reference: src/vue/
|
72 |
-
|
73 |
-
|
74 |
-
// Reference: src/vue/pages/seo-analysis/router/paths.js:28
|
75 |
-
__( 'Analyze Competitor Site', 'all-in-one-seo-pack' ),
|
76 |
-
|
77 |
-
// Reference: src/vue/pages/dashboard/router/paths.js:19
|
78 |
-
__( 'Dashboard', 'all-in-one-seo-pack' ),
|
79 |
-
|
80 |
-
// Reference: src/vue/pages/local-seo/router/paths.js:19
|
81 |
-
__( 'Locations', 'all-in-one-seo-pack' ),
|
82 |
-
|
83 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:306
|
84 |
-
__( 'Opening Hours', 'all-in-one-seo-pack' ),
|
85 |
-
|
86 |
-
// Reference: src/vue/pages/sitemaps/router/paths.js:19
|
87 |
-
__( 'General Sitemap', 'all-in-one-seo-pack' ),
|
88 |
|
89 |
-
// Reference: src/vue/
|
90 |
-
__( '
|
91 |
|
92 |
-
// Reference: src/vue/pages/
|
93 |
-
__( '
|
94 |
|
95 |
-
// Reference: src/vue/pages/
|
96 |
-
__( '
|
97 |
|
98 |
-
// Reference: src/vue/pages/tools/
|
99 |
__( 'Robots.txt Editor', 'all-in-one-seo-pack' ),
|
100 |
|
101 |
-
// Reference: src/vue/pages/tools/
|
102 |
__( '.htaccess Editor', 'all-in-one-seo-pack' ),
|
103 |
|
104 |
-
// Reference: src/vue/pages/tools/
|
105 |
__( 'Bad Bot Blocker', 'all-in-one-seo-pack' ),
|
106 |
|
107 |
// Reference: src/vue/pages/tools/router/paths.js:46
|
@@ -113,15 +44,38 @@ $generated_i18n_strings = array(
|
|
113 |
// Reference: src/vue/pages/tools/router/paths.js:64
|
114 |
__( 'System Status', 'all-in-one-seo-pack' ),
|
115 |
|
116 |
-
// Reference: src/vue/pages/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
__( 'Social Profiles', 'all-in-one-seo-pack' ),
|
118 |
|
119 |
// Reference: src/vue/pages/post-settings/views/Social.vue:65
|
120 |
-
// Reference: src/vue/pages/social-networks/router/paths.js:28
|
121 |
__( 'Facebook', 'all-in-one-seo-pack' ),
|
122 |
|
123 |
// Reference: src/vue/pages/post-settings/views/Social.vue:69
|
124 |
-
// Reference: src/vue/pages/social-networks/router/paths.js:37
|
125 |
__( 'Twitter', 'all-in-one-seo-pack' ),
|
126 |
|
127 |
// Reference: src/vue/pages/social-networks/views/Pinterest.vue:45
|
@@ -134,6 +88,8 @@ $generated_i18n_strings = array(
|
|
134 |
__( 'Content Types', 'all-in-one-seo-pack' ),
|
135 |
|
136 |
// Reference: src/vue/components/common/core/PriorityScore.vue:63
|
|
|
|
|
137 |
__( 'Taxonomies', 'all-in-one-seo-pack' ),
|
138 |
|
139 |
// Reference: src/vue/pages/search-appearance/router/paths.js:46
|
@@ -142,190 +98,321 @@ $generated_i18n_strings = array(
|
|
142 |
// Reference: src/vue/pages/search-appearance/router/paths.js:55
|
143 |
__( 'Archives', 'all-in-one-seo-pack' ),
|
144 |
|
145 |
-
// Reference: src/vue/
|
146 |
-
__( '
|
147 |
|
148 |
-
// Reference: src/vue/
|
149 |
-
|
|
|
150 |
|
151 |
-
// Reference: src/vue/pages/
|
152 |
-
|
|
|
153 |
|
154 |
-
// Reference: src/vue/pages/
|
155 |
-
__( '
|
156 |
|
157 |
-
// Reference: src/vue/pages/
|
158 |
-
__( '
|
159 |
|
160 |
-
// Reference: src/vue/pages/
|
161 |
-
__( '
|
162 |
|
163 |
-
// Reference: src/vue/pages/
|
164 |
-
__( '
|
165 |
|
166 |
-
// Reference: src/vue/pages/
|
167 |
-
__( '
|
168 |
|
169 |
-
// Reference: src/vue/
|
170 |
-
|
171 |
-
__( 'Upgrade to %1$s', 'all-in-one-seo-pack' ),
|
172 |
|
173 |
-
// Reference: src/vue/
|
174 |
-
|
175 |
-
__( '
|
176 |
|
177 |
-
// Reference: src/vue/
|
178 |
-
__( '
|
179 |
|
180 |
-
// Reference: src/vue/
|
181 |
-
__( '
|
182 |
|
183 |
-
// Reference: src/vue/
|
184 |
-
__( '
|
185 |
|
186 |
-
// Reference: src/vue/
|
187 |
-
__( '
|
188 |
|
189 |
-
// Reference: src/vue/
|
190 |
-
|
191 |
-
__( 'Step %1$s of %2$s', 'all-in-one-seo-pack' ),
|
192 |
|
193 |
-
// Reference: src/vue/pages/
|
194 |
-
// Reference: src/vue/pages/
|
195 |
-
__( '
|
196 |
|
197 |
-
// Reference: src/vue/pages/
|
198 |
-
|
199 |
-
__( 'Welcome to the %1$s Setup Wizard!', 'all-in-one-seo-pack' ),
|
200 |
|
201 |
-
// Reference: src/vue/pages/
|
202 |
-
__( '
|
203 |
|
204 |
-
// Reference: src/vue/pages/
|
205 |
-
__( '
|
206 |
|
207 |
-
// Reference: src/vue/pages/
|
208 |
-
__( '
|
209 |
|
210 |
-
// Reference: src/vue/pages/
|
211 |
-
__( '
|
212 |
|
213 |
-
// Reference: src/vue/pages/
|
214 |
-
__( '
|
215 |
|
216 |
-
// Reference: src/vue/pages/
|
217 |
-
__( '
|
218 |
|
219 |
-
// Reference: src/vue/pages/
|
220 |
-
__( '
|
221 |
|
222 |
-
// Reference: src/vue/pages/
|
223 |
-
__( '
|
224 |
|
225 |
-
// Reference: src/vue/pages/
|
226 |
-
__( '
|
227 |
|
228 |
-
// Reference: src/vue/pages/
|
229 |
-
__( '
|
230 |
|
231 |
-
// Reference: src/vue/pages/
|
232 |
-
__( '
|
233 |
|
234 |
-
// Reference: src/vue/pages/
|
235 |
-
__( '
|
236 |
|
237 |
-
// Reference: src/vue/pages/
|
238 |
-
__( '
|
239 |
|
240 |
-
// Reference: src/vue/pages/
|
241 |
-
|
242 |
-
__( '%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' ),
|
243 |
|
244 |
-
// Reference: src/vue/pages/
|
245 |
-
__( '
|
246 |
|
247 |
-
// Reference: src/vue/pages/
|
248 |
-
|
249 |
-
__( '%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' ),
|
250 |
|
251 |
-
// Reference: src/vue/pages/
|
252 |
-
__( '
|
253 |
|
254 |
-
// Reference: src/vue/pages/
|
255 |
-
__( '
|
256 |
|
257 |
-
// Reference: src/vue/pages/
|
258 |
-
__( '
|
259 |
|
260 |
-
// Reference: src/vue/pages/
|
261 |
-
__( '
|
262 |
|
263 |
-
// Reference: src/vue/pages/
|
264 |
-
__( '
|
265 |
|
266 |
-
// Reference: src/vue/
|
267 |
-
|
|
|
268 |
|
269 |
-
// Reference: src/vue/
|
270 |
-
|
271 |
-
__( '
|
272 |
|
273 |
-
// Reference: src/vue/pages/
|
274 |
-
__( '
|
275 |
|
276 |
-
// Reference: src/vue/pages/
|
277 |
-
__( '
|
278 |
|
279 |
-
// Reference: src/vue/pages/
|
280 |
-
__( '
|
281 |
|
282 |
-
// Reference: src/vue/pages/
|
283 |
-
|
|
|
|
|
284 |
|
285 |
-
// Reference: src/vue/pages/
|
286 |
-
|
|
|
|
|
287 |
|
288 |
-
// Reference: src/vue/pages/
|
289 |
-
|
|
|
290 |
|
291 |
-
// Reference: src/vue/pages/
|
292 |
-
|
|
|
|
|
293 |
|
294 |
-
// Reference: src/vue/pages/
|
295 |
-
__( '
|
296 |
|
297 |
-
// Reference: src/vue/pages/
|
298 |
-
__( '
|
299 |
|
300 |
-
// Reference: src/vue/pages/
|
301 |
-
__( 'Contact
|
302 |
|
303 |
-
// Reference: src/vue/
|
304 |
-
|
|
|
305 |
|
306 |
-
// Reference: src/vue/pages/
|
307 |
-
__( '
|
308 |
|
309 |
-
// Reference: src/vue/pages/local-seo/views/lite/
|
310 |
-
__( '
|
311 |
|
312 |
-
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:
|
313 |
-
__( '
|
314 |
|
315 |
-
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:
|
316 |
-
__( '
|
317 |
|
318 |
-
// Reference: src/vue/
|
319 |
-
|
|
|
|
|
320 |
|
321 |
-
// Reference: src/vue/pages/
|
322 |
-
__( '
|
323 |
|
324 |
-
// Reference: src/vue/pages/
|
325 |
-
__( '
|
326 |
|
327 |
-
// Reference: src/vue/pages/
|
328 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
329 |
|
330 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:678
|
331 |
__( 'General Facebook Settings', 'all-in-one-seo-pack' ),
|
@@ -336,22 +423,22 @@ $generated_i18n_strings = array(
|
|
336 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:680
|
337 |
__( 'Enable Open Graph Markup', 'all-in-one-seo-pack' ),
|
338 |
|
339 |
-
// Reference: src/vue/pages/social-networks/views/
|
340 |
__( 'Default Post Image Source', 'all-in-one-seo-pack' ),
|
341 |
|
342 |
-
// Reference: src/vue/pages/social-networks/views/
|
343 |
__( 'Default Term Image Source', 'all-in-one-seo-pack' ),
|
344 |
|
345 |
-
// Reference: src/vue/pages/social-networks/views/
|
346 |
__( 'Width', 'all-in-one-seo-pack' ),
|
347 |
|
348 |
-
// Reference: src/vue/pages/social-networks/views/
|
349 |
__( 'Height', 'all-in-one-seo-pack' ),
|
350 |
|
351 |
-
// Reference: src/vue/pages/social-networks/views/
|
352 |
__( 'Post Custom Field Name', 'all-in-one-seo-pack' ),
|
353 |
|
354 |
-
// Reference: src/vue/pages/social-networks/views/
|
355 |
__( 'Term Custom Field Name', 'all-in-one-seo-pack' ),
|
356 |
|
357 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:687
|
@@ -363,7 +450,7 @@ $generated_i18n_strings = array(
|
|
363 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:691
|
364 |
__( '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' ),
|
365 |
|
366 |
-
// Reference: src/vue/pages/social-networks/views/
|
367 |
__( 'Home Page Settings', 'all-in-one-seo-pack' ),
|
368 |
|
369 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:693
|
@@ -379,30 +466,28 @@ $generated_i18n_strings = array(
|
|
379 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:697
|
380 |
__( 'Site Name', 'all-in-one-seo-pack' ),
|
381 |
|
382 |
-
// Reference: src/vue/pages/post-settings/views/
|
383 |
-
// Reference: src/vue/pages/social-networks/views/Facebook.vue:698
|
384 |
__( 'Title', 'all-in-one-seo-pack' ),
|
385 |
|
386 |
-
// Reference: src/vue/pages/social-networks/views/
|
387 |
__( 'Use the home page title', 'all-in-one-seo-pack' ),
|
388 |
|
389 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:700
|
390 |
__( 'Click on the tags below to insert variables into your site name.', 'all-in-one-seo-pack' ),
|
391 |
|
392 |
-
// Reference: src/vue/pages/social-networks/views/
|
393 |
__( 'Click on the tags below to insert variables into your home page title.', 'all-in-one-seo-pack' ),
|
394 |
|
395 |
-
// Reference: src/vue/pages/social-networks/views/
|
396 |
__( 'Description', 'all-in-one-seo-pack' ),
|
397 |
|
398 |
-
// Reference: src/vue/pages/social-networks/views/
|
399 |
__( 'Use the home page description', 'all-in-one-seo-pack' ),
|
400 |
|
401 |
-
// Reference: src/vue/pages/social-networks/views/
|
402 |
__( 'Click on the tags below to insert variables into your description.', 'all-in-one-seo-pack' ),
|
403 |
|
404 |
-
// Reference: src/vue/pages/
|
405 |
-
// Reference: src/vue/pages/social-networks/views/Facebook.vue:706
|
406 |
__( 'Advanced Settings', 'all-in-one-seo-pack' ),
|
407 |
|
408 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:707
|
@@ -444,7 +529,7 @@ $generated_i18n_strings = array(
|
|
444 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:719
|
445 |
__( 'Default Taxonomy Object Types are only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
446 |
|
447 |
-
// Reference: src/vue/pages/social-networks/views/
|
448 |
__( 'Default Term Image Source is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
449 |
|
450 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:721
|
@@ -459,280 +544,256 @@ $generated_i18n_strings = array(
|
|
459 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:724
|
460 |
__( 'Use Post Tags in Article Tags', 'all-in-one-seo-pack' ),
|
461 |
|
462 |
-
// Reference: src/vue/pages/social-networks/views/
|
463 |
/* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
|
464 |
__( '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' ),
|
465 |
|
466 |
-
// Reference: src/vue/pages/
|
467 |
__( 'Object Type', 'all-in-one-seo-pack' ),
|
468 |
|
469 |
-
// Reference: src/vue/pages/
|
470 |
-
__( '
|
471 |
-
|
472 |
-
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:112
|
473 |
-
__( 'Perform in-depth SEO Analysis of your competitor\'s website.', 'all-in-one-seo-pack' ),
|
474 |
|
475 |
-
// Reference: src/vue/pages/
|
476 |
-
__( '
|
477 |
|
478 |
-
// Reference: src/vue/pages/
|
479 |
-
|
|
|
480 |
|
481 |
-
// Reference: src/vue/
|
482 |
-
|
483 |
-
__( 'The URL provided is invalid.', 'all-in-one-seo-pack' ),
|
484 |
|
485 |
-
// Reference: src/vue/
|
486 |
-
|
487 |
-
__( 'We were unable to parse the content for this site.', 'all-in-one-seo-pack' ),
|
488 |
|
489 |
-
// Reference: src/vue/
|
490 |
-
|
491 |
-
/* Translators: 1 - The plugin short name ('AIOSEO'). */
|
492 |
-
__( 'Your site is not connected. Please connect to %1$s, then try again.', 'all-in-one-seo-pack' ),
|
493 |
|
494 |
-
// Reference: src/vue/
|
495 |
-
__( '
|
496 |
|
497 |
-
// Reference: src/vue/
|
498 |
-
__( '
|
499 |
|
500 |
-
// Reference: src/vue/pages/
|
501 |
-
|
|
|
502 |
|
503 |
-
// Reference: src/vue/
|
504 |
-
|
505 |
-
__( 'Refresh Results', 'all-in-one-seo-pack' ),
|
506 |
|
507 |
-
// Reference: src/vue/pages/
|
508 |
-
__( '
|
509 |
|
510 |
-
// Reference: src/vue/
|
511 |
-
__( '
|
512 |
|
513 |
-
// Reference: src/vue/pages/
|
514 |
-
__( '
|
515 |
|
516 |
-
// Reference: src/vue/pages/
|
517 |
-
__( '
|
518 |
|
519 |
-
// Reference: src/vue/pages/
|
520 |
-
__( '
|
521 |
|
522 |
-
// Reference: src/vue/pages/
|
523 |
-
__( '
|
524 |
|
525 |
-
// Reference: src/vue/pages/local-seo/views/
|
526 |
-
|
|
|
527 |
|
528 |
-
// Reference: src/vue/pages/
|
529 |
-
|
|
|
530 |
|
531 |
-
// Reference: src/vue/pages/
|
532 |
-
|
|
|
|
|
|
|
533 |
|
534 |
-
// Reference: src/vue/pages/
|
535 |
-
__( '
|
536 |
|
537 |
-
// Reference: src/vue/pages/
|
538 |
-
|
|
|
539 |
|
540 |
-
// Reference: src/vue/pages/
|
541 |
-
|
|
|
542 |
|
543 |
-
// Reference: src/vue/pages/
|
544 |
-
__( '
|
545 |
|
546 |
-
// Reference: src/vue/pages/
|
547 |
-
|
|
|
|
|
548 |
|
549 |
-
// Reference: src/vue/pages/
|
550 |
-
|
|
|
|
|
551 |
|
552 |
-
// Reference: src/vue/pages/
|
553 |
-
__( '
|
554 |
|
555 |
-
// Reference: src/vue/pages/
|
556 |
-
__( '
|
557 |
|
558 |
-
// Reference: src/vue/pages/
|
559 |
-
__( '
|
560 |
|
561 |
-
// Reference: src/vue/
|
562 |
-
|
563 |
-
|
564 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:312
|
565 |
-
__( 'Saturday', 'all-in-one-seo-pack' ),
|
566 |
-
|
567 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:313
|
568 |
-
__( 'Sunday', 'all-in-one-seo-pack' ),
|
569 |
-
|
570 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:314
|
571 |
-
__( 'Open 24h', 'all-in-one-seo-pack' ),
|
572 |
-
|
573 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:315
|
574 |
-
__( 'Closed', 'all-in-one-seo-pack' ),
|
575 |
-
|
576 |
-
// Reference: src/vue/components/common/core/Keyphrase.vue:44
|
577 |
-
__( 'Delete', 'all-in-one-seo-pack' ),
|
578 |
-
|
579 |
-
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:101
|
580 |
-
__( 'Success! The backup was deleted.', 'all-in-one-seo-pack' ),
|
581 |
-
|
582 |
-
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:102
|
583 |
-
__( 'Success! The backup was restored.', 'all-in-one-seo-pack' ),
|
584 |
-
|
585 |
-
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:146
|
586 |
-
__( '%1$s at %2$s', 'all-in-one-seo-pack' ),
|
587 |
-
|
588 |
-
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:96
|
589 |
-
__( 'Backup Settings', 'all-in-one-seo-pack' ),
|
590 |
-
|
591 |
-
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:97
|
592 |
-
__( 'You have no saved backups.', 'all-in-one-seo-pack' ),
|
593 |
|
594 |
-
// Reference: src/vue/pages/
|
595 |
-
__( '
|
596 |
|
597 |
-
// Reference: src/vue/pages/
|
598 |
-
__( '
|
599 |
|
600 |
-
// Reference: src/vue/pages/
|
601 |
-
__( '
|
602 |
|
603 |
-
// Reference: src/vue/pages/
|
604 |
-
__( '
|
605 |
|
606 |
-
// Reference: src/vue/pages/
|
607 |
-
|
|
|
608 |
|
609 |
-
// Reference: src/vue/pages/
|
610 |
-
__( '
|
611 |
|
612 |
-
// Reference: src/vue/pages/
|
613 |
-
|
|
|
614 |
|
615 |
-
// Reference: src/vue/pages/
|
616 |
-
__( '
|
617 |
|
618 |
-
// Reference: src/vue/pages/
|
619 |
-
__( '
|
620 |
|
621 |
-
// Reference: src/vue/pages/
|
622 |
-
__( '
|
623 |
|
624 |
-
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:
|
625 |
-
__( '
|
626 |
|
627 |
-
// Reference: src/vue/pages/
|
628 |
-
__( '
|
629 |
|
630 |
-
// Reference: src/vue/pages/
|
631 |
-
__( '
|
632 |
|
633 |
-
// Reference: src/vue/pages/
|
634 |
-
__( '
|
635 |
|
636 |
-
// Reference: src/vue/pages/
|
637 |
-
__( '
|
638 |
|
639 |
-
// Reference: src/vue/pages/
|
640 |
-
__( '
|
641 |
|
642 |
-
// Reference: src/vue/pages/
|
643 |
-
__( '
|
644 |
|
645 |
-
// Reference: src/vue/pages/
|
646 |
-
__( '
|
647 |
|
648 |
-
// Reference: src/vue/pages/
|
649 |
-
__( '
|
650 |
|
651 |
-
// Reference: src/vue/pages/
|
652 |
-
__( '
|
653 |
|
654 |
-
// Reference: src/vue/pages/
|
655 |
-
__( '
|
656 |
|
657 |
-
// Reference: src/vue/pages/
|
658 |
-
__( '
|
659 |
|
660 |
-
// Reference: src/vue/pages/
|
661 |
-
__( '
|
662 |
|
663 |
-
// Reference: src/vue/pages/search-appearance/views/
|
664 |
-
__( '
|
665 |
|
666 |
-
// Reference: src/vue/pages/search-appearance/views/
|
667 |
-
__( '
|
668 |
|
669 |
-
// Reference: src/vue/pages/search-appearance/views/
|
670 |
-
__( '
|
671 |
|
672 |
-
// Reference: src/vue/pages/search-appearance/views/
|
673 |
-
__( '
|
674 |
|
675 |
-
// Reference: src/vue/pages/
|
676 |
-
|
|
|
677 |
|
678 |
-
// Reference: src/vue/pages/search-appearance/views/
|
679 |
-
__( '
|
680 |
|
681 |
-
// Reference: src/vue/pages/search-appearance/views/
|
682 |
-
__( '
|
683 |
|
684 |
-
// Reference: src/vue/pages/search-appearance/views/
|
685 |
-
|
686 |
-
__( 'Exclude Posts / Pages', 'all-in-one-seo-pack' ),
|
687 |
|
688 |
-
// Reference: src/vue/pages/
|
689 |
-
|
|
|
690 |
|
691 |
-
// Reference: src/vue/pages/search-appearance/views/
|
692 |
-
__( '
|
693 |
|
694 |
-
// Reference: src/vue/pages/search-appearance/views/
|
695 |
-
|
696 |
-
__( 'Choose whether %1$s should output the required schema markup that Google needs to generate a sitelinks search box.', 'all-in-one-seo-pack' ),
|
697 |
|
698 |
-
// Reference: src/vue/pages/search-appearance/views/
|
699 |
-
__( '
|
700 |
|
701 |
-
// Reference: src/vue/pages/
|
702 |
-
__( '
|
703 |
|
704 |
-
// Reference: src/vue/pages/
|
705 |
-
__( '
|
706 |
|
707 |
-
// Reference: src/vue/pages/
|
708 |
-
__( '
|
709 |
|
710 |
-
// Reference: src/vue/pages/
|
711 |
-
__( '
|
712 |
|
713 |
-
// Reference: src/vue/pages/
|
714 |
-
|
|
|
715 |
|
716 |
-
// Reference: src/vue/pages/
|
717 |
-
__( 'SEO
|
718 |
|
719 |
-
// Reference: src/vue/pages/
|
720 |
-
__( '
|
721 |
|
722 |
-
// Reference: src/vue/pages/
|
723 |
-
__( '
|
724 |
|
725 |
-
// Reference: src/vue/pages/
|
726 |
-
|
727 |
-
__( '%1$s was successfully imported!', 'all-in-one-seo-pack' ),
|
728 |
|
729 |
-
// Reference: src/vue/pages/
|
730 |
-
|
731 |
-
__( 'An error occurred while importing %1$s. Please try again.', 'all-in-one-seo-pack' ),
|
732 |
|
733 |
-
// Reference: src/vue/pages/
|
734 |
-
|
735 |
-
__( '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' ),
|
736 |
|
737 |
// Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:109
|
738 |
__( 'Export Settings', 'all-in-one-seo-pack' ),
|
@@ -743,3083 +804,3221 @@ $generated_i18n_strings = array(
|
|
743 |
// Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:111
|
744 |
__( 'Export All Post Types', 'all-in-one-seo-pack' ),
|
745 |
|
746 |
-
// Reference: src/vue/pages/
|
747 |
-
__( '
|
748 |
-
|
749 |
-
// Reference: src/vue/pages/sitemaps/views/Main.vue:26
|
750 |
-
__( 'Sitemaps', 'all-in-one-seo-pack' ),
|
751 |
|
752 |
-
// Reference: src/vue/pages/
|
753 |
-
__( '
|
754 |
|
755 |
-
// Reference: src/vue/pages/
|
756 |
-
|
|
|
757 |
|
758 |
-
// Reference: src/vue/pages/
|
759 |
-
__( '
|
760 |
|
761 |
-
// Reference: src/vue/pages/
|
762 |
-
|
763 |
-
__( 'upgrade to %1$s', 'all-in-one-seo-pack' ),
|
764 |
|
765 |
-
// Reference: src/vue/pages/
|
766 |
-
|
|
|
767 |
|
768 |
-
// Reference: src/vue/pages/
|
769 |
-
|
|
|
770 |
|
771 |
-
// Reference: src/vue/pages/
|
772 |
-
|
773 |
-
__( 'You\'re using %1$s - no license needed. Enjoy!', 'all-in-one-seo-pack' ),
|
774 |
|
775 |
-
// Reference: src/vue/pages/
|
776 |
-
|
|
|
777 |
|
778 |
-
// Reference: src/vue/pages/
|
779 |
-
|
780 |
-
__( 'To unlock the selected features, please %1$s and enter your license key below.', 'all-in-one-seo-pack' ),
|
781 |
|
782 |
-
// Reference: src/vue/pages/
|
783 |
-
|
784 |
-
__( 'Already purchased? Simply enter your license key below to connect with %1$s!', 'all-in-one-seo-pack' ),
|
785 |
|
786 |
-
// Reference: src/vue/
|
787 |
-
|
788 |
-
__( '
|
789 |
|
790 |
-
// Reference: src/vue/pages/settings/views/lite/
|
791 |
-
|
|
|
792 |
|
793 |
-
// Reference: src/vue/pages/settings/views/lite/
|
794 |
-
|
|
|
795 |
|
796 |
-
// Reference: src/vue/
|
797 |
-
__( '
|
798 |
|
799 |
-
// Reference: src/vue/pages/settings/views/lite/
|
800 |
-
|
|
|
801 |
|
802 |
-
// Reference: src/vue/pages/settings/views/lite/
|
803 |
-
|
|
|
804 |
|
805 |
-
// Reference: src/vue/pages/
|
806 |
-
|
|
|
807 |
|
808 |
-
// Reference: src/vue/pages/
|
809 |
-
__( '
|
810 |
|
811 |
-
// Reference: src/vue/pages/
|
812 |
-
|
813 |
-
__( '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' ),
|
814 |
|
815 |
-
// Reference: src/vue/pages/
|
816 |
-
|
817 |
-
__( 'Enable Sitemap', 'all-in-one-seo-pack' ),
|
818 |
|
819 |
-
// Reference: src/vue/pages/
|
820 |
-
__( '
|
821 |
|
822 |
-
// Reference: src/vue/pages/
|
823 |
-
__( '
|
824 |
|
825 |
-
// Reference: src/vue/pages/
|
826 |
-
__( '
|
827 |
|
828 |
-
// Reference: src/vue/pages/
|
829 |
-
__( '
|
830 |
|
831 |
-
// Reference: src/vue/pages/
|
832 |
-
__( '
|
833 |
|
834 |
-
// Reference: src/vue/pages/
|
835 |
-
|
|
|
836 |
|
837 |
-
// Reference: src/vue/pages/
|
838 |
-
|
|
|
839 |
|
840 |
-
// Reference: src/vue/pages/
|
841 |
-
|
|
|
842 |
|
843 |
-
// Reference: src/vue/
|
844 |
-
|
|
|
|
|
845 |
|
846 |
-
// Reference: src/vue/
|
847 |
-
__( '
|
848 |
|
849 |
-
// Reference: src/vue/pages/
|
850 |
-
__( '
|
851 |
|
852 |
-
// Reference: src/vue/pages/
|
853 |
-
__( '
|
854 |
|
855 |
-
// Reference: src/vue/pages/
|
856 |
-
__( '
|
857 |
|
858 |
-
// Reference: src/vue/pages/
|
859 |
-
__( '
|
860 |
|
861 |
-
// Reference: src/vue/pages/
|
862 |
-
__( '
|
863 |
|
864 |
-
// Reference: src/vue/pages/
|
865 |
-
__( '
|
866 |
|
867 |
-
// Reference: src/vue/pages/
|
868 |
-
__( '
|
869 |
|
870 |
-
// Reference: src/vue/pages/
|
871 |
-
__( '
|
872 |
|
873 |
-
// Reference: src/vue/pages/
|
874 |
-
|
|
|
875 |
|
876 |
-
// Reference: src/vue/
|
877 |
-
__( '
|
878 |
|
879 |
-
// Reference: src/vue/pages/
|
880 |
-
__( '
|
881 |
|
882 |
-
// Reference: src/vue/pages/
|
883 |
-
__( '
|
884 |
|
885 |
-
// Reference: src/vue/pages/
|
886 |
-
__( '
|
887 |
|
888 |
-
// Reference: src/vue/pages/
|
889 |
-
__( '
|
890 |
|
891 |
-
// Reference: src/vue/pages/
|
892 |
-
__( '
|
893 |
|
894 |
-
// Reference: src/vue/pages/
|
895 |
-
__( '
|
896 |
|
897 |
-
// Reference: src/vue/pages/
|
898 |
-
__( '
|
899 |
|
900 |
-
// Reference: src/vue/pages/
|
901 |
-
__( '
|
902 |
|
903 |
-
// Reference: src/vue/pages/
|
904 |
-
__( '
|
905 |
|
906 |
-
// Reference: src/vue/pages/
|
907 |
-
__( '
|
908 |
|
909 |
-
// Reference: src/vue/pages/
|
910 |
-
__( '
|
911 |
|
912 |
-
// Reference: src/vue/pages/setup-wizard/views/
|
913 |
-
__( '
|
914 |
|
915 |
-
// Reference: src/vue/pages/setup-wizard/views/
|
916 |
-
__( '
|
917 |
|
918 |
-
// Reference: src/vue/pages/setup-wizard/views/
|
919 |
-
__( '
|
920 |
|
921 |
-
// Reference: src/vue/pages/
|
922 |
-
__( '
|
923 |
|
924 |
-
// Reference: src/vue/
|
925 |
-
|
|
|
926 |
|
927 |
-
// Reference: src/vue/
|
928 |
-
__( '
|
929 |
|
930 |
-
// Reference: src/vue/pages/
|
931 |
-
__( '
|
932 |
|
933 |
-
// Reference: src/vue/pages/
|
934 |
-
|
|
|
935 |
|
936 |
-
// Reference: src/vue/pages/
|
937 |
-
__( '
|
938 |
|
939 |
-
// Reference: src/vue/pages/
|
940 |
-
__( '
|
941 |
|
942 |
-
// Reference: src/vue/pages/
|
943 |
-
__( '
|
944 |
|
945 |
-
// Reference: src/vue/pages/
|
946 |
-
__( '
|
947 |
|
948 |
-
// Reference: src/vue/
|
949 |
-
|
950 |
-
__( 'default', 'all-in-one-seo-pack' ),
|
951 |
|
952 |
-
// Reference: src/vue/pages/
|
953 |
-
__( '
|
954 |
|
955 |
-
// Reference: src/vue/pages/
|
956 |
-
|
|
|
957 |
|
958 |
-
// Reference: src/vue/pages/
|
959 |
-
__( '
|
960 |
|
961 |
-
// Reference: src/vue/pages/
|
962 |
-
__( '
|
963 |
|
964 |
-
// Reference: src/vue/pages/
|
965 |
-
__( '
|
966 |
|
967 |
-
// Reference: src/vue/pages/
|
968 |
-
__( '
|
969 |
|
970 |
-
// Reference: src/vue/pages/
|
971 |
-
__( '
|
972 |
|
973 |
-
// Reference: src/vue/pages/
|
974 |
-
__( '
|
975 |
|
976 |
-
// Reference: src/vue/pages/
|
977 |
-
__( '
|
978 |
|
979 |
-
// Reference: src/vue/pages/
|
980 |
-
|
981 |
-
// Reference: src/vue/pages/social-networks/views/Twitter.vue:453
|
982 |
-
__( 'Home Page Title', 'all-in-one-seo-pack' ),
|
983 |
|
984 |
-
// Reference: src/vue/pages/
|
985 |
-
__( 'Meta
|
986 |
|
987 |
-
// Reference: src/vue/pages/
|
988 |
-
__( '
|
989 |
|
990 |
-
// Reference: src/vue/pages/
|
991 |
-
__( '
|
992 |
|
993 |
-
// Reference: src/vue/pages/
|
994 |
-
__( '
|
995 |
|
996 |
-
// Reference: src/vue/pages/
|
997 |
-
__( '
|
998 |
|
999 |
-
// Reference: src/vue/pages/
|
1000 |
-
__( '
|
1001 |
|
1002 |
-
// Reference: src/vue/pages/
|
1003 |
-
__( '
|
1004 |
|
1005 |
-
// Reference: src/vue/pages/
|
1006 |
-
__( '
|
1007 |
|
1008 |
-
// Reference: src/vue/
|
1009 |
-
|
|
|
1010 |
|
1011 |
-
// Reference: src/vue/
|
1012 |
-
__( 'A
|
1013 |
|
1014 |
-
// Reference: src/vue/
|
1015 |
-
__( '
|
1016 |
|
1017 |
-
// Reference: src/vue/
|
1018 |
-
__( '
|
1019 |
|
1020 |
-
// Reference: src/vue/
|
1021 |
-
__( '
|
1022 |
|
1023 |
-
// Reference: src/vue/
|
1024 |
-
__( '
|
1025 |
|
1026 |
-
// Reference: src/vue/
|
1027 |
-
__( '
|
1028 |
|
1029 |
-
// Reference: src/vue/
|
1030 |
-
__( '
|
1031 |
|
1032 |
-
// Reference: src/vue/
|
1033 |
-
__( '
|
1034 |
|
1035 |
-
// Reference: src/vue/
|
1036 |
-
__( '
|
1037 |
|
1038 |
-
// Reference: src/vue/
|
1039 |
-
__( '
|
1040 |
|
1041 |
-
// Reference: src/vue/
|
1042 |
-
__( '
|
1043 |
|
1044 |
-
// Reference: src/vue/
|
1045 |
-
__( '
|
1046 |
|
1047 |
-
// Reference: src/vue/
|
1048 |
-
__( '
|
1049 |
|
1050 |
-
// Reference: src/vue/
|
1051 |
-
__( '
|
1052 |
|
1053 |
-
// Reference: src/vue/
|
1054 |
-
__( '
|
1055 |
|
1056 |
-
// Reference: src/vue/
|
1057 |
-
__( '
|
1058 |
|
1059 |
-
// Reference: src/vue/
|
1060 |
-
__( '
|
1061 |
|
1062 |
-
// Reference: src/vue/
|
1063 |
-
__( '
|
1064 |
|
1065 |
-
// Reference: src/vue/
|
1066 |
-
__( '
|
1067 |
|
1068 |
-
// Reference: src/vue/
|
1069 |
-
__( '
|
1070 |
|
1071 |
-
// Reference: src/vue/pages/
|
1072 |
-
__( '
|
1073 |
|
1074 |
-
// Reference: src/vue/pages/
|
1075 |
-
__( '
|
1076 |
|
1077 |
-
// Reference: src/vue/pages/
|
1078 |
-
__( '
|
1079 |
|
1080 |
-
// Reference: src/vue/pages/
|
1081 |
-
__( '
|
1082 |
|
1083 |
-
// Reference: src/vue/pages/
|
1084 |
-
__( '
|
1085 |
|
1086 |
-
// Reference: src/vue/pages/
|
1087 |
-
__( '
|
1088 |
|
1089 |
-
// Reference: src/vue/
|
1090 |
-
__( '
|
1091 |
|
1092 |
-
// Reference: src/vue/pages/
|
1093 |
-
__( '
|
1094 |
|
1095 |
-
// Reference: src/vue/pages/
|
1096 |
-
__( '
|
1097 |
|
1098 |
-
// Reference: src/vue/pages/
|
1099 |
-
|
|
|
1100 |
|
1101 |
-
// Reference: src/vue/pages/
|
1102 |
-
|
|
|
1103 |
|
1104 |
-
// Reference: src/vue/pages/
|
1105 |
-
__( '
|
1106 |
|
1107 |
-
// Reference: src/vue/pages/
|
1108 |
-
__( 'Upgrade to Pro
|
1109 |
|
1110 |
-
// Reference: src/vue/pages/
|
1111 |
-
__( '
|
1112 |
|
1113 |
-
// Reference: src/vue/pages/
|
1114 |
-
|
|
|
1115 |
|
1116 |
-
// Reference: src/vue/pages/
|
1117 |
-
__( '
|
1118 |
|
1119 |
-
// Reference: src/vue/pages/
|
1120 |
-
__( '
|
1121 |
|
1122 |
-
// Reference: src/vue/pages/
|
1123 |
-
__( '
|
1124 |
|
1125 |
-
// Reference: src/vue/pages/
|
1126 |
-
__( '
|
1127 |
|
1128 |
-
// Reference: src/vue/pages/
|
1129 |
-
__( '
|
1130 |
|
1131 |
-
// Reference: src/vue/pages/
|
1132 |
-
__( '
|
1133 |
|
1134 |
-
// Reference: src/vue/pages/
|
1135 |
-
__( '
|
1136 |
|
1137 |
-
// Reference: src/vue/pages/
|
1138 |
-
__( '
|
1139 |
|
1140 |
-
// Reference: src/vue/pages/
|
1141 |
-
__( '
|
1142 |
|
1143 |
-
// Reference: src/vue/pages/
|
1144 |
-
|
|
|
1145 |
|
1146 |
-
// Reference: src/vue/pages/
|
1147 |
-
|
|
|
1148 |
|
1149 |
-
// Reference: src/vue/pages/
|
1150 |
-
__( '
|
1151 |
|
1152 |
-
// Reference: src/vue/pages/
|
1153 |
-
__( '
|
1154 |
|
1155 |
-
// Reference: src/vue/pages/
|
1156 |
-
__( '
|
1157 |
|
1158 |
-
// Reference: src/vue/pages/
|
1159 |
-
|
|
|
1160 |
|
1161 |
-
// Reference: src/vue/pages/
|
1162 |
-
__( '
|
1163 |
|
1164 |
-
// Reference: src/vue/pages/
|
1165 |
-
__( '
|
1166 |
|
1167 |
-
// Reference: src/vue/pages/
|
1168 |
-
__( '
|
1169 |
|
1170 |
-
// Reference: src/vue/pages/
|
1171 |
-
__( '
|
1172 |
|
1173 |
-
// Reference: src/vue/pages/
|
1174 |
-
__( '
|
1175 |
|
1176 |
-
// Reference: src/vue/pages/
|
1177 |
-
|
|
|
1178 |
|
1179 |
-
// Reference: src/vue/pages/
|
1180 |
-
|
|
|
1181 |
|
1182 |
-
// Reference: src/vue/pages/
|
1183 |
-
__( '
|
1184 |
|
1185 |
-
// Reference: src/vue/pages/
|
1186 |
-
__( '
|
1187 |
|
1188 |
-
// Reference: src/vue/pages/
|
1189 |
-
__( '
|
1190 |
|
1191 |
-
// Reference: src/vue/pages/
|
1192 |
-
__( '
|
1193 |
|
1194 |
-
// Reference: src/vue/pages/
|
1195 |
-
__( '
|
1196 |
|
1197 |
-
// Reference: src/vue/
|
1198 |
-
__( '
|
1199 |
|
1200 |
-
// Reference: src/vue/
|
1201 |
-
__( '
|
1202 |
|
1203 |
-
// Reference: src/vue/
|
1204 |
-
__( '
|
1205 |
|
1206 |
-
// Reference: src/vue/
|
1207 |
-
|
1208 |
-
__( '%1$s out of %2$s max recommended characters.', 'all-in-one-seo-pack' ),
|
1209 |
|
1210 |
-
// Reference: src/vue/
|
1211 |
-
|
|
|
1212 |
|
1213 |
-
// Reference: src/vue/
|
1214 |
-
__( '
|
1215 |
|
1216 |
-
// Reference: src/vue/
|
1217 |
-
__( '
|
1218 |
|
1219 |
-
// Reference: src/vue/
|
1220 |
-
__( '
|
1221 |
|
1222 |
-
// Reference: src/vue/pages/
|
1223 |
-
__( '
|
1224 |
|
1225 |
-
// Reference: src/vue/pages/
|
1226 |
-
__( '
|
1227 |
|
1228 |
-
// Reference: src/vue/pages/settings/
|
1229 |
-
|
1230 |
-
__( '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' ),
|
1231 |
|
1232 |
-
// Reference: src/vue/pages/settings/
|
1233 |
-
__( '
|
1234 |
|
1235 |
-
// Reference: src/vue/pages/settings/
|
1236 |
-
__( '
|
1237 |
|
1238 |
-
// Reference: src/vue/
|
1239 |
-
__( '
|
1240 |
|
1241 |
-
// Reference: src/vue/pages/settings/
|
1242 |
-
__( '
|
1243 |
|
1244 |
-
// Reference: src/vue/pages/
|
1245 |
-
|
1246 |
-
__( 'Author', 'all-in-one-seo-pack' ),
|
1247 |
|
1248 |
-
// Reference: src/vue/pages/
|
1249 |
-
__( 'SEO
|
1250 |
|
1251 |
-
// Reference: src/vue/pages/
|
1252 |
-
__( '
|
1253 |
|
1254 |
-
// Reference: src/vue/pages/
|
1255 |
-
|
1256 |
-
__( 'By default Admins have access to %1$sall SEO site settings%2$s', 'all-in-one-seo-pack' ),
|
1257 |
|
1258 |
-
// Reference: src/vue/pages/
|
1259 |
-
|
1260 |
-
__( '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' ),
|
1261 |
|
1262 |
-
// Reference: src/vue/pages/
|
1263 |
-
|
1264 |
-
__( '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' ),
|
1265 |
|
1266 |
-
// Reference: src/vue/pages/
|
1267 |
-
|
1268 |
-
__( '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' ),
|
1269 |
|
1270 |
-
// Reference: src/vue/pages/
|
1271 |
-
|
1272 |
-
__( 'By default SEO Editors have access to %1$sSEO settings for individual pages and posts.%2$s', 'all-in-one-seo-pack' ),
|
1273 |
|
1274 |
-
// Reference: src/vue/pages/
|
1275 |
-
|
|
|
1276 |
|
1277 |
-
// Reference: src/vue/pages/
|
1278 |
-
|
|
|
1279 |
|
1280 |
-
// Reference: src/vue/pages/
|
1281 |
-
|
|
|
1282 |
|
1283 |
-
// Reference: src/vue/pages/
|
1284 |
-
__( '
|
1285 |
|
1286 |
-
// Reference: src/vue/
|
1287 |
-
__( '
|
1288 |
|
1289 |
-
// Reference: src/vue/
|
1290 |
-
|
|
|
1291 |
|
1292 |
-
// Reference: src/vue/
|
1293 |
-
|
|
|
|
|
1294 |
|
1295 |
-
// Reference: src/vue/pages/
|
1296 |
-
__( '
|
1297 |
|
1298 |
-
// Reference: src/vue/pages/
|
1299 |
-
|
|
|
1300 |
|
1301 |
-
// Reference: src/vue/
|
1302 |
-
|
|
|
|
|
1303 |
|
1304 |
-
// Reference: src/vue/
|
1305 |
-
|
|
|
|
|
1306 |
|
1307 |
-
// Reference: src/vue/pages/
|
1308 |
-
|
|
|
1309 |
|
1310 |
-
// Reference: src/vue/pages/
|
1311 |
-
__( '
|
1312 |
|
1313 |
-
// Reference: src/vue/pages/
|
1314 |
-
__( '
|
1315 |
|
1316 |
-
// Reference: src/vue/pages/
|
1317 |
-
|
|
|
1318 |
|
1319 |
-
// Reference: src/vue/pages/
|
1320 |
-
__( '
|
1321 |
|
1322 |
-
// Reference: src/vue/pages/
|
1323 |
-
|
|
|
1324 |
|
1325 |
-
// Reference: src/vue/pages/
|
1326 |
-
__( '
|
1327 |
|
1328 |
-
// Reference: src/vue/pages/
|
1329 |
-
__( '
|
1330 |
|
1331 |
-
// Reference: src/vue/
|
1332 |
-
__( '
|
1333 |
|
1334 |
-
// Reference: src/vue/pages/
|
1335 |
-
__( '
|
1336 |
|
1337 |
-
// Reference: src/vue/
|
1338 |
-
__( '
|
1339 |
|
1340 |
-
// Reference: src/vue/
|
1341 |
-
__( '
|
1342 |
|
1343 |
-
// Reference: src/vue/
|
1344 |
-
__( '
|
1345 |
|
1346 |
-
// Reference: src/vue/pages/
|
1347 |
-
|
1348 |
-
__( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'all-in-one-seo-pack' ),
|
1349 |
|
1350 |
-
// Reference: src/vue/pages/
|
1351 |
-
__( '
|
1352 |
|
1353 |
-
// Reference: src/vue/pages/
|
1354 |
-
__( '
|
1355 |
|
1356 |
-
// Reference: src/vue/pages/
|
1357 |
-
__( '
|
1358 |
|
1359 |
-
// Reference: src/vue/pages/
|
1360 |
-
__( '
|
1361 |
|
1362 |
-
// Reference: src/vue/pages/
|
1363 |
-
__( '
|
1364 |
|
1365 |
-
// Reference: src/vue/pages/
|
1366 |
-
__( '
|
1367 |
|
1368 |
-
// Reference: src/vue/pages/
|
1369 |
-
__( '
|
1370 |
|
1371 |
-
// Reference: src/vue/pages/
|
1372 |
-
__( '
|
1373 |
|
1374 |
-
// Reference: src/vue/pages/
|
1375 |
-
__( '
|
1376 |
|
1377 |
-
// Reference: src/vue/pages/
|
1378 |
-
__( '
|
1379 |
|
1380 |
-
// Reference: src/vue/pages/
|
1381 |
-
__( '
|
1382 |
|
1383 |
-
// Reference: src/vue/pages/
|
1384 |
-
__( '
|
1385 |
|
1386 |
-
// Reference: src/vue/pages/
|
1387 |
-
__( '
|
1388 |
|
1389 |
-
// Reference: src/vue/pages/
|
1390 |
-
__( '
|
1391 |
|
1392 |
-
// Reference: src/vue/pages/
|
1393 |
-
__( '
|
1394 |
|
1395 |
-
// Reference: src/vue/pages/
|
1396 |
-
__( '
|
1397 |
|
1398 |
-
// Reference: src/vue/pages/
|
1399 |
-
|
1400 |
-
__( 'All %1$s Settings', 'all-in-one-seo-pack' ),
|
1401 |
|
1402 |
-
// Reference: src/vue/pages/
|
1403 |
-
__( '
|
1404 |
|
1405 |
-
// Reference: src/vue/pages/
|
1406 |
-
__( '
|
1407 |
|
1408 |
-
// Reference: src/vue/pages/
|
1409 |
-
__( '
|
1410 |
|
1411 |
-
// Reference: src/vue/pages/
|
1412 |
-
__( '
|
1413 |
|
1414 |
-
// Reference: src/vue/pages/
|
1415 |
-
__( '
|
1416 |
|
1417 |
-
// Reference: src/vue/pages/
|
1418 |
-
__( '
|
1419 |
|
1420 |
-
// Reference: src/vue/pages/
|
1421 |
-
__( '
|
1422 |
|
1423 |
-
// Reference: src/vue/pages/
|
1424 |
-
__( '
|
1425 |
|
1426 |
-
// Reference: src/vue/pages/
|
1427 |
-
__( '
|
1428 |
|
1429 |
-
// Reference: src/vue/pages/
|
1430 |
-
__( '
|
1431 |
|
1432 |
-
// Reference: src/vue/pages/
|
1433 |
-
__( '
|
1434 |
|
1435 |
-
// Reference: src/vue/pages/
|
1436 |
-
__( '
|
1437 |
|
1438 |
-
// Reference: src/vue/
|
1439 |
-
|
1440 |
-
__( 'Copied!', 'all-in-one-seo-pack' ),
|
1441 |
|
1442 |
-
// Reference: src/vue/pages/
|
1443 |
-
__( '
|
1444 |
|
1445 |
-
// Reference: src/vue/pages/
|
1446 |
-
__( '
|
1447 |
|
1448 |
-
// Reference: src/vue/pages/
|
1449 |
-
__( '
|
1450 |
|
1451 |
-
// Reference: src/vue/pages/
|
1452 |
-
__( '
|
1453 |
|
1454 |
-
// Reference: src/vue/pages/
|
1455 |
-
__( '
|
1456 |
|
1457 |
-
// Reference: src/vue/pages/
|
1458 |
-
__( '
|
1459 |
|
1460 |
-
// Reference: src/vue/pages/
|
1461 |
-
|
|
|
1462 |
|
1463 |
-
// Reference: src/vue/pages/
|
1464 |
-
__( '
|
1465 |
|
1466 |
-
// Reference: src/vue/pages/
|
1467 |
-
|
1468 |
-
__( 'The log for the blocked bots is located here: %1$s', 'all-in-one-seo-pack' ),
|
1469 |
|
1470 |
-
// Reference: src/vue/pages/
|
1471 |
-
|
|
|
1472 |
|
1473 |
-
// Reference: src/vue/pages/
|
1474 |
-
|
1475 |
-
__( 'Get %1$s %2$s and Unlock all the Powerful Features', 'all-in-one-seo-pack' ),
|
1476 |
|
1477 |
-
// Reference: src/vue/pages/
|
1478 |
-
|
1479 |
-
__( 'Get %1$s %2$s and Unlock all the Powerful Features.', 'all-in-one-seo-pack' ),
|
1480 |
|
1481 |
-
// Reference: src/vue/pages/
|
1482 |
-
__( '
|
1483 |
|
1484 |
-
// Reference: src/vue/pages/
|
1485 |
-
__( '
|
1486 |
|
1487 |
-
// Reference: src/vue/pages/
|
1488 |
-
__( '
|
1489 |
|
1490 |
-
// Reference: src/vue/pages/
|
1491 |
-
__( '
|
1492 |
|
1493 |
-
// Reference: src/vue/pages/
|
1494 |
-
__( '
|
1495 |
|
1496 |
-
// Reference: src/vue/pages/
|
1497 |
-
__( '
|
1498 |
|
1499 |
-
// Reference: src/vue/pages/
|
1500 |
-
__( '
|
1501 |
|
1502 |
-
// Reference: src/vue/pages/
|
1503 |
-
__( '
|
1504 |
|
1505 |
-
// Reference: src/vue/pages/
|
1506 |
-
__( '
|
1507 |
|
1508 |
-
// Reference: src/vue/pages/
|
1509 |
-
__( '
|
1510 |
|
1511 |
-
// Reference: src/vue/pages/
|
1512 |
-
/* Translators: 1 - The plugin
|
1513 |
-
__( '%1$s
|
1514 |
|
1515 |
-
// Reference: src/vue/pages/
|
1516 |
-
|
|
|
1517 |
|
1518 |
-
// Reference: src/vue/pages/
|
1519 |
-
__( '
|
1520 |
|
1521 |
-
// Reference: src/vue/pages/
|
1522 |
-
|
|
|
1523 |
|
1524 |
-
// Reference: src/vue/pages/
|
1525 |
-
|
|
|
1526 |
|
1527 |
-
// Reference: src/vue/pages/
|
1528 |
-
|
|
|
1529 |
|
1530 |
-
// Reference: src/vue/pages/post-settings/views/
|
1531 |
-
|
1532 |
-
__( 'Pro', 'all-in-one-seo-pack' ),
|
1533 |
|
1534 |
-
// Reference: src/vue/pages/
|
1535 |
-
|
1536 |
-
__( 'Installing %1$s %2$s', 'all-in-one-seo-pack' ),
|
1537 |
|
1538 |
-
// Reference: src/vue/pages/
|
1539 |
-
|
|
|
1540 |
|
1541 |
-
// Reference: src/vue/pages/
|
1542 |
-
__( '
|
1543 |
|
1544 |
-
// Reference: src/vue/pages/
|
1545 |
-
__( '
|
1546 |
|
1547 |
-
// Reference: src/vue/pages/
|
1548 |
-
__( '
|
1549 |
|
1550 |
-
// Reference: src/vue/pages/
|
1551 |
-
__( '
|
1552 |
|
1553 |
-
// Reference: src/vue/pages/
|
1554 |
-
__( '
|
1555 |
|
1556 |
-
// Reference: src/vue/pages/
|
1557 |
-
__( '
|
1558 |
|
1559 |
-
// Reference: src/vue/pages/
|
1560 |
-
__( '
|
1561 |
|
1562 |
-
// Reference: src/vue/pages/
|
1563 |
-
__( '
|
1564 |
|
1565 |
-
// Reference: src/vue/pages/
|
1566 |
-
|
|
|
1567 |
|
1568 |
-
// Reference: src/vue/pages/
|
1569 |
-
|
|
|
1570 |
|
1571 |
-
// Reference: src/vue/pages/
|
1572 |
-
__( '
|
1573 |
|
1574 |
-
// Reference: src/vue/pages/
|
1575 |
-
|
|
|
1576 |
|
1577 |
-
// Reference: src/vue/pages/
|
1578 |
-
|
|
|
1579 |
|
1580 |
-
// Reference: src/vue/pages/
|
1581 |
-
__( '
|
1582 |
|
1583 |
-
// Reference: src/vue/pages/
|
1584 |
-
|
|
|
1585 |
|
1586 |
-
// Reference: src/vue/pages/
|
1587 |
-
|
|
|
1588 |
|
1589 |
-
// Reference: src/vue/pages/
|
1590 |
-
__( '
|
1591 |
|
1592 |
-
// Reference: src/vue/pages/
|
1593 |
-
|
|
|
1594 |
|
1595 |
-
// Reference: src/vue/pages/
|
1596 |
-
|
|
|
1597 |
|
1598 |
-
// Reference: src/vue/pages/
|
1599 |
-
__( '
|
1600 |
|
1601 |
-
// Reference: src/vue/pages/
|
1602 |
-
|
|
|
1603 |
|
1604 |
-
// Reference: src/vue/pages/
|
1605 |
-
/* Translators: 1 -
|
1606 |
-
__( '%1$s
|
1607 |
|
1608 |
-
// Reference: src/vue/pages/
|
1609 |
-
|
1610 |
-
__( 'Get the most out of %1$s by upgrading to Pro and unlocking all of the powerful features.', 'all-in-one-seo-pack' ),
|
1611 |
|
1612 |
-
// Reference: src/vue/pages/
|
1613 |
-
__( '
|
1614 |
|
1615 |
-
// Reference: src/vue/pages/
|
1616 |
-
|
|
|
1617 |
|
1618 |
-
// Reference: src/vue/pages/
|
1619 |
-
|
|
|
1620 |
|
1621 |
-
// Reference: src/vue/pages/
|
1622 |
-
__( '
|
1623 |
|
1624 |
-
// Reference: src/vue/pages/
|
1625 |
-
__( '
|
1626 |
|
1627 |
-
// Reference: src/vue/pages/
|
1628 |
-
|
|
|
1629 |
|
1630 |
-
// Reference: src/vue/pages/
|
1631 |
-
|
|
|
1632 |
|
1633 |
-
// Reference: src/vue/pages/
|
1634 |
-
__( '
|
1635 |
|
1636 |
-
// Reference: src/vue/pages/
|
1637 |
-
/* Translators: 1 -
|
1638 |
-
__( '
|
1639 |
|
1640 |
-
// Reference: src/vue/pages/
|
1641 |
-
__( '
|
1642 |
|
1643 |
-
// Reference: src/vue/pages/
|
1644 |
-
|
|
|
1645 |
|
1646 |
-
// Reference: src/vue/pages/
|
1647 |
-
__( '
|
1648 |
|
1649 |
-
// Reference: src/vue/pages/
|
1650 |
-
|
|
|
1651 |
|
1652 |
-
// Reference: src/vue/pages/
|
1653 |
-
__( '
|
1654 |
|
1655 |
-
// Reference: src/vue/pages/
|
1656 |
-
|
|
|
1657 |
|
1658 |
-
// Reference: src/vue/pages/
|
1659 |
-
__( '
|
1660 |
|
1661 |
-
// Reference: src/vue/pages/
|
1662 |
-
|
|
|
1663 |
|
1664 |
-
// Reference: src/vue/pages/
|
1665 |
-
__( '
|
1666 |
|
1667 |
-
// Reference: src/vue/pages/
|
1668 |
-
|
|
|
1669 |
|
1670 |
-
// Reference: src/vue/pages/
|
1671 |
-
__( '
|
1672 |
|
1673 |
-
// Reference: src/vue/pages/
|
1674 |
-
|
|
|
1675 |
|
1676 |
-
// Reference: src/vue/pages/
|
1677 |
-
__( '
|
1678 |
|
1679 |
-
// Reference: src/vue/pages/
|
1680 |
-
/* Translators: 1 -
|
1681 |
-
__( '
|
1682 |
|
1683 |
-
// Reference: src/vue/pages/
|
1684 |
-
__( '
|
1685 |
|
1686 |
-
// Reference: src/vue/pages/
|
1687 |
-
|
|
|
1688 |
|
1689 |
-
// Reference: src/vue/pages/
|
1690 |
-
__( '
|
1691 |
|
1692 |
-
// Reference: src/vue/pages/
|
1693 |
-
|
|
|
1694 |
|
1695 |
-
// Reference: src/vue/pages/
|
1696 |
-
__( '
|
1697 |
|
1698 |
-
// Reference: src/vue/pages/
|
1699 |
-
__( '
|
1700 |
|
1701 |
-
// Reference: src/vue/pages/
|
1702 |
-
__( '
|
1703 |
|
1704 |
-
// Reference: src/vue/pages/
|
1705 |
-
__( '
|
1706 |
|
1707 |
-
// Reference: src/vue/pages/
|
1708 |
-
__( '
|
1709 |
|
1710 |
-
// Reference: src/vue/pages/
|
1711 |
-
__( '
|
1712 |
|
1713 |
-
// Reference: src/vue/pages/
|
1714 |
-
__( '
|
1715 |
|
1716 |
-
// Reference: src/vue/pages/
|
1717 |
-
__( '
|
1718 |
|
1719 |
-
// Reference: src/vue/pages/
|
1720 |
-
|
1721 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1722 |
|
1723 |
-
// Reference: src/vue/
|
1724 |
-
__( '
|
1725 |
|
1726 |
-
// Reference: src/vue/
|
1727 |
-
|
1728 |
-
__( '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' ),
|
1729 |
|
1730 |
-
// Reference: src/vue/
|
1731 |
-
__( '
|
1732 |
|
1733 |
-
// Reference: src/vue/
|
1734 |
-
|
1735 |
-
__( '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' ),
|
1736 |
|
1737 |
-
// Reference: src/vue/
|
1738 |
-
__( '
|
1739 |
|
1740 |
-
// Reference: src/vue/
|
1741 |
-
__( '
|
1742 |
|
1743 |
-
// Reference: src/vue/
|
1744 |
-
__( '
|
1745 |
|
1746 |
-
// Reference: src/vue/
|
1747 |
-
__( '
|
1748 |
|
1749 |
-
// Reference: src/vue/
|
1750 |
-
__( '
|
1751 |
|
1752 |
-
// Reference: src/vue/
|
1753 |
-
__( '
|
1754 |
|
1755 |
-
// Reference: src/vue/
|
1756 |
-
|
1757 |
-
__( 'Read the %1$s user guide', 'all-in-one-seo-pack' ),
|
1758 |
|
1759 |
-
// Reference: src/vue/
|
1760 |
-
__( '
|
1761 |
|
1762 |
-
// Reference: src/vue/
|
1763 |
-
__( '
|
1764 |
|
1765 |
-
// Reference: src/vue/
|
1766 |
-
__( '
|
1767 |
|
1768 |
-
// Reference: src/vue/
|
1769 |
-
__( '
|
1770 |
|
1771 |
-
// Reference: src/vue/
|
1772 |
-
__( '
|
1773 |
|
1774 |
-
// Reference: src/vue/
|
1775 |
-
__( '
|
1776 |
|
1777 |
-
// Reference: src/vue/
|
1778 |
-
__( '
|
1779 |
|
1780 |
-
// Reference: src/vue/
|
1781 |
-
|
|
|
|
|
|
|
1782 |
|
1783 |
-
// Reference: src/vue/
|
1784 |
-
|
|
|
|
|
|
|
1785 |
|
1786 |
-
// Reference: src/vue/
|
1787 |
-
|
|
|
|
|
|
|
1788 |
|
1789 |
-
// Reference: src/vue/
|
1790 |
-
|
|
|
|
|
1791 |
|
1792 |
-
// Reference: src/vue/pages/
|
1793 |
-
__( '
|
1794 |
|
1795 |
-
// Reference: src/vue/pages/
|
1796 |
-
|
1797 |
-
__( 'Get more features in %1$s %2$s:', 'all-in-one-seo-pack' ),
|
1798 |
|
1799 |
-
// Reference: src/vue/
|
1800 |
-
|
1801 |
-
__( 'Upgrade to %1$s and Save %2$s', 'all-in-one-seo-pack' ),
|
1802 |
|
1803 |
-
// Reference: src/vue/
|
1804 |
-
|
1805 |
-
__( 'Dismiss All', 'all-in-one-seo-pack' ),
|
1806 |
|
1807 |
-
// Reference: src/vue/
|
1808 |
-
__( '
|
1809 |
|
1810 |
-
// Reference: src/vue/
|
1811 |
-
__( '
|
1812 |
|
1813 |
-
// Reference: src/vue/
|
1814 |
-
|
|
|
1815 |
|
1816 |
-
// Reference: src/vue/
|
1817 |
-
__( '
|
1818 |
|
1819 |
-
// Reference: src/vue/
|
1820 |
-
__( '
|
1821 |
|
1822 |
-
// Reference: src/vue/
|
1823 |
-
|
1824 |
-
__( 'Upgrade %1$s to Pro and Unlock all Features!', 'all-in-one-seo-pack' ),
|
1825 |
|
1826 |
-
// Reference: src/vue/pages/
|
1827 |
-
|
|
|
1828 |
|
1829 |
-
// Reference: src/vue/pages/
|
1830 |
-
__( '
|
1831 |
|
1832 |
-
// Reference: src/vue/pages/
|
1833 |
-
__( '
|
1834 |
|
1835 |
-
// Reference: src/vue/
|
1836 |
-
|
|
|
1837 |
|
1838 |
-
// Reference: src/vue/pages/
|
1839 |
-
__( '
|
1840 |
|
1841 |
-
// Reference: src/vue/
|
1842 |
-
__( '
|
1843 |
|
1844 |
-
// Reference: src/vue/pages/
|
1845 |
-
__( '
|
1846 |
|
1847 |
-
// Reference: src/vue/pages/
|
1848 |
-
|
1849 |
-
__( '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' ),
|
1850 |
|
1851 |
-
// Reference: src/vue/pages/
|
1852 |
-
|
|
|
1853 |
|
1854 |
-
// Reference: src/vue/pages/
|
1855 |
-
|
|
|
1856 |
|
1857 |
-
// Reference: src/vue/pages/
|
1858 |
-
/* Translators: 1 -
|
1859 |
-
__( '
|
1860 |
|
1861 |
-
// Reference: src/vue/pages/
|
1862 |
-
|
|
|
1863 |
|
1864 |
-
// Reference: src/vue/pages/
|
1865 |
-
/* Translators: 1 -
|
1866 |
-
__( '
|
1867 |
|
1868 |
-
// Reference: src/vue/pages/
|
1869 |
-
__( '
|
1870 |
|
1871 |
-
// Reference: src/vue/pages/
|
1872 |
-
__( '
|
1873 |
|
1874 |
-
// Reference: src/vue/pages/
|
1875 |
-
__( '
|
1876 |
|
1877 |
-
// Reference: src/vue/pages/
|
1878 |
-
__( '
|
1879 |
|
1880 |
-
// Reference: src/vue/pages/
|
1881 |
-
__( '
|
1882 |
|
1883 |
-
// Reference: src/vue/
|
1884 |
-
|
|
|
1885 |
|
1886 |
-
// Reference: src/vue/
|
1887 |
-
|
|
|
1888 |
|
1889 |
-
// Reference: src/vue/pages/
|
1890 |
-
__( '
|
1891 |
|
1892 |
-
// Reference: src/vue/pages/
|
1893 |
-
__( '
|
1894 |
|
1895 |
-
// Reference: src/vue/pages/
|
1896 |
-
__( '
|
1897 |
|
1898 |
-
// Reference: src/vue/pages/
|
1899 |
-
__( '
|
1900 |
|
1901 |
-
// Reference: src/vue/pages/
|
1902 |
-
__( '
|
1903 |
|
1904 |
-
// Reference: src/vue/pages/
|
1905 |
-
__( '
|
1906 |
|
1907 |
-
// Reference: src/vue/pages/
|
1908 |
-
__( '
|
1909 |
|
1910 |
-
// Reference: src/vue/pages/
|
1911 |
-
__( '
|
1912 |
|
1913 |
-
// Reference: src/vue/pages/
|
1914 |
-
__( '
|
1915 |
|
1916 |
-
// Reference: src/vue/pages/
|
1917 |
-
__( '
|
|
|
|
|
|
|
1918 |
|
1919 |
-
// Reference: src/vue/
|
1920 |
-
__( '
|
1921 |
|
1922 |
-
// Reference: src/vue/pages/
|
1923 |
-
__( '
|
1924 |
|
1925 |
-
// Reference: src/vue/pages/
|
1926 |
-
__( '
|
1927 |
|
1928 |
-
// Reference: src/vue/pages/
|
1929 |
-
|
|
|
1930 |
|
1931 |
-
// Reference: src/vue/pages/
|
1932 |
-
|
1933 |
-
__( '%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' ),
|
1934 |
|
1935 |
-
// Reference: src/vue/
|
1936 |
-
__( '
|
1937 |
|
1938 |
-
// Reference: src/vue/pages/
|
1939 |
-
__( '
|
1940 |
|
1941 |
-
// Reference: src/vue/pages/
|
1942 |
-
__( '
|
1943 |
|
1944 |
-
// Reference: src/vue/pages/
|
1945 |
-
|
|
|
1946 |
|
1947 |
-
// Reference: src/vue/pages/
|
1948 |
-
|
|
|
1949 |
|
1950 |
-
// Reference: src/vue/
|
1951 |
-
__( '
|
1952 |
|
1953 |
-
// Reference: src/vue/
|
1954 |
-
__( '
|
1955 |
|
1956 |
-
// Reference: src/vue/
|
1957 |
-
__( '
|
1958 |
|
1959 |
-
// Reference: src/vue/components/
|
1960 |
-
|
1961 |
-
__( 'None', 'all-in-one-seo-pack' ),
|
1962 |
|
1963 |
-
// Reference: src/vue/
|
1964 |
-
__( '
|
1965 |
|
1966 |
-
// Reference: src/vue/
|
1967 |
-
__( '
|
1968 |
|
1969 |
-
// Reference: src/vue/
|
1970 |
-
__( '
|
1971 |
|
1972 |
-
// Reference: src/vue/
|
1973 |
-
__( '
|
1974 |
|
1975 |
-
// Reference: src/vue/
|
1976 |
-
__( '
|
1977 |
|
1978 |
-
// Reference: src/vue/
|
1979 |
-
|
1980 |
-
__( '%1$s %2$s gives you advanced customizations for the structured data markup on Posts, Pages, Categories, Tags, etc.', 'all-in-one-seo-pack' ),
|
1981 |
|
1982 |
-
// Reference: src/vue/
|
1983 |
-
__( '
|
1984 |
|
1985 |
-
// Reference: src/vue/
|
1986 |
-
__( '
|
1987 |
|
1988 |
-
// Reference: src/vue/
|
1989 |
-
__( '
|
1990 |
|
1991 |
-
// Reference: src/vue/
|
1992 |
-
__( '
|
1993 |
|
1994 |
-
// Reference: src/vue/
|
1995 |
-
__( '
|
1996 |
|
1997 |
-
// Reference: src/vue/
|
1998 |
-
|
|
|
1999 |
|
2000 |
-
// Reference: src/vue/pages/
|
2001 |
-
__( '
|
2002 |
|
2003 |
-
// Reference: src/vue/pages/
|
2004 |
-
__( '
|
2005 |
|
2006 |
-
// Reference: src/vue/pages/
|
2007 |
-
|
2008 |
-
__( 'This feature requires one of the following plans:', 'all-in-one-seo-pack' ),
|
2009 |
|
2010 |
-
// Reference: src/vue/pages/
|
2011 |
-
__( '
|
2012 |
|
2013 |
-
// Reference: src/vue/pages/
|
2014 |
-
__( '
|
2015 |
|
2016 |
-
// Reference: src/vue/pages/
|
2017 |
-
__( '
|
2018 |
|
2019 |
-
// Reference: src/vue/pages/
|
2020 |
-
__( '
|
2021 |
|
2022 |
-
// Reference: src/vue/pages/
|
2023 |
-
__( '
|
2024 |
|
2025 |
-
// Reference: src/vue/pages/
|
2026 |
-
__( '
|
2027 |
|
2028 |
-
// Reference: src/vue/pages/
|
2029 |
-
__( '
|
2030 |
|
2031 |
-
// Reference: src/vue/pages/
|
2032 |
-
__( '
|
2033 |
|
2034 |
-
// Reference: src/vue/pages/
|
2035 |
-
__( '
|
2036 |
|
2037 |
-
// Reference: src/vue/pages/
|
2038 |
-
__( '
|
2039 |
|
2040 |
-
// Reference: src/vue/pages/
|
2041 |
-
__( '
|
2042 |
|
2043 |
-
// Reference: src/vue/pages/
|
2044 |
-
|
2045 |
-
__( 'Keywords', 'all-in-one-seo-pack' ),
|
2046 |
|
2047 |
-
// Reference: src/vue/pages/
|
2048 |
-
|
2049 |
-
__( '%1$s Title', 'all-in-one-seo-pack' ),
|
2050 |
|
2051 |
-
// Reference: src/vue/pages/
|
2052 |
-
|
2053 |
-
__( 'Show %1$s Thumbnail in Google Custom Search', 'all-in-one-seo-pack' ),
|
2054 |
|
2055 |
-
// Reference: src/vue/pages/
|
2056 |
-
|
2057 |
-
__( 'Show %1$s Meta Box', 'all-in-one-seo-pack' ),
|
2058 |
|
2059 |
-
// Reference: src/vue/pages/
|
2060 |
-
__( '
|
2061 |
|
2062 |
-
// Reference: src/vue/pages/
|
2063 |
-
__( '
|
2064 |
|
2065 |
-
// Reference: src/vue/pages/
|
2066 |
-
|
2067 |
-
__( 'The home page settings below have been disabled because you are using a static home page. You can %1$sedit your home page settings%2$s directly to change the title and description.', 'all-in-one-seo-pack' ),
|
2068 |
|
2069 |
-
// Reference: src/vue/
|
2070 |
-
__( '
|
2071 |
|
2072 |
-
// Reference: src/vue/pages/
|
2073 |
-
__( '
|
2074 |
|
2075 |
-
// Reference: src/vue/pages/
|
2076 |
-
__( '
|
2077 |
|
2078 |
-
// Reference: src/vue/pages/
|
2079 |
-
__( '
|
2080 |
|
2081 |
-
// Reference: src/vue/pages/
|
2082 |
-
|
2083 |
-
__( 'Go to %1$sLocal SEO Settings%2$s and set up your local business info like location address, opening hours (%3$s), and Google Maps settings (%4$s).', 'all-in-one-seo-pack' ),
|
2084 |
|
2085 |
-
// Reference: src/vue/pages/
|
2086 |
-
__( '
|
2087 |
|
2088 |
-
// Reference: src/vue/pages/
|
2089 |
-
__( '
|
2090 |
|
2091 |
-
// Reference: src/vue/pages/
|
2092 |
-
__( '
|
2093 |
|
2094 |
-
// Reference: src/vue/pages/
|
2095 |
-
__( '
|
2096 |
|
2097 |
-
// Reference: src/vue/pages/
|
2098 |
-
__( '
|
2099 |
|
2100 |
-
// Reference: src/vue/pages/
|
2101 |
-
__( '
|
2102 |
|
2103 |
-
// Reference: src/vue/pages/
|
2104 |
-
__( '
|
2105 |
|
2106 |
-
// Reference: src/vue/pages/
|
2107 |
-
__( '
|
2108 |
|
2109 |
-
// Reference: src/vue/pages/
|
2110 |
-
__( '
|
2111 |
|
2112 |
-
// Reference: src/vue/pages/
|
2113 |
-
|
|
|
2114 |
|
2115 |
-
// Reference: src/vue/pages/
|
2116 |
-
__( 'Click on the
|
2117 |
|
2118 |
-
// Reference: src/vue/pages/
|
2119 |
-
__( '
|
2120 |
|
2121 |
-
// Reference: src/vue/pages/
|
2122 |
-
__( '
|
2123 |
|
2124 |
-
// Reference: src/vue/pages/
|
2125 |
-
|
2126 |
-
__( '%1$s %2$s lets you set the SEO title and description for custom taxonomies. You can also control all of the robots meta and other options just like the default category and tags taxonomies.', 'all-in-one-seo-pack' ),
|
2127 |
|
2128 |
-
// Reference: src/vue/pages/
|
2129 |
-
__( 'Custom
|
2130 |
|
2131 |
-
// Reference: src/vue/pages/
|
2132 |
-
|
2133 |
-
__( 'Click here', 'all-in-one-seo-pack' ),
|
2134 |
|
2135 |
-
// Reference: src/vue/pages/
|
2136 |
-
|
2137 |
-
__( 'Install Monsterinsights', 'all-in-one-seo-pack' ),
|
2138 |
|
2139 |
-
// Reference: src/vue/pages/
|
2140 |
-
__( '
|
2141 |
|
2142 |
-
// Reference: src/vue/pages/
|
2143 |
-
__( '
|
2144 |
|
2145 |
-
// Reference: src/vue/pages/
|
2146 |
-
__( '
|
2147 |
|
2148 |
-
// Reference: src/vue/pages/
|
2149 |
-
__( '
|
2150 |
|
2151 |
-
// Reference: src/vue/pages/
|
2152 |
-
__( '
|
2153 |
|
2154 |
-
// Reference: src/vue/pages/
|
2155 |
-
__( '
|
2156 |
|
2157 |
-
// Reference: src/vue/pages/
|
2158 |
-
__( '
|
2159 |
|
2160 |
-
// Reference: src/vue/pages/
|
2161 |
-
__( '
|
2162 |
|
2163 |
-
// Reference: src/vue/pages/
|
2164 |
-
__( '
|
2165 |
|
2166 |
-
// Reference: src/vue/pages/
|
2167 |
-
__( '
|
2168 |
|
2169 |
-
// Reference: src/vue/pages/
|
2170 |
-
__( '
|
2171 |
|
2172 |
-
// Reference: src/vue/pages/
|
2173 |
-
__( '
|
2174 |
|
2175 |
-
// Reference: src/vue/pages/
|
2176 |
-
__( '
|
2177 |
|
2178 |
-
// Reference: src/vue/pages/
|
2179 |
-
__( '
|
2180 |
|
2181 |
-
// Reference: src/vue/pages/
|
2182 |
-
__( '
|
2183 |
|
2184 |
-
// Reference: src/vue/pages/
|
2185 |
-
__( '
|
2186 |
|
2187 |
-
// Reference: src/vue/pages/
|
2188 |
-
__( '
|
2189 |
|
2190 |
-
// Reference: src/vue/pages/
|
2191 |
-
__( '
|
2192 |
|
2193 |
-
// Reference: src/vue/pages/
|
2194 |
-
__( '
|
2195 |
|
2196 |
-
// Reference: src/vue/pages/
|
2197 |
-
__( '
|
2198 |
|
2199 |
-
// Reference: src/vue/
|
2200 |
-
__( '
|
2201 |
|
2202 |
-
// Reference: src/vue/
|
2203 |
-
__( '
|
2204 |
|
2205 |
-
// Reference: src/vue/pages/
|
2206 |
-
__( '
|
2207 |
|
2208 |
-
// Reference: src/vue/pages/
|
2209 |
-
__( '
|
2210 |
|
2211 |
-
// Reference: src/vue/pages/
|
2212 |
-
__( '
|
2213 |
|
2214 |
-
// Reference: src/vue/pages/
|
2215 |
-
__( '
|
2216 |
|
2217 |
-
// Reference: src/vue/pages/
|
2218 |
-
__( '
|
2219 |
|
2220 |
-
// Reference: src/vue/pages/
|
2221 |
-
|
|
|
2222 |
|
2223 |
-
// Reference: src/vue/pages/
|
2224 |
-
__( '
|
2225 |
|
2226 |
-
// Reference: src/vue/pages/
|
2227 |
-
|
|
|
2228 |
|
2229 |
-
// Reference: src/vue/
|
2230 |
-
__( '
|
2231 |
|
2232 |
-
// Reference: src/vue/
|
2233 |
-
__( '
|
2234 |
|
2235 |
-
// Reference: src/vue/
|
2236 |
-
|
2237 |
-
__( '
|
2238 |
|
2239 |
-
// Reference: src/vue/
|
2240 |
-
|
2241 |
-
__( '
|
2242 |
|
2243 |
-
// Reference: src/vue/
|
2244 |
-
__( '
|
2245 |
|
2246 |
-
// Reference: src/vue/
|
2247 |
-
__( '
|
2248 |
|
2249 |
-
// Reference: src/vue/
|
2250 |
-
__( '
|
2251 |
|
2252 |
-
// Reference: src/vue/components/
|
2253 |
-
__( '
|
2254 |
|
2255 |
-
// Reference: src/vue/components/
|
2256 |
-
|
|
|
2257 |
|
2258 |
-
// Reference: src/vue/
|
2259 |
-
__( '
|
2260 |
|
2261 |
-
// Reference: src/vue/
|
2262 |
-
__( '
|
2263 |
|
2264 |
-
// Reference: src/vue/
|
2265 |
-
|
|
|
2266 |
|
2267 |
-
// Reference: src/vue/
|
2268 |
-
__( '
|
2269 |
|
2270 |
-
// Reference: src/vue/
|
2271 |
-
__( '
|
2272 |
|
2273 |
-
// Reference: src/vue/
|
2274 |
-
__( '
|
2275 |
|
2276 |
-
// Reference: src/vue/
|
2277 |
-
__( '
|
2278 |
|
2279 |
-
// Reference: src/vue/
|
2280 |
-
__( '
|
2281 |
|
2282 |
-
// Reference: src/vue/
|
2283 |
-
|
|
|
|
|
2284 |
|
2285 |
-
// Reference: src/vue/
|
2286 |
-
__( '
|
2287 |
|
2288 |
-
// Reference: src/vue/
|
2289 |
-
__( '
|
2290 |
|
2291 |
-
// Reference: src/vue/
|
2292 |
-
__( '
|
2293 |
|
2294 |
-
// Reference: src/vue/
|
2295 |
-
__( '
|
2296 |
|
2297 |
-
// Reference: src/vue/
|
2298 |
-
__( '
|
2299 |
|
2300 |
-
// Reference: src/vue/
|
2301 |
-
__( '
|
2302 |
|
2303 |
-
// Reference: src/vue/
|
2304 |
-
__( '
|
2305 |
|
2306 |
-
// Reference: src/vue/
|
2307 |
-
__( '
|
2308 |
|
2309 |
-
// Reference: src/vue/
|
2310 |
-
__( '
|
2311 |
|
2312 |
-
// Reference: src/vue/
|
2313 |
-
__( '
|
2314 |
|
2315 |
-
// Reference: src/vue/
|
2316 |
-
__( '
|
2317 |
|
2318 |
-
// Reference: src/vue/
|
2319 |
-
__( '
|
2320 |
|
2321 |
-
// Reference: src/vue/
|
2322 |
-
__( '
|
2323 |
|
2324 |
-
// Reference: src/vue/
|
2325 |
-
__( '
|
2326 |
|
2327 |
-
// Reference: src/vue/
|
2328 |
-
__( '
|
2329 |
|
2330 |
-
// Reference: src/vue/
|
2331 |
-
|
2332 |
-
__( '
|
2333 |
|
2334 |
-
// Reference: src/vue/
|
2335 |
-
__( '
|
2336 |
|
2337 |
-
// Reference: src/vue/pages/
|
2338 |
-
|
2339 |
-
__( 'To unlock more features, consider %1$s.', 'all-in-one-seo-pack' ),
|
2340 |
|
2341 |
-
// Reference: src/vue/pages/
|
2342 |
-
|
2343 |
-
__( 'As a valued user you receive %1$s, automatically applied at checkout!', 'all-in-one-seo-pack' ),
|
2344 |
|
2345 |
-
// Reference: src/vue/
|
2346 |
-
__( '
|
2347 |
|
2348 |
-
// Reference: src/vue/
|
2349 |
-
__( '
|
2350 |
|
2351 |
-
// Reference: src/vue/
|
2352 |
-
__( '
|
2353 |
|
2354 |
-
// Reference: src/vue/
|
2355 |
-
__( '
|
2356 |
|
2357 |
-
// Reference: src/vue/
|
2358 |
-
__( '
|
2359 |
|
2360 |
-
// Reference: src/vue/
|
2361 |
-
__( '
|
2362 |
|
2363 |
-
// Reference: src/vue/
|
2364 |
-
|
|
|
2365 |
|
2366 |
-
// Reference: src/vue/
|
2367 |
-
__( '
|
2368 |
|
2369 |
-
// Reference: src/vue/
|
2370 |
-
|
|
|
2371 |
|
2372 |
-
// Reference: src/vue/
|
2373 |
-
|
|
|
2374 |
|
2375 |
-
// Reference: src/vue/
|
2376 |
-
__( '
|
2377 |
|
2378 |
-
// Reference: src/vue/
|
2379 |
-
__( '
|
2380 |
|
2381 |
-
// Reference: src/vue/
|
2382 |
-
__( '
|
2383 |
|
2384 |
-
// Reference: src/vue/
|
2385 |
-
__( '
|
2386 |
|
2387 |
-
// Reference: src/vue/
|
2388 |
-
__( '
|
2389 |
|
2390 |
-
// Reference: src/vue/
|
2391 |
-
__( '
|
2392 |
|
2393 |
-
// Reference: src/vue/
|
2394 |
-
__( '
|
2395 |
|
2396 |
-
// Reference: src/vue/
|
2397 |
-
__( '
|
2398 |
|
2399 |
-
// Reference: src/vue/
|
2400 |
-
__( '
|
2401 |
|
2402 |
-
// Reference: src/vue/
|
2403 |
-
__( '
|
2404 |
|
2405 |
-
// Reference: src/vue/
|
2406 |
-
__( '
|
2407 |
|
2408 |
-
// Reference: src/vue/
|
2409 |
-
__( '
|
2410 |
|
2411 |
-
// Reference: src/vue/
|
2412 |
-
__( '
|
2413 |
|
2414 |
-
// Reference: src/vue/
|
2415 |
-
__( '
|
2416 |
|
2417 |
-
// Reference: src/vue/
|
2418 |
-
__( '
|
2419 |
|
2420 |
-
// Reference: src/vue/
|
2421 |
-
__( '
|
2422 |
|
2423 |
-
// Reference: src/vue/
|
2424 |
-
__( '
|
2425 |
|
2426 |
-
// Reference: src/vue/
|
2427 |
-
__( '
|
2428 |
|
2429 |
-
// Reference: src/vue/
|
2430 |
-
__( '
|
2431 |
|
2432 |
-
// Reference: src/vue/
|
2433 |
-
__( '
|
2434 |
|
2435 |
-
// Reference: src/vue/
|
2436 |
-
__( '
|
2437 |
|
2438 |
-
// Reference: src/vue/
|
2439 |
-
|
|
|
|
|
2440 |
|
2441 |
-
// Reference: src/vue/
|
2442 |
-
__( '
|
2443 |
|
2444 |
-
// Reference: src/vue/
|
2445 |
-
__( '
|
2446 |
|
2447 |
-
// Reference: src/vue/
|
2448 |
-
__( '
|
2449 |
|
2450 |
-
// Reference: src/vue/
|
2451 |
-
__( '
|
2452 |
|
2453 |
-
// Reference: src/vue/
|
2454 |
-
__( '
|
2455 |
|
2456 |
-
// Reference: src/vue/
|
2457 |
-
__( '
|
2458 |
|
2459 |
-
// Reference: src/vue/
|
2460 |
-
__( '
|
2461 |
|
2462 |
-
// Reference: src/vue/
|
2463 |
-
__( '
|
2464 |
|
2465 |
-
// Reference: src/vue/
|
2466 |
-
__( '
|
2467 |
|
2468 |
-
// Reference: src/vue/
|
2469 |
-
__( '
|
2470 |
|
2471 |
-
// Reference: src/vue/
|
2472 |
-
|
|
|
2473 |
|
2474 |
-
// Reference: src/vue/pages/
|
2475 |
-
__( '
|
2476 |
|
2477 |
-
// Reference: src/vue/
|
2478 |
-
__( '
|
2479 |
|
2480 |
-
// Reference: src/vue/
|
2481 |
-
__( '
|
2482 |
|
2483 |
-
// Reference: src/vue/
|
2484 |
-
__( '
|
2485 |
|
2486 |
-
// Reference: src/vue/
|
2487 |
-
__( '
|
2488 |
|
2489 |
-
// Reference: src/vue/
|
2490 |
-
__( 'Your
|
2491 |
|
2492 |
-
// Reference: src/vue/
|
2493 |
-
|
2494 |
-
__( 'A very good score is between %1$s60 and 80%2$s.', 'all-in-one-seo-pack' ),
|
2495 |
|
2496 |
-
// Reference: src/vue/
|
2497 |
-
|
2498 |
-
|
|
|
|
|
2499 |
|
2500 |
-
// Reference: src/vue/
|
2501 |
-
__( '
|
2502 |
|
2503 |
-
// Reference: src/vue/components/common/core/
|
2504 |
-
|
|
|
|
|
2505 |
|
2506 |
-
// Reference: src/vue/components/common/core/
|
2507 |
-
|
|
|
|
|
2508 |
|
2509 |
-
// Reference: src/vue/components/common/core/
|
2510 |
-
|
2511 |
-
|
|
|
|
|
2512 |
|
2513 |
-
// Reference: src/vue/
|
2514 |
-
|
2515 |
-
__( 'Thank you for choosing the best WordPress SEO plugin. %1$s default settings works great out of the box. We created the setup wizard to guide you through some important configuration settings & custom-tailored SEO best practices for your site to help you improve rankings.', 'all-in-one-seo-pack' ),
|
2516 |
|
2517 |
-
// Reference: src/vue/
|
2518 |
-
__( '
|
2519 |
|
2520 |
-
// Reference: src/vue/
|
2521 |
-
__( '
|
2522 |
|
2523 |
-
// Reference: src/vue/
|
2524 |
-
__( '
|
2525 |
|
2526 |
-
// Reference: src/vue/
|
2527 |
-
__( '
|
2528 |
|
2529 |
-
// Reference: src/vue/
|
2530 |
-
__( '
|
2531 |
|
2532 |
-
// Reference: src/vue/
|
2533 |
-
__( '
|
2534 |
|
2535 |
-
// Reference: src/vue/
|
2536 |
-
__( '
|
2537 |
|
2538 |
-
// Reference: src/vue/
|
2539 |
-
|
2540 |
-
__( 'Browse documentation, reference material, and tutorials for %1$s.', 'all-in-one-seo-pack' ),
|
2541 |
|
2542 |
-
// Reference: src/vue/
|
2543 |
-
__( '
|
2544 |
|
2545 |
-
// Reference: src/vue/
|
2546 |
-
__( '
|
2547 |
|
2548 |
-
// Reference: src/vue/
|
2549 |
-
__( '
|
2550 |
|
2551 |
-
// Reference: src/vue/
|
2552 |
-
__( '
|
2553 |
|
2554 |
-
// Reference: src/vue/
|
2555 |
-
|
2556 |
-
__( 'Upgrade to Pro', 'all-in-one-seo-pack' ),
|
2557 |
|
2558 |
-
// Reference: src/vue/
|
2559 |
-
__( '
|
2560 |
|
2561 |
-
// Reference: src/vue/
|
2562 |
-
__( '
|
2563 |
|
2564 |
-
// Reference: src/vue/
|
2565 |
-
__( '
|
2566 |
|
2567 |
-
// Reference: src/vue/
|
2568 |
-
__( '
|
2569 |
|
2570 |
-
// Reference: src/vue/
|
2571 |
-
__( '
|
2572 |
|
2573 |
-
// Reference: src/vue/
|
2574 |
-
|
|
|
2575 |
|
2576 |
-
// Reference: src/vue/
|
2577 |
-
__( '
|
2578 |
|
2579 |
-
// Reference: src/vue/
|
2580 |
-
__( '
|
2581 |
|
2582 |
-
// Reference: src/vue/
|
2583 |
-
__( '
|
2584 |
|
2585 |
-
// Reference: src/vue/
|
2586 |
-
__( '
|
2587 |
|
2588 |
-
// Reference: src/vue/
|
2589 |
-
|
|
|
2590 |
|
2591 |
-
// Reference: src/vue/
|
2592 |
-
__( '
|
2593 |
|
2594 |
-
// Reference: src/vue/
|
2595 |
-
|
2596 |
-
__( 'For the best SEO results there should be exactly one H1 tag on each page.', 'all-in-one-seo-pack' ),
|
2597 |
|
2598 |
-
// Reference: src/vue/
|
2599 |
-
|
2600 |
-
__( '%1$d H1 tags were found.', 'all-in-one-seo-pack' ),
|
2601 |
|
2602 |
-
// Reference: src/vue/
|
2603 |
-
__( '
|
2604 |
|
2605 |
-
// Reference: src/vue/
|
2606 |
-
__( '
|
2607 |
|
2608 |
-
// Reference: src/vue/
|
2609 |
-
__( '
|
2610 |
|
2611 |
-
// Reference: src/vue/
|
2612 |
-
__( '
|
2613 |
|
2614 |
-
// Reference: src/vue/
|
2615 |
-
__( '
|
2616 |
|
2617 |
-
// Reference: src/vue/
|
2618 |
-
__( '
|
2619 |
|
2620 |
-
// Reference: src/vue/
|
2621 |
-
__( '
|
2622 |
|
2623 |
-
// Reference: src/vue/
|
2624 |
-
__( '
|
2625 |
|
2626 |
-
// Reference: src/vue/
|
2627 |
-
__( '
|
2628 |
|
2629 |
-
// Reference: src/vue/
|
2630 |
-
|
|
|
2631 |
|
2632 |
-
// Reference: src/vue/
|
2633 |
-
__( '
|
2634 |
|
2635 |
-
// Reference: src/vue/
|
2636 |
-
|
|
|
2637 |
|
2638 |
-
// Reference: src/vue/
|
2639 |
-
__( '
|
2640 |
|
2641 |
-
// Reference: src/vue/
|
2642 |
-
|
|
|
2643 |
|
2644 |
-
// Reference: src/vue/
|
2645 |
-
__( '
|
2646 |
|
2647 |
-
// Reference: src/vue/
|
2648 |
-
__( '
|
2649 |
|
2650 |
-
// Reference: src/vue/
|
2651 |
-
__( '
|
2652 |
|
2653 |
-
// Reference: src/vue/
|
2654 |
-
__( '
|
2655 |
|
2656 |
-
// Reference: src/vue/
|
2657 |
-
__( '
|
2658 |
|
2659 |
-
// Reference: src/vue/
|
2660 |
-
__( '
|
2661 |
|
2662 |
-
// Reference: src/vue/
|
2663 |
-
__( '
|
2664 |
|
2665 |
-
// Reference: src/vue/
|
2666 |
-
__( '
|
2667 |
|
2668 |
-
// Reference: src/vue/
|
2669 |
-
__( '
|
2670 |
|
2671 |
-
// Reference: src/vue/
|
2672 |
-
__( '
|
2673 |
|
2674 |
-
// Reference: src/vue/
|
2675 |
-
__( '
|
2676 |
|
2677 |
-
// Reference: src/vue/
|
2678 |
-
__( '
|
2679 |
|
2680 |
-
// Reference: src/vue/
|
2681 |
-
|
|
|
|
|
|
|
|
|
2682 |
|
2683 |
-
// Reference: src/vue/
|
2684 |
-
__( '
|
2685 |
|
2686 |
-
// Reference: src/vue/
|
2687 |
-
__( '
|
2688 |
|
2689 |
-
// Reference: src/vue/
|
2690 |
-
__( '
|
2691 |
|
2692 |
-
// Reference: src/vue/
|
2693 |
-
|
|
|
2694 |
|
2695 |
-
// Reference: src/vue/
|
2696 |
-
__( '
|
2697 |
|
2698 |
-
// Reference: src/vue/
|
2699 |
-
__( '
|
2700 |
|
2701 |
-
// Reference: src/vue/
|
2702 |
-
__( '
|
2703 |
|
2704 |
-
// Reference: src/vue/
|
2705 |
-
__( '
|
2706 |
|
2707 |
-
// Reference: src/vue/
|
2708 |
-
|
|
|
|
|
2709 |
|
2710 |
-
// Reference: src/vue/
|
2711 |
-
__( '
|
2712 |
|
2713 |
-
// Reference: src/vue/
|
2714 |
-
__( 'Your
|
2715 |
|
2716 |
-
// Reference: src/vue/
|
2717 |
-
|
|
|
2718 |
|
2719 |
-
// Reference: src/vue/
|
2720 |
-
|
|
|
2721 |
|
2722 |
-
// Reference: src/vue/
|
2723 |
-
|
|
|
2724 |
|
2725 |
-
// Reference: src/vue/
|
2726 |
-
__( '
|
2727 |
|
2728 |
-
// Reference: src/vue/
|
2729 |
-
__( '
|
2730 |
|
2731 |
-
// Reference: src/vue/
|
2732 |
-
__( '
|
2733 |
|
2734 |
-
// Reference: src/vue/
|
2735 |
-
__( '
|
2736 |
|
2737 |
-
// Reference: src/vue/
|
2738 |
-
__( '
|
2739 |
|
2740 |
-
// Reference: src/vue/
|
2741 |
-
__( '
|
2742 |
|
2743 |
-
// Reference: src/vue/
|
2744 |
-
__( '
|
2745 |
|
2746 |
-
// Reference: src/vue/
|
2747 |
-
__( '
|
2748 |
|
2749 |
-
// Reference: src/vue/
|
2750 |
-
__( '
|
2751 |
|
2752 |
-
// Reference: src/vue/
|
2753 |
-
__( '
|
2754 |
|
2755 |
-
// Reference: src/vue/
|
2756 |
-
__( '
|
2757 |
|
2758 |
-
// Reference: src/vue/
|
2759 |
-
__( '
|
2760 |
|
2761 |
-
// Reference: src/vue/
|
2762 |
-
__( '
|
2763 |
|
2764 |
-
// Reference: src/vue/
|
2765 |
-
__( '
|
2766 |
|
2767 |
-
// Reference: src/vue/
|
2768 |
-
|
2769 |
-
__( '
|
2770 |
|
2771 |
-
// Reference: src/vue/
|
2772 |
-
|
2773 |
-
__( '
|
2774 |
|
2775 |
-
// Reference: src/vue/
|
2776 |
-
|
2777 |
-
__( '
|
2778 |
|
2779 |
-
// Reference: src/vue/
|
2780 |
-
|
2781 |
-
__( '
|
2782 |
|
2783 |
-
// Reference: src/vue/
|
2784 |
-
|
|
|
2785 |
|
2786 |
-
// Reference: src/vue/
|
2787 |
-
|
|
|
2788 |
|
2789 |
-
// Reference: src/vue/
|
2790 |
-
|
|
|
2791 |
|
2792 |
-
// Reference: src/vue/
|
2793 |
-
|
2794 |
-
__( '
|
2795 |
|
2796 |
-
// Reference: src/vue/
|
2797 |
-
|
|
|
2798 |
|
2799 |
-
// Reference: src/vue/
|
2800 |
-
|
|
|
2801 |
|
2802 |
-
// Reference: src/vue/
|
2803 |
-
|
|
|
2804 |
|
2805 |
-
// Reference: src/vue/
|
2806 |
-
|
|
|
2807 |
|
2808 |
-
// Reference: src/vue/
|
2809 |
-
|
|
|
2810 |
|
2811 |
-
// Reference: src/vue/
|
2812 |
-
__( '
|
2813 |
|
2814 |
-
// Reference: src/vue/
|
2815 |
-
|
2816 |
-
__( '%1$s makes it extremely easy to add highly relevant Schema.org markup to your site. It has a simple graphical interface, so you don\'t have to get your hands dirty with complex HTML markup.', 'all-in-one-seo-pack' ),
|
2817 |
|
2818 |
-
// Reference: src/vue/
|
2819 |
-
__( '
|
2820 |
|
2821 |
-
// Reference: src/vue/
|
2822 |
-
__( '
|
2823 |
|
2824 |
-
// Reference: src/vue/
|
2825 |
-
__( '
|
2826 |
|
2827 |
-
// Reference: src/vue/
|
2828 |
-
|
2829 |
-
__( 'Your SEO title is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
|
2830 |
|
2831 |
-
// Reference: src/vue/
|
2832 |
-
__( '
|
2833 |
|
2834 |
-
// Reference: src/vue/
|
2835 |
-
__( '
|
2836 |
|
2837 |
-
// Reference: src/vue/
|
2838 |
-
__( '
|
2839 |
|
2840 |
-
// Reference: src/vue/
|
2841 |
-
__( '
|
2842 |
|
2843 |
-
// Reference: src/vue/
|
2844 |
-
__( '
|
2845 |
|
2846 |
-
// Reference: src/vue/
|
2847 |
-
__( '
|
2848 |
|
2849 |
-
// Reference: src/vue/
|
2850 |
-
|
2851 |
-
__( 'The SEO title is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
|
2852 |
|
2853 |
-
// Reference: src/vue/
|
2854 |
-
__( '
|
2855 |
|
2856 |
-
// Reference: src/vue/
|
2857 |
-
__( '
|
2858 |
|
2859 |
-
// Reference: src/vue/
|
2860 |
-
__( '
|
2861 |
|
2862 |
-
// Reference: src/vue/
|
2863 |
-
__( '
|
2864 |
|
2865 |
-
// Reference: src/vue/
|
2866 |
-
__( '
|
2867 |
|
2868 |
-
// Reference: src/vue/
|
2869 |
-
__( '
|
2870 |
|
2871 |
-
// Reference: src/vue/
|
2872 |
-
__( '
|
|
|
|
|
|
|
2873 |
|
2874 |
-
// Reference: src/vue/
|
2875 |
-
__( '
|
2876 |
|
2877 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2878 |
-
|
2879 |
-
__( 'Your page makes %1$d requests.', 'all-in-one-seo-pack' ),
|
2880 |
|
2881 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2882 |
-
|
2883 |
-
__( 'The page makes %1$d requests.', 'all-in-one-seo-pack' ),
|
2884 |
|
2885 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2886 |
-
__( '
|
2887 |
|
2888 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2889 |
-
__( '
|
2890 |
|
2891 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2892 |
-
__( '
|
2893 |
|
2894 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2895 |
-
__( '
|
2896 |
|
2897 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2898 |
-
__( '
|
2899 |
|
2900 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2901 |
-
|
2902 |
-
__( 'Your SEO title is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
|
2903 |
|
2904 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2905 |
-
|
2906 |
-
__( 'The size of the HTML document is %1$d Kb.', 'all-in-one-seo-pack' ),
|
2907 |
|
2908 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2909 |
-
|
|
|
2910 |
|
2911 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2912 |
-
|
|
|
2913 |
|
2914 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2915 |
-
__( '
|
2916 |
|
2917 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2918 |
-
__( '
|
2919 |
|
2920 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2921 |
-
__( '
|
2922 |
|
2923 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2924 |
-
__( '
|
2925 |
|
2926 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2927 |
-
|
2928 |
-
__( 'The SEO title is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
|
2929 |
|
2930 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2931 |
-
|
2932 |
-
__( 'The response time of your page is %1$f seconds. It is recommended to keep it equal to or below 0.2 seconds.', 'all-in-one-seo-pack' ),
|
2933 |
|
2934 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2935 |
-
|
2936 |
-
__( 'The response time of the page is %1$f seconds. It is recommended to keep it equal to or below 0.2 seconds.', 'all-in-one-seo-pack' ),
|
2937 |
|
2938 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2939 |
-
__( '
|
2940 |
|
2941 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2942 |
-
__( '
|
2943 |
|
2944 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2945 |
-
__( '
|
2946 |
|
2947 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2948 |
-
__( '
|
2949 |
|
2950 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2951 |
-
__( '
|
2952 |
|
2953 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2954 |
-
__( '
|
2955 |
|
2956 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2957 |
-
__( '
|
2958 |
|
2959 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2960 |
-
__( '
|
2961 |
|
2962 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2963 |
-
__( '
|
2964 |
|
2965 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2966 |
-
|
2967 |
-
__( 'Anyone can see that you are using the %1$s theme.', 'all-in-one-seo-pack' ),
|
2968 |
|
2969 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2970 |
-
|
2971 |
-
__( 'Anyone can see that they are using the %1$s theme.', 'all-in-one-seo-pack' ),
|
2972 |
|
2973 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2974 |
-
__( '
|
2975 |
|
2976 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2977 |
-
__( '
|
2978 |
|
2979 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2980 |
-
__( '
|
2981 |
|
2982 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2983 |
-
__( '
|
2984 |
|
2985 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2986 |
-
__( '
|
2987 |
|
2988 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2989 |
-
__( '
|
2990 |
|
2991 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2992 |
-
__( '
|
2993 |
|
2994 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2995 |
-
__( '
|
2996 |
|
2997 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
2998 |
-
__( '
|
2999 |
|
3000 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3001 |
-
__( '
|
3002 |
|
3003 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3004 |
-
__( '
|
3005 |
|
3006 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3007 |
-
__( '
|
3008 |
|
3009 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3010 |
-
__( 'It
|
3011 |
|
3012 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3013 |
-
__( '
|
3014 |
|
3015 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3016 |
-
__( '
|
3017 |
|
3018 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3019 |
-
__( '
|
3020 |
|
3021 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3022 |
-
__( '
|
3023 |
|
3024 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3025 |
-
__( '
|
3026 |
|
3027 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3028 |
-
__( '
|
3029 |
|
3030 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3031 |
-
__( 'Your
|
3032 |
|
3033 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3034 |
-
__( 'The
|
3035 |
|
3036 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3037 |
-
__( '
|
3038 |
|
3039 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3040 |
-
__( '
|
3041 |
|
3042 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3043 |
-
__( '
|
3044 |
|
3045 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3046 |
-
|
3047 |
-
__( 'Your meta description is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
|
3048 |
|
3049 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3050 |
-
|
3051 |
-
__( 'The meta description is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
|
3052 |
|
3053 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3054 |
-
|
3055 |
-
__( 'Your meta description is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
|
3056 |
|
3057 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3058 |
-
|
3059 |
-
__( 'The meta description is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
|
3060 |
|
3061 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3062 |
-
|
3063 |
-
__( 'Your meta description is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
|
3064 |
|
3065 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3066 |
-
|
3067 |
-
__( 'The meta description is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
|
3068 |
|
3069 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3070 |
-
__( '
|
3071 |
|
3072 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3073 |
-
__( '
|
3074 |
|
3075 |
-
// Reference: src/vue/classes/SiteAnalysis.js:
|
3076 |
-
__( '
|
3077 |
|
3078 |
-
// Reference: src/vue/
|
3079 |
-
__( '
|
3080 |
|
3081 |
-
// Reference: src/vue/
|
3082 |
-
__( '
|
3083 |
|
3084 |
-
// Reference: src/vue/
|
3085 |
-
__( '
|
3086 |
|
3087 |
-
// Reference: src/vue/
|
3088 |
-
__( '
|
3089 |
|
3090 |
-
// Reference: src/vue/
|
3091 |
-
|
|
|
3092 |
|
3093 |
-
// Reference: src/vue/
|
3094 |
-
|
|
|
3095 |
|
3096 |
-
// Reference: src/vue/
|
3097 |
-
|
|
|
3098 |
|
3099 |
-
// Reference: src/vue/
|
3100 |
-
|
|
|
3101 |
|
3102 |
-
// Reference: src/vue/
|
3103 |
-
__( '
|
3104 |
|
3105 |
-
// Reference: src/vue/
|
3106 |
-
__( '
|
3107 |
|
3108 |
-
// Reference: src/vue/
|
3109 |
-
|
3110 |
-
__( 'always', 'all-in-one-seo-pack' ),
|
3111 |
|
3112 |
-
// Reference: src/vue/
|
3113 |
-
/* Translators: 1 -
|
3114 |
-
__( '
|
3115 |
|
3116 |
-
// Reference: src/vue/
|
3117 |
-
__( '
|
3118 |
|
3119 |
-
// Reference: src/vue/
|
3120 |
-
__( '
|
3121 |
|
3122 |
-
// Reference: src/vue/
|
3123 |
-
__( '
|
3124 |
|
3125 |
-
// Reference: src/vue/
|
3126 |
-
__( '
|
3127 |
|
3128 |
-
// Reference: src/vue/
|
3129 |
-
__( '
|
3130 |
|
3131 |
-
// Reference: src/vue/
|
3132 |
-
__( '
|
3133 |
|
3134 |
-
// Reference: src/vue/
|
3135 |
-
|
|
|
3136 |
|
3137 |
-
// Reference: src/vue/
|
3138 |
-
__( '
|
3139 |
|
3140 |
-
// Reference: src/vue/
|
3141 |
-
__( '
|
3142 |
|
3143 |
-
// Reference: src/vue/
|
3144 |
-
__( '
|
3145 |
|
3146 |
-
// Reference: src/vue/
|
3147 |
-
|
|
|
3148 |
|
3149 |
-
// Reference: src/vue/
|
3150 |
-
__( '
|
3151 |
|
3152 |
-
// Reference: src/vue/
|
3153 |
-
__( '
|
3154 |
|
3155 |
-
// Reference: src/vue/
|
3156 |
-
__( '
|
3157 |
|
3158 |
-
// Reference: src/vue/
|
3159 |
-
__( '
|
3160 |
|
3161 |
-
// Reference: src/vue/
|
3162 |
-
__( '
|
3163 |
|
3164 |
-
// Reference: src/vue/
|
3165 |
-
__( '
|
3166 |
|
3167 |
-
// Reference: src/vue/
|
3168 |
-
|
|
|
3169 |
|
3170 |
-
// Reference: src/vue/
|
3171 |
-
__( '
|
3172 |
|
3173 |
-
// Reference: src/vue/
|
3174 |
-
__( '
|
3175 |
|
3176 |
-
// Reference: src/vue/
|
3177 |
-
__( '
|
3178 |
|
3179 |
-
// Reference: src/vue/
|
3180 |
-
__( '
|
3181 |
|
3182 |
-
// Reference: src/vue/
|
3183 |
-
__( '
|
3184 |
|
3185 |
-
// Reference: src/vue/
|
3186 |
-
__( '
|
3187 |
|
3188 |
-
// Reference: src/vue/
|
3189 |
-
__( '
|
3190 |
|
3191 |
-
// Reference: src/vue/
|
3192 |
-
__( '
|
3193 |
|
3194 |
-
// Reference: src/vue/
|
3195 |
-
|
|
|
3196 |
|
3197 |
-
// Reference: src/vue/
|
3198 |
-
|
|
|
3199 |
|
3200 |
-
// Reference: src/vue/
|
3201 |
-
__( '
|
3202 |
|
3203 |
-
// Reference: src/vue/
|
3204 |
-
__( '
|
3205 |
|
3206 |
-
// Reference: src/vue/
|
3207 |
-
__( '
|
3208 |
|
3209 |
-
// Reference: src/vue/
|
3210 |
-
__( '
|
3211 |
|
3212 |
-
// Reference: src/vue/
|
3213 |
-
__( '
|
3214 |
|
3215 |
-
// Reference: src/vue/
|
3216 |
-
|
|
|
3217 |
|
3218 |
-
// Reference: src/vue/
|
3219 |
-
|
|
|
3220 |
|
3221 |
-
// Reference: src/vue/
|
3222 |
-
__( '
|
3223 |
|
3224 |
-
// Reference: src/vue/
|
3225 |
-
__( '
|
3226 |
|
3227 |
-
// Reference: src/vue/
|
3228 |
-
__( '
|
3229 |
|
3230 |
-
// Reference: src/vue/
|
3231 |
-
__( '
|
3232 |
|
3233 |
-
// Reference: src/vue/
|
3234 |
-
__( '
|
3235 |
|
3236 |
-
// Reference: src/vue/
|
3237 |
-
__( '
|
3238 |
|
3239 |
-
// Reference: src/vue/
|
3240 |
-
/* Translators:
|
3241 |
-
__( '
|
3242 |
|
3243 |
-
// Reference: src/vue/
|
3244 |
-
|
|
|
3245 |
|
3246 |
-
// Reference: src/vue/
|
3247 |
-
|
|
|
3248 |
|
3249 |
-
// Reference: src/vue/
|
3250 |
-
__( '
|
3251 |
|
3252 |
-
// Reference: src/vue/
|
3253 |
-
|
3254 |
-
__( 'Band', 'all-in-one-seo-pack' ),
|
3255 |
|
3256 |
-
// Reference: src/vue/
|
3257 |
-
__( '
|
3258 |
|
3259 |
-
// Reference: src/vue/
|
3260 |
-
__( '
|
3261 |
|
3262 |
-
// Reference: src/vue/
|
3263 |
-
__( '
|
3264 |
|
3265 |
-
// Reference: src/vue/
|
3266 |
-
__( '
|
3267 |
|
3268 |
-
// Reference: src/vue/
|
3269 |
-
__( '
|
3270 |
|
3271 |
-
// Reference: src/vue/
|
3272 |
-
__( '
|
3273 |
|
3274 |
-
// Reference: src/vue/
|
3275 |
-
__( '
|
3276 |
|
3277 |
-
// Reference: src/vue/
|
3278 |
-
|
|
|
3279 |
|
3280 |
-
// Reference: src/vue/
|
3281 |
-
|
|
|
3282 |
|
3283 |
-
// Reference: src/vue/
|
3284 |
-
__( '
|
3285 |
|
3286 |
-
// Reference: src/vue/
|
3287 |
-
__( '
|
3288 |
|
3289 |
-
// Reference: src/vue/
|
3290 |
-
__( '
|
3291 |
|
3292 |
-
// Reference: src/vue/
|
3293 |
-
__( '
|
3294 |
|
3295 |
-
// Reference: src/vue/
|
3296 |
-
__( '
|
3297 |
|
3298 |
-
// Reference: src/vue/
|
3299 |
-
__( '
|
3300 |
|
3301 |
-
// Reference: src/vue/
|
3302 |
-
__( '
|
3303 |
|
3304 |
-
// Reference: src/vue/
|
3305 |
-
__( '
|
3306 |
|
3307 |
-
// Reference: src/vue/
|
3308 |
-
__( '
|
3309 |
|
3310 |
-
// Reference: src/vue/
|
3311 |
-
__( '
|
3312 |
|
3313 |
-
// Reference: src/vue/
|
3314 |
-
__( '
|
3315 |
|
3316 |
-
// Reference: src/vue/
|
3317 |
-
__( '
|
3318 |
|
3319 |
-
// Reference: src/vue/
|
3320 |
-
__( '
|
3321 |
|
3322 |
-
// Reference: src/vue/
|
3323 |
-
__( '
|
3324 |
|
3325 |
-
// Reference: src/vue/
|
3326 |
-
__( '
|
3327 |
|
3328 |
-
// Reference: src/vue/
|
3329 |
-
__( '
|
3330 |
|
3331 |
-
// Reference: src/vue/
|
3332 |
-
__( '
|
3333 |
|
3334 |
-
// Reference: src/vue/
|
3335 |
-
__( '
|
3336 |
|
3337 |
-
// Reference: src/vue/
|
3338 |
-
__( '
|
3339 |
|
3340 |
-
// Reference: src/vue/
|
3341 |
-
__( '
|
3342 |
|
3343 |
-
// Reference: src/vue/
|
3344 |
-
__( '
|
3345 |
|
3346 |
-
// Reference: src/vue/
|
3347 |
-
__( '
|
3348 |
|
3349 |
-
// Reference: src/vue/
|
3350 |
-
__( '
|
3351 |
|
3352 |
-
// Reference: src/vue/
|
3353 |
-
__( '
|
3354 |
|
3355 |
-
// Reference: src/vue/
|
3356 |
-
|
|
|
3357 |
|
3358 |
-
// Reference: src/vue/
|
3359 |
-
|
|
|
3360 |
|
3361 |
-
// Reference: src/vue/
|
3362 |
-
|
|
|
3363 |
|
3364 |
-
// Reference: src/vue/
|
3365 |
-
|
|
|
3366 |
|
3367 |
-
// Reference: src/vue/
|
3368 |
-
|
|
|
3369 |
|
3370 |
-
// Reference: src/vue/
|
3371 |
-
|
|
|
3372 |
|
3373 |
-
// Reference: src/vue/
|
3374 |
-
__( '
|
3375 |
|
3376 |
-
// Reference: src/vue/
|
3377 |
-
__( '
|
3378 |
|
3379 |
-
// Reference: src/vue/
|
3380 |
-
__( '
|
3381 |
|
3382 |
-
// Reference: src/vue/
|
3383 |
-
|
|
|
3384 |
|
3385 |
-
// Reference: src/vue/
|
3386 |
-
__( '
|
3387 |
|
3388 |
-
// Reference: src/vue/
|
3389 |
-
__( '
|
3390 |
|
3391 |
-
// Reference: src/vue/
|
3392 |
-
__( '
|
3393 |
|
3394 |
-
// Reference: src/vue/
|
3395 |
-
__( '
|
3396 |
|
3397 |
-
// Reference: src/vue/
|
3398 |
-
__( '
|
3399 |
|
3400 |
-
// Reference: src/vue/
|
3401 |
-
|
3402 |
-
__( 'Use our configuration wizard to properly set up %1$s with your WordPress website.', 'all-in-one-seo-pack' ),
|
3403 |
|
3404 |
-
// Reference: src/vue/
|
3405 |
-
__( '
|
3406 |
|
3407 |
-
// Reference: src/vue/
|
3408 |
-
__( '
|
3409 |
|
3410 |
-
// Reference: src/vue/
|
3411 |
-
__( '
|
3412 |
|
3413 |
-
// Reference: src/vue/
|
3414 |
-
__( '
|
3415 |
|
3416 |
-
// Reference: src/vue/
|
3417 |
-
|
|
|
3418 |
|
3419 |
-
// Reference: src/vue/
|
3420 |
-
__( '
|
3421 |
|
3422 |
-
// Reference: src/vue/
|
3423 |
-
__( '
|
3424 |
|
3425 |
-
// Reference: src/vue/
|
3426 |
-
|
|
|
3427 |
|
3428 |
-
// Reference: src/vue/
|
3429 |
-
|
|
|
|
|
|
|
|
|
3430 |
|
3431 |
-
// Reference: src/vue/
|
3432 |
-
__( '
|
3433 |
|
3434 |
-
// Reference: src/vue/
|
3435 |
-
__( '
|
3436 |
|
3437 |
-
// Reference: src/vue/
|
3438 |
-
__( '
|
3439 |
|
3440 |
-
// Reference: src/vue/
|
3441 |
-
__( '
|
3442 |
|
3443 |
-
// Reference: src/vue/
|
3444 |
-
__( '
|
3445 |
|
3446 |
-
// Reference: src/vue/
|
3447 |
-
__( '
|
3448 |
|
3449 |
-
// Reference: src/vue/
|
3450 |
-
|
|
|
3451 |
|
3452 |
-
// Reference: src/vue/
|
3453 |
-
__( '
|
3454 |
|
3455 |
-
// Reference: src/vue/
|
3456 |
-
__( '
|
3457 |
|
3458 |
-
// Reference: src/vue/
|
3459 |
-
__( '
|
3460 |
|
3461 |
-
// Reference: src/vue/
|
3462 |
-
__( '
|
3463 |
|
3464 |
-
// Reference: src/vue/
|
3465 |
-
__( '
|
3466 |
|
3467 |
-
// Reference: src/vue/
|
3468 |
-
__( '
|
3469 |
|
3470 |
-
// Reference: src/vue/
|
3471 |
-
__( '
|
3472 |
|
3473 |
-
// Reference: src/vue/
|
3474 |
-
__( '
|
3475 |
|
3476 |
-
// Reference: src/vue/
|
3477 |
-
__( '
|
3478 |
|
3479 |
-
// Reference: src/vue/
|
3480 |
-
|
3481 |
-
__( 'Select which Post Types you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
|
3482 |
|
3483 |
-
// Reference: src/vue/
|
3484 |
-
__( '
|
3485 |
|
3486 |
-
// Reference: src/vue/
|
3487 |
-
__( '
|
3488 |
|
3489 |
-
// Reference: src/vue/
|
3490 |
-
|
3491 |
-
__( 'This adds %1$s to the admin toolbar for easy access to your SEO settings.', 'all-in-one-seo-pack' ),
|
3492 |
|
3493 |
-
// Reference: src/vue/
|
3494 |
-
__( '
|
3495 |
|
3496 |
-
// Reference: src/vue/
|
3497 |
-
__( '
|
3498 |
|
3499 |
-
// Reference: src/vue/
|
3500 |
-
|
|
|
3501 |
|
3502 |
-
// Reference: src/vue/
|
3503 |
-
|
|
|
3504 |
|
3505 |
-
// Reference: src/vue/
|
3506 |
-
__( '
|
3507 |
|
3508 |
-
// Reference: src/vue/
|
3509 |
-
__( '
|
3510 |
|
3511 |
-
// Reference: src/vue/
|
3512 |
-
__( '
|
3513 |
|
3514 |
-
// Reference: src/vue/
|
3515 |
-
__( '
|
3516 |
|
3517 |
-
// Reference: src/vue/
|
3518 |
-
__( '
|
3519 |
|
3520 |
-
// Reference: src/vue/
|
3521 |
-
__( '
|
3522 |
|
3523 |
-
// Reference: src/vue/
|
3524 |
-
__( '
|
3525 |
|
3526 |
-
// Reference: src/vue/
|
3527 |
-
|
3528 |
-
__( 'This Admin Bar feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
3529 |
|
3530 |
-
// Reference: src/vue/
|
3531 |
-
|
3532 |
-
__( 'The Dashboard Widget feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
3533 |
|
3534 |
-
// Reference: src/vue/
|
3535 |
-
__( '
|
3536 |
|
3537 |
-
// Reference: src/vue/
|
3538 |
-
|
3539 |
-
__( 'Select which Taxonomies you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
|
3540 |
|
3541 |
-
// Reference: src/vue/
|
3542 |
-
|
3543 |
-
__( 'Uninstall %1$s', 'all-in-one-seo-pack' ),
|
3544 |
|
3545 |
-
// Reference: src/vue/
|
3546 |
-
|
3547 |
-
__( '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' ),
|
3548 |
|
3549 |
-
// Reference: src/vue/
|
3550 |
-
__( '
|
3551 |
|
3552 |
-
// Reference: src/vue/
|
3553 |
-
__( '
|
3554 |
|
3555 |
-
// Reference: src/vue/
|
3556 |
-
__( '
|
3557 |
|
3558 |
-
// Reference: src/vue/
|
3559 |
-
__( '
|
3560 |
|
3561 |
-
// Reference: src/vue/
|
3562 |
-
__( '
|
3563 |
|
3564 |
-
// Reference: src/vue/
|
3565 |
-
__( '
|
3566 |
|
3567 |
-
// Reference: src/vue/
|
3568 |
-
__( '
|
3569 |
|
3570 |
-
// Reference: src/vue/
|
3571 |
-
__( '
|
3572 |
|
3573 |
-
// Reference: src/vue/
|
3574 |
-
__( '
|
3575 |
|
3576 |
-
// Reference: src/vue/
|
3577 |
-
__( '
|
3578 |
|
3579 |
-
// Reference: src/vue/
|
3580 |
-
__( '
|
3581 |
|
3582 |
-
// Reference: src/vue/
|
3583 |
-
|
3584 |
-
__( 'The code above will be added between the %1$s tags on every page on your website.', 'all-in-one-seo-pack' ),
|
3585 |
|
3586 |
-
// Reference: src/vue/
|
3587 |
-
__( '
|
3588 |
|
3589 |
-
// Reference: src/vue/
|
3590 |
-
__( '
|
3591 |
|
3592 |
-
// Reference: src/vue/
|
3593 |
-
__( '
|
3594 |
|
3595 |
-
// Reference: src/vue/
|
3596 |
-
__( '
|
3597 |
|
3598 |
-
// Reference: src/vue/
|
3599 |
-
__( '
|
3600 |
|
3601 |
-
// Reference: src/vue/
|
3602 |
-
__( '
|
3603 |
|
3604 |
-
// Reference: src/vue/
|
3605 |
-
|
3606 |
-
__( 'We recommend using the %1$sFree MonsterInsights%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
|
3607 |
|
3608 |
-
// Reference: src/vue/
|
3609 |
-
|
3610 |
-
__( 'We recommend using the %1$sFree ExactMetrics%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
|
3611 |
|
3612 |
-
// Reference: src/vue/
|
3613 |
-
__( '
|
3614 |
|
3615 |
-
// Reference: src/vue/
|
3616 |
-
|
3617 |
-
__( 'Google Search Console', 'all-in-one-seo-pack' ),
|
3618 |
|
3619 |
-
// Reference: src/vue/
|
3620 |
-
|
3621 |
-
__( 'Get your Google verification code in %1$s.', 'all-in-one-seo-pack' ),
|
3622 |
|
3623 |
-
// Reference: src/vue/
|
3624 |
-
|
|
|
3625 |
|
3626 |
-
// Reference: src/vue/
|
3627 |
-
|
3628 |
-
__( 'Bing Webmaster Tools', 'all-in-one-seo-pack' ),
|
3629 |
|
3630 |
-
// Reference: src/vue/
|
3631 |
-
|
3632 |
-
__( 'Get your Bing verification code in %1$s.', 'all-in-one-seo-pack' ),
|
3633 |
|
3634 |
-
// Reference: src/vue/
|
3635 |
-
__( '
|
3636 |
|
3637 |
-
// Reference: src/vue/
|
3638 |
-
/* Translators:
|
3639 |
-
__( '
|
3640 |
|
3641 |
-
// Reference: src/vue/
|
3642 |
-
|
3643 |
-
__( 'Get your Yandex verification code in %1$s.', 'all-in-one-seo-pack' ),
|
3644 |
|
3645 |
-
// Reference: src/vue/
|
3646 |
-
__( '
|
3647 |
|
3648 |
-
// Reference: src/vue/
|
3649 |
-
|
3650 |
-
__( 'Baidu Webmaster Tools', 'all-in-one-seo-pack' ),
|
3651 |
|
3652 |
-
// Reference: src/vue/
|
3653 |
-
|
3654 |
-
__( 'Get your Baidu verification code in %1$s.', 'all-in-one-seo-pack' ),
|
3655 |
|
3656 |
-
// Reference: src/vue/
|
3657 |
-
__( '
|
3658 |
|
3659 |
-
// Reference: src/vue/
|
3660 |
-
|
3661 |
-
__( 'Get your Pinterest verification code in your %1$s.', 'all-in-one-seo-pack' ),
|
3662 |
|
3663 |
-
// Reference: src/vue/
|
3664 |
-
|
3665 |
-
__( 'Pinterest account', 'all-in-one-seo-pack' ),
|
3666 |
|
3667 |
-
// Reference: src/vue/
|
3668 |
-
__( '
|
3669 |
|
3670 |
-
// Reference: src/vue/
|
3671 |
-
__( '
|
3672 |
|
3673 |
-
// Reference: src/vue/
|
3674 |
-
|
3675 |
-
__( 'Get your Google Analytics ID in your %1$s.', 'all-in-one-seo-pack' ),
|
3676 |
|
3677 |
-
// Reference: src/vue/
|
3678 |
-
|
3679 |
-
__( 'Google Analytics account', 'all-in-one-seo-pack' ),
|
3680 |
|
3681 |
-
// Reference: src/vue/
|
3682 |
-
__( '
|
3683 |
|
3684 |
-
// Reference: src/vue/
|
3685 |
-
|
3686 |
-
__( 'This enables Advanced Google Analytics options.%1$s%2$s', 'all-in-one-seo-pack' ),
|
3687 |
|
3688 |
-
// Reference: src/vue/
|
3689 |
-
__( '
|
3690 |
|
3691 |
-
// Reference: src/vue/
|
3692 |
-
|
3693 |
-
__( 'Enter your domain name without the %1$s to set your cookie domain.%2$s%3$s', 'all-in-one-seo-pack' ),
|
3694 |
|
3695 |
-
// Reference: src/vue/
|
3696 |
-
__( '
|
3697 |
|
3698 |
-
// Reference: src/vue/
|
3699 |
-
|
3700 |
-
__( 'Use this option to enable tracking of multiple or additional domains.%1$s%2$s', 'all-in-one-seo-pack' ),
|
3701 |
|
3702 |
-
// Reference: src/vue/
|
3703 |
-
__( '
|
3704 |
|
3705 |
-
// Reference: src/vue/
|
3706 |
-
|
3707 |
-
__( 'Add a list of additional domains to track here. Enter one domain name per line without the http://.%1$s%2$s', 'all-in-one-seo-pack' ),
|
3708 |
|
3709 |
-
// Reference: src/vue/
|
3710 |
-
__( '
|
3711 |
|
3712 |
-
// Reference: src/vue/
|
3713 |
-
|
3714 |
-
__( 'This enables support for IP Anonymization in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
3715 |
|
3716 |
-
// Reference: src/vue/
|
3717 |
-
__( '
|
3718 |
|
3719 |
-
// Reference: src/vue/
|
3720 |
-
|
3721 |
-
__( 'This enables support for the Display Advertiser Features in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
3722 |
|
3723 |
-
// Reference: src/vue/
|
3724 |
-
__( '
|
3725 |
|
3726 |
-
// Reference: src/vue/
|
3727 |
-
|
3728 |
-
__( 'Exclude logged-in users from Google Analytics tracking by role.%1$s%2$s', 'all-in-one-seo-pack' ),
|
3729 |
|
3730 |
-
// Reference: src/vue/
|
3731 |
-
__( '
|
3732 |
|
3733 |
-
// Reference: src/vue/
|
3734 |
-
|
3735 |
-
__( 'This enables support for the Enhanced Link Attribution in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
3736 |
|
3737 |
-
// Reference: src/vue/
|
3738 |
-
__( '
|
3739 |
|
3740 |
-
// Reference: src/vue/
|
3741 |
-
|
3742 |
-
__( 'This enables tracking outbound links with Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
3743 |
|
3744 |
-
// Reference: src/vue/
|
3745 |
-
__( '
|
3746 |
|
3747 |
-
// Reference: src/vue/
|
3748 |
-
|
3749 |
-
__( 'This enables support for the Enhanced Ecommerce in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
3750 |
|
3751 |
-
// Reference: src/vue/
|
3752 |
-
__( '
|
3753 |
|
3754 |
-
// Reference: src/vue/
|
3755 |
-
__( '
|
3756 |
|
3757 |
-
// Reference: src/vue/
|
3758 |
-
__( '
|
3759 |
|
3760 |
-
// Reference: src/vue/
|
3761 |
-
__( '
|
3762 |
|
3763 |
-
// Reference: src/vue/
|
3764 |
-
__( '
|
3765 |
|
3766 |
-
// Reference: src/vue/
|
3767 |
-
__( '
|
3768 |
|
3769 |
-
// Reference: src/vue/
|
3770 |
-
__( '
|
3771 |
|
3772 |
-
// Reference: src/vue/
|
3773 |
-
__( '
|
3774 |
|
3775 |
-
// Reference: src/vue/
|
3776 |
-
__( '
|
3777 |
|
3778 |
-
// Reference: src/vue/
|
3779 |
-
__( '
|
3780 |
|
3781 |
-
// Reference: src/vue/
|
3782 |
-
|
3783 |
-
__( 'Get your Google Tag Manager ID in your %1$s.', 'all-in-one-seo-pack' ),
|
3784 |
|
3785 |
-
// Reference: src/vue/plugins/
|
3786 |
-
__( '
|
3787 |
|
3788 |
-
// Reference: src/vue/plugins/
|
3789 |
-
__( '
|
3790 |
|
3791 |
-
// Reference: src/vue/plugins/
|
3792 |
-
__( '
|
3793 |
|
3794 |
-
// Reference: src/vue/
|
3795 |
-
__( '
|
3796 |
|
3797 |
-
// Reference: src/vue/
|
3798 |
-
__( '
|
3799 |
|
3800 |
-
// Reference: src/vue/
|
3801 |
-
__( '
|
3802 |
|
3803 |
-
// Reference: src/vue/
|
3804 |
-
|
3805 |
-
__( '%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' ),
|
3806 |
|
3807 |
-
// Reference: src/vue/
|
3808 |
-
__( '
|
3809 |
|
3810 |
-
// Reference: src/vue/
|
3811 |
-
__( '
|
3812 |
|
3813 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3814 |
-
__( '
|
3815 |
|
3816 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3817 |
-
__( '
|
3818 |
|
3819 |
-
// Reference: src/vue/
|
3820 |
-
__( '
|
3821 |
|
3822 |
// Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:47
|
|
|
3823 |
__( 'Good job!', 'all-in-one-seo-pack' ),
|
3824 |
|
3825 |
// Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:51
|
@@ -3842,18 +4041,14 @@ $generated_i18n_strings = array(
|
|
3842 |
// Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:98
|
3843 |
__( ':-)', 'all-in-one-seo-pack' ),
|
3844 |
|
3845 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3846 |
-
__( '
|
3847 |
-
|
3848 |
-
// Reference: src/vue/plugins/truSEO/Analysis/transitionWords.js:32
|
3849 |
-
/* Translators: 1 - Percentage of the sentences. */
|
3850 |
-
__( 'Only %1$s of the sentences contain transition words, which is not enough. Use more of them', 'all-in-one-seo-pack' ),
|
3851 |
|
3852 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3853 |
-
__( '
|
3854 |
|
3855 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3856 |
-
__( '
|
3857 |
|
3858 |
// Reference: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:23
|
3859 |
/* Translators: 1 - Number of sentences. */
|
@@ -3865,20 +4060,46 @@ $generated_i18n_strings = array(
|
|
3865 |
// Reference: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:32
|
3866 |
__( 'There is enough variety in your sentences. That\'s great!', 'all-in-one-seo-pack' ),
|
3867 |
|
3868 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3869 |
-
|
|
|
3870 |
|
3871 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3872 |
-
__( '
|
3873 |
|
3874 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3875 |
-
__( '
|
3876 |
|
3877 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3878 |
-
__( '
|
3879 |
|
3880 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3881 |
-
__( '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3882 |
|
3883 |
// Reference: src/vue/plugins/truSEO/Analysis/sentenceLength.js:34
|
3884 |
__( 'Sentence length is looking great!', 'all-in-one-seo-pack' ),
|
@@ -3890,6 +4111,16 @@ $generated_i18n_strings = array(
|
|
3890 |
/* Translators: 1 - Number of the sentences, 2 - Number of words, 3 - Recommended maximum of words. */
|
3891 |
__( '%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' ),
|
3892 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3893 |
// Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:27
|
3894 |
__( 'Please add some content first.', 'all-in-one-seo-pack' ),
|
3895 |
|
@@ -3902,24 +4133,20 @@ $generated_i18n_strings = array(
|
|
3902 |
// Reference: src/vue/plugins/truSEO/Analysis/contentHasAssets.js:32
|
3903 |
__( 'You are not using rich media like images or videos.', 'all-in-one-seo-pack' ),
|
3904 |
|
3905 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3906 |
-
__( '
|
3907 |
-
|
3908 |
-
// Reference: src/vue/plugins/truSEO/Analysis/paragraphLength.js:30
|
3909 |
-
__( 'Paragraphs Length', 'all-in-one-seo-pack' ),
|
3910 |
|
3911 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3912 |
-
__( '
|
3913 |
|
3914 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3915 |
-
__( '
|
3916 |
|
3917 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3918 |
-
__( '
|
3919 |
|
3920 |
-
// Reference: src/vue/plugins/truSEO/Analysis/
|
3921 |
-
|
3922 |
-
__( '%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' ),
|
3923 |
|
3924 |
// Reference: src/vue/plugins/truSEO/Analysis/titleLength.js:21
|
3925 |
__( 'Please add a title first.', 'all-in-one-seo-pack' ),
|
@@ -3969,99 +4196,6 @@ $generated_i18n_strings = array(
|
|
3969 |
// Reference: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:83
|
3970 |
__( 'Use your focus keyphrase more in your H2 and H3 subheadings', 'all-in-one-seo-pack' ),
|
3971 |
|
3972 |
-
// Reference: src/vue/pages/post-settings/views/ModalContent.vue:41
|
3973 |
-
__( 'Modal Content', 'all-in-one-seo-pack' ),
|
3974 |
-
|
3975 |
-
// Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:6
|
3976 |
-
__( 'Focus keyphrase', 'all-in-one-seo-pack' ),
|
3977 |
-
|
3978 |
-
// Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:8
|
3979 |
-
__( 'Keyphrase', 'all-in-one-seo-pack' ),
|
3980 |
-
|
3981 |
-
// Reference: src/vue/pages/post-settings/views/Social.vue:60
|
3982 |
-
__( 'Social', 'all-in-one-seo-pack' ),
|
3983 |
-
|
3984 |
-
// Reference: src/vue/pages/post-settings/views/Facebook.vue:238
|
3985 |
-
__( 'Facebook Preview', 'all-in-one-seo-pack' ),
|
3986 |
-
|
3987 |
-
// Reference: src/vue/pages/post-settings/views/Twitter.vue:215
|
3988 |
-
__( 'Image Source', 'all-in-one-seo-pack' ),
|
3989 |
-
|
3990 |
-
// Reference: src/vue/pages/post-settings/views/Twitter.vue:216
|
3991 |
-
__( 'Custom Field Name', 'all-in-one-seo-pack' ),
|
3992 |
-
|
3993 |
-
// Reference: src/vue/pages/post-settings/views/Facebook.vue:241
|
3994 |
-
__( 'Video URL', 'all-in-one-seo-pack' ),
|
3995 |
-
|
3996 |
-
// Reference: src/vue/pages/post-settings/views/Facebook.vue:245
|
3997 |
-
__( 'Facebook Image', 'all-in-one-seo-pack' ),
|
3998 |
-
|
3999 |
-
// Reference: src/vue/pages/post-settings/views/Facebook.vue:246
|
4000 |
-
__( 'Facebook Title', 'all-in-one-seo-pack' ),
|
4001 |
-
|
4002 |
-
// Reference: src/vue/pages/post-settings/views/Facebook.vue:247
|
4003 |
-
__( 'Facebook Description', 'all-in-one-seo-pack' ),
|
4004 |
-
|
4005 |
-
// Reference: src/vue/pages/post-settings/views/Facebook.vue:250
|
4006 |
-
__( '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' ),
|
4007 |
-
|
4008 |
-
// Reference: src/vue/pages/post-settings/views/Facebook.vue:252
|
4009 |
-
__( 'Click on tags below to insert variables into your site name.', 'all-in-one-seo-pack' ),
|
4010 |
-
|
4011 |
-
// Reference: src/vue/pages/post-settings/views/General.vue:266
|
4012 |
-
__( 'Click on tags below to insert variables into your meta description.', 'all-in-one-seo-pack' ),
|
4013 |
-
|
4014 |
-
// Reference: src/vue/pages/post-settings/views/Facebook.vue:254
|
4015 |
-
__( 'Article Section', 'all-in-one-seo-pack' ),
|
4016 |
-
|
4017 |
-
// Reference: src/vue/pages/post-settings/views/Facebook.vue:255
|
4018 |
-
__( 'Article Tags', 'all-in-one-seo-pack' ),
|
4019 |
-
|
4020 |
-
// Reference: src/vue/pages/post-settings/views/Facebook.vue:256
|
4021 |
-
__( 'Press enter to create an article tag', 'all-in-one-seo-pack' ),
|
4022 |
-
|
4023 |
-
// Reference: src/vue/pages/post-settings/views/Facebook.vue:264
|
4024 |
-
__( 'Default', 'all-in-one-seo-pack' ),
|
4025 |
-
|
4026 |
-
// Reference: src/vue/pages/post-settings/views/Facebook.vue:264
|
4027 |
-
__( 'Default Object Type (Set in Social Networks)', 'all-in-one-seo-pack' ),
|
4028 |
-
|
4029 |
-
// Reference: src/vue/pages/post-settings/views/Twitter.vue:213
|
4030 |
-
__( 'Twitter Preview', 'all-in-one-seo-pack' ),
|
4031 |
-
|
4032 |
-
// Reference: src/vue/pages/post-settings/views/Twitter.vue:214
|
4033 |
-
__( 'Use Data from Facebook Tab', 'all-in-one-seo-pack' ),
|
4034 |
-
|
4035 |
-
// Reference: src/vue/pages/post-settings/views/Twitter.vue:217
|
4036 |
-
__( 'Twitter Image', 'all-in-one-seo-pack' ),
|
4037 |
-
|
4038 |
-
// Reference: src/vue/pages/post-settings/views/Twitter.vue:218
|
4039 |
-
__( 'Twitter Title', 'all-in-one-seo-pack' ),
|
4040 |
-
|
4041 |
-
// Reference: src/vue/pages/post-settings/views/Twitter.vue:219
|
4042 |
-
__( 'Twitter Description', 'all-in-one-seo-pack' ),
|
4043 |
-
|
4044 |
-
// Reference: src/vue/pages/post-settings/views/Twitter.vue:220
|
4045 |
-
__( 'Twitter Card Type', 'all-in-one-seo-pack' ),
|
4046 |
-
|
4047 |
-
// Reference: src/vue/pages/post-settings/views/Twitter.vue:234
|
4048 |
-
__( 'Default (Set under Social Networks)', 'all-in-one-seo-pack' ),
|
4049 |
-
|
4050 |
-
// Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:26
|
4051 |
-
__( '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' ),
|
4052 |
-
|
4053 |
-
// Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:27
|
4054 |
-
__( 'Preview & Edit', 'all-in-one-seo-pack' ),
|
4055 |
-
|
4056 |
-
// Reference: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:22
|
4057 |
-
__( 'Focus Keyphrase found in content.', 'all-in-one-seo-pack' ),
|
4058 |
-
|
4059 |
-
// Reference: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:30
|
4060 |
-
__( 'Focus Keyphrase in content', 'all-in-one-seo-pack' ),
|
4061 |
-
|
4062 |
-
// Reference: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:31
|
4063 |
-
__( 'Focus Keyphrase not found in content.', 'all-in-one-seo-pack' ),
|
4064 |
-
|
4065 |
// Reference: src/vue/plugins/truSEO/Analysis/keyphraseInIntroduction.js:24
|
4066 |
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
4067 |
__( '%1$s in introduction', 'all-in-one-seo-pack' ),
|
@@ -4077,62 +4211,14 @@ $generated_i18n_strings = array(
|
|
4077 |
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
4078 |
__( 'Your %1$s does not appear in the first paragraph. Make sure the topic is clear immediately.', 'all-in-one-seo-pack' ),
|
4079 |
|
4080 |
-
// Reference: src/vue/
|
4081 |
-
__( '
|
4082 |
-
|
4083 |
-
// Reference: src/vue/pages/post-settings/views/Advanced.vue:115
|
4084 |
-
__( 'Use default settings', 'all-in-one-seo-pack' ),
|
4085 |
-
|
4086 |
-
// Reference: src/vue/pages/post-settings/views/Advanced.vue:116
|
4087 |
-
__( 'Canonical URL', 'all-in-one-seo-pack' ),
|
4088 |
-
|
4089 |
-
// Reference: src/vue/pages/post-settings/views/Advanced.vue:117
|
4090 |
-
__( 'Enter a URL to change the default Canonical URL', 'all-in-one-seo-pack' ),
|
4091 |
-
|
4092 |
-
// Reference: src/vue/pages/post-settings/views/lite/Schema.vue:61
|
4093 |
-
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro", 3 - "Learn more link".. */
|
4094 |
-
__( 'This feature is only for licensed %1$s %2$s users. %3$s', 'all-in-one-seo-pack' ),
|
4095 |
-
|
4096 |
-
// Reference: src/vue/pages/post-settings/views/General.vue:260
|
4097 |
-
__( 'General', 'all-in-one-seo-pack' ),
|
4098 |
-
|
4099 |
-
// Reference: src/vue/pages/post-settings/views/General.vue:261
|
4100 |
-
__( 'Snippet Preview', 'all-in-one-seo-pack' ),
|
4101 |
-
|
4102 |
-
// Reference: src/vue/pages/post-settings/views/General.vue:262
|
4103 |
-
__( 'Snippet Preview content here.', 'all-in-one-seo-pack' ),
|
4104 |
-
|
4105 |
-
// Reference: src/vue/pages/post-settings/views/General.vue:263
|
4106 |
-
__( 'Edit Snippet', 'all-in-one-seo-pack' ),
|
4107 |
-
|
4108 |
-
// Reference: src/vue/pages/post-settings/views/General.vue:264
|
4109 |
-
__( 'Click on tags below to insert variables into your title.', 'all-in-one-seo-pack' ),
|
4110 |
-
|
4111 |
-
// Reference: src/vue/pages/post-settings/views/General.vue:267
|
4112 |
-
__( 'Pillar Content', 'all-in-one-seo-pack' ),
|
4113 |
-
|
4114 |
-
// Reference: src/vue/pages/post-settings/views/General.vue:268
|
4115 |
-
__( 'Cornerstone content should be the most important and extensive articles on your site.', 'all-in-one-seo-pack' ),
|
4116 |
-
|
4117 |
-
// Reference: src/vue/pages/post-settings/views/General.vue:269
|
4118 |
-
__( 'Focus Keyphrase', 'all-in-one-seo-pack' ),
|
4119 |
-
|
4120 |
-
// Reference: src/vue/pages/post-settings/views/General.vue:270
|
4121 |
-
// Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:68
|
4122 |
-
__( 'Additional Keyphrases', 'all-in-one-seo-pack' ),
|
4123 |
-
|
4124 |
-
// Reference: src/vue/pages/post-settings/views/General.vue:271
|
4125 |
-
__( 'Page Analysis', 'all-in-one-seo-pack' ),
|
4126 |
-
|
4127 |
-
// Reference: src/vue/pages/post-settings/views/General.vue:274
|
4128 |
-
__( 'Readability', 'all-in-one-seo-pack' ),
|
4129 |
|
4130 |
-
// Reference: src/vue/
|
4131 |
-
__( '
|
4132 |
|
4133 |
-
// Reference: src/vue/
|
4134 |
-
|
4135 |
-
__( '%s Title', 'all-in-one-seo-pack' ),
|
4136 |
|
4137 |
// Reference: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:26
|
4138 |
__( 'Focus Keyphrase used in the URL.', 'all-in-one-seo-pack' ),
|
@@ -4201,18 +4287,10 @@ $generated_i18n_strings = array(
|
|
4201 |
// Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:73
|
4202 |
__( 'The content is below the minimum of words. Add more content.', 'all-in-one-seo-pack' ),
|
4203 |
|
4204 |
-
// Reference: src/vue/
|
4205 |
-
__( '
|
4206 |
-
|
4207 |
-
// Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:71
|
4208 |
-
/* Translators: 1 - "Pro" string, 2 - "Learn more link". */
|
4209 |
-
__( 'Upgrade to %1$s to add related keyphrases. %2$s', 'all-in-one-seo-pack' ),
|
4210 |
-
|
4211 |
-
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:60
|
4212 |
-
__( 'Add Focus Keyphrase', 'all-in-one-seo-pack' ),
|
4213 |
|
4214 |
-
// Reference: src/vue/
|
4215 |
-
|
4216 |
-
__( 'Not sure what keyphrases are used for? Check out our documentation for more information. %1$s', 'all-in-one-seo-pack' )
|
4217 |
);
|
4218 |
/* THIS IS THE END OF THE GENERATED FILE */
|
1 |
<?php
|
2 |
/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
|
3 |
$generated_i18n_strings = array(
|
4 |
+
// Reference: src/vue/pages/local-seo/router/paths.js:19
|
5 |
+
__( 'Locations', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:292
|
8 |
+
__( 'Opening Hours', 'all-in-one-seo-pack' ),
|
9 |
|
10 |
// Reference: src/vue/router/index.js:51
|
11 |
__( 'Are you sure you want to leave? you have unsaved changes!', 'all-in-one-seo-pack' ),
|
13 |
// Reference: src/vue/pages/feature-manager/views/Main.vue:20
|
14 |
__( 'Feature Manager', 'all-in-one-seo-pack' ),
|
15 |
|
16 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:18
|
17 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
18 |
+
__( 'Connect with %1$s', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
+
// Reference: src/vue/plugins/constants.js:1077
|
21 |
+
__( 'Analytics', 'all-in-one-seo-pack' ),
|
22 |
|
23 |
+
// Reference: src/vue/pages/post-settings/registerScoreToggler.js:21
|
24 |
+
__( 'N/A', 'all-in-one-seo-pack' ),
|
25 |
|
26 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:210
|
27 |
+
__( 'Dashboard', 'all-in-one-seo-pack' ),
|
28 |
|
29 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:236
|
30 |
__( 'Robots.txt Editor', 'all-in-one-seo-pack' ),
|
31 |
|
32 |
+
// Reference: src/vue/pages/tools/views/HtaccessEditor.vue:40
|
33 |
__( '.htaccess Editor', 'all-in-one-seo-pack' ),
|
34 |
|
35 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:202
|
36 |
__( 'Bad Bot Blocker', 'all-in-one-seo-pack' ),
|
37 |
|
38 |
// Reference: src/vue/pages/tools/router/paths.js:46
|
44 |
// Reference: src/vue/pages/tools/router/paths.js:64
|
45 |
__( 'System Status', 'all-in-one-seo-pack' ),
|
46 |
|
47 |
+
// Reference: src/vue/pages/about/router/paths.js:19
|
48 |
+
__( 'About Us', 'all-in-one-seo-pack' ),
|
49 |
+
|
50 |
+
// Reference: src/vue/pages/about/router/paths.js:28
|
51 |
+
__( 'Getting Started', 'all-in-one-seo-pack' ),
|
52 |
+
|
53 |
+
// Reference: src/vue/pages/about/router/paths.js:37
|
54 |
+
__( 'Lite vs. Pro', 'all-in-one-seo-pack' ),
|
55 |
+
|
56 |
+
// Reference: src/vue/pages/settings/views/Main.vue:29
|
57 |
+
__( 'General Settings', 'all-in-one-seo-pack' ),
|
58 |
+
|
59 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:192
|
60 |
+
__( 'Webmaster Tools', 'all-in-one-seo-pack' ),
|
61 |
+
|
62 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:193
|
63 |
+
__( 'RSS Content', 'all-in-one-seo-pack' ),
|
64 |
+
|
65 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:210
|
66 |
+
__( 'Access Control', 'all-in-one-seo-pack' ),
|
67 |
+
|
68 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:194
|
69 |
+
__( 'Advanced', 'all-in-one-seo-pack' ),
|
70 |
+
|
71 |
+
// Reference: src/vue/pages/social-networks/views/SocialProfiles.vue:25
|
72 |
+
/* Translators: This refers to social media profiles. */
|
73 |
__( 'Social Profiles', 'all-in-one-seo-pack' ),
|
74 |
|
75 |
// Reference: src/vue/pages/post-settings/views/Social.vue:65
|
|
|
76 |
__( 'Facebook', 'all-in-one-seo-pack' ),
|
77 |
|
78 |
// Reference: src/vue/pages/post-settings/views/Social.vue:69
|
|
|
79 |
__( 'Twitter', 'all-in-one-seo-pack' ),
|
80 |
|
81 |
// Reference: src/vue/pages/social-networks/views/Pinterest.vue:45
|
88 |
__( 'Content Types', 'all-in-one-seo-pack' ),
|
89 |
|
90 |
// Reference: src/vue/components/common/core/PriorityScore.vue:63
|
91 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:137
|
92 |
+
// Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:405
|
93 |
__( 'Taxonomies', 'all-in-one-seo-pack' ),
|
94 |
|
95 |
// Reference: src/vue/pages/search-appearance/router/paths.js:46
|
98 |
// Reference: src/vue/pages/search-appearance/router/paths.js:55
|
99 |
__( 'Archives', 'all-in-one-seo-pack' ),
|
100 |
|
101 |
+
// Reference: src/vue/pages/sitemaps/router/paths.js:19
|
102 |
+
__( 'General Sitemap', 'all-in-one-seo-pack' ),
|
103 |
|
104 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:9
|
105 |
+
// Reference: src/vue/plugins/constants.js:1115
|
106 |
+
__( 'Video Sitemap', 'all-in-one-seo-pack' ),
|
107 |
|
108 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:7
|
109 |
+
// Reference: src/vue/plugins/constants.js:1126
|
110 |
+
__( 'News Sitemap', 'all-in-one-seo-pack' ),
|
111 |
|
112 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:124
|
113 |
+
__( 'RSS Sitemap', 'all-in-one-seo-pack' ),
|
114 |
|
115 |
+
// Reference: src/vue/pages/setup-wizard/router/paths.js:19
|
116 |
+
__( 'Welcome', 'all-in-one-seo-pack' ),
|
117 |
|
118 |
+
// Reference: src/vue/pages/setup-wizard/router/paths.js:28
|
119 |
+
__( 'Import', 'all-in-one-seo-pack' ),
|
120 |
|
121 |
+
// Reference: src/vue/pages/setup-wizard/router/paths.js:37
|
122 |
+
__( 'Category', 'all-in-one-seo-pack' ),
|
123 |
|
124 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:315
|
125 |
+
__( 'Additional Site Information', 'all-in-one-seo-pack' ),
|
126 |
|
127 |
+
// Reference: src/vue/pages/setup-wizard/router/paths.js:55
|
128 |
+
__( 'Choose Features', 'all-in-one-seo-pack' ),
|
|
|
129 |
|
130 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:249
|
131 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:195
|
132 |
+
__( 'Search Appearance', 'all-in-one-seo-pack' ),
|
133 |
|
134 |
+
// Reference: src/vue/pages/setup-wizard/router/paths.js:73
|
135 |
+
__( 'Smart Recommendations', 'all-in-one-seo-pack' ),
|
136 |
|
137 |
+
// Reference: src/vue/pages/setup-wizard/router/paths.js:82
|
138 |
+
__( 'License Key', 'all-in-one-seo-pack' ),
|
139 |
|
140 |
+
// Reference: src/vue/pages/setup-wizard/router/paths.js:91
|
141 |
+
__( 'Success', 'all-in-one-seo-pack' ),
|
142 |
|
143 |
+
// Reference: src/vue/pages/seo-analysis/router/paths.js:19
|
144 |
+
__( 'SEO Audit Checklist', 'all-in-one-seo-pack' ),
|
145 |
|
146 |
+
// Reference: src/vue/pages/seo-analysis/router/paths.js:28
|
147 |
+
__( 'Analyze Competitor Site', 'all-in-one-seo-pack' ),
|
|
|
148 |
|
149 |
+
// Reference: src/vue/pages/local-seo/views/OpeningHours.vue:31
|
150 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:280
|
151 |
+
__( 'Opening Hours Settings', 'all-in-one-seo-pack' ),
|
152 |
|
153 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:281
|
154 |
+
__( 'Show Opening Hours', 'all-in-one-seo-pack' ),
|
|
|
155 |
|
156 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:282
|
157 |
+
__( 'Display Opening Hours', 'all-in-one-seo-pack' ),
|
158 |
|
159 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:283
|
160 |
+
__( 'Labels', 'all-in-one-seo-pack' ),
|
161 |
|
162 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:284
|
163 |
+
__( 'Closed label', 'all-in-one-seo-pack' ),
|
164 |
|
165 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:285
|
166 |
+
__( 'Text to display when \'Closed\' setting is checked', 'all-in-one-seo-pack' ),
|
167 |
|
168 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:286
|
169 |
+
__( 'Open 24h label', 'all-in-one-seo-pack' ),
|
170 |
|
171 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:287
|
172 |
+
__( 'Text to display when \'Open 24h\' setting is checked', 'all-in-one-seo-pack' ),
|
173 |
|
174 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:288
|
175 |
+
__( 'Open 24/7', 'all-in-one-seo-pack' ),
|
176 |
|
177 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:289
|
178 |
+
__( 'Use 24h format', 'all-in-one-seo-pack' ),
|
179 |
|
180 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:290
|
181 |
+
__( 'Timezone', 'all-in-one-seo-pack' ),
|
182 |
|
183 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:291
|
184 |
+
__( 'Select your timezone:', 'all-in-one-seo-pack' ),
|
185 |
|
186 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:293
|
187 |
+
__( 'Monday', 'all-in-one-seo-pack' ),
|
188 |
|
189 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:294
|
190 |
+
__( 'Tuesday', 'all-in-one-seo-pack' ),
|
191 |
|
192 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:295
|
193 |
+
__( 'Wednesday', 'all-in-one-seo-pack' ),
|
194 |
|
195 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:296
|
196 |
+
__( 'Thursday', 'all-in-one-seo-pack' ),
|
|
|
197 |
|
198 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:297
|
199 |
+
__( 'Friday', 'all-in-one-seo-pack' ),
|
200 |
|
201 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:298
|
202 |
+
__( 'Saturday', 'all-in-one-seo-pack' ),
|
|
|
203 |
|
204 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:299
|
205 |
+
__( 'Sunday', 'all-in-one-seo-pack' ),
|
206 |
|
207 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:300
|
208 |
+
__( 'Open 24h', 'all-in-one-seo-pack' ),
|
209 |
|
210 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:301
|
211 |
+
__( 'Closed', 'all-in-one-seo-pack' ),
|
212 |
|
213 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:100
|
214 |
+
__( 'Locations Settings', 'all-in-one-seo-pack' ),
|
215 |
|
216 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:106
|
217 |
+
__( 'Business Info', 'all-in-one-seo-pack' ),
|
218 |
|
219 |
+
// Reference: src/vue/components/lite/local-business/Name.vue:16
|
220 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:120
|
221 |
+
__( 'name', 'all-in-one-seo-pack' ),
|
222 |
|
223 |
+
// Reference: src/vue/components/lite/local-business/Name.vue:17
|
224 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:121
|
225 |
+
__( 'Your name or company name.', 'all-in-one-seo-pack' ),
|
226 |
|
227 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:108
|
228 |
+
__( 'Business Type', 'all-in-one-seo-pack' ),
|
229 |
|
230 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:109
|
231 |
+
__( 'URLs', 'all-in-one-seo-pack' ),
|
232 |
|
233 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:115
|
234 |
+
__( 'Business Image', 'all-in-one-seo-pack' ),
|
235 |
|
236 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:116
|
237 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:328
|
238 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:447
|
239 |
+
__( 'Upload or Select Image', 'all-in-one-seo-pack' ),
|
240 |
|
241 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:117
|
242 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:329
|
243 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:448
|
244 |
+
__( 'Paste your image URL or select a new image', 'all-in-one-seo-pack' ),
|
245 |
|
246 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:118
|
247 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:330
|
248 |
+
__( 'Minimum size: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or WEBP format.', 'all-in-one-seo-pack' ),
|
249 |
|
250 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:119
|
251 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:331
|
252 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:459
|
253 |
+
__( 'Remove', 'all-in-one-seo-pack' ),
|
254 |
|
255 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:129
|
256 |
+
__( 'Website URL:', 'all-in-one-seo-pack' ),
|
257 |
|
258 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:130
|
259 |
+
__( 'About Page URL:', 'all-in-one-seo-pack' ),
|
260 |
|
261 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:131
|
262 |
+
__( 'Contact Page URL:', 'all-in-one-seo-pack' ),
|
263 |
|
264 |
+
// Reference: src/vue/components/common/core/PriorityScore.vue:77
|
265 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:124
|
266 |
+
__( 'default', 'all-in-one-seo-pack' ),
|
267 |
|
268 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:125
|
269 |
+
__( 'Animal Shelter', 'all-in-one-seo-pack' ),
|
270 |
|
271 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:304
|
272 |
+
__( 'Select your timezone', 'all-in-one-seo-pack' ),
|
273 |
|
274 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:111
|
275 |
+
__( 'Business Contact Info', 'all-in-one-seo-pack' ),
|
276 |
|
277 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:113
|
278 |
+
__( 'Payment Info', 'all-in-one-seo-pack' ),
|
279 |
|
280 |
+
// Reference: src/vue/components/common/core/FeatureCard.vue:125
|
281 |
+
// Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:141
|
282 |
+
// Reference: src/vue/pages/sitemaps/views/pro/VideoSitemapActivate.vue:122
|
283 |
+
__( 'An error occurred while activating the addon. Please upload it manually or contact support for more information.', 'all-in-one-seo-pack' ),
|
284 |
|
285 |
+
// Reference: src/vue/pages/connect-pro/views/Main.vue:45
|
286 |
+
__( 'Connecting...', 'all-in-one-seo-pack' ),
|
287 |
|
288 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:201
|
289 |
+
__( 'Smart Schema', 'all-in-one-seo-pack' ),
|
290 |
|
291 |
+
// Reference: src/vue/pages/local-seo/views/Main.vue:21
|
292 |
+
// Reference: src/vue/plugins/constants.js:1104
|
293 |
+
__( 'Local SEO', 'all-in-one-seo-pack' ),
|
294 |
+
|
295 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:203
|
296 |
+
__( 'Advanced support for e-commerce', 'all-in-one-seo-pack' ),
|
297 |
+
|
298 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:204
|
299 |
+
__( 'Advanced Google Analytics tracking', 'all-in-one-seo-pack' ),
|
300 |
+
|
301 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:205
|
302 |
+
__( 'Video SEO Module', 'all-in-one-seo-pack' ),
|
303 |
+
|
304 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:206
|
305 |
+
__( 'Greater control over display settings', 'all-in-one-seo-pack' ),
|
306 |
+
|
307 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:152
|
308 |
+
__( 'SEO for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
|
309 |
+
|
310 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:208
|
311 |
+
__( 'Social meta for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
|
312 |
+
|
313 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:209
|
314 |
+
__( 'Ad free (no banner adverts)', 'all-in-one-seo-pack' ),
|
315 |
+
|
316 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:211
|
317 |
+
__( 'There are no new notifications at this moment.', 'all-in-one-seo-pack' ),
|
318 |
+
|
319 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:212
|
320 |
+
__( 'See all dismissed notifications.', 'all-in-one-seo-pack' ),
|
321 |
+
|
322 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:213
|
323 |
+
__( 'SEO Site Score', 'all-in-one-seo-pack' ),
|
324 |
+
|
325 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:214
|
326 |
+
__( 'Support', 'all-in-one-seo-pack' ),
|
327 |
+
|
328 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:216
|
329 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
330 |
+
__( 'Read the %1$s user guide', 'all-in-one-seo-pack' ),
|
331 |
+
|
332 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:217
|
333 |
+
__( 'Access our Premium Support', 'all-in-one-seo-pack' ),
|
334 |
+
|
335 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:218
|
336 |
+
__( 'View the Changelog', 'all-in-one-seo-pack' ),
|
337 |
+
|
338 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:219
|
339 |
+
__( 'Watch video tutorials', 'all-in-one-seo-pack' ),
|
340 |
+
|
341 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:220
|
342 |
+
__( 'Getting started? Read the Beginners Guide', 'all-in-one-seo-pack' ),
|
343 |
+
|
344 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:221
|
345 |
+
__( 'Quicklinks', 'all-in-one-seo-pack' ),
|
346 |
+
|
347 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:222
|
348 |
+
__( 'You can use these quicklinks to quickly access our settings pages to adjust your site\'s SEO settings.', 'all-in-one-seo-pack' ),
|
349 |
+
|
350 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:224
|
351 |
+
__( 'Configure how your website content will look in Google, Bing and other search engines.', 'all-in-one-seo-pack' ),
|
352 |
+
|
353 |
+
// Reference: src/vue/pages/seo-analysis/views/Main.vue:21
|
354 |
+
__( 'SEO Analysis', 'all-in-one-seo-pack' ),
|
355 |
+
|
356 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:226
|
357 |
+
__( 'Check how your site scores with our SEO analyzer and compare against your competitor\'s site.', 'all-in-one-seo-pack' ),
|
358 |
+
|
359 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:227
|
360 |
+
__( 'Improve local SEO rankings with schema for business address, open hours, contact, and more.', 'all-in-one-seo-pack' ),
|
361 |
+
|
362 |
+
// Reference: src/vue/pages/social-networks/views/Main.vue:24
|
363 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:196
|
364 |
+
__( 'Social Networks', 'all-in-one-seo-pack' ),
|
365 |
+
|
366 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:229
|
367 |
+
__( 'Setup Open Graph for Facebook, Twitter, etc. to show the right content / thumbnail preview.', 'all-in-one-seo-pack' ),
|
368 |
+
|
369 |
+
// Reference: src/vue/pages/tools/views/Main.vue:29
|
370 |
+
__( 'Tools', 'all-in-one-seo-pack' ),
|
371 |
+
|
372 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:231
|
373 |
+
__( 'Fine-tune your site with our powerful tools including Robots.txt editor, import/export and more.', 'all-in-one-seo-pack' ),
|
374 |
+
|
375 |
+
// Reference: src/vue/pages/sitemaps/views/Main.vue:26
|
376 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:197
|
377 |
+
// Reference: src/vue/plugins/constants.js:1058
|
378 |
+
__( 'Sitemaps', 'all-in-one-seo-pack' ),
|
379 |
+
|
380 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:233
|
381 |
+
__( 'Manage all of your sitemap settings, including XML, Video, News and more.', 'all-in-one-seo-pack' ),
|
382 |
+
|
383 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:235
|
384 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro". */
|
385 |
+
__( 'Get more features in %1$s %2$s:', 'all-in-one-seo-pack' ),
|
386 |
+
|
387 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:237
|
388 |
+
/* Translators: 1 - "Pro", 2 - A percentage ("50%"). */
|
389 |
+
__( 'Upgrade to %1$s and Save %2$s', 'all-in-one-seo-pack' ),
|
390 |
+
|
391 |
+
// Reference: src/vue/components/common/core/Notifications.vue:95
|
392 |
+
__( 'Dismiss All', 'all-in-one-seo-pack' ),
|
393 |
+
|
394 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:239
|
395 |
+
__( 'Relaunch Setup Wizard', 'all-in-one-seo-pack' ),
|
396 |
+
|
397 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:247
|
398 |
+
__( 'You have %1$s more notifications', 'all-in-one-seo-pack' ),
|
399 |
+
|
400 |
+
// Reference: src/vue/components/common/Cta.vue:236
|
401 |
+
/* Translators: 1 - "Pro". */
|
402 |
+
__( 'Upgrade to %1$s', 'all-in-one-seo-pack' ),
|
403 |
+
|
404 |
+
// Reference: src/vue/components/common/Cta.vue:238
|
405 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
406 |
+
__( 'This feature is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
407 |
+
|
408 |
+
// Reference: src/vue/components/common/Cta.vue:239
|
409 |
+
__( '%1$s %2$s comes with many additional features to help take your site\'s SEO to the next level!', 'all-in-one-seo-pack' ),
|
410 |
+
|
411 |
+
// Reference: src/vue/components/common/Cta.vue:240
|
412 |
+
__( 'Learn more about all features', 'all-in-one-seo-pack' ),
|
413 |
+
|
414 |
+
// Reference: src/vue/components/common/Cta.vue:241
|
415 |
+
__( 'See all features', 'all-in-one-seo-pack' ),
|
416 |
|
417 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:678
|
418 |
__( 'General Facebook Settings', 'all-in-one-seo-pack' ),
|
423 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:680
|
424 |
__( 'Enable Open Graph Markup', 'all-in-one-seo-pack' ),
|
425 |
|
426 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:439
|
427 |
__( 'Default Post Image Source', 'all-in-one-seo-pack' ),
|
428 |
|
429 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:440
|
430 |
__( 'Default Term Image Source', 'all-in-one-seo-pack' ),
|
431 |
|
432 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:441
|
433 |
__( 'Width', 'all-in-one-seo-pack' ),
|
434 |
|
435 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:442
|
436 |
__( 'Height', 'all-in-one-seo-pack' ),
|
437 |
|
438 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:443
|
439 |
__( 'Post Custom Field Name', 'all-in-one-seo-pack' ),
|
440 |
|
441 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:444
|
442 |
__( 'Term Custom Field Name', 'all-in-one-seo-pack' ),
|
443 |
|
444 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:687
|
450 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:691
|
451 |
__( 'Minimum size: 200px x 200px, ideal ratio 1.91:1, 8MB max. (eg: 1640px x 856px or 3280px x 1712px for retina screens)', 'all-in-one-seo-pack' ),
|
452 |
|
453 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:451
|
454 |
__( 'Home Page Settings', 'all-in-one-seo-pack' ),
|
455 |
|
456 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:693
|
466 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:697
|
467 |
__( 'Site Name', 'all-in-one-seo-pack' ),
|
468 |
|
469 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:40
|
|
|
470 |
__( 'Title', 'all-in-one-seo-pack' ),
|
471 |
|
472 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:454
|
473 |
__( 'Use the home page title', 'all-in-one-seo-pack' ),
|
474 |
|
475 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:700
|
476 |
__( 'Click on the tags below to insert variables into your site name.', 'all-in-one-seo-pack' ),
|
477 |
|
478 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:455
|
479 |
__( 'Click on the tags below to insert variables into your home page title.', 'all-in-one-seo-pack' ),
|
480 |
|
481 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:456
|
482 |
__( 'Description', 'all-in-one-seo-pack' ),
|
483 |
|
484 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:457
|
485 |
__( 'Use the home page description', 'all-in-one-seo-pack' ),
|
486 |
|
487 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:458
|
488 |
__( 'Click on the tags below to insert variables into your description.', 'all-in-one-seo-pack' ),
|
489 |
|
490 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:376
|
|
|
491 |
__( 'Advanced Settings', 'all-in-one-seo-pack' ),
|
492 |
|
493 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:707
|
529 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:719
|
530 |
__( 'Default Taxonomy Object Types are only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
531 |
|
532 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:466
|
533 |
__( 'Default Term Image Source is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
534 |
|
535 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:721
|
544 |
// Reference: src/vue/pages/social-networks/views/Facebook.vue:724
|
545 |
__( 'Use Post Tags in Article Tags', 'all-in-one-seo-pack' ),
|
546 |
|
547 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:462
|
548 |
/* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
|
549 |
__( 'The home page settings below have been disabled because you are using a static home page. You can %1$sedit your home page settings%2$s directly to change the title, meta and image.', 'all-in-one-seo-pack' ),
|
550 |
|
551 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:244
|
552 |
__( 'Object Type', 'all-in-one-seo-pack' ),
|
553 |
|
554 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:148
|
555 |
+
__( 'Video and News Sitemaps', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
556 |
|
557 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:149
|
558 |
+
__( 'Image SEO Optimization', 'all-in-one-seo-pack' ),
|
559 |
|
560 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:150
|
561 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:218
|
562 |
+
__( 'Local Business SEO', 'all-in-one-seo-pack' ),
|
563 |
|
564 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:151
|
565 |
+
__( 'Advanced WooCommerce', 'all-in-one-seo-pack' ),
|
|
|
566 |
|
567 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:153
|
568 |
+
__( 'And many more...', 'all-in-one-seo-pack' ),
|
|
|
569 |
|
570 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:147
|
571 |
+
__( 'Activate All Features', 'all-in-one-seo-pack' ),
|
|
|
|
|
572 |
|
573 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:148
|
574 |
+
__( 'Deactivate All Features', 'all-in-one-seo-pack' ),
|
575 |
|
576 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:149
|
577 |
+
__( 'Search for Features...', 'all-in-one-seo-pack' ),
|
578 |
|
579 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:151
|
580 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
581 |
+
__( 'Upgrade %1$s to Pro and Unlock all Features!', 'all-in-one-seo-pack' ),
|
582 |
|
583 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:152
|
584 |
+
__( 'Upgrade to Pro and Unlock All Features', 'all-in-one-seo-pack' ),
|
|
|
585 |
|
586 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:153
|
587 |
+
__( 'A valid license key is required in order to use our addons.', 'all-in-one-seo-pack' ),
|
588 |
|
589 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:154
|
590 |
+
__( 'Enter License Key', 'all-in-one-seo-pack' ),
|
591 |
|
592 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:155
|
593 |
+
__( 'Purchase License', 'all-in-one-seo-pack' ),
|
594 |
|
595 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:159
|
596 |
+
__( 'Globally control the Title attribute and Alt text for images in your content. These attributes are essential for both accessibility and SEO.', 'all-in-one-seo-pack' ),
|
597 |
|
598 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:10
|
599 |
+
__( 'The Video Sitemap works in much the same way as the XML Sitemap module, it generates an XML Sitemap specifically for video content on your site. Search engines use this information to display rich snippet information in search results.', 'all-in-one-seo-pack' ),
|
600 |
|
601 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:10
|
602 |
+
__( 'Our Google News Sitemap lets you control which content you submit to Google News and only contains articles that were published in the last 48 hours. In order to submit a News Sitemap to Google, you must have added your site to Google’s Publisher Center and had it approved.', 'all-in-one-seo-pack' ),
|
603 |
|
604 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:102
|
605 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:279
|
606 |
+
__( 'Local Business schema markup enables you to tell Google about your business, including your business name, address and phone number, opening hours and price range. This information may be displayed as a Knowledge Graph card or business carousel.', 'all-in-one-seo-pack' ),
|
607 |
|
608 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:417
|
609 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
610 |
+
__( 'An XML Sitemap is a list of all your content that search engines use when they crawl your site. This is an essential part of SEO because it contains some important pieces of information that search engines need when crawling your site. The XML Sitemap created by %1$s tells search engines where to find all of the content on your site.', 'all-in-one-seo-pack' ),
|
611 |
|
612 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:261
|
613 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:11
|
614 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:11
|
615 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:126
|
616 |
+
__( 'Enable Sitemap', 'all-in-one-seo-pack' ),
|
617 |
|
618 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:127
|
619 |
+
__( 'Sitemap Settings', 'all-in-one-seo-pack' ),
|
620 |
|
621 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:128
|
622 |
+
// Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:400
|
623 |
+
__( 'Enable Sitemap Indexes', 'all-in-one-seo-pack' ),
|
624 |
|
625 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:129
|
626 |
+
// Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:401
|
627 |
+
__( 'Organize sitemap entries into distinct files in your sitemap. We recommend you enable this setting if your sitemap contains more than 1,000 URLs.', 'all-in-one-seo-pack' ),
|
628 |
|
629 |
+
// Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:402
|
630 |
+
__( 'Links Per Sitemap', 'all-in-one-seo-pack' ),
|
631 |
|
632 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:13
|
633 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:13
|
634 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:131
|
635 |
+
__( 'Noindexed content will not be displayed in your sitemap.', 'all-in-one-seo-pack' ),
|
636 |
|
637 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:14
|
638 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:14
|
639 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:132
|
640 |
+
__( 'Do you get a blank sitemap or 404 error?', 'all-in-one-seo-pack' ),
|
641 |
|
642 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:425
|
643 |
+
__( 'Open Sitemap', 'all-in-one-seo-pack' ),
|
644 |
|
645 |
+
// Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:403
|
646 |
+
__( 'Allows you to specify the maximum number of posts in a sitemap (up to 50,000).', 'all-in-one-seo-pack' ),
|
647 |
|
648 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:135
|
649 |
+
__( 'Automatically Ping Search Engines', 'all-in-one-seo-pack' ),
|
650 |
|
651 |
+
// Reference: src/vue/components/common/core/PriorityScore.vue:62
|
652 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:136
|
653 |
+
__( 'Post Types', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
654 |
|
655 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:138
|
656 |
+
__( 'Date Archive Sitemap', 'all-in-one-seo-pack' ),
|
657 |
|
658 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:139
|
659 |
+
__( 'Include Date Archives in your sitemap.', 'all-in-one-seo-pack' ),
|
660 |
|
661 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:140
|
662 |
+
__( 'Author Sitemap', 'all-in-one-seo-pack' ),
|
663 |
|
664 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:141
|
665 |
+
__( 'Include Author Archives in your sitemap.', 'all-in-one-seo-pack' ),
|
666 |
|
667 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:260
|
668 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:142
|
669 |
+
__( 'Include All Post Types', 'all-in-one-seo-pack' ),
|
670 |
|
671 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:143
|
672 |
+
__( 'Select which Post Types appear in your sitemap.', 'all-in-one-seo-pack' ),
|
673 |
|
674 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:144
|
675 |
+
// Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:408
|
676 |
+
__( 'Include All Taxonomies', 'all-in-one-seo-pack' ),
|
677 |
|
678 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:145
|
679 |
+
__( 'Select which Taxonomies appear in your sitemap.', 'all-in-one-seo-pack' ),
|
680 |
|
681 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:438
|
682 |
+
__( 'Additional Pages', 'all-in-one-seo-pack' ),
|
683 |
|
684 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:439
|
685 |
+
__( 'You can use this section to add any URLs to your sitemap which aren’t a part of your WordPress installation. For example, if you have a contact form that you would like to be included on your sitemap you can enter the information manually.', 'all-in-one-seo-pack' ),
|
686 |
|
687 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:401
|
688 |
+
__( 'Exclude Posts / Pages', 'all-in-one-seo-pack' ),
|
689 |
|
690 |
+
// Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:414
|
691 |
+
__( 'Exclude Terms', 'all-in-one-seo-pack' ),
|
692 |
|
693 |
+
// Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:415
|
694 |
+
__( 'Any posts that are assigned to these terms will also be excluded from your sitemap.', 'all-in-one-seo-pack' ),
|
695 |
|
696 |
+
// Reference: src/vue/pages/post-settings/views/Advanced.vue:118
|
697 |
+
__( 'Priority Score', 'all-in-one-seo-pack' ),
|
698 |
|
699 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:445
|
700 |
+
__( 'Grouped', 'all-in-one-seo-pack' ),
|
701 |
|
702 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:446
|
703 |
+
__( 'Post Type Priority Score', 'all-in-one-seo-pack' ),
|
704 |
|
705 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:447
|
706 |
+
__( 'Taxonomy Priority Score', 'all-in-one-seo-pack' ),
|
707 |
|
708 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:448
|
709 |
+
__( 'Exclude Images', 'all-in-one-seo-pack' ),
|
710 |
|
711 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:449
|
712 |
+
__( 'Exclude Images from your sitemap.', 'all-in-one-seo-pack' ),
|
713 |
|
714 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:450
|
715 |
+
__( 'Dynamically Generate', 'all-in-one-seo-pack' ),
|
716 |
|
717 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:451
|
718 |
+
__( 'Dynamically creates the XML Sitemap instead of using a static file.', 'all-in-one-seo-pack' ),
|
719 |
|
720 |
+
// Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:436
|
721 |
+
__( 'We recommend setting the amount of URLs per sitemap index to 1,000 or less. The more links, the longer it will take for the sitemap to load.', 'all-in-one-seo-pack' ),
|
722 |
|
723 |
+
// Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:437
|
724 |
+
__( 'Your static sitemap is currently being regenerated. This may take some time based on the size of your site. This may also cause the sitemap content to look outdated.', 'all-in-one-seo-pack' ),
|
725 |
|
726 |
+
// Reference: src/vue/pages/search-appearance/views/Media.vue:106
|
727 |
+
__( 'Redirect Attachment URLs', 'all-in-one-seo-pack' ),
|
728 |
|
729 |
+
// Reference: src/vue/pages/search-appearance/views/Media.vue:107
|
730 |
+
__( 'Attachment', 'all-in-one-seo-pack' ),
|
731 |
|
732 |
+
// Reference: src/vue/pages/search-appearance/views/Media.vue:108
|
733 |
+
__( 'Attachment Parent', 'all-in-one-seo-pack' ),
|
734 |
|
735 |
+
// Reference: src/vue/pages/search-appearance/views/Media.vue:109
|
736 |
+
__( 'We recommended redirecting attachment URL\'s back to the attachment since the default WordPress attachment pages have little SEO value.', 'all-in-one-seo-pack' ),
|
737 |
|
738 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:214
|
739 |
+
// Reference: src/vue/plugins/constants.js:1093
|
740 |
+
__( 'Image SEO', 'all-in-one-seo-pack' ),
|
741 |
|
742 |
+
// Reference: src/vue/pages/search-appearance/views/Media.vue:115
|
743 |
+
__( 'Title & Description', 'all-in-one-seo-pack' ),
|
744 |
|
745 |
+
// Reference: src/vue/pages/search-appearance/views/Media.vue:121
|
746 |
+
__( 'Schema Markup', 'all-in-one-seo-pack' ),
|
747 |
|
748 |
+
// Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:90
|
749 |
+
__( 'Upgrade to Pro and Unlock Custom Taxonomies', 'all-in-one-seo-pack' ),
|
|
|
750 |
|
751 |
+
// Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:92
|
752 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro". */
|
753 |
+
__( '%1$s %2$s lets you set the SEO title and description for custom taxonomies. You can also control all of the robots meta and other options just like the default category and tags taxonomies.', 'all-in-one-seo-pack' ),
|
754 |
|
755 |
+
// Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:93
|
756 |
+
__( 'Custom Taxonomy Support is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
757 |
|
758 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:114
|
759 |
+
__( 'Title Attribute Format', 'all-in-one-seo-pack' ),
|
|
|
760 |
|
761 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:115
|
762 |
+
__( 'Strip Punctuation for Title Attributes', 'all-in-one-seo-pack' ),
|
763 |
|
764 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:116
|
765 |
+
__( 'Click on the tags below to insert variables into your title attribute.', 'all-in-one-seo-pack' ),
|
766 |
|
767 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:117
|
768 |
+
__( 'Alt Tag Attribute Format', 'all-in-one-seo-pack' ),
|
769 |
|
770 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:118
|
771 |
+
__( 'Click on the tags below to insert variables into your alt tag attribute.', 'all-in-one-seo-pack' ),
|
772 |
|
773 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:119
|
774 |
+
__( 'Strip Punctuation for Alt Attributes', 'all-in-one-seo-pack' ),
|
775 |
|
776 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:17
|
777 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:17
|
778 |
+
__( 'This feature requires one of the following plans:', 'all-in-one-seo-pack' ),
|
779 |
|
780 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:122
|
781 |
+
__( 'Upgrade to Pro and Unlock Image SEO', 'all-in-one-seo-pack' ),
|
782 |
|
783 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:123
|
784 |
+
__( 'Image SEO is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
785 |
|
786 |
+
// Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:132
|
787 |
+
__( 'Set title attributes', 'all-in-one-seo-pack' ),
|
788 |
|
789 |
+
// Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:133
|
790 |
+
__( 'Set alt tag attributes', 'all-in-one-seo-pack' ),
|
|
|
791 |
|
792 |
+
// Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:134
|
793 |
+
__( 'Strip punctuation for titles', 'all-in-one-seo-pack' ),
|
|
|
794 |
|
795 |
+
// Reference: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:135
|
796 |
+
__( 'Strip punctuation for alt tags', 'all-in-one-seo-pack' ),
|
|
|
797 |
|
798 |
// Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:109
|
799 |
__( 'Export Settings', 'all-in-one-seo-pack' ),
|
804 |
// Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:111
|
805 |
__( 'Export All Post Types', 'all-in-one-seo-pack' ),
|
806 |
|
807 |
+
// Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:144
|
808 |
+
__( 'Show in Search Results', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
809 |
|
810 |
+
// Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:145
|
811 |
+
__( 'Click on the tags below to insert variables into your title.', 'all-in-one-seo-pack' ),
|
812 |
|
813 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:150
|
814 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:256
|
815 |
+
__( 'Meta Description', 'all-in-one-seo-pack' ),
|
816 |
|
817 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:254
|
818 |
+
__( 'Click on the tags below to insert variables into your meta description.', 'all-in-one-seo-pack' ),
|
819 |
|
820 |
+
// Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:148
|
821 |
+
__( 'Selecting "No" will no-index this page.', 'all-in-one-seo-pack' ),
|
|
|
822 |
|
823 |
+
// Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:163
|
824 |
+
/* Translators: 1 - The type of page (Post, Page, Category, Tag, etc.). */
|
825 |
+
__( '%1$s Title', 'all-in-one-seo-pack' ),
|
826 |
|
827 |
+
// Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:70
|
828 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:51
|
829 |
+
__( 'Custom Fields', 'all-in-one-seo-pack' ),
|
830 |
|
831 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:52
|
832 |
+
__( 'List of custom field names to include in the SEO Page Analysis. Add one per line.', 'all-in-one-seo-pack' ),
|
|
|
833 |
|
834 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:54
|
835 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
836 |
+
__( '%1$s %2$s gives you advanced customizations for our page analysis feature, letting you add custom fields to analyze.', 'all-in-one-seo-pack' ),
|
837 |
|
838 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:55
|
839 |
+
__( 'Upgrade to Pro and Unlock Custom Fields', 'all-in-one-seo-pack' ),
|
|
|
840 |
|
841 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:56
|
842 |
+
__( 'Custom Fields are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
|
|
843 |
|
844 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:106
|
845 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:168
|
846 |
+
__( 'None', 'all-in-one-seo-pack' ),
|
847 |
|
848 |
+
// Reference: src/vue/pages/post-settings/views/lite/Schema.vue:55
|
849 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:70
|
850 |
+
__( 'Schema Type', 'all-in-one-seo-pack' ),
|
851 |
|
852 |
+
// Reference: src/vue/pages/post-settings/views/lite/Schema.vue:56
|
853 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:71
|
854 |
+
__( 'Article Type', 'all-in-one-seo-pack' ),
|
855 |
|
856 |
+
// Reference: src/vue/plugins/constants.js:1239
|
857 |
+
__( 'Article', 'all-in-one-seo-pack' ),
|
858 |
|
859 |
+
// Reference: src/vue/pages/post-settings/views/lite/Schema.vue:58
|
860 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:73
|
861 |
+
__( 'Blog Post', 'all-in-one-seo-pack' ),
|
862 |
|
863 |
+
// Reference: src/vue/pages/post-settings/views/lite/Schema.vue:59
|
864 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:74
|
865 |
+
__( 'News Article', 'all-in-one-seo-pack' ),
|
866 |
|
867 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:76
|
868 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
869 |
+
__( '%1$s %2$s gives you advanced customizations for the structured data markup on Posts, Pages, Categories, Tags, etc.', 'all-in-one-seo-pack' ),
|
870 |
|
871 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:77
|
872 |
+
__( 'Upgrade to Pro and Unlock Schema Markup', 'all-in-one-seo-pack' ),
|
873 |
|
874 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:78
|
875 |
+
__( 'Schema Markup is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
|
|
876 |
|
877 |
+
// Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:107
|
878 |
+
__( 'Web Page Type', 'all-in-one-seo-pack' ),
|
|
|
879 |
|
880 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:107
|
881 |
+
__( 'Robots Meta Settings', 'all-in-one-seo-pack' ),
|
882 |
|
883 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:108
|
884 |
+
__( 'Bulk Editing', 'all-in-one-seo-pack' ),
|
885 |
|
886 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:109
|
887 |
+
__( 'Read Only', 'all-in-one-seo-pack' ),
|
888 |
|
889 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:110
|
890 |
+
__( 'Other Options', 'all-in-one-seo-pack' ),
|
891 |
|
892 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:111
|
893 |
+
__( 'Show Date in Google Preview', 'all-in-one-seo-pack' ),
|
894 |
|
895 |
+
// Reference: src/vue/pages/post-settings/views/Advanced.vue:123
|
896 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:442
|
897 |
+
__( 'Keywords', 'all-in-one-seo-pack' ),
|
898 |
|
899 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:129
|
900 |
+
/* Translators: 1 - The type of page (Post, Page, Category, Tag, etc.). */
|
901 |
+
__( 'Show %1$s Thumbnail in Google Custom Search', 'all-in-one-seo-pack' ),
|
902 |
|
903 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:133
|
904 |
+
/* Translators: 1 - The plugin name ("All in One SEO") */
|
905 |
+
__( 'Show %1$s Meta Box', 'all-in-one-seo-pack' ),
|
906 |
|
907 |
+
// Reference: src/vue/components/common/core/AdditionalPages.vue:101
|
908 |
+
// Reference: src/vue/components/common/core/Keyphrase.vue:44
|
909 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:254
|
910 |
+
__( 'Delete', 'all-in-one-seo-pack' ),
|
911 |
|
912 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:101
|
913 |
+
__( 'Success! The backup was deleted.', 'all-in-one-seo-pack' ),
|
914 |
|
915 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:102
|
916 |
+
__( 'Success! The backup was restored.', 'all-in-one-seo-pack' ),
|
917 |
|
918 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:146
|
919 |
+
__( '%1$s at %2$s', 'all-in-one-seo-pack' ),
|
920 |
|
921 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:96
|
922 |
+
__( 'Backup Settings', 'all-in-one-seo-pack' ),
|
923 |
|
924 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:97
|
925 |
+
__( 'You have no saved backups.', 'all-in-one-seo-pack' ),
|
926 |
|
927 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:98
|
928 |
+
__( 'Create Backup', 'all-in-one-seo-pack' ),
|
929 |
|
930 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:99
|
931 |
+
__( 'Restore', 'all-in-one-seo-pack' ),
|
932 |
|
933 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:412
|
934 |
+
__( 'Title Separator', 'all-in-one-seo-pack' ),
|
935 |
|
936 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:413
|
937 |
+
__( 'Separator Character', 'all-in-one-seo-pack' ),
|
938 |
|
939 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:415
|
940 |
+
/* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
|
941 |
+
__( 'The home page settings below have been disabled because you are using a static home page. You can %1$sedit your home page settings%2$s directly to change the title and description.', 'all-in-one-seo-pack' ),
|
942 |
|
943 |
+
// Reference: src/vue/components/common/core/PriorityScore.vue:66
|
944 |
+
__( 'Home Page', 'all-in-one-seo-pack' ),
|
945 |
|
946 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:417
|
947 |
+
__( 'Site Title', 'all-in-one-seo-pack' ),
|
948 |
|
949 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:253
|
950 |
+
__( 'Click on the tags below to insert variables into your site title.', 'all-in-one-seo-pack' ),
|
951 |
|
952 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:421
|
953 |
+
__( 'Knowledge Graph', 'all-in-one-seo-pack' ),
|
954 |
|
955 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:422
|
956 |
+
__( 'Google, Bing and other search engines use specific data from your schema markup to output data in their Knowledge Panels. This data is known as the Knowledge Graph. Use these settings to change how that data looks.', 'all-in-one-seo-pack' ),
|
957 |
|
958 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:316
|
959 |
+
__( 'Person or Organization', 'all-in-one-seo-pack' ),
|
960 |
|
961 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:318
|
962 |
+
__( 'Person', 'all-in-one-seo-pack' ),
|
963 |
|
964 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:319
|
965 |
+
__( 'Organization', 'all-in-one-seo-pack' ),
|
966 |
|
967 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:320
|
968 |
+
__( 'Choose whether the site represents a person or an organization.', 'all-in-one-seo-pack' ),
|
969 |
|
970 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:317
|
971 |
+
__( 'Choose a Person', 'all-in-one-seo-pack' ),
|
972 |
|
973 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:321
|
974 |
+
__( 'Name', 'all-in-one-seo-pack' ),
|
975 |
|
976 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:323
|
977 |
+
__( 'Phone Number', 'all-in-one-seo-pack' ),
|
978 |
|
979 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:324
|
980 |
+
__( 'Choose a Contact Type', 'all-in-one-seo-pack' ),
|
981 |
|
982 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:325
|
983 |
+
__( 'Contact Type', 'all-in-one-seo-pack' ),
|
984 |
|
985 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:326
|
986 |
+
__( 'Select which team or department the phone number belongs to.', 'all-in-one-seo-pack' ),
|
987 |
|
988 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:327
|
989 |
+
__( 'Logo', 'all-in-one-seo-pack' ),
|
990 |
|
991 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:439
|
992 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag., 3 - "Pro", 4 - "Pro". */
|
993 |
+
__( 'Go to %1$sLocal SEO Settings%2$s and set up your local business info like location address, opening hours (%3$s), and Google Maps settings (%4$s).', 'all-in-one-seo-pack' ),
|
994 |
|
995 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:440
|
996 |
+
__( 'Go to Local SEO Settings', 'all-in-one-seo-pack' ),
|
997 |
|
998 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:441
|
999 |
+
__( 'Enable Schema Markup', 'all-in-one-seo-pack' ),
|
1000 |
|
1001 |
+
// Reference: src/vue/pages/post-settings/views/Advanced.vue:124
|
1002 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:443
|
1003 |
+
__( 'Press enter to create a keyword', 'all-in-one-seo-pack' ),
|
1004 |
|
1005 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:342
|
1006 |
+
__( 'Manually Enter Person', 'all-in-one-seo-pack' ),
|
1007 |
|
1008 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:377
|
1009 |
+
__( 'Global Robots Meta', 'all-in-one-seo-pack' ),
|
1010 |
|
1011 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:378
|
1012 |
+
__( 'Noindex Empty Category and Tag Archives', 'all-in-one-seo-pack' ),
|
1013 |
|
1014 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:379
|
1015 |
+
__( 'Remove Stopwords from Permalinks', 'all-in-one-seo-pack' ),
|
1016 |
|
1017 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:380
|
1018 |
+
__( 'Remove Category Base Prefix', 'all-in-one-seo-pack' ),
|
|
|
1019 |
|
1020 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:383
|
1021 |
+
__( 'Automatically Add Missing Image Alt / Title Tags', 'all-in-one-seo-pack' ),
|
1022 |
|
1023 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:385
|
1024 |
+
/* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
|
1025 |
+
__( 'This feature is only for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
1026 |
|
1027 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:386
|
1028 |
+
__( 'Autogenerate Descriptions', 'all-in-one-seo-pack' ),
|
1029 |
|
1030 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:387
|
1031 |
+
__( 'Use Content for Autogenerated Descriptions', 'all-in-one-seo-pack' ),
|
1032 |
|
1033 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:388
|
1034 |
+
__( 'Run Shortcodes in Description', 'all-in-one-seo-pack' ),
|
1035 |
|
1036 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:389
|
1037 |
+
__( 'No Pagination for Canonical URLs', 'all-in-one-seo-pack' ),
|
1038 |
|
1039 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:390
|
1040 |
+
__( 'Use Meta Keywords', 'all-in-one-seo-pack' ),
|
1041 |
|
1042 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:391
|
1043 |
+
__( 'This option allows you to toggle the use of Meta Keywords throughout the whole of the site.', 'all-in-one-seo-pack' ),
|
1044 |
|
1045 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:392
|
1046 |
+
__( 'Use Categories for Meta Keywords', 'all-in-one-seo-pack' ),
|
1047 |
|
1048 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:393
|
1049 |
+
__( 'Check this if you want your categories for a given post used as the Meta Keywords for this post (in addition to any keywords you specify on the Edit Post screen).', 'all-in-one-seo-pack' ),
|
|
|
|
|
1050 |
|
1051 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:394
|
1052 |
+
__( 'Use Tags for Meta Keywords', 'all-in-one-seo-pack' ),
|
1053 |
|
1054 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:395
|
1055 |
+
__( 'Check this if you want your tags for a given post used as the Meta Keywords for this post (in addition to any keywords you specify on the Edit Post screen).', 'all-in-one-seo-pack' ),
|
1056 |
|
1057 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:396
|
1058 |
+
__( 'Dynamically Generate Meta Keywords', 'all-in-one-seo-pack' ),
|
1059 |
|
1060 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:397
|
1061 |
+
__( 'Check this if you want your keywords on your Posts page (set in WordPress under Settings, Reading, Front Page Displays) and your archive pages to be dynamically generated from the keywords of the posts showing on that page. If unchecked, it will use the keywords set in the edit page screen for the posts page.', 'all-in-one-seo-pack' ),
|
1062 |
|
1063 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:398
|
1064 |
+
__( 'Paged Format', 'all-in-one-seo-pack' ),
|
1065 |
|
1066 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:399
|
1067 |
+
__( 'This string gets appended/prepended to titles and descriptions of paged index pages (like home or archive pages).', 'all-in-one-seo-pack' ),
|
1068 |
|
1069 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:400
|
1070 |
+
__( 'Description Format', 'all-in-one-seo-pack' ),
|
1071 |
|
1072 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:403
|
1073 |
+
__( 'Enable Sitelinks Search Box', 'all-in-one-seo-pack' ),
|
1074 |
|
1075 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:405
|
1076 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
1077 |
+
__( 'Choose whether %1$s should output the required schema markup that Google needs to generate a sitelinks search box.', 'all-in-one-seo-pack' ),
|
1078 |
|
1079 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:406
|
1080 |
+
__( 'A Description tag is required in order to properly display your meta descriptions on your site.', 'all-in-one-seo-pack' ),
|
1081 |
|
1082 |
+
// Reference: src/vue/pages/settings/views/lite/AccessControl.vue:68
|
1083 |
+
__( 'WP Roles (Editor, Author)', 'all-in-one-seo-pack' ),
|
1084 |
|
1085 |
+
// Reference: src/vue/pages/settings/views/lite/AccessControl.vue:69
|
1086 |
+
__( 'SEO Manager Role', 'all-in-one-seo-pack' ),
|
1087 |
|
1088 |
+
// Reference: src/vue/pages/settings/views/lite/AccessControl.vue:70
|
1089 |
+
__( 'SEO Editor Role', 'all-in-one-seo-pack' ),
|
1090 |
|
1091 |
+
// Reference: src/vue/pages/settings/views/lite/AccessControl.vue:71
|
1092 |
+
__( 'Default settings that just work', 'all-in-one-seo-pack' ),
|
1093 |
|
1094 |
+
// Reference: src/vue/pages/settings/views/lite/AccessControl.vue:72
|
1095 |
+
__( 'Granular controls per role', 'all-in-one-seo-pack' ),
|
1096 |
|
1097 |
+
// Reference: src/vue/pages/settings/views/lite/AccessControl.vue:73
|
1098 |
+
__( 'Upgrade to Pro and Unlock Access Control', 'all-in-one-seo-pack' ),
|
1099 |
|
1100 |
+
// Reference: src/vue/pages/settings/views/lite/AccessControl.vue:74
|
1101 |
+
__( 'Access Control is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
1102 |
|
1103 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:109
|
1104 |
+
__( 'Social Meta (Open Graph Markup)', 'all-in-one-seo-pack' ),
|
1105 |
|
1106 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:112
|
1107 |
+
__( 'Posts, Pages and Custom Post Types Only', 'all-in-one-seo-pack' ),
|
1108 |
|
1109 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:116
|
1110 |
+
__( 'Posts, Pages, Custom Post Types + Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
|
1111 |
|
1112 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:120
|
1113 |
+
__( 'WooCommerce Integration', 'all-in-one-seo-pack' ),
|
1114 |
|
1115 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:123
|
1116 |
+
__( 'WooCommerce Products Only', 'all-in-one-seo-pack' ),
|
1117 |
|
1118 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:127
|
1119 |
+
__( 'WooCommerce Products, Product Categories, Product Tags and Other Product Attributes', 'all-in-one-seo-pack' ),
|
1120 |
|
1121 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:131
|
1122 |
+
__( 'XML Sitemap', 'all-in-one-seo-pack' ),
|
1123 |
|
1124 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:134
|
1125 |
+
__( 'Basic Control of Sitemap Priority & Frequency', 'all-in-one-seo-pack' ),
|
1126 |
|
1127 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:138
|
1128 |
+
__( 'Granular Control of Sitemap Priority & Frequency for Each Post, Page, Category, Tag, etc.', 'all-in-one-seo-pack' ),
|
1129 |
|
1130 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:142
|
1131 |
+
__( 'Video XML Sitemap', 'all-in-one-seo-pack' ),
|
1132 |
|
1133 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:147
|
1134 |
+
__( 'Submit Your Videos to Search Engines', 'all-in-one-seo-pack' ),
|
1135 |
|
1136 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:156
|
1137 |
+
__( 'Submit Your Latest News Stories to Google News (Business & Agency tier only)', 'all-in-one-seo-pack' ),
|
1138 |
|
1139 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:162
|
1140 |
+
__( 'Not Available', 'all-in-one-seo-pack' ),
|
1141 |
|
1142 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:165
|
1143 |
+
__( 'Control The Title & Alt Tag Attribute of Your Images (Business & Agency tier only)', 'all-in-one-seo-pack' ),
|
1144 |
|
1145 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:169
|
1146 |
+
__( 'Schema Rich Snippets', 'all-in-one-seo-pack' ),
|
1147 |
|
1148 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:172
|
1149 |
+
__( 'Posts, Pages, Categories and Tags Only', 'all-in-one-seo-pack' ),
|
1150 |
|
1151 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:175
|
1152 |
+
__( 'Complete Support', 'all-in-one-seo-pack' ),
|
1153 |
|
1154 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:176
|
1155 |
+
__( 'Posts, Pages, Categories, Tags + Breadcrumb Navigation', 'all-in-one-seo-pack' ),
|
1156 |
|
1157 |
+
// Reference: src/vue/plugins/constants.js:1042
|
1158 |
+
__( 'Customer Support', 'all-in-one-seo-pack' ),
|
1159 |
|
1160 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:182
|
1161 |
+
__( 'Limited Support', 'all-in-one-seo-pack' ),
|
1162 |
|
1163 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:185
|
1164 |
+
__( 'Priority Support', 'all-in-one-seo-pack' ),
|
1165 |
|
1166 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:71
|
1167 |
+
/* Translators: 1 - The abbreviated plugin name ("AIOSEO"). */
|
1168 |
+
__( '%1$s Lite vs. Pro', 'all-in-one-seo-pack' ),
|
1169 |
|
1170 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:73
|
1171 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
1172 |
+
__( 'Get the most out of %1$s by upgrading to Pro and unlocking all of the powerful features.', 'all-in-one-seo-pack' ),
|
1173 |
|
1174 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:76
|
1175 |
+
__( 'Features:', 'all-in-one-seo-pack' ),
|
1176 |
|
1177 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:146
|
1178 |
+
__( 'Upgrade to Pro to Unlock Powerful SEO Features', 'all-in-one-seo-pack' ),
|
1179 |
|
1180 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:147
|
1181 |
+
__( '%1$s is the best WordPress SEO plugin. Join over 2,000,000+ Professionals who are already using %2$s to improve their website search rankings.', 'all-in-one-seo-pack' ),
|
1182 |
|
1183 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:155
|
1184 |
+
/* Translators: 1 - "Pro". */
|
1185 |
+
__( 'Upgrade to %1$s Today', 'all-in-one-seo-pack' ),
|
1186 |
|
1187 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:86
|
1188 |
+
__( '%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' ),
|
1189 |
|
1190 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:98
|
1191 |
+
__( 'Search Engine Optimization (SEO)', 'all-in-one-seo-pack' ),
|
1192 |
|
1193 |
+
// Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:81
|
1194 |
+
__( 'Import / Restore %1$s Settings', 'all-in-one-seo-pack' ),
|
1195 |
|
1196 |
+
// Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:82
|
1197 |
+
__( 'Import from a JSON or INI file...', 'all-in-one-seo-pack' ),
|
1198 |
|
1199 |
+
// Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:83
|
1200 |
+
__( 'Choose a File', 'all-in-one-seo-pack' ),
|
1201 |
|
1202 |
+
// Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:84
|
1203 |
+
__( 'Imported settings will overwrite existing settings and will not be merged.', 'all-in-one-seo-pack' ),
|
1204 |
|
1205 |
+
// Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:86
|
1206 |
+
__( 'A JSON or INI file is required to import settings.', 'all-in-one-seo-pack' ),
|
1207 |
|
1208 |
+
// Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:87
|
1209 |
+
__( 'Success! Your settings have been imported.', 'all-in-one-seo-pack' ),
|
1210 |
|
1211 |
+
// Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:88
|
1212 |
+
__( 'There was an error importing your settings. Please make sure you are uploading the correct file or it is in the proper format.', 'all-in-one-seo-pack' ),
|
1213 |
|
1214 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:129
|
1215 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string. */
|
1216 |
+
__( 'Get %1$s %2$s and Unlock all the Powerful Features', 'all-in-one-seo-pack' ),
|
1217 |
|
1218 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:131
|
1219 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string. */
|
1220 |
+
__( 'Get %1$s %2$s and Unlock all the Powerful Features.', 'all-in-one-seo-pack' ),
|
1221 |
|
1222 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:140
|
1223 |
+
__( 'Social Meta for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
|
1224 |
|
1225 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:147
|
1226 |
+
__( 'Video Tutorials', 'all-in-one-seo-pack' ),
|
1227 |
|
1228 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:148
|
1229 |
+
__( 'View all video tutorials', 'all-in-one-seo-pack' ),
|
1230 |
|
1231 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:153
|
1232 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
1233 |
+
__( '%1$s Documentation', 'all-in-one-seo-pack' ),
|
1234 |
|
1235 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:154
|
1236 |
+
__( 'See our full documentation', 'all-in-one-seo-pack' ),
|
1237 |
|
1238 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:160
|
1239 |
+
__( 'Basic Guide to Google Analytics', 'all-in-one-seo-pack' ),
|
1240 |
|
1241 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:164
|
1242 |
+
__( 'Basic Guide to Google Search Console', 'all-in-one-seo-pack' ),
|
1243 |
|
1244 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:168
|
1245 |
+
__( 'Best Practices for Domains and URLs', 'all-in-one-seo-pack' ),
|
1246 |
|
1247 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:172
|
1248 |
+
__( 'How to Control Search Results', 'all-in-one-seo-pack' ),
|
1249 |
|
1250 |
+
// Reference: src/vue/pages/post-settings/views/lite/Schema.vue:61
|
1251 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro", 3 - "Learn more link".. */
|
1252 |
+
__( 'Pro', 'all-in-one-seo-pack' ),
|
1253 |
|
1254 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:177
|
1255 |
+
/* Translators: 1 - The plugin short name ("AIOSEO Pro"), 2 - "Pro" string. */
|
1256 |
+
__( 'Installing %1$s %2$s', 'all-in-one-seo-pack' ),
|
1257 |
|
1258 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:181
|
1259 |
+
__( 'Optimizing your Content Headings', 'all-in-one-seo-pack' ),
|
1260 |
|
1261 |
+
// Reference: src/vue/pages/about/views/Main.vue:23
|
1262 |
+
__( 'About', 'all-in-one-seo-pack' ),
|
1263 |
|
1264 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:90
|
1265 |
+
__( 'Block Bad Bots using HTTP', 'all-in-one-seo-pack' ),
|
1266 |
|
1267 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:91
|
1268 |
+
__( 'Block Referral Spam using HTTP', 'all-in-one-seo-pack' ),
|
1269 |
|
1270 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:92
|
1271 |
+
__( 'Track Blocked Bots', 'all-in-one-seo-pack' ),
|
1272 |
|
1273 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:93
|
1274 |
+
__( 'Use Custom Blocklists', 'all-in-one-seo-pack' ),
|
1275 |
|
1276 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:94
|
1277 |
+
__( 'User Agent Blocklist', 'all-in-one-seo-pack' ),
|
1278 |
|
1279 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:95
|
1280 |
+
__( 'Referer Blocklist', 'all-in-one-seo-pack' ),
|
1281 |
|
1282 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:96
|
1283 |
+
__( 'Blocked Bots Log', 'all-in-one-seo-pack' ),
|
|
|
1284 |
|
1285 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:98
|
1286 |
+
/* Translators: 1 - The location of the log file. */
|
1287 |
+
__( 'The log for the blocked bots is located here: %1$s', 'all-in-one-seo-pack' ),
|
1288 |
|
1289 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:121
|
1290 |
+
__( 'Automatically add content to your site\'s RSS feed.', 'all-in-one-seo-pack' ),
|
1291 |
|
1292 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:122
|
1293 |
+
__( 'This feature is used to automatically add content to your site\'s RSS feed. More specifically, it allows you to add links back to your blog and your blog posts so scrapers will automatically add these links too. This helps search engines identify you as the original source of the content.', 'all-in-one-seo-pack' ),
|
1294 |
|
1295 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:123
|
1296 |
+
__( 'Learn more', 'all-in-one-seo-pack' ),
|
1297 |
|
1298 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:124
|
1299 |
+
__( 'RSS Content Settings', 'all-in-one-seo-pack' ),
|
1300 |
|
1301 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:125
|
1302 |
+
__( 'Open Your RSS Feed', 'all-in-one-seo-pack' ),
|
1303 |
|
1304 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:126
|
1305 |
+
__( 'RSS Before Content', 'all-in-one-seo-pack' ),
|
|
|
1306 |
|
1307 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:127
|
1308 |
+
__( 'RSS After Content', 'all-in-one-seo-pack' ),
|
1309 |
|
1310 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:128
|
1311 |
+
__( 'Add content before each post in your site feed.', 'all-in-one-seo-pack' ),
|
1312 |
|
1313 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:129
|
1314 |
+
__( 'Add content after each post in your site feed.', 'all-in-one-seo-pack' ),
|
1315 |
|
1316 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:130
|
1317 |
+
__( 'Your user account role does not have access to edit this field. %2$s', 'all-in-one-seo-pack' ),
|
1318 |
|
1319 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:124
|
1320 |
+
__( 'Import Settings From Other Plugins', 'all-in-one-seo-pack' ),
|
|
|
1321 |
|
1322 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:125
|
1323 |
+
__( 'Choose a plugin to import SEO data directly into %1$s.', 'all-in-one-seo-pack' ),
|
1324 |
|
1325 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:126
|
1326 |
+
__( 'Select a plugin...', 'all-in-one-seo-pack' ),
|
1327 |
|
1328 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:128
|
1329 |
+
__( 'All Settings', 'all-in-one-seo-pack' ),
|
|
|
1330 |
|
1331 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:129
|
1332 |
+
__( 'not installed', 'all-in-one-seo-pack' ),
|
|
|
1333 |
|
1334 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:143
|
1335 |
+
__( 'SEO Settings', 'all-in-one-seo-pack' ),
|
|
|
1336 |
|
1337 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:144
|
1338 |
+
__( 'Post Meta', 'all-in-one-seo-pack' ),
|
|
|
1339 |
|
1340 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:148
|
1341 |
+
__( 'Term Meta', 'all-in-one-seo-pack' ),
|
|
|
1342 |
|
1343 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:176
|
1344 |
+
/* Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO"). */
|
1345 |
+
__( '%1$s was successfully imported!', 'all-in-one-seo-pack' ),
|
1346 |
|
1347 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:180
|
1348 |
+
/* Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO"). */
|
1349 |
+
__( 'An error occurred while importing %1$s. Please try again.', 'all-in-one-seo-pack' ),
|
1350 |
|
1351 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:223
|
1352 |
+
/* Translators: 1 - The name of the plugin (e.g. "Yoast SEO"), 2 - The version of the plugin (e.g. "10.2.3"). */
|
1353 |
+
__( 'We do not support importing from the currently installed version of %1$s (%2$s). Please upgrade to the latest version and try again.', 'all-in-one-seo-pack' ),
|
1354 |
|
1355 |
+
// Reference: src/vue/pages/settings/views/GeneralSettings.vue:49
|
1356 |
+
__( 'License', 'all-in-one-seo-pack' ),
|
1357 |
|
1358 |
+
// Reference: src/vue/components/lite/core/UpgradeBar.vue:25
|
1359 |
+
__( 'Free', 'all-in-one-seo-pack' ),
|
1360 |
|
1361 |
+
// Reference: src/vue/components/lite/core/UpgradeBar.vue:28
|
1362 |
+
/* Translators: 1 - "Pro". */
|
1363 |
+
__( 'upgrading to %1$s', 'all-in-one-seo-pack' ),
|
1364 |
|
1365 |
+
// Reference: src/vue/components/lite/settings/LicenseKey.vue:56
|
1366 |
+
// Reference: src/vue/pages/settings/views/GeneralSettings.vue:57
|
1367 |
+
/* Translators: This refers to a discount ("As a valued user you receive 50%, automatically applied at checkout!"). */
|
1368 |
+
__( 'off', 'all-in-one-seo-pack' ),
|
1369 |
|
1370 |
+
// Reference: src/vue/pages/settings/views/GeneralSettings.vue:59
|
1371 |
+
__( 'Setup Wizard', 'all-in-one-seo-pack' ),
|
1372 |
|
1373 |
+
// Reference: src/vue/pages/settings/views/GeneralSettings.vue:62
|
1374 |
+
/* Translators: 1 - The plugin name ("All in One SEO") */
|
1375 |
+
__( 'Use our configuration wizard to properly set up %1$s with your WordPress website.', 'all-in-one-seo-pack' ),
|
1376 |
|
1377 |
+
// Reference: src/vue/components/lite/settings/LicenseKey.vue:72
|
1378 |
+
// Reference: src/vue/pages/settings/views/GeneralSettings.vue:73
|
1379 |
+
/* Translators: 1 - "upgrading to Pro". */
|
1380 |
+
__( 'To unlock more features, consider %1$s.', 'all-in-one-seo-pack' ),
|
1381 |
|
1382 |
+
// Reference: src/vue/components/lite/settings/LicenseKey.vue:76
|
1383 |
+
// Reference: src/vue/pages/settings/views/GeneralSettings.vue:77
|
1384 |
+
/* Translators: 1 - "50% off". */
|
1385 |
+
__( 'As a valued user you receive %1$s, automatically applied at checkout!', 'all-in-one-seo-pack' ),
|
1386 |
|
1387 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:118
|
1388 |
+
/* Translators: 1 - The plugin name ("All in One SEO"), 2 - Same as previous. */
|
1389 |
+
__( 'Welcome to %1$s, the original SEO plugin for WordPress. At %2$s, we build software that helps you rank your website in search results and gain organic traffic.', 'all-in-one-seo-pack' ),
|
1390 |
|
1391 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:119
|
1392 |
+
__( 'Over the years, we found that most other WordPress SEO plugins were bloated, buggy, slow, and very hard to use. So we designed our plugin as an easy and powerful tool.', 'all-in-one-seo-pack' ),
|
1393 |
|
1394 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:120
|
1395 |
+
__( 'Our goal is to take the pain out of optimizing your website for search engines.', 'all-in-one-seo-pack' ),
|
1396 |
|
1397 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:122
|
1398 |
+
/* Translators: 1 - The plugin name ("All in One SEO"), 2 - Company name ("Awesome Motive"). */
|
1399 |
+
__( '%1$s is brought to you by %2$s, the same team that’s behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, the best WordPress analytics plugin, MonsterInsights and many more.', 'all-in-one-seo-pack' ),
|
1400 |
|
1401 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:123
|
1402 |
+
__( 'Yup, we know a thing or two about building awesome products that customers love.', 'all-in-one-seo-pack' ),
|
1403 |
|
1404 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:125
|
1405 |
+
/* Translators: 1 - Company name ("Awesome Motive"). */
|
1406 |
+
__( 'The %1$s Team', 'all-in-one-seo-pack' ),
|
1407 |
|
1408 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:129
|
1409 |
+
__( 'Install Plugin', 'all-in-one-seo-pack' ),
|
1410 |
|
1411 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:130
|
1412 |
+
__( 'Activate', 'all-in-one-seo-pack' ),
|
1413 |
|
1414 |
+
// Reference: src/vue/components/common/core/FeatureCard.vue:124
|
1415 |
+
__( 'Manage', 'all-in-one-seo-pack' ),
|
1416 |
|
1417 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:133
|
1418 |
+
__( 'Status:', 'all-in-one-seo-pack' ),
|
1419 |
|
1420 |
+
// Reference: src/vue/components/common/core/FeatureCard.vue:119
|
1421 |
+
__( 'Activated', 'all-in-one-seo-pack' ),
|
1422 |
|
1423 |
+
// Reference: src/vue/components/common/core/FeatureCard.vue:120
|
1424 |
+
__( 'Deactivated', 'all-in-one-seo-pack' ),
|
1425 |
|
1426 |
+
// Reference: src/vue/components/common/core/FeatureCard.vue:121
|
1427 |
+
__( 'Not Installed', 'all-in-one-seo-pack' ),
|
1428 |
|
1429 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:144
|
1430 |
+
__( 'Our high-converting optin forms like Exit-Intent® popups, Fullscreen Welcome Mats, and Scroll boxes help you dramatically boost conversions and get more email subscribers.', 'all-in-one-seo-pack' ),
|
|
|
1431 |
|
1432 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:153
|
1433 |
+
__( 'WPForms allows you to create beautiful contact forms for your site in minutes, not hours!', 'all-in-one-seo-pack' ),
|
1434 |
|
1435 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:170
|
1436 |
+
__( 'MonsterInsights makes it “effortless” to properly connect your WordPress site with Google Analytics, so you can start making data-driven decisions to grow your business.', 'all-in-one-seo-pack' ),
|
1437 |
|
1438 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:187
|
1439 |
+
__( 'The ExactMetrics Google Analytics for WordPress plugin helps you properly setup all the powerful Google Analytics tracking features without writing any code or hiring a developer.', 'all-in-one-seo-pack' ),
|
1440 |
|
1441 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:204
|
1442 |
+
__( 'Make sure your website\'s emails reach the inbox. Our goal is to make email deliverability easy and reliable. Trusted by over 1 million websites.', 'all-in-one-seo-pack' ),
|
1443 |
|
1444 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:221
|
1445 |
+
__( 'Create a simple Coming Soon Page, Under Construction or Maintenance Mode Page. Work on your site in private while visitors see a “Coming Soon” or “Maintenance Mode” page.', 'all-in-one-seo-pack' ),
|
1446 |
|
1447 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:238
|
1448 |
+
__( 'TrustPulse uses FOMO (Fear of Missing Out) to boost your sales and conversions with social proof notifications. Use it to boost sales on your Woocommerce store, increase signups on your membership site, get more email subscribers, and more.', 'all-in-one-seo-pack' ),
|
1449 |
|
1450 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:247
|
1451 |
+
__( 'Turn your visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with powerful viral giveaways & contests.', 'all-in-one-seo-pack' ),
|
1452 |
|
1453 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:264
|
1454 |
+
__( 'Display completely customizable Facebook feeds of any public Facebook page or Group.', 'all-in-one-seo-pack' ),
|
1455 |
|
1456 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:281
|
1457 |
+
__( 'Display beautifully clean, customizable, and responsive Instagram feeds from multiple Instagram accounts.', 'all-in-one-seo-pack' ),
|
1458 |
|
1459 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:298
|
1460 |
+
__( 'Display completely customizable, responsive and search engine crawlable Twitter feeds on your website.', 'all-in-one-seo-pack' ),
|
1461 |
|
1462 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:315
|
1463 |
+
__( 'The Feeds for YouTube plugin allows you to display customizable YouTube feeds from any YouTube channel.', 'all-in-one-seo-pack' ),
|
1464 |
|
1465 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:357
|
1466 |
+
__( 'Enable Breadcrumbs', 'all-in-one-seo-pack' ),
|
1467 |
|
1468 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:358
|
1469 |
+
__( 'Show Breadcrumbs on your Website', 'all-in-one-seo-pack' ),
|
1470 |
|
1471 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:359
|
1472 |
+
__( 'Shortcode', 'all-in-one-seo-pack' ),
|
1473 |
|
1474 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:360
|
1475 |
+
__( 'Gutenberg Block', 'all-in-one-seo-pack' ),
|
1476 |
|
1477 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:361
|
1478 |
+
__( 'PHP Code', 'all-in-one-seo-pack' ),
|
1479 |
|
1480 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:362
|
1481 |
+
__( 'Breadcrumb Settings', 'all-in-one-seo-pack' ),
|
|
|
1482 |
|
1483 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:363
|
1484 |
+
__( 'Separator', 'all-in-one-seo-pack' ),
|
1485 |
|
1486 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:364
|
1487 |
+
__( 'Homepage Link', 'all-in-one-seo-pack' ),
|
1488 |
|
1489 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:365
|
1490 |
+
__( 'Breadcrumb Prefix', 'all-in-one-seo-pack' ),
|
1491 |
|
1492 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:366
|
1493 |
+
__( 'Archive Format', 'all-in-one-seo-pack' ),
|
1494 |
|
1495 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:367
|
1496 |
+
__( 'Search Result Format', 'all-in-one-seo-pack' ),
|
1497 |
|
1498 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:368
|
1499 |
+
__( '404 Error Format', 'all-in-one-seo-pack' ),
|
1500 |
|
1501 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:369
|
1502 |
+
__( 'Current Item', 'all-in-one-seo-pack' ),
|
1503 |
|
1504 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:370
|
1505 |
+
__( 'Home', 'all-in-one-seo-pack' ),
|
1506 |
|
1507 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:372
|
1508 |
+
__( 'Subcategory', 'all-in-one-seo-pack' ),
|
1509 |
|
1510 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:373
|
1511 |
+
__( 'Article Title', 'all-in-one-seo-pack' ),
|
1512 |
|
1513 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:374
|
1514 |
+
__( 'Archives of', 'all-in-one-seo-pack' ),
|
1515 |
|
1516 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:375
|
1517 |
+
__( 'Search for', 'all-in-one-seo-pack' ),
|
1518 |
|
1519 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:376
|
1520 |
+
__( '404 Error: page not found', 'all-in-one-seo-pack' ),
|
|
|
1521 |
|
1522 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:377
|
1523 |
+
__( 'search key word goes here', 'all-in-one-seo-pack' ),
|
1524 |
|
1525 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:378
|
1526 |
+
__( 'Category Name', 'all-in-one-seo-pack' ),
|
1527 |
|
1528 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:379
|
1529 |
+
__( 'Breadcrumb Templates', 'all-in-one-seo-pack' ),
|
1530 |
|
1531 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:269
|
1532 |
+
__( 'TruSEO Score & Content', 'all-in-one-seo-pack' ),
|
1533 |
|
1534 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:270
|
1535 |
+
__( 'Enable our TruSEO score to help you optimize your content for maximum traffic.', 'all-in-one-seo-pack' ),
|
1536 |
|
1537 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:272
|
1538 |
+
__( 'Post Type Columns', 'all-in-one-seo-pack' ),
|
1539 |
|
1540 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:275
|
1541 |
+
/* Translators: 1 - Plugin Short Name ("AIOSEO"). */
|
1542 |
+
__( 'Select which Post Types you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
|
1543 |
|
1544 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:276
|
1545 |
+
__( 'Usage Tracking', 'all-in-one-seo-pack' ),
|
1546 |
|
1547 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:277
|
1548 |
+
__( 'Admin Bar Menu', 'all-in-one-seo-pack' ),
|
|
|
1549 |
|
1550 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:279
|
1551 |
+
/* Translators: 1 - Plugin Short Name ("AIOSEO"). */
|
1552 |
+
__( 'This adds %1$s to the admin toolbar for easy access to your SEO settings.', 'all-in-one-seo-pack' ),
|
1553 |
|
1554 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:280
|
1555 |
+
__( 'Dashboard Widget', 'all-in-one-seo-pack' ),
|
|
|
1556 |
|
1557 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:281
|
1558 |
+
__( 'This displays an SEO News widget on the dashboard.', 'all-in-one-seo-pack' ),
|
|
|
1559 |
|
1560 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:282
|
1561 |
+
__( 'Announcements', 'all-in-one-seo-pack' ),
|
1562 |
|
1563 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:283
|
1564 |
+
__( 'This allows you to hide plugin announcements and update details.', 'all-in-one-seo-pack' ),
|
1565 |
|
1566 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:284
|
1567 |
+
__( 'Automatic Updates', 'all-in-one-seo-pack' ),
|
1568 |
|
1569 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:285
|
1570 |
+
__( 'All (recommended)', 'all-in-one-seo-pack' ),
|
1571 |
|
1572 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:286
|
1573 |
+
__( 'You are getting the latest features, bugfixes, and security updates as they are released.', 'all-in-one-seo-pack' ),
|
1574 |
|
1575 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:287
|
1576 |
+
__( 'Minor Only', 'all-in-one-seo-pack' ),
|
1577 |
|
1578 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:288
|
1579 |
+
__( 'You are getting bugfixes and security updates, but not major features.', 'all-in-one-seo-pack' ),
|
1580 |
|
1581 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:290
|
1582 |
+
__( 'You will need to manually update everything.', 'all-in-one-seo-pack' ),
|
1583 |
|
1584 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:291
|
1585 |
+
__( 'By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test.', 'all-in-one-seo-pack' ),
|
1586 |
|
1587 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:194
|
1588 |
+
__( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'all-in-one-seo-pack' ),
|
1589 |
|
1590 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:295
|
1591 |
+
/* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
|
1592 |
+
__( 'This Admin Bar feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
1593 |
|
1594 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:297
|
1595 |
+
/* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
|
1596 |
+
__( 'The Dashboard Widget feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
1597 |
|
1598 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:298
|
1599 |
+
__( 'Taxonomy Columns', 'all-in-one-seo-pack' ),
|
1600 |
|
1601 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:301
|
1602 |
+
/* Translators: 1 - Plugin Short Name ("AIOSEO"). */
|
1603 |
+
__( 'Select which Taxonomies you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
|
1604 |
|
1605 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:304
|
1606 |
+
/* Translators: 1 - Plugin Short Name ("AIOSEO"). */
|
1607 |
+
__( 'Uninstall %1$s', 'all-in-one-seo-pack' ),
|
1608 |
|
1609 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:306
|
1610 |
+
/* Translators: 1 - Plugin Short Name ("AIOSEO"). */
|
1611 |
+
__( 'Check this if you would like to remove ALL %1$s data upon plugin deletion. All settings and SEO data will be unrecoverable.', 'all-in-one-seo-pack' ),
|
1612 |
|
1613 |
+
// Reference: src/vue/pages/post-settings/views/Main.vue:55
|
1614 |
+
__( 'Preview Snippet Editor', 'all-in-one-seo-pack' ),
|
|
|
1615 |
|
1616 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:256
|
1617 |
+
__( 'Miscellaneous Verification', 'all-in-one-seo-pack' ),
|
|
|
1618 |
|
1619 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:258
|
1620 |
+
/* Translators: 1 - "<head></head>". */
|
1621 |
+
__( 'The code above will be added between the %1$s tags on every page on your website.', 'all-in-one-seo-pack' ),
|
1622 |
|
1623 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:259
|
1624 |
+
__( 'Webmaster Tools Verification', 'all-in-one-seo-pack' ),
|
1625 |
|
1626 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:176
|
1627 |
+
__( 'Click here', 'all-in-one-seo-pack' ),
|
1628 |
|
1629 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:177
|
1630 |
+
__( 'Install Monsterinsights', 'all-in-one-seo-pack' ),
|
1631 |
|
1632 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:262
|
1633 |
+
__( 'Success!', 'all-in-one-seo-pack' ),
|
1634 |
|
1635 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:263
|
1636 |
+
__( 'Google Analytics is now handled by MonsterInsights.', 'all-in-one-seo-pack' ),
|
1637 |
|
1638 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:264
|
1639 |
+
__( 'Google Analytics is now handled by ExactMetrics.', 'all-in-one-seo-pack' ),
|
1640 |
|
1641 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:265
|
1642 |
+
__( 'Manage Google Analytics', 'all-in-one-seo-pack' ),
|
1643 |
|
1644 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:266
|
1645 |
+
__( 'Get Started', 'all-in-one-seo-pack' ),
|
1646 |
|
1647 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:276
|
1648 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
1649 |
+
__( 'We recommend using the %1$sFree MonsterInsights%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
|
1650 |
|
1651 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:280
|
1652 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
1653 |
+
__( 'We recommend using the %1$sFree ExactMetrics%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
|
1654 |
|
1655 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:314
|
1656 |
+
__( 'Google Verification Code', 'all-in-one-seo-pack' ),
|
1657 |
|
1658 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:316
|
1659 |
+
/* Translators: 1 - "Google Search Console". */
|
1660 |
+
__( 'Google Search Console', 'all-in-one-seo-pack' ),
|
1661 |
|
1662 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:316
|
1663 |
+
/* Translators: 1 - "Google Search Console". */
|
1664 |
+
__( 'Get your Google verification code in %1$s.', 'all-in-one-seo-pack' ),
|
1665 |
|
1666 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:327
|
1667 |
+
__( 'Bing Verification Code', 'all-in-one-seo-pack' ),
|
1668 |
|
1669 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:329
|
1670 |
+
/* Translators: 1 - "Bing Webmaster Tools". */
|
1671 |
+
__( 'Bing Webmaster Tools', 'all-in-one-seo-pack' ),
|
1672 |
|
1673 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:329
|
1674 |
+
/* Translators: 1 - "Bing Webmaster Tools". */
|
1675 |
+
__( 'Get your Bing verification code in %1$s.', 'all-in-one-seo-pack' ),
|
1676 |
|
1677 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:340
|
1678 |
+
__( 'Yandex Verification Code', 'all-in-one-seo-pack' ),
|
1679 |
|
1680 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:342
|
1681 |
+
/* Translators: 1 - "Yandex Webmaster Tools". */
|
1682 |
+
__( 'Yandex Webmaster Tools', 'all-in-one-seo-pack' ),
|
1683 |
|
1684 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:342
|
1685 |
+
/* Translators: 1 - "Yandex Webmaster Tools". */
|
1686 |
+
__( 'Get your Yandex verification code in %1$s.', 'all-in-one-seo-pack' ),
|
1687 |
|
1688 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:353
|
1689 |
+
__( 'Baidu Verification Code', 'all-in-one-seo-pack' ),
|
1690 |
|
1691 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:355
|
1692 |
+
/* Translators: 1 - "Baidu Webmaster Tools". */
|
1693 |
+
__( 'Baidu Webmaster Tools', 'all-in-one-seo-pack' ),
|
1694 |
|
1695 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:355
|
1696 |
+
/* Translators: 1 - "Baidu Webmaster Tools". */
|
1697 |
+
__( 'Get your Baidu verification code in %1$s.', 'all-in-one-seo-pack' ),
|
1698 |
|
1699 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:361
|
1700 |
+
__( 'Pinterest Site Verification', 'all-in-one-seo-pack' ),
|
|
|
1701 |
|
1702 |
+
// Reference: src/vue/pages/social-networks/views/Pinterest.vue:49
|
1703 |
+
__( 'Pinterest Verification Code', 'all-in-one-seo-pack' ),
|
1704 |
|
1705 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:368
|
1706 |
+
/* Translators: 1 - "Pinterest account". */
|
1707 |
+
__( 'Get your Pinterest verification code in your %1$s.', 'all-in-one-seo-pack' ),
|
1708 |
|
1709 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:368
|
1710 |
+
/* Translators: 1 - "Pinterest account". */
|
1711 |
+
__( 'Pinterest account', 'all-in-one-seo-pack' ),
|
1712 |
|
1713 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:399
|
1714 |
+
__( 'Google Analytics', 'all-in-one-seo-pack' ),
|
1715 |
|
1716 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:406
|
1717 |
+
__( 'Google Analytics ID', 'all-in-one-seo-pack' ),
|
1718 |
|
1719 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:408
|
1720 |
+
/* Translators: 1 - "Google Analytics account". */
|
1721 |
+
__( 'Get your Google Analytics ID in your %1$s.', 'all-in-one-seo-pack' ),
|
1722 |
|
1723 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:408
|
1724 |
+
/* Translators: 1 - "Google Analytics account". */
|
1725 |
+
__( 'Google Analytics account', 'all-in-one-seo-pack' ),
|
1726 |
|
1727 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:414
|
1728 |
+
__( 'Enable Advanced Analytics Options', 'all-in-one-seo-pack' ),
|
1729 |
|
1730 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:418
|
1731 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
1732 |
+
__( 'This enables Advanced Google Analytics options.%1$s%2$s', 'all-in-one-seo-pack' ),
|
1733 |
|
1734 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:423
|
1735 |
+
__( 'Tracking Domain', 'all-in-one-seo-pack' ),
|
1736 |
|
1737 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:426
|
1738 |
+
/* Translators: 1 - "http://", 2 - A link to our documentation, 3 - HTML line break tag. */
|
1739 |
+
__( 'Enter your domain name without the %1$s to set your cookie domain.%2$s%3$s', 'all-in-one-seo-pack' ),
|
1740 |
|
1741 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:431
|
1742 |
+
__( 'Track Multiple Domains', 'all-in-one-seo-pack' ),
|
1743 |
|
1744 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:439
|
1745 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
1746 |
+
__( 'Use this option to enable tracking of multiple or additional domains.%1$s%2$s', 'all-in-one-seo-pack' ),
|
1747 |
|
1748 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:444
|
1749 |
+
__( 'Additional Domains', 'all-in-one-seo-pack' ),
|
1750 |
|
1751 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:448
|
1752 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
1753 |
+
__( 'Add a list of additional domains to track here. Enter one domain name per line without the http://.%1$s%2$s', 'all-in-one-seo-pack' ),
|
1754 |
|
1755 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:453
|
1756 |
+
__( 'Anonymize IP Addresses', 'all-in-one-seo-pack' ),
|
1757 |
|
1758 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:461
|
1759 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
1760 |
+
__( 'This enables support for IP Anonymization in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
1761 |
|
1762 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:466
|
1763 |
+
__( 'Display Advertiser Tracking', 'all-in-one-seo-pack' ),
|
1764 |
|
1765 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:474
|
1766 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
1767 |
+
__( 'This enables support for the Display Advertiser Features in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
1768 |
|
1769 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:479
|
1770 |
+
__( 'Exclude Users from Tracking', 'all-in-one-seo-pack' ),
|
1771 |
|
1772 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:490
|
1773 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
1774 |
+
__( 'Exclude logged-in users from Google Analytics tracking by role.%1$s%2$s', 'all-in-one-seo-pack' ),
|
1775 |
|
1776 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:495
|
1777 |
+
__( 'Enhanced Link Attribution', 'all-in-one-seo-pack' ),
|
1778 |
|
1779 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:503
|
1780 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
1781 |
+
__( 'This enables support for the Enhanced Link Attribution in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
1782 |
|
1783 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:508
|
1784 |
+
__( 'Track Outbound Links', 'all-in-one-seo-pack' ),
|
1785 |
|
1786 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:516
|
1787 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
1788 |
+
__( 'This enables tracking outbound links with Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
1789 |
|
1790 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:521
|
1791 |
+
__( 'Enhanced Ecommerce', 'all-in-one-seo-pack' ),
|
1792 |
|
1793 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:529
|
1794 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
1795 |
+
__( 'This enables support for the Enhanced Ecommerce in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
1796 |
|
1797 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:534
|
1798 |
+
__( 'Track Outbound Forms', 'all-in-one-seo-pack' ),
|
1799 |
|
1800 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:548
|
1801 |
+
__( 'Track Events', 'all-in-one-seo-pack' ),
|
1802 |
|
1803 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:562
|
1804 |
+
__( 'Track URL Changes', 'all-in-one-seo-pack' ),
|
1805 |
|
1806 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:576
|
1807 |
+
__( 'Track Page Visibility', 'all-in-one-seo-pack' ),
|
1808 |
|
1809 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:590
|
1810 |
+
__( 'Track Media Queries', 'all-in-one-seo-pack' ),
|
1811 |
|
1812 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:604
|
1813 |
+
__( 'Track Elements Visibility', 'all-in-one-seo-pack' ),
|
1814 |
|
1815 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:618
|
1816 |
+
__( 'Track Page Scrolling', 'all-in-one-seo-pack' ),
|
1817 |
|
1818 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:632
|
1819 |
+
__( 'Track Facebook and Twitter', 'all-in-one-seo-pack' ),
|
1820 |
|
1821 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:646
|
1822 |
+
__( 'Ensure URL Consistency', 'all-in-one-seo-pack' ),
|
1823 |
+
|
1824 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:660
|
1825 |
+
__( 'Google Tag Manager Container ID', 'all-in-one-seo-pack' ),
|
1826 |
+
|
1827 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:664
|
1828 |
+
/* Translators: 1 - "Google Tag Manager account". */
|
1829 |
+
__( 'Get your Google Tag Manager ID in your %1$s.', 'all-in-one-seo-pack' ),
|
1830 |
+
|
1831 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:178
|
1832 |
+
__( 'Activate Monsterinsights', 'all-in-one-seo-pack' ),
|
1833 |
+
|
1834 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:180
|
1835 |
+
__( 'MonsterInsights is Installed & Active', 'all-in-one-seo-pack' ),
|
1836 |
+
|
1837 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:181
|
1838 |
+
__( 'ExactMetrics is Installed & Active', 'all-in-one-seo-pack' ),
|
1839 |
+
|
1840 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:182
|
1841 |
+
__( 'Launch Setup Wizard', 'all-in-one-seo-pack' ),
|
1842 |
+
|
1843 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:184
|
1844 |
+
__( 'ExactMetrics connects AIOSEO to Google Analytics, providing a powerful integration. ExactMetrics is a sister company of AIOSEO.', 'all-in-one-seo-pack' ),
|
1845 |
+
|
1846 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:188
|
1847 |
+
__( 'Activate ExactMetrics', 'all-in-one-seo-pack' ),
|
1848 |
+
|
1849 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:189
|
1850 |
+
__( 'ExactMetrics shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'all-in-one-seo-pack' ),
|
1851 |
+
|
1852 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:190
|
1853 |
+
__( 'The Best Google Analytics Plugin for WordPress', 'all-in-one-seo-pack' ),
|
1854 |
+
|
1855 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:191
|
1856 |
+
__( 'MonsterInsights connects AIOSEO to Google Analytics, providing a powerful integration. MonsterInsights is a sister company of AIOSEO.', 'all-in-one-seo-pack' ),
|
1857 |
+
|
1858 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:192
|
1859 |
+
__( 'Quick & Easy Google Analytics Setup', 'all-in-one-seo-pack' ),
|
1860 |
+
|
1861 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:193
|
1862 |
+
__( 'Google Analytics Dashboard + Real Time Stats', 'all-in-one-seo-pack' ),
|
1863 |
+
|
1864 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:194
|
1865 |
+
__( 'Google Analytics Enhanced Ecommerce Tracking', 'all-in-one-seo-pack' ),
|
1866 |
+
|
1867 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:195
|
1868 |
+
__( 'Universal Tracking for AMP and Instant Articles', 'all-in-one-seo-pack' ),
|
1869 |
+
|
1870 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:196
|
1871 |
+
__( 'Install &', 'all-in-one-seo-pack' ),
|
1872 |
+
|
1873 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:197
|
1874 |
+
__( 'Activate MonsterInsights', 'all-in-one-seo-pack' ),
|
1875 |
+
|
1876 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:198
|
1877 |
+
__( 'MonsterInsights shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'all-in-one-seo-pack' ),
|
1878 |
+
|
1879 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:199
|
1880 |
+
__( 'Setup ExactMetrics', 'all-in-one-seo-pack' ),
|
1881 |
+
|
1882 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:200
|
1883 |
+
__( 'Setup MonsterInsights', 'all-in-one-seo-pack' ),
|
1884 |
+
|
1885 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:201
|
1886 |
+
__( 'ExactMetrics has an intuitive setup wizard to guide you through the setup process.', 'all-in-one-seo-pack' ),
|
1887 |
+
|
1888 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:202
|
1889 |
+
__( 'MonsterInsights has an intuitive setup wizard to guide you through the setup process.', 'all-in-one-seo-pack' ),
|
1890 |
+
|
1891 |
+
// Reference: src/vue/mixins/Wizard.js:6
|
1892 |
+
__( 'Skip this Step', 'all-in-one-seo-pack' ),
|
1893 |
+
|
1894 |
+
// Reference: src/vue/mixins/Wizard.js:7
|
1895 |
+
__( 'Go Back', 'all-in-one-seo-pack' ),
|
1896 |
|
1897 |
+
// Reference: src/vue/mixins/Wizard.js:8
|
1898 |
+
__( 'Save and Continue', 'all-in-one-seo-pack' ),
|
1899 |
|
1900 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:10
|
1901 |
+
__( 'to analyze a competitor site.', 'all-in-one-seo-pack' ),
|
|
|
1902 |
|
1903 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:11
|
1904 |
+
__( 'A valid license key is required', 'all-in-one-seo-pack' ),
|
1905 |
|
1906 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:5
|
1907 |
+
__( 'We\'ve got some<br>work to do!', 'all-in-one-seo-pack' ),
|
|
|
1908 |
|
1909 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:6
|
1910 |
+
__( 'Needs<br>Improvement!', 'all-in-one-seo-pack' ),
|
1911 |
|
1912 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:7
|
1913 |
+
__( 'Very Good!', 'all-in-one-seo-pack' ),
|
1914 |
|
1915 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:8
|
1916 |
+
__( 'Excellent!', 'all-in-one-seo-pack' ),
|
1917 |
|
1918 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:9
|
1919 |
+
__( 'to see your Site Score.', 'all-in-one-seo-pack' ),
|
1920 |
|
1921 |
+
// Reference: src/vue/mixins/Image.js:119
|
1922 |
+
__( 'Choose Image', 'all-in-one-seo-pack' ),
|
1923 |
|
1924 |
+
// Reference: src/vue/mixins/Image.js:55
|
1925 |
+
__( 'Default Image (Set Below)', 'all-in-one-seo-pack' ),
|
1926 |
|
1927 |
+
// Reference: src/vue/mixins/Image.js:56
|
1928 |
+
__( 'Featured Image', 'all-in-one-seo-pack' ),
|
|
|
1929 |
|
1930 |
+
// Reference: src/vue/mixins/Image.js:57
|
1931 |
+
__( 'Attached Image', 'all-in-one-seo-pack' ),
|
1932 |
|
1933 |
+
// Reference: src/vue/mixins/Image.js:58
|
1934 |
+
__( 'First Image in Content', 'all-in-one-seo-pack' ),
|
1935 |
|
1936 |
+
// Reference: src/vue/mixins/Image.js:59
|
1937 |
+
__( 'Image from Custom Field', 'all-in-one-seo-pack' ),
|
1938 |
|
1939 |
+
// Reference: src/vue/mixins/Image.js:60
|
1940 |
+
__( 'Post Author Image', 'all-in-one-seo-pack' ),
|
1941 |
|
1942 |
+
// Reference: src/vue/mixins/Image.js:61
|
1943 |
+
__( 'First Available Image', 'all-in-one-seo-pack' ),
|
1944 |
|
1945 |
+
// Reference: src/vue/mixins/Image.js:68
|
1946 |
+
__( 'Default Image Source (Set in Social Networks)', 'all-in-one-seo-pack' ),
|
1947 |
|
1948 |
+
// Reference: src/vue/mixins/Image.js:71
|
1949 |
+
__( 'Custom Image', 'all-in-one-seo-pack' ),
|
1950 |
|
1951 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:63
|
1952 |
+
// Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:75
|
1953 |
+
// Reference: src/vue/components/common/core/SiteScoreDashboard.vue:65
|
1954 |
+
// Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:90
|
1955 |
+
__( 'Critical Issues', 'all-in-one-seo-pack' ),
|
1956 |
|
1957 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:65
|
1958 |
+
// Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:77
|
1959 |
+
// Reference: src/vue/components/common/core/SiteScoreDashboard.vue:67
|
1960 |
+
// Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:100
|
1961 |
+
__( 'Recommended Improvements', 'all-in-one-seo-pack' ),
|
1962 |
|
1963 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:66
|
1964 |
+
// Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:78
|
1965 |
+
// Reference: src/vue/components/common/core/SiteScoreDashboard.vue:68
|
1966 |
+
// Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:110
|
1967 |
+
__( 'Good Results', 'all-in-one-seo-pack' ),
|
1968 |
|
1969 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:67
|
1970 |
+
// Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:79
|
1971 |
+
// Reference: src/vue/components/common/core/SiteScoreDashboard.vue:69
|
1972 |
+
__( 'Complete Site Audit Checklist', 'all-in-one-seo-pack' ),
|
1973 |
|
1974 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:30
|
1975 |
+
__( 'All Good!', 'all-in-one-seo-pack' ),
|
1976 |
|
1977 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:29
|
1978 |
+
__( 'Errors', 'all-in-one-seo-pack' ),
|
|
|
1979 |
|
1980 |
+
// Reference: src/vue/mixins/License.js:11
|
1981 |
+
__( 'Your license has been disabled.', 'all-in-one-seo-pack' ),
|
|
|
1982 |
|
1983 |
+
// Reference: src/vue/mixins/License.js:15
|
1984 |
+
__( 'Your license key is invalid.', 'all-in-one-seo-pack' ),
|
|
|
1985 |
|
1986 |
+
// Reference: src/vue/mixins/License.js:4
|
1987 |
+
__( 'You have not yet added a license key.', 'all-in-one-seo-pack' ),
|
1988 |
|
1989 |
+
// Reference: src/vue/mixins/License.js:7
|
1990 |
+
__( 'Your license has expired.', 'all-in-one-seo-pack' ),
|
1991 |
|
1992 |
+
// Reference: src/vue/mixins/MaxCounts.js:6
|
1993 |
+
/* Translators: 1 - A number, 2 - A number. */
|
1994 |
+
__( '%1$s out of %2$s max recommended characters.', 'all-in-one-seo-pack' ),
|
1995 |
|
1996 |
+
// Reference: src/vue/mixins/Notifications.js:6
|
1997 |
+
__( 'Notifications', 'all-in-one-seo-pack' ),
|
1998 |
|
1999 |
+
// Reference: src/vue/mixins/Notifications.js:7
|
2000 |
+
__( 'New Notifications', 'all-in-one-seo-pack' ),
|
2001 |
|
2002 |
+
// Reference: src/vue/mixins/Notifications.js:8
|
2003 |
+
__( 'Active Notifications', 'all-in-one-seo-pack' ),
|
|
|
2004 |
|
2005 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:14
|
2006 |
+
/* Translators: 1 - The plugin name ("All in One SEO") */
|
2007 |
+
__( 'By default, only users with an Administrator role have permission to manage %1$s within your WordPress admin area. With Access Controls, though, you can easily extend specific access permissions to other user roles.', 'all-in-one-seo-pack' ),
|
2008 |
|
2009 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:15
|
2010 |
+
__( 'Access Control Settings', 'all-in-one-seo-pack' ),
|
2011 |
|
2012 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:16
|
2013 |
+
__( 'Administrator', 'all-in-one-seo-pack' ),
|
2014 |
|
2015 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:100
|
2016 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:162
|
2017 |
+
__( 'Use Default Settings', 'all-in-one-seo-pack' ),
|
2018 |
|
2019 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:18
|
2020 |
+
__( 'Editor', 'all-in-one-seo-pack' ),
|
2021 |
|
2022 |
+
// Reference: src/vue/plugins/constants.js:1204
|
2023 |
+
__( 'Author', 'all-in-one-seo-pack' ),
|
2024 |
|
2025 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:20
|
2026 |
+
__( 'SEO Manager', 'all-in-one-seo-pack' ),
|
2027 |
|
2028 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:21
|
2029 |
+
__( 'SEO Editor', 'all-in-one-seo-pack' ),
|
|
|
2030 |
|
2031 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:23
|
2032 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
2033 |
+
__( 'By default Admins have access to %1$sall SEO site settings%2$s', 'all-in-one-seo-pack' ),
|
2034 |
|
2035 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:25
|
2036 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
2037 |
+
__( 'By default Editors have access to %1$sSEO settings for General Settings, Search Appearance and Social Networks, as well as all settings for individual pages and posts.%2$s', 'all-in-one-seo-pack' ),
|
2038 |
|
2039 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:27
|
2040 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
2041 |
+
__( 'By default Authors have access to %1$sSEO settings for individual pages and posts that they already have permission to edit.%2$s', 'all-in-one-seo-pack' ),
|
2042 |
|
2043 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:29
|
2044 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
2045 |
+
__( 'By default SEO Managers have access to %1$sSEO settings for General Settings, Redirections, and individual pages and posts.%2$s', 'all-in-one-seo-pack' ),
|
2046 |
|
2047 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:31
|
2048 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
2049 |
+
__( 'By default SEO Editors have access to %1$sSEO settings for individual pages and posts.%2$s', 'all-in-one-seo-pack' ),
|
2050 |
|
2051 |
+
// Reference: src/vue/pages/post-settings/views/ModalContent.vue:41
|
2052 |
+
__( 'Modal Content', 'all-in-one-seo-pack' ),
|
2053 |
|
2054 |
+
// Reference: src/vue/pages/post-settings/views/Advanced.vue:114
|
2055 |
+
__( 'Robots Setting', 'all-in-one-seo-pack' ),
|
2056 |
|
2057 |
+
// Reference: src/vue/pages/post-settings/views/Advanced.vue:115
|
2058 |
+
__( 'Use default settings', 'all-in-one-seo-pack' ),
|
2059 |
|
2060 |
+
// Reference: src/vue/pages/post-settings/views/Advanced.vue:116
|
2061 |
+
__( 'Canonical URL', 'all-in-one-seo-pack' ),
|
2062 |
|
2063 |
+
// Reference: src/vue/pages/post-settings/views/Advanced.vue:117
|
2064 |
+
__( 'Enter a URL to change the default Canonical URL', 'all-in-one-seo-pack' ),
|
2065 |
|
2066 |
+
// Reference: src/vue/components/common/core/AdditionalPages.vue:98
|
2067 |
+
// Reference: src/vue/components/common/core/PriorityScore.vue:64
|
2068 |
+
__( 'Priority', 'all-in-one-seo-pack' ),
|
2069 |
|
2070 |
+
// Reference: src/vue/components/common/core/AdditionalPages.vue:99
|
2071 |
+
// Reference: src/vue/components/common/core/PriorityScore.vue:65
|
2072 |
+
__( 'Frequency', 'all-in-one-seo-pack' ),
|
2073 |
|
2074 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:260
|
2075 |
+
__( 'General', 'all-in-one-seo-pack' ),
|
2076 |
|
2077 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:261
|
2078 |
+
__( 'Snippet Preview', 'all-in-one-seo-pack' ),
|
2079 |
|
2080 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:262
|
2081 |
+
__( 'Snippet Preview content here.', 'all-in-one-seo-pack' ),
|
2082 |
|
2083 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:263
|
2084 |
+
__( 'Edit Snippet', 'all-in-one-seo-pack' ),
|
2085 |
|
2086 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:264
|
2087 |
+
__( 'Click on tags below to insert variables into your title.', 'all-in-one-seo-pack' ),
|
2088 |
|
2089 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:253
|
2090 |
+
__( 'Click on tags below to insert variables into your meta description.', 'all-in-one-seo-pack' ),
|
2091 |
|
2092 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:267
|
2093 |
+
__( 'Pillar Content', 'all-in-one-seo-pack' ),
|
2094 |
|
2095 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:268
|
2096 |
+
__( 'Cornerstone content should be the most important and extensive articles on your site.', 'all-in-one-seo-pack' ),
|
2097 |
|
2098 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:269
|
2099 |
+
__( 'Focus Keyphrase', 'all-in-one-seo-pack' ),
|
2100 |
|
2101 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:68
|
2102 |
+
__( 'Additional Keyphrases', 'all-in-one-seo-pack' ),
|
2103 |
+
|
2104 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:271
|
2105 |
+
__( 'Page Analysis', 'all-in-one-seo-pack' ),
|
2106 |
|
2107 |
+
// Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:106
|
2108 |
+
__( 'Basic SEO', 'all-in-one-seo-pack' ),
|
2109 |
|
2110 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:44
|
2111 |
+
__( 'Readability', 'all-in-one-seo-pack' ),
|
2112 |
|
2113 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:275
|
2114 |
+
__( 'Looking for meta keywords? Click on the advanced tab above to add/edit meta keywords.', 'all-in-one-seo-pack' ),
|
2115 |
|
2116 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:284
|
2117 |
+
/* Translators: %s: The type of page (Post, Page, Category, Tag, etc.). */
|
2118 |
+
__( '%s Title', 'all-in-one-seo-pack' ),
|
2119 |
|
2120 |
+
// Reference: src/vue/pages/post-settings/views/Social.vue:60
|
2121 |
+
__( 'Social', 'all-in-one-seo-pack' ),
|
|
|
2122 |
|
2123 |
+
// Reference: src/vue/components/lite/settings/LicenseKey.vue:59
|
2124 |
+
__( 'Your license key provides access to updates and addons.', 'all-in-one-seo-pack' ),
|
2125 |
|
2126 |
+
// Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:103
|
2127 |
+
__( 'Paste your license key here', 'all-in-one-seo-pack' ),
|
2128 |
|
2129 |
+
// Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:104
|
2130 |
+
__( 'Connect', 'all-in-one-seo-pack' ),
|
2131 |
|
2132 |
+
// Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:121
|
2133 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
2134 |
+
__( 'You\'re using %1$s - no license needed. Enjoy!', 'all-in-one-seo-pack' ),
|
2135 |
|
2136 |
+
// Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:134
|
2137 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
2138 |
+
__( 'Already purchased? Simply enter your license key below to connect with %1$s!', 'all-in-one-seo-pack' ),
|
2139 |
|
2140 |
+
// Reference: src/vue/components/lite/local-business/AreaServed.vue:16
|
2141 |
+
__( 'The geographic area where a service or offered item is provided.', 'all-in-one-seo-pack' ),
|
2142 |
|
2143 |
+
// Reference: src/vue/components/lite/local-business/BusinessAddress.vue:55
|
2144 |
+
__( 'Street address:', 'all-in-one-seo-pack' ),
|
2145 |
|
2146 |
+
// Reference: src/vue/components/lite/local-business/BusinessAddress.vue:56
|
2147 |
+
__( 'Street address line 2 (optional):', 'all-in-one-seo-pack' ),
|
2148 |
|
2149 |
+
// Reference: src/vue/components/lite/local-business/BusinessAddress.vue:57
|
2150 |
+
__( 'Zip code:', 'all-in-one-seo-pack' ),
|
|
|
2151 |
|
2152 |
+
// Reference: src/vue/components/lite/local-business/BusinessAddress.vue:58
|
2153 |
+
__( 'City:', 'all-in-one-seo-pack' ),
|
2154 |
|
2155 |
+
// Reference: src/vue/components/lite/local-business/BusinessAddress.vue:59
|
2156 |
+
__( 'State:', 'all-in-one-seo-pack' ),
|
2157 |
|
2158 |
+
// Reference: src/vue/components/lite/local-business/BusinessAddress.vue:60
|
2159 |
+
__( 'Country:', 'all-in-one-seo-pack' ),
|
2160 |
|
2161 |
+
// Reference: src/vue/components/lite/local-business/BusinessContact.vue:28
|
2162 |
+
__( 'Email address:', 'all-in-one-seo-pack' ),
|
2163 |
|
2164 |
+
// Reference: src/vue/components/lite/local-business/BusinessContact.vue:29
|
2165 |
+
__( 'Phone number:', 'all-in-one-seo-pack' ),
|
2166 |
|
2167 |
+
// Reference: src/vue/components/lite/local-business/BusinessContact.vue:30
|
2168 |
+
__( 'Fax number:', 'all-in-one-seo-pack' ),
|
|
|
2169 |
|
2170 |
+
// Reference: src/vue/components/lite/local-business/BusinessIds.vue:25
|
2171 |
+
__( 'VAT ID:', 'all-in-one-seo-pack' ),
|
2172 |
|
2173 |
+
// Reference: src/vue/components/lite/local-business/BusinessIds.vue:26
|
2174 |
+
__( 'Tax ID:', 'all-in-one-seo-pack' ),
|
2175 |
|
2176 |
+
// Reference: src/vue/components/lite/local-business/PaymentInfo.vue:37
|
2177 |
+
__( 'Price Indicator:', 'all-in-one-seo-pack' ),
|
2178 |
|
2179 |
+
// Reference: src/vue/components/lite/local-business/PaymentInfo.vue:38
|
2180 |
+
__( 'Accepted Currencies:', 'all-in-one-seo-pack' ),
|
2181 |
|
2182 |
+
// Reference: src/vue/components/lite/local-business/PaymentInfo.vue:39
|
2183 |
+
__( 'Accepted Payment Methods:', 'all-in-one-seo-pack' ),
|
2184 |
|
2185 |
+
// Reference: src/vue/components/lite/core/UpgradeBar.vue:38
|
2186 |
+
/* Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro". */
|
2187 |
+
__( 'You\'re using %1$s. To unlock more features, consider %2$s.', 'all-in-one-seo-pack' ),
|
2188 |
|
2189 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:103
|
2190 |
+
__( 'Local business information may be displayed when users search for businesses on Google search or Google Maps. Google decides on a per search basis whether to display this information or not and it’s completely automated.', 'all-in-one-seo-pack' ),
|
2191 |
|
2192 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:104
|
2193 |
+
__( 'Multiple Locations', 'all-in-one-seo-pack' ),
|
2194 |
|
2195 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:105
|
2196 |
+
__( 'Display Location Info', 'all-in-one-seo-pack' ),
|
|
|
2197 |
|
2198 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:107
|
2199 |
+
__( 'Business Name', 'all-in-one-seo-pack' ),
|
2200 |
|
2201 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:110
|
2202 |
+
__( 'Business Address', 'all-in-one-seo-pack' ),
|
2203 |
|
2204 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:112
|
2205 |
+
__( 'Business IDs', 'all-in-one-seo-pack' ),
|
2206 |
|
2207 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:114
|
2208 |
+
__( 'Area Served', 'all-in-one-seo-pack' ),
|
2209 |
|
2210 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:126
|
2211 |
+
__( 'Archive Organization', 'all-in-one-seo-pack' ),
|
2212 |
|
2213 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:127
|
2214 |
+
__( 'Automotive Business', 'all-in-one-seo-pack' ),
|
2215 |
|
2216 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:128
|
2217 |
+
__( 'Childcare', 'all-in-one-seo-pack' ),
|
2218 |
|
2219 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:129
|
2220 |
+
__( 'Dentist', 'all-in-one-seo-pack' ),
|
2221 |
|
2222 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:130
|
2223 |
+
__( 'Dry Cleaning/Laundry', 'all-in-one-seo-pack' ),
|
2224 |
|
2225 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:131
|
2226 |
+
__( 'Emergency Service', 'all-in-one-seo-pack' ),
|
2227 |
|
2228 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:132
|
2229 |
+
__( 'Employment Agency', 'all-in-one-seo-pack' ),
|
2230 |
|
2231 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:133
|
2232 |
+
__( 'Entertainment Business', 'all-in-one-seo-pack' ),
|
|
|
2233 |
|
2234 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:134
|
2235 |
+
__( 'Financial Service', 'all-in-one-seo-pack' ),
|
|
|
2236 |
|
2237 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:135
|
2238 |
+
__( 'Food Establishment', 'all-in-one-seo-pack' ),
|
|
|
2239 |
|
2240 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:136
|
2241 |
+
__( 'Government Office', 'all-in-one-seo-pack' ),
|
|
|
2242 |
|
2243 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:137
|
2244 |
+
__( 'Health & Beauty Business', 'all-in-one-seo-pack' ),
|
2245 |
|
2246 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:138
|
2247 |
+
__( 'Home & Construction Business', 'all-in-one-seo-pack' ),
|
2248 |
|
2249 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:139
|
2250 |
+
__( 'Internet Cafe', 'all-in-one-seo-pack' ),
|
|
|
2251 |
|
2252 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:140
|
2253 |
+
__( 'Legal Service', 'all-in-one-seo-pack' ),
|
2254 |
|
2255 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:141
|
2256 |
+
__( 'Library', 'all-in-one-seo-pack' ),
|
2257 |
|
2258 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:142
|
2259 |
+
__( 'Lodging Business', 'all-in-one-seo-pack' ),
|
2260 |
|
2261 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:143
|
2262 |
+
__( 'Medical Business', 'all-in-one-seo-pack' ),
|
2263 |
|
2264 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:144
|
2265 |
+
__( 'Radio Station', 'all-in-one-seo-pack' ),
|
|
|
2266 |
|
2267 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:145
|
2268 |
+
__( 'Real Estate Agent', 'all-in-one-seo-pack' ),
|
2269 |
|
2270 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:146
|
2271 |
+
__( 'Recycling Center', 'all-in-one-seo-pack' ),
|
2272 |
|
2273 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:147
|
2274 |
+
__( 'Self Storage', 'all-in-one-seo-pack' ),
|
2275 |
|
2276 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:148
|
2277 |
+
__( 'Shopping Center', 'all-in-one-seo-pack' ),
|
2278 |
|
2279 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:149
|
2280 |
+
__( 'Sports Activity Location', 'all-in-one-seo-pack' ),
|
2281 |
|
2282 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:150
|
2283 |
+
__( 'Store', 'all-in-one-seo-pack' ),
|
2284 |
|
2285 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:151
|
2286 |
+
__( 'Television Station', 'all-in-one-seo-pack' ),
|
2287 |
|
2288 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:152
|
2289 |
+
__( 'Tourist Information Center', 'all-in-one-seo-pack' ),
|
2290 |
|
2291 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:153
|
2292 |
+
__( 'Travel Agency', 'all-in-one-seo-pack' ),
|
2293 |
|
2294 |
+
// Reference: src/vue/pages/post-settings/views/lite/Schema.vue:61
|
2295 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro", 3 - "Learn more link".. */
|
2296 |
+
__( 'This feature is only for licensed %1$s %2$s users. %3$s', 'all-in-one-seo-pack' ),
|
2297 |
|
2298 |
+
// Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:26
|
2299 |
+
__( 'Here you can view and edit the thumbnail, title and description that will be displayed when your site is shared on social media. Click on the button below to view and edit the preview.', 'all-in-one-seo-pack' ),
|
2300 |
|
2301 |
+
// Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:27
|
2302 |
+
__( 'Preview & Edit', 'all-in-one-seo-pack' ),
|
2303 |
|
2304 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:238
|
2305 |
+
__( 'Facebook Preview', 'all-in-one-seo-pack' ),
|
2306 |
|
2307 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:239
|
2308 |
+
__( 'Image Source', 'all-in-one-seo-pack' ),
|
|
|
2309 |
|
2310 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:240
|
2311 |
+
__( 'Custom Field Name', 'all-in-one-seo-pack' ),
|
2312 |
|
2313 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:241
|
2314 |
+
__( 'Video URL', 'all-in-one-seo-pack' ),
|
|
|
2315 |
|
2316 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:245
|
2317 |
+
__( 'Facebook Image', 'all-in-one-seo-pack' ),
|
|
|
2318 |
|
2319 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:246
|
2320 |
+
__( 'Facebook Title', 'all-in-one-seo-pack' ),
|
2321 |
|
2322 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:247
|
2323 |
+
__( 'Facebook Description', 'all-in-one-seo-pack' ),
|
2324 |
|
2325 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:250
|
2326 |
+
__( 'Minimum size: 200px x 200px, ideal ratio 1.91:1, 5MB max. (eg: 1640px x 856px or 3280px x 1712px for retina screens)', 'all-in-one-seo-pack' ),
|
2327 |
|
2328 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:252
|
2329 |
+
__( 'Click on tags below to insert variables into your site name.', 'all-in-one-seo-pack' ),
|
2330 |
|
2331 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:254
|
2332 |
+
__( 'Article Section', 'all-in-one-seo-pack' ),
|
2333 |
|
2334 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:255
|
2335 |
+
__( 'Article Tags', 'all-in-one-seo-pack' ),
|
2336 |
|
2337 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:256
|
2338 |
+
__( 'Press enter to create an article tag', 'all-in-one-seo-pack' ),
|
2339 |
|
2340 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:264
|
2341 |
+
__( 'Default', 'all-in-one-seo-pack' ),
|
2342 |
|
2343 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:264
|
2344 |
+
__( 'Default Object Type (Set in Social Networks)', 'all-in-one-seo-pack' ),
|
2345 |
|
2346 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:213
|
2347 |
+
__( 'Twitter Preview', 'all-in-one-seo-pack' ),
|
2348 |
|
2349 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:214
|
2350 |
+
__( 'Use Data from Facebook Tab', 'all-in-one-seo-pack' ),
|
2351 |
|
2352 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:217
|
2353 |
+
__( 'Twitter Image', 'all-in-one-seo-pack' ),
|
2354 |
|
2355 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:218
|
2356 |
+
__( 'Twitter Title', 'all-in-one-seo-pack' ),
|
2357 |
|
2358 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:219
|
2359 |
+
__( 'Twitter Description', 'all-in-one-seo-pack' ),
|
2360 |
|
2361 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:220
|
2362 |
+
__( 'Twitter Card Type', 'all-in-one-seo-pack' ),
|
2363 |
|
2364 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:449
|
2365 |
+
__( 'Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and GIF formats only.', 'all-in-one-seo-pack' ),
|
2366 |
|
2367 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:450
|
2368 |
+
__( 'Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and GIF formats only.', 'all-in-one-seo-pack' ),
|
2369 |
|
2370 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:234
|
2371 |
+
__( 'Default (Set under Social Networks)', 'all-in-one-seo-pack' ),
|
2372 |
|
2373 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:437
|
2374 |
+
__( 'Summary', 'all-in-one-seo-pack' ),
|
2375 |
|
2376 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:438
|
2377 |
+
__( 'Summary with Large Image', 'all-in-one-seo-pack' ),
|
2378 |
|
2379 |
+
// Reference: src/vue/classes/SiteAnalysis.js:119
|
2380 |
+
__( 'Title:', 'all-in-one-seo-pack' ),
|
2381 |
|
2382 |
+
// Reference: src/vue/classes/SiteAnalysis.js:125
|
2383 |
+
__( 'Description:', 'all-in-one-seo-pack' ),
|
2384 |
|
2385 |
+
// Reference: src/vue/pages/posts-table/App.vue:222
|
2386 |
+
__( 'Edit', 'all-in-one-seo-pack' ),
|
2387 |
|
2388 |
+
// Reference: src/vue/pages/posts-table/App.vue:223
|
2389 |
+
__( 'Save', 'all-in-one-seo-pack' ),
|
2390 |
|
2391 |
+
// Reference: src/vue/pages/posts-table/App.vue:224
|
2392 |
+
__( 'Cancel', 'all-in-one-seo-pack' ),
|
2393 |
|
2394 |
+
// Reference: src/vue/pages/posts-table/App.vue:225
|
2395 |
+
__( 'Please wait...', 'all-in-one-seo-pack' ),
|
2396 |
|
2397 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:69
|
2398 |
+
__( 'Add Additional Keyphrases', 'all-in-one-seo-pack' ),
|
2399 |
|
2400 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:71
|
2401 |
+
/* Translators: 1 - "Pro" string, 2 - "Learn more link". */
|
2402 |
+
__( 'Upgrade to %1$s to add related keyphrases. %2$s', 'all-in-one-seo-pack' ),
|
2403 |
|
2404 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:60
|
2405 |
+
__( 'Add Focus Keyphrase', 'all-in-one-seo-pack' ),
|
2406 |
|
2407 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:62
|
2408 |
+
/* Translators: 1 - "Learn more link". */
|
2409 |
+
__( 'Not sure what keyphrases are used for? Check out our documentation for more information. %1$s', 'all-in-one-seo-pack' ),
|
2410 |
|
2411 |
+
// Reference: src/vue/pages/posts-table/App.vue:220
|
2412 |
+
__( 'Image Title:', 'all-in-one-seo-pack' ),
|
2413 |
|
2414 |
+
// Reference: src/vue/pages/posts-table/App.vue:221
|
2415 |
+
__( 'Image Alt Tag:', 'all-in-one-seo-pack' ),
|
2416 |
|
2417 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:120
|
2418 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
|
2419 |
+
__( 'Upgrade to Pro and Unlock Local SEO', 'all-in-one-seo-pack' ),
|
2420 |
|
2421 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:121
|
2422 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:303
|
2423 |
+
__( 'Local SEO is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
2424 |
|
2425 |
+
// Reference: src/vue/pages/social-networks/views/Pinterest.vue:46
|
2426 |
+
__( 'Pinterest uses Open Graph metadata just like Facebook, so be sure to keep Open Graph enabled on the Facebook tab checked if you want to optimize your site for Pinterest.', 'all-in-one-seo-pack' ),
|
2427 |
|
2428 |
+
// Reference: src/vue/pages/social-networks/views/Pinterest.vue:47
|
2429 |
+
__( 'Learn how to get your Pinterest Verification Code', 'all-in-one-seo-pack' ),
|
2430 |
|
2431 |
+
// Reference: src/vue/pages/social-networks/views/Pinterest.vue:48
|
2432 |
+
__( 'If you have already confirmed your website with Pinterest, you can skip the step below.', 'all-in-one-seo-pack' ),
|
2433 |
|
2434 |
+
// Reference: src/vue/components/common/wizard/CloseAndExit.vue:14
|
2435 |
+
__( 'Close and Exit Wizard Without Saving', 'all-in-one-seo-pack' ),
|
2436 |
|
2437 |
+
// Reference: src/vue/components/common/wizard/Steps.vue:15
|
2438 |
+
/* Translators: 1 - The current step count. 2 - The total step count. */
|
2439 |
+
__( 'Step %1$s of %2$s', 'all-in-one-seo-pack' ),
|
2440 |
|
2441 |
+
// Reference: src/vue/pages/social-networks/views/SocialProfiles.vue:26
|
2442 |
+
__( 'To let search engines know which profiles are associated with this site, enter them below:', 'all-in-one-seo-pack' ),
|
2443 |
|
2444 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:432
|
2445 |
+
__( 'Twitter Card Settings', 'all-in-one-seo-pack' ),
|
2446 |
|
2447 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:434
|
2448 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
2449 |
+
__( 'Enable this feature if you want Twitter to display a preview card with images and a text excerpt when a link to your site is shared.', 'all-in-one-seo-pack' ),
|
2450 |
|
2451 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:435
|
2452 |
+
__( 'Enable Twitter Card', 'all-in-one-seo-pack' ),
|
2453 |
|
2454 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:436
|
2455 |
+
__( 'Default Card Type', 'all-in-one-seo-pack' ),
|
2456 |
|
2457 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:445
|
2458 |
+
__( 'Default Post Twitter Image', 'all-in-one-seo-pack' ),
|
2459 |
|
2460 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:446
|
2461 |
+
__( 'Default Term Twitter Image', 'all-in-one-seo-pack' ),
|
2462 |
|
2463 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:452
|
2464 |
+
__( 'Home Page Image', 'all-in-one-seo-pack' ),
|
2465 |
|
2466 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:149
|
2467 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:255
|
2468 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:453
|
2469 |
+
__( 'Home Page Title', 'all-in-one-seo-pack' ),
|
2470 |
|
2471 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:460
|
2472 |
+
__( 'Show Twitter Author', 'all-in-one-seo-pack' ),
|
2473 |
|
2474 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:463
|
2475 |
+
__( 'Card Type', 'all-in-one-seo-pack' ),
|
2476 |
|
2477 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:464
|
2478 |
+
__( 'Additional Data', 'all-in-one-seo-pack' ),
|
2479 |
|
2480 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:465
|
2481 |
+
__( 'Enable this option to show additional Twitter data on your posts and pages (i.e., who the post was written by and how long it might take to read the article).', 'all-in-one-seo-pack' ),
|
2482 |
|
2483 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:146
|
2484 |
+
__( 'Which category best describes your website?', 'all-in-one-seo-pack' ),
|
2485 |
|
2486 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:147
|
2487 |
+
__( 'Select a category to help us narrow down the SEO options that work best for you and your site.', 'all-in-one-seo-pack' ),
|
2488 |
|
2489 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:148
|
2490 |
+
__( 'Enter your answer', 'all-in-one-seo-pack' ),
|
2491 |
|
2492 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:153
|
2493 |
+
__( 'Blog', 'all-in-one-seo-pack' ),
|
2494 |
|
2495 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:154
|
2496 |
+
__( 'News Channel', 'all-in-one-seo-pack' ),
|
2497 |
|
2498 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:155
|
2499 |
+
__( 'Online Store', 'all-in-one-seo-pack' ),
|
2500 |
|
2501 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:156
|
2502 |
+
__( 'Small Offline Business', 'all-in-one-seo-pack' ),
|
2503 |
|
2504 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:157
|
2505 |
+
__( 'Corporation', 'all-in-one-seo-pack' ),
|
2506 |
|
2507 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:158
|
2508 |
+
__( 'Portfolio', 'all-in-one-seo-pack' ),
|
2509 |
|
2510 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:160
|
2511 |
+
__( 'Other:', 'all-in-one-seo-pack' ),
|
2512 |
|
2513 |
+
// Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:67
|
2514 |
+
__( 'Complete SEO Checklist', 'all-in-one-seo-pack' ),
|
2515 |
|
2516 |
+
// Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:80
|
2517 |
+
// Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:68
|
2518 |
+
__( 'Refresh Results', 'all-in-one-seo-pack' ),
|
2519 |
|
2520 |
+
// Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:80
|
2521 |
+
__( 'All Items', 'all-in-one-seo-pack' ),
|
2522 |
|
2523 |
+
// Reference: src/vue/pages/setup-wizard/views/Features.vue:126
|
2524 |
+
__( 'The following plugins will be installed: %2$s', 'all-in-one-seo-pack' ),
|
|
|
2525 |
|
2526 |
+
// Reference: src/vue/pages/setup-wizard/views/Features.vue:130
|
2527 |
+
__( 'The following %1$s addons will be installed: %2$s', 'all-in-one-seo-pack' ),
|
|
|
2528 |
|
2529 |
+
// Reference: src/vue/pages/setup-wizard/views/Features.vue:134
|
2530 |
+
__( 'The following plugins and %1$s addons will be installed: %2$s', 'all-in-one-seo-pack' ),
|
2531 |
|
2532 |
+
// Reference: src/vue/pages/setup-wizard/views/Features.vue:82
|
2533 |
+
__( 'Which SEO features do you want to enable?', 'all-in-one-seo-pack' ),
|
2534 |
|
2535 |
+
// Reference: src/vue/pages/setup-wizard/views/Features.vue:86
|
2536 |
+
__( 'We have already selected our recommended features based on your site category, but you can use the following features to fine-tune your site.', 'all-in-one-seo-pack' ),
|
2537 |
|
2538 |
+
// Reference: src/vue/pages/setup-wizard/views/Import.vue:80
|
2539 |
+
__( 'Import data from your current plugins', 'all-in-one-seo-pack' ),
|
2540 |
|
2541 |
+
// Reference: src/vue/pages/setup-wizard/views/Import.vue:81
|
2542 |
+
__( 'We have detected other SEO plugins installed on your website. Select which plugins you would like to import data to %1$s.', 'all-in-one-seo-pack' ),
|
2543 |
|
2544 |
+
// Reference: src/vue/pages/setup-wizard/views/Import.vue:82
|
2545 |
+
__( 'Import Data and Continue', 'all-in-one-seo-pack' ),
|
2546 |
|
2547 |
+
// Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:102
|
2548 |
+
/* Translators: 1 - "Pro". */
|
2549 |
+
__( 'upgrade to %1$s', 'all-in-one-seo-pack' ),
|
2550 |
|
2551 |
+
// Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:128
|
2552 |
+
__( 'To unlock the selected features, please enter your license key below.', 'all-in-one-seo-pack' ),
|
2553 |
|
2554 |
+
// Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:130
|
2555 |
+
/* Translators: 1 - "upgrading to Pro". */
|
2556 |
+
__( 'To unlock the selected features, please %1$s and enter your license key below.', 'all-in-one-seo-pack' ),
|
2557 |
|
2558 |
+
// Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:98
|
2559 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
2560 |
+
__( 'Enter your %1$s License Key', 'all-in-one-seo-pack' ),
|
2561 |
|
2562 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:250
|
2563 |
+
__( 'The way your site is displayed in search results is very important. Take some time to look over these settings and tweak as needed.', 'all-in-one-seo-pack' ),
|
2564 |
|
2565 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:251
|
2566 |
+
__( 'Google Snippet Preview', 'all-in-one-seo-pack' ),
|
2567 |
|
2568 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:252
|
2569 |
+
__( 'Edit Title and Description', 'all-in-one-seo-pack' ),
|
2570 |
|
2571 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:257
|
2572 |
+
__( 'Is the site under construction or live (ready to be indexed)?', 'all-in-one-seo-pack' ),
|
2573 |
|
2574 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:258
|
2575 |
+
__( 'Under Construction', 'all-in-one-seo-pack' ),
|
2576 |
|
2577 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:259
|
2578 |
+
__( 'Live Site', 'all-in-one-seo-pack' ),
|
2579 |
|
2580 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:262
|
2581 |
+
__( 'Do you have multiple authors?', 'all-in-one-seo-pack' ),
|
2582 |
|
2583 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:263
|
2584 |
+
__( 'Redirect attachment pages?', 'all-in-one-seo-pack' ),
|
2585 |
|
2586 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:179
|
2587 |
+
__( 'Setup Site Analyzer + Smart Recommendations', 'all-in-one-seo-pack' ),
|
2588 |
|
2589 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:180
|
2590 |
+
__( 'Get helpful suggestions from %1$s on how to optimize your website content, so you can rank higher in search results.', 'all-in-one-seo-pack' ),
|
2591 |
|
2592 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:181
|
2593 |
+
__( 'Your Email Address', 'all-in-one-seo-pack' ),
|
2594 |
|
2595 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:182
|
2596 |
+
__( 'Your email is needed so you can receive SEO recommendations. This email will also be used to connect your site with our SEO API.', 'all-in-one-seo-pack' ),
|
2597 |
|
2598 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:183
|
2599 |
+
__( 'Get Automatic WordPress Plugin Updates', 'all-in-one-seo-pack' ),
|
2600 |
|
2601 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:184
|
2602 |
+
__( 'Enable automatic updates', 'all-in-one-seo-pack' ),
|
2603 |
|
2604 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:185
|
2605 |
+
__( 'Help make %1$s better for everyone', 'all-in-one-seo-pack' ),
|
2606 |
|
2607 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:186
|
2608 |
+
__( 'Yes, count me in', 'all-in-one-seo-pack' ),
|
2609 |
|
2610 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:187
|
2611 |
+
__( 'Would you like to purchase and install the following features now?', 'all-in-one-seo-pack' ),
|
2612 |
|
2613 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:188
|
2614 |
+
__( 'An upgrade is required to unlock the following features.', 'all-in-one-seo-pack' ),
|
2615 |
|
2616 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:189
|
2617 |
+
__( 'You won\'t have access to this functionality until the extensions have been purchased and installed.', 'all-in-one-seo-pack' ),
|
2618 |
|
2619 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:190
|
2620 |
+
__( 'I\'ll do it later', 'all-in-one-seo-pack' ),
|
2621 |
|
2622 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:191
|
2623 |
+
__( 'Purchase and Install Now', 'all-in-one-seo-pack' ),
|
2624 |
|
2625 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:193
|
2626 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:145
|
2627 |
+
/* Translators: 1 - Opening bold tag. 2 - Closing bold tag. 3 - Opening bold tag. 4 - Percent between 1-100. 5 - Closing bold tag. */
|
2628 |
+
__( '%1$sBonus:%2$s You can upgrade your plan today and %3$ssave %4$s off%5$s (discount auto-applied).', 'all-in-one-seo-pack' ),
|
2629 |
|
2630 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:134
|
2631 |
+
__( 'Congratulations, your site is now SEO ready!', 'all-in-one-seo-pack' ),
|
2632 |
|
2633 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:135
|
2634 |
+
__( 'Finish Setup and Go to the Dashboard', 'all-in-one-seo-pack' ),
|
2635 |
|
2636 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:136
|
2637 |
+
__( 'Here\'s what to do next:', 'all-in-one-seo-pack' ),
|
2638 |
|
2639 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:137
|
2640 |
+
__( 'Join our Community', 'all-in-one-seo-pack' ),
|
2641 |
|
2642 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:138
|
2643 |
+
__( 'Join on Facebook', 'all-in-one-seo-pack' ),
|
2644 |
|
2645 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:139
|
2646 |
+
__( 'Follow on Twitter', 'all-in-one-seo-pack' ),
|
2647 |
|
2648 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:140
|
2649 |
+
__( 'Read our Step By Step Guide to Improve your SEO Rankings', 'all-in-one-seo-pack' ),
|
2650 |
|
2651 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:141
|
2652 |
+
__( 'Watch our Guided Tour of %1$s', 'all-in-one-seo-pack' ),
|
2653 |
|
2654 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:142
|
2655 |
+
__( 'See Advanced Settings', 'all-in-one-seo-pack' ),
|
2656 |
|
2657 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:143
|
2658 |
+
__( 'Setup Webmaster Tools', 'all-in-one-seo-pack' ),
|
2659 |
|
2660 |
+
// Reference: src/vue/pages/setup-wizard/views/Welcome.vue:42
|
2661 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
2662 |
+
__( 'Welcome to the %1$s Setup Wizard!', 'all-in-one-seo-pack' ),
|
2663 |
|
2664 |
+
// Reference: src/vue/pages/setup-wizard/views/Welcome.vue:43
|
2665 |
+
__( '%1$s makes it easy to configure your site\'s SEO settings without the need to hire an expert. And it takes less than 10 minutes too!', 'all-in-one-seo-pack' ),
|
2666 |
|
2667 |
+
// Reference: src/vue/pages/setup-wizard/views/Welcome.vue:44
|
2668 |
+
__( 'Let\'s Get Started', 'all-in-one-seo-pack' ),
|
2669 |
|
2670 |
+
// Reference: src/vue/pages/setup-wizard/views/Welcome.vue:45
|
2671 |
+
__( 'Go back to the Dashboard', 'all-in-one-seo-pack' ),
|
2672 |
|
2673 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:322
|
2674 |
+
__( 'Organization Name', 'all-in-one-seo-pack' ),
|
2675 |
|
2676 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:332
|
2677 |
+
__( 'Default Social Share Image', 'all-in-one-seo-pack' ),
|
2678 |
|
2679 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:333
|
2680 |
+
__( 'Your Social Profiles', 'all-in-one-seo-pack' ),
|
2681 |
|
2682 |
+
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:111
|
2683 |
+
__( 'Enter Competitor URL', 'all-in-one-seo-pack' ),
|
|
|
2684 |
|
2685 |
+
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:112
|
2686 |
+
__( 'Perform in-depth SEO Analysis of your competitor\'s website.', 'all-in-one-seo-pack' ),
|
2687 |
+
|
2688 |
+
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:113
|
2689 |
+
__( 'Analyze', 'all-in-one-seo-pack' ),
|
2690 |
|
2691 |
+
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:114
|
2692 |
+
__( 'Please enter a valid URL.', 'all-in-one-seo-pack' ),
|
2693 |
|
2694 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:77
|
2695 |
+
// Reference: src/vue/components/common/core/SiteScoreDashboard.vue:78
|
2696 |
+
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:131
|
2697 |
+
__( 'The URL provided is invalid.', 'all-in-one-seo-pack' ),
|
2698 |
|
2699 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:79
|
2700 |
+
// Reference: src/vue/components/common/core/SiteScoreDashboard.vue:80
|
2701 |
+
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:133
|
2702 |
+
__( 'We were unable to parse the content for this site.', 'all-in-one-seo-pack' ),
|
2703 |
|
2704 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:82
|
2705 |
+
// Reference: src/vue/components/common/core/SiteScoreDashboard.vue:83
|
2706 |
+
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:136
|
2707 |
+
/* Translators: 1 - The plugin short name ('AIOSEO'). */
|
2708 |
+
__( 'Your site is not connected. Please connect to %1$s, then try again.', 'all-in-one-seo-pack' ),
|
2709 |
|
2710 |
+
// Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:409
|
2711 |
+
__( 'Select which Taxonomies appear in your sitemap. Categories and Tags are excluded by default since these do not support video embedding.', 'all-in-one-seo-pack' ),
|
|
|
2712 |
|
2713 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:16
|
2714 |
+
__( 'HTML Sitemap', 'all-in-one-seo-pack' ),
|
2715 |
|
2716 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:125
|
2717 |
+
__( 'This option will generate a separate RSS Sitemap which can be submitted to Google, Bing and any other search engines that support this type of sitemap. The RSS Sitemap contains an RSS feed of the latest updates to your site content. It is not a full sitemap of all your content.', 'all-in-one-seo-pack' ),
|
2718 |
|
2719 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:130
|
2720 |
+
__( 'Number of Posts', 'all-in-one-seo-pack' ),
|
2721 |
|
2722 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:133
|
2723 |
+
__( 'Open RSS Sitemap', 'all-in-one-seo-pack' ),
|
2724 |
|
2725 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:134
|
2726 |
+
__( 'Allows you to specify the maximum number of posts for the RSS Sitemap. We recommend an amount of 50 posts.', 'all-in-one-seo-pack' ),
|
2727 |
|
2728 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:168
|
2729 |
+
__( 'Reset / Restore Settings', 'all-in-one-seo-pack' ),
|
2730 |
|
2731 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:169
|
2732 |
+
__( 'Select Settings', 'all-in-one-seo-pack' ),
|
2733 |
|
2734 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:170
|
2735 |
+
__( 'Select settings that you would like to reset:', 'all-in-one-seo-pack' ),
|
|
|
2736 |
|
2737 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:171
|
2738 |
+
__( 'Reset Selected Settings to Default', 'all-in-one-seo-pack' ),
|
2739 |
|
2740 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:172
|
2741 |
+
__( 'Your settings have been reset successfully!', 'all-in-one-seo-pack' ),
|
2742 |
|
2743 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:173
|
2744 |
+
__( 'Are you sure you want to reset the selected settings to default?', 'all-in-one-seo-pack' ),
|
2745 |
|
2746 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:175
|
2747 |
+
__( 'This action cannot be undone. Before taking this action, we recommend that you make a %1$sfull website backup first%2$s.', 'all-in-one-seo-pack' ),
|
2748 |
|
2749 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:176
|
2750 |
+
__( 'Yes, I have a backup and want to reset the settings', 'all-in-one-seo-pack' ),
|
|
|
2751 |
|
2752 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:177
|
2753 |
+
__( 'No, I need to make a backup', 'all-in-one-seo-pack' ),
|
2754 |
|
2755 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:178
|
2756 |
+
__( 'Logs', 'all-in-one-seo-pack' ),
|
2757 |
|
2758 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:179
|
2759 |
+
__( 'Bad Bot Blocker Logs', 'all-in-one-seo-pack' ),
|
2760 |
|
2761 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:180
|
2762 |
+
__( 'Cleared', 'all-in-one-seo-pack' ),
|
2763 |
|
2764 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:181
|
2765 |
+
__( 'Clear Bad Bot Blocker Logs', 'all-in-one-seo-pack' ),
|
2766 |
|
2767 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:183
|
2768 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
2769 |
+
__( 'All %1$s Settings', 'all-in-one-seo-pack' ),
|
2770 |
|
2771 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:198
|
2772 |
+
__( 'Robots.txt', 'all-in-one-seo-pack' ),
|
2773 |
|
2774 |
+
// Reference: src/vue/pages/tools/views/HtaccessEditor.vue:41
|
2775 |
+
__( 'Edit .htaccess', 'all-in-one-seo-pack' ),
|
2776 |
|
2777 |
+
// Reference: src/vue/pages/tools/views/HtaccessEditor.vue:43
|
2778 |
+
__( 'This allows you to edit the .htaccess file for your site. All WordPress sites on an Apache server have a .htaccess file and we have provided you with a convenient way of editing it. Care should always be taken when editing important files from within WordPress as an incorrect change could cause WordPress to become inaccessible. %1$sBe sure to make a backup before making changes and ensure that you have FTP access to your web server and know how to access and edit files via FTP.%2$s', 'all-in-one-seo-pack' ),
|
2779 |
|
2780 |
+
// Reference: src/vue/pages/tools/views/ImportExport.vue:36
|
2781 |
+
__( 'Export / Backup Settings', 'all-in-one-seo-pack' ),
|
2782 |
|
2783 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:238
|
2784 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
|
2785 |
+
__( 'The robots.txt editor in %1$s allows you to set up a robots.txt file for your site that will override the default robots.txt file that WordPress creates. By creating a robots.txt file with %2$s you have greater control over the instructions you give web crawlers about your site.', 'all-in-one-seo-pack' ),
|
2786 |
|
2787 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:239
|
2788 |
+
__( 'Just like WordPress, %1$s generates a dynamic file so there is no static file to be found on your server. The content of the robots.txt file is stored in your WordPress database.', 'all-in-one-seo-pack' ),
|
2789 |
|
2790 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:240
|
2791 |
+
__( 'Enable Custom Robots.txt', 'all-in-one-seo-pack' ),
|
|
|
2792 |
|
2793 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:241
|
2794 |
+
__( 'Duplicate or invalid entries have been detected! Please check your rules and try again.', 'all-in-one-seo-pack' ),
|
|
|
2795 |
|
2796 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:242
|
2797 |
+
__( 'User Agent', 'all-in-one-seo-pack' ),
|
2798 |
|
2799 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:243
|
2800 |
+
__( 'Rule', 'all-in-one-seo-pack' ),
|
2801 |
|
2802 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:244
|
2803 |
+
__( 'Directory Path', 'all-in-one-seo-pack' ),
|
2804 |
|
2805 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:245
|
2806 |
+
__( 'Allow', 'all-in-one-seo-pack' ),
|
2807 |
|
2808 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:246
|
2809 |
+
__( 'Disallow', 'all-in-one-seo-pack' ),
|
2810 |
|
2811 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:247
|
2812 |
+
__( 'Add Rule', 'all-in-one-seo-pack' ),
|
2813 |
|
2814 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:248
|
2815 |
+
__( 'Delete Rule', 'all-in-one-seo-pack' ),
|
2816 |
|
2817 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:249
|
2818 |
+
__( 'Robots.txt Preview:', 'all-in-one-seo-pack' ),
|
2819 |
|
2820 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:250
|
2821 |
+
__( 'Open Robots.txt', 'all-in-one-seo-pack' ),
|
2822 |
|
2823 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:252
|
2824 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
|
2825 |
+
__( '%1$s has detected a physical robots.txt file in the root folder of your WordPress installation. We recommend removing this file as it could cause conflicts with WordPress\' dynamically generated one. %2$s can import this file and delete it, or you can simply delete it.', 'all-in-one-seo-pack' ),
|
2826 |
|
2827 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:253
|
2828 |
+
__( 'Import and Delete', 'all-in-one-seo-pack' ),
|
2829 |
|
2830 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:285
|
2831 |
+
/* Translators: 1 - The url to the main site. */
|
2832 |
+
__( 'This site is running in a sub-directory of your main site located at %1$s. Your robots.txt file should only appear in the root directory of that site.', 'all-in-one-seo-pack' ),
|
2833 |
|
2834 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:288
|
2835 |
+
__( 'It looks like you are missing the proper rewrite rules for the robots.txt file.', 'all-in-one-seo-pack' ),
|
2836 |
|
2837 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:292
|
2838 |
+
/* Translators: 1 - Opening link tag. 2 - Closing link tag. */
|
2839 |
+
__( 'It appears that your server is running on Apache, so the fix should be as simple as checking the %1$scorrect .htaccess implementation on wordpress.org%2$s.', 'all-in-one-seo-pack' ),
|
2840 |
|
2841 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:294
|
2842 |
+
__( 'It appears that your server is running on nginx, so the fix will most likely require adding the correct rewrite rules to our nginx configuration. %1$sCheck our documentation for more information%2$s.', 'all-in-one-seo-pack' ),
|
2843 |
|
2844 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:115
|
2845 |
+
__( 'System Status Info', 'all-in-one-seo-pack' ),
|
2846 |
|
2847 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:116
|
2848 |
+
__( 'Download System Info File', 'all-in-one-seo-pack' ),
|
2849 |
|
2850 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:117
|
2851 |
+
__( 'Copy to Clipboard', 'all-in-one-seo-pack' ),
|
2852 |
|
2853 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:118
|
2854 |
+
__( 'Email Debug Information', 'all-in-one-seo-pack' ),
|
2855 |
|
2856 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:119
|
2857 |
+
__( 'Submit', 'all-in-one-seo-pack' ),
|
2858 |
|
2859 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:120
|
2860 |
+
__( 'WordPress', 'all-in-one-seo-pack' ),
|
2861 |
|
2862 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:121
|
2863 |
+
__( 'Server Info', 'all-in-one-seo-pack' ),
|
2864 |
|
2865 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:122
|
2866 |
+
__( 'Active Theme', 'all-in-one-seo-pack' ),
|
2867 |
|
2868 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:123
|
2869 |
+
__( 'Must-Use Plugins', 'all-in-one-seo-pack' ),
|
2870 |
|
2871 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:124
|
2872 |
+
__( 'Active Plugins', 'all-in-one-seo-pack' ),
|
2873 |
|
2874 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:125
|
2875 |
+
__( 'Inactive Plugins', 'all-in-one-seo-pack' ),
|
2876 |
|
2877 |
+
// Reference: src/vue/components/common/core/CopyBlock.vue:48
|
2878 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:126
|
2879 |
+
__( 'Copied!', 'all-in-one-seo-pack' ),
|
2880 |
+
|
2881 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:12
|
2882 |
+
__( 'Open News Sitemap', 'all-in-one-seo-pack' ),
|
2883 |
|
2884 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:15
|
2885 |
+
__( 'Upgrade to Pro and Unlock News Sitemaps', 'all-in-one-seo-pack' ),
|
2886 |
|
2887 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:16
|
2888 |
+
__( 'News Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
2889 |
|
2890 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:8
|
2891 |
+
__( 'Set Publication Name', 'all-in-one-seo-pack' ),
|
2892 |
|
2893 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:9
|
2894 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:8
|
2895 |
+
__( 'Exclude Pages/Posts', 'all-in-one-seo-pack' ),
|
2896 |
|
2897 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:12
|
2898 |
+
__( 'Open Video Sitemap', 'all-in-one-seo-pack' ),
|
2899 |
|
2900 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:15
|
2901 |
+
__( 'Upgrade to Pro and Unlock Video Sitemaps', 'all-in-one-seo-pack' ),
|
2902 |
|
2903 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:16
|
2904 |
+
__( 'Video Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
2905 |
|
2906 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:7
|
2907 |
+
__( 'Custom Field Support', 'all-in-one-seo-pack' ),
|
2908 |
|
2909 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:64
|
2910 |
+
// Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:76
|
2911 |
+
// Reference: src/vue/components/common/core/SiteScoreDashboard.vue:66
|
2912 |
+
__( 'Warnings', 'all-in-one-seo-pack' ),
|
2913 |
|
2914 |
+
// Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:81
|
2915 |
+
__( 'Mobile Snapshot', 'all-in-one-seo-pack' ),
|
2916 |
|
2917 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:57
|
2918 |
+
__( 'Your Overall Site Score', 'all-in-one-seo-pack' ),
|
2919 |
|
2920 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:59
|
2921 |
+
/* Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag. */
|
2922 |
+
__( 'A very good score is between %1$s60 and 80%2$s.', 'all-in-one-seo-pack' ),
|
2923 |
|
2924 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:61
|
2925 |
+
/* Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag. */
|
2926 |
+
__( 'For best results, you should strive for %1$s70 and above%2$s.', 'all-in-one-seo-pack' ),
|
2927 |
|
2928 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:62
|
2929 |
+
// Reference: src/vue/components/common/core/SiteScoreDashboard.vue:64
|
2930 |
+
__( 'An error occurred while analyzing your site.', 'all-in-one-seo-pack' ),
|
2931 |
|
2932 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:68
|
2933 |
+
__( 'Read the Ultimate WordPress SEO Guide', 'all-in-one-seo-pack' ),
|
2934 |
|
2935 |
+
// Reference: src/vue/components/common/core/SiteScore.vue:45
|
2936 |
+
__( 'Analyzing...', 'all-in-one-seo-pack' ),
|
2937 |
|
2938 |
+
// Reference: src/vue/components/common/core/NotificationCards.vue:58
|
2939 |
+
__( 'Great Scott! Where\'d they all go?', 'all-in-one-seo-pack' ),
|
2940 |
|
2941 |
+
// Reference: src/vue/components/common/core/NotificationCards.vue:59
|
2942 |
+
__( 'You have no new notifications.', 'all-in-one-seo-pack' ),
|
2943 |
|
2944 |
+
// Reference: src/vue/components/common/core/NotificationCards.vue:60
|
2945 |
+
__( 'See Dismissed Notifications', 'all-in-one-seo-pack' ),
|
2946 |
|
2947 |
+
// Reference: src/vue/components/common/core/Notifications.vue:94
|
2948 |
+
__( 'Dismissed Notifications', 'all-in-one-seo-pack' ),
|
2949 |
|
2950 |
+
// Reference: src/vue/components/common/core/PostTypeOptions.vue:86
|
2951 |
+
__( 'Label:', 'all-in-one-seo-pack' ),
|
2952 |
|
2953 |
+
// Reference: src/vue/components/common/core/PostTypeOptions.vue:87
|
2954 |
+
__( 'Slug:', 'all-in-one-seo-pack' ),
|
2955 |
|
2956 |
+
// Reference: src/vue/components/common/core/PostTypeOptions.vue:88
|
2957 |
+
__( 'No post types available.', 'all-in-one-seo-pack' ),
|
2958 |
|
2959 |
+
// Reference: src/vue/components/common/core/PostTypeOptions.vue:89
|
2960 |
+
__( 'No taxonomies available.', 'all-in-one-seo-pack' ),
|
2961 |
|
2962 |
+
// Reference: src/vue/components/common/core/PostTypeOptions.vue:90
|
2963 |
+
__( 'All post types are set to noindex or your site does not have any post types registered that are supported by this feature.', 'all-in-one-seo-pack' ),
|
2964 |
|
2965 |
+
// Reference: src/vue/components/common/core/PostTypeOptions.vue:91
|
2966 |
+
__( 'All taxonomies are set to noindex or your site does not have any taxonomies registered that are supported by this feature.', 'all-in-one-seo-pack' ),
|
2967 |
|
2968 |
+
// Reference: src/vue/components/common/core/PriorityScore.vue:67
|
2969 |
+
__( 'Archive Pages', 'all-in-one-seo-pack' ),
|
2970 |
|
2971 |
+
// Reference: src/vue/components/common/core/PriorityScore.vue:68
|
2972 |
+
__( 'Author Pages', 'all-in-one-seo-pack' ),
|
2973 |
|
2974 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:101
|
2975 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:163
|
2976 |
+
__( 'Robots meta:', 'all-in-one-seo-pack' ),
|
2977 |
|
2978 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:102
|
2979 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:164
|
2980 |
+
__( 'Max Snippet', 'all-in-one-seo-pack' ),
|
2981 |
|
2982 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:103
|
2983 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:165
|
2984 |
+
__( 'Max Video Preview', 'all-in-one-seo-pack' ),
|
2985 |
|
2986 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:104
|
2987 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:166
|
2988 |
+
__( 'Max Image Preview', 'all-in-one-seo-pack' ),
|
2989 |
|
2990 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:105
|
2991 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:167
|
2992 |
+
__( 'Standard', 'all-in-one-seo-pack' ),
|
2993 |
|
2994 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:107
|
2995 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:169
|
2996 |
+
__( 'Large', 'all-in-one-seo-pack' ),
|
2997 |
|
2998 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:87
|
2999 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:170
|
3000 |
+
__( 'No Index', 'all-in-one-seo-pack' ),
|
3001 |
|
3002 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:88
|
3003 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:171
|
3004 |
+
__( 'No Follow', 'all-in-one-seo-pack' ),
|
3005 |
|
3006 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:89
|
3007 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:172
|
3008 |
+
__( 'No Archive', 'all-in-one-seo-pack' ),
|
3009 |
|
3010 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:90
|
3011 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:173
|
3012 |
+
__( 'No Translate', 'all-in-one-seo-pack' ),
|
3013 |
|
3014 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:91
|
3015 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:174
|
3016 |
+
__( 'No Image Index', 'all-in-one-seo-pack' ),
|
3017 |
|
3018 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:92
|
3019 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:175
|
3020 |
+
__( 'No Snippet', 'all-in-one-seo-pack' ),
|
3021 |
|
3022 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:93
|
3023 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:176
|
3024 |
+
__( 'No ODP', 'all-in-one-seo-pack' ),
|
3025 |
|
3026 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:96
|
3027 |
+
__( 'No Index Paginated', 'all-in-one-seo-pack' ),
|
3028 |
|
3029 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:97
|
3030 |
+
__( 'No Follow Paginated', 'all-in-one-seo-pack' ),
|
|
|
3031 |
|
3032 |
+
// Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:107
|
3033 |
+
__( 'Advanced SEO', 'all-in-one-seo-pack' ),
|
3034 |
|
3035 |
+
// Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:108
|
3036 |
+
__( 'Performance', 'all-in-one-seo-pack' ),
|
3037 |
|
3038 |
+
// Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:109
|
3039 |
+
__( 'Security', 'all-in-one-seo-pack' ),
|
3040 |
|
3041 |
+
// Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:110
|
3042 |
+
__( 'Keywords:', 'all-in-one-seo-pack' ),
|
|
|
3043 |
|
3044 |
+
// Reference: src/vue/components/common/core/SettingsSeparator.vue:101
|
3045 |
+
__( 'Custom separator:', 'all-in-one-seo-pack' ),
|
3046 |
|
3047 |
+
// Reference: src/vue/components/common/core/SettingsSeparator.vue:102
|
3048 |
+
__( 'Show More', 'all-in-one-seo-pack' ),
|
3049 |
|
3050 |
+
// Reference: src/vue/components/common/core/SettingsSeparator.vue:103
|
3051 |
+
__( 'Show Less', 'all-in-one-seo-pack' ),
|
3052 |
|
3053 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:121
|
3054 |
+
__( 'Your Facebook URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
3055 |
|
3056 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:132
|
3057 |
+
__( 'Your Twitter URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
3058 |
|
3059 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:143
|
3060 |
+
__( 'Your Instagram URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
3061 |
|
3062 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:154
|
3063 |
+
__( 'Your Pinterest URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
|
|
3064 |
|
3065 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:165
|
3066 |
+
__( 'Your YouTube URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
3067 |
|
3068 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:176
|
3069 |
+
__( 'Your LinkedIn URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
3070 |
|
3071 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:187
|
3072 |
+
__( 'Your Tumblr URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
3073 |
|
3074 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:198
|
3075 |
+
__( 'Your Yelp URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
3076 |
|
3077 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:209
|
3078 |
+
__( 'Your SoundCloud URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
3079 |
|
3080 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:220
|
3081 |
+
__( 'Your Wikipedia URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
3082 |
|
3083 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:231
|
3084 |
+
__( 'Your MySpace URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
3085 |
+
|
3086 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:238
|
3087 |
+
__( 'Use the same username for multiple social networks', 'all-in-one-seo-pack' ),
|
3088 |
|
3089 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:239
|
3090 |
+
__( 'Your Username:', 'all-in-one-seo-pack' ),
|
3091 |
|
3092 |
+
// Reference: src/vue/classes/SiteAnalysis.js:102
|
3093 |
+
__( 'No keywords were found in the page title.', 'all-in-one-seo-pack' ),
|
|
|
3094 |
|
3095 |
+
// Reference: src/vue/classes/SiteAnalysis.js:105
|
3096 |
+
__( 'No keywords were found in your meta description.', 'all-in-one-seo-pack' ),
|
|
|
3097 |
|
3098 |
+
// Reference: src/vue/classes/SiteAnalysis.js:106
|
3099 |
+
__( 'No keywords were found in the meta description.', 'all-in-one-seo-pack' ),
|
3100 |
|
3101 |
+
// Reference: src/vue/classes/SiteAnalysis.js:108
|
3102 |
+
__( 'Both the page title and meta description are missing keywords.', 'all-in-one-seo-pack' ),
|
3103 |
|
3104 |
+
// Reference: src/vue/classes/SiteAnalysis.js:112
|
3105 |
+
__( 'One or more keywords were found in the title and description of your page.', 'all-in-one-seo-pack' ),
|
3106 |
|
3107 |
+
// Reference: src/vue/classes/SiteAnalysis.js:113
|
3108 |
+
__( 'One or more keywords were found in the title and description of the page.', 'all-in-one-seo-pack' ),
|
3109 |
|
3110 |
+
// Reference: src/vue/classes/SiteAnalysis.js:129
|
3111 |
+
__( 'You need to use titles and descriptions that are attractive to users and contain your keywords. Use the keywords naturally - keyword stuffing is usually detected and will result in a lower ranking. What\'s more, it\'s pretty off-putting for potential readers, who are more likely to click on an appealing link.', 'all-in-one-seo-pack' ),
|
3112 |
|
3113 |
+
// Reference: src/vue/classes/SiteAnalysis.js:130
|
3114 |
+
__( 'Edit Your Page Title & Description', 'all-in-one-seo-pack' ),
|
|
|
3115 |
|
3116 |
+
// Reference: src/vue/classes/SiteAnalysis.js:139
|
3117 |
+
__( 'No H1 tag was found.', 'all-in-one-seo-pack' ),
|
|
|
3118 |
|
3119 |
+
// Reference: src/vue/classes/SiteAnalysis.js:142
|
3120 |
+
/* Translators: 1 - The number of H1 tags found. */
|
3121 |
+
__( 'For the best SEO results there should be exactly one H1 tag on each page.', 'all-in-one-seo-pack' ),
|
3122 |
|
3123 |
+
// Reference: src/vue/classes/SiteAnalysis.js:142
|
3124 |
+
/* Translators: 1 - The number of H1 tags found. */
|
3125 |
+
__( '%1$d H1 tags were found.', 'all-in-one-seo-pack' ),
|
3126 |
|
3127 |
+
// Reference: src/vue/classes/SiteAnalysis.js:147
|
3128 |
+
__( 'One H1 tag was found on your page.', 'all-in-one-seo-pack' ),
|
3129 |
|
3130 |
+
// Reference: src/vue/classes/SiteAnalysis.js:148
|
3131 |
+
__( 'One H1 tag was found on the page.', 'all-in-one-seo-pack' ),
|
3132 |
|
3133 |
+
// Reference: src/vue/classes/SiteAnalysis.js:154
|
3134 |
+
__( 'WordPress sites usually insert the page or post title as an H1 tag (although custom themes can change this behavior).', 'all-in-one-seo-pack' ),
|
3135 |
|
3136 |
+
// Reference: src/vue/classes/SiteAnalysis.js:154
|
3137 |
+
__( 'Ensure your most important keywords appear in the H1 tag - don\'t force it, use them in a natural way that makes sense to human readers.', 'all-in-one-seo-pack' ),
|
3138 |
|
3139 |
+
// Reference: src/vue/classes/SiteAnalysis.js:154
|
3140 |
+
__( 'Because your headline plays a large role in reader engagement, it\'s worth spending extra time perfecting it. Many top copywriters spend hours getting their headlines just right - sometimes they spend longer on the headline than the rest of the article!', 'all-in-one-seo-pack' ),
|
|
|
3141 |
|
3142 |
+
// Reference: src/vue/classes/SiteAnalysis.js:154
|
3143 |
+
__( 'A good headline stimulates reader interest and offers a compelling reason to read your content. It promises a believable benefit.', 'all-in-one-seo-pack' ),
|
|
|
3144 |
|
3145 |
+
// Reference: src/vue/classes/SiteAnalysis.js:154
|
3146 |
+
__( 'You should write as if your readers are selfish people with short attention spans (because that describes a large percentage of the world\'s population). Readers visit websites for selfish reasons - they\'re not there to make you happy.', 'all-in-one-seo-pack' ),
|
|
|
3147 |
|
3148 |
+
// Reference: src/vue/classes/SiteAnalysis.js:165
|
3149 |
+
__( 'No H2 tags were found on your page.', 'all-in-one-seo-pack' ),
|
3150 |
|
3151 |
+
// Reference: src/vue/classes/SiteAnalysis.js:166
|
3152 |
+
__( 'No H2 tags were found on the page.', 'all-in-one-seo-pack' ),
|
3153 |
|
3154 |
+
// Reference: src/vue/classes/SiteAnalysis.js:170
|
3155 |
+
__( 'H2 tags were found on your page.', 'all-in-one-seo-pack' ),
|
3156 |
|
3157 |
+
// Reference: src/vue/classes/SiteAnalysis.js:171
|
3158 |
+
__( 'H2 tags were found on the page.', 'all-in-one-seo-pack' ),
|
3159 |
|
3160 |
+
// Reference: src/vue/classes/SiteAnalysis.js:177
|
3161 |
+
__( 'Make sure you have a good balance of H2 tags to plain text in your content. Break the content down into logical sections, and use headings to introduce each new topic.', 'all-in-one-seo-pack' ),
|
3162 |
|
3163 |
+
// Reference: src/vue/classes/SiteAnalysis.js:177
|
3164 |
+
__( 'Also, try to include synonyms and relevant terminology in H2 tag text. Search engines are pretty smart - they know which words usually occur together in each niche.', 'all-in-one-seo-pack' ),
|
3165 |
|
3166 |
+
// Reference: src/vue/classes/SiteAnalysis.js:177
|
3167 |
+
__( 'It should be easy to include your main and supporting keywords in the H2 tags - after all, these keywords describe your content! If it\'s hard to work the keywords into your subheadings, it could be a sign that the keywords aren\'t closely related to your content.', 'all-in-one-seo-pack' ),
|
3168 |
|
3169 |
+
// Reference: src/vue/classes/SiteAnalysis.js:177
|
3170 |
+
__( 'Don\'t try to force keywords into sub-headings if they feel unnatural. It will send the wrong message to your readers, possibly driving them away.', 'all-in-one-seo-pack' ),
|
3171 |
|
3172 |
+
// Reference: src/vue/classes/SiteAnalysis.js:188
|
3173 |
+
__( 'Some images on your page have no alt attribute.', 'all-in-one-seo-pack' ),
|
3174 |
|
3175 |
+
// Reference: src/vue/classes/SiteAnalysis.js:189
|
3176 |
+
__( 'Some images on the page have no alt attribute.', 'all-in-one-seo-pack' ),
|
|
|
3177 |
|
3178 |
+
// Reference: src/vue/classes/SiteAnalysis.js:193
|
3179 |
+
__( 'All images on your page have alt attributes.', 'all-in-one-seo-pack' ),
|
|
|
3180 |
|
3181 |
+
// Reference: src/vue/classes/SiteAnalysis.js:194
|
3182 |
+
__( 'All images on the page have alt attributes.', 'all-in-one-seo-pack' ),
|
3183 |
|
3184 |
+
// Reference: src/vue/classes/SiteAnalysis.js:200
|
3185 |
+
__( 'Make sure every image has an alt tag, and add useful descriptions to each image. Add your keywords or synonyms - but do it in a natural way.', 'all-in-one-seo-pack' ),
|
3186 |
|
3187 |
+
// Reference: src/vue/classes/SiteAnalysis.js:211
|
3188 |
+
__( 'No internal links were found on your page.', 'all-in-one-seo-pack' ),
|
3189 |
|
3190 |
+
// Reference: src/vue/classes/SiteAnalysis.js:212
|
3191 |
+
__( 'No internal links were found on the page.', 'all-in-one-seo-pack' ),
|
3192 |
|
3193 |
+
// Reference: src/vue/classes/SiteAnalysis.js:215
|
3194 |
+
__( 'Too few internal links on your page.', 'all-in-one-seo-pack' ),
|
3195 |
|
3196 |
+
// Reference: src/vue/classes/SiteAnalysis.js:216
|
3197 |
+
__( 'Too few internal links on the page.', 'all-in-one-seo-pack' ),
|
3198 |
|
3199 |
+
// Reference: src/vue/classes/SiteAnalysis.js:218
|
3200 |
+
__( 'The ratio of internal links to external links is uneven.', 'all-in-one-seo-pack' ),
|
3201 |
|
3202 |
+
// Reference: src/vue/classes/SiteAnalysis.js:222
|
3203 |
+
__( 'Your page has a correct number of internal and external links.', 'all-in-one-seo-pack' ),
|
3204 |
|
3205 |
+
// Reference: src/vue/classes/SiteAnalysis.js:223
|
3206 |
+
__( 'The page has a correct number of internal and external links.', 'all-in-one-seo-pack' ),
|
3207 |
|
3208 |
+
// Reference: src/vue/classes/SiteAnalysis.js:228
|
3209 |
+
__( 'Internal:', 'all-in-one-seo-pack' ),
|
3210 |
|
3211 |
+
// Reference: src/vue/classes/SiteAnalysis.js:228
|
3212 |
+
__( 'External:', 'all-in-one-seo-pack' ),
|
3213 |
|
3214 |
+
// Reference: src/vue/classes/SiteAnalysis.js:229
|
3215 |
+
__( 'Add links to external resources that are useful for your readers. Make sure you link to high-quality sites - Google penalizes pages that link to "spammy" sites (ones that break the Google webmaster guidelines).', 'all-in-one-seo-pack' ),
|
3216 |
|
3217 |
+
// Reference: src/vue/classes/SiteAnalysis.js:229
|
3218 |
+
__( 'Ideally, the links should be highly relevant to the subject you\'re writing about. It\'s impossible to cover every aspect of a subject on a single page, but your readers may be fascinated by some detail you barely touch on. If you link to a resource where they can learn more, they\'ll be grateful. What\'s more, you\'ll be rewarded with higher rankings!', 'all-in-one-seo-pack' ),
|
3219 |
|
3220 |
+
// Reference: src/vue/classes/SiteAnalysis.js:240
|
3221 |
+
__( 'No canonical link tag found on your page.', 'all-in-one-seo-pack' ),
|
3222 |
|
3223 |
+
// Reference: src/vue/classes/SiteAnalysis.js:241
|
3224 |
+
__( 'No canonical link tag found on the page.', 'all-in-one-seo-pack' ),
|
3225 |
|
3226 |
+
// Reference: src/vue/classes/SiteAnalysis.js:245
|
3227 |
+
__( 'Your page is using the canonical link tag.', 'all-in-one-seo-pack' ),
|
3228 |
|
3229 |
+
// Reference: src/vue/classes/SiteAnalysis.js:246
|
3230 |
+
__( 'The page is using the canonical link tag.', 'all-in-one-seo-pack' ),
|
3231 |
|
3232 |
+
// Reference: src/vue/classes/SiteAnalysis.js:252
|
3233 |
+
__( 'Every page on your site should have a <link> tag with a \'rel="canonical"\' attribute. The link tag should go inside the page\'s head tag, and it should contain the page\'s "correct" URL.', 'all-in-one-seo-pack' ),
|
3234 |
|
3235 |
+
// Reference: src/vue/classes/SiteAnalysis.js:252
|
3236 |
+
__( 'If you\'ve republished an article from another source (such as another site or a different section of your own site) then you need to pick which URL is the "correct" one and use that!', 'all-in-one-seo-pack' ),
|
3237 |
|
3238 |
+
// Reference: src/vue/classes/SiteAnalysis.js:263
|
3239 |
+
__( 'Your page contains a noindex header or meta tag.', 'all-in-one-seo-pack' ),
|
3240 |
|
3241 |
+
// Reference: src/vue/classes/SiteAnalysis.js:264
|
3242 |
+
__( 'The page contains a noindex header or meta tag.', 'all-in-one-seo-pack' ),
|
3243 |
|
3244 |
+
// Reference: src/vue/classes/SiteAnalysis.js:268
|
3245 |
+
__( 'Your page does not contain any noindex header or meta tag.', 'all-in-one-seo-pack' ),
|
3246 |
|
3247 |
+
// Reference: src/vue/classes/SiteAnalysis.js:269
|
3248 |
+
__( 'The page does not contain any noindex header or meta tag.', 'all-in-one-seo-pack' ),
|
3249 |
|
3250 |
+
// Reference: src/vue/classes/SiteAnalysis.js:274
|
3251 |
+
__( 'Only ever use noindex meta tag or header on pages you want to keep out of the reach of search engines!', 'all-in-one-seo-pack' ),
|
3252 |
|
3253 |
+
// Reference: src/vue/classes/SiteAnalysis.js:285
|
3254 |
+
__( 'The www and non-www versions of your URL are not redirected to the same site.', 'all-in-one-seo-pack' ),
|
|
|
3255 |
|
3256 |
+
// Reference: src/vue/classes/SiteAnalysis.js:286
|
3257 |
+
__( 'The www and non-www versions of the URL are not redirected to the same site.', 'all-in-one-seo-pack' ),
|
|
|
3258 |
|
3259 |
+
// Reference: src/vue/classes/SiteAnalysis.js:290
|
3260 |
+
__( 'Both the www and non-www versions of your URL are redirected to the same site.', 'all-in-one-seo-pack' ),
|
|
|
3261 |
|
3262 |
+
// Reference: src/vue/classes/SiteAnalysis.js:291
|
3263 |
+
__( 'Both the www and non-www versions of the URL are redirected to the same site.', 'all-in-one-seo-pack' ),
|
|
|
3264 |
|
3265 |
+
// Reference: src/vue/classes/SiteAnalysis.js:296
|
3266 |
+
__( 'Decide whether you want your site\'s URLs to include a "www", or if you prefer a plain domain name. There are marketing pros and cons for each choice, but neither one is better or worse for SEO purposes - as long as you\'re consistent.', 'all-in-one-seo-pack' ),
|
|
|
3267 |
|
3268 |
+
// Reference: src/vue/classes/SiteAnalysis.js:296
|
3269 |
+
__( 'You should use HTTP redirections (301 permanant redirects) to pass PageRank from the "wrong" URLs to the standard (canonical) ones. That way, your content will still benefit from backlinks if someone makes a mistake and uses the wrong URL.', 'all-in-one-seo-pack' ),
|
|
|
3270 |
|
3271 |
+
// Reference: src/vue/classes/SiteAnalysis.js:30
|
3272 |
+
__( 'We couldn\'t find an SEO Title.', 'all-in-one-seo-pack' ),
|
3273 |
|
3274 |
+
// Reference: src/vue/classes/SiteAnalysis.js:307
|
3275 |
+
__( 'Your robots.txt file is missing or unavailable.', 'all-in-one-seo-pack' ),
|
3276 |
|
3277 |
+
// Reference: src/vue/classes/SiteAnalysis.js:308
|
3278 |
+
__( 'The robots.txt file is missing or unavailable.', 'all-in-one-seo-pack' ),
|
3279 |
|
3280 |
+
// Reference: src/vue/classes/SiteAnalysis.js:327
|
3281 |
+
__( 'Your site has a robots.txt file which includes one or more "disallow" directives.', 'all-in-one-seo-pack' ),
|
3282 |
|
3283 |
+
// Reference: src/vue/classes/SiteAnalysis.js:328
|
3284 |
+
__( 'The site has a robots.txt file which includes one or more "disallow" directives.', 'all-in-one-seo-pack' ),
|
3285 |
|
3286 |
+
// Reference: src/vue/classes/SiteAnalysis.js:332
|
3287 |
+
__( 'Your site has a robots.txt file.', 'all-in-one-seo-pack' ),
|
3288 |
|
3289 |
+
// Reference: src/vue/classes/SiteAnalysis.js:333
|
3290 |
+
__( 'The site has a robots.txt file.', 'all-in-one-seo-pack' ),
|
3291 |
|
3292 |
+
// Reference: src/vue/classes/SiteAnalysis.js:34
|
3293 |
+
/* Translators: 1 - The length of the SEO title as a number. */
|
3294 |
+
__( 'Your SEO title is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
|
3295 |
|
3296 |
+
// Reference: src/vue/classes/SiteAnalysis.js:340
|
3297 |
+
/* Translators: 1 - The Plugin short name ("AIOSEO"). */
|
3298 |
+
__( 'Make sure that you only block parts you don\'t want to be indexed.', 'all-in-one-seo-pack' ),
|
3299 |
|
3300 |
+
// Reference: src/vue/classes/SiteAnalysis.js:340
|
3301 |
+
/* Translators: 1 - The Plugin short name ("AIOSEO"). */
|
3302 |
+
__( 'You can manually create a robots.txt file and upload it to your site\'s web root. A simpler option is to use a plugin for your CMS platform.', 'all-in-one-seo-pack' ),
|
3303 |
|
3304 |
+
// Reference: src/vue/classes/SiteAnalysis.js:340
|
3305 |
+
/* Translators: 1 - The Plugin short name ("AIOSEO"). */
|
3306 |
+
__( '%1$s has a full suite of tools to manage the robots.txt file, along with other related technologies, like XML Sitemaps.', 'all-in-one-seo-pack' ),
|
3307 |
|
3308 |
+
// Reference: src/vue/classes/SiteAnalysis.js:350
|
3309 |
+
__( 'Some Open Graph meta tags are missing.', 'all-in-one-seo-pack' ),
|
3310 |
|
3311 |
+
// Reference: src/vue/classes/SiteAnalysis.js:352
|
3312 |
+
__( 'Duplicate Open Graph meta tags were found.', 'all-in-one-seo-pack' ),
|
3313 |
|
3314 |
+
// Reference: src/vue/classes/SiteAnalysis.js:355
|
3315 |
+
__( 'All the required Open Graph meta tags have been found.', 'all-in-one-seo-pack' ),
|
|
|
3316 |
|
3317 |
+
// Reference: src/vue/classes/SiteAnalysis.js:36
|
3318 |
+
/* Translators: 1 - The length of the SEO title as a number. */
|
3319 |
+
__( 'The SEO title is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
|
3320 |
|
3321 |
+
// Reference: src/vue/classes/SiteAnalysis.js:362
|
3322 |
+
__( 'Insert a customized Open Graph meta tag for each important page on your site. The standard is very well documented - you can learn more from Facebook\'s developer pages.', 'all-in-one-seo-pack' ),
|
3323 |
|
3324 |
+
// Reference: src/vue/classes/SiteAnalysis.js:362
|
3325 |
+
__( '%1$s provides a simple but powerful interface to craft your Open Graph data. You get immediate feedback with an interactive preview, and you don\'t have to mess around with raw HTML markup.', 'all-in-one-seo-pack' ),
|
3326 |
|
3327 |
+
// Reference: src/vue/classes/SiteAnalysis.js:373
|
3328 |
+
__( 'No Schema.org data was found on your page.', 'all-in-one-seo-pack' ),
|
3329 |
|
3330 |
+
// Reference: src/vue/classes/SiteAnalysis.js:374
|
3331 |
+
__( 'No Schema.org data was found on the page.', 'all-in-one-seo-pack' ),
|
3332 |
|
3333 |
+
// Reference: src/vue/classes/SiteAnalysis.js:378
|
3334 |
+
__( 'We found Schema.org data on your page.', 'all-in-one-seo-pack' ),
|
3335 |
|
3336 |
+
// Reference: src/vue/classes/SiteAnalysis.js:379
|
3337 |
+
__( 'We found Schema.org data on the page.', 'all-in-one-seo-pack' ),
|
3338 |
|
3339 |
+
// Reference: src/vue/classes/SiteAnalysis.js:385
|
3340 |
+
/* Translators: 1 - The Plugin short name ("AIOSEO"). */
|
3341 |
+
__( '%1$s makes it extremely easy to add highly relevant Schema.org markup to your site. It has a simple graphical interface, so you don\'t have to get your hands dirty with complex HTML markup.', 'all-in-one-seo-pack' ),
|
3342 |
|
3343 |
+
// Reference: src/vue/classes/SiteAnalysis.js:386
|
3344 |
+
__( 'Edit Your Page', 'all-in-one-seo-pack' ),
|
3345 |
|
3346 |
+
// Reference: src/vue/classes/SiteAnalysis.js:396
|
3347 |
+
__( 'Your server is not using "expires" headers for your images.', 'all-in-one-seo-pack' ),
|
3348 |
|
3349 |
+
// Reference: src/vue/classes/SiteAnalysis.js:397
|
3350 |
+
__( 'The server is not using "expires" headers for the images.', 'all-in-one-seo-pack' ),
|
3351 |
|
3352 |
+
// Reference: src/vue/classes/SiteAnalysis.js:40
|
3353 |
+
/* Translators: 1 - The length of the SEO title as a number. */
|
3354 |
+
__( 'Your SEO title is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
|
3355 |
|
3356 |
+
// Reference: src/vue/classes/SiteAnalysis.js:401
|
3357 |
+
__( 'Your server is using "expires" headers for your images.', 'all-in-one-seo-pack' ),
|
3358 |
|
3359 |
+
// Reference: src/vue/classes/SiteAnalysis.js:402
|
3360 |
+
__( 'The server is using "expires" headers for the images.', 'all-in-one-seo-pack' ),
|
3361 |
|
3362 |
+
// Reference: src/vue/classes/SiteAnalysis.js:407
|
3363 |
+
__( 'If you use the Apache or NGINX web servers, you can edit the configuration files to set the "expires" header for all image files. For Apache, you can also use a ".htaccess" file to change the settings for each folder.', 'all-in-one-seo-pack' ),
|
3364 |
|
3365 |
+
// Reference: src/vue/classes/SiteAnalysis.js:407
|
3366 |
+
__( 'Alternatively, you can use a CMS plugin to simplify the process - it\'s a more user-friendly option. WordPress has a host of caching plugins, and most of them give you options to control the caching headers.', 'all-in-one-seo-pack' ),
|
3367 |
|
3368 |
+
// Reference: src/vue/classes/SiteAnalysis.js:415
|
3369 |
+
__( 'Some Javascript files don\'t seem to be minified.', 'all-in-one-seo-pack' ),
|
3370 |
|
3371 |
+
// Reference: src/vue/classes/SiteAnalysis.js:418
|
3372 |
+
__( 'All Javascript files appear to be minified.', 'all-in-one-seo-pack' ),
|
3373 |
|
3374 |
+
// Reference: src/vue/classes/SiteAnalysis.js:42
|
3375 |
+
/* Translators: 1 - The length of the SEO title as a number. */
|
3376 |
+
__( 'The SEO title is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
|
3377 |
|
3378 |
+
// Reference: src/vue/classes/SiteAnalysis.js:424
|
3379 |
+
__( 'JavaScript files appear in many places, including frameworks (like Bootstrap), themes and templates, and third-party plugins.', 'all-in-one-seo-pack' ),
|
3380 |
|
3381 |
+
// Reference: src/vue/classes/SiteAnalysis.js:424
|
3382 |
+
__( 'We recommend tracking down where the un-minified JavaScript files come from', 'all-in-one-seo-pack' ),
|
3383 |
|
3384 |
+
// Reference: src/vue/classes/SiteAnalysis.js:424
|
3385 |
+
__( 'There are server-side tools (including WordPress plugins) to automatically minify JavaScript files.', 'all-in-one-seo-pack' ),
|
3386 |
|
3387 |
+
// Reference: src/vue/classes/SiteAnalysis.js:432
|
3388 |
+
__( 'Some CSS files don\'t seem to be minified.', 'all-in-one-seo-pack' ),
|
3389 |
|
3390 |
+
// Reference: src/vue/classes/SiteAnalysis.js:435
|
3391 |
+
__( 'All CSS files appear to be minified.', 'all-in-one-seo-pack' ),
|
3392 |
|
3393 |
+
// Reference: src/vue/classes/SiteAnalysis.js:441
|
3394 |
+
__( 'CSS files appear in many places, including frameworks (like Bootstrap), themes and templates, and third-party plugins.', 'all-in-one-seo-pack' ),
|
3395 |
|
3396 |
+
// Reference: src/vue/classes/SiteAnalysis.js:441
|
3397 |
+
__( 'We recommend tracking down where the un-minified CSS files come from.', 'all-in-one-seo-pack' ),
|
3398 |
|
3399 |
+
// Reference: src/vue/classes/SiteAnalysis.js:441
|
3400 |
+
__( 'There are server-side tools (including WordPress plugins) to automatically minify CSS files.', 'all-in-one-seo-pack' ),
|
3401 |
|
3402 |
+
// Reference: src/vue/classes/SiteAnalysis.js:450
|
3403 |
+
/* Translators: 1 - The total number of page requests. */
|
3404 |
+
__( 'Your page makes %1$d requests.', 'all-in-one-seo-pack' ),
|
3405 |
|
3406 |
+
// Reference: src/vue/classes/SiteAnalysis.js:452
|
3407 |
+
/* Translators: 1 - The total number of page requests. */
|
3408 |
+
__( 'The page makes %1$d requests.', 'all-in-one-seo-pack' ),
|
3409 |
|
3410 |
+
// Reference: src/vue/classes/SiteAnalysis.js:454
|
3411 |
+
__( 'More than 20 requests can result in slow page loading.', 'all-in-one-seo-pack' ),
|
3412 |
|
3413 |
+
// Reference: src/vue/classes/SiteAnalysis.js:462
|
3414 |
+
__( 'Images:', 'all-in-one-seo-pack' ),
|
3415 |
|
3416 |
+
// Reference: src/vue/classes/SiteAnalysis.js:462
|
3417 |
+
__( 'JavaScript:', 'all-in-one-seo-pack' ),
|
3418 |
|
3419 |
+
// Reference: src/vue/classes/SiteAnalysis.js:462
|
3420 |
+
__( 'CSS:', 'all-in-one-seo-pack' ),
|
3421 |
|
3422 |
+
// Reference: src/vue/classes/SiteAnalysis.js:463
|
3423 |
+
__( 'Try to replace embedded objects with HTML5 alternatives.', 'all-in-one-seo-pack' ),
|
3424 |
|
3425 |
+
// Reference: src/vue/classes/SiteAnalysis.js:47
|
3426 |
+
/* Translators: 1 - The length of the SEO title as a number. */
|
3427 |
+
__( 'Your SEO title is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
|
3428 |
|
3429 |
+
// Reference: src/vue/classes/SiteAnalysis.js:471
|
3430 |
+
/* Translators: 1 - The total number of page requests. */
|
3431 |
+
__( 'The size of the HTML document is %1$d Kb.', 'all-in-one-seo-pack' ),
|
3432 |
|
3433 |
+
// Reference: src/vue/classes/SiteAnalysis.js:473
|
3434 |
+
__( 'This is over our recommendation of 50 Kb.', 'all-in-one-seo-pack' ),
|
3435 |
|
3436 |
+
// Reference: src/vue/classes/SiteAnalysis.js:477
|
3437 |
+
__( 'This is under the average of 33 Kb.', 'all-in-one-seo-pack' ),
|
3438 |
|
3439 |
+
// Reference: src/vue/classes/SiteAnalysis.js:485
|
3440 |
+
__( 'In order to reduce page size, remove any unnecessary tags from your markup. This includes developer comments, which are invisible to your users - search engines ignore the text in comments, too.', 'all-in-one-seo-pack' ),
|
3441 |
|
3442 |
+
// Reference: src/vue/classes/SiteAnalysis.js:485
|
3443 |
+
__( 'Sometimes inline CSS is a culprit. A little inline CSS can help your page render faster. Too much will bloat the HTML file and increase the page loading time.', 'all-in-one-seo-pack' ),
|
3444 |
|
3445 |
+
// Reference: src/vue/classes/SiteAnalysis.js:485
|
3446 |
+
__( 'You can reduce CSS repetition with HTML class and ID attributes. Often the same rules will be repeated across many page elements, embedded in each tag\'s "style" attribute. You can extract them into a single "style" tag and use classes and ID\'s to target each element.', 'all-in-one-seo-pack' ),
|
3447 |
|
3448 |
+
// Reference: src/vue/classes/SiteAnalysis.js:485
|
3449 |
+
__( 'Removing white space can also have an impact on your HTML page\'s size. White space characters like carriage returns and tabs are ignored by the browser, but they make the markup easier for developers to read. So you should always strip them from your templates or themes before you use them in a production environment.', 'all-in-one-seo-pack' ),
|
3450 |
|
3451 |
+
// Reference: src/vue/classes/SiteAnalysis.js:49
|
3452 |
+
/* Translators: 1 - The length of the SEO title as a number. */
|
3453 |
+
__( 'The SEO title is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
|
3454 |
|
3455 |
+
// Reference: src/vue/classes/SiteAnalysis.js:495
|
3456 |
+
/* Translators: 1 - The total number of page requests. */
|
3457 |
+
__( 'The response time of your page is %1$f seconds. It is recommended to keep it equal to or below 0.2 seconds.', 'all-in-one-seo-pack' ),
|
3458 |
|
3459 |
+
// Reference: src/vue/classes/SiteAnalysis.js:497
|
3460 |
+
/* Translators: 1 - The total number of page requests. */
|
3461 |
+
__( 'The response time of the page is %1$f seconds. It is recommended to keep it equal to or below 0.2 seconds.', 'all-in-one-seo-pack' ),
|
3462 |
|
3463 |
+
// Reference: src/vue/classes/SiteAnalysis.js:501
|
3464 |
+
__( 'Your response time is under 0.2 seconds.', 'all-in-one-seo-pack' ),
|
3465 |
|
3466 |
+
// Reference: src/vue/classes/SiteAnalysis.js:502
|
3467 |
+
__( 'The response time is under 0.2 seconds.', 'all-in-one-seo-pack' ),
|
|
|
3468 |
|
3469 |
+
// Reference: src/vue/classes/SiteAnalysis.js:507
|
3470 |
+
__( 'If you want to continue to improve your response time, the simplest and fastest fix is to use a caching plugin. Caching plugins keep a cached version of each page on your site. Instead of building the page from scratch, the server will send the cached copy.', 'all-in-one-seo-pack' ),
|
3471 |
|
3472 |
+
// Reference: src/vue/classes/SiteAnalysis.js:507
|
3473 |
+
__( 'You can get an even greater boost in speed with a content delivery network service. These services host a copy of your content on multiple servers spread out across the globe. A user\'s request is handled by the edge server that\'s closest to their physical location, so the content arrives incredibly fast.', 'all-in-one-seo-pack' ),
|
3474 |
|
3475 |
+
// Reference: src/vue/classes/SiteAnalysis.js:516
|
3476 |
+
__( 'Plugins from your website are publicly visible.', 'all-in-one-seo-pack' ),
|
3477 |
|
3478 |
+
// Reference: src/vue/classes/SiteAnalysis.js:517
|
3479 |
+
__( 'Plugins from the website are publicly visible.', 'all-in-one-seo-pack' ),
|
3480 |
|
3481 |
+
// Reference: src/vue/classes/SiteAnalysis.js:521
|
3482 |
+
__( 'You have no visible plugins!', 'all-in-one-seo-pack' ),
|
3483 |
|
3484 |
+
// Reference: src/vue/classes/SiteAnalysis.js:522
|
3485 |
+
__( 'There are no visible plugins.', 'all-in-one-seo-pack' ),
|
3486 |
|
3487 |
+
// Reference: src/vue/classes/SiteAnalysis.js:528
|
3488 |
+
__( 'It\'s a great idea to try and hide the plugins you have visible. From time to time vulnerabilities are found in plugins and if your site is not updated in a timely fashion, outdated plugins and themes can be exploited.', 'all-in-one-seo-pack' ),
|
3489 |
|
3490 |
+
// Reference: src/vue/classes/SiteAnalysis.js:538
|
3491 |
+
/* Translators: 1 - The name of the theme. */
|
3492 |
+
__( 'Anyone can see that you are using the %1$s theme.', 'all-in-one-seo-pack' ),
|
3493 |
|
3494 |
+
// Reference: src/vue/classes/SiteAnalysis.js:540
|
3495 |
+
/* Translators: 1 - The name of the theme. */
|
3496 |
+
__( 'Anyone can see that they are using the %1$s theme.', 'all-in-one-seo-pack' ),
|
3497 |
|
3498 |
+
// Reference: src/vue/classes/SiteAnalysis.js:544
|
3499 |
+
__( 'Your theme is not visible!', 'all-in-one-seo-pack' ),
|
3500 |
|
3501 |
+
// Reference: src/vue/classes/SiteAnalysis.js:545
|
3502 |
+
__( 'The theme is not visible.', 'all-in-one-seo-pack' ),
|
3503 |
|
3504 |
+
// Reference: src/vue/classes/SiteAnalysis.js:55
|
3505 |
+
__( 'Ensure your page\'s title includes your target keywords, and design it to encourage users to click.', 'all-in-one-seo-pack' ),
|
3506 |
|
3507 |
+
// Reference: src/vue/classes/SiteAnalysis.js:55
|
3508 |
+
__( 'Writing compelling titles is both a science and an art. There are automated tools that can analyze your title against known metrics for readability and click-worthiness. You also need to understand the psychology of your target audience.', 'all-in-one-seo-pack' ),
|
3509 |
|
3510 |
+
// Reference: src/vue/classes/SiteAnalysis.js:550
|
3511 |
+
__( 'It\'s a great idea to try and hide the theme you have visible. From time to time vulnerabilities are found in themes and if your site is not updated in a timely fashion, outdated plugins and themes can be exploited.', 'all-in-one-seo-pack' ),
|
3512 |
|
3513 |
+
// Reference: src/vue/classes/SiteAnalysis.js:559
|
3514 |
+
__( 'Directory Listing seems to be enabled on your server.', 'all-in-one-seo-pack' ),
|
3515 |
|
3516 |
+
// Reference: src/vue/classes/SiteAnalysis.js:56
|
3517 |
+
__( 'Edit Your Page Title', 'all-in-one-seo-pack' ),
|
3518 |
|
3519 |
+
// Reference: src/vue/classes/SiteAnalysis.js:560
|
3520 |
+
__( 'Directory Listing seems to be enabled on the server.', 'all-in-one-seo-pack' ),
|
3521 |
|
3522 |
+
// Reference: src/vue/classes/SiteAnalysis.js:564
|
3523 |
+
__( 'Directory Listing seems to be disabled on your server.', 'all-in-one-seo-pack' ),
|
3524 |
|
3525 |
+
// Reference: src/vue/classes/SiteAnalysis.js:565
|
3526 |
+
__( 'Directory Listing seems to be disabled on the server.', 'all-in-one-seo-pack' ),
|
3527 |
|
3528 |
+
// Reference: src/vue/classes/SiteAnalysis.js:570
|
3529 |
+
__( 'Fortunately, every popular web server has options to prevent directory listings. They\'ll show a "403 forbidden" message instead.', 'all-in-one-seo-pack' ),
|
3530 |
|
3531 |
+
// Reference: src/vue/classes/SiteAnalysis.js:570
|
3532 |
+
__( 'Alternatively, you can create an empty index.php file and save it in every directory on your site. That\'s an approach that WordPress uses and it works well.', 'all-in-one-seo-pack' ),
|
3533 |
|
3534 |
+
// Reference: src/vue/classes/SiteAnalysis.js:579
|
3535 |
+
__( 'It looks like your site has been added to one of Google\'s malwares lists.', 'all-in-one-seo-pack' ),
|
3536 |
|
3537 |
+
// Reference: src/vue/classes/SiteAnalysis.js:580
|
3538 |
+
__( 'It looks like this site has been added to one of Google\'s malwares lists.', 'all-in-one-seo-pack' ),
|
3539 |
|
3540 |
+
// Reference: src/vue/classes/SiteAnalysis.js:584
|
3541 |
+
__( 'Google has not flagged your site for malware!', 'all-in-one-seo-pack' ),
|
3542 |
|
3543 |
+
// Reference: src/vue/classes/SiteAnalysis.js:585
|
3544 |
+
__( 'Google has not flagged this site for malware.', 'all-in-one-seo-pack' ),
|
3545 |
|
3546 |
+
// Reference: src/vue/classes/SiteAnalysis.js:590
|
3547 |
+
__( 'Google Safe browsing shows warnings and alerts to users if they visit a suspicious website. If you are flagged by Google Safe Browsing, you should take immediate steps to fix that.', 'all-in-one-seo-pack' ),
|
3548 |
|
3549 |
+
// Reference: src/vue/classes/SiteAnalysis.js:599
|
3550 |
+
__( 'Your site is not using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
|
3551 |
|
3552 |
+
// Reference: src/vue/classes/SiteAnalysis.js:600
|
3553 |
+
__( 'The site is not using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
|
3554 |
|
3555 |
+
// Reference: src/vue/classes/SiteAnalysis.js:604
|
3556 |
+
__( 'Your site is using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
|
3557 |
|
3558 |
+
// Reference: src/vue/classes/SiteAnalysis.js:605
|
3559 |
+
__( 'The site is using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
|
3560 |
|
3561 |
+
// Reference: src/vue/classes/SiteAnalysis.js:610
|
3562 |
+
__( 'If you aren\'t using an SSL certificate for your site that means you are losing a lot of potential traffic. We recommend getting an SSL certificate installed immediately.', 'all-in-one-seo-pack' ),
|
3563 |
|
3564 |
+
// Reference: src/vue/classes/SiteAnalysis.js:66
|
3565 |
+
__( 'No meta description was found for your page.', 'all-in-one-seo-pack' ),
|
3566 |
|
3567 |
+
// Reference: src/vue/classes/SiteAnalysis.js:67
|
3568 |
+
__( 'No meta description was found for the page.', 'all-in-one-seo-pack' ),
|
3569 |
|
3570 |
+
// Reference: src/vue/classes/SiteAnalysis.js:71
|
3571 |
+
/* Translators: 1 - The length of the meta description as a number. */
|
3572 |
+
__( 'Your meta description is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
|
3573 |
|
3574 |
+
// Reference: src/vue/classes/SiteAnalysis.js:73
|
3575 |
+
/* Translators: 1 - The length of the meta description as a number. */
|
3576 |
+
__( 'The meta description is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
|
3577 |
|
3578 |
+
// Reference: src/vue/classes/SiteAnalysis.js:77
|
3579 |
+
/* Translators: 1 - The length of the meta description as a number. */
|
3580 |
+
__( 'Your meta description is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
|
3581 |
|
3582 |
+
// Reference: src/vue/classes/SiteAnalysis.js:79
|
3583 |
+
/* Translators: 1 - The length of the meta description as a number. */
|
3584 |
+
__( 'The meta description is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
|
3585 |
|
3586 |
+
// Reference: src/vue/classes/SiteAnalysis.js:84
|
3587 |
+
/* Translators: 1 - The length of the meta description as a number. */
|
3588 |
+
__( 'Your meta description is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
|
3589 |
|
3590 |
+
// Reference: src/vue/classes/SiteAnalysis.js:86
|
3591 |
+
/* Translators: 1 - The length of the meta description as a number. */
|
3592 |
+
__( 'The meta description is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
|
3593 |
|
3594 |
+
// Reference: src/vue/classes/SiteAnalysis.js:92
|
3595 |
+
__( 'Write a meta description for your page. Use your target keywords (in a natural way) and write with human readers in mind. Summarize the content - describe the topics your article discusses.', 'all-in-one-seo-pack' ),
|
3596 |
|
3597 |
+
// Reference: src/vue/classes/SiteAnalysis.js:92
|
3598 |
+
__( 'The description should stimulate reader interest and get them to click on the article. Think of it as a mini-advertisement for your content.', 'all-in-one-seo-pack' ),
|
3599 |
|
3600 |
+
// Reference: src/vue/classes/SiteAnalysis.js:93
|
3601 |
+
__( 'Edit Your Meta Description', 'all-in-one-seo-pack' ),
|
3602 |
|
3603 |
+
// Reference: src/vue/components/common/core/Main.vue:72
|
3604 |
+
// Reference: src/vue/components/common/core/MainTabs.vue:161
|
3605 |
+
__( 'Save Changes', 'all-in-one-seo-pack' ),
|
3606 |
|
3607 |
+
// Reference: src/vue/components/common/core/Notification.vue:100
|
3608 |
+
__( 'a minute ago', 'all-in-one-seo-pack' ),
|
3609 |
|
3610 |
+
// Reference: src/vue/components/common/core/Notification.vue:101
|
3611 |
+
__( 'minutes ago', 'all-in-one-seo-pack' ),
|
3612 |
|
3613 |
+
// Reference: src/vue/components/common/core/Notification.vue:102
|
3614 |
+
__( 'a day ago', 'all-in-one-seo-pack' ),
|
3615 |
|
3616 |
+
// Reference: src/vue/components/common/core/Notification.vue:103
|
3617 |
+
__( 'days ago', 'all-in-one-seo-pack' ),
|
3618 |
|
3619 |
+
// Reference: src/vue/components/common/core/Notification.vue:104
|
3620 |
+
__( 'a month ago', 'all-in-one-seo-pack' ),
|
3621 |
|
3622 |
+
// Reference: src/vue/components/common/core/Notification.vue:105
|
3623 |
+
__( 'months ago', 'all-in-one-seo-pack' ),
|
|
|
3624 |
|
3625 |
+
// Reference: src/vue/components/common/core/Notification.vue:106
|
3626 |
+
__( 'a year ago', 'all-in-one-seo-pack' ),
|
3627 |
|
3628 |
+
// Reference: src/vue/components/common/core/Notification.vue:107
|
3629 |
+
__( 'years ago', 'all-in-one-seo-pack' ),
|
3630 |
|
3631 |
+
// Reference: src/vue/components/common/core/Notification.vue:79
|
3632 |
+
__( 'Dismiss', 'all-in-one-seo-pack' ),
|
3633 |
|
3634 |
+
// Reference: src/vue/components/common/core/Notification.vue:99
|
3635 |
+
__( 'a few seconds ago', 'all-in-one-seo-pack' ),
|
3636 |
|
3637 |
+
// Reference: src/vue/components/common/core/FeatureCard.vue:122
|
3638 |
+
// Reference: src/vue/components/common/core/Help.vue:137
|
3639 |
+
__( 'Upgrade to Pro', 'all-in-one-seo-pack' ),
|
3640 |
|
3641 |
+
// Reference: src/vue/components/common/core/FeatureCard.vue:123
|
3642 |
+
__( 'Upgrade Your Plan', 'all-in-one-seo-pack' ),
|
3643 |
|
3644 |
+
// Reference: src/vue/components/common/core/GettingStarted.vue:83
|
3645 |
+
__( 'How to Get Started', 'all-in-one-seo-pack' ),
|
3646 |
|
3647 |
+
// Reference: src/vue/components/common/core/GettingStarted.vue:85
|
3648 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
3649 |
+
__( 'Welcome to %1$s', 'all-in-one-seo-pack' ),
|
3650 |
|
3651 |
+
// Reference: src/vue/components/common/core/GettingStarted.vue:87
|
3652 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
3653 |
+
__( 'Thank you for choosing the best WordPress SEO plugin. %1$s default settings works great out of the box. We created the setup wizard to guide you through some important configuration settings & custom-tailored SEO best practices for your site to help you improve rankings.', 'all-in-one-seo-pack' ),
|
3654 |
+
|
3655 |
+
// Reference: src/vue/components/common/core/GettingStarted.vue:88
|
3656 |
+
__( 'Launch the Setup Wizard', 'all-in-one-seo-pack' ),
|
3657 |
|
3658 |
+
// Reference: src/vue/components/common/core/GettingStarted.vue:89
|
3659 |
+
__( 'Read the Setup Guide', 'all-in-one-seo-pack' ),
|
3660 |
|
3661 |
+
// Reference: src/vue/components/common/core/Help.vue:126
|
3662 |
+
__( 'Close', 'all-in-one-seo-pack' ),
|
3663 |
|
3664 |
+
// Reference: src/vue/components/common/core/Help.vue:127
|
3665 |
+
__( 'Search', 'all-in-one-seo-pack' ),
|
3666 |
|
3667 |
+
// Reference: src/vue/components/common/core/Help.vue:128
|
3668 |
+
__( 'View All', 'all-in-one-seo-pack' ),
|
3669 |
|
3670 |
+
// Reference: src/vue/components/common/core/Help.vue:129
|
3671 |
+
__( 'Docs', 'all-in-one-seo-pack' ),
|
3672 |
|
3673 |
+
// Reference: src/vue/components/common/core/Help.vue:130
|
3674 |
+
__( 'View Documentation', 'all-in-one-seo-pack' ),
|
3675 |
|
3676 |
+
// Reference: src/vue/components/common/core/Help.vue:132
|
3677 |
+
/* Translators: 1 - The plugin short name ("AIOEO"). */
|
3678 |
+
__( 'Browse documentation, reference material, and tutorials for %1$s.', 'all-in-one-seo-pack' ),
|
3679 |
|
3680 |
+
// Reference: src/vue/components/common/core/Help.vue:133
|
3681 |
+
__( 'View All Documentation', 'all-in-one-seo-pack' ),
|
3682 |
|
3683 |
+
// Reference: src/vue/components/common/core/Help.vue:134
|
3684 |
+
__( 'Get Support', 'all-in-one-seo-pack' ),
|
3685 |
|
3686 |
+
// Reference: src/vue/components/common/core/Help.vue:135
|
3687 |
+
__( 'Submit a ticket and our world class support team will be in touch soon.', 'all-in-one-seo-pack' ),
|
3688 |
|
3689 |
+
// Reference: src/vue/components/common/core/Help.vue:136
|
3690 |
+
__( 'Submit a Support Ticket', 'all-in-one-seo-pack' ),
|
3691 |
|
3692 |
+
// Reference: src/vue/components/common/core/HtmlTagsEditor.vue:98
|
3693 |
+
__( 'Click on the tags below to insert variables into your template.', 'all-in-one-seo-pack' ),
|
3694 |
|
3695 |
+
// Reference: src/vue/components/common/core/HtmlTagsEditor.vue:99
|
3696 |
+
__( 'View all tags', 'all-in-one-seo-pack' ),
|
3697 |
|
3698 |
+
// Reference: src/vue/components/common/core/CopyBlock.vue:48
|
3699 |
+
__( 'Click to Copy', 'all-in-one-seo-pack' ),
|
3700 |
|
3701 |
+
// Reference: src/vue/components/common/core/ExcludePosts.vue:100
|
3702 |
+
__( 'No results found for that title. Try again!', 'all-in-one-seo-pack' ),
|
3703 |
|
3704 |
+
// Reference: src/vue/components/common/core/ExcludePosts.vue:101
|
3705 |
+
__( 'Clear', 'all-in-one-seo-pack' ),
|
3706 |
|
3707 |
+
// Reference: src/vue/components/common/core/ExcludePosts.vue:102
|
3708 |
+
__( 'ID', 'all-in-one-seo-pack' ),
|
|
|
3709 |
|
3710 |
+
// Reference: src/vue/components/common/core/ExcludePosts.vue:103
|
3711 |
+
__( 'Type', 'all-in-one-seo-pack' ),
|
3712 |
|
3713 |
+
// Reference: src/vue/components/common/core/ExcludePosts.vue:98
|
3714 |
+
__( 'Type to search...', 'all-in-one-seo-pack' ),
|
3715 |
|
3716 |
+
// Reference: src/vue/components/common/core/ExcludePosts.vue:99
|
3717 |
+
__( 'Begin typing a title to search...', 'all-in-one-seo-pack' ),
|
|
|
3718 |
|
3719 |
+
// Reference: src/vue/components/common/core/AdditionalPages.vue:100
|
3720 |
+
__( 'Last Modified', 'all-in-one-seo-pack' ),
|
3721 |
|
3722 |
+
// Reference: src/vue/components/common/core/AdditionalPages.vue:102
|
3723 |
+
__( 'Add New', 'all-in-one-seo-pack' ),
|
3724 |
|
3725 |
+
// Reference: src/vue/components/common/core/AdditionalPages.vue:103
|
3726 |
+
// Reference: src/vue/plugins/constants.js:19
|
3727 |
+
__( 'always', 'all-in-one-seo-pack' ),
|
3728 |
|
3729 |
+
// Reference: src/vue/components/common/core/AdditionalPages.vue:96
|
3730 |
+
/* Translators: 1 - An example URL (e.g. https://aioseo.com/example). */
|
3731 |
+
__( 'Enter a page URL, e.g. %1$s', 'all-in-one-seo-pack' ),
|
3732 |
|
3733 |
+
// Reference: src/vue/components/common/core/AdditionalPages.vue:97
|
3734 |
+
__( 'Page URL', 'all-in-one-seo-pack' ),
|
3735 |
|
3736 |
+
// Reference: src/vue/components/common/base/Editor.vue:122
|
3737 |
+
__( 'Search for an item...', 'all-in-one-seo-pack' ),
|
3738 |
|
3739 |
+
// Reference: src/vue/components/common/base/Editor.vue:123
|
3740 |
+
__( 'Enter a custom field name...', 'all-in-one-seo-pack' ),
|
3741 |
|
3742 |
+
// Reference: src/vue/plugins/constants.js:1041
|
3743 |
+
__( 'Manually Enter Type', 'all-in-one-seo-pack' ),
|
3744 |
|
3745 |
+
// Reference: src/vue/plugins/constants.js:1043
|
3746 |
+
__( 'Technical Support', 'all-in-one-seo-pack' ),
|
3747 |
|
3748 |
+
// Reference: src/vue/plugins/constants.js:1044
|
3749 |
+
__( 'Billing Support', 'all-in-one-seo-pack' ),
|
3750 |
|
3751 |
+
// Reference: src/vue/plugins/constants.js:1045
|
3752 |
+
__( 'Bill Payment', 'all-in-one-seo-pack' ),
|
3753 |
|
3754 |
+
// Reference: src/vue/plugins/constants.js:1046
|
3755 |
+
__( 'Sales', 'all-in-one-seo-pack' ),
|
|
|
3756 |
|
3757 |
+
// Reference: src/vue/plugins/constants.js:1047
|
3758 |
+
__( 'Reservations', 'all-in-one-seo-pack' ),
|
|
|
3759 |
|
3760 |
+
// Reference: src/vue/plugins/constants.js:1048
|
3761 |
+
__( 'Credit Card Support', 'all-in-one-seo-pack' ),
|
3762 |
|
3763 |
+
// Reference: src/vue/plugins/constants.js:1049
|
3764 |
+
__( 'Emergency', 'all-in-one-seo-pack' ),
|
|
|
3765 |
|
3766 |
+
// Reference: src/vue/plugins/constants.js:1050
|
3767 |
+
__( 'Bagage Tracking', 'all-in-one-seo-pack' ),
|
|
|
3768 |
|
3769 |
+
// Reference: src/vue/plugins/constants.js:1051
|
3770 |
+
__( 'Roadside Assistance', 'all-in-one-seo-pack' ),
|
|
|
3771 |
|
3772 |
+
// Reference: src/vue/plugins/constants.js:1052
|
3773 |
+
__( 'Package Tracking', 'all-in-one-seo-pack' ),
|
3774 |
|
3775 |
+
// Reference: src/vue/plugins/constants.js:1059
|
3776 |
+
__( 'Sitemaps are a list of all your content that search engines use when they crawl your site.', 'all-in-one-seo-pack' ),
|
3777 |
|
3778 |
+
// Reference: src/vue/plugins/constants.js:1069
|
3779 |
+
__( 'Optimized Search Appearance', 'all-in-one-seo-pack' ),
|
3780 |
|
3781 |
+
// Reference: src/vue/plugins/constants.js:1070
|
3782 |
+
__( 'Get all the right tools to make sure your website shows up in Google Search.', 'all-in-one-seo-pack' ),
|
3783 |
|
3784 |
+
// Reference: src/vue/plugins/constants.js:1078
|
3785 |
+
__( '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' ),
|
3786 |
|
3787 |
+
// Reference: src/vue/plugins/constants.js:1085
|
3788 |
+
__( 'Breadcrumbs', 'all-in-one-seo-pack' ),
|
3789 |
|
3790 |
+
// Reference: src/vue/plugins/constants.js:1094
|
3791 |
+
__( 'Globally control Title and Alt attributes for attachment pages and images that are embedded in your content.', 'all-in-one-seo-pack' ),
|
3792 |
|
3793 |
+
// Reference: src/vue/plugins/constants.js:1105
|
3794 |
+
__( 'Tell Google about your business for display as a Knowledge Graph card or business carousel.', 'all-in-one-seo-pack' ),
|
3795 |
|
3796 |
+
// Reference: src/vue/plugins/constants.js:1116
|
3797 |
+
__( 'Generate an XML Sitemap specifically for video content on your site.', 'all-in-one-seo-pack' ),
|
3798 |
|
3799 |
+
// Reference: src/vue/plugins/constants.js:1127
|
3800 |
+
__( 'Submit articles to Google News that were published in the last 48 hours.', 'all-in-one-seo-pack' ),
|
3801 |
|
3802 |
+
// Reference: src/vue/plugins/constants.js:1137
|
3803 |
+
__( 'Smart Redirects + 404 Detection', 'all-in-one-seo-pack' ),
|
3804 |
|
3805 |
+
// Reference: src/vue/plugins/constants.js:1145
|
3806 |
+
__( 'Internal Link Building Assistant', 'all-in-one-seo-pack' ),
|
|
|
3807 |
|
3808 |
+
// Reference: src/vue/plugins/constants.js:1153
|
3809 |
+
__( 'Advanced Rich Snippets + Schema Markups', 'all-in-one-seo-pack' ),
|
3810 |
|
3811 |
+
// Reference: src/vue/plugins/constants.js:1164
|
3812 |
+
__( 'Activities', 'all-in-one-seo-pack' ),
|
3813 |
|
3814 |
+
// Reference: src/vue/plugins/constants.js:1166
|
3815 |
+
__( 'Activity', 'all-in-one-seo-pack' ),
|
3816 |
|
3817 |
+
// Reference: src/vue/plugins/constants.js:1167
|
3818 |
+
__( 'Sport', 'all-in-one-seo-pack' ),
|
3819 |
|
3820 |
+
// Reference: src/vue/plugins/constants.js:1171
|
3821 |
+
__( 'Businesses', 'all-in-one-seo-pack' ),
|
3822 |
|
3823 |
+
// Reference: src/vue/plugins/constants.js:1173
|
3824 |
+
__( 'Bar', 'all-in-one-seo-pack' ),
|
3825 |
|
3826 |
+
// Reference: src/vue/plugins/constants.js:1174
|
3827 |
+
__( 'Company', 'all-in-one-seo-pack' ),
|
|
|
3828 |
|
3829 |
+
// Reference: src/vue/plugins/constants.js:1175
|
3830 |
+
__( 'Cafe', 'all-in-one-seo-pack' ),
|
|
|
3831 |
|
3832 |
+
// Reference: src/vue/plugins/constants.js:1176
|
3833 |
+
__( 'Hotel', 'all-in-one-seo-pack' ),
|
3834 |
|
3835 |
+
// Reference: src/vue/plugins/constants.js:1177
|
3836 |
+
__( 'Restaurant', 'all-in-one-seo-pack' ),
|
|
|
3837 |
|
3838 |
+
// Reference: src/vue/plugins/constants.js:1181
|
3839 |
+
__( 'Groups', 'all-in-one-seo-pack' ),
|
|
|
3840 |
|
3841 |
+
// Reference: src/vue/plugins/constants.js:1184
|
3842 |
+
/* Translators: This refers to a charity/non-profit organization. */
|
3843 |
+
__( 'Cause', 'all-in-one-seo-pack' ),
|
3844 |
|
3845 |
+
// Reference: src/vue/plugins/constants.js:1185
|
3846 |
+
__( 'Sports League', 'all-in-one-seo-pack' ),
|
|
|
3847 |
|
3848 |
+
// Reference: src/vue/plugins/constants.js:1186
|
3849 |
+
__( 'Sports Team', 'all-in-one-seo-pack' ),
|
|
|
3850 |
|
3851 |
+
// Reference: src/vue/plugins/constants.js:1190
|
3852 |
+
__( 'Organizations', 'all-in-one-seo-pack' ),
|
3853 |
|
3854 |
+
// Reference: src/vue/plugins/constants.js:1193
|
3855 |
+
/* Translators: This refers to a music group. */
|
3856 |
+
__( 'Band', 'all-in-one-seo-pack' ),
|
3857 |
|
3858 |
+
// Reference: src/vue/plugins/constants.js:1194
|
3859 |
+
__( 'Non-Profit', 'all-in-one-seo-pack' ),
|
|
|
3860 |
|
3861 |
+
// Reference: src/vue/plugins/constants.js:1195
|
3862 |
+
__( 'School', 'all-in-one-seo-pack' ),
|
3863 |
|
3864 |
+
// Reference: src/vue/plugins/constants.js:1196
|
3865 |
+
__( 'University', 'all-in-one-seo-pack' ),
|
|
|
3866 |
|
3867 |
+
// Reference: src/vue/plugins/constants.js:1200
|
3868 |
+
__( 'People', 'all-in-one-seo-pack' ),
|
|
|
3869 |
|
3870 |
+
// Reference: src/vue/plugins/constants.js:1202
|
3871 |
+
__( 'Actor', 'all-in-one-seo-pack' ),
|
3872 |
|
3873 |
+
// Reference: src/vue/plugins/constants.js:1203
|
3874 |
+
__( 'Athlete', 'all-in-one-seo-pack' ),
|
|
|
3875 |
|
3876 |
+
// Reference: src/vue/plugins/constants.js:1205
|
3877 |
+
__( 'Director', 'all-in-one-seo-pack' ),
|
|
|
3878 |
|
3879 |
+
// Reference: src/vue/plugins/constants.js:1206
|
3880 |
+
__( 'Musician', 'all-in-one-seo-pack' ),
|
3881 |
|
3882 |
+
// Reference: src/vue/plugins/constants.js:1207
|
3883 |
+
__( 'Politician', 'all-in-one-seo-pack' ),
|
3884 |
|
3885 |
+
// Reference: src/vue/plugins/constants.js:1208
|
3886 |
+
__( 'Profile', 'all-in-one-seo-pack' ),
|
|
|
3887 |
|
3888 |
+
// Reference: src/vue/plugins/constants.js:1209
|
3889 |
+
__( 'Public Figure', 'all-in-one-seo-pack' ),
|
|
|
3890 |
|
3891 |
+
// Reference: src/vue/plugins/constants.js:1213
|
3892 |
+
__( 'Places', 'all-in-one-seo-pack' ),
|
3893 |
|
3894 |
+
// Reference: src/vue/plugins/constants.js:1215
|
3895 |
+
__( 'City', 'all-in-one-seo-pack' ),
|
|
|
3896 |
|
3897 |
+
// Reference: src/vue/plugins/constants.js:1216
|
3898 |
+
__( 'Country', 'all-in-one-seo-pack' ),
|
3899 |
|
3900 |
+
// Reference: src/vue/plugins/constants.js:1217
|
3901 |
+
__( 'Landmark', 'all-in-one-seo-pack' ),
|
|
|
3902 |
|
3903 |
+
// Reference: src/vue/plugins/constants.js:1218
|
3904 |
+
__( 'State/Province', 'all-in-one-seo-pack' ),
|
3905 |
|
3906 |
+
// Reference: src/vue/plugins/constants.js:1222
|
3907 |
+
__( 'Products & Entertainment', 'all-in-one-seo-pack' ),
|
|
|
3908 |
|
3909 |
+
// Reference: src/vue/plugins/constants.js:1224
|
3910 |
+
__( 'Album', 'all-in-one-seo-pack' ),
|
3911 |
|
3912 |
+
// Reference: src/vue/plugins/constants.js:1225
|
3913 |
+
__( 'Book', 'all-in-one-seo-pack' ),
|
|
|
3914 |
|
3915 |
+
// Reference: src/vue/plugins/constants.js:1226
|
3916 |
+
__( 'Drink', 'all-in-one-seo-pack' ),
|
3917 |
|
3918 |
+
// Reference: src/vue/plugins/constants.js:1227
|
3919 |
+
__( 'Food', 'all-in-one-seo-pack' ),
|
|
|
3920 |
|
3921 |
+
// Reference: src/vue/plugins/constants.js:1228
|
3922 |
+
__( 'Game', 'all-in-one-seo-pack' ),
|
3923 |
|
3924 |
+
// Reference: src/vue/plugins/constants.js:1229
|
3925 |
+
__( 'Movie', 'all-in-one-seo-pack' ),
|
|
|
3926 |
|
3927 |
+
// Reference: src/vue/plugins/constants.js:1230
|
3928 |
+
__( 'Product', 'all-in-one-seo-pack' ),
|
3929 |
|
3930 |
+
// Reference: src/vue/plugins/constants.js:1231
|
3931 |
+
__( 'Song', 'all-in-one-seo-pack' ),
|
|
|
3932 |
|
3933 |
+
// Reference: src/vue/plugins/constants.js:1232
|
3934 |
+
__( 'TV Show', 'all-in-one-seo-pack' ),
|
3935 |
|
3936 |
+
// Reference: src/vue/plugins/constants.js:1233
|
3937 |
+
__( 'Episode', 'all-in-one-seo-pack' ),
|
|
|
3938 |
|
3939 |
+
// Reference: src/vue/plugins/constants.js:1237
|
3940 |
+
__( 'Websites', 'all-in-one-seo-pack' ),
|
3941 |
|
3942 |
+
// Reference: src/vue/plugins/constants.js:1240
|
3943 |
+
__( 'Website', 'all-in-one-seo-pack' ),
|
|
|
3944 |
|
3945 |
+
// Reference: src/vue/plugins/constants.js:20
|
3946 |
+
__( 'hourly', 'all-in-one-seo-pack' ),
|
3947 |
|
3948 |
+
// Reference: src/vue/plugins/constants.js:21
|
3949 |
+
__( 'daily', 'all-in-one-seo-pack' ),
|
|
|
3950 |
|
3951 |
+
// Reference: src/vue/plugins/constants.js:22
|
3952 |
+
__( 'weekly', 'all-in-one-seo-pack' ),
|
3953 |
|
3954 |
+
// Reference: src/vue/plugins/constants.js:23
|
3955 |
+
__( 'monthly', 'all-in-one-seo-pack' ),
|
3956 |
|
3957 |
+
// Reference: src/vue/plugins/constants.js:24
|
3958 |
+
__( 'yearly', 'all-in-one-seo-pack' ),
|
3959 |
|
3960 |
+
// Reference: src/vue/plugins/constants.js:25
|
3961 |
+
__( 'never', 'all-in-one-seo-pack' ),
|
3962 |
|
3963 |
+
// Reference: src/vue/plugins/constants.js:29
|
3964 |
+
__( 'No', 'all-in-one-seo-pack' ),
|
3965 |
|
3966 |
+
// Reference: src/vue/plugins/constants.js:30
|
3967 |
+
__( 'Yes', 'all-in-one-seo-pack' ),
|
3968 |
|
3969 |
+
// Reference: src/vue/plugins/constants.js:31
|
3970 |
+
__( 'Off', 'all-in-one-seo-pack' ),
|
3971 |
|
3972 |
+
// Reference: src/vue/plugins/constants.js:32
|
3973 |
+
__( 'On', 'all-in-one-seo-pack' ),
|
3974 |
|
3975 |
+
// Reference: src/vue/plugins/constants.js:33
|
3976 |
+
__( 'Show', 'all-in-one-seo-pack' ),
|
3977 |
|
3978 |
+
// Reference: src/vue/plugins/constants.js:34
|
3979 |
+
__( 'Hide', 'all-in-one-seo-pack' ),
|
3980 |
|
3981 |
+
// Reference: src/vue/plugins/constants.js:35
|
3982 |
+
__( 'Learn More', 'all-in-one-seo-pack' ),
|
|
|
3983 |
|
3984 |
+
// Reference: src/vue/plugins/constants.js:36
|
3985 |
+
__( 'Disabled', 'all-in-one-seo-pack' ),
|
3986 |
|
3987 |
+
// Reference: src/vue/plugins/constants.js:37
|
3988 |
+
__( 'Enabled', 'all-in-one-seo-pack' ),
|
3989 |
|
3990 |
+
// Reference: src/vue/plugins/constants.js:38
|
3991 |
+
__( 'Preview', 'all-in-one-seo-pack' ),
|
3992 |
|
3993 |
+
// Reference: src/vue/utils/tags.js:64
|
3994 |
+
__( 'Product Short Description', 'all-in-one-seo-pack' ),
|
3995 |
|
3996 |
+
// Reference: src/vue/utils/tags.js:65
|
3997 |
+
__( 'A short description for your product.', 'all-in-one-seo-pack' ),
|
3998 |
|
3999 |
+
// Reference: src/vue/utils/tags.js:66
|
4000 |
+
__( 'Sample short description for your product.', 'all-in-one-seo-pack' ),
|
4001 |
|
4002 |
+
// Reference: src/vue/utils/tags.js:82
|
4003 |
+
__( 'Archive', 'all-in-one-seo-pack' ),
|
|
|
4004 |
|
4005 |
+
// Reference: src/vue/utils/tags.js:83
|
4006 |
+
__( 'archive', 'all-in-one-seo-pack' ),
|
4007 |
|
4008 |
+
// Reference: src/vue/store/actions.js:146
|
4009 |
+
__( 'We couldn\'t connect to the site, please try again later.', 'all-in-one-seo-pack' ),
|
4010 |
|
4011 |
+
// Reference: src/vue/plugins/truSEO/Analysis/isExternalLink.js:22
|
4012 |
+
__( 'Great! You are linking to external resources.', 'all-in-one-seo-pack' ),
|
4013 |
|
4014 |
+
// Reference: src/vue/plugins/truSEO/Analysis/isExternalLink.js:30
|
4015 |
+
__( 'External links', 'all-in-one-seo-pack' ),
|
4016 |
|
4017 |
+
// Reference: src/vue/plugins/truSEO/Analysis/isExternalLink.js:31
|
4018 |
+
__( 'No outbound links were found. Link out to external resources.', 'all-in-one-seo-pack' ),
|
4019 |
|
4020 |
// Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:47
|
4021 |
+
// Reference: src/vue/plugins/truSEO/Analysis/keyphraseLength.js:41
|
4022 |
__( 'Good job!', 'all-in-one-seo-pack' ),
|
4023 |
|
4024 |
// Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:51
|
4041 |
// Reference: src/vue/plugins/truSEO/Analysis/calculateFleschReading.js:98
|
4042 |
__( ':-)', 'all-in-one-seo-pack' ),
|
4043 |
|
4044 |
+
// Reference: src/vue/plugins/truSEO/Analysis/isInternalLink.js:22
|
4045 |
+
__( 'You are linking to other resources on your website which is great.', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
|
|
4046 |
|
4047 |
+
// Reference: src/vue/plugins/truSEO/Analysis/isInternalLink.js:30
|
4048 |
+
__( 'Internal links', 'all-in-one-seo-pack' ),
|
4049 |
|
4050 |
+
// Reference: src/vue/plugins/truSEO/Analysis/isInternalLink.js:31
|
4051 |
+
__( 'We couldn\'t find any internal links in your content. Add internal links in your content.', 'all-in-one-seo-pack' ),
|
4052 |
|
4053 |
// Reference: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:23
|
4054 |
/* Translators: 1 - Number of sentences. */
|
4060 |
// Reference: src/vue/plugins/truSEO/Analysis/consecutiveSentences.js:32
|
4061 |
__( 'There is enough variety in your sentences. That\'s great!', 'all-in-one-seo-pack' ),
|
4062 |
|
4063 |
+
// Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:65
|
4064 |
+
/* Translators: 1 - Expand to the number of text sections not separated by subheadings, 2 - expands to the recommended number of words following a subheading. */
|
4065 |
+
__( '%1$d section of your text is longer than %2$d words and is not separated by any subheadings. Add subheadings to improve readability.', 'all-in-one-seo-pack' ),
|
4066 |
|
4067 |
+
// Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:74
|
4068 |
+
__( 'You are not using any subheadings, although your text is rather long. Try and add some subheadings.', 'all-in-one-seo-pack' ),
|
4069 |
|
4070 |
+
// Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:84
|
4071 |
+
__( 'Great job!', 'all-in-one-seo-pack' ),
|
4072 |
|
4073 |
+
// Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:92
|
4074 |
+
__( 'Subheading distribution', 'all-in-one-seo-pack' ),
|
4075 |
|
4076 |
+
// Reference: src/vue/plugins/truSEO/Analysis/subheadingsDistribution.js:93
|
4077 |
+
__( 'You are not using any subheadings, but your text is short enough and probably doesn\'t need them.', 'all-in-one-seo-pack' ),
|
4078 |
+
|
4079 |
+
// Reference: src/vue/plugins/truSEO/Analysis/transitionWords.js:21
|
4080 |
+
__( 'None of the sentences contain transition words. Use some', 'all-in-one-seo-pack' ),
|
4081 |
+
|
4082 |
+
// Reference: src/vue/plugins/truSEO/Analysis/transitionWords.js:32
|
4083 |
+
/* Translators: 1 - Percentage of the sentences. */
|
4084 |
+
__( 'Only %1$s of the sentences contain transition words, which is not enough. Use more of them', 'all-in-one-seo-pack' ),
|
4085 |
+
|
4086 |
+
// Reference: src/vue/plugins/truSEO/Analysis/transitionWords.js:40
|
4087 |
+
__( 'Transition words', 'all-in-one-seo-pack' ),
|
4088 |
+
|
4089 |
+
// Reference: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:56
|
4090 |
+
// Reference: src/vue/plugins/truSEO/Analysis/titleLength.js:61
|
4091 |
+
// Reference: src/vue/plugins/truSEO/Analysis/transitionWords.js:41
|
4092 |
+
__( 'Well done!', 'all-in-one-seo-pack' ),
|
4093 |
+
|
4094 |
+
// Reference: src/vue/plugins/truSEO/Analysis/passiveVoice.js:38
|
4095 |
+
__( 'You\'re using enough active voice. That\'s great!', 'all-in-one-seo-pack' ),
|
4096 |
+
|
4097 |
+
// Reference: src/vue/plugins/truSEO/Analysis/passiveVoice.js:45
|
4098 |
+
__( 'Passive Voice', 'all-in-one-seo-pack' ),
|
4099 |
+
|
4100 |
+
// Reference: src/vue/plugins/truSEO/Analysis/passiveVoice.js:47
|
4101 |
+
/* Translators: 1 - Percentage of the sentences, 2 - Expected maximum percentage of sentences. */
|
4102 |
+
__( '%1$s of the sentences contain passive voice, which is more than the recommended maximum of %2$s. Try to use their active counterparts', 'all-in-one-seo-pack' ),
|
4103 |
|
4104 |
// Reference: src/vue/plugins/truSEO/Analysis/sentenceLength.js:34
|
4105 |
__( 'Sentence length is looking great!', 'all-in-one-seo-pack' ),
|
4111 |
/* Translators: 1 - Number of the sentences, 2 - Number of words, 3 - Recommended maximum of words. */
|
4112 |
__( '%1$s of the sentences contain more than %2$s words, which is more than the recommended maximum of %3$s. Try to shorten the sentences.', 'all-in-one-seo-pack' ),
|
4113 |
|
4114 |
+
// Reference: src/vue/plugins/truSEO/Analysis/paragraphLength.js:23
|
4115 |
+
__( 'At least one paragraph is long. Consider using short paragraphs.', 'all-in-one-seo-pack' ),
|
4116 |
+
|
4117 |
+
// Reference: src/vue/plugins/truSEO/Analysis/paragraphLength.js:30
|
4118 |
+
__( 'Paragraphs Length', 'all-in-one-seo-pack' ),
|
4119 |
+
|
4120 |
+
// Reference: src/vue/plugins/truSEO/Analysis/paragraphLength.js:31
|
4121 |
+
__( 'You are using short paragraphs.', 'all-in-one-seo-pack' ),
|
4122 |
+
|
4123 |
+
// Reference: src/vue/plugins/truSEO/Analysis/contentHasAssets.js:11
|
4124 |
// Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:27
|
4125 |
__( 'Please add some content first.', 'all-in-one-seo-pack' ),
|
4126 |
|
4133 |
// Reference: src/vue/plugins/truSEO/Analysis/contentHasAssets.js:32
|
4134 |
__( 'You are not using rich media like images or videos.', 'all-in-one-seo-pack' ),
|
4135 |
|
4136 |
+
// Reference: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:26
|
4137 |
+
__( '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' ),
|
|
|
|
|
|
|
4138 |
|
4139 |
+
// Reference: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:36
|
4140 |
+
__( 'The meta description is too short.', 'all-in-one-seo-pack' ),
|
4141 |
|
4142 |
+
// Reference: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:45
|
4143 |
+
__( 'Meta description length', 'all-in-one-seo-pack' ),
|
4144 |
|
4145 |
+
// Reference: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:46
|
4146 |
+
__( 'The meta description is over 160 characters.', 'all-in-one-seo-pack' ),
|
4147 |
|
4148 |
+
// Reference: src/vue/plugins/truSEO/Analysis/metadescriptionLength.js:55
|
4149 |
+
__( 'Meta description Length', 'all-in-one-seo-pack' ),
|
|
|
4150 |
|
4151 |
// Reference: src/vue/plugins/truSEO/Analysis/titleLength.js:21
|
4152 |
__( 'Please add a title first.', 'all-in-one-seo-pack' ),
|
4196 |
// Reference: src/vue/plugins/truSEO/Analysis/keyphraseInSubHeadings.js:83
|
4197 |
__( 'Use your focus keyphrase more in your H2 and H3 subheadings', 'all-in-one-seo-pack' ),
|
4198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4199 |
// Reference: src/vue/plugins/truSEO/Analysis/keyphraseInIntroduction.js:24
|
4200 |
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
4201 |
__( '%1$s in introduction', 'all-in-one-seo-pack' ),
|
4211 |
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
4212 |
__( 'Your %1$s does not appear in the first paragraph. Make sure the topic is clear immediately.', 'all-in-one-seo-pack' ),
|
4213 |
|
4214 |
+
// Reference: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:22
|
4215 |
+
__( 'Focus Keyphrase found in content.', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4216 |
|
4217 |
+
// Reference: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:30
|
4218 |
+
__( 'Focus Keyphrase in content', 'all-in-one-seo-pack' ),
|
4219 |
|
4220 |
+
// Reference: src/vue/plugins/truSEO/Analysis/keyphraseInContent.js:31
|
4221 |
+
__( 'Focus Keyphrase not found in content.', 'all-in-one-seo-pack' ),
|
|
|
4222 |
|
4223 |
// Reference: src/vue/plugins/truSEO/Analysis/keyphraseInURL.js:26
|
4224 |
__( 'Focus Keyphrase used in the URL.', 'all-in-one-seo-pack' ),
|
4287 |
// Reference: src/vue/plugins/truSEO/Analysis/lengthContent.js:73
|
4288 |
__( 'The content is below the minimum of words. Add more content.', 'all-in-one-seo-pack' ),
|
4289 |
|
4290 |
+
// Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:6
|
4291 |
+
__( 'Focus keyphrase', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4292 |
|
4293 |
+
// Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:8
|
4294 |
+
__( 'Keyphrase', 'all-in-one-seo-pack' )
|
|
|
4295 |
);
|
4296 |
/* THIS IS THE END OF THE GENERATED FILE */
|
languages/aioseo-lite.pot
CHANGED
@@ -3,166 +3,105 @@ msgstr ""
|
|
3 |
"Content-Type: text/plain; charset=utf-8\n"
|
4 |
"X-Generator: babel-plugin-makepot-aioseo\n"
|
5 |
|
6 |
-
#: src/vue/pages/
|
7 |
-
msgid "
|
8 |
-
msgstr ""
|
9 |
-
|
10 |
-
#: src/vue/pages/settings/router/paths.js:28
|
11 |
-
msgid "Webmaster Tools"
|
12 |
-
msgstr ""
|
13 |
-
|
14 |
-
#: src/vue/pages/settings/router/paths.js:47
|
15 |
-
msgid "RSS Content"
|
16 |
-
msgstr ""
|
17 |
-
|
18 |
-
#: src/vue/pages/settings/router/paths.js:57
|
19 |
-
msgid "Access Control"
|
20 |
-
msgstr ""
|
21 |
-
|
22 |
-
#: src/vue/pages/search-appearance/views/ContentTypes.vue:76
|
23 |
-
msgid "Advanced"
|
24 |
-
msgstr ""
|
25 |
-
|
26 |
-
#: src/vue/pages/about/router/paths.js:19
|
27 |
-
msgid "About Us"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: src/vue/pages/
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: src/vue/
|
35 |
-
msgid "
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: src/vue/pages/
|
39 |
-
msgid "
|
40 |
msgstr ""
|
41 |
|
42 |
# Translators: 1 - The plugin short name ("AIOSEO").
|
43 |
-
#: src/vue/
|
44 |
msgid "Connect with %1$s"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: src/vue/
|
48 |
msgid "Analytics"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: src/vue/pages/
|
52 |
-
msgid "
|
53 |
-
msgstr ""
|
54 |
-
|
55 |
-
#: src/vue/pages/setup-wizard/router/paths.js:28
|
56 |
-
msgid "Import"
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
#: src/vue/pages/setup-wizard/router/paths.js:37
|
60 |
-
msgid "Category"
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: src/vue/pages/setup-wizard/router/paths.js:46
|
64 |
-
msgid "Additional Site Information"
|
65 |
-
msgstr ""
|
66 |
-
|
67 |
-
#: src/vue/pages/setup-wizard/router/paths.js:55
|
68 |
-
msgid "Choose Features"
|
69 |
-
msgstr ""
|
70 |
-
|
71 |
-
#: src/vue/pages/setup-wizard/router/paths.js:64
|
72 |
-
msgid "Search Appearance"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: src/vue/pages/setup-wizard/router/paths.js:73
|
76 |
-
msgid "Smart Recommendations"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#: src/vue/pages/setup-wizard/router/paths.js:82
|
80 |
-
msgid "License Key"
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
-
#: src/vue/pages/setup-wizard/router/paths.js:91
|
84 |
-
msgid "Success"
|
85 |
-
msgstr ""
|
86 |
-
|
87 |
-
#: src/vue/router/index.js:51
|
88 |
-
msgid "Are you sure you want to leave? you have unsaved changes!"
|
89 |
-
msgstr ""
|
90 |
-
|
91 |
-
#: src/vue/pages/feature-manager/views/Main.vue:20
|
92 |
-
msgid "Feature Manager"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: src/vue/pages/
|
96 |
-
msgid "
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: src/vue/pages/
|
100 |
-
msgid "
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: src/vue/pages/
|
104 |
-
msgid "
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: src/vue/pages/
|
108 |
-
msgid "
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: src/vue/pages/
|
112 |
-
msgid "
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: src/vue/pages/
|
116 |
-
msgid "
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: src/vue/pages/
|
120 |
-
msgid "
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: src/vue/pages/about/
|
124 |
-
msgid "
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: src/vue/pages/
|
128 |
-
msgid "
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: src/vue/pages/
|
132 |
-
msgid "
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: src/vue/pages/
|
136 |
-
msgid "
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: src/vue/pages/tools/
|
140 |
-
msgid "
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: src/vue/pages/tools/
|
144 |
-
msgid "
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: src/vue/pages/tools/
|
148 |
-
msgid "
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: src/vue/pages/tools/
|
152 |
-
msgid "
|
153 |
msgstr ""
|
154 |
|
155 |
-
|
|
|
156 |
msgid "Social Profiles"
|
157 |
msgstr ""
|
158 |
|
159 |
#: src/vue/pages/post-settings/views/Social.vue:65
|
160 |
-
#: src/vue/pages/social-networks/router/paths.js:28
|
161 |
msgid "Facebook"
|
162 |
msgstr ""
|
163 |
|
164 |
#: src/vue/pages/post-settings/views/Social.vue:69
|
165 |
-
#: src/vue/pages/social-networks/router/paths.js:37
|
166 |
msgid "Twitter"
|
167 |
msgstr ""
|
168 |
|
@@ -179,6 +118,8 @@ msgid "Content Types"
|
|
179 |
msgstr ""
|
180 |
|
181 |
#: src/vue/components/common/core/PriorityScore.vue:63
|
|
|
|
|
182 |
msgid "Taxonomies"
|
183 |
msgstr ""
|
184 |
|
@@ -190,258 +131,435 @@ msgstr ""
|
|
190 |
msgid "Archives"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: src/vue/
|
194 |
-
msgid "
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: src/vue/
|
198 |
-
|
|
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: src/vue/pages/
|
202 |
-
|
|
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: src/vue/pages/
|
206 |
-
msgid "
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: src/vue/pages/
|
210 |
-
msgid "
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: src/vue/pages/
|
214 |
-
msgid "
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: src/vue/pages/
|
218 |
-
msgid "
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: src/vue/pages/
|
222 |
-
msgid "
|
223 |
msgstr ""
|
224 |
|
225 |
-
|
226 |
-
|
227 |
-
msgid "Upgrade to %1$s"
|
228 |
msgstr ""
|
229 |
|
230 |
-
|
231 |
-
#: src/vue/
|
232 |
-
msgid "
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: src/vue/
|
236 |
-
msgid ""
|
237 |
-
"%1$s %2$s comes with many additional features to help take your site's SEO "
|
238 |
-
"to the next level!"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: src/vue/
|
242 |
-
msgid "
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: src/vue/
|
246 |
-
msgid "
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: src/vue/
|
250 |
-
msgid "
|
251 |
msgstr ""
|
252 |
|
253 |
-
|
254 |
-
|
255 |
-
msgid "Step %1$s of %2$s"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/vue/pages/
|
259 |
-
#: src/vue/pages/
|
260 |
-
msgid "
|
261 |
msgstr ""
|
262 |
|
263 |
-
|
264 |
-
|
265 |
-
msgid "Welcome to the %1$s Setup Wizard!"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: src/vue/pages/
|
269 |
-
msgid ""
|
270 |
-
"%1$s makes it easy to configure your site's SEO settings without the need "
|
271 |
-
"to hire an expert. And it takes less than 10 minutes too!"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: src/vue/pages/
|
275 |
-
msgid "
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: src/vue/pages/
|
279 |
-
msgid "
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: src/vue/pages/
|
283 |
-
msgid "
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: src/vue/pages/
|
287 |
-
msgid "
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: src/vue/pages/
|
291 |
-
msgid "
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: src/vue/pages/
|
295 |
-
msgid "
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: src/vue/pages/
|
299 |
-
msgid "
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: src/vue/pages/
|
303 |
-
msgid "
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: src/vue/pages/
|
307 |
-
msgid "
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: src/vue/pages/
|
311 |
-
msgid "
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: src/vue/pages/
|
315 |
-
msgid "
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: src/vue/pages/
|
319 |
-
msgid "
|
320 |
msgstr ""
|
321 |
|
322 |
-
|
323 |
-
|
324 |
-
msgid ""
|
325 |
-
"%1$sBonus:%2$s You can upgrade your plan today and %3$ssave %4$s off%5$s "
|
326 |
-
"(discount auto-applied)."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: src/vue/pages/
|
330 |
-
msgid "
|
331 |
msgstr ""
|
332 |
|
333 |
-
|
334 |
-
|
335 |
-
msgid ""
|
336 |
-
"%1$s is the best WordPress SEO plugin. Join over 2,000,000+ Professionals "
|
337 |
-
"who are already using %2$s to improve their website search rankings."
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: src/vue/pages/
|
341 |
-
msgid "
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: src/vue/pages/
|
345 |
-
msgid "
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: src/vue/pages/
|
349 |
-
msgid "
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: src/vue/pages/
|
353 |
-
msgid "
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: src/vue/pages/
|
357 |
-
msgid "
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: src/vue/
|
361 |
-
|
|
|
362 |
msgstr ""
|
363 |
|
364 |
-
|
365 |
-
#: src/vue/pages/
|
366 |
-
msgid "
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: src/vue/pages/
|
370 |
-
msgid "
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: src/vue/pages/
|
374 |
-
msgid "
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: src/vue/pages/
|
378 |
-
msgid "
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: src/vue/pages/
|
382 |
-
|
|
|
|
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: src/vue/pages/
|
386 |
-
|
|
|
|
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: src/vue/pages/
|
390 |
-
|
|
|
|
|
|
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: src/vue/pages/
|
394 |
-
|
|
|
|
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: src/vue/pages/
|
398 |
-
msgid "
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: src/vue/pages/
|
402 |
-
msgid "
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: src/vue/pages/
|
406 |
-
msgid "Contact
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: src/vue/
|
410 |
-
|
|
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: src/vue/pages/
|
414 |
-
msgid "
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: src/vue/pages/local-seo/views/lite/
|
418 |
-
msgid "
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: src/vue/pages/local-seo/views/lite/Locations.vue:
|
422 |
-
msgid "
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: src/vue/pages/local-seo/views/lite/Locations.vue:
|
|
|
|
|
|
|
|
|
|
|
|
|
426 |
msgid ""
|
427 |
-
"
|
428 |
-
"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: src/vue/pages/
|
432 |
-
msgid "
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: src/vue/pages/
|
436 |
-
msgid "
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: src/vue/pages/
|
440 |
-
|
|
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: src/vue/pages/
|
444 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
msgstr ""
|
446 |
|
447 |
#: src/vue/pages/social-networks/views/Facebook.vue:678
|
@@ -458,27 +576,27 @@ msgstr ""
|
|
458 |
msgid "Enable Open Graph Markup"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: src/vue/pages/social-networks/views/
|
462 |
msgid "Default Post Image Source"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: src/vue/pages/social-networks/views/
|
466 |
msgid "Default Term Image Source"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: src/vue/pages/social-networks/views/
|
470 |
msgid "Width"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: src/vue/pages/social-networks/views/
|
474 |
msgid "Height"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: src/vue/pages/social-networks/views/
|
478 |
msgid "Post Custom Field Name"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: src/vue/pages/social-networks/views/
|
482 |
msgid "Term Custom Field Name"
|
483 |
msgstr ""
|
484 |
|
@@ -496,7 +614,7 @@ msgid ""
|
|
496 |
"856px or 3280px x 1712px for retina screens)"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: src/vue/pages/social-networks/views/
|
500 |
msgid "Home Page Settings"
|
501 |
msgstr ""
|
502 |
|
@@ -519,12 +637,11 @@ msgstr ""
|
|
519 |
msgid "Site Name"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: src/vue/pages/post-settings/views/
|
523 |
-
#: src/vue/pages/social-networks/views/Facebook.vue:698
|
524 |
msgid "Title"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: src/vue/pages/social-networks/views/
|
528 |
msgid "Use the home page title"
|
529 |
msgstr ""
|
530 |
|
@@ -532,24 +649,23 @@ msgstr ""
|
|
532 |
msgid "Click on the tags below to insert variables into your site name."
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: src/vue/pages/social-networks/views/
|
536 |
msgid "Click on the tags below to insert variables into your home page title."
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: src/vue/pages/social-networks/views/
|
540 |
msgid "Description"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: src/vue/pages/social-networks/views/
|
544 |
msgid "Use the home page description"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: src/vue/pages/social-networks/views/
|
548 |
msgid "Click on the tags below to insert variables into your description."
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: src/vue/pages/
|
552 |
-
#: src/vue/pages/social-networks/views/Facebook.vue:706
|
553 |
msgid "Advanced Settings"
|
554 |
msgstr ""
|
555 |
|
@@ -614,7 +730,7 @@ msgid ""
|
|
614 |
"%2$s"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: src/vue/pages/social-networks/views/
|
618 |
msgid "Default Term Image Source is only available for licensed %1$s users. %2$s"
|
619 |
msgstr ""
|
620 |
|
@@ -635,4829 +751,4999 @@ msgid "Use Post Tags in Article Tags"
|
|
635 |
msgstr ""
|
636 |
|
637 |
# Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag.
|
638 |
-
#: src/vue/pages/social-networks/views/
|
639 |
msgid ""
|
640 |
"The home page settings below have been disabled because you are using a "
|
641 |
"static home page. You can %1$sedit your home page settings%2$s directly to "
|
642 |
"change the title, meta and image."
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: src/vue/pages/
|
646 |
msgid "Object Type"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: src/vue/pages/
|
650 |
-
msgid "
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: src/vue/pages/
|
654 |
-
msgid "
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: src/vue/pages/
|
658 |
-
|
|
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: src/vue/pages/
|
662 |
-
msgid "
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: src/vue/
|
666 |
-
|
667 |
-
msgid "The URL provided is invalid."
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: src/vue/
|
671 |
-
|
672 |
-
msgid "We were unable to parse the content for this site."
|
673 |
msgstr ""
|
674 |
|
675 |
-
|
676 |
-
|
677 |
-
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:136
|
678 |
-
msgid "Your site is not connected. Please connect to %1$s, then try again."
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: src/vue/
|
682 |
-
msgid "
|
683 |
msgstr ""
|
684 |
|
685 |
-
|
686 |
-
|
|
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: src/vue/pages/
|
690 |
-
msgid "
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: src/vue/
|
694 |
-
|
695 |
-
msgid "Refresh Results"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: src/vue/pages/
|
699 |
-
msgid "
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: src/vue/
|
703 |
-
msgid "
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: src/vue/pages/
|
707 |
-
msgid "
|
|
|
|
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: src/vue/pages/
|
711 |
-
msgid "
|
|
|
|
|
|
|
|
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: src/vue/pages/
|
715 |
-
msgid "
|
|
|
|
|
|
|
|
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: src/vue/pages/local-seo/views/
|
719 |
-
|
|
|
|
|
|
|
|
|
|
|
720 |
msgstr ""
|
721 |
|
722 |
-
|
723 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: src/vue/pages/
|
727 |
-
|
|
|
|
|
|
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: src/vue/pages/
|
731 |
-
msgid "
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: src/vue/pages/
|
735 |
-
|
|
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: src/vue/pages/
|
739 |
-
|
|
|
|
|
|
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: src/vue/pages/
|
743 |
-
msgid "
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: src/vue/pages/
|
747 |
-
|
|
|
|
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: src/vue/pages/
|
751 |
-
|
|
|
|
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: src/vue/pages/
|
755 |
-
msgid "
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: src/vue/pages/
|
759 |
-
msgid "
|
|
|
|
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: src/vue/pages/
|
763 |
-
msgid "
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: src/vue/
|
767 |
-
|
|
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: src/vue/pages/
|
771 |
-
msgid "
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: src/vue/pages/
|
775 |
-
msgid "
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: src/vue/pages/
|
779 |
-
msgid "
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: src/vue/pages/
|
783 |
-
msgid "
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: src/vue/pages/
|
787 |
-
|
|
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: src/vue/
|
791 |
-
msgid "
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: src/vue/pages/
|
795 |
-
|
|
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: src/vue/pages/
|
799 |
-
msgid "
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: src/vue/pages/
|
803 |
-
msgid "
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: src/vue/pages/
|
807 |
-
msgid "
|
|
|
|
|
|
|
|
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: src/vue/pages/
|
811 |
-
msgid "
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: src/vue/pages/
|
815 |
-
msgid "
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: src/vue/pages/
|
819 |
-
msgid "
|
|
|
|
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: src/vue/pages/
|
823 |
-
msgid "
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: src/vue/pages/
|
827 |
-
msgid "
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: src/vue/pages/
|
831 |
-
msgid "
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: src/vue/pages/
|
835 |
-
msgid "
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: src/vue/pages/
|
839 |
-
msgid "
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: src/vue/pages/
|
843 |
-
msgid "
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: src/vue/pages/
|
847 |
-
msgid ""
|
848 |
-
"There was an error importing your settings. Please make sure you are "
|
849 |
-
"uploading the correct file or it is in the proper format."
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: src/vue/pages/
|
853 |
-
msgid "
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: src/vue/pages/
|
857 |
-
msgid "
|
|
|
|
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: src/vue/pages/
|
861 |
-
msgid "
|
|
|
|
|
|
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: src/vue/pages/search-appearance/views/
|
865 |
-
msgid "
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: src/vue/pages/search-appearance/views/
|
869 |
-
msgid "
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: src/vue/pages/
|
873 |
-
msgid "
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: src/vue/pages/search-appearance/views/
|
877 |
-
msgid "
|
|
|
|
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: src/vue/pages/
|
881 |
-
|
|
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: src/vue/pages/search-appearance/views/
|
885 |
-
msgid "
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: src/vue/pages/search-appearance/views/
|
889 |
-
msgid "
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: src/vue/pages/search-appearance/views/
|
893 |
-
msgid "
|
894 |
msgstr ""
|
895 |
|
896 |
-
|
|
|
897 |
msgid ""
|
898 |
-
"
|
899 |
-
"
|
|
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: src/vue/pages/search-appearance/views/
|
903 |
-
msgid "
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: src/vue/pages/search-appearance/views/
|
907 |
-
msgid ""
|
908 |
-
"Check this if you want your categories for a given post used as the Meta "
|
909 |
-
"Keywords for this post (in addition to any keywords you specify on the Edit "
|
910 |
-
"Post screen)."
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: src/vue/pages/search-appearance/views/
|
914 |
-
msgid "
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: src/vue/pages/search-appearance/views/
|
918 |
-
msgid ""
|
919 |
-
"Check this if you want your tags for a given post used as the Meta Keywords "
|
920 |
-
"for this post (in addition to any keywords you specify on the Edit Post "
|
921 |
-
"screen)."
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: src/vue/pages/search-appearance/views/
|
925 |
-
msgid "
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: src/vue/pages/search-appearance/views/
|
929 |
-
msgid ""
|
930 |
-
"Check this if you want your keywords on your Posts page (set in WordPress "
|
931 |
-
"under Settings, Reading, Front Page Displays) and your archive pages to be "
|
932 |
-
"dynamically generated from the keywords of the posts showing on that page. "
|
933 |
-
"If unchecked, it will use the keywords set in the edit page screen for the "
|
934 |
-
"posts page."
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: src/vue/pages/search-appearance/views/
|
938 |
-
msgid "
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: src/vue/pages/
|
942 |
-
|
943 |
-
"This
|
944 |
-
"index pages (like home or archive pages)."
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: src/vue/pages/search-appearance/views/
|
948 |
-
msgid "
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: src/vue/pages/search-appearance/views/
|
952 |
-
|
953 |
-
msgid "Exclude Posts / Pages"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: src/vue/pages/
|
957 |
-
msgid "
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: src/vue/pages/search-appearance/views/
|
961 |
-
msgid "
|
962 |
msgstr ""
|
963 |
|
964 |
-
|
965 |
-
|
966 |
-
msgid ""
|
967 |
-
"Choose whether %1$s should output the required schema markup that Google "
|
968 |
-
"needs to generate a sitelinks search box."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: src/vue/pages/search-appearance/views/
|
972 |
-
msgid ""
|
973 |
-
"A Description tag is required in order to properly display your meta "
|
974 |
-
"descriptions on your site."
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: src/vue/pages/tools/views/partials/
|
978 |
-
msgid "
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: src/vue/pages/tools/views/partials/
|
982 |
-
msgid "
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: src/vue/pages/tools/views/partials/
|
986 |
-
msgid "
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: src/vue/pages/
|
990 |
-
msgid "
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: src/vue/pages/
|
994 |
-
msgid "
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: src/vue/pages/
|
998 |
-
|
|
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: src/vue/pages/
|
1002 |
-
msgid "
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: src/vue/pages/
|
1006 |
-
msgid "
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
# Translators: 1 - The
|
1010 |
-
#: src/vue/pages/
|
1011 |
-
msgid "%1$s
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
|
1015 |
-
#: src/vue/pages/
|
1016 |
-
msgid "
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
|
1020 |
-
#: src/vue/pages/tools/views/partials/ImportOthers.vue:223
|
1021 |
msgid ""
|
1022 |
-
"
|
1023 |
-
"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
|
1027 |
-
|
|
|
|
|
|
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: src/vue/pages/
|
1031 |
-
msgid "
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: src/vue/pages/
|
1035 |
-
msgid "
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: src/vue/
|
1039 |
-
|
|
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: src/vue/pages/
|
1043 |
-
|
|
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: src/vue/pages/
|
1047 |
-
|
|
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: src/vue/
|
1051 |
-
msgid "
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: src/vue/pages/
|
1055 |
-
|
|
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
|
1059 |
-
#: src/vue/pages/
|
1060 |
-
msgid "
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
|
1064 |
-
|
|
|
|
|
|
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: src/vue/pages/
|
1068 |
-
msgid "
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
|
1072 |
-
|
1073 |
-
msgid "You're using %1$s - no license needed. Enjoy!"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: src/vue/pages/
|
1077 |
-
msgid "
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
|
1081 |
-
|
1082 |
-
msgid ""
|
1083 |
-
"To unlock the selected features, please %1$s and enter your license key "
|
1084 |
-
"below."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
|
1088 |
-
|
1089 |
-
msgid "Already purchased? Simply enter your license key below to connect with %1$s!"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
|
1093 |
-
|
1094 |
-
msgid "Enter your %1$s License Key"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: src/vue/pages/
|
1098 |
-
msgid "
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: src/vue/pages/
|
1102 |
-
msgid "
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: src/vue/pages/settings/views/
|
1106 |
-
|
|
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
|
1110 |
-
|
|
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
|
1114 |
-
|
|
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: src/vue/
|
1118 |
-
|
|
|
|
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: src/vue/pages/
|
1122 |
-
msgid "
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
|
1126 |
-
|
1127 |
-
msgid ""
|
1128 |
-
"An XML Sitemap is a list of all your content that search engines use when "
|
1129 |
-
"they crawl your site. This is an essential part of SEO because it contains "
|
1130 |
-
"some important pieces of information that search engines need when crawling "
|
1131 |
-
"your site. The XML Sitemap created by %1$s tells search engines where to "
|
1132 |
-
"find all of the content on your site."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: src/vue/pages/
|
1136 |
-
|
1137 |
-
msgid "Enable Sitemap"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: src/vue/pages/
|
1141 |
-
msgid "
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: src/vue/pages/
|
1145 |
-
msgid "
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: src/vue/pages/
|
1149 |
-
msgid ""
|
1150 |
-
"Organize sitemap entries into distinct files in your sitemap. We recommend "
|
1151 |
-
"you enable this setting if your sitemap contains more than 1,000 URLs."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: src/vue/pages/
|
1155 |
-
msgid "
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: src/vue/pages/
|
1159 |
-
msgid "
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: src/vue/pages/
|
1163 |
-
msgid "
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
|
1167 |
-
|
|
|
|
|
|
|
|
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: src/vue/
|
1171 |
-
msgid ""
|
1172 |
-
"Allows you to specify the maximum number of posts in a sitemap (up to "
|
1173 |
-
"50,000)."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: src/vue/pages/
|
1177 |
-
msgid "
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: src/vue/
|
1181 |
-
msgid "
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: src/vue/pages/
|
1185 |
-
msgid "
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: src/vue/pages/
|
1189 |
-
msgid "
|
|
|
|
|
|
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: src/vue/pages/
|
1193 |
-
msgid "
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: src/vue/pages/
|
1197 |
-
msgid "
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: src/vue/pages/
|
1201 |
-
msgid "
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: src/vue/pages/
|
1205 |
-
msgid "
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: src/vue/pages/
|
1209 |
-
msgid "
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: src/vue/pages/
|
1213 |
-
msgid "
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: src/vue/pages/
|
1217 |
-
msgid "
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: src/vue/pages/
|
1221 |
-
msgid ""
|
1222 |
-
"You can use this section to add any URLs to your sitemap which aren’t a "
|
1223 |
-
"part of your WordPress installation. For example, if you have a contact "
|
1224 |
-
"form that you would like to be included on your sitemap you can enter the "
|
1225 |
-
"information manually."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: src/vue/pages/
|
1229 |
-
msgid ""
|
1230 |
-
"Any posts that are assigned to these terms will also be excluded from your "
|
1231 |
-
"sitemap."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: src/vue/pages/
|
1235 |
-
msgid "
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: src/vue/pages/
|
1239 |
-
msgid "
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
|
1243 |
-
|
|
|
|
|
|
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: src/vue/pages/
|
1247 |
-
msgid "
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: src/vue/pages/
|
1251 |
-
msgid "
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: src/vue/pages/
|
1255 |
-
|
|
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: src/vue/pages/
|
1259 |
-
msgid "
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: src/vue/pages/
|
1263 |
-
msgid "
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: src/vue/pages/
|
1267 |
-
msgid ""
|
1268 |
-
"We recommend setting the amount of URLs per sitemap index to 1,000 or less. "
|
1269 |
-
"The more links, the longer it will take for the sitemap to load."
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: src/vue/pages/
|
1273 |
-
msgid ""
|
1274 |
-
"Your static sitemap is currently being regenerated. This may take some time "
|
1275 |
-
"based on the size of your site. This may also cause the sitemap content to "
|
1276 |
-
"look outdated."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: src/vue/pages/
|
1280 |
-
msgid "
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: src/vue/pages/
|
1284 |
-
msgid ""
|
1285 |
-
"We have detected other SEO plugins installed on your website. Select which "
|
1286 |
-
"plugins you would like to import data to %1$s."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
|
1290 |
-
|
|
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: src/vue/pages/
|
1294 |
-
msgid "
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: src/vue/
|
1298 |
-
msgid "
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: src/vue/
|
1302 |
-
msgid "
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: src/vue/pages/
|
1306 |
-
msgid "
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: src/vue/pages/
|
1310 |
-
msgid "
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: src/vue/pages/
|
1314 |
-
msgid "
|
|
|
|
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: src/vue/pages/
|
1318 |
-
msgid "
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: src/vue/pages/
|
1322 |
-
msgid "
|
|
|
|
|
|
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: src/vue/pages/
|
1326 |
-
msgid "
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: src/vue/
|
1330 |
-
|
1331 |
-
|
|
|
|
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: src/vue/pages/
|
1335 |
-
msgid "
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: src/vue/pages/
|
1339 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: src/vue/pages/
|
1343 |
-
msgid "
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: src/vue/pages/
|
1347 |
-
msgid "
|
|
|
|
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: src/vue/pages/
|
1351 |
-
msgid "
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: src/vue/pages/
|
1355 |
-
msgid ""
|
1356 |
-
"We have already selected our recommended features based on your site "
|
1357 |
-
"category, but you can use the following features to fine-tune your site."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
|
1361 |
-
|
|
|
|
|
|
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: src/vue/pages/
|
1365 |
msgid ""
|
1366 |
-
"
|
1367 |
-
"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: src/vue/pages/
|
1371 |
-
msgid "
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: src/vue/pages/
|
1375 |
-
|
1376 |
-
#: src/vue/pages/social-networks/views/Twitter.vue:453
|
1377 |
-
msgid "Home Page Title"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: src/vue/pages/
|
1381 |
-
msgid "
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: src/vue/pages/
|
1385 |
-
msgid "
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: src/vue/pages/
|
1389 |
-
msgid "
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: src/vue/pages/
|
1393 |
-
msgid "
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: src/vue/pages/
|
1397 |
-
msgid "
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: src/vue/pages/
|
1401 |
-
msgid "
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: src/vue/pages/
|
1405 |
-
msgid "
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: src/vue/pages/
|
1409 |
-
msgid "
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: src/vue/
|
1413 |
-
msgid "
|
1414 |
-
msgstr ""
|
1415 |
-
|
1416 |
-
#: src/vue/mixins/SeoSiteScore.js:11
|
1417 |
-
msgid "A valid license key is required"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: src/vue/
|
1421 |
-
msgid "
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: src/vue/
|
1425 |
-
msgid "
|
|
|
|
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: src/vue/
|
1429 |
-
msgid "
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: src/vue/
|
1433 |
-
msgid "
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: src/vue/
|
1437 |
-
msgid "
|
|
|
|
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: src/vue/
|
1441 |
-
msgid "
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: src/vue/
|
1445 |
-
msgid "
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: src/vue/
|
1449 |
-
msgid "
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: src/vue/
|
1453 |
-
msgid "
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: src/vue/
|
1457 |
-
msgid "
|
|
|
|
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: src/vue/
|
1461 |
-
msgid "
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: src/vue/
|
1465 |
-
msgid "
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: src/vue/
|
1469 |
-
msgid "
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: src/vue/
|
1473 |
-
msgid "
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: src/vue/
|
1477 |
-
msgid "
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: src/vue/
|
1481 |
-
msgid "
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: src/vue/
|
1485 |
-
msgid "
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
|
1489 |
-
|
|
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
|
1493 |
-
|
|
|
|
|
|
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: src/vue/pages/
|
1497 |
-
msgid "
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: src/vue/pages/
|
1501 |
-
msgid "
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: src/vue/pages/
|
1505 |
msgid ""
|
1506 |
-
"
|
1507 |
-
"
|
1508 |
-
"hours and price range. This information may be displayed as a Knowledge "
|
1509 |
-
"Graph card or business carousel."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
|
1513 |
-
|
1514 |
-
"
|
1515 |
-
"businesses on Google search or Google Maps. Google decides on a per search "
|
1516 |
-
"basis whether to display this information or not and it’s completely "
|
1517 |
-
"automated."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: src/vue/pages/
|
1521 |
-
msgid "
|
|
|
|
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: src/vue/pages/
|
1525 |
-
msgid "
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: src/vue/pages/
|
1529 |
-
msgid "
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: src/vue/pages/
|
1533 |
-
msgid "
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: src/vue/pages/
|
1537 |
-
msgid "
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: src/vue/pages/
|
1541 |
-
msgid "
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: src/vue/pages/
|
1545 |
-
msgid "
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: src/vue/pages/
|
1549 |
-
msgid "
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: src/vue/pages/
|
1553 |
-
msgid "
|
|
|
|
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
|
1557 |
-
|
|
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
|
1561 |
-
|
|
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: src/vue/pages/
|
1565 |
-
msgid "
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: src/vue/pages/
|
1569 |
-
msgid "
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: src/vue/pages/
|
1573 |
-
msgid "
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
|
1577 |
-
|
|
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: src/vue/pages/
|
1581 |
-
msgid "
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: src/vue/pages/
|
1585 |
-
msgid "
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: src/vue/pages/
|
1589 |
-
msgid "
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: src/vue/pages/
|
1593 |
-
msgid "
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: src/vue/pages/
|
1597 |
-
msgid "
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
|
1601 |
-
|
|
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
|
1605 |
-
|
|
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: src/vue/pages/
|
1609 |
-
msgid "
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: src/vue/pages/
|
1613 |
-
msgid "
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: src/vue/pages/
|
1617 |
-
msgid "
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#: src/vue/pages/
|
1621 |
-
msgid "
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: src/vue/pages/
|
1625 |
-
msgid "
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: src/vue/pages/
|
1629 |
-
msgid "
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: src/vue/pages/
|
1633 |
-
msgid "
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: src/vue/pages/
|
1637 |
-
msgid "
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: src/vue/pages/
|
1641 |
-
msgid "
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
|
1645 |
-
|
|
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: src/vue/pages/
|
1649 |
-
msgid "
|
1650 |
msgstr ""
|
1651 |
|
1652 |
-
#: src/vue/pages/
|
1653 |
-
msgid "
|
1654 |
-
|
|
|
|
|
|
|
|
|
1655 |
|
1656 |
-
#: src/vue/pages/
|
1657 |
-
msgid "
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: src/vue/pages/
|
1661 |
-
msgid "
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: src/vue/pages/
|
1665 |
-
msgid "
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: src/vue/pages/
|
1669 |
-
msgid "
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: src/vue/
|
1673 |
-
msgid "
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: src/vue/
|
1677 |
-
msgid "
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: src/vue/
|
1681 |
-
msgid "
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
|
1685 |
-
|
1686 |
-
msgid "%1$s out of %2$s max recommended characters."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: src/vue/
|
1690 |
-
msgid "
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: src/vue/
|
1694 |
-
msgid "
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: src/vue/
|
1698 |
-
msgid "
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: src/vue/
|
1702 |
-
msgid "
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: src/vue/pages/
|
1706 |
-
msgid "
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: src/vue/pages/
|
1710 |
-
msgid ""
|
1711 |
-
"An error occurred while activating the addon. Please upload it manually or "
|
1712 |
-
"contact support for more information."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
|
1716 |
-
|
1717 |
-
msgid ""
|
1718 |
-
"By default, only users with an Administrator role have permission to manage "
|
1719 |
-
"%1$s within your WordPress admin area. With Access Controls, though, you "
|
1720 |
-
"can easily extend specific access permissions to other user roles."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: src/vue/pages/
|
1724 |
-
msgid "
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
|
1728 |
-
|
|
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
|
1732 |
-
|
|
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
|
1736 |
-
|
|
|
|
|
|
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: src/vue/pages/settings/
|
1740 |
-
|
1741 |
-
msgid "Author"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: src/vue/
|
1745 |
-
msgid "
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
|
1749 |
-
|
|
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
# Translators:
|
1753 |
-
#: src/vue/
|
1754 |
-
|
|
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
|
1758 |
-
|
1759 |
-
msgid ""
|
1760 |
-
"By default Editors have access to %1$sSEO settings for General Settings, "
|
1761 |
-
"Search Appearance and Social Networks, as well as all settings for "
|
1762 |
-
"individual pages and posts.%2$s"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
-
# Translators: 1 -
|
1766 |
-
#: src/vue/pages/settings/
|
1767 |
msgid ""
|
1768 |
-
"
|
1769 |
-
"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
# Translators: 1 -
|
1773 |
-
#: src/vue/
|
1774 |
-
|
1775 |
-
"
|
1776 |
-
"Settings, Redirections, and individual pages and posts.%2$s"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
# Translators: 1 -
|
1780 |
-
#: src/vue/
|
|
|
|
|
|
|
|
|
|
|
|
|
1781 |
msgid ""
|
1782 |
-
"
|
1783 |
-
"and
|
|
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: src/vue/pages/
|
1787 |
msgid ""
|
1788 |
-
"
|
1789 |
-
"
|
|
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: src/vue/pages/
|
1793 |
-
msgid "
|
|
|
|
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
|
1797 |
-
|
|
|
|
|
|
|
|
|
|
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: src/vue/pages/
|
1801 |
-
msgid "
|
|
|
|
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
|
1805 |
-
|
|
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: src/vue/pages/
|
1809 |
-
msgid "
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: src/vue/pages/
|
1813 |
-
msgid "
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: src/vue/
|
1817 |
-
msgid "
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#: src/vue/pages/
|
1821 |
-
msgid "
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: src/vue/
|
1825 |
-
msgid "
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: src/vue/
|
1829 |
-
msgid "
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: src/vue/
|
1833 |
-
msgid "
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: src/vue/pages/
|
1837 |
msgid ""
|
1838 |
-
"
|
1839 |
-
"
|
|
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: src/vue/pages/
|
1843 |
-
msgid "
|
|
|
|
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: src/vue/pages/
|
1847 |
msgid ""
|
1848 |
-
"
|
1849 |
-
"
|
|
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#: src/vue/pages/
|
1853 |
-
msgid "
|
|
|
|
|
|
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: src/vue/pages/
|
1857 |
-
msgid "
|
|
|
|
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: src/vue/pages/
|
1861 |
-
msgid "
|
|
|
|
|
|
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#: src/vue/pages/
|
1865 |
-
msgid "
|
|
|
|
|
|
|
|
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: src/vue/pages/
|
1869 |
-
msgid "
|
1870 |
-
|
|
|
|
|
|
|
1871 |
|
1872 |
-
#: src/vue/pages/
|
1873 |
-
msgid "
|
|
|
|
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: src/vue/pages/
|
1877 |
msgid ""
|
1878 |
-
"
|
1879 |
-
"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: src/vue/pages/
|
1883 |
-
msgid "
|
|
|
|
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: src/vue/pages/
|
1887 |
-
msgid "
|
|
|
|
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
|
1891 |
-
|
1892 |
-
msgid "Complete documentation on usage tracking is available %1$shere%2$s."
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: src/vue/pages/
|
1896 |
-
msgid "
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: src/vue/pages/
|
1900 |
-
msgid "
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: src/vue/pages/
|
1904 |
-
msgid ""
|
1905 |
-
"This allows you to edit the .htaccess file for your site. All WordPress "
|
1906 |
-
"sites on an Apache server have a .htaccess file and we have provided you "
|
1907 |
-
"with a convenient way of editing it. Care should always be taken when "
|
1908 |
-
"editing important files from within WordPress as an incorrect change could "
|
1909 |
-
"cause WordPress to become inaccessible. %1$sBe sure to make a backup before "
|
1910 |
-
"making changes and ensure that you have FTP access to your web server and "
|
1911 |
-
"know how to access and edit files via FTP.%2$s"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: src/vue/pages/
|
1915 |
-
msgid "
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: src/vue/pages/
|
1919 |
-
msgid "
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: src/vue/pages/
|
1923 |
-
msgid "
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: src/vue/pages/
|
1927 |
-
msgid "
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: src/vue/pages/
|
1931 |
-
msgid "
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: src/vue/pages/
|
1935 |
-
msgid "
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: src/vue/pages/
|
1939 |
-
msgid ""
|
1940 |
-
"This action cannot be undone. Before taking this action, we recommend that "
|
1941 |
-
"you make a %1$sfull website backup first%2$s."
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: src/vue/pages/
|
1945 |
-
msgid "
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: src/vue/pages/
|
1949 |
-
msgid "
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: src/vue/pages/
|
1953 |
-
msgid "
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: src/vue/pages/
|
1957 |
-
msgid "
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: src/vue/pages/
|
1961 |
-
msgid "
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: src/vue/pages/
|
1965 |
-
msgid "
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
|
1969 |
-
|
1970 |
-
msgid "All %1$s Settings"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: src/vue/pages/
|
1974 |
-
msgid "
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: src/vue/pages/
|
1978 |
-
msgid "
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: src/vue/pages/
|
1982 |
-
msgid "
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: src/vue/pages/
|
1986 |
-
msgid "
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: src/vue/pages/
|
1990 |
-
msgid "
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: src/vue/pages/
|
1994 |
-
msgid "
|
|
|
|
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: src/vue/pages/
|
1998 |
-
msgid "
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
|
2002 |
-
|
|
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: src/vue/pages/
|
2006 |
-
msgid "
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: src/vue/pages/
|
2010 |
-
msgid "
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
|
2014 |
-
|
|
|
2015 |
msgstr ""
|
2016 |
|
2017 |
-
#: src/vue/pages/
|
2018 |
-
msgid "
|
2019 |
msgstr ""
|
2020 |
|
2021 |
-
#: src/vue/
|
2022 |
-
|
2023 |
-
msgid "Copied!"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#: src/vue/pages/
|
2027 |
-
msgid ""
|
2028 |
-
"To let search engines know which profiles are associated with this site, "
|
2029 |
-
"enter them below:"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: src/vue/pages/
|
2033 |
-
msgid "
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: src/vue/pages/
|
2037 |
-
msgid "
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: src/vue/pages/
|
2041 |
-
msgid "
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: src/vue/pages/
|
2045 |
-
msgid "
|
|
|
|
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: src/vue/pages/
|
2049 |
-
msgid "
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: src/vue/pages/
|
2053 |
-
msgid "
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: src/vue/pages/
|
2057 |
-
msgid "
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
|
2061 |
-
|
2062 |
-
|
|
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#: src/vue/pages/
|
2066 |
-
msgid "
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
# Translators: 1 - The plugin
|
2070 |
-
#: src/vue/pages/
|
2071 |
-
msgid "
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
# Translators: 1 - The plugin
|
2075 |
-
#: src/vue/pages/
|
2076 |
-
msgid "
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: src/vue/pages/
|
2080 |
-
msgid "
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
|
2084 |
-
|
|
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
|
2088 |
-
|
|
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
|
2092 |
-
|
|
|
|
|
|
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: src/vue/pages/
|
2096 |
-
msgid "
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: src/vue/pages/
|
2100 |
-
msgid "
|
2101 |
msgstr ""
|
2102 |
|
2103 |
-
|
2104 |
-
|
|
|
|
|
|
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: src/vue/pages/
|
2108 |
-
msgid "
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: src/vue/pages/
|
2112 |
-
msgid "
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#: src/vue/pages/
|
2116 |
-
msgid "
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
|
2120 |
-
|
2121 |
-
msgid "%1$s Documentation"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: src/vue/pages/
|
2125 |
-
msgid "
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: src/vue/pages/
|
2129 |
-
msgid "
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: src/vue/pages/
|
2133 |
-
msgid "
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: src/vue/pages/
|
2137 |
-
msgid "
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
|
2141 |
-
|
|
|
|
|
|
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
# Translators: 1 -
|
2145 |
-
#: src/vue/pages/
|
2146 |
-
msgid "
|
|
|
|
|
2147 |
msgstr ""
|
2148 |
|
2149 |
-
|
2150 |
-
|
2151 |
-
msgid "Installing %1$s %2$s"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
|
2155 |
-
|
|
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
|
2159 |
-
|
|
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: src/vue/pages/
|
2163 |
-
msgid "
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
|
2167 |
-
|
|
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
|
2171 |
-
|
|
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: src/vue/pages/
|
2175 |
-
msgid "
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
|
2179 |
-
|
2180 |
-
"
|
2181 |
-
"Attributes"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
|
2185 |
-
|
|
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: src/vue/pages/
|
2189 |
-
msgid "
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
|
2193 |
-
|
2194 |
-
"
|
2195 |
-
"Category, Tag, etc."
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
|
2199 |
-
|
|
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: src/vue/pages/
|
2203 |
-
msgid "
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: src/vue/pages/
|
2207 |
-
msgid "
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
|
2211 |
-
|
|
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
|
2215 |
-
|
2216 |
-
"
|
2217 |
-
"tier only)"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: src/vue/pages/
|
2221 |
-
msgid "
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: src/vue/pages/
|
2225 |
-
msgid "
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
|
2229 |
-
|
|
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
|
2233 |
-
|
|
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: src/vue/pages/
|
2237 |
-
msgid "
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
|
2241 |
-
|
|
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: src/vue/pages/
|
2245 |
-
msgid "
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
# Translators: 1 -
|
2249 |
-
#: src/vue/pages/
|
2250 |
-
msgid "%1$s
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
|
2254 |
-
|
|
|
|
|
|
|
|
|
2255 |
msgid ""
|
2256 |
-
"
|
2257 |
-
"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: src/vue/pages/
|
2261 |
-
msgid "
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
|
|
|
2265 |
msgid ""
|
2266 |
-
"
|
2267 |
-
"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: src/vue/pages/
|
2271 |
-
msgid "
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
|
2275 |
-
|
2276 |
-
"
|
2277 |
-
"Open Graph enabled on the Facebook tab checked if you want to optimize your "
|
2278 |
-
"site for Pinterest."
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: src/vue/pages/
|
2282 |
-
msgid "
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
|
|
|
2286 |
msgid ""
|
2287 |
-
"
|
2288 |
-
"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: src/vue/pages/
|
2292 |
-
msgid "
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
|
2296 |
-
|
|
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
|
2300 |
-
|
2301 |
-
msgid ""
|
2302 |
-
"Enable this feature if you want Twitter to display a preview card with "
|
2303 |
-
"images and a text excerpt when a link to your site is shared."
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
|
2307 |
-
|
|
|
|
|
|
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: src/vue/pages/
|
2311 |
-
msgid "
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
|
2315 |
-
|
|
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: src/vue/pages/
|
2319 |
-
msgid "
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
|
2323 |
-
|
|
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: src/vue/pages/
|
2327 |
-
msgid "
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: src/vue/pages/
|
2331 |
-
msgid ""
|
2332 |
-
"Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and "
|
2333 |
-
"GIF formats only."
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: src/vue/pages/
|
2337 |
-
msgid ""
|
2338 |
-
"Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and "
|
2339 |
-
"GIF formats only."
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: src/vue/pages/
|
2343 |
-
msgid "
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: src/vue/pages/
|
2347 |
-
msgid "
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: src/vue/pages/
|
2351 |
-
msgid "
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: src/vue/pages/
|
2355 |
-
msgid "
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: src/vue/pages/
|
2359 |
-
msgid ""
|
2360 |
-
"Enable this option to show additional Twitter data on your posts and pages "
|
2361 |
-
"(i.e., who the post was written by and how long it might take to read the "
|
2362 |
-
"article)."
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
|
2366 |
-
|
2367 |
-
msgid ""
|
2368 |
-
"The robots.txt editor in %1$s allows you to set up a robots.txt file for "
|
2369 |
-
"your site that will override the default robots.txt file that WordPress "
|
2370 |
-
"creates. By creating a robots.txt file with %2$s you have greater control "
|
2371 |
-
"over the instructions you give web crawlers about your site."
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: src/vue/pages/
|
2375 |
-
msgid ""
|
2376 |
-
"Just like WordPress, %1$s generates a dynamic file so there is no static "
|
2377 |
-
"file to be found on your server. The content of the robots.txt file is "
|
2378 |
-
"stored in your WordPress database."
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
|
2382 |
-
|
|
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#: src/vue/pages/
|
2386 |
-
msgid ""
|
2387 |
-
"Duplicate or invalid entries have been detected! Please check your rules "
|
2388 |
-
"and try again."
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: src/vue/pages/
|
2392 |
-
msgid "
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: src/vue/pages/
|
2396 |
-
msgid "
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: src/vue/pages/
|
2400 |
-
msgid "
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: src/vue/pages/
|
2404 |
-
msgid "
|
|
|
|
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: src/vue/pages/
|
2408 |
-
msgid "
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: src/vue/pages/
|
2412 |
-
msgid "
|
|
|
|
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: src/vue/pages/
|
2416 |
-
msgid "
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: src/vue/pages/
|
2420 |
-
msgid "
|
|
|
|
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: src/vue/pages/
|
2424 |
-
msgid "
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
|
2428 |
-
|
2429 |
-
msgid ""
|
2430 |
-
"%1$s has detected a physical robots.txt file in the root folder of your "
|
2431 |
-
"WordPress installation. We recommend removing this file as it could cause "
|
2432 |
-
"conflicts with WordPress' dynamically generated one. %2$s can import this "
|
2433 |
-
"file and delete it, or you can simply delete it."
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: src/vue/pages/
|
2437 |
-
msgid "
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
|
2441 |
-
|
2442 |
-
msgid ""
|
2443 |
-
"This site is running in a sub-directory of your main site located at %1$s. "
|
2444 |
-
"Your robots.txt file should only appear in the root directory of that site."
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: src/vue/pages/
|
2448 |
-
msgid ""
|
2449 |
-
"It looks like you are missing the proper rewrite rules for the robots.txt "
|
2450 |
-
"file."
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
|
2454 |
-
|
2455 |
-
msgid ""
|
2456 |
-
"It appears that your server is running on Apache, so the fix should be as "
|
2457 |
-
"simple as checking the %1$scorrect .htaccess implementation on "
|
2458 |
-
"wordpress.org%2$s."
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: src/vue/pages/
|
2462 |
msgid ""
|
2463 |
-
"
|
2464 |
-
"
|
2465 |
-
"%1$sCheck our documentation for more information%2$s."
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: src/vue/pages/
|
2469 |
-
msgid "
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: src/vue/pages/
|
2473 |
-
msgid "
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: src/vue/pages/
|
2477 |
-
msgid "
|
|
|
|
|
2478 |
msgstr ""
|
2479 |
|
2480 |
-
#: src/vue/pages/
|
2481 |
-
msgid "
|
|
|
|
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: src/vue/
|
2485 |
-
msgid "
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
|
2489 |
-
|
2490 |
-
msgid "Read the %1$s user guide"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#: src/vue/
|
2494 |
-
msgid "
|
2495 |
msgstr ""
|
2496 |
|
2497 |
-
#: src/vue/
|
2498 |
-
msgid "
|
2499 |
msgstr ""
|
2500 |
|
2501 |
-
#: src/vue/
|
2502 |
-
msgid "
|
2503 |
msgstr ""
|
2504 |
|
2505 |
-
#: src/vue/
|
2506 |
-
msgid "
|
2507 |
msgstr ""
|
2508 |
|
2509 |
-
#: src/vue/
|
2510 |
-
msgid "
|
2511 |
msgstr ""
|
2512 |
|
2513 |
-
#: src/vue/
|
2514 |
-
msgid ""
|
2515 |
-
"You can use these quicklinks to quickly access our settings pages to adjust "
|
2516 |
-
"your site's SEO settings."
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: src/vue/
|
2520 |
-
msgid ""
|
2521 |
-
"Configure how your website content will look in Google, Bing and other "
|
2522 |
-
"search engines."
|
2523 |
msgstr ""
|
2524 |
|
2525 |
-
#: src/vue/
|
2526 |
-
msgid ""
|
2527 |
-
"Check how your site scores with our SEO analyzer and compare against your "
|
2528 |
-
"competitor's site."
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: src/vue/
|
2532 |
-
msgid ""
|
2533 |
-
"Improve local SEO rankings with schema for business address, open hours, "
|
2534 |
-
"contact, and more."
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: src/vue/
|
2538 |
-
msgid ""
|
2539 |
-
"Setup Open Graph for Facebook, Twitter, etc. to show the right content / "
|
2540 |
-
"thumbnail preview."
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: src/vue/
|
2544 |
-
msgid ""
|
2545 |
-
"Fine-tune your site with our powerful tools including Robots.txt editor, "
|
2546 |
-
"import/export and more."
|
2547 |
msgstr ""
|
2548 |
|
2549 |
-
#: src/vue/
|
2550 |
-
msgid "
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
|
2554 |
-
|
2555 |
-
msgid "Get more features in %1$s %2$s:"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
|
2559 |
-
|
2560 |
-
msgid "Upgrade to %1$s and Save %2$s"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: src/vue/
|
2564 |
-
|
2565 |
-
msgid "Dismiss All"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: src/vue/
|
2569 |
-
msgid "
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: src/vue/
|
2573 |
-
msgid "
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: src/vue/
|
2577 |
-
msgid "
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#: src/vue/
|
2581 |
-
|
|
|
|
|
|
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#: src/vue/
|
2585 |
-
|
|
|
|
|
|
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
|
2589 |
-
#: src/vue/
|
2590 |
-
|
|
|
|
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: src/vue/
|
2594 |
-
|
|
|
|
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: src/vue/pages/
|
2598 |
-
msgid "
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: src/vue/pages/
|
2602 |
-
msgid "
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: src/vue/
|
2606 |
-
msgid "
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: src/vue/
|
2610 |
-
msgid ""
|
2611 |
-
"Globally control the Title attribute and Alt text for images in your "
|
2612 |
-
"content. These attributes are essential for both accessibility and SEO."
|
2613 |
msgstr ""
|
2614 |
|
2615 |
-
#: src/vue/
|
2616 |
-
msgid ""
|
2617 |
-
"The Video Sitemap works in much the same way as the XML Sitemap module, it "
|
2618 |
-
"generates an XML Sitemap specifically for video content on your site. "
|
2619 |
-
"Search engines use this information to display rich snippet information in "
|
2620 |
-
"search results."
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: src/vue/
|
2624 |
-
msgid ""
|
2625 |
-
"Our Google News Sitemap lets you control which content you submit to Google "
|
2626 |
-
"News and only contains articles that were published in the last 48 hours. "
|
2627 |
-
"In order to submit a News Sitemap to Google, you must have added your site "
|
2628 |
-
"to Google’s Publisher Center and had it approved."
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
# Translators: 1 -
|
2632 |
-
#: src/vue/
|
2633 |
-
msgid ""
|
2634 |
-
"Welcome to %1$s, the original SEO plugin for WordPress. At %2$s, we build "
|
2635 |
-
"software that helps you rank your website in search results and gain "
|
2636 |
-
"organic traffic."
|
2637 |
msgstr ""
|
2638 |
|
2639 |
-
#: src/vue/
|
2640 |
-
msgid ""
|
2641 |
-
"Over the years, we found that most other WordPress SEO plugins were "
|
2642 |
-
"bloated, buggy, slow, and very hard to use. So we designed our plugin as an "
|
2643 |
-
"easy and powerful tool."
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: src/vue/
|
2647 |
-
msgid ""
|
2648 |
-
"Our goal is to take the pain out of optimizing your website for search "
|
2649 |
-
"engines."
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
|
2653 |
-
|
2654 |
-
msgid ""
|
2655 |
-
"%1$s is brought to you by %2$s, the same team that’s behind the largest "
|
2656 |
-
"WordPress resource site, WPBeginner, the most popular lead-generation "
|
2657 |
-
"software, OptinMonster, the best WordPress analytics plugin, "
|
2658 |
-
"MonsterInsights and many more."
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
|
|
|
2662 |
msgid ""
|
2663 |
-
"
|
2664 |
-
"
|
|
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
|
2668 |
-
|
2669 |
-
msgid "The %1$s Team"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: src/vue/pages/
|
2673 |
-
msgid "
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: src/vue/
|
2677 |
-
|
|
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: src/vue/pages/
|
2681 |
-
msgid "
|
2682 |
msgstr ""
|
2683 |
|
2684 |
-
#: src/vue/
|
2685 |
-
msgid "
|
2686 |
msgstr ""
|
2687 |
|
2688 |
-
#: src/vue/pages/
|
2689 |
-
msgid "
|
2690 |
msgstr ""
|
2691 |
|
2692 |
-
#: src/vue/pages/
|
2693 |
-
msgid "
|
2694 |
msgstr ""
|
2695 |
|
2696 |
-
|
2697 |
-
|
|
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
|
|
|
2701 |
msgid ""
|
2702 |
-
"
|
2703 |
-
"
|
2704 |
-
"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
|
|
|
2708 |
msgid ""
|
2709 |
-
"
|
2710 |
-
"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
-
|
|
|
2714 |
msgid ""
|
2715 |
-
"
|
2716 |
-
"
|
2717 |
-
"to grow your business."
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
|
|
|
2721 |
msgid ""
|
2722 |
-
"
|
2723 |
-
"
|
2724 |
-
"any code or hiring a developer."
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#: src/vue/pages/
|
2728 |
-
msgid ""
|
2729 |
-
"Make sure your website's emails reach the inbox. Our goal is to make email "
|
2730 |
-
"deliverability easy and reliable. Trusted by over 1 million websites."
|
2731 |
msgstr ""
|
2732 |
|
2733 |
-
#: src/vue/pages/
|
2734 |
-
msgid ""
|
2735 |
-
"Create a simple Coming Soon Page, Under Construction or Maintenance Mode "
|
2736 |
-
"Page. Work on your site in private while visitors see a “Coming Soon” or "
|
2737 |
-
"“Maintenance Mode” page."
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: src/vue/pages/
|
2741 |
-
msgid ""
|
2742 |
-
"TrustPulse uses FOMO (Fear of Missing Out) to boost your sales and "
|
2743 |
-
"conversions with social proof notifications. Use it to boost sales on your "
|
2744 |
-
"Woocommerce store, increase signups on your membership site, get more email "
|
2745 |
-
"subscribers, and more."
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: src/vue/pages/
|
2749 |
-
msgid ""
|
2750 |
-
"Turn your visitors into brand ambassadors! Easily grow your email list, "
|
2751 |
-
"website traffic, and social media followers with powerful viral giveaways & "
|
2752 |
-
"contests."
|
2753 |
msgstr ""
|
2754 |
|
2755 |
-
#: src/vue/pages/
|
2756 |
-
msgid ""
|
2757 |
-
"Display completely customizable Facebook feeds of any public Facebook page "
|
2758 |
-
"or Group."
|
2759 |
msgstr ""
|
2760 |
|
2761 |
-
#: src/vue/
|
2762 |
-
|
2763 |
-
|
2764 |
-
"from multiple Instagram accounts."
|
2765 |
msgstr ""
|
2766 |
|
2767 |
-
#: src/vue/
|
2768 |
-
|
2769 |
-
|
2770 |
-
"Twitter feeds on your website."
|
2771 |
msgstr ""
|
2772 |
|
2773 |
-
#: src/vue/pages/
|
2774 |
-
msgid ""
|
2775 |
-
"The Feeds for YouTube plugin allows you to display customizable YouTube "
|
2776 |
-
"feeds from any YouTube channel."
|
2777 |
msgstr ""
|
2778 |
|
2779 |
-
#: src/vue/pages/
|
2780 |
-
msgid "
|
2781 |
msgstr ""
|
2782 |
|
2783 |
-
#: src/vue/pages/
|
2784 |
-
msgid ""
|
2785 |
-
"List of custom field names to include in the SEO Page Analysis. Add one per "
|
2786 |
-
"line."
|
2787 |
msgstr ""
|
2788 |
|
2789 |
-
|
2790 |
-
|
2791 |
-
msgid ""
|
2792 |
-
"%1$s %2$s gives you advanced customizations for our page analysis feature, "
|
2793 |
-
"letting you add custom fields to analyze."
|
2794 |
msgstr ""
|
2795 |
|
2796 |
-
#: src/vue/pages/
|
2797 |
-
msgid "
|
2798 |
msgstr ""
|
2799 |
|
2800 |
-
#: src/vue/pages/
|
2801 |
-
msgid "
|
2802 |
msgstr ""
|
2803 |
|
2804 |
-
#: src/vue/pages/
|
2805 |
-
msgid "
|
2806 |
msgstr ""
|
2807 |
|
2808 |
-
#: src/vue/pages/
|
2809 |
-
msgid "
|
|
|
|
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: src/vue/pages/
|
2813 |
-
msgid "
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: src/vue/pages/
|
2817 |
-
msgid ""
|
2818 |
-
"We recommended redirecting attachment URL's back to the attachment since "
|
2819 |
-
"the default WordPress attachment pages have little SEO value."
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: src/vue/pages/
|
2823 |
-
msgid "
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: src/vue/
|
2827 |
-
msgid "
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: src/vue/
|
2831 |
-
|
2832 |
-
msgid "None"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
-
#: src/vue/pages/post-settings/views/
|
2836 |
-
msgid "
|
2837 |
-
|
|
|
|
|
2838 |
|
2839 |
-
|
2840 |
-
|
|
|
2841 |
msgstr ""
|
2842 |
|
2843 |
-
#: src/vue/pages/post-settings/views/
|
2844 |
-
msgid "
|
2845 |
msgstr ""
|
2846 |
|
2847 |
-
#: src/vue/
|
2848 |
-
msgid "
|
2849 |
msgstr ""
|
2850 |
|
2851 |
-
#: src/vue/pages/
|
2852 |
-
msgid "
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
|
2856 |
-
|
2857 |
-
msgid ""
|
2858 |
-
"%1$s %2$s gives you advanced customizations for the structured data markup "
|
2859 |
-
"on Posts, Pages, Categories, Tags, etc."
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
|
2863 |
-
|
|
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
|
2867 |
-
|
|
|
2868 |
msgstr ""
|
2869 |
|
2870 |
-
#: src/vue/
|
2871 |
-
msgid "
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: src/vue/
|
2875 |
-
msgid "
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: src/vue/
|
2879 |
-
msgid "
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: src/vue/
|
2883 |
-
msgid "
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: src/vue/
|
2887 |
-
msgid "
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: src/vue/
|
2891 |
-
msgid "
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: src/vue/
|
2895 |
-
|
2896 |
-
msgid "This feature requires one of the following plans:"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: src/vue/
|
2900 |
-
msgid "
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: src/vue/
|
2904 |
-
msgid "
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: src/vue/
|
2908 |
-
msgid "
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: src/vue/
|
2912 |
-
msgid "
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: src/vue/
|
2916 |
-
msgid "
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: src/vue/
|
2920 |
-
msgid "
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: src/vue/
|
2924 |
-
msgid "
|
2925 |
msgstr ""
|
2926 |
|
2927 |
-
#: src/vue/
|
2928 |
-
msgid "
|
2929 |
msgstr ""
|
2930 |
|
2931 |
-
|
2932 |
-
|
|
|
2933 |
msgstr ""
|
2934 |
|
2935 |
-
#: src/vue/pages/
|
2936 |
-
msgid "
|
|
|
|
|
|
|
|
|
2937 |
msgstr ""
|
2938 |
|
2939 |
-
#: src/vue/pages/
|
2940 |
-
msgid "
|
2941 |
msgstr ""
|
2942 |
|
2943 |
-
#: src/vue/pages/
|
2944 |
-
|
2945 |
-
msgid "Keywords"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
|
2949 |
-
|
2950 |
-
msgid "%1$s Title"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
-
|
2954 |
-
|
2955 |
-
msgid "Show %1$s Thumbnail in Google Custom Search"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
|
2959 |
-
|
2960 |
-
msgid "Show %1$s Meta Box"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
-
#: src/vue/pages/
|
2964 |
-
msgid "
|
2965 |
msgstr ""
|
2966 |
|
2967 |
-
#: src/vue/pages/
|
2968 |
-
msgid "
|
2969 |
msgstr ""
|
2970 |
|
2971 |
-
|
2972 |
-
|
2973 |
-
msgid ""
|
2974 |
-
"The home page settings below have been disabled because you are using a "
|
2975 |
-
"static home page. You can %1$sedit your home page settings%2$s directly to "
|
2976 |
-
"change the title and description."
|
2977 |
msgstr ""
|
2978 |
|
2979 |
-
#: src/vue/
|
2980 |
-
msgid "
|
2981 |
msgstr ""
|
2982 |
|
2983 |
-
#: src/vue/pages/
|
2984 |
-
msgid "
|
2985 |
msgstr ""
|
2986 |
|
2987 |
-
#: src/vue/pages/
|
2988 |
-
msgid "
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: src/vue/pages/
|
2992 |
-
msgid ""
|
2993 |
-
"Google, Bing and other search engines use specific data from your schema "
|
2994 |
-
"markup to output data in their Knowledge Panels. This data is known as the "
|
2995 |
-
"Knowledge Graph. Use these settings to change how that data looks."
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
|
2999 |
-
|
3000 |
-
msgid ""
|
3001 |
-
"Go to %1$sLocal SEO Settings%2$s and set up your local business info like "
|
3002 |
-
"location address, opening hours (%3$s), and Google Maps settings (%4$s)."
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: src/vue/pages/
|
3006 |
-
msgid "
|
3007 |
msgstr ""
|
3008 |
|
3009 |
-
#: src/vue/pages/
|
3010 |
-
msgid "
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#: src/vue/pages/
|
3014 |
-
msgid "
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#: src/vue/pages/
|
3018 |
-
msgid ""
|
3019 |
-
"This option will generate a separate RSS Sitemap which can be submitted to "
|
3020 |
-
"Google, Bing and any other search engines that support this type of "
|
3021 |
-
"sitemap. The RSS Sitemap contains an RSS feed of the latest updates to your "
|
3022 |
-
"site content. It is not a full sitemap of all your content."
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: src/vue/pages/
|
3026 |
-
msgid "
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#: src/vue/pages/
|
3030 |
-
msgid "
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: src/vue/pages/
|
3034 |
-
msgid ""
|
3035 |
-
"Allows you to specify the maximum number of posts for the RSS Sitemap. We "
|
3036 |
-
"recommend an amount of 50 posts."
|
3037 |
msgstr ""
|
3038 |
|
3039 |
-
#: src/vue/pages/
|
3040 |
-
msgid ""
|
3041 |
-
"Select which Taxonomies appear in your sitemap. Categories and Tags are "
|
3042 |
-
"excluded by default since these do not support video embedding."
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: src/vue/pages/
|
3046 |
-
msgid "
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#: src/vue/pages/
|
3050 |
-
msgid "
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
#: src/vue/pages/
|
3054 |
-
msgid "
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#: src/vue/pages/
|
3058 |
-
msgid "
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: src/vue/pages/
|
3062 |
-
msgid "
|
3063 |
msgstr ""
|
3064 |
|
3065 |
-
|
3066 |
-
|
3067 |
-
msgid ""
|
3068 |
-
"%1$s %2$s lets you set the SEO title and description for custom taxonomies. "
|
3069 |
-
"You can also control all of the robots meta and other options just like the "
|
3070 |
-
"default category and tags taxonomies."
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: src/vue/pages/
|
3074 |
-
msgid "
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: src/vue/pages/
|
3078 |
-
|
3079 |
-
msgid "Click here"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: src/vue/pages/
|
3083 |
-
|
3084 |
-
msgid "Install Monsterinsights"
|
3085 |
msgstr ""
|
3086 |
|
3087 |
-
#: src/vue/pages/
|
3088 |
-
msgid "
|
3089 |
-
msgstr ""
|
3090 |
-
|
3091 |
-
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:180
|
3092 |
-
msgid "MonsterInsights is Installed & Active"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
-
#: src/vue/pages/
|
3096 |
-
msgid "
|
3097 |
msgstr ""
|
3098 |
|
3099 |
-
#: src/vue/pages/
|
3100 |
-
msgid "
|
3101 |
msgstr ""
|
3102 |
|
3103 |
-
#: src/vue/pages/
|
3104 |
-
msgid ""
|
3105 |
-
"ExactMetrics connects AIOSEO to Google Analytics, providing a powerful "
|
3106 |
-
"integration. ExactMetrics is a sister company of AIOSEO."
|
3107 |
msgstr ""
|
3108 |
|
3109 |
-
|
3110 |
-
|
|
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#: src/vue/pages/
|
3114 |
msgid ""
|
3115 |
-
"
|
3116 |
-
"
|
|
|
3117 |
msgstr ""
|
3118 |
|
3119 |
-
#: src/vue/pages/
|
3120 |
-
msgid "
|
3121 |
msgstr ""
|
3122 |
|
3123 |
-
#: src/vue/pages/
|
3124 |
-
msgid ""
|
3125 |
-
"MonsterInsights connects AIOSEO to Google Analytics, providing a powerful "
|
3126 |
-
"integration. MonsterInsights is a sister company of AIOSEO."
|
3127 |
msgstr ""
|
3128 |
|
3129 |
-
#: src/vue/pages/
|
3130 |
-
msgid "
|
3131 |
msgstr ""
|
3132 |
|
3133 |
-
#: src/vue/pages/
|
3134 |
-
msgid "
|
3135 |
msgstr ""
|
3136 |
|
3137 |
-
#: src/vue/pages/
|
3138 |
-
msgid "
|
3139 |
msgstr ""
|
3140 |
|
3141 |
-
#: src/vue/pages/
|
3142 |
-
msgid "
|
3143 |
msgstr ""
|
3144 |
|
3145 |
-
#: src/vue/pages/
|
3146 |
-
msgid "
|
3147 |
msgstr ""
|
3148 |
|
3149 |
-
#: src/vue/pages/
|
3150 |
-
msgid "
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#: src/vue/pages/
|
3154 |
msgid ""
|
3155 |
-
"
|
3156 |
-
"
|
3157 |
msgstr ""
|
3158 |
|
3159 |
-
#: src/vue/pages/
|
3160 |
-
msgid "
|
3161 |
msgstr ""
|
3162 |
|
3163 |
-
#: src/vue/pages/
|
3164 |
-
msgid "
|
3165 |
msgstr ""
|
3166 |
|
3167 |
-
#: src/vue/pages/
|
3168 |
-
msgid ""
|
3169 |
-
"ExactMetrics has an intuitive setup wizard to guide you through the setup "
|
3170 |
-
"process."
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: src/vue/pages/
|
3174 |
-
msgid ""
|
3175 |
-
"MonsterInsights has an intuitive setup wizard to guide you through the "
|
3176 |
-
"setup process."
|
3177 |
msgstr ""
|
3178 |
|
3179 |
-
#: src/vue/pages/
|
3180 |
-
msgid "
|
3181 |
msgstr ""
|
3182 |
|
3183 |
-
#: src/vue/pages/
|
3184 |
-
msgid "
|
3185 |
msgstr ""
|
3186 |
|
3187 |
-
#: src/vue/pages/
|
3188 |
-
msgid "
|
3189 |
msgstr ""
|
3190 |
|
3191 |
-
#: src/vue/pages/
|
3192 |
-
msgid "
|
3193 |
msgstr ""
|
3194 |
|
3195 |
-
#: src/vue/pages/
|
3196 |
-
msgid "
|
3197 |
msgstr ""
|
3198 |
|
3199 |
-
#: src/vue/pages/
|
3200 |
-
msgid "
|
3201 |
msgstr ""
|
3202 |
|
3203 |
-
#: src/vue/pages/
|
3204 |
-
msgid "
|
3205 |
msgstr ""
|
3206 |
|
3207 |
-
#: src/vue/pages/
|
3208 |
-
msgid "
|
3209 |
msgstr ""
|
3210 |
|
3211 |
-
#: src/vue/pages/
|
3212 |
-
msgid "
|
|
|
|
|
3213 |
msgstr ""
|
3214 |
|
3215 |
-
#: src/vue/pages/
|
3216 |
-
msgid "
|
|
|
|
|
3217 |
msgstr ""
|
3218 |
|
3219 |
-
#: src/vue/
|
3220 |
-
msgid "
|
3221 |
msgstr ""
|
3222 |
|
3223 |
-
#: src/vue/
|
3224 |
-
msgid "
|
3225 |
msgstr ""
|
3226 |
|
3227 |
-
|
3228 |
-
|
3229 |
-
msgid "upgrading to %1$s"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
-
|
3233 |
-
|
3234 |
-
msgid "You're using %1$s. To unlock more features, consider %2$s."
|
3235 |
msgstr ""
|
3236 |
|
3237 |
-
#: src/vue/
|
3238 |
-
msgid "
|
3239 |
msgstr ""
|
3240 |
|
3241 |
-
#: src/vue/
|
3242 |
-
msgid "
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#: src/vue/
|
3246 |
-
msgid "
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: src/vue/
|
3250 |
-
msgid "
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: src/vue/
|
3254 |
-
msgid "
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: src/vue/
|
3258 |
-
msgid "
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
|
3262 |
-
|
|
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: src/vue/
|
3266 |
-
msgid "
|
3267 |
msgstr ""
|
3268 |
|
3269 |
-
|
3270 |
-
|
|
|
|
|
|
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#: src/vue/
|
3274 |
-
msgid "
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#: src/vue/
|
3278 |
-
msgid "
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#: src/vue/
|
3282 |
-
|
|
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#: src/vue/
|
3286 |
-
|
|
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: src/vue/
|
3290 |
-
msgid "
|
|
|
|
|
|
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: src/vue/
|
3294 |
-
msgid "
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#: src/vue/
|
3298 |
-
msgid "
|
|
|
|
|
3299 |
msgstr ""
|
3300 |
|
3301 |
-
#: src/vue/components/common/
|
3302 |
-
msgid "
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
|
3306 |
-
|
|
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: src/vue/
|
3310 |
-
msgid "
|
|
|
|
|
3311 |
msgstr ""
|
3312 |
|
3313 |
-
#: src/vue/
|
3314 |
-
msgid "
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
|
3318 |
-
|
|
|
|
|
|
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#: src/vue/
|
3322 |
-
msgid "
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: src/vue/
|
3326 |
-
msgid "
|
3327 |
msgstr ""
|
3328 |
|
3329 |
-
#: src/vue/
|
3330 |
-
msgid "
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
#: src/vue/
|
3334 |
-
msgid "
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#: src/vue/
|
3338 |
-
msgid "
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: src/vue/
|
3342 |
-
|
|
|
|
|
3343 |
msgstr ""
|
3344 |
|
3345 |
-
#: src/vue/
|
3346 |
-
msgid "
|
3347 |
msgstr ""
|
3348 |
|
3349 |
-
#: src/vue/
|
3350 |
-
msgid "
|
3351 |
msgstr ""
|
3352 |
|
3353 |
-
|
3354 |
-
|
3355 |
-
msgid "off"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#: src/vue/
|
3359 |
-
msgid "
|
|
|
|
|
|
|
3360 |
msgstr ""
|
3361 |
|
3362 |
-
|
3363 |
-
|
3364 |
-
msgid "To unlock more features, consider %1$s."
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
|
3368 |
-
|
3369 |
-
|
|
|
3370 |
msgstr ""
|
3371 |
|
3372 |
-
#: src/vue/
|
3373 |
-
msgid "
|
3374 |
msgstr ""
|
3375 |
|
3376 |
-
#: src/vue/
|
3377 |
-
msgid "
|
3378 |
msgstr ""
|
3379 |
|
3380 |
-
#: src/vue/
|
3381 |
-
msgid "
|
3382 |
msgstr ""
|
3383 |
|
3384 |
-
#: src/vue/
|
3385 |
-
msgid "
|
3386 |
msgstr ""
|
3387 |
|
3388 |
-
#: src/vue/
|
3389 |
-
msgid "
|
3390 |
msgstr ""
|
3391 |
|
3392 |
-
#: src/vue/
|
3393 |
-
msgid "
|
3394 |
msgstr ""
|
3395 |
|
3396 |
-
#: src/vue/
|
3397 |
-
msgid "
|
3398 |
msgstr ""
|
3399 |
|
3400 |
-
#: src/vue/
|
3401 |
-
msgid "
|
3402 |
msgstr ""
|
3403 |
|
3404 |
-
#: src/vue/
|
3405 |
-
msgid "
|
3406 |
msgstr ""
|
3407 |
|
3408 |
-
#: src/vue/components/common/core/
|
3409 |
-
|
|
|
3410 |
msgstr ""
|
3411 |
|
3412 |
-
#: src/vue/
|
3413 |
-
msgid "
|
3414 |
msgstr ""
|
3415 |
|
3416 |
-
#: src/vue/
|
3417 |
-
msgid "
|
3418 |
msgstr ""
|
3419 |
|
3420 |
-
#: src/vue/
|
3421 |
-
msgid "
|
3422 |
msgstr ""
|
3423 |
|
3424 |
-
#: src/vue/
|
3425 |
-
msgid "
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: src/vue/
|
3429 |
-
msgid "
|
3430 |
msgstr ""
|
3431 |
|
3432 |
-
#: src/vue/
|
3433 |
-
msgid "
|
|
|
|
|
3434 |
msgstr ""
|
3435 |
|
3436 |
-
#: src/vue/
|
3437 |
-
msgid "
|
3438 |
msgstr ""
|
3439 |
|
3440 |
-
#: src/vue/
|
3441 |
-
msgid "
|
|
|
|
|
3442 |
msgstr ""
|
3443 |
|
3444 |
-
#: src/vue/
|
3445 |
-
msgid "
|
3446 |
msgstr ""
|
3447 |
|
3448 |
-
|
3449 |
-
|
|
|
3450 |
msgstr ""
|
3451 |
|
3452 |
-
#: src/vue/
|
3453 |
-
msgid "
|
3454 |
msgstr ""
|
3455 |
|
3456 |
-
|
|
|
3457 |
msgid ""
|
3458 |
-
"
|
3459 |
-
"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
-
|
3463 |
-
|
3464 |
-
"
|
3465 |
-
"registered that are supported by this feature."
|
3466 |
msgstr ""
|
3467 |
|
3468 |
-
#: src/vue/
|
3469 |
-
msgid "
|
|
|
|
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: src/vue/
|
3473 |
-
msgid "
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#: src/vue/
|
3477 |
-
msgid "
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: src/vue/
|
3481 |
-
msgid "
|
3482 |
msgstr ""
|
3483 |
|
3484 |
-
#: src/vue/
|
3485 |
-
msgid "
|
3486 |
msgstr ""
|
3487 |
|
3488 |
-
#: src/vue/
|
3489 |
-
msgid "
|
3490 |
msgstr ""
|
3491 |
|
3492 |
-
#: src/vue/
|
3493 |
-
msgid "
|
3494 |
msgstr ""
|
3495 |
|
3496 |
-
#: src/vue/
|
3497 |
-
msgid "
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#: src/vue/
|
3501 |
-
msgid "
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#: src/vue/
|
3505 |
-
msgid "
|
|
|
|
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: src/vue/
|
3509 |
-
msgid "
|
3510 |
msgstr ""
|
3511 |
|
3512 |
-
#: src/vue/
|
3513 |
-
msgid "
|
|
|
|
|
3514 |
msgstr ""
|
3515 |
|
3516 |
-
#: src/vue/
|
3517 |
-
msgid "
|
3518 |
msgstr ""
|
3519 |
|
3520 |
-
#: src/vue/
|
3521 |
-
msgid "
|
3522 |
msgstr ""
|
3523 |
|
3524 |
-
#: src/vue/
|
3525 |
-
msgid "
|
3526 |
msgstr ""
|
3527 |
|
3528 |
-
#: src/vue/
|
3529 |
-
msgid "
|
3530 |
msgstr ""
|
3531 |
|
3532 |
-
#: src/vue/
|
3533 |
-
msgid "
|
3534 |
msgstr ""
|
3535 |
|
3536 |
-
#: src/vue/
|
3537 |
-
msgid "
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: src/vue/
|
3541 |
-
msgid "
|
|
|
|
|
3542 |
msgstr ""
|
3543 |
|
3544 |
-
#: src/vue/
|
3545 |
-
msgid "
|
3546 |
msgstr ""
|
3547 |
|
3548 |
-
#: src/vue/pages/
|
3549 |
-
msgid "
|
3550 |
msgstr ""
|
3551 |
|
3552 |
-
|
3553 |
-
|
|
|
|
|
|
|
|
|
3554 |
msgstr ""
|
3555 |
|
3556 |
-
#: src/vue/
|
3557 |
-
msgid "
|
3558 |
msgstr ""
|
3559 |
|
3560 |
-
#: src/vue/
|
3561 |
-
msgid "
|
3562 |
msgstr ""
|
3563 |
|
3564 |
-
#: src/vue/
|
3565 |
-
msgid "
|
3566 |
msgstr ""
|
3567 |
|
3568 |
-
#: src/vue/
|
3569 |
-
msgid "
|
3570 |
msgstr ""
|
3571 |
|
3572 |
-
|
3573 |
-
|
3574 |
-
msgid "A very good score is between %1$s60 and 80%2$s."
|
3575 |
msgstr ""
|
3576 |
|
3577 |
-
|
3578 |
-
|
3579 |
-
msgid "For best results, you should strive for %1$s70 and above%2$s."
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: src/vue/
|
3583 |
-
msgid "Read
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: src/vue/
|
3587 |
-
msgid "
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: src/vue/
|
3591 |
-
msgid "
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
|
3595 |
-
|
3596 |
-
msgid "Welcome to %1$s"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
# Translators: 1 - The plugin name ("All in One SEO").
|
3600 |
-
#: src/vue/
|
3601 |
-
msgid ""
|
3602 |
-
"Thank you for choosing the best WordPress SEO plugin. %1$s default settings "
|
3603 |
-
"works great out of the box. We created the setup wizard to guide you "
|
3604 |
-
"through some important configuration settings & custom-tailored SEO best "
|
3605 |
-
"practices for your site to help you improve rankings."
|
3606 |
-
msgstr ""
|
3607 |
-
|
3608 |
-
#: src/vue/components/common/core/GettingStarted.vue:88
|
3609 |
-
msgid "Launch the Setup Wizard"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
-
#: src/vue/
|
3613 |
-
msgid "
|
|
|
|
|
3614 |
msgstr ""
|
3615 |
|
3616 |
-
#: src/vue/
|
3617 |
-
msgid "
|
3618 |
msgstr ""
|
3619 |
|
3620 |
-
#: src/vue/
|
3621 |
-
msgid "
|
3622 |
msgstr ""
|
3623 |
|
3624 |
-
#: src/vue/
|
3625 |
-
msgid "
|
3626 |
msgstr ""
|
3627 |
|
3628 |
-
#: src/vue/
|
3629 |
-
msgid "
|
3630 |
msgstr ""
|
3631 |
|
3632 |
-
#: src/vue/
|
3633 |
-
msgid "
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
|
3637 |
-
|
3638 |
-
msgid "Browse documentation, reference material, and tutorials for %1$s."
|
3639 |
msgstr ""
|
3640 |
|
3641 |
-
#: src/vue/
|
3642 |
-
msgid "
|
3643 |
msgstr ""
|
3644 |
|
3645 |
-
#: src/vue/
|
3646 |
-
msgid "
|
3647 |
msgstr ""
|
3648 |
|
3649 |
-
#: src/vue/
|
3650 |
-
msgid "
|
3651 |
msgstr ""
|
3652 |
|
3653 |
-
#: src/vue/components/common/core/
|
3654 |
-
|
|
|
|
|
3655 |
msgstr ""
|
3656 |
|
3657 |
-
#: src/vue/components/common/core/
|
3658 |
-
#: src/vue/components/common/core/
|
3659 |
-
|
|
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
|
3663 |
-
|
|
|
|
|
|
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#: src/vue/
|
3667 |
-
msgid "
|
|
|
|
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: src/vue/
|
3671 |
-
msgid "
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#: src/vue/
|
3675 |
-
msgid "
|
|
|
|
|
|
|
|
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: src/vue/
|
3679 |
-
msgid "
|
3680 |
msgstr ""
|
3681 |
|
3682 |
-
#: src/vue/
|
3683 |
-
msgid "
|
3684 |
msgstr ""
|
3685 |
|
3686 |
-
#: src/vue/
|
3687 |
-
msgid "
|
|
|
|
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#: src/vue/
|
3691 |
-
msgid "
|
3692 |
msgstr ""
|
3693 |
|
3694 |
-
#: src/vue/
|
3695 |
-
msgid "
|
3696 |
msgstr ""
|
3697 |
|
3698 |
-
#: src/vue/
|
3699 |
-
msgid ""
|
3700 |
-
"You need to use titles and descriptions that are attractive to users and "
|
3701 |
-
"contain your keywords. Use the keywords naturally - keyword stuffing is "
|
3702 |
-
"usually detected and will result in a lower ranking. What's more, it's "
|
3703 |
-
"pretty off-putting for potential readers, who are more likely to click on "
|
3704 |
-
"an appealing link."
|
3705 |
msgstr ""
|
3706 |
|
3707 |
-
#: src/vue/
|
3708 |
-
msgid "
|
3709 |
msgstr ""
|
3710 |
|
3711 |
-
#: src/vue/
|
3712 |
-
msgid "
|
3713 |
msgstr ""
|
3714 |
|
3715 |
-
|
3716 |
-
|
3717 |
-
msgid "For the best SEO results there should be exactly one H1 tag on each page."
|
3718 |
msgstr ""
|
3719 |
|
3720 |
-
|
3721 |
-
|
3722 |
-
|
|
|
3723 |
msgstr ""
|
3724 |
|
3725 |
-
#: src/vue/
|
3726 |
-
msgid "
|
3727 |
msgstr ""
|
3728 |
|
3729 |
-
#: src/vue/
|
3730 |
-
msgid "
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
#: src/vue/
|
3734 |
-
msgid ""
|
3735 |
-
"WordPress sites usually insert the page or post title as an H1 tag "
|
3736 |
-
"(although custom themes can change this behavior)."
|
3737 |
msgstr ""
|
3738 |
|
3739 |
-
#: src/vue/
|
3740 |
-
msgid ""
|
3741 |
-
"Ensure your most important keywords appear in the H1 tag - don't force it, "
|
3742 |
-
"use them in a natural way that makes sense to human readers."
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#: src/vue/
|
3746 |
-
msgid ""
|
3747 |
-
"Because your headline plays a large role in reader engagement, it's worth "
|
3748 |
-
"spending extra time perfecting it. Many top copywriters spend hours getting "
|
3749 |
-
"their headlines just right - sometimes they spend longer on the headline "
|
3750 |
-
"than the rest of the article!"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#: src/vue/
|
3754 |
-
msgid ""
|
3755 |
-
"A good headline stimulates reader interest and offers a compelling reason "
|
3756 |
-
"to read your content. It promises a believable benefit."
|
3757 |
msgstr ""
|
3758 |
|
3759 |
-
|
3760 |
-
|
3761 |
-
"
|
3762 |
-
"spans (because that describes a large percentage of the world's "
|
3763 |
-
"population). Readers visit websites for selfish reasons - they're not there "
|
3764 |
-
"to make you happy."
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: src/vue/
|
3768 |
-
msgid "
|
3769 |
msgstr ""
|
3770 |
|
3771 |
-
#: src/vue/
|
3772 |
-
msgid "
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: src/vue/
|
3776 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3777 |
msgstr ""
|
3778 |
|
3779 |
-
#: src/vue/
|
3780 |
-
msgid "
|
3781 |
msgstr ""
|
3782 |
|
3783 |
-
|
|
|
3784 |
msgid ""
|
3785 |
-
"
|
3786 |
-
"
|
3787 |
-
"
|
|
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: src/vue/
|
3791 |
msgid ""
|
3792 |
-
"
|
3793 |
-
"
|
3794 |
-
"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
-
#: src/vue/
|
3798 |
-
msgid ""
|
3799 |
-
"It should be easy to include your main and supporting keywords in the H2 "
|
3800 |
-
"tags - after all, these keywords describe your content! If it's hard to "
|
3801 |
-
"work the keywords into your subheadings, it could be a sign that the "
|
3802 |
-
"keywords aren't closely related to your content."
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: src/vue/
|
3806 |
msgid ""
|
3807 |
-
"
|
3808 |
-
"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
-
#: src/vue/
|
3812 |
-
msgid "
|
3813 |
msgstr ""
|
3814 |
|
3815 |
-
#: src/vue/
|
3816 |
-
msgid "
|
3817 |
msgstr ""
|
3818 |
|
3819 |
-
#: src/vue/
|
3820 |
-
msgid "
|
3821 |
msgstr ""
|
3822 |
|
3823 |
-
#: src/vue/
|
3824 |
-
msgid "
|
3825 |
msgstr ""
|
3826 |
|
3827 |
-
#: src/vue/
|
3828 |
-
msgid ""
|
3829 |
-
"Make sure every image has an alt tag, and add useful descriptions to each "
|
3830 |
-
"image. Add your keywords or synonyms - but do it in a natural way."
|
3831 |
msgstr ""
|
3832 |
|
3833 |
-
#: src/vue/
|
3834 |
-
msgid "
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#: src/vue/
|
3838 |
-
msgid "
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: src/vue/
|
3842 |
-
msgid "
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#: src/vue/
|
3846 |
-
msgid "
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
|
3850 |
-
|
|
|
|
|
|
|
|
|
|
|
3851 |
msgstr ""
|
3852 |
|
3853 |
-
#: src/vue/
|
3854 |
-
msgid "
|
3855 |
msgstr ""
|
3856 |
|
3857 |
-
|
3858 |
-
|
|
|
|
|
|
|
3859 |
msgstr ""
|
3860 |
|
3861 |
-
#: src/vue/
|
3862 |
-
msgid "
|
|
|
|
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
|
3866 |
-
|
|
|
|
|
|
|
|
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
#: src/vue/
|
3870 |
msgid ""
|
3871 |
-
"
|
3872 |
-
"
|
3873 |
-
"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#: src/vue/
|
3877 |
-
msgid ""
|
3878 |
-
"Ideally, the links should be highly relevant to the subject you're writing "
|
3879 |
-
"about. It's impossible to cover every aspect of a subject on a single page, "
|
3880 |
-
"but your readers may be fascinated by some detail you barely touch on. If "
|
3881 |
-
"you link to a resource where they can learn more, they'll be grateful. "
|
3882 |
-
"What's more, you'll be rewarded with higher rankings!"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
-
#: src/vue/
|
3886 |
-
msgid "
|
3887 |
msgstr ""
|
3888 |
|
3889 |
-
#: src/vue/
|
3890 |
-
msgid "
|
3891 |
msgstr ""
|
3892 |
|
3893 |
-
#: src/vue/
|
3894 |
-
msgid "
|
3895 |
msgstr ""
|
3896 |
|
3897 |
-
#: src/vue/
|
3898 |
-
msgid "
|
3899 |
msgstr ""
|
3900 |
|
3901 |
-
#: src/vue/
|
3902 |
-
msgid ""
|
3903 |
-
"Every page on your site should have a <link> tag with a 'rel=\"canonical\"' "
|
3904 |
-
"attribute. The link tag should go inside the page's head tag, and it should "
|
3905 |
-
"contain the page's \"correct\" URL."
|
3906 |
msgstr ""
|
3907 |
|
3908 |
-
#: src/vue/
|
3909 |
-
msgid ""
|
3910 |
-
"If you've republished an article from another source (such as another site "
|
3911 |
-
"or a different section of your own site) then you need to pick which URL is "
|
3912 |
-
"the \"correct\" one and use that!"
|
3913 |
msgstr ""
|
3914 |
|
3915 |
-
#: src/vue/
|
3916 |
-
msgid "
|
3917 |
msgstr ""
|
3918 |
|
3919 |
-
#: src/vue/
|
3920 |
-
msgid "
|
3921 |
msgstr ""
|
3922 |
|
3923 |
-
#: src/vue/
|
3924 |
-
msgid "
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: src/vue/
|
3928 |
-
msgid "
|
3929 |
msgstr ""
|
3930 |
|
3931 |
-
#: src/vue/
|
3932 |
-
|
3933 |
-
|
3934 |
-
"the reach of search engines!"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
-
#: src/vue/
|
3938 |
-
msgid ""
|
3939 |
-
"The www and non-www versions of your URL are not redirected to the same "
|
3940 |
-
"site."
|
3941 |
msgstr ""
|
3942 |
|
3943 |
-
#: src/vue/
|
3944 |
-
msgid "
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: src/vue/
|
3948 |
-
msgid ""
|
3949 |
-
"Both the www and non-www versions of your URL are redirected to the same "
|
3950 |
-
"site."
|
3951 |
msgstr ""
|
3952 |
|
3953 |
-
#: src/vue/
|
3954 |
-
msgid ""
|
3955 |
-
"Both the www and non-www versions of the URL are redirected to the same "
|
3956 |
-
"site."
|
3957 |
msgstr ""
|
3958 |
|
3959 |
-
#: src/vue/
|
3960 |
-
|
3961 |
-
|
3962 |
-
"prefer a plain domain name. There are marketing pros and cons for each "
|
3963 |
-
"choice, but neither one is better or worse for SEO purposes - as long as "
|
3964 |
-
"you're consistent."
|
3965 |
msgstr ""
|
3966 |
|
3967 |
-
#: src/vue/
|
3968 |
-
msgid ""
|
3969 |
-
"You should use HTTP redirections (301 permanant redirects) to pass PageRank "
|
3970 |
-
"from the \"wrong\" URLs to the standard (canonical) ones. That way, your "
|
3971 |
-
"content will still benefit from backlinks if someone makes a mistake and "
|
3972 |
-
"uses the wrong URL."
|
3973 |
msgstr ""
|
3974 |
|
3975 |
-
#: src/vue/
|
3976 |
-
msgid "
|
3977 |
msgstr ""
|
3978 |
|
3979 |
-
#: src/vue/
|
3980 |
-
msgid "
|
3981 |
msgstr ""
|
3982 |
|
3983 |
-
#: src/vue/
|
3984 |
-
msgid "
|
3985 |
msgstr ""
|
3986 |
|
3987 |
-
#: src/vue/
|
3988 |
-
|
3989 |
-
|
3990 |
-
"
|
3991 |
msgstr ""
|
3992 |
|
3993 |
-
#: src/vue/
|
3994 |
-
msgid ""
|
3995 |
-
"The site has a robots.txt file which includes one or more \"disallow\" "
|
3996 |
-
"directives."
|
3997 |
msgstr ""
|
3998 |
|
3999 |
-
#: src/vue/
|
4000 |
-
msgid "Your
|
4001 |
msgstr ""
|
4002 |
|
4003 |
-
|
4004 |
-
|
|
|
4005 |
msgstr ""
|
4006 |
|
4007 |
-
# Translators: 1 -
|
4008 |
-
#: src/vue/
|
4009 |
-
msgid "
|
4010 |
msgstr ""
|
4011 |
|
4012 |
-
|
4013 |
-
#: src/vue/
|
4014 |
-
msgid "
|
4015 |
msgstr ""
|
4016 |
|
4017 |
-
|
4018 |
-
|
4019 |
-
msgid ""
|
4020 |
-
"You can manually create a robots.txt file and upload it to your site's web "
|
4021 |
-
"root. A simpler option is to use a plugin for your CMS platform."
|
4022 |
msgstr ""
|
4023 |
|
4024 |
-
|
4025 |
-
|
4026 |
-
msgid ""
|
4027 |
-
"%1$s has a full suite of tools to manage the robots.txt file, along with "
|
4028 |
-
"other related technologies, like XML Sitemaps."
|
4029 |
-
msgstr ""
|
4030 |
-
|
4031 |
-
#: src/vue/classes/SiteAnalysis.js:350
|
4032 |
-
msgid "Some Open Graph meta tags are missing."
|
4033 |
msgstr ""
|
4034 |
|
4035 |
-
#: src/vue/
|
4036 |
-
msgid "
|
4037 |
msgstr ""
|
4038 |
|
4039 |
-
#: src/vue/
|
4040 |
-
msgid "
|
4041 |
msgstr ""
|
4042 |
|
4043 |
-
|
4044 |
-
|
4045 |
-
msgid "The SEO title is only %1$d characters long, which is too short."
|
4046 |
msgstr ""
|
4047 |
|
4048 |
-
#: src/vue/
|
4049 |
-
msgid ""
|
4050 |
-
"Insert a customized Open Graph meta tag for each important page on your "
|
4051 |
-
"site. The standard is very well documented - you can learn more from "
|
4052 |
-
"Facebook's developer pages."
|
4053 |
msgstr ""
|
4054 |
|
4055 |
-
#: src/vue/
|
4056 |
-
msgid ""
|
4057 |
-
"%1$s provides a simple but powerful interface to craft your Open Graph "
|
4058 |
-
"data. You get immediate feedback with an interactive preview, and you don't "
|
4059 |
-
"have to mess around with raw HTML markup."
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: src/vue/
|
4063 |
-
msgid "
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: src/vue/
|
4067 |
-
msgid "No
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: src/vue/
|
4071 |
-
msgid "
|
4072 |
msgstr ""
|
4073 |
|
4074 |
-
#: src/vue/
|
4075 |
-
msgid "
|
|
|
|
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
|
4079 |
-
#: src/vue/classes/SiteAnalysis.js:385
|
4080 |
msgid ""
|
4081 |
-
"
|
4082 |
-
"
|
4083 |
-
"your hands dirty with complex HTML markup."
|
4084 |
msgstr ""
|
4085 |
|
4086 |
-
#: src/vue/
|
4087 |
-
msgid "
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: src/vue/
|
4091 |
-
msgid "
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: src/vue/
|
4095 |
-
|
|
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
|
4099 |
-
#: src/vue/
|
4100 |
-
msgid "
|
4101 |
msgstr ""
|
4102 |
|
4103 |
-
#: src/vue/
|
4104 |
-
|
|
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: src/vue/
|
4108 |
-
|
|
|
4109 |
msgstr ""
|
4110 |
|
4111 |
-
#: src/vue/
|
4112 |
-
|
4113 |
-
|
4114 |
-
"files to set the \"expires\" header for all image files. For Apache, you "
|
4115 |
-
"can also use a \".htaccess\" file to change the settings for each folder."
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
#: src/vue/
|
4119 |
-
|
4120 |
-
|
4121 |
-
"more user-friendly option. WordPress has a host of caching plugins, and "
|
4122 |
-
"most of them give you options to control the caching headers."
|
4123 |
msgstr ""
|
4124 |
|
4125 |
-
#: src/vue/
|
4126 |
-
|
|
|
4127 |
msgstr ""
|
4128 |
|
4129 |
-
#: src/vue/
|
4130 |
-
|
|
|
4131 |
msgstr ""
|
4132 |
|
4133 |
-
|
4134 |
-
#: src/vue/
|
4135 |
-
msgid "
|
4136 |
msgstr ""
|
4137 |
|
4138 |
-
#: src/vue/
|
4139 |
-
|
4140 |
-
"
|
4141 |
-
"Bootstrap), themes and templates, and third-party plugins."
|
4142 |
msgstr ""
|
4143 |
|
4144 |
-
#: src/vue/
|
4145 |
-
|
|
|
4146 |
msgstr ""
|
4147 |
|
4148 |
-
#: src/vue/
|
4149 |
-
|
4150 |
-
"
|
4151 |
-
"minify JavaScript files."
|
4152 |
msgstr ""
|
4153 |
|
4154 |
-
#: src/vue/
|
4155 |
-
|
|
|
4156 |
msgstr ""
|
4157 |
|
4158 |
-
#: src/vue/
|
4159 |
-
msgid "
|
4160 |
msgstr ""
|
4161 |
|
4162 |
-
#: src/vue/
|
4163 |
-
msgid ""
|
4164 |
-
"CSS files appear in many places, including frameworks (like Bootstrap), "
|
4165 |
-
"themes and templates, and third-party plugins."
|
4166 |
msgstr ""
|
4167 |
|
4168 |
-
#: src/vue/
|
4169 |
-
msgid "
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#: src/vue/
|
4173 |
-
msgid ""
|
4174 |
-
"There are server-side tools (including WordPress plugins) to automatically "
|
4175 |
-
"minify CSS files."
|
4176 |
msgstr ""
|
4177 |
|
4178 |
-
|
4179 |
-
|
4180 |
-
msgid "Your page makes %1$d requests."
|
4181 |
msgstr ""
|
4182 |
|
4183 |
-
|
4184 |
-
|
4185 |
-
msgid "The page makes %1$d requests."
|
4186 |
msgstr ""
|
4187 |
|
4188 |
-
#: src/vue/
|
4189 |
-
msgid "
|
4190 |
msgstr ""
|
4191 |
|
4192 |
-
#: src/vue/
|
4193 |
-
msgid "
|
4194 |
msgstr ""
|
4195 |
|
4196 |
-
#: src/vue/
|
4197 |
-
msgid "
|
4198 |
msgstr ""
|
4199 |
|
4200 |
-
#: src/vue/
|
4201 |
-
msgid "
|
4202 |
msgstr ""
|
4203 |
|
4204 |
-
#: src/vue/
|
4205 |
-
msgid "
|
4206 |
msgstr ""
|
4207 |
|
4208 |
-
|
4209 |
-
|
4210 |
-
msgid "Your SEO title is set and is %1$d characters long."
|
4211 |
msgstr ""
|
4212 |
|
4213 |
-
|
4214 |
-
|
4215 |
-
msgid "The size of the HTML document is %1$d Kb."
|
4216 |
msgstr ""
|
4217 |
|
4218 |
-
#: src/vue/
|
4219 |
-
msgid "
|
4220 |
msgstr ""
|
4221 |
|
4222 |
-
#: src/vue/
|
4223 |
-
msgid "
|
4224 |
msgstr ""
|
4225 |
|
4226 |
-
#: src/vue/
|
4227 |
-
msgid ""
|
4228 |
-
"In order to reduce page size, remove any unnecessary tags from your markup. "
|
4229 |
-
"This includes developer comments, which are invisible to your users - "
|
4230 |
-
"search engines ignore the text in comments, too."
|
4231 |
msgstr ""
|
4232 |
|
4233 |
-
#: src/vue/
|
4234 |
-
msgid ""
|
4235 |
-
"Sometimes inline CSS is a culprit. A little inline CSS can help your page "
|
4236 |
-
"render faster. Too much will bloat the HTML file and increase the page "
|
4237 |
-
"loading time."
|
4238 |
msgstr ""
|
4239 |
|
4240 |
-
#: src/vue/
|
4241 |
-
msgid ""
|
4242 |
-
"You can reduce CSS repetition with HTML class and ID attributes. Often the "
|
4243 |
-
"same rules will be repeated across many page elements, embedded in each "
|
4244 |
-
"tag's \"style\" attribute. You can extract them into a single \"style\" tag "
|
4245 |
-
"and use classes and ID's to target each element."
|
4246 |
msgstr ""
|
4247 |
|
4248 |
-
#: src/vue/
|
4249 |
-
msgid ""
|
4250 |
-
"Removing white space can also have an impact on your HTML page's size. "
|
4251 |
-
"White space characters like carriage returns and tabs are ignored by the "
|
4252 |
-
"browser, but they make the markup easier for developers to read. So you "
|
4253 |
-
"should always strip them from your templates or themes before you use them "
|
4254 |
-
"in a production environment."
|
4255 |
msgstr ""
|
4256 |
|
4257 |
-
|
4258 |
-
|
4259 |
-
msgid "The SEO title is set and is %1$d characters long."
|
4260 |
msgstr ""
|
4261 |
|
4262 |
-
|
4263 |
-
|
4264 |
-
msgid ""
|
4265 |
-
"The response time of your page is %1$f seconds. It is recommended to keep "
|
4266 |
-
"it equal to or below 0.2 seconds."
|
4267 |
msgstr ""
|
4268 |
|
4269 |
-
|
4270 |
-
|
4271 |
-
msgid ""
|
4272 |
-
"The response time of the page is %1$f seconds. It is recommended to keep it "
|
4273 |
-
"equal to or below 0.2 seconds."
|
4274 |
msgstr ""
|
4275 |
|
4276 |
-
#: src/vue/classes/SiteAnalysis.js:
|
4277 |
-
msgid "
|
4278 |
msgstr ""
|
4279 |
|
4280 |
-
#: src/vue/classes/SiteAnalysis.js:
|
4281 |
-
msgid "
|
4282 |
msgstr ""
|
4283 |
|
4284 |
-
#: src/vue/classes/SiteAnalysis.js:
|
4285 |
-
msgid ""
|
4286 |
-
"If you want to continue to improve your response time, the simplest and "
|
4287 |
-
"fastest fix is to use a caching plugin. Caching plugins keep a cached "
|
4288 |
-
"version of each page on your site. Instead of building the page from "
|
4289 |
-
"scratch, the server will send the cached copy."
|
4290 |
msgstr ""
|
4291 |
|
4292 |
-
#: src/vue/classes/SiteAnalysis.js:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4293 |
msgid ""
|
4294 |
-
"You
|
4295 |
-
"
|
4296 |
-
"
|
4297 |
-
"
|
4298 |
-
"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
-
#: src/vue/classes/SiteAnalysis.js:
|
4302 |
-
msgid "
|
4303 |
msgstr ""
|
4304 |
|
4305 |
-
#: src/vue/classes/SiteAnalysis.js:
|
4306 |
-
msgid "
|
4307 |
msgstr ""
|
4308 |
|
4309 |
-
|
4310 |
-
|
|
|
4311 |
msgstr ""
|
4312 |
|
4313 |
-
|
4314 |
-
|
|
|
4315 |
msgstr ""
|
4316 |
|
4317 |
-
#: src/vue/classes/SiteAnalysis.js:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4318 |
msgid ""
|
4319 |
-
"
|
4320 |
-
"
|
4321 |
-
"updated in a timely fashion, outdated plugins and themes can be exploited."
|
4322 |
msgstr ""
|
4323 |
|
4324 |
-
# Translators: 1 - The name of the theme.
|
4325 |
-
#: src/vue/classes/SiteAnalysis.js:538
|
4326 |
-
msgid "Anyone can see that you are using the %1$s theme."
|
3 |
"Content-Type: text/plain; charset=utf-8\n"
|
4 |
"X-Generator: babel-plugin-makepot-aioseo\n"
|
5 |
|
6 |
+
#: src/vue/pages/local-seo/router/paths.js:19
|
7 |
+
msgid "Locations"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
msgstr ""
|
9 |
|
10 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:292
|
11 |
+
msgid "Opening Hours"
|
12 |
msgstr ""
|
13 |
|
14 |
+
#: src/vue/router/index.js:51
|
15 |
+
msgid "Are you sure you want to leave? you have unsaved changes!"
|
16 |
msgstr ""
|
17 |
|
18 |
+
#: src/vue/pages/feature-manager/views/Main.vue:20
|
19 |
+
msgid "Feature Manager"
|
20 |
msgstr ""
|
21 |
|
22 |
# Translators: 1 - The plugin short name ("AIOSEO").
|
23 |
+
#: src/vue/mixins/SeoSiteScore.js:18
|
24 |
msgid "Connect with %1$s"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: src/vue/plugins/constants.js:1077
|
28 |
msgid "Analytics"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: src/vue/pages/post-settings/registerScoreToggler.js:21
|
32 |
+
msgid "N/A"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: src/vue/pages/dashboard/views/Main.vue:210
|
36 |
+
msgid "Dashboard"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:236
|
40 |
+
msgid "Robots.txt Editor"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: src/vue/pages/tools/views/HtaccessEditor.vue:40
|
44 |
+
msgid ".htaccess Editor"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:202
|
48 |
+
msgid "Bad Bot Blocker"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: src/vue/pages/tools/router/paths.js:46
|
52 |
+
msgid "Import/Export"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: src/vue/pages/tools/router/paths.js:55
|
56 |
+
msgid "Database Tools"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: src/vue/pages/tools/router/paths.js:64
|
60 |
+
msgid "System Status"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: src/vue/pages/about/router/paths.js:19
|
64 |
+
msgid "About Us"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: src/vue/pages/about/router/paths.js:28
|
68 |
+
msgid "Getting Started"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: src/vue/pages/about/router/paths.js:37
|
72 |
+
msgid "Lite vs. Pro"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: src/vue/pages/settings/views/Main.vue:29
|
76 |
+
msgid "General Settings"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:192
|
80 |
+
msgid "Webmaster Tools"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:193
|
84 |
+
msgid "RSS Content"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:210
|
88 |
+
msgid "Access Control"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:194
|
92 |
+
msgid "Advanced"
|
93 |
msgstr ""
|
94 |
|
95 |
+
# Translators: This refers to social media profiles.
|
96 |
+
#: src/vue/pages/social-networks/views/SocialProfiles.vue:25
|
97 |
msgid "Social Profiles"
|
98 |
msgstr ""
|
99 |
|
100 |
#: src/vue/pages/post-settings/views/Social.vue:65
|
|
|
101 |
msgid "Facebook"
|
102 |
msgstr ""
|
103 |
|
104 |
#: src/vue/pages/post-settings/views/Social.vue:69
|
|
|
105 |
msgid "Twitter"
|
106 |
msgstr ""
|
107 |
|
118 |
msgstr ""
|
119 |
|
120 |
#: src/vue/components/common/core/PriorityScore.vue:63
|
121 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:137
|
122 |
+
#: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:405
|
123 |
msgid "Taxonomies"
|
124 |
msgstr ""
|
125 |
|
131 |
msgid "Archives"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: src/vue/pages/sitemaps/router/paths.js:19
|
135 |
+
msgid "General Sitemap"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: src/vue/pages/sitemaps/mixins/VideoSitemap.js:9
|
139 |
+
#: src/vue/plugins/constants.js:1115
|
140 |
+
msgid "Video Sitemap"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:7
|
144 |
+
#: src/vue/plugins/constants.js:1126
|
145 |
+
msgid "News Sitemap"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:124
|
149 |
+
msgid "RSS Sitemap"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: src/vue/pages/setup-wizard/router/paths.js:19
|
153 |
+
msgid "Welcome"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: src/vue/pages/setup-wizard/router/paths.js:28
|
157 |
+
msgid "Import"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: src/vue/pages/setup-wizard/router/paths.js:37
|
161 |
+
msgid "Category"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:315
|
165 |
+
msgid "Additional Site Information"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: src/vue/pages/setup-wizard/router/paths.js:55
|
169 |
+
msgid "Choose Features"
|
|
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:249
|
173 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:195
|
174 |
+
msgid "Search Appearance"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: src/vue/pages/setup-wizard/router/paths.js:73
|
178 |
+
msgid "Smart Recommendations"
|
|
|
|
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: src/vue/pages/setup-wizard/router/paths.js:82
|
182 |
+
msgid "License Key"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: src/vue/pages/setup-wizard/router/paths.js:91
|
186 |
+
msgid "Success"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: src/vue/pages/seo-analysis/router/paths.js:19
|
190 |
+
msgid "SEO Audit Checklist"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: src/vue/pages/seo-analysis/router/paths.js:28
|
194 |
+
msgid "Analyze Competitor Site"
|
|
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: src/vue/pages/local-seo/views/OpeningHours.vue:31
|
198 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:280
|
199 |
+
msgid "Opening Hours Settings"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:281
|
203 |
+
msgid "Show Opening Hours"
|
|
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:282
|
207 |
+
msgid "Display Opening Hours"
|
|
|
|
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:283
|
211 |
+
msgid "Labels"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:284
|
215 |
+
msgid "Closed label"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:285
|
219 |
+
msgid "Text to display when 'Closed' setting is checked"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:286
|
223 |
+
msgid "Open 24h label"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:287
|
227 |
+
msgid "Text to display when 'Open 24h' setting is checked"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:288
|
231 |
+
msgid "Open 24/7"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:289
|
235 |
+
msgid "Use 24h format"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:290
|
239 |
+
msgid "Timezone"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:291
|
243 |
+
msgid "Select your timezone:"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:293
|
247 |
+
msgid "Monday"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:294
|
251 |
+
msgid "Tuesday"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:295
|
255 |
+
msgid "Wednesday"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:296
|
259 |
+
msgid "Thursday"
|
|
|
|
|
|
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:297
|
263 |
+
msgid "Friday"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:298
|
267 |
+
msgid "Saturday"
|
|
|
|
|
|
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:299
|
271 |
+
msgid "Sunday"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:300
|
275 |
+
msgid "Open 24h"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:301
|
279 |
+
msgid "Closed"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:100
|
283 |
+
msgid "Locations Settings"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:106
|
287 |
+
msgid "Business Info"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: src/vue/components/lite/local-business/Name.vue:16
|
291 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:120
|
292 |
+
msgid "name"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: src/vue/components/lite/local-business/Name.vue:17
|
296 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:121
|
297 |
+
msgid "Your name or company name."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:108
|
301 |
+
msgid "Business Type"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:109
|
305 |
+
msgid "URLs"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:115
|
309 |
+
msgid "Business Image"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:116
|
313 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:328
|
314 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:447
|
315 |
+
msgid "Upload or Select Image"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:117
|
319 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:329
|
320 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:448
|
321 |
+
msgid "Paste your image URL or select a new image"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:118
|
325 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:330
|
326 |
+
msgid ""
|
327 |
+
"Minimum size: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or "
|
328 |
+
"WEBP format."
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:119
|
332 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:331
|
333 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:459
|
334 |
+
msgid "Remove"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:129
|
338 |
+
msgid "Website URL:"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:130
|
342 |
+
msgid "About Page URL:"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:131
|
346 |
+
msgid "Contact Page URL:"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: src/vue/components/common/core/PriorityScore.vue:77
|
350 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:124
|
351 |
+
msgid "default"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:125
|
355 |
+
msgid "Animal Shelter"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:304
|
359 |
+
msgid "Select your timezone"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:111
|
363 |
+
msgid "Business Contact Info"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:113
|
367 |
+
msgid "Payment Info"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: src/vue/components/common/core/FeatureCard.vue:125
|
371 |
+
#: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:141
|
372 |
+
#: src/vue/pages/sitemaps/views/pro/VideoSitemapActivate.vue:122
|
373 |
msgid ""
|
374 |
+
"An error occurred while activating the addon. Please upload it manually or "
|
375 |
+
"contact support for more information."
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: src/vue/pages/connect-pro/views/Main.vue:45
|
379 |
+
msgid "Connecting..."
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: src/vue/pages/dashboard/views/Main.vue:201
|
383 |
+
msgid "Smart Schema"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: src/vue/pages/local-seo/views/Main.vue:21
|
387 |
+
#: src/vue/plugins/constants.js:1104
|
388 |
+
msgid "Local SEO"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: src/vue/pages/dashboard/views/Main.vue:203
|
392 |
+
msgid "Advanced support for e-commerce"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: src/vue/pages/dashboard/views/Main.vue:204
|
396 |
+
msgid "Advanced Google Analytics tracking"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: src/vue/pages/dashboard/views/Main.vue:205
|
400 |
+
msgid "Video SEO Module"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: src/vue/pages/dashboard/views/Main.vue:206
|
404 |
+
msgid "Greater control over display settings"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:152
|
408 |
+
msgid "SEO for Categories, Tags and Custom Taxonomies"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: src/vue/pages/dashboard/views/Main.vue:208
|
412 |
+
msgid "Social meta for Categories, Tags and Custom Taxonomies"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: src/vue/pages/dashboard/views/Main.vue:209
|
416 |
+
msgid "Ad free (no banner adverts)"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: src/vue/pages/dashboard/views/Main.vue:211
|
420 |
+
msgid "There are no new notifications at this moment."
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: src/vue/pages/dashboard/views/Main.vue:212
|
424 |
+
msgid "See all dismissed notifications."
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: src/vue/pages/dashboard/views/Main.vue:213
|
428 |
+
msgid "SEO Site Score"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: src/vue/pages/dashboard/views/Main.vue:214
|
432 |
+
msgid "Support"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
436 |
+
#: src/vue/pages/dashboard/views/Main.vue:216
|
437 |
+
msgid "Read the %1$s user guide"
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: src/vue/pages/dashboard/views/Main.vue:217
|
441 |
+
msgid "Access our Premium Support"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: src/vue/pages/dashboard/views/Main.vue:218
|
445 |
+
msgid "View the Changelog"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: src/vue/pages/dashboard/views/Main.vue:219
|
449 |
+
msgid "Watch video tutorials"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: src/vue/pages/dashboard/views/Main.vue:220
|
453 |
+
msgid "Getting started? Read the Beginners Guide"
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: src/vue/pages/dashboard/views/Main.vue:221
|
457 |
+
msgid "Quicklinks"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: src/vue/pages/dashboard/views/Main.vue:222
|
461 |
+
msgid ""
|
462 |
+
"You can use these quicklinks to quickly access our settings pages to adjust "
|
463 |
+
"your site's SEO settings."
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: src/vue/pages/dashboard/views/Main.vue:224
|
467 |
+
msgid ""
|
468 |
+
"Configure how your website content will look in Google, Bing and other "
|
469 |
+
"search engines."
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: src/vue/pages/seo-analysis/views/Main.vue:21
|
473 |
+
msgid "SEO Analysis"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: src/vue/pages/dashboard/views/Main.vue:226
|
477 |
+
msgid ""
|
478 |
+
"Check how your site scores with our SEO analyzer and compare against your "
|
479 |
+
"competitor's site."
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: src/vue/pages/dashboard/views/Main.vue:227
|
483 |
+
msgid ""
|
484 |
+
"Improve local SEO rankings with schema for business address, open hours, "
|
485 |
+
"contact, and more."
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: src/vue/pages/social-networks/views/Main.vue:24
|
489 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:196
|
490 |
+
msgid "Social Networks"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: src/vue/pages/dashboard/views/Main.vue:229
|
494 |
+
msgid ""
|
495 |
+
"Setup Open Graph for Facebook, Twitter, etc. to show the right content / "
|
496 |
+
"thumbnail preview."
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: src/vue/pages/tools/views/Main.vue:29
|
500 |
+
msgid "Tools"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: src/vue/pages/dashboard/views/Main.vue:231
|
504 |
+
msgid ""
|
505 |
+
"Fine-tune your site with our powerful tools including Robots.txt editor, "
|
506 |
+
"import/export and more."
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: src/vue/pages/sitemaps/views/Main.vue:26
|
510 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:197
|
511 |
+
#: src/vue/plugins/constants.js:1058
|
512 |
+
msgid "Sitemaps"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: src/vue/pages/dashboard/views/Main.vue:233
|
516 |
+
msgid "Manage all of your sitemap settings, including XML, Video, News and more."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
# Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro".
|
520 |
+
#: src/vue/pages/dashboard/views/Main.vue:235
|
521 |
+
msgid "Get more features in %1$s %2$s:"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
# Translators: 1 - "Pro", 2 - A percentage ("50%").
|
525 |
+
#: src/vue/pages/dashboard/views/Main.vue:237
|
526 |
+
msgid "Upgrade to %1$s and Save %2$s"
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: src/vue/components/common/core/Notifications.vue:95
|
530 |
+
msgid "Dismiss All"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: src/vue/pages/dashboard/views/Main.vue:239
|
534 |
+
msgid "Relaunch Setup Wizard"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: src/vue/pages/dashboard/views/Main.vue:247
|
538 |
+
msgid "You have %1$s more notifications"
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
# Translators: 1 - "Pro".
|
542 |
+
#: src/vue/components/common/Cta.vue:236
|
543 |
+
msgid "Upgrade to %1$s"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
547 |
+
#: src/vue/components/common/Cta.vue:238
|
548 |
+
msgid "This feature is only available for licensed %1$s %2$s users."
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: src/vue/components/common/Cta.vue:239
|
552 |
+
msgid ""
|
553 |
+
"%1$s %2$s comes with many additional features to help take your site's SEO "
|
554 |
+
"to the next level!"
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: src/vue/components/common/Cta.vue:240
|
558 |
+
msgid "Learn more about all features"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: src/vue/components/common/Cta.vue:241
|
562 |
+
msgid "See all features"
|
563 |
msgstr ""
|
564 |
|
565 |
#: src/vue/pages/social-networks/views/Facebook.vue:678
|
576 |
msgid "Enable Open Graph Markup"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:439
|
580 |
msgid "Default Post Image Source"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:440
|
584 |
msgid "Default Term Image Source"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:441
|
588 |
msgid "Width"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:442
|
592 |
msgid "Height"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:443
|
596 |
msgid "Post Custom Field Name"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:444
|
600 |
msgid "Term Custom Field Name"
|
601 |
msgstr ""
|
602 |
|
614 |
"856px or 3280px x 1712px for retina screens)"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:451
|
618 |
msgid "Home Page Settings"
|
619 |
msgstr ""
|
620 |
|
637 |
msgid "Site Name"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:40
|
|
|
641 |
msgid "Title"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:454
|
645 |
msgid "Use the home page title"
|
646 |
msgstr ""
|
647 |
|
649 |
msgid "Click on the tags below to insert variables into your site name."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:455
|
653 |
msgid "Click on the tags below to insert variables into your home page title."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:456
|
657 |
msgid "Description"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:457
|
661 |
msgid "Use the home page description"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:458
|
665 |
msgid "Click on the tags below to insert variables into your description."
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:376
|
|
|
669 |
msgid "Advanced Settings"
|
670 |
msgstr ""
|
671 |
|
730 |
"%2$s"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:466
|
734 |
msgid "Default Term Image Source is only available for licensed %1$s users. %2$s"
|
735 |
msgstr ""
|
736 |
|
751 |
msgstr ""
|
752 |
|
753 |
# Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag.
|
754 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:462
|
755 |
msgid ""
|
756 |
"The home page settings below have been disabled because you are using a "
|
757 |
"static home page. You can %1$sedit your home page settings%2$s directly to "
|
758 |
"change the title, meta and image."
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:244
|
762 |
msgid "Object Type"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:148
|
766 |
+
msgid "Video and News Sitemaps"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:149
|
770 |
+
msgid "Image SEO Optimization"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:150
|
774 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:218
|
775 |
+
msgid "Local Business SEO"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:151
|
779 |
+
msgid "Advanced WooCommerce"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:153
|
783 |
+
msgid "And many more..."
|
|
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:147
|
787 |
+
msgid "Activate All Features"
|
|
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:148
|
791 |
+
msgid "Deactivate All Features"
|
|
|
|
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:149
|
795 |
+
msgid "Search for Features..."
|
796 |
msgstr ""
|
797 |
|
798 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
799 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:151
|
800 |
+
msgid "Upgrade %1$s to Pro and Unlock all Features!"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:152
|
804 |
+
msgid "Upgrade to Pro and Unlock All Features"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:153
|
808 |
+
msgid "A valid license key is required in order to use our addons."
|
|
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:154
|
812 |
+
msgid "Enter License Key"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:155
|
816 |
+
msgid "Purchase License"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:159
|
820 |
+
msgid ""
|
821 |
+
"Globally control the Title attribute and Alt text for images in your "
|
822 |
+
"content. These attributes are essential for both accessibility and SEO."
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: src/vue/pages/sitemaps/mixins/VideoSitemap.js:10
|
826 |
+
msgid ""
|
827 |
+
"The Video Sitemap works in much the same way as the XML Sitemap module, it "
|
828 |
+
"generates an XML Sitemap specifically for video content on your site. "
|
829 |
+
"Search engines use this information to display rich snippet information in "
|
830 |
+
"search results."
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:10
|
834 |
+
msgid ""
|
835 |
+
"Our Google News Sitemap lets you control which content you submit to Google "
|
836 |
+
"News and only contains articles that were published in the last 48 hours. "
|
837 |
+
"In order to submit a News Sitemap to Google, you must have added your site "
|
838 |
+
"to Google’s Publisher Center and had it approved."
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:102
|
842 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:279
|
843 |
+
msgid ""
|
844 |
+
"Local Business schema markup enables you to tell Google about your "
|
845 |
+
"business, including your business name, address and phone number, opening "
|
846 |
+
"hours and price range. This information may be displayed as a Knowledge "
|
847 |
+
"Graph card or business carousel."
|
848 |
msgstr ""
|
849 |
|
850 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
851 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:417
|
852 |
+
msgid ""
|
853 |
+
"An XML Sitemap is a list of all your content that search engines use when "
|
854 |
+
"they crawl your site. This is an essential part of SEO because it contains "
|
855 |
+
"some important pieces of information that search engines need when crawling "
|
856 |
+
"your site. The XML Sitemap created by %1$s tells search engines where to "
|
857 |
+
"find all of the content on your site."
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:261
|
861 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:11
|
862 |
+
#: src/vue/pages/sitemaps/mixins/VideoSitemap.js:11
|
863 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:126
|
864 |
+
msgid "Enable Sitemap"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:127
|
868 |
+
msgid "Sitemap Settings"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:128
|
872 |
+
#: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:400
|
873 |
+
msgid "Enable Sitemap Indexes"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:129
|
877 |
+
#: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:401
|
878 |
+
msgid ""
|
879 |
+
"Organize sitemap entries into distinct files in your sitemap. We recommend "
|
880 |
+
"you enable this setting if your sitemap contains more than 1,000 URLs."
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:402
|
884 |
+
msgid "Links Per Sitemap"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:13
|
888 |
+
#: src/vue/pages/sitemaps/mixins/VideoSitemap.js:13
|
889 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:131
|
890 |
+
msgid "Noindexed content will not be displayed in your sitemap."
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:14
|
894 |
+
#: src/vue/pages/sitemaps/mixins/VideoSitemap.js:14
|
895 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:132
|
896 |
+
msgid "Do you get a blank sitemap or 404 error?"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:425
|
900 |
+
msgid "Open Sitemap"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:403
|
904 |
+
msgid ""
|
905 |
+
"Allows you to specify the maximum number of posts in a sitemap (up to "
|
906 |
+
"50,000)."
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:135
|
910 |
+
msgid "Automatically Ping Search Engines"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: src/vue/components/common/core/PriorityScore.vue:62
|
914 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:136
|
915 |
+
msgid "Post Types"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:138
|
919 |
+
msgid "Date Archive Sitemap"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:139
|
923 |
+
msgid "Include Date Archives in your sitemap."
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:140
|
927 |
+
msgid "Author Sitemap"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:141
|
931 |
+
msgid "Include Author Archives in your sitemap."
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:260
|
935 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:142
|
936 |
+
msgid "Include All Post Types"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:143
|
940 |
+
msgid "Select which Post Types appear in your sitemap."
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:144
|
944 |
+
#: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:408
|
945 |
+
msgid "Include All Taxonomies"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:145
|
949 |
+
msgid "Select which Taxonomies appear in your sitemap."
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:438
|
953 |
+
msgid "Additional Pages"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:439
|
957 |
+
msgid ""
|
958 |
+
"You can use this section to add any URLs to your sitemap which aren’t a "
|
959 |
+
"part of your WordPress installation. For example, if you have a contact "
|
960 |
+
"form that you would like to be included on your sitemap you can enter the "
|
961 |
+
"information manually."
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:401
|
965 |
+
msgid "Exclude Posts / Pages"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:414
|
969 |
+
msgid "Exclude Terms"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:415
|
973 |
+
msgid ""
|
974 |
+
"Any posts that are assigned to these terms will also be excluded from your "
|
975 |
+
"sitemap."
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: src/vue/pages/post-settings/views/Advanced.vue:118
|
979 |
+
msgid "Priority Score"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:445
|
983 |
+
msgid "Grouped"
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:446
|
987 |
+
msgid "Post Type Priority Score"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:447
|
991 |
+
msgid "Taxonomy Priority Score"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:448
|
995 |
+
msgid "Exclude Images"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:449
|
999 |
+
msgid "Exclude Images from your sitemap."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:450
|
1003 |
+
msgid "Dynamically Generate"
|
|
|
|
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:451
|
1007 |
+
msgid "Dynamically creates the XML Sitemap instead of using a static file."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:436
|
1011 |
+
msgid ""
|
1012 |
+
"We recommend setting the amount of URLs per sitemap index to 1,000 or less. "
|
1013 |
+
"The more links, the longer it will take for the sitemap to load."
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:437
|
1017 |
+
msgid ""
|
1018 |
+
"Your static sitemap is currently being regenerated. This may take some time "
|
1019 |
+
"based on the size of your site. This may also cause the sitemap content to "
|
1020 |
+
"look outdated."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: src/vue/pages/search-appearance/views/Media.vue:106
|
1024 |
+
msgid "Redirect Attachment URLs"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: src/vue/pages/search-appearance/views/Media.vue:107
|
1028 |
+
msgid "Attachment"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: src/vue/pages/search-appearance/views/Media.vue:108
|
1032 |
+
msgid "Attachment Parent"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: src/vue/pages/search-appearance/views/Media.vue:109
|
1036 |
+
msgid ""
|
1037 |
+
"We recommended redirecting attachment URL's back to the attachment since "
|
1038 |
+
"the default WordPress attachment pages have little SEO value."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:214
|
1042 |
+
#: src/vue/plugins/constants.js:1093
|
1043 |
+
msgid "Image SEO"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: src/vue/pages/search-appearance/views/Media.vue:115
|
1047 |
+
msgid "Title & Description"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: src/vue/pages/search-appearance/views/Media.vue:121
|
1051 |
+
msgid "Schema Markup"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: src/vue/pages/search-appearance/views/Taxonomies.vue:90
|
1055 |
+
msgid "Upgrade to Pro and Unlock Custom Taxonomies"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
# Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro".
|
1059 |
+
#: src/vue/pages/search-appearance/views/Taxonomies.vue:92
|
1060 |
msgid ""
|
1061 |
+
"%1$s %2$s lets you set the SEO title and description for custom taxonomies. "
|
1062 |
+
"You can also control all of the robots meta and other options just like the "
|
1063 |
+
"default category and tags taxonomies."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: src/vue/pages/search-appearance/views/Taxonomies.vue:93
|
1067 |
+
msgid "Custom Taxonomy Support is only available for licensed %1$s %2$s users."
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:114
|
1071 |
+
msgid "Title Attribute Format"
|
|
|
|
|
|
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:115
|
1075 |
+
msgid "Strip Punctuation for Title Attributes"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:116
|
1079 |
+
msgid "Click on the tags below to insert variables into your title attribute."
|
|
|
|
|
|
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:117
|
1083 |
+
msgid "Alt Tag Attribute Format"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:118
|
1087 |
+
msgid "Click on the tags below to insert variables into your alt tag attribute."
|
|
|
|
|
|
|
|
|
|
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:119
|
1091 |
+
msgid "Strip Punctuation for Alt Attributes"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:17
|
1095 |
+
#: src/vue/pages/sitemaps/mixins/VideoSitemap.js:17
|
1096 |
+
msgid "This feature requires one of the following plans:"
|
|
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:122
|
1100 |
+
msgid "Upgrade to Pro and Unlock Image SEO"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:123
|
1104 |
+
msgid "Image SEO is only available for licensed %1$s %2$s users."
|
|
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:132
|
1108 |
+
msgid "Set title attributes"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:133
|
1112 |
+
msgid "Set alt tag attributes"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:134
|
1116 |
+
msgid "Strip punctuation for titles"
|
|
|
|
|
|
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: src/vue/pages/search-appearance/views/pro/ImageSeoActivate.vue:135
|
1120 |
+
msgid "Strip punctuation for alt tags"
|
|
|
|
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: src/vue/pages/tools/views/partials/ExportSettings.vue:109
|
1124 |
+
msgid "Export Settings"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: src/vue/pages/tools/views/partials/ExportSettings.vue:110
|
1128 |
+
msgid "Export All Settings"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: src/vue/pages/tools/views/partials/ExportSettings.vue:111
|
1132 |
+
msgid "Export All Post Types"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:144
|
1136 |
+
msgid "Show in Search Results"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:145
|
1140 |
+
msgid "Click on the tags below to insert variables into your title."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: src/vue/pages/setup-wizard/views/Category.vue:150
|
1144 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:256
|
1145 |
+
msgid "Meta Description"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:254
|
1149 |
+
msgid "Click on the tags below to insert variables into your meta description."
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:148
|
1153 |
+
msgid "Selecting \"No\" will no-index this page."
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
# Translators: 1 - The type of page (Post, Page, Category, Tag, etc.).
|
1157 |
+
#: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:163
|
1158 |
+
msgid "%1$s Title"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: src/vue/pages/search-appearance/views/ContentTypes.vue:70
|
1162 |
+
#: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:51
|
1163 |
+
msgid "Custom Fields"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:52
|
|
|
1167 |
msgid ""
|
1168 |
+
"List of custom field names to include in the SEO Page Analysis. Add one per "
|
1169 |
+
"line."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
# Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
|
1173 |
+
#: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:54
|
1174 |
+
msgid ""
|
1175 |
+
"%1$s %2$s gives you advanced customizations for our page analysis feature, "
|
1176 |
+
"letting you add custom fields to analyze."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:55
|
1180 |
+
msgid "Upgrade to Pro and Unlock Custom Fields"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:56
|
1184 |
+
msgid "Custom Fields are only available for licensed %1$s %2$s users."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: src/vue/components/common/core/RobotsMeta.vue:106
|
1188 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:168
|
1189 |
+
msgid "None"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: src/vue/pages/post-settings/views/lite/Schema.vue:55
|
1193 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:70
|
1194 |
+
msgid "Schema Type"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: src/vue/pages/post-settings/views/lite/Schema.vue:56
|
1198 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:71
|
1199 |
+
msgid "Article Type"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: src/vue/plugins/constants.js:1239
|
1203 |
+
msgid "Article"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: src/vue/pages/post-settings/views/lite/Schema.vue:58
|
1207 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:73
|
1208 |
+
msgid "Blog Post"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: src/vue/pages/post-settings/views/lite/Schema.vue:59
|
1212 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:74
|
1213 |
+
msgid "News Article"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
# Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
|
1217 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:76
|
1218 |
+
msgid ""
|
1219 |
+
"%1$s %2$s gives you advanced customizations for the structured data markup "
|
1220 |
+
"on Posts, Pages, Categories, Tags, etc."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:77
|
1224 |
+
msgid "Upgrade to Pro and Unlock Schema Markup"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:78
|
1228 |
+
msgid "Schema Markup is only available for licensed %1$s %2$s users."
|
|
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:107
|
1232 |
+
msgid "Web Page Type"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:107
|
1236 |
+
msgid "Robots Meta Settings"
|
|
|
|
|
|
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:108
|
1240 |
+
msgid "Bulk Editing"
|
|
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:109
|
1244 |
+
msgid "Read Only"
|
|
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:110
|
1248 |
+
msgid "Other Options"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:111
|
1252 |
+
msgid "Show Date in Google Preview"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: src/vue/pages/post-settings/views/Advanced.vue:123
|
1256 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:442
|
1257 |
+
msgid "Keywords"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
# Translators: 1 - The type of page (Post, Page, Category, Tag, etc.).
|
1261 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:129
|
1262 |
+
msgid "Show %1$s Thumbnail in Google Custom Search"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
# Translators: 1 - The plugin name ("All in One SEO")
|
1266 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:133
|
1267 |
+
msgid "Show %1$s Meta Box"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: src/vue/components/common/core/AdditionalPages.vue:101
|
1271 |
+
#: src/vue/components/common/core/Keyphrase.vue:44
|
1272 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:254
|
1273 |
+
msgid "Delete"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: src/vue/pages/tools/views/partials/BackupSettings.vue:101
|
1277 |
+
msgid "Success! The backup was deleted."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: src/vue/pages/tools/views/partials/BackupSettings.vue:102
|
1281 |
+
msgid "Success! The backup was restored."
|
|
|
|
|
|
|
|
|
|
|
|
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: src/vue/pages/tools/views/partials/BackupSettings.vue:146
|
1285 |
+
msgid "%1$s at %2$s"
|
|
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: src/vue/pages/tools/views/partials/BackupSettings.vue:96
|
1289 |
+
msgid "Backup Settings"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: src/vue/pages/tools/views/partials/BackupSettings.vue:97
|
1293 |
+
msgid "You have no saved backups."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: src/vue/pages/tools/views/partials/BackupSettings.vue:98
|
1297 |
+
msgid "Create Backup"
|
|
|
|
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: src/vue/pages/tools/views/partials/BackupSettings.vue:99
|
1301 |
+
msgid "Restore"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:412
|
1305 |
+
msgid "Title Separator"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:413
|
1309 |
+
msgid "Separator Character"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
# Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag.
|
1313 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:415
|
1314 |
+
msgid ""
|
1315 |
+
"The home page settings below have been disabled because you are using a "
|
1316 |
+
"static home page. You can %1$sedit your home page settings%2$s directly to "
|
1317 |
+
"change the title and description."
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: src/vue/components/common/core/PriorityScore.vue:66
|
1321 |
+
msgid "Home Page"
|
|
|
|
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:417
|
1325 |
+
msgid "Site Title"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:253
|
1329 |
+
msgid "Click on the tags below to insert variables into your site title."
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:421
|
1333 |
+
msgid "Knowledge Graph"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:422
|
1337 |
+
msgid ""
|
1338 |
+
"Google, Bing and other search engines use specific data from your schema "
|
1339 |
+
"markup to output data in their Knowledge Panels. This data is known as the "
|
1340 |
+
"Knowledge Graph. Use these settings to change how that data looks."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:316
|
1344 |
+
msgid "Person or Organization"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:318
|
1348 |
+
msgid "Person"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:319
|
1352 |
+
msgid "Organization"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:320
|
1356 |
+
msgid "Choose whether the site represents a person or an organization."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:317
|
1360 |
+
msgid "Choose a Person"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:321
|
1364 |
+
msgid "Name"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:323
|
1368 |
+
msgid "Phone Number"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:324
|
1372 |
+
msgid "Choose a Contact Type"
|
|
|
|
|
|
|
|
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:325
|
1376 |
+
msgid "Contact Type"
|
|
|
|
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:326
|
1380 |
+
msgid "Select which team or department the phone number belongs to."
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:327
|
1384 |
+
msgid "Logo"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
# Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag., 3 - "Pro", 4 - "Pro".
|
1388 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:439
|
1389 |
+
msgid ""
|
1390 |
+
"Go to %1$sLocal SEO Settings%2$s and set up your local business info like "
|
1391 |
+
"location address, opening hours (%3$s), and Google Maps settings (%4$s)."
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:440
|
1395 |
+
msgid "Go to Local SEO Settings"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:441
|
1399 |
+
msgid "Enable Schema Markup"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: src/vue/pages/post-settings/views/Advanced.vue:124
|
1403 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:443
|
1404 |
+
msgid "Press enter to create a keyword"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:342
|
1408 |
+
msgid "Manually Enter Person"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:377
|
1412 |
+
msgid "Global Robots Meta"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:378
|
1416 |
+
msgid "Noindex Empty Category and Tag Archives"
|
|
|
|
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:379
|
1420 |
+
msgid "Remove Stopwords from Permalinks"
|
|
|
|
|
|
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:380
|
1424 |
+
msgid "Remove Category Base Prefix"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:383
|
1428 |
+
msgid "Automatically Add Missing Image Alt / Title Tags"
|
|
|
|
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
# Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more".
|
1432 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:385
|
1433 |
+
msgid "This feature is only for licensed %1$s users. %2$s"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:386
|
1437 |
+
msgid "Autogenerate Descriptions"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:387
|
1441 |
+
msgid "Use Content for Autogenerated Descriptions"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:388
|
1445 |
+
msgid "Run Shortcodes in Description"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:389
|
1449 |
+
msgid "No Pagination for Canonical URLs"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:390
|
1453 |
+
msgid "Use Meta Keywords"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:391
|
1457 |
+
msgid ""
|
1458 |
+
"This option allows you to toggle the use of Meta Keywords throughout the "
|
1459 |
+
"whole of the site."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:392
|
1463 |
+
msgid "Use Categories for Meta Keywords"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:393
|
1467 |
+
msgid ""
|
1468 |
+
"Check this if you want your categories for a given post used as the Meta "
|
1469 |
+
"Keywords for this post (in addition to any keywords you specify on the Edit "
|
1470 |
+
"Post screen)."
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:394
|
1474 |
+
msgid "Use Tags for Meta Keywords"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:395
|
1478 |
+
msgid ""
|
1479 |
+
"Check this if you want your tags for a given post used as the Meta Keywords "
|
1480 |
+
"for this post (in addition to any keywords you specify on the Edit Post "
|
1481 |
+
"screen)."
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:396
|
1485 |
+
msgid "Dynamically Generate Meta Keywords"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:397
|
1489 |
+
msgid ""
|
1490 |
+
"Check this if you want your keywords on your Posts page (set in WordPress "
|
1491 |
+
"under Settings, Reading, Front Page Displays) and your archive pages to be "
|
1492 |
+
"dynamically generated from the keywords of the posts showing on that page. "
|
1493 |
+
"If unchecked, it will use the keywords set in the edit page screen for the "
|
1494 |
+
"posts page."
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:398
|
1498 |
+
msgid "Paged Format"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:399
|
1502 |
+
msgid ""
|
1503 |
+
"This string gets appended/prepended to titles and descriptions of paged "
|
1504 |
+
"index pages (like home or archive pages)."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:400
|
1508 |
+
msgid "Description Format"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:403
|
1512 |
+
msgid "Enable Sitelinks Search Box"
|
|
|
|
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
1516 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:405
|
1517 |
+
msgid ""
|
1518 |
+
"Choose whether %1$s should output the required schema markup that Google "
|
1519 |
+
"needs to generate a sitelinks search box."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:406
|
1523 |
msgid ""
|
1524 |
+
"A Description tag is required in order to properly display your meta "
|
1525 |
+
"descriptions on your site."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: src/vue/pages/settings/views/lite/AccessControl.vue:68
|
1529 |
+
msgid "WP Roles (Editor, Author)"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: src/vue/pages/settings/views/lite/AccessControl.vue:69
|
1533 |
+
msgid "SEO Manager Role"
|
|
|
|
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: src/vue/pages/settings/views/lite/AccessControl.vue:70
|
1537 |
+
msgid "SEO Editor Role"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: src/vue/pages/settings/views/lite/AccessControl.vue:71
|
1541 |
+
msgid "Default settings that just work"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: src/vue/pages/settings/views/lite/AccessControl.vue:72
|
1545 |
+
msgid "Granular controls per role"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: src/vue/pages/settings/views/lite/AccessControl.vue:73
|
1549 |
+
msgid "Upgrade to Pro and Unlock Access Control"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: src/vue/pages/settings/views/lite/AccessControl.vue:74
|
1553 |
+
msgid "Access Control is only available for licensed %1$s %2$s users."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:109
|
1557 |
+
msgid "Social Meta (Open Graph Markup)"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:112
|
1561 |
+
msgid "Posts, Pages and Custom Post Types Only"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:116
|
1565 |
+
msgid "Posts, Pages, Custom Post Types + Categories, Tags and Custom Taxonomies"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:120
|
1569 |
+
msgid "WooCommerce Integration"
|
|
|
|
|
|
|
|
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:123
|
1573 |
+
msgid "WooCommerce Products Only"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:127
|
1577 |
+
msgid ""
|
1578 |
+
"WooCommerce Products, Product Categories, Product Tags and Other Product "
|
1579 |
+
"Attributes"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:131
|
1583 |
+
msgid "XML Sitemap"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:134
|
1587 |
+
msgid "Basic Control of Sitemap Priority & Frequency"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:138
|
1591 |
+
msgid ""
|
1592 |
+
"Granular Control of Sitemap Priority & Frequency for Each Post, Page, "
|
1593 |
+
"Category, Tag, etc."
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:142
|
1597 |
+
msgid "Video XML Sitemap"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:147
|
1601 |
+
msgid "Submit Your Videos to Search Engines"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:156
|
1605 |
+
msgid "Submit Your Latest News Stories to Google News (Business & Agency tier only)"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:162
|
1609 |
+
msgid "Not Available"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:165
|
1613 |
+
msgid ""
|
1614 |
+
"Control The Title & Alt Tag Attribute of Your Images (Business & Agency "
|
1615 |
+
"tier only)"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:169
|
1619 |
+
msgid "Schema Rich Snippets"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:172
|
1623 |
+
msgid "Posts, Pages, Categories and Tags Only"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:175
|
1627 |
+
msgid "Complete Support"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:176
|
1631 |
+
msgid "Posts, Pages, Categories, Tags + Breadcrumb Navigation"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: src/vue/plugins/constants.js:1042
|
1635 |
+
msgid "Customer Support"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:182
|
1639 |
+
msgid "Limited Support"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:185
|
1643 |
+
msgid "Priority Support"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
# Translators: 1 - The abbreviated plugin name ("AIOSEO").
|
1647 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:71
|
1648 |
+
msgid "%1$s Lite vs. Pro"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
1652 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:73
|
1653 |
+
msgid ""
|
1654 |
+
"Get the most out of %1$s by upgrading to Pro and unlocking all of the "
|
1655 |
+
"powerful features."
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:76
|
1659 |
+
msgid "Features:"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:146
|
1663 |
+
msgid "Upgrade to Pro to Unlock Powerful SEO Features"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:147
|
1667 |
msgid ""
|
1668 |
+
"%1$s is the best WordPress SEO plugin. Join over 2,000,000+ Professionals "
|
1669 |
+
"who are already using %2$s to improve their website search rankings."
|
|
|
|
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
# Translators: 1 - "Pro".
|
1673 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:155
|
1674 |
+
msgid "Upgrade to %1$s Today"
|
|
|
|
|
|
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:86
|
1678 |
+
msgid ""
|
1679 |
+
"%1$sBonus:%2$s You can upgrade to the %3$s plan today and %4$ssave %5$s "
|
1680 |
+
"off%6$s (discount auto-applied)."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:98
|
1684 |
+
msgid "Search Engine Optimization (SEO)"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: src/vue/pages/tools/views/partials/ImportAioseo.vue:81
|
1688 |
+
msgid "Import / Restore %1$s Settings"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: src/vue/pages/tools/views/partials/ImportAioseo.vue:82
|
1692 |
+
msgid "Import from a JSON or INI file..."
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: src/vue/pages/tools/views/partials/ImportAioseo.vue:83
|
1696 |
+
msgid "Choose a File"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: src/vue/pages/tools/views/partials/ImportAioseo.vue:84
|
1700 |
+
msgid "Imported settings will overwrite existing settings and will not be merged."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: src/vue/pages/tools/views/partials/ImportAioseo.vue:86
|
1704 |
+
msgid "A JSON or INI file is required to import settings."
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: src/vue/pages/tools/views/partials/ImportAioseo.vue:87
|
1708 |
+
msgid "Success! Your settings have been imported."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: src/vue/pages/tools/views/partials/ImportAioseo.vue:88
|
1712 |
+
msgid ""
|
1713 |
+
"There was an error importing your settings. Please make sure you are "
|
1714 |
+
"uploading the correct file or it is in the proper format."
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
# Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string.
|
1718 |
+
#: src/vue/pages/about/views/GettingStarted.vue:129
|
1719 |
+
msgid "Get %1$s %2$s and Unlock all the Powerful Features"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
# Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string.
|
1723 |
+
#: src/vue/pages/about/views/GettingStarted.vue:131
|
1724 |
+
msgid "Get %1$s %2$s and Unlock all the Powerful Features."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: src/vue/pages/about/views/GettingStarted.vue:140
|
1728 |
+
msgid "Social Meta for Categories, Tags and Custom Taxonomies"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: src/vue/pages/about/views/GettingStarted.vue:147
|
1732 |
+
msgid "Video Tutorials"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: src/vue/pages/about/views/GettingStarted.vue:148
|
1736 |
+
msgid "View all video tutorials"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
# Translators: 1 - The plugin short name ("AIOSEO").
|
1740 |
+
#: src/vue/pages/about/views/GettingStarted.vue:153
|
1741 |
+
msgid "%1$s Documentation"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: src/vue/pages/about/views/GettingStarted.vue:154
|
1745 |
+
msgid "See our full documentation"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: src/vue/pages/about/views/GettingStarted.vue:160
|
1749 |
+
msgid "Basic Guide to Google Analytics"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: src/vue/pages/about/views/GettingStarted.vue:164
|
1753 |
+
msgid "Basic Guide to Google Search Console"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: src/vue/pages/about/views/GettingStarted.vue:168
|
1757 |
+
msgid "Best Practices for Domains and URLs"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: src/vue/pages/about/views/GettingStarted.vue:172
|
1761 |
+
msgid "How to Control Search Results"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
# Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro", 3 - "Learn more link"..
|
1765 |
+
#: src/vue/pages/post-settings/views/lite/Schema.vue:61
|
1766 |
+
msgid "Pro"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
# Translators: 1 - The plugin short name ("AIOSEO Pro"), 2 - "Pro" string.
|
1770 |
+
#: src/vue/pages/about/views/GettingStarted.vue:177
|
1771 |
+
msgid "Installing %1$s %2$s"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: src/vue/pages/about/views/GettingStarted.vue:181
|
1775 |
+
msgid "Optimizing your Content Headings"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: src/vue/pages/about/views/Main.vue:23
|
1779 |
+
msgid "About"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:90
|
1783 |
+
msgid "Block Bad Bots using HTTP"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:91
|
1787 |
+
msgid "Block Referral Spam using HTTP"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:92
|
1791 |
+
msgid "Track Blocked Bots"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:93
|
1795 |
+
msgid "Use Custom Blocklists"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:94
|
1799 |
+
msgid "User Agent Blocklist"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:95
|
1803 |
+
msgid "Referer Blocklist"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:96
|
1807 |
+
msgid "Blocked Bots Log"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
# Translators: 1 - The location of the log file.
|
1811 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:98
|
1812 |
+
msgid "The log for the blocked bots is located here: %1$s"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: src/vue/pages/settings/views/RssContent.vue:121
|
1816 |
+
msgid "Automatically add content to your site's RSS feed."
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: src/vue/pages/settings/views/RssContent.vue:122
|
1820 |
+
msgid ""
|
1821 |
+
"This feature is used to automatically add content to your site's RSS feed. "
|
1822 |
+
"More specifically, it allows you to add links back to your blog and your "
|
1823 |
+
"blog posts so scrapers will automatically add these links too. This helps "
|
1824 |
+
"search engines identify you as the original source of the content."
|
1825 |
+
msgstr ""
|
1826 |
|
1827 |
+
#: src/vue/pages/settings/views/RssContent.vue:123
|
1828 |
+
msgid "Learn more"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: src/vue/pages/settings/views/RssContent.vue:124
|
1832 |
+
msgid "RSS Content Settings"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: src/vue/pages/settings/views/RssContent.vue:125
|
1836 |
+
msgid "Open Your RSS Feed"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: src/vue/pages/settings/views/RssContent.vue:126
|
1840 |
+
msgid "RSS Before Content"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: src/vue/pages/settings/views/RssContent.vue:127
|
1844 |
+
msgid "RSS After Content"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: src/vue/pages/settings/views/RssContent.vue:128
|
1848 |
+
msgid "Add content before each post in your site feed."
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: src/vue/pages/settings/views/RssContent.vue:129
|
1852 |
+
msgid "Add content after each post in your site feed."
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: src/vue/pages/settings/views/RssContent.vue:130
|
1856 |
+
msgid "Your user account role does not have access to edit this field. %2$s"
|
|
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: src/vue/pages/tools/views/partials/ImportOthers.vue:124
|
1860 |
+
msgid "Import Settings From Other Plugins"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: src/vue/pages/tools/views/partials/ImportOthers.vue:125
|
1864 |
+
msgid "Choose a plugin to import SEO data directly into %1$s."
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: src/vue/pages/tools/views/partials/ImportOthers.vue:126
|
1868 |
+
msgid "Select a plugin..."
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: src/vue/pages/tools/views/partials/ImportOthers.vue:128
|
1872 |
+
msgid "All Settings"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: src/vue/pages/tools/views/partials/ImportOthers.vue:129
|
1876 |
+
msgid "not installed"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: src/vue/pages/tools/views/partials/ImportOthers.vue:143
|
1880 |
+
msgid "SEO Settings"
|
|
|
|
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: src/vue/pages/tools/views/partials/ImportOthers.vue:144
|
1884 |
+
msgid "Post Meta"
|
|
|
|
|
|
|
|
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: src/vue/pages/tools/views/partials/ImportOthers.vue:148
|
1888 |
+
msgid "Term Meta"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
# Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO").
|
1892 |
+
#: src/vue/pages/tools/views/partials/ImportOthers.vue:176
|
1893 |
+
msgid "%1$s was successfully imported!"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
# Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO").
|
1897 |
+
#: src/vue/pages/tools/views/partials/ImportOthers.vue:180
|
1898 |
+
msgid "An error occurred while importing %1$s. Please try again."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
# Translators: 1 - The name of the plugin (e.g. "Yoast SEO"), 2 - The version of the plugin (e.g. "10.2.3").
|
1902 |
+
#: src/vue/pages/tools/views/partials/ImportOthers.vue:223
|
1903 |
+
msgid ""
|
1904 |
+
"We do not support importing from the currently installed version of %1$s "
|
1905 |
+
"(%2$s). Please upgrade to the latest version and try again."
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: src/vue/pages/settings/views/GeneralSettings.vue:49
|
1909 |
+
msgid "License"
|
|
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: src/vue/components/lite/core/UpgradeBar.vue:25
|
1913 |
+
msgid "Free"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
# Translators: 1 - "Pro".
|
1917 |
+
#: src/vue/components/lite/core/UpgradeBar.vue:28
|
1918 |
+
msgid "upgrading to %1$s"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
# Translators: This refers to a discount ("As a valued user you receive 50%, automatically applied at checkout!").
|
1922 |
+
#: src/vue/components/lite/settings/LicenseKey.vue:56
|
1923 |
+
#: src/vue/pages/settings/views/GeneralSettings.vue:57
|
1924 |
+
msgid "off"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: src/vue/pages/settings/views/GeneralSettings.vue:59
|
1928 |
+
msgid "Setup Wizard"
|
|
|
|
|
|
|
|
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
# Translators: 1 - The plugin name ("All in One SEO")
|
1932 |
+
#: src/vue/pages/settings/views/GeneralSettings.vue:62
|
1933 |
msgid ""
|
1934 |
+
"Use our configuration wizard to properly set up %1$s with your WordPress "
|
1935 |
+
"website."
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
# Translators: 1 - "upgrading to Pro".
|
1939 |
+
#: src/vue/components/lite/settings/LicenseKey.vue:72
|
1940 |
+
#: src/vue/pages/settings/views/GeneralSettings.vue:73
|
1941 |
+
msgid "To unlock more features, consider %1$s."
|
|
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
# Translators: 1 - "50% off".
|
1945 |
+
#: src/vue/components/lite/settings/LicenseKey.vue:76
|
1946 |
+
#: src/vue/pages/settings/views/GeneralSettings.vue:77
|
1947 |
+
msgid "As a valued user you receive %1$s, automatically applied at checkout!"
|
1948 |
+
msgstr ""
|
1949 |
+
|
1950 |
+
# Translators: 1 - The plugin name ("All in One SEO"), 2 - Same as previous.
|
1951 |
+
#: src/vue/pages/about/views/AboutUs.vue:118
|
1952 |
msgid ""
|
1953 |
+
"Welcome to %1$s, the original SEO plugin for WordPress. At %2$s, we build "
|
1954 |
+
"software that helps you rank your website in search results and gain "
|
1955 |
+
"organic traffic."
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: src/vue/pages/about/views/AboutUs.vue:119
|
1959 |
msgid ""
|
1960 |
+
"Over the years, we found that most other WordPress SEO plugins were "
|
1961 |
+
"bloated, buggy, slow, and very hard to use. So we designed our plugin as an "
|
1962 |
+
"easy and powerful tool."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: src/vue/pages/about/views/AboutUs.vue:120
|
1966 |
+
msgid ""
|
1967 |
+
"Our goal is to take the pain out of optimizing your website for search "
|
1968 |
+
"engines."
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
# Translators: 1 - The plugin name ("All in One SEO"), 2 - Company name ("Awesome Motive").
|
1972 |
+
#: src/vue/pages/about/views/AboutUs.vue:122
|
1973 |
+
msgid ""
|
1974 |
+
"%1$s is brought to you by %2$s, the same team that’s behind the largest "
|
1975 |
+
"WordPress resource site, WPBeginner, the most popular lead-generation "
|
1976 |
+
"software, OptinMonster, the best WordPress analytics plugin, "
|
1977 |
+
"MonsterInsights and many more."
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: src/vue/pages/about/views/AboutUs.vue:123
|
1981 |
+
msgid ""
|
1982 |
+
"Yup, we know a thing or two about building awesome products that customers "
|
1983 |
+
"love."
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
# Translators: 1 - Company name ("Awesome Motive").
|
1987 |
+
#: src/vue/pages/about/views/AboutUs.vue:125
|
1988 |
+
msgid "The %1$s Team"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: src/vue/pages/about/views/AboutUs.vue:129
|
1992 |
+
msgid "Install Plugin"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: src/vue/pages/about/views/AboutUs.vue:130
|
1996 |
+
msgid "Activate"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: src/vue/components/common/core/FeatureCard.vue:124
|
2000 |
+
msgid "Manage"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: src/vue/pages/about/views/AboutUs.vue:133
|
2004 |
+
msgid "Status:"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: src/vue/components/common/core/FeatureCard.vue:119
|
2008 |
+
msgid "Activated"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: src/vue/components/common/core/FeatureCard.vue:120
|
2012 |
+
msgid "Deactivated"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
+
#: src/vue/components/common/core/FeatureCard.vue:121
|
2016 |
+
msgid "Not Installed"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: src/vue/pages/about/views/AboutUs.vue:144
|
2020 |
msgid ""
|
2021 |
+
"Our high-converting optin forms like Exit-Intent® popups, Fullscreen "
|
2022 |
+
"Welcome Mats, and Scroll boxes help you dramatically boost conversions and "
|
2023 |
+
"get more email subscribers."
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: src/vue/pages/about/views/AboutUs.vue:153
|
2027 |
+
msgid ""
|
2028 |
+
"WPForms allows you to create beautiful contact forms for your site in "
|
2029 |
+
"minutes, not hours!"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: src/vue/pages/about/views/AboutUs.vue:170
|
2033 |
msgid ""
|
2034 |
+
"MonsterInsights makes it “effortless” to properly connect your WordPress "
|
2035 |
+
"site with Google Analytics, so you can start making data-driven decisions "
|
2036 |
+
"to grow your business."
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: src/vue/pages/about/views/AboutUs.vue:187
|
2040 |
+
msgid ""
|
2041 |
+
"The ExactMetrics Google Analytics for WordPress plugin helps you properly "
|
2042 |
+
"setup all the powerful Google Analytics tracking features without writing "
|
2043 |
+
"any code or hiring a developer."
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: src/vue/pages/about/views/AboutUs.vue:204
|
2047 |
+
msgid ""
|
2048 |
+
"Make sure your website's emails reach the inbox. Our goal is to make email "
|
2049 |
+
"deliverability easy and reliable. Trusted by over 1 million websites."
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: src/vue/pages/about/views/AboutUs.vue:221
|
2053 |
+
msgid ""
|
2054 |
+
"Create a simple Coming Soon Page, Under Construction or Maintenance Mode "
|
2055 |
+
"Page. Work on your site in private while visitors see a “Coming Soon” or "
|
2056 |
+
"“Maintenance Mode” page."
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: src/vue/pages/about/views/AboutUs.vue:238
|
2060 |
+
msgid ""
|
2061 |
+
"TrustPulse uses FOMO (Fear of Missing Out) to boost your sales and "
|
2062 |
+
"conversions with social proof notifications. Use it to boost sales on your "
|
2063 |
+
"Woocommerce store, increase signups on your membership site, get more email "
|
2064 |
+
"subscribers, and more."
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: src/vue/pages/about/views/AboutUs.vue:247
|
2068 |
+
msgid ""
|
2069 |
+
"Turn your visitors into brand ambassadors! Easily grow your email list, "
|
2070 |
+
"website traffic, and social media followers with powerful viral giveaways & "
|
2071 |
+
"contests."
|
2072 |
+
msgstr ""
|
2073 |
|
2074 |
+
#: src/vue/pages/about/views/AboutUs.vue:264
|
2075 |
+
msgid ""
|
2076 |
+
"Display completely customizable Facebook feeds of any public Facebook page "
|
2077 |
+
"or Group."
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: src/vue/pages/about/views/AboutUs.vue:281
|
2081 |
msgid ""
|
2082 |
+
"Display beautifully clean, customizable, and responsive Instagram feeds "
|
2083 |
+
"from multiple Instagram accounts."
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: src/vue/pages/about/views/AboutUs.vue:298
|
2087 |
+
msgid ""
|
2088 |
+
"Display completely customizable, responsive and search engine crawlable "
|
2089 |
+
"Twitter feeds on your website."
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: src/vue/pages/about/views/AboutUs.vue:315
|
2093 |
+
msgid ""
|
2094 |
+
"The Feeds for YouTube plugin allows you to display customizable YouTube "
|
2095 |
+
"feeds from any YouTube channel."
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:357
|
2099 |
+
msgid "Enable Breadcrumbs"
|
|
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:358
|
2103 |
+
msgid "Show Breadcrumbs on your Website"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:359
|
2107 |
+
msgid "Shortcode"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:360
|
2111 |
+
msgid "Gutenberg Block"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:361
|
2115 |
+
msgid "PHP Code"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:362
|
2119 |
+
msgid "Breadcrumb Settings"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:363
|
2123 |
+
msgid "Separator"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:364
|
2127 |
+
msgid "Homepage Link"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:365
|
2131 |
+
msgid "Breadcrumb Prefix"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:366
|
2135 |
+
msgid "Archive Format"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:367
|
2139 |
+
msgid "Search Result Format"
|
|
|
|
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:368
|
2143 |
+
msgid "404 Error Format"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:369
|
2147 |
+
msgid "Current Item"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:370
|
2151 |
+
msgid "Home"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:372
|
2155 |
+
msgid "Subcategory"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:373
|
2159 |
+
msgid "Article Title"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:374
|
2163 |
+
msgid "Archives of"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:375
|
2167 |
+
msgid "Search for"
|
|
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:376
|
2171 |
+
msgid "404 Error: page not found"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:377
|
2175 |
+
msgid "search key word goes here"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:378
|
2179 |
+
msgid "Category Name"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:379
|
2183 |
+
msgid "Breadcrumb Templates"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: src/vue/pages/settings/views/Advanced.vue:269
|
2187 |
+
msgid "TruSEO Score & Content"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: src/vue/pages/settings/views/Advanced.vue:270
|
2191 |
+
msgid ""
|
2192 |
+
"Enable our TruSEO score to help you optimize your content for maximum "
|
2193 |
+
"traffic."
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: src/vue/pages/settings/views/Advanced.vue:272
|
2197 |
+
msgid "Post Type Columns"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
# Translators: 1 - Plugin Short Name ("AIOSEO").
|
2201 |
+
#: src/vue/pages/settings/views/Advanced.vue:275
|
2202 |
+
msgid "Select which Post Types you want to use the %1$s columns with."
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: src/vue/pages/settings/views/Advanced.vue:276
|
2206 |
+
msgid "Usage Tracking"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: src/vue/pages/settings/views/Advanced.vue:277
|
2210 |
+
msgid "Admin Bar Menu"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
# Translators: 1 - Plugin Short Name ("AIOSEO").
|
2214 |
+
#: src/vue/pages/settings/views/Advanced.vue:279
|
2215 |
+
msgid "This adds %1$s to the admin toolbar for easy access to your SEO settings."
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: src/vue/pages/settings/views/Advanced.vue:280
|
2219 |
+
msgid "Dashboard Widget"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: src/vue/pages/settings/views/Advanced.vue:281
|
2223 |
+
msgid "This displays an SEO News widget on the dashboard."
|
|
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: src/vue/pages/settings/views/Advanced.vue:282
|
2227 |
+
msgid "Announcements"
|
|
|
|
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: src/vue/pages/settings/views/Advanced.vue:283
|
2231 |
+
msgid "This allows you to hide plugin announcements and update details."
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: src/vue/pages/settings/views/Advanced.vue:284
|
2235 |
+
msgid "Automatic Updates"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: src/vue/pages/settings/views/Advanced.vue:285
|
2239 |
+
msgid "All (recommended)"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: src/vue/pages/settings/views/Advanced.vue:286
|
2243 |
+
msgid ""
|
2244 |
+
"You are getting the latest features, bugfixes, and security updates as they "
|
2245 |
+
"are released."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: src/vue/pages/settings/views/Advanced.vue:287
|
2249 |
+
msgid "Minor Only"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: src/vue/pages/settings/views/Advanced.vue:288
|
2253 |
+
msgid "You are getting bugfixes and security updates, but not major features."
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: src/vue/pages/settings/views/Advanced.vue:290
|
2257 |
+
msgid "You will need to manually update everything."
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: src/vue/pages/settings/views/Advanced.vue:291
|
2261 |
+
msgid ""
|
2262 |
+
"By allowing us to track usage data we can better help you because we know "
|
2263 |
+
"with which WordPress configurations, themes and plugins we should test."
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:194
|
2267 |
+
msgid "Complete documentation on usage tracking is available %1$shere%2$s."
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
# Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more".
|
2271 |
+
#: src/vue/pages/settings/views/Advanced.vue:295
|
2272 |
+
msgid "This Admin Bar feature is only available for licensed %1$s users. %2$s"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
+
# Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more".
|
2276 |
+
#: src/vue/pages/settings/views/Advanced.vue:297
|
2277 |
+
msgid "The Dashboard Widget feature is only available for licensed %1$s users. %2$s"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: src/vue/pages/settings/views/Advanced.vue:298
|
2281 |
+
msgid "Taxonomy Columns"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
# Translators: 1 - Plugin Short Name ("AIOSEO").
|
2285 |
+
#: src/vue/pages/settings/views/Advanced.vue:301
|
2286 |
+
msgid "Select which Taxonomies you want to use the %1$s columns with."
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
# Translators: 1 - Plugin Short Name ("AIOSEO").
|
2290 |
+
#: src/vue/pages/settings/views/Advanced.vue:304
|
2291 |
+
msgid "Uninstall %1$s"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
# Translators: 1 - Plugin Short Name ("AIOSEO").
|
2295 |
+
#: src/vue/pages/settings/views/Advanced.vue:306
|
2296 |
+
msgid ""
|
2297 |
+
"Check this if you would like to remove ALL %1$s data upon plugin deletion. "
|
2298 |
+
"All settings and SEO data will be unrecoverable."
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
#: src/vue/pages/post-settings/views/Main.vue:55
|
2302 |
+
msgid "Preview Snippet Editor"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:256
|
2306 |
+
msgid "Miscellaneous Verification"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
+
# Translators: 1 - "<head></head>".
|
2310 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:258
|
2311 |
+
msgid ""
|
2312 |
+
"The code above will be added between the %1$s tags on every page on your "
|
2313 |
+
"website."
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:259
|
2317 |
+
msgid "Webmaster Tools Verification"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:176
|
2321 |
+
msgid "Click here"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:177
|
2325 |
+
msgid "Install Monsterinsights"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:262
|
2329 |
+
msgid "Success!"
|
|
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:263
|
2333 |
+
msgid "Google Analytics is now handled by MonsterInsights."
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:264
|
2337 |
+
msgid "Google Analytics is now handled by ExactMetrics."
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:265
|
2341 |
+
msgid "Manage Google Analytics"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:266
|
2345 |
+
msgid "Get Started"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
# Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
|
2349 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:276
|
2350 |
+
msgid ""
|
2351 |
+
"We recommend using the %1$sFree MonsterInsights%2$s plugin to get the most "
|
2352 |
+
"out of Google Analytics."
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
# Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
|
2356 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:280
|
2357 |
+
msgid ""
|
2358 |
+
"We recommend using the %1$sFree ExactMetrics%2$s plugin to get the most out "
|
2359 |
+
"of Google Analytics."
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:314
|
2363 |
+
msgid "Google Verification Code"
|
|
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
# Translators: 1 - "Google Search Console".
|
2367 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:316
|
2368 |
+
msgid "Google Search Console"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
# Translators: 1 - "Google Search Console".
|
2372 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:316
|
2373 |
+
msgid "Get your Google verification code in %1$s."
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:327
|
2377 |
+
msgid "Bing Verification Code"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
# Translators: 1 - "Bing Webmaster Tools".
|
2381 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:329
|
2382 |
+
msgid "Bing Webmaster Tools"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
# Translators: 1 - "Bing Webmaster Tools".
|
2386 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:329
|
2387 |
+
msgid "Get your Bing verification code in %1$s."
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:340
|
2391 |
+
msgid "Yandex Verification Code"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
# Translators: 1 - "Yandex Webmaster Tools".
|
2395 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:342
|
2396 |
+
msgid "Yandex Webmaster Tools"
|
|
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
# Translators: 1 - "Yandex Webmaster Tools".
|
2400 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:342
|
2401 |
+
msgid "Get your Yandex verification code in %1$s."
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:353
|
2405 |
+
msgid "Baidu Verification Code"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
# Translators: 1 - "Baidu Webmaster Tools".
|
2409 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:355
|
2410 |
+
msgid "Baidu Webmaster Tools"
|
|
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
# Translators: 1 - "Baidu Webmaster Tools".
|
2414 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:355
|
2415 |
+
msgid "Get your Baidu verification code in %1$s."
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:361
|
2419 |
+
msgid "Pinterest Site Verification"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: src/vue/pages/social-networks/views/Pinterest.vue:49
|
2423 |
+
msgid "Pinterest Verification Code"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
# Translators: 1 - "Pinterest account".
|
2427 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:368
|
2428 |
+
msgid "Get your Pinterest verification code in your %1$s."
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
# Translators: 1 - "Pinterest account".
|
2432 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:368
|
2433 |
+
msgid "Pinterest account"
|
|
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:399
|
2437 |
+
msgid "Google Analytics"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:406
|
2441 |
+
msgid "Google Analytics ID"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
# Translators: 1 - "Google Analytics account".
|
2445 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:408
|
2446 |
+
msgid "Get your Google Analytics ID in your %1$s."
|
2447 |
msgstr ""
|
2448 |
|
2449 |
+
# Translators: 1 - "Google Analytics account".
|
2450 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:408
|
2451 |
+
msgid "Google Analytics account"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:414
|
2455 |
+
msgid "Enable Advanced Analytics Options"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
# Translators: 1 - A link to our documentation, 2 - HTML line break tag.
|
2459 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:418
|
2460 |
+
msgid "This enables Advanced Google Analytics options.%1$s%2$s"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:423
|
2464 |
+
msgid "Tracking Domain"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
# Translators: 1 - "http://", 2 - A link to our documentation, 3 - HTML line break tag.
|
2468 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:426
|
2469 |
+
msgid "Enter your domain name without the %1$s to set your cookie domain.%2$s%3$s"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:431
|
2473 |
+
msgid "Track Multiple Domains"
|
2474 |
+
msgstr ""
|
2475 |
+
|
2476 |
+
# Translators: 1 - A link to our documentation, 2 - HTML line break tag.
|
2477 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:439
|
2478 |
msgid ""
|
2479 |
+
"Use this option to enable tracking of multiple or additional "
|
2480 |
+
"domains.%1$s%2$s"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:444
|
2484 |
+
msgid "Additional Domains"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
+
# Translators: 1 - A link to our documentation, 2 - HTML line break tag.
|
2488 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:448
|
2489 |
msgid ""
|
2490 |
+
"Add a list of additional domains to track here. Enter one domain name per "
|
2491 |
+
"line without the http://.%1$s%2$s"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:453
|
2495 |
+
msgid "Anonymize IP Addresses"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
# Translators: 1 - A link to our documentation, 2 - HTML line break tag.
|
2499 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:461
|
2500 |
+
msgid "This enables support for IP Anonymization in Google Analytics.%1$s%2$s"
|
|
|
|
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:466
|
2504 |
+
msgid "Display Advertiser Tracking"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
# Translators: 1 - A link to our documentation, 2 - HTML line break tag.
|
2508 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:474
|
2509 |
msgid ""
|
2510 |
+
"This enables support for the Display Advertiser Features in Google "
|
2511 |
+
"Analytics.%1$s%2$s"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:479
|
2515 |
+
msgid "Exclude Users from Tracking"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
# Translators: 1 - A link to our documentation, 2 - HTML line break tag.
|
2519 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:490
|
2520 |
+
msgid "Exclude logged-in users from Google Analytics tracking by role.%1$s%2$s"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:495
|
2524 |
+
msgid "Enhanced Link Attribution"
|
|
|
|
|
|
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
# Translators: 1 - A link to our documentation, 2 - HTML line break tag.
|
2528 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:503
|
2529 |
+
msgid ""
|
2530 |
+
"This enables support for the Enhanced Link Attribution in Google "
|
2531 |
+
"Analytics.%1$s%2$s"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:508
|
2535 |
+
msgid "Track Outbound Links"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
# Translators: 1 - A link to our documentation, 2 - HTML line break tag.
|
2539 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:516
|
2540 |
+
msgid "This enables tracking outbound links with Google Analytics.%1$s%2$s"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:521
|
2544 |
+
msgid "Enhanced Ecommerce"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
# Translators: 1 - A link to our documentation, 2 - HTML line break tag.
|
2548 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:529
|
2549 |
+
msgid "This enables support for the Enhanced Ecommerce in Google Analytics.%1$s%2$s"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:534
|
2553 |
+
msgid "Track Outbound Forms"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:548
|
2557 |
+
msgid "Track Events"
|
|
|
|
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:562
|
2561 |
+
msgid "Track URL Changes"
|
|
|
|
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:576
|
2565 |
+
msgid "Track Page Visibility"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:590
|
2569 |
+
msgid "Track Media Queries"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:604
|
2573 |
+
msgid "Track Elements Visibility"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:618
|
2577 |
+
msgid "Track Page Scrolling"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:632
|
2581 |
+
msgid "Track Facebook and Twitter"
|
|
|
|
|
|
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:646
|
2585 |
+
msgid "Ensure URL Consistency"
|
|
|
|
|
|
|
|
|
|
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:660
|
2589 |
+
msgid "Google Tag Manager Container ID"
|
|
|
|
|
|
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
# Translators: 1 - "Google Tag Manager account".
|
2593 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:664
|
2594 |
+
msgid "Get your Google Tag Manager ID in your %1$s."
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:178
|
2598 |
+
msgid "Activate Monsterinsights"
|
|
|
|
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:180
|
2602 |
+
msgid "MonsterInsights is Installed & Active"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:181
|
2606 |
+
msgid "ExactMetrics is Installed & Active"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:182
|
2610 |
+
msgid "Launch Setup Wizard"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:184
|
2614 |
+
msgid ""
|
2615 |
+
"ExactMetrics connects AIOSEO to Google Analytics, providing a powerful "
|
2616 |
+
"integration. ExactMetrics is a sister company of AIOSEO."
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:188
|
2620 |
+
msgid "Activate ExactMetrics"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:189
|
2624 |
+
msgid ""
|
2625 |
+
"ExactMetrics shows you exactly which content gets the most visits, so you "
|
2626 |
+
"can analyze and optimize it for higher conversions."
|
2627 |
msgstr ""
|
2628 |
|
2629 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:190
|
2630 |
+
msgid "The Best Google Analytics Plugin for WordPress"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:191
|
2634 |
+
msgid ""
|
2635 |
+
"MonsterInsights connects AIOSEO to Google Analytics, providing a powerful "
|
2636 |
+
"integration. MonsterInsights is a sister company of AIOSEO."
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:192
|
2640 |
+
msgid "Quick & Easy Google Analytics Setup"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:193
|
2644 |
+
msgid "Google Analytics Dashboard + Real Time Stats"
|
|
|
|
|
|
|
|
|
|
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:194
|
2648 |
+
msgid "Google Analytics Enhanced Ecommerce Tracking"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:195
|
2652 |
+
msgid "Universal Tracking for AMP and Instant Articles"
|
|
|
|
|
|
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:196
|
2656 |
+
msgid "Install &"
|
|
|
|
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:197
|
2660 |
+
msgid "Activate MonsterInsights"
|
|
|
|
|
|
|
|
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:198
|
2664 |
msgid ""
|
2665 |
+
"MonsterInsights shows you exactly which content gets the most visits, so "
|
2666 |
+
"you can analyze and optimize it for higher conversions."
|
|
|
2667 |
msgstr ""
|
2668 |
|
2669 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:199
|
2670 |
+
msgid "Setup ExactMetrics"
|
2671 |
msgstr ""
|
2672 |
|
2673 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:200
|
2674 |
+
msgid "Setup MonsterInsights"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:201
|
2678 |
+
msgid ""
|
2679 |
+
"ExactMetrics has an intuitive setup wizard to guide you through the setup "
|
2680 |
+
"process."
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:202
|
2684 |
+
msgid ""
|
2685 |
+
"MonsterInsights has an intuitive setup wizard to guide you through the "
|
2686 |
+
"setup process."
|
2687 |
msgstr ""
|
2688 |
|
2689 |
+
#: src/vue/mixins/Wizard.js:6
|
2690 |
+
msgid "Skip this Step"
|
2691 |
msgstr ""
|
2692 |
|
2693 |
+
#: src/vue/mixins/Wizard.js:7
|
2694 |
+
msgid "Go Back"
|
|
|
2695 |
msgstr ""
|
2696 |
|
2697 |
+
#: src/vue/mixins/Wizard.js:8
|
2698 |
+
msgid "Save and Continue"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
+
#: src/vue/mixins/SeoSiteScore.js:10
|
2702 |
+
msgid "to analyze a competitor site."
|
2703 |
msgstr ""
|
2704 |
|
2705 |
+
#: src/vue/mixins/SeoSiteScore.js:11
|
2706 |
+
msgid "A valid license key is required"
|
2707 |
msgstr ""
|
2708 |
|
2709 |
+
#: src/vue/mixins/SeoSiteScore.js:5
|
2710 |
+
msgid "We've got some<br>work to do!"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
+
#: src/vue/mixins/SeoSiteScore.js:6
|
2714 |
+
msgid "Needs<br>Improvement!"
|
2715 |
msgstr ""
|
2716 |
|
2717 |
+
#: src/vue/mixins/SeoSiteScore.js:7
|
2718 |
+
msgid "Very Good!"
|
|
|
|
|
2719 |
msgstr ""
|
2720 |
|
2721 |
+
#: src/vue/mixins/SeoSiteScore.js:8
|
2722 |
+
msgid "Excellent!"
|
|
|
|
|
2723 |
msgstr ""
|
2724 |
|
2725 |
+
#: src/vue/mixins/SeoSiteScore.js:9
|
2726 |
+
msgid "to see your Site Score."
|
|
|
|
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: src/vue/mixins/Image.js:119
|
2730 |
+
msgid "Choose Image"
|
|
|
|
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: src/vue/mixins/Image.js:55
|
2734 |
+
msgid "Default Image (Set Below)"
|
|
|
|
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: src/vue/mixins/Image.js:56
|
2738 |
+
msgid "Featured Image"
|
|
|
|
|
2739 |
msgstr ""
|
2740 |
|
2741 |
+
#: src/vue/mixins/Image.js:57
|
2742 |
+
msgid "Attached Image"
|
2743 |
msgstr ""
|
2744 |
|
2745 |
+
#: src/vue/mixins/Image.js:58
|
2746 |
+
msgid "First Image in Content"
|
|
|
2747 |
msgstr ""
|
2748 |
|
2749 |
+
#: src/vue/mixins/Image.js:59
|
2750 |
+
msgid "Image from Custom Field"
|
|
|
2751 |
msgstr ""
|
2752 |
|
2753 |
+
#: src/vue/mixins/Image.js:60
|
2754 |
+
msgid "Post Author Image"
|
|
|
2755 |
msgstr ""
|
2756 |
|
2757 |
+
#: src/vue/mixins/Image.js:61
|
2758 |
+
msgid "First Available Image"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
+
#: src/vue/mixins/Image.js:68
|
2762 |
+
msgid "Default Image Source (Set in Social Networks)"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: src/vue/mixins/Image.js:71
|
2766 |
+
msgid "Custom Image"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:63
|
2770 |
+
#: src/vue/components/common/core/SiteScoreCompetitor.vue:75
|
2771 |
+
#: src/vue/components/common/core/SiteScoreDashboard.vue:65
|
2772 |
+
#: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:90
|
2773 |
+
msgid "Critical Issues"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:65
|
2777 |
+
#: src/vue/components/common/core/SiteScoreCompetitor.vue:77
|
2778 |
+
#: src/vue/components/common/core/SiteScoreDashboard.vue:67
|
2779 |
+
#: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:100
|
2780 |
+
msgid "Recommended Improvements"
|
2781 |
msgstr ""
|
2782 |
|
2783 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:66
|
2784 |
+
#: src/vue/components/common/core/SiteScoreCompetitor.vue:78
|
2785 |
+
#: src/vue/components/common/core/SiteScoreDashboard.vue:68
|
2786 |
+
#: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:110
|
2787 |
+
msgid "Good Results"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:67
|
2791 |
+
#: src/vue/components/common/core/SiteScoreCompetitor.vue:79
|
2792 |
+
#: src/vue/components/common/core/SiteScoreDashboard.vue:69
|
2793 |
+
msgid "Complete Site Audit Checklist"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:30
|
2797 |
+
msgid "All Good!"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:29
|
2801 |
+
msgid "Errors"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: src/vue/mixins/License.js:11
|
2805 |
+
msgid "Your license has been disabled."
|
2806 |
msgstr ""
|
2807 |
|
2808 |
+
#: src/vue/mixins/License.js:15
|
2809 |
+
msgid "Your license key is invalid."
|
|
|
|
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: src/vue/mixins/License.js:4
|
2813 |
+
msgid "You have not yet added a license key."
|
|
|
|
|
|
|
|
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: src/vue/mixins/License.js:7
|
2817 |
+
msgid "Your license has expired."
|
|
|
|
|
|
|
|
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
# Translators: 1 - A number, 2 - A number.
|
2821 |
+
#: src/vue/mixins/MaxCounts.js:6
|
2822 |
+
msgid "%1$s out of %2$s max recommended characters."
|
|
|
|
|
|
|
2823 |
msgstr ""
|
2824 |
|
2825 |
+
#: src/vue/mixins/Notifications.js:6
|
2826 |
+
msgid "Notifications"
|
|
|
|
|
|
|
2827 |
msgstr ""
|
2828 |
|
2829 |
+
#: src/vue/mixins/Notifications.js:7
|
2830 |
+
msgid "New Notifications"
|
|
|
|
|
2831 |
msgstr ""
|
2832 |
|
2833 |
+
#: src/vue/mixins/Notifications.js:8
|
2834 |
+
msgid "Active Notifications"
|
|
|
|
|
|
|
|
|
|
|
2835 |
msgstr ""
|
2836 |
|
2837 |
+
# Translators: 1 - The plugin name ("All in One SEO")
|
2838 |
+
#: src/vue/pages/settings/mixins/AccessControl.js:14
|
2839 |
msgid ""
|
2840 |
+
"By default, only users with an Administrator role have permission to manage "
|
2841 |
+
"%1$s within your WordPress admin area. With Access Controls, though, you "
|
2842 |
+
"can easily extend specific access permissions to other user roles."
|
2843 |
msgstr ""
|
2844 |
|
2845 |
+
#: src/vue/pages/settings/mixins/AccessControl.js:15
|
2846 |
+
msgid "Access Control Settings"
|
|
|
2847 |
msgstr ""
|
2848 |
|
2849 |
+
#: src/vue/pages/settings/mixins/AccessControl.js:16
|
2850 |
+
msgid "Administrator"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
+
#: src/vue/components/common/core/RobotsMeta.vue:100
|
2854 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:162
|
2855 |
+
msgid "Use Default Settings"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: src/vue/pages/settings/mixins/AccessControl.js:18
|
2859 |
+
msgid "Editor"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: src/vue/plugins/constants.js:1204
|
2863 |
+
msgid "Author"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: src/vue/pages/settings/mixins/AccessControl.js:20
|
2867 |
+
msgid "SEO Manager"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: src/vue/pages/settings/mixins/AccessControl.js:21
|
2871 |
+
msgid "SEO Editor"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
# Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
|
2875 |
+
#: src/vue/pages/settings/mixins/AccessControl.js:23
|
2876 |
+
msgid "By default Admins have access to %1$sall SEO site settings%2$s"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
+
# Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
|
2880 |
+
#: src/vue/pages/settings/mixins/AccessControl.js:25
|
2881 |
msgid ""
|
2882 |
+
"By default Editors have access to %1$sSEO settings for General Settings, "
|
2883 |
+
"Search Appearance and Social Networks, as well as all settings for "
|
2884 |
+
"individual pages and posts.%2$s"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
# Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
|
2888 |
+
#: src/vue/pages/settings/mixins/AccessControl.js:27
|
2889 |
msgid ""
|
2890 |
+
"By default Authors have access to %1$sSEO settings for individual pages and "
|
2891 |
+
"posts that they already have permission to edit.%2$s"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
# Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
|
2895 |
+
#: src/vue/pages/settings/mixins/AccessControl.js:29
|
2896 |
msgid ""
|
2897 |
+
"By default SEO Managers have access to %1$sSEO settings for General "
|
2898 |
+
"Settings, Redirections, and individual pages and posts.%2$s"
|
|
|
2899 |
msgstr ""
|
2900 |
|
2901 |
+
# Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag.
|
2902 |
+
#: src/vue/pages/settings/mixins/AccessControl.js:31
|
2903 |
msgid ""
|
2904 |
+
"By default SEO Editors have access to %1$sSEO settings for individual pages "
|
2905 |
+
"and posts.%2$s"
|
|
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: src/vue/pages/post-settings/views/ModalContent.vue:41
|
2909 |
+
msgid "Modal Content"
|
|
|
|
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: src/vue/pages/post-settings/views/Advanced.vue:114
|
2913 |
+
msgid "Robots Setting"
|
|
|
|
|
|
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: src/vue/pages/post-settings/views/Advanced.vue:115
|
2917 |
+
msgid "Use default settings"
|
|
|
|
|
|
|
|
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: src/vue/pages/post-settings/views/Advanced.vue:116
|
2921 |
+
msgid "Canonical URL"
|
|
|
|
|
|
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: src/vue/pages/post-settings/views/Advanced.vue:117
|
2925 |
+
msgid "Enter a URL to change the default Canonical URL"
|
|
|
|
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: src/vue/components/common/core/AdditionalPages.vue:98
|
2929 |
+
#: src/vue/components/common/core/PriorityScore.vue:64
|
2930 |
+
msgid "Priority"
|
|
|
2931 |
msgstr ""
|
2932 |
|
2933 |
+
#: src/vue/components/common/core/AdditionalPages.vue:99
|
2934 |
+
#: src/vue/components/common/core/PriorityScore.vue:65
|
2935 |
+
msgid "Frequency"
|
|
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: src/vue/pages/post-settings/views/General.vue:260
|
2939 |
+
msgid "General"
|
|
|
|
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: src/vue/pages/post-settings/views/General.vue:261
|
2943 |
+
msgid "Snippet Preview"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: src/vue/pages/post-settings/views/General.vue:262
|
2947 |
+
msgid "Snippet Preview content here."
|
|
|
|
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: src/vue/pages/post-settings/views/General.vue:263
|
2951 |
+
msgid "Edit Snippet"
|
|
|
|
|
|
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: src/vue/pages/post-settings/views/General.vue:264
|
2955 |
+
msgid "Click on tags below to insert variables into your title."
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:253
|
2959 |
+
msgid "Click on tags below to insert variables into your meta description."
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: src/vue/pages/post-settings/views/General.vue:267
|
2963 |
+
msgid "Pillar Content"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: src/vue/pages/post-settings/views/General.vue:268
|
2967 |
+
msgid ""
|
2968 |
+
"Cornerstone content should be the most important and extensive articles on "
|
2969 |
+
"your site."
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: src/vue/pages/post-settings/views/General.vue:269
|
2973 |
+
msgid "Focus Keyphrase"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:68
|
2977 |
+
msgid "Additional Keyphrases"
|
|
|
|
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: src/vue/pages/post-settings/views/General.vue:271
|
2981 |
+
msgid "Page Analysis"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: src/vue/components/common/core/SeoSiteAnalysisResults.vue:106
|
2985 |
+
msgid "Basic SEO"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:44
|
2989 |
+
msgid "Readability"
|
|
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: src/vue/pages/post-settings/views/General.vue:275
|
2993 |
+
msgid ""
|
2994 |
+
"Looking for meta keywords? Click on the advanced tab above to add/edit meta "
|
2995 |
+
"keywords."
|
2996 |
+
msgstr ""
|
2997 |
|
2998 |
+
# Translators: %s: The type of page (Post, Page, Category, Tag, etc.).
|
2999 |
+
#: src/vue/pages/post-settings/views/General.vue:284
|
3000 |
+
msgid "%s Title"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
+
#: src/vue/pages/post-settings/views/Social.vue:60
|
3004 |
+
msgid "Social"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
+
#: src/vue/components/lite/settings/LicenseKey.vue:59
|
3008 |
+
msgid "Your license key provides access to updates and addons."
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: src/vue/pages/setup-wizard/views/LicenseKey.vue:103
|
3012 |
+
msgid "Paste your license key here"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: src/vue/pages/setup-wizard/views/LicenseKey.vue:104
|
3016 |
+
msgid "Connect"
|
|
|
|
|
|
|
3017 |
msgstr ""
|
3018 |
|
3019 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
3020 |
+
#: src/vue/pages/setup-wizard/views/LicenseKey.vue:121
|
3021 |
+
msgid "You're using %1$s - no license needed. Enjoy!"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
3025 |
+
#: src/vue/pages/setup-wizard/views/LicenseKey.vue:134
|
3026 |
+
msgid "Already purchased? Simply enter your license key below to connect with %1$s!"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
+
#: src/vue/components/lite/local-business/AreaServed.vue:16
|
3030 |
+
msgid "The geographic area where a service or offered item is provided."
|
3031 |
msgstr ""
|
3032 |
|
3033 |
+
#: src/vue/components/lite/local-business/BusinessAddress.vue:55
|
3034 |
+
msgid "Street address:"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: src/vue/components/lite/local-business/BusinessAddress.vue:56
|
3038 |
+
msgid "Street address line 2 (optional):"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: src/vue/components/lite/local-business/BusinessAddress.vue:57
|
3042 |
+
msgid "Zip code:"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
+
#: src/vue/components/lite/local-business/BusinessAddress.vue:58
|
3046 |
+
msgid "City:"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
+
#: src/vue/components/lite/local-business/BusinessAddress.vue:59
|
3050 |
+
msgid "State:"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
+
#: src/vue/components/lite/local-business/BusinessAddress.vue:60
|
3054 |
+
msgid "Country:"
|
|
|
3055 |
msgstr ""
|
3056 |
|
3057 |
+
#: src/vue/components/lite/local-business/BusinessContact.vue:28
|
3058 |
+
msgid "Email address:"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
+
#: src/vue/components/lite/local-business/BusinessContact.vue:29
|
3062 |
+
msgid "Phone number:"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
+
#: src/vue/components/lite/local-business/BusinessContact.vue:30
|
3066 |
+
msgid "Fax number:"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
+
#: src/vue/components/lite/local-business/BusinessIds.vue:25
|
3070 |
+
msgid "VAT ID:"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
+
#: src/vue/components/lite/local-business/BusinessIds.vue:26
|
3074 |
+
msgid "Tax ID:"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
+
#: src/vue/components/lite/local-business/PaymentInfo.vue:37
|
3078 |
+
msgid "Price Indicator:"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
+
#: src/vue/components/lite/local-business/PaymentInfo.vue:38
|
3082 |
+
msgid "Accepted Currencies:"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
+
#: src/vue/components/lite/local-business/PaymentInfo.vue:39
|
3086 |
+
msgid "Accepted Payment Methods:"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
+
# Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro".
|
3090 |
+
#: src/vue/components/lite/core/UpgradeBar.vue:38
|
3091 |
+
msgid "You're using %1$s. To unlock more features, consider %2$s."
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:103
|
3095 |
+
msgid ""
|
3096 |
+
"Local business information may be displayed when users search for "
|
3097 |
+
"businesses on Google search or Google Maps. Google decides on a per search "
|
3098 |
+
"basis whether to display this information or not and it’s completely "
|
3099 |
+
"automated."
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:104
|
3103 |
+
msgid "Multiple Locations"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:105
|
3107 |
+
msgid "Display Location Info"
|
|
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:107
|
3111 |
+
msgid "Business Name"
|
|
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:110
|
3115 |
+
msgid "Business Address"
|
|
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:112
|
3119 |
+
msgid "Business IDs"
|
|
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:114
|
3123 |
+
msgid "Area Served"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:126
|
3127 |
+
msgid "Archive Organization"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:127
|
3131 |
+
msgid "Automotive Business"
|
|
|
|
|
|
|
|
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:128
|
3135 |
+
msgid "Childcare"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:129
|
3139 |
+
msgid "Dentist"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:130
|
3143 |
+
msgid "Dry Cleaning/Laundry"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:131
|
3147 |
+
msgid "Emergency Service"
|
|
|
|
|
|
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:132
|
3151 |
+
msgid "Employment Agency"
|
|
|
|
|
|
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:133
|
3155 |
+
msgid "Entertainment Business"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:134
|
3159 |
+
msgid "Financial Service"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:135
|
3163 |
+
msgid "Food Establishment"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:136
|
3167 |
+
msgid "Government Office"
|
|
|
|
|
|
|
|
|
3168 |
msgstr ""
|
3169 |
|
3170 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:137
|
3171 |
+
msgid "Health & Beauty Business"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:138
|
3175 |
+
msgid "Home & Construction Business"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:139
|
3179 |
+
msgid "Internet Cafe"
|
|
|
|
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:140
|
3183 |
+
msgid "Legal Service"
|
|
|
|
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:141
|
3187 |
+
msgid "Library"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:142
|
3191 |
+
msgid "Lodging Business"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:143
|
3195 |
+
msgid "Medical Business"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:144
|
3199 |
+
msgid "Radio Station"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:145
|
3203 |
+
msgid "Real Estate Agent"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:146
|
3207 |
+
msgid "Recycling Center"
|
|
|
|
|
|
|
|
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:147
|
3211 |
+
msgid "Self Storage"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:148
|
3215 |
+
msgid "Shopping Center"
|
|
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:149
|
3219 |
+
msgid "Sports Activity Location"
|
|
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:150
|
3223 |
+
msgid "Store"
|
|
|
|
|
|
|
|
|
3224 |
msgstr ""
|
3225 |
|
3226 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:151
|
3227 |
+
msgid "Television Station"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:152
|
3231 |
+
msgid "Tourist Information Center"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:153
|
3235 |
+
msgid "Travel Agency"
|
|
|
|
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
# Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro", 3 - "Learn more link"..
|
3239 |
+
#: src/vue/pages/post-settings/views/lite/Schema.vue:61
|
3240 |
+
msgid "This feature is only for licensed %1$s %2$s users. %3$s"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: src/vue/pages/post-settings/views/SocialSideBar.vue:26
|
3244 |
msgid ""
|
3245 |
+
"Here you can view and edit the thumbnail, title and description that will "
|
3246 |
+
"be displayed when your site is shared on social media. Click on the button "
|
3247 |
+
"below to view and edit the preview."
|
3248 |
msgstr ""
|
3249 |
|
3250 |
+
#: src/vue/pages/post-settings/views/SocialSideBar.vue:27
|
3251 |
+
msgid "Preview & Edit"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:238
|
3255 |
+
msgid "Facebook Preview"
|
|
|
|
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:239
|
3259 |
+
msgid "Image Source"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:240
|
3263 |
+
msgid "Custom Field Name"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:241
|
3267 |
+
msgid "Video URL"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:245
|
3271 |
+
msgid "Facebook Image"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:246
|
3275 |
+
msgid "Facebook Title"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:247
|
3279 |
+
msgid "Facebook Description"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:250
|
3283 |
msgid ""
|
3284 |
+
"Minimum size: 200px x 200px, ideal ratio 1.91:1, 5MB max. (eg: 1640px x "
|
3285 |
+
"856px or 3280px x 1712px for retina screens)"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:252
|
3289 |
+
msgid "Click on tags below to insert variables into your site name."
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:254
|
3293 |
+
msgid "Article Section"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:255
|
3297 |
+
msgid "Article Tags"
|
|
|
|
|
3298 |
msgstr ""
|
3299 |
|
3300 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:256
|
3301 |
+
msgid "Press enter to create an article tag"
|
|
|
|
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:264
|
3305 |
+
msgid "Default"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:264
|
3309 |
+
msgid "Default Object Type (Set in Social Networks)"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:213
|
3313 |
+
msgid "Twitter Preview"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:214
|
3317 |
+
msgid "Use Data from Facebook Tab"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:217
|
3321 |
+
msgid "Twitter Image"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:218
|
3325 |
+
msgid "Twitter Title"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:219
|
3329 |
+
msgid "Twitter Description"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:220
|
3333 |
+
msgid "Twitter Card Type"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:449
|
3337 |
+
msgid ""
|
3338 |
+
"Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and "
|
3339 |
+
"GIF formats only."
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:450
|
3343 |
+
msgid ""
|
3344 |
+
"Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and "
|
3345 |
+
"GIF formats only."
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:234
|
3349 |
+
msgid "Default (Set under Social Networks)"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:437
|
3353 |
+
msgid "Summary"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:438
|
3357 |
+
msgid "Summary with Large Image"
|
|
|
3358 |
msgstr ""
|
3359 |
|
3360 |
+
#: src/vue/classes/SiteAnalysis.js:119
|
3361 |
+
msgid "Title:"
|
|
|
3362 |
msgstr ""
|
3363 |
|
3364 |
+
#: src/vue/classes/SiteAnalysis.js:125
|
3365 |
+
msgid "Description:"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: src/vue/pages/posts-table/App.vue:222
|
3369 |
+
msgid "Edit"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: src/vue/pages/posts-table/App.vue:223
|
3373 |
+
msgid "Save"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
+
#: src/vue/pages/posts-table/App.vue:224
|
3377 |
+
msgid "Cancel"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: src/vue/pages/posts-table/App.vue:225
|
3381 |
+
msgid "Please wait..."
|
3382 |
msgstr ""
|
3383 |
|
3384 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:69
|
3385 |
+
msgid "Add Additional Keyphrases"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
# Translators: 1 - "Pro" string, 2 - "Learn more link".
|
3389 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:71
|
3390 |
+
msgid "Upgrade to %1$s to add related keyphrases. %2$s"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:60
|
3394 |
+
msgid "Add Focus Keyphrase"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
+
# Translators: 1 - "Learn more link".
|
3398 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:62
|
3399 |
+
msgid ""
|
3400 |
+
"Not sure what keyphrases are used for? Check out our documentation for more "
|
3401 |
+
"information. %1$s"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
#: src/vue/pages/posts-table/App.vue:220
|
3405 |
+
msgid "Image Title:"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
+
#: src/vue/pages/posts-table/App.vue:221
|
3409 |
+
msgid "Image Alt Tag:"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:120
|
3413 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
|
3414 |
+
msgid "Upgrade to Pro and Unlock Local SEO"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:121
|
3418 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:303
|
3419 |
+
msgid "Local SEO is only available for licensed %1$s %2$s users."
|
3420 |
msgstr ""
|
3421 |
|
3422 |
+
#: src/vue/pages/social-networks/views/Pinterest.vue:46
|
3423 |
+
msgid ""
|
3424 |
+
"Pinterest uses Open Graph metadata just like Facebook, so be sure to keep "
|
3425 |
+
"Open Graph enabled on the Facebook tab checked if you want to optimize your "
|
3426 |
+
"site for Pinterest."
|
3427 |
msgstr ""
|
3428 |
|
3429 |
+
#: src/vue/pages/social-networks/views/Pinterest.vue:47
|
3430 |
+
msgid "Learn how to get your Pinterest Verification Code"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
+
#: src/vue/pages/social-networks/views/Pinterest.vue:48
|
3434 |
+
msgid ""
|
3435 |
+
"If you have already confirmed your website with Pinterest, you can skip the "
|
3436 |
+
"step below."
|
3437 |
msgstr ""
|
3438 |
|
3439 |
+
#: src/vue/components/common/wizard/CloseAndExit.vue:14
|
3440 |
+
msgid "Close and Exit Wizard Without Saving"
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
# Translators: 1 - The current step count. 2 - The total step count.
|
3444 |
+
#: src/vue/components/common/wizard/Steps.vue:15
|
3445 |
+
msgid "Step %1$s of %2$s"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: src/vue/pages/social-networks/views/SocialProfiles.vue:26
|
3449 |
+
msgid ""
|
3450 |
+
"To let search engines know which profiles are associated with this site, "
|
3451 |
+
"enter them below:"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:432
|
3455 |
+
msgid "Twitter Card Settings"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
3459 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:434
|
3460 |
+
msgid ""
|
3461 |
+
"Enable this feature if you want Twitter to display a preview card with "
|
3462 |
+
"images and a text excerpt when a link to your site is shared."
|
3463 |
msgstr ""
|
3464 |
|
3465 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:435
|
3466 |
+
msgid "Enable Twitter Card"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:436
|
3470 |
+
msgid "Default Card Type"
|
3471 |
msgstr ""
|
3472 |
|
3473 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:445
|
3474 |
+
msgid "Default Post Twitter Image"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:446
|
3478 |
+
msgid "Default Term Twitter Image"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:452
|
3482 |
+
msgid "Home Page Image"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
+
#: src/vue/pages/setup-wizard/views/Category.vue:149
|
3486 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:255
|
3487 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:453
|
3488 |
+
msgid "Home Page Title"
|
3489 |
msgstr ""
|
3490 |
|
3491 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:460
|
3492 |
+
msgid "Show Twitter Author"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:463
|
3496 |
+
msgid "Card Type"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:464
|
3500 |
+
msgid "Additional Data"
|
|
|
3501 |
msgstr ""
|
3502 |
|
3503 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:465
|
3504 |
+
msgid ""
|
3505 |
+
"Enable this option to show additional Twitter data on your posts and pages "
|
3506 |
+
"(i.e., who the post was written by and how long it might take to read the "
|
3507 |
+
"article)."
|
3508 |
msgstr ""
|
3509 |
|
3510 |
+
#: src/vue/pages/setup-wizard/views/Category.vue:146
|
3511 |
+
msgid "Which category best describes your website?"
|
|
|
3512 |
msgstr ""
|
3513 |
|
3514 |
+
#: src/vue/pages/setup-wizard/views/Category.vue:147
|
3515 |
+
msgid ""
|
3516 |
+
"Select a category to help us narrow down the SEO options that work best for "
|
3517 |
+
"you and your site."
|
3518 |
msgstr ""
|
3519 |
|
3520 |
+
#: src/vue/pages/setup-wizard/views/Category.vue:148
|
3521 |
+
msgid "Enter your answer"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: src/vue/pages/setup-wizard/views/Category.vue:153
|
3525 |
+
msgid "Blog"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
+
#: src/vue/pages/setup-wizard/views/Category.vue:154
|
3529 |
+
msgid "News Channel"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: src/vue/pages/setup-wizard/views/Category.vue:155
|
3533 |
+
msgid "Online Store"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
+
#: src/vue/pages/setup-wizard/views/Category.vue:156
|
3537 |
+
msgid "Small Offline Business"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: src/vue/pages/setup-wizard/views/Category.vue:157
|
3541 |
+
msgid "Corporation"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: src/vue/pages/setup-wizard/views/Category.vue:158
|
3545 |
+
msgid "Portfolio"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
+
#: src/vue/pages/setup-wizard/views/Category.vue:160
|
3549 |
+
msgid "Other:"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
+
#: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:67
|
3553 |
+
msgid "Complete SEO Checklist"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
+
#: src/vue/components/common/core/SiteScoreCompetitor.vue:80
|
3557 |
+
#: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:68
|
3558 |
+
msgid "Refresh Results"
|
3559 |
msgstr ""
|
3560 |
|
3561 |
+
#: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:80
|
3562 |
+
msgid "All Items"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
+
#: src/vue/pages/setup-wizard/views/Features.vue:126
|
3566 |
+
msgid "The following plugins will be installed: %2$s"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
+
#: src/vue/pages/setup-wizard/views/Features.vue:130
|
3570 |
+
msgid "The following %1$s addons will be installed: %2$s"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
+
#: src/vue/pages/setup-wizard/views/Features.vue:134
|
3574 |
+
msgid "The following plugins and %1$s addons will be installed: %2$s"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
+
#: src/vue/pages/setup-wizard/views/Features.vue:82
|
3578 |
+
msgid "Which SEO features do you want to enable?"
|
3579 |
msgstr ""
|
3580 |
|
3581 |
+
#: src/vue/pages/setup-wizard/views/Features.vue:86
|
3582 |
+
msgid ""
|
3583 |
+
"We have already selected our recommended features based on your site "
|
3584 |
+
"category, but you can use the following features to fine-tune your site."
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
#: src/vue/pages/setup-wizard/views/Import.vue:80
|
3588 |
+
msgid "Import data from your current plugins"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: src/vue/pages/setup-wizard/views/Import.vue:81
|
3592 |
+
msgid ""
|
3593 |
+
"We have detected other SEO plugins installed on your website. Select which "
|
3594 |
+
"plugins you would like to import data to %1$s."
|
3595 |
msgstr ""
|
3596 |
|
3597 |
+
#: src/vue/pages/setup-wizard/views/Import.vue:82
|
3598 |
+
msgid "Import Data and Continue"
|
3599 |
msgstr ""
|
3600 |
|
3601 |
+
# Translators: 1 - "Pro".
|
3602 |
+
#: src/vue/pages/setup-wizard/views/LicenseKey.vue:102
|
3603 |
+
msgid "upgrade to %1$s"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
+
#: src/vue/pages/setup-wizard/views/LicenseKey.vue:128
|
3607 |
+
msgid "To unlock the selected features, please enter your license key below."
|
3608 |
msgstr ""
|
3609 |
|
3610 |
+
# Translators: 1 - "upgrading to Pro".
|
3611 |
+
#: src/vue/pages/setup-wizard/views/LicenseKey.vue:130
|
3612 |
msgid ""
|
3613 |
+
"To unlock the selected features, please %1$s and enter your license key "
|
3614 |
+
"below."
|
3615 |
msgstr ""
|
3616 |
|
3617 |
+
# Translators: 1 - The plugin short name ("AIOSEO").
|
3618 |
+
#: src/vue/pages/setup-wizard/views/LicenseKey.vue:98
|
3619 |
+
msgid "Enter your %1$s License Key"
|
|
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:250
|
3623 |
+
msgid ""
|
3624 |
+
"The way your site is displayed in search results is very important. Take "
|
3625 |
+
"some time to look over these settings and tweak as needed."
|
3626 |
msgstr ""
|
3627 |
|
3628 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:251
|
3629 |
+
msgid "Google Snippet Preview"
|
3630 |
msgstr ""
|
3631 |
|
3632 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:252
|
3633 |
+
msgid "Edit Title and Description"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:257
|
3637 |
+
msgid "Is the site under construction or live (ready to be indexed)?"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:258
|
3641 |
+
msgid "Under Construction"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:259
|
3645 |
+
msgid "Live Site"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:262
|
3649 |
+
msgid "Do you have multiple authors?"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:263
|
3653 |
+
msgid "Redirect attachment pages?"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:179
|
3657 |
+
msgid "Setup Site Analyzer + Smart Recommendations"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:180
|
3661 |
+
msgid ""
|
3662 |
+
"Get helpful suggestions from %1$s on how to optimize your website content, "
|
3663 |
+
"so you can rank higher in search results."
|
3664 |
msgstr ""
|
3665 |
|
3666 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:181
|
3667 |
+
msgid "Your Email Address"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:182
|
3671 |
+
msgid ""
|
3672 |
+
"Your email is needed so you can receive SEO recommendations. This email "
|
3673 |
+
"will also be used to connect your site with our SEO API."
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:183
|
3677 |
+
msgid "Get Automatic WordPress Plugin Updates"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:184
|
3681 |
+
msgid "Enable automatic updates"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:185
|
3685 |
+
msgid "Help make %1$s better for everyone"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:186
|
3689 |
+
msgid "Yes, count me in"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:187
|
3693 |
+
msgid "Would you like to purchase and install the following features now?"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:188
|
3697 |
+
msgid "An upgrade is required to unlock the following features."
|
3698 |
msgstr ""
|
3699 |
|
3700 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:189
|
3701 |
+
msgid ""
|
3702 |
+
"You won't have access to this functionality until the extensions have been "
|
3703 |
+
"purchased and installed."
|
3704 |
msgstr ""
|
3705 |
|
3706 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:190
|
3707 |
+
msgid "I'll do it later"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:191
|
3711 |
+
msgid "Purchase and Install Now"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
# Translators: 1 - Opening bold tag. 2 - Closing bold tag. 3 - Opening bold tag. 4 - Percent between 1-100. 5 - Closing bold tag.
|
3715 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:193
|
3716 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:145
|
3717 |
+
msgid ""
|
3718 |
+
"%1$sBonus:%2$s You can upgrade your plan today and %3$ssave %4$s off%5$s "
|
3719 |
+
"(discount auto-applied)."
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:134
|
3723 |
+
msgid "Congratulations, your site is now SEO ready!"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:135
|
3727 |
+
msgid "Finish Setup and Go to the Dashboard"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:136
|
3731 |
+
msgid "Here's what to do next:"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:137
|
3735 |
+
msgid "Join our Community"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:138
|
3739 |
+
msgid "Join on Facebook"
|
|
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:139
|
3743 |
+
msgid "Follow on Twitter"
|
|
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:140
|
3747 |
+
msgid "Read our Step By Step Guide to Improve your SEO Rankings"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:141
|
3751 |
+
msgid "Watch our Guided Tour of %1$s"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:142
|
3755 |
+
msgid "See Advanced Settings"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:143
|
3759 |
+
msgid "Setup Webmaster Tools"
|
|
|
3760 |
msgstr ""
|
3761 |
|
3762 |
# Translators: 1 - The plugin name ("All in One SEO").
|
3763 |
+
#: src/vue/pages/setup-wizard/views/Welcome.vue:42
|
3764 |
+
msgid "Welcome to the %1$s Setup Wizard!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3765 |
msgstr ""
|
3766 |
|
3767 |
+
#: src/vue/pages/setup-wizard/views/Welcome.vue:43
|
3768 |
+
msgid ""
|
3769 |
+
"%1$s makes it easy to configure your site's SEO settings without the need "
|
3770 |
+
"to hire an expert. And it takes less than 10 minutes too!"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
+
#: src/vue/pages/setup-wizard/views/Welcome.vue:44
|
3774 |
+
msgid "Let's Get Started"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
+
#: src/vue/pages/setup-wizard/views/Welcome.vue:45
|
3778 |
+
msgid "Go back to the Dashboard"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:322
|
3782 |
+
msgid "Organization Name"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:332
|
3786 |
+
msgid "Default Social Share Image"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:333
|
3790 |
+
msgid "Your Social Profiles"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
+
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:111
|
3794 |
+
msgid "Enter Competitor URL"
|
|
|
3795 |
msgstr ""
|
3796 |
|
3797 |
+
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:112
|
3798 |
+
msgid "Perform in-depth SEO Analysis of your competitor's website."
|
3799 |
msgstr ""
|
3800 |
|
3801 |
+
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:113
|
3802 |
+
msgid "Analyze"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
+
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:114
|
3806 |
+
msgid "Please enter a valid URL."
|
3807 |
msgstr ""
|
3808 |
|
3809 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:77
|
3810 |
+
#: src/vue/components/common/core/SiteScoreDashboard.vue:78
|
3811 |
+
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:131
|
3812 |
+
msgid "The URL provided is invalid."
|
3813 |
msgstr ""
|
3814 |
|
3815 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:79
|
3816 |
+
#: src/vue/components/common/core/SiteScoreDashboard.vue:80
|
3817 |
+
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:133
|
3818 |
+
msgid "We were unable to parse the content for this site."
|
3819 |
msgstr ""
|
3820 |
|
3821 |
+
# Translators: 1 - The plugin short name ('AIOSEO').
|
3822 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:82
|
3823 |
+
#: src/vue/components/common/core/SiteScoreDashboard.vue:83
|
3824 |
+
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:136
|
3825 |
+
msgid "Your site is not connected. Please connect to %1$s, then try again."
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
#: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:409
|
3829 |
+
msgid ""
|
3830 |
+
"Select which Taxonomies appear in your sitemap. Categories and Tags are "
|
3831 |
+
"excluded by default since these do not support video embedding."
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: src/vue/pages/sitemaps/views/HtmlSitemap.vue:16
|
3835 |
+
msgid "HTML Sitemap"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:125
|
3839 |
+
msgid ""
|
3840 |
+
"This option will generate a separate RSS Sitemap which can be submitted to "
|
3841 |
+
"Google, Bing and any other search engines that support this type of "
|
3842 |
+
"sitemap. The RSS Sitemap contains an RSS feed of the latest updates to your "
|
3843 |
+
"site content. It is not a full sitemap of all your content."
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:130
|
3847 |
+
msgid "Number of Posts"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:133
|
3851 |
+
msgid "Open RSS Sitemap"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: src/vue/pages/sitemaps/views/RssSitemap.vue:134
|
3855 |
+
msgid ""
|
3856 |
+
"Allows you to specify the maximum number of posts for the RSS Sitemap. We "
|
3857 |
+
"recommend an amount of 50 posts."
|
3858 |
msgstr ""
|
3859 |
|
3860 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:168
|
3861 |
+
msgid "Reset / Restore Settings"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:169
|
3865 |
+
msgid "Select Settings"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:170
|
3869 |
+
msgid "Select settings that you would like to reset:"
|
|
|
|
|
|
|
|
|
|
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:171
|
3873 |
+
msgid "Reset Selected Settings to Default"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:172
|
3877 |
+
msgid "Your settings have been reset successfully!"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:173
|
3881 |
+
msgid "Are you sure you want to reset the selected settings to default?"
|
|
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:175
|
3885 |
+
msgid ""
|
3886 |
+
"This action cannot be undone. Before taking this action, we recommend that "
|
3887 |
+
"you make a %1$sfull website backup first%2$s."
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:176
|
3891 |
+
msgid "Yes, I have a backup and want to reset the settings"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:177
|
3895 |
+
msgid "No, I need to make a backup"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:178
|
3899 |
+
msgid "Logs"
|
|
|
|
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:179
|
3903 |
+
msgid "Bad Bot Blocker Logs"
|
|
|
|
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:180
|
3907 |
+
msgid "Cleared"
|
|
|
|
|
|
|
|
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:181
|
3911 |
+
msgid "Clear Bad Bot Blocker Logs"
|
|
|
|
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
# Translators: 1 - The plugin short name ("AIOSEO").
|
3915 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:183
|
3916 |
+
msgid "All %1$s Settings"
|
|
|
|
|
|
|
3917 |
msgstr ""
|
3918 |
|
3919 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:198
|
3920 |
+
msgid "Robots.txt"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
+
#: src/vue/pages/tools/views/HtaccessEditor.vue:41
|
3924 |
+
msgid "Edit .htaccess"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
+
#: src/vue/pages/tools/views/HtaccessEditor.vue:43
|
3928 |
+
msgid ""
|
3929 |
+
"This allows you to edit the .htaccess file for your site. All WordPress "
|
3930 |
+
"sites on an Apache server have a .htaccess file and we have provided you "
|
3931 |
+
"with a convenient way of editing it. Care should always be taken when "
|
3932 |
+
"editing important files from within WordPress as an incorrect change could "
|
3933 |
+
"cause WordPress to become inaccessible. %1$sBe sure to make a backup before "
|
3934 |
+
"making changes and ensure that you have FTP access to your web server and "
|
3935 |
+
"know how to access and edit files via FTP.%2$s"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
+
#: src/vue/pages/tools/views/ImportExport.vue:36
|
3939 |
+
msgid "Export / Backup Settings"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
# Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO").
|
3943 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:238
|
3944 |
msgid ""
|
3945 |
+
"The robots.txt editor in %1$s allows you to set up a robots.txt file for "
|
3946 |
+
"your site that will override the default robots.txt file that WordPress "
|
3947 |
+
"creates. By creating a robots.txt file with %2$s you have greater control "
|
3948 |
+
"over the instructions you give web crawlers about your site."
|
3949 |
msgstr ""
|
3950 |
|
3951 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:239
|
3952 |
msgid ""
|
3953 |
+
"Just like WordPress, %1$s generates a dynamic file so there is no static "
|
3954 |
+
"file to be found on your server. The content of the robots.txt file is "
|
3955 |
+
"stored in your WordPress database."
|
3956 |
msgstr ""
|
3957 |
|
3958 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:240
|
3959 |
+
msgid "Enable Custom Robots.txt"
|
|
|
|
|
|
|
|
|
3960 |
msgstr ""
|
3961 |
|
3962 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:241
|
3963 |
msgid ""
|
3964 |
+
"Duplicate or invalid entries have been detected! Please check your rules "
|
3965 |
+
"and try again."
|
3966 |
msgstr ""
|
3967 |
|
3968 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:242
|
3969 |
+
msgid "User Agent"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:243
|
3973 |
+
msgid "Rule"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:244
|
3977 |
+
msgid "Directory Path"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:245
|
3981 |
+
msgid "Allow"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:246
|
3985 |
+
msgid "Disallow"
|
|
|
|
|
3986 |
msgstr ""
|
3987 |
|
3988 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:247
|
3989 |
+
msgid "Add Rule"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:248
|
3993 |
+
msgid "Delete Rule"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:249
|
3997 |
+
msgid "Robots.txt Preview:"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:250
|
4001 |
+
msgid "Open Robots.txt"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
+
# Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO").
|
4005 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:252
|
4006 |
+
msgid ""
|
4007 |
+
"%1$s has detected a physical robots.txt file in the root folder of your "
|
4008 |
+
"WordPress installation. We recommend removing this file as it could cause "
|
4009 |
+
"conflicts with WordPress' dynamically generated one. %2$s can import this "
|
4010 |
+
"file and delete it, or you can simply delete it."
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:253
|
4014 |
+
msgid "Import and Delete"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
# Translators: 1 - The url to the main site.
|
4018 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:285
|
4019 |
+
msgid ""
|
4020 |
+
"This site is running in a sub-directory of your main site located at %1$s. "
|
4021 |
+
"Your robots.txt file should only appear in the root directory of that site."
|
4022 |
msgstr ""
|
4023 |
|
4024 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:288
|
4025 |
+
msgid ""
|
4026 |
+
"It looks like you are missing the proper rewrite rules for the robots.txt "
|
4027 |
+
"file."
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
# Translators: 1 - Opening link tag. 2 - Closing link tag.
|
4031 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:292
|
4032 |
+
msgid ""
|
4033 |
+
"It appears that your server is running on Apache, so the fix should be as "
|
4034 |
+
"simple as checking the %1$scorrect .htaccess implementation on "
|
4035 |
+
"wordpress.org%2$s."
|
4036 |
msgstr ""
|
4037 |
|
4038 |
+
#: src/vue/pages/tools/views/RobotsEditor.vue:294
|
4039 |
msgid ""
|
4040 |
+
"It appears that your server is running on nginx, so the fix will most "
|
4041 |
+
"likely require adding the correct rewrite rules to our nginx configuration. "
|
4042 |
+
"%1$sCheck our documentation for more information%2$s."
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:115
|
4046 |
+
msgid "System Status Info"
|
|
|
|
|
|
|
|
|
|
|
4047 |
msgstr ""
|
4048 |
|
4049 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:116
|
4050 |
+
msgid "Download System Info File"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:117
|
4054 |
+
msgid "Copy to Clipboard"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:118
|
4058 |
+
msgid "Email Debug Information"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:119
|
4062 |
+
msgid "Submit"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:120
|
4066 |
+
msgid "WordPress"
|
|
|
|
|
|
|
4067 |
msgstr ""
|
4068 |
|
4069 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:121
|
4070 |
+
msgid "Server Info"
|
|
|
|
|
|
|
4071 |
msgstr ""
|
4072 |
|
4073 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:122
|
4074 |
+
msgid "Active Theme"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:123
|
4078 |
+
msgid "Must-Use Plugins"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:124
|
4082 |
+
msgid "Active Plugins"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:125
|
4086 |
+
msgid "Inactive Plugins"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: src/vue/components/common/core/CopyBlock.vue:48
|
4090 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:126
|
4091 |
+
msgid "Copied!"
|
|
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:12
|
4095 |
+
msgid "Open News Sitemap"
|
|
|
|
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:15
|
4099 |
+
msgid "Upgrade to Pro and Unlock News Sitemaps"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:16
|
4103 |
+
msgid "News Sitemaps are only available for licensed %1$s %2$s users."
|
|
|
|
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:8
|
4107 |
+
msgid "Set Publication Name"
|
|
|
|
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:9
|
4111 |
+
#: src/vue/pages/sitemaps/mixins/VideoSitemap.js:8
|
4112 |
+
msgid "Exclude Pages/Posts"
|
|
|
|
|
|
|
4113 |
msgstr ""
|
4114 |
|
4115 |
+
#: src/vue/pages/sitemaps/mixins/VideoSitemap.js:12
|
4116 |
+
msgid "Open Video Sitemap"
|
|
|
|
|
|
|
|
|
4117 |
msgstr ""
|
4118 |
|
4119 |
+
#: src/vue/pages/sitemaps/mixins/VideoSitemap.js:15
|
4120 |
+
msgid "Upgrade to Pro and Unlock Video Sitemaps"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
+
#: src/vue/pages/sitemaps/mixins/VideoSitemap.js:16
|
4124 |
+
msgid "Video Sitemaps are only available for licensed %1$s %2$s users."
|
4125 |
msgstr ""
|
4126 |
|
4127 |
+
#: src/vue/pages/sitemaps/mixins/VideoSitemap.js:7
|
4128 |
+
msgid "Custom Field Support"
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:64
|
4132 |
+
#: src/vue/components/common/core/SiteScoreCompetitor.vue:76
|
4133 |
+
#: src/vue/components/common/core/SiteScoreDashboard.vue:66
|
4134 |
+
msgid "Warnings"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
+
#: src/vue/components/common/core/SiteScoreCompetitor.vue:81
|
4138 |
+
msgid "Mobile Snapshot"
|
|
|
|
|
4139 |
msgstr ""
|
4140 |
|
4141 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:57
|
4142 |
+
msgid "Your Overall Site Score"
|
4143 |
msgstr ""
|
4144 |
|
4145 |
+
# Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag.
|
4146 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:59
|
4147 |
+
msgid "A very good score is between %1$s60 and 80%2$s."
|
4148 |
msgstr ""
|
4149 |
|
4150 |
+
# Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag.
|
4151 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:61
|
4152 |
+
msgid "For best results, you should strive for %1$s70 and above%2$s."
|
4153 |
msgstr ""
|
4154 |
|
4155 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:62
|
4156 |
+
#: src/vue/components/common/core/SiteScoreDashboard.vue:64
|
4157 |
+
msgid "An error occurred while analyzing your site."
|
4158 |
msgstr ""
|
4159 |
|
4160 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:68
|
4161 |
+
msgid "Read the Ultimate WordPress SEO Guide"
|
|
|
|
|
|
|
4162 |
msgstr ""
|
4163 |
|
4164 |
+
#: src/vue/components/common/core/SiteScore.vue:45
|
4165 |
+
msgid "Analyzing..."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4166 |
msgstr ""
|
4167 |
|
4168 |
+
#: src/vue/components/common/core/NotificationCards.vue:58
|
4169 |
+
msgid "Great Scott! Where'd they all go?"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
+
#: src/vue/components/common/core/NotificationCards.vue:59
|
4173 |
+
msgid "You have no new notifications."
|
4174 |
msgstr ""
|
4175 |
|
4176 |
+
#: src/vue/components/common/core/NotificationCards.vue:60
|
4177 |
+
msgid "See Dismissed Notifications"
|
|
|
4178 |
msgstr ""
|
4179 |
|
4180 |
+
#: src/vue/components/common/core/Notifications.vue:94
|
4181 |
+
msgid "Dismissed Notifications"
|
|
|
|
|
|
|
4182 |
msgstr ""
|
4183 |
|
4184 |
+
#: src/vue/components/common/core/PostTypeOptions.vue:86
|
4185 |
+
msgid "Label:"
|
|
|
|
|
|
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: src/vue/components/common/core/PostTypeOptions.vue:87
|
4189 |
+
msgid "Slug:"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: src/vue/components/common/core/PostTypeOptions.vue:88
|
4193 |
+
msgid "No post types available."
|
4194 |
msgstr ""
|
4195 |
|
4196 |
+
#: src/vue/components/common/core/PostTypeOptions.vue:89
|
4197 |
+
msgid "No taxonomies available."
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: src/vue/components/common/core/PostTypeOptions.vue:90
|
4201 |
+
msgid ""
|
4202 |
+
"All post types are set to noindex or your site does not have any post types "
|
4203 |
+
"registered that are supported by this feature."
|
4204 |
msgstr ""
|
4205 |
|
4206 |
+
#: src/vue/components/common/core/PostTypeOptions.vue:91
|
|
|
4207 |
msgid ""
|
4208 |
+
"All taxonomies are set to noindex or your site does not have any taxonomies "
|
4209 |
+
"registered that are supported by this feature."
|
|
|
4210 |
msgstr ""
|
4211 |
|
4212 |
+
#: src/vue/components/common/core/PriorityScore.vue:67
|
4213 |
+
msgid "Archive Pages"
|
4214 |
msgstr ""
|
4215 |
|
4216 |
+
#: src/vue/components/common/core/PriorityScore.vue:68
|
4217 |
+
msgid "Author Pages"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
+
#: src/vue/components/common/core/RobotsMeta.vue:101
|
4221 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:163
|
4222 |
+
msgid "Robots meta:"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
+
#: src/vue/components/common/core/RobotsMeta.vue:102
|
4226 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:164
|
4227 |
+
msgid "Max Snippet"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
+
#: src/vue/components/common/core/RobotsMeta.vue:103
|
4231 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:165
|
4232 |
+
msgid "Max Video Preview"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
+
#: src/vue/components/common/core/RobotsMeta.vue:104
|
4236 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:166
|
4237 |
+
msgid "Max Image Preview"
|
4238 |
msgstr ""
|
4239 |
|
4240 |
+
#: src/vue/components/common/core/RobotsMeta.vue:105
|
4241 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:167
|
4242 |
+
msgid "Standard"
|
|
|
|
|
4243 |
msgstr ""
|
4244 |
|
4245 |
+
#: src/vue/components/common/core/RobotsMeta.vue:107
|
4246 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:169
|
4247 |
+
msgid "Large"
|
|
|
|
|
4248 |
msgstr ""
|
4249 |
|
4250 |
+
#: src/vue/components/common/core/RobotsMeta.vue:87
|
4251 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:170
|
4252 |
+
msgid "No Index"
|
4253 |
msgstr ""
|
4254 |
|
4255 |
+
#: src/vue/components/common/core/RobotsMeta.vue:88
|
4256 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:171
|
4257 |
+
msgid "No Follow"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
+
#: src/vue/components/common/core/RobotsMeta.vue:89
|
4261 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:172
|
4262 |
+
msgid "No Archive"
|
4263 |
msgstr ""
|
4264 |
|
4265 |
+
#: src/vue/components/common/core/RobotsMeta.vue:90
|
4266 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:173
|
4267 |
+
msgid "No Translate"
|
|
|
4268 |
msgstr ""
|
4269 |
|
4270 |
+
#: src/vue/components/common/core/RobotsMeta.vue:91
|
4271 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:174
|
4272 |
+
msgid "No Image Index"
|
4273 |
msgstr ""
|
4274 |
|
4275 |
+
#: src/vue/components/common/core/RobotsMeta.vue:92
|
4276 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:175
|
4277 |
+
msgid "No Snippet"
|
|
|
4278 |
msgstr ""
|
4279 |
|
4280 |
+
#: src/vue/components/common/core/RobotsMeta.vue:93
|
4281 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:176
|
4282 |
+
msgid "No ODP"
|
4283 |
msgstr ""
|
4284 |
|
4285 |
+
#: src/vue/components/common/core/RobotsMeta.vue:96
|
4286 |
+
msgid "No Index Paginated"
|
4287 |
msgstr ""
|
4288 |
|
4289 |
+
#: src/vue/components/common/core/RobotsMeta.vue:97
|
4290 |
+
msgid "No Follow Paginated"
|
|
|
|
|
4291 |
msgstr ""
|
4292 |
|
4293 |
+
#: src/vue/components/common/core/SeoSiteAnalysisResults.vue:107
|
4294 |
+
msgid "Advanced SEO"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
+
#: src/vue/components/common/core/SeoSiteAnalysisResults.vue:108
|
4298 |
+
msgid "Performance"
|
|
|
|
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: src/vue/components/common/core/SeoSiteAnalysisResults.vue:109
|
4302 |
+
msgid "Security"
|
|
|
4303 |
msgstr ""
|
4304 |
|
4305 |
+
#: src/vue/components/common/core/SeoSiteAnalysisResults.vue:110
|
4306 |
+
msgid "Keywords:"
|
|
|
4307 |
msgstr ""
|
4308 |
|
4309 |
+
#: src/vue/components/common/core/SettingsSeparator.vue:101
|
4310 |
+
msgid "Custom separator:"
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: src/vue/components/common/core/SettingsSeparator.vue:102
|
4314 |
+
msgid "Show More"
|
4315 |
msgstr ""
|
4316 |
|
4317 |
+
#: src/vue/components/common/core/SettingsSeparator.vue:103
|
4318 |
+
msgid "Show Less"
|
4319 |
msgstr ""
|
4320 |
|
4321 |
+
#: src/vue/components/common/core/SocialProfiles.vue:121
|
4322 |
+
msgid "Your Facebook URL is invalid. Please check the format and try again."
|
4323 |
msgstr ""
|
4324 |
|
4325 |
+
#: src/vue/components/common/core/SocialProfiles.vue:132
|
4326 |
+
msgid "Your Twitter URL is invalid. Please check the format and try again."
|
4327 |
msgstr ""
|
4328 |
|
4329 |
+
#: src/vue/components/common/core/SocialProfiles.vue:143
|
4330 |
+
msgid "Your Instagram URL is invalid. Please check the format and try again."
|
|
|
4331 |
msgstr ""
|
4332 |
|
4333 |
+
#: src/vue/components/common/core/SocialProfiles.vue:154
|
4334 |
+
msgid "Your Pinterest URL is invalid. Please check the format and try again."
|
|
|
4335 |
msgstr ""
|
4336 |
|
4337 |
+
#: src/vue/components/common/core/SocialProfiles.vue:165
|
4338 |
+
msgid "Your YouTube URL is invalid. Please check the format and try again."
|
4339 |
msgstr ""
|
4340 |
|
4341 |
+
#: src/vue/components/common/core/SocialProfiles.vue:176
|
4342 |
+
msgid "Your LinkedIn URL is invalid. Please check the format and try again."
|
4343 |
msgstr ""
|
4344 |
|
4345 |
+
#: src/vue/components/common/core/SocialProfiles.vue:187
|
4346 |
+
msgid "Your Tumblr URL is invalid. Please check the format and try again."
|
|
|
|
|
|
|
4347 |
msgstr ""
|
4348 |
|
4349 |
+
#: src/vue/components/common/core/SocialProfiles.vue:198
|
4350 |
+
msgid "Your Yelp URL is invalid. Please check the format and try again."
|
|
|
|
|
|
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
#: src/vue/components/common/core/SocialProfiles.vue:209
|
4354 |
+
msgid "Your SoundCloud URL is invalid. Please check the format and try again."
|
|
|
|
|
|
|
|
|
4355 |
msgstr ""
|
4356 |
|
4357 |
+
#: src/vue/components/common/core/SocialProfiles.vue:220
|
4358 |
+
msgid "Your Wikipedia URL is invalid. Please check the format and try again."
|
|
|
|
|
|
|
|
|
|
|
4359 |
msgstr ""
|
4360 |
|
4361 |
+
#: src/vue/components/common/core/SocialProfiles.vue:231
|
4362 |
+
msgid "Your MySpace URL is invalid. Please check the format and try again."
|
|
|
4363 |
msgstr ""
|
4364 |
|
4365 |
+
#: src/vue/components/common/core/SocialProfiles.vue:238
|
4366 |
+
msgid "Use the same username for multiple social networks"
|
|
|
|
|
|
|
4367 |
msgstr ""
|
4368 |
|
4369 |
+
#: src/vue/components/common/core/SocialProfiles.vue:239
|
4370 |
+
msgid "Your Username:"
|
|
|
|
|
|
|
4371 |
msgstr ""
|
4372 |
|
4373 |
+
#: src/vue/classes/SiteAnalysis.js:102
|
4374 |
+
msgid "No keywords were found in the page title."
|
4375 |
msgstr ""
|
4376 |
|
4377 |
+
#: src/vue/classes/SiteAnalysis.js:105
|
4378 |
+
msgid "No keywords were found in your meta description."
|
4379 |
msgstr ""
|
4380 |
|
4381 |
+
#: src/vue/classes/SiteAnalysis.js:106
|
4382 |
+
msgid "No keywords were found in the meta description."
|
|
|
|
|
|
|
|
|
4383 |
msgstr ""
|
4384 |
|
4385 |
+
#: src/vue/classes/SiteAnalysis.js:108
|
4386 |
+
msgid "Both the page title and meta description are missing keywords."
|
4387 |
+
msgstr ""
|
4388 |
+
|
4389 |
+
#: src/vue/classes/SiteAnalysis.js:112
|
4390 |
+
msgid "One or more keywords were found in the title and description of your page."
|
4391 |
+
msgstr ""
|
4392 |
+
|
4393 |
+
#: src/vue/classes/SiteAnalysis.js:113
|
4394 |
+
msgid "One or more keywords were found in the title and description of the page."
|
4395 |
+
msgstr ""
|
4396 |
+
|
4397 |
+
#: src/vue/classes/SiteAnalysis.js:129
|
4398 |
msgid ""
|
4399 |
+
"You need to use titles and descriptions that are attractive to users and "
|
4400 |
+
"contain your keywords. Use the keywords naturally - keyword stuffing is "
|
4401 |
+
"usually detected and will result in a lower ranking. What's more, it's "
|
4402 |
+
"pretty off-putting for potential readers, who are more likely to click on "
|
4403 |
+
"an appealing link."
|
4404 |
msgstr ""
|
4405 |
|
4406 |
+
#: src/vue/classes/SiteAnalysis.js:130
|
4407 |
+
msgid "Edit Your Page Title & Description"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
+
#: src/vue/classes/SiteAnalysis.js:139
|
4411 |
+
msgid "No H1 tag was found."
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
# Translators: 1 - The number of H1 tags found.
|
4415 |
+
#: src/vue/classes/SiteAnalysis.js:142
|
4416 |
+
msgid "For the best SEO results there should be exactly one H1 tag on each page."
|
4417 |
msgstr ""
|
4418 |
|
4419 |
+
# Translators: 1 - The number of H1 tags found.
|
4420 |
+
#: src/vue/classes/SiteAnalysis.js:142
|
4421 |
+
msgid "%1$d H1 tags were found."
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
#: src/vue/classes/SiteAnalysis.js:147
|
4425 |
+
msgid "One H1 tag was found on your page."
|
4426 |
+
msgstr ""
|
4427 |
+
|
4428 |
+
#: src/vue/classes/SiteAnalysis.js:148
|
4429 |
+
msgid "One H1 tag was found on the page."
|
4430 |
+
msgstr ""
|
4431 |
+
|
4432 |
+
#: src/vue/classes/SiteAnalysis.js:154
|
4433 |
msgid ""
|
4434 |
+
"WordPress sites usually insert the page or post title as an H1 tag "
|
4435 |
+
"(although custom themes can change this behavior)."
|
|
|
4436 |
msgstr ""
|
4437 |
|
|
|
|
|
|